diff --git a/.codecov.yml b/.codecov.yml index ec27f44fe..7b6eecb66 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -1,7 +1,7 @@ codecov: branch: develop ci: - - drone.friendi.ca + - ci.friendi.ca coverage: precision: 2 diff --git a/.ddev/config.yaml b/.ddev/config.yaml new file mode 100644 index 000000000..afc977656 --- /dev/null +++ b/.ddev/config.yaml @@ -0,0 +1,258 @@ +name: my-friendica +type: php +docroot: "" +php_version: "7.3" +webserver_type: apache-fpm +router_http_port: "80" +router_https_port: "443" +xdebug_enabled: false +additional_hostnames: [] +additional_fqdns: [] +database: + type: mariadb + version: "10.4" +nfs_mount_enabled: false +mutagen_enabled: false +use_dns_when_possible: true +composer_version: "1" +web_environment: [] +nodejs_version: "16" +webimage_extra_packages: [php7.3-gmp] + +# Key features of ddev's config.yaml: + +# name: # Name of the project, automatically provides +# http://projectname.ddev.site and https://projectname.ddev.site + +# type: # drupal6/7/8, backdrop, typo3, wordpress, php + +# docroot: # Relative path to the directory containing index.php. + +# php_version: "7.4" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2" + +# You can explicitly specify the webimage but this +# is not recommended, as the images are often closely tied to ddev's' behavior, +# so this can break upgrades. + +# webimage: # nginx/php docker image. + +# database: +# type: # mysql, mariadb +# version: # database version, like "10.3" or "8.0" +# Note that mariadb_version or mysql_version from v1.18 and earlier +# will automatically be converted to this notation with just a "ddev config --auto" + +# router_http_port: # Port to be used for http (defaults to port 80) +# router_https_port: # Port for https (defaults to 443) + +# xdebug_enabled: false # Set to true to enable xdebug and "ddev start" or "ddev restart" +# Note that for most people the commands +# "ddev xdebug" to enable xdebug and "ddev xdebug off" to disable it work better, +# as leaving xdebug enabled all the time is a big performance hit. + +# xhprof_enabled: false # Set to true to enable xhprof and "ddev start" or "ddev restart" +# Note that for most people the commands +# "ddev xhprof" to enable xhprof and "ddev xhprof off" to disable it work better, +# as leaving xhprof enabled all the time is a big performance hit. + +# webserver_type: nginx-fpm # or apache-fpm + +# timezone: Europe/Berlin +# This is the timezone used in the containers and by PHP; +# it can be set to any valid timezone, +# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones +# For example Europe/Dublin or MST7MDT + +# composer_root: +# Relative path to the composer root directory from the project root. This is +# the directory which contains the composer.json and where all Composer related +# commands are executed. + +# composer_version: "2" +# You can set it to "" or "2" (default) for Composer v2 or "1" for Composer v1 +# to use the latest major version available at the time your container is built. +# It is also possible to use each other Composer version channel. This includes: +# - 2.2 (latest Composer LTS version) +# - stable +# - preview +# - snapshot +# Alternatively, an explicit Composer version may be specified, for example "2.2.18". +# To reinstall Composer after the image was built, run "ddev debug refresh". + +# nodejs_version: "16" +# change from the default system Node.js version to another supported version, like 12, 14, 17, 18. +# Note that you can use 'ddev nvm' or nvm inside the web container to provide nearly any +# Node.js version, including v6, etc. + +# additional_hostnames: +# - somename +# - someothername +# would provide http and https URLs for "somename.ddev.site" +# and "someothername.ddev.site". + +# additional_fqdns: +# - example.com +# - sub1.example.com +# would provide http and https URLs for "example.com" and "sub1.example.com" +# Please take care with this because it can cause great confusion. + +# upload_dir: custom/upload/dir +# would set the destination path for ddev import-files to /custom/upload/dir +# When mutagen is enabled this path is bind-mounted so that all the files +# in the upload_dir don't have to be synced into mutagen + +# working_dir: +# web: /var/www/html +# db: /home +# would set the default working directory for the web and db services. +# These values specify the destination directory for ddev ssh and the +# directory in which commands passed into ddev exec are run. + +# omit_containers: [db, dba, ddev-ssh-agent] +# Currently only these containers are supported. Some containers can also be +# omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit +# the "db" container, several standard features of ddev that access the +# database container will be unusable. In the global configuration it is also +# possible to omit ddev-router, but not here. + +# nfs_mount_enabled: false +# Great performance improvement but requires host configuration first. +# See https://ddev.readthedocs.io/en/latest/users/install/performance/#nfs + +# mutagen_enabled: false +# Performance improvement using mutagen asynchronous updates. +# See https://ddev.readthedocs.io/en/latest/users/install/performance/#mutagen + +# fail_on_hook_fail: False +# Decide whether 'ddev start' should be interrupted by a failing hook + +# host_https_port: "59002" +# The host port binding for https can be explicitly specified. It is +# dynamic unless otherwise specified. +# This is not used by most people, most people use the *router* instead +# of the localhost port. + +# host_webserver_port: "59001" +# The host port binding for the ddev-webserver can be explicitly specified. It is +# dynamic unless otherwise specified. +# This is not used by most people, most people use the *router* instead +# of the localhost port. + +# host_db_port: "59002" +# The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic +# unless explicitly specified. + +# phpmyadmin_port: "8036" +# phpmyadmin_https_port: "8037" +# The PHPMyAdmin ports can be changed from the default 8036 and 8037 + +# host_phpmyadmin_port: "8036" +# The phpmyadmin (dba) port is not normally bound on the host at all, instead being routed +# through ddev-router, but it can be specified and bound. + +# mailhog_port: "8025" +# mailhog_https_port: "8026" +# The MailHog ports can be changed from the default 8025 and 8026 + +# host_mailhog_port: "8025" +# The mailhog port is not normally bound on the host at all, instead being routed +# through ddev-router, but it can be bound directly to localhost if specified here. + +# webimage_extra_packages: [php7.4-tidy, php-bcmath] +# Extra Debian packages that are needed in the webimage can be added here + +# dbimage_extra_packages: [telnet,netcat] +# Extra Debian packages that are needed in the dbimage can be added here + +# use_dns_when_possible: true +# If the host has internet access and the domain configured can +# successfully be looked up, DNS will be used for hostname resolution +# instead of editing /etc/hosts +# Defaults to true + +# project_tld: ddev.site +# The top-level domain used for project URLs +# The default "ddev.site" allows DNS lookup via a wildcard +# If you prefer you can change this to "ddev.local" to preserve +# pre-v1.9 behavior. + +# ngrok_args: --basic-auth username:pass1234 +# Provide extra flags to the "ngrok http" command, see +# https://ngrok.com/docs#http or run "ngrok http -h" + +# disable_settings_management: false +# If true, ddev will not create CMS-specific settings files like +# Drupal's settings.php/settings.ddev.php or TYPO3's AdditionalConfiguration.php +# In this case the user must provide all such settings. + +# You can inject environment variables into the web container with: +# web_environment: +# - SOMEENV=somevalue +# - SOMEOTHERENV=someothervalue + +# no_project_mount: false +# (Experimental) If true, ddev will not mount the project into the web container; +# the user is responsible for mounting it manually or via a script. +# This is to enable experimentation with alternate file mounting strategies. +# For advanced users only! + +# bind_all_interfaces: false +# If true, host ports will be bound on all network interfaces, +# not just the localhost interface. This means that ports +# will be available on the local network if the host firewall +# allows it. + +# default_container_timeout: 120 +# The default time that ddev waits for all containers to become ready can be increased from +# the default 120. This helps in importing huge databases, for example. + +#web_extra_exposed_ports: +#- name: nodejs +# container_port: 3000 +# http_port: 2999 +# https_port: 3000 +#- name: something +# container_port: 4000 +# https_port: 4000 +# http_port: 3999 +# Allows a set of extra ports to be exposed via ddev-router +# The port behavior on the ddev-webserver must be arranged separately, for example +# using web_extra_daemons. +# For example, with a web app on port 3000 inside the container, this config would +# expose that web app on https://.ddev.site:9999 and http://.ddev.site:9998 +# web_extra_exposed_ports: +# - container_port: 3000 +# http_port: 9998 +# https_port: 9999 + +#web_extra_daemons: +#- name: "http-1" +# command: "/var/www/html/node_modules/.bin/http-server -p 3000" +# directory: /var/www/html +#- name: "http-2" +# command: "/var/www/html/node_modules/.bin/http-server /var/www/html/sub -p 3000" +# directory: /var/www/html + +# override_config: false +# By default, config.*.yaml files are *merged* into the configuration +# But this means that some things can't be overridden +# For example, if you have 'nfs_mount_enabled: true'' you can't override it with a merge +# and you can't erase existing hooks or all environment variables. +# However, with "override_config: true" in a particular config.*.yaml file, +# 'nfs_mount_enabled: false' can override the existing values, and +# hooks: +# post-start: [] +# or +# web_environment: [] +# or +# additional_hostnames: [] +# can have their intended affect. 'override_config' affects only behavior of the +# config.*.yaml file it exists in. + +# Many ddev commands can be extended to run tasks before or after the +# ddev command is executed, for example "post-start", "post-import-db", +# "pre-composer", "post-composer" +# See https://ddev.readthedocs.io/en/stable/users/extend/custom-commands/ for more +# information on the commands that can be extended and the tasks you can define +# for them. Example: +#hooks: diff --git a/.editorconfig b/.editorconfig index af67d04a3..610409143 100644 --- a/.editorconfig +++ b/.editorconfig @@ -6,9 +6,27 @@ root = true [*] charset = utf-8 end_of_line = lf -trim_trailing_whitespaces = true indent_style = tab +trim_trailing_whitespace = true +insert_final_newline = true quote_type = single +max_line_length = off [*.js] -quote_type = double \ No newline at end of file +quote_type = double +ij_javascript_use_double_quotes = true + +[*.yml] +indent_style = space +indent_size = 2 + +[*.xml] +indent_style = space +indent_size = 2 + +[*.json] +indent_style = space +indent_size = 2 + +[composer.json] +indent_style = tab diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 7484a8362..e65d39709 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -13,7 +13,7 @@ assignees: '' ### Describe the feature you'd like - + ### Describe alternatives you've considered diff --git a/.gitignore b/.gitignore index c094f6a24..2889d12b5 100644 --- a/.gitignore +++ b/.gitignore @@ -10,17 +10,16 @@ home.html robots.txt #ignore local config -/config/local.config.php -/config/addon.config.php -/config/local.ini.php -/config/addon.ini.php +!/config/local-sample.config.php +/config/*.config.php +/config/*.ini.php #ignore documentation, it should be newly built /doc/api /doc/cache #ignore reports, should be generated with every build -report/ +/report/ #ignore config files from eclipse, we don't want IDE files in our repository .project @@ -34,7 +33,7 @@ report/ #ignore NetBeans IDE's private files (at least) /nbproject/private/ -Ignore config files from VSCode +#Ignore config files from VSCode /.vscode/ #ignore smarty cache diff --git a/.htaccess-dist b/.htaccess-dist index 404137168..c5c1b5b71 100644 --- a/.htaccess-dist +++ b/.htaccess-dist @@ -51,6 +51,6 @@ AddType audio/ogg .oga RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d - RewriteRule ^(.*)$ index.php?pagename=$1 [E=REMOTE_USER:%{HTTP:Authorization},L,QSA] + RewriteRule ^(.*)$ index.php?pagename=$1 [E=REMOTE_USER:%{HTTP:Authorization},L,QSA,B] diff --git a/.tx/config b/.tx/config index d639642de..32bcaf482 100644 --- a/.tx/config +++ b/.tx/config @@ -1,9 +1,9 @@ [main] -host = https://www.transifex.com +host = https://api.transifex.com -[friendica.messagespo] +[o:Friendica:p:friendica:r:messagespo] file_filter = view/lang//messages.po source_file = view/lang/C/messages.po source_lang = en -type = PO +type = PO diff --git a/.woodpecker/.code_standards_check.yml b/.woodpecker/.code_standards_check.yml index f81ab960f..0c951d701 100644 --- a/.woodpecker/.code_standards_check.yml +++ b/.woodpecker/.code_standards_check.yml @@ -1,4 +1,4 @@ -pipeline: +steps: restore_cache: image: meltwater/drone-cache:dev settings: diff --git a/.woodpecker/.continuous-deployment.yml b/.woodpecker/.continuous-deployment.yml index b1bc2406a..4ff956b3b 100644 --- a/.woodpecker/.continuous-deployment.yml +++ b/.woodpecker/.continuous-deployment.yml @@ -11,11 +11,11 @@ labels: skip_clone: true -pipeline: +steps: clone: image: alpine/git commands: - - git clone $CI_REPO_LINK . + - git clone $CI_REPO_CLONE_URL . - git checkout $CI_COMMIT_BRANCH - git fetch origin $CI_COMMIT_REF - git merge $CI_COMMIT_SHA @@ -39,7 +39,7 @@ pipeline: branch: [ develop, '*-rc' ] event: push composer_install: - image: friendicaci/php7.4:php7.4.18 + image: friendicaci/php7.4:php7.4.33 commands: - export COMPOSER_HOME=.composer - composer validate diff --git a/.woodpecker/.database_checks.yml b/.woodpecker/.database_checks.yml index 867638264..7d2553674 100644 --- a/.woodpecker/.database_checks.yml +++ b/.woodpecker/.database_checks.yml @@ -1,12 +1,16 @@ matrix: include: - PHP_MAJOR_VERSION: 7.4 - PHP_VERSION: 7.4.18 + PHP_VERSION: 7.4.33 branches: exclude: [ stable ] -pipeline: +# This forces CI executions at the "opensocial" labeled location (because of much more power...) +labels: + location: opensocial + +steps: db_version_match: image: friendicaci/transifex commands: diff --git a/.woodpecker/.license_check.yml b/.woodpecker/.license_check.yml index 777986544..e7545f5f4 100644 --- a/.woodpecker/.license_check.yml +++ b/.woodpecker/.license_check.yml @@ -1,4 +1,4 @@ -pipeline: +steps: check: image: friendicaci/php-cs commands: diff --git a/.woodpecker/.messages.po_check.yml b/.woodpecker/.messages.po_check.yml index c5b283e1d..9c2509594 100644 --- a/.woodpecker/.messages.po_check.yml +++ b/.woodpecker/.messages.po_check.yml @@ -1,4 +1,4 @@ -pipeline: +steps: build_xgettext: image: friendicaci/transifex commands: @@ -9,4 +9,4 @@ pipeline: - /check-messages.sh branches: - exclude: [ stable ] \ No newline at end of file + exclude: [ stable ] diff --git a/.woodpecker/.phpunit.yml b/.woodpecker/.phpunit.yml index 7cb91eff7..f3d60fbf9 100644 --- a/.woodpecker/.phpunit.yml +++ b/.woodpecker/.phpunit.yml @@ -1,18 +1,26 @@ matrix: include: - PHP_MAJOR_VERSION: 7.3 - PHP_VERSION: 7.3.28 + PHP_VERSION: 7.3.33 - PHP_MAJOR_VERSION: 7.4 - PHP_VERSION: 7.4.18 + PHP_VERSION: 7.4.33 - PHP_MAJOR_VERSION: 8.0 - PHP_VERSION: 8.0.5 + PHP_VERSION: 8.0.30 + - PHP_MAJOR_VERSION: 8.1 + PHP_VERSION: 8.1.23 + - PHP_MAJOR_VERSION: 8.2 + PHP_VERSION: 8.2.11 -pipeline: +# This forces PHP Unit executions at the "opensocial" labeled location (because of much more power...) +labels: + location: opensocial + +steps: php-lint: image: php:${PHP_MAJOR_VERSION} group: lint commands: - - ./bin/composer.phar run lint + - find . -name \*.php -not -path './vendor/*' -not -path './view/asset/*' -print0 | xargs -0 -n1 php -l restore_cache: image: meltwater/drone-cache:dev settings: @@ -65,20 +73,19 @@ pipeline: else phpunit --configuration tests/phpunit.xml; fi - codecov: - image: plugins/codecov + image: friendicaci/codecov when: matrix: PHP_MAJOR_VERSION: 7.4 - PHP_VERSION: 7.4.18 + PHP_VERSION: 7.4.33 repo: - friendica/friendica - settings: - token: - from_secret: codecov-token - files: - - clover.xml + commands: + - codecov -R '.' -Z -f 'clover.xml' + secrets: + - source: codecov-token + target: codecov_token services: mariadb: diff --git a/.woodpecker/.releaser.yml b/.woodpecker/.releaser.yml index 043071ddd..006bcfec3 100644 --- a/.woodpecker/.releaser.yml +++ b/.woodpecker/.releaser.yml @@ -9,11 +9,11 @@ labels: skip_clone: true -pipeline: +steps: clone: image: alpine/git commands: - - git clone $CI_REPO_LINK . + - git clone $CI_REPO_CLONE_URL . - git checkout $CI_COMMIT_BRANCH - git fetch origin $CI_COMMIT_REF - git merge $CI_COMMIT_SHA @@ -37,7 +37,7 @@ pipeline: branch: stable event: tag composer_install: - image: friendicaci/php7.4:php7.4.18 + image: friendicaci/php7.4:php7.4.33 commands: - export COMPOSER_HOME=.composer - composer validate diff --git a/CHANGELOG b/CHANGELOG index b2e549610..94b2f067a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,13 +1,214 @@ -Version 2022.12 (unreleased) +Version 2023.09 (unreleased) Friendica Core Friendica Addons - BREAKING: The functions from the boot.php file have been moved into better fitting classes - this may break your custom addons. See the pull requests #1293 and #1294 in the - addon repository about the needed changes to your addons. Closed Issues +Version 2023.05 (2023-05-23) + Friendica Core + Updates to the translations HU, PL + Updates to the themes (frio, vier) [MrPetovan, xundeenergie] + Updates to the documentation [MrPetovan] + Improved the probing of remote accounts [Annando, ne20002] + Improved the OWA implementation [annando, abanink] + Improved the database handling [nupplaphil] + Improved the ATOM feed handling, added OPML [annando] + Improved the audience handling of forum posting [annando] + General code cleanup [annando, MrPetovan, nupplaphil, Raroun] + Fixed HTML escaping for notification messages [MrPetovan, nupplaphil] + Fixed the feed body import [annando] + Fixed meaning of the limit parameter in the Mastodon API [annando] + Fixed a bug in the tag cloud [MrPetovan] + Fixed the magic links in photo menu [MrPetovan] + Added new hook for addons (support_probe) [annando] + Added support for special characters in category links [MrPetovan] + Added possibility to collapse postings [annando] + Added the emojipicker to the core [annando] + Added a fancybox to view images in network stream [annando] + + Friendica Addons + Updates to the translations DE, HU + bluesky + Added the bluesky connector [annando] + mailstream + General code cleanup [mexon] + tumblr + Added OAuth2 support [ænnando] + Added un/follow, un/block functionality [annando] + Added probe [annando] + Added the possibility for users to follow tags [annando] + emojipicker, fancybox + The functionality of this addon has been moved to the + core for the frio and vier themes. [annando] + + Closed Issues + 12439, 12760, 12788, 12824, 12979, 13016, 13026, 13027, 13036, + 13052, 13073, 13082, 13089, 13102, 13104, 13108 + +Version 2023.04-1 (2023-04-27) + Friendica Core + Updates to the translations AR, CA, CS, DE, ES, FR, GD, HU, IT, JA, NL, PL, RU + Fixed a bug that broke the private messages web interface [MrPetovan] + + Friendica Addons + tumblr + Added follow, unfollow, cross posting [annando] + Added the possibility to import the remote timeline [annando] + **Breaking** Switch to OAuth2 [annando] + Node admins have to change the redirect URL in the settings to the + OAuth2 specific one. social.example.com/tumblr/redirect + mailstream + Various modernization [mexon] + Include post media [mexon] + + Closed Issues + 13026 + +Version 2023.04 (2023-04-23) + Friendica Core + Updates to the translations AR, BG, CA, CS, DA, DE, EO, ES, ET, FR, GD, HU, IS, IT, JA, NL, PL, RU, SV + Updates to the themes (frio, vier) [damianwajer, haheute, MrPetovan, xundeenergie] + Updates to the documentation [haheute, HankG, MarekBenjamin, MrPetovan] + General code cleanup [annando, MarekBenjamin, MrPetovan, nupplaphil] + Fixed display of blocked contacts [annando] + Fixed usage of environment variables [nupplaphil] + Fixed paging on the Mastodon compatible API endpoints for timelines and statuses [HankG] + Fixed updating of attached links via the API [HankG] + Fixed federation issues with Diaspora*, gup.pe, Hubzilla and Peertube servers [annando] + Fixed a bug with PubSubHubBub subscription [annando] + Fixed a XSS vulnerability in Justified-Gallery JavaScript dependency (frio theme) [MrPetovan] + Improved the translate ability of activities (singular/plural forms) [nupplaphil] + Improved activity update handling [xundeenergie] + Improved BBCode + Markdown parsing [annando] + Improved known Fediverse statistics [annando] + Improved automatic table optimization [HankG] + Improved the performance of local JsonLD requests [MrPetovan] + Improved the performance of local requests [annando] + Improved the performance of the delivery of postings [annando] + Improved the performance of homepage rel-me checks [annando] + Improved supported characters for passwords [MrPetovan] + Improved the ARIA support [MrPetovan] + Improved PHP 8.2 compatibility [MrPetovan] + Added emoticon reaction handling [annando] + Added drag and drop image upload in frio themes [xundeenergie] + Added scope change for comments to the API [annando] + Added posting visibility to the API [HankG] + Added delivery information to the Mastodon compatible API [HankG] + Added notification summary option to the Mastodon compatible API [HankG] + Added option to display activities as emoticons [annando] + Added trending API updates [HankG] + Added blocked/ignored filters to the Mastodon compatible API [HankG] + Added ActivityPub C2S postings to the API [annando] + Added dislike information for postings to the Mastodon compatible API [HankG, mkljczk] + Added the possibility to deletion blocked servers [annando] + Removed the GNUsocial import [annando] + + Friendica Addons + Updates to the translations AR, CS, DE, ES, HU, IS, IT, NL, PL, RU, SV + securemail + Updated the phpseclib dependency [MrPetovan] + twitter + Improve remote-self handling [annando] + impressum + Avoide obfuscation on un-set email addresses [MrPestovan] + notifyall + Fixed a bug selecting the email addresses [nupplaphil] + tumblr + Fixed a bug addressing the tumblr blog via UUID [annando] + Added support for NPF [annando] + Improved the tumblr blog URI detection [annando] + Improved the handling of multible images [annando] + marked as UNSUPPORTED addons + blockem, tictactoe, twitter + + Closed Issues + 7037, 10974, 11513, 11535, 11825, 11986, 12489, 12490, 12507, 12515, + 12522, 12537, 12545, 12550, 12552, 12559, 12582, 12601, 12602, 12603, + 12607, 12608, 12616, 12617, 12620, 12624, 12625, 12629, 12654, 12658, + 12661, 12665, 12672, 12677, 12682, 12705, 12713, 12721, 12753, 12764, + 12779, 12792, 12793, 12803, 12809, 12828, 12835, 12842, 12846, 12847, + 12858, 12859, 12871, 12888, 12924, 12944, 12970, 12974, 12983, 12993, + 12995, 13002, 19996 + +Version 2023.01 (2023-01-15) + Friendica Core + Improved the global server updating if domains are blocked [MrPetovan] + Improved the forum distribution for comments [annando] + Improved the handling of forum mentions [annando] + Fixed the forum post distribution [annando] + Fixed a security bug in the 404 page [nupplaphil] + + Closed Issues + 12539, 12540, 12655, 12615, 12663 + +Version 2022.12 (2022-12-20) + Friendica Core + Updates to the translations DE, FR, HU, PL, RU + Updated to the documentation [foss-, MarekBenjamin, MrPetovan, tobiasd] + Updates to the themes (frio, vier) [loma-one, MarekBenjamin, MrPetovan, tobiasd] + Improved the display of the system settings in the admin panel [MarekBenjamin] + Improved the API [annando, HankG, Schnoop] + Improved getting system information [VVelox] + Improved the PHP 8.1 compatibility [MrPetovan] + Improved the bulk delivery of postings [annando] + Improved the display of attached images to postings [MarekBenjamin] + General code cleanup [annando, MrPetovan, nupplaphil, Quix0r] + Added a blur hash for images else not displayable [annando] + Added a /about route for the /friendica page [nupplaphil] + Added reporting endpoints to the API [annando] + Added support for the "fedifinder" [annando] + Added rel-me verification for the profile homepage [tobiasd] + Added admin notification for new registrations [annando] + Added a moderation section to the admin panel [annando] + Added an option to make the calendar public [matthiasmoritz] + Fixed a bug in the federation with Diaspora* [annando] + Fixed a problem in the federation with GoTo Social and Owncast [annando] + Deprecated old themes (duepuntozero, quattro, smoothy) + + NOTE: The Apache2 rewrite rule in the .htaccess-dist has been changed. + The change has to be applied manually to the existing .htaccess. + + Friendica Addons + Updates to the translations DE, FR, HU, SV + fancybox: + Added an addon to display images in postings with a fancybox [brockhaus] + impressum: + Fixed a bug when saving informations [tobiasd] + js_upload: + Improved wording [MarekBenjamin] + monolog: + Moved the functionality into an addon [nupplaphil] + nitter: + Updated the wording [AndyHee] + nsfw: + Enhanced regex handling [MrPetovan] + pumpio: + Fixed logger message [MrPetovan] + rendertime: + Fixed empty minimal time [nupplaphil] + Adapt ignored_modules [nupplaphil] + twitter: + Fixed a problem when the image array was missing [MrPetovan] + Added an option to automatically follow contacts in the Fediverse [annando] + + Deprecated unmaintained addons: namethingy, superblock, windowsphonepush + + BREAKING: The functions from the boot.php file have been moved into better + fitting classes this may break your custom addons. See the pull + requests #1293 and #1294 in the addon repository about the needed + changes to your addons. + + Closed Issues + 5095, 7574, 9286, 9920, 10100, 10188, 10518, 10875, 11011, 11284, + 11553, 11774, 11804, 11875, 11911, 11941, 11998, 12009, 12013, 12023, + 12035, 12054, 12059, 12073, 12084, 12085, 12090, 12096, 12112, 12149, + 12163, 12182, 12191, 12192, 12193, 12197, 12199, 12201, 12219, 12220, + 12229, 12237, 12245, 12262, 12266, 12273, 12275, 12285, 12312, 12327, + 12338, 12339, 12342, 12344, 12345, 12355, 12373, 12376, 12382, 12386, + 12399, 12401, 12405, 12406, 12408, 12411, 12413, 12421, 12431, 12437, + 12441, 12448, 12450, 12456, 12466, 12468, 12476 + Version 2022.10 (2022-10-14) Friendica Core Added GD translation, updates to the translations AR, DE, FR, HU, PL, SV, ZH CN @@ -650,13 +851,13 @@ Version 2020.07 (2020-07-12) blockbot: The list of accepted user agents was enhanced [annando] Diaspora*: - Enhanced conntector settings [MrPetovan] + Enhanced connector settings [MrPetovan] PHP Mailer SMTP: Updated phpmailer version [dependabot] showmore_dyn: New addon to collapse long post depending on their actual height [wiwie] twitter: - Enhaceed the handling of mobile twitter URLs [annando] + Enhanced the handling of mobile twitter URLs [annando] Enhanced the handling of quoted tweets [MrPetovan] added HTML error code handling [MrPetovan] various: @@ -894,7 +1095,7 @@ Version 2019.09 (2019-09-29) Version 2019.06 (2019-06-23) Friendica Core: - Update to the tranlation (CS, DE, EN-GB, EN-US, ET, FR, IT, PL, PT-BR, SV) [translation teams] + Update to the translation (CS, DE, EN-GB, EN-US, ET, FR, IT, PL, PT-BR, SV) [translation teams] Update to the documentation [nupplaphil, realkinetix, MrPetovan] Update to the themes (frio, vier) [BinkaDroid, MrPetovan, tobiasd] Enhancements to the API [annando, MrPetovan] @@ -914,7 +1115,7 @@ Version 2019.06 (2019-06-23) Fixed an issue with the File to Folder feature [MrPetovan] Fixed an issue with the legacy storage engine [fabrixxm] Fixed an issue with the theme and addon path items [MrPetovan] - Fixed an issue occuring when the BasePath was not set [tobiasd] + Fixed an issue occurring when the BasePath was not set [tobiasd] Fixed an issue with additionally opened Sessions [MrPetovan] Fixed an issue with legacy loglevel mapping [nupplaphil] Fixed contact suggestions [annando] @@ -940,7 +1141,7 @@ Version 2019.06 (2019-06-23) Remove support for defunct F-Droid Friendica app [MrPetovan] Friendica Addons: - Update to the tranlation (ET, SV, ZH_CN) [translation teams] + Update to the translation (ET, SV, ZH_CN) [translation teams] botdetection: Added a new addon for preventing access by bots [nupplaphil, annando] buffer: @@ -978,7 +1179,7 @@ Version 2019.03 (2019-03-22) Update to the themes (duepuntozero, frio, smoothy, quattro, vier) [lxiter, MrPetovan, nupplaphil, rabuzarus, tobiasd] Enhancements to the API [jasonscheng] Enhancements to the Vagrant development VM [JeroenED] - Enhancements to the storage of gender, sexual preferences and maritial status [JeroenED] + Enhancements to the storage of gender, sexual preferences and marital status [JeroenED] Enhancements to the wording of notifications [MrPetovan] Enhancements to the display of contacts in the profile [MrPetovan] Enhancements to the handling of local links [lxiter] @@ -1007,7 +1208,7 @@ Version 2019.03 (2019-03-22) Fixed an issue with sending out notification mails to the admin [nupplaphil] Fixed an the issue, that the API was ignoring the globalsilence setting [nupplaphil] Fixed issues with the autolinker of URLs in postings [MrPetovan] - Fixed an issue resulting in multible emails after successful updates of the database [nupplaphil] + Fixed an issue resulting in multiple emails after successful updates of the database [nupplaphil] Fixed a timeout issue during detection process of the remote profile [annando] Fixed an issue with postings from blocked servers [annando, MrPetovan] Fixed an issue with the paging of stored folders [MrPetovan] @@ -1039,7 +1240,7 @@ Version 2019.03 (2019-03-22) forumdirectory: Fixed a theming issue with frio [rabuzarus] js_upload: - Fixed a missing extionsion index [nupplaphil] + Fixed a missing extension index [nupplaphil] mailstream: Fixed a curl issue [MrPetovan] piwik: @@ -1259,7 +1460,7 @@ Version 2018.09 (2018-09-23) added addons: mastodoncustomemojis [MrPetovan] deprecated addons: - notimeline, retriver, remote_permissions, widgets + notimeline, retriever, remote_permissions, widgets Directory: Enhancements of the health summary [andyhee] @@ -1285,7 +1486,7 @@ Version 2018.05 (2018-06-01) Enhancements to the relay system [annando] Enhancements to the handling of URL that contain unicode characters [annando] Enhancements to the Vagrant VM configuration [fabrixxm, tobiasd] - Enhancementa to the Babel module [MrPetovan] + Enhancements to the Babel module [MrPetovan] Enhancements to the display of the [code] elements [MrPetovan] Enhancements to the federation (OStatus, diaspora) [annando] Enhancements to the PHP7.2 compatibility [Alkarex, MrPetovan, Quix0r] @@ -1314,7 +1515,7 @@ Version 2018.05 (2018-06-01) Fixed a bug that made edited mentions and hashtags plaintext [annando] Fixed a bug that caused the /display page to receive constandly new updates [annando] Fixed wrong version of a dependency preventing the usage of PHP 5.6 [MrPetovan] - Fixed a bug in OpenID authentification [Quix0r] + Fixed a bug in OpenID authentication [Quix0r] Fixed a bug in the item deletion [annando] Fixed a bug that prevented public comments from being distributed [annando] Fixed a bug that caused empty profile pictures for public contacts [annando] @@ -1413,7 +1614,7 @@ Version 3.6 (2018-03-23) Enhancements to the probing of pump.io profiles [annando] Enhancements to the handling of BBCode tags [MrPetovan] Enhancements to the OEmbed handling [MrPetovan] - Fixed a bug that triggered the display of activities on the cummunity page [annando] + Fixed a bug that triggered the display of activities on the community page [annando] Fixed a bug with personal notes [annando] Fixed a display issue of long postings when using the showmore option [annando] Fixed a bug that caused Twidere to crash on reload [annando] @@ -1421,7 +1622,7 @@ Version 3.6 (2018-03-23) Fixed a bug in URL completion for feed fragments [annando] Fixed a bug in the notification system about new registrations [annando] Fixed the display of dislikes [annando] - Fixed the display of orphans childs in threads [MrPetovan] + Fixed the display of orphan children in threads [MrPetovan] Fixed some SQL problems [annando] Fixed the CLI config script [tobiasd] Fixed the forum selection on the network display [annando] @@ -1475,7 +1676,7 @@ Version 3.6 (2018-03-23) all bridges don't relay postings anymore that are posted to a public forum [annando] DAV addon marked unsupported [tobiasd] communityhome addon marked unsupported [MrPetovan] - yourls addon makrked unsupported [MrPetovan] + yourls addon marked unsupported [MrPetovan] Current Weather: fixing a problem with the weathermap link [zeroadam] NSFW added config examples, reworked the description, now ignores the CW from Mastodon [andyhee, annando, rebeka-catalina] Twitter support 280 chars limit [annando] @@ -1670,7 +1871,7 @@ Version 3.5.1 (2017-03-12) Improvements to the documentation [Hypolite, tobiasd, rabuzarus, beardyunixer, eelcomaljaars] Improvements to the BBCode / Markdown conversation [Hypolite] Improvements to the OStatus protocol implementation [annando] - Improvements to the installation wizzard [tobiasd] + Improvements to the installation wizard [tobiasd] Improvements to the Diaspora connectivity [annando, Hypolite] Work on PHP7 compatibility [ddorian1] Code cleanup [Hypolite, Quix0r] @@ -1732,11 +1933,11 @@ Version 3.5 (2016-09-13) Improvements on the themes (quattro, vier, frost) [rabuzarus, fabrixxm, stieben, annando, Quix0r, tobiasd] Improvements to the ACL dialog [fabrixxm, rabuzarus] Improvements to the database structure and optimization of queries [annando] - Improvements to the UI (contacts, hotkeys, remember me, ARIA, code hightlighting) [rabuzarus, annando, tobiasd] + Improvements to the UI (contacts, hotkeys, remember me, ARIA, code highlighting) [rabuzarus, annando, tobiasd] Improvements to the background process (poller, worker) [annando] Improvements to the admin panel [tobiasd, annando, fabrixxm] Improvements to the performance [annando] - Improvements to the installation wizzard (language selection, RINO version, check required PHP modules, default theme is now vier) [tobiasd] + Improvements to the installation wizard (language selection, RINO version, check required PHP modules, default theme is now vier) [tobiasd] Improvements to the relocation of nodes and accounts [annando] Improvements to the DDoS detection [annando] Improvements to the calendar/events module [annando, rabuzarus] @@ -1761,7 +1962,7 @@ Version 3.5 (2016-09-13) GNU Social Connector [annando] LDAP [Olivier Mehani] smileybutton [rabuzarus] - retriver [mexon] + retriever [mexon] mailstream [mexon] forumdirectory [tobiasd] NEW notifyall (port from Hubzilla) [rabuzarus, tobiasd] @@ -1816,7 +2017,7 @@ Version 3.4.3 (2015-12-22) 'Reload active themes' in theme admin page (fabrixxm) Install routine checks for ImageMagick and GIF support (fabrixxm) Install routine checks for availability of "mcrypt_create_iv()" function, needed for RINO2 (fabrixxm) - Only suported themes are shown in admin page (annando) + Only supported themes are shown in admin page (annando) Optimized SQL queries (annando) System perform an optimize pass on tables in cron, with maximum table size and minimum fragmentation level settings (annando) New access keys in profile and contact pages (rabuzarus, annando) @@ -1831,9 +2032,9 @@ Version 3.4.3 (2015-12-22) New hook 'template_vars' (fabrixxm) $baseurl variable is passed to all templates by default (fabrixxm) OStatus delivery code is moved in new function (annando) - Doxygen config file and initial documetation of code (rabuzarus) + Doxygen config file and initial documentation of code (rabuzarus) Full rewrite of util/php2po.php (fabrixxm) - Bugfixs: + Bugfixes: Remote self works again (annando) Fix feeds mistakenly recognized as OStatus (issue #1914) (annando) Report invalid feeds to user (issue #1913) (annando) @@ -1848,8 +2049,8 @@ Version 3.4.3 (2015-12-22) Fix rapid repeated requests to GNUSocial instance (issue #2038) (annando) Fix install routine css when mod_rewrite doesn't works (issue #2071) (fabrixxm) Fix code to be compliant with minimum required PHP version (issue #2066) (fabrixxm, rabuzarus) - Fix feedback after succesfull registration (issue #2060) (annando) - Fix mention completition popup with TinyMCE (issue #1920) (fabrixxm) + Fix feedback after successful registration (issue #2060) (annando) + Fix mention completion popup with TinyMCE (issue #1920) (fabrixxm) Fix photo cache and proxy when installed in subfolder (ddorian1) Fix bbcode conversion of the about text for the profile (issue #1607) (annando) @@ -1859,7 +2060,7 @@ Version 3.4.2 (2015-09-29) Updates to the documentation (tobiasd, silke, annando) Updates to the translations (tobiasd & translation teams) Updates to themes frost-mobile, vier, duepuntozero, quattro (annando, tobiasd) - Enancements of the communications via OStatus and Diaspora protocols (annando) + Enhancements of the communications via OStatus and Diaspora protocols (annando) Option to automatically follow OStatus contacts was moved from addon to the core (annando) Add tool to import OStatus contacts from an old account (annando) SALMON slaps with OStatus were reworked (annando) @@ -1876,7 +2077,7 @@ Version 3.4.2 (2015-09-29) The global directory is queried in the background to update local DB and improve similar searches in the future. (annando) By communication over the Diaspora protocol, red#matrix sources are now correctly identified, hubzilla is detected (annando) Adopt limitation of usage of "-" in username to avoid conflicts with GNU Social and Diaspora (annando) - The [url] tag now also suppots ftp, mailto, gopher links (annando) + The [url] tag now also supports ftp, mailto, gopher links (annando) An "inspect queue" module was added to the admin panel (tobiasd) Fix some missing SQL data escapes (fabrixxm) Improved the accessibility of the web UI for better screen reader compatibility (annando) @@ -1904,7 +2105,7 @@ Version 3.4.1 (2015-07-06) Implement server-to-server encryption (RINO) using php-encryption library as "RINO 2", deprecate "RINO 1" (issue #1655) (fabrixxm) Fix connection with Diaspora "freelove" account (issue #1572) (annando) Various SQL speedups (annando) - Port of Javascript DatePicker input from RedMatrix (rabuzarus) + Port of JavaScript DatePicker input from RedMatrix (rabuzarus) Port of RedMatrix archive widget (rabuzarus) Load profile owner settings for theme on profile page (rabuzarus) Move HTML code from php into templates (rabuzarus) @@ -1917,7 +2118,7 @@ Version 3.4.1 (2015-07-06) use correct contact when automatically add @-replies add attachment links as enclosures send salmon notifications to every mentioned person - better thread completition + better thread completion support for bookmarks support for events and questions link to items using GUID @@ -1928,7 +2129,7 @@ Version 3.4.1 (2015-07-06) Add fake fields to API response for better Twitter API compatibility (annando) Fix search in local directory (issue #1657) (annando) Improve OEmbed (issue #1640) (annando) - Fix double html encodig in site administration page for sitename and register text (issue #1628) (annando) + Fix double html encoding in site administration page for sitename and register text (issue #1628) (annando) Fix remote subscription from GNU Social (annando) Fix "{0}" in notifications (issue #1642) (annando) Fix desktop notification (fabrixxm) @@ -1937,7 +2138,7 @@ Version 3.4.1 (2015-07-06) Fix emoticons alt text (tobias) Improve threaded display in Vier theme (annando) Use field templates in photo edit form (fabrixxm) - Alllow deletion of any user but yourself (issue #1625) (fabrixxm) + Allow deletion of any user but yourself (issue #1625) (fabrixxm) Install wizard load htconfig template from template/ folder, remove localized htconfig templates (fabrixxm) Add contact detail to non-js contact drop confirm dialog (issue #1629) (fabrixxm) Return geo coord in API (annando) @@ -1956,7 +2157,7 @@ Version 3.4 (2015-04-05) Optionally, "like" and "dislike" activities don't update thread timestamp (annando) Updated markdown libraries (annando) Updated jQuery (StefOfficiel) - Cache zrl verification requests to prevent DSoS (issue #1453) (annando) + Cache zrl verification requests to prevent DDoS (issue #1453) (annando) "Verify SSL" options affects also VERIFYHOST (annando) Better handling of hashtags (annando) Updated translations (translation teams, tobias) @@ -1994,7 +2195,7 @@ Version 3.3.3 (2015-02-24) Share-it button support (annando) More reliable reshare from Diaspora (annando) Load more images via proxy (annando) - util/typo.php uses "php -l" insead of "eval()" to validate code (fabrixxm) + util/typo.php uses "php -l" instead of "eval()" to validate code (fabrixxm) Use $_SERVER array in cli script instead of $argv/$argc (issue #1218) (annando) Updated vagrant setup script (silke) API: support to star/unstar items (fabrixxm) @@ -2015,7 +2216,7 @@ Version 3.3.3 (2015-02-24) Version 3.3.2 (2014-12-26) - Set default value for all not-null fields (fixes SQL warinigs) (annando) + Set default value for all not-null fields (fixes SQL warnings) (annando) Fix item filters in network page (issue #1222) (fabrixxm) Remove reference to an ex Friendica hub from documentation (beardyunixer, tobiasd) API throttling (annando) @@ -2061,7 +2262,7 @@ Version 3.3 (2014-10-06) Interaction ignoring of threads - for selected contects one can now get notifications when they post something, useful e.g. for forums + for selected contacts one can now get notifications when they post something, useful e.g. for forums After a new friendica contact is added, the user is directed to the contact page of the new contact. (Instead of the remote profile) many improvement on all connectors, new app.net connector the algorithm for shortening postings when posting to limited platforms was improved @@ -2073,7 +2274,7 @@ Version 3.3 (2014-10-06) updated the following libraries: smarty 3.1.19, fullcalendar 1.6.4, jquery 1.11, jgrowl 1.3.0 added modernizer 2.8.3, better browser support updates to the DB structure for better performance - preperations to use PDO in a later release + preparations to use PDO in a later release new notification system web interface translations updated, addon translations now also possible separately from the main UI and done for CS, IT, RO, DE vagrant support added for developers @@ -2111,7 +2312,7 @@ Version 3.2 small fixed edit profile photo link better caching of pictures - threadening for outgoing emails + threading for outgoing emails mail import oembed thumbnails SN subscriptions & more SN like behaviour if snautofollow addon is used @@ -2131,7 +2332,7 @@ Version 3.2 improving the install.php script addons now can be members only item object now contains the "edited" information left for the theme designers to show this info in a pretty way - improvments to the user-import from exported account files + improvements to the user-import from exported account files It's now possible to authenticate an ejabberd server against friendica. bugtracker moved to github improvements to MySQL queries diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index bcfbf0f7f..4ffdb9197 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,5 +1,5 @@ # How to Contribute -If you want to contribute to the project, you don’t need to have coding experience. There are a number of tasks listed in the issue tracker with the label “[Junior Jobs](https://github.com/friendica/friendica/issues?q=is%3Aopen+is%3Aissue+label%3A%22Junior+Jobs%22)” we think are good for new contributors. But you are by no means limited to these – if you find a solution to a problem (even a new one) please make a pull request at [github](https://github.com/friendica/friendica) or let us know in the [development forum](https://forum.friendi.ca/profile/developers). +If you want to contribute to the project, you don’t need to have coding experience. There are a number of tasks listed in the issue tracker with the label “[Junior Jobs](https://github.com/friendica/friendica/issues?q=is%3Aopen+is%3Aissue+label%3A%22Junior+Jobs%22)” we think are good for new contributors. But you are by no means limited to these – if you find a solution to a problem (even a new one) please make a pull request at [github](https://github.com/friendica/friendica) or let us know in the [development group](https://forum.friendi.ca/profile/developers). -Contribution to Friendica is also not limited to coding. Any contribution to the [documentation](https://github.com/friendica/friendica/tree/develop/doc), the [translation](https://www.transifex.com/Friendica/friendica/dashboard/) or advertisement materials is welcome or reporting a problem. You don’t need to deal with Git(Hub) or Transifex if you don’t like to. Just [get in touch](https://forum.friendi.ca/profile/helpers) with us and we will get the materials to the appropriate places. +Contribution to Friendica is also not limited to coding. Any contribution to the [documentation](https://github.com/friendica/friendica/tree/develop/doc), the [translation](https://app.transifex.com/Friendica/friendica/dashboard/) or advertisement materials is welcome or reporting a problem. You don’t need to deal with Git(Hub) or Transifex if you don’t like to. Just [get in touch](https://forum.friendi.ca/profile/helpers) with us and we will get the materials to the appropriate places. diff --git a/CREDITS.txt b/CREDITS.txt index d065e56c4..6deeaa8bf 100644 --- a/CREDITS.txt +++ b/CREDITS.txt @@ -38,6 +38,7 @@ aweiher axelt balderino Balázs Úr +Bartosz Małkowski Beanow beardyunixer Beatriz Vital @@ -73,8 +74,11 @@ CrystalStiletto Cyboulette Cyryl Sochacki czarnystokrotek +daingewuvzeevisiddfddd +Damian Wajer Damien Goutte-Gattat Daniel Dupriest +Daniel Siepmann Daria Początek David David Martín Miranda @@ -100,6 +104,7 @@ erik Erkan Yilmaz Eugene Veresk Extarys +F1per 3y Fabian Dost Fabio Comuni Farida Khalaf @@ -108,7 +113,7 @@ Filip Bugaj Filip H.F. "FiXato" Slagter Finn Dean FlxAlbroscheit -foss +foss- Francesco Apruzzese Frank Dieckmann Frederico Gonçalves Guimarães @@ -119,10 +124,13 @@ Gidi Kroon GLComo greeneyedred Gregory Smith +Grischa Brockhaus gudzpoz +GunChleoc guzzisti Haakon Meland Eriksen Hank Grabowski +Hannes Heute Hans Meine Hauke Hauke Altmann @@ -135,7 +143,7 @@ Ilmari ImgBotApp irhen Jakob -Jakobus Schürz (admin) +Jakob Schürz Jens Tautenhahn jensp Jeroen De Meerleer @@ -150,6 +158,7 @@ John Mortensen Jonatan Nyberg Jonny Tischbein Josef Moravek +Josh Soref juanman julia.domagalska Julio Cova @@ -164,6 +173,7 @@ Koyu Berteon kPherox Kris Kristoffer Grundström +KulikAlex Lea1995polish Leberwurscht Leonard Lausen @@ -175,10 +185,13 @@ Ludovic Grossard Lynn Stephenson maase2 Mai Anh Nguyen +Makary Manuel Pérez Monís Marcin Klessa Marcin Mikołajczak Marcus Müller +Marek Bachmann +MarekBenjamin Marie Olive Mariusz Pisz marmor @@ -203,6 +216,7 @@ mytbk nathilia-peirce Nicola Spanti Nicolas Derive +nnsrymni nobody nupplaPhil Olaf Conradi @@ -216,10 +230,12 @@ pankraz Paolo Wave Pascal Pascal Deklerck +Paul Saunders Pavel Morozov PerigGouanvic peter Peter Liebetrau +Petr Kučera peturisfeld Phigger Phigger Philipp @@ -237,7 +253,7 @@ Rafael Kalachev Rain Hawk Rainulf Pineda Ralf Thees -Ralph +ralph van der honing Ratten rcmaniac RealKinetix @@ -250,12 +266,15 @@ Rik 4 RJ Madsen Roger Meyer Roland Häder +Ruud Schilders rwa +Ryan Voots S.Krumbholz Sakałoŭ Alaksiej Sam Samuli Valavuo Sandro Santilli +Schnoop Sebastian Egbers sella Senex Petrovic @@ -287,6 +306,7 @@ teho Thecross Thomas Thomas Willingham +Thorsten thorsten23 Till Mohr Tim Stahel @@ -318,7 +338,6 @@ very-ape Viktor Nilsson Vinzenz Vietzke vislav -vladimir N Vladimir Núñez VVelox Vít Šesták 'v6ak' @@ -329,6 +348,7 @@ Wil Tur Wouter Broers Xiaofei Xu XMPPはいいぞ +xundeenergie Yasen Pramatarov Yasmine A ylms diff --git a/README.md b/README.md index a7494d7f8..4dedf006b 100644 --- a/README.md +++ b/README.md @@ -1,46 +1,29 @@ -Friendica Social Communications Server -====================================== +Friendica - your open and free social network +============================================= -Welcome to the free social web. +Welcome to the free social web. Friendica is a platform for decentralised social communication linking to other independent social and corporate services. -Friendica is a decentralised communications platform that integrates social communication. Our platform links to independent social projects and corporate services. +Friendica connects you to a federated communications network of thousands of servers called the Fediverse. Through various protocols you can interact with anyone on [Friendica]( https://friendi.ca), [Mastodon](https://joinmastodon.org), [Lemmy](https://join-lemmy.org/), [Diaspora](https://diasporafoundation.org), [Misskey](https://join.misskey.page), [Peertube](https://joinpeertube.org/), [Pixelfed](https://pixelfed.org/), [Pleroma](https://pleroma.social) and many more. Receiving content from Tumblr, Wordpress and RSS is also possible. Friendica allows to import and mirror your content via add-ons such as ITTT and Buffer. You can customize and control how publicly or privately you want to share your content. -Our mission is to free friends, family and colleagues from data-harvesting corporations; we aim for social communication to be free and open, while flowing between any provider as easily as email does. +Being part of the Fediverse allows you to be free from data-harvesting corporations. Enjoy open social communication, independent of any specific provider. -Friendica connects you effortlessly to a federated communications network of several thousand servers, with more than half a million user registrations. You can directly connect to anyone on [Friendica]( https://friendi.ca), [Mastodon](https://joinmastodon.org/), [Diaspora](https://diasporafoundation.org/), [GnuSocial](https://gnu.io/social/), [Pleroma](https://pleroma.social/), or [Hubzilla](https://hubzilla.org/), regardless where each user profile is hosted. +[Join Friendica](https://dir.friendica.social/servers) today or setup [your own Friendica instance](doc/Install.md). -With Friendica, you can also fully interact with anyone on Twitter, post on Facebook and receive any content on Tumblr, Wordpress or RSS. Friendica allows you to integrate most things on the web via a range of addons such as ITTT, Buffer; you will be able to easily control your own data as you decide. +### Friendica on desktop -Join today and [get your Friendica profile!](https://dir.friendica.social/servers 'Join Friendica today!') +![Frio theme in desktop browser](images/screenshots/friendica-2023-10-frio-desktop.png?raw=true "Frio theme in desktop browser") -Have a look at the [installation documentation](doc/Install.md) for further information about installing and using Friendica. +### Friendica on mobile -### Friendica Screenshots +

+frio on mobile, dark color scheme +frio on mobile, light color scheme +

-| ![Frio theme in mobile browser](images/screenshots/friendica-frio-mobile-profle-1.png?raw=true "Frio theme in mobile browser") ![Frio theme in mobile browser](images/screenshots/friendica-frio-mobile-profle-2.png?raw=true "Frio theme in mobile browser") -|:--:| -|*Frio theme, mobile browser. Timeline and composer view.*| -|![Frio theme in desktop browser](images/screenshots/friendica-frio-green-profle-1.png?raw=true "Frio theme in desktop browser") -|*Frio theme, desktop browser. Timeline view, contact info popped up, control menu open.*| -|![Frio theme in desktop browser](images/screenshots/friendica-frio-green-profle-2.png?raw=true "Frio theme in desktop browser") -|*Frio theme, desktop browser. Menu open for controlling individual posts.*| -|![Frio theme in desktop browser](images/screenshots/friendica-frio-red-profle-3.png?raw=true "Frio theme in desktop browser") -|*Frio theme, desktop browser. Profile view, notification menu open.*| -|![Frio theme in desktop browser](images/screenshots/friendica-frio-red-profle-2.png?raw=true "Frio theme in desktop browser") -|*Number of new posts, in total and by group.*| -|![Frio theme in desktop browser](images/screenshots/friendica-frio-red-profle-1.png?raw=true "Frio theme in desktop browser") -|*Calender with popup of event.*| -|![Frio theme default colour in standard browser on tablet](images/screenshots/friendica-frio-default-profile-1.png?raw=true "Frio theme default colour in standard browser on tablet") -|*Notifications menu and private messages counter, standard browser on tablet.*| -|![Frio theme in desktop browser](images/screenshots/friendica-frio-brown-profile-2.png?raw=true "Frio theme in desktop browser") -|*Number of visible contacts, standard browser.*| -|![Frio theme in desktop browser](images/screenshots/friendica-frio-brown-profile-1.png?raw=true "Frio theme in desktop browser") -|*Network posts chronologically ordered, standard browser.*| -|![Vier theme in desktop browser](images/screenshots/friendica-vier-profile.png?raw=true "Vier theme in desktop browser") -|*Vier theme, desktop browser. Public timeline view.*| -|![Vier theme in desktop browser](images/screenshots/friendica-vier-community.png?raw=true "Vier theme in desktop browser") -|*Vier theme, desktop browser. Community post displayed.*| +### Alternative Theme "Vier" + +![Vier theme in desktop browser](images/screenshots/friendica-vier-community.png?raw=true "Vier theme in desktop browser") ## Endorsements -- [![Awesome Humane Tech](images/humane-tech-badge.svg)](https://github.com/humanetech-community/awesome-humane-tech) On August 12th 2020, Friendica was added to [the curated Awesome Humane Tech directory](https://github.com/humanetech-community/awesome-humane-tech) in [the "Fediverse" category](https://github.com/humanetech-community/awesome-humane-tech#fediverse). +- [![Awesome Humane Tech](images/humane-tech-badge.svg)](https://codeberg.org/teaserbot-labs/delightful-humane-design) In August 2020 Friendica was added to the curated delightful humane design resources in the [Fediverse category](https://codeberg.org/teaserbot-labs/delightful-humane-design#fediverse). diff --git a/VERSION b/VERSION index 151845e80..ee9752d2e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2022.12-dev +2023.09-rc diff --git a/bin/auth_ejabberd.php b/bin/auth_ejabberd.php index 14ed7b0b2..3a9553246 100755 --- a/bin/auth_ejabberd.php +++ b/bin/auth_ejabberd.php @@ -1,7 +1,7 @@ #!/usr/bin/env php addRules(include __DIR__ . '/../static/dependencies.config.php'); -$dice = $dice->addRule(LoggerInterface::class,['constructParams' => ['auth_ejabberd']]); +/** @var \Friendica\Core\Addon\Capability\ICanLoadAddons $addonLoader */ +$addonLoader = $dice->create(\Friendica\Core\Addon\Capability\ICanLoadAddons::class); +$dice = $dice->addRules($addonLoader->getActiveAddonConfig('dependencies')); +$dice = $dice->addRule(LoggerInterface::class,['constructParams' => [LogChannel::AUTH_JABBERED]]); \Friendica\DI::init($dice); \Friendica\Core\Logger\Handler\ErrorHandler::register($dice->create(\Psr\Log\LoggerInterface::class)); + +// Check the database structure and possibly fixes it +\Friendica\Core\Update::check(\Friendica\DI::basePath(), true); + $appMode = $dice->create(Mode::class); if ($appMode->isNormal()) { diff --git a/bin/console b/bin/console index 4d76bdc42..79b6c8d3b 100755 --- a/bin/console +++ b/bin/console @@ -3,7 +3,7 @@ dir=$(cd "${0%[/\\]*}" > /dev/null; pwd) if [[ -d /proc/cygdrive && $(which php) == $(readlink -n /proc/cygdrive)/* ]]; then - # We are in Cgywin using Windows php, so the path must be translated + # We are in Cygwin using Windows php, so the path must be translated dir=$(cygpath -m "$dir"); fi diff --git a/bin/console.php b/bin/console.php index 41e017248..b797e6ba9 100755 --- a/bin/console.php +++ b/bin/console.php @@ -1,7 +1,7 @@ #!/usr/bin/env php addRules(include __DIR__ . '/../static/dependencies.config.php'); -$dice = $dice->addRule(LoggerInterface::class,['constructParams' => ['console']]); +/** @var \Friendica\Core\Addon\Capability\ICanLoadAddons $addonLoader */ +$addonLoader = $dice->create(\Friendica\Core\Addon\Capability\ICanLoadAddons::class); +$dice = $dice->addRules($addonLoader->getActiveAddonConfig('dependencies')); +$dice = $dice->addRule(LoggerInterface::class, ['constructParams' => [LogChannel::CONSOLE]]); /// @fixme Necessary until Hooks inside the Logger can get loaded without the DI-class DI::init($dice); diff --git a/bin/daemon.php b/bin/daemon.php index d5ef02a8e..cd774fe25 100755 --- a/bin/daemon.php +++ b/bin/daemon.php @@ -1,7 +1,7 @@ #!/usr/bin/env php addRules(include __DIR__ . '/../static/dependencies.config.php'); -$dice = $dice->addRule(LoggerInterface::class,['constructParams' => ['daemon']]); +/** @var \Friendica\Core\Addon\Capability\ICanLoadAddons $addonLoader */ +$addonLoader = $dice->create(\Friendica\Core\Addon\Capability\ICanLoadAddons::class); +$dice = $dice->addRules($addonLoader->getActiveAddonConfig('dependencies')); +$dice = $dice->addRule(LoggerInterface::class, ['constructParams' => [Logger\Capability\LogChannel::DAEMON]]); DI::init($dice); \Friendica\Core\Logger\Handler\ErrorHandler::register($dice->create(\Psr\Log\LoggerInterface::class)); -$a = DI::app(); if (DI::mode()->isInstall()) { die("Friendica isn't properly installed yet.\n"); @@ -71,13 +74,13 @@ if (DI::mode()->isInstall()) { DI::mode()->setExecutor(Mode::DAEMON); -DI::config()->load(); +DI::config()->reload(); if (empty(DI::config()->get('system', 'pidfile'))) { die(<< [ + + 'system' => [ 'pidfile' => '/path/to/daemon.pid', ], TXT @@ -115,7 +118,7 @@ if (is_readable($pidfile)) { } if (empty($pid) && in_array($mode, ['stop', 'status'])) { - DI::config()->set('system', 'worker_daemon_mode', false); + DI::keyValue()->set('worker_daemon_mode', false); die("Pidfile wasn't found. Is the daemon running?\n"); } @@ -126,7 +129,7 @@ if ($mode == 'status') { unlink($pidfile); - DI::config()->set('system', 'worker_daemon_mode', false); + DI::keyValue()->set('worker_daemon_mode', false); die("Daemon process $pid isn't running.\n"); } @@ -137,7 +140,7 @@ if ($mode == 'stop') { Logger::notice('Worker daemon process was killed', ['pid' => $pid]); - DI::config()->set('system', 'worker_daemon_mode', false); + DI::keyValue()->set('worker_daemon_mode', false); die("Worker daemon process $pid was killed.\n"); } @@ -181,7 +184,7 @@ if (!$foreground) { DBA::connect(); } -DI::config()->set('system', 'worker_daemon_mode', true); +DI::keyValue()->set('worker_daemon_mode', true); // Just to be sure that this script really runs endlessly set_time_limit(0); @@ -193,6 +196,9 @@ $last_cron = 0; // Now running as a daemon. while (true) { + // Check the database structure and possibly fixes it + Update::check(DI::basePath(), true); + if (!$do_cron && ($last_cron + $wait_interval) < time()) { Logger::info('Forcing cron worker call.', ['pid' => $pid]); $do_cron = true; @@ -244,5 +250,6 @@ while (true) { } function shutdown() { + posix_kill(posix_getpid(), SIGTERM); posix_kill(posix_getpid(), SIGHUP); } diff --git a/bin/dev/autotest.sh b/bin/dev/autotest.sh index a3367db1e..b6f67cf11 100755 --- a/bin/dev/autotest.sh +++ b/bin/dev/autotest.sh @@ -46,7 +46,7 @@ function show_syntax() { echo -e "\t\"testfile\" is the name of a test file, for example lib/template.php" >&2 echo -e "\nDatabase environment variables:\n" >&2 echo -e "\t\"MYSQL_HOST\" Mysql Hostname (Default: localhost)" >&2 - echo -e "\t\"MYSQL_USDRNAME\" Mysql Username (Default: friendica)" >&2 + echo -e "\t\"MYSQL_USERNAME\" Mysql Username (Default: friendica)" >&2 echo -e "\t\"MYSQL_DATABASE\" Mysql Database (Default: test)" >&2 echo -e "\nOther environment variables:\n" >&2 echo -e "\t\"TEST_SELECTION\" test a specific group of tests, can be one of: $TESTS" >&2 @@ -65,7 +65,7 @@ else exit 3 fi -echo "Installing depdendencies" +echo "Installing dependencies" ${PHP} "$COMPOSER" install PHPUNIT="${BASEDIR}/vendor/bin/phpunit" diff --git a/bin/testargs.php b/bin/testargs.php index fd671828a..0d736bcc2 100644 --- a/bin/testargs.php +++ b/bin/testargs.php @@ -1,6 +1,6 @@ addRules(include __DIR__ . '/../static/dependencies.config.php'); -$dice = $dice->addRule(LoggerInterface::class,['constructParams' => ['worker']]); +/** @var \Friendica\Core\Addon\Capability\ICanLoadAddons $addonLoader */ +$addonLoader = $dice->create(\Friendica\Core\Addon\Capability\ICanLoadAddons::class); +$dice = $dice->addRules($addonLoader->getActiveAddonConfig('dependencies')); +$dice = $dice->addRule(LoggerInterface::class, ['constructParams' => [LogChannel::WORKER]]); DI::init($dice); \Friendica\Core\Logger\Handler\ErrorHandler::register($dice->create(\Psr\Log\LoggerInterface::class)); -$a = DI::app(); DI::mode()->setExecutor(Mode::WORKER); // Check the database structure and possibly fixes it -Update::check($a->getBasePath(), true, DI::mode()); +Update::check(DI::basePath(), true); // Quit when in maintenance if (!DI::mode()->has(App\Mode::MAINTENANCEDISABLED)) { return; } -DI::baseUrl()->saveByURL(DI::config()->get('system', 'url')); - $spawn = array_key_exists('s', $options) || array_key_exists('spawn', $options); if ($spawn) { diff --git a/composer.json b/composer.json index 34c0f6258..9a86ebc2c 100644 --- a/composer.json +++ b/composer.json @@ -24,15 +24,19 @@ "ext-libxml": "*", "ext-mbstring": "*", "ext-openssl": "*", + "ext-posix": "*", "ext-simplexml": "*", "ext-xml": "*", "asika/simple-console": "^1.0", "bacon/bacon-qr-code": "^2.0.0", "divineomega/password_exposed": "^2.8", + "enyo/dropzone": "^5.9", "ezyang/htmlpurifier": "^4.7", "friendica/json-ld": "^1.0", "geekwright/po": "^2.0", "guzzlehttp/guzzle": "^6.5", + "guzzlehttp/oauth-subscriber": "^0.6", + "kornrunner/blurhash": "^1.2", "league/html-to-markdown": "^4.8", "level-2/dice": "^4", "lightopenid/lightopenid": "dev-master", @@ -45,9 +49,10 @@ "paragonie/hidden-string": "^1.0", "patrickschur/language-detection": "^5.0.0", "pear/console_table": "^1.3", - "phpseclib/phpseclib": "^2.0", + "phpseclib/phpseclib": "^3.0", "pragmarx/google2fa": "^5.0", "pragmarx/recovery": "^0.2", + "psr/clock": "^1.0", "psr/container": "^1.0", "psr/log": "^1.1", "seld/cli-prompt": "^1.0", @@ -72,6 +77,12 @@ "npm-asset/textcomplete": "^0.18.2", "npm-asset/typeahead.js": "^0.11.1" }, + "suggest": { + "ext-imagick": "For faster image processing", + "ext-redis": "To use Redis as a locking or caching provider", + "ext-pdo": "To use PDO as a database driver, has priority over mysqli unless database.disable_pdo is set", + "ext-mysqli": "To use mysqli as a databse driver" + }, "repositories": [ { "type": "vcs", @@ -129,8 +140,15 @@ "scripts": { "test": "phpunit", "lint": "find . -name \\*.php -not -path './vendor/*' -not -path './view/asset/*' -print0 | xargs -0 -n1 php -l", + "docker:translate": "docker run --rm -v $PWD:/data -w /data friendicaci/transifex bin/run_xgettext.sh", "cs:install": "@composer install --working-dir=bin/dev/php-cs-fixer", - "cs:check": ["@cs:install", "bin/dev/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run --diff"], - "cs:fix": ["@cs:install", "bin/dev/php-cs-fixer/vendor/bin/php-cs-fixer fix"] + "cs:check": [ + "@cs:install", + "bin/dev/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run --diff" + ], + "cs:fix": [ + "@cs:install", + "bin/dev/php-cs-fixer/vendor/bin/php-cs-fixer fix" + ] } } diff --git a/composer.lock b/composer.lock index 786880fab..ac2d038f9 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "e8626dc6957dff9cc783daad10cfc26f", + "content-hash": "c208d7f5176358ea157f109c1c7d68dd", "packages": [ { "name": "asika/simple-console", @@ -41,16 +41,16 @@ }, { "name": "bacon/bacon-qr-code", - "version": "2.0.7", + "version": "2.0.8", "source": { "type": "git", "url": "https://github.com/Bacon/BaconQrCode.git", - "reference": "d70c840f68657ce49094b8d91f9ee0cc07fbf66c" + "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/d70c840f68657ce49094b8d91f9ee0cc07fbf66c", - "reference": "d70c840f68657ce49094b8d91f9ee0cc07fbf66c", + "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22", + "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22", "shasum": "" }, "require": { @@ -87,7 +87,7 @@ ], "description": "BaconQrCode is a QR code generator for PHP.", "homepage": "https://github.com/Bacon/BaconQrCode", - "time": "2022-03-14T02:02:36+00:00" + "time": "2022-12-07T17:46:57+00:00" }, { "name": "bower-asset/Chart-js", @@ -123,16 +123,16 @@ }, { "name": "bower-asset/base64", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/davidchambers/Base64.js.git", - "reference": "660b299aa4854843fd35d42b30eda9273125b9da" + "reference": "0048721faa641f1519c4c081725f42da2ada5e9a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/davidchambers/Base64.js/zipball/660b299aa4854843fd35d42b30eda9273125b9da", - "reference": "660b299aa4854843fd35d42b30eda9273125b9da", + "url": "https://api.github.com/repos/davidchambers/Base64.js/zipball/0048721faa641f1519c4c081725f42da2ada5e9a", + "reference": "0048721faa641f1519c4c081725f42da2ada5e9a", "shasum": "" }, "type": "bower-asset-library", @@ -150,7 +150,7 @@ "WTFPL" ], "description": "Base64 encoding and decoding", - "time": "2019-11-02T20:07:47+00:00" + "time": "2023-02-22T16:04:49+00:00" }, { "name": "bower-asset/dompurify", @@ -299,16 +299,16 @@ }, { "name": "composer/ca-bundle", - "version": "1.3.3", + "version": "1.3.5", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "30897edbfb15e784fe55587b4f73ceefd3c4d98c" + "reference": "74780ccf8c19d6acb8d65c5f39cd72110e132bbd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/30897edbfb15e784fe55587b4f73ceefd3c4d98c", - "reference": "30897edbfb15e784fe55587b4f73ceefd3c4d98c", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/74780ccf8c19d6acb8d65c5f39cd72110e132bbd", + "reference": "74780ccf8c19d6acb8d65c5f39cd72110e132bbd", "shasum": "" }, "require": { @@ -366,25 +366,28 @@ "type": "tidelift" } ], - "time": "2022-07-20T07:14:26+00:00" + "time": "2023-01-11T08:27:00+00:00" }, { "name": "dasprid/enum", - "version": "1.0.3", + "version": "1.0.4", "source": { "type": "git", "url": "https://github.com/DASPRiD/Enum.git", - "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2" + "reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2", - "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2", + "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8e6b6ea76eabbf19ea2bf5b67b98e1860474012f", + "reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f", "shasum": "" }, + "require": { + "php": ">=7.1 <9.0" + }, "require-dev": { "phpunit/phpunit": "^7 | ^8 | ^9", - "squizlabs/php_codesniffer": "^3.4" + "squizlabs/php_codesniffer": "*" }, "type": "library", "autoload": { @@ -409,7 +412,7 @@ "enum", "map" ], - "time": "2020-10-02T16:03:48+00:00" + "time": "2023-03-01T18:44:03+00:00" }, { "name": "divineomega/do-file-cache", @@ -551,21 +554,67 @@ "time": "2019-01-25T12:00:28+00:00" }, { - "name": "ezyang/htmlpurifier", - "version": "v4.14.0", + "name": "enyo/dropzone", + "version": "v5.9.3", "source": { "type": "git", - "url": "https://github.com/ezyang/htmlpurifier.git", - "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75" + "url": "https://github.com/dropzone/dropzone-packagist.git", + "reference": "286b2dc1f1195bd12169e4c9d5f91cfbe46e245f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/12ab42bd6e742c70c0a52f7b82477fcd44e64b75", - "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75", + "url": "https://api.github.com/repos/dropzone/dropzone-packagist/zipball/286b2dc1f1195bd12169e4c9d5f91cfbe46e245f", + "reference": "286b2dc1f1195bd12169e4c9d5f91cfbe46e245f", + "shasum": "" + }, + "type": "library", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Matias Meno", + "email": "m@tias.me", + "homepage": "http://www.yesmeno.com" + } + ], + "description": "Handles drag and drop of files for you.", + "homepage": "http://www.dropzonejs.com", + "keywords": [ + "drag and drop", + "dragndrop", + "file upload", + "upload" + ], + "time": "2021-09-21T17:03:36+00:00" + }, + { + "name": "ezyang/htmlpurifier", + "version": "v4.16.0", + "source": { + "type": "git", + "url": "https://github.com/ezyang/htmlpurifier.git", + "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8", + "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8", "shasum": "" }, "require": { - "php": ">=5.2" + "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0" + }, + "require-dev": { + "cerdic/css-tidy": "^1.7 || ^2.0", + "simpletest/simpletest": "dev-master" + }, + "suggest": { + "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.", + "ext-bcmath": "Used for unit conversion and imagecrash protection", + "ext-iconv": "Converts text to and from non-UTF-8 encodings", + "ext-tidy": "Used for pretty-printing HTML" }, "type": "library", "autoload": { @@ -595,28 +644,28 @@ "keywords": [ "html" ], - "time": "2021-12-25T01:21:49+00:00" + "time": "2022-09-18T07:06:19+00:00" }, { "name": "fgrosse/phpasn1", - "version": "v2.4.0", + "version": "v2.5.0", "source": { "type": "git", "url": "https://github.com/fgrosse/PHPASN1.git", - "reference": "eef488991d53e58e60c9554b09b1201ca5ba9296" + "reference": "42060ed45344789fb9f21f9f1864fc47b9e3507b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fgrosse/PHPASN1/zipball/eef488991d53e58e60c9554b09b1201ca5ba9296", - "reference": "eef488991d53e58e60c9554b09b1201ca5ba9296", + "url": "https://api.github.com/repos/fgrosse/PHPASN1/zipball/42060ed45344789fb9f21f9f1864fc47b9e3507b", + "reference": "42060ed45344789fb9f21f9f1864fc47b9e3507b", "shasum": "" }, "require": { - "php": "~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0" + "php": "^7.1 || ^8.0" }, "require-dev": { "php-coveralls/php-coveralls": "~2.0", - "phpunit/phpunit": "^6.3 || ^7.0 || ^8.0" + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" }, "suggest": { "ext-bcmath": "BCmath is the fallback extension for big integer calculations", @@ -666,15 +715,16 @@ "x509", "x690" ], - "time": "2021-12-11T12:41:06+00:00" + "abandoned": true, + "time": "2022-12-19T11:08:26+00:00" }, { "name": "friendica/json-ld", - "version": "1.1.1", + "version": "1.1.4", "source": { "type": "git", "url": "https://git.friendi.ca/friendica/php-json-ld", - "reference": "ca3916d10d2ad9073b3b1eae383978dbe828e1e1" + "reference": "1f33c8766b5cfbecfbc2122238873debeed35fb6" }, "require": { "ext-json": "*", @@ -710,7 +760,7 @@ "Semantic Web", "jsonld" ], - "time": "2018-10-08T20:41:00+00:00" + "time": "2023-07-09T14:00:15+00:00" }, { "name": "fxp/composer-asset-plugin", @@ -930,6 +980,61 @@ ], "time": "2022-06-20T22:16:07+00:00" }, + { + "name": "guzzlehttp/oauth-subscriber", + "version": "0.6.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/oauth-subscriber.git", + "reference": "8d6cab29f8397e5712d00a383eeead36108a3c1f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/oauth-subscriber/zipball/8d6cab29f8397e5712d00a383eeead36108a3c1f", + "reference": "8d6cab29f8397e5712d00a383eeead36108a3c1f", + "shasum": "" + }, + "require": { + "guzzlehttp/guzzle": "^6.5|^7.2", + "guzzlehttp/psr7": "^1.7|^2.0", + "php": ">=5.5.0" + }, + "require-dev": { + "phpunit/phpunit": "~4.0|^9.3.3" + }, + "suggest": { + "ext-openssl": "Required to sign using RSA-SHA1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "0.6-dev" + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Subscriber\\Oauth\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + } + ], + "description": "Guzzle OAuth 1.0 subscriber", + "homepage": "http://guzzlephp.org/", + "keywords": [ + "Guzzle", + "oauth" + ], + "time": "2021-07-13T12:01:32+00:00" + }, { "name": "guzzlehttp/promises", "version": "1.5.2", @@ -1012,16 +1117,16 @@ }, { "name": "guzzlehttp/psr7", - "version": "1.9.0", + "version": "1.9.1", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318" + "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/e98e3e6d4f86621a9b75f623996e6bbdeb4b9318", - "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b", + "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b", "shasum": "" }, "require": { @@ -1040,11 +1145,6 @@ "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.9-dev" - } - }, "autoload": { "files": [ "src/functions_include.php" @@ -1114,7 +1214,51 @@ "type": "tidelift" } ], - "time": "2022-06-20T21:43:03+00:00" + "time": "2023-04-17T16:00:37+00:00" + }, + { + "name": "kornrunner/blurhash", + "version": "v1.2.2", + "source": { + "type": "git", + "url": "https://github.com/kornrunner/php-blurhash.git", + "reference": "bc8a4596cb0a49874f0158696a382ab3933fefe4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/kornrunner/php-blurhash/zipball/bc8a4596cb0a49874f0158696a382ab3933fefe4", + "reference": "bc8a4596cb0a49874f0158696a382ab3933fefe4", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "ext-gd": "*", + "ocramius/package-versions": "^1.4|^2.0", + "phpstan/phpstan": "^0.12", + "phpunit/phpunit": "^9", + "vimeo/psalm": "^4.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "kornrunner\\Blurhash\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Boris Momčilović", + "email": "boris.momcilovic@gmail.com" + } + ], + "description": "Pure PHP implementation of Blurhash", + "homepage": "https://github.com/kornrunner/php-blurhash", + "time": "2022-07-13T19:38:39+00:00" }, { "name": "league/html-to-markdown", @@ -1200,16 +1344,16 @@ }, { "name": "level-2/dice", - "version": "4.0.3", + "version": "4.0.4", "source": { "type": "git", "url": "https://github.com/Level-2/Dice.git", - "reference": "3e9a8548398c01e2527110c916a93f6efa17ac9c" + "reference": "e04c98d96bcc932a917b2b7e7944887e4839056a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Level-2/Dice/zipball/3e9a8548398c01e2527110c916a93f6efa17ac9c", - "reference": "3e9a8548398c01e2527110c916a93f6efa17ac9c", + "url": "https://api.github.com/repos/Level-2/Dice/zipball/e04c98d96bcc932a917b2b7e7944887e4839056a", + "reference": "e04c98d96bcc932a917b2b7e7944887e4839056a", "shasum": "" }, "require": { @@ -1219,6 +1363,9 @@ "phpunit/phpunit": "^6.5" }, "type": "library", + "extra": { + "patches_applied": [] + }, "autoload": { "psr-4": { "Dice\\": "./" @@ -1242,7 +1389,7 @@ "di", "ioc" ], - "time": "2021-04-20T14:06:06+00:00" + "time": "2022-03-28T21:20:23+00:00" }, { "name": "lightopenid/lightopenid", @@ -1477,16 +1624,16 @@ }, { "name": "mobiledetect/mobiledetectlib", - "version": "2.8.39", + "version": "2.8.41", "source": { "type": "git", "url": "https://github.com/serbanghita/Mobile-Detect.git", - "reference": "0fd6753003fc870f6e229bae869cc1337c99bc45" + "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/0fd6753003fc870f6e229bae869cc1337c99bc45", - "reference": "0fd6753003fc870f6e229bae869cc1337c99bc45", + "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1", + "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1", "shasum": "" }, "require": { @@ -1525,7 +1672,7 @@ "mobile detector", "php mobile detect" ], - "time": "2022-02-17T19:24:25+00:00" + "time": "2022-11-08T18:31:26+00:00" }, { "name": "nikic/fast-route", @@ -1920,11 +2067,11 @@ }, { "name": "npm-asset/jgrowl", - "version": "1.4.8", + "version": "1.4.9", "dist": { "type": "tar", - "url": "https://registry.npmjs.org/jgrowl/-/jgrowl-1.4.8.tgz", - "shasum": "4ba40ffb93757a7e1d9b262d916be299d03df3a4" + "url": "https://registry.npmjs.org/jgrowl/-/jgrowl-1.4.9.tgz", + "shasum": "f0259b74904f4cfc05ea1ad1188fe9b7b3384e2e" }, "type": "npm-asset-library", "extra": { @@ -1953,7 +2100,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": "2021-05-20T17:11:40+00:00" + "time": "2023-02-22T23:58:06+00:00" }, { "name": "npm-asset/jquery", @@ -2768,16 +2915,16 @@ }, { "name": "paragonie/sodium_compat", - "version": "v1.18.0", + "version": "v1.19.0", "source": { "type": "git", "url": "https://github.com/paragonie/sodium_compat.git", - "reference": "906e0b925895d3a5941eda25f371fbafb3cbc22f" + "reference": "cb15e403ecbe6a6cc515f855c310eb6b1872a933" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/906e0b925895d3a5941eda25f371fbafb3cbc22f", - "reference": "906e0b925895d3a5941eda25f371fbafb3cbc22f", + "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/cb15e403ecbe6a6cc515f855c310eb6b1872a933", + "reference": "cb15e403ecbe6a6cc515f855c310eb6b1872a933", "shasum": "" }, "require": { @@ -2846,7 +2993,7 @@ "secret-key cryptography", "side-channel resistant" ], - "time": "2022-09-13T20:54:27+00:00" + "time": "2022-09-26T03:40:35+00:00" }, { "name": "patrickschur/language-detection", @@ -2952,32 +3099,32 @@ }, { "name": "phpseclib/phpseclib", - "version": "2.0.38", + "version": "3.0.19", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "b03536539f43a4f9aa33c4f0b2f3a1c752088fcd" + "reference": "cc181005cf548bfd8a4896383bb825d859259f95" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/b03536539f43a4f9aa33c4f0b2f3a1c752088fcd", - "reference": "b03536539f43a4f9aa33c4f0b2f3a1c752088fcd", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/cc181005cf548bfd8a4896383bb825d859259f95", + "reference": "cc181005cf548bfd8a4896383bb825d859259f95", "shasum": "" }, "require": { - "php": ">=5.3.3" + "paragonie/constant_time_encoding": "^1|^2", + "paragonie/random_compat": "^1.4|^2.0|^9.99.99", + "php": ">=5.6.1" }, "require-dev": { - "phing/phing": "~2.7", - "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4", - "squizlabs/php_codesniffer": "~2.0" + "phpunit/phpunit": "*" }, "suggest": { + "ext-dom": "Install the DOM extension to load XML formatted public keys.", "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.", "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.", "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.", - "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations.", - "ext-xml": "Install the XML extension to load XML formatted public keys." + "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations." }, "type": "library", "autoload": { @@ -2985,7 +3132,7 @@ "phpseclib/bootstrap.php" ], "psr-4": { - "phpseclib\\": "phpseclib/" + "phpseclib3\\": "phpseclib/" } }, "notification-url": "https://packagist.org/downloads/", @@ -3054,7 +3201,7 @@ "type": "tidelift" } ], - "time": "2022-09-02T17:04:26+00:00" + "time": "2023-03-05T17:13:09+00:00" }, { "name": "pragmarx/google2fa", @@ -3285,6 +3432,50 @@ ], "time": "2016-08-06T20:24:11+00:00" }, + { + "name": "psr/clock", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/clock.git", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Psr\\Clock\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for reading the clock.", + "homepage": "https://github.com/php-fig/clock", + "keywords": [ + "clock", + "now", + "psr", + "psr-20", + "time" + ], + "time": "2022-11-25T14:36:26+00:00" + }, { "name": "psr/container", "version": "1.1.1", @@ -3331,21 +3522,21 @@ }, { "name": "psr/http-client", - "version": "1.0.1", + "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/php-fig/http-client.git", - "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621" + "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", - "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31", + "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31", "shasum": "" }, "require": { "php": "^7.0 || ^8.0", - "psr/http-message": "^1.0" + "psr/http-message": "^1.0 || ^2.0" }, "type": "library", "extra": { @@ -3365,7 +3556,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interface for HTTP clients", @@ -3376,25 +3567,25 @@ "psr", "psr-18" ], - "time": "2020-06-29T06:28:15+00:00" + "time": "2023-04-10T20:12:12+00:00" }, { "name": "psr/http-factory", - "version": "1.0.1", + "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/php-fig/http-factory.git", - "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be" + "reference": "e616d01114759c4c489f93b099585439f795fe35" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be", - "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", + "reference": "e616d01114759c4c489f93b099585439f795fe35", "shasum": "" }, "require": { "php": ">=7.0.0", - "psr/http-message": "^1.0" + "psr/http-message": "^1.0 || ^2.0" }, "type": "library", "extra": { @@ -3414,7 +3605,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interfaces for PSR-7 HTTP message factories", @@ -3428,29 +3619,29 @@ "request", "response" ], - "time": "2019-04-30T12:38:16+00:00" + "time": "2023-04-10T20:10:41+00:00" }, { "name": "psr/http-message", - "version": "1.0.1", + "version": "1.1", "source": { "type": "git", "url": "https://github.com/php-fig/http-message.git", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" + "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba", + "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": "^7.2 || ^8.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.1.x-dev" } }, "autoload": { @@ -3478,7 +3669,7 @@ "request", "response" ], - "time": "2016-08-06T14:39:51+00:00" + "time": "2023-04-04T09:50:52+00:00" }, { "name": "psr/log", @@ -3620,16 +3811,16 @@ }, { "name": "smarty/smarty", - "version": "v4.2.1", + "version": "v4.3.1", "source": { "type": "git", "url": "https://github.com/smarty-php/smarty.git", - "reference": "ffa2b81a8e354a49fd8a2f24742dc9dc399e8007" + "reference": "e28cb0915b4e3749bf57d4ebae2984e25395cfe5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/smarty-php/smarty/zipball/ffa2b81a8e354a49fd8a2f24742dc9dc399e8007", - "reference": "ffa2b81a8e354a49fd8a2f24742dc9dc399e8007", + "url": "https://api.github.com/repos/smarty-php/smarty/zipball/e28cb0915b4e3749bf57d4ebae2984e25395cfe5", + "reference": "e28cb0915b4e3749bf57d4ebae2984e25395cfe5", "shasum": "" }, "require": { @@ -3677,7 +3868,7 @@ "keywords": [ "templating" ], - "time": "2022-09-14T10:59:01+00:00" + "time": "2023-03-28T19:47:03+00:00" }, { "name": "spomky-labs/base64url", @@ -3742,16 +3933,16 @@ }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.26.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8" + "reference": "639084e360537a19f9ee352433b84ce831f3d2da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8", - "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da", + "reference": "639084e360537a19f9ee352433b84ce831f3d2da", "shasum": "" }, "require": { @@ -3765,7 +3956,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -3822,20 +4013,20 @@ "type": "tidelift" } ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.26.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "219aa369ceff116e673852dce47c3a41794c14bd" + "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd", - "reference": "219aa369ceff116e673852dce47c3a41794c14bd", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6", + "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6", "shasum": "" }, "require": { @@ -3847,7 +4038,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -3903,7 +4094,7 @@ "type": "tidelift" } ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-php56", @@ -3972,16 +4163,16 @@ }, { "name": "symfony/polyfill-php72", - "version": "v1.26.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2" + "reference": "869329b1e9894268a8a61dabb69153029b7a8c97" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2", - "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97", + "reference": "869329b1e9894268a8a61dabb69153029b7a8c97", "shasum": "" }, "require": { @@ -3990,7 +4181,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4041,7 +4232,7 @@ "type": "tidelift" } ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "ua-parser/uap-php", @@ -4553,30 +4744,30 @@ }, { "name": "doctrine/instantiator", - "version": "1.4.1", + "version": "1.5.0", "source": { "type": "git", "url": "https://github.com/doctrine/instantiator.git", - "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc" + "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc", - "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b", + "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b", "shasum": "" }, "require": { "php": "^7.1 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^9", + "doctrine/coding-standard": "^9 || ^11", "ext-pdo": "*", "ext-phar": "*", "phpbench/phpbench": "^0.16 || ^1", "phpstan/phpstan": "^1.4", "phpstan/phpstan-phpunit": "^1", "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "vimeo/psalm": "^4.22" + "vimeo/psalm": "^4.30 || ^5.4" }, "type": "library", "autoload": { @@ -4615,7 +4806,7 @@ "type": "tidelift" } ], - "time": "2022-03-03T08:28:38+00:00" + "time": "2022-12-30T00:15:36+00:00" }, { "name": "hamcrest/hamcrest-php", @@ -4780,16 +4971,16 @@ }, { "name": "myclabs/deep-copy", - "version": "1.11.0", + "version": "1.11.1", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614" + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614", - "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", "shasum": "" }, "require": { @@ -4831,20 +5022,20 @@ "type": "tidelift" } ], - "time": "2022-03-03T13:19:32+00:00" + "time": "2023-03-08T13:26:56+00:00" }, { "name": "nikic/php-parser", - "version": "v4.15.1", + "version": "v4.15.4", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900" + "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/0ef6c55a3f47f89d7a374e6f835197a0b5fcf900", - "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290", + "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290", "shasum": "" }, "require": { @@ -4883,7 +5074,7 @@ "parser", "php" ], - "time": "2022-09-04T07:30:47+00:00" + "time": "2023-03-05T19:49:14+00:00" }, { "name": "phar-io/manifest", @@ -4990,23 +5181,23 @@ }, { "name": "phpunit/php-code-coverage", - "version": "9.2.17", + "version": "9.2.26", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8" + "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/aa94dc41e8661fe90c7316849907cba3007b10d8", - "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", + "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", "ext-xmlwriter": "*", - "nikic/php-parser": "^4.14", + "nikic/php-parser": "^4.15", "php": ">=7.3", "phpunit/php-file-iterator": "^3.0.3", "phpunit/php-text-template": "^2.0.2", @@ -5021,8 +5212,8 @@ "phpunit/phpunit": "^9.3" }, "suggest": { - "ext-pcov": "*", - "ext-xdebug": "*" + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" }, "type": "library", "extra": { @@ -5059,7 +5250,7 @@ "type": "github" } ], - "time": "2022-08-30T12:24:04+00:00" + "time": "2023-03-06T12:58:08+00:00" }, { "name": "phpunit/php-file-iterator", @@ -5288,20 +5479,20 @@ }, { "name": "phpunit/phpunit", - "version": "9.5.24", + "version": "9.6.7", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "d0aa6097bef9fd42458a9b3c49da32c6ce6129c5" + "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/d0aa6097bef9fd42458a9b3c49da32c6ce6129c5", - "reference": "d0aa6097bef9fd42458a9b3c49da32c6ce6129c5", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c993f0d3b0489ffc42ee2fe0bd645af1538a63b2", + "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.3.1", + "doctrine/instantiator": "^1.3.1 || ^2", "ext-dom": "*", "ext-json": "*", "ext-libxml": "*", @@ -5319,19 +5510,19 @@ "phpunit/php-timer": "^5.0.2", "sebastian/cli-parser": "^1.0.1", "sebastian/code-unit": "^1.0.6", - "sebastian/comparator": "^4.0.5", + "sebastian/comparator": "^4.0.8", "sebastian/diff": "^4.0.3", "sebastian/environment": "^5.1.3", - "sebastian/exporter": "^4.0.3", + "sebastian/exporter": "^4.0.5", "sebastian/global-state": "^5.0.1", "sebastian/object-enumerator": "^4.0.3", "sebastian/resource-operations": "^3.0.3", - "sebastian/type": "^3.1", + "sebastian/type": "^3.2", "sebastian/version": "^3.0.2" }, "suggest": { - "ext-soap": "*", - "ext-xdebug": "*" + "ext-soap": "To be able to generate mocks based on WSDL files", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" }, "bin": [ "phpunit" @@ -5339,7 +5530,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "9.5-dev" + "dev-master": "9.6-dev" } }, "autoload": { @@ -5376,9 +5567,13 @@ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", + "type": "tidelift" } ], - "time": "2022-08-30T07:42:16+00:00" + "time": "2023-04-14T08:58:40+00:00" }, { "name": "sebastian/cli-parser", @@ -5722,16 +5917,16 @@ }, { "name": "sebastian/environment", - "version": "5.1.4", + "version": "5.1.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7" + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7", - "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", "shasum": "" }, "require": { @@ -5777,7 +5972,7 @@ "type": "github" } ], - "time": "2022-04-03T09:37:03+00:00" + "time": "2023-02-03T06:03:51+00:00" }, { "name": "sebastian/exporter", @@ -6071,16 +6266,16 @@ }, { "name": "sebastian/recursion-context", - "version": "4.0.4", + "version": "4.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172" + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172", - "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", "shasum": "" }, "require": { @@ -6119,14 +6314,14 @@ } ], "description": "Provides functionality to recursively process PHP variables", - "homepage": "http://www.github.com/sebastianbergmann/recursion-context", + "homepage": "https://github.com/sebastianbergmann/recursion-context", "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" } ], - "time": "2020-10-26T13:17:30+00:00" + "time": "2023-02-03T06:07:39+00:00" }, { "name": "sebastian/resource-operations", @@ -6181,16 +6376,16 @@ }, { "name": "sebastian/type", - "version": "3.2.0", + "version": "3.2.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/type.git", - "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e" + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e", - "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", "shasum": "" }, "require": { @@ -6229,7 +6424,7 @@ "type": "github" } ], - "time": "2022-09-12T14:47:03+00:00" + "time": "2023-02-03T06:13:03+00:00" }, { "name": "sebastian/version", @@ -6346,6 +6541,7 @@ "ext-libxml": "*", "ext-mbstring": "*", "ext-openssl": "*", + "ext-posix": "*", "ext-simplexml": "*", "ext-xml": "*" }, diff --git a/config/addon-sample.config.php b/config/addon-sample.config.php deleted file mode 100644 index 5159370c3..000000000 --- a/config/addon-sample.config.php +++ /dev/null @@ -1,12 +0,0 @@ - [ - 'consumerkey' => '1234567890', - 'consumersecret' => 'ABCDEFGHIJKLMONPQRSTUVWXYZ', - ], -]; diff --git a/config/local-sample.config.php b/config/local-sample.config.php index 9bf073df1..069e5834f 100644 --- a/config/local-sample.config.php +++ b/config/local-sample.config.php @@ -40,5 +40,6 @@ return [ 'system' => [ 'default_timezone' => 'UTC', 'language' => 'en', + 'url' => 'https://friendica.local', ], ]; diff --git a/database.sql b/database.sql index ab8c300a8..5c999da23 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ --- Friendica 2022.12-dev (Giant Rhubarb) --- DB_UPDATE_VERSION 1486 +-- Friendica 2023.09-rc (Giant Rhubarb) +-- DB_UPDATE_VERSION 1539 -- ------------------------------------------ @@ -34,6 +34,7 @@ CREATE TABLE IF NOT EXISTS `gserver` ( `last_poco_query` datetime DEFAULT '0001-01-01 00:00:00' COMMENT '', `last_contact` datetime DEFAULT '0001-01-01 00:00:00' COMMENT 'Last successful connection request', `last_failure` datetime DEFAULT '0001-01-01 00:00:00' COMMENT 'Last failed connection request', + `blocked` boolean COMMENT 'Server is blocked', `failed` boolean COMMENT 'Connection failed', `next_contact` datetime DEFAULT '0001-01-01 00:00:00' COMMENT 'Next connection request', PRIMARY KEY(`id`), @@ -59,6 +60,7 @@ CREATE TABLE IF NOT EXISTS `user` ( `language` varchar(32) NOT NULL DEFAULT 'en' COMMENT 'default language', `register_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp of registration', `login_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp of last login', + `last-activity` date COMMENT 'Day of the last activity', `default-location` varchar(255) NOT NULL DEFAULT '' COMMENT 'Default for item.location', `allow_location` boolean NOT NULL DEFAULT '0' COMMENT '1 allows to display the location', `theme` varchar(255) NOT NULL DEFAULT '' COMMENT 'user theme preference', @@ -69,7 +71,7 @@ CREATE TABLE IF NOT EXISTS `user` ( `verified` boolean NOT NULL DEFAULT '0' COMMENT 'user is verified through email', `blocked` boolean NOT NULL DEFAULT '0' COMMENT '1 for user is blocked', `blockwall` boolean NOT NULL DEFAULT '0' COMMENT 'Prohibit contacts to post to the profile page of the user', - `hidewall` boolean NOT NULL DEFAULT '0' COMMENT 'Hide profile details from unkown viewers', + `hidewall` boolean NOT NULL DEFAULT '0' COMMENT 'Hide profile details from unknown viewers', `blocktags` boolean NOT NULL DEFAULT '0' COMMENT 'Prohibit contacts to tag the post of this user', `unkmail` boolean NOT NULL DEFAULT '0' COMMENT 'Permit unknown people to send private mails to this user', `cntunkmail` int unsigned NOT NULL DEFAULT 10 COMMENT '', @@ -80,7 +82,7 @@ CREATE TABLE IF NOT EXISTS `user` ( `pwdreset` varchar(255) COMMENT 'Password reset request token', `pwdreset_time` datetime COMMENT 'Timestamp of the last password reset request', `maxreq` int unsigned NOT NULL DEFAULT 10 COMMENT '', - `expire` int unsigned NOT NULL DEFAULT 0 COMMENT '', + `expire` int unsigned NOT NULL DEFAULT 0 COMMENT 'Delay in days before deleting user-related posts. Scope is controlled by pConfig.', `account_removed` boolean NOT NULL DEFAULT '0' COMMENT 'if 1 the account is removed', `account_expired` boolean NOT NULL DEFAULT '0' COMMENT '', `account_expires_on` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp when account expires and will be deleted', @@ -99,6 +101,19 @@ CREATE TABLE IF NOT EXISTS `user` ( FOREIGN KEY (`parent-uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='The local users'; +-- +-- TABLE user-gserver +-- +CREATE TABLE IF NOT EXISTS `user-gserver` ( + `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id', + `gsid` int unsigned NOT NULL DEFAULT 0 COMMENT 'Gserver id', + `ignored` boolean NOT NULL DEFAULT '0' COMMENT 'server accounts are ignored for the user', + PRIMARY KEY(`uid`,`gsid`), + INDEX `gsid` (`gsid`), + FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`gsid`) REFERENCES `gserver` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE +) DEFAULT COLLATE utf8mb4_general_ci COMMENT='User settings about remote servers'; + -- -- TABLE item-uri -- @@ -128,6 +143,7 @@ CREATE TABLE IF NOT EXISTS `contact` ( `xmpp` varchar(255) NOT NULL DEFAULT '' COMMENT 'XMPP address', `matrix` varchar(255) NOT NULL DEFAULT '' COMMENT 'Matrix address', `avatar` varbinary(383) NOT NULL DEFAULT '' COMMENT '', + `blurhash` varbinary(255) COMMENT 'BlurHash representation of the avatar', `header` varbinary(383) COMMENT 'Header picture', `url` varbinary(383) NOT NULL DEFAULT '' COMMENT '', `nurl` varbinary(383) NOT NULL DEFAULT '' COMMENT '', @@ -157,8 +173,8 @@ CREATE TABLE IF NOT EXISTS `contact` ( `archive` boolean NOT NULL DEFAULT '0' COMMENT '', `unsearchable` boolean NOT NULL DEFAULT '0' COMMENT 'Contact prefers to not be searchable', `sensitive` boolean NOT NULL DEFAULT '0' COMMENT 'Contact posts sensitive content', - `baseurl` varbinary(383) DEFAULT '' COMMENT 'baseurl of the contact', - `gsid` int unsigned COMMENT 'Global Server ID', + `baseurl` varbinary(383) DEFAULT '' COMMENT 'baseurl of the contact from the gserver record, can be missing', + `gsid` int unsigned COMMENT 'Global Server ID, can be missing', `bd` date NOT NULL DEFAULT '0001-01-01' COMMENT '', `reason` text COMMENT '', `self` boolean NOT NULL DEFAULT '0' COMMENT '1 if the contact is the user him/her self', @@ -187,7 +203,7 @@ CREATE TABLE IF NOT EXISTS `contact` ( `confirm` varbinary(383) COMMENT '', `poco` varbinary(383) COMMENT '', `writable` boolean NOT NULL DEFAULT '0' COMMENT '', - `forum` boolean NOT NULL DEFAULT '0' COMMENT 'contact is a forum. Deprecated, use \'contact-type\' = \'community\' and \'manually-approve\' = false instead', + `forum` boolean NOT NULL DEFAULT '0' COMMENT 'contact is a group. Deprecated, use \'contact-type\' = \'community\' and \'manually-approve\' = false instead', `prv` boolean NOT NULL DEFAULT '0' COMMENT 'contact is a private group. Deprecated, use \'contact-type\' = \'community\' and \'manually-approve\' = true instead', `bdyear` varchar(4) NOT NULL DEFAULT '' COMMENT '', `site-pubkey` text COMMENT 'Deprecated', @@ -249,9 +265,9 @@ CREATE TABLE IF NOT EXISTS `permissionset` ( `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID', `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner id of this permission set', `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id \'<19><78>\'', - `allow_gid` mediumtext COMMENT 'Access Control - list of allowed groups', + `allow_gid` mediumtext COMMENT 'Access Control - list of allowed circles', `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id', - `deny_gid` mediumtext COMMENT 'Access Control - list of denied groups', + `deny_gid` mediumtext COMMENT 'Access Control - list of denied circles', PRIMARY KEY(`id`), INDEX `uid_allow_cid_allow_gid_deny_cid_deny_gid` (`uid`,`allow_cid`(50),`allow_gid`(30),`deny_cid`(50),`deny_gid`(30)), FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE @@ -309,6 +325,20 @@ CREATE TABLE IF NOT EXISTS `2fa_trusted_browser` ( FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Two-factor authentication trusted browsers'; +-- +-- TABLE account-suggestion +-- +CREATE TABLE IF NOT EXISTS `account-suggestion` ( + `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the account url', + `uid` mediumint unsigned NOT NULL COMMENT 'User ID', + `level` smallint unsigned COMMENT 'level of closeness', + `ignore` boolean NOT NULL DEFAULT '0' COMMENT 'If set, this account will not be suggested again', + PRIMARY KEY(`uid`,`uri-id`), + INDEX `uri-id_uid` (`uri-id`,`uid`), + FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE +) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Account suggestion'; + -- -- TABLE account-user -- @@ -323,22 +353,6 @@ CREATE TABLE IF NOT EXISTS `account-user` ( FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Remote and local accounts'; --- --- TABLE addon --- -CREATE TABLE IF NOT EXISTS `addon` ( - `id` int unsigned NOT NULL auto_increment COMMENT '', - `name` varchar(50) NOT NULL DEFAULT '' COMMENT 'addon base (file)name', - `version` varchar(50) NOT NULL DEFAULT '' COMMENT 'currently unused', - `installed` boolean NOT NULL DEFAULT '0' COMMENT 'currently always 1', - `hidden` boolean NOT NULL DEFAULT '0' COMMENT 'currently unused', - `timestamp` int unsigned NOT NULL DEFAULT 0 COMMENT 'file timestamp to check for reloads', - `plugin_admin` boolean NOT NULL DEFAULT '0' COMMENT '1 = has admin config, 0 = has no admin config', - PRIMARY KEY(`id`), - INDEX `installed_name` (`installed`,`name`), - UNIQUE INDEX `name` (`name`) -) DEFAULT COLLATE utf8mb4_general_ci COMMENT='registered addons'; - -- -- TABLE apcontact -- @@ -456,9 +470,9 @@ CREATE TABLE IF NOT EXISTS `attach` ( `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time', `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'last edit time', `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id \'<19><78>', - `allow_gid` mediumtext COMMENT 'Access Control - list of allowed groups', + `allow_gid` mediumtext COMMENT 'Access Control - list of allowed circles', `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id', - `deny_gid` mediumtext COMMENT 'Access Control - list of denied groups', + `deny_gid` mediumtext COMMENT 'Access Control - list of denied circles', `backend-class` tinytext COMMENT 'Storage backend class', `backend-ref` text COMMENT 'Storage backend data reference', PRIMARY KEY(`id`), @@ -478,13 +492,32 @@ CREATE TABLE IF NOT EXISTS `cache` ( INDEX `k_expires` (`k`,`expires`) ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Stores temporary data'; +-- +-- TABLE channel +-- +CREATE TABLE IF NOT EXISTS `channel` ( + `id` int unsigned NOT NULL auto_increment COMMENT '', + `uid` mediumint unsigned NOT NULL COMMENT 'User id', + `label` varchar(64) NOT NULL COMMENT 'Channel label', + `description` varchar(64) COMMENT 'Channel description', + `circle` int COMMENT 'Circle or channel that this channel is based on', + `access-key` varchar(1) COMMENT 'Access key', + `include-tags` varchar(1023) COMMENT 'Comma separated list of tags that will be included in the channel', + `exclude-tags` varchar(1023) COMMENT 'Comma separated list of tags that aren\'t allowed in the channel', + `full-text-search` varchar(1023) COMMENT 'Full text search pattern, see https://mariadb.com/kb/en/full-text-index-overview/#in-boolean-mode', + `media-type` smallint unsigned COMMENT 'Filtered media types', + PRIMARY KEY(`id`), + INDEX `uid` (`uid`), + FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE +) DEFAULT COLLATE utf8mb4_general_ci COMMENT='User defined Channels'; + -- -- TABLE config -- CREATE TABLE IF NOT EXISTS `config` ( `id` int unsigned NOT NULL auto_increment COMMENT '', - `cat` varbinary(50) NOT NULL DEFAULT '' COMMENT '', - `k` varbinary(50) NOT NULL DEFAULT '' COMMENT '', + `cat` varbinary(50) NOT NULL DEFAULT '' COMMENT 'The category of the entry', + `k` varbinary(50) NOT NULL DEFAULT '' COMMENT 'The key of the entry', `v` mediumtext COMMENT '', PRIMARY KEY(`id`), UNIQUE INDEX `cat_k` (`cat`,`k`) @@ -496,9 +529,13 @@ CREATE TABLE IF NOT EXISTS `config` ( CREATE TABLE IF NOT EXISTS `contact-relation` ( `cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact the related contact had interacted with', `relation-cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'related contact who had interacted with the contact', - `last-interaction` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last interaction', + `last-interaction` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last interaction by relation-cid on cid', `follow-updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last update of the contact relationship', - `follows` boolean NOT NULL DEFAULT '0' COMMENT '', + `follows` boolean NOT NULL DEFAULT '0' COMMENT 'if true, relation-cid follows cid', + `score` smallint unsigned COMMENT 'score for interactions of cid on relation-cid', + `relation-score` smallint unsigned COMMENT 'score for interactions of relation-cid on cid', + `thread-score` smallint unsigned COMMENT 'score for interactions of cid on threads of relation-cid', + `relation-thread-score` smallint unsigned COMMENT 'score for interactions of relation-cid on threads of cid', PRIMARY KEY(`cid`,`relation-cid`), INDEX `relation-cid` (`relation-cid`), FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE, @@ -563,6 +600,61 @@ CREATE TABLE IF NOT EXISTS `delayed-post` ( FOREIGN KEY (`wid`) REFERENCES `workerqueue` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Posts that are about to be distributed at a later time'; +-- +-- TABLE delivery-queue +-- +CREATE TABLE IF NOT EXISTS `delivery-queue` ( + `gsid` int unsigned NOT NULL COMMENT 'Target server', + `uri-id` int unsigned NOT NULL COMMENT 'Delivered post', + `created` datetime COMMENT '', + `command` varbinary(32) COMMENT '', + `cid` int unsigned COMMENT 'Target contact', + `uid` mediumint unsigned COMMENT 'Delivering user', + `failed` tinyint DEFAULT 0 COMMENT 'Number of times the delivery has failed', + PRIMARY KEY(`uri-id`,`gsid`), + INDEX `gsid_created` (`gsid`,`created`), + INDEX `uid` (`uid`), + INDEX `cid` (`cid`), + FOREIGN KEY (`gsid`) REFERENCES `gserver` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT, + FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE +) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Delivery data for posts for the batch processing'; + +-- +-- TABLE diaspora-contact +-- +CREATE TABLE IF NOT EXISTS `diaspora-contact` ( + `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the contact URL', + `addr` varchar(255) COMMENT '', + `alias` varchar(255) COMMENT '', + `nick` varchar(255) COMMENT '', + `name` varchar(255) COMMENT '', + `given-name` varchar(255) COMMENT '', + `family-name` varchar(255) COMMENT '', + `photo` varchar(255) COMMENT '', + `photo-medium` varchar(255) COMMENT '', + `photo-small` varchar(255) COMMENT '', + `batch` varchar(255) COMMENT '', + `notify` varchar(255) COMMENT '', + `poll` varchar(255) COMMENT '', + `subscribe` varchar(255) COMMENT '', + `searchable` boolean COMMENT '', + `pubkey` text COMMENT '', + `gsid` int unsigned COMMENT 'Global Server ID', + `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '', + `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '', + `interacting_count` int unsigned DEFAULT 0 COMMENT 'Number of contacts this contact interacts with', + `interacted_count` int unsigned DEFAULT 0 COMMENT 'Number of contacts that interacted with this contact', + `post_count` int unsigned DEFAULT 0 COMMENT 'Number of posts and comments', + PRIMARY KEY(`uri-id`), + UNIQUE INDEX `addr` (`addr`), + INDEX `alias` (`alias`), + INDEX `gsid` (`gsid`), + FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`gsid`) REFERENCES `gserver` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT +) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Diaspora compatible contacts - used in the Diaspora implementation'; + -- -- TABLE diaspora-interaction -- @@ -606,9 +698,9 @@ CREATE TABLE IF NOT EXISTS `event` ( `nofinish` boolean NOT NULL DEFAULT '0' COMMENT 'if event does have no end this is 1', `ignore` boolean NOT NULL DEFAULT '0' COMMENT '0 or 1', `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id \'<19><78>\'', - `allow_gid` mediumtext COMMENT 'Access Control - list of allowed groups', + `allow_gid` mediumtext COMMENT 'Access Control - list of allowed circles', `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id', - `deny_gid` mediumtext COMMENT 'Access Control - list of denied groups', + `deny_gid` mediumtext COMMENT 'Access Control - list of denied circles', PRIMARY KEY(`id`), INDEX `uid_start` (`uid`,`start`), INDEX `cid` (`cid`), @@ -618,39 +710,6 @@ CREATE TABLE IF NOT EXISTS `event` ( FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Events'; --- --- TABLE fcontact --- -CREATE TABLE IF NOT EXISTS `fcontact` ( - `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID', - `guid` varbinary(255) NOT NULL DEFAULT '' COMMENT 'unique id', - `url` varbinary(383) NOT NULL DEFAULT '' COMMENT '', - `uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the fcontact url', - `name` varchar(255) NOT NULL DEFAULT '' COMMENT '', - `photo` varbinary(383) NOT NULL DEFAULT '' COMMENT '', - `request` varbinary(383) NOT NULL DEFAULT '' COMMENT '', - `nick` varchar(255) NOT NULL DEFAULT '' COMMENT '', - `addr` varchar(255) NOT NULL DEFAULT '' COMMENT '', - `batch` varbinary(383) NOT NULL DEFAULT '' COMMENT '', - `notify` varbinary(383) NOT NULL DEFAULT '' COMMENT '', - `poll` varbinary(383) NOT NULL DEFAULT '' COMMENT '', - `confirm` varbinary(383) NOT NULL DEFAULT '' COMMENT '', - `priority` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '', - `network` char(4) NOT NULL DEFAULT '' COMMENT '', - `alias` varbinary(383) NOT NULL DEFAULT '' COMMENT '', - `pubkey` text COMMENT '', - `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '', - `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '', - `interacting_count` int unsigned DEFAULT 0 COMMENT 'Number of contacts this contact interactes with', - `interacted_count` int unsigned DEFAULT 0 COMMENT 'Number of contacts that interacted with this contact', - `post_count` int unsigned DEFAULT 0 COMMENT 'Number of posts and comments', - PRIMARY KEY(`id`), - INDEX `addr` (`addr`(32)), - UNIQUE INDEX `url` (`url`(190)), - UNIQUE INDEX `uri-id` (`uri-id`), - FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE -) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Diaspora compatible contacts - used in the Diaspora implementation'; - -- -- TABLE fetch-entry -- @@ -693,29 +752,29 @@ CREATE TABLE IF NOT EXISTS `group` ( `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID', `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id', `visible` boolean NOT NULL DEFAULT '0' COMMENT '1 indicates the member list is not private', - `deleted` boolean NOT NULL DEFAULT '0' COMMENT '1 indicates the group has been deleted', - `cid` int unsigned COMMENT 'Contact id of forum. When this field is filled then the members are synced automatically.', - `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'human readable name of group', + `deleted` boolean NOT NULL DEFAULT '0' COMMENT '1 indicates the circle has been deleted', + `cid` int unsigned COMMENT 'Contact id of group. When this field is filled then the members are synced automatically.', + `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'human readable name of circle', PRIMARY KEY(`id`), INDEX `uid` (`uid`), INDEX `cid` (`cid`), FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE, FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE -) DEFAULT COLLATE utf8mb4_general_ci COMMENT='privacy groups, group info'; +) DEFAULT COLLATE utf8mb4_general_ci COMMENT='privacy circles, circle info'; -- -- TABLE group_member -- CREATE TABLE IF NOT EXISTS `group_member` ( `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID', - `gid` int unsigned NOT NULL DEFAULT 0 COMMENT 'groups.id of the associated group', - `contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact.id of the member assigned to the associated group', + `gid` int unsigned NOT NULL DEFAULT 0 COMMENT 'group.id of the associated circle', + `contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact.id of the member assigned to the associated circle', PRIMARY KEY(`id`), INDEX `contactid` (`contact-id`), UNIQUE INDEX `gid_contactid` (`gid`,`contact-id`), FOREIGN KEY (`gid`) REFERENCES `group` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE, FOREIGN KEY (`contact-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE -) DEFAULT COLLATE utf8mb4_general_ci COMMENT='privacy groups, member info'; +) DEFAULT COLLATE utf8mb4_general_ci COMMENT='privacy circles, member info'; -- -- TABLE gserver-tag @@ -786,6 +845,7 @@ CREATE TABLE IF NOT EXISTS `inbox-entry-receiver` ( CREATE TABLE IF NOT EXISTS `inbox-status` ( `url` varbinary(383) NOT NULL COMMENT 'URL of the inbox', `uri-id` int unsigned COMMENT 'Item-uri id of inbox url', + `gsid` int unsigned COMMENT 'ID of the related server', `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation date of this entry', `success` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last successful delivery', `failure` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last failed delivery', @@ -794,7 +854,9 @@ CREATE TABLE IF NOT EXISTS `inbox-status` ( `shared` boolean NOT NULL DEFAULT '0' COMMENT 'Is it a shared inbox?', PRIMARY KEY(`url`), INDEX `uri-id` (`uri-id`), - FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE + INDEX `gsid` (`gsid`), + FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`gsid`) REFERENCES `gserver` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Status of ActivityPub inboxes'; -- @@ -822,6 +884,16 @@ CREATE TABLE IF NOT EXISTS `intro` ( FOREIGN KEY (`suggest-cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE ) DEFAULT COLLATE utf8mb4_general_ci COMMENT=''; +-- +-- TABLE key-value +-- +CREATE TABLE IF NOT EXISTS `key-value` ( + `k` varbinary(50) NOT NULL COMMENT '', + `v` mediumtext COMMENT '', + `updated_at` int unsigned NOT NULL COMMENT 'timestamp of the last update', + PRIMARY KEY(`k`) +) DEFAULT COLLATE utf8mb4_general_ci COMMENT='A key value storage'; + -- -- TABLE locks -- @@ -844,7 +916,7 @@ CREATE TABLE IF NOT EXISTS `mail` ( `guid` varbinary(255) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this private message', `from-name` varchar(255) NOT NULL DEFAULT '' COMMENT 'name of the sender', `from-photo` varbinary(383) NOT NULL DEFAULT '' COMMENT 'contact photo link of the sender', - `from-url` varbinary(383) NOT NULL DEFAULT '' COMMENT 'profile linke of the sender', + `from-url` varbinary(383) NOT NULL DEFAULT '' COMMENT 'profile link of the sender', `contact-id` varbinary(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', @@ -1073,13 +1145,14 @@ CREATE TABLE IF NOT EXISTS `photo` ( `height` smallint unsigned NOT NULL DEFAULT 0 COMMENT '', `width` smallint unsigned NOT NULL DEFAULT 0 COMMENT '', `datasize` int unsigned NOT NULL DEFAULT 0 COMMENT '', + `blurhash` varbinary(255) COMMENT 'BlurHash representation of the photo', `data` mediumblob NOT NULL COMMENT '', `scale` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '', `profile` boolean NOT NULL DEFAULT '0' COMMENT '', `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id \'<19><78>\'', - `allow_gid` mediumtext COMMENT 'Access Control - list of allowed groups', + `allow_gid` mediumtext COMMENT 'Access Control - list of allowed circles', `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id', - `deny_gid` mediumtext COMMENT 'Access Control - list of denied groups', + `deny_gid` mediumtext COMMENT 'Access Control - list of denied circles', `accessible` boolean NOT NULL DEFAULT '0' COMMENT 'Make photo publicly accessible, ignoring permissions', `backend-class` tinytext COMMENT 'Storage backend class', `backend-ref` text COMMENT 'Storage backend data reference', @@ -1246,6 +1319,28 @@ CREATE TABLE IF NOT EXISTS `post-delivery-data` ( FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Delivery data for items'; +-- +-- TABLE post-engagement +-- +CREATE TABLE IF NOT EXISTS `post-engagement` ( + `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri', + `owner-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Item owner', + `contact-type` tinyint NOT NULL DEFAULT 0 COMMENT 'Person, organisation, news, community, relay', + `media-type` tinyint NOT NULL DEFAULT 0 COMMENT 'Type of media in a bit array (1 = image, 2 = video, 4 = audio', + `language` varbinary(128) COMMENT 'Language information about this post', + `searchtext` mediumtext COMMENT 'Simplified text for the full text search', + `created` datetime COMMENT '', + `restricted` boolean NOT NULL DEFAULT '0' COMMENT 'If true, this post is either unlisted or not from a federated network', + `comments` mediumint unsigned COMMENT 'Number of comments', + `activities` mediumint unsigned COMMENT 'Number of activities (like, dislike, ...)', + PRIMARY KEY(`uri-id`), + INDEX `owner-id` (`owner-id`), + INDEX `created` (`created`), + FULLTEXT INDEX `searchtext` (`searchtext`), + FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`owner-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE +) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Engagement data per post'; + -- -- TABLE post-history -- @@ -1280,6 +1375,9 @@ CREATE TABLE IF NOT EXISTS `post-link` ( `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri', `url` varbinary(511) NOT NULL COMMENT 'External URL', `mimetype` varchar(60) COMMENT '', + `height` smallint unsigned COMMENT 'Height of the media', + `width` smallint unsigned COMMENT 'Width of the media', + `blurhash` varbinary(255) COMMENT 'BlurHash representation of the link', PRIMARY KEY(`id`), UNIQUE INDEX `uri-id-url` (`uri-id`,`url`), FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE @@ -1298,6 +1396,7 @@ CREATE TABLE IF NOT EXISTS `post-media` ( `height` smallint unsigned COMMENT 'Height of the media', `width` smallint unsigned COMMENT 'Width of the media', `size` bigint unsigned COMMENT 'Media size', + `blurhash` varbinary(255) COMMENT 'BlurHash representation of the image', `preview` varbinary(512) COMMENT 'Preview URL', `preview-height` smallint unsigned COMMENT 'Height of the preview picture', `preview-width` smallint unsigned COMMENT 'Width of the preview picture', @@ -1417,7 +1516,7 @@ CREATE TABLE IF NOT EXISTS `post-user` ( `event-id` int unsigned COMMENT 'Used to link to the event.id', `unseen` boolean NOT NULL DEFAULT '1' COMMENT 'post has not been seen', `hidden` boolean NOT NULL DEFAULT '0' COMMENT 'Marker to hide the post from the user', - `notification-type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '', + `notification-type` smallint unsigned NOT NULL DEFAULT 0 COMMENT '', `wall` boolean NOT NULL DEFAULT '0' COMMENT 'This item was posted to the wall of uid', `origin` boolean NOT NULL DEFAULT '0' COMMENT 'item originated at this site', `psid` int unsigned COMMENT 'ID of the permission set of this post', @@ -1495,6 +1594,7 @@ CREATE TABLE IF NOT EXISTS `post-thread-user` ( INDEX `psid` (`psid`), INDEX `post-user-id` (`post-user-id`), INDEX `commented` (`commented`), + INDEX `received` (`received`), INDEX `uid_received` (`uid`,`received`), INDEX `uid_wall_received` (`uid`,`wall`,`received`), INDEX `uid_commented` (`uid`,`commented`), @@ -1529,7 +1629,7 @@ CREATE TABLE IF NOT EXISTS `post-user-notification` ( -- CREATE TABLE IF NOT EXISTS `process` ( `pid` int unsigned NOT NULL COMMENT 'The ID of the process', - `hostname` varchar(32) NOT NULL COMMENT 'The name of the host the process is ran on', + `hostname` varchar(255) NOT NULL COMMENT 'The name of the host the process is ran on', `command` varbinary(32) NOT NULL DEFAULT '' COMMENT '', `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '', PRIMARY KEY(`pid`,`hostname`), @@ -1545,7 +1645,7 @@ CREATE TABLE IF NOT EXISTS `profile` ( `profile-name` varchar(255) COMMENT 'Deprecated', `is-default` boolean COMMENT 'Deprecated', `hide-friends` boolean NOT NULL DEFAULT '0' COMMENT 'Hide friend list from viewers of this profile', - `name` varchar(255) NOT NULL DEFAULT '' COMMENT '', + `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Unused in favor of user.username', `pdesc` varchar(255) COMMENT 'Deprecated', `dob` varchar(32) NOT NULL DEFAULT '0000-00-00' COMMENT 'Day of birth', `address` varchar(255) NOT NULL DEFAULT '' COMMENT '', @@ -1577,6 +1677,7 @@ CREATE TABLE IF NOT EXISTS `profile` ( `education` text COMMENT 'Deprecated', `contact` text COMMENT 'Deprecated', `homepage` varchar(255) NOT NULL DEFAULT '' COMMENT '', + `homepage_verified` boolean NOT NULL DEFAULT '0' COMMENT 'was the homepage verified by a rel-me link back to the profile', `xmpp` varchar(255) NOT NULL DEFAULT '' COMMENT 'XMPP address', `matrix` varchar(255) NOT NULL DEFAULT '' COMMENT 'Matrix address', `photo` varbinary(383) NOT NULL DEFAULT '' COMMENT '', @@ -1645,6 +1746,68 @@ CREATE TABLE IF NOT EXISTS `register` ( FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='registrations requiring admin approval'; +-- +-- TABLE report +-- +CREATE TABLE IF NOT EXISTS `report` ( + `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID', + `uid` mediumint unsigned COMMENT 'Reporting user', + `reporter-id` int unsigned COMMENT 'Reporting contact', + `cid` int unsigned NOT NULL COMMENT 'Reported contact', + `gsid` int unsigned COMMENT 'Reported contact server', + `comment` text COMMENT 'Report', + `category-id` int unsigned NOT NULL DEFAULT 1 COMMENT 'Report category, one of Entity Report::CATEGORY_*', + `forward` boolean COMMENT 'Forward the report to the remote server', + `public-remarks` text COMMENT 'Remarks shared with the reporter', + `private-remarks` text COMMENT 'Remarks shared with the moderation team', + `last-editor-uid` mediumint unsigned COMMENT 'Last editor user', + `assigned-uid` mediumint unsigned COMMENT 'Assigned moderator user', + `status` tinyint unsigned NOT NULL COMMENT 'Status of the report, one of Entity Report::STATUS_*', + `resolution` tinyint unsigned COMMENT 'Resolution of the report, one of Entity Report::RESOLUTION_*', + `created` datetime(6) NOT NULL DEFAULT '0001-01-01 00:00:00.000000' COMMENT '', + `edited` datetime(6) COMMENT 'Last time the report has been edited', + PRIMARY KEY(`id`), + INDEX `uid` (`uid`), + INDEX `cid` (`cid`), + INDEX `reporter-id` (`reporter-id`), + INDEX `gsid` (`gsid`), + INDEX `last-editor-uid` (`last-editor-uid`), + INDEX `assigned-uid` (`assigned-uid`), + INDEX `status-resolution` (`status`,`resolution`), + INDEX `created` (`created`), + INDEX `edited` (`edited`), + FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`reporter-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`gsid`) REFERENCES `gserver` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`last-editor-uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`assigned-uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE +) DEFAULT COLLATE utf8mb4_general_ci COMMENT=''; + +-- +-- TABLE report-post +-- +CREATE TABLE IF NOT EXISTS `report-post` ( + `rid` int unsigned NOT NULL COMMENT 'Report id', + `uri-id` int unsigned NOT NULL COMMENT 'Uri-id of the reported post', + `status` tinyint unsigned COMMENT 'Status of the reported post', + PRIMARY KEY(`rid`,`uri-id`), + INDEX `uri-id` (`uri-id`), + FOREIGN KEY (`rid`) REFERENCES `report` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE +) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Individual posts attached to a moderation report'; + +-- +-- TABLE report-rule +-- +CREATE TABLE IF NOT EXISTS `report-rule` ( + `rid` int unsigned NOT NULL COMMENT 'Report id', + `line-id` int unsigned NOT NULL COMMENT 'Terms of service rule line number, may become invalid after a TOS change.', + `text` text NOT NULL COMMENT 'Terms of service rule text recorded at the time of the report', + PRIMARY KEY(`rid`,`line-id`), + FOREIGN KEY (`rid`) REFERENCES `report` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE +) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Terms of service rule lines relevant to a moderation report'; + -- -- TABLE search -- @@ -1726,12 +1889,13 @@ CREATE TABLE IF NOT EXISTS `user-contact` ( `collapsed` boolean COMMENT 'Posts from this contact are collapsed', `hidden` boolean COMMENT 'This contact is hidden from the others', `is-blocked` boolean COMMENT 'User is blocked by this contact', + `channel-frequency` tinyint unsigned COMMENT 'Controls the frequency of the appearance of this contact in channels', `pending` boolean COMMENT '', `rel` tinyint unsigned COMMENT 'The kind of the relation between the user and the contact', `info` mediumtext COMMENT '', `notify_new_posts` boolean COMMENT '', - `remote_self` boolean COMMENT '', - `fetch_further_information` tinyint unsigned COMMENT '', + `remote_self` tinyint unsigned COMMENT '0 => No mirroring, 1-2 => Mirror as own post, 3 => Mirror as reshare', + `fetch_further_information` tinyint unsigned COMMENT '0 => None, 1 => Fetch information, 3 => Fetch keywords, 2 => Fetch both', `ffi_keyword_denylist` text COMMENT '', `subhub` boolean COMMENT '', `hub-verify` varbinary(383) COMMENT '', @@ -1796,6 +1960,82 @@ CREATE VIEW `application-view` AS SELECT FROM `application-token` INNER JOIN `application` ON `application-token`.`application-id` = `application`.`id`; +-- +-- VIEW circle-member-view +-- +DROP VIEW IF EXISTS `circle-member-view`; +CREATE VIEW `circle-member-view` AS SELECT + `group_member`.`id` AS `id`, + `group`.`uid` AS `uid`, + `group_member`.`contact-id` AS `contact-id`, + `contact`.`uri-id` AS `contact-uri-id`, + `contact`.`url` AS `contact-link`, + `contact`.`addr` AS `contact-addr`, + `contact`.`name` AS `contact-name`, + `contact`.`nick` AS `contact-nick`, + `contact`.`thumb` AS `contact-avatar`, + `contact`.`network` AS `contact-network`, + `contact`.`blocked` AS `contact-blocked`, + `contact`.`hidden` AS `contact-hidden`, + `contact`.`readonly` AS `contact-readonly`, + `contact`.`archive` AS `contact-archive`, + `contact`.`pending` AS `contact-pending`, + `contact`.`self` AS `contact-self`, + `contact`.`rel` AS `contact-rel`, + `contact`.`contact-type` AS `contact-contact-type`, + `group_member`.`gid` AS `circle-id`, + `group`.`visible` AS `circle-visible`, + `group`.`deleted` AS `circle-deleted`, + `group`.`name` AS `circle-name` + FROM `group_member` + INNER JOIN `contact` ON `group_member`.`contact-id` = `contact`.`id` + INNER JOIN `group` ON `group_member`.`gid` = `group`.`id`; + +-- +-- VIEW post-timeline-view +-- +DROP VIEW IF EXISTS `post-timeline-view`; +CREATE VIEW `post-timeline-view` AS SELECT + `post-user`.`uid` AS `uid`, + `post-user`.`uri-id` AS `uri-id`, + `post-user`.`gravity` AS `gravity`, + `post-user`.`created` AS `created`, + `post-user`.`edited` AS `edited`, + `post-thread-user`.`commented` AS `commented`, + `post-user`.`received` AS `received`, + `post-thread-user`.`changed` AS `changed`, + `post-user`.`private` AS `private`, + `post-user`.`visible` AS `visible`, + `post-user`.`deleted` AS `deleted`, + `post-user`.`origin` AS `origin`, + `post-user`.`global` AS `global`, + `post-user`.`network` AS `network`, + `post-user`.`protocol` AS `protocol`, + `post-user`.`vid` AS `vid`, + `post-user`.`contact-id` AS `contact-id`, + `contact`.`blocked` AS `contact-blocked`, + `contact`.`readonly` AS `contact-readonly`, + `contact`.`pending` AS `contact-pending`, + `contact`.`rel` AS `contact-rel`, + `contact`.`uid` AS `contact-uid`, + `contact`.`self` AS `self`, + `post-user`.`author-id` AS `author-id`, + `author`.`blocked` AS `author-blocked`, + `author`.`hidden` AS `author-hidden`, + `author`.`gsid` AS `author-gsid`, + `post-user`.`owner-id` AS `owner-id`, + `owner`.`blocked` AS `owner-blocked`, + `owner`.`gsid` AS `owner-gsid`, + `post-user`.`causer-id` AS `causer-id`, + `causer`.`blocked` AS `causer-blocked`, + `causer`.`gsid` AS `causer-gsid` + FROM `post-user` + LEFT 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` + STRAIGHT_JOIN `contact` AS `author` ON `author`.`id` = `post-user`.`author-id` + STRAIGHT_JOIN `contact` AS `owner` ON `owner`.`id` = `post-user`.`owner-id` + LEFT JOIN `contact` AS `causer` ON `causer`.`id` = `post-user`.`causer-id`; + -- -- VIEW post-user-view -- @@ -1804,7 +2044,7 @@ CREATE VIEW `post-user-view` AS SELECT `post-user`.`id` AS `id`, `post-user`.`id` AS `post-user-id`, `post-user`.`uid` AS `uid`, - `parent-post`.`id` AS `parent`, + `post-thread-user`.`post-user-id` AS `parent`, `item-uri`.`uri` AS `uri`, `post-user`.`uri-id` AS `uri-id`, `parent-item-uri`.`uri` AS `parent-uri`, @@ -1890,23 +2130,28 @@ CREATE VIEW `post-user-view` AS SELECT `author`.`addr` AS `author-addr`, IF (`contact`.`url` = `author`.`url` AND `contact`.`name` != '', `contact`.`name`, `author`.`name`) AS `author-name`, `author`.`nick` AS `author-nick`, + `author`.`alias` AS `author-alias`, IF (`contact`.`url` = `author`.`url` AND `contact`.`thumb` != '', `contact`.`thumb`, `author`.`thumb`) AS `author-avatar`, `author`.`network` AS `author-network`, `author`.`blocked` AS `author-blocked`, `author`.`hidden` AS `author-hidden`, `author`.`updated` AS `author-updated`, + `author`.`contact-type` AS `author-contact-type`, `author`.`gsid` AS `author-gsid`, + `author`.`baseurl` AS `author-baseurl`, `post-user`.`owner-id` AS `owner-id`, `owner`.`uri-id` AS `owner-uri-id`, `owner`.`url` AS `owner-link`, `owner`.`addr` AS `owner-addr`, IF (`contact`.`url` = `owner`.`url` AND `contact`.`name` != '', `contact`.`name`, `owner`.`name`) AS `owner-name`, `owner`.`nick` AS `owner-nick`, + `owner`.`alias` AS `owner-alias`, IF (`contact`.`url` = `owner`.`url` AND `contact`.`thumb` != '', `contact`.`thumb`, `owner`.`thumb`) AS `owner-avatar`, `owner`.`network` AS `owner-network`, `owner`.`blocked` AS `owner-blocked`, `owner`.`hidden` AS `owner-hidden`, `owner`.`updated` AS `owner-updated`, + `owner`.`gsid` AS `owner-gsid`, `owner`.`contact-type` AS `owner-contact-type`, `post-user`.`causer-id` AS `causer-id`, `causer`.`uri-id` AS `causer-uri-id`, @@ -1914,10 +2159,12 @@ CREATE VIEW `post-user-view` AS SELECT `causer`.`addr` AS `causer-addr`, `causer`.`name` AS `causer-name`, `causer`.`nick` AS `causer-nick`, + `causer`.`alias` AS `causer-alias`, `causer`.`thumb` AS `causer-avatar`, `causer`.`network` AS `causer-network`, `causer`.`blocked` AS `causer-blocked`, `causer`.`hidden` AS `causer-hidden`, + `causer`.`gsid` AS `causer-gsid`, `causer`.`contact-type` AS `causer-contact-type`, `post-delivery-data`.`postopts` AS `postopts`, `post-delivery-data`.`inform` AS `inform`, @@ -1947,16 +2194,14 @@ CREATE VIEW `post-user-view` AS SELECT EXISTS(SELECT `id` FROM `post-media` WHERE `post-media`.`uri-id` = `post-user`.`uri-id`) AS `has-media`, `diaspora-interaction`.`interaction` AS `signed_text`, `parent-item-uri`.`guid` AS `parent-guid`, - `parent-post`.`network` AS `parent-network`, - `parent-post`.`author-id` AS `parent-author-id`, + `post-thread-user`.`network` AS `parent-network`, + `post-thread-user`.`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`.`nick` AS `parent-author-nick`, - `parent-post-author`.`network` AS `parent-author-network`, - `parent-post-author`.`blocked` AS `parent-author-blocked`, - `parent-post-author`.`hidden` AS `parent-author-hidden` + `parent-post-author`.`network` AS `parent-author-network` 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` + INNER 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` STRAIGHT_JOIN `contact` AS `author` ON `author`.`id` = `post-user`.`author-id` STRAIGHT_JOIN `contact` AS `owner` ON `owner`.`id` = `post-user`.`owner-id` @@ -1974,8 +2219,7 @@ CREATE VIEW `post-user-view` AS SELECT LEFT JOIN `post-delivery-data` ON `post-delivery-data`.`uri-id` = `post-user`.`uri-id` AND `post-user`.`origin` LEFT JOIN `post-question` ON `post-question`.`uri-id` = `post-user`.`uri-id` LEFT JOIN `permissionset` ON `permissionset`.`id` = `post-user`.`psid` - LEFT JOIN `post-user` AS `parent-post` ON `parent-post`.`uri-id` = `post-user`.`parent-uri-id` AND `parent-post`.`uid` = `post-user`.`uid` - LEFT JOIN `contact` AS `parent-post-author` ON `parent-post-author`.`id` = `parent-post`.`author-id`; + LEFT JOIN `contact` AS `parent-post-author` ON `parent-post-author`.`id` = `post-thread-user`.`author-id`; -- -- VIEW post-thread-user-view @@ -1985,7 +2229,7 @@ CREATE VIEW `post-thread-user-view` AS SELECT `post-user`.`id` AS `id`, `post-user`.`id` AS `post-user-id`, `post-thread-user`.`uid` AS `uid`, - `parent-post`.`id` AS `parent`, + `post-thread-user`.`post-user-id` AS `parent`, `item-uri`.`uri` AS `uri`, `post-thread-user`.`uri-id` AS `uri-id`, `parent-item-uri`.`uri` AS `parent-uri`, @@ -2054,6 +2298,7 @@ CREATE VIEW `post-thread-user-view` AS SELECT `contact`.`pending` AS `contact-pending`, `contact`.`rel` AS `contact-rel`, `contact`.`uid` AS `contact-uid`, + `contact`.`gsid` AS `contact-gsid`, `contact`.`contact-type` AS `contact-contact-type`, IF (`post-user`.`network` IN ('apub', 'dfrn', 'dspr', 'stat'), true, `contact`.`writable`) AS `writable`, `contact`.`self` AS `self`, @@ -2070,11 +2315,13 @@ CREATE VIEW `post-thread-user-view` AS SELECT `author`.`addr` AS `author-addr`, IF (`contact`.`url` = `author`.`url` AND `contact`.`name` != '', `contact`.`name`, `author`.`name`) AS `author-name`, `author`.`nick` AS `author-nick`, + `author`.`alias` AS `author-alias`, IF (`contact`.`url` = `author`.`url` AND `contact`.`thumb` != '', `contact`.`thumb`, `author`.`thumb`) AS `author-avatar`, `author`.`network` AS `author-network`, `author`.`blocked` AS `author-blocked`, `author`.`hidden` AS `author-hidden`, `author`.`updated` AS `author-updated`, + `author`.`contact-type` AS `author-contact-type`, `author`.`gsid` AS `author-gsid`, `post-thread-user`.`owner-id` AS `owner-id`, `owner`.`uri-id` AS `owner-uri-id`, @@ -2082,11 +2329,13 @@ CREATE VIEW `post-thread-user-view` AS SELECT `owner`.`addr` AS `owner-addr`, IF (`contact`.`url` = `owner`.`url` AND `contact`.`name` != '', `contact`.`name`, `owner`.`name`) AS `owner-name`, `owner`.`nick` AS `owner-nick`, + `owner`.`alias` AS `owner-alias`, IF (`contact`.`url` = `owner`.`url` AND `contact`.`thumb` != '', `contact`.`thumb`, `owner`.`thumb`) AS `owner-avatar`, `owner`.`network` AS `owner-network`, `owner`.`blocked` AS `owner-blocked`, `owner`.`hidden` AS `owner-hidden`, `owner`.`updated` AS `owner-updated`, + `owner`.`gsid` AS `owner-gsid`, `owner`.`contact-type` AS `owner-contact-type`, `post-thread-user`.`causer-id` AS `causer-id`, `causer`.`uri-id` AS `causer-uri-id`, @@ -2094,10 +2343,12 @@ CREATE VIEW `post-thread-user-view` AS SELECT `causer`.`addr` AS `causer-addr`, `causer`.`name` AS `causer-name`, `causer`.`nick` AS `causer-nick`, + `causer`.`alias` AS `causer-alias`, `causer`.`thumb` AS `causer-avatar`, `causer`.`network` AS `causer-network`, `causer`.`blocked` AS `causer-blocked`, `causer`.`hidden` AS `causer-hidden`, + `causer`.`gsid` AS `causer-gsid`, `causer`.`contact-type` AS `causer-contact-type`, `post-delivery-data`.`postopts` AS `postopts`, `post-delivery-data`.`inform` AS `inform`, @@ -2127,13 +2378,12 @@ CREATE VIEW `post-thread-user-view` AS SELECT EXISTS(SELECT `id` FROM `post-media` WHERE `post-media`.`uri-id` = `post-thread-user`.`uri-id`) AS `has-media`, `diaspora-interaction`.`interaction` AS `signed_text`, `parent-item-uri`.`guid` AS `parent-guid`, - `parent-post`.`network` AS `parent-network`, - `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`.`blocked` AS `parent-author-blocked`, - `parent-post-author`.`hidden` AS `parent-author-hidden` + `post-thread-user`.`network` AS `parent-network`, + `post-thread-user`.`author-id` AS `parent-author-id`, + `author`.`url` AS `parent-author-link`, + `author`.`name` AS `parent-author-name`, + `author`.`nick` AS `parent-author-nick`, + `author`.`network` AS `parent-author-network` 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` @@ -2152,9 +2402,7 @@ CREATE VIEW `post-thread-user-view` AS SELECT LEFT JOIN `item-uri` AS `quote-item-uri` ON `quote-item-uri`.`id` = `post-content`.`quote-uri-id` LEFT JOIN `post-delivery-data` ON `post-delivery-data`.`uri-id` = `post-thread-user`.`uri-id` AND `post-thread-user`.`origin` LEFT JOIN `post-question` ON `post-question`.`uri-id` = `post-thread-user`.`uri-id` - LEFT JOIN `permissionset` ON `permissionset`.`id` = `post-thread-user`.`psid` - LEFT JOIN `post-user` AS `parent-post` ON `parent-post`.`uri-id` = `post-user`.`parent-uri-id` AND `parent-post`.`uid` = `post-thread-user`.`uid` - LEFT JOIN `contact` AS `parent-post-author` ON `parent-post-author`.`id` = `parent-post`.`author-id`; + LEFT JOIN `permissionset` ON `permissionset`.`id` = `post-thread-user`.`psid`; -- -- VIEW post-view @@ -2236,11 +2484,13 @@ CREATE VIEW `post-view` AS SELECT `author`.`addr` AS `author-addr`, `author`.`name` AS `author-name`, `author`.`nick` AS `author-nick`, + `author`.`alias` AS `author-alias`, `author`.`thumb` AS `author-avatar`, `author`.`network` AS `author-network`, `author`.`blocked` AS `author-blocked`, `author`.`hidden` AS `author-hidden`, `author`.`updated` AS `author-updated`, + `author`.`contact-type` AS `author-contact-type`, `author`.`gsid` AS `author-gsid`, `post`.`owner-id` AS `owner-id`, `owner`.`uri-id` AS `owner-uri-id`, @@ -2248,23 +2498,27 @@ CREATE VIEW `post-view` AS SELECT `owner`.`addr` AS `owner-addr`, `owner`.`name` AS `owner-name`, `owner`.`nick` AS `owner-nick`, + `owner`.`alias` AS `owner-alias`, `owner`.`thumb` AS `owner-avatar`, `owner`.`network` AS `owner-network`, `owner`.`blocked` AS `owner-blocked`, `owner`.`hidden` AS `owner-hidden`, `owner`.`updated` AS `owner-updated`, `owner`.`contact-type` AS `owner-contact-type`, + `owner`.`gsid` AS `owner-gsid`, `post`.`causer-id` AS `causer-id`, `causer`.`uri-id` AS `causer-uri-id`, `causer`.`url` AS `causer-link`, `causer`.`addr` AS `causer-addr`, `causer`.`name` AS `causer-name`, `causer`.`nick` AS `causer-nick`, + `causer`.`alias` AS `causer-alias`, `causer`.`thumb` AS `causer-avatar`, `causer`.`network` AS `causer-network`, `causer`.`blocked` AS `causer-blocked`, `causer`.`hidden` AS `causer-hidden`, `causer`.`contact-type` AS `causer-contact-type`, + `causer`.`gsid` AS `causer-gsid`, `post-question`.`id` AS `question-id`, `post-question`.`multiple` AS `question-multiple`, `post-question`.`voters` AS `question-voters`, @@ -2273,13 +2527,12 @@ CREATE VIEW `post-view` AS SELECT EXISTS(SELECT `id` FROM `post-media` WHERE `post-media`.`uri-id` = `post`.`uri-id`) AS `has-media`, `diaspora-interaction`.`interaction` AS `signed_text`, `parent-item-uri`.`guid` AS `parent-guid`, - `parent-post`.`network` AS `parent-network`, - `parent-post`.`author-id` AS `parent-author-id`, + `post-thread`.`network` AS `parent-network`, + `post-thread`.`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`.`blocked` AS `parent-author-blocked`, - `parent-post-author`.`hidden` AS `parent-author-hidden` + `parent-post-author`.`nick` AS `parent-author-nick`, + `parent-post-author`.`network` AS `parent-author-network` 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` @@ -2295,8 +2548,7 @@ CREATE VIEW `post-view` AS SELECT LEFT JOIN `post-content` ON `post-content`.`uri-id` = `post`.`uri-id` LEFT JOIN `item-uri` AS `quote-item-uri` ON `quote-item-uri`.`id` = `post-content`.`quote-uri-id` LEFT JOIN `post-question` ON `post-question`.`uri-id` = `post`.`uri-id` - LEFT JOIN `post` AS `parent-post` ON `parent-post`.`uri-id` = `post`.`parent-uri-id` - LEFT JOIN `contact` AS `parent-post-author` ON `parent-post-author`.`id` = `parent-post`.`author-id`; + LEFT JOIN `contact` AS `parent-post-author` ON `parent-post-author`.`id` = `post-thread`.`author-id`; -- -- VIEW post-thread-view @@ -2378,11 +2630,13 @@ CREATE VIEW `post-thread-view` AS SELECT `author`.`addr` AS `author-addr`, `author`.`name` AS `author-name`, `author`.`nick` AS `author-nick`, + `author`.`alias` AS `author-alias`, `author`.`thumb` AS `author-avatar`, `author`.`network` AS `author-network`, `author`.`blocked` AS `author-blocked`, `author`.`hidden` AS `author-hidden`, `author`.`updated` AS `author-updated`, + `author`.`contact-type` AS `author-contact-type`, `author`.`gsid` AS `author-gsid`, `post-thread`.`owner-id` AS `owner-id`, `owner`.`uri-id` AS `owner-uri-id`, @@ -2390,11 +2644,13 @@ CREATE VIEW `post-thread-view` AS SELECT `owner`.`addr` AS `owner-addr`, `owner`.`name` AS `owner-name`, `owner`.`nick` AS `owner-nick`, + `owner`.`alias` AS `owner-alias`, `owner`.`thumb` AS `owner-avatar`, `owner`.`network` AS `owner-network`, `owner`.`blocked` AS `owner-blocked`, `owner`.`hidden` AS `owner-hidden`, `owner`.`updated` AS `owner-updated`, + `owner`.`gsid` AS `owner-gsid`, `owner`.`contact-type` AS `owner-contact-type`, `post-thread`.`causer-id` AS `causer-id`, `causer`.`uri-id` AS `causer-uri-id`, @@ -2402,10 +2658,12 @@ CREATE VIEW `post-thread-view` AS SELECT `causer`.`addr` AS `causer-addr`, `causer`.`name` AS `causer-name`, `causer`.`nick` AS `causer-nick`, + `causer`.`alias` AS `causer-alias`, `causer`.`thumb` AS `causer-avatar`, `causer`.`network` AS `causer-network`, `causer`.`blocked` AS `causer-blocked`, `causer`.`hidden` AS `causer-hidden`, + `causer`.`gsid` AS `causer-gsid`, `causer`.`contact-type` AS `causer-contact-type`, `post-question`.`id` AS `question-id`, `post-question`.`multiple` AS `question-multiple`, @@ -2413,15 +2671,16 @@ CREATE VIEW `post-thread-view` AS SELECT `post-question`.`end-time` AS `question-end-time`, 0 AS `has-categories`, EXISTS(SELECT `id` FROM `post-media` WHERE `post-media`.`uri-id` = `post-thread`.`uri-id`) AS `has-media`, + (SELECT COUNT(*) FROM `post` WHERE `parent-uri-id` = `post-thread`.`uri-id` AND `gravity` = 6) AS `total-comments`, + (SELECT COUNT(DISTINCT(`author-id`)) FROM `post` WHERE `parent-uri-id` = `post-thread`.`uri-id` AND `gravity` = 6) AS `total-actors`, `diaspora-interaction`.`interaction` AS `signed_text`, `parent-item-uri`.`guid` AS `parent-guid`, - `parent-post`.`network` AS `parent-network`, - `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`.`blocked` AS `parent-author-blocked`, - `parent-post-author`.`hidden` AS `parent-author-hidden` + `post-thread`.`network` AS `parent-network`, + `post-thread`.`author-id` AS `parent-author-id`, + `author`.`url` AS `parent-author-link`, + `author`.`name` AS `parent-author-name`, + `author`.`nick` AS `parent-author-nick`, + `author`.`network` AS `parent-author-network` 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` @@ -2436,9 +2695,7 @@ CREATE VIEW `post-thread-view` AS SELECT LEFT JOIN `diaspora-interaction` ON `diaspora-interaction`.`uri-id` = `post-thread`.`uri-id` LEFT JOIN `post-content` ON `post-content`.`uri-id` = `post-thread`.`uri-id` LEFT JOIN `item-uri` AS `quote-item-uri` ON `quote-item-uri`.`id` = `post-content`.`quote-uri-id` - LEFT JOIN `post-question` ON `post-question`.`uri-id` = `post-thread`.`uri-id` - LEFT JOIN `post` AS `parent-post` ON `parent-post`.`uri-id` = `post`.`parent-uri-id` - LEFT JOIN `contact` AS `parent-post-author` ON `parent-post-author`.`id` = `parent-post`.`author-id`; + LEFT JOIN `post-question` ON `post-question`.`uri-id` = `post-thread`.`uri-id`; -- -- VIEW category-view @@ -2475,6 +2732,24 @@ CREATE VIEW `collection-view` AS SELECT INNER JOIN `post` ON `post-collection`.`uri-id` = `post`.`uri-id` INNER JOIN `post-thread` ON `post-thread`.`uri-id` = `post`.`parent-uri-id`; +-- +-- VIEW media-view +-- +DROP VIEW IF EXISTS `media-view`; +CREATE VIEW `media-view` AS SELECT + `post-media`.`uri-id` AS `uri-id`, + `post-media`.`type` AS `type`, + `post`.`received` AS `received`, + `post`.`created` AS `created`, + `post`.`private` AS `private`, + `post`.`visible` AS `visible`, + `post`.`deleted` AS `deleted`, + `post`.`thr-parent-id` AS `thr-parent-id`, + `post`.`author-id` AS `author-id`, + `post`.`gravity` AS `gravity` + FROM `post-media` + INNER JOIN `post` ON `post-media`.`uri-id` = `post`.`uri-id`; + -- -- VIEW tag-view -- @@ -2497,7 +2772,7 @@ CREATE VIEW `tag-view` AS SELECT DROP VIEW IF EXISTS `network-item-view`; CREATE VIEW `network-item-view` AS SELECT `post-user`.`uri-id` AS `uri-id`, - `parent-post`.`id` AS `parent`, + `post-thread-user`.`post-user-id` AS `parent`, `post-user`.`received` AS `received`, `post-thread-user`.`commented` AS `commented`, `post-user`.`created` AS `created`, @@ -2510,17 +2785,16 @@ CREATE VIEW `network-item-view` AS SELECT `post-user`.`contact-id` AS `contact-id`, `ownercontact`.`contact-type` AS `contact-type` 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` - INNER JOIN `contact` ON `contact`.`id` = `post-thread-user`.`contact-id` - LEFT JOIN `user-contact` AS `author` ON `author`.`uid` = `post-thread-user`.`uid` AND `author`.`cid` = `post-thread-user`.`author-id` - LEFT JOIN `user-contact` AS `owner` ON `owner`.`uid` = `post-thread-user`.`uid` AND `owner`.`cid` = `post-thread-user`.`owner-id` - INNER JOIN `contact` AS `ownercontact` ON `ownercontact`.`id` = `post-thread-user`.`owner-id` - LEFT JOIN `post-user` AS `parent-post` ON `parent-post`.`uri-id` = `post-user`.`parent-uri-id` AND `parent-post`.`uid` = `post-user`.`uid` + INNER 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-thread-user`.`contact-id` + STRAIGHT_JOIN `contact` AS `authorcontact` ON `authorcontact`.`id` = `post-thread-user`.`author-id` + STRAIGHT_JOIN `contact` AS `ownercontact` ON `ownercontact`.`id` = `post-thread-user`.`owner-id` WHERE `post-user`.`visible` AND NOT `post-user`.`deleted` AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`) AND (`post-user`.`hidden` IS NULL OR NOT `post-user`.`hidden`) - AND (`author`.`blocked` IS NULL OR NOT `author`.`blocked`) - AND (`owner`.`blocked` IS NULL OR NOT `owner`.`blocked`); + AND NOT `authorcontact`.`blocked` AND NOT `ownercontact`.`blocked` + AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`authorcontact`.`id`, `ownercontact`.`id`) AND (`blocked` OR `ignored`)) + AND NOT EXISTS(SELECT `gsid` FROM `user-gserver` WHERE `uid` = `post-thread-user`.`uid` AND `gsid` IN (`authorcontact`.`gsid`, `ownercontact`.`gsid`) AND `ignored`); -- -- VIEW network-thread-view @@ -2528,7 +2802,7 @@ CREATE VIEW `network-item-view` AS SELECT DROP VIEW IF EXISTS `network-thread-view`; CREATE VIEW `network-thread-view` AS SELECT `post-thread-user`.`uri-id` AS `uri-id`, - `parent-post`.`id` AS `parent`, + `post-thread-user`.`post-user-id` AS `parent`, `post-thread-user`.`received` AS `received`, `post-thread-user`.`commented` AS `commented`, `post-thread-user`.`created` AS `created`, @@ -2541,15 +2815,14 @@ CREATE VIEW `network-thread-view` AS SELECT 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` - LEFT JOIN `user-contact` AS `author` ON `author`.`uid` = `post-thread-user`.`uid` AND `author`.`cid` = `post-thread-user`.`author-id` - LEFT JOIN `user-contact` AS `owner` ON `owner`.`uid` = `post-thread-user`.`uid` AND `owner`.`cid` = `post-thread-user`.`owner-id` - LEFT JOIN `contact` AS `ownercontact` ON `ownercontact`.`id` = `post-thread-user`.`owner-id` - LEFT JOIN `post-user` AS `parent-post` ON `parent-post`.`uri-id` = `post-user`.`parent-uri-id` AND `parent-post`.`uid` = `post-user`.`uid` + STRAIGHT_JOIN `contact` AS `authorcontact` ON `authorcontact`.`id` = `post-thread-user`.`author-id` + STRAIGHT_JOIN `contact` AS `ownercontact` ON `ownercontact`.`id` = `post-thread-user`.`owner-id` WHERE `post-user`.`visible` AND NOT `post-user`.`deleted` AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`) AND (`post-thread-user`.`hidden` IS NULL OR NOT `post-thread-user`.`hidden`) - AND (`author`.`blocked` IS NULL OR NOT `author`.`blocked`) - AND (`owner`.`blocked` IS NULL OR NOT `owner`.`blocked`); + AND NOT `authorcontact`.`blocked` AND NOT `ownercontact`.`blocked` + AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`authorcontact`.`id`, `ownercontact`.`id`) AND (`blocked` OR `ignored`)) + AND NOT EXISTS(SELECT `gsid` FROM `user-gserver` WHERE `uid` = `post-thread-user`.`uid` AND `gsid` IN (`authorcontact`.`gsid`, `ownercontact`.`gsid`) AND `ignored`); -- -- VIEW owner-view @@ -2634,6 +2907,7 @@ CREATE VIEW `owner-view` AS SELECT `user`.`language` AS `language`, `user`.`register_date` AS `register_date`, `user`.`login_date` AS `login_date`, + `user`.`last-activity` AS `last-activity`, `user`.`default-location` AS `default-location`, `user`.`allow_location` AS `allow_location`, `user`.`theme` AS `theme`, @@ -2674,6 +2948,7 @@ CREATE VIEW `owner-view` AS SELECT `profile`.`postal-code` AS `postal-code`, `profile`.`country-name` AS `country-name`, `profile`.`homepage` AS `homepage`, + `profile`.`homepage_verified` AS `homepage_verified`, `profile`.`dob` AS `dob` FROM `user` INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid` AND `contact`.`self` @@ -2739,11 +3014,11 @@ CREATE VIEW `account-view` AS SELECT `contact`.`blocked` AS `blocked`, `contact`.`notify` AS `dfrn-notify`, `contact`.`poll` AS `dfrn-poll`, - `fcontact`.`guid` AS `diaspora-guid`, - `fcontact`.`batch` AS `diaspora-batch`, - `fcontact`.`notify` AS `diaspora-notify`, - `fcontact`.`poll` AS `diaspora-poll`, - `fcontact`.`alias` AS `diaspora-alias`, + `item-uri`.`guid` AS `diaspora-guid`, + `diaspora-contact`.`batch` AS `diaspora-batch`, + `diaspora-contact`.`notify` AS `diaspora-notify`, + `diaspora-contact`.`poll` AS `diaspora-poll`, + `diaspora-contact`.`alias` AS `diaspora-alias`, `apcontact`.`uuid` AS `ap-uuid`, `apcontact`.`type` AS `ap-type`, `apcontact`.`following` AS `ap-following`, @@ -2757,11 +3032,13 @@ CREATE VIEW `account-view` AS SELECT `apcontact`.`statuses_count` AS `ap-statuses_count`, `gserver`.`site_name` AS `site_name`, `gserver`.`platform` AS `platform`, - `gserver`.`version` AS `version` + `gserver`.`version` AS `version`, + `gserver`.`blocked` AS `server-blocked`, + `gserver`.`failed` AS `server-failed` FROM `contact` LEFT JOIN `item-uri` ON `item-uri`.`id` = `contact`.`uri-id` LEFT JOIN `apcontact` ON `apcontact`.`uri-id` = `contact`.`uri-id` - LEFT JOIN `fcontact` ON `fcontact`.`uri-id` = contact.`uri-id` + LEFT JOIN `diaspora-contact` ON `diaspora-contact`.`uri-id` = contact.`uri-id` LEFT JOIN `gserver` ON `gserver`.`id` = contact.`gsid` WHERE `contact`.`uid` = 0; @@ -2840,14 +3117,14 @@ CREATE VIEW `account-user-view` AS SELECT `ucontact`.`reason` AS `reason`, `contact`.`notify` AS `dfrn-notify`, `contact`.`poll` AS `dfrn-poll`, - `fcontact`.`guid` AS `diaspora-guid`, - `fcontact`.`batch` AS `diaspora-batch`, - `fcontact`.`notify` AS `diaspora-notify`, - `fcontact`.`poll` AS `diaspora-poll`, - `fcontact`.`alias` AS `diaspora-alias`, - `fcontact`.`interacting_count` AS `diaspora-interacting_count`, - `fcontact`.`interacted_count` AS `diaspora-interacted_count`, - `fcontact`.`post_count` AS `diaspora-post_count`, + `item-uri`.`guid` AS `diaspora-guid`, + `diaspora-contact`.`batch` AS `diaspora-batch`, + `diaspora-contact`.`notify` AS `diaspora-notify`, + `diaspora-contact`.`poll` AS `diaspora-poll`, + `diaspora-contact`.`alias` AS `diaspora-alias`, + `diaspora-contact`.`interacting_count` AS `diaspora-interacting_count`, + `diaspora-contact`.`interacted_count` AS `diaspora-interacted_count`, + `diaspora-contact`.`post_count` AS `diaspora-post_count`, `apcontact`.`uuid` AS `ap-uuid`, `apcontact`.`type` AS `ap-type`, `apcontact`.`following` AS `ap-following`, @@ -2861,12 +3138,14 @@ CREATE VIEW `account-user-view` AS SELECT `apcontact`.`statuses_count` AS `ap-statuses_count`, `gserver`.`site_name` AS `site_name`, `gserver`.`platform` AS `platform`, - `gserver`.`version` AS `version` + `gserver`.`version` AS `version`, + `gserver`.`blocked` AS `server-blocked`, + `gserver`.`failed` AS `server-failed` FROM `contact` AS `ucontact` INNER JOIN `contact` ON `contact`.`uri-id` = `ucontact`.`uri-id` AND `contact`.`uid` = 0 LEFT JOIN `item-uri` ON `item-uri`.`id` = `ucontact`.`uri-id` LEFT JOIN `apcontact` ON `apcontact`.`uri-id` = `ucontact`.`uri-id` - LEFT JOIN `fcontact` ON `fcontact`.`uri-id` = `ucontact`.`uri-id` AND `fcontact`.`network` = 'dspr' + LEFT JOIN `diaspora-contact` ON `diaspora-contact`.`uri-id` = `ucontact`.`uri-id` LEFT JOIN `gserver` ON `gserver`.`id` = contact.`gsid`; -- @@ -2943,3 +3222,37 @@ CREATE VIEW `profile_field-view` AS SELECT `profile_field`.`edited` AS `edited` FROM `profile_field` INNER JOIN `permissionset` ON `permissionset`.`id` = `profile_field`.`psid`; + +-- +-- VIEW diaspora-contact-view +-- +DROP VIEW IF EXISTS `diaspora-contact-view`; +CREATE VIEW `diaspora-contact-view` AS SELECT + `diaspora-contact`.`uri-id` AS `uri-id`, + `item-uri`.`uri` AS `url`, + `item-uri`.`guid` AS `guid`, + `diaspora-contact`.`addr` AS `addr`, + `diaspora-contact`.`alias` AS `alias`, + `diaspora-contact`.`nick` AS `nick`, + `diaspora-contact`.`name` AS `name`, + `diaspora-contact`.`given-name` AS `given-name`, + `diaspora-contact`.`family-name` AS `family-name`, + `diaspora-contact`.`photo` AS `photo`, + `diaspora-contact`.`photo-medium` AS `photo-medium`, + `diaspora-contact`.`photo-small` AS `photo-small`, + `diaspora-contact`.`batch` AS `batch`, + `diaspora-contact`.`notify` AS `notify`, + `diaspora-contact`.`poll` AS `poll`, + `diaspora-contact`.`subscribe` AS `subscribe`, + `diaspora-contact`.`searchable` AS `searchable`, + `diaspora-contact`.`pubkey` AS `pubkey`, + `gserver`.`url` AS `baseurl`, + `diaspora-contact`.`gsid` AS `gsid`, + `diaspora-contact`.`created` AS `created`, + `diaspora-contact`.`updated` AS `updated`, + `diaspora-contact`.`interacting_count` AS `interacting_count`, + `diaspora-contact`.`interacted_count` AS `interacted_count`, + `diaspora-contact`.`post_count` AS `post_count` + FROM `diaspora-contact` + INNER JOIN `item-uri` ON `item-uri`.`id` = `diaspora-contact`.`uri-id` + LEFT JOIN `gserver` ON `gserver`.`id` = `diaspora-contact`.`gsid`; diff --git a/doc/API-Entities.md b/doc/API-Entities.md index 23fc2cec4..de3eac9b9 100644 --- a/doc/API-Entities.md +++ b/doc/API-Entities.md @@ -454,7 +454,7 @@ Ex: Wed May 23 06:01:13 +0000 2007 allow_gid String (angle-brackets escaped integers) -Optional. List of allowed group ids +Optional. List of allowed circle ids @@ -466,7 +466,7 @@ Ex: Wed May 23 06:01:13 +0000 2007 deny_gid String (angle-brackets escaped integers) -Optional. List of disallowed group ids +Optional. List of disallowed circle ids @@ -583,7 +583,7 @@ Ex: Wed May 23 06:01:13 +0000 2007 friendica_owner - + Contact No @@ -908,6 +908,13 @@ Identical to [the Twitter Media Object](https://developer.twitter.com/en/docs/tw Resource ID (32 hex chars) + +media-id +String (Integer) +ID used for attaching images to a Mastodon Post Status + + + created String (Date) @@ -977,7 +984,7 @@ Identical to [the Twitter Media Object](https://developer.twitter.com/en/docs/tw allow_gid String (ACL) -List of contact group ids wrapped in angle brackets allowed to access the photo. +List of contact circle ids wrapped in angle brackets allowed to access the photo. @@ -989,7 +996,7 @@ Identical to [the Twitter Media Object](https://developer.twitter.com/en/docs/tw deny_gid String (ACL) -List of contact group ids wrapped in angle brackets forbidden to access the photo. +List of contact circle ids wrapped in angle brackets forbidden to access the photo. @@ -1001,6 +1008,14 @@ Mutually exclusive with data datasize. + +scales +Array of Photo Scales + +List of the various resized versions of the Photo + + + datasize Integer @@ -1040,6 +1055,58 @@ Mutually exclusive with link. +## Photo Scale + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeTypeNullable
idString (Integer)Row ID of this photo scale
scaleIntegerScale number
linkString (URL)URL to this scale's image
heightIntegerImage height in pixels
widthIntegerImage width in pixels
sizeIntegerImage size in bytes
+ + ## Photo List Item @@ -1103,6 +1170,40 @@ Mutually exclusive with link.
+ +## Photo Album + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeTypeDescription
nameStringThe name of the photo album
createdString (Date)The creation date of the album. Format YYYY-MM-DD HH:MM:SS
countIntegerThe number of images in the album
+ ## Private message @@ -1440,4 +1541,4 @@ Unused ## User Mention -Unused \ No newline at end of file +Unused diff --git a/doc/API-Friendica.md b/doc/API-Friendica.md index 8460fd4ab..785cbe41a 100644 --- a/doc/API-Friendica.md +++ b/doc/API-Friendica.md @@ -39,8 +39,8 @@ Create a new event for the current logged in user. - `publish` : (optional) create message for event - `allow_cid` : (optional) ACL-formatted list of allowed contact ids if private event - `allow_gid` : (optional) ACL-formatted list of disallowed contact ids if private event -- `deny_cid` : (optional) ACL-formatted list of allowed group ids if private event -- `deny_gid` : (optional) ACL-formatted list of disallowed group ids if private event +- `deny_cid` : (optional) ACL-formatted list of allowed circle ids if private event +- `deny_gid` : (optional) ACL-formatted list of disallowed circle ids if private event ### POST api/friendica/event_delete @@ -135,7 +135,7 @@ Alias of [`api/conversation/show`](#GET+api%2Fconversation%2Fshow). ### GET api/statusnet/config -Returns the public Friendica node configuration. +Returns the public Friendica node configuration. ### GET api/gnusocial/config @@ -163,7 +163,7 @@ Add or remove an activity from an item. * `attendmaybe` To remove an activity, prepend the verb with "un", eg. "unlike" or "undislike" -Attend verbs disable eachother: that means that if "attendyes" was added to an item, adding "attendno" remove previous "attendyes". +Attend verbs disable each other: that means that if "attendyes" was added to an item, adding "attendno" remove previous "attendyes". Attend verbs should be used only with event-related items (there is no check at the moment). #### Parameters @@ -305,7 +305,7 @@ Returns [Private Messages](help/API-Entities#Private+message) matching the provi #### Parameters * `searchstring`: string for which the API call should search as '%searchstring%' in field 'body' of all messages of the authenticated user (caption ignored) -* `getText` (optional): `plain`|`html` If ommited, the title is prepended to the plaintext body in the `text` attribute of the private message objects. +* `getText` (optional): `plain`|`html` If omitted, the title is prepended to the plaintext body in the `text` attribute of the private message objects. * `getUserObjects` (optional): `true`|`false` If `false`, the `sender` and `recipient` attributes of the private message object are absent. #### Return values @@ -323,33 +323,37 @@ On error: --- -### GET api/friendica/group_show +### GET api/friendica/circle_show -Return all or a specified group of the user with the containing contacts as array. +Alternatively: GET api/friendica/group_show (Backward compatibility) + +Return all or a specified circle of the user with the containing contacts as array. #### Parameters -* `gid`: optional, if not given, API returns all groups of the user +* `gid`: optional, if not given, API returns all circles of the user #### Return values Array of: -* `name`: name of the group -* `gid`: id of the group +* `name`: name of the circle +* `gid`: id of the circle * `user`: array of [Contacts](help/API-Entities#Contact) -### POST api/friendica/group_create +### POST api/friendica/circle_create -Create the group with the posted array of contacts as members. +Alternatively: POST api/friendica/group_create + +Create the circle with the posted array of contacts as members. #### Parameters -* `name`: name of the group to be created +* `name`: name of the circle to be created #### POST data -JSON data as Array like the result of [GET api/friendica/group_show](#GET+api%2Ffriendica%2Fgroup_show): +JSON data as Array like the result of [GET api/friendica/circle_show](#GET+api%2Ffriendica%2Fcircle_show): * `gid` * `name` @@ -360,23 +364,25 @@ JSON data as Array like the result of [GET api/friendica/group_show](#GET+api%2F Array of: * `success`: true if successfully created or reactivated -* `gid`: gid of the created group -* `name`: name of the created group +* `gid`: gid of the created circle +* `name`: name of the created circle * `status`: "missing user" | "reactivated" | "ok" * `wrong users`: array of users, which were not available in the contact table -### POST api/friendica/group_update +### POST api/friendica/circle_update -Update the group with the posted array of contacts as members (post all members of the group to the call; function will remove members not posted). +Alternatively: POST api/friendica/group_update + +Update the circle with the posted array of contacts as members (post all members of the circle to the call; function will remove members not posted). #### Parameters -* `gid`: id of the group to be changed -* `name`: name of the group to be changed +* `gid`: id of the circle to be changed +* `name`: name of the circle to be changed #### POST data -JSON data as array like the result of [GET api/friendica/group_show](#GET+api%2Ffriendica%2Fgroup_show): +JSON data as array like the result of [GET api/friendica/circle_show](#GET+api%2Ffriendica%2Fcircle_show): * `gid` * `name` @@ -387,27 +393,29 @@ JSON data as array like the result of [GET api/friendica/group_show](#GET+api%2F Array of: * `success`: true if successfully updated -* `gid`: gid of the changed group -* `name`: name of the changed group +* `gid`: gid of the changed circle +* `name`: name of the changed circle * `status`: "missing user" | "ok" * `wrong users`: array of users, which were not available in the contact table -### POST api/friendica/group_delete +### POST api/friendica/circle_delete -Delete the specified group of contacts; API call need to include the correct gid AND name of the group to be deleted. +Alternatively: POST api/friendica/group_delete + +Delete the specified circle of contacts; API call need to include the correct gid AND name of the circle to be deleted. #### Parameters -* `gid`: id of the group to be deleted -* `name`: name of the group to be deleted +* `gid`: id of the circle to be deleted +* `name`: name of the circle to be deleted #### Return values Array of: * `success`: true if successfully deleted -* `gid`: gid of the deleted group -* `name`: name of the deleted group +* `gid`: gid of the deleted circle +* `name`: name of the deleted circle * `status`: "deleted" if successfully deleted * `wrong users`: empty array @@ -556,7 +564,7 @@ Alias of [`api/friendica/photo/update`](#POST+api%2Ffriendica%2Fphoto%2Fupdate) Saves data for the scales 0-2 to database (see above for scale description). Call adds non-public entries to items table to enable authenticated contacts to comment/like the photo. -Client should pay attention to the fact that updated access rights are not transferred to the contacts. i.e. public photos remain publicly visible if they have been commented/liked before setting visibility back to a limited group. +Client should pay attention to the fact that updated access rights are not transferred to the contacts. i.e. public photos remain publicly visible if they have been commented/liked before setting visibility back to a limited circle. Currently it is best to inform user that updating rights is not the right way to do this, and offer a solution to add photo as a new photo with the new rights instead. #### Parameters @@ -604,7 +612,7 @@ Sets item table entries for this photo to deleted = 1. On success: -* JSON return +* JSON return ```json { @@ -633,7 +641,7 @@ Deletes all images with the specified album name, is not reversible -> ensure th On success: -* JSON return +* JSON return ```json { @@ -646,7 +654,7 @@ On error: * 403 FORBIDDEN: if not authenticated * 400 BADREQUEST: "no albumname specified", "album not available" -* 500 INTERNALSERVERERROR: "problem with deleting item occured", "unknown error - deleting from database failed" +* 500 INTERNALSERVERERROR: "problem with deleting item occurred", "unknown error - deleting from database failed" ### POST api/friendica/photoalbum/update @@ -665,8 +673,8 @@ On success: ```json { - "result": "updated", - "message":"album 'abc' with all containing photos has been renamed to 'xyz'." + "result": "updated", + "message":"album 'abc' with all containing photos has been renamed to 'xyz'." } ``` @@ -676,8 +684,92 @@ On error: * 400 BADREQUEST: "no albumname specified", "no new albumname specified", "album not available" * 500 INTERNALSERVERERROR: "unknown error - updating in database failed" +### GET api/friendica/photoalbums + +Get a list of photo albums for the user + +#### Parameters + +None +#### Return values + +On success a list of photo album objects: + +```json +[ + { + "name": "Wall Photos", + "created": "2023-01-22 02:03:19", + "count": 4 + }, + { + "name": "Profile photos", + "created": "2022-11-20 14:40:06", + "count": 1 + } +] +``` + +### GET api/friendica/photoalbum + +Get a list of images in a photo album +#### Parameters + +* `album` (Required): name of the album to be deleted +* `limit` (Optional): Maximum number of items to get, defaults to 50, max 500 +* `offset`(Optional): Offset in results to page through total items, defaults to 0 +* `latest_first` (Optional): Reverse the order so the most recent images are first, defaults to false + +#### Return values + +On success: + +* JSON return with the list of Photo items + +**Example:** +`https:///api/friendica/photoalbum?album=Wall Photos&limit=10&offset=2` + +```json +[ + { + "created": "2023-02-14 14:31:06", + "edited": "2023-02-14 14:31:14", + "title": "", + "desc": "", + "album": "Wall Photos", + "filename": "image.png", + "type": "image/png", + "height": 835, + "width": 693, + "datasize": 119523, + "profile": 0, + "allow_cid": "", + "deny_cid": "", + "allow_gid": "", + "deny_gid": "", + "id": "899184972463eb9b2ae3dc2580502826", + "scale": 0, + "media-id": 52, + "scales": [ + { + "id": 52, + "scale": 0, + "link": "https:///photo/899184972463eb9b2ae3dc2580502826-0.png", + "width": 693, + "height": 835, + "size": 119523 + }, + ... + ], + "thumb": "https:///photo/899184972463eb9b2ae3dc2580502826-2.png" + }, + ... +] +``` + --- + ### GET api/friendica/profile/show Returns the [Profile](help/API-Entities#Profile) data of the authenticated user. @@ -715,6 +807,129 @@ General description of profile data in API returns: --- +### POST api/friendica/statuses/:id/dislike + +Marks the given status as disliked by this user + +#### Path Parameter + +* `id`: the status ID that is being marked + +#### Return values + +A Mastodon [Status Entity](https://docs.joinmastodon.org/entities/Status/) + +#### Example: +`https:///api/friendica/statuses/341/dislike` + +```json +{ + "id": "341", + "created_at": "2023-02-23T01:50:00.000Z", + "in_reply_to_id": null, + "in_reply_to_status": null, + "in_reply_to_account_id": null, + "sensitive": false, + "spoiler_text": "", + "visibility": "public", + "language": "en", + ... + "account": { + "id": "8", + "username": "testuser2", + ... + }, + "media_attachments": [], + "mentions": [], + "tags": [], + "emojis": [], + "card": null, + "poll": null, + "friendica": { + "title": "", + "dislikes_count": 1, + "disliked": true + } +} +``` + + +### GET api/friendica/statuses/:id/disliked_by + +Returns the list of accounts that have disliked the status as known by the current server + +#### Path Parameter + +* `id`: the status ID that is being marked + +#### Return values + +A list of [Mastodon Account](https://docs.joinmastodon.org/entities/Account/) objects +in the body and next/previous link headers in the header + +#### Example: +`https:///api/friendica/statuses/341/disliked_by` + +```json +[ + { + "id": "6", + "username": "testuser1", + ... + } +] +``` + + + +### POST api/friendica/statuses/:id/undislike + +Removes the dislike mark (if it exists) on this status for this user + +#### Path Parameter + +* `id`: the status ID that is being marked + +#### Return values + +A Mastodon [Status Entity](https://docs.joinmastodon.org/entities/Status/) + +#### Example: +`https:///api/friendica/statuses/341/undislike` + +```json +{ + "id": "341", + "created_at": "2023-02-23T01:50:00.000Z", + "in_reply_to_id": null, + "in_reply_to_status": null, + "in_reply_to_account_id": null, + "sensitive": false, + "spoiler_text": "", + "visibility": "public", + "language": "en", + ... + "account": { + "id": "8", + "username": "testuser2", + ... + }, + "media_attachments": [], + "mentions": [], + "tags": [], + "emojis": [], + "card": null, + "poll": null, + "friendica": { + "title": "", + "dislikes_count": 0, + "disliked": false + } +} +``` + +--- + ## Deprecated endpoints - POST api/statuses/mediap diff --git a/doc/API-Mastodon.md b/doc/API-Mastodon.md index b09ecca8a..2798446ba 100644 --- a/doc/API-Mastodon.md +++ b/doc/API-Mastodon.md @@ -30,6 +30,101 @@ For supported apps please have a look at the [FAQ](help/FAQ#clients) ## Entities These endpoints use the [Mastodon API entities](https://docs.joinmastodon.org/entities/). +With some additional extensions listed below. + +### Instance (Version 2) Entities +Extensions to the [Mastodon Instance::V2 Entities](https://docs.joinmastodon.org/entities/Instance/) +* `friendica`: Friendica specific properties of the V2 Instance including: + * `version`: The Friendica version string + * `codename`: The Friendica version code name + * `db_version`: The database schema version number + +Example: +```json +{ + "domain": "friendicadevtest1.myportal.social", + "title": "Friendica Social Network", + "version": "2.8.0 (compatible; Friendica 2023.03-dev)", + ... + "friendica": { + "version": "2023.03-dev", + "codename": "Giant Rhubarb", + "db_version": 1516 + } +} +``` + +### Notification Entities +Extensions to the [Mastodon Notification Entities](https://docs.joinmastodon.org/entities/Notification/) +* `dismissed`: whether the object has been dismissed or not + +### Status Entities +Extensions to the [Mastodon Status Entities](https://docs.joinmastodon.org/entities/Status/) +* `in_reply_to_status`: A fully populated Mastodon Status entity for the replied to status or null it is a post rather than a response +* `friendica`: Friendica specific properties of a status including: + * `title`: The Friendica title for a post, or empty if the status is a comment + * `delivery_data`: Information about the state of federating a message from the server + * `delivery_queue_count`: Total number of remote servers that the status needs to be federated to. + * `delivery_queue_done`: Total number of remote servers that have successfully been federated to so far. + * `delivery_queue_failed`: Total number of remote servers that have we failed to federate to so far. + * `dislikes_count`: The number of dislikes that a status has accumulated according to the server. + * `disliked`: Whether the API user disliked the status. + +Example: +```json +{ + "id": "358", + "created_at": "2023-02-23T02:45:46.000Z", + "in_reply_to_id": "356", + "in_reply_to_status": { + "id": "356", + "created_at": "2023-02-23T02:45:35.000Z", + "in_reply_to_id": null, + "in_reply_to_status": null, + "in_reply_to_account_id": null, + ... + "content": "A post from testuser1", + ... + "account": { + "id": "6", + "username": "testuser1", + "acct": "testuser1", + "display_name": "testuser1", + ... + }, + ... + "friendica": { + "title": "", + "dislikes_count": 0 + } + }, + "in_reply_to_account_id": "6", + ... + "replies_count": 0, + "reblogs_count": 0, + "favourites_count": 0, + ... + "content": "A reply from testuser2", + ... + "account": { + "id": "8", + "username": "testuser2", + "acct": "testuser2", + "display_name": "testuser2", + ... + }, + ... + "friendica": { + "title": "", + "delivery_data": { + "delivery_queue_count": 10, + "delivery_queue_done": 3, + "delivery_queue_failed": 0 + }, + "dislikes_count": 0 + } +} +``` ## Implemented endpoints @@ -47,6 +142,7 @@ These endpoints use the [Mastodon API entities](https://docs.joinmastodon.org/en - [`POST /api/v1/accounts/:id/unmute`](https://docs.joinmastodon.org/methods/accounts/) - [`GET /api/v1/accounts/relationships`](https://docs.joinmastodon.org/methods/accounts/) - [`GET /api/v1/accounts/search`](https://docs.joinmastodon.org/methods/accounts) +- [`PATCH /api/v1/accounts/update_credentials`](https://docs.joinmastodon.org/methods/accounts/#update_credentials) - [`GET /api/v1/accounts/verify_credentials`](https://docs.joinmastodon.org/methods/accounts) - [`POST /api/v1/apps`](https://docs.joinmastodon.org/methods/apps/) - [`GET /api/v1/apps/verify_credentials`](https://docs.joinmastodon.org/methods/apps/) @@ -72,8 +168,8 @@ These endpoints use the [Mastodon API entities](https://docs.joinmastodon.org/en - `:id` is a follow request ID, not a regular account id - Returns a [Relationship](https://docs.joinmastodon.org/entities/relationship) object. - -- [`GET /api/v1/instance`](https://docs.joinmastodon.org/methods/instance#fetch-instance) +- [`GET /api/v1/followed_tags`](https://docs.joinmastodon.org/methods/followed_tags/) +- [`GET /api/v1/instance`](https://docs.joinmastodon.org/methods/instance/#v1) - `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/) @@ -91,6 +187,10 @@ These endpoints use the [Mastodon API entities](https://docs.joinmastodon.org/en - [`PUT /api/v1/media/:id`](https://docs.joinmastodon.org/methods/statuses/media/) - [`GET /api/v1/mutes`](https://docs.joinmastodon.org/methods/accounts/mutes/) - [`GET /api/v1/notifications`](https://docs.joinmastodon.org/methods/notifications/) + - Additional field `include_all` to return read and unread statuses, defaults to `false` + - Additional field `summary` returns a count of all of the statuses that match the type filter + - Additional field `with_muted` Pleroma extension to return notifications from muted users, defaults to `false` + - Does not support the `type` field, which is the mirror image of the supported `exclude_types` field - [`GET /api/v1/notifications/:id`](https://docs.joinmastodon.org/methods/notifications/) - [`POST /api/v1/notifications/clear`](https://docs.joinmastodon.org/methods/notifications/) - [`POST /api/v1/notifications/:id/dismiss`](https://docs.joinmastodon.org/methods/notifications/) @@ -100,51 +200,77 @@ These endpoints use the [Mastodon API entities](https://docs.joinmastodon.org/en - [`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/) - [`DELETE /api/v1/scheduled_statuses/:id`](https://docs.joinmastodon.org/methods/statuses/scheduled_statuses/) - [`GET /api/v1/scheduled_statuses/:id`](https://docs.joinmastodon.org/methods/statuses/scheduled_statuses/) - [`GET /api/v1/search`](https://docs.joinmastodon.org/methods/search/) -- [`POST /api/v1/statuses`](https://docs.joinmastodon.org/methods/statuses/) - - Additionally to the static values `public`, `unlisted` and `private`, the `visibility` parameter can contain a numeric value with a group id. -- [`GET /api/v1/statuses/:id`](https://docs.joinmastodon.org/methods/statuses/) -- [`DELETE /api/v1/statuses/:id`](https://docs.joinmastodon.org/methods/statuses/) -- [`GET /api/v1/statuses/:id/card`](https://docs.joinmastodon.org/methods/statuses/) -- [`GET /api/v1/statuses/:id/context`](https://docs.joinmastodon.org/methods/statuses/) -- [`GET /api/v1/statuses/:id/reblogged_by`](https://docs.joinmastodon.org/methods/statuses/) -- [`GET /api/v1/statuses/:id/favourited_by`](https://docs.joinmastodon.org/methods/statuses/) -- [`POST /api/v1/statuses/:id/favourite`](https://docs.joinmastodon.org/methods/statuses/) -- [`POST /api/v1/statuses/:id/unfavourite`](https://docs.joinmastodon.org/methods/statuses/) -- [`POST /api/v1/statuses/:id/reblog`](https://docs.joinmastodon.org/methods/statuses/) -- [`POST /api/v1/statuses/:id/unreblog`](https://docs.joinmastodon.org/methods/statuses/) -- [`POST /api/v1/statuses/:id/bookmark`](https://docs.joinmastodon.org/methods/statuses/) -- [`POST /api/v1/statuses/:id/unbookmark`](https://docs.joinmastodon.org/methods/statuses/) -- [`POST /api/v1/statuses/:id/mute`](https://docs.joinmastodon.org/methods/statuses/) -- [`POST /api/v1/statuses/:id/unmute`](https://docs.joinmastodon.org/methods/statuses/) -- [`POST /api/v1/statuses/:id/pin`](https://docs.joinmastodon.org/methods/statuses/) -- [`POST /api/v1/statuses/:id/unpin`](https://docs.joinmastodon.org/methods/statuses/) +- [`PUT /api/v1/statuses`](https://docs.joinmastodon.org/methods/statuses/#edit) + - Does not support `polls` argument as Friendica does not have polls + - Additional fields `friendica` for Friendica specific parameters: + - `title`: Explicitly sets the title for a post status, ignored if used on a comment status. For post statuses the legacy behavior is to use any "spoiler text" as the title if it is provided. If both the title and spoiler text are provided for a post status then they will each be used for their respective roles. If no title is provided then the legacy behavior will persist. If you want to create a post with no title but spoiler text then explicitly set the title but set it to an empty string `""`. +- [`POST /api/v1/statuses`](https://docs.joinmastodon.org/methods/statuses/#create) + - Does not support `polls` argument as Friendica does not have polls + - Additionally to the static values `public`, `unlisted` and `private`, the `visibility` parameter can contain a numeric value with a circle id. + - Additional field `quote_id` for the post that is being quote reshared + - Additional fields `friendica` for Friendica specific parameters: + - `title`: Explicitly sets the title for a post status, ignored if used on a comment status. For post statuses the legacy behavior is to use any "spoiler text" as the title if it is provided. If both the title and spoiler text are provided for a post status then they will each be used for their respective roles. If no title is provided then the legacy behavior will persist. If you want to create a post with no title but spoiler text then explicitly set the title but set it to an empty string `""`. +- [`GET /api/v1/statuses/:id`](https://docs.joinmastodon.org/methods/statuses/#get) +- [`DELETE /api/v1/statuses/:id`](https://docs.joinmastodon.org/methods/statuses/#delete) +- [`GET /api/v1/statuses/:id/context`](https://docs.joinmastodon.org/methods/statuses/#context) + - Additional support for paging using `min_id`, `max_id`, `since_id` parameters + - Additional support for previous/next Link Headers to support paging + - Additional flag `show_all` to allow including posts from blocked and ignored/muted users, defaults to `false` +- [`GET /api/v1/statuses/:id/reblogged_by`](https://docs.joinmastodon.org/methods/statuses/#reblogged_by) +- [`GET /api/v1/statuses/:id/favourited_by`](https://docs.joinmastodon.org/methods/statuses/#favourited_by) +- [`POST /api/v1/statuses/:id/favourite`](https://docs.joinmastodon.org/methods/statuses/#favourite) +- [`POST /api/v1/statuses/:id/unfavourite`](https://docs.joinmastodon.org/methods/statuses/#unfavourite) +- [`POST /api/v1/statuses/:id/reblog`](https://docs.joinmastodon.org/methods/statuses/#boost) +- [`POST /api/v1/statuses/:id/unreblog`](https://docs.joinmastodon.org/methods/statuses/#unreblog) +- [`POST /api/v1/statuses/:id/bookmark`](https://docs.joinmastodon.org/methods/statuses/#bookmark) +- [`POST /api/v1/statuses/:id/unbookmark`](https://docs.joinmastodon.org/methods/statuses/#unbookmark) +- [`POST /api/v1/statuses/:id/mute`](https://docs.joinmastodon.org/methods/statuses/#mute) +- [`POST /api/v1/statuses/:id/unmute`](https://docs.joinmastodon.org/methods/statuses/#unmute) +- [`POST /api/v1/statuses/:id/pin`](https://docs.joinmastodon.org/methods/statuses/#pin) +- [`POST /api/v1/statuses/:id/unpin`](https://docs.joinmastodon.org/methods/statuses/#unpin) +- [`POST /api/v1/statuses/:id`](https://docs.joinmastodon.org/methods/statuses/#edit) +- [`GET /api/v1/statuses/:id/source`](https://docs.joinmastodon.org/methods/statuses/#source) +- [`GET /api/v1/statuses/:id/card`](https://docs.joinmastodon.org/methods/statuses/#card) - [`GET /api/v1/suggestions`](https://docs.joinmastodon.org/methods/accounts/suggestions/) +- [`GET /api/v1/tags/:id`](https://docs.joinmastodon.org/methods/tags/#get) +- [`GET /api/v1/tags/:id/follow`](https://docs.joinmastodon.org/methods/tags/#follow) +- [`GET /api/v1/tags/:id/unfollow`](https://docs.joinmastodon.org/methods/tags/#unfollow) - [`GET /api/v1/timelines/direct`](https://docs.joinmastodon.org/methods/timelines/) - [`GET /api/v1/timelines/home`](https://docs.joinmastodon.org/methods/timelines/) + - Additional field `with_muted` Pleroma extension to return notifications from muted users, defaults to `false` + - Additional field `exclude_replies` to only return post statuses not replies/comments, defaults to `false` - [`GET /api/v1/timelines/list/:id`](https://docs.joinmastodon.org/methods/timelines/) + - Additional field `with_muted` Pleroma extension to return notifications from muted users, defaults to `false` + - Additional field `exclude_replies` to only return post statuses not replies/comments, defaults to `false` - [`GET /api/v1/timelines/public`](https://docs.joinmastodon.org/methods/timelines/) + - Additional field `with_muted` Pleroma extension to return notifications from muted users, defaults to `false` + - Additional field `exclude_replies` to only return post statuses not replies/comments, defaults to `false` - [`GET /api/v1/timelines/tag/:hashtag`](https://docs.joinmastodon.org/methods/timelines/) + - Additional field `with_muted` Pleroma extension to return notifications from muted users, defaults to `false` + - Additional field `exclude_replies` to only return post statuses not replies/comments, defaults to `false` + - Does not support the `any[]`, `all[]`, or `none[]` query parameters - [`GET /api/v1/trends`](https://docs.joinmastodon.org/methods/instance/trends/) +- [`GET /api/v1/trends/links`](https://github.com/mastodon/mastodon/pull/16917) +- [`GET /api/v1/trends/statuses`](https://docs.joinmastodon.org/methods/trends/#statuses) +- [`GET /api/v1/trends/tags`](https://docs.joinmastodon.org/methods/trends/#tags) + - Additional field `friendica_local` to return local trending tags instead of global tags, defaults to `false` +- [`GET /api/v2/instance`](https://docs.joinmastodon.org/methods/instance/#v2) - [`GET /api/v2/search`](https://docs.joinmastodon.org/methods/search/) ## Currently unimplemented endpoints -These emdpoints are planned to be implemented somewhere in the future. +These endpoints are planned to be implemented somewhere in the future. -- [`PATCH /api/v1/accounts/update_credentials`](https://docs.joinmastodon.org/methods/accounts/) - [`POST /api/v1/accounts/:id/remove_from_followers`](https://github.com/mastodon/mastodon/pull/16864) - [`GET /api/v1/accounts/familiar_followers`](https://github.com/mastodon/mastodon/pull/17700) - [`GET /api/v1/accounts/lookup`](https://github.com/mastodon/mastodon/pull/15740) -- [`GET /api/v1/trends/links`](https://github.com/mastodon/mastodon/pull/16917) -- [`GET /api/v1/trends/statuses`](https://github.com/mastodon/mastodon/pull/17431) -- [`GET /api/v1/trends/tags`](https://github.com/mastodon/mastodon/pull/16917) - [`POST /api/v1/polls/:id/votes`](https://docs.joinmastodon.org/methods/statuses/polls/) -- [`GET /api/v1/statuses/{id:\d+}/source`](https://github.com/mastodon/mastodon/pull/16697) - [`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/) @@ -189,7 +315,6 @@ They refer to features or data that don't exist in Friendica yet. - [`DELETE /api/v1/filters/:id`](https://docs.joinmastodon.org/methods/accounts/filters/) - [`GET /api/v1/instance/activity`](https://docs.joinmastodon.org/methods/instance#weekly-activity) - [`POST /api/v1/markers`](https://docs.joinmastodon.org/methods/timelines/markers/) -- [`POST /api/v1/reports`](https://docs.joinmastodon.org/methods/accounts/reports/) - [`PUT /api/v1/scheduled_statuses/:id`](https://docs.joinmastodon.org/methods/statuses/scheduled_statuses/) - [`GET /api/v1/statuses/{id:\d+}/history`](https://github.com/mastodon/mastodon/pull/16697) - [`GET /api/v1/streaming`](https://docs.joinmastodon.org/methods/timelines/streaming/) diff --git a/doc/Accesskeys.md b/doc/Accesskeys.md index f79524c1b..7f85f37ef 100644 --- a/doc/Accesskeys.md +++ b/doc/Accesskeys.md @@ -16,9 +16,11 @@ General ------- * p - Profile * n - Network +* l - Channel * c - Community * s - Search * a - Admin +* m - Moderation * f - Notifications * u - User menu @@ -27,6 +29,18 @@ General * l - Local community * g - Global community +../channel +-------- +* y - for you +* f - followers +* r - sharers of sharers +* h - what's hot +* i - Images +* v - Videos +* d - Audio +* g - Posts in your language +* o - Hot posts in your language + ../profile -------- * m - Status Messages and Posts @@ -47,7 +61,7 @@ General * i - Only show ignored contacts * y - Only show archived contacts * h - Only show hidden contacts -* e - Edit contact groups +* e - Edit contact circles ../contact (single contact view) ------------------------------- diff --git a/doc/Account-Basics.md b/doc/Account-Basics.md index 5e22e8a15..975fd8fb7 100644 --- a/doc/Account-Basics.md +++ b/doc/Account-Basics.md @@ -10,7 +10,7 @@ Not all Friendica sites allow open registration. If registration is allowed, you will see a "Register" link immediately below the login prompt on the site's home page. Following this link will take you to the site registration page. The strength of our network is that lots of different sites are all completely compatible with each other. -If the site you're visting doesn't allow registration, or you think you might prefer another one, there is a [list of public servers here](https://dir.friendica.social/servers) and hopefully you will find one that meets your needs. +If the site you're visiting doesn't allow registration, or you think you might prefer another one, there is a [list of public servers here](https://dir.friendica.social/servers) and hopefully you will find one that meets your needs. If you'd like to have your own server, you can do that too. Visit [the Friendica website](http://friendi.ca/) to download the code with setup instructions. @@ -23,10 +23,10 @@ If you do not have an OpenID address or do not wish to use OpenID, leave this fi If you have an OpenID account elsewhere and wish to use it, enter the address into this field and click 'Register'. Friendica will attempt to extract as much information as possible from your OpenID provider and return to this page with those items already filled in. -### Your Full Name +### Your Display Name -Please provide your full name **as you would like it to be displayed on this system**. -Most people use their real name for this, but you're under no obligation to do so yourself. +Please provide your display name **as you would like it to be displayed on this system**. +Some people use their real name for this, but you're under no obligation to do so yourself. ### Email Address @@ -41,9 +41,9 @@ This is the only bit of personal information that has to be accurate. ### Nickname A nickname is used to generate web addresses for many of your personal pages, and is also treated like an email address when establishing communications with others. -Due to the way that the nickname is used, it has some limitations. +Due to the way that the nickname is used, it has some limitations. It must contain only US-ASCII text characters and numbers, and must also start with a text character. -It also must be unique on this system. +It also must be unique on this system. This is used in many places to identify your account, and once set it cannot be changed. @@ -53,28 +53,28 @@ The registration form also allows you to choose whether or not to list your acco This is like a "phone book" and you may choose to be unlisted. We recommend that you select 'Yes' so that other people (friends, family, etc.) will be able to find you. If you choose 'No', you will essentially be invisible and have few opportunities for interaction. -Whichever you choose, this can be changed any time from your Settings page after you login. +Whichever you choose, this can be changed any time from your Settings page after you login. ### Register Once you have provided the necessary details, click the 'Register' button. An email will be sent to you providing your account login details. -Please check your email (including spam folders) for your registration details and initial password. +Please check your email (including spam folders) for your registration details and initial password. Login Page --- On the 'Login' page, please enter your login information that was provided during registration. -You may use either your nickname or email address as a Login Name. +You may use either your nickname or email address as a Login Name. If you use your account to manage other accounts and these all have the same email address, please enter the nickname for the account you wish to manage. If your account has been OpenID enabled, you may use your OpenID address as a login name and leave the password blank. -You will be redirected to your OpenID provider to complete your authorisation. +You will be redirected to your OpenID provider to complete your authorisation. Otherwise, enter your password. This will have been initially provided in your registration email message. -Your password is case-sensitive, so please check your 'Caps Lock' key if you are having difficulty logging in. +Your password is case-sensitive, so please check your 'Caps Lock' key if you are having difficulty logging in. Changing Your Password --- @@ -99,9 +99,9 @@ See Also * [Profiles](help/Profiles) -* [Global Directory](help/Making-Friends#The+Directories) +* [Global Directory](help/Making-Friends#The+Directories) -* [Groups and Privacy](help/Groups-and-Privacy) +* [Circles and Privacy](help/Circles-and-Privacy) * [Move Account](help/Move-Account) diff --git a/doc/AddonStorageBackend.md b/doc/AddonStorageBackend.md index eaa58cd4d..c3a6d1639 100644 --- a/doc/AddonStorageBackend.md +++ b/doc/AddonStorageBackend.md @@ -100,7 +100,7 @@ See doxygen documentation of `IWritableStorage` interface for details about each ## Register a storage backend class -Each backend must be registered in the system when the plugin is installed, to be aviable. +Each backend must be registered in the system when the plugin is installed, to be available. `DI::facStorage()->register(string $class)` is used to register the backend class. @@ -140,18 +140,18 @@ abstract class StorageTest There are two intended types of exceptions for storages -### `ReferenceStorageExecption` +### `ReferenceStorageException` This storage exception should be used in case the caller tries to use an invalid references. This could happen in case the caller tries to delete or update an unknown reference. The implementation of the storage backend must not ignore invalid references. -Avoid throwing the common `StorageExecption` instead of the `ReferenceStorageException` at this particular situation! +Avoid throwing the common `StorageException` instead of the `ReferenceStorageException` at this particular situation! ### `StorageException` This is the common exception in case unexpected errors happen using the storage backend. -If there's a predecessor to this exception (e.g. you caught an exception and are throwing this execption), you should add the predecessor for transparency reasons. +If there's a predecessor to this exception (e.g. you caught an exception and are throwing this exception), you should add the predecessor for transparency reasons. Example: @@ -320,7 +320,7 @@ The file is `addon/samplestorage/samplestorage.php` */ diff --git a/doc/Addons.md b/doc/Addons.md index b43a8a915..b89a48d26 100644 --- a/doc/Addons.md +++ b/doc/Addons.md @@ -44,7 +44,7 @@ Uninstalling an addon automatically unregisters any hook it registered, but if y The install and uninstall functions will be called (i.e. re-installed) if the addon changes after installation. Therefore your uninstall should not destroy data and install should consider that data may already exist. -Future extensions may provide for "setup" amd "remove". +Future extensions may provide for "setup" and "remove". ## PHP addon hooks @@ -60,25 +60,14 @@ This *should* be 'addon/*addon_name*/*addon_name*.php' in most cases and can be `$function` is a string and is the name of the function which will be executed when the hook is called. ### Arguments -Your hook callback functions will be called with at least one and possibly two arguments +Your hook callback functions will be called with at most one argument - function _(App $a, &$b) { + function _(&$b) { } If you wish to make changes to the calling data, you must declare them as reference variables (with `&`) during function declaration. -#### $a -$a is the Friendica `App` class. -It contains a wealth of information about the current state of Friendica: - -* which module has been called, -* configuration information, -* the page contents at the point the hook was invoked, -* profile and user information, etc. - -It is recommeded you call this `$a` to match its usage elsewhere. - #### $b $b can be called anything you like. This is information specific to the hook currently being processed, and generally contains information that is being immediately processed or acted on that you can use, display, or alter. @@ -88,7 +77,7 @@ Remember to declare it with `&` if you wish to alter it. Your addon can provide user-specific settings via the `addon_settings` PHP hook, but it can also provide node-wide settings in the administration page of your addon. -Simply declare a `_addon_admin(App $a)` function to display the form and a `_addon_admin_post(App $a)` function to process the data from the form. +Simply declare a `_addon_admin()` function to display the form and a `_addon_admin_post()` function to process the data from the form.0 ## Global stylesheets @@ -102,7 +91,7 @@ function _install() } -function _head(App $a) +function _head() { \Friendica\DI::page()->registerStylesheet(__DIR__ . '/relative/path/to/addon/stylesheet.css'); } @@ -124,7 +113,7 @@ function _install() ... } -function _footer(App $a) +function _footer() { \Friendica\DI::page()->registerFooterScript(__DIR__ . '/relative/path/to/addon/script.js'); } @@ -135,7 +124,7 @@ function _footer(App $a) ### JavaScript hooks The main Friendica script provides hooks via events dispatched on the `document` property. -In your Javascript file included as described above, add your event listener like this: +In your JavaScript file included as described above, add your event listener like this: ```js document.addEventListener(name, callback); @@ -144,7 +133,7 @@ document.addEventListener(name, callback); - *name* is the name of the hook and corresponds to a known Friendica JavaScript hook. - *callback* is a JavaScript anonymous function to execute. -More info about Javascript event listeners: https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener +More info about JavaScript event listeners: https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener #### Current JavaScript hooks @@ -167,9 +156,9 @@ DI::args()->get(1); // = 'arg1' DI::args()->get(2); // = 'arg2' ``` -To display a module page, you need to declare the function `_content(App $a)`, which defines and returns the page body content. -They may also contain `_post(App $a)` which is called before the `_content` function and typically handles the results of POST forms. -You may also have `_init(App $a)` which is called before `_content` and should include common logic to your module. +To display a module page, you need to declare the function `_content()`, which defines and returns the page body content. +They may also contain `_post()` which is called before the `_content` function and typically handles the results of POST forms. +You may also have `_init()` which is called before `_content` and should include common logic to your module. ## Templates @@ -209,7 +198,7 @@ Called when a user attempts to login. ### logged_in Called after a user has successfully logged in. -`$b` contains the `$a->user` array. +`$b` contains the `App->user` array. ### display_item Called when formatting a post for display. @@ -232,6 +221,15 @@ Please note: body contents are bbcode - not HTML Called when receiving a post from another source. This may also be used to post local activity or system generated messages. `$b` is the item array of information to be stored in the database and the item body is bbcode. +### detect_languages +Called after the language detection. This can be used for alternative language detection methods. +`$data` is an array: + +- **text**: The text that is analyzed. +- **detected**: (input/output) Array of language codes detected in the related text. The array key is the language code, the array value the probability. +- **uri-id**: The Uri-Id of the item. +- **author-id**: The id of the author contact. + ### addon_settings Called when generating the HTML for the addon settings page. `$data` is an array containing: @@ -275,7 +273,7 @@ $data = [ ##### With multiple submit buttons ```php $data = [ - 'addon' => 'catavar', + 'addon' => 'catavatar', 'title' => DI::l10n()->t('Cat Avatar Settings'), 'html' => $html, 'submit' => [ @@ -360,7 +358,7 @@ Called prior to output of profile edit page. ### profile_advanced Called when the HTML is generated for the Advanced profile, corresponding to the Profile tab within a person's profile page. `$b` is the HTML string representation of the generated profile. -The profile array details are in `$a->profile`. +The profile array details are in `App->profile`. ### directory_item Called from the Directory page when formatting an item for display. @@ -413,7 +411,7 @@ Called prior to output of personal XRD file. ### home_content Called prior to output home page content, shown to unlogged users. -`$b` is the HTML sring of section region. +`$b` is the HTML string of section region. ### contact_edit Called when editing contact details on an individual from the Contacts page. @@ -436,7 +434,7 @@ Called after HTML content functions have completed. ### footer Called after HTML content functions have completed. -Deferred Javascript files should be registered using this hook. +Deferred JavaScript files should be registered using this hook. `$b` is (string) HTML of footer div/element. ### avatar_lookup @@ -649,6 +647,14 @@ Hook data: - **uid** (input): the user id to revoke the block for. - **result** (output): a boolean value indicating wether the operation was successful or not. +### support_probe + +Called to assert whether a connector addon provides probing capabilities. + +Hook data: +- **protocol** (input): shorthand for the protocol. List of values is available in `src/Core/Protocol.php`. +- **result** (output): should be true if the connector provides follow capabilities, left alone otherwise. + ### storage_instance Called when a custom storage is used (e.g. webdav_storage) @@ -790,10 +796,6 @@ Here is a complete list of all hook callbacks with file locations (as of 24-Sep- Hook::callAll('post_local', $datarray); Hook::callAll('post_local_end', $datarray); -### mod/editpost.php - - Hook::callAll('jot_tool', $jotplugins); - ### src/Render/FriendicaSmartyEngine.php Hook::callAll("template_vars", $arr); @@ -807,6 +809,7 @@ Here is a complete list of all hook callbacks with file locations (as of 24-Sep- ### src/Model/Item.php + Hook::callAll('detect_languages', $item); Hook::callAll('post_local', $item); Hook::callAll('post_remote', $item); Hook::callAll('post_local_end', $posted_item); @@ -855,6 +858,10 @@ Here is a complete list of all hook callbacks with file locations (as of 24-Sep- Hook::callAll('lockview_content', $item); +### src/Module/Post/Edit.php + + Hook::callAll('jot_tool', $jotplugins); + ### src/Module/Settings/Delegation.php Hook::callAll('authenticate', $addon_auth); @@ -918,6 +925,7 @@ Here is a complete list of all hook callbacks with file locations (as of 24-Sep- Hook::callAll('revoke_follow', $hook_data); Hook::callAll('block', $hook_data); Hook::callAll('unblock', $hook_data); + Hook::callAll('support_probe', $hook_data); ### src/Core/Logger/Factory.php diff --git a/doc/BBCode.md b/doc/BBCode.md index 3fe599130..ea6fa8e2b 100644 --- a/doc/BBCode.md +++ b/doc/BBCode.md @@ -191,7 +191,7 @@ code You should not read any further if you want to be surprised.
Click to open/close -
+
@@ -202,7 +202,7 @@ code Author wrote:
Click to open/close -
+
@@ -653,7 +653,7 @@ On Mastodon this field is used for the content warning.
- +You can change all the [style=text-shadow: 0 0 4px #CC0000;]CSS properties[/style] of this inline text. +
Custom inline styles

-[style=text-shadow: 0 0 4px #CC0000;]You can change all the CSS properties of this block.[/style]
You can change all the CSS properties of this inline text.You can change all the CSS properties of this inline text.
diff --git a/doc/Bugs-and-Issues.md b/doc/Bugs-and-Issues.md index 405604c75..126f6af58 100644 --- a/doc/Bugs-and-Issues.md +++ b/doc/Bugs-and-Issues.md @@ -6,7 +6,7 @@ Bugs and Issues If your server has a support page, you should report any bugs/issues you encounter there first. Reporting to your support page before reporting to the developers makes their job easier, as they don't have to deal with bug reports that might not have anything to do with them. Reducing the workload in this way helps us get new features faster. -You can also contact the [friendica support forum](https://forum.friendi.ca/profile/helpers) and report your problem there. +You can also contact the [friendica support group](https://forum.friendi.ca/profile/helpers) and report your problem there. Bugs are rarely limited to one person, and the chances are somebody from another node has encountered the problem too, and will be able to help you. If you're a technical user, or your site doesn't have a support page, you'll need to use the [Bug Tracker](https://github.com/friendica/friendica/issues). diff --git a/doc/Channels.md b/doc/Channels.md new file mode 100644 index 000000000..260b96294 --- /dev/null +++ b/doc/Channels.md @@ -0,0 +1,77 @@ +Channels +===== + +* [Home](help) + +Channels are a way to discover new content or to display content that you might have missed otherwise. +There are several predefined channels, additionally you can create your own channels, based on some rules. +Channels only display posts from the last 24 hours (this value can be changed by the admin). + +In the display settings in the section "Timelines" you can define which channels and other timelines you want to see in the "Channels" widget on the network page and which channels should appear in the menu bar at the top of the page. + +Also in the display settings in the section "Channels" you can define all the languages that you want to see in your channels. Here you can select more than one language. + +On the contact page you can define the channel frequency for every contact. The options are: + +* Default frequency: Posts by this contact are displayed in the "for you" channel if you interact often with this contact or if a post reached some level of interaction. +* Display all posts of this contact: All posts from this contact will appear on the "for you" channel. +* Display only few posts: When a contact creates a lot of posts in a short period, this setting reduces the number of displayed posts in every channel. +* Never display posts: Posts from this contact will never be displayed in any channel. + +Predefined Channels +--- + +* For you: Posts from contacts you interact with and who interact with you. In detail, it consists of: + * Posts from people you interact with on a more than average level. + * Posts from the accounts that you follow with a more than average number of interactions- + * Posts from accounts where you activated "notify on new posts" or where you have set the channel frequency accordingly. +* What's Hot: Posts with a more than average number of interactions. +* Language: Posts in your language. +* Followers: Posts from your followers that you don't follow. +* Sharers of sharers: Posts from accounts that are followed by accounts that you follow. +* Images: Posts with images. +* Audio: Posts with audio. +* Videos: Posts with videos. + +User defined Channels +--- + +In the "Channels" settings you can create your own channels. + +Each channel is defined by these values: + +* Label: This value is mandatory and is used for the menu label. +* Description: A short description of the content. This can help to keep the overview, when you have got a lot of channels. +* Access Key: When you want to access this channel via an access key, you can define it here. Pay attention to not use an already used one. +* Circle: This defines the data source for this channel. By default it is set to the public timeline. There are some predefined values, like the accounts that you follow or the accounts that follow you. Also all of your circles can be selected. +* Include Tags: Comma separated list of tags. A post will be used when it contains any of the listed tags. +* Exclude Tags: Comma separated list of tags. If a post contain any of these tags, then it will not be part of nthis channel. +* Full Text Search: This can be used to include or exclude content, based on the content and some additional keywords. It uses the "boolean mode" operators from MariaDB: https://mariadb.com/kb/en/full-text-index-overview/#in-boolean-mode +* Images, Videos, Audio: When selected, you will see content with the selected media type. This can be combined. If none of these fields are checked, you will see any content, with or without attacked media. + +Additional keywords for the full text search +--- + +Additionally to the search for content, there are additional keywords that can be used in the full text search: + +* from - Use "from:nickname" or "from:nickname@domain.tld" to search for posts from a specific author. +* to - Use "from:nickname" or "from:nickname@domain.tld" to search for posts with the given contact as receiver. +* group - Use "from:nickname" or "from:nickname@domain.tld" to search for group post of the given group. +* tag - Use "tag:tagname" to search for a specific tag. +* network - Use this to include or exclude some networks from your channel. + * network:apub - ActivityPub (Used by the systems in the Fediverse) + * network:dfrn - Legacy Friendica protocol. Nowayday Friendica mostly uses ActivityPub. + * network:dspr - The Diaspora protocol is mainly used by Diaspora itself. Some other systems support the protocol as well like Hubzilla, Socialhome or Ganggo. + * network:feed - RSS/Atom feeds + * network:mail - Mails that had been imported via IMAP. + * network:stat - The OStatus protocol is mainly used by old GNU Social installations. + * network:dscs - Posts that are received by the Discourse connector. + * network:tmbl - Posts that are received by the Tumblr connector. + * network:bsky - Posts that are received by the Bluesky connector. +* visibility - You have the choice between different visibilities. You can only see unlisted or private posts that you have the access for. + * visibility:public + * visibility:unlisted + * visibility:private + +Remember that you can combine these kerywords. +So for example you can create a channel with all posts that talk about the Fediverse - that aren't posted in the Fediverse with the search terms: "fediverse -network:apub -network:dfrn" \ No newline at end of file diff --git a/doc/Chats.md b/doc/Chats.md index df3e7c784..1fd76ec6f 100644 --- a/doc/Chats.md +++ b/doc/Chats.md @@ -39,7 +39,7 @@ You can use several servers to create an account: ### 1. Basics -At first you have to get the current version. You can either pull it from [Github](https://github.com) like so: +At first you have to get the current version. You can either pull it from [GitHub](https://github.com) like so: $> cd /var/www/virtual/YOURSPACE/html/addon; git pull diff --git a/doc/Groups-and-Privacy.md b/doc/Circles-and-Privacy.md similarity index 62% rename from doc/Groups-and-Privacy.md rename to doc/Circles-and-Privacy.md index d8d5a3d8f..d701173c0 100644 --- a/doc/Groups-and-Privacy.md +++ b/doc/Circles-and-Privacy.md @@ -1,78 +1,76 @@ -Groups and Privacy +Circles and Privacy ================== * [Home](help) -Groups are merely collections of friends. +Circles are merely collections of friends. But Friendica uses these to unlock some very powerful features. -**Setting Up Groups** +**Setting Up Circles** -To create a group, visit your Friendica "Contacts" page and select "Create a new group". -Give the group a name. +To create a circle, visit your Friendica "Contacts" page and select "Create a new circle". +Give the circle a name. -This brings you to a page where you can select the group members. +This brings you to a page where you can select the circle members. You will have two boxes on this page. -The top box is the roster of current group members. -Below that is another box containing all of your friends who are *not* members of the group. +The top box is the roster of current circle members. +Below that is another box containing all of your friends who are *not* members of the circle. -If you click on a photo of a person who isn't in the group, they will be put into the group. -If you click on a photo of a person who is in the group, they will be removed from it. +If you click on a photo of a person who isn't in the circle, they will be put into the circle. +If you click on a photo of a person who is in the circle, they will be removed from it. **Access Control** -Once you have created a group, you may use it in any access control list. +Once you have created a circle, you may use it in any access control list. This is the little lock icon beneath the status update box on your home page. -If you click this you can select who can see and who can *not* see the post you are about to make.. -These can be individual people or groups. +If you click this, you can select who can see and who can *not* see the post you are about to make... +These can be individual people or circles. -On your "Network" page you will find posts and conversation from everybody in your network. -You may select an individual group on this page to show conversations pertaining only to members of that group. +On your "Network" page, you will find posts and conversations from everybody in your network. +You may select an individual circle on this page to show conversations pertaining only to members of that circle. But wait, there's more... -If you look carefully when visiting a group from your Network page, the lock icon under the status update box has an exclamation mark next to it. +If you look carefully when visiting a circle from your Network page, the lock icon under the status update box has an exclamation mark next to it. This is meant to draw attention to that lock. Click the lock. -You will see that since you are only viewing a certain group of people, your status updates while on that screen default to only being seen by that same group of people. +You will see that since you are only viewing a certain circle of people, your status updates while on that screen default to only being seen by that same circle of people. This is how you keep your future employers from seeing what you write to your drinking buddies. -You can over-ride this setting, but this makes it easy to separate your conversations into different friend circles. +You can override this setting, but this makes it easy to separate your conversations into different friend circles. **Default Post Privacy** By default, Friendica assumes that you want all of your posts to be private. -Therefore, when you sign up, Friendica creates a group for you that it will automatically add all of your contacts to. -All of your posts are restricted to that group by default. +Therefore, when you sign up, Friendica creates a circle for you that it will automatically add all of your contacts to. +All of your posts are restricted to that circle by default. -Note that this behaviour can be overridden by your site admin, in which case your posts will be "public" (i.e. visible to the entire Internet) by default. +Note that this behaviour can be overridden by your site admin, in which case your posts will be "public" (i.e., visible to the entire Internet) by default. If you want your posts to be "public" by default, you can change your default post permissions on your Settings page. -You also have the option there to change which groups you post to by default, or to change which group your new contacts get placed into by default. +You also have the option to change which circles you post to by default or which circle your new contacts get placed into by default. **Privacy Concerns To Be Aware Of** These private conversations work best when your friends are Friendica members. -We know who else can see the conversations - nobody, *unless* your friends cut and paste the messages and send them to others. +We know who else can see the conversations - nobody, *unless* your friends cut and paste the messages and send them to others. This is a trust issue you need to be aware of. No software in the world can prevent your friends from leaking your confidential and trusted communications. -Only a wise choice of friends. +Only a wise choice of friends. -But it isn't as clear cut when dealing with GNU Social and other network providers. +But it isn't as clear-cut when dealing with GNU Social and other network providers. If you look at the Contact Edit page for any person, we will tell you whether or not they are members of an insecure network where you should exercise caution. Once you have created a post, you can not change the permissions assigned. Within seconds it has been delivered to lots of people - and perhaps everybody it was addressed to. -If you mistakenly created a message and wish you could take it back, the best you can do is to delete it. -We will send out a delete notification to everybody who received the message - and this should wipe out the message with the same speed it was initially propagated. -In most cases it will be completely wiped from the Internet - in under a minute. +If you mistakenly created a message and wish to take it back, the best you can do is delete it. +We will send out a delete notification to everybody who received the message - and this should wipe out the message with the same speed as it was initially propagated. +In most cases, it will be completely wiped from the Internet - in under a minute. Again, this applies to Friendica networks. -Once a message spreads to other networks, it may not be removed quickly and in some cases it may not be removed at all. +Once a message spreads to other networks, it may not be removed quickly, and in some cases, it may not be removed at all. -In case you haven't yet figured this out, we are encouraging you to encourage your friends to use Friendica - because all these privacy features work much better within a privacy-aware network. -Many of the other social networks Friendica can connect to have no privacy controls. Profiles, Photos, and Privacy @@ -102,7 +100,7 @@ When Friendica sends a post to these networks which exceeds the service length l The original is a link back to your Friendica profile. As Friendica cannot prove who they are, it may not be possible for these people to view your post in full. -For people in this situation we would recommend providing a "Twitter-length" summary, with more detail for friends that can see the post in full. +For people in this situation we would recommend providing a "Twitter-length" summary, with more detail for friends that can see the post in full. You can do so by including the BBCode tag *abstract* in your posting. Blocking your profile or entire Friendica site from unknown web visitors also has serious implications for communicating with GNU Social members. diff --git a/doc/Composer.md b/doc/Composer.md index 7b62ba6cf..7310a443e 100644 --- a/doc/Composer.md +++ b/doc/Composer.md @@ -20,7 +20,7 @@ Composer requires PHP CLI and the following examples assume it's available syste #### From Archive -If you just unpacked a Friendica release archive, you don't have to use Commposer at all, all the required libraries are already bundled in the archive. +If you just unpacked a Friendica release archive, you don't have to use Composer at all, all the required libraries are already bundled in the archive. #### Installing with Git diff --git a/doc/Config.md b/doc/Config.md index 885509939..3e0459f9c 100644 --- a/doc/Config.md +++ b/doc/Config.md @@ -37,8 +37,8 @@ The `config` directory holds key configuration files and can have different conf All of them have to end with `.config.php` and must not include `-sample` in their name. Some examples of common known configuration files: -- `local.config.php` holds the current node custom configuration. -- `addon.config.php` is optional and holds the custom configuration for specific addons. +- `local.config.php` holds the base node custom configuration. +- Any other file in this folder is meant for additional configuration (e.g. for addons). Addons can define their own default configuration values in `addon/[addon]/config/[addon].config.php` which is loaded when the addon is activated. @@ -59,7 +59,7 @@ Currently, the following configurations are included: The legacy `.htconfig.php` configuration file is still supported, but is deprecated and will be removed in a subsequent Friendica release. The migration is pretty straightforward: -If you had any addon-specific configuration in your `.htconfig.php`, just copy `config/addon-sample.config.php` to `config/addon.config.php` and move your configuration values. +If you had any addon-specific configuration in your `.htconfig.php`, copy `config/local-sample.config.php` to `config/addon.config.php` and move your configuration values. Afterwards, copy `config/local-sample.config.php` to `config/local.config.php`, move the remaining configuration values to it according to the following conversion chart, then rename your `.htconfig.php` to check your node is working as expected before deleting it. Mit Vollgas in den Abgrund … - Austria Insiderinfo Zum Inhalt springen
\"Austria
Startseite-Nachhaltigkeit-Natur- & Umweltschutz-Mit Vollgas in den Abgrund …

Mit Vollgas in den Abgrund …

… oder ist es doch nur ein wirklich ungünstiger Blickwinkel?

Viele sagen, dass wir sehenden Auges auf einen Abgrund zufahren. Ein Abgrund, den mittlerweile auch alle sehen. Bis auf die extrem Kurzsichtigen oder Blinden.

Aber trotzdem verharrt der Großteil von uns schön auf dem Gaspedal des Konsums. Ja, auch die Sehenden. Denn man habe es sich ja verdient, wozu würde man sonst den ganzen Tag arbeiten?

Warnung! Dieser Artikel kann Spuren von Ironie enthalten! Das Titelbild wurde unter Zuhilfenahme von DALL-E erstellt.

Abgrund? Künstliches Drama!

Würdest du mit deinem Auto auf eine Klippe zufahren und weiter Gas geben, obwohl du davon ausgehen musst, dass sich das mit durchgetretenem Gaspedal niemals ausgehen wird? Ein Absturz also unvermeidlich sein wird?

So ein Absturz wird im Rahmen der Klimakrise auch von vielen Sehenden in Kauf genommen. Denn seien wir einmal ganz ehrlich – wir wissen ja nicht wirklich, wie weit es dort dann hinuntergeht. Klar, es gibt Experten, die meinen, dass das sehr heftig werden wird, wenn wir so weitermachen. Aber man muss ja nicht immer gleich vom Schlimmsten ausgehen, oder?

Und was wäre, wenn diese sich vielleicht ja doch irren und es nur ein paar Zentimeter sind? Wenn es nur von unserem aktuellen Blickwinkel so schlimm aussieht? Mann kennt ja diese Bilder, wo sich der/die Fotograf:in einfach auf den Boden wirft, um ein künstliches Drama zu erzeugen. Dann hätten wir uns jahrelang umsonst so sehr angestrengt und eingeschränkt.

Brutale Einschränkungen. Echt brutal!

Öffis!

Brutal eingeschränkt! Mit kleineren E-Autos statt den schönen und sicheren (für den Fahrer) Hybrid-SUVs mit extra Stauraum und Überrollbügel. Oder noch schlimmer – in völlig überfüllte Öffis gezwängt, auf die man ohnehin immer ewig warten muss. Gemeinsam mit laut grölenden, betrunkenen und stinkenden, vor sich hin rülpsenden Fußballfans.

Nicht all-inclusive ins Glück!

Kein Urlaubsflug um 20 € zum Saufen für einen Abend nach Malle. Äh, wandern. Wandern im schönen Norden Mallorcas wollte ich natürlich sagen! Keine Kreuzfahrt ins Glück auf dem Traumschiff.

\"Ferienanlage
Ferienanlage in der Wüste mit Pool

Keine fremden Kulturen hautnah aus der sicheren All-Inklusive Ferienanlage mit extra großem Buffet und Security vor der Anlage heraus erleben. Bildung, so wichtig! Mir geht es natürlich nur um meine Bildung! Aber klar, der Pool der wirklich sauberen Anlage, da darf man sich wirklich nicht beschweren, der ist schon auch klasse. Und die Cocktails, und das Fitness-Angebot im Club.

Aber einmal fahre ich auf jeden Fall raus in die Slums, das muss man schon zumindest auch einmal gesehen haben. Um den Kindern Süßigkeiten vom Jeep zuzuwerfen und ihnen eine Freude zu machen. Um Verständnis für diese armen Menschen zu bekommen, denen die letzte Dürre / Überschwemmung / Tornado (zutreffendes bitte ankreuzen) wirklich mächtig zugesetzt hat.

Diese armen Leute stehen vor den Trümmern ihrer Existenz. Kein Haus. Kein Auto. Kein Boot. Wenig zu essen. Wer das nicht live gesehen hat, kann das Leid nicht verstehen – da gibst du mir doch recht, oder? Gut, wenn es Leute wie mich gibt, die Devisen ins Land bringen, um ihr Leid ein wenig zu verringern!

Keine Klimakrise – wäre wirklich alles umsonst?

Nehmen wir einmal an, die Klimakrise wäre nur erfunden. Erfunden vom „System“, welches uns nur unterjochen will, um Reiche noch reicher zu machen. Unterstützt von den Mainstream-Medien und dem Staatsfernsehen, die auch nur alle Teil des Systems wären. Was natürlicher völliger Schwachsinn ist, aber manche glauben das wirklich.

Wenn das alles nur erfunden wäre, würden wir also quasi völlig grundlos unsere Städte wieder lebenswerter machen.

\"Mirabellgarten
Mirabellgarten und die Festung Hohensalzburg – mehr davon!

Mit weniger Autos und somit Abgasen und Lärm. Weniger Asphalt und Parkplätze, dafür mehr Grün und Parks mit Spielplätzen, auf denen sich unsere Kinder und Enkel austoben können. In einer sehr guten und nahezu schadstofffreien Luft, ohne Angst haben zu müssen, dass sie von einem SUV umgenietet werden.

Mit einem sehr gut ausgebauten Öffi-System mit Bus und Bahn und einem ausgezeichneten Radwegenetz. Keine Zeit mehr in Staus verbringen. Sich nicht mehr mit dem Fahrrad zwischen stinkenden Autokolonnen durchschlängeln zu müssen, mit der ständigen Angst im Nacken, von einem gereizten und gestressten Autofahrer abgeschossen zu werden.

Wäre so etwas nicht erstrebenswert? Mit oder ohne Klimakrise? Mit dem zusätzlich guten Gefühl, dass wir die Kurve vor dem Abgrund noch schaffen können? Völlig egal, wie hoch der Abgrund am Ende wirklich ist?

Ähnliche Beiträge

Hinterlasse einen Kommentar Antworten abbrechen

Page load link
Nach oben
+", + ], + 'meta http-equiv content-type' => [ + 'expected' => 'utf-8', + 'html' => '', + ], + 'meta http-equiv Content-Type' => [ + 'expected' => 'utf-8', + 'html' => '', + ], + 'meta http-equiv Content-Type no charset' => [ + 'expected' => null, + 'html' => '', + ], + 'meta charset' => [ + 'expected' => 'utf-8', + 'html' => '', + ], + 'meta charset no quotes' => [ + 'expected' => 'utf-8', + 'html' => '', + ], + 'meta charSet' => [ + 'expected' => 'utf-8', + 'html' => '', + ], +// Can't test in Woodpecker without tripping PHPUnit, even with the error-suppressing operator +// 'invalid html' => [ +// 'expected' => null, +// 'html' => '', +// ] + ]; + } + + /** + * @dataProvider dataExtractCharset + * + * @param string|null $expected + * @param string $html + * @return void + */ + public function testExtractCharset(?string $expected, string $html) + { + $doc = new \DOMDocument(); + @$doc->loadHTML($html, LIBXML_NOERROR); + + $this->assertEquals($expected, HTML::extractCharset($doc)); + } } diff --git a/tests/src/Content/Text/MarkdownTest.php b/tests/src/Content/Text/MarkdownTest.php index 57d45b743..296c7da25 100644 --- a/tests/src/Content/Text/MarkdownTest.php +++ b/tests/src/Content/Text/MarkdownTest.php @@ -1,6 +1,6 @@ . + * + */ + +namespace Friendica\Test\src\Core\Addon\Model; + +use Friendica\Core\Addon\Exception\AddonInvalidConfigFileException; +use Friendica\Core\Addon\Model\AddonLoader; +use Friendica\Core\Config\Capability\IManageConfigValues; +use Friendica\Test\MockedTest; +use Friendica\Test\Util\VFSTrait; +use org\bovigo\vfs\vfsStream; + +class AddonLoaderTest extends MockedTest +{ + use VFSTrait; + + protected $structure = [ + 'addon' => [ + 'testaddon1' => [ + 'static' => [], + ], + 'testaddon2' => [ + 'static' => [], + ], + 'testaddon3' => [], + ] + ]; + + protected $addons = [ + 'testaddon1', + 'testaddon2', + 'testaddon3', + ]; + + protected $content = << [ + \Psr\Log\LoggerInterface::class => [ + \Psr\Log\NullLogger::class => [''], + ], + ], +]; +EOF; + + protected function setUp(): void + { + parent::setUp(); + + $this->setUpVfsDir(); + } + + public function dataHooks(): array + { + return [ + 'normal' => [ + 'structure' => $this->structure, + 'enabled' => $this->addons, + 'files' => [ + 'addon/testaddon1/static/hooks.config.php' => $this->content, + ], + 'assertion' => [ + \Friendica\Core\Hooks\Capability\BehavioralHookType::STRATEGY => [ + \Psr\Log\LoggerInterface::class => [ + \Psr\Log\NullLogger::class => [''], + ], + ], + ], + ], + 'double' => [ + 'structure' => $this->structure, + 'enabled' => $this->addons, + 'files' => [ + 'addon/testaddon1/static/hooks.config.php' => $this->content, + 'addon/testaddon2/static/hooks.config.php' => $this->content, + ], + 'assertion' => [ + \Friendica\Core\Hooks\Capability\BehavioralHookType::STRATEGY => [ + \Psr\Log\LoggerInterface::class => [ + \Psr\Log\NullLogger::class => ['', ''], + ], + ], + ], + ], + 'wrongName' => [ + 'structure' => $this->structure, + 'enabled' => $this->addons, + 'files' => [ + 'addon/testaddon1/static/wrong.config.php' => $this->content, + ], + 'assertion' => [ + ], + ], + 'doubleNutOnlyOneEnabled' => [ + 'structure' => $this->structure, + 'enabled' => ['testaddon1'], + 'files' => [ + 'addon/testaddon1/static/hooks.config.php' => $this->content, + 'addon/testaddon2/static/hooks.config.php' => $this->content, + ], + 'assertion' => [ + \Friendica\Core\Hooks\Capability\BehavioralHookType::STRATEGY => [ + \Psr\Log\LoggerInterface::class => [ + \Psr\Log\NullLogger::class => [''], + ], + ], + ], + ] + ]; + } + + /** + * @dataProvider dataHooks + */ + public function testAddonLoader(array $structure, array $enabledAddons, array $files, array $assertion) + { + vfsStream::create($structure)->at($this->root); + + foreach ($files as $file => $content) { + vfsStream::newFile($file) + ->withContent($content) + ->at($this->root); + } + + $configArray = []; + foreach ($enabledAddons as $enabledAddon) { + $configArray[$enabledAddon] = ['test' => []]; + } + + $config = \Mockery::mock(IManageConfigValues::class); + $config->shouldReceive('get')->with('addons')->andReturn($configArray)->once(); + + $addonLoader = new AddonLoader($this->root->url(), $config); + + self::assertEquals($assertion, $addonLoader->getActiveAddonConfig('hooks')); + } + + /** + * Test the exception in case of a wrong addon content + */ + public function testWrongContent() + { + $filename = 'addon/testaddon1/static/hooks.config.php'; + $wrongContent = "structure)->at($this->root); + + vfsStream::newFile($filename) + ->withContent($wrongContent) + ->at($this->root); + + $configArray = []; + foreach ($this->addons as $enabledAddon) { + $configArray[$enabledAddon] = ['test' => []]; + } + + $config = \Mockery::mock(IManageConfigValues::class); + $config->shouldReceive('get')->with('addons')->andReturn($configArray)->once(); + + $addonLoader = new AddonLoader($this->root->url(), $config); + + self::expectException(AddonInvalidConfigFileException::class); + self::expectExceptionMessage(sprintf('Error loading config file %s', $this->root->getChild($filename)->url())); + + $addonLoader->getActiveAddonConfig('hooks'); + } + + /** + * Test that nothing happens in case there are wrong addons files, but they're not used + */ + public function testNoHooksConfig() + { + $filename = 'addon/testaddon1/static/hooks.config.php'; + $wrongContent = "structure)->at($this->root); + + vfsStream::newFile($filename) + ->withContent($wrongContent) + ->at($this->root); + + $configArray = []; + foreach ($this->addons as $enabledAddon) { + $configArray[$enabledAddon] = ['test' => []]; + } + + $config = \Mockery::mock(IManageConfigValues::class); + $config->shouldReceive('get')->with('addons')->andReturn($configArray)->once(); + + $addonLoader = new AddonLoader($this->root->url(), $config); + self::assertEmpty($addonLoader->getActiveAddonConfig('anythingElse')); + } +} diff --git a/tests/src/Core/Cache/APCuCacheTest.php b/tests/src/Core/Cache/APCuCacheTest.php index 37f664755..03a3fa10a 100644 --- a/tests/src/Core/Cache/APCuCacheTest.php +++ b/tests/src/Core/Cache/APCuCacheTest.php @@ -1,6 +1,6 @@ instance->set('key space', 'value')); self::assertEquals('value', $this->instance->get('key space')); } + + public function testGetName() + { + if (defined(get_class($this->instance) . '::NAME')) { + self::assertEquals($this->instance::NAME, $this->instance->getName()); + } else { + self::expectNotToPerformAssertions(); + } + } } diff --git a/tests/src/Core/Cache/DatabaseCacheTest.php b/tests/src/Core/Cache/DatabaseCacheTest.php index e0d47c264..63cc7e445 100644 --- a/tests/src/Core/Cache/DatabaseCacheTest.php +++ b/tests/src/Core/Cache/DatabaseCacheTest.php @@ -1,6 +1,6 @@ shouldReceive('startRecording'); - $profiler->shouldReceive('stopRecording'); - $profiler->shouldReceive('saveTimestamp')->withAnyArgs()->andReturn(true); - - // load real config to avoid mocking every config-entry which is related to the Database class - $configFactory = new Config(); - $loader = (new Config())->createConfigFileLoader($this->root->url(), []); - $configCache = $configFactory->createCache($loader); - - $dbaDefinition = (new DbaDefinition($configCache->get('system', 'basepath')))->load(); - $viewDefinition = (new ViewDefinition($configCache->get('system', 'basepath')))->load(); - - $dba = new StaticDatabase($configCache, $profiler, $dbaDefinition, $viewDefinition); - - $this->cache = new Cache\Type\DatabaseCache('database', $dba); + $this->cache = new Cache\Type\DatabaseCache('database', $this->getDbInstance()); return $this->cache; } diff --git a/tests/src/Core/Cache/MemcacheCacheTest.php b/tests/src/Core/Cache/MemcacheCacheTest.php index a08c2293e..b924b1045 100644 --- a/tests/src/Core/Cache/MemcacheCacheTest.php +++ b/tests/src/Core/Cache/MemcacheCacheTest.php @@ -1,6 +1,6 @@ $values) { foreach ($values as $key => $value) { @@ -64,7 +64,7 @@ class CacheTest extends MockedTest */ public function testLoadConfigArray($data) { - $configCache = new \Friendica\Core\Config\ValueObject\Cache(); + $configCache = new Cache(); $configCache->load($data); self::assertConfigValues($data, $configCache); @@ -83,27 +83,27 @@ class CacheTest extends MockedTest ] ]; - $configCache = new \Friendica\Core\Config\ValueObject\Cache(); - $configCache->load($data, \Friendica\Core\Config\ValueObject\Cache::SOURCE_DB); + $configCache = new Cache(); + $configCache->load($data, Cache::SOURCE_DATA); // doesn't override - Low Priority due Config file - $configCache->load($override, \Friendica\Core\Config\ValueObject\Cache::SOURCE_FILE); + $configCache->load($override, Cache::SOURCE_FILE); self::assertConfigValues($data, $configCache); // override the value - High Prio due Server Env - $configCache->load($override, \Friendica\Core\Config\ValueObject\Cache::SOURCE_ENV); + $configCache->load($override, Cache::SOURCE_ENV); self::assertEquals($override['system']['test'], $configCache->get('system', 'test')); self::assertEquals($override['system']['boolTrue'], $configCache->get('system', 'boolTrue')); // Don't overwrite server ENV variables - even in load mode - $configCache->load($data, \Friendica\Core\Config\ValueObject\Cache::SOURCE_DB); + $configCache->load($data, Cache::SOURCE_DATA); self::assertEquals($override['system']['test'], $configCache->get('system', 'test')); self::assertEquals($override['system']['boolTrue'], $configCache->get('system', 'boolTrue')); // Overwrite ENV variables with ENV variables - $configCache->load($data, \Friendica\Core\Config\ValueObject\Cache::SOURCE_ENV); + $configCache->load($data, Cache::SOURCE_ENV); self::assertConfigValues($data, $configCache); self::assertNotEquals($override['system']['test'], $configCache->get('system', 'test')); @@ -111,11 +111,11 @@ class CacheTest extends MockedTest } /** - * Test the loadConfigArray() method with wrong/empty datasets + * Test the loadConfigArray() method with only a category */ - public function testLoadConfigArrayWrong() + public function testLoadConfigArrayWithOnlyCategory() { - $configCache = new \Friendica\Core\Config\ValueObject\Cache(); + $configCache = new Cache(); // empty dataset $configCache->load([]); @@ -123,9 +123,10 @@ class CacheTest extends MockedTest // wrong dataset $configCache->load(['system' => 'not_array']); - self::assertEmpty($configCache->getAll()); + self::assertEquals([], $configCache->getAll()); // incomplete dataset (key is integer ID of the array) + $configCache = new Cache(); $configCache->load(['system' => ['value']]); self::assertEquals('value', $configCache->get('system', 0)); } @@ -136,7 +137,7 @@ class CacheTest extends MockedTest */ public function testGetAll($data) { - $configCache = new \Friendica\Core\Config\ValueObject\Cache(); + $configCache = new Cache(); $configCache->load($data); $all = $configCache->getAll(); @@ -151,7 +152,7 @@ class CacheTest extends MockedTest */ public function testSetGet($data) { - $configCache = new \Friendica\Core\Config\ValueObject\Cache(); + $configCache = new Cache(); foreach ($data as $cat => $values) { foreach ($values as $key => $value) { @@ -167,7 +168,7 @@ class CacheTest extends MockedTest */ public function testGetEmpty() { - $configCache = new \Friendica\Core\Config\ValueObject\Cache(); + $configCache = new Cache(); self::assertNull($configCache->get('something', 'value')); } @@ -177,7 +178,7 @@ class CacheTest extends MockedTest */ public function testGetCat() { - $configCache = new \Friendica\Core\Config\ValueObject\Cache([ + $configCache = new Cache([ 'system' => [ 'key1' => 'value1', 'key2' => 'value2', @@ -205,7 +206,7 @@ class CacheTest extends MockedTest */ public function testDelete($data) { - $configCache = new \Friendica\Core\Config\ValueObject\Cache($data); + $configCache = new Cache($data); foreach ($data as $cat => $values) { foreach ($values as $key => $value) { @@ -222,7 +223,7 @@ class CacheTest extends MockedTest */ public function testKeyDiffWithResult($data) { - $configCache = new \Friendica\Core\Config\ValueObject\Cache($data); + $configCache = new Cache($data); $diffConfig = [ 'fakeCat' => [ @@ -239,7 +240,7 @@ class CacheTest extends MockedTest */ public function testKeyDiffWithoutResult($data) { - $configCache = new \Friendica\Core\Config\ValueObject\Cache($data); + $configCache = new Cache($data); $diffConfig = $configCache->getAll(); @@ -251,7 +252,7 @@ class CacheTest extends MockedTest */ public function testPasswordHide() { - $configCache = new \Friendica\Core\Config\ValueObject\Cache([ + $configCache = new Cache([ 'database' => [ 'password' => 'supersecure', 'username' => 'notsecured', @@ -268,7 +269,7 @@ class CacheTest extends MockedTest */ public function testPasswordShow() { - $configCache = new \Friendica\Core\Config\ValueObject\Cache([ + $configCache = new Cache([ 'database' => [ 'password' => 'supersecure', 'username' => 'notsecured', @@ -285,7 +286,7 @@ class CacheTest extends MockedTest */ public function testEmptyPassword() { - $configCache = new \Friendica\Core\Config\ValueObject\Cache([ + $configCache = new Cache([ 'database' => [ 'password' => '', 'username' => '', @@ -299,7 +300,7 @@ class CacheTest extends MockedTest public function testWrongTypePassword() { - $configCache = new \Friendica\Core\Config\ValueObject\Cache([ + $configCache = new Cache([ 'database' => [ 'password' => new stdClass(), 'username' => '', @@ -309,7 +310,7 @@ class CacheTest extends MockedTest self::assertNotEmpty($configCache->get('database', 'password')); self::assertEmpty($configCache->get('database', 'username')); - $configCache = new \Friendica\Core\Config\ValueObject\Cache([ + $configCache = new Cache([ 'database' => [ 'password' => 23, 'username' => '', @@ -327,19 +328,273 @@ class CacheTest extends MockedTest public function testSetOverrides($data) { - $configCache = new \Friendica\Core\Config\ValueObject\Cache(); - $configCache->load($data, \Friendica\Core\Config\ValueObject\Cache::SOURCE_DB); + $configCache = new Cache(); + $configCache->load($data, Cache::SOURCE_DATA); // test with wrong override - self::assertFalse($configCache->set('system', 'test', '1234567', \Friendica\Core\Config\ValueObject\Cache::SOURCE_FILE)); + self::assertFalse($configCache->set('system', 'test', '1234567', Cache::SOURCE_FILE)); self::assertEquals($data['system']['test'], $configCache->get('system', 'test')); // test with override (equal) - self::assertTrue($configCache->set('system', 'test', '8910', \Friendica\Core\Config\ValueObject\Cache::SOURCE_DB)); + self::assertTrue($configCache->set('system', 'test', '8910', Cache::SOURCE_DATA)); self::assertEquals('8910', $configCache->get('system', 'test')); // test with override (over) - self::assertTrue($configCache->set('system', 'test', '111213', \Friendica\Core\Config\ValueObject\Cache::SOURCE_ENV)); + self::assertTrue($configCache->set('system', 'test', '111213', Cache::SOURCE_ENV)); self::assertEquals('111213', $configCache->get('system', 'test')); } + + /** + * @dataProvider dataTests + * + * @return void + */ + public function testSetData($data) + { + $configCache = new Cache(); + $configCache->load($data, Cache::SOURCE_FILE); + + $configCache->set('system', 'test_2','with_data', Cache::SOURCE_DATA); + + $this->assertEquals(['system' => ['test_2' => 'with_data']], $configCache->getDataBySource(Cache::SOURCE_DATA)); + $this->assertEquals($data, $configCache->getDataBySource(Cache::SOURCE_FILE)); + } + + /** + * @dataProvider dataTests + */ + public function testMerge($data) + { + $configCache = new Cache(); + $configCache->load($data, Cache::SOURCE_FILE); + + $configCache->set('system', 'test_2','with_data', Cache::SOURCE_DATA); + $configCache->set('config', 'test_override','with_another_data', Cache::SOURCE_DATA); + $configCache->set('old_category', 'test_45','given category', Cache::SOURCE_DATA); + + $newCache = new Cache(); + $newCache->set('config', 'test_override','override it again', Cache::SOURCE_DATA); + $newCache->set('system', 'test_3','new value', Cache::SOURCE_DATA); + $newCache->set('new_category', 'test_23','added category', Cache::SOURCE_DATA); + + $mergedCache = $configCache->merge($newCache); + + self::assertEquals('with_data', $mergedCache->get('system', 'test_2')); + self::assertEquals('override it again', $mergedCache->get('config', 'test_override')); + self::assertEquals('new value', $mergedCache->get('system', 'test_3')); + self::assertEquals('given category', $mergedCache->get('old_category', 'test_45')); + self::assertEquals('added category', $mergedCache->get('new_category', 'test_23')); + } + + public function dataTestCat() + { + return [ + 'test_with_hashmap' => [ + 'data' => [ + 'test_with_hashmap' => [ + 'notifyall' => [ + 'last_update' => 1671051565, + 'admin' => true, + ], + 'blockbot' => [ + 'last_update' => 1658952852, + 'admin' => true, + ], + ], + 'config' => [ + 'register_policy' => 2, + 'register_text' => '', + 'sitename' => 'Friendica Social Network23', + 'hostname' => 'friendica.local', + 'private_addons' => false, + ], + 'system' => [ + 'dbclean_expire_conversation' => 90, + ], + ], + 'cat' => 'test_with_hashmap', + 'assertion' => [ + 'notifyall' => [ + 'last_update' => 1671051565, + 'admin' => true, + ], + 'blockbot' => [ + 'last_update' => 1658952852, + 'admin' => true, + ], + ], + ], + 'test_with_keys' => [ + 'data' => [ + 'test_with_keys' => [ + [ + 'last_update' => 1671051565, + 'admin' => true, + ], + [ + 'last_update' => 1658952852, + 'admin' => true, + ], + ], + 'config' => [ + 'register_policy' => 2, + 'register_text' => '', + 'sitename' => 'Friendica Social Network23', + 'hostname' => 'friendica.local', + 'private_addons' => false, + ], + 'system' => [ + 'dbclean_expire_conversation' => 90, + ], + ], + 'cat' => 'test_with_keys', + 'assertion' => [ + [ + 'last_update' => 1671051565, + 'admin' => true, + ], + [ + 'last_update' => 1658952852, + 'admin' => true, + ], + ], + ], + 'test_with_inner_array' => [ + 'data' => [ + 'test_with_inner_array' => [ + 'notifyall' => [ + 'last_update' => 1671051565, + 'admin' => [ + 'yes' => true, + 'no' => 1.5, + ], + ], + 'blogbot' => [ + 'last_update' => 1658952852, + 'admin' => true, + ], + ], + 'config' => [ + 'register_policy' => 2, + 'register_text' => '', + 'sitename' => 'Friendica Social Network23', + 'hostname' => 'friendica.local', + 'private_addons' => false, + ], + 'system' => [ + 'dbclean_expire_conversation' => 90, + ], + ], + 'cat' => 'test_with_inner_array', + 'assertion' => [ + 'notifyall' => [ + 'last_update' => 1671051565, + 'admin' => [ + 'yes' => true, + 'no' => 1.5, + ], + ], + 'blogbot' => [ + 'last_update' => 1658952852, + 'admin' => true, + ], + ], + ], + /** @see https://github.com/friendica/friendica/issues/12486#issuecomment-1374609349 */ + 'test_with_null' => [ + 'data' => [ + 'test_with_null' => null, + 'config' => [ + 'register_policy' => 2, + 'register_text' => '', + 'sitename' => 'Friendica Social Network23', + 'hostname' => 'friendica.local', + 'private_addons' => false, + ], + 'system' => [ + 'dbclean_expire_conversation' => 90, + ], + ], + 'cat' => 'test_with_null', + 'assertion' => null, + ], + ]; + } + + /** + * Tests that the Cache can return a whole category at once + * + * @dataProvider dataTestCat + */ + public function testGetCategory($data, string $category, $assertion) + { + $cache = new Cache($data); + + self::assertEquals($assertion, $cache->get($category)); + } + + /** + * Test that the cache can get merged with different categories + * + * @dataProvider dataTestCat + */ + public function testCatMerge($data, string $category) + { + $cache = new Cache($data); + + $newCache = $cache->merge(new Cache([ + $category => [ + 'new_key' => 'new_value', + ], + ])); + + self::assertEquals('new_value', $newCache->get($category, 'new_key')); + } + + /** + * Test that keys are removed after a deletion + * + * @dataProvider dataTests + * + */ + public function testDeleteRemovesKey($data) + { + $cache = new Cache(); + $cache->load($data, Cache::SOURCE_FILE); + + $cache->set('system', 'test', 'overwrite!', Cache::SOURCE_DATA); + self::assertEquals('overwrite!', $cache->get('system', 'test')); + + // array should now be removed + $cache->delete('system', 'test'); + self::assertArrayNotHasKey('test', $cache->getAll()['system']); + + self::assertArrayHasKey('config', $cache->getAll()); + self::assertArrayHasKey('a', $cache->getAll()['config']); + + // category should now be removed + $cache->delete('config', 'a'); + self::assertArrayNotHasKey('config', $cache->getAll()); + } + + /** + * Test that deleted keys are working with merge + * + * @dataProvider dataTests + */ + public function testDeleteAndMergeWithDefault($data) + { + $cache = new Cache(); + $cache->load($data, Cache::SOURCE_FILE); + + $cache2 = new Cache(); + $cache2->set('system', 'test', 'override'); + $cache2->delete('system', 'test'); + + self::assertEquals('it', $cache->get('system', 'test')); + self::assertNull($cache2->get('system', 'test')); + + $mergedCache = $cache->merge($cache2); + self::assertNull($mergedCache->get('system', 'test')); + } } diff --git a/tests/src/Core/Config/Cache/ConfigFileLoaderTest.php b/tests/src/Core/Config/Cache/ConfigFileManagerTest.php similarity index 68% rename from tests/src/Core/Config/Cache/ConfigFileLoaderTest.php rename to tests/src/Core/Config/Cache/ConfigFileManagerTest.php index 43decf105..1385c8b19 100644 --- a/tests/src/Core/Config/Cache/ConfigFileLoaderTest.php +++ b/tests/src/Core/Config/Cache/ConfigFileManagerTest.php @@ -1,6 +1,6 @@ delConfigFile('local.config.php'); - $configFileLoader = new ConfigFileLoader( + $configFileLoader = new ConfigFileManager( $this->root->url(), $this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR, $this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR ); - $configCache = new \Friendica\Core\Config\ValueObject\Cache(); + + $configCache = new Cache(); $configFileLoader->setupCache($configCache); @@ -69,15 +70,15 @@ class ConfigFileLoaderTest extends MockedTest $this->delConfigFile('local.config.php'); vfsStream::newFile('local.config.php') - ->at($this->root->getChild('config')) - ->setContent('at($this->root->getChild('config')) + ->setContent('root->url(), $this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR, $this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR ); - $configCache = new \Friendica\Core\Config\ValueObject\Cache(); + $configCache = new Cache(); $configFileLoader->setupCache($configCache); } @@ -90,23 +91,23 @@ class ConfigFileLoaderTest extends MockedTest $this->delConfigFile('local.config.php'); $file = dirname(__DIR__) . DIRECTORY_SEPARATOR . - '..' . DIRECTORY_SEPARATOR . - '..' . DIRECTORY_SEPARATOR . - '..' . DIRECTORY_SEPARATOR . - 'datasets' . DIRECTORY_SEPARATOR . - 'config' . DIRECTORY_SEPARATOR . - 'A.config.php'; + '..' . DIRECTORY_SEPARATOR . + '..' . DIRECTORY_SEPARATOR . + '..' . DIRECTORY_SEPARATOR . + 'datasets' . DIRECTORY_SEPARATOR . + 'config' . DIRECTORY_SEPARATOR . + 'A.config.php'; vfsStream::newFile('local.config.php') - ->at($this->root->getChild('config')) - ->setContent(file_get_contents($file)); + ->at($this->root->getChild('config')) + ->setContent(file_get_contents($file)); - $configFileLoader = new ConfigFileLoader( + $configFileLoader = new ConfigFileManager( $this->root->url(), $this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR, $this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR ); - $configCache = new \Friendica\Core\Config\ValueObject\Cache(); + $configCache = new Cache(); $configFileLoader->setupCache($configCache); @@ -127,23 +128,23 @@ class ConfigFileLoaderTest extends MockedTest $this->delConfigFile('local.config.php'); $file = dirname(__DIR__) . DIRECTORY_SEPARATOR . - '..' . DIRECTORY_SEPARATOR . - '..' . DIRECTORY_SEPARATOR . - '..' . DIRECTORY_SEPARATOR . - 'datasets' . DIRECTORY_SEPARATOR . - 'config' . DIRECTORY_SEPARATOR . - 'A.ini.php'; + '..' . DIRECTORY_SEPARATOR . + '..' . DIRECTORY_SEPARATOR . + '..' . DIRECTORY_SEPARATOR . + 'datasets' . DIRECTORY_SEPARATOR . + 'config' . DIRECTORY_SEPARATOR . + 'A.ini.php'; vfsStream::newFile('local.ini.php') - ->at($this->root->getChild('config')) - ->setContent(file_get_contents($file)); + ->at($this->root->getChild('config')) + ->setContent(file_get_contents($file)); - $configFileLoader = new ConfigFileLoader( + $configFileLoader = new ConfigFileManager( $this->root->url(), $this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR, $this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR ); - $configCache = new \Friendica\Core\Config\ValueObject\Cache(); + $configCache = new Cache(); $configFileLoader->setupCache($configCache); @@ -163,23 +164,23 @@ class ConfigFileLoaderTest extends MockedTest $this->delConfigFile('local.config.php'); $file = dirname(__DIR__) . DIRECTORY_SEPARATOR . - '..' . DIRECTORY_SEPARATOR . - '..' . DIRECTORY_SEPARATOR . - '..' . DIRECTORY_SEPARATOR . - 'datasets' . DIRECTORY_SEPARATOR . - 'config' . DIRECTORY_SEPARATOR . - '.htconfig.php'; + '..' . DIRECTORY_SEPARATOR . + '..' . DIRECTORY_SEPARATOR . + '..' . DIRECTORY_SEPARATOR . + 'datasets' . DIRECTORY_SEPARATOR . + 'config' . DIRECTORY_SEPARATOR . + '.htconfig.php'; vfsStream::newFile('.htconfig.php') - ->at($this->root) - ->setContent(file_get_contents($file)); + ->at($this->root) + ->setContent(file_get_contents($file)); - $configFileLoader = new ConfigFileLoader( + $configFileLoader = new ConfigFileManager( $this->root->url(), $this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR, $this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR ); - $configCache = new \Friendica\Core\Config\ValueObject\Cache(); + $configCache = new Cache(); $configFileLoader->setupCache($configCache); @@ -200,7 +201,7 @@ class ConfigFileLoaderTest extends MockedTest self::assertEquals('999', $configCache->get('config', 'max_import_size')); self::assertEquals('666', $configCache->get('system', 'maximagesize')); - self::assertEquals('frio,quattro,vier,duepuntozero', $configCache->get('system', 'allowed_themes')); + self::assertEquals('frio,vier', $configCache->get('system', 'allowed_themes')); self::assertEquals('1', $configCache->get('system', 'no_regfullname')); } @@ -217,18 +218,18 @@ class ConfigFileLoaderTest extends MockedTest vfsStream::create($structure, $this->root); $file = dirname(__DIR__) . DIRECTORY_SEPARATOR . - '..' . DIRECTORY_SEPARATOR . - '..' . DIRECTORY_SEPARATOR . - '..' . DIRECTORY_SEPARATOR . - 'datasets' . DIRECTORY_SEPARATOR . - 'config' . DIRECTORY_SEPARATOR . - 'A.config.php'; + '..' . DIRECTORY_SEPARATOR . + '..' . DIRECTORY_SEPARATOR . + '..' . DIRECTORY_SEPARATOR . + 'datasets' . DIRECTORY_SEPARATOR . + 'config' . DIRECTORY_SEPARATOR . + 'A.config.php'; vfsStream::newFile('test.config.php') - ->at($this->root->getChild('addon')->getChild('test')->getChild('config')) - ->setContent(file_get_contents($file)); + ->at($this->root->getChild('addon')->getChild('test')->getChild('config')) + ->setContent(file_get_contents($file)); - $configFileLoader = new ConfigFileLoader( + $configFileLoader = new ConfigFileManager( $this->root->url(), $this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR, $this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR @@ -252,25 +253,25 @@ class ConfigFileLoaderTest extends MockedTest $this->delConfigFile('local.config.php'); $fileDir = dirname(__DIR__) . DIRECTORY_SEPARATOR . - '..' . DIRECTORY_SEPARATOR . - '..' . DIRECTORY_SEPARATOR . - '..' . DIRECTORY_SEPARATOR . - 'datasets' . DIRECTORY_SEPARATOR . - 'config' . DIRECTORY_SEPARATOR; + '..' . DIRECTORY_SEPARATOR . + '..' . DIRECTORY_SEPARATOR . + '..' . DIRECTORY_SEPARATOR . + 'datasets' . DIRECTORY_SEPARATOR . + 'config' . DIRECTORY_SEPARATOR; vfsStream::newFile('A.config.php') - ->at($this->root->getChild('config')) - ->setContent(file_get_contents($fileDir . 'A.config.php')); + ->at($this->root->getChild('config')) + ->setContent(file_get_contents($fileDir . 'A.config.php')); vfsStream::newFile('B.config.php') - ->at($this->root->getChild('config')) - ->setContent(file_get_contents($fileDir . 'B.config.php')); + ->at($this->root->getChild('config')) + ->setContent(file_get_contents($fileDir . 'B.config.php')); - $configFileLoader = new ConfigFileLoader( + $configFileLoader = new ConfigFileManager( $this->root->url(), $this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR, $this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR ); - $configCache = new \Friendica\Core\Config\ValueObject\Cache(); + $configCache = new Cache(); $configFileLoader->setupCache($configCache); @@ -286,25 +287,25 @@ class ConfigFileLoaderTest extends MockedTest $this->delConfigFile('local.config.php'); $fileDir = dirname(__DIR__) . DIRECTORY_SEPARATOR . - '..' . DIRECTORY_SEPARATOR . - '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . - 'datasets' . DIRECTORY_SEPARATOR . - 'config' . DIRECTORY_SEPARATOR; + '..' . DIRECTORY_SEPARATOR . + '..' . DIRECTORY_SEPARATOR . + 'datasets' . DIRECTORY_SEPARATOR . + 'config' . DIRECTORY_SEPARATOR; vfsStream::newFile('A.ini.php') - ->at($this->root->getChild('config')) - ->setContent(file_get_contents($fileDir . 'A.ini.php')); + ->at($this->root->getChild('config')) + ->setContent(file_get_contents($fileDir . 'A.ini.php')); vfsStream::newFile('B.ini.php') - ->at($this->root->getChild('config')) - ->setContent(file_get_contents($fileDir . 'B.ini.php')); + ->at($this->root->getChild('config')) + ->setContent(file_get_contents($fileDir . 'B.ini.php')); - $configFileLoader = new ConfigFileLoader( + $configFileLoader = new ConfigFileManager( $this->root->url(), $this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR, $this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR ); - $configCache = new \Friendica\Core\Config\ValueObject\Cache(); + $configCache = new Cache(); $configFileLoader->setupCache($configCache); @@ -320,25 +321,26 @@ class ConfigFileLoaderTest extends MockedTest $this->delConfigFile('local.config.php'); $fileDir = dirname(__DIR__) . DIRECTORY_SEPARATOR . - '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . - '..' . DIRECTORY_SEPARATOR . - 'datasets' . DIRECTORY_SEPARATOR . - 'config' . DIRECTORY_SEPARATOR; + '..' . DIRECTORY_SEPARATOR . + '..' . DIRECTORY_SEPARATOR . + 'datasets' . DIRECTORY_SEPARATOR . + 'config' . DIRECTORY_SEPARATOR; vfsStream::newFile('A.ini.php') - ->at($this->root->getChild('config')) - ->setContent(file_get_contents($fileDir . 'A.ini.php')); + ->at($this->root->getChild('config')) + ->setContent(file_get_contents($fileDir . 'A.ini.php')); vfsStream::newFile('B-sample.ini.php') - ->at($this->root->getChild('config')) - ->setContent(file_get_contents($fileDir . 'B.ini.php')); + ->at($this->root->getChild('config')) + ->setContent(file_get_contents($fileDir . 'B.ini.php')); - $configFileLoader = new ConfigFileLoader( + $configFileLoader = new ConfigFileManager( $this->root->url(), $this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR, $this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR ); - $configCache = new \Friendica\Core\Config\ValueObject\Cache(); + + $configCache = new Cache(); $configFileLoader->setupCache($configCache); @@ -353,10 +355,10 @@ class ConfigFileLoaderTest extends MockedTest { $this->delConfigFile('local.config.php'); - $configFileLoader = (new Config())->createConfigFileLoader($this->root->url(), ['FRIENDICA_CONFIG_DIR' => '/a/wrong/dir/']); - $configCache = new \Friendica\Core\Config\ValueObject\Cache(); + $configFileManager = (new Config())->createConfigFileManager($this->root->url(), ['FRIENDICA_CONFIG_DIR' => '/a/wrong/dir/']); + $configCache = new Cache(); - $configFileLoader->setupCache($configCache); + $configFileManager->setupCache($configCache); self::assertEquals($this->root->url(), $configCache->get('system', 'basepath')); } @@ -379,11 +381,33 @@ class ConfigFileLoaderTest extends MockedTest ->at($this->root->getChild('config2')) ->setContent(file_get_contents($fileDir . 'B.config.php')); - $configFileLoader = (new Config())->createConfigFileLoader($this->root->url(), ['FRIENDICA_CONFIG_DIR' => $this->root->getChild('config2')->url()]); - $configCache = new \Friendica\Core\Config\ValueObject\Cache(); + $configFileManager = (new Config())->createConfigFileManager($this->root->url(), + [ + 'FRIENDICA_CONFIG_DIR' => $this->root->getChild('config2')->url(), + ]); + $configCache = new Cache(); - $configFileLoader->setupCache($configCache); + $configFileManager->setupCache($configCache); self::assertEquals('newValue', $configCache->get('system', 'newKey')); } + + /** + * Test for empty node.config.php + */ + public function testEmptyFile() + { + $this->delConfigFile('node.config.php'); + + vfsStream::newFile('node.config.php') + ->at($this->root->getChild('config')) + ->setContent(''); + + $configFileManager = (new Config())->createConfigFileManager($this->root->url()); + $configCache = new Cache(); + + $configFileManager->setupCache($configCache); + + self::assertEquals(1,1); + } } diff --git a/tests/src/Core/Config/ConfigTest.php b/tests/src/Core/Config/ConfigTest.php index 359d388bd..99c2141b8 100644 --- a/tests/src/Core/Config/ConfigTest.php +++ b/tests/src/Core/Config/ConfigTest.php @@ -1,6 +1,6 @@ setUpVfsDir(); + parent::setUp(); - // Create the config model - $this->configModel = Mockery::mock(ConfigModel::class); $this->configCache = new Cache(); + $this->configFileManager = new ConfigFileManager($this->root->url(), $this->root->url() . '/config/', $this->root->url() . '/static/'); } /** * @return IManageConfigValues */ - abstract public function getInstance(); + public function getInstance() + { + $this->configFileManager->setupCache($this->configCache); + return new DatabaseConfig($this->getDbInstance(), $this->configCache); + } public function dataTests() { @@ -154,14 +164,30 @@ abstract class ConfigTest extends MockedTest ]; } + public function configToDbArray(array $config): array + { + $dbarray = []; + + foreach ($config as $category => $data) { + foreach ($data as $key => $value) { + $dbarray[] = [ + 'cat' => $category, + 'k' => $key, + 'v' => $value, + ]; + } + } + + return ['config' => $dbarray]; + } + /** * Test the configuration initialization + * @dataProvider dataConfigLoad */ public function testSetUp(array $data) { - $this->configModel->shouldReceive('isConnected') - ->andReturn(true) - ->once(); + $this->loadDirectFixture($this->configToDbArray($data) , $this->getDbInstance()); $this->testedConfig = $this->getInstance(); self::assertInstanceOf(Cache::class, $this->testedConfig->getCache()); @@ -171,19 +197,21 @@ abstract class ConfigTest extends MockedTest } /** - * Test the configuration load() method + * Test the configuration reload() method * * @param array $data * @param array $load + * + * @dataProvider dataConfigLoad */ - public function testLoad(array $data, array $load) + public function testReload(array $data, array $load) { + $this->loadDirectFixture($this->configToDbArray($data), $this->getDbInstance()); + $this->testedConfig = $this->getInstance(); self::assertInstanceOf(Cache::class, $this->testedConfig->getCache()); - foreach ($load as $loadedCats) { - $this->testedConfig->load($loadedCats); - } + $this->testedConfig->reload(); // Assert at least loaded cats are loaded foreach ($load as $loadedCats) { @@ -256,23 +284,27 @@ abstract class ConfigTest extends MockedTest /** * Test the configuration load() method with overwrite + * + * @dataProvider dataDoubleLoad */ public function testCacheLoadDouble(array $data1, array $data2, array $expect = []) { + $this->loadDirectFixture($this->configToDbArray($data1), $this->getDbInstance()); + $this->testedConfig = $this->getInstance(); self::assertInstanceOf(Cache::class, $this->testedConfig->getCache()); - foreach ($data1 as $cat => $data) { - $this->testedConfig->load($cat); - } - // Assert at least loaded cats are loaded foreach ($data1 as $cat => $data) { self::assertConfig($cat, $data); } + $this->loadDirectFixture($this->configToDbArray($data2), $this->getDbInstance()); + + $this->testedConfig->reload(); + foreach ($data2 as $cat => $data) { - $this->testedConfig->load($cat); + self::assertConfig($cat, $data); } } @@ -281,44 +313,19 @@ abstract class ConfigTest extends MockedTest */ public function testLoadWrong() { - $this->configModel->shouldReceive('isConnected')->andReturn(true)->once(); - $this->configModel->shouldReceive('load')->withAnyArgs()->andReturn([])->once(); - - $this->testedConfig = $this->getInstance(); + $this->testedConfig = new ReadOnlyFileConfig(new Cache()); self::assertInstanceOf(Cache::class, $this->testedConfig->getCache()); self::assertEmpty($this->testedConfig->getCache()->getAll()); } /** - * Test the configuration get() and set() methods without adapter + * Test the configuration get() and set() methods * * @dataProvider dataTests */ - public function testSetGetWithoutDB($data) + public function testSetGet($data) { - $this->configModel->shouldReceive('isConnected') - ->andReturn(false) - ->times(3); - - $this->testedConfig = $this->getInstance(); - self::assertInstanceOf(Cache::class, $this->testedConfig->getCache()); - - self::assertTrue($this->testedConfig->set('test', 'it', $data)); - - self::assertEquals($data, $this->testedConfig->get('test', 'it')); - self::assertEquals($data, $this->testedConfig->getCache()->get('test', 'it')); - } - - /** - * Test the configuration get() and set() methods with a model/db - * - * @dataProvider dataTests - */ - public function testSetGetWithDB($data) - { - $this->configModel->shouldReceive('set')->with('test', 'it', $data)->andReturn(true)->once(); - $this->testedConfig = $this->getInstance(); self::assertInstanceOf(Cache::class, $this->testedConfig->getCache()); @@ -339,7 +346,7 @@ abstract class ConfigTest extends MockedTest // without refresh self::assertNull($this->testedConfig->get('test', 'it')); - /// beware that the cache returns '!!' and not null for a non existing value + /// beware that the cache returns '!!' and not null for a nonexistent value self::assertNull($this->testedConfig->getCache()->get('test', 'it')); // with default value @@ -349,41 +356,16 @@ abstract class ConfigTest extends MockedTest self::assertEquals('default', $this->testedConfig->get('test', 'it', 'default', true)); } - /** - * Test the configuration get() method with refresh - * - * @dataProvider dataTests - */ - public function testGetWithRefresh($data) - { - $this->configCache->load(['test' => ['it' => 'now']], Cache::SOURCE_FILE); - - $this->testedConfig = $this->getInstance(); - self::assertInstanceOf(Cache::class, $this->testedConfig->getCache()); - - // without refresh - self::assertEquals('now', $this->testedConfig->get('test', 'it')); - self::assertEquals('now', $this->testedConfig->getCache()->get('test', 'it')); - - // with refresh - self::assertEquals($data, $this->testedConfig->get('test', 'it', null, true)); - self::assertEquals($data, $this->testedConfig->getCache()->get('test', 'it')); - - // without refresh and wrong value and default - self::assertEquals('default', $this->testedConfig->get('test', 'not', 'default')); - self::assertNull($this->testedConfig->getCache()->get('test', 'not')); - } - /** * Test the configuration delete() method without a model/db * * @dataProvider dataTests */ - public function testDeleteWithoutDB($data) + public function testDelete($data) { $this->configCache->load(['test' => ['it' => $data]], Cache::SOURCE_FILE); - $this->testedConfig = $this->getInstance(); + $this->testedConfig = new DatabaseConfig($this->getDbInstance(), $this->configCache); self::assertInstanceOf(Cache::class, $this->testedConfig->getCache()); self::assertEquals($data, $this->testedConfig->get('test', 'it')); @@ -392,53 +374,6 @@ abstract class ConfigTest extends MockedTest self::assertTrue($this->testedConfig->delete('test', 'it')); self::assertNull($this->testedConfig->get('test', 'it')); self::assertNull($this->testedConfig->getCache()->get('test', 'it')); - - self::assertEmpty($this->testedConfig->getCache()->getAll()); - } - - /** - * Test the configuration delete() method with a model/db - */ - public function testDeleteWithDB() - { - $this->configCache->load(['test' => ['it' => 'now', 'quarter' => 'true']], Cache::SOURCE_FILE); - - $this->configModel->shouldReceive('delete') - ->with('test', 'it') - ->andReturn(false) - ->once(); - $this->configModel->shouldReceive('delete') - ->with('test', 'second') - ->andReturn(true) - ->once(); - $this->configModel->shouldReceive('delete') - ->with('test', 'third') - ->andReturn(false) - ->once(); - $this->configModel->shouldReceive('delete') - ->with('test', 'quarter') - ->andReturn(true) - ->once(); - - $this->testedConfig = $this->getInstance(); - self::assertInstanceOf(Cache::class, $this->testedConfig->getCache()); - - // directly set the value to the cache - $this->testedConfig->getCache()->set('test', 'it', 'now'); - - self::assertEquals('now', $this->testedConfig->get('test', 'it')); - self::assertEquals('now', $this->testedConfig->getCache()->get('test', 'it')); - - // delete from cache only - self::assertTrue($this->testedConfig->delete('test', 'it')); - // delete from db only - self::assertTrue($this->testedConfig->delete('test', 'second')); - // no delete - self::assertFalse($this->testedConfig->delete('test', 'third')); - // delete both - self::assertTrue($this->testedConfig->delete('test', 'quarter')); - - self::assertEmpty($this->testedConfig->getCache()->getAll()); } /** @@ -462,13 +397,243 @@ abstract class ConfigTest extends MockedTest */ public function testSetGetLowPrio() { + $this->loadDirectFixture(['config' => [['cat' => 'config', 'k' => 'test', 'v' => 'it']]], $this->getDbInstance()); + $this->testedConfig = $this->getInstance(); self::assertInstanceOf(Cache::class, $this->testedConfig->getCache()); self::assertEquals('it', $this->testedConfig->get('config', 'test')); $this->testedConfig->getCache()->set('config', 'test', 'prio', Cache::SOURCE_ENV); - // now you have to get the env variable entry as output, even with a new set (which failed) and a get refresh - self::assertFalse($this->testedConfig->set('config', 'test', '123')); + // You can set a config value, but if there's a value with a higher priority (environment), this value will persist when retrieving + self::assertTrue($this->testedConfig->set('config', 'test', '123')); self::assertEquals('prio', $this->testedConfig->get('config', 'test', '', true)); } + + + public function dataTestCat() + { + return [ + 'test_with_hashmap' => [ + 'data' => [ + 'test_with_hashmap' => [ + 'notifyall' => [ + 'last_update' => 1671051565, + 'admin' => true, + ], + 'blockbot' => [ + 'last_update' => 1658952852, + 'admin' => true, + ], + ], + 'config' => [ + 'register_policy' => 2, + 'register_text' => '', + 'sitename' => 'Friendica Social Network23', + 'hostname' => 'friendica.local', + 'private_addons' => false, + ], + 'system' => [ + 'dbclean_expire_conversation' => 90, + ], + ], + 'cat' => 'test_with_hashmap', + 'assertion' => [ + 'notifyall' => [ + 'last_update' => 1671051565, + 'admin' => true, + ], + 'blockbot' => [ + 'last_update' => 1658952852, + 'admin' => true, + ], + ], + ], + 'test_with_keys' => [ + 'data' => [ + 'test_with_keys' => [ + [ + 'last_update' => 1671051565, + 'admin' => true, + ], + [ + 'last_update' => 1658952852, + 'admin' => true, + ], + ], + 'config' => [ + 'register_policy' => 2, + 'register_text' => '', + 'sitename' => 'Friendica Social Network23', + 'hostname' => 'friendica.local', + 'private_addons' => false, + ], + 'system' => [ + 'dbclean_expire_conversation' => 90, + ], + ], + 'cat' => 'test_with_keys', + 'assertion' => [ + [ + 'last_update' => 1671051565, + 'admin' => true, + ], + [ + 'last_update' => 1658952852, + 'admin' => true, + ], + ], + ], + 'test_with_inner_array' => [ + 'data' => [ + 'test_with_inner_array' => [ + 'notifyall' => [ + 'last_update' => 1671051565, + 'admin' => [ + 'yes' => true, + 'no' => 1.5, + ], + ], + 'blogbot' => [ + 'last_update' => 1658952852, + 'admin' => true, + ], + ], + 'config' => [ + 'register_policy' => 2, + 'register_text' => '', + 'sitename' => 'Friendica Social Network23', + 'hostname' => 'friendica.local', + 'private_addons' => false, + ], + 'system' => [ + 'dbclean_expire_conversation' => 90, + ], + ], + 'cat' => 'test_with_inner_array', + 'assertion' => [ + 'notifyall' => [ + 'last_update' => 1671051565, + 'admin' => [ + 'yes' => true, + 'no' => 1.5, + ], + ], + 'blogbot' => [ + 'last_update' => 1658952852, + 'admin' => true, + ], + ], + ], + ]; + } + + /** + * @dataProvider dataTestCat + */ + public function testGetCategory(array $data, string $category, array $assertion) + { + $this->configCache = new Cache($data); + $config = new ReadOnlyFileConfig($this->configCache); + + self::assertEquals($assertion, $config->get($category)); + } + + public function dataSerialized(): array + { + return [ + 'default' => [ + 'value' => ['test' => ['array']], + 'assertion' => ['test' => ['array']], + ], + 'issue-12803' => [ + 'value' => 's:48:"s:40:"s:32:"https://punkrock-underground.com";";";', + 'assertion' => 'https://punkrock-underground.com', + ], + 'double-serialized-array' => [ + 'value' => 's:53:"a:1:{s:9:"testArray";a:1:{s:4:"with";s:7:"entries";}}";', + 'assertion' => ['testArray' => ['with' => 'entries']], + ], + ]; + } + + /** + * @dataProvider dataSerialized + */ + public function testSerializedValues($value, $assertion) + { + $config = $this->getInstance(); + + $config->set('test', 'it', $value); + self:self::assertEquals($assertion, $config->get('test', 'it')); + } + + public function dataEnv(): array + { + $data = [ + 'config' => [ + 'admin_email' => 'value1', + 'timezone' => 'value2', + 'language' => 'value3', + 'sitename' => 'value', + ], + 'system' => [ + 'url' => 'value1a', + 'debugging' => true, + 'logfile' => 'value4', + 'loglevel' => 'notice', + 'proflier' => true, + ], + 'proxy' => [ + 'trusted_proxies' => 'value5', + ], + ]; + + return [ + 'empty' => [ + 'data' => $data, + 'server' => [], + 'assertDisabled' => [], + ], + 'mixed' => [ + 'data' => $data, + 'server' => [ + 'FRIENDICA_ADMIN_MAIL' => 'test@friendica.local', + 'FRIENDICA_DEBUGGING' => true, + ], + 'assertDisabled' => [ + 'config' => [ + 'admin_email' => true, + ], + 'system' => [ + 'debugging' => true, + ], + ], + ], + ]; + } + + /** + * Tests if environment variables can change the permission to write a config key + * + * @dataProvider dataEnv + */ + public function testIsWritable(array $data, array $server, array $assertDisabled) + { + $this->setConfigFile('static' . DIRECTORY_SEPARATOR . 'env.config.php', true); + $this->loadDirectFixture($this->configToDbArray($data), $this->getDbInstance()); + + $configFileManager = new ConfigFileManager($this->root->url(), $this->root->url() . '/config/', $this->root->url() . '/static/', $server); + $configFileManager->setupCache($this->configCache); + $config = new DatabaseConfig($this->getDbInstance(), $this->configCache); + + foreach ($data as $category => $keyvalues) { + foreach ($keyvalues as $key => $value) { + if (empty($assertDisabled[$category][$key])) { + static::assertTrue($config->isWritable($category, $key), sprintf('%s.%s is not true', $category, $key)); + } else { + static::assertFalse($config->isWritable($category, $key), sprintf('%s.%s is not false', $category, $key)); + } + } + } + } } diff --git a/tests/src/Core/Config/ConfigTransactionTest.php b/tests/src/Core/Config/ConfigTransactionTest.php new file mode 100644 index 000000000..30e6d9885 --- /dev/null +++ b/tests/src/Core/Config/ConfigTransactionTest.php @@ -0,0 +1,128 @@ +. + * + */ + +namespace Friendica\Test\src\Core\Config; + +use Friendica\Core\Config\Capability\ISetConfigValuesTransactionally; +use Friendica\Core\Config\Model\DatabaseConfig; +use Friendica\Core\Config\Model\ReadOnlyFileConfig; +use Friendica\Core\Config\Model\ConfigTransaction; +use Friendica\Core\Config\Util\ConfigFileManager; +use Friendica\Core\Config\ValueObject\Cache; +use Friendica\Database\Database; +use Friendica\Test\DatabaseTest; +use Friendica\Test\FixtureTest; +use Friendica\Test\MockedTest; +use Friendica\Test\Util\Database\StaticDatabase; +use Friendica\Test\Util\VFSTrait; +use Mockery\Exception\InvalidCountException; + +class ConfigTransactionTest extends FixtureTest +{ + /** @var ConfigFileManager */ + protected $configFileManager; + + protected function setUp(): void + { + parent::setUp(); + + $this->configFileManager = new ConfigFileManager($this->root->url(), $this->root->url() . '/config/', $this->root->url() . '/static/'); + } + + public function dataTests(): array + { + return [ + 'default' => [ + 'data' => include dirname(__FILE__, 4) . '/datasets/B.node.config.php', + ] + ]; + } + + public function testInstance() + { + $config = new DatabaseConfig($this->dice->create(Database::class), new Cache()); + $configTransaction = new ConfigTransaction($config); + + self::assertInstanceOf(ISetConfigValuesTransactionally::class, $configTransaction); + self::assertInstanceOf(ConfigTransaction::class, $configTransaction); + } + + public function testConfigTransaction() + { + $config = new DatabaseConfig($this->dice->create(Database::class), new Cache()); + $config->set('config', 'key1', 'value1'); + $config->set('system', 'key2', 'value2'); + $config->set('system', 'keyDel', 'valueDel'); + $config->set('delete', 'keyDel', 'catDel'); + + $configTransaction = new ConfigTransaction($config); + + // new key-value + $configTransaction->set('transaction', 'key3', 'value3'); + // overwrite key-value + $configTransaction->set('config', 'key1', 'changedValue1'); + // delete key-value + $configTransaction->delete('system', 'keyDel'); + // delete last key of category - so the category is gone + $configTransaction->delete('delete', 'keyDel'); + + // The main config still doesn't know about the change + self::assertNull($config->get('transaction', 'key3')); + self::assertEquals('value1', $config->get('config', 'key1')); + self::assertEquals('valueDel', $config->get('system', 'keyDel')); + self::assertEquals('catDel', $config->get('delete', 'keyDel')); + // The config file still doesn't know it either + + // save it back! + $configTransaction->commit(); + + // Now every config and file knows the change + self::assertEquals('changedValue1', $config->get('config', 'key1')); + self::assertEquals('value3', $config->get('transaction', 'key3')); + self::assertNull($config->get('system', 'keyDel')); + self::assertNull($config->get('delete', 'keyDel')); + // the whole category should be gone + self::assertNull($tempData['delete'] ?? null); + } + + /** + * This test asserts that in empty transactions, no saveData is called, thus no config file writing was performed + */ + public function testNothingToDo() + { + $this->configFileManager = \Mockery::spy(ConfigFileManager::class); + + $config = new DatabaseConfig($this->dice->create(Database::class), new Cache()); + $configTransaction = new ConfigTransaction($config); + + // commit empty transaction + $configTransaction->commit(); + + try { + $this->configFileManager->shouldNotHaveReceived('saveData'); + } catch (InvalidCountException $exception) { + self::fail($exception); + } + + // If not failed, the test ends successfully :) + self::assertTrue(true); + } +} diff --git a/tests/src/Core/Config/JitConfigTest.php b/tests/src/Core/Config/JitConfigTest.php deleted file mode 100644 index 253ede4bb..000000000 --- a/tests/src/Core/Config/JitConfigTest.php +++ /dev/null @@ -1,255 +0,0 @@ -. - * - */ - -namespace Friendica\Test\src\Core\Config; - -use Friendica\Core\Config\Type\JitConfig; - -class JitConfigTest extends ConfigTest -{ - public function getInstance() - { - return new JitConfig($this->configCache, $this->configModel); - } - - /** - * @dataProvider dataConfigLoad - */ - public function testSetUp(array $data) - { - $this->configModel->shouldReceive('load') - ->with('config') - ->andReturn(['config' => $data['config']]) - ->once(); - - parent::testSetUp($data); - } - - /** - * @dataProvider dataConfigLoad - * - * @param array $data - * @param array $load - */ - public function testLoad(array $data, array $load) - { - $this->configModel->shouldReceive('isConnected') - ->andReturn(true) - ->times(count($load) + 1); - - $this->configModel->shouldReceive('load') - ->with('config') - ->andReturn(['config' => $data['config']]) - ->once(); - - foreach ($load as $loadCat) { - $this->configModel->shouldReceive('load') - ->with($loadCat) - ->andReturn([$loadCat => $data[$loadCat]]) - ->once(); - } - - parent::testLoad($data, $load); - } - - /** - * @dataProvider dataDoubleLoad - */ - public function testCacheLoadDouble(array $data1, array $data2, array $expect = []) - { - $this->configModel->shouldReceive('isConnected') - ->andReturn(true) - ->times(count($data1) + count($data2) + 1); - - $this->configModel->shouldReceive('load') - ->with('config') - ->andReturn(['config' => $data1['config']]) - ->once(); - - foreach ($data1 as $cat => $data) { - $this->configModel->shouldReceive('load') - ->with($cat) - ->andReturn([$cat => $data]) - ->once(); - } - - - foreach ($data2 as $cat => $data) { - $this->configModel->shouldReceive('load') - ->with($cat) - ->andReturn([$cat => $data]) - ->once(); - } - - parent::testCacheLoadDouble($data1, $data2); - - // Assert the expected categories - foreach ($data2 as $cat => $data) { - self::assertConfig($cat, $expect[$cat]); - } - } - - /** - * @dataProvider dataTests - */ - public function testSetGetWithDB($data) - { - $this->configModel->shouldReceive('isConnected') - ->andReturn(true) - ->times(3); - - $this->configModel->shouldReceive('load')->with('config')->andReturn(['config' => []])->once(); - - parent::testSetGetWithDB($data); - } - - /** - * @dataProvider dataTests - */ - public function testGetWithRefresh($data) - { - $this->configModel->shouldReceive('isConnected') - ->andReturn(true) - ->times(4); - - // constructor loading - $this->configModel->shouldReceive('load') - ->with('config') - ->andReturn(['config' => []]) - ->once(); - - // mocking one get without result - $this->configModel->shouldReceive('get') - ->with('test', 'it') - ->andReturn(null) - ->once(); - - // mocking the data get - $this->configModel->shouldReceive('get') - ->with('test', 'it') - ->andReturn($data) - ->once(); - - // mocking second get - $this->configModel->shouldReceive('get') - ->with('test', 'not') - ->andReturn(null) - ->once(); - - parent::testGetWithRefresh($data); - } - - public function testGetWrongWithoutDB() - { - $this->configModel->shouldReceive('isConnected') - ->andReturn(false) - ->times(4); - - parent::testGetWrongWithoutDB(); - } - - /** - * @dataProvider dataTests - */ - public function testDeleteWithoutDB($data) - { - $this->configModel->shouldReceive('isConnected') - ->andReturn(false) - ->times(4); - - parent::testDeleteWithoutDB($data); - } - - public function testDeleteWithDB() - { - $this->configModel->shouldReceive('isConnected') - ->andReturn(true) - ->times(6); - - // constructor loading - $this->configModel->shouldReceive('load') - ->with('config') - ->andReturn(['config' => []]) - ->once(); - - // mocking one get without result - $this->configModel->shouldReceive('get') - ->with('test', 'it') - ->andReturn(null) - ->once(); - - parent::testDeleteWithDB(); - } - - public function testSetGetHighPrio() - { - $this->configModel->shouldReceive('isConnected') - ->andReturn(true); - - // constructor loading - $this->configModel->shouldReceive('load') - ->with('config') - ->andReturn(['config' => []]) - ->once(); - - $this->configModel->shouldReceive('get') - ->with('config', 'test') - ->andReturn('prio') - ->once(); - - $this->configModel->shouldReceive('set') - ->with('config', 'test', '123') - ->andReturn(true) - ->once(); - - $this->configModel->shouldReceive('get') - ->with('config', 'test') - ->andReturn('123') - ->once(); - - parent::testSetGetHighPrio(); - } - - public function testSetGetLowPrio() - { - $this->configModel->shouldReceive('isConnected') - ->andReturn(true); - - // constructor loading - $this->configModel->shouldReceive('load') - ->with('config') - ->andReturn(['config' => ['test' => 'it']]) - ->once(); - - $this->configModel->shouldReceive('set') - ->with('config', 'test', '123') - ->andReturn(true) - ->once(); - - // mocking one get without result - $this->configModel->shouldReceive('get') - ->with('config', 'test') - ->andReturn('it') - ->once(); - - parent::testSetGetLowPrio(); - } -} diff --git a/tests/src/Core/Config/PreloadConfigTest.php b/tests/src/Core/Config/PreloadConfigTest.php deleted file mode 100644 index 280788fac..000000000 --- a/tests/src/Core/Config/PreloadConfigTest.php +++ /dev/null @@ -1,213 +0,0 @@ -. - * - */ - -namespace Friendica\Test\src\Core\Config; - -use Friendica\Core\Config\Type\PreloadConfig; - -class PreloadConfigTest extends ConfigTest -{ - public function getInstance() - { - return new PreloadConfig($this->configCache, $this->configModel); - } - - /** - * @dataProvider dataConfigLoad - */ - public function testSetUp(array $data) - { - $this->configModel->shouldReceive('load') - ->andReturn($data) - ->once(); - - parent::testSetUp($data); - } - - /** - * @dataProvider dataConfigLoad - * - * @param array $data - * @param array $load - */ - public function testLoad(array $data, array $load) - { - $this->configModel->shouldReceive('isConnected') - ->andReturn(true) - ->once(); - - $this->configModel->shouldReceive('load') - ->andReturn($data) - ->once(); - - parent::testLoad($data, $load); - - // Assert that every category is loaded everytime - foreach ($data as $cat => $values) { - self::assertConfig($cat, $values); - } - } - - /** - * @dataProvider dataDoubleLoad - * - * @param array $data1 - * @param array $data2 - */ - public function testCacheLoadDouble(array $data1, array $data2, array $expect = []) - { - $this->configModel->shouldReceive('isConnected') - ->andReturn(true) - ->once(); - - $this->configModel->shouldReceive('load') - ->andReturn($data1) - ->once(); - - parent::testCacheLoadDouble($data1, $data2); - - // Assert that every category is loaded everytime and is NOT overwritten - foreach ($data1 as $cat => $values) { - self::assertConfig($cat, $values); - } - } - - /** - * @dataProvider dataTests - */ - public function testSetGetWithDB($data) - { - $this->configModel->shouldReceive('isConnected') - ->andReturn(true) - ->times(2); - - $this->configModel->shouldReceive('load')->andReturn(['config' => []])->once(); - - parent::testSetGetWithDB($data); - } - - /** - * @dataProvider dataTests - */ - public function testGetWithRefresh($data) - { - $this->configModel->shouldReceive('isConnected') - ->andReturn(true) - ->times(2); - - // constructor loading - $this->configModel->shouldReceive('load') - ->andReturn(['config' => []]) - ->once(); - - // mocking one get - $this->configModel->shouldReceive('get') - ->with('test', 'it') - ->andReturn($data) - ->once(); - - parent::testGetWithRefresh($data); - } - - - public function testGetWrongWithoutDB() - { - $this->configModel->shouldReceive('isConnected') - ->andReturn(false) - ->times(2); - - parent::testGetWrongWithoutDB(); - } - - /** - * @dataProvider dataTests - */ - public function testDeleteWithoutDB($data) - { - $this->configModel->shouldReceive('isConnected') - ->andReturn(false) - ->times(2); - - parent::testDeleteWithoutDB($data); - } - - public function testDeleteWithDB() - { - $this->configModel->shouldReceive('isConnected') - ->andReturn(true) - ->times(5); - - // constructor loading - $this->configModel->shouldReceive('load') - ->andReturn(['config' => []]) - ->once(); - - parent::testDeleteWithDB(); - } - - - public function testSetGetHighPrio() - { - $this->configModel->shouldReceive('isConnected') - ->andReturn(true); - - // constructor loading - $this->configModel->shouldReceive('load') - ->andReturn(['config' => []]) - ->once(); - - $this->configModel->shouldReceive('set') - ->with('config', 'test', '123') - ->andReturn(true) - ->once(); - - $this->configModel->shouldReceive('get') - ->with('config', 'test') - ->andReturn('123') - ->once(); - - parent::testSetGetHighPrio(); - } - - public function testSetGetLowPrio() - { - $this->configModel->shouldReceive('isConnected') - ->andReturn(true); - - // constructor loading - $this->configModel->shouldReceive('load') - ->andReturn(['config' => ['test' => 'it']]) - ->once(); - - $this->configModel->shouldReceive('set') - ->with('config', 'test', '123') - ->andReturn(true) - ->once(); - - // mocking one get without result - $this->configModel->shouldReceive('get') - ->with('config', 'test') - ->andReturn('it') - ->once(); - - parent::testSetGetLowPrio(); - } -} diff --git a/tests/src/Core/Hooks/Model/InstanceManagerTest.php b/tests/src/Core/Hooks/Model/InstanceManagerTest.php new file mode 100644 index 000000000..7c5bea802 --- /dev/null +++ b/tests/src/Core/Hooks/Model/InstanceManagerTest.php @@ -0,0 +1,258 @@ +. + * + */ + +namespace Friendica\Test\src\Core\Hooks\Model; + +use Dice\Dice; +use Friendica\Core\Hooks\Exceptions\HookInstanceException; +use Friendica\Core\Hooks\Exceptions\HookRegisterArgumentException; +use Friendica\Core\Hooks\Model\DiceInstanceManager; +use Friendica\Core\Hooks\Util\StrategiesFileManager; +use Friendica\Test\MockedTest; +use Friendica\Test\Util\Hooks\InstanceMocks\FakeInstance; +use Friendica\Test\Util\Hooks\InstanceMocks\FakeInstanceDecorator; +use Friendica\Test\Util\Hooks\InstanceMocks\IAmADecoratedInterface; +use Mockery\MockInterface; + +class InstanceManagerTest extends MockedTest +{ + /** @var StrategiesFileManager|MockInterface */ + protected $hookFileManager; + + protected function setUp(): void + { + parent::setUp(); + + $this->hookFileManager = \Mockery::mock(StrategiesFileManager::class); + $this->hookFileManager->shouldReceive('setupStrategies')->withAnyArgs(); + } + + protected function tearDown(): void + { + FakeInstanceDecorator::$countInstance = 0; + + parent::tearDown(); + } + + public function testEqualButNotSameInstance() + { + $instance = new DiceInstanceManager(new Dice(), $this->hookFileManager); + + $instance->registerStrategy(IAmADecoratedInterface::class, FakeInstance::class, 'fake'); + + $getInstanceA = $instance->create(IAmADecoratedInterface::class, 'fake'); + $getInstanceB = $instance->create(IAmADecoratedInterface::class, 'fake'); + + self::assertEquals($getInstanceA, $getInstanceB); + self::assertNotSame($getInstanceA, $getInstanceB); + } + + public function dataTests(): array + { + return [ + 'only_a' => [ + 'aString' => 'test', + ], + 'a_b' => [ + 'aString' => 'test', + 'cBool' => false, + 'bString' => 'test23', + + ], + 'a_c' => [ + 'aString' => 'test', + 'cBool' => false, + 'bString' => null, + ], + 'a_b_c' => [ + 'aString' => 'test', + 'cBool' => false, + 'bString' => 'test23', + ], + 'null' => [], + ]; + } + + /** + * @dataProvider dataTests + */ + public function testInstanceWithArgs(string $aString = null, bool $cBool = null, string $bString = null) + { + $instance = new DiceInstanceManager(new Dice(), $this->hookFileManager); + + $args = []; + + if (isset($aString)) { + $args[] = $aString; + } + if (isset($bString)) { + $args[] = $bString; + } + if (isset($cBool)) { + $args[] = $cBool; + } + + $instance->registerStrategy(IAmADecoratedInterface::class, FakeInstance::class, 'fake'); + + /** @var IAmADecoratedInterface $getInstanceA */ + $getInstanceA = $instance->create(IAmADecoratedInterface::class, 'fake', $args); + /** @var IAmADecoratedInterface $getInstanceB */ + $getInstanceB = $instance->create(IAmADecoratedInterface::class, 'fake', $args); + + self::assertEquals($getInstanceA, $getInstanceB); + self::assertNotSame($getInstanceA, $getInstanceB); + self::assertEquals($aString, $getInstanceA->getAText()); + self::assertEquals($aString, $getInstanceB->getAText()); + self::assertEquals($bString, $getInstanceA->getBText()); + self::assertEquals($bString, $getInstanceB->getBText()); + self::assertEquals($cBool, $getInstanceA->getCBool()); + self::assertEquals($cBool, $getInstanceB->getCBool()); + } + + /** + * @dataProvider dataTests + */ + public function testInstanceWithTwoStrategies(string $aString = null, bool $cBool = null, string $bString = null) + { + $instance = new DiceInstanceManager(new Dice(), $this->hookFileManager); + + $args = []; + + if (isset($aString)) { + $args[] = $aString; + } + if (isset($bString)) { + $args[] = $bString; + } + if (isset($cBool)) { + $args[] = $cBool; + } + + $instance->registerStrategy(IAmADecoratedInterface::class, FakeInstance::class, 'fake'); + $instance->registerStrategy(IAmADecoratedInterface::class, FakeInstance::class, 'fake23'); + + /** @var IAmADecoratedInterface $getInstanceA */ + $getInstanceA = $instance->create(IAmADecoratedInterface::class, 'fake', $args); + /** @var IAmADecoratedInterface $getInstanceB */ + $getInstanceB = $instance->create(IAmADecoratedInterface::class, 'fake23', $args); + + self::assertEquals($getInstanceA, $getInstanceB); + self::assertNotSame($getInstanceA, $getInstanceB); + self::assertEquals($aString, $getInstanceA->getAText()); + self::assertEquals($aString, $getInstanceB->getAText()); + self::assertEquals($bString, $getInstanceA->getBText()); + self::assertEquals($bString, $getInstanceB->getBText()); + self::assertEquals($cBool, $getInstanceA->getCBool()); + self::assertEquals($cBool, $getInstanceB->getCBool()); + } + + /** + * Test the exception in case the interface was already registered + */ + public function testDoubleRegister() + { + self::expectException(HookRegisterArgumentException::class); + self::expectExceptionMessage(sprintf('A class with the name %s is already set for the interface %s', 'fake', IAmADecoratedInterface::class)); + + $instance = new DiceInstanceManager(new Dice(), $this->hookFileManager); + $instance->registerStrategy(IAmADecoratedInterface::class, FakeInstance::class, 'fake'); + $instance->registerStrategy(IAmADecoratedInterface::class, FakeInstance::class, 'fake'); + } + + /** + * Test the exception in case the name of the instance isn't registered + */ + public function testWrongInstanceName() + { + self::expectException(HookInstanceException::class ); + self::expectExceptionMessage(sprintf('The class with the name %s isn\'t registered for the class or interface %s', 'fake', IAmADecoratedInterface::class)); + + $instance = new DiceInstanceManager(new Dice(), $this->hookFileManager); + $instance->create(IAmADecoratedInterface::class, 'fake'); + } + + /** + * Test in case there are already some rules + * + * @dataProvider dataTests + */ + public function testWithGivenRules(string $aString = null, bool $cBool = null, string $bString = null) + { + $args = []; + + if (isset($aString)) { + $args[] = $aString; + } + if (isset($bString)) { + $args[] = $bString; + } + + $dice = (new Dice())->addRules([ + FakeInstance::class => [ + 'constructParams' => $args, + ], + ]); + + $args = []; + + if (isset($cBool)) { + $args[] = $cBool; + } + + $instance = new DiceInstanceManager($dice, $this->hookFileManager); + + $instance->registerStrategy(IAmADecoratedInterface::class, FakeInstance::class, 'fake'); + + /** @var IAmADecoratedInterface $getInstanceA */ + $getInstanceA = $instance->create(IAmADecoratedInterface::class, 'fake', $args); + /** @var IAmADecoratedInterface $getInstanceB */ + $getInstanceB = $instance->create(IAmADecoratedInterface::class, 'fake', $args); + + self::assertEquals($getInstanceA, $getInstanceB); + self::assertNotSame($getInstanceA, $getInstanceB); + self::assertEquals($aString, $getInstanceA->getAText()); + self::assertEquals($aString, $getInstanceB->getAText()); + self::assertEquals($bString, $getInstanceA->getBText()); + self::assertEquals($bString, $getInstanceB->getBText()); + self::assertEquals($cBool, $getInstanceA->getCBool()); + self::assertEquals($cBool, $getInstanceB->getCBool()); + } + + /** + * @see https://github.com/friendica/friendica/issues/13318 + */ + public function testCaseInsensitiveNames() + { + $instance = new DiceInstanceManager(new Dice(), $this->hookFileManager); + + $instance->registerStrategy(IAmADecoratedInterface::class, FakeInstance::class, 'fake'); + + // CamelCase + self::assertInstanceOf(FakeInstance::class, $instance->create(IAmADecoratedInterface::class, 'Fake')); + // UPPER CASE + self::assertInstanceOf(FakeInstance::class, $instance->create(IAmADecoratedInterface::class, 'FAKE')); + // lower case + self::assertInstanceOf(FakeInstance::class, $instance->create(IAmADecoratedInterface::class, 'fake')); + // UnKnOwN + self::assertInstanceOf(FakeInstance::class, $instance->create(IAmADecoratedInterface::class, 'fAkE')); + } + +} diff --git a/tests/src/Core/Hooks/Util/StrategiesFileManagerTest.php b/tests/src/Core/Hooks/Util/StrategiesFileManagerTest.php new file mode 100644 index 000000000..b70d3d896 --- /dev/null +++ b/tests/src/Core/Hooks/Util/StrategiesFileManagerTest.php @@ -0,0 +1,202 @@ +. + * + */ + +namespace Friendica\Test\src\Core\Hooks\Util; + +use Friendica\Core\Addon\Capability\ICanLoadAddons; +use Friendica\Core\Hooks\Capability\ICanRegisterStrategies; +use Friendica\Core\Hooks\Exceptions\HookConfigException; +use Friendica\Core\Hooks\Util\StrategiesFileManager; +use Friendica\Test\MockedTest; +use Friendica\Test\Util\VFSTrait; +use org\bovigo\vfs\vfsStream; +use Psr\Log\LoggerInterface; +use Psr\Log\NullLogger; + +class StrategiesFileManagerTest extends MockedTest +{ + use VFSTrait; + + protected function setUp(): void + { + parent::setUp(); + + $this->setUpVfsDir(); + } + + public function dataHooks(): array + { + return [ + 'normal' => [ + 'content' => << [ + \Psr\Log\NullLogger::class => [''], + ], +]; +EOF, + 'addonsArray' => [], + 'assertStrategies' => [ + [LoggerInterface::class, NullLogger::class, ''], + ], + ], + 'normalWithString' => [ + 'content' => << [ + \Psr\Log\NullLogger::class => '', + ], +]; +EOF, + 'addonsArray' => [], + 'assertStrategies' => [ + [LoggerInterface::class, NullLogger::class, ''], + ], + ], + 'withAddons' => [ + 'content' => << [ + \Psr\Log\NullLogger::class => [''], + ], +]; +EOF, + 'addonsArray' => [ + \Psr\Log\LoggerInterface::class => [ + \Psr\Log\NullLogger::class => ['null'], + ], + ], + 'assertStrategies' => [ + [LoggerInterface::class, NullLogger::class, ''], + [LoggerInterface::class, NullLogger::class, 'null'], + ], + ], + 'withAddonsWithString' => [ + 'content' => << [ + \Psr\Log\NullLogger::class => [''], + ], +]; +EOF, + 'addonsArray' => [ + \Psr\Log\LoggerInterface::class => [ + \Psr\Log\NullLogger::class => 'null', + ], + ], + 'assertStrategies' => [ + [LoggerInterface::class, NullLogger::class, ''], + [LoggerInterface::class, NullLogger::class, 'null'], + ], + ], + // This should work because unique name convention is part of the instance manager logic, not of the file-infrastructure layer + 'withAddonsDoubleNamed' => [ + 'content' => << [ + \Psr\Log\NullLogger::class => [''], + ], +]; +EOF, + 'addonsArray' => [ + \Psr\Log\LoggerInterface::class => [ + \Psr\Log\NullLogger::class => [''], + ], + ], + 'assertStrategies' => [ + [LoggerInterface::class, NullLogger::class, ''], + [LoggerInterface::class, NullLogger::class, ''], + ], + ], + ]; + } + + /** + * @dataProvider dataHooks + */ + public function testSetupHooks(string $content, array $addonsArray, array $assertStrategies) + { + vfsStream::newFile(StrategiesFileManager::STATIC_DIR . '/' . StrategiesFileManager::CONFIG_NAME . '.config.php') + ->withContent($content) + ->at($this->root); + + $addonLoader = \Mockery::mock(ICanLoadAddons::class); + $addonLoader->shouldReceive('getActiveAddonConfig')->andReturn($addonsArray)->once(); + + $hookFileManager = new StrategiesFileManager($this->root->url(), $addonLoader); + + $instanceManager = \Mockery::mock(ICanRegisterStrategies::class); + foreach ($assertStrategies as $assertStrategy) { + $instanceManager->shouldReceive('registerStrategy')->withArgs($assertStrategy)->once(); + } + + $hookFileManager->loadConfig(); + $hookFileManager->setupStrategies($instanceManager); + + self::expectNotToPerformAssertions(); + } + + /** + * Test the exception in case the strategies.config.php file is missing + */ + public function testMissingStrategiesFile() + { + $addonLoader = \Mockery::mock(ICanLoadAddons::class); + $instanceManager = \Mockery::mock(ICanRegisterStrategies::class); + $hookFileManager = new StrategiesFileManager($this->root->url(), $addonLoader); + + self::expectException(HookConfigException::class); + self::expectExceptionMessage(sprintf('config file %s does not exist.', + $this->root->url() . '/' . StrategiesFileManager::STATIC_DIR . '/' . StrategiesFileManager::CONFIG_NAME . '.config.php')); + + $hookFileManager->loadConfig(); + } + + /** + * Test the exception in case the strategies.config.php file is wrong + */ + public function testWrongStrategiesFile() + { + $addonLoader = \Mockery::mock(ICanLoadAddons::class); + $instanceManager = \Mockery::mock(ICanRegisterStrategies::class); + $hookFileManager = new StrategiesFileManager($this->root->url(), $addonLoader); + + vfsStream::newFile(StrategiesFileManager::STATIC_DIR . '/' . StrategiesFileManager::CONFIG_NAME . '.config.php') + ->withContent("at($this->root); + + self::expectException(HookConfigException::class); + self::expectExceptionMessage(sprintf('Error loading config file %s.', + $this->root->url() . '/' . StrategiesFileManager::STATIC_DIR . '/' . StrategiesFileManager::CONFIG_NAME . '.config.php')); + + $hookFileManager->loadConfig(); + } +} diff --git a/tests/src/Core/InstallerTest.php b/tests/src/Core/InstallerTest.php index 20838b529..a446364da 100644 --- a/tests/src/Core/InstallerTest.php +++ b/tests/src/Core/InstallerTest.php @@ -1,6 +1,6 @@ with(L10n::class) ->andReturn($this->l10nMock); - DI::init($this->dice); + DI::init($this->dice, true); } public static function tearDownAfterClass(): void @@ -82,11 +82,15 @@ class InstallerTest extends MockedTest /** * Mocking the DI::l10n()->t() calls for the function checks + * + * @param bool $disableTimes if true, the L10, which are just created in case of an error, will be set to false (because the check will succeed) */ - private function mockFunctionL10TCalls() + private function mockFunctionL10TCalls(bool $disableTimes = false) { $this->mockL10nT('Apache mod_rewrite module', 1); $this->mockL10nT('PDO or MySQLi PHP module', 1); + $this->mockL10nT('IntlChar PHP module', 1); + $this->mockL10nT('Error: The IntlChar module is not installed.', $disableTimes ? 0 : 1); $this->mockL10nT('libCurl PHP module', 1); $this->mockL10nT('Error: libCURL PHP module required but not installed.', 1); $this->mockL10nT('XML PHP module', 1); @@ -180,11 +184,22 @@ class InstallerTest extends MockedTest */ public function testCheckFunctions() { + $this->mockFunctionL10TCalls(); + $this->setClasses(['IntlChar' => false]); + $install = new Installer(); + self::assertFalse($install->checkFunctions()); + self::assertCheckExist(2, + 'IntlChar PHP module', + 'Error: The IntlChar module is not installed.', + false, + true, + $install->getChecks()); + $this->mockFunctionL10TCalls(); $this->setFunctions(['curl_init' => false, 'imagecreatefromjpeg' => true]); $install = new Installer(); self::assertFalse($install->checkFunctions()); - self::assertCheckExist(3, + self::assertCheckExist(4, 'libCurl PHP module', 'Error: libCURL PHP module required but not installed.', false, @@ -195,7 +210,7 @@ class InstallerTest extends MockedTest $this->setFunctions(['imagecreatefromjpeg' => false]); $install = new Installer(); self::assertFalse($install->checkFunctions()); - self::assertCheckExist(4, + self::assertCheckExist(5, 'GD graphics PHP module', 'Error: GD graphics PHP module with JPEG support required but not installed.', false, @@ -206,7 +221,7 @@ class InstallerTest extends MockedTest $this->setFunctions(['openssl_public_encrypt' => false]); $install = new Installer(); self::assertFalse($install->checkFunctions()); - self::assertCheckExist(5, + self::assertCheckExist(6, 'OpenSSL PHP module', 'Error: openssl PHP module required but not installed.', false, @@ -217,7 +232,7 @@ class InstallerTest extends MockedTest $this->setFunctions(['mb_strlen' => false]); $install = new Installer(); self::assertFalse($install->checkFunctions()); - self::assertCheckExist(6, + self::assertCheckExist(7, 'mb_string PHP module', 'Error: mb_string PHP module required but not installed.', false, @@ -228,7 +243,7 @@ class InstallerTest extends MockedTest $this->setFunctions(['iconv_strlen' => false]); $install = new Installer(); self::assertFalse($install->checkFunctions()); - self::assertCheckExist(7, + self::assertCheckExist(8, 'iconv PHP module', 'Error: iconv PHP module required but not installed.', false, @@ -239,7 +254,7 @@ class InstallerTest extends MockedTest $this->setFunctions(['posix_kill' => false]); $install = new Installer(); self::assertFalse($install->checkFunctions()); - self::assertCheckExist(8, + self::assertCheckExist(9, 'POSIX PHP module', 'Error: POSIX PHP module required but not installed.', false, @@ -250,7 +265,7 @@ class InstallerTest extends MockedTest $this->setFunctions(['proc_open' => false]); $install = new Installer(); self::assertFalse($install->checkFunctions()); - self::assertCheckExist(9, + self::assertCheckExist(10, 'Program execution functions', 'Error: Program execution functions (proc_open) required but not enabled.', false, @@ -260,7 +275,7 @@ class InstallerTest extends MockedTest $this->setFunctions(['json_encode' => false]); $install = new Installer(); self::assertFalse($install->checkFunctions()); - self::assertCheckExist(10, + self::assertCheckExist(11, 'JSON PHP module', 'Error: JSON PHP module required but not installed.', false, @@ -271,7 +286,7 @@ class InstallerTest extends MockedTest $this->setFunctions(['finfo_open' => false]); $install = new Installer(); self::assertFalse($install->checkFunctions()); - self::assertCheckExist(11, + self::assertCheckExist(12, 'File Information PHP module', 'Error: File Information PHP module required but not installed.', false, @@ -282,14 +297,14 @@ class InstallerTest extends MockedTest $this->setFunctions(['gmp_strval' => false]); $install = new Installer(); self::assertFalse($install->checkFunctions()); - self::assertCheckExist(12, + self::assertCheckExist(13, 'GNU Multiple Precision PHP module', 'Error: GNU Multiple Precision PHP module required but not installed.', false, true, $install->getChecks()); - $this->mockFunctionL10TCalls(); + $this->mockFunctionL10TCalls(true); $this->setFunctions([ 'curl_init' => true, 'imagecreatefromjpeg' => true, @@ -301,6 +316,7 @@ class InstallerTest extends MockedTest 'finfo_open' => true, 'gmp_strval' => true, ]); + $this->setClasses(['IntlChar' => true]); $install = new Installer(); self::assertTrue($install->checkFunctions()); } @@ -361,7 +377,7 @@ class InstallerTest extends MockedTest ->with(ICanSendHttpRequests::class) ->andReturn($networkMock); - DI::init($this->dice); + DI::init($this->dice, true); // Mocking that we can use CURL $this->setFunctions(['curl_init' => true]); @@ -408,7 +424,7 @@ class InstallerTest extends MockedTest ->with(ICanSendHttpRequests::class) ->andReturn($networkMock); - DI::init($this->dice); + DI::init($this->dice, true); // Mocking that we can use CURL $this->setFunctions(['curl_init' => true]); diff --git a/tests/src/Core/KeyValueStorage/DBKeyValueStorageTest.php b/tests/src/Core/KeyValueStorage/DBKeyValueStorageTest.php new file mode 100644 index 000000000..3a3b25536 --- /dev/null +++ b/tests/src/Core/KeyValueStorage/DBKeyValueStorageTest.php @@ -0,0 +1,85 @@ +. + * + */ + +namespace Friendica\Test\src\Core\KeyValueStorage; + +use Friendica\Core\KeyValueStorage\Capability\IManageKeyValuePairs; +use Friendica\Core\KeyValueStorage\Type\DBKeyValueStorage; +use Friendica\Database\Database; +use Friendica\Test\Util\CreateDatabaseTrait; + +class DBKeyValueStorageTest extends KeyValueStorageTest +{ + use CreateDatabaseTrait; + + /** @var Database */ + protected $database; + + protected function setUp(): void + { + parent::setUp(); + + $this->setUpVfsDir(); + $this->setUpDb(); + } + + protected function tearDown(): void + { + parent::tearDown(); + + $this->tearDownDb(); + } + + public function getInstance(): IManageKeyValuePairs + { + $this->database = $this->getDbInstance(); + + return new DBKeyValueStorage($this->database); + } + + /** @dataProvider dataTests */ + public function testUpdatedAt($k, $v) + { + $instance = $this->getInstance(); + + $instance->set($k, $v); + + self::assertEquals($v, $instance->get($k)); + self::assertEquals($v, $instance[$k]); + + $entry = $this->database->selectFirst(DBKeyValueStorage::DB_KEY_VALUE_TABLE, ['updated_at'], ['k' => $k]); + self::assertNotEmpty($entry); + + $updateAt = $entry['updated_at']; + + $instance->set($k, 'another_value'); + + self::assertEquals('another_value', $instance->get($k)); + self::assertEquals('another_value', $instance[$k]); + + $entry = $this->database->selectFirst(DBKeyValueStorage::DB_KEY_VALUE_TABLE, ['updated_at'], ['k' => $k]); + self::assertNotEmpty($entry); + + $updateAtAfter = $entry['updated_at']; + + self::assertGreaterThanOrEqual($updateAt, $updateAtAfter); + } +} diff --git a/tests/src/Core/KeyValueStorage/KeyValueStorageTest.php b/tests/src/Core/KeyValueStorage/KeyValueStorageTest.php new file mode 100644 index 000000000..ddb0acc4d --- /dev/null +++ b/tests/src/Core/KeyValueStorage/KeyValueStorageTest.php @@ -0,0 +1,105 @@ +. + * + */ + +namespace Friendica\Test\src\Core\KeyValueStorage; + +use Friendica\Core\KeyValueStorage\Capability\IManageKeyValuePairs; +use Friendica\Test\MockedTest; + +abstract class KeyValueStorageTest extends MockedTest +{ + abstract public function getInstance(): IManageKeyValuePairs; + + public function testInstance() + { + $instance = $this->getInstance(); + + self::assertInstanceOf(IManageKeyValuePairs::class, $instance); + } + + public function dataTests(): array + { + return [ + 'string' => ['k' => 'data', 'v' => 'it'], + 'boolTrue' => ['k' => 'data', 'v' => true], + 'boolFalse' => ['k' => 'data', 'v' => false], + 'integer' => ['k' => 'data', 'v' => 235], + 'decimal' => ['k' => 'data', 'v' => 2.456], + 'array' => ['k' => 'data', 'v' => ['1', 2, '3', true, false]], + 'boolIntTrue' => ['k' => 'data', 'v' => 1], + 'boolIntFalse' => ['k' => 'data', 'v' => 0], + ]; + } + + /** + * @dataProvider dataTests + */ + public function testGetSetDelete($k, $v) + { + $instance = $this->getInstance(); + + $instance->set($k, $v); + + self::assertEquals($v, $instance->get($k)); + self::assertEquals($v, $instance[$k]); + + $instance->delete($k); + + self::assertNull($instance->get($k)); + self::assertNull($instance[$k]); + } + + /** + * @dataProvider dataTests + */ + public function testSetOverride($k, $v) + { + $instance = $this->getInstance(); + + $instance->set($k, $v); + + self::assertEquals($v, $instance->get($k)); + self::assertEquals($v, $instance[$k]); + + $instance->set($k, 'another_value'); + + self::assertEquals('another_value', $instance->get($k)); + self::assertEquals('another_value', $instance[$k]); + } + + /** + * @dataProvider dataTests + */ + public function testOffsetSetDelete($k, $v) + { + $instance = $this->getInstance(); + + $instance[$k] = $v; + + self::assertEquals($v, $instance->get($k)); + self::assertEquals($v, $instance[$k]); + + unset($instance[$k]); + + self::assertNull($instance->get($k)); + self::assertNull($instance[$k]); + } +} diff --git a/tests/src/Core/L10nTest.php b/tests/src/Core/L10nTest.php index 672699ece..9ae0c26e5 100644 --- a/tests/src/Core/L10nTest.php +++ b/tests/src/Core/L10nTest.php @@ -1,6 +1,6 @@ pid); + return new DatabaseLock($this->getDbInstance(), $this->pid); } protected function tearDown(): void { - $this->tearDownDb(); - parent::tearDown(); + + $this->tearDownDb(); } } diff --git a/tests/src/Core/Lock/LockTest.php b/tests/src/Core/Lock/LockTest.php index 4c8989eeb..948018884 100644 --- a/tests/src/Core/Lock/LockTest.php +++ b/tests/src/Core/Lock/LockTest.php @@ -1,6 +1,6 @@ shouldReceive('getHostname')->andReturn('friendica.local'); $dice->shouldReceive('create')->with(App::class)->andReturn($app); - $configMock = Mockery::mock(JitConfig::class); - $configMock - ->shouldReceive('get') - ->with('system', 'temppath') - ->andReturn('/tmp/'); + $configCache = new Cache(['system' => ['temppath' => '/tmp']]); + $configMock = new ReadOnlyFileConfig($configCache); $dice->shouldReceive('create')->with(IManageConfigValues::class)->andReturn($configMock); // @todo Because "get_temppath()" is using static methods, we have to initialize the BaseObject - DI::init($dice); + DI::init($dice, true); parent::setUp(); } diff --git a/tests/src/Core/Logger/AbstractLoggerTest.php b/tests/src/Core/Logger/AbstractLoggerTest.php index 9cc39963b..4605f6f75 100644 --- a/tests/src/Core/Logger/AbstractLoggerTest.php +++ b/tests/src/Core/Logger/AbstractLoggerTest.php @@ -1,6 +1,6 @@ self::LINE, 'function' => self::FUNC ]); + + $this->config = \Mockery::mock(IManageConfigValues::class); } public function assertLogline($string) diff --git a/tests/src/Core/Logger/LoggerDataTrait.php b/tests/src/Core/Logger/LoggerDataTrait.php index a74145a4e..f3f1770af 100644 --- a/tests/src/Core/Logger/LoggerDataTrait.php +++ b/tests/src/Core/Logger/LoggerDataTrait.php @@ -1,6 +1,6 @@ setUpVfsDir(); - - $this->fileSystem = new FileSystem(); } /** * {@@inheritdoc} */ - protected function getInstance($level = LogLevel::DEBUG) + protected function getInstance($level = LogLevel::DEBUG, $logfile = 'friendica.log') { - $this->logfile = vfsStream::newFile('friendica.log') + $this->logfile = vfsStream::newFile($logfile) ->at($this->root); - $logger = new StreamLogger('test', $this->logfile->url(), $this->introspection, $this->fileSystem, $level); + $this->config->shouldReceive('get')->with('system', 'logfile')->andReturn($this->logfile->url())->once(); + $this->config->shouldReceive('get')->with('system', 'loglevel')->andReturn($level)->once(); - return $logger; + $loggerFactory = new \Friendica\Core\Logger\Factory\StreamLogger($this->introspection, 'test'); + return $loggerFactory->create($this->config); } /** @@ -75,52 +68,18 @@ class StreamLoggerTest extends AbstractLoggerTest return $this->logfile->getContent(); } - /** - * Test if a stream is working - */ - public function testStream() - { - $logfile = vfsStream::newFile('friendica.log') - ->at($this->root); - - $filehandler = fopen($logfile->url(), 'ab'); - - $logger = new \Friendica\Core\Logger\Type\StreamLogger('test', $filehandler, $this->introspection, $this->fileSystem); - $logger->emergency('working'); - - $text = $logfile->getContent(); - - self::assertLogline($text); - } - - /** - * Test if the close statement is working - */ - public function testClose() - { - $logfile = vfsStream::newFile('friendica.log') - ->at($this->root); - - $logger = new StreamLogger('test', $logfile->url(), $this->introspection, $this->fileSystem); - $logger->emergency('working'); - $logger->close(); - // close doesn't affect - $logger->emergency('working too'); - - $text = $logfile->getContent(); - - self::assertLoglineNums(2, $text); - } - /** * Test when a file isn't set */ public function testNoUrl() { $this->expectException(LoggerArgumentException::class); - $this->expectExceptionMessage("Missing stream URL."); + $this->expectExceptionMessage(' is not a valid logfile'); - $logger = new StreamLogger('test', '', $this->introspection, $this->fileSystem); + $this->config->shouldReceive('get')->with('system', 'logfile')->andReturn('')->once(); + + $loggerFactory = new \Friendica\Core\Logger\Factory\StreamLogger($this->introspection, 'test'); + $logger = $loggerFactory->create($this->config); $logger->emergency('not working'); } @@ -130,13 +89,15 @@ class StreamLoggerTest extends AbstractLoggerTest */ public function testWrongUrl() { - $this->expectException(LoggerException::class); - $this->expectExceptionMessage("Cannot create stream."); + $this->expectException(LoggerArgumentException::class); $logfile = vfsStream::newFile('friendica.log') ->at($this->root)->chmod(0); - $logger = new StreamLogger('test', $logfile->url(), $this->introspection, $this->fileSystem); + $this->config->shouldReceive('get')->with('system', 'logfile')->andReturn($logfile->url())->once(); + + $loggerFactory = new \Friendica\Core\Logger\Factory\StreamLogger($this->introspection, 'test'); + $logger = $loggerFactory->create($this->config); $logger->emergency('not working'); } @@ -151,7 +112,8 @@ class StreamLoggerTest extends AbstractLoggerTest static::markTestIncomplete('We need a platform independent way to set directory to readonly'); - $logger = new StreamLogger('test', '/$%/wrong/directory/file.txt', $this->introspection, $this->fileSystem); + $loggerFactory = new \Friendica\Core\Logger\Factory\StreamLogger($this->introspection, 'test'); + $logger = $loggerFactory->create($this->config); $logger->emergency('not working'); } @@ -164,7 +126,7 @@ class StreamLoggerTest extends AbstractLoggerTest $this->expectException(LogLevelException::class); $this->expectExceptionMessageMatches("/The level \".*\" is not valid./"); - $logger = new StreamLogger('test', 'file.text', $this->introspection, $this->fileSystem, 'NOPE'); + $logger = $this->getInstance('NOPE'); } /** @@ -175,25 +137,11 @@ class StreamLoggerTest extends AbstractLoggerTest $this->expectException(LogLevelException::class); $this->expectExceptionMessageMatches("/The level \".*\" is not valid./"); - $logfile = vfsStream::newFile('friendica.log') - ->at($this->root); - - $logger = new StreamLogger('test', $logfile->url(), $this->introspection, $this->fileSystem); + $logger = $this->getInstance('NOPE'); $logger->log('NOPE', 'a test'); } - /** - * Test when the file is null - */ - public function testWrongFile() - { - $this->expectException(LoggerArgumentException::class); - $this->expectExceptionMessage("A stream must either be a resource or a string."); - - $logger = new StreamLogger('test', null, $this->introspection, $this->fileSystem); - } - /** * Test a relative path * @doesNotPerformAssertions @@ -207,7 +155,9 @@ class StreamLoggerTest extends AbstractLoggerTest chdir($this->root->getChild('logs')->url()); - $logger = new StreamLogger('test', '../friendica.log' , $this->introspection, $this->fileSystem); + $this->config->shouldReceive('get')->with('system', 'logfile')->andReturn('../friendica.log')->once(); + + $logger = new StreamLogger('test', $this->config, $this->introspection, $this->fileSystem); $logger->info('Test'); } diff --git a/tests/src/Core/Logger/SyslogLoggerFactoryWrapper.php b/tests/src/Core/Logger/SyslogLoggerFactoryWrapper.php new file mode 100644 index 000000000..63209cad3 --- /dev/null +++ b/tests/src/Core/Logger/SyslogLoggerFactoryWrapper.php @@ -0,0 +1,46 @@ +. + * + */ + +namespace Friendica\Test\src\Core\Logger; + +use Friendica\Core\Config\Capability\IManageConfigValues; +use Friendica\Core\Logger\Exception\LogLevelException; +use Friendica\Core\Logger\Factory\SyslogLogger; +use Friendica\Core\Logger\Type\SyslogLogger as SyslogLoggerClass; +use Psr\Log\LoggerInterface; + +class SyslogLoggerFactoryWrapper extends SyslogLogger +{ + public function create(IManageConfigValues $config): LoggerInterface + { + $logOpts = $config->get('system', 'syslog_flags') ?? SyslogLoggerClass::DEFAULT_FLAGS; + $logFacility = $config->get('system', 'syslog_facility') ?? SyslogLoggerClass::DEFAULT_FACILITY; + $loglevel = SyslogLogger::mapLegacyConfigDebugLevel($config->get('system', 'loglevel')); + + if (array_key_exists($loglevel, SyslogLoggerClass::logLevels)) { + $loglevel = SyslogLoggerClass::logLevels[$loglevel]; + } else { + throw new LogLevelException(sprintf('The level "%s" is not valid.', $loglevel)); + } + + return new SyslogLoggerWrapper($this->channel, $this->introspection, $loglevel, $logOpts, $logFacility); + } +} diff --git a/tests/src/Core/Logger/SyslogLoggerTest.php b/tests/src/Core/Logger/SyslogLoggerTest.php index abbcd6604..c22aecc10 100644 --- a/tests/src/Core/Logger/SyslogLoggerTest.php +++ b/tests/src/Core/Logger/SyslogLoggerTest.php @@ -1,6 +1,6 @@ introspection->shouldReceive('addClasses')->with([SyslogLogger::class]); + $this->config->shouldReceive('get')->with('system', 'syslog_flags')->andReturn(SyslogLogger::DEFAULT_FLAGS) + ->once(); + $this->config->shouldReceive('get')->with('system', 'syslog_facility') + ->andReturn(SyslogLogger::DEFAULT_FACILITY)->once(); } /** @@ -54,7 +56,10 @@ class SyslogLoggerTest extends AbstractLoggerTest */ protected function getInstance($level = LogLevel::DEBUG) { - $this->logger = new SyslogLoggerWrapper('test', $this->introspection, $level); + $this->config->shouldReceive('get')->with('system', 'loglevel')->andReturn($level); + + $loggerFactory = new SyslogLoggerFactoryWrapper($this->introspection, 'test'); + $this->logger = $loggerFactory->create($this->config); return $this->logger; } @@ -67,8 +72,8 @@ class SyslogLoggerTest extends AbstractLoggerTest { $this->expectException(LogLevelException::class); $this->expectExceptionMessageMatches("/The level \".*\" is not valid./"); - - $logger = new SyslogLoggerWrapper('test', $this->introspection, 'NOPE'); + + $logger = $this->getInstance('NOPE'); } /** @@ -79,7 +84,7 @@ class SyslogLoggerTest extends AbstractLoggerTest $this->expectException(LogLevelException::class); $this->expectExceptionMessageMatches("/The level \".*\" is not valid./"); - $logger = new SyslogLoggerWrapper('test', $this->introspection); + $logger = $this->getInstance(); $logger->log('NOPE', 'a test'); } @@ -90,7 +95,7 @@ class SyslogLoggerTest extends AbstractLoggerTest */ public function testClose() { - $logger = new SyslogLoggerWrapper('test', $this->introspection); + $logger = $this->getInstance(); $logger->emergency('test'); $logger->close(); // Reopened itself diff --git a/tests/src/Core/Logger/SyslogLoggerWrapper.php b/tests/src/Core/Logger/SyslogLoggerWrapper.php index ec283534d..dce28b164 100644 --- a/tests/src/Core/Logger/SyslogLoggerWrapper.php +++ b/tests/src/Core/Logger/SyslogLoggerWrapper.php @@ -1,6 +1,6 @@ content = ''; } diff --git a/tests/src/Core/Logger/WorkerLoggerTest.php b/tests/src/Core/Logger/WorkerLoggerTest.php index d36a4c9cb..5ac2dc6a2 100644 --- a/tests/src/Core/Logger/WorkerLoggerTest.php +++ b/tests/src/Core/Logger/WorkerLoggerTest.php @@ -1,6 +1,6 @@ testedConfig->get(0, 'test', 'it')); - /// beware that the cache returns '!!' and not null for a non existing value + /// beware that the cache returns '!!' and not null for a nonexistent value self::assertNull($this->testedConfig->getCache()->get(0, 'test', 'it')); // with default value diff --git a/tests/src/Core/PConfig/PreloadPConfigTest.php b/tests/src/Core/PConfig/PreloadPConfigTest.php index 04f9cd8e8..01fcf43f6 100644 --- a/tests/src/Core/PConfig/PreloadPConfigTest.php +++ b/tests/src/Core/PConfig/PreloadPConfigTest.php @@ -1,6 +1,6 @@ shouldReceive('startRecording'); - $profiler->shouldReceive('stopRecording'); - $profiler->shouldReceive('saveTimestamp')->withAnyArgs()->andReturn(true); - - // load real config to avoid mocking every config-entry which is related to the Database class - $configFactory = new Config(); - $loader = (new Config())->createConfigFileLoader($this->root->url(), []); - $configCache = $configFactory->createCache($loader); - - $dbaDefinition = (new DbaDefinition($configCache->get('system', 'basepath')))->load(); - $viewDefinition = (new ViewDefinition($configCache->get('system', 'basepath')))->load(); - - $dba = new StaticDatabase($configCache, $profiler, $dbaDefinition, $viewDefinition); - - return new Database($dba); + return new Database($this->getDbInstance()); } protected function tearDown(): void { - $this->tearDownDb(); - parent::tearDown(); + + $this->tearDownDb(); } } diff --git a/tests/src/Core/Storage/FilesystemStorageConfigTest.php b/tests/src/Core/Storage/FilesystemStorageConfigTest.php index 2c64481c7..b7fbc63f9 100644 --- a/tests/src/Core/Storage/FilesystemStorageConfigTest.php +++ b/tests/src/Core/Storage/FilesystemStorageConfigTest.php @@ -1,6 +1,6 @@ setUpVfsDir(); + $this->setUpDb(); + vfsStream::newDirectory(Type\FilesystemConfig::DEFAULT_BASE_FOLDER, 0777)->at($this->root); $this->logger = new NullLogger(); + $this->database = $this->getDbInstance(); - $profiler = \Mockery::mock(Profiler::class); - $profiler->shouldReceive('startRecording'); - $profiler->shouldReceive('stopRecording'); - $profiler->shouldReceive('saveTimestamp')->withAnyArgs()->andReturn(true); + $configFactory = new Config(); + $configFileManager = $configFactory->createConfigFileManager($this->root->url()); + $configCache = $configFactory->createCache($configFileManager); - // load real config to avoid mocking every config-entry which is related to the Database class - $configFactory = new Config(); - $loader = $configFactory->createConfigFileLoader($this->root->url(), []); - $configCache = $configFactory->createCache($loader); - - $dbaDefinition = (new DbaDefinition($configCache->get('system', 'basepath')))->load(); - $viewDefinition = (new ViewDefinition($configCache->get('system', 'basepath')))->load(); - - $this->dba = new StaticDatabase($configCache, $profiler, $dbaDefinition, $viewDefinition); - - $configModel = new Repository\Config($this->dba, new Mode(Mode::DBCONFIGAVAILABLE)); - $this->config = new PreloadConfig($configCache, $configModel); + $this->config = new \Friendica\Core\Config\Model\DatabaseConfig($this->database, $configCache); $this->config->set('storage', 'name', 'Database'); - $this->config->set('storage', 'filesystem_path', $this->root->getChild(Type\FilesystemConfig::DEFAULT_BASE_FOLDER)->url()); + $this->config->set('storage', 'filesystem_path', $this->root->getChild(Type\FilesystemConfig::DEFAULT_BASE_FOLDER) + ->url()); $this->l10n = \Mockery::mock(L10n::class); + } protected function tearDown(): void @@ -109,7 +102,7 @@ class StorageManagerTest extends DatabaseTest */ public function testInstance() { - $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); + $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false); self::assertInstanceOf(StorageManager::class, $storageManager); } @@ -117,21 +110,21 @@ class StorageManagerTest extends DatabaseTest public function dataStorages() { return [ - 'empty' => [ + 'empty' => [ 'name' => '', 'valid' => false, 'interface' => ICanReadFromStorage::class, 'assert' => null, 'assertName' => '', ], - 'database' => [ + 'database' => [ 'name' => Type\Database::NAME, 'valid' => true, 'interface' => ICanWriteToStorage::class, 'assert' => Type\Database::class, 'assertName' => Type\Database::NAME, ], - 'filesystem' => [ + 'filesystem' => [ 'name' => Filesystem::NAME, 'valid' => true, 'interface' => ICanWriteToStorage::class, @@ -145,7 +138,7 @@ class StorageManagerTest extends DatabaseTest 'assert' => SystemResource::class, 'assertName' => SystemResource::NAME, ], - 'invalid' => [ + 'invalid' => [ 'name' => 'invalid', 'valid' => false, 'interface' => null, @@ -171,7 +164,7 @@ class StorageManagerTest extends DatabaseTest $this->config->set('storage', 'name', $name); } - $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); + $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false); if ($interface === ICanWriteToStorage::class) { $storage = $storageManager->getWritableStorageByName($name); @@ -191,7 +184,7 @@ class StorageManagerTest extends DatabaseTest */ public function testIsValidBackend($name, $valid, $interface, $assert, $assertName) { - $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); + $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false); // true in every of the backends self::assertEquals(!empty($assertName), $storageManager->isValidBackend($name)); @@ -205,7 +198,7 @@ class StorageManagerTest extends DatabaseTest */ public function testListBackends() { - $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); + $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false); self::assertEquals(StorageManager::DEFAULT_BACKENDS, $storageManager->listBackends()); } @@ -221,7 +214,7 @@ class StorageManagerTest extends DatabaseTest static::markTestSkipped('only works for ICanWriteToStorage'); } - $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); + $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false); $selBackend = $storageManager->getWritableStorageByName($name); $storageManager->setBackend($selBackend); @@ -241,7 +234,7 @@ class StorageManagerTest extends DatabaseTest $this->expectException(InvalidClassStorageException::class); } - $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); + $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false); self::assertInstanceOf($assert, $storageManager->getBackend()); } @@ -262,7 +255,7 @@ class StorageManagerTest extends DatabaseTest ->addRule(IHandleSessions::class, ['instanceOf' => Memory::class, 'shared' => true, 'call' => null]); DI::init($dice); - $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); + $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false); self::assertTrue($storageManager->register(SampleStorageBackend::class)); @@ -290,7 +283,7 @@ class StorageManagerTest extends DatabaseTest ->addRule(IHandleSessions::class, ['instanceOf' => Memory::class, 'shared' => true, 'call' => null]); DI::init($dice); - $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); + $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false); self::assertTrue($storageManager->register(SampleStorageBackend::class)); @@ -327,15 +320,15 @@ class StorageManagerTest extends DatabaseTest self::markTestSkipped("No user backend"); } - $this->loadFixture(__DIR__ . '/../../../../datasets/storage/database.fixture.php', $this->dba); + $this->loadFixture(__DIR__ . '/../../../../datasets/storage/database.fixture.php', $this->database); - $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); + $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false); $storage = $storageManager->getWritableStorageByName($name); $storageManager->move($storage); - $photos = $this->dba->select('photo', ['backend-ref', 'backend-class', 'id', 'data']); + $photos = $this->database->select('photo', ['backend-ref', 'backend-class', 'id', 'data']); - while ($photo = $this->dba->fetch($photos)) { + while ($photo = $this->database->fetch($photos)) { self::assertEmpty($photo['data']); $storage = $storageManager->getByName($photo['backend-class']); @@ -353,7 +346,7 @@ class StorageManagerTest extends DatabaseTest $this->expectException(InvalidClassStorageException::class); $this->expectExceptionMessage('Backend SystemResource is not valid'); - $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); + $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false); $storage = $storageManager->getWritableStorageByName(SystemResource::getName()); $storageManager->move($storage); } diff --git a/tests/src/Core/Storage/StorageConfigTest.php b/tests/src/Core/Storage/StorageConfigTest.php index b8f26a65c..7da0b09e8 100644 --- a/tests/src/Core/Storage/StorageConfigTest.php +++ b/tests/src/Core/Storage/StorageConfigTest.php @@ -1,6 +1,6 @@ shouldReceive('getHostname')->andReturn('friendica.local')->once(); + $baseUrl->shouldReceive('getHost')->andReturn('friendica.local')->once(); $dice = \Mockery::mock(Dice::class); $dice->shouldReceive('create')->with(BaseURL::class)->andReturn($baseUrl); - DI::init($dice); + DI::init($dice, true); } private function assertGuid($guid, $length, $prefix = '') diff --git a/tests/src/Core/Worker/Repository/ProcessTest.php b/tests/src/Core/Worker/Repository/ProcessTest.php index db6763c5a..f39851f64 100644 --- a/tests/src/Core/Worker/Repository/ProcessTest.php +++ b/tests/src/Core/Worker/Repository/ProcessTest.php @@ -1,6 +1,6 @@ 'hostname'])); - self::assertFalse(DBA::exists('config', ['k' => 'nonsense'])); } } diff --git a/tests/src/Database/DBStructureTest.php b/tests/src/Database/DBStructureTest.php index 613e2f783..7bb9baf94 100644 --- a/tests/src/Database/DBStructureTest.php +++ b/tests/src/Database/DBStructureTest.php @@ -1,6 +1,6 @@ [ $toColumn, $toType ]])); - self::assertTrue(DBStructure::existsColumn('config', [ $toColumn ])); - self::assertFalse(DBStructure::existsColumn('config', [ $fromColumn ])); + self::assertTrue(DBStructure::rename('user', [ $fromColumn => [ $toColumn, $toType ]])); + self::assertTrue(DBStructure::existsColumn('user', [ $toColumn ])); + self::assertFalse(DBStructure::existsColumn('user', [ $fromColumn ])); - self::assertTrue(DBStructure::rename('config', [ $toColumn => [ $fromColumn, $fromType ]])); - self::assertTrue(DBStructure::existsColumn('config', [ $fromColumn ])); - self::assertFalse(DBStructure::existsColumn('config', [ $toColumn ])); + self::assertTrue(DBStructure::rename('user', [ $toColumn => [ $fromColumn, $fromType ]])); + self::assertTrue(DBStructure::existsColumn('user', [ $fromColumn ])); + self::assertFalse(DBStructure::existsColumn('user', [ $toColumn ])); } /** diff --git a/tests/src/Database/DatabaseTest.php b/tests/src/Database/DatabaseTest.php new file mode 100644 index 000000000..c431a5294 --- /dev/null +++ b/tests/src/Database/DatabaseTest.php @@ -0,0 +1,112 @@ +. + * + */ + +namespace Friendica\Test\src\Database; + +use Friendica\Core\Config\Util\ConfigFileManager; +use Friendica\Core\Config\ValueObject\Cache; +use Friendica\Test\FixtureTest; +use Friendica\Test\Util\CreateDatabaseTrait; + +class DatabaseTest extends FixtureTest +{ + use CreateDatabaseTrait; + + /** + * @var Cache + */ + protected $configCache; + /** + * @var ConfigFileManager + */ + protected $configFileManager; + + protected function setUp(): void + { + $this->setUpVfsDir(); + + parent::setUp(); + + $this->configCache = new Cache(); + $this->configFileManager = new ConfigFileManager($this->root->url(), $this->root->url() . '/config/', $this->root->url() . '/static/'); + } + + /** + * Test, if directly updating a field is possible + */ + public function testUpdateIncrease() + { + $db = $this->getDbInstance(); + + self::assertTrue($db->insert('config', ['cat' => 'test', 'k' => 'inc', 'v' => 0])); + self::assertTrue($db->update('config', ["`v` = `v` + 1"], ['cat' => 'test', 'k' => 'inc'])); + self::assertEquals(1, $db->selectFirst('config', ['v'], ['cat' => 'test', 'k' => 'inc'])['v']); + } + + /** + * Test if combining directly field updates with normal updates is working + */ + public function testUpdateWithField() + { + $db = $this->getDbInstance(); + + self::assertEquals('https://friendica.local', $db->selectFirst('gserver', ['url'], ['nurl' => 'http://friendica.local'])['url']); + self::assertTrue($db->update('gserver', ['active-week-users' => 0], ['nurl' => 'http://friendica.local'])); + self::assertTrue($db->update('gserver', [ + 'site_name' => 'test', "`registered-users` = `registered-users` + 1", + 'info' => 'another test', + "`active-week-users` = `active-week-users` + 2" + ], [ + 'nurl' => 'http://friendica.local' + ])); + self::assertEquals(1, $db->selectFirst('gserver', ['registered-users'], ['nurl' => 'http://friendica.local'])['registered-users']); + self::assertEquals(2, $db->selectFirst('gserver', ['active-week-users'], ['nurl' => 'http://friendica.local'])['active-week-users']); + self::assertTrue($db->update('gserver', [ + 'site_name' => 'test', "`registered-users` = `registered-users` + 1", + 'info' => 'another test' + ], [ + 'nurl' => 'http://friendica.local' + ])); + self::assertEquals(2, $db->selectFirst('gserver', ['registered-users'], ['nurl' => 'http://friendica.local'])['registered-users']); + self::assertTrue($db->update('gserver', [ + 'site_name' => 'test', "`registered-users` = `registered-users` - 1", + 'info' => 'another test' + ], [ + 'nurl' => 'http://friendica.local' + ])); + self::assertEquals(1, $db->selectFirst('gserver', ['registered-users'], ['nurl' => 'http://friendica.local'])['registered-users']); + } + + public function testUpdateWithArray() + { + $db = $this->getDbInstance(); + + self::assertTrue($db->update('gserver', ['active-week-users' => 0, 'registered-users' => 0], ['nurl' => 'http://friendica.local'])); + + $fields = ["`registered-users` = `registered-users` + 1"]; + $fields[] = "`active-week-users` = `active-week-users` + 2"; + + self::assertTrue($db->update('gserver', $fields, ['nurl' => 'http://friendica.local'])); + + self::assertEquals(2, $db->selectFirst('gserver', ['active-week-users'], ['nurl' => 'http://friendica.local'])['active-week-users']); + self::assertEquals(1, $db->selectFirst('gserver', ['registered-users'], ['nurl' => 'http://friendica.local'])['registered-users']); + } +} diff --git a/tests/src/Factory/Api/Twitter/ActivitiesTest.php b/tests/src/Factory/Api/Twitter/ActivitiesTest.php index 7acdc0955..f76ced98f 100644 --- a/tests/src/Factory/Api/Twitter/ActivitiesTest.php +++ b/tests/src/Factory/Api/Twitter/ActivitiesTest.php @@ -1,6 +1,6 @@ toArray(); self::assertStringStartsWith('item_title', $status['text']); - self::assertStringStartsWith('

item_title


perspiciatis impedit voluptatem', $status['friendica_html']); + self::assertStringStartsWith('

item_title

perspiciatis impedit voluptatem', $status['friendica_html']); } /** @@ -114,11 +114,11 @@ class StatusTest extends FixtureTest } /** - * Test the api_get_entitities() function. + * Test the api_get_entities() function. * * @return void */ - public function testApiGetEntititiesWithIncludeEntities() + public function testApiGetEntitiesWithIncludeEntities() { $status = $this->statusFactory ->createFromItemId(13, ApiTest::SELF_USER['id'], true) diff --git a/tests/src/Factory/Api/Twitter/UserTest.php b/tests/src/Factory/Api/Twitter/UserTest.php index 4425f83ad..efc87b491 100644 --- a/tests/src/Factory/Api/Twitter/UserTest.php +++ b/tests/src/Factory/Api/Twitter/UserTest.php @@ -1,6 +1,6 @@ . + * + */ + +namespace Friendica\Test\src\Model; + +use Friendica\Model\GServer; +use GuzzleHttp\Psr7\Uri; +use Psr\Http\Message\UriInterface; + +class GServerTest extends \PHPUnit\Framework\TestCase +{ + public function dataCleanUri(): array + { + return [ + 'full-monty' => [ + 'expected' => new Uri('https://example.com/path'), + 'dirtyUri' => new Uri('https://user:password@example.com/path?query=string#fragment'), + ], + 'index.php' => [ + 'expected' => new Uri('https://example.com'), + 'dirtyUri' => new Uri('https://example.com/index.php'), + ], + 'index.php-2' => [ + 'expected' => new Uri('https://example.com/path/to/resource'), + 'dirtyUri' => new Uri('https://example.com/index.php/path/to/resource'), + ], + 'index.php-path' => [ + 'expected' => new Uri('https://example.com/path/to'), + 'dirtyUri' => new Uri('https://example.com/path/to/index.php'), + ], + 'index.php-path-2' => [ + 'expected' => new Uri('https://example.com/path/to/path/to/resource'), + 'dirtyUri' => new Uri('https://example.com/path/to/index.php/path/to/resource'), + ], + 'index.php-slash' => [ + 'expected' => new Uri('https://example.com'), + 'dirtyUri' => new Uri('https://example.com/index.php/'), + ], + 'index.php-slash-2' => [ + 'expected' => new Uri('https://example.com/path/to/resource'), + 'dirtyUri' => new Uri('https://example.com/index.php/path/to/resource/'), + ], + ]; + } + + /** + * @dataProvider dataCleanUri + * + * @param UriInterface $expected + * @param UriInterface $dirtyUri + * @return void + * @throws \Exception + */ + public function testCleanUri(UriInterface $expected, UriInterface $dirtyUri) + { + $this->assertEquals($expected, GServer::cleanUri($dirtyUri)); + } +} diff --git a/tests/src/Model/Log/ParsedLogIteratorTest.php b/tests/src/Model/Log/ParsedLogIteratorTest.php index a9e43967f..eb650a9dc 100644 --- a/tests/src/Model/Log/ParsedLogIteratorTest.php +++ b/tests/src/Model/Log/ParsedLogIteratorTest.php @@ -1,6 +1,6 @@ '2021-05-24T15:40:01Z', 'context' => 'worker', 'level' => 'WARNING', - 'message' => 'Spool file does does not start with "item-"', + 'message' => 'Spool file does not start with "item-"', 'data' => '{"file":".","worker_id":"560c8b6","worker_cmd":"SpoolPost"}', 'source' => '{"file":"SpoolPost.php","line":40,"function":"execute","uid":"fd8c37","process_id":20846}', ] diff --git a/tests/src/Model/Post/MediaTest.php b/tests/src/Model/Post/MediaTest.php index b8aabec37..ee6d89ad3 100644 --- a/tests/src/Model/Post/MediaTest.php +++ b/tests/src/Model/Post/MediaTest.php @@ -1,6 +1,6 @@ baseUrl->shouldReceive('getSSLPolicy')->andReturn(true)->once(); + $this->baseUrl->shouldReceive('getScheme')->andReturn('https')->once(); $this->config->shouldReceive('get')->with('system', 'site_prvkey')->andReturn('1235')->once(); $this->config->shouldReceive('get')->with('system', 'auth_cookie_lifetime', Cookie::DEFAULT_EXPIRE)->andReturn('7')->once(); $this->config->shouldReceive('get')->with('proxy', 'trusted_proxies', '')->andReturn('')->once(); @@ -127,7 +127,7 @@ class CookieTest extends MockedTest */ public function testGet(array $cookieData, bool $hasValues, $uid, $hash, $ip) { - $this->baseUrl->shouldReceive('getSSLPolicy')->andReturn(true)->once(); + $this->baseUrl->shouldReceive('getScheme')->andReturn('https')->once(); $this->config->shouldReceive('get')->with('system', 'site_prvkey')->andReturn('1235')->once(); $this->config->shouldReceive('get')->with('system', 'auth_cookie_lifetime', Cookie::DEFAULT_EXPIRE)->andReturn('7')->once(); $this->config->shouldReceive('get')->with('proxy', 'trusted_proxies', '')->andReturn('')->once(); @@ -188,7 +188,7 @@ class CookieTest extends MockedTest */ public function testCheck(string $serverPrivateKey, string $userPrivateKey, string $password, string $assertHash, bool $assertTrue) { - $this->baseUrl->shouldReceive('getSSLPolicy')->andReturn(true)->once(); + $this->baseUrl->shouldReceive('getScheme')->andReturn('https')->once(); $this->config->shouldReceive('get')->with('system', 'site_prvkey')->andReturn($serverPrivateKey)->once(); $this->config->shouldReceive('get')->with('system', 'auth_cookie_lifetime', Cookie::DEFAULT_EXPIRE)->andReturn('7')->once(); $this->config->shouldReceive('get')->with('proxy', 'trusted_proxies', '')->andReturn('')->once(); @@ -231,11 +231,12 @@ class CookieTest extends MockedTest $data = json_decode(StaticCookie::$_COOKIE[Cookie::NAME]); - self::assertObjectHasAttribute('uid', $data); + self::assertIsObject($data); + self::assertTrue(property_exists($data, 'uid')); self::assertEquals($uid, $data->uid); - self::assertObjectHasAttribute('hash', $data); + self::assertTrue(property_exists($data, 'hash')); self::assertEquals($hash, $data->hash); - self::assertObjectHasAttribute('ip', $data); + self::assertTrue(property_exists($data, 'ip')); self::assertEquals($remoteIp, $data->ip); self::assertLessThanOrEqual(time() + Cookie::DEFAULT_EXPIRE * 24 * 60 * 60, StaticCookie::$_EXPIRE); @@ -248,7 +249,7 @@ class CookieTest extends MockedTest */ public function testSet($serverKey, $uid, $password, $privateKey, $assertHash, $remoteIp, $serverArray) { - $this->baseUrl->shouldReceive('getSSLPolicy')->andReturn(true)->once(); + $this->baseUrl->shouldReceive('getScheme')->andReturn('https')->once(); $this->config->shouldReceive('get')->with('system', 'site_prvkey')->andReturn($serverKey)->once(); $this->config->shouldReceive('get')->with('system', 'auth_cookie_lifetime', Cookie::DEFAULT_EXPIRE)->andReturn(Cookie::DEFAULT_EXPIRE)->once(); $this->config->shouldReceive('get')->with('proxy', 'trusted_proxies', '')->andReturn('')->once(); @@ -275,7 +276,7 @@ class CookieTest extends MockedTest */ public function testDoubleSet($serverKey, $uid, $password, $privateKey, $assertHash, $remoteIp, $serverArray) { - $this->baseUrl->shouldReceive('getSSLPolicy')->andReturn(true)->once(); + $this->baseUrl->shouldReceive('getScheme')->andReturn('https')->once(); $this->config->shouldReceive('get')->with('system', 'site_prvkey')->andReturn($serverKey)->once(); $this->config->shouldReceive('get')->with('system', 'auth_cookie_lifetime', Cookie::DEFAULT_EXPIRE)->andReturn(Cookie::DEFAULT_EXPIRE)->once(); $this->config->shouldReceive('get')->with('proxy', 'trusted_proxies', '')->andReturn('')->once(); @@ -301,7 +302,7 @@ class CookieTest extends MockedTest Cookie::NAME => 'test' ]; - $this->baseUrl->shouldReceive('getSSLPolicy')->andReturn(true)->once(); + $this->baseUrl->shouldReceive('getScheme')->andReturn('https')->once(); $this->config->shouldReceive('get')->with('system', 'site_prvkey')->andReturn(24)->once(); $this->config->shouldReceive('get')->with('system', 'auth_cookie_lifetime', Cookie::DEFAULT_EXPIRE)->andReturn(Cookie::DEFAULT_EXPIRE)->once(); $this->config->shouldReceive('get')->with('proxy', 'trusted_proxies', '')->andReturn('')->once(); diff --git a/tests/src/Model/UserTest.php b/tests/src/Model/UserTest.php index 84934c6af..89c3b9d23 100644 --- a/tests/src/Model/UserTest.php +++ b/tests/src/Model/UserTest.php @@ -1,6 +1,6 @@ addRules(include __DIR__ . '/../../../static/dependencies.config.php'); $diceMock->shouldReceive('create')->withArgs([Database::class])->andReturn($this->dbMock); - DI::init($diceMock); + DI::init($diceMock, true); $this->parent = [ - 'uid' => 1, - 'username' => 'maxmuster', - 'nickname' => 'Max Muster' + 'uid' => 1, + 'username' => 'maxmuster', + 'nickname' => 'Max Muster', ]; $this->child = [ - 'uid' => 2, - 'username' => 'johndoe', - 'nickname' => 'John Doe' + 'uid' => 2, + 'username' => 'johndoe', + 'nickname' => 'John Doe', ]; $this->manage = [ - 'uid' => 3, - 'username' => 'janesmith', - 'nickname' => 'Jane Smith' + 'uid' => 3, + 'username' => 'janesmith', + 'nickname' => 'Jane Smith', ]; } public function testIdentitiesEmpty() { $this->dbMock->shouldReceive('selectFirst')->with('user', - ['uid', 'nickname', 'username', 'parent-uid'],['uid' => $this->parent['uid']], [])->andReturn($this->parent)->once(); + ['uid', 'nickname', 'username', 'parent-uid'],['uid' => $this->parent['uid'], 'verified' => true, 'blocked' => false, 'account_removed' => false, 'account_expired' => false], [])->andReturn($this->parent)->once(); $this->dbMock->shouldReceive('isResult')->with($this->parent)->andReturn(false)->once(); $record = User::identities($this->parent['uid']); @@ -82,11 +82,11 @@ class UserTest extends MockedTest public function testIdentitiesAsParent() { $parentSelect = $this->parent; - $parentSelect['parent-uid'] = 0; + $parentSelect['parent-uid'] = null; // Select the user itself (=parent) $this->dbMock->shouldReceive('selectFirst')->with('user', - ['uid', 'nickname', 'username', 'parent-uid'],['uid' => $this->parent['uid']], [])->andReturn($parentSelect)->once(); + ['uid', 'nickname', 'username', 'parent-uid'],['uid' => $this->parent['uid'], 'verified' => true, 'blocked' => false, 'account_removed' => false, 'account_expired' => false], [])->andReturn($parentSelect)->once(); $this->dbMock->shouldReceive('isResult')->with($parentSelect)->andReturn(true)->once(); // Select one child @@ -94,7 +94,10 @@ class UserTest extends MockedTest ['uid', 'username', 'nickname'], [ 'parent-uid' => $this->parent['uid'], - 'account_removed' => false + 'verified' => true, + 'blocked' => false, + 'account_removed' => false, + 'account_expired' => false ], [])->andReturn('objectReturn')->once(); $this->dbMock->shouldReceive('isResult')->with('objectReturn')->andReturn(true)->once(); $this->dbMock->shouldReceive('toArray')->with('objectReturn', true, 0)->andReturn([$this->child])->once(); @@ -110,7 +113,7 @@ class UserTest extends MockedTest $this->parent, $this->child, $this->manage - ], $record); + ], $record, 'testIdentitiesAsParent: ' . print_r($record, true)); } public function testIdentitiesAsChild() @@ -120,25 +123,31 @@ class UserTest extends MockedTest // Select the user itself (=child) $this->dbMock->shouldReceive('selectFirst')->with('user', - ['uid', 'nickname', 'username', 'parent-uid'],['uid' => $this->child['uid']], [])->andReturn($childSelect)->once(); + ['uid', 'nickname', 'username', 'parent-uid'],['uid' => $this->child['uid'], 'verified' => true, 'blocked' => false, 'account_removed' => false, 'account_expired' => false], [])->andReturn($childSelect)->once(); $this->dbMock->shouldReceive('isResult')->with($childSelect)->andReturn(true)->once(); // Select the parent $this->dbMock->shouldReceive('select')->with('user', ['uid', 'username', 'nickname'], [ - 'uid' => $this->parent['uid'], - 'account_removed' => false + 'uid' => $this->parent['uid'], + 'verified' => true, + 'blocked' => false, + 'account_removed' => false, + 'account_expired' => false ], [])->andReturn('objectReturn')->once(); $this->dbMock->shouldReceive('isResult')->with('objectReturn')->andReturn(true)->once(); $this->dbMock->shouldReceive('toArray')->with('objectReturn', true, 0)->andReturn([$this->parent])->once(); - // Select the childs (user & manage) + // Select the children (user & manage) $this->dbMock->shouldReceive('select')->with('user', ['uid', 'username', 'nickname'], [ 'parent-uid' => $this->parent['uid'], - 'account_removed' => false + 'verified' => true, + 'blocked' => false, + 'account_removed' => false, + 'account_expired' => false ], [])->andReturn('objectReturn')->once(); $this->dbMock->shouldReceive('isResult')->with('objectReturn')->andReturn(true)->once(); $this->dbMock->shouldReceive('toArray')->with('objectReturn', true, 0)->andReturn([$this->child, $this->manage])->once(); diff --git a/tests/src/Moderation/Factory/ReportTest.php b/tests/src/Moderation/Factory/ReportTest.php new file mode 100644 index 000000000..35e3a5050 --- /dev/null +++ b/tests/src/Moderation/Factory/ReportTest.php @@ -0,0 +1,274 @@ +. + * + */ + +namespace Friendica\Test\src\Moderation\Factory; + +use Friendica\Moderation\Collection; +use Friendica\Moderation\Factory; +use Friendica\Moderation\Entity; +use Friendica\Test\MockedTest; +use Friendica\Util\Clock\FrozenClock; +use Friendica\Util\DateTimeFormat; +use Psr\Clock\ClockInterface; +use Psr\Log\NullLogger; + +class ReportTest extends MockedTest +{ + public function dataCreateFromTableRow(): array + { + $clock = new FrozenClock(); + + // We need to strip the microseconds part to match database stored timestamps + $nowSeconds = $clock->now()->setTime( + $clock->now()->format('H'), + $clock->now()->format('i'), + $clock->now()->format('s') + ); + + return [ + 'default' => [ + 'clock' => $clock, + 'row' => [ + 'id' => 11, + 'reporter-id' => 12, + 'uid' => null, + 'cid' => 13, + 'gsid' => 14, + 'comment' => '', + 'forward' => false, + 'category-id' => Entity\Report::CATEGORY_SPAM, + 'public-remarks' => '', + 'private-remarks' => '', + 'last-editor-uid' => null, + 'assigned-uid' => null, + 'status' => Entity\Report::STATUS_OPEN, + 'resolution' => null, + 'created' => $nowSeconds->format(DateTimeFormat::MYSQL), + 'edited' => null, + ], + 'posts' => new Collection\Report\Posts(), + 'rules' => new Collection\Report\Rules(), + 'assertion' => new Entity\Report( + 12, + 13, + 14, + $nowSeconds, + Entity\Report::CATEGORY_SPAM, + null, + '', + false, + new Collection\Report\Posts(), + new Collection\Report\Rules(), + '', + '', + null, + Entity\Report::STATUS_OPEN, + null, + null, + null, + 11 + ), + ], + 'full' => [ + 'clock' => $clock, + 'row' => [ + 'id' => 11, + 'reporter-id' => 42, + 'uid' => 12, + 'cid' => 13, + 'gsid' => 14, + 'comment' => 'Report', + 'forward' => true, + 'category-id' => Entity\Report::CATEGORY_VIOLATION, + 'public-remarks' => 'Public remarks', + 'private-remarks' => 'Private remarks', + 'last-editor-uid' => 15, + 'assigned-uid' => 16, + 'status' => Entity\Report::STATUS_CLOSED, + 'resolution' => Entity\Report::RESOLUTION_ACCEPTED, + 'created' => '2021-10-12 12:23:00', + 'edited' => '2021-12-10 21:08:00', + ], + 'posts' => new Collection\Report\Posts([ + new Entity\Report\Post(89), + new Entity\Report\Post(90), + ]), + 'rules' => new Collection\Report\Rules([ + new Entity\Report\Rule(1, 'No hate speech'), + new Entity\Report\Rule(3, 'No commercial promotion'), + ]), + 'assertion' => new Entity\Report( + 42, + 13, + 14, + new \DateTimeImmutable('2021-10-12 12:23:00', new \DateTimeZone('UTC')), + Entity\Report::CATEGORY_VIOLATION, + 12, + 'Report', + true, + new Collection\Report\Posts([ + new Entity\Report\Post(89), + new Entity\Report\Post(90), + ]), + new Collection\Report\Rules([ + new Entity\Report\Rule(1, 'No hate speech'), + new Entity\Report\Rule(3, 'No commercial promotion'), + ]), + 'Public remarks', + 'Private remarks', + new \DateTimeImmutable('2021-12-10 21:08:00', new \DateTimeZone('UTC')), + Entity\Report::STATUS_CLOSED, + Entity\Report::RESOLUTION_ACCEPTED, + 16, + 15, + 11 + ), + ], + ]; + } + + /** + * @dataProvider dataCreateFromTableRow + */ + public function testCreateFromTableRow(ClockInterface $clock, array $row, Collection\Report\Posts $posts, Collection\Report\Rules $rules, Entity\Report $assertion) + { + $factory = new Factory\Report(new NullLogger(), $clock); + + $this->assertEquals($factory->createFromTableRow($row, $posts, $rules), $assertion); + } + + public function dataCreateFromReportsRequest(): array + { + $clock = new FrozenClock(); + + return [ + 'default' => [ + 'clock' => $clock, + 'rules' => [], + 'reporterId' => 12, + 'cid' => 13, + 'gsid' => 14, + 'comment' => '', + 'category' => 'spam', + 'forward' => false, + 'postUriIds' => [], + 'ruleIds' => [], + 'uid' => null, + 'assertion' => new Entity\Report( + 12, + 13, + 14, + $clock->now(), + Entity\Report::CATEGORY_SPAM, + ), + ], + 'full' => [ + 'clock' => $clock, + 'rules' => ['', 'Rule 1', 'Rule 2', 'Rule 3'], + 'reporterId' => 12, + 'cid' => 13, + 'gsid' => 14, + 'comment' => 'Report', + 'category' => 'violation', + 'forward' => true, + 'postUriIds' => [89, 90], + 'ruleIds' => [1, 3], + 'uid' => 42, + 'assertion' => new Entity\Report( + 12, + 13, + 14, + $clock->now(), + Entity\Report::CATEGORY_VIOLATION, + 42, + 'Report', + true, + new Collection\Report\Posts([ + new Entity\Report\Post(89), + new Entity\Report\Post(90) + ]), + new Collection\Report\Rules([ + new Entity\Report\Rule(1, 'Rule 1'), + new Entity\Report\Rule(3, 'Rule 3'), + ]), + ), + ], + 'forced-violation' => [ + 'clock' => $clock, + 'rules' => ['', 'Rule 1', 'Rule 2', 'Rule 3'], + 'reporterId' => 12, + 'cid' => 13, + 'gsid' => 14, + 'comment' => 'Report', + 'category' => 'other', + 'forward' => false, + 'postUriIds' => [], + 'ruleIds' => [2, 3], + 'uid' => null, + 'assertion' => new Entity\Report( + 12, + 13, + 14, + $clock->now(), + Entity\Report::CATEGORY_VIOLATION, + null, + 'Report', + false, + new Collection\Report\Posts(), + new Collection\Report\Rules([ + new Entity\Report\Rule(2, 'Rule 2'), + new Entity\Report\Rule(3, 'Rule 3'), + ]), + ), + ], + 'unknown-category' => [ + 'clock' => $clock, + 'rules' => ['', 'Rule 1', 'Rule 2', 'Rule 3'], + 'reporterId' => 12, + 'cid' => 13, + 'gsid' => 14, + 'comment' => '', + 'category' => 'unknown', + 'forward' => false, + 'postUriIds' => [], + 'ruleIds' => [], + 'uid' => null, + 'assertion' => new Entity\Report( + 12, + 13, + 14, + $clock->now(), + Entity\Report::CATEGORY_OTHER, + ), + ], + ]; + } + + /** + * @dataProvider dataCreateFromReportsRequest + */ + public function testCreateFromReportsRequest(ClockInterface $clock, array $rules, int $reporterId, int $cid, int $gsid, string $comment, string $category, bool $forward, array $postUriIds, array $ruleIds, int $uid = null, Entity\Report $assertion) + { + $factory = new Factory\Report(new NullLogger(), $clock); + + $this->assertEquals($factory->createFromReportsRequest($rules, $reporterId, $cid, $gsid, $comment, $category, $forward, $postUriIds, $ruleIds, $uid), $assertion); + } +} diff --git a/tests/src/Module/Api/ApiResponseTest.php b/tests/src/Module/Api/ApiResponseTest.php index 00ec15a9b..c92b9ae23 100644 --- a/tests/src/Module/Api/ApiResponseTest.php +++ b/tests/src/Module/Api/ApiResponseTest.php @@ -1,6 +1,6 @@ shouldReceive('info')->withArgs(['Unimplemented API call', ['method' => 'all', 'path' => '', 'agent' => '', 'request' => []]]); + + $response = new ApiResponse($l10n, $args, $logger, $baseUrl, $twitterUser); $response->unsupported(); - self::assertEquals('{"error":"API endpoint %s %s is not implemented","error_description":"The API endpoint is currently not implemented but might be in the future."}', $response->getContent()); + self::assertEquals('{"error":"API endpoint %s %s is not implemented but might be in the future.","code":"501 Not Implemented","request":""}', $response->getContent()); + } + + public function testUnsupportedUserAgent() + { + $l10n = \Mockery::mock(L10n::class); + $l10n->shouldReceive('t')->andReturnUsing(function ($args) { + return $args; + }); + $args = \Mockery::mock(Arguments::class); + $args->shouldReceive('getQueryString')->andReturn(''); + $baseUrl = \Mockery::mock(BaseURL::class); + $twitterUser = \Mockery::mock(User::class); + + $logger = \Mockery::mock(NullLogger::class); + $logger->shouldReceive('info')->withArgs(['Unimplemented API call', ['method' => 'all', 'path' => '', 'agent' => 'PHPUnit', 'request' => []]]); + + $response = new ApiResponse($l10n, $args, $logger, $baseUrl, $twitterUser, ['HTTP_USER_AGENT' => 'PHPUnit']); + $response->unsupported(); + + self::assertEquals('{"error":"API endpoint %s %s is not implemented but might be in the future.","code":"501 Not Implemented","request":""}', $response->getContent()); } /** @@ -250,6 +273,40 @@ class ApiResponseTest extends MockedTest self::assertEquals($data, $response->formatData('root_element', 'json', $data)); } + public function testApiExitWithJson() + { + $l10n = \Mockery::mock(L10n::class); + $l10n->shouldReceive('t')->andReturnUsing(function ($args) { + return $args; + }); + $args = \Mockery::mock(Arguments::class); + $args->shouldReceive('getQueryString')->andReturn(''); + $baseUrl = \Mockery::mock(BaseURL::class); + $twitterUser = \Mockery::mock(User::class); + + $response = new ApiResponse($l10n, $args, new NullLogger(), $baseUrl, $twitterUser); + $response->addJsonContent(['some_data']); + + self::assertEquals('["some_data"]', $response->getContent()); + } + + public function testApiExitWithJsonP() + { + $l10n = \Mockery::mock(L10n::class); + $l10n->shouldReceive('t')->andReturnUsing(function ($args) { + return $args; + }); + $args = \Mockery::mock(Arguments::class); + $args->shouldReceive('getQueryString')->andReturn(''); + $baseUrl = \Mockery::mock(BaseURL::class); + $twitterUser = \Mockery::mock(User::class); + + $response = new ApiResponse($l10n, $args, new NullLogger(), $baseUrl, $twitterUser, [], 'JsonPCallback'); + $response->addJsonContent(['some_data']); + + self::assertEquals('JsonPCallback(["some_data"])', $response->getContent()); + } + /** * Test the BaseApi::formatData() function with an XML result. * diff --git a/tests/src/Module/Api/ApiTest.php b/tests/src/Module/Api/ApiTest.php index 890bba19b..812993aa9 100644 --- a/tests/src/Module/Api/ApiTest.php +++ b/tests/src/Module/Api/ApiTest.php @@ -1,6 +1,6 @@ 'http://localhost/profile/othercontact' ]; + /** @var HTTPException */ + protected $httpExceptionMock; + // User ID that we know is not in the database const WRONG_USER_ID = 666; @@ -175,6 +181,8 @@ abstract class ApiTest extends FixtureTest // Manual override to bypass API authentication DI::app()->setIsLoggedIn(true); + $this->httpExceptionMock = $this->dice->create(HTTPException::class); + AuthTestConfig::$authenticated = true; AuthTestConfig::$user_id = 42; @@ -205,15 +213,14 @@ abstract class ApiTest extends FixtureTest $func(DI::app()); } - /** @var Database $dba */ - $dba = $this->dice->create(Database::class); + /** @var $config IManageConfigValues */ + $config = $this->dice->create(IManageConfigValues::class); - $dba->insert('addon', [ + $config->set('addons', $addon, [ 'name' => $addon, 'installed' => true, 'timestamp' => $t, 'plugin_admin' => function_exists($addon . '_addon_admin'), - 'hidden' => file_exists('addon/' . $addon . '/.hidden') ]); Addon::loadAddons(); diff --git a/tests/src/Module/Api/Friendica/DirectMessages/SearchTest.php b/tests/src/Module/Api/Friendica/DirectMessages/SearchTest.php index 09845a99b..e17afb9be 100644 --- a/tests/src/Module/Api/Friendica/DirectMessages/SearchTest.php +++ b/tests/src/Module/Api/Friendica/DirectMessages/SearchTest.php @@ -1,6 +1,6 @@ run(); + $response = (new Search($directMessage, DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); $json = $this->toJson($response); @@ -52,8 +52,8 @@ class SearchTest extends ApiTest $directMessage = new DirectMessage(new NullLogger(), DI::dba(), DI::twitterUser()); - $response = (new Search($directMessage, DI::dba(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + $response = (new Search($directMessage, DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'searchstring' => 'item_body' ]); @@ -73,8 +73,8 @@ class SearchTest extends ApiTest { $directMessage = new DirectMessage(new NullLogger(), DI::dba(), DI::twitterUser()); - $response = (new Search($directMessage, DI::dba(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + $response = (new Search($directMessage, DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'searchstring' => 'test' ]); diff --git a/tests/src/Module/Api/Friendica/NotificationTest.php b/tests/src/Module/Api/Friendica/NotificationTest.php index 3c17471b0..06191e3d3 100644 --- a/tests/src/Module/Api/Friendica/NotificationTest.php +++ b/tests/src/Module/Api/Friendica/NotificationTest.php @@ -1,6 +1,6 @@ XML; - $response = (new Notification(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'xml'])) - ->run(); + $response = (new Notification(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'xml'])) + ->run($this->httpExceptionMock); self::assertXmlStringEqualsXmlString($assertXml, (string)$response->getBody()); self::assertEquals([ @@ -78,8 +78,8 @@ XML; public function testWithJsonResult() { - $response = (new Notification(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) - ->run(); + $response = (new Notification(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) + ->run($this->httpExceptionMock); $json = $this->toJson($response); diff --git a/tests/src/Module/Api/Friendica/Photo/DeleteTest.php b/tests/src/Module/Api/Friendica/Photo/DeleteTest.php index e3e208ff0..7e3009559 100644 --- a/tests/src/Module/Api/Friendica/Photo/DeleteTest.php +++ b/tests/src/Module/Api/Friendica/Photo/DeleteTest.php @@ -1,6 +1,6 @@ expectException(BadRequestException::class); - (new Delete(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))->run(); + (new Delete(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))->run($this->httpExceptionMock); } public function testWithoutAuthenticatedUser() @@ -50,15 +50,15 @@ class DeleteTest extends ApiTest public function testWrong() { $this->expectException(BadRequestException::class); - (new Delete(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))->run(['photo_id' => 1]); + (new Delete(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))->run($this->httpExceptionMock, ['photo_id' => 1]); } public function testValidWithPost() { $this->loadFixture(__DIR__ . '/../../../../../datasets/photo/photo.fixture.php', DI::dba()); - $response = (new Delete(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + $response = (new Delete(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'photo_id' => '709057080661a283a6aa598501504178' ]); @@ -72,8 +72,8 @@ class DeleteTest extends ApiTest { $this->loadFixture(__DIR__ . '/../../../../../datasets/photo/photo.fixture.php', DI::dba()); - $response = (new Delete(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + $response = (new Delete(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'photo_id' => '709057080661a283a6aa598501504178' ]); diff --git a/tests/src/Module/Api/Friendica/Photoalbum/DeleteTest.php b/tests/src/Module/Api/Friendica/Photoalbum/DeleteTest.php index 6ce77f63a..7d483f1fd 100644 --- a/tests/src/Module/Api/Friendica/Photoalbum/DeleteTest.php +++ b/tests/src/Module/Api/Friendica/Photoalbum/DeleteTest.php @@ -1,6 +1,6 @@ expectException(BadRequestException::class); - (new Delete(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run(); + (new Delete(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); } public function testWrong() { $this->expectException(BadRequestException::class); - (new Delete(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + (new Delete(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'album' => 'album_name' ]); } @@ -57,8 +57,8 @@ class DeleteTest extends ApiTest { $this->loadFixture(__DIR__ . '/../../../../../datasets/photo/photo.fixture.php', DI::dba()); - $response = (new Delete(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + $response = (new Delete(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'album' => 'test_album'] ); diff --git a/tests/src/Module/Api/Friendica/Photoalbum/UpdateTest.php b/tests/src/Module/Api/Friendica/Photoalbum/UpdateTest.php index 5f25a62ac..4d8c7ff7f 100644 --- a/tests/src/Module/Api/Friendica/Photoalbum/UpdateTest.php +++ b/tests/src/Module/Api/Friendica/Photoalbum/UpdateTest.php @@ -1,6 +1,6 @@ expectException(BadRequestException::class); - (new Update(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run(); + (new Update(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); } public function testTooFewArgs() { $this->expectException(BadRequestException::class); - (new Update(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + (new Update(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'album' => 'album_name' ]); } @@ -55,8 +55,8 @@ class UpdateTest extends ApiTest public function testWrongUpdate() { $this->expectException(BadRequestException::class); - (new Update(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + (new Update(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'album' => 'album_name', 'album_new' => 'album_name' ]); @@ -71,8 +71,8 @@ class UpdateTest extends ApiTest { $this->loadFixture(__DIR__ . '/../../../../../datasets/photo/photo.fixture.php', DI::dba()); - $response = (new Update(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + $response = (new Update(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'album' => 'test_album', 'album_new' => 'test_album_2' ]); diff --git a/tests/src/Module/Api/GnuSocial/GnuSocial/ConfigTest.php b/tests/src/Module/Api/GnuSocial/GnuSocial/ConfigTest.php index 64d2a7782..db1607006 100644 --- a/tests/src/Module/Api/GnuSocial/GnuSocial/ConfigTest.php +++ b/tests/src/Module/Api/GnuSocial/GnuSocial/ConfigTest.php @@ -1,6 +1,6 @@ set('system', 'ssl_policy', BaseURL::SSL_POLICY_FULL); - - $response = (new Config(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run(); + $response = (new Config(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); $json = $this->toJson($response); - self::assertEquals('localhost', $json->site->server); - self::assertEquals('frio', $json->site->theme); + self::assertEquals(DI::baseUrl()->getHost(), $json->site->server); + self::assertEquals(DI::config()->get('system', 'theme'), $json->site->theme); self::assertEquals(DI::baseUrl() . '/images/friendica-64.png', $json->site->logo); self::assertTrue($json->site->fancy); - self::assertEquals('en', $json->site->language); - self::assertEquals('UTC', $json->site->timezone); + self::assertEquals(DI::config()->get('system', 'language'), $json->site->language); + self::assertEquals(DI::config()->get('system', 'default_timezone'), $json->site->timezone); self::assertEquals(200000, $json->site->textlimit); self::assertFalse($json->site->private); self::assertEquals('always', $json->site->ssl); diff --git a/tests/src/Module/Api/GnuSocial/GnuSocial/VersionTest.php b/tests/src/Module/Api/GnuSocial/GnuSocial/VersionTest.php index 175aaabda..11fa444ef 100644 --- a/tests/src/Module/Api/GnuSocial/GnuSocial/VersionTest.php +++ b/tests/src/Module/Api/GnuSocial/GnuSocial/VersionTest.php @@ -1,6 +1,6 @@ 'json'])) - ->run(); + $response = (new Version(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) + ->run($this->httpExceptionMock); self::assertEquals([ 'Content-type' => ['application/json'], diff --git a/tests/src/Module/Api/GnuSocial/Help/TestTest.php b/tests/src/Module/Api/GnuSocial/Help/TestTest.php index be0e187a6..452211bb0 100644 --- a/tests/src/Module/Api/GnuSocial/Help/TestTest.php +++ b/tests/src/Module/Api/GnuSocial/Help/TestTest.php @@ -1,6 +1,6 @@ 'json'])) - ->run(); + $response = (new Test(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) + ->run($this->httpExceptionMock); $json = $this->toJson($response); @@ -44,13 +44,13 @@ class TestTest extends ApiTest public function testXml() { - $response = (new Test(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'xml'])) - ->run(); + $response = (new Test(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'xml'])) + ->run($this->httpExceptionMock); self::assertEquals([ 'Content-type' => ['text/xml'], ICanCreateResponses::X_HEADER => ['xml'] ], $response->getHeaders()); - self::assertxml($response->getBody(), 'ok'); + self::assertXml($response->getBody(), 'ok'); } } diff --git a/tests/src/Module/Api/Mastodon/Accounts/StatusesTest.php b/tests/src/Module/Api/Mastodon/Accounts/StatusesTest.php index f905f488a..0523d04c9 100644 --- a/tests/src/Module/Api/Mastodon/Accounts/StatusesTest.php +++ b/tests/src/Module/Api/Mastodon/Accounts/StatusesTest.php @@ -1,6 +1,6 @@ run(); + $response = (new VerifyCredentials(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); $json = $this->toJson($response); diff --git a/tests/src/Module/Api/Mastodon/ConversationsTest.php b/tests/src/Module/Api/Mastodon/ConversationsTest.php index a36a84293..7b85ebb6d 100644 --- a/tests/src/Module/Api/Mastodon/ConversationsTest.php +++ b/tests/src/Module/Api/Mastodon/ConversationsTest.php @@ -1,6 +1,6 @@ markTestIncomplete('Needs mocking of whole applictaions/Apps first'); + $this->markTestIncomplete('Needs mocking of whole applications/Apps first'); // $this->useHttpMethod(Router::POST); // diff --git a/tests/src/Module/Api/Mastodon/SearchTest.php b/tests/src/Module/Api/Mastodon/SearchTest.php index c25b83fbf..1a625d9a1 100644 --- a/tests/src/Module/Api/Mastodon/SearchTest.php +++ b/tests/src/Module/Api/Mastodon/SearchTest.php @@ -1,6 +1,6 @@ 'json'])) - ->run(); + $response = (new RateLimitStatus(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) + ->run($this->httpExceptionMock); $result = $this->toJson($response); @@ -47,8 +47,8 @@ class RateLimitStatusTest extends ApiTest public function testWithXml() { - $response = (new RateLimitStatus(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'xml'])) - ->run(); + $response = (new RateLimitStatus(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'xml'])) + ->run($this->httpExceptionMock); self::assertEquals([ 'Content-type' => ['text/xml'], diff --git a/tests/src/Module/Api/Twitter/Account/UpdateProfileTest.php b/tests/src/Module/Api/Twitter/Account/UpdateProfileTest.php index d3c8f9302..71817022d 100644 --- a/tests/src/Module/Api/Twitter/Account/UpdateProfileTest.php +++ b/tests/src/Module/Api/Twitter/Account/UpdateProfileTest.php @@ -1,6 +1,6 @@ useHttpMethod(Router::POST); - $response = (new UpdateProfile(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) - ->run([ + $response = (new UpdateProfile(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) + ->run($this->httpExceptionMock, [ 'name' => 'new_name', 'description' => 'new_description' ]); diff --git a/tests/src/Module/Api/Twitter/Blocks/ListsTest.php b/tests/src/Module/Api/Twitter/Blocks/ListsTest.php index 1212a3f8e..2476315a0 100644 --- a/tests/src/Module/Api/Twitter/Blocks/ListsTest.php +++ b/tests/src/Module/Api/Twitter/Blocks/ListsTest.php @@ -1,6 +1,6 @@ run(); + $response = (new Lists(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); $json = $this->toJson($response); diff --git a/tests/src/Module/Api/Twitter/ContactEndpointMock.php b/tests/src/Module/Api/Twitter/ContactEndpointMock.php index 63d83c6cf..cf3e0fef1 100644 --- a/tests/src/Module/Api/Twitter/ContactEndpointMock.php +++ b/tests/src/Module/Api/Twitter/ContactEndpointMock.php @@ -1,6 +1,6 @@ 'json'])) - ->run(); + $response = (new All($directMessage, DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) + ->run($this->httpExceptionMock); $json = $this->toJson($response); diff --git a/tests/src/Module/Api/Twitter/DirectMessages/ConversationTest.php b/tests/src/Module/Api/Twitter/DirectMessages/ConversationTest.php index e895845aa..0dc9ba8e8 100644 --- a/tests/src/Module/Api/Twitter/DirectMessages/ConversationTest.php +++ b/tests/src/Module/Api/Twitter/DirectMessages/ConversationTest.php @@ -1,6 +1,6 @@ 'json'])) - ->run([ + $response = (new Conversation($directMessage, DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) + ->run($this->httpExceptionMock, [ 'friendica_verbose' => true, ]); diff --git a/tests/src/Module/Api/Twitter/DirectMessages/DestroyTest.php b/tests/src/Module/Api/Twitter/DirectMessages/DestroyTest.php index b9317190b..d699fb713 100644 --- a/tests/src/Module/Api/Twitter/DirectMessages/DestroyTest.php +++ b/tests/src/Module/Api/Twitter/DirectMessages/DestroyTest.php @@ -1,6 +1,6 @@ expectException(\Friendica\Network\HTTPException\BadRequestException::class); - (new Destroy(DI::dba(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) - ->run(); + (new Destroy(DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) + ->run($this->httpExceptionMock); } /** @@ -48,8 +48,8 @@ class DestroyTest extends ApiTest */ public function testApiDirectMessagesDestroyWithVerbose() { - $response = (new Destroy(DI::dba(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) - ->run([ + $response = (new Destroy(DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) + ->run($this->httpExceptionMock, [ 'friendica_verbose' => true, ]); @@ -84,8 +84,8 @@ class DestroyTest extends ApiTest public function testApiDirectMessagesDestroyWithId() { $this->expectException(\Friendica\Network\HTTPException\BadRequestException::class); - (new Destroy(DI::dba(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) - ->run([ + (new Destroy(DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) + ->run($this->httpExceptionMock, [ 'id' => 1 ]); } @@ -97,8 +97,8 @@ class DestroyTest extends ApiTest */ public function testApiDirectMessagesDestroyWithIdAndVerbose() { - $response = (new Destroy(DI::dba(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) - ->run([ + $response = (new Destroy(DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) + ->run($this->httpExceptionMock, [ 'id' => 1, 'friendica_parenturi' => 'parent_uri', 'friendica_verbose' => true, @@ -121,8 +121,8 @@ class DestroyTest extends ApiTest $ids = DBA::selectToArray('mail', ['id']); $id = $ids[0]['id']; - $response = (new Destroy(DI::dba(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) - ->run([ + $response = (new Destroy(DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) + ->run($this->httpExceptionMock, [ 'id' => $id, 'friendica_verbose' => true, ]); diff --git a/tests/src/Module/Api/Twitter/DirectMessages/InboxTest.php b/tests/src/Module/Api/Twitter/DirectMessages/InboxTest.php index cee1450cf..6aa9db5a4 100644 --- a/tests/src/Module/Api/Twitter/DirectMessages/InboxTest.php +++ b/tests/src/Module/Api/Twitter/DirectMessages/InboxTest.php @@ -1,6 +1,6 @@ 'json'])) - ->run(); + $response = (new Inbox($directMessage, DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) + ->run($this->httpExceptionMock); $json = $this->toJson($response); diff --git a/tests/src/Module/Api/Twitter/DirectMessages/NewDMTest.php b/tests/src/Module/Api/Twitter/DirectMessages/NewDMTest.php index b2bcfb37f..e0c9b070d 100644 --- a/tests/src/Module/Api/Twitter/DirectMessages/NewDMTest.php +++ b/tests/src/Module/Api/Twitter/DirectMessages/NewDMTest.php @@ -1,6 +1,6 @@ 'json'])) - ->run(); + $response = (new NewDM($directMessage, DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) + ->run($this->httpExceptionMock); self::assertEmpty((string)$response->getBody()); } @@ -70,8 +70,8 @@ class NewDMTest extends ApiTest { $directMessage = new DirectMessage(DI::logger(), DI::dba(), DI::twitterUser()); - $response = (new NewDM($directMessage, DI::dba(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) - ->run([ + $response = (new NewDM($directMessage, DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) + ->run($this->httpExceptionMock, [ 'text' => 'message_text', 'user_id' => 43 ]); @@ -88,12 +88,12 @@ class NewDMTest extends ApiTest */ public function testApiDirectMessagesNewWithScreenName() { - DI::app()->setLoggedInUserNickname('selfcontact'); + DI::session()->set('nickname', 'selfcontact'); $directMessage = new DirectMessage(DI::logger(), DI::dba(), DI::twitterUser()); - $response = (new NewDM($directMessage, DI::dba(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) - ->run([ + $response = (new NewDM($directMessage, DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) + ->run($this->httpExceptionMock, [ 'text' => 'message_text', 'user_id' => 44 ]); @@ -112,12 +112,12 @@ class NewDMTest extends ApiTest */ public function testApiDirectMessagesNewWithTitle() { - DI::app()->setLoggedInUserNickname('selfcontact'); + DI::session()->set('nickname', 'selfcontact'); $directMessage = new DirectMessage(DI::logger(), DI::dba(), DI::twitterUser()); - $response = (new NewDM($directMessage, DI::dba(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) - ->run([ + $response = (new NewDM($directMessage, DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) + ->run($this->httpExceptionMock, [ 'text' => 'message_text', 'user_id' => 44, 'title' => 'message_title', @@ -138,12 +138,12 @@ class NewDMTest extends ApiTest */ public function testApiDirectMessagesNewWithRss() { - DI::app()->setLoggedInUserNickname('selfcontact'); + DI::session()->set('nickname', 'selfcontact'); $directMessage = new DirectMessage(DI::logger(), DI::dba(), DI::twitterUser()); - $response = (new NewDM($directMessage, DI::dba(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'rss'])) - ->run([ + $response = (new NewDM($directMessage, DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'rss'])) + ->run($this->httpExceptionMock, [ 'text' => 'message_text', 'user_id' => 44, 'title' => 'message_title', diff --git a/tests/src/Module/Api/Twitter/DirectMessages/SentTest.php b/tests/src/Module/Api/Twitter/DirectMessages/SentTest.php index 9c498af5f..a2355bca9 100644 --- a/tests/src/Module/Api/Twitter/DirectMessages/SentTest.php +++ b/tests/src/Module/Api/Twitter/DirectMessages/SentTest.php @@ -1,6 +1,6 @@ 'json'])) - ->run([ + $response = (new Sent($directMessage, DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) + ->run($this->httpExceptionMock, [ 'friendica_verbose' => true, ]); @@ -58,8 +58,8 @@ class SentTest extends ApiTest { $directMessage = new DirectMessage(DI::logger(), DI::dba(), DI::twitterUser()); - $response = (new Sent($directMessage, DI::dba(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'rss'])) - ->run(); + $response = (new Sent($directMessage, DI::dba(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'rss'])) + ->run($this->httpExceptionMock); self::assertXml((string)$response->getBody(), 'direct-messages'); } diff --git a/tests/src/Module/Api/Twitter/Favorites/CreateTest.php b/tests/src/Module/Api/Twitter/Favorites/CreateTest.php index 61e235700..74f64e65e 100644 --- a/tests/src/Module/Api/Twitter/Favorites/CreateTest.php +++ b/tests/src/Module/Api/Twitter/Favorites/CreateTest.php @@ -1,6 +1,6 @@ expectException(BadRequestException::class); - (new Create(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run(); + (new Create(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); } /** @@ -57,8 +57,8 @@ class CreateTest extends ApiTest */ public function testApiFavoritesCreateDestroyWithCreateAction() { - $response = (new Create(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + $response = (new Create(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'id' => 3 ]); @@ -74,8 +74,8 @@ class CreateTest extends ApiTest */ public function testApiFavoritesCreateDestroyWithCreateActionAndRss() { - $response = (new Create(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => ICanCreateResponses::TYPE_RSS])) - ->run([ + $response = (new Create(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => ICanCreateResponses::TYPE_RSS])) + ->run($this->httpExceptionMock, [ 'id' => 3 ]); diff --git a/tests/src/Module/Api/Twitter/Favorites/DestroyTest.php b/tests/src/Module/Api/Twitter/Favorites/DestroyTest.php index bb7b54ee4..94c363abc 100644 --- a/tests/src/Module/Api/Twitter/Favorites/DestroyTest.php +++ b/tests/src/Module/Api/Twitter/Favorites/DestroyTest.php @@ -1,6 +1,6 @@ expectException(BadRequestException::class); - (new Destroy(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run(); + (new Destroy(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); } /** @@ -56,8 +56,8 @@ class DestroyTest extends ApiTest */ public function testApiFavoritesCreateDestroyWithDestroyAction() { - $response = (new Destroy(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + $response = (new Destroy(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'id' => 3 ]); diff --git a/tests/src/Module/Api/Twitter/FavoritesTest.php b/tests/src/Module/Api/Twitter/FavoritesTest.php index 6da92e667..34c344f5f 100644 --- a/tests/src/Module/Api/Twitter/FavoritesTest.php +++ b/tests/src/Module/Api/Twitter/FavoritesTest.php @@ -1,6 +1,6 @@ run([ + $response = (new Favorites(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'page' => -1, 'max_id' => 10, ]); @@ -56,9 +56,9 @@ class FavoritesTest extends ApiTest */ public function testApiFavoritesWithRss() { - $response = (new Favorites(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], [ + $response = (new Favorites(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], [ 'extension' => ICanCreateResponses::TYPE_RSS - ]))->run(); + ]))->run($this->httpExceptionMock); self::assertEquals(ICanCreateResponses::TYPE_RSS, $response->getHeaderLine(ICanCreateResponses::X_HEADER)); diff --git a/tests/src/Module/Api/Twitter/Followers/ListsTest.php b/tests/src/Module/Api/Twitter/Followers/ListsTest.php index 02e274549..e44c27005 100644 --- a/tests/src/Module/Api/Twitter/Followers/ListsTest.php +++ b/tests/src/Module/Api/Twitter/Followers/ListsTest.php @@ -1,6 +1,6 @@ run(); + $response = (new Lists(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); $json = $this->toJson($response); diff --git a/tests/src/Module/Api/Twitter/Friends/ListsTest.php b/tests/src/Module/Api/Twitter/Friends/ListsTest.php index 07fdc891f..0b2f4cd4e 100644 --- a/tests/src/Module/Api/Twitter/Friends/ListsTest.php +++ b/tests/src/Module/Api/Twitter/Friends/ListsTest.php @@ -1,6 +1,6 @@ run(); + $response = (new Lists(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); $json = $this->toJson($response); diff --git a/tests/src/Module/Api/Twitter/Friendships/IncomingTest.php b/tests/src/Module/Api/Twitter/Friendships/IncomingTest.php index 89a296b06..0b8d06980 100644 --- a/tests/src/Module/Api/Twitter/Friendships/IncomingTest.php +++ b/tests/src/Module/Api/Twitter/Friendships/IncomingTest.php @@ -1,6 +1,6 @@ run(); + $response = (new Incoming(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); $json = $this->toJson($response); diff --git a/tests/src/Module/Api/Twitter/Lists/StatusesTest.php b/tests/src/Module/Api/Twitter/Lists/StatusesTest.php index 8bc8257c0..8b6b9ed75 100644 --- a/tests/src/Module/Api/Twitter/Lists/StatusesTest.php +++ b/tests/src/Module/Api/Twitter/Lists/StatusesTest.php @@ -1,6 +1,6 @@ expectException(BadRequestException::class); - (new Statuses(DI::dba(), DI::twitterStatus(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run(); + (new Statuses(DI::dba(), DI::twitterStatus(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); } /** @@ -47,8 +47,8 @@ class StatusesTest extends ApiTest */ public function testApiListsStatusesWithListId() { - $response = (new Statuses(DI::dba(), DI::twitterStatus(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + $response = (new Statuses(DI::dba(), DI::twitterStatus(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'list_id' => 1, 'page' => -1, 'max_id' => 10 @@ -67,8 +67,8 @@ class StatusesTest extends ApiTest */ public function testApiListsStatusesWithListIdAndRss() { - $response = (new Statuses(DI::dba(), DI::twitterStatus(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'rss'])) - ->run([ + $response = (new Statuses(DI::dba(), DI::twitterStatus(), DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'rss'])) + ->run($this->httpExceptionMock, [ 'list_id' => 1 ]); diff --git a/tests/src/Module/Api/Twitter/Media/UploadTest.php b/tests/src/Module/Api/Twitter/Media/UploadTest.php index 7d6497191..7ab2bcc20 100644 --- a/tests/src/Module/Api/Twitter/Media/UploadTest.php +++ b/tests/src/Module/Api/Twitter/Media/UploadTest.php @@ -1,6 +1,6 @@ expectException(BadRequestException::class); - (new Upload(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run(); + (new Upload(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); } /** @@ -60,8 +60,8 @@ class UploadTest extends ApiTest $this->expectException(UnauthorizedException::class); AuthTestConfig::$authenticated = false; - (new Upload(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run(); + (new Upload(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); } /** @@ -79,8 +79,8 @@ class UploadTest extends ApiTest ] ]; - (new Upload(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run(); + (new Upload(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); } /** @@ -102,8 +102,8 @@ class UploadTest extends ApiTest ] ]; - $response = (new Upload(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run(); + $response = (new Upload(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); $media = $this->toJson($response); diff --git a/tests/src/Module/Api/Twitter/SavedSearchesTest.php b/tests/src/Module/Api/Twitter/SavedSearchesTest.php index 1d6e140bd..c92d949ea 100644 --- a/tests/src/Module/Api/Twitter/SavedSearchesTest.php +++ b/tests/src/Module/Api/Twitter/SavedSearchesTest.php @@ -1,6 +1,6 @@ 'json'])) - ->run(); + $response = (new SavedSearches(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json'])) + ->run($this->httpExceptionMock); $result = $this->toJson($response); diff --git a/tests/src/Module/Api/Twitter/Statuses/DestroyTest.php b/tests/src/Module/Api/Twitter/Statuses/DestroyTest.php index 68ec195ce..a08e2e5d8 100644 --- a/tests/src/Module/Api/Twitter/Statuses/DestroyTest.php +++ b/tests/src/Module/Api/Twitter/Statuses/DestroyTest.php @@ -1,6 +1,6 @@ expectException(BadRequestException::class); - (new Destroy(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run(); + (new Destroy(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); } /** @@ -71,8 +71,8 @@ class DestroyTest extends ApiTest */ public function testApiStatusesDestroyWithId() { - $response = (new Destroy(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + $response = (new Destroy(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'id' => 1 ]); diff --git a/tests/src/Module/Api/Twitter/Statuses/MentionsTest.php b/tests/src/Module/Api/Twitter/Statuses/MentionsTest.php index 0bb694528..41a1fcd4c 100644 --- a/tests/src/Module/Api/Twitter/Statuses/MentionsTest.php +++ b/tests/src/Module/Api/Twitter/Statuses/MentionsTest.php @@ -1,6 +1,6 @@ run([ + $response = (new Mentions(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'max_id' => 10 ]); @@ -54,8 +54,8 @@ class MentionsTest extends ApiTest */ public function testApiStatusesMentionsWithNegativePage() { - $response = (new Mentions(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + $response = (new Mentions(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'page' => -2 ]); @@ -86,8 +86,8 @@ class MentionsTest extends ApiTest */ public function testApiStatusesMentionsWithRss() { - $response = (new Mentions(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => ICanCreateResponses::TYPE_RSS])) - ->run([ + $response = (new Mentions(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => ICanCreateResponses::TYPE_RSS])) + ->run($this->httpExceptionMock, [ 'page' => -2 ]); diff --git a/tests/src/Module/Api/Twitter/Statuses/NetworkPublicTimelineTest.php b/tests/src/Module/Api/Twitter/Statuses/NetworkPublicTimelineTest.php index a09cd44d1..7903ac481 100644 --- a/tests/src/Module/Api/Twitter/Statuses/NetworkPublicTimelineTest.php +++ b/tests/src/Module/Api/Twitter/Statuses/NetworkPublicTimelineTest.php @@ -1,6 +1,6 @@ run([ + $response = (new NetworkPublicTimeline(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'max_id' => 10 ]); @@ -58,8 +58,8 @@ class NetworkPublicTimelineTest extends ApiTest */ public function testApiStatusesNetworkpublicTimelineWithNegativePage() { - $response = (new NetworkPublicTimeline(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + $response = (new NetworkPublicTimeline(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'page' => -2 ]); @@ -94,9 +94,9 @@ class NetworkPublicTimelineTest extends ApiTest */ public function testApiStatusesNetworkpublicTimelineWithRss() { - $response = (new NetworkPublicTimeline(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], [ + $response = (new NetworkPublicTimeline(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], [ 'extension' => ICanCreateResponses::TYPE_RSS - ]))->run([ + ]))->run($this->httpExceptionMock, [ 'page' => -2 ]); diff --git a/tests/src/Module/Api/Twitter/Statuses/RetweetTest.php b/tests/src/Module/Api/Twitter/Statuses/RetweetTest.php index f2c99baa8..3de93b096 100644 --- a/tests/src/Module/Api/Twitter/Statuses/RetweetTest.php +++ b/tests/src/Module/Api/Twitter/Statuses/RetweetTest.php @@ -1,6 +1,6 @@ expectException(BadRequestException::class); - (new Retweet(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run(); + (new Retweet(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); } /** @@ -71,8 +71,8 @@ class RetweetTest extends ApiTest */ public function testApiStatusesRepeatWithId() { - $response = (new Retweet(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + $response = (new Retweet(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'id' => 1 ]); @@ -88,8 +88,8 @@ class RetweetTest extends ApiTest */ public function testApiStatusesRepeatWithSharedId() { - $response = (new Retweet(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + $response = (new Retweet(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'id' => 5 ]); diff --git a/tests/src/Module/Api/Twitter/Statuses/ShowTest.php b/tests/src/Module/Api/Twitter/Statuses/ShowTest.php index 656aa5e91..a3ab3d30c 100644 --- a/tests/src/Module/Api/Twitter/Statuses/ShowTest.php +++ b/tests/src/Module/Api/Twitter/Statuses/ShowTest.php @@ -1,6 +1,6 @@ expectException(BadRequestException::class); - (new Show(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run(); + (new Show(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); } /** @@ -50,8 +50,8 @@ class ShowTest extends ApiTest */ public function testApiStatusesShowWithId() { - $response = (new Show(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + $response = (new Show(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'id' => 1 ]); @@ -68,8 +68,8 @@ class ShowTest extends ApiTest */ public function testApiStatusesShowWithConversation() { - $response = (new Show(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + $response = (new Show(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'id' => 1, 'conversation' => 1 ]); diff --git a/tests/src/Module/Api/Twitter/Statuses/UpdateTest.php b/tests/src/Module/Api/Twitter/Statuses/UpdateTest.php index 92ca0702e..4f1cd37ed 100644 --- a/tests/src/Module/Api/Twitter/Statuses/UpdateTest.php +++ b/tests/src/Module/Api/Twitter/Statuses/UpdateTest.php @@ -1,6 +1,6 @@ run([ + $response = (new Update(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'status' => 'Status content #friendica', 'in_reply_to_status_id' => 0, 'lat' => 48, @@ -76,8 +76,8 @@ class UpdateTest extends ApiTest */ public function testApiStatusesUpdateWithHtml() { - $response = (new Update(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + $response = (new Update(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'htmlstatus' => 'Status content', ]); diff --git a/tests/src/Module/Api/Twitter/Statuses/UserTimelineTest.php b/tests/src/Module/Api/Twitter/Statuses/UserTimelineTest.php index 078a88f96..77b51bb7e 100644 --- a/tests/src/Module/Api/Twitter/Statuses/UserTimelineTest.php +++ b/tests/src/Module/Api/Twitter/Statuses/UserTimelineTest.php @@ -1,6 +1,6 @@ run([ + $response = (new UserTimeline(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'user_id' => 42, 'max_id' => 10, 'exclude_replies' => true, @@ -61,8 +61,8 @@ class UserTimelineTest extends ApiTest */ public function testApiStatusesUserTimelineWithNegativePage() { - $response = (new UserTimeline(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + $response = (new UserTimeline(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'user_id' => 42, 'page' => -2, ]); @@ -84,9 +84,9 @@ class UserTimelineTest extends ApiTest */ public function testApiStatusesUserTimelineWithRss() { - $response = (new UserTimeline(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], [ + $response = (new UserTimeline(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], [ 'extension' => ICanCreateResponses::TYPE_RSS - ]))->run(); + ]))->run($this->httpExceptionMock); self::assertEquals(ICanCreateResponses::TYPE_RSS, $response->getHeaderLine(ICanCreateResponses::X_HEADER)); diff --git a/tests/src/Module/Api/Twitter/Users/LookupTest.php b/tests/src/Module/Api/Twitter/Users/LookupTest.php index 9b5134fd8..1228d2cbc 100644 --- a/tests/src/Module/Api/Twitter/Users/LookupTest.php +++ b/tests/src/Module/Api/Twitter/Users/LookupTest.php @@ -1,6 +1,6 @@ expectException(NotFoundException::class); - (new Lookup(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run(); + (new Lookup(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); } /** @@ -49,12 +49,12 @@ class LookupTest extends ApiTest */ public function testApiUsersLookupWithUserId() { - $respone = (new Lookup(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run([ + $response = (new Lookup(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'user_id' => static::OTHER_USER['id'] ]); - $json = $this->toJson($respone); + $json = $this->toJson($response); self::assertOtherUser($json[0]); } diff --git a/tests/src/Module/Api/Twitter/Users/SearchTest.php b/tests/src/Module/Api/Twitter/Users/SearchTest.php index 903bbe9fd..71c4e1240 100644 --- a/tests/src/Module/Api/Twitter/Users/SearchTest.php +++ b/tests/src/Module/Api/Twitter/Users/SearchTest.php @@ -1,6 +1,6 @@ run([ + $response = (new Search(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock, [ 'q' => static::OTHER_USER['name'] ]); - $json = $this->toJson($respone); + $json = $this->toJson($response); self::assertOtherUser($json[0]); } @@ -54,13 +54,13 @@ class SearchTest extends ApiTest */ public function testApiUsersSearchWithXml() { - $respone = (new Search(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], [ + $response = (new Search(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], [ 'extension' => ICanCreateResponses::TYPE_XML - ]))->run([ + ]))->run($this->httpExceptionMock, [ 'q' => static::OTHER_USER['name'] ]); - self::assertXml((string)$respone->getBody(), 'users'); + self::assertXml((string)$response->getBody(), 'users'); } /** @@ -72,7 +72,7 @@ class SearchTest extends ApiTest { $this->expectException(BadRequestException::class); - (new Search(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) - ->run(); + (new Search(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); } } diff --git a/tests/src/Module/Api/Twitter/Users/ShowTest.php b/tests/src/Module/Api/Twitter/Users/ShowTest.php index 703ad4f6c..e7fc678a8 100644 --- a/tests/src/Module/Api/Twitter/Users/ShowTest.php +++ b/tests/src/Module/Api/Twitter/Users/ShowTest.php @@ -1,6 +1,6 @@ run(); + $response = (new Show(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) + ->run($this->httpExceptionMock); $json = $this->toJson($response); @@ -56,9 +56,9 @@ class ShowTest extends ApiTest */ public function testApiUsersShowWithXml() { - $response = (new Show(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], [ + $response = (new Show(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], [ 'extension' => ICanCreateResponses::TYPE_XML - ]))->run(); + ]))->run($this->httpExceptionMock); self::assertEquals(ICanCreateResponses::TYPE_XML, $response->getHeaderLine(ICanCreateResponses::X_HEADER)); diff --git a/tests/src/Module/BaseApiTest.php b/tests/src/Module/BaseApiTest.php index f0b2b4f66..08a0794c8 100644 --- a/tests/src/Module/BaseApiTest.php +++ b/tests/src/Module/BaseApiTest.php @@ -1,6 +1,6 @@ httpExceptionMock = \Mockery::mock(HTTPException::class); + } + public function testNodeInfo110() { $response = (new NodeInfo110(DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), DI::config(), [])) - ->run(); + ->run($this->httpExceptionMock); self::assertJson($response->getBody()); self::assertEquals(['Content-type' => ['application/json'], ICanCreateResponses::X_HEADER => ['json']], $response->getHeaders()); @@ -55,7 +67,7 @@ class NodeInfoTest extends FixtureTest public function testNodeInfo120() { $response = (new NodeInfo120(DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), DI::config(), [])) - ->run(); + ->run($this->httpExceptionMock); self::assertJson($response->getBody()); self::assertEquals(['Content-type' => ['application/json; charset=utf-8'], ICanCreateResponses::X_HEADER => ['json']], $response->getHeaders()); @@ -75,7 +87,7 @@ class NodeInfoTest extends FixtureTest public function testNodeInfo210() { $response = (new NodeInfo210(DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), DI::config(), [])) - ->run(); + ->run($this->httpExceptionMock); self::assertJson($response->getBody()); self::assertEquals(['Content-type' => ['application/json; charset=utf-8'], ICanCreateResponses::X_HEADER => ['json']], $response->getHeaders()); diff --git a/tests/src/Module/Special/OptionsTest.php b/tests/src/Module/Special/OptionsTest.php index 62ad1b3de..dad0f1e5b 100644 --- a/tests/src/Module/Special/OptionsTest.php +++ b/tests/src/Module/Special/OptionsTest.php @@ -1,6 +1,6 @@ httpExceptionMock = \Mockery::mock(HTTPException::class); + } + public function testOptionsAll() { $this->useHttpMethod(Router::OPTIONS); - $response = (new Options(DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))->run(); + $response = (new Options(DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))->run($this->httpExceptionMock); self::assertEmpty((string)$response->getBody()); self::assertEquals(204, $response->getStatusCode()); @@ -51,7 +63,7 @@ class OptionsTest extends FixtureTest $response = (new Options(DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], [ 'AllowedMethods' => [Router::GET, Router::POST], - ]))->run(); + ]))->run($this->httpExceptionMock); self::assertEmpty((string)$response->getBody()); self::assertEquals(204, $response->getStatusCode()); diff --git a/tests/src/Navigation/Notifications/Entity/NotifyTest.php b/tests/src/Navigation/Notifications/Entity/NotifyTest.php new file mode 100644 index 000000000..fac8e4829 --- /dev/null +++ b/tests/src/Navigation/Notifications/Entity/NotifyTest.php @@ -0,0 +1,47 @@ +. + * + */ + +namespace Friendica\Test\src\Navigation\Notifications\Entity; + +use Friendica\Navigation\Notifications\Entity\Notify; +use Friendica\Test\FixtureTest; + +class NotifyTest extends FixtureTest +{ + public function dataFormatNotify(): array + { + return [ + 'xss-notify' => [ + 'name' => 'Whiskers', + 'message' => '{0} commented in the thread "If my username causes a pop up in a piece of software, that softwar…" from ', + 'assertion' => 'Whiskers commented in the thread "If my username causes a pop up in a piece of software, that softwar…" from <script>alert("Tek");</script>', + ], + ]; + } + + /** + * @dataProvider dataFormatNotify + */ + public function testFormatNotify(string $name, string $message, string $assertion) + { + self::assertEquals($assertion, Notify::formatMessage($name, $message)); + } +} diff --git a/tests/src/Network/HTTPClient/Client/HTTPClientTest.php b/tests/src/Network/HTTPClient/Client/HTTPClientTest.php index cbe2a8436..2e6afc841 100644 --- a/tests/src/Network/HTTPClient/Client/HTTPClientTest.php +++ b/tests/src/Network/HTTPClient/Client/HTTPClientTest.php @@ -1,6 +1,6 @@ setupHttpMockHandler(); } + protected function tearDown(): void + { + $this->tearDownHandler(); + + parent::tearDown(); + } + /** * Test for issue https://github.com/friendica/friendica/issues/10473#issuecomment-907749093 */ diff --git a/tests/src/Network/HTTPClient/Response/CurlResultTest.php b/tests/src/Network/HTTPClient/Response/CurlResultTest.php index 4a8b1fe91..e5047d6af 100644 --- a/tests/src/Network/HTTPClient/Response/CurlResultTest.php +++ b/tests/src/Network/HTTPClient/Response/CurlResultTest.php @@ -1,6 +1,6 @@ makePartial(); - $dice = $dice->addRules(include __DIR__ . '/../../../../../static/dependencies.config.php'); - - $logger = new NullLogger(); - $dice->shouldReceive('create') - ->with(LoggerInterface::class) - ->andReturn($logger); - - DI::init($dice); - } - /** * @small */ @@ -57,7 +37,7 @@ class CurlResultTest extends TestCase $body = file_get_contents(__DIR__ . '/../../../../datasets/curl/about.body'); - $curlResult = new \Friendica\Network\HTTPClient\Response\CurlResult('https://test.local', $header . $body, [ + $curlResult = new \Friendica\Network\HTTPClient\Response\CurlResult(new NullLogger(),'https://test.local', $header . $body, [ 'http_code' => 200, 'content_type' => 'text/html; charset=utf-8', 'url' => 'https://test.local' @@ -85,7 +65,7 @@ class CurlResultTest extends TestCase $body = file_get_contents(__DIR__ . '/../../../../datasets/curl/about.body'); - $curlResult = new \Friendica\Network\HTTPClient\Response\CurlResult('https://test.local/test/it', $header . $body, [ + $curlResult = new \Friendica\Network\HTTPClient\Response\CurlResult(new NullLogger(),'https://test.local/test/it', $header . $body, [ 'http_code' => 301, 'content_type' => 'text/html; charset=utf-8', 'url' => 'https://test.local/test/it', @@ -112,7 +92,7 @@ class CurlResultTest extends TestCase $body = file_get_contents(__DIR__ . '/../../../../datasets/curl/about.body'); - $curlResult = new \Friendica\Network\HTTPClient\Response\CurlResult('https://test.local/test/it', $header . $body, [ + $curlResult = new \Friendica\Network\HTTPClient\Response\CurlResult(new NullLogger(),'https://test.local/test/it', $header . $body, [ 'http_code' => 500, 'content_type' => 'text/html; charset=utf-8', 'url' => 'https://test.local/test/it', @@ -141,7 +121,7 @@ class CurlResultTest extends TestCase $body = file_get_contents(__DIR__ . '/../../../../datasets/curl/about.body'); - $curlResult = new CurlResult('https://test.local/test/it?key=value', $header . $body, [ + $curlResult = new CurlResult(new NullLogger(),'https://test.local/test/it?key=value', $header . $body, [ 'http_code' => 301, 'content_type' => 'text/html; charset=utf-8', 'url' => 'https://test.local/test/it?key=value', @@ -165,7 +145,7 @@ class CurlResultTest extends TestCase $header = file_get_contents(__DIR__ . '/../../../../datasets/curl/about.head'); $body = file_get_contents(__DIR__ . '/../../../../datasets/curl/about.body'); - $curlResult = new \Friendica\Network\HTTPClient\Response\CurlResult('https://test.local', $header . $body, [ + $curlResult = new \Friendica\Network\HTTPClient\Response\CurlResult(new NullLogger(),'https://test.local', $header . $body, [ 'http_code' => 200, 'content_type' => 'text/html; charset=utf-8', 'url' => 'https://test.local' @@ -182,7 +162,7 @@ class CurlResultTest extends TestCase $header = file_get_contents(__DIR__ . '/../../../../datasets/curl/about.head'); $body = file_get_contents(__DIR__ . '/../../../../datasets/curl/about.body'); - $curlResult = new \Friendica\Network\HTTPClient\Response\CurlResult('https://test.local', $header . $body, [ + $curlResult = new \Friendica\Network\HTTPClient\Response\CurlResult(new NullLogger(), 'https://test.local', $header . $body, [ 'http_code' => 200, 'content_type' => 'text/html; charset=utf-8', 'url' => 'https://test.local' @@ -202,7 +182,7 @@ class CurlResultTest extends TestCase $header = file_get_contents(__DIR__ . '/../../../../datasets/curl/about.head'); $body = file_get_contents(__DIR__ . '/../../../../datasets/curl/about.body'); - $curlResult = new CurlResult('https://test.local', $header . $body, [ + $curlResult = new CurlResult(new NullLogger(),'https://test.local', $header . $body, [ 'http_code' => 200, 'content_type' => 'text/html; charset=utf-8', 'url' => 'https://test.local' diff --git a/tests/src/Network/MimeTypeTest.php b/tests/src/Network/MimeTypeTest.php new file mode 100644 index 000000000..64a52d8d6 --- /dev/null +++ b/tests/src/Network/MimeTypeTest.php @@ -0,0 +1,152 @@ +. + * + */ + +namespace Friendica\Test\src\Network; + +use Friendica\Network\Entity; +use Friendica\Network\Factory; +use PHPUnit\Framework\TestCase; +use Psr\Log\NullLogger; + +class MimeTypeTest extends TestCase +{ + public function dataCreateFromContentType(): array + { + return [ + 'image/jpg' => [ + 'expected' => new Entity\MimeType('image', 'jpg'), + 'contentType' => 'image/jpg', + ], + 'image/jpg;charset=utf8' => [ + 'expected' => new Entity\MimeType('image', 'jpg', ['charset' => 'utf8']), + 'contentType' => 'image/jpg; charset=utf8', + ], + 'image/jpg; charset=utf8' => [ + 'expected' => new Entity\MimeType('image', 'jpg', ['charset' => 'utf8']), + 'contentType' => 'image/jpg; charset=utf8', + ], + 'image/jpg; charset = utf8' => [ + 'expected' => new Entity\MimeType('image', 'jpg', ['charset' => 'utf8']), + 'contentType' => 'image/jpg; charset=utf8', + ], + 'image/jpg; charset="utf8"' => [ + 'expected' => new Entity\MimeType('image', 'jpg', ['charset' => 'utf8']), + 'contentType' => 'image/jpg; charset="utf8"', + ], + 'image/jpg; charset="\"utf8\""' => [ + 'expected' => new Entity\MimeType('image', 'jpg', ['charset' => '"utf8"']), + 'contentType' => 'image/jpg; charset="\"utf8\""', + ], + 'image/jpg; charset="\"utf8\" (comment)"' => [ + 'expected' => new Entity\MimeType('image', 'jpg', ['charset' => '"utf8"']), + 'contentType' => 'image/jpg; charset="\"utf8\" (comment)"', + ], + 'image/jpg; charset=utf8 (comment)' => [ + 'expected' => new Entity\MimeType('image', 'jpg', ['charset' => 'utf8']), + 'contentType' => 'image/jpg; charset="utf8 (comment)"', + ], + 'image/jpg; charset=utf8; attribute=value' => [ + 'expected' => new Entity\MimeType('image', 'jpg', ['charset' => 'utf8', 'attribute' => 'value']), + 'contentType' => 'image/jpg; charset=utf8; attribute=value', + ], + 'empty' => [ + 'expected' => new Entity\MimeType('unkn', 'unkn'), + 'contentType' => '', + ], + 'unknown' => [ + 'expected' => new Entity\MimeType('unkn', 'unkn'), + 'contentType' => 'unknown', + ], + ]; + } + + /** + * @dataProvider dataCreateFromContentType + * @param Entity\MimeType $expected + * @param string $contentType + * @return void + */ + public function testCreateFromContentType(Entity\MimeType $expected, string $contentType) + { + $factory = new Factory\MimeType(new NullLogger()); + + $this->assertEquals($expected, $factory->createFromContentType($contentType)); + } + + public function dataToString(): array + { + return [ + 'image/jpg' => [ + 'expected' => 'image/jpg', + 'mimeType' => new Entity\MimeType('image', 'jpg'), + ], + 'image/jpg;charset=utf8' => [ + 'expected' => 'image/jpg; charset=utf8', + 'mimeType' => new Entity\MimeType('image', 'jpg', ['charset' => 'utf8']), + ], + 'image/jpg; charset="\"utf8\""' => [ + 'expected' => 'image/jpg; charset="\"utf8\""', + 'mimeType' => new Entity\MimeType('image', 'jpg', ['charset' => '"utf8"']), + ], + 'image/jpg; charset=utf8; attribute=value' => [ + 'expected' => 'image/jpg; charset=utf8; attribute=value', + 'mimeType' => new Entity\MimeType('image', 'jpg', ['charset' => 'utf8', 'attribute' => 'value']), + ], + 'empty' => [ + 'expected' => 'unkn/unkn', + 'mimeType' => new Entity\MimeType('unkn', 'unkn'), + ], + ]; + } + + /** + * @dataProvider dataToString + * @param string $expected + * @param Entity\MimeType $mimeType + * @return void + */ + public function testToString(string $expected, Entity\MimeType $mimeType) + { + $this->assertEquals($expected, $mimeType->__toString()); + } + + public function dataRoundtrip(): array + { + return [ + ['image/jpg'], + ['image/jpg; charset=utf8'], + ['image/jpg; charset="\"utf8\""'], + ['image/jpg; charset=utf8; attribute=value'], + ]; + } + + /** + * @dataProvider dataRoundtrip + * @param string $expected + * @return void + */ + public function testRoundtrip(string $expected) + { + $factory = new Factory\MimeType(new NullLogger()); + + $this->assertEquals($expected, $factory->createFromContentType($expected)->__toString()); + } +} diff --git a/tests/src/Network/ProbeTest.php b/tests/src/Network/ProbeTest.php index ba177ef84..d9c0f074e 100644 --- a/tests/src/Network/ProbeTest.php +++ b/tests/src/Network/ProbeTest.php @@ -1,6 +1,6 @@ setupHttpMockHandler(); } + protected function tearDown(): void + { + $this->tearDownHandler(); + + parent::tearDown(); + } + const TEMPLATENOBASE = ' diff --git a/tests/src/Object/Log/ParsedLogLineTest.php b/tests/src/Object/Log/ParsedLogLineTest.php index ed50b8a70..1bebd34bd 100644 --- a/tests/src/Object/Log/ParsedLogLineTest.php +++ b/tests/src/Object/Log/ParsedLogLineTest.php @@ -1,6 +1,6 @@ '2021-05-24T15:40:01Z', 'context' => 'worker', 'level' => 'WARNING', - 'message' => 'Spool file does does not start with "item-"', + 'message' => 'Spool file does not start with "item-"', 'data' => '{"file":".","worker_id":"560c8b6","worker_cmd":"SpoolPost"}', 'source' => '{"file":"SpoolPost.php","line":40,"function":"execute","uid":"fd8c37","process_id":20846}', ] diff --git a/tests/src/Profile/ProfileField/Entity/ProfileFieldTest.php b/tests/src/Profile/ProfileField/Entity/ProfileFieldTest.php index 665baf295..1abcecb79 100644 --- a/tests/src/Profile/ProfileField/Entity/ProfileFieldTest.php +++ b/tests/src/Profile/ProfileField/Entity/ProfileFieldTest.php @@ -1,6 +1,6 @@ . + * + */ + +namespace Friendica\Test\src\Protocol\HTTP; + +use Friendica\Protocol\HTTP\MediaType; + +class MediaTypeTest extends \PHPUnit\Framework\TestCase +{ + public function dataValid(): array + { + return [ + 'HTML UTF-8' => [ + 'expected' => new MediaType('text', 'html', ['charset' => 'utf-8']), + 'content-type' => 'text/html; charset=utf-8', + ], + 'HTML Northern Europe' => [ + 'expected' => new MediaType('text', 'html', ['charset' => 'ISO-8859-4']), + 'content-type' => 'text/html; charset=ISO-8859-4', + ], + 'multipart/form-data' => [ + 'expected' => new MediaType('multipart', 'form-data', ['boundary' => '---------------------------974767299852498929531610575']), + 'content-type' => 'multipart/form-data; boundary=---------------------------974767299852498929531610575', + ], + 'Multiple parameters' => [ + 'expected' => new MediaType('application', 'octet-stream', ['charset' => 'ISO-8859-4', 'another' => 'parameter']), + 'content-type' => 'application/octet-stream; charset=ISO-8859-4 ; another=parameter', + ], + 'No parameters' => [ + 'expected' => new MediaType('application', 'vnd.adobe.air-application-installer-package+zip'), + 'content-type' => 'application/vnd.adobe.air-application-installer-package+zip', + ], + 'No parameters colon' => [ + 'expected' => new MediaType('application', 'vnd.adobe.air-application-installer-package+zip'), + 'content-type' => 'application/vnd.adobe.air-application-installer-package+zip;', + ], + 'No parameters space colon' => [ + 'expected' => new MediaType('application', 'vnd.adobe.air-application-installer-package+zip'), + 'content-type' => 'application/vnd.adobe.air-application-installer-package+zip ;', + ], + 'No parameters space colon space' => [ + 'expected' => new MediaType('application', 'vnd.adobe.air-application-installer-package+zip'), + 'content-type' => 'application/vnd.adobe.air-application-installer-package+zip ; ', + ], + 'Parameter quoted string' => [ + 'expected' => new MediaType('text', 'html', ['parameter' => 'Quoted string with a space and a "double-quote"']), + 'content-type' => 'text/html; parameter="Quoted string with a space and a \"double-quote\""', + ] + ]; + } + + /** + * @dataProvider dataValid + * + * @param MediaType $expected + * @param string $contentType + * @return void + */ + public function testValid(MediaType $expected, string $contentType) + { + $this->assertEquals($expected, MediaType::fromContentType($contentType)); + } + + public function dataInvalid(): array + { + return [ + 'no slash' => ['application'], + 'two slashes' => ['application/octet/stream'], + 'parameter no value' => ['application/octet-stream ; parameter'], + 'parameter too many values' => ['application/octet-stream ; parameter=value1=value2'], + 'type non token' => ['appli"cation/octet-stream'], + 'subtype non token' => ['application/octet\-stream'], + 'parameter name non token' => ['application/octet-stream; para"meter=value'], + 'parameter value invalid' => ['application/octet-stream; parameter="value"value'], + ]; + } + + /** + * @dataProvider dataInvalid + * + * @param string $contentType + * @return void + */ + public function testInvalid(string $contentType) + { + $this->expectException(\InvalidArgumentException::class); + + MediaType::fromContentType($contentType); + } + + public function dataToString(): array + { + return [ + 'HTML UTF-8' => [ + 'content-type' => 'text/html; charset=utf-8', + 'mediaType' => new MediaType('text', 'html', ['charset' => 'utf-8']), + ], + 'HTML Northern Europe' => [ + 'expected' => 'text/html; charset=ISO-8859-4', + 'mediaType' => new MediaType('text', 'html', ['charset' => 'ISO-8859-4']), + ], + 'multipart/form-data' => [ + 'expected' => 'multipart/form-data; boundary=---------------------------974767299852498929531610575', + 'mediaType' => new MediaType('multipart', 'form-data', ['boundary' => '---------------------------974767299852498929531610575']), + ], + 'Multiple parameters' => [ + 'expected' => 'application/octet-stream; charset=ISO-8859-4; another=parameter', + 'mediaType' => new MediaType('application', 'octet-stream', ['charset' => 'ISO-8859-4', 'another' => 'parameter']), + ], + 'No parameters' => [ + 'expected' => 'application/vnd.adobe.air-application-installer-package+zip', + 'mediaType' => new MediaType('application', 'vnd.adobe.air-application-installer-package+zip'), + ], + 'Parameter quoted string' => [ + 'expected' => 'text/html; parameter="Quoted string with a space and a \"double-quote\""', + 'mediaType' => new MediaType('text', 'html', ['parameter' => 'Quoted string with a space and a "double-quote"']), + ], + ]; + } + + /** + * @dataProvider dataToString + * + * @param string $expected + * @param MediaType $mediaType + * @return void + */ + public function testToString(string $expected, MediaType $mediaType) + { + $this->assertEquals($expected, $mediaType->__toString()); + } +} diff --git a/tests/src/Protocol/SalmonTest.php b/tests/src/Protocol/SalmonTest.php new file mode 100644 index 000000000..3583a6e85 --- /dev/null +++ b/tests/src/Protocol/SalmonTest.php @@ -0,0 +1,105 @@ +. + * + */ + +namespace Friendica\Test\src\Protocol; + +use Friendica\Protocol\Salmon; + +class SalmonTest extends \PHPUnit\Framework\TestCase +{ + public function dataMagic(): array + { + return [ + 'salmon' => [ + 'magic' => file_get_contents(__DIR__ . '/../../datasets/crypto/rsa/salmon-public-magic'), + 'pem' => file_get_contents(__DIR__ . '/../../datasets/crypto/rsa/salmon-public-pem'), + ], + ]; + } + + /** + * @dataProvider dataMagic + * + * @param $magic + * @param $pem + * @return void + * @throws \Exception + */ + public function testSalmonKey($magic, $pem) + { + $this->assertEquals($magic, Salmon::salmonKey($pem)); + } + + /** + * @dataProvider dataMagic + * + * @param $magic + * @param $pem + * @return void + */ + public function testMagicKeyToPem($magic, $pem) + { + $this->assertEquals($pem, Salmon::magicKeyToPem($magic)); + } + + public function dataMagicFailure(): array + { + return [ + 'empty string' => [ + 'magic' => '', + ], + 'Missing algo' => [ + 'magic' => 'tvsoBZbLUvqWs-0d8C5hVQLjLCjjxyZb17Rm8_9FDqBYUigBSFDcJCzG27FM-zuddwpgJB0vDuPKQnt59kKRsw.AQAB', + ], + 'Missing modulus' => [ + 'magic' => 'RSA.AQAB', + ], + 'Missing exponent' => [ + 'magic' => 'RSA.tvsoBZbLUvqWs-0d8C5hVQLjLCjjxyZb17Rm8_9FDqBYUigBSFDcJCzG27FM-zuddwpgJB0vDuPKQnt59kKRsw', + ], + 'Missing key parts' => [ + 'magic' => 'RSA.', + ], + 'Too many parts' => [ + 'magic' => 'RSA.tvsoBZbLUvqWs-0d8C5hVQLjLCjjxyZb17Rm8_9FDqBYUigBSFDcJCzG27FM-zuddwpgJB0vDuPKQnt59kKRsw.AQAB.AQAB', + ], + 'Wrong encoding' => [ + 'magic' => 'RSA.tvsoBZbLUvqWs-0d8C5hVQLjLCjjxyZb17Rm8/9FDqBYUigBSFDcJCzG27FM+zuddwpgJB0vDuPKQnt59kKRsw.AQAB', + ], + 'Wrong algo' => [ + 'magic' => 'ECDSA.tvsoBZbLUvqWs-0d8C5hVQLjLCjjxyZb17Rm8_9FDqBYUigBSFDcJCzG27FM-zuddwpgJB0vDuPKQnt59kKRsw.AQAB', + ], + ]; + } + + /** + * @dataProvider dataMagicFailure + * + * @param $magic + * @return void + */ + public function testMagicKeyToPemFailure($magic) + { + $this->expectException(\Throwable::class); + + Salmon::magicKeyToPem($magic); + } +} diff --git a/tests/src/Protocol/WebFingerUriTest.php b/tests/src/Protocol/WebFingerUriTest.php new file mode 100644 index 000000000..9217ea16a --- /dev/null +++ b/tests/src/Protocol/WebFingerUriTest.php @@ -0,0 +1,135 @@ +. + * + * Main database structure configuration file. + * + * Here are described all the tables, fields and indexes Friendica needs to work. + * The entry order is mostly alphabetic - with the exception of tables that are used in foreign keys. + * + * Syntax (braces indicate optionale values): + * "" => [ + * "comment" => "Description of the table", + * "fields" => [ + * "" => [ + * "type" => "{()} ", + * "not null" => 0|1, + * {"extra" => "auto_increment",} + * {"default" => "",} + * {"default" => NULL_DATE,} (for datetime fields) + * {"primary" => "1",} + * {"foreign|relation" => ["" => ""],} + * "comment" => "Description of the fields" + * ], + * ... + * ], + * "indexes" => [ + * "PRIMARY" => ["", ...], + * "" => [{"UNIQUE",} "{()}", ...] + * ... + * ], + * ], + * + * Whenever possible prefer "foreign" before "relation" with the foreign keys. + * "foreign" adds true foreign keys on the database level, while "relation" is just an indicator of a table relation without any consequences + * + * If you need to make any change, make sure to increment the DB_UPDATE_VERSION constant value below. + * + */ + +namespace Friendica\Test\src\Protocol; + +use Friendica\Protocol\WebFingerUri; +use PHPUnit\Framework\TestCase; + +class WebFingerUriTest extends TestCase +{ + public function dataFromString(): array + { + return [ + 'long' => [ + 'expectedLong' => 'acct:selma@www.example.com:8080/friend', + 'expectedShort' => 'selma@www.example.com:8080/friend', + 'input' => 'acct:selma@www.example.com:8080/friend', + ], + 'short' => [ + 'expectedLong' => 'acct:selma@www.example.com:8080/friend', + 'expectedShort' => 'selma@www.example.com:8080/friend', + 'input' => 'selma@www.example.com:8080/friend', + ], + 'minimal' => [ + 'expectedLong' => 'acct:bob@example.com', + 'expectedShort' => 'bob@example.com', + 'input' => 'bob@example.com', + ], + 'acct:' => [ + 'expectedLong' => 'acct:alice@example.acct:90', + 'expectedShort' => 'alice@example.acct:90', + 'input' => 'alice@example.acct:90', + ], + ]; + } + + /** + * @dataProvider dataFromString + * @param string $expectedLong + * @param string $expectedShort + * @param string $input + * @return void + */ + public function testFromString(string $expectedLong, string $expectedShort, string $input) + { + $uri = WebFingerUri::fromString($input); + + $this->assertEquals($expectedLong, $uri->getLongForm()); + $this->assertEquals($expectedShort, $uri->getShortForm()); + } + + public function dataFromStringFailure() + { + return [ + 'missing user' => [ + 'input' => 'example.com', + ], + 'missing user @' => [ + 'input' => '@example.com', + ], + 'missing host' => [ + 'input' => 'alice', + ], + 'missing host @' => [ + 'input' => 'alice@', + ], + 'missing everything' => [ + 'input' => '', + ], + ]; + } + + /** + * @dataProvider dataFromStringFailure + * @param string $input + * @return void + */ + public function testFromStringFailure(string $input) + { + $this->expectException(\InvalidArgumentException::class); + + WebFingerUri::fromString($input); + } +} diff --git a/tests/src/Security/BasicAuthTest.php b/tests/src/Security/BasicAuthTest.php index 45d4d7c95..be3dacd9b 100644 --- a/tests/src/Security/BasicAuthTest.php +++ b/tests/src/Security/BasicAuthTest.php @@ -1,6 +1,6 @@ [ - 'input' => '<1><2><3><' . Group::FOLLOWERS . '><' . Group::MUTUALS . '>', - 'assert' => ['1', '2', '3', Group::FOLLOWERS, Group::MUTUALS], + 'input' => '<1><2><3><' . Circle::FOLLOWERS . '><' . Circle::MUTUALS . '>', + 'assert' => ['1', '2', '3', Circle::FOLLOWERS, Circle::MUTUALS], ], 'nigNumber' => [ 'input' => '<1><' . PHP_INT_MAX . '><15>', @@ -128,12 +128,12 @@ class ACLFormaterTest extends TestCase $aclFormatter = new ACLFormatter(); $allow_people = $aclFormatter->expand(); - $allow_groups = $aclFormatter->expand(); + $allow_circles = $aclFormatter->expand(); self::assertEmpty($aclFormatter->expand(null)); self::assertEmpty($aclFormatter->expand()); - $recipients = array_unique(array_merge($allow_people, $allow_groups)); + $recipients = array_unique(array_merge($allow_people, $allow_circles)); self::assertEmpty($recipients); } @@ -165,13 +165,13 @@ class ACLFormaterTest extends TestCase 'input' => ["<40195>"], 'assert' => "<40195>", ], - Group::FOLLOWERS => [ - 'input' => [Group::FOLLOWERS, 1], - 'assert' => '<' . Group::FOLLOWERS . '><1>', + Circle::FOLLOWERS => [ + 'input' => [Circle::FOLLOWERS, 1], + 'assert' => '<' . Circle::FOLLOWERS . '><1>', ], - Group::MUTUALS => [ - 'input' => [Group::MUTUALS, 1], - 'assert' => '<' . Group::MUTUALS . '><1>', + Circle::MUTUALS => [ + 'input' => [Circle::MUTUALS, 1], + 'assert' => '<' . Circle::MUTUALS . '><1>', ], 'wrong-angle-brackets' => [ 'input' => ["","<123>"], diff --git a/tests/src/Util/ArraysTest.php b/tests/src/Util/ArraysTest.php index 2dabfd89c..0c992ef25 100644 --- a/tests/src/Util/ArraysTest.php +++ b/tests/src/Util/ArraysTest.php @@ -1,6 +1,6 @@ expectException(\Exception::class); $this->expectExceptionMessageMatches("/(.*) is not a valid basepath/"); - + $basepath = new BasePath('/now23452sgfgas', []); $basepath->getPath(); } diff --git a/tests/src/Util/BaseURLTest.php b/tests/src/Util/BaseURLTest.php deleted file mode 100644 index 0702f88b4..000000000 --- a/tests/src/Util/BaseURLTest.php +++ /dev/null @@ -1,562 +0,0 @@ -. - * - */ - -namespace Friendica\Test\src\Util; - -use Friendica\App\BaseURL; -use Friendica\Core\Config\Capability\IManageConfigValues; -use Friendica\Test\MockedTest; - -class BaseURLTest extends MockedTest -{ - public function dataDefault() - { - return [ - 'null' => [ - 'server' => [], - 'input' => [ - 'hostname' => null, - 'urlPath' => null, - 'sslPolicy' => null, - 'url' => null, - ], - 'assert' => [ - 'hostname' => '', - 'urlPath' => '', - 'sslPolicy' => BaseURL::DEFAULT_SSL_SCHEME, - 'url' => 'http://', - 'scheme' => 'http', - ], - ], - 'WithSubDirectory' => [ - 'server' => [ - 'SERVER_NAME' => 'friendica.local', - 'REDIRECT_URI' => 'test/module/more', - 'QUERY_STRING' => 'module/more', - ], - 'input' => [ - 'hostname' => null, - 'urlPath' => null, - 'sslPolicy' => null, - 'url' => null, - ], - 'assert' => [ - 'hostname' => 'friendica.local', - 'urlPath' => 'test', - 'sslPolicy' => BaseURL::DEFAULT_SSL_SCHEME, - 'url' => 'http://friendica.local/test', - 'scheme' => 'http', - ], - ], - 'input' => [ - 'server' => [], - 'input' => [ - 'hostname' => 'friendica.local', - 'urlPath' => 'test', - 'sslPolicy' => BaseURL::SSL_POLICY_FULL, - 'url' => 'http://friendica.local/test', - ], - 'assert' => [ - 'hostname' => 'friendica.local', - 'urlPath' => 'test', - 'sslPolicy' => BaseURL::SSL_POLICY_FULL, - 'url' => 'http://friendica.local/test', - 'scheme' => 'http', - ], - ], - 'WithHttpsScheme' => [ - 'server' => [ - 'SERVER_NAME' => 'friendica.local', - 'REDIRECT_URI' => 'test/module/more', - 'QUERY_STRING' => 'module/more', - 'HTTPS' => true, - ], - 'input' => [ - 'hostname' => null, - 'urlPath' => null, - 'sslPolicy' => null, - 'url' => null, - ], - 'assert' => [ - 'hostname' => 'friendica.local', - 'urlPath' => 'test', - 'sslPolicy' => BaseURL::SSL_POLICY_FULL, - 'url' => 'https://friendica.local/test', - 'scheme' => 'https', - ], - ], - 'WithoutQueryString' => [ - 'server' => [ - 'SERVER_NAME' => 'friendica.local', - 'REDIRECT_URI' => 'test/more', - 'HTTPS' => true, - ], - 'input' => [ - 'hostname' => null, - 'urlPath' => null, - 'sslPolicy' => null, - 'url' => null, - ], - 'assert' => [ - 'hostname' => 'friendica.local', - 'urlPath' => 'test/more', - 'sslPolicy' => BaseURL::SSL_POLICY_FULL, - 'url' => 'https://friendica.local/test/more', - 'scheme' => 'https', - ], - ], - 'WithPort' => [ - 'server' => [ - 'SERVER_NAME' => 'friendica.local', - 'SERVER_PORT' => '1234', - 'REDIRECT_URI' => 'test/more', - 'HTTPS' => true, - ], - 'input' => [ - 'hostname' => null, - 'urlPath' => null, - 'sslPolicy' => null, - 'url' => null, - ], - 'assert' => [ - 'hostname' => 'friendica.local:1234', - 'urlPath' => 'test/more', - 'sslPolicy' => BaseURL::SSL_POLICY_FULL, - 'url' => 'https://friendica.local:1234/test/more', - 'scheme' => 'https', - ], - ], - 'With443Port' => [ - 'server' => [ - 'SERVER_NAME' => 'friendica.local', - 'SERVER_PORT' => '443', - 'REDIRECT_URI' => 'test/more', - ], - 'input' => [ - 'hostname' => null, - 'urlPath' => null, - 'sslPolicy' => null, - 'url' => null, - ], - 'assert' => [ - 'hostname' => 'friendica.local', - 'urlPath' => 'test/more', - 'sslPolicy' => BaseURL::SSL_POLICY_FULL, - 'url' => 'https://friendica.local/test/more', - 'scheme' => 'https', - ], - ], - 'With80Port' => [ - 'server' => [ - 'SERVER_NAME' => 'friendica.local', - 'SERVER_PORT' => '80', - 'REDIRECT_URI' => 'test/more', - ], - 'input' => [ - 'hostname' => null, - 'urlPath' => null, - 'sslPolicy' => null, - 'url' => null, - ], - 'assert' => [ - 'hostname' => 'friendica.local', - 'urlPath' => 'test/more', - 'sslPolicy' => BaseURL::DEFAULT_SSL_SCHEME, - 'url' => 'http://friendica.local/test/more', - 'scheme' => 'http', - ], - ], - ]; - } - - /** - * Test the default config determination - * @dataProvider dataDefault - */ - public function testCheck($server, $input, $assert) - { - $configMock = \Mockery::mock(IManageConfigValues::class); - $configMock->shouldReceive('get')->with('config', 'hostname')->andReturn($input['hostname']); - $configMock->shouldReceive('get')->with('system', 'urlpath')->andReturn($input['urlPath']); - $configMock->shouldReceive('get')->with('system', 'ssl_policy')->andReturn($input['sslPolicy']); - $configMock->shouldReceive('get')->with('system', 'url')->andReturn($input['url']); - - // If we don't have an urlPath as an input, we assert it, we will save it to the DB for the next time - if (!isset($input['urlPath']) && isset($assert['urlPath'])) { - $configMock->shouldReceive('set')->with('system', 'urlpath', $assert['urlPath'])->once(); - } - - // If we don't have the ssl_policy as an input, we assert it, we will save it to the DB for the next time - if (!isset($input['sslPolicy']) && isset($assert['sslPolicy'])) { - $configMock->shouldReceive('set')->with('system', 'ssl_policy', $assert['sslPolicy'])->once(); - } - - // If we don't have the hostname as an input, we assert it, we will save it to the DB for the next time - if (empty($input['hostname']) && !empty($assert['hostname'])) { - $configMock->shouldReceive('set')->with('config', 'hostname', $assert['hostname'])->once(); - } - - // If we don't have an URL at first, but we assert it, we will save it to the DB for the next time - if (empty($input['url']) && !empty($assert['url'])) { - $configMock->shouldReceive('set')->with('system', 'url', $assert['url'])->once(); - } - - $baseUrl = new BaseURL($configMock, $server); - - self::assertEquals($assert['hostname'], $baseUrl->getHostname()); - self::assertEquals($assert['urlPath'], $baseUrl->getUrlPath()); - self::assertEquals($assert['sslPolicy'], $baseUrl->getSSLPolicy()); - self::assertEquals($assert['scheme'], $baseUrl->getScheme()); - self::assertEquals($assert['url'], $baseUrl->get()); - } - - public function dataSave() - { - return [ - 'default' => [ - 'input' => [ - 'hostname' => 'friendica.old', - 'urlPath' => 'is/old/path', - 'sslPolicy' => BaseURL::DEFAULT_SSL_SCHEME, - 'url' => 'http://friendica.old/is/old/path', - 'force_ssl' => true, - ], - 'save' => [ - 'hostname' => 'friendica.local', - 'urlPath' => 'new/path', - 'sslPolicy' => BaseURL::SSL_POLICY_FULL, - ], - 'url' => 'https://friendica.local/new/path', - ], - 'null' => [ - 'input' => [ - 'hostname' => 'friendica.old', - 'urlPath' => 'is/old/path', - 'sslPolicy' => BaseURL::DEFAULT_SSL_SCHEME, - 'url' => 'http://friendica.old/is/old/path', - 'force_ssl' => true, - ], - 'save' => [ - 'hostname' => null, - 'urlPath' => null, - 'sslPolicy' => null, - ], - 'url' => 'http://friendica.old/is/old/path', - ], - 'changeHostname' => [ - 'input' => [ - 'hostname' => 'friendica.old', - 'urlPath' => 'is/old/path', - 'sslPolicy' => BaseURL::DEFAULT_SSL_SCHEME, - 'url' => 'http://friendica.old/is/old/path', - 'force_ssl' => true, - ], - 'save' => [ - 'hostname' => 'friendica.local', - 'urlPath' => null, - 'sslPolicy' => null, - ], - 'url' => 'http://friendica.local/is/old/path', - ], - 'changeUrlPath' => [ - 'input' => [ - 'hostname' => 'friendica.old', - 'urlPath' => 'is/old/path', - 'sslPolicy' => BaseURL::DEFAULT_SSL_SCHEME, - 'url' => 'http://friendica.old/is/old/path', - 'force_ssl' => true, - ], - 'save' => [ - 'hostname' => null, - 'urlPath' => 'new/path', - 'sslPolicy' => null, - ], - 'url' => 'http://friendica.old/new/path', - ], - 'changeSSLPolicy' => [ - 'input' => [ - 'hostname' => 'friendica.old', - 'urlPath' => 'is/old/path', - 'sslPolicy' => BaseURL::DEFAULT_SSL_SCHEME, - 'url' => 'http://friendica.old/is/old/path', - 'force_ssl' => true, - ], - 'save' => [ - 'hostname' => null, - 'urlPath' => null, - 'sslPolicy' => BaseURL::SSL_POLICY_FULL, - ], - 'url' => 'https://friendica.old/is/old/path', - ], - ]; - } - - /** - * Test the save() method - * @dataProvider dataSave - */ - public function testSave($input, $save, $url) - { - $configMock = \Mockery::mock(IManageConfigValues::class); - $configMock->shouldReceive('get')->with('config', 'hostname')->andReturn($input['hostname']); - $configMock->shouldReceive('get')->with('system', 'urlpath')->andReturn($input['urlPath']); - $configMock->shouldReceive('get')->with('system', 'ssl_policy')->andReturn($input['sslPolicy']); - $configMock->shouldReceive('get')->with('system', 'url')->andReturn($input['url']); - $configMock->shouldReceive('get')->with('system', 'force_ssl')->andReturn($input['force_ssl']); - - $baseUrl = new BaseURL($configMock, []); - - if (isset($save['hostname'])) { - $configMock->shouldReceive('set')->with('config', 'hostname', $save['hostname'])->andReturn(true)->once(); - } - - if (isset($save['urlPath'])) { - $configMock->shouldReceive('set')->with('system', 'urlpath', $save['urlPath'])->andReturn(true)->once(); - } - - if (isset($save['sslPolicy'])) { - $configMock->shouldReceive('set')->with('system', 'ssl_policy', $save['sslPolicy'])->andReturn(true)->once(); - } - - $configMock->shouldReceive('set')->with('system', 'url', $url)->andReturn(true)->once(); - - $baseUrl->save($save['hostname'], $save['sslPolicy'], $save['urlPath']); - - self::assertEquals($url, $baseUrl->get()); - } - - /** - * Test the saveByUrl() method - * @dataProvider dataSave - * - * @param $input - * @param $save - * @param $url - */ - public function testSaveByUrl($input, $save, $url) - { - $configMock = \Mockery::mock(IManageConfigValues::class); - $configMock->shouldReceive('get')->with('config', 'hostname')->andReturn($input['hostname']); - $configMock->shouldReceive('get')->with('system', 'urlpath')->andReturn($input['urlPath']); - $configMock->shouldReceive('get')->with('system', 'ssl_policy')->andReturn($input['sslPolicy']); - $configMock->shouldReceive('get')->with('system', 'url')->andReturn($input['url']); - $configMock->shouldReceive('get')->with('system', 'force_ssl')->andReturn($input['force_ssl']); - - $baseUrl = new BaseURL($configMock, []); - - if (isset($save['hostname'])) { - $configMock->shouldReceive('set')->with('config', 'hostname', $save['hostname'])->andReturn(true)->once(); - } - - if (isset($save['urlPath'])) { - $configMock->shouldReceive('set')->with('system', 'urlpath', $save['urlPath'])->andReturn(true)->once(); - } - - if (isset($save['sslPolicy'])) { - $configMock->shouldReceive('set')->with('system', 'ssl_policy', $save['sslPolicy'])->andReturn(true)->once(); - } - - $configMock->shouldReceive('set')->with('system', 'url', $url)->andReturn(true)->once(); - - $baseUrl->saveByURL($url); - - self::assertEquals($url, $baseUrl->get()); - } - - public function dataGetBaseUrl() - { - return [ - 'default' => [ - 'sslPolicy' => BaseURL::DEFAULT_SSL_SCHEME, - 'ssl' => false, - 'url' => 'http://friendica.local/new/test', - 'assert' => 'http://friendica.local/new/test', - ], - 'DefaultWithSSL' => [ - 'sslPolicy' => BaseURL::DEFAULT_SSL_SCHEME, - 'ssl' => true, - 'url' => 'http://friendica.local/new/test', - 'assert' => 'https://friendica.local/new/test', - ], - 'SSLFullWithSSL' => [ - 'sslPolicy' => BaseURL::SSL_POLICY_FULL, - 'ssl' => true, - 'url' => 'http://friendica.local/new/test', - 'assert' => 'http://friendica.local/new/test', - ], - 'SSLFullWithoutSSL' => [ - 'sslPolicy' => BaseURL::SSL_POLICY_FULL, - 'ssl' => false, - 'url' => 'https://friendica.local/new/test', - 'assert' => 'https://friendica.local/new/test', - ], - 'NoSSLWithSSL' => [ - 'sslPolicy' => BaseURL::SSL_POLICY_NONE, - 'ssl' => true, - 'url' => 'http://friendica.local/new/test', - 'assert' => 'http://friendica.local/new/test', - ], - 'NoSSLWithoutSSL' => [ - 'sslPolicy' => BaseURL::SSL_POLICY_NONE, - 'ssl' => false, - 'url' => 'http://friendica.local/new/test', - 'assert' => 'http://friendica.local/new/test', - ], - ]; - } - - /** - * Test the get() method - * @dataProvider dataGetBaseUrl - */ - public function testGetURL($sslPolicy, $ssl, $url, $assert) - { - $configMock = \Mockery::mock(IManageConfigValues::class); - $configMock->shouldReceive('get')->with('config', 'hostname')->andReturn('friendica.local'); - $configMock->shouldReceive('get')->with('system', 'urlpath')->andReturn('new/test'); - $configMock->shouldReceive('get')->with('system', 'ssl_policy')->andReturn($sslPolicy); - $configMock->shouldReceive('get')->with('system', 'url')->andReturn($url); - - $baseUrl = new BaseURL($configMock, []); - - self::assertEquals($assert, $baseUrl->get($ssl)); - } - - public function dataCheckRedirectHTTPS() - { - return [ - 'default' => [ - 'server' => [ - 'REQUEST_METHOD' => 'GET', - 'HTTPS' => true, - ], - 'forceSSL' => false, - 'sslPolicy' => BaseURL::DEFAULT_SSL_SCHEME, - 'url' => 'https://friendica.local', - 'redirect' => false, - ], - 'forceSSL' => [ - 'server' => [ - 'REQUEST_METHOD' => 'GET', - ], - 'forceSSL' => true, - 'sslPolicy' => BaseURL::DEFAULT_SSL_SCHEME, - 'url' => 'https://friendica.local', - 'redirect' => false, - ], - 'forceSSLWithSSLPolicy' => [ - 'server' => [], - 'forceSSL' => true, - 'sslPolicy' => BaseURL::SSL_POLICY_FULL, - 'url' => 'https://friendica.local', - 'redirect' => false, - ], - 'forceSSLWithSSLPolicyAndGet' => [ - 'server' => [ - 'REQUEST_METHOD' => 'GET', - ], - 'forceSSL' => true, - 'sslPolicy' => BaseURL::SSL_POLICY_FULL, - 'url' => 'https://friendica.local', - 'redirect' => true, - ], - ]; - } - - /** - * Test the checkRedirectHTTPS() method - * @dataProvider dataCheckRedirectHTTPS - */ - public function testCheckRedirectHTTPS($server, $forceSSL, $sslPolicy, $url, $redirect) - { - $configMock = \Mockery::mock(IManageConfigValues::class); - $configMock->shouldReceive('get')->with('config', 'hostname')->andReturn('friendica.local'); - $configMock->shouldReceive('get')->with('system', 'urlpath')->andReturn('new/test'); - $configMock->shouldReceive('get')->with('system', 'ssl_policy')->andReturn($sslPolicy); - $configMock->shouldReceive('get')->with('system', 'url')->andReturn($url); - $configMock->shouldReceive('get')->with('system', 'force_ssl')->andReturn($forceSSL); - - $baseUrl = new BaseURL($configMock, $server); - - self::assertEquals($redirect, $baseUrl->checkRedirectHttps()); - } - - public function dataWrongSave() - { - return [ - 'wrongHostname' => [ - 'fail' => 'hostname', - ], - 'wrongSSLPolicy' => [ - 'fail' => 'sslPolicy', - ], - 'wrongURLPath' => [ - 'fail' => 'urlPath', - ], - 'wrongURL' => [ - 'fail' => 'url', - ], - ]; - } - - /** - * Test the save() method with wrong parameters - * @dataProvider dataWrongSave - */ - public function testWrongSave($fail) - { - $configMock = \Mockery::mock(IManageConfigValues::class); - $configMock->shouldReceive('get')->with('config', 'hostname')->andReturn('friendica.local'); - $configMock->shouldReceive('get')->with('system', 'urlpath')->andReturn('new/test'); - $configMock->shouldReceive('get')->with('system', 'ssl_policy')->andReturn(BaseURL::DEFAULT_SSL_SCHEME); - $configMock->shouldReceive('get')->with('system', 'url')->andReturn('http://friendica.local/new/test'); - - switch ($fail) { - case 'hostname': - $configMock->shouldReceive('set')->with('config', 'hostname', \Mockery::any())->andReturn(false)->once(); - break; - case 'sslPolicy': - $configMock->shouldReceive('set')->with('config', 'hostname', \Mockery::any())->andReturn(true)->twice(); - $configMock->shouldReceive('set')->with('system', 'ssl_policy', \Mockery::any())->andReturn(false)->once(); - break; - case 'urlPath': - $configMock->shouldReceive('set')->with('config', 'hostname', \Mockery::any())->andReturn(true)->twice(); - $configMock->shouldReceive('set')->with('system', 'ssl_policy', \Mockery::any())->andReturn(true)->twice(); - $configMock->shouldReceive('set')->with('system', 'urlpath', \Mockery::any())->andReturn(false)->once(); - break; - case 'url': - $configMock->shouldReceive('set')->with('config', 'hostname', \Mockery::any())->andReturn(true)->twice(); - $configMock->shouldReceive('set')->with('system', 'ssl_policy', \Mockery::any())->andReturn(true)->twice(); - $configMock->shouldReceive('set')->with('system', 'urlpath', \Mockery::any())->andReturn(true)->twice(); - $configMock->shouldReceive('set')->with('system', 'url', \Mockery::any())->andReturn(false)->once(); - break; - } - - $baseUrl = new BaseURL($configMock, []); - self::assertFalse($baseUrl->save('test', 10, 'nope')); - - // nothing should have changed because we never successfully saved anything - self::assertEquals('friendica.local', $baseUrl->getHostname()); - self::assertEquals('new/test', $baseUrl->getUrlPath()); - self::assertEquals(BaseURL::DEFAULT_SSL_SCHEME, $baseUrl->getSSLPolicy()); - self::assertEquals('http://friendica.local/new/test', $baseUrl->get()); - } -} diff --git a/tests/src/Util/CryptoTest.php b/tests/src/Util/CryptoTest.php index 8be5bbcc8..82afc2483 100644 --- a/tests/src/Util/CryptoTest.php +++ b/tests/src/Util/CryptoTest.php @@ -1,6 +1,6 @@ [ @@ -92,34 +92,6 @@ class CryptoTest extends TestCase ], ]; } - - /** - * @dataProvider dataPEM - */ - public function testPemToMe(string $key) - { - Crypto::pemToMe($key, $m, $e); - - $expectedRSA = new RSA(); - $expectedRSA->loadKey([ - 'e' => new BigInteger($e, 256), - 'n' => new BigInteger($m, 256) - ]); - - self::assertEquals($expectedRSA->getPublicKey(), $key); - } - - /** - * @dataProvider dataPEM - */ - public function testMeToPem(string $key) - { - Crypto::pemToMe($key, $m, $e); - - $checkKey = Crypto::meToPem($m, $e); - - self::assertEquals($key, $checkKey); - } } /** diff --git a/tests/src/Util/DateTimeFormatTest.php b/tests/src/Util/DateTimeFormatTest.php index 994ca3a11..046680de6 100644 --- a/tests/src/Util/DateTimeFormatTest.php +++ b/tests/src/Util/DateTimeFormatTest.php @@ -1,6 +1,6 @@ [ 'expectedDate' => '2022-10-05T16:34:00+02:00', 'dateString' => '05 Okt 2022 16:34:00 +0200', - ] + ], + '(Coordinated Universal Time)' => [ + 'expectedDate' => '2022-12-30T14:29:10+00:00', + 'dateString' => 'Fri Dec 30 2022 14:29:10 GMT+0000 (Coordinated Universal Time)', + ], + 'Double HTML encode' => [ + 'expectedDate' => '2015-05-22T08:48:00+12:00', + 'dateString' => '2015-05-22T08:48:00&#43;12:00' + ], + '2023-04-02\T17:22:42+05:30' => [ + 'expectedDate' => '2023-04-02T17:22:42+05:30', + 'dateString' => '2023-04-02\T17:22:42+05:30' + ], ]; } diff --git a/tests/src/Util/EMailerTest.php b/tests/src/Util/EMailerTest.php index 8ede0fc77..6432d5800 100644 --- a/tests/src/Util/EMailerTest.php +++ b/tests/src/Util/EMailerTest.php @@ -1,6 +1,6 @@ pConfig = \Mockery::mock(IManagePersonalConfigValues::class); $this->l10n = \Mockery::mock(L10n::class); $this->baseUrl = \Mockery::mock(BaseURL::class); - $this->baseUrl->shouldReceive('getHostname')->andReturn('friendica.local'); - $this->baseUrl->shouldReceive('get')->andReturn('http://friendica.local'); + $this->baseUrl->shouldReceive('getHost')->andReturn('friendica.local'); + $this->baseUrl->shouldReceive('__toString')->andReturn('http://friendica.local'); } protected function tearDown(): void diff --git a/tests/src/Util/Emailer/MailBuilderTest.php b/tests/src/Util/Emailer/MailBuilderTest.php index 0fcffb3f8..ecfed9f08 100644 --- a/tests/src/Util/Emailer/MailBuilderTest.php +++ b/tests/src/Util/Emailer/MailBuilderTest.php @@ -1,6 +1,6 @@ config = \Mockery::mock(IManageConfigValues::class); $this->l10n = \Mockery::mock(L10n::class); $this->baseUrl = \Mockery::mock(BaseURL::class); - $this->baseUrl->shouldReceive('getHostname')->andReturn('friendica.local'); - $this->baseUrl->shouldReceive('get')->andReturn('http://friendica.local'); + $this->baseUrl->shouldReceive('getHost')->andReturn('friendica.local'); + $this->baseUrl->shouldReceive('__toString')->andReturn('http://friendica.local'); $this->defaultHeaders = []; } diff --git a/tests/src/Util/Emailer/SystemMailBuilderTest.php b/tests/src/Util/Emailer/SystemMailBuilderTest.php index 88cd9c584..fe3b57096 100644 --- a/tests/src/Util/Emailer/SystemMailBuilderTest.php +++ b/tests/src/Util/Emailer/SystemMailBuilderTest.php @@ -1,6 +1,6 @@ baseUrl = \Mockery::mock(BaseURL::class); - $this->baseUrl->shouldReceive('getHostname')->andReturn('friendica.local'); - $this->baseUrl->shouldReceive('get')->andReturn('http://friendica.local'); + $this->baseUrl->shouldReceive('getHost')->andReturn('friendica.local'); + $this->baseUrl->shouldReceive('__toString')->andReturn('http://friendica.local'); } /** diff --git a/tests/src/Util/HTTPInputDataTest.php b/tests/src/Util/HTTPInputDataTest.php index 72cf43070..9a302d64b 100644 --- a/tests/src/Util/HTTPInputDataTest.php +++ b/tests/src/Util/HTTPInputDataTest.php @@ -1,6 +1,6 @@ 'acct:admin@friendica.local', 'header' => [ - 'Accept' => ['application/x-dfrn+json', 'application/x-zot+json'], - 'X-Open-Web-Auth' => ['1dde649b855fd1aae542a91c4edd8c3a7a4c59d8eaf3136cdee05dfc16a30bac'], + 'Accept' => 'application/x-dfrn+json, application/x-zot+json', + 'X-Open-Web-Auth' => '1dde649b855fd1aae542a91c4edd8c3a7a4c59d8eaf3136cdee05dfc16a30bac' ], 'signature' => 'Signature keyId="acct:admin@friendica.local",algorithm="rsa-sha512",headers="accept x-open-web-auth",signature="cb09/wdmRdFhrQUczL0lR6LTkVh8qb/vYh70DFCW40QrzvuUYHzJ+GqqJW6tcCb2rXP4t+aobWKfZ4wFMBtVbejAiCgF01pzEBJfDevdyu7khlfKo+Gtw1CGk4/0so1QmqASeHdlG3ID3GnmuovqZn2v5f5D+1UAJ6Pu6mtAXrGRntoEM/oqYBAsRrMtDSDAE4tnOSDu2YfVJJLfyUX1ZWjUK0ejZXZ0YTDJwU8PqRcRX17NhBaDq82dEHlfhD7I/aOclwVbfKIi5Ud619XCxPq0sAAYso17MhUm40oBCJVze2x4pswJhv9IFYohtR5G/fKkz2eosu3xeRflvGicS4JdclhTRgCGWDy10DV76FiXiS5N2clLXreHItWEXlZKZx6m9zAZoEX92VRnc4BY4jDsRR89Pl88hELaxiNipviyHS7XYZTRnkLM+nvtOcxkHSCbEs7oGw+AX+pLHoU5otNOqy+ZbXQ1cUvFOBYZmYdX3DiWaLfBKraakPkslJuU3yJu95X1qYmQTpOZDR4Ma/yf5fmWJh5D9ywnXxxd6RaupoO6HTtIl6gmsfcsyZNi5hRbbgPI3BiQwGYVGF6qzJpEOMzEyHyAuFeanhicc8b+P+DCwXni5sjM7ntKwShbCBP80KHSdoumORin3/PYgHCmHZVv71N0HNlPZnyVzZw="', ] diff --git a/tests/src/Util/ImagesTest.php b/tests/src/Util/ImagesTest.php index 8e2881aa6..b9caf4cca 100644 --- a/tests/src/Util/ImagesTest.php +++ b/tests/src/Util/ImagesTest.php @@ -1,6 +1,6 @@ setupHttpMockHandler(); } + protected function tearDown(): void + { + $this->tearDownFixtures(); + + parent::tearDown(); + } + public function dataImages() { return [ @@ -81,7 +88,7 @@ class ImagesTest extends MockedTest * * @dataProvider dataImages */ - public function testGetInfoFromRemotURL(string $url, array $headers, string $data, array $assertion) + public function testGetInfoFromRemoteURL(string $url, array $headers, string $data, array $assertion) { $this->httpRequestHandler->setHandler(new MockHandler([ new Response(200, $headers, $data), diff --git a/tests/src/Util/JsonLDTest.php b/tests/src/Util/JsonLDTest.php index 6cb051f08..39171249b 100644 --- a/tests/src/Util/JsonLDTest.php +++ b/tests/src/Util/JsonLDTest.php @@ -1,6 +1,6 @@ shouldReceive('get') + $config = \Mockery::mock(IManageConfigValues::class); + $config->shouldReceive('get') ->withAnyArgs() ->andReturn(true) ->twice(); - $profiler = new Profiler($configCache); + $profiler = new Profiler($config); self::assertInstanceOf(Profiler::class, $profiler); } @@ -124,13 +123,13 @@ class ProfilerTest extends MockedTest */ public function testSaveTimestamp($timestamp, $name, array $functions) { - $configCache = \Mockery::mock(Cache::class); - $configCache->shouldReceive('get') + $config = \Mockery::mock(IManageConfigValues::class); + $config->shouldReceive('get') ->withAnyArgs() ->andReturn(true) ->twice(); - $profiler = new Profiler($configCache); + $profiler = new Profiler($config); foreach ($functions as $function) { $profiler->saveTimestamp($timestamp, $name, $function); @@ -145,13 +144,13 @@ class ProfilerTest extends MockedTest */ public function testReset($timestamp, $name) { - $configCache = \Mockery::mock(Cache::class); - $configCache->shouldReceive('get') + $config = \Mockery::mock(IManageConfigValues::class); + $config->shouldReceive('get') ->withAnyArgs() ->andReturn(true) ->twice(); - $profiler = new Profiler($configCache); + $profiler = new Profiler($config); $profiler->saveTimestamp($timestamp, $name); $profiler->reset(); @@ -208,13 +207,13 @@ class ProfilerTest extends MockedTest ->shouldReceive('info') ->once(); - $configCache = \Mockery::mock(Cache::class); - $configCache->shouldReceive('get') + $config = \Mockery::mock(IManageConfigValues::class); + $config->shouldReceive('get') ->withAnyArgs() ->andReturn(true) ->twice(); - $profiler = new Profiler($configCache); + $profiler = new Profiler($config); foreach ($data as $perf => $items) { foreach ($items['functions'] as $function) { @@ -233,60 +232,4 @@ class ProfilerTest extends MockedTest } } } - - /** - * Test different enable and disable states of the profiler - */ - public function testEnableDisable() - { - $configCache = \Mockery::mock(Cache::class); - $configCache->shouldReceive('get') - ->with('system', 'profiler') - ->andReturn(true) - ->once(); - $configCache->shouldReceive('get') - ->with('rendertime', 'callstack') - ->andReturn(false) - ->once(); - - $profiler = new Profiler($configCache); - - self::assertFalse($profiler->isRendertime()); - self::assertEmpty($profiler->getRendertimeString()); - - $profiler->saveTimestamp(time(), 'network', 'test1'); - - $config = \Mockery::mock(IManageConfigValues::class); - $config->shouldReceive('get') - ->with('system', 'profiler') - ->andReturn(false) - ->once(); - $config->shouldReceive('get') - ->with('rendertime', 'callstack') - ->andReturn(false) - ->once(); - - $profiler->update($config); - - self::assertFalse($profiler->isRendertime()); - self::assertEmpty($profiler->getRendertimeString()); - - $config->shouldReceive('get') - ->with('system', 'profiler') - ->andReturn(true) - ->once(); - $config->shouldReceive('get') - ->with('rendertime', 'callstack') - ->andReturn(true) - ->once(); - - $profiler->update($config); - - $profiler->saveTimestamp(time(), 'database', 'test2'); - - self::assertTrue($profiler->isRendertime()); - $output = $profiler->getRendertimeString(); - self::assertMatchesRegularExpression('/test1: \d+/', $output); - self::assertMatchesRegularExpression('/test2: \d+/', $output); - } } diff --git a/tests/src/Util/Router/FriendicaGroupCountBasedTest.php b/tests/src/Util/Router/FriendicaGroupCountBasedTest.php index 114082e71..2a2649a9e 100644 --- a/tests/src/Util/Router/FriendicaGroupCountBasedTest.php +++ b/tests/src/Util/Router/FriendicaGroupCountBasedTest.php @@ -1,6 +1,6 @@ t('never') ); // Format current date/time into "MySQL" format - $now = date('Y-m-d H:i:s'); self::assertEquals( - Temporal::getRelativeDate($now), + Temporal::getRelativeDate($clock->now()->format(DateTimeFormat::MYSQL), true, $clock), DI::l10n()->t('less than a second ago') ); // Format current date/time - 1 minute into "MySQL" format - $minuteAgo = date('Y-m-d H:i:s', time() - 60); + $minuteAgo = date('Y-m-d H:i:s', $clock->now()->getTimestamp() - 60); $format = DI::l10n()->t('%1$d %2$s ago'); // Should be both equal self::assertEquals( - Temporal::getRelativeDate($minuteAgo), + Temporal::getRelativeDate($minuteAgo, true, $clock), sprintf($format, 1, DI::l10n()->t('minute')) ); + + $almostAnHourAgoInterval = new \DateInterval('PT59M59S'); + $almostAnHourAgoInterval->invert = 1; + $almostAnHourAgo = (clone $clock->now())->add($almostAnHourAgoInterval); + + self::assertEquals( + Temporal::getRelativeDate($almostAnHourAgo->format(DateTimeFormat::MYSQL), true, $clock), + sprintf($format, 59, DI::l10n()->t('minutes')) + ); + + $anHourAgoInterval = new \DateInterval('PT1H'); + $anHourAgoInterval->invert = 1; + $anHourAgo = (clone $clock->now())->add($anHourAgoInterval); + + self::assertEquals( + Temporal::getRelativeDate($anHourAgo->format(DateTimeFormat::MYSQL), true, $clock), + sprintf($format, 1, DI::l10n()->t('hour')) + ); } } diff --git a/tests/src/Util/XmlTest.php b/tests/src/Util/XmlTest.php index 4a4716c8f..2323c4008 100644 --- a/tests/src/Util/XmlTest.php +++ b/tests/src/Util/XmlTest.php @@ -1,6 +1,6 @@ strings = []; - // First we get the the localizations + // First we get the localizations if (file_exists('view/lang/$lang/strings.php')) { include 'view/lang/$lang/strings.php'; } @@ -974,7 +976,7 @@ function update_1429() return Update::FAILED; } - if (!DBA::e("UPDATE `fcontact` SET `uri-id` = null WHERE NOT `uri-id` IS NULL")) { + if (DBStructure::existsTable('fcontact') && !DBA::e("UPDATE `fcontact` SET `uri-id` = null WHERE NOT `uri-id` IS NULL")) { return Update::FAILED; } @@ -982,7 +984,7 @@ function update_1429() return Update::FAILED; } - DI::config()->set('system', 'post_update_version', 1423); + DI::keyValue()->set('post_update_version', 1423); return Update::SUCCESS; } @@ -1013,6 +1015,10 @@ function update_1438() function update_1439() { + if (!DBStructure::existsTable('fcontact')) { + return Update::SUCCESS; + } + $intros = DBA::select('intro', ['id', 'fid'], ["NOT `fid` IS NULL AND `fid` != ?", 0]); while ($intro = DBA::fetch($intros)) { $fcontact = DBA::selectFirst('fcontact', ['url'], ['id' => $intro['fid']]); @@ -1024,6 +1030,8 @@ function update_1439() } } DBA::close($intros); + + return Update::SUCCESS; } function update_1440() @@ -1121,3 +1129,285 @@ function update_1481() DBA::e("UPDATE `post-collection` INNER JOIN `post` ON `post`.`uri-id` = `post-collection`.`uri-id` SET `post-collection`.`author-id` = `post`.`author-id` WHERE `post-collection`.`author-id` IS null"); return Update::SUCCESS; } + +function update_1491() +{ + DBA::update('contact', ['remote_self' => Contact::MIRROR_OWN_POST], ['remote_self' => Contact::MIRROR_FORWARDED]); + return Update::SUCCESS; +} + +function update_1497() +{ + DBA::e("UPDATE `user` SET `last-activity` = DATE(`login_date`) WHERE `last-activity` IS NULL"); + return Update::SUCCESS; +} + +function update_1502() +{ + DBA::e("UPDATE `pconfig` SET `cat` = 'calendar' WHERE `k` = 'first_day_of_week'"); + return Update::SUCCESS; +} + +function update_1505() +{ + if (!DBStructure::existsTable('config')) { + return Update::SUCCESS; + } + + $conditions = [ + "((`cat` = ?) AND ((`k` LIKE ?) OR (`k` = ?) OR (`k` LIKE ?) OR (`k` = ?))) OR " . + "((`cat` != ?) AND (`k` LIKE ?)) OR " . + "((`cat` = ?) AND (`k` LIKE ?))", + "system", + "post_update_%", + "worker_last_cleaned", + "last%", + "worker_daemon_mode", + "system", + "last_%", + "database", + "update_%", + ]; + + $postUpdateEntries = DBA::selectToArray('config', ['cat', 'k', 'v'], $conditions); + + foreach ($postUpdateEntries as $postUpdateEntry) { + if ($postUpdateEntry['cat'] === 'system') { + DI::keyValue()->set($postUpdateEntry['k'], $postUpdateEntry['v']); + } else { + DI::keyValue()->set(sprintf('%s_%s', $postUpdateEntry['cat'], $postUpdateEntry['k']), $postUpdateEntry['v']); + } + } + + return DBA::delete('config', $conditions) ? Update::SUCCESS : Update::FAILED; +} + +function update_1508() +{ + $config = DBA::selectToArray('config'); + + $newConfig = DI::config()->beginTransaction(); + + foreach ($config as $entry) { + $newConfig->set($entry['cat'], $entry['k'], $entry['v']); + } + + $newConfig->commit(); + + return Update::SUCCESS; +} + +function update_1509() +{ + $addons = DBA::selectToArray('addon'); + + $newConfig = DI::config()->beginTransaction(); + + foreach ($addons as $addon) { + $newConfig->set('addons', $addon['name'], [ + 'last_update' => $addon['timestamp'], + 'admin' => (bool)$addon['plugin_admin'], + ]); + } + + $newConfig->commit(); + + return Update::SUCCESS; +} + +function update_1510() +{ + $blocks = DBA::select('pconfig', ['uid', 'v'], ['cat' => 'blockem', 'k' => 'words']); + while ($block = DBA::fetch($blocks)) { + foreach (explode(',', $block['v']) as $account) { + $id = Contact::getIdForURL(trim($account), 0, false); + if (empty($id)) { + continue; + } + Contact\User::setCollapsed($id, $block['uid'], true); + } + } + return Update::SUCCESS; +} + +function update_1512() +{ + DI::keyValue()->set('nodeinfo_total_users', DI::config()->get('nodeinfo', 'total_users')); + DI::keyValue()->set('nodeinfo_active_users_halfyear', DI::config()->get('nodeinfo', 'active_users_halfyear')); + DI::keyValue()->set('nodeinfo_active_users_monthly', DI::config()->get('nodeinfo', 'active_users_monthly')); + DI::keyValue()->set('nodeinfo_active_users_weekly', DI::config()->get('nodeinfo', 'active_users_weekly')); + DI::keyValue()->set('nodeinfo_local_posts', DI::config()->get('nodeinfo', 'local_posts')); + DI::keyValue()->set('nodeinfo_local_comments', DI::config()->get('nodeinfo', 'local_comments')); + + DI::config()->delete('nodeinfo', 'total_users'); + DI::config()->delete('nodeinfo', 'active_users_halfyear'); + DI::config()->delete('nodeinfo', 'active_users_monthly'); + DI::config()->delete('nodeinfo', 'active_users_weekly'); + DI::config()->delete('nodeinfo', 'local_posts'); + DI::config()->delete('nodeinfo', 'local_comments'); +} + +function update_1513() +{ + DI::keyValue()->set('git_friendica_version', DI::config()->get('system', 'git_friendica_version')); + DI::keyValue()->set('twitter_application_name', DI::config()->get('twitter', 'application_name')); + + DI::config()->delete('system', 'git_friendica_version'); + DI::config()->delete('twitter', 'application_name'); +} + +function update_1514() +{ + if (file_exists(dirname(__FILE__) . '/config/node.config.php')) { + + $transactionalConfig = DI::config()->beginTransaction(); + $oldConfig = include dirname(__FILE__) . '/config/node.config.php'; + + if (is_array($oldConfig)) { + $categories = array_keys($oldConfig); + + foreach ($categories as $category) { + if (is_array($oldConfig[$category])) { + $keys = array_keys($oldConfig[$category]); + + foreach ($keys as $key) { + $transactionalConfig->set($category, $key, $oldConfig[$category][$key]); + } + } + } + } + + $transactionalConfig->commit(); + + // Rename the node.config.php so it won't get used, but it isn't deleted. + if (rename(dirname(__FILE__) . '/config/node.config.php', dirname(__FILE__) . '/config/node.config.php.bak')) { + return Update::SUCCESS; + } else { + return Update::FAILED; + } + } + + return Update::SUCCESS; +} + +function update_1515() +{ + DBA::update('verb', ['name' => Activity::READ], ['name' => 'https://www.w3.org/ns/activitystreams#read']); + DBA::update('verb', ['name' => Activity::VIEW], ['name' => 'https://joinpeertube.org/view']); + return Update::SUCCESS; +} + +function update_1516() +{ + // Fixes https://github.com/friendica/friendica/issues/12803 + // de-serialize multiple serialized values + $configTrans = DI::config()->beginTransaction(); + $configArray = DI::config()->getCache()->getDataBySource(Cache::SOURCE_DATA); + + foreach ($configArray as $category => $keyValues) { + if (is_array($keyValues)) { + foreach ($keyValues as $key => $value) { + $configTrans->set($category, $key, $value); + } + } + } + + $configTrans->commit(); + + return Update::SUCCESS; +} + +function update_1518() +{ + $users = DBA::select('user', ['uid']); + while ($user = DBA::fetch($users)) { + Contact::updateSelfFromUserID($user['uid']); + } + DBA::close($users); + + return Update::SUCCESS; +} + +function update_1520(): int +{ + DBA::update('user', ['parent-uid' => null], ['parent-uid' => 0]); + + return Update::SUCCESS; +} + +/** + * user-contact.remote_self was wrongly declared as boolean, possibly truncating integer values from contact.remote_self + * + * @return int + * @throws Exception + */ +function update_1524(): int +{ + $contacts = DBA::select('contact', ['uid', 'uri-id', 'remote_self'], ["`uid` != ?", 0]); + while ($contact = DBA::fetch($contacts)) { + Contact\User::insertForContactArray($contact); + } + + return Update::SUCCESS; +} + +function update_1525(): int +{ + // Use expected value for user.username + if (!DBA::e('UPDATE `user` u + JOIN `profile` p + ON p.`uid` = u.`uid` + SET u.`username` = p.`name` + WHERE p.`name` != ""')) { + return Update::FAILED; + } + + // Blank out deprecated field profile.name to avoid future confusion + if (!DBA::e('UPDATE `profile` p + SET p.`name` = ""')) { + return Update::FAILED; + } + + // Update users' self-contact name if needed + if (!DBA::e('UPDATE `contact` c + JOIN `user` u + ON u.`uid` = c.`uid` AND c.`self` = 1 + SET c.`name` = u.`username`')) { + return Update::FAILED; + } + + return Update::SUCCESS; +} + +function update_1531() +{ + $threads = Post::selectThread(Item::DELIVER_FIELDLIST, ["`uid` = ? AND `created` > ?", 0, DateTimeFormat::utc('now - ' . DI::config()->get('channel', 'engagement_hours') . ' hour')]); + while ($post = Post::fetch($threads)) { + $post['gravity'] = Item::GRAVITY_COMMENT; + Post\Engagement::storeFromItem($post); + } + DBA::close($threads); + + return Update::SUCCESS; +} + +function update_1535() +{ + if (DI::config()->get('system', 'compute_group_counts')) { + DI::config()->set('system', 'compute_circle_counts', true); + } + DI::config()->delete('system', 'compute_group_counts'); + + return Update::SUCCESS; +} + +function update_1539() +{ + $users = DBA::select('user', ['uid'], ['account-type' => User::ACCOUNT_TYPE_COMMUNITY]); + while ($user = DBA::fetch($users)) { + User::setCommunityUserSettings($user['uid']); + } + DBA::close($users); + + return Update::SUCCESS; +} \ No newline at end of file diff --git a/view/fonts/README.md b/view/fonts/README.md index ca35ddadb..f8e7d632e 100644 --- a/view/fonts/README.md +++ b/view/fonts/README.md @@ -11,7 +11,7 @@ The iconset started from the new default user avatar (letter "p") Andi made for License ------- -The iconset is published unter the [CC-BY-SA 4.0][cc] license. +The iconset is published under the [CC-BY-SA 4.0][cc] license. Preview ------- diff --git a/view/global.css b/view/global.css index 3365ce4aa..aab6e8d67 100644 --- a/view/global.css +++ b/view/global.css @@ -35,6 +35,11 @@ a.btn, a.btn:hover { text-decoration: overline; } +.template-icon { + width: 24px; + height: 24px; +} + /* List of social Networks */ img.connector, img.connector-disabled { height: 40px; @@ -93,6 +98,9 @@ span.connector { margin-right: 0px; } +.wall-item-emoji { + margin-right: 5px; +} .wall-item-like-expanded, .wall-item-dislike-expanded, @@ -102,6 +110,12 @@ span.connector { margin: 0; } +.wall-item-response { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + .type-link blockquote, .type-video blockquote { margin-left: 0px; max-height: 160px; @@ -340,12 +354,12 @@ img.acpopup-img { .fbrowser .path a:before, .fbrowser .path .btn-link:before { content: "/"; padding-right: 5px;} .fbrowser .folders ul { list-style-type: none; padding-left: 10px;} .fbrowser .list { height: auto; overflow-y: hidden; margin: 10px 0px; } -.fbrowser.image .photo-album-image-wrapper { float: left; } -.fbrowser.image a img, .fbrowser.image .btn-link img { height: 48px; } -.fbrowser.image a p, .fbrowser.image .btn-link p { display: none;} -.fbrowser.file .photo-album-image-wrapper { float:none; white-space: nowrap; } -.fbrowser.file img { display: inline; } -.fbrowser.file p { display: inline; white-space: nowrap; } +.fbrowser.photo .photo-album-image-wrapper { float: left; } +.fbrowser.photo a img, .fbrowser.photo .btn-link img { height: 48px; } +.fbrowser.photo a p, .fbrowser.photo .btn-link p { display: none;} +.fbrowser.attachment .photo-album-image-wrapper { float:none; white-space: nowrap; } +.fbrowser.attachment img { display: inline; } +.fbrowser.attachment p { display: inline; white-space: nowrap; } .fbrowser .upload { clear: both; padding-top: 1em;} .fbrowser .error { background: #ffeeee; border: 1px solid #994444; color: #994444; padding: 0.5em;} .fbrowser .error .close { float: right; font-weight: bold; } @@ -366,7 +380,7 @@ a { border: 0; } -.itentity-match-wrapper { +.identity-match-wrapper { float: left; padding: 10px; width: 120px; @@ -444,14 +458,14 @@ td.federation-data { max-height: 80px; } -/* forumlist widget */ -.forumlist-img { +/* group list widget */ +.group-list-img { height: 20px; width: 20px; vertical-align: middle; } -#forum-widget-collapse { +#group-widget-collapse { opacity: 0.3; } @@ -471,7 +485,7 @@ aside .help-aside-wrapper h1 { color: #ffffff; } -#forum-widget-collapse:hover { +#group-widget-collapse:hover { opacity: 1.0; } @@ -601,7 +615,7 @@ img.invalid-src:after { vertical-align: top;} word-wrap: break-word; } -#register-explicid-content { +#register-explicit-content { font-weight: bold; } @@ -670,3 +684,68 @@ span.required { audio { width: 100%; } + +/** + * Image grid settings START + **/ +.imagegrid-row { + display: -ms-flexbox; /* IE10 */ + display: flex; + margin-top: 1em; + column-gap: 5px; +} + +.imagegrid-column { + -ms-flex: 50%; /* IE10 */ + flex: 50%; + display: -ms-flexbox; /* IE10 */ + display: flex; + flex-direction: column; + row-gap: 5px; +} + +.imagegrid-column img { + -ms-flex: 50%; /* IE10 */ + flex: 50%; +} +/** + * Image grid settings END + **/ + +/* This helps allocating space for image before they are loaded, preventing content shifting once they are. + * Inspired by https://www.smashingmagazine.com/2016/08/ways-to-reduce-content-shifting-on-page-load/ + * Please note: The space is effectively allocated using padding-bottom using the image ratio as a value. + * This ratio is never known in advance so no value is set in the stylesheet. + */ +figure.img-allocated-height { + position: relative; + background: center / auto rgba(0, 0, 0, 0.05) url(/images/icons/image.png) no-repeat; + margin: 0; +} +figure.img-allocated-height img{ + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + width: 100%; +} + +/** + * Horizontal masonry settings START + **/ +.masonry-row { + display: -ms-flexbox; /* IE10 */ + display: flex; + /* Both the following values should be the same to ensure consistent margins between images in the grid */ + column-gap: 5px; + margin-top: 5px; +} +/** + * Horizontal masonry settings AND + **/ + +#contactblock .icon { + width: 48px; + height: 48px; +} diff --git a/view/install/style.css b/view/install/style.css index d6140a1bb..ab37a5055 100644 --- a/view/install/style.css +++ b/view/install/style.css @@ -1,5 +1,5 @@ /*** - * Friendica Communcation Server + * Friendica Communication Server * * This is the static css for the install procedure */ diff --git a/view/js/ajaxupload.js b/view/js/ajaxupload.js index 912cd0b4c..ebbbfda45 100644 --- a/view/js/ajaxupload.js +++ b/view/js/ajaxupload.js @@ -40,7 +40,7 @@ /** * Attaches resize event to a window, limiting - * number of event fired. Fires only when encounteres + * number of event fired. Fires only when encounters * delay of 100 after series of events. * * Some browsers fire event multiple times when resizing @@ -75,7 +75,7 @@ }; - // Needs more testing, will be rewriten for next version + // Needs more testing, will be rewritten for next version // getOffset function copied from jQuery lib (http://jquery.com/) if (document.documentElement.getBoundingClientRect){ // Get Offset using getBoundingClientRect @@ -157,7 +157,7 @@ /** * Function places an absolutely positioned * element on top of the specified element - * copying position and dimentions. + * copying position and dimensions. * @param {Element} from * @param {Element} to */ @@ -211,7 +211,7 @@ /** * Get file extension lowercase * @param {String} file name - * @return file extenstion + * @return file extension */ function getExt(file){ return (-1 !== file.indexOf('.')) ? file.replace(/.*[.]/, '') : ''; @@ -239,7 +239,7 @@ * Easy styling and uploading * @constructor * @param button An element you want convert to - * upload button. Tested dimentions up to 500x500px + * upload button. Tested dimensions up to 500x500px * @param {Object} options See defaults below. */ window.AjaxUpload = function(button, options){ diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js index 91dd0053f..dc649084a 100644 --- a/view/js/autocomplete.js +++ b/view/js/autocomplete.js @@ -13,7 +13,7 @@ function contact_search(term, callback, backend_url, type, mode) { - // Check if there is a conversation id to include the unkonwn contacts of the conversation + // Check if there is a conversation id to include the unknown contacts of the conversation var conv_id = document.activeElement.id.match(/\d+$/); // Check if there is a cached result that contains the same information we would get with a full server-side search @@ -24,8 +24,8 @@ function contact_search(term, callback, backend_url, type, mode) { for(var t in contact_search.cache[bt]) { if(lterm.indexOf(t) >= 0) { // A more broad search has been performed already, so use those results // Filter old results locally - var matching = contact_search.cache[bt][t].filter(function (x) { return (x.name.toLowerCase().indexOf(lterm) >= 0 || (typeof x.nick !== 'undefined' && x.nick.toLowerCase().indexOf(lterm) >= 0)); }); // Need to check that nick exists because groups don't have one - matching.unshift({forum:false, text: term, replace: term}); + var matching = contact_search.cache[bt][t].filter(function (x) { return (x.name.toLowerCase().indexOf(lterm) >= 0 || (typeof x.nick !== 'undefined' && x.nick.toLowerCase().indexOf(lterm) >= 0)); }); // Need to check that nick exists because circles don't have one + matching.unshift({group: false, text: term, replace: term}); setTimeout(function() { callback(matching); } , 1); // Use "pseudo-thread" to avoid some problems return; } @@ -69,10 +69,10 @@ function contact_format(item) { // Show contact information if not explicitly told to show something else if(typeof item.text === 'undefined') { var desc = ((item.label) ? item.nick + ' ' + item.label : item.nick); - var forum = ((item.forum) ? 'forum' : ''); + var group = ((item.group) ? 'group' : ''); if(typeof desc === 'undefined') desc = ''; if(desc) desc = ' ('+desc+')'; - return "
{2}{3}
".format(forum, item.photo, item.name, desc, item.link); + return "
{2}{3}
".format(group, item.photo, item.name, desc, item.link); } else return "
" + item.text + "
"; @@ -258,8 +258,8 @@ function string2bb(element) { template: contact_format, }; - // Autocomplete forums - forums = { + // Autocomplete groups + groups = { match: /(^|\s)(!\!*)([^ \n]+)$/, index: 3, search: function(term, callback) { contact_search(term, callback, backend_url, 'f'); }, @@ -294,7 +294,7 @@ function string2bb(element) { }; this.attr('autocomplete','off'); - this.textcomplete([contacts, forums, smilies, tags], {dropdown: {className:'acpopup'}}); + this.textcomplete([contacts, groups, smilies, tags], {dropdown: {className:'acpopup'}}); this.fixTextcompleteEscape(); return this; @@ -310,7 +310,7 @@ function string2bb(element) { template: contact_format, }; - // Autocomplete forum accounts + // Autocomplete group accounts community = { match: /(^!)([^\n]{2,})$/, index: 2, diff --git a/view/js/country.js b/view/js/country.js index 83123e4cb..65497fdbf 100644 --- a/view/js/country.js +++ b/view/js/country.js @@ -260,7 +260,7 @@ aStates[233]="|Tuvalu"; aStates[234]="|Adjumani|Apac|Arua|Bugiri|Bundibugyo|Bushenyi|Busia|Gulu|Hoima|Iganga|Jinja|Kabale|Kabarole|Kalangala|Kampala|Kamuli|Kapchorwa|Kasese|Katakwi|Kibale|Kiboga|Kisoro|Kitgum|Kotido|Kumi|Lira|Luwero|Masaka|Masindi|Mbale|Mbarara|Moroto|Moyo|Mpigi|Mubende|Mukono|Nakasongola|Nebbi|Ntungamo|Pallisa|Rakai|Rukungiri|Sembabule|Soroti|Tororo"; aStates[235]="|Avtonomna Respublika Krym (Simferopol')|Cherkas'ka (Cherkasy)|Chernihivs'ka (Chernihiv)|Chernivets'ka (Chernivtsi)|Dnipropetrovs'ka (Dnipropetrovs'k)|Donets'ka (Donets'k)|Ivano-Frankivs'ka (Ivano-Frankivs'k)|Kharkivs'ka (Kharkiv)|Khersons'ka (Kherson)|Khmel'nyts'ka (Khmel'nyts'kyy)|Kirovohrads'ka (Kirovohrad)|Kyyiv|Kyyivs'ka (Kiev)|L'vivs'ka (L'viv)|Luhans'ka (Luhans'k)|Mykolayivs'ka (Mykolayiv)|Odes'ka (Odesa)|Poltavs'ka (Poltava)|Rivnens'ka (Rivne)|Sevastopol'|Sums'ka (Sumy)|Ternopil's'ka (Ternopil')|Vinnyts'ka (Vinnytsya)|Volyns'ka (Luts'k)|Zakarpats'ka (Uzhhorod)|Zaporiz'ka (Zaporizhzhya)|Zhytomyrs'ka (Zhytomyr)" aStates[236]="|'Ajman|Abu Zaby (Abu Dhabi)|Al Fujayrah|Ash Shariqah (Sharjah)|Dubayy (Dubai)|Ra's al Khaymah|Umm al Qaywayn"; -aStates[237]="|Aberdeen|Aberdeenshire|Anglesey|Angus|Antrim|Argyl|Armagh|Avon|Ayrshire|Banffshire|Bedfordshire|Belfast|Berwickshire|Brecknockshire|Bristol|Buckinghamshire|Bute|Caernarfonshire|Cardiganshire|Caithness|Cambridgeshire|Carmarthenshire|Chesire|Clackmannashire|Cleveland|Clwyd|Cornwall|Cromartyshire|Cumberland|Cumbria|Denbighshire|Derbyshire|Devon|Dfyed|Dorset|Down|Dumfriesshire|Dunbartonshire|Dundee|Durham|East Lothian|East Suffolk|Derry|East Sussex|Edinburgh|Essex|Fermanagh|Fife|Flintshire|Glasgow|Glamorgan|Gloucestershire|Greater London|Greater Manchester|Gwent|Gwynedd|Hampshire|Hereford and Worcester|Herefordshire|Inverness-shire|Hertfordshire|Humberside|Huntingdon and Peterborough|Huntingdonshire|Isle of Ely|Isle of Wight|Kent|Kincardineshire|Kincross-shire|Kirkcudbrightshire|Lanarkshire|Lancashire|Leicestershire|Lincolnshire|London|Londonderry|Merionethshire|Merseyside|Middlesex|Mid Glamorgan|Midlothian|Monmouthshire|Montgomeryshire|Moray|Nairnshire|Norfolk|Northamptonshire|Northumberland|North Humberside|North Yorkshire|Nottinghamshire|Orkney|Oxfordshire|Peeblesshire|Pembrokeshire|Perthshire|Powys|Radnorshire|Renfrewshire|Ross And Cromarty|Ross-shire|Roxburghshire|Selkirkshire|Shetland|Stirlingshire|Sutherland|Soke of Peterborough|Rutland|Shropshire|Somerset|South Glamorgan|South Humberside|South Yorkshire|Staffordshite|Suffolk|Surrey|Sussex|Tyne and Wear|Tyrone|Warwickshire|West Glamorgan|West Lothian|West Midlands|Westmorland|West Suffolk|West Sussex|West Yorkshire|Wigtownshire|Wiltshire|Worcestershire|Yorkshire"; +aStates[237]="|Aberdeen|Aberdeenshire|Anglesey|Angus|Antrim|Argyl|Armagh|Avon|Ayrshire|Banffshire|Bedfordshire|Belfast|Berwickshire|Brecknockshire|Bristol|Buckinghamshire|Bute|Caernarfonshire|Cardiganshire|Caithness|Cambridgeshire|Carmarthenshire|Cheshire|Clackmannashire|Cleveland|Clwyd|Cornwall|Cromartyshire|Cumberland|Cumbria|Denbighshire|Derbyshire|Devon|Dfyed|Dorset|Down|Dumfriesshire|Dunbartonshire|Dundee|Durham|East Lothian|East Suffolk|Derry|East Sussex|Edinburgh|Essex|Fermanagh|Fife|Flintshire|Glasgow|Glamorgan|Gloucestershire|Greater London|Greater Manchester|Gwent|Gwynedd|Hampshire|Hereford and Worcester|Herefordshire|Inverness-shire|Hertfordshire|Humberside|Huntingdon and Peterborough|Huntingdonshire|Isle of Ely|Isle of Wight|Kent|Kincardineshire|Kincross-shire|Kirkcudbrightshire|Lanarkshire|Lancashire|Leicestershire|Lincolnshire|London|Londonderry|Merionethshire|Merseyside|Middlesex|Mid Glamorgan|Midlothian|Monmouthshire|Montgomeryshire|Moray|Nairnshire|Norfolk|Northamptonshire|Northumberland|North Humberside|North Yorkshire|Nottinghamshire|Orkney|Oxfordshire|Peeblesshire|Pembrokeshire|Perthshire|Powys|Radnorshire|Renfrewshire|Ross And Cromarty|Ross-shire|Roxburghshire|Selkirkshire|Shetland|Stirlingshire|Sutherland|Soke of Peterborough|Rutland|Shropshire|Somerset|South Glamorgan|South Humberside|South Yorkshire|Staffordshite|Suffolk|Surrey|Sussex|Tyne and Wear|Tyrone|Warwickshire|West Glamorgan|West Lothian|West Midlands|Westmorland|West Suffolk|West Sussex|West Yorkshire|Wigtownshire|Wiltshire|Worcestershire|Yorkshire"; aStates[238]="|Artigas|Canelones|Cerro Largo|Colonia|Durazno|Flores|Florida|Lavalleja|Maldonado|Montevideo|Paysandu|Rio Negro|Rivera|Rocha|Salto|San Jose|Soriano|Tacuarembo|Treinta y Tres"; aStates[239]="|Alabama|Alaska|Arizona|Arkansas|California|Colorado|Connecticut|Delaware|District of Columbia|Florida|Georgia|Hawaii|Idaho|Illinois|Indiana|Iowa|Kansas|Kentucky|Louisiana|Maine|Maryland|Massachusetts|Michigan|Minnesota|Mississippi|Missouri|Montana|Nebraska|Nevada|New Hampshire|New Jersey|New Mexico|New York|North Carolina|North Dakota|Ohio|Oklahoma|Oregon|Pennsylvania|Rhode Island|South Carolina|South Dakota|Tennessee|Texas|Utah|Vermont|Virginia|Washington|West Virginia|Wisconsin|Wyoming"; aStates[240]="|Andijon Wiloyati|Bukhoro Wiloyati|Farghona Wiloyati|Jizzakh Wiloyati|Khorazm Wiloyati (Urganch)|Namangan Wiloyati|Nawoiy Wiloyati|Qashqadaryo Wiloyati (Qarshi)|Qoraqalpoghiston (Nukus)|Samarqand Wiloyati|Sirdaryo Wiloyati (Guliston)|Surkhondaryo Wiloyati (Termiz)|Toshkent Shahri|Toshkent Wiloyati"; diff --git a/view/js/dropzone-factory.js b/view/js/dropzone-factory.js new file mode 100644 index 000000000..f33ec9c6d --- /dev/null +++ b/view/js/dropzone-factory.js @@ -0,0 +1,76 @@ +Dropzone.autoDiscover = false; +var DzFactory = function (max_imagesize) { + this.createDropzone = function(dropSelector, textareaElementId) { + return new Dropzone(dropSelector, { + paramName: 'userfile', // The name that will be used to transfer the file + maxFilesize: max_imagesize, // MB + url: '/media/photo/upload?album=', + acceptedFiles: 'image/*', + clickable: true, + dictDefaultMessage: dzStrings.dictDefaultMessage, + dictFallbackMessage: dzStrings.dictFallbackMessage, + dictFallbackText: dzStrings.dictFallbackText, + dictFileTooBig: dzStrings.dictFileTooBig, + dictInvalidFileType: dzStrings.dictInvalidFileType, + dictResponseError: dzStrings.dictResponseError, + dictCancelUpload: dzStrings.dictCancelUpload, + dictUploadCanceled: dzStrings.dictUploadCanceled, + dictCancelUploadConfirmation: dzStrings.dictCancelUploadConfirmation, + dictRemoveFile: dzStrings.dictRemoveFile, + dictMaxFilesExceeded: dzStrings.dictMaxFilesExceeded, + accept: function(file, done) { + done(); + }, + init: function() { + this.on('success', function(file, serverResponse) { + const targetTextarea = document.getElementById(textareaElementId); + if (targetTextarea.setRangeText) { + //if setRangeText function is supported by current browser + targetTextarea.setRangeText(serverResponse); + } else { + targetTextarea.focus(); + document.execCommand('insertText', false /*no UI*/, serverResponse); + } + }); + this.on('complete', function(file) { + const dz = this; + // Remove just uploaded file from dropzone, makes interface more clear. + // Image can be seen in posting-preview + // We need preview to get optical feedback about upload-progress. + // you see success, when the bb-code link for image is inserted + setTimeout(function(){ + dz.removeFile(file); + },5000); + }); + }, + paste: function(event){ + const items = (event.clipboardData || event.originalEvent.clipboardData).items; + items.forEach((item) => { + if (item.kind === 'file') { + // adds the file to your dropzone instance + dz.addFile(item.getAsFile()); + } + }) + }, + }); + }; + + this.copyPaste = function(event, dz) { + const items = (event.clipboardData || event.originalEvent.clipboardData).items; + items.forEach((item) => { + if (item.kind === 'file') { + // adds the file to your dropzone instance + dz.addFile(item.getAsFile()); + } + }) + }; + + this.setupDropzone = function(dropSelector, textareaElementId) { + const self = this; + var dropzone = this.createDropzone(dropSelector, textareaElementId); + $(dropSelector).on('paste', function(event) { + self.copyPaste(event, dropzone); + }) + }; +} + diff --git a/view/js/fancybox/README.md b/view/js/fancybox/README.md new file mode 100644 index 000000000..e32b89e16 --- /dev/null +++ b/view/js/fancybox/README.md @@ -0,0 +1,62 @@ +# fancyBox 3.5.7 + +jQuery lightbox script for displaying images, videos and more. +Touch enabled, responsive and fully customizable. + +See the [project page](http://fancyapps.com/fancybox/3/) for documentation and a demonstration. + +Follow [@thefancyapps](//twitter.com/thefancyapps) for updates. + + +## Quick start + +1\. Add latest jQuery and fancyBox files + +```html + + + + +``` + + +2\. Create links + +```html + + + + + + + +``` + + +3\. Enjoy! + + +## License + +fancyBox is licensed under the [GPLv3](http://choosealicense.com/licenses/gpl-3.0) license for all open source applications. +A commercial license is required for all commercial applications (including sites, themes and apps you plan to sell). + +[Read more about fancyBox license](http://fancyapps.com/fancybox/3/#license). + +## Bugs and feature requests + +If you find a bug, please report it [here on Github](https://github.com/fancyapps/fancybox/issues). + +Guidelines for bug reports: + +1. Use the GitHub issue search — check if the issue has already been reported. +2. Check if the issue has been fixed — try to reproduce it using the latest master or development branch in the repository. +3. Isolate the problem — create a reduced test case and a live example. You can use CodePen to fork any demo found on documentation to use it as a template. + +A good bug report shouldn't leave others needing to chase you up for more information. +Please try to be as detailed as possible in your report. + + +Feature requests are welcome. Please look for existing ones and use GitHub's "reactions" feature to vote. + +Please do not use the issue tracker for personal support requests - use Stack Overflow ([fancybox-3](http://stackoverflow.com/questions/tagged/fancybox-3) tag) instead. diff --git a/view/js/fancybox/fancybox.config.js b/view/js/fancybox/fancybox.config.js new file mode 100644 index 000000000..94a67eb7f --- /dev/null +++ b/view/js/fancybox/fancybox.config.js @@ -0,0 +1,10 @@ +$(document).ready(function() { + $.fancybox.defaults.loop = "true"; + $.fancybox.defaults.afterLoad = function(instance, current) { + current.$image.attr('alt', current.opts.$orig.find('img').attr('alt') ); + current.$image.attr('title', current.opts.$orig.find('img').attr('title') ); + }; + $.fancybox.defaults.caption = function (instance, slide, caption) { + return slide.$thumb.attr('alt'); + }; +}); diff --git a/view/js/fancybox/jquery.fancybox.css b/view/js/fancybox/jquery.fancybox.css new file mode 100644 index 000000000..16b01254a --- /dev/null +++ b/view/js/fancybox/jquery.fancybox.css @@ -0,0 +1,895 @@ +body.compensate-for-scrollbar { + overflow: hidden; +} + +.fancybox-active { + height: auto; +} + +.fancybox-is-hidden { + left: -9999px; + margin: 0; + position: absolute !important; + top: -9999px; + visibility: hidden; +} + +.fancybox-container { + -webkit-backface-visibility: hidden; + height: 100%; + left: 0; + outline: none; + position: fixed; + -webkit-tap-highlight-color: transparent; + top: 0; + -ms-touch-action: manipulation; + touch-action: manipulation; + transform: translateZ(0); + width: 100%; + z-index: 99992; +} + +.fancybox-container * { + box-sizing: border-box; +} + +.fancybox-outer, +.fancybox-inner, +.fancybox-bg, +.fancybox-stage { + bottom: 0; + left: 0; + position: absolute; + right: 0; + top: 0; +} + +.fancybox-outer { + -webkit-overflow-scrolling: touch; + overflow-y: auto; +} + +.fancybox-bg { + background: rgb(30, 30, 30); + opacity: 0; + transition-duration: inherit; + transition-property: opacity; + transition-timing-function: cubic-bezier(.47, 0, .74, .71); +} + +.fancybox-is-open .fancybox-bg { + opacity: .9; + transition-timing-function: cubic-bezier(.22, .61, .36, 1); +} + +.fancybox-infobar, +.fancybox-toolbar, +.fancybox-caption, +.fancybox-navigation .fancybox-button { + direction: ltr; + opacity: 0; + position: absolute; + transition: opacity .25s ease, visibility 0s ease .25s; + visibility: hidden; + z-index: 99997; +} + +.fancybox-show-infobar .fancybox-infobar, +.fancybox-show-toolbar .fancybox-toolbar, +.fancybox-show-caption .fancybox-caption, +.fancybox-show-nav .fancybox-navigation .fancybox-button { + opacity: 1; + transition: opacity .25s ease 0s, visibility 0s ease 0s; + visibility: visible; +} + +.fancybox-infobar { + color: #ccc; + font-size: 13px; + -webkit-font-smoothing: subpixel-antialiased; + height: 44px; + left: 0; + line-height: 44px; + min-width: 44px; + mix-blend-mode: difference; + padding: 0 10px; + pointer-events: none; + top: 0; + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.fancybox-toolbar { + right: 0; + top: 0; +} + +.fancybox-stage { + direction: ltr; + overflow: visible; + transform: translateZ(0); + z-index: 99994; +} + +.fancybox-is-open .fancybox-stage { + overflow: hidden; +} + +.fancybox-slide { + -webkit-backface-visibility: hidden; + /* Using without prefix would break IE11 */ + display: none; + height: 100%; + left: 0; + outline: none; + overflow: auto; + -webkit-overflow-scrolling: touch; + padding: 44px; + position: absolute; + text-align: center; + top: 0; + transition-property: transform, opacity; + white-space: normal; + width: 100%; + z-index: 99994; +} + +.fancybox-slide::before { + content: ''; + display: inline-block; + font-size: 0; + height: 100%; + vertical-align: middle; + width: 0; +} + +.fancybox-is-sliding .fancybox-slide, +.fancybox-slide--previous, +.fancybox-slide--current, +.fancybox-slide--next { + display: block; +} + +.fancybox-slide--image { + overflow: hidden; + padding: 44px 0; +} + +.fancybox-slide--image::before { + display: none; +} + +.fancybox-slide--html { + padding: 6px; +} + +.fancybox-content { + background: #fff; + display: inline-block; + margin: 0; + max-width: 100%; + overflow: auto; + -webkit-overflow-scrolling: touch; + padding: 44px; + position: relative; + text-align: left; + vertical-align: middle; +} + +.fancybox-slide--image .fancybox-content { + animation-timing-function: cubic-bezier(.5, 0, .14, 1); + -webkit-backface-visibility: hidden; + background: transparent; + background-repeat: no-repeat; + background-size: 100% 100%; + left: 0; + max-width: none; + overflow: visible; + padding: 0; + position: absolute; + top: 0; + -ms-transform-origin: top left; + transform-origin: top left; + transition-property: transform, opacity; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + z-index: 99995; +} + +.fancybox-can-zoomOut .fancybox-content { + cursor: zoom-out; +} + +.fancybox-can-zoomIn .fancybox-content { + cursor: zoom-in; +} + +.fancybox-can-swipe .fancybox-content, +.fancybox-can-pan .fancybox-content { + cursor: -webkit-grab; + cursor: grab; +} + +.fancybox-is-grabbing .fancybox-content { + cursor: -webkit-grabbing; + cursor: grabbing; +} + +.fancybox-container [data-selectable='true'] { + cursor: text; +} + +.fancybox-image, +.fancybox-spaceball { + background: transparent; + border: 0; + height: 100%; + left: 0; + margin: 0; + max-height: none; + max-width: none; + padding: 0; + position: absolute; + top: 0; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + width: 100%; +} + +.fancybox-spaceball { + z-index: 1; +} + +.fancybox-slide--video .fancybox-content, +.fancybox-slide--map .fancybox-content, +.fancybox-slide--pdf .fancybox-content, +.fancybox-slide--iframe .fancybox-content { + height: 100%; + overflow: visible; + padding: 0; + width: 100%; +} + +.fancybox-slide--video .fancybox-content { + background: #000; +} + +.fancybox-slide--map .fancybox-content { + background: #e5e3df; +} + +.fancybox-slide--iframe .fancybox-content { + background: #fff; +} + +.fancybox-video, +.fancybox-iframe { + background: transparent; + border: 0; + display: block; + height: 100%; + margin: 0; + overflow: hidden; + padding: 0; + width: 100%; +} + +/* Fix iOS */ +.fancybox-iframe { + left: 0; + position: absolute; + top: 0; +} + +.fancybox-error { + background: #fff; + cursor: default; + max-width: 400px; + padding: 40px; + width: 100%; +} + +.fancybox-error p { + color: #444; + font-size: 16px; + line-height: 20px; + margin: 0; + padding: 0; +} + +/* Buttons */ + +.fancybox-button { + background: rgba(30, 30, 30, .6); + border: 0; + border-radius: 0; + box-shadow: none; + cursor: pointer; + display: inline-block; + height: 44px; + margin: 0; + padding: 10px; + position: relative; + transition: color .2s; + vertical-align: top; + visibility: inherit; + width: 44px; +} + +.fancybox-button, +.fancybox-button:visited, +.fancybox-button:link { + color: #ccc; +} + +.fancybox-button:hover { + color: #fff; +} + +.fancybox-button:focus { + outline: none; +} + +.fancybox-button.fancybox-focus { + outline: 1px dotted; +} + +.fancybox-button[disabled], +.fancybox-button[disabled]:hover { + color: #888; + cursor: default; + outline: none; +} + +/* Fix IE11 */ +.fancybox-button div { + height: 100%; +} + +.fancybox-button svg { + display: block; + height: 100%; + overflow: visible; + position: relative; + width: 100%; +} + +.fancybox-button svg path { + fill: currentColor; + stroke-width: 0; +} + +.fancybox-button--play svg:nth-child(2), +.fancybox-button--fsenter svg:nth-child(2) { + display: none; +} + +.fancybox-button--pause svg:nth-child(1), +.fancybox-button--fsexit svg:nth-child(1) { + display: none; +} + +.fancybox-progress { + background: #ff5268; + height: 2px; + left: 0; + position: absolute; + right: 0; + top: 0; + -ms-transform: scaleX(0); + transform: scaleX(0); + -ms-transform-origin: 0; + transform-origin: 0; + transition-property: transform; + transition-timing-function: linear; + z-index: 99998; +} + +/* Close button on the top right corner of html content */ + +.fancybox-close-small { + background: transparent; + border: 0; + border-radius: 0; + color: #ccc; + cursor: pointer; + opacity: .8; + padding: 8px; + position: absolute; + right: -12px; + top: -44px; + z-index: 401; +} + +.fancybox-close-small:hover { + color: #fff; + opacity: 1; +} + +.fancybox-slide--html .fancybox-close-small { + color: currentColor; + padding: 10px; + right: 0; + top: 0; +} + +.fancybox-slide--image.fancybox-is-scaling .fancybox-content { + overflow: hidden; +} + +.fancybox-is-scaling .fancybox-close-small, +.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small { + display: none; +} + +/* Navigation arrows */ + +.fancybox-navigation .fancybox-button { + background-clip: content-box; + height: 100px; + opacity: 0; + position: absolute; + top: calc(50% - 50px); + width: 70px; +} + +.fancybox-navigation .fancybox-button div { + padding: 7px; +} + +.fancybox-navigation .fancybox-button--arrow_left { + left: 0; + left: env(safe-area-inset-left); + padding: 31px 26px 31px 6px; +} + +.fancybox-navigation .fancybox-button--arrow_right { + padding: 31px 6px 31px 26px; + right: 0; + right: env(safe-area-inset-right); +} + +/* Caption */ + +.fancybox-caption { + background: linear-gradient(to top, + rgba(0, 0, 0, .85) 0%, + rgba(0, 0, 0, .3) 50%, + rgba(0, 0, 0, .15) 65%, + rgba(0, 0, 0, .075) 75.5%, + rgba(0, 0, 0, .037) 82.85%, + rgba(0, 0, 0, .019) 88%, + rgba(0, 0, 0, 0) 100%); + bottom: 0; + color: #eee; + font-size: 14px; + font-weight: 400; + left: 0; + line-height: 1.5; + padding: 75px 44px 25px 44px; + pointer-events: none; + right: 0; + text-align: center; + z-index: 99996; +} + +@supports (padding: max(0px)) { + .fancybox-caption { + padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left)); + } +} + +.fancybox-caption--separate { + margin-top: -50px; +} + +.fancybox-caption__body { + max-height: 50vh; + overflow: auto; + pointer-events: all; +} + +.fancybox-caption a, +.fancybox-caption a:link, +.fancybox-caption a:visited { + color: #ccc; + text-decoration: none; +} + +.fancybox-caption a:hover { + color: #fff; + text-decoration: underline; +} + +/* Loading indicator */ + +.fancybox-loading { + animation: fancybox-rotate 1s linear infinite; + background: transparent; + border: 4px solid #888; + border-bottom-color: #fff; + border-radius: 50%; + height: 50px; + left: 50%; + margin: -25px 0 0 -25px; + opacity: .7; + padding: 0; + position: absolute; + top: 50%; + width: 50px; + z-index: 99999; +} + +@keyframes fancybox-rotate { + 100% { + transform: rotate(360deg); + } +} + +/* Transition effects */ + +.fancybox-animated { + transition-timing-function: cubic-bezier(0, 0, .25, 1); +} + +/* transitionEffect: slide */ + +.fancybox-fx-slide.fancybox-slide--previous { + opacity: 0; + transform: translate3d(-100%, 0, 0); +} + +.fancybox-fx-slide.fancybox-slide--next { + opacity: 0; + transform: translate3d(100%, 0, 0); +} + +.fancybox-fx-slide.fancybox-slide--current { + opacity: 1; + transform: translate3d(0, 0, 0); +} + +/* transitionEffect: fade */ + +.fancybox-fx-fade.fancybox-slide--previous, +.fancybox-fx-fade.fancybox-slide--next { + opacity: 0; + transition-timing-function: cubic-bezier(.19, 1, .22, 1); +} + +.fancybox-fx-fade.fancybox-slide--current { + opacity: 1; +} + +/* transitionEffect: zoom-in-out */ + +.fancybox-fx-zoom-in-out.fancybox-slide--previous { + opacity: 0; + transform: scale3d(1.5, 1.5, 1.5); +} + +.fancybox-fx-zoom-in-out.fancybox-slide--next { + opacity: 0; + transform: scale3d(.5, .5, .5); +} + +.fancybox-fx-zoom-in-out.fancybox-slide--current { + opacity: 1; + transform: scale3d(1, 1, 1); +} + +/* transitionEffect: rotate */ + +.fancybox-fx-rotate.fancybox-slide--previous { + opacity: 0; + -ms-transform: rotate(-360deg); + transform: rotate(-360deg); +} + +.fancybox-fx-rotate.fancybox-slide--next { + opacity: 0; + -ms-transform: rotate(360deg); + transform: rotate(360deg); +} + +.fancybox-fx-rotate.fancybox-slide--current { + opacity: 1; + -ms-transform: rotate(0deg); + transform: rotate(0deg); +} + +/* transitionEffect: circular */ + +.fancybox-fx-circular.fancybox-slide--previous { + opacity: 0; + transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0); +} + +.fancybox-fx-circular.fancybox-slide--next { + opacity: 0; + transform: scale3d(0, 0, 0) translate3d(100%, 0, 0); +} + +.fancybox-fx-circular.fancybox-slide--current { + opacity: 1; + transform: scale3d(1, 1, 1) translate3d(0, 0, 0); +} + +/* transitionEffect: tube */ + +.fancybox-fx-tube.fancybox-slide--previous { + transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg); +} + +.fancybox-fx-tube.fancybox-slide--next { + transform: translate3d(100%, 0, 0) scale(.1) skew(10deg); +} + +.fancybox-fx-tube.fancybox-slide--current { + transform: translate3d(0, 0, 0) scale(1); +} + +/* Styling for Small-Screen Devices */ +@media all and (max-height: 576px) { + .fancybox-slide { + padding-left: 6px; + padding-right: 6px; + } + + .fancybox-slide--image { + padding: 6px 0; + } + + .fancybox-close-small { + right: -6px; + } + + .fancybox-slide--image .fancybox-close-small { + background: #4e4e4e; + color: #f2f4f6; + height: 36px; + opacity: 1; + padding: 6px; + right: 0; + top: 0; + width: 36px; + } + + .fancybox-caption { + padding-left: 12px; + padding-right: 12px; + } + + @supports (padding: max(0px)) { + .fancybox-caption { + padding-left: max(12px, env(safe-area-inset-left)); + padding-right: max(12px, env(safe-area-inset-right)); + } + } +} +/* Share */ + +.fancybox-share { + background: #f4f4f4; + border-radius: 3px; + max-width: 90%; + padding: 30px; + text-align: center; +} + +.fancybox-share h1 { + color: #222; + font-size: 35px; + font-weight: 700; + margin: 0 0 20px 0; +} + +.fancybox-share p { + margin: 0; + padding: 0; +} + +.fancybox-share__button { + border: 0; + border-radius: 3px; + display: inline-block; + font-size: 14px; + font-weight: 700; + line-height: 40px; + margin: 0 5px 10px 5px; + min-width: 130px; + padding: 0 15px; + text-decoration: none; + transition: all .2s; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + white-space: nowrap; +} + +.fancybox-share__button:visited, +.fancybox-share__button:link { + color: #fff; +} + +.fancybox-share__button:hover { + text-decoration: none; +} + +.fancybox-share__button--fb { + background: #3b5998; +} + +.fancybox-share__button--fb:hover { + background: #344e86; +} + +.fancybox-share__button--pt { + background: #bd081d; +} + +.fancybox-share__button--pt:hover { + background: #aa0719; +} + +.fancybox-share__button--tw { + background: #1da1f2; +} + +.fancybox-share__button--tw:hover { + background: #0d95e8; +} + +.fancybox-share__button svg { + height: 25px; + margin-right: 7px; + position: relative; + top: -1px; + vertical-align: middle; + width: 25px; +} + +.fancybox-share__button svg path { + fill: #fff; +} + +.fancybox-share__input { + background: transparent; + border: 0; + border-bottom: 1px solid #d7d7d7; + border-radius: 0; + color: #5d5b5b; + font-size: 14px; + margin: 10px 0 0 0; + outline: none; + padding: 10px 15px; + width: 100%; +} +/* Thumbs */ + +.fancybox-thumbs { + background: #ddd; + bottom: 0; + display: none; + margin: 0; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; + padding: 2px 2px 4px 2px; + position: absolute; + right: 0; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + top: 0; + width: 212px; + z-index: 99995; +} + +.fancybox-thumbs-x { + overflow-x: auto; + overflow-y: hidden; +} + +.fancybox-show-thumbs .fancybox-thumbs { + display: block; +} + +.fancybox-show-thumbs .fancybox-inner { + right: 212px; +} + +.fancybox-thumbs__list { + font-size: 0; + height: 100%; + list-style: none; + margin: 0; + overflow-x: hidden; + overflow-y: auto; + padding: 0; + position: absolute; + position: relative; + white-space: nowrap; + width: 100%; +} + +.fancybox-thumbs-x .fancybox-thumbs__list { + overflow: hidden; +} + +.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar { + width: 7px; +} + +.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track { + background: #fff; + border-radius: 10px; + box-shadow: inset 0 0 6px rgba(0, 0, 0, .3); +} + +.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb { + background: #2a2a2a; + border-radius: 10px; +} + +.fancybox-thumbs__list a { + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + background-color: rgba(0, 0, 0, .1); + background-position: center center; + background-repeat: no-repeat; + background-size: cover; + cursor: pointer; + float: left; + height: 75px; + margin: 2px; + max-height: calc(100% - 8px); + max-width: calc(50% - 4px); + outline: none; + overflow: hidden; + padding: 0; + position: relative; + -webkit-tap-highlight-color: transparent; + width: 100px; +} + +.fancybox-thumbs__list a::before { + border: 6px solid #ff5268; + bottom: 0; + content: ''; + left: 0; + opacity: 0; + position: absolute; + right: 0; + top: 0; + transition: all .2s cubic-bezier(.25, .46, .45, .94); + z-index: 99991; +} + +.fancybox-thumbs__list a:focus::before { + opacity: .5; +} + +.fancybox-thumbs__list a.fancybox-thumbs-active::before { + opacity: 1; +} + +/* Styling for Small-Screen Devices */ +@media all and (max-width: 576px) { + .fancybox-thumbs { + width: 110px; + } + + .fancybox-show-thumbs .fancybox-inner { + right: 110px; + } + + .fancybox-thumbs__list a { + max-width: calc(100% - 10px); + } +} \ No newline at end of file diff --git a/view/js/fancybox/jquery.fancybox.js b/view/js/fancybox/jquery.fancybox.js new file mode 100644 index 000000000..806b27034 --- /dev/null +++ b/view/js/fancybox/jquery.fancybox.js @@ -0,0 +1,5632 @@ +// ================================================== +// fancyBox v3.5.7 +// +// Licensed GPLv3 for open source use +// or fancyBox Commercial License for commercial use +// +// http://fancyapps.com/fancybox/ +// Copyright 2019 fancyApps +// +// ================================================== +(function (window, document, $, undefined) { + "use strict"; + + window.console = window.console || { + info: function (stuff) {} + }; + + // If there's no jQuery, fancyBox can't work + // ========================================= + + if (!$) { + return; + } + + // Check if fancyBox is already initialized + // ======================================== + + if ($.fn.fancybox) { + console.info("fancyBox already initialized"); + + return; + } + + // Private default settings + // ======================== + + var defaults = { + // Close existing modals + // Set this to false if you do not need to stack multiple instances + closeExisting: false, + + // Enable infinite gallery navigation + loop: false, + + // Horizontal space between slides + gutter: 50, + + // Enable keyboard navigation + keyboard: true, + + // Should allow caption to overlap the content + preventCaptionOverlap: true, + + // Should display navigation arrows at the screen edges + arrows: true, + + // Should display counter at the top left corner + infobar: true, + + // Should display close button (using `btnTpl.smallBtn` template) over the content + // Can be true, false, "auto" + // If "auto" - will be automatically enabled for "html", "inline" or "ajax" items + smallBtn: "auto", + + // Should display toolbar (buttons at the top) + // Can be true, false, "auto" + // If "auto" - will be automatically hidden if "smallBtn" is enabled + toolbar: "auto", + + // What buttons should appear in the top right corner. + // Buttons will be created using templates from `btnTpl` option + // and they will be placed into toolbar (class="fancybox-toolbar"` element) + buttons: [ + "zoom", + //"share", + "slideShow", + //"fullScreen", + //"download", + "thumbs", + "close" + ], + + // Detect "idle" time in seconds + idleTime: 3, + + // Disable right-click and use simple image protection for images + protect: false, + + // Shortcut to make content "modal" - disable keyboard navigtion, hide buttons, etc + modal: false, + + image: { + // Wait for images to load before displaying + // true - wait for image to load and then display; + // false - display thumbnail and load the full-sized image over top, + // requires predefined image dimensions (`data-width` and `data-height` attributes) + preload: false + }, + + ajax: { + // Object containing settings for ajax request + settings: { + // This helps to indicate that request comes from the modal + // Feel free to change naming + data: { + fancybox: true + } + } + }, + + iframe: { + // Iframe template + tpl: '', + + // Preload iframe before displaying it + // This allows to calculate iframe content width and height + // (note: Due to "Same Origin Policy", you can't get cross domain data). + preload: true, + + // Custom CSS styling for iframe wrapping element + // You can use this to set custom iframe dimensions + css: {}, + + // Iframe tag attributes + attr: { + scrolling: "auto" + } + }, + + // For HTML5 video only + video: { + tpl: '", + format: "", // custom video format + autoStart: true + }, + + // Default content type if cannot be detected automatically + defaultType: "image", + + // Open/close animation type + // Possible values: + // false - disable + // "zoom" - zoom images from/to thumbnail + // "fade" + // "zoom-in-out" + // + animationEffect: "zoom", + + // Duration in ms for open/close animation + animationDuration: 366, + + // Should image change opacity while zooming + // If opacity is "auto", then opacity will be changed if image and thumbnail have different aspect ratios + zoomOpacity: "auto", + + // Transition effect between slides + // + // Possible values: + // false - disable + // "fade' + // "slide' + // "circular' + // "tube' + // "zoom-in-out' + // "rotate' + // + transitionEffect: "fade", + + // Duration in ms for transition animation + transitionDuration: 366, + + // Custom CSS class for slide element + slideClass: "", + + // Custom CSS class for layout + baseClass: "", + + // Base template for layout + baseTpl: '", + + // Loading indicator template + spinnerTpl: '
', + + // Error message template + errorTpl: '

{{ERROR}}

', + + btnTpl: { + download: '' + + '' + + "", + + zoom: '", + + close: '", + + // Arrows + arrowLeft: '", + + arrowRight: '", + + // This small close button will be appended to your html/inline/ajax content by default, + // if "smallBtn" option is not set to false + smallBtn: '" + }, + + // Container is injected into this element + parentEl: "body", + + // Hide browser vertical scrollbars; use at your own risk + hideScrollbar: true, + + // Focus handling + // ============== + + // Try to focus on the first focusable element after opening + autoFocus: true, + + // Put focus back to active element after closing + backFocus: true, + + // Do not let user to focus on element outside modal content + trapFocus: true, + + // Module specific options + // ======================= + + fullScreen: { + autoStart: false + }, + + // Set `touch: false` to disable panning/swiping + touch: { + vertical: true, // Allow to drag content vertically + momentum: true // Continue movement after releasing mouse/touch when panning + }, + + // Hash value when initializing manually, + // set `false` to disable hash change + hash: null, + + // Customize or add new media types + // Example: + /* + media : { + youtube : { + params : { + autoplay : 0 + } + } + } + */ + media: {}, + + slideShow: { + autoStart: false, + speed: 3000 + }, + + thumbs: { + autoStart: false, // Display thumbnails on opening + hideOnClose: true, // Hide thumbnail grid when closing animation starts + parentEl: ".fancybox-container", // Container is injected into this element + axis: "y" // Vertical (y) or horizontal (x) scrolling + }, + + // Use mousewheel to navigate gallery + // If 'auto' - enabled for images only + wheel: "auto", + + // Callbacks + //========== + + // See Documentation/API/Events for more information + // Example: + /* + afterShow: function( instance, current ) { + console.info( 'Clicked element:' ); + console.info( current.opts.$orig ); + } + */ + + onInit: $.noop, // When instance has been initialized + + beforeLoad: $.noop, // Before the content of a slide is being loaded + afterLoad: $.noop, // When the content of a slide is done loading + + beforeShow: $.noop, // Before open animation starts + afterShow: $.noop, // When content is done loading and animating + + beforeClose: $.noop, // Before the instance attempts to close. Return false to cancel the close. + afterClose: $.noop, // After instance has been closed + + onActivate: $.noop, // When instance is brought to front + onDeactivate: $.noop, // When other instance has been activated + + // Interaction + // =========== + + // Use options below to customize taken action when user clicks or double clicks on the fancyBox area, + // each option can be string or method that returns value. + // + // Possible values: + // "close" - close instance + // "next" - move to next gallery item + // "nextOrClose" - move to next gallery item or close if gallery has only one item + // "toggleControls" - show/hide controls + // "zoom" - zoom image (if loaded) + // false - do nothing + + // Clicked on the content + clickContent: function (current, event) { + return current.type === "image" ? "zoom" : false; + }, + + // Clicked on the slide + clickSlide: "close", + + // Clicked on the background (backdrop) element; + // if you have not changed the layout, then most likely you need to use `clickSlide` option + clickOutside: "close", + + // Same as previous two, but for double click + dblclickContent: false, + dblclickSlide: false, + dblclickOutside: false, + + // Custom options when mobile device is detected + // ============================================= + + mobile: { + preventCaptionOverlap: false, + idleTime: false, + clickContent: function (current, event) { + return current.type === "image" ? "toggleControls" : false; + }, + clickSlide: function (current, event) { + return current.type === "image" ? "toggleControls" : "close"; + }, + dblclickContent: function (current, event) { + return current.type === "image" ? "zoom" : false; + }, + dblclickSlide: function (current, event) { + return current.type === "image" ? "zoom" : false; + } + }, + + // Internationalization + // ==================== + + lang: "en", + i18n: { + en: { + CLOSE: "Close", + NEXT: "Next", + PREV: "Previous", + ERROR: "The requested content cannot be loaded.
Please try again later.", + PLAY_START: "Start slideshow", + PLAY_STOP: "Pause slideshow", + FULL_SCREEN: "Full screen", + THUMBS: "Thumbnails", + DOWNLOAD: "Download", + SHARE: "Share", + ZOOM: "Zoom" + }, + de: { + CLOSE: "Schließen", + NEXT: "Weiter", + PREV: "Zurück", + ERROR: "Die angeforderten Daten konnten nicht geladen werden.
Bitte versuchen Sie es später nochmal.", + PLAY_START: "Diaschau starten", + PLAY_STOP: "Diaschau beenden", + FULL_SCREEN: "Vollbild", + THUMBS: "Vorschaubilder", + DOWNLOAD: "Herunterladen", + SHARE: "Teilen", + ZOOM: "Vergrößern" + } + } + }; + + // Few useful variables and methods + // ================================ + + var $W = $(window); + var $D = $(document); + + var called = 0; + + // Check if an object is a jQuery object and not a native JavaScript object + // ======================================================================== + var isQuery = function (obj) { + return obj && obj.hasOwnProperty && obj instanceof $; + }; + + // Handle multiple browsers for "requestAnimationFrame" and "cancelAnimationFrame" + // =============================================================================== + var requestAFrame = (function () { + return ( + window.requestAnimationFrame || + window.webkitRequestAnimationFrame || + window.mozRequestAnimationFrame || + window.oRequestAnimationFrame || + // if all else fails, use setTimeout + function (callback) { + return window.setTimeout(callback, 1000 / 60); + } + ); + })(); + + var cancelAFrame = (function () { + return ( + window.cancelAnimationFrame || + window.webkitCancelAnimationFrame || + window.mozCancelAnimationFrame || + window.oCancelAnimationFrame || + function (id) { + window.clearTimeout(id); + } + ); + })(); + + // Detect the supported transition-end event property name + // ======================================================= + var transitionEnd = (function () { + var el = document.createElement("fakeelement"), + t; + + var transitions = { + transition: "transitionend", + OTransition: "oTransitionEnd", + MozTransition: "transitionend", + WebkitTransition: "webkitTransitionEnd" + }; + + for (t in transitions) { + if (el.style[t] !== undefined) { + return transitions[t]; + } + } + + return "transitionend"; + })(); + + // Force redraw on an element. + // This helps in cases where the browser doesn't redraw an updated element properly + // ================================================================================ + var forceRedraw = function ($el) { + return $el && $el.length && $el[0].offsetHeight; + }; + + // Exclude array (`buttons`) options from deep merging + // =================================================== + var mergeOpts = function (opts1, opts2) { + var rez = $.extend(true, {}, opts1, opts2); + + $.each(opts2, function (key, value) { + if ($.isArray(value)) { + rez[key] = value; + } + }); + + return rez; + }; + + // How much of an element is visible in viewport + // ============================================= + + var inViewport = function (elem) { + var elemCenter, rez; + + if (!elem || elem.ownerDocument !== document) { + return false; + } + + $(".fancybox-container").css("pointer-events", "none"); + + elemCenter = { + x: elem.getBoundingClientRect().left + elem.offsetWidth / 2, + y: elem.getBoundingClientRect().top + elem.offsetHeight / 2 + }; + + rez = document.elementFromPoint(elemCenter.x, elemCenter.y) === elem; + + $(".fancybox-container").css("pointer-events", ""); + + return rez; + }; + + // Class definition + // ================ + + var FancyBox = function (content, opts, index) { + var self = this; + + self.opts = mergeOpts({ + index: index + }, $.fancybox.defaults); + + if ($.isPlainObject(opts)) { + self.opts = mergeOpts(self.opts, opts); + } + + if ($.fancybox.isMobile) { + self.opts = mergeOpts(self.opts, self.opts.mobile); + } + + self.id = self.opts.id || ++called; + + self.currIndex = parseInt(self.opts.index, 10) || 0; + self.prevIndex = null; + + self.prevPos = null; + self.currPos = 0; + + self.firstRun = true; + + // All group items + self.group = []; + + // Existing slides (for current, next and previous gallery items) + self.slides = {}; + + // Create group elements + self.addContent(content); + + if (!self.group.length) { + return; + } + + self.init(); + }; + + $.extend(FancyBox.prototype, { + // Create DOM structure + // ==================== + + init: function () { + var self = this, + firstItem = self.group[self.currIndex], + firstItemOpts = firstItem.opts, + $container, + buttonStr; + + if (firstItemOpts.closeExisting) { + $.fancybox.close(true); + } + + // Hide scrollbars + // =============== + + $("body").addClass("fancybox-active"); + + if ( + !$.fancybox.getInstance() && + firstItemOpts.hideScrollbar !== false && + !$.fancybox.isMobile && + document.body.scrollHeight > window.innerHeight + ) { + $("head").append( + '" + ); + + $("body").addClass("compensate-for-scrollbar"); + } + + // Build html markup and set references + // ==================================== + + // Build html code for buttons and insert into main template + buttonStr = ""; + + $.each(firstItemOpts.buttons, function (index, value) { + buttonStr += firstItemOpts.btnTpl[value] || ""; + }); + + // Create markup from base template, it will be initially hidden to + // avoid unnecessary work like painting while initializing is not complete + $container = $( + self.translate( + self, + firstItemOpts.baseTpl + .replace("{{buttons}}", buttonStr) + .replace("{{arrows}}", firstItemOpts.btnTpl.arrowLeft + firstItemOpts.btnTpl.arrowRight) + ) + ) + .attr("id", "fancybox-container-" + self.id) + .addClass(firstItemOpts.baseClass) + .data("FancyBox", self) + .appendTo(firstItemOpts.parentEl); + + // Create object holding references to jQuery wrapped nodes + self.$refs = { + container: $container + }; + + ["bg", "inner", "infobar", "toolbar", "stage", "caption", "navigation"].forEach(function (item) { + self.$refs[item] = $container.find(".fancybox-" + item); + }); + + self.trigger("onInit"); + + // Enable events, deactive previous instances + self.activate(); + + // Build slides, load and reveal content + self.jumpTo(self.currIndex); + }, + + // Simple i18n support - replaces object keys found in template + // with corresponding values + // ============================================================ + + translate: function (obj, str) { + var arr = obj.opts.i18n[obj.opts.lang] || obj.opts.i18n.en; + + return str.replace(/\{\{(\w+)\}\}/g, function (match, n) { + return arr[n] === undefined ? match : arr[n]; + }); + }, + + // Populate current group with fresh content + // Check if each object has valid type and content + // =============================================== + + addContent: function (content) { + var self = this, + items = $.makeArray(content), + thumbs; + + $.each(items, function (i, item) { + var obj = {}, + opts = {}, + $item, + type, + found, + src, + srcParts; + + // Step 1 - Make sure we have an object + // ==================================== + + if ($.isPlainObject(item)) { + // We probably have manual usage here, something like + // $.fancybox.open( [ { src : "image.jpg", type : "image" } ] ) + + obj = item; + opts = item.opts || item; + } else if ($.type(item) === "object" && $(item).length) { + // Here we probably have jQuery collection returned by some selector + $item = $(item); + + // Support attributes like `data-options='{"touch" : false}'` and `data-touch='false'` + opts = $item.data() || {}; + opts = $.extend(true, {}, opts, opts.options); + + // Here we store clicked element + opts.$orig = $item; + + obj.src = self.opts.src || opts.src || $item.attr("href"); + + // Assume that simple syntax is used, for example: + // `$.fancybox.open( $("#test"), {} );` + if (!obj.type && !obj.src) { + obj.type = "inline"; + obj.src = item; + } + } else { + // Assume we have a simple html code, for example: + // $.fancybox.open( '

Hi!

' ); + obj = { + type: "html", + src: item + "" + }; + } + + // Each gallery object has full collection of options + obj.opts = $.extend(true, {}, self.opts, opts); + + // Do not merge buttons array + if ($.isArray(opts.buttons)) { + obj.opts.buttons = opts.buttons; + } + + if ($.fancybox.isMobile && obj.opts.mobile) { + obj.opts = mergeOpts(obj.opts, obj.opts.mobile); + } + + // Step 2 - Make sure we have content type, if not - try to guess + // ============================================================== + + type = obj.type || obj.opts.type; + src = obj.src || ""; + + if (!type && src) { + if ((found = src.match(/\.(mp4|mov|ogv|webm)((\?|#).*)?$/i))) { + type = "video"; + + if (!obj.opts.video.format) { + obj.opts.video.format = "video/" + (found[1] === "ogv" ? "ogg" : found[1]); + } + } else if (src.match(/(^data:image\/[a-z0-9+\/=]*,)|(\.(jp(e|g|eg)|gif|png|bmp|webp|svg|ico)((\?|#).*)?$)/i)) { + type = "image"; + } else if (src.match(/\.(pdf)((\?|#).*)?$/i)) { + type = "iframe"; + obj = $.extend(true, obj, { + contentType: "pdf", + opts: { + iframe: { + preload: false + } + } + }); + } else if (src.charAt(0) === "#") { + type = "inline"; + } + } + + if (type) { + obj.type = type; + } else { + self.trigger("objectNeedsType", obj); + } + + if (!obj.contentType) { + obj.contentType = $.inArray(obj.type, ["html", "inline", "ajax"]) > -1 ? "html" : obj.type; + } + + // Step 3 - Some adjustments + // ========================= + + obj.index = self.group.length; + + if (obj.opts.smallBtn == "auto") { + obj.opts.smallBtn = $.inArray(obj.type, ["html", "inline", "ajax"]) > -1; + } + + if (obj.opts.toolbar === "auto") { + obj.opts.toolbar = !obj.opts.smallBtn; + } + + // Find thumbnail image, check if exists and if is in the viewport + obj.$thumb = obj.opts.$thumb || null; + + if (obj.opts.$trigger && obj.index === self.opts.index) { + obj.$thumb = obj.opts.$trigger.find("img:first"); + + if (obj.$thumb.length) { + obj.opts.$orig = obj.opts.$trigger; + } + } + + if (!(obj.$thumb && obj.$thumb.length) && obj.opts.$orig) { + obj.$thumb = obj.opts.$orig.find("img:first"); + } + + if (obj.$thumb && !obj.$thumb.length) { + obj.$thumb = null; + } + + obj.thumb = obj.opts.thumb || (obj.$thumb ? obj.$thumb[0].src : null); + + // "caption" is a "special" option, it can be used to customize caption per gallery item + if ($.type(obj.opts.caption) === "function") { + obj.opts.caption = obj.opts.caption.apply(item, [self, obj]); + } + + if ($.type(self.opts.caption) === "function") { + obj.opts.caption = self.opts.caption.apply(item, [self, obj]); + } + + // Make sure we have caption as a string or jQuery object + if (!(obj.opts.caption instanceof $)) { + obj.opts.caption = obj.opts.caption === undefined ? "" : obj.opts.caption + ""; + } + + // Check if url contains "filter" used to filter the content + // Example: "ajax.html #something" + if (obj.type === "ajax") { + srcParts = src.split(/\s+/, 2); + + if (srcParts.length > 1) { + obj.src = srcParts.shift(); + + obj.opts.filter = srcParts.shift(); + } + } + + // Hide all buttons and disable interactivity for modal items + if (obj.opts.modal) { + obj.opts = $.extend(true, obj.opts, { + trapFocus: true, + // Remove buttons + infobar: 0, + toolbar: 0, + + smallBtn: 0, + + // Disable keyboard navigation + keyboard: 0, + + // Disable some modules + slideShow: 0, + fullScreen: 0, + thumbs: 0, + touch: 0, + + // Disable click event handlers + clickContent: false, + clickSlide: false, + clickOutside: false, + dblclickContent: false, + dblclickSlide: false, + dblclickOutside: false + }); + } + + // Step 4 - Add processed object to group + // ====================================== + + self.group.push(obj); + }); + + // Update controls if gallery is already opened + if (Object.keys(self.slides).length) { + self.updateControls(); + + // Update thumbnails, if needed + thumbs = self.Thumbs; + + if (thumbs && thumbs.isActive) { + thumbs.create(); + + thumbs.focus(); + } + } + }, + + // Attach an event handler functions for: + // - navigation buttons + // - browser scrolling, resizing; + // - focusing + // - keyboard + // - detecting inactivity + // ====================================== + + addEvents: function () { + var self = this; + + self.removeEvents(); + + // Make navigation elements clickable + // ================================== + + self.$refs.container + .on("click.fb-close", "[data-fancybox-close]", function (e) { + e.stopPropagation(); + e.preventDefault(); + + self.close(e); + }) + .on("touchstart.fb-prev click.fb-prev", "[data-fancybox-prev]", function (e) { + e.stopPropagation(); + e.preventDefault(); + + self.previous(); + }) + .on("touchstart.fb-next click.fb-next", "[data-fancybox-next]", function (e) { + e.stopPropagation(); + e.preventDefault(); + + self.next(); + }) + .on("click.fb", "[data-fancybox-zoom]", function (e) { + // Click handler for zoom button + self[self.isScaledDown() ? "scaleToActual" : "scaleToFit"](); + }); + + // Handle page scrolling and browser resizing + // ========================================== + + $W.on("orientationchange.fb resize.fb", function (e) { + if (e && e.originalEvent && e.originalEvent.type === "resize") { + if (self.requestId) { + cancelAFrame(self.requestId); + } + + self.requestId = requestAFrame(function () { + self.update(e); + }); + } else { + if (self.current && self.current.type === "iframe") { + self.$refs.stage.hide(); + } + + setTimeout( + function () { + self.$refs.stage.show(); + + self.update(e); + }, + $.fancybox.isMobile ? 600 : 250 + ); + } + }); + + $D.on("keydown.fb", function (e) { + var instance = $.fancybox ? $.fancybox.getInstance() : null, + current = instance.current, + keycode = e.keyCode || e.which; + + // Trap keyboard focus inside of the modal + // ======================================= + + if (keycode == 9) { + if (current.opts.trapFocus) { + self.focus(e); + } + + return; + } + + // Enable keyboard navigation + // ========================== + + if (!current.opts.keyboard || e.ctrlKey || e.altKey || e.shiftKey || $(e.target).is("input,textarea,video,audio,select")) { + return; + } + + // Backspace and Esc keys + if (keycode === 8 || keycode === 27) { + e.preventDefault(); + + self.close(e); + + return; + } + + // Left arrow and Up arrow + if (keycode === 37 || keycode === 38) { + e.preventDefault(); + + self.previous(); + + return; + } + + // Righ arrow and Down arrow + if (keycode === 39 || keycode === 40) { + e.preventDefault(); + + self.next(); + + return; + } + + self.trigger("afterKeydown", e, keycode); + }); + + // Hide controls after some inactivity period + if (self.group[self.currIndex].opts.idleTime) { + self.idleSecondsCounter = 0; + + $D.on( + "mousemove.fb-idle mouseleave.fb-idle mousedown.fb-idle touchstart.fb-idle touchmove.fb-idle scroll.fb-idle keydown.fb-idle", + function (e) { + self.idleSecondsCounter = 0; + + if (self.isIdle) { + self.showControls(); + } + + self.isIdle = false; + } + ); + + self.idleInterval = window.setInterval(function () { + self.idleSecondsCounter++; + + if (self.idleSecondsCounter >= self.group[self.currIndex].opts.idleTime && !self.isDragging) { + self.isIdle = true; + self.idleSecondsCounter = 0; + + self.hideControls(); + } + }, 1000); + } + }, + + // Remove events added by the core + // =============================== + + removeEvents: function () { + var self = this; + + $W.off("orientationchange.fb resize.fb"); + $D.off("keydown.fb .fb-idle"); + + this.$refs.container.off(".fb-close .fb-prev .fb-next"); + + if (self.idleInterval) { + window.clearInterval(self.idleInterval); + + self.idleInterval = null; + } + }, + + // Change to previous gallery item + // =============================== + + previous: function (duration) { + return this.jumpTo(this.currPos - 1, duration); + }, + + // Change to next gallery item + // =========================== + + next: function (duration) { + return this.jumpTo(this.currPos + 1, duration); + }, + + // Switch to selected gallery item + // =============================== + + jumpTo: function (pos, duration) { + var self = this, + groupLen = self.group.length, + firstRun, + isMoved, + loop, + current, + previous, + slidePos, + stagePos, + prop, + diff; + + if (self.isDragging || self.isClosing || (self.isAnimating && self.firstRun)) { + return; + } + + // Should loop? + pos = parseInt(pos, 10); + loop = self.current ? self.current.opts.loop : self.opts.loop; + + if (!loop && (pos < 0 || pos >= groupLen)) { + return false; + } + + // Check if opening for the first time; this helps to speed things up + firstRun = self.firstRun = !Object.keys(self.slides).length; + + // Create slides + previous = self.current; + + self.prevIndex = self.currIndex; + self.prevPos = self.currPos; + + current = self.createSlide(pos); + + if (groupLen > 1) { + if (loop || current.index < groupLen - 1) { + self.createSlide(pos + 1); + } + + if (loop || current.index > 0) { + self.createSlide(pos - 1); + } + } + + self.current = current; + self.currIndex = current.index; + self.currPos = current.pos; + + self.trigger("beforeShow", firstRun); + + self.updateControls(); + + // Validate duration length + current.forcedDuration = undefined; + + if ($.isNumeric(duration)) { + current.forcedDuration = duration; + } else { + duration = current.opts[firstRun ? "animationDuration" : "transitionDuration"]; + } + + duration = parseInt(duration, 10); + + // Check if user has swiped the slides or if still animating + isMoved = self.isMoved(current); + + // Make sure current slide is visible + current.$slide.addClass("fancybox-slide--current"); + + // Fresh start - reveal container, current slide and start loading content + if (firstRun) { + if (current.opts.animationEffect && duration) { + self.$refs.container.css("transition-duration", duration + "ms"); + } + + self.$refs.container.addClass("fancybox-is-open").trigger("focus"); + + // Attempt to load content into slide + // This will later call `afterLoad` -> `revealContent` + self.loadSlide(current); + + self.preload("image"); + + return; + } + + // Get actual slide/stage positions (before cleaning up) + slidePos = $.fancybox.getTranslate(previous.$slide); + stagePos = $.fancybox.getTranslate(self.$refs.stage); + + // Clean up all slides + $.each(self.slides, function (index, slide) { + $.fancybox.stop(slide.$slide, true); + }); + + if (previous.pos !== current.pos) { + previous.isComplete = false; + } + + previous.$slide.removeClass("fancybox-slide--complete fancybox-slide--current"); + + // If slides are out of place, then animate them to correct position + if (isMoved) { + // Calculate horizontal swipe distance + diff = slidePos.left - (previous.pos * slidePos.width + previous.pos * previous.opts.gutter); + + $.each(self.slides, function (index, slide) { + slide.$slide.removeClass("fancybox-animated").removeClass(function (index, className) { + return (className.match(/(^|\s)fancybox-fx-\S+/g) || []).join(" "); + }); + + // Make sure that each slide is in equal distance + // This is mostly needed for freshly added slides, because they are not yet positioned + var leftPos = slide.pos * slidePos.width + slide.pos * slide.opts.gutter; + + $.fancybox.setTranslate(slide.$slide, { + top: 0, + left: leftPos - stagePos.left + diff + }); + + if (slide.pos !== current.pos) { + slide.$slide.addClass("fancybox-slide--" + (slide.pos > current.pos ? "next" : "previous")); + } + + // Redraw to make sure that transition will start + forceRedraw(slide.$slide); + + // Animate the slide + $.fancybox.animate( + slide.$slide, { + top: 0, + left: (slide.pos - current.pos) * slidePos.width + (slide.pos - current.pos) * slide.opts.gutter + }, + duration, + function () { + slide.$slide + .css({ + transform: "", + opacity: "" + }) + .removeClass("fancybox-slide--next fancybox-slide--previous"); + + if (slide.pos === self.currPos) { + self.complete(); + } + } + ); + }); + } else if (duration && current.opts.transitionEffect) { + // Set transition effect for previously active slide + prop = "fancybox-animated fancybox-fx-" + current.opts.transitionEffect; + + previous.$slide.addClass("fancybox-slide--" + (previous.pos > current.pos ? "next" : "previous")); + + $.fancybox.animate( + previous.$slide, + prop, + duration, + function () { + previous.$slide.removeClass(prop).removeClass("fancybox-slide--next fancybox-slide--previous"); + }, + false + ); + } + + if (current.isLoaded) { + self.revealContent(current); + } else { + self.loadSlide(current); + } + + self.preload("image"); + }, + + // Create new "slide" element + // These are gallery items that are actually added to DOM + // ======================================================= + + createSlide: function (pos) { + var self = this, + $slide, + index; + + index = pos % self.group.length; + index = index < 0 ? self.group.length + index : index; + + if (!self.slides[pos] && self.group[index]) { + $slide = $('
').appendTo(self.$refs.stage); + + self.slides[pos] = $.extend(true, {}, self.group[index], { + pos: pos, + $slide: $slide, + isLoaded: false + }); + + self.updateSlide(self.slides[pos]); + } + + return self.slides[pos]; + }, + + // Scale image to the actual size of the image; + // x and y values should be relative to the slide + // ============================================== + + scaleToActual: function (x, y, duration) { + var self = this, + current = self.current, + $content = current.$content, + canvasWidth = $.fancybox.getTranslate(current.$slide).width, + canvasHeight = $.fancybox.getTranslate(current.$slide).height, + newImgWidth = current.width, + newImgHeight = current.height, + imgPos, + posX, + posY, + scaleX, + scaleY; + + if (self.isAnimating || self.isMoved() || !$content || !(current.type == "image" && current.isLoaded && !current.hasError)) { + return; + } + + self.isAnimating = true; + + $.fancybox.stop($content); + + x = x === undefined ? canvasWidth * 0.5 : x; + y = y === undefined ? canvasHeight * 0.5 : y; + + imgPos = $.fancybox.getTranslate($content); + + imgPos.top -= $.fancybox.getTranslate(current.$slide).top; + imgPos.left -= $.fancybox.getTranslate(current.$slide).left; + + scaleX = newImgWidth / imgPos.width; + scaleY = newImgHeight / imgPos.height; + + // Get center position for original image + posX = canvasWidth * 0.5 - newImgWidth * 0.5; + posY = canvasHeight * 0.5 - newImgHeight * 0.5; + + // Make sure image does not move away from edges + if (newImgWidth > canvasWidth) { + posX = imgPos.left * scaleX - (x * scaleX - x); + + if (posX > 0) { + posX = 0; + } + + if (posX < canvasWidth - newImgWidth) { + posX = canvasWidth - newImgWidth; + } + } + + if (newImgHeight > canvasHeight) { + posY = imgPos.top * scaleY - (y * scaleY - y); + + if (posY > 0) { + posY = 0; + } + + if (posY < canvasHeight - newImgHeight) { + posY = canvasHeight - newImgHeight; + } + } + + self.updateCursor(newImgWidth, newImgHeight); + + $.fancybox.animate( + $content, { + top: posY, + left: posX, + scaleX: scaleX, + scaleY: scaleY + }, + duration || 366, + function () { + self.isAnimating = false; + } + ); + + // Stop slideshow + if (self.SlideShow && self.SlideShow.isActive) { + self.SlideShow.stop(); + } + }, + + // Scale image to fit inside parent element + // ======================================== + + scaleToFit: function (duration) { + var self = this, + current = self.current, + $content = current.$content, + end; + + if (self.isAnimating || self.isMoved() || !$content || !(current.type == "image" && current.isLoaded && !current.hasError)) { + return; + } + + self.isAnimating = true; + + $.fancybox.stop($content); + + end = self.getFitPos(current); + + self.updateCursor(end.width, end.height); + + $.fancybox.animate( + $content, { + top: end.top, + left: end.left, + scaleX: end.width / $content.width(), + scaleY: end.height / $content.height() + }, + duration || 366, + function () { + self.isAnimating = false; + } + ); + }, + + // Calculate image size to fit inside viewport + // =========================================== + + getFitPos: function (slide) { + var self = this, + $content = slide.$content, + $slide = slide.$slide, + width = slide.width || slide.opts.width, + height = slide.height || slide.opts.height, + maxWidth, + maxHeight, + minRatio, + aspectRatio, + rez = {}; + + if (!slide.isLoaded || !$content || !$content.length) { + return false; + } + + maxWidth = $.fancybox.getTranslate(self.$refs.stage).width; + maxHeight = $.fancybox.getTranslate(self.$refs.stage).height; + + maxWidth -= + parseFloat($slide.css("paddingLeft")) + + parseFloat($slide.css("paddingRight")) + + parseFloat($content.css("marginLeft")) + + parseFloat($content.css("marginRight")); + + maxHeight -= + parseFloat($slide.css("paddingTop")) + + parseFloat($slide.css("paddingBottom")) + + parseFloat($content.css("marginTop")) + + parseFloat($content.css("marginBottom")); + + if (!width || !height) { + width = maxWidth; + height = maxHeight; + } + + minRatio = Math.min(1, maxWidth / width, maxHeight / height); + + width = minRatio * width; + height = minRatio * height; + + // Adjust width/height to precisely fit into container + if (width > maxWidth - 0.5) { + width = maxWidth; + } + + if (height > maxHeight - 0.5) { + height = maxHeight; + } + + if (slide.type === "image") { + rez.top = Math.floor((maxHeight - height) * 0.5) + parseFloat($slide.css("paddingTop")); + rez.left = Math.floor((maxWidth - width) * 0.5) + parseFloat($slide.css("paddingLeft")); + } else if (slide.contentType === "video") { + // Force aspect ratio for the video + // "I say the whole world must learn of our peaceful ways… by force!" + aspectRatio = slide.opts.width && slide.opts.height ? width / height : slide.opts.ratio || 16 / 9; + + if (height > width / aspectRatio) { + height = width / aspectRatio; + } else if (width > height * aspectRatio) { + width = height * aspectRatio; + } + } + + rez.width = width; + rez.height = height; + + return rez; + }, + + // Update content size and position for all slides + // ============================================== + + update: function (e) { + var self = this; + + $.each(self.slides, function (key, slide) { + self.updateSlide(slide, e); + }); + }, + + // Update slide content position and size + // ====================================== + + updateSlide: function (slide, e) { + var self = this, + $content = slide && slide.$content, + width = slide.width || slide.opts.width, + height = slide.height || slide.opts.height, + $slide = slide.$slide; + + // First, prevent caption overlap, if needed + self.adjustCaption(slide); + + // Then resize content to fit inside the slide + if ($content && (width || height || slide.contentType === "video") && !slide.hasError) { + $.fancybox.stop($content); + + $.fancybox.setTranslate($content, self.getFitPos(slide)); + + if (slide.pos === self.currPos) { + self.isAnimating = false; + + self.updateCursor(); + } + } + + // Then some adjustments + self.adjustLayout(slide); + + if ($slide.length) { + $slide.trigger("refresh"); + + if (slide.pos === self.currPos) { + self.$refs.toolbar + .add(self.$refs.navigation.find(".fancybox-button--arrow_right")) + .toggleClass("compensate-for-scrollbar", $slide.get(0).scrollHeight > $slide.get(0).clientHeight); + } + } + + self.trigger("onUpdate", slide, e); + }, + + // Horizontally center slide + // ========================= + + centerSlide: function (duration) { + var self = this, + current = self.current, + $slide = current.$slide; + + if (self.isClosing || !current) { + return; + } + + $slide.siblings().css({ + transform: "", + opacity: "" + }); + + $slide + .parent() + .children() + .removeClass("fancybox-slide--previous fancybox-slide--next"); + + $.fancybox.animate( + $slide, { + top: 0, + left: 0, + opacity: 1 + }, + duration === undefined ? 0 : duration, + function () { + // Clean up + $slide.css({ + transform: "", + opacity: "" + }); + + if (!current.isComplete) { + self.complete(); + } + }, + false + ); + }, + + // Check if current slide is moved (swiped) + // ======================================== + + isMoved: function (slide) { + var current = slide || this.current, + slidePos, + stagePos; + + if (!current) { + return false; + } + + stagePos = $.fancybox.getTranslate(this.$refs.stage); + slidePos = $.fancybox.getTranslate(current.$slide); + + return ( + !current.$slide.hasClass("fancybox-animated") && + (Math.abs(slidePos.top - stagePos.top) > 0.5 || Math.abs(slidePos.left - stagePos.left) > 0.5) + ); + }, + + // Update cursor style depending if content can be zoomed + // ====================================================== + + updateCursor: function (nextWidth, nextHeight) { + var self = this, + current = self.current, + $container = self.$refs.container, + canPan, + isZoomable; + + if (!current || self.isClosing || !self.Guestures) { + return; + } + + $container.removeClass("fancybox-is-zoomable fancybox-can-zoomIn fancybox-can-zoomOut fancybox-can-swipe fancybox-can-pan"); + + canPan = self.canPan(nextWidth, nextHeight); + + isZoomable = canPan ? true : self.isZoomable(); + + $container.toggleClass("fancybox-is-zoomable", isZoomable); + + $("[data-fancybox-zoom]").prop("disabled", !isZoomable); + + if (canPan) { + $container.addClass("fancybox-can-pan"); + } else if ( + isZoomable && + (current.opts.clickContent === "zoom" || ($.isFunction(current.opts.clickContent) && current.opts.clickContent(current) == "zoom")) + ) { + $container.addClass("fancybox-can-zoomIn"); + } else if (current.opts.touch && (current.opts.touch.vertical || self.group.length > 1) && current.contentType !== "video") { + $container.addClass("fancybox-can-swipe"); + } + }, + + // Check if current slide is zoomable + // ================================== + + isZoomable: function () { + var self = this, + current = self.current, + fitPos; + + // Assume that slide is zoomable if: + // - image is still loading + // - actual size of the image is smaller than available area + if (current && !self.isClosing && current.type === "image" && !current.hasError) { + if (!current.isLoaded) { + return true; + } + + fitPos = self.getFitPos(current); + + if (fitPos && (current.width > fitPos.width || current.height > fitPos.height)) { + return true; + } + } + + return false; + }, + + // Check if current image dimensions are smaller than actual + // ========================================================= + + isScaledDown: function (nextWidth, nextHeight) { + var self = this, + rez = false, + current = self.current, + $content = current.$content; + + if (nextWidth !== undefined && nextHeight !== undefined) { + rez = nextWidth < current.width && nextHeight < current.height; + } else if ($content) { + rez = $.fancybox.getTranslate($content); + rez = rez.width < current.width && rez.height < current.height; + } + + return rez; + }, + + // Check if image dimensions exceed parent element + // =============================================== + + canPan: function (nextWidth, nextHeight) { + var self = this, + current = self.current, + pos = null, + rez = false; + + if (current.type === "image" && (current.isComplete || (nextWidth && nextHeight)) && !current.hasError) { + rez = self.getFitPos(current); + + if (nextWidth !== undefined && nextHeight !== undefined) { + pos = { + width: nextWidth, + height: nextHeight + }; + } else if (current.isComplete) { + pos = $.fancybox.getTranslate(current.$content); + } + + if (pos && rez) { + rez = Math.abs(pos.width - rez.width) > 1.5 || Math.abs(pos.height - rez.height) > 1.5; + } + } + + return rez; + }, + + // Load content into the slide + // =========================== + + loadSlide: function (slide) { + var self = this, + type, + $slide, + ajaxLoad; + + if (slide.isLoading || slide.isLoaded) { + return; + } + + slide.isLoading = true; + + if (self.trigger("beforeLoad", slide) === false) { + slide.isLoading = false; + + return false; + } + + type = slide.type; + $slide = slide.$slide; + + $slide + .off("refresh") + .trigger("onReset") + .addClass(slide.opts.slideClass); + + // Create content depending on the type + switch (type) { + case "image": + self.setImage(slide); + + break; + + case "iframe": + self.setIframe(slide); + + break; + + case "html": + self.setContent(slide, slide.src || slide.content); + + break; + + case "video": + self.setContent( + slide, + slide.opts.video.tpl + .replace(/\{\{src\}\}/gi, slide.src) + .replace("{{format}}", slide.opts.videoFormat || slide.opts.video.format || "") + .replace("{{poster}}", slide.thumb || "") + ); + + break; + + case "inline": + if ($(slide.src).length) { + self.setContent(slide, $(slide.src)); + } else { + self.setError(slide); + } + + break; + + case "ajax": + self.showLoading(slide); + + ajaxLoad = $.ajax( + $.extend({}, slide.opts.ajax.settings, { + url: slide.src, + success: function (data, textStatus) { + if (textStatus === "success") { + self.setContent(slide, data); + } + }, + error: function (jqXHR, textStatus) { + if (jqXHR && textStatus !== "abort") { + self.setError(slide); + } + } + }) + ); + + $slide.one("onReset", function () { + ajaxLoad.abort(); + }); + + break; + + default: + self.setError(slide); + + break; + } + + return true; + }, + + // Use thumbnail image, if possible + // ================================ + + setImage: function (slide) { + var self = this, + ghost; + + // Check if need to show loading icon + setTimeout(function () { + var $img = slide.$image; + + if (!self.isClosing && slide.isLoading && (!$img || !$img.length || !$img[0].complete) && !slide.hasError) { + self.showLoading(slide); + } + }, 50); + + //Check if image has srcset + self.checkSrcset(slide); + + // This will be wrapper containing both ghost and actual image + slide.$content = $('
') + .addClass("fancybox-is-hidden") + .appendTo(slide.$slide.addClass("fancybox-slide--image")); + + // If we have a thumbnail, we can display it while actual image is loading + // Users will not stare at black screen and actual image will appear gradually + if (slide.opts.preload !== false && slide.opts.width && slide.opts.height && slide.thumb) { + slide.width = slide.opts.width; + slide.height = slide.opts.height; + + ghost = document.createElement("img"); + + ghost.onerror = function () { + $(this).remove(); + + slide.$ghost = null; + }; + + ghost.onload = function () { + self.afterLoad(slide); + }; + + slide.$ghost = $(ghost) + .addClass("fancybox-image") + .appendTo(slide.$content) + .attr("src", slide.thumb); + } + + // Start loading actual image + self.setBigImage(slide); + }, + + // Check if image has srcset and get the source + // ============================================ + checkSrcset: function (slide) { + var srcset = slide.opts.srcset || slide.opts.image.srcset, + found, + temp, + pxRatio, + windowWidth; + + // If we have "srcset", then we need to find first matching "src" value. + // This is necessary, because when you set an src attribute, the browser will preload the image + // before any javascript or even CSS is applied. + if (srcset) { + pxRatio = window.devicePixelRatio || 1; + windowWidth = window.innerWidth * pxRatio; + + temp = srcset.split(",").map(function (el) { + var ret = {}; + + el.trim() + .split(/\s+/) + .forEach(function (el, i) { + var value = parseInt(el.substring(0, el.length - 1), 10); + + if (i === 0) { + return (ret.url = el); + } + + if (value) { + ret.value = value; + ret.postfix = el[el.length - 1]; + } + }); + + return ret; + }); + + // Sort by value + temp.sort(function (a, b) { + return a.value - b.value; + }); + + // Ok, now we have an array of all srcset values + for (var j = 0; j < temp.length; j++) { + var el = temp[j]; + + if ((el.postfix === "w" && el.value >= windowWidth) || (el.postfix === "x" && el.value >= pxRatio)) { + found = el; + break; + } + } + + // If not found, take the last one + if (!found && temp.length) { + found = temp[temp.length - 1]; + } + + if (found) { + slide.src = found.url; + + // If we have default width/height values, we can calculate height for matching source + if (slide.width && slide.height && found.postfix == "w") { + slide.height = (slide.width / slide.height) * found.value; + slide.width = found.value; + } + + slide.opts.srcset = srcset; + } + } + }, + + // Create full-size image + // ====================== + + setBigImage: function (slide) { + var self = this, + img = document.createElement("img"), + $img = $(img); + + slide.$image = $img + .one("error", function () { + self.setError(slide); + }) + .one("load", function () { + var sizes; + + if (!slide.$ghost) { + self.resolveImageSlideSize(slide, this.naturalWidth, this.naturalHeight); + + self.afterLoad(slide); + } + + if (self.isClosing) { + return; + } + + if (slide.opts.srcset) { + sizes = slide.opts.sizes; + + if (!sizes || sizes === "auto") { + sizes = + (slide.width / slide.height > 1 && $W.width() / $W.height() > 1 ? "100" : Math.round((slide.width / slide.height) * 100)) + + "vw"; + } + + $img.attr("sizes", sizes).attr("srcset", slide.opts.srcset); + } + + // Hide temporary image after some delay + if (slide.$ghost) { + setTimeout(function () { + if (slide.$ghost && !self.isClosing) { + slide.$ghost.hide(); + } + }, Math.min(300, Math.max(1000, slide.height / 1600))); + } + + self.hideLoading(slide); + }) + .addClass("fancybox-image") + .attr("src", slide.src) + .appendTo(slide.$content); + + if ((img.complete || img.readyState == "complete") && $img.naturalWidth && $img.naturalHeight) { + $img.trigger("load"); + } else if (img.error) { + $img.trigger("error"); + } + }, + + // Computes the slide size from image size and maxWidth/maxHeight + // ============================================================== + + resolveImageSlideSize: function (slide, imgWidth, imgHeight) { + var maxWidth = parseInt(slide.opts.width, 10), + maxHeight = parseInt(slide.opts.height, 10); + + // Sets the default values from the image + slide.width = imgWidth; + slide.height = imgHeight; + + if (maxWidth > 0) { + slide.width = maxWidth; + slide.height = Math.floor((maxWidth * imgHeight) / imgWidth); + } + + if (maxHeight > 0) { + slide.width = Math.floor((maxHeight * imgWidth) / imgHeight); + slide.height = maxHeight; + } + }, + + // Create iframe wrapper, iframe and bindings + // ========================================== + + setIframe: function (slide) { + var self = this, + opts = slide.opts.iframe, + $slide = slide.$slide, + $iframe; + + slide.$content = $('
') + .css(opts.css) + .appendTo($slide); + + $slide.addClass("fancybox-slide--" + slide.contentType); + + slide.$iframe = $iframe = $(opts.tpl.replace(/\{rnd\}/g, new Date().getTime())) + .attr(opts.attr) + .appendTo(slide.$content); + + if (opts.preload) { + self.showLoading(slide); + + // Unfortunately, it is not always possible to determine if iframe is successfully loaded + // (due to browser security policy) + + $iframe.on("load.fb error.fb", function (e) { + this.isReady = 1; + + slide.$slide.trigger("refresh"); + + self.afterLoad(slide); + }); + + // Recalculate iframe content size + // =============================== + + $slide.on("refresh.fb", function () { + var $content = slide.$content, + frameWidth = opts.css.width, + frameHeight = opts.css.height, + $contents, + $body; + + if ($iframe[0].isReady !== 1) { + return; + } + + try { + $contents = $iframe.contents(); + $body = $contents.find("body"); + } catch (ignore) {} + + // Calculate content dimensions, if it is accessible + if ($body && $body.length && $body.children().length) { + // Avoid scrolling to top (if multiple instances) + $slide.css("overflow", "visible"); + + $content.css({ + width: "100%", + "max-width": "100%", + height: "9999px" + }); + + if (frameWidth === undefined) { + frameWidth = Math.ceil(Math.max($body[0].clientWidth, $body.outerWidth(true))); + } + + $content.css("width", frameWidth ? frameWidth : "").css("max-width", ""); + + if (frameHeight === undefined) { + frameHeight = Math.ceil(Math.max($body[0].clientHeight, $body.outerHeight(true))); + } + + $content.css("height", frameHeight ? frameHeight : ""); + + $slide.css("overflow", "auto"); + } + + $content.removeClass("fancybox-is-hidden"); + }); + } else { + self.afterLoad(slide); + } + + $iframe.attr("src", slide.src); + + // Remove iframe if closing or changing gallery item + $slide.one("onReset", function () { + // This helps IE not to throw errors when closing + try { + $(this) + .find("iframe") + .hide() + .unbind() + .attr("src", "//about:blank"); + } catch (ignore) {} + + $(this) + .off("refresh.fb") + .empty(); + + slide.isLoaded = false; + slide.isRevealed = false; + }); + }, + + // Wrap and append content to the slide + // ====================================== + + setContent: function (slide, content) { + var self = this; + + if (self.isClosing) { + return; + } + + self.hideLoading(slide); + + if (slide.$content) { + $.fancybox.stop(slide.$content); + } + + slide.$slide.empty(); + + // If content is a jQuery object, then it will be moved to the slide. + // The placeholder is created so we will know where to put it back. + if (isQuery(content) && content.parent().length) { + // Make sure content is not already moved to fancyBox + if (content.hasClass("fancybox-content") || content.parent().hasClass("fancybox-content")) { + content.parents(".fancybox-slide").trigger("onReset"); + } + + // Create temporary element marking original place of the content + slide.$placeholder = $("
") + .hide() + .insertAfter(content); + + // Make sure content is visible + content.css("display", "inline-block"); + } else if (!slide.hasError) { + // If content is just a plain text, try to convert it to html + if ($.type(content) === "string") { + content = $("
") + .append($.trim(content)) + .contents(); + } + + // If "filter" option is provided, then filter content + if (slide.opts.filter) { + content = $("
") + .html(content) + .find(slide.opts.filter); + } + } + + slide.$slide.one("onReset", function () { + // Pause all html5 video/audio + $(this) + .find("video,audio") + .trigger("pause"); + + // Put content back + if (slide.$placeholder) { + slide.$placeholder.after(content.removeClass("fancybox-content").hide()).remove(); + + slide.$placeholder = null; + } + + // Remove custom close button + if (slide.$smallBtn) { + slide.$smallBtn.remove(); + + slide.$smallBtn = null; + } + + // Remove content and mark slide as not loaded + if (!slide.hasError) { + $(this).empty(); + + slide.isLoaded = false; + slide.isRevealed = false; + } + }); + + $(content).appendTo(slide.$slide); + + if ($(content).is("video,audio")) { + $(content).addClass("fancybox-video"); + + $(content).wrap("
"); + + slide.contentType = "video"; + + slide.opts.width = slide.opts.width || $(content).attr("width"); + slide.opts.height = slide.opts.height || $(content).attr("height"); + } + + slide.$content = slide.$slide + .children() + .filter("div,form,main,video,audio,article,.fancybox-content") + .first(); + + slide.$content.siblings().hide(); + + // Re-check if there is a valid content + // (in some cases, ajax response can contain various elements or plain text) + if (!slide.$content.length) { + slide.$content = slide.$slide + .wrapInner("
") + .children() + .first(); + } + + slide.$content.addClass("fancybox-content"); + + slide.$slide.addClass("fancybox-slide--" + slide.contentType); + + self.afterLoad(slide); + }, + + // Display error message + // ===================== + + setError: function (slide) { + slide.hasError = true; + + slide.$slide + .trigger("onReset") + .removeClass("fancybox-slide--" + slide.contentType) + .addClass("fancybox-slide--error"); + + slide.contentType = "html"; + + this.setContent(slide, this.translate(slide, slide.opts.errorTpl)); + + if (slide.pos === this.currPos) { + this.isAnimating = false; + } + }, + + // Show loading icon inside the slide + // ================================== + + showLoading: function (slide) { + var self = this; + + slide = slide || self.current; + + if (slide && !slide.$spinner) { + slide.$spinner = $(self.translate(self, self.opts.spinnerTpl)) + .appendTo(slide.$slide) + .hide() + .fadeIn("fast"); + } + }, + + // Remove loading icon from the slide + // ================================== + + hideLoading: function (slide) { + var self = this; + + slide = slide || self.current; + + if (slide && slide.$spinner) { + slide.$spinner.stop().remove(); + + delete slide.$spinner; + } + }, + + // Adjustments after slide content has been loaded + // =============================================== + + afterLoad: function (slide) { + var self = this; + + if (self.isClosing) { + return; + } + + slide.isLoading = false; + slide.isLoaded = true; + + self.trigger("afterLoad", slide); + + self.hideLoading(slide); + + // Add small close button + if (slide.opts.smallBtn && (!slide.$smallBtn || !slide.$smallBtn.length)) { + slide.$smallBtn = $(self.translate(slide, slide.opts.btnTpl.smallBtn)).appendTo(slide.$content); + } + + // Disable right click + if (slide.opts.protect && slide.$content && !slide.hasError) { + slide.$content.on("contextmenu.fb", function (e) { + if (e.button == 2) { + e.preventDefault(); + } + + return true; + }); + + // Add fake element on top of the image + // This makes a bit harder for user to select image + if (slide.type === "image") { + $('
').appendTo(slide.$content); + } + } + + self.adjustCaption(slide); + + self.adjustLayout(slide); + + if (slide.pos === self.currPos) { + self.updateCursor(); + } + + self.revealContent(slide); + }, + + // Prevent caption overlap, + // fix css inconsistency across browsers + // ===================================== + + adjustCaption: function (slide) { + var self = this, + current = slide || self.current, + caption = current.opts.caption, + preventOverlap = current.opts.preventCaptionOverlap, + $caption = self.$refs.caption, + $clone, + captionH = false; + + $caption.toggleClass("fancybox-caption--separate", preventOverlap); + + if (preventOverlap && caption && caption.length) { + if (current.pos !== self.currPos) { + $clone = $caption.clone().appendTo($caption.parent()); + + $clone + .children() + .eq(0) + .empty() + .html(caption); + + captionH = $clone.outerHeight(true); + + $clone.empty().remove(); + } else if (self.$caption) { + captionH = self.$caption.outerHeight(true); + } + + current.$slide.css("padding-bottom", captionH || ""); + } + }, + + // Simple hack to fix inconsistency across browsers, described here (affects Edge, too): + // https://bugzilla.mozilla.org/show_bug.cgi?id=748518 + // ==================================================================================== + + adjustLayout: function (slide) { + var self = this, + current = slide || self.current, + scrollHeight, + marginBottom, + inlinePadding, + actualPadding; + + if (current.isLoaded && current.opts.disableLayoutFix !== true) { + current.$content.css("margin-bottom", ""); + + // If we would always set margin-bottom for the content, + // then it would potentially break vertical align + if (current.$content.outerHeight() > current.$slide.height() + 0.5) { + inlinePadding = current.$slide[0].style["padding-bottom"]; + actualPadding = current.$slide.css("padding-bottom"); + + if (parseFloat(actualPadding) > 0) { + scrollHeight = current.$slide[0].scrollHeight; + + current.$slide.css("padding-bottom", 0); + + if (Math.abs(scrollHeight - current.$slide[0].scrollHeight) < 1) { + marginBottom = actualPadding; + } + + current.$slide.css("padding-bottom", inlinePadding); + } + } + + current.$content.css("margin-bottom", marginBottom); + } + }, + + // Make content visible + // This method is called right after content has been loaded or + // user navigates gallery and transition should start + // ============================================================ + + revealContent: function (slide) { + var self = this, + $slide = slide.$slide, + end = false, + start = false, + isMoved = self.isMoved(slide), + isRevealed = slide.isRevealed, + effect, + effectClassName, + duration, + opacity; + + slide.isRevealed = true; + + effect = slide.opts[self.firstRun ? "animationEffect" : "transitionEffect"]; + duration = slide.opts[self.firstRun ? "animationDuration" : "transitionDuration"]; + + duration = parseInt(slide.forcedDuration === undefined ? duration : slide.forcedDuration, 10); + + if (isMoved || slide.pos !== self.currPos || !duration) { + effect = false; + } + + // Check if can zoom + if (effect === "zoom") { + if (slide.pos === self.currPos && duration && slide.type === "image" && !slide.hasError && (start = self.getThumbPos(slide))) { + end = self.getFitPos(slide); + } else { + effect = "fade"; + } + } + + // Zoom animation + // ============== + if (effect === "zoom") { + self.isAnimating = true; + + end.scaleX = end.width / start.width; + end.scaleY = end.height / start.height; + + // Check if we need to animate opacity + opacity = slide.opts.zoomOpacity; + + if (opacity == "auto") { + opacity = Math.abs(slide.width / slide.height - start.width / start.height) > 0.1; + } + + if (opacity) { + start.opacity = 0.1; + end.opacity = 1; + } + + // Draw image at start position + $.fancybox.setTranslate(slide.$content.removeClass("fancybox-is-hidden"), start); + + forceRedraw(slide.$content); + + // Start animation + $.fancybox.animate(slide.$content, end, duration, function () { + self.isAnimating = false; + + self.complete(); + }); + + return; + } + + self.updateSlide(slide); + + // Simply show content if no effect + // ================================ + if (!effect) { + slide.$content.removeClass("fancybox-is-hidden"); + + if (!isRevealed && isMoved && slide.type === "image" && !slide.hasError) { + slide.$content.hide().fadeIn("fast"); + } + + if (slide.pos === self.currPos) { + self.complete(); + } + + return; + } + + // Prepare for CSS transiton + // ========================= + $.fancybox.stop($slide); + + //effectClassName = "fancybox-animated fancybox-slide--" + (slide.pos >= self.prevPos ? "next" : "previous") + " fancybox-fx-" + effect; + effectClassName = "fancybox-slide--" + (slide.pos >= self.prevPos ? "next" : "previous") + " fancybox-animated fancybox-fx-" + effect; + + $slide.addClass(effectClassName).removeClass("fancybox-slide--current"); //.addClass(effectClassName); + + slide.$content.removeClass("fancybox-is-hidden"); + + // Force reflow + forceRedraw($slide); + + if (slide.type !== "image") { + slide.$content.hide().show(0); + } + + $.fancybox.animate( + $slide, + "fancybox-slide--current", + duration, + function () { + $slide.removeClass(effectClassName).css({ + transform: "", + opacity: "" + }); + + if (slide.pos === self.currPos) { + self.complete(); + } + }, + true + ); + }, + + // Check if we can and have to zoom from thumbnail + //================================================ + + getThumbPos: function (slide) { + var rez = false, + $thumb = slide.$thumb, + thumbPos, + btw, + brw, + bbw, + blw; + + if (!$thumb || !inViewport($thumb[0])) { + return false; + } + + thumbPos = $.fancybox.getTranslate($thumb); + + btw = parseFloat($thumb.css("border-top-width") || 0); + brw = parseFloat($thumb.css("border-right-width") || 0); + bbw = parseFloat($thumb.css("border-bottom-width") || 0); + blw = parseFloat($thumb.css("border-left-width") || 0); + + rez = { + top: thumbPos.top + btw, + left: thumbPos.left + blw, + width: thumbPos.width - brw - blw, + height: thumbPos.height - btw - bbw, + scaleX: 1, + scaleY: 1 + }; + + return thumbPos.width > 0 && thumbPos.height > 0 ? rez : false; + }, + + // Final adjustments after current gallery item is moved to position + // and it`s content is loaded + // ================================================================== + + complete: function () { + var self = this, + current = self.current, + slides = {}, + $el; + + if (self.isMoved() || !current.isLoaded) { + return; + } + + if (!current.isComplete) { + current.isComplete = true; + + current.$slide.siblings().trigger("onReset"); + + self.preload("inline"); + + // Trigger any CSS transiton inside the slide + forceRedraw(current.$slide); + + current.$slide.addClass("fancybox-slide--complete"); + + // Remove unnecessary slides + $.each(self.slides, function (key, slide) { + if (slide.pos >= self.currPos - 1 && slide.pos <= self.currPos + 1) { + slides[slide.pos] = slide; + } else if (slide) { + $.fancybox.stop(slide.$slide); + + slide.$slide.off().remove(); + } + }); + + self.slides = slides; + } + + self.isAnimating = false; + + self.updateCursor(); + + self.trigger("afterShow"); + + // Autoplay first html5 video/audio + if (!!current.opts.video.autoStart) { + current.$slide + .find("video,audio") + .filter(":visible:first") + .trigger("play") + .one("ended", function () { + if (Document.exitFullscreen) { + Document.exitFullscreen(); + } else if (this.webkitExitFullscreen) { + this.webkitExitFullscreen(); + } + + self.next(); + }); + } + + // Try to focus on the first focusable element + if (current.opts.autoFocus && current.contentType === "html") { + // Look for the first input with autofocus attribute + $el = current.$content.find("input[autofocus]:enabled:visible:first"); + + if ($el.length) { + $el.trigger("focus"); + } else { + self.focus(null, true); + } + } + + // Avoid jumping + current.$slide.scrollTop(0).scrollLeft(0); + }, + + // Preload next and previous slides + // ================================ + + preload: function (type) { + var self = this, + prev, + next; + + if (self.group.length < 2) { + return; + } + + next = self.slides[self.currPos + 1]; + prev = self.slides[self.currPos - 1]; + + if (prev && prev.type === type) { + self.loadSlide(prev); + } + + if (next && next.type === type) { + self.loadSlide(next); + } + }, + + // Try to find and focus on the first focusable element + // ==================================================== + + focus: function (e, firstRun) { + var self = this, + focusableStr = [ + "a[href]", + "area[href]", + 'input:not([disabled]):not([type="hidden"]):not([aria-hidden])', + "select:not([disabled]):not([aria-hidden])", + "textarea:not([disabled]):not([aria-hidden])", + "button:not([disabled]):not([aria-hidden])", + "iframe", + "object", + "embed", + "video", + "audio", + "[contenteditable]", + '[tabindex]:not([tabindex^="-"])' + ].join(","), + focusableItems, + focusedItemIndex; + + if (self.isClosing) { + return; + } + + if (e || !self.current || !self.current.isComplete) { + // Focus on any element inside fancybox + focusableItems = self.$refs.container.find("*:visible"); + } else { + // Focus inside current slide + focusableItems = self.current.$slide.find("*:visible" + (firstRun ? ":not(.fancybox-close-small)" : "")); + } + + focusableItems = focusableItems.filter(focusableStr).filter(function () { + return $(this).css("visibility") !== "hidden" && !$(this).hasClass("disabled"); + }); + + if (focusableItems.length) { + focusedItemIndex = focusableItems.index(document.activeElement); + + if (e && e.shiftKey) { + // Back tab + if (focusedItemIndex < 0 || focusedItemIndex == 0) { + e.preventDefault(); + + focusableItems.eq(focusableItems.length - 1).trigger("focus"); + } + } else { + // Outside or Forward tab + if (focusedItemIndex < 0 || focusedItemIndex == focusableItems.length - 1) { + if (e) { + e.preventDefault(); + } + + focusableItems.eq(0).trigger("focus"); + } + } + } else { + self.$refs.container.trigger("focus"); + } + }, + + // Activates current instance - brings container to the front and enables keyboard, + // notifies other instances about deactivating + // ================================================================================= + + activate: function () { + var self = this; + + // Deactivate all instances + $(".fancybox-container").each(function () { + var instance = $(this).data("FancyBox"); + + // Skip self and closing instances + if (instance && instance.id !== self.id && !instance.isClosing) { + instance.trigger("onDeactivate"); + + instance.removeEvents(); + + instance.isVisible = false; + } + }); + + self.isVisible = true; + + if (self.current || self.isIdle) { + self.update(); + + self.updateControls(); + } + + self.trigger("onActivate"); + + self.addEvents(); + }, + + // Start closing procedure + // This will start "zoom-out" animation if needed and clean everything up afterwards + // ================================================================================= + + close: function (e, d) { + var self = this, + current = self.current, + effect, + duration, + $content, + domRect, + opacity, + start, + end; + + var done = function () { + self.cleanUp(e); + }; + + if (self.isClosing) { + return false; + } + + self.isClosing = true; + + // If beforeClose callback prevents closing, make sure content is centered + if (self.trigger("beforeClose", e) === false) { + self.isClosing = false; + + requestAFrame(function () { + self.update(); + }); + + return false; + } + + // Remove all events + // If there are multiple instances, they will be set again by "activate" method + self.removeEvents(); + + $content = current.$content; + effect = current.opts.animationEffect; + duration = $.isNumeric(d) ? d : effect ? current.opts.animationDuration : 0; + + current.$slide.removeClass("fancybox-slide--complete fancybox-slide--next fancybox-slide--previous fancybox-animated"); + + if (e !== true) { + $.fancybox.stop(current.$slide); + } else { + effect = false; + } + + // Remove other slides + current.$slide + .siblings() + .trigger("onReset") + .remove(); + + // Trigger animations + if (duration) { + self.$refs.container + .removeClass("fancybox-is-open") + .addClass("fancybox-is-closing") + .css("transition-duration", duration + "ms"); + } + + // Clean up + self.hideLoading(current); + + self.hideControls(true); + + self.updateCursor(); + + // Check if possible to zoom-out + if ( + effect === "zoom" && + !($content && duration && current.type === "image" && !self.isMoved() && !current.hasError && (end = self.getThumbPos(current))) + ) { + effect = "fade"; + } + + if (effect === "zoom") { + $.fancybox.stop($content); + + domRect = $.fancybox.getTranslate($content); + + start = { + top: domRect.top, + left: domRect.left, + scaleX: domRect.width / end.width, + scaleY: domRect.height / end.height, + width: end.width, + height: end.height + }; + + // Check if we need to animate opacity + opacity = current.opts.zoomOpacity; + + if (opacity == "auto") { + opacity = Math.abs(current.width / current.height - end.width / end.height) > 0.1; + } + + if (opacity) { + end.opacity = 0; + } + + $.fancybox.setTranslate($content, start); + + forceRedraw($content); + + $.fancybox.animate($content, end, duration, done); + + return true; + } + + if (effect && duration) { + $.fancybox.animate( + current.$slide.addClass("fancybox-slide--previous").removeClass("fancybox-slide--current"), + "fancybox-animated fancybox-fx-" + effect, + duration, + done + ); + } else { + // If skip animation + if (e === true) { + setTimeout(done, duration); + } else { + done(); + } + } + + return true; + }, + + // Final adjustments after removing the instance + // ============================================= + + cleanUp: function (e) { + var self = this, + instance, + $focus = self.current.opts.$orig, + x, + y; + + self.current.$slide.trigger("onReset"); + + self.$refs.container.empty().remove(); + + self.trigger("afterClose", e); + + // Place back focus + if (!!self.current.opts.backFocus) { + if (!$focus || !$focus.length || !$focus.is(":visible")) { + $focus = self.$trigger; + } + + if ($focus && $focus.length) { + x = window.scrollX; + y = window.scrollY; + + $focus.trigger("focus"); + + $("html, body") + .scrollTop(y) + .scrollLeft(x); + } + } + + self.current = null; + + // Check if there are other instances + instance = $.fancybox.getInstance(); + + if (instance) { + instance.activate(); + } else { + $("body").removeClass("fancybox-active compensate-for-scrollbar"); + + $("#fancybox-style-noscroll").remove(); + } + }, + + // Call callback and trigger an event + // ================================== + + trigger: function (name, slide) { + var args = Array.prototype.slice.call(arguments, 1), + self = this, + obj = slide && slide.opts ? slide : self.current, + rez; + + if (obj) { + args.unshift(obj); + } else { + obj = self; + } + + args.unshift(self); + + if ($.isFunction(obj.opts[name])) { + rez = obj.opts[name].apply(obj, args); + } + + if (rez === false) { + return rez; + } + + if (name === "afterClose" || !self.$refs) { + $D.trigger(name + ".fb", args); + } else { + self.$refs.container.trigger(name + ".fb", args); + } + }, + + // Update infobar values, navigation button states and reveal caption + // ================================================================== + + updateControls: function () { + var self = this, + current = self.current, + index = current.index, + $container = self.$refs.container, + $caption = self.$refs.caption, + caption = current.opts.caption; + + // Recalculate content dimensions + current.$slide.trigger("refresh"); + + // Set caption + if (caption && caption.length) { + self.$caption = $caption; + + $caption + .children() + .eq(0) + .html(caption); + } else { + self.$caption = null; + } + + if (!self.hasHiddenControls && !self.isIdle) { + self.showControls(); + } + + // Update info and navigation elements + $container.find("[data-fancybox-count]").html(self.group.length); + $container.find("[data-fancybox-index]").html(index + 1); + + $container.find("[data-fancybox-prev]").prop("disabled", !current.opts.loop && index <= 0); + $container.find("[data-fancybox-next]").prop("disabled", !current.opts.loop && index >= self.group.length - 1); + + if (current.type === "image") { + // Re-enable buttons; update download button source + $container + .find("[data-fancybox-zoom]") + .show() + .end() + .find("[data-fancybox-download]") + .attr("href", current.opts.image.src || current.src) + .show(); + } else if (current.opts.toolbar) { + $container.find("[data-fancybox-download],[data-fancybox-zoom]").hide(); + } + + // Make sure focus is not on disabled button/element + if ($(document.activeElement).is(":hidden,[disabled]")) { + self.$refs.container.trigger("focus"); + } + }, + + // Hide toolbar and caption + // ======================== + + hideControls: function (andCaption) { + var self = this, + arr = ["infobar", "toolbar", "nav"]; + + if (andCaption || !self.current.opts.preventCaptionOverlap) { + arr.push("caption"); + } + + this.$refs.container.removeClass( + arr + .map(function (i) { + return "fancybox-show-" + i; + }) + .join(" ") + ); + + this.hasHiddenControls = true; + }, + + showControls: function () { + var self = this, + opts = self.current ? self.current.opts : self.opts, + $container = self.$refs.container; + + self.hasHiddenControls = false; + self.idleSecondsCounter = 0; + + $container + .toggleClass("fancybox-show-toolbar", !!(opts.toolbar && opts.buttons)) + .toggleClass("fancybox-show-infobar", !!(opts.infobar && self.group.length > 1)) + .toggleClass("fancybox-show-caption", !!self.$caption) + .toggleClass("fancybox-show-nav", !!(opts.arrows && self.group.length > 1)) + .toggleClass("fancybox-is-modal", !!opts.modal); + }, + + // Toggle toolbar and caption + // ========================== + + toggleControls: function () { + if (this.hasHiddenControls) { + this.showControls(); + } else { + this.hideControls(); + } + } + }); + + $.fancybox = { + version: "3.5.7", + defaults: defaults, + + // Get current instance and execute a command. + // + // Examples of usage: + // + // $instance = $.fancybox.getInstance(); + // $.fancybox.getInstance().jumpTo( 1 ); + // $.fancybox.getInstance( 'jumpTo', 1 ); + // $.fancybox.getInstance( function() { + // console.info( this.currIndex ); + // }); + // ====================================================== + + getInstance: function (command) { + var instance = $('.fancybox-container:not(".fancybox-is-closing"):last').data("FancyBox"), + args = Array.prototype.slice.call(arguments, 1); + + if (instance instanceof FancyBox) { + if ($.type(command) === "string") { + instance[command].apply(instance, args); + } else if ($.type(command) === "function") { + command.apply(instance, args); + } + + return instance; + } + + return false; + }, + + // Create new instance + // =================== + + open: function (items, opts, index) { + return new FancyBox(items, opts, index); + }, + + // Close current or all instances + // ============================== + + close: function (all) { + var instance = this.getInstance(); + + if (instance) { + instance.close(); + + // Try to find and close next instance + if (all === true) { + this.close(all); + } + } + }, + + // Close all instances and unbind all events + // ========================================= + + destroy: function () { + this.close(true); + + $D.add("body").off("click.fb-start", "**"); + }, + + // Try to detect mobile devices + // ============================ + + isMobile: /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent), + + // Detect if 'translate3d' support is available + // ============================================ + + use3d: (function () { + var div = document.createElement("div"); + + return ( + window.getComputedStyle && + window.getComputedStyle(div) && + window.getComputedStyle(div).getPropertyValue("transform") && + !(document.documentMode && document.documentMode < 11) + ); + })(), + + // Helper function to get current visual state of an element + // returns array[ top, left, horizontal-scale, vertical-scale, opacity ] + // ===================================================================== + + getTranslate: function ($el) { + var domRect; + + if (!$el || !$el.length) { + return false; + } + + domRect = $el[0].getBoundingClientRect(); + + return { + top: domRect.top || 0, + left: domRect.left || 0, + width: domRect.width, + height: domRect.height, + opacity: parseFloat($el.css("opacity")) + }; + }, + + // Shortcut for setting "translate3d" properties for element + // Can set be used to set opacity, too + // ======================================================== + + setTranslate: function ($el, props) { + var str = "", + css = {}; + + if (!$el || !props) { + return; + } + + if (props.left !== undefined || props.top !== undefined) { + str = + (props.left === undefined ? $el.position().left : props.left) + + "px, " + + (props.top === undefined ? $el.position().top : props.top) + + "px"; + + if (this.use3d) { + str = "translate3d(" + str + ", 0px)"; + } else { + str = "translate(" + str + ")"; + } + } + + if (props.scaleX !== undefined && props.scaleY !== undefined) { + str += " scale(" + props.scaleX + ", " + props.scaleY + ")"; + } else if (props.scaleX !== undefined) { + str += " scaleX(" + props.scaleX + ")"; + } + + if (str.length) { + css.transform = str; + } + + if (props.opacity !== undefined) { + css.opacity = props.opacity; + } + + if (props.width !== undefined) { + css.width = props.width; + } + + if (props.height !== undefined) { + css.height = props.height; + } + + return $el.css(css); + }, + + // Simple CSS transition handler + // ============================= + + animate: function ($el, to, duration, callback, leaveAnimationName) { + var self = this, + from; + + if ($.isFunction(duration)) { + callback = duration; + duration = null; + } + + self.stop($el); + + from = self.getTranslate($el); + + $el.on(transitionEnd, function (e) { + // Skip events from child elements and z-index change + if (e && e.originalEvent && (!$el.is(e.originalEvent.target) || e.originalEvent.propertyName == "z-index")) { + return; + } + + self.stop($el); + + if ($.isNumeric(duration)) { + $el.css("transition-duration", ""); + } + + if ($.isPlainObject(to)) { + if (to.scaleX !== undefined && to.scaleY !== undefined) { + self.setTranslate($el, { + top: to.top, + left: to.left, + width: from.width * to.scaleX, + height: from.height * to.scaleY, + scaleX: 1, + scaleY: 1 + }); + } + } else if (leaveAnimationName !== true) { + $el.removeClass(to); + } + + if ($.isFunction(callback)) { + callback(e); + } + }); + + if ($.isNumeric(duration)) { + $el.css("transition-duration", duration + "ms"); + } + + // Start animation by changing CSS properties or class name + if ($.isPlainObject(to)) { + if (to.scaleX !== undefined && to.scaleY !== undefined) { + delete to.width; + delete to.height; + + if ($el.parent().hasClass("fancybox-slide--image")) { + $el.parent().addClass("fancybox-is-scaling"); + } + } + + $.fancybox.setTranslate($el, to); + } else { + $el.addClass(to); + } + + // Make sure that `transitionend` callback gets fired + $el.data( + "timer", + setTimeout(function () { + $el.trigger(transitionEnd); + }, duration + 33) + ); + }, + + stop: function ($el, callCallback) { + if ($el && $el.length) { + clearTimeout($el.data("timer")); + + if (callCallback) { + $el.trigger(transitionEnd); + } + + $el.off(transitionEnd).css("transition-duration", ""); + + $el.parent().removeClass("fancybox-is-scaling"); + } + } + }; + + // Default click handler for "fancyboxed" links + // ============================================ + + function _run(e, opts) { + var items = [], + index = 0, + $target, + value, + instance; + + // Avoid opening multiple times + if (e && e.isDefaultPrevented()) { + return; + } + + e.preventDefault(); + + opts = opts || {}; + + if (e && e.data) { + opts = mergeOpts(e.data.options, opts); + } + + $target = opts.$target || $(e.currentTarget).trigger("blur"); + instance = $.fancybox.getInstance(); + + if (instance && instance.$trigger && instance.$trigger.is($target)) { + return; + } + + if (opts.selector) { + items = $(opts.selector); + } else { + // Get all related items and find index for clicked one + value = $target.attr("data-fancybox") || ""; + + if (value) { + items = e.data ? e.data.items : []; + items = items.length ? items.filter('[data-fancybox="' + value + '"]') : $('[data-fancybox="' + value + '"]'); + } else { + items = [$target]; + } + } + + index = $(items).index($target); + + // Sometimes current item can not be found + if (index < 0) { + index = 0; + } + + instance = $.fancybox.open(items, opts, index); + + // Save last active element + instance.$trigger = $target; + } + + // Create a jQuery plugin + // ====================== + + $.fn.fancybox = function (options) { + var selector; + + options = options || {}; + selector = options.selector || false; + + if (selector) { + // Use body element instead of document so it executes first + $("body") + .off("click.fb-start", selector) + .on("click.fb-start", selector, { + options: options + }, _run); + } else { + this.off("click.fb-start").on( + "click.fb-start", { + items: this, + options: options + }, + _run + ); + } + + return this; + }; + + // Self initializing plugin for all elements having `data-fancybox` attribute + // ========================================================================== + + $D.on("click.fb-start", "[data-fancybox]", _run); + + // Enable "trigger elements" + // ========================= + + $D.on("click.fb-start", "[data-fancybox-trigger]", function (e) { + $('[data-fancybox="' + $(this).attr("data-fancybox-trigger") + '"]') + .eq($(this).attr("data-fancybox-index") || 0) + .trigger("click.fb-start", { + $trigger: $(this) + }); + }); + + // Track focus event for better accessibility styling + // ================================================== + (function () { + var buttonStr = ".fancybox-button", + focusStr = "fancybox-focus", + $pressed = null; + + $D.on("mousedown mouseup focus blur", buttonStr, function (e) { + switch (e.type) { + case "mousedown": + $pressed = $(this); + break; + case "mouseup": + $pressed = null; + break; + case "focusin": + $(buttonStr).removeClass(focusStr); + + if (!$(this).is($pressed) && !$(this).is("[disabled]")) { + $(this).addClass(focusStr); + } + break; + case "focusout": + $(buttonStr).removeClass(focusStr); + break; + } + }); + })(); +})(window, document, jQuery); +// ========================================================================== +// +// Media +// Adds additional media type support +// +// ========================================================================== +(function ($) { + "use strict"; + + // Object containing properties for each media type + var defaults = { + youtube: { + matcher: /(youtube\.com|youtu\.be|youtube\-nocookie\.com)\/(watch\?(.*&)?v=|v\/|u\/|embed\/?)?(videoseries\?list=(.*)|[\w-]{11}|\?listType=(.*)&list=(.*))(.*)/i, + params: { + autoplay: 1, + autohide: 1, + fs: 1, + rel: 0, + hd: 1, + wmode: "transparent", + enablejsapi: 1, + html5: 1 + }, + paramPlace: 8, + type: "iframe", + url: "https://www.youtube-nocookie.com/embed/$4", + thumb: "https://img.youtube.com/vi/$4/hqdefault.jpg" + }, + + vimeo: { + matcher: /^.+vimeo.com\/(.*\/)?([\d]+)(.*)?/, + params: { + autoplay: 1, + hd: 1, + show_title: 1, + show_byline: 1, + show_portrait: 0, + fullscreen: 1 + }, + paramPlace: 3, + type: "iframe", + url: "//player.vimeo.com/video/$2" + }, + + instagram: { + matcher: /(instagr\.am|instagram\.com)\/p\/([a-zA-Z0-9_\-]+)\/?/i, + type: "image", + url: "//$1/p/$2/media/?size=l" + }, + + // Examples: + // http://maps.google.com/?ll=48.857995,2.294297&spn=0.007666,0.021136&t=m&z=16 + // https://www.google.com/maps/@37.7852006,-122.4146355,14.65z + // https://www.google.com/maps/@52.2111123,2.9237542,6.61z?hl=en + // https://www.google.com/maps/place/Googleplex/@37.4220041,-122.0833494,17z/data=!4m5!3m4!1s0x0:0x6c296c66619367e0!8m2!3d37.4219998!4d-122.0840572 + gmap_place: { + matcher: /(maps\.)?google\.([a-z]{2,3}(\.[a-z]{2})?)\/(((maps\/(place\/(.*)\/)?\@(.*),(\d+.?\d+?)z))|(\?ll=))(.*)?/i, + type: "iframe", + url: function (rez) { + return ( + "//maps.google." + + rez[2] + + "/?ll=" + + (rez[9] ? rez[9] + "&z=" + Math.floor(rez[10]) + (rez[12] ? rez[12].replace(/^\//, "&") : "") : rez[12] + "").replace(/\?/, "&") + + "&output=" + + (rez[12] && rez[12].indexOf("layer=c") > 0 ? "svembed" : "embed") + ); + } + }, + + // Examples: + // https://www.google.com/maps/search/Empire+State+Building/ + // https://www.google.com/maps/search/?api=1&query=centurylink+field + // https://www.google.com/maps/search/?api=1&query=47.5951518,-122.3316393 + gmap_search: { + matcher: /(maps\.)?google\.([a-z]{2,3}(\.[a-z]{2})?)\/(maps\/search\/)(.*)/i, + type: "iframe", + url: function (rez) { + return "//maps.google." + rez[2] + "/maps?q=" + rez[5].replace("query=", "q=").replace("api=1", "") + "&output=embed"; + } + } + }; + + // Formats matching url to final form + var format = function (url, rez, params) { + if (!url) { + return; + } + + params = params || ""; + + if ($.type(params) === "object") { + params = $.param(params, true); + } + + $.each(rez, function (key, value) { + url = url.replace("$" + key, value || ""); + }); + + if (params.length) { + url += (url.indexOf("?") > 0 ? "&" : "?") + params; + } + + return url; + }; + + $(document).on("objectNeedsType.fb", function (e, instance, item) { + var url = item.src || "", + type = false, + media, + thumb, + rez, + params, + urlParams, + paramObj, + provider; + + media = $.extend(true, {}, defaults, item.opts.media); + + // Look for any matching media type + $.each(media, function (providerName, providerOpts) { + rez = url.match(providerOpts.matcher); + + if (!rez) { + return; + } + + type = providerOpts.type; + provider = providerName; + paramObj = {}; + + if (providerOpts.paramPlace && rez[providerOpts.paramPlace]) { + urlParams = rez[providerOpts.paramPlace]; + + if (urlParams[0] == "?") { + urlParams = urlParams.substring(1); + } + + urlParams = urlParams.split("&"); + + for (var m = 0; m < urlParams.length; ++m) { + var p = urlParams[m].split("=", 2); + + if (p.length == 2) { + paramObj[p[0]] = decodeURIComponent(p[1].replace(/\+/g, " ")); + } + } + } + + params = $.extend(true, {}, providerOpts.params, item.opts[providerName], paramObj); + + url = + $.type(providerOpts.url) === "function" ? providerOpts.url.call(this, rez, params, item) : format(providerOpts.url, rez, params); + + thumb = + $.type(providerOpts.thumb) === "function" ? providerOpts.thumb.call(this, rez, params, item) : format(providerOpts.thumb, rez); + + if (providerName === "youtube") { + url = url.replace(/&t=((\d+)m)?(\d+)s/, function (match, p1, m, s) { + return "&start=" + ((m ? parseInt(m, 10) * 60 : 0) + parseInt(s, 10)); + }); + } else if (providerName === "vimeo") { + url = url.replace("&%23", "#"); + } + + return false; + }); + + // If it is found, then change content type and update the url + + if (type) { + if (!item.opts.thumb && !(item.opts.$thumb && item.opts.$thumb.length)) { + item.opts.thumb = thumb; + } + + if (type === "iframe") { + item.opts = $.extend(true, item.opts, { + iframe: { + preload: false, + attr: { + scrolling: "no" + } + } + }); + } + + $.extend(item, { + type: type, + src: url, + origSrc: item.src, + contentSource: provider, + contentType: type === "image" ? "image" : provider == "gmap_place" || provider == "gmap_search" ? "map" : "video" + }); + } else if (url) { + item.type = item.opts.defaultType; + } + }); + + // Load YouTube/Video API on request to detect when video finished playing + var VideoAPILoader = { + youtube: { + src: "https://www.youtube.com/iframe_api", + class: "YT", + loading: false, + loaded: false + }, + + vimeo: { + src: "https://player.vimeo.com/api/player.js", + class: "Vimeo", + loading: false, + loaded: false + }, + + load: function (vendor) { + var _this = this, + script; + + if (this[vendor].loaded) { + setTimeout(function () { + _this.done(vendor); + }); + return; + } + + if (this[vendor].loading) { + return; + } + + this[vendor].loading = true; + + script = document.createElement("script"); + script.type = "text/javascript"; + script.src = this[vendor].src; + + if (vendor === "youtube") { + window.onYouTubeIframeAPIReady = function () { + _this[vendor].loaded = true; + _this.done(vendor); + }; + } else { + script.onload = function () { + _this[vendor].loaded = true; + _this.done(vendor); + }; + } + + document.body.appendChild(script); + }, + done: function (vendor) { + var instance, $el, player; + + if (vendor === "youtube") { + delete window.onYouTubeIframeAPIReady; + } + + instance = $.fancybox.getInstance(); + + if (instance) { + $el = instance.current.$content.find("iframe"); + + if (vendor === "youtube" && YT !== undefined && YT) { + player = new YT.Player($el.attr("id"), { + events: { + onStateChange: function (e) { + if (e.data == 0) { + instance.next(); + } + } + } + }); + } else if (vendor === "vimeo" && Vimeo !== undefined && Vimeo) { + player = new Vimeo.Player($el); + + player.on("ended", function () { + instance.next(); + }); + } + } + } + }; + + $(document).on({ + "afterShow.fb": function (e, instance, current) { + if (instance.group.length > 1 && (current.contentSource === "youtube" || current.contentSource === "vimeo")) { + VideoAPILoader.load(current.contentSource); + } + } + }); +})(jQuery); +// ========================================================================== +// +// Guestures +// Adds touch guestures, handles click and tap events +// +// ========================================================================== +(function (window, document, $) { + "use strict"; + + var requestAFrame = (function () { + return ( + window.requestAnimationFrame || + window.webkitRequestAnimationFrame || + window.mozRequestAnimationFrame || + window.oRequestAnimationFrame || + // if all else fails, use setTimeout + function (callback) { + return window.setTimeout(callback, 1000 / 60); + } + ); + })(); + + var cancelAFrame = (function () { + return ( + window.cancelAnimationFrame || + window.webkitCancelAnimationFrame || + window.mozCancelAnimationFrame || + window.oCancelAnimationFrame || + function (id) { + window.clearTimeout(id); + } + ); + })(); + + var getPointerXY = function (e) { + var result = []; + + e = e.originalEvent || e || window.e; + e = e.touches && e.touches.length ? e.touches : e.changedTouches && e.changedTouches.length ? e.changedTouches : [e]; + + for (var key in e) { + if (e[key].pageX) { + result.push({ + x: e[key].pageX, + y: e[key].pageY + }); + } else if (e[key].clientX) { + result.push({ + x: e[key].clientX, + y: e[key].clientY + }); + } + } + + return result; + }; + + var distance = function (point2, point1, what) { + if (!point1 || !point2) { + return 0; + } + + if (what === "x") { + return point2.x - point1.x; + } else if (what === "y") { + return point2.y - point1.y; + } + + return Math.sqrt(Math.pow(point2.x - point1.x, 2) + Math.pow(point2.y - point1.y, 2)); + }; + + var isClickable = function ($el) { + if ( + $el.is('a,area,button,[role="button"],input,label,select,summary,textarea,video,audio,iframe') || + $.isFunction($el.get(0).onclick) || + $el.data("selectable") + ) { + return true; + } + + // Check for attributes like data-fancybox-next or data-fancybox-close + for (var i = 0, atts = $el[0].attributes, n = atts.length; i < n; i++) { + if (atts[i].nodeName.substr(0, 14) === "data-fancybox-") { + return true; + } + } + + return false; + }; + + var hasScrollbars = function (el) { + var overflowY = window.getComputedStyle(el)["overflow-y"], + overflowX = window.getComputedStyle(el)["overflow-x"], + vertical = (overflowY === "scroll" || overflowY === "auto") && el.scrollHeight > el.clientHeight, + horizontal = (overflowX === "scroll" || overflowX === "auto") && el.scrollWidth > el.clientWidth; + + return vertical || horizontal; + }; + + var isScrollable = function ($el) { + var rez = false; + + while (true) { + rez = hasScrollbars($el.get(0)); + + if (rez) { + break; + } + + $el = $el.parent(); + + if (!$el.length || $el.hasClass("fancybox-stage") || $el.is("body")) { + break; + } + } + + return rez; + }; + + var Guestures = function (instance) { + var self = this; + + self.instance = instance; + + self.$bg = instance.$refs.bg; + self.$stage = instance.$refs.stage; + self.$container = instance.$refs.container; + + self.destroy(); + + self.$container.on("touchstart.fb.touch mousedown.fb.touch", $.proxy(self, "ontouchstart")); + }; + + Guestures.prototype.destroy = function () { + var self = this; + + self.$container.off(".fb.touch"); + + $(document).off(".fb.touch"); + + if (self.requestId) { + cancelAFrame(self.requestId); + self.requestId = null; + } + + if (self.tapped) { + clearTimeout(self.tapped); + self.tapped = null; + } + }; + + Guestures.prototype.ontouchstart = function (e) { + var self = this, + $target = $(e.target), + instance = self.instance, + current = instance.current, + $slide = current.$slide, + $content = current.$content, + isTouchDevice = e.type == "touchstart"; + + // Do not respond to both (touch and mouse) events + if (isTouchDevice) { + self.$container.off("mousedown.fb.touch"); + } + + // Ignore right click + if (e.originalEvent && e.originalEvent.button == 2) { + return; + } + + // Ignore taping on links, buttons, input elements + if (!$slide.length || !$target.length || isClickable($target) || isClickable($target.parent())) { + return; + } + // Ignore clicks on the scrollbar + if (!$target.is("img") && e.originalEvent.clientX > $target[0].clientWidth + $target.offset().left) { + return; + } + + // Ignore clicks while zooming or closing + if (!current || instance.isAnimating || current.$slide.hasClass("fancybox-animated")) { + e.stopPropagation(); + e.preventDefault(); + + return; + } + + self.realPoints = self.startPoints = getPointerXY(e); + + if (!self.startPoints.length) { + return; + } + + // Allow other scripts to catch touch event if "touch" is set to false + if (current.touch) { + e.stopPropagation(); + } + + self.startEvent = e; + + self.canTap = true; + self.$target = $target; + self.$content = $content; + self.opts = current.opts.touch; + + self.isPanning = false; + self.isSwiping = false; + self.isZooming = false; + self.isScrolling = false; + self.canPan = instance.canPan(); + + self.startTime = new Date().getTime(); + self.distanceX = self.distanceY = self.distance = 0; + + self.canvasWidth = Math.round($slide[0].clientWidth); + self.canvasHeight = Math.round($slide[0].clientHeight); + + self.contentLastPos = null; + self.contentStartPos = $.fancybox.getTranslate(self.$content) || { + top: 0, + left: 0 + }; + self.sliderStartPos = $.fancybox.getTranslate($slide); + + // Since position will be absolute, but we need to make it relative to the stage + self.stagePos = $.fancybox.getTranslate(instance.$refs.stage); + + self.sliderStartPos.top -= self.stagePos.top; + self.sliderStartPos.left -= self.stagePos.left; + + self.contentStartPos.top -= self.stagePos.top; + self.contentStartPos.left -= self.stagePos.left; + + $(document) + .off(".fb.touch") + .on(isTouchDevice ? "touchend.fb.touch touchcancel.fb.touch" : "mouseup.fb.touch mouseleave.fb.touch", $.proxy(self, "ontouchend")) + .on(isTouchDevice ? "touchmove.fb.touch" : "mousemove.fb.touch", $.proxy(self, "ontouchmove")); + + if ($.fancybox.isMobile) { + document.addEventListener("scroll", self.onscroll, true); + } + + // Skip if clicked outside the sliding area + if (!(self.opts || self.canPan) || !($target.is(self.$stage) || self.$stage.find($target).length)) { + if ($target.is(".fancybox-image")) { + e.preventDefault(); + } + + if (!($.fancybox.isMobile && $target.parents(".fancybox-caption").length)) { + return; + } + } + + self.isScrollable = isScrollable($target) || isScrollable($target.parent()); + + // Check if element is scrollable and try to prevent default behavior (scrolling) + if (!($.fancybox.isMobile && self.isScrollable)) { + e.preventDefault(); + } + + // One finger or mouse click - swipe or pan an image + if (self.startPoints.length === 1 || current.hasError) { + if (self.canPan) { + $.fancybox.stop(self.$content); + + self.isPanning = true; + } else { + self.isSwiping = true; + } + + self.$container.addClass("fancybox-is-grabbing"); + } + + // Two fingers - zoom image + if (self.startPoints.length === 2 && current.type === "image" && (current.isLoaded || current.$ghost)) { + self.canTap = false; + self.isSwiping = false; + self.isPanning = false; + + self.isZooming = true; + + $.fancybox.stop(self.$content); + + self.centerPointStartX = (self.startPoints[0].x + self.startPoints[1].x) * 0.5 - $(window).scrollLeft(); + self.centerPointStartY = (self.startPoints[0].y + self.startPoints[1].y) * 0.5 - $(window).scrollTop(); + + self.percentageOfImageAtPinchPointX = (self.centerPointStartX - self.contentStartPos.left) / self.contentStartPos.width; + self.percentageOfImageAtPinchPointY = (self.centerPointStartY - self.contentStartPos.top) / self.contentStartPos.height; + + self.startDistanceBetweenFingers = distance(self.startPoints[0], self.startPoints[1]); + } + }; + + Guestures.prototype.onscroll = function (e) { + var self = this; + + self.isScrolling = true; + + document.removeEventListener("scroll", self.onscroll, true); + }; + + Guestures.prototype.ontouchmove = function (e) { + var self = this; + + // Make sure user has not released over iframe or disabled element + if (e.originalEvent.buttons !== undefined && e.originalEvent.buttons === 0) { + self.ontouchend(e); + return; + } + + if (self.isScrolling) { + self.canTap = false; + return; + } + + self.newPoints = getPointerXY(e); + + if (!(self.opts || self.canPan) || !self.newPoints.length || !self.newPoints.length) { + return; + } + + if (!(self.isSwiping && self.isSwiping === true)) { + e.preventDefault(); + } + + self.distanceX = distance(self.newPoints[0], self.startPoints[0], "x"); + self.distanceY = distance(self.newPoints[0], self.startPoints[0], "y"); + + self.distance = distance(self.newPoints[0], self.startPoints[0]); + + // Skip false ontouchmove events (Chrome) + if (self.distance > 0) { + if (self.isSwiping) { + self.onSwipe(e); + } else if (self.isPanning) { + self.onPan(); + } else if (self.isZooming) { + self.onZoom(); + } + } + }; + + Guestures.prototype.onSwipe = function (e) { + var self = this, + instance = self.instance, + swiping = self.isSwiping, + left = self.sliderStartPos.left || 0, + angle; + + // If direction is not yet determined + if (swiping === true) { + // We need at least 10px distance to correctly calculate an angle + if (Math.abs(self.distance) > 10) { + self.canTap = false; + + if (instance.group.length < 2 && self.opts.vertical) { + self.isSwiping = "y"; + } else if (instance.isDragging || self.opts.vertical === false || (self.opts.vertical === "auto" && $(window).width() > 800)) { + self.isSwiping = "x"; + } else { + angle = Math.abs((Math.atan2(self.distanceY, self.distanceX) * 180) / Math.PI); + + self.isSwiping = angle > 45 && angle < 135 ? "y" : "x"; + } + + if (self.isSwiping === "y" && $.fancybox.isMobile && self.isScrollable) { + self.isScrolling = true; + + return; + } + + instance.isDragging = self.isSwiping; + + // Reset points to avoid jumping, because we dropped first swipes to calculate the angle + self.startPoints = self.newPoints; + + $.each(instance.slides, function (index, slide) { + var slidePos, stagePos; + + $.fancybox.stop(slide.$slide); + + slidePos = $.fancybox.getTranslate(slide.$slide); + stagePos = $.fancybox.getTranslate(instance.$refs.stage); + + slide.$slide + .css({ + transform: "", + opacity: "", + "transition-duration": "" + }) + .removeClass("fancybox-animated") + .removeClass(function (index, className) { + return (className.match(/(^|\s)fancybox-fx-\S+/g) || []).join(" "); + }); + + if (slide.pos === instance.current.pos) { + self.sliderStartPos.top = slidePos.top - stagePos.top; + self.sliderStartPos.left = slidePos.left - stagePos.left; + } + + $.fancybox.setTranslate(slide.$slide, { + top: slidePos.top - stagePos.top, + left: slidePos.left - stagePos.left + }); + }); + + // Stop slideshow + if (instance.SlideShow && instance.SlideShow.isActive) { + instance.SlideShow.stop(); + } + } + + return; + } + + // Sticky edges + if (swiping == "x") { + if ( + self.distanceX > 0 && + (self.instance.group.length < 2 || (self.instance.current.index === 0 && !self.instance.current.opts.loop)) + ) { + left = left + Math.pow(self.distanceX, 0.8); + } else if ( + self.distanceX < 0 && + (self.instance.group.length < 2 || + (self.instance.current.index === self.instance.group.length - 1 && !self.instance.current.opts.loop)) + ) { + left = left - Math.pow(-self.distanceX, 0.8); + } else { + left = left + self.distanceX; + } + } + + self.sliderLastPos = { + top: swiping == "x" ? 0 : self.sliderStartPos.top + self.distanceY, + left: left + }; + + if (self.requestId) { + cancelAFrame(self.requestId); + + self.requestId = null; + } + + self.requestId = requestAFrame(function () { + if (self.sliderLastPos) { + $.each(self.instance.slides, function (index, slide) { + var pos = slide.pos - self.instance.currPos; + + $.fancybox.setTranslate(slide.$slide, { + top: self.sliderLastPos.top, + left: self.sliderLastPos.left + pos * self.canvasWidth + pos * slide.opts.gutter + }); + }); + + self.$container.addClass("fancybox-is-sliding"); + } + }); + }; + + Guestures.prototype.onPan = function () { + var self = this; + + // Prevent accidental movement (sometimes, when tapping casually, finger can move a bit) + if (distance(self.newPoints[0], self.realPoints[0]) < ($.fancybox.isMobile ? 10 : 5)) { + self.startPoints = self.newPoints; + return; + } + + self.canTap = false; + + self.contentLastPos = self.limitMovement(); + + if (self.requestId) { + cancelAFrame(self.requestId); + } + + self.requestId = requestAFrame(function () { + $.fancybox.setTranslate(self.$content, self.contentLastPos); + }); + }; + + // Make panning sticky to the edges + Guestures.prototype.limitMovement = function () { + var self = this; + + var canvasWidth = self.canvasWidth; + var canvasHeight = self.canvasHeight; + + var distanceX = self.distanceX; + var distanceY = self.distanceY; + + var contentStartPos = self.contentStartPos; + + var currentOffsetX = contentStartPos.left; + var currentOffsetY = contentStartPos.top; + + var currentWidth = contentStartPos.width; + var currentHeight = contentStartPos.height; + + var minTranslateX, minTranslateY, maxTranslateX, maxTranslateY, newOffsetX, newOffsetY; + + if (currentWidth > canvasWidth) { + newOffsetX = currentOffsetX + distanceX; + } else { + newOffsetX = currentOffsetX; + } + + newOffsetY = currentOffsetY + distanceY; + + // Slow down proportionally to traveled distance + minTranslateX = Math.max(0, canvasWidth * 0.5 - currentWidth * 0.5); + minTranslateY = Math.max(0, canvasHeight * 0.5 - currentHeight * 0.5); + + maxTranslateX = Math.min(canvasWidth - currentWidth, canvasWidth * 0.5 - currentWidth * 0.5); + maxTranslateY = Math.min(canvasHeight - currentHeight, canvasHeight * 0.5 - currentHeight * 0.5); + + // -> + if (distanceX > 0 && newOffsetX > minTranslateX) { + newOffsetX = minTranslateX - 1 + Math.pow(-minTranslateX + currentOffsetX + distanceX, 0.8) || 0; + } + + // <- + if (distanceX < 0 && newOffsetX < maxTranslateX) { + newOffsetX = maxTranslateX + 1 - Math.pow(maxTranslateX - currentOffsetX - distanceX, 0.8) || 0; + } + + // \/ + if (distanceY > 0 && newOffsetY > minTranslateY) { + newOffsetY = minTranslateY - 1 + Math.pow(-minTranslateY + currentOffsetY + distanceY, 0.8) || 0; + } + + // /\ + if (distanceY < 0 && newOffsetY < maxTranslateY) { + newOffsetY = maxTranslateY + 1 - Math.pow(maxTranslateY - currentOffsetY - distanceY, 0.8) || 0; + } + + return { + top: newOffsetY, + left: newOffsetX + }; + }; + + Guestures.prototype.limitPosition = function (newOffsetX, newOffsetY, newWidth, newHeight) { + var self = this; + + var canvasWidth = self.canvasWidth; + var canvasHeight = self.canvasHeight; + + if (newWidth > canvasWidth) { + newOffsetX = newOffsetX > 0 ? 0 : newOffsetX; + newOffsetX = newOffsetX < canvasWidth - newWidth ? canvasWidth - newWidth : newOffsetX; + } else { + // Center horizontally + newOffsetX = Math.max(0, canvasWidth / 2 - newWidth / 2); + } + + if (newHeight > canvasHeight) { + newOffsetY = newOffsetY > 0 ? 0 : newOffsetY; + newOffsetY = newOffsetY < canvasHeight - newHeight ? canvasHeight - newHeight : newOffsetY; + } else { + // Center vertically + newOffsetY = Math.max(0, canvasHeight / 2 - newHeight / 2); + } + + return { + top: newOffsetY, + left: newOffsetX + }; + }; + + Guestures.prototype.onZoom = function () { + var self = this; + + // Calculate current distance between points to get pinch ratio and new width and height + var contentStartPos = self.contentStartPos; + + var currentWidth = contentStartPos.width; + var currentHeight = contentStartPos.height; + + var currentOffsetX = contentStartPos.left; + var currentOffsetY = contentStartPos.top; + + var endDistanceBetweenFingers = distance(self.newPoints[0], self.newPoints[1]); + + var pinchRatio = endDistanceBetweenFingers / self.startDistanceBetweenFingers; + + var newWidth = Math.floor(currentWidth * pinchRatio); + var newHeight = Math.floor(currentHeight * pinchRatio); + + // This is the translation due to pinch-zooming + var translateFromZoomingX = (currentWidth - newWidth) * self.percentageOfImageAtPinchPointX; + var translateFromZoomingY = (currentHeight - newHeight) * self.percentageOfImageAtPinchPointY; + + // Point between the two touches + var centerPointEndX = (self.newPoints[0].x + self.newPoints[1].x) / 2 - $(window).scrollLeft(); + var centerPointEndY = (self.newPoints[0].y + self.newPoints[1].y) / 2 - $(window).scrollTop(); + + // And this is the translation due to translation of the centerpoint + // between the two fingers + var translateFromTranslatingX = centerPointEndX - self.centerPointStartX; + var translateFromTranslatingY = centerPointEndY - self.centerPointStartY; + + // The new offset is the old/current one plus the total translation + var newOffsetX = currentOffsetX + (translateFromZoomingX + translateFromTranslatingX); + var newOffsetY = currentOffsetY + (translateFromZoomingY + translateFromTranslatingY); + + var newPos = { + top: newOffsetY, + left: newOffsetX, + scaleX: pinchRatio, + scaleY: pinchRatio + }; + + self.canTap = false; + + self.newWidth = newWidth; + self.newHeight = newHeight; + + self.contentLastPos = newPos; + + if (self.requestId) { + cancelAFrame(self.requestId); + } + + self.requestId = requestAFrame(function () { + $.fancybox.setTranslate(self.$content, self.contentLastPos); + }); + }; + + Guestures.prototype.ontouchend = function (e) { + var self = this; + + var swiping = self.isSwiping; + var panning = self.isPanning; + var zooming = self.isZooming; + var scrolling = self.isScrolling; + + self.endPoints = getPointerXY(e); + self.dMs = Math.max(new Date().getTime() - self.startTime, 1); + + self.$container.removeClass("fancybox-is-grabbing"); + + $(document).off(".fb.touch"); + + document.removeEventListener("scroll", self.onscroll, true); + + if (self.requestId) { + cancelAFrame(self.requestId); + + self.requestId = null; + } + + self.isSwiping = false; + self.isPanning = false; + self.isZooming = false; + self.isScrolling = false; + + self.instance.isDragging = false; + + if (self.canTap) { + return self.onTap(e); + } + + self.speed = 100; + + // Speed in px/ms + self.velocityX = (self.distanceX / self.dMs) * 0.5; + self.velocityY = (self.distanceY / self.dMs) * 0.5; + + if (panning) { + self.endPanning(); + } else if (zooming) { + self.endZooming(); + } else { + self.endSwiping(swiping, scrolling); + } + + return; + }; + + Guestures.prototype.endSwiping = function (swiping, scrolling) { + var self = this, + ret = false, + len = self.instance.group.length, + distanceX = Math.abs(self.distanceX), + canAdvance = swiping == "x" && len > 1 && ((self.dMs > 130 && distanceX > 10) || distanceX > 50), + speedX = 300; + + self.sliderLastPos = null; + + // Close if swiped vertically / navigate if horizontally + if (swiping == "y" && !scrolling && Math.abs(self.distanceY) > 50) { + // Continue vertical movement + $.fancybox.animate( + self.instance.current.$slide, { + top: self.sliderStartPos.top + self.distanceY + self.velocityY * 150, + opacity: 0 + }, + 200 + ); + ret = self.instance.close(true, 250); + } else if (canAdvance && self.distanceX > 0) { + ret = self.instance.previous(speedX); + } else if (canAdvance && self.distanceX < 0) { + ret = self.instance.next(speedX); + } + + if (ret === false && (swiping == "x" || swiping == "y")) { + self.instance.centerSlide(200); + } + + self.$container.removeClass("fancybox-is-sliding"); + }; + + // Limit panning from edges + // ======================== + Guestures.prototype.endPanning = function () { + var self = this, + newOffsetX, + newOffsetY, + newPos; + + if (!self.contentLastPos) { + return; + } + + if (self.opts.momentum === false || self.dMs > 350) { + newOffsetX = self.contentLastPos.left; + newOffsetY = self.contentLastPos.top; + } else { + // Continue movement + newOffsetX = self.contentLastPos.left + self.velocityX * 500; + newOffsetY = self.contentLastPos.top + self.velocityY * 500; + } + + newPos = self.limitPosition(newOffsetX, newOffsetY, self.contentStartPos.width, self.contentStartPos.height); + + newPos.width = self.contentStartPos.width; + newPos.height = self.contentStartPos.height; + + $.fancybox.animate(self.$content, newPos, 366); + }; + + Guestures.prototype.endZooming = function () { + var self = this; + + var current = self.instance.current; + + var newOffsetX, newOffsetY, newPos, reset; + + var newWidth = self.newWidth; + var newHeight = self.newHeight; + + if (!self.contentLastPos) { + return; + } + + newOffsetX = self.contentLastPos.left; + newOffsetY = self.contentLastPos.top; + + reset = { + top: newOffsetY, + left: newOffsetX, + width: newWidth, + height: newHeight, + scaleX: 1, + scaleY: 1 + }; + + // Reset scalex/scaleY values; this helps for perfomance and does not break animation + $.fancybox.setTranslate(self.$content, reset); + + if (newWidth < self.canvasWidth && newHeight < self.canvasHeight) { + self.instance.scaleToFit(150); + } else if (newWidth > current.width || newHeight > current.height) { + self.instance.scaleToActual(self.centerPointStartX, self.centerPointStartY, 150); + } else { + newPos = self.limitPosition(newOffsetX, newOffsetY, newWidth, newHeight); + + $.fancybox.animate(self.$content, newPos, 150); + } + }; + + Guestures.prototype.onTap = function (e) { + var self = this; + var $target = $(e.target); + + var instance = self.instance; + var current = instance.current; + + var endPoints = (e && getPointerXY(e)) || self.startPoints; + + var tapX = endPoints[0] ? endPoints[0].x - $(window).scrollLeft() - self.stagePos.left : 0; + var tapY = endPoints[0] ? endPoints[0].y - $(window).scrollTop() - self.stagePos.top : 0; + + var where; + + var process = function (prefix) { + var action = current.opts[prefix]; + + if ($.isFunction(action)) { + action = action.apply(instance, [current, e]); + } + + if (!action) { + return; + } + + switch (action) { + case "close": + instance.close(self.startEvent); + + break; + + case "toggleControls": + instance.toggleControls(); + + break; + + case "next": + instance.next(); + + break; + + case "nextOrClose": + if (instance.group.length > 1) { + instance.next(); + } else { + instance.close(self.startEvent); + } + + break; + + case "zoom": + if (current.type == "image" && (current.isLoaded || current.$ghost)) { + if (instance.canPan()) { + instance.scaleToFit(); + } else if (instance.isScaledDown()) { + instance.scaleToActual(tapX, tapY); + } else if (instance.group.length < 2) { + instance.close(self.startEvent); + } + } + + break; + } + }; + + // Ignore right click + if (e.originalEvent && e.originalEvent.button == 2) { + return; + } + + // Skip if clicked on the scrollbar + if (!$target.is("img") && tapX > $target[0].clientWidth + $target.offset().left) { + return; + } + + // Check where is clicked + if ($target.is(".fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-container")) { + where = "Outside"; + } else if ($target.is(".fancybox-slide")) { + where = "Slide"; + } else if ( + instance.current.$content && + instance.current.$content + .find($target) + .addBack() + .filter($target).length + ) { + where = "Content"; + } else { + return; + } + + // Check if this is a double tap + if (self.tapped) { + // Stop previously created single tap + clearTimeout(self.tapped); + self.tapped = null; + + // Skip if distance between taps is too big + if (Math.abs(tapX - self.tapX) > 50 || Math.abs(tapY - self.tapY) > 50) { + return this; + } + + // OK, now we assume that this is a double-tap + process("dblclick" + where); + } else { + // Single tap will be processed if user has not clicked second time within 300ms + // or there is no need to wait for double-tap + self.tapX = tapX; + self.tapY = tapY; + + if (current.opts["dblclick" + where] && current.opts["dblclick" + where] !== current.opts["click" + where]) { + self.tapped = setTimeout(function () { + self.tapped = null; + + if (!instance.isAnimating) { + process("click" + where); + } + }, 500); + } else { + process("click" + where); + } + } + + return this; + }; + + $(document) + .on("onActivate.fb", function (e, instance) { + if (instance && !instance.Guestures) { + instance.Guestures = new Guestures(instance); + } + }) + .on("beforeClose.fb", function (e, instance) { + if (instance && instance.Guestures) { + instance.Guestures.destroy(); + } + }); +})(window, document, jQuery); +// ========================================================================== +// +// SlideShow +// Enables slideshow functionality +// +// Example of usage: +// $.fancybox.getInstance().SlideShow.start() +// +// ========================================================================== +(function (document, $) { + "use strict"; + + $.extend(true, $.fancybox.defaults, { + btnTpl: { + slideShow: '" + }, + slideShow: { + autoStart: false, + speed: 3000, + progress: true + } + }); + + var SlideShow = function (instance) { + this.instance = instance; + this.init(); + }; + + $.extend(SlideShow.prototype, { + timer: null, + isActive: false, + $button: null, + + init: function () { + var self = this, + instance = self.instance, + opts = instance.group[instance.currIndex].opts.slideShow; + + self.$button = instance.$refs.toolbar.find("[data-fancybox-play]").on("click", function () { + self.toggle(); + }); + + if (instance.group.length < 2 || !opts) { + self.$button.hide(); + } else if (opts.progress) { + self.$progress = $('
').appendTo(instance.$refs.inner); + } + }, + + set: function (force) { + var self = this, + instance = self.instance, + current = instance.current; + + // Check if reached last element + if (current && (force === true || current.opts.loop || instance.currIndex < instance.group.length - 1)) { + if (self.isActive && current.contentType !== "video") { + if (self.$progress) { + $.fancybox.animate(self.$progress.show(), { + scaleX: 1 + }, current.opts.slideShow.speed); + } + + self.timer = setTimeout(function () { + if (!instance.current.opts.loop && instance.current.index == instance.group.length - 1) { + instance.jumpTo(0); + } else { + instance.next(); + } + }, current.opts.slideShow.speed); + } + } else { + self.stop(); + instance.idleSecondsCounter = 0; + instance.showControls(); + } + }, + + clear: function () { + var self = this; + + clearTimeout(self.timer); + + self.timer = null; + + if (self.$progress) { + self.$progress.removeAttr("style").hide(); + } + }, + + start: function () { + var self = this, + current = self.instance.current; + + if (current) { + self.$button + .attr("title", (current.opts.i18n[current.opts.lang] || current.opts.i18n.en).PLAY_STOP) + .removeClass("fancybox-button--play") + .addClass("fancybox-button--pause"); + + self.isActive = true; + + if (current.isComplete) { + self.set(true); + } + + self.instance.trigger("onSlideShowChange", true); + } + }, + + stop: function () { + var self = this, + current = self.instance.current; + + self.clear(); + + self.$button + .attr("title", (current.opts.i18n[current.opts.lang] || current.opts.i18n.en).PLAY_START) + .removeClass("fancybox-button--pause") + .addClass("fancybox-button--play"); + + self.isActive = false; + + self.instance.trigger("onSlideShowChange", false); + + if (self.$progress) { + self.$progress.removeAttr("style").hide(); + } + }, + + toggle: function () { + var self = this; + + if (self.isActive) { + self.stop(); + } else { + self.start(); + } + } + }); + + $(document).on({ + "onInit.fb": function (e, instance) { + if (instance && !instance.SlideShow) { + instance.SlideShow = new SlideShow(instance); + } + }, + + "beforeShow.fb": function (e, instance, current, firstRun) { + var SlideShow = instance && instance.SlideShow; + + if (firstRun) { + if (SlideShow && current.opts.slideShow.autoStart) { + SlideShow.start(); + } + } else if (SlideShow && SlideShow.isActive) { + SlideShow.clear(); + } + }, + + "afterShow.fb": function (e, instance, current) { + var SlideShow = instance && instance.SlideShow; + + if (SlideShow && SlideShow.isActive) { + SlideShow.set(); + } + }, + + "afterKeydown.fb": function (e, instance, current, keypress, keycode) { + var SlideShow = instance && instance.SlideShow; + + // "P" or Spacebar + if (SlideShow && current.opts.slideShow && (keycode === 80 || keycode === 32) && !$(document.activeElement).is("button,a,input")) { + keypress.preventDefault(); + + SlideShow.toggle(); + } + }, + + "beforeClose.fb onDeactivate.fb": function (e, instance) { + var SlideShow = instance && instance.SlideShow; + + if (SlideShow) { + SlideShow.stop(); + } + } + }); + + // Page Visibility API to pause slideshow when window is not active + $(document).on("visibilitychange", function () { + var instance = $.fancybox.getInstance(), + SlideShow = instance && instance.SlideShow; + + if (SlideShow && SlideShow.isActive) { + if (document.hidden) { + SlideShow.clear(); + } else { + SlideShow.set(); + } + } + }); +})(document, jQuery); +// ========================================================================== +// +// FullScreen +// Adds fullscreen functionality +// +// ========================================================================== +(function (document, $) { + "use strict"; + + // Collection of methods supported by user browser + var fn = (function () { + var fnMap = [ + ["requestFullscreen", "exitFullscreen", "fullscreenElement", "fullscreenEnabled", "fullscreenchange", "fullscreenerror"], + // new WebKit + [ + "webkitRequestFullscreen", + "webkitExitFullscreen", + "webkitFullscreenElement", + "webkitFullscreenEnabled", + "webkitfullscreenchange", + "webkitfullscreenerror" + ], + // old WebKit (Safari 5.1) + [ + "webkitRequestFullScreen", + "webkitCancelFullScreen", + "webkitCurrentFullScreenElement", + "webkitCancelFullScreen", + "webkitfullscreenchange", + "webkitfullscreenerror" + ], + [ + "mozRequestFullScreen", + "mozCancelFullScreen", + "mozFullScreenElement", + "mozFullScreenEnabled", + "mozfullscreenchange", + "mozfullscreenerror" + ], + ["msRequestFullscreen", "msExitFullscreen", "msFullscreenElement", "msFullscreenEnabled", "MSFullscreenChange", "MSFullscreenError"] + ]; + + var ret = {}; + + for (var i = 0; i < fnMap.length; i++) { + var val = fnMap[i]; + + if (val && val[1] in document) { + for (var j = 0; j < val.length; j++) { + ret[fnMap[0][j]] = val[j]; + } + + return ret; + } + } + + return false; + })(); + + if (fn) { + var FullScreen = { + request: function (elem) { + elem = elem || document.documentElement; + + elem[fn.requestFullscreen](elem.ALLOW_KEYBOARD_INPUT); + }, + exit: function () { + document[fn.exitFullscreen](); + }, + toggle: function (elem) { + elem = elem || document.documentElement; + + if (this.isFullscreen()) { + this.exit(); + } else { + this.request(elem); + } + }, + isFullscreen: function () { + return Boolean(document[fn.fullscreenElement]); + }, + enabled: function () { + return Boolean(document[fn.fullscreenEnabled]); + } + }; + + $.extend(true, $.fancybox.defaults, { + btnTpl: { + fullScreen: '" + }, + fullScreen: { + autoStart: false + } + }); + + $(document).on(fn.fullscreenchange, function () { + var isFullscreen = FullScreen.isFullscreen(), + instance = $.fancybox.getInstance(); + + if (instance) { + // If image is zooming, then force to stop and reposition properly + if (instance.current && instance.current.type === "image" && instance.isAnimating) { + instance.isAnimating = false; + + instance.update(true, true, 0); + + if (!instance.isComplete) { + instance.complete(); + } + } + + instance.trigger("onFullscreenChange", isFullscreen); + + instance.$refs.container.toggleClass("fancybox-is-fullscreen", isFullscreen); + + instance.$refs.toolbar + .find("[data-fancybox-fullscreen]") + .toggleClass("fancybox-button--fsenter", !isFullscreen) + .toggleClass("fancybox-button--fsexit", isFullscreen); + } + }); + } + + $(document).on({ + "onInit.fb": function (e, instance) { + var $container; + + if (!fn) { + instance.$refs.toolbar.find("[data-fancybox-fullscreen]").remove(); + + return; + } + + if (instance && instance.group[instance.currIndex].opts.fullScreen) { + $container = instance.$refs.container; + + $container.on("click.fb-fullscreen", "[data-fancybox-fullscreen]", function (e) { + e.stopPropagation(); + e.preventDefault(); + + FullScreen.toggle(); + }); + + if (instance.opts.fullScreen && instance.opts.fullScreen.autoStart === true) { + FullScreen.request(); + } + + // Expose API + instance.FullScreen = FullScreen; + } else if (instance) { + instance.$refs.toolbar.find("[data-fancybox-fullscreen]").hide(); + } + }, + + "afterKeydown.fb": function (e, instance, current, keypress, keycode) { + // "F" + if (instance && instance.FullScreen && keycode === 70) { + keypress.preventDefault(); + + instance.FullScreen.toggle(); + } + }, + + "beforeClose.fb": function (e, instance) { + if (instance && instance.FullScreen && instance.$refs.container.hasClass("fancybox-is-fullscreen")) { + FullScreen.exit(); + } + } + }); +})(document, jQuery); +// ========================================================================== +// +// Thumbs +// Displays thumbnails in a grid +// +// ========================================================================== +(function (document, $) { + "use strict"; + + var CLASS = "fancybox-thumbs", + CLASS_ACTIVE = CLASS + "-active"; + + // Make sure there are default values + $.fancybox.defaults = $.extend( + true, { + btnTpl: { + thumbs: '" + }, + thumbs: { + autoStart: false, // Display thumbnails on opening + hideOnClose: true, // Hide thumbnail grid when closing animation starts + parentEl: ".fancybox-container", // Container is injected into this element + axis: "y" // Vertical (y) or horizontal (x) scrolling + } + }, + $.fancybox.defaults + ); + + var FancyThumbs = function (instance) { + this.init(instance); + }; + + $.extend(FancyThumbs.prototype, { + $button: null, + $grid: null, + $list: null, + isVisible: false, + isActive: false, + + init: function (instance) { + var self = this, + group = instance.group, + enabled = 0; + + self.instance = instance; + self.opts = group[instance.currIndex].opts.thumbs; + + instance.Thumbs = self; + + self.$button = instance.$refs.toolbar.find("[data-fancybox-thumbs]"); + + // Enable thumbs if at least two group items have thumbnails + for (var i = 0, len = group.length; i < len; i++) { + if (group[i].thumb) { + enabled++; + } + + if (enabled > 1) { + break; + } + } + + if (enabled > 1 && !!self.opts) { + self.$button.removeAttr("style").on("click", function () { + self.toggle(); + }); + + self.isActive = true; + } else { + self.$button.hide(); + } + }, + + create: function () { + var self = this, + instance = self.instance, + parentEl = self.opts.parentEl, + list = [], + src; + + if (!self.$grid) { + // Create main element + self.$grid = $('
').appendTo( + instance.$refs.container + .find(parentEl) + .addBack() + .filter(parentEl) + ); + + // Add "click" event that performs gallery navigation + self.$grid.on("click", "a", function () { + instance.jumpTo($(this).attr("data-index")); + }); + } + + // Build the list + if (!self.$list) { + self.$list = $('
').appendTo(self.$grid); + } + + $.each(instance.group, function (i, item) { + src = item.thumb; + + if (!src && item.type === "image") { + src = item.src; + } + + list.push( + '" + ); + }); + + self.$list[0].innerHTML = list.join(""); + + if (self.opts.axis === "x") { + // Set fixed width for list element to enable horizontal scrolling + self.$list.width( + parseInt(self.$grid.css("padding-right"), 10) + + instance.group.length * + self.$list + .children() + .eq(0) + .outerWidth(true) + ); + } + }, + + focus: function (duration) { + var self = this, + $list = self.$list, + $grid = self.$grid, + thumb, + thumbPos; + + if (!self.instance.current) { + return; + } + + thumb = $list + .children() + .removeClass(CLASS_ACTIVE) + .filter('[data-index="' + self.instance.current.index + '"]') + .addClass(CLASS_ACTIVE); + + thumbPos = thumb.position(); + + // Check if need to scroll to make current thumb visible + if (self.opts.axis === "y" && (thumbPos.top < 0 || thumbPos.top > $list.height() - thumb.outerHeight())) { + $list.stop().animate({ + scrollTop: $list.scrollTop() + thumbPos.top + }, + duration + ); + } else if ( + self.opts.axis === "x" && + (thumbPos.left < $grid.scrollLeft() || thumbPos.left > $grid.scrollLeft() + ($grid.width() - thumb.outerWidth())) + ) { + $list + .parent() + .stop() + .animate({ + scrollLeft: thumbPos.left + }, + duration + ); + } + }, + + update: function () { + var that = this; + that.instance.$refs.container.toggleClass("fancybox-show-thumbs", this.isVisible); + + if (that.isVisible) { + if (!that.$grid) { + that.create(); + } + + that.instance.trigger("onThumbsShow"); + + that.focus(0); + } else if (that.$grid) { + that.instance.trigger("onThumbsHide"); + } + + // Update content position + that.instance.update(); + }, + + hide: function () { + this.isVisible = false; + this.update(); + }, + + show: function () { + this.isVisible = true; + this.update(); + }, + + toggle: function () { + this.isVisible = !this.isVisible; + this.update(); + } + }); + + $(document).on({ + "onInit.fb": function (e, instance) { + var Thumbs; + + if (instance && !instance.Thumbs) { + Thumbs = new FancyThumbs(instance); + + if (Thumbs.isActive && Thumbs.opts.autoStart === true) { + Thumbs.show(); + } + } + }, + + "beforeShow.fb": function (e, instance, item, firstRun) { + var Thumbs = instance && instance.Thumbs; + + if (Thumbs && Thumbs.isVisible) { + Thumbs.focus(firstRun ? 0 : 250); + } + }, + + "afterKeydown.fb": function (e, instance, current, keypress, keycode) { + var Thumbs = instance && instance.Thumbs; + + // "G" + if (Thumbs && Thumbs.isActive && keycode === 71) { + keypress.preventDefault(); + + Thumbs.toggle(); + } + }, + + "beforeClose.fb": function (e, instance) { + var Thumbs = instance && instance.Thumbs; + + if (Thumbs && Thumbs.isVisible && Thumbs.opts.hideOnClose !== false) { + Thumbs.$grid.hide(); + } + } + }); +})(document, jQuery); +//// ========================================================================== +// +// Share +// Displays simple form for sharing current url +// +// ========================================================================== +(function (document, $) { + "use strict"; + + $.extend(true, $.fancybox.defaults, { + btnTpl: { + share: '" + }, + share: { + url: function (instance, item) { + return ( + (!instance.currentHash && !(item.type === "inline" || item.type === "html") ? item.origSrc || item.src : false) || window.location + ); + }, + tpl: '
' + + "

{{SHARE}}

" + + "

" + + '' + + '' + + "Facebook" + + "" + + '' + + '' + + "Twitter" + + "" + + '' + + '' + + "Pinterest" + + "" + + "

" + + '

' + + "
" + } + }); + + function escapeHtml(string) { + var entityMap = { + "&": "&", + "<": "<", + ">": ">", + '"': """, + "'": "'", + "/": "/", + "`": "`", + "=": "=" + }; + + return String(string).replace(/[&<>"'`=\/]/g, function (s) { + return entityMap[s]; + }); + } + + $(document).on("click", "[data-fancybox-share]", function () { + var instance = $.fancybox.getInstance(), + current = instance.current || null, + url, + tpl; + + if (!current) { + return; + } + + if ($.type(current.opts.share.url) === "function") { + url = current.opts.share.url.apply(current, [instance, current]); + } + + tpl = current.opts.share.tpl + .replace(/\{\{media\}\}/g, current.type === "image" ? encodeURIComponent(current.src) : "") + .replace(/\{\{url\}\}/g, encodeURIComponent(url)) + .replace(/\{\{url_raw\}\}/g, escapeHtml(url)) + .replace(/\{\{descr\}\}/g, instance.$caption ? encodeURIComponent(instance.$caption.text()) : ""); + + $.fancybox.open({ + src: instance.translate(instance, tpl), + type: "html", + opts: { + touch: false, + animationEffect: false, + afterLoad: function (shareInstance, shareCurrent) { + // Close self if parent instance is closing + instance.$refs.container.one("beforeClose.fb", function () { + shareInstance.close(null, 0); + }); + + // Opening links in a popup window + shareCurrent.$content.find(".fancybox-share__button").click(function () { + window.open(this.href, "Share", "width=550, height=450"); + return false; + }); + }, + mobile: { + autoFocus: false + } + } + }); + }); +})(document, jQuery); +// ========================================================================== +// +// Hash +// Enables linking to each modal +// +// ========================================================================== +(function (window, document, $) { + "use strict"; + + // Simple $.escapeSelector polyfill (for jQuery prior v3) + if (!$.escapeSelector) { + $.escapeSelector = function (sel) { + var rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g; + var fcssescape = function (ch, asCodePoint) { + if (asCodePoint) { + // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER + if (ch === "\0") { + return "\uFFFD"; + } + + // Control characters and (dependent upon position) numbers get escaped as code points + return ch.slice(0, -1) + "\\" + ch.charCodeAt(ch.length - 1).toString(16) + " "; + } + + // Other potentially-special ASCII characters get backslash-escaped + return "\\" + ch; + }; + + return (sel + "").replace(rcssescape, fcssescape); + }; + } + + // Get info about gallery name and current index from url + function parseUrl() { + var hash = window.location.hash.substr(1), + rez = hash.split("-"), + index = rez.length > 1 && /^\+?\d+$/.test(rez[rez.length - 1]) ? parseInt(rez.pop(-1), 10) || 1 : 1, + gallery = rez.join("-"); + + return { + hash: hash, + /* Index is starting from 1 */ + index: index < 1 ? 1 : index, + gallery: gallery + }; + } + + // Trigger click evnt on links to open new fancyBox instance + function triggerFromUrl(url) { + if (url.gallery !== "") { + // If we can find element matching 'data-fancybox' atribute, + // then triggering click event should start fancyBox + $("[data-fancybox='" + $.escapeSelector(url.gallery) + "']") + .eq(url.index - 1) + .focus() + .trigger("click.fb-start"); + } + } + + // Get gallery name from current instance + function getGalleryID(instance) { + var opts, ret; + + if (!instance) { + return false; + } + + opts = instance.current ? instance.current.opts : instance.opts; + ret = opts.hash || (opts.$orig ? opts.$orig.data("fancybox") || opts.$orig.data("fancybox-trigger") : ""); + + return ret === "" ? false : ret; + } + + // Start when DOM becomes ready + $(function () { + // Check if user has disabled this module + if ($.fancybox.defaults.hash === false) { + return; + } + + // Update hash when opening/closing fancyBox + $(document).on({ + "onInit.fb": function (e, instance) { + var url, gallery; + + if (instance.group[instance.currIndex].opts.hash === false) { + return; + } + + url = parseUrl(); + gallery = getGalleryID(instance); + + // Make sure gallery start index matches index from hash + if (gallery && url.gallery && gallery == url.gallery) { + instance.currIndex = url.index - 1; + } + }, + + "beforeShow.fb": function (e, instance, current, firstRun) { + var gallery; + + if (!current || current.opts.hash === false) { + return; + } + + // Check if need to update window hash + gallery = getGalleryID(instance); + + if (!gallery) { + return; + } + + // Variable containing last hash value set by fancyBox + // It will be used to determine if fancyBox needs to close after hash change is detected + instance.currentHash = gallery + (instance.group.length > 1 ? "-" + (current.index + 1) : ""); + + // If current hash is the same (this instance most likely is opened by hashchange), then do nothing + if (window.location.hash === "#" + instance.currentHash) { + return; + } + + if (firstRun && !instance.origHash) { + instance.origHash = window.location.hash; + } + + if (instance.hashTimer) { + clearTimeout(instance.hashTimer); + } + + // Update hash + instance.hashTimer = setTimeout(function () { + if ("replaceState" in window.history) { + window.history[firstRun ? "pushState" : "replaceState"]({}, + document.title, + window.location.pathname + window.location.search + "#" + instance.currentHash + ); + + if (firstRun) { + instance.hasCreatedHistory = true; + } + } else { + window.location.hash = instance.currentHash; + } + + instance.hashTimer = null; + }, 300); + }, + + "beforeClose.fb": function (e, instance, current) { + if (!current || current.opts.hash === false) { + return; + } + + clearTimeout(instance.hashTimer); + + // Goto previous history entry + if (instance.currentHash && instance.hasCreatedHistory) { + window.history.back(); + } else if (instance.currentHash) { + if ("replaceState" in window.history) { + window.history.replaceState({}, document.title, window.location.pathname + window.location.search + (instance.origHash || "")); + } else { + window.location.hash = instance.origHash; + } + } + + instance.currentHash = null; + } + }); + + // Check if need to start/close after url has changed + $(window).on("hashchange.fb", function () { + var url = parseUrl(), + fb = null; + + // Find last fancyBox instance that has "hash" + $.each( + $(".fancybox-container") + .get() + .reverse(), + function (index, value) { + var tmp = $(value).data("FancyBox"); + + if (tmp && tmp.currentHash) { + fb = tmp; + return false; + } + } + ); + + if (fb) { + // Now, compare hash values + if (fb.currentHash !== url.gallery + "-" + url.index && !(url.index === 1 && fb.currentHash == url.gallery)) { + fb.currentHash = null; + + fb.close(); + } + } else if (url.gallery !== "") { + triggerFromUrl(url); + } + }); + + // Check current hash and trigger click event on matching element to start fancyBox, if needed + setTimeout(function () { + if (!$.fancybox.getInstance()) { + triggerFromUrl(parseUrl()); + } + }, 50); + }); +})(window, document, jQuery); +// ========================================================================== +// +// Wheel +// Basic mouse weheel support for gallery navigation +// +// ========================================================================== +(function (document, $) { + "use strict"; + + var prevTime = new Date().getTime(); + + $(document).on({ + "onInit.fb": function (e, instance, current) { + instance.$refs.stage.on("mousewheel DOMMouseScroll wheel MozMousePixelScroll", function (e) { + var current = instance.current, + currTime = new Date().getTime(); + + if (instance.group.length < 2 || current.opts.wheel === false || (current.opts.wheel === "auto" && current.type !== "image")) { + return; + } + + e.preventDefault(); + e.stopPropagation(); + + if (current.$slide.hasClass("fancybox-animated")) { + return; + } + + e = e.originalEvent || e; + + if (currTime - prevTime < 250) { + return; + } + + prevTime = currTime; + + instance[(-e.deltaY || -e.deltaX || e.wheelDelta || -e.detail) < 0 ? "next" : "previous"](); + }); + } + }); +})(document, jQuery); \ No newline at end of file diff --git a/view/js/fancybox/jquery.fancybox.min.css b/view/js/fancybox/jquery.fancybox.min.css new file mode 100644 index 000000000..7cc60b295 --- /dev/null +++ b/view/js/fancybox/jquery.fancybox.min.css @@ -0,0 +1 @@ +body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}} \ No newline at end of file diff --git a/view/js/fancybox/jquery.fancybox.min.js b/view/js/fancybox/jquery.fancybox.min.js new file mode 100644 index 000000000..d5d10f6be --- /dev/null +++ b/view/js/fancybox/jquery.fancybox.min.js @@ -0,0 +1,13 @@ +// ================================================== +// fancyBox v3.5.7 +// +// Licensed GPLv3 for open source use +// or fancyBox Commercial License for commercial use +// +// http://fancyapps.com/fancybox/ +// Copyright 2019 fancyApps +// +// ================================================== +!function(t,e,n,o){"use strict";function i(t,e){var o,i,a,s=[],r=0;t&&t.isDefaultPrevented()||(t.preventDefault(),e=e||{},t&&t.data&&(e=h(t.data.options,e)),o=e.$target||n(t.currentTarget).trigger("blur"),(a=n.fancybox.getInstance())&&a.$trigger&&a.$trigger.is(o)||(e.selector?s=n(e.selector):(i=o.attr("data-fancybox")||"",i?(s=t.data?t.data.items:[],s=s.length?s.filter('[data-fancybox="'+i+'"]'):n('[data-fancybox="'+i+'"]')):s=[o]),r=n(s).index(o),r<0&&(r=0),a=n.fancybox.open(s,e,r),a.$trigger=o))}if(t.console=t.console||{info:function(t){}},n){if(n.fn.fancybox)return void console.info("fancyBox already initialized");var a={closeExisting:!1,loop:!1,gutter:50,keyboard:!0,preventCaptionOverlap:!0,arrows:!0,infobar:!0,smallBtn:"auto",toolbar:"auto",buttons:["zoom","slideShow","thumbs","close"],idleTime:3,protect:!1,modal:!1,image:{preload:!1},ajax:{settings:{data:{fancybox:!0}}},iframe:{tpl:'',preload:!0,css:{},attr:{scrolling:"auto"}},video:{tpl:'',format:"",autoStart:!0},defaultType:"image",animationEffect:"zoom",animationDuration:366,zoomOpacity:"auto",transitionEffect:"fade",transitionDuration:366,slideClass:"",baseClass:"",baseTpl:'',spinnerTpl:'
',errorTpl:'

{{ERROR}}

',btnTpl:{download:'',zoom:'',close:'',arrowLeft:'',arrowRight:'',smallBtn:''},parentEl:"body",hideScrollbar:!0,autoFocus:!0,backFocus:!0,trapFocus:!0,fullScreen:{autoStart:!1},touch:{vertical:!0,momentum:!0},hash:null,media:{},slideShow:{autoStart:!1,speed:3e3},thumbs:{autoStart:!1,hideOnClose:!0,parentEl:".fancybox-container",axis:"y"},wheel:"auto",onInit:n.noop,beforeLoad:n.noop,afterLoad:n.noop,beforeShow:n.noop,afterShow:n.noop,beforeClose:n.noop,afterClose:n.noop,onActivate:n.noop,onDeactivate:n.noop,clickContent:function(t,e){return"image"===t.type&&"zoom"},clickSlide:"close",clickOutside:"close",dblclickContent:!1,dblclickSlide:!1,dblclickOutside:!1,mobile:{preventCaptionOverlap:!1,idleTime:!1,clickContent:function(t,e){return"image"===t.type&&"toggleControls"},clickSlide:function(t,e){return"image"===t.type?"toggleControls":"close"},dblclickContent:function(t,e){return"image"===t.type&&"zoom"},dblclickSlide:function(t,e){return"image"===t.type&&"zoom"}},lang:"en",i18n:{en:{CLOSE:"Close",NEXT:"Next",PREV:"Previous",ERROR:"The requested content cannot be loaded.
Please try again later.",PLAY_START:"Start slideshow",PLAY_STOP:"Pause slideshow",FULL_SCREEN:"Full screen",THUMBS:"Thumbnails",DOWNLOAD:"Download",SHARE:"Share",ZOOM:"Zoom"},de:{CLOSE:"Schließen",NEXT:"Weiter",PREV:"Zurück",ERROR:"Die angeforderten Daten konnten nicht geladen werden.
Bitte versuchen Sie es später nochmal.",PLAY_START:"Diaschau starten",PLAY_STOP:"Diaschau beenden",FULL_SCREEN:"Vollbild",THUMBS:"Vorschaubilder",DOWNLOAD:"Herunterladen",SHARE:"Teilen",ZOOM:"Vergrößern"}}},s=n(t),r=n(e),c=0,l=function(t){return t&&t.hasOwnProperty&&t instanceof n},d=function(){return t.requestAnimationFrame||t.webkitRequestAnimationFrame||t.mozRequestAnimationFrame||t.oRequestAnimationFrame||function(e){return t.setTimeout(e,1e3/60)}}(),u=function(){return t.cancelAnimationFrame||t.webkitCancelAnimationFrame||t.mozCancelAnimationFrame||t.oCancelAnimationFrame||function(e){t.clearTimeout(e)}}(),f=function(){var t,n=e.createElement("fakeelement"),o={transition:"transitionend",OTransition:"oTransitionEnd",MozTransition:"transitionend",WebkitTransition:"webkitTransitionEnd"};for(t in o)if(void 0!==n.style[t])return o[t];return"transitionend"}(),p=function(t){return t&&t.length&&t[0].offsetHeight},h=function(t,e){var o=n.extend(!0,{},t,e);return n.each(e,function(t,e){n.isArray(e)&&(o[t]=e)}),o},g=function(t){var o,i;return!(!t||t.ownerDocument!==e)&&(n(".fancybox-container").css("pointer-events","none"),o={x:t.getBoundingClientRect().left+t.offsetWidth/2,y:t.getBoundingClientRect().top+t.offsetHeight/2},i=e.elementFromPoint(o.x,o.y)===t,n(".fancybox-container").css("pointer-events",""),i)},b=function(t,e,o){var i=this;i.opts=h({index:o},n.fancybox.defaults),n.isPlainObject(e)&&(i.opts=h(i.opts,e)),n.fancybox.isMobile&&(i.opts=h(i.opts,i.opts.mobile)),i.id=i.opts.id||++c,i.currIndex=parseInt(i.opts.index,10)||0,i.prevIndex=null,i.prevPos=null,i.currPos=0,i.firstRun=!0,i.group=[],i.slides={},i.addContent(t),i.group.length&&i.init()};n.extend(b.prototype,{init:function(){var o,i,a=this,s=a.group[a.currIndex],r=s.opts;r.closeExisting&&n.fancybox.close(!0),n("body").addClass("fancybox-active"),!n.fancybox.getInstance()&&!1!==r.hideScrollbar&&!n.fancybox.isMobile&&e.body.scrollHeight>t.innerHeight&&(n("head").append('"),n("body").addClass("compensate-for-scrollbar")),i="",n.each(r.buttons,function(t,e){i+=r.btnTpl[e]||""}),o=n(a.translate(a,r.baseTpl.replace("{{buttons}}",i).replace("{{arrows}}",r.btnTpl.arrowLeft+r.btnTpl.arrowRight))).attr("id","fancybox-container-"+a.id).addClass(r.baseClass).data("FancyBox",a).appendTo(r.parentEl),a.$refs={container:o},["bg","inner","infobar","toolbar","stage","caption","navigation"].forEach(function(t){a.$refs[t]=o.find(".fancybox-"+t)}),a.trigger("onInit"),a.activate(),a.jumpTo(a.currIndex)},translate:function(t,e){var n=t.opts.i18n[t.opts.lang]||t.opts.i18n.en;return e.replace(/\{\{(\w+)\}\}/g,function(t,e){return void 0===n[e]?t:n[e]})},addContent:function(t){var e,o=this,i=n.makeArray(t);n.each(i,function(t,e){var i,a,s,r,c,l={},d={};n.isPlainObject(e)?(l=e,d=e.opts||e):"object"===n.type(e)&&n(e).length?(i=n(e),d=i.data()||{},d=n.extend(!0,{},d,d.options),d.$orig=i,l.src=o.opts.src||d.src||i.attr("href"),l.type||l.src||(l.type="inline",l.src=e)):l={type:"html",src:e+""},l.opts=n.extend(!0,{},o.opts,d),n.isArray(d.buttons)&&(l.opts.buttons=d.buttons),n.fancybox.isMobile&&l.opts.mobile&&(l.opts=h(l.opts,l.opts.mobile)),a=l.type||l.opts.type,r=l.src||"",!a&&r&&((s=r.match(/\.(mp4|mov|ogv|webm)((\?|#).*)?$/i))?(a="video",l.opts.video.format||(l.opts.video.format="video/"+("ogv"===s[1]?"ogg":s[1]))):r.match(/(^data:image\/[a-z0-9+\/=]*,)|(\.(jp(e|g|eg)|gif|png|bmp|webp|svg|ico)((\?|#).*)?$)/i)?a="image":r.match(/\.(pdf)((\?|#).*)?$/i)?(a="iframe",l=n.extend(!0,l,{contentType:"pdf",opts:{iframe:{preload:!1}}})):"#"===r.charAt(0)&&(a="inline")),a?l.type=a:o.trigger("objectNeedsType",l),l.contentType||(l.contentType=n.inArray(l.type,["html","inline","ajax"])>-1?"html":l.type),l.index=o.group.length,"auto"==l.opts.smallBtn&&(l.opts.smallBtn=n.inArray(l.type,["html","inline","ajax"])>-1),"auto"===l.opts.toolbar&&(l.opts.toolbar=!l.opts.smallBtn),l.$thumb=l.opts.$thumb||null,l.opts.$trigger&&l.index===o.opts.index&&(l.$thumb=l.opts.$trigger.find("img:first"),l.$thumb.length&&(l.opts.$orig=l.opts.$trigger)),l.$thumb&&l.$thumb.length||!l.opts.$orig||(l.$thumb=l.opts.$orig.find("img:first")),l.$thumb&&!l.$thumb.length&&(l.$thumb=null),l.thumb=l.opts.thumb||(l.$thumb?l.$thumb[0].src:null),"function"===n.type(l.opts.caption)&&(l.opts.caption=l.opts.caption.apply(e,[o,l])),"function"===n.type(o.opts.caption)&&(l.opts.caption=o.opts.caption.apply(e,[o,l])),l.opts.caption instanceof n||(l.opts.caption=void 0===l.opts.caption?"":l.opts.caption+""),"ajax"===l.type&&(c=r.split(/\s+/,2),c.length>1&&(l.src=c.shift(),l.opts.filter=c.shift())),l.opts.modal&&(l.opts=n.extend(!0,l.opts,{trapFocus:!0,infobar:0,toolbar:0,smallBtn:0,keyboard:0,slideShow:0,fullScreen:0,thumbs:0,touch:0,clickContent:!1,clickSlide:!1,clickOutside:!1,dblclickContent:!1,dblclickSlide:!1,dblclickOutside:!1})),o.group.push(l)}),Object.keys(o.slides).length&&(o.updateControls(),(e=o.Thumbs)&&e.isActive&&(e.create(),e.focus()))},addEvents:function(){var e=this;e.removeEvents(),e.$refs.container.on("click.fb-close","[data-fancybox-close]",function(t){t.stopPropagation(),t.preventDefault(),e.close(t)}).on("touchstart.fb-prev click.fb-prev","[data-fancybox-prev]",function(t){t.stopPropagation(),t.preventDefault(),e.previous()}).on("touchstart.fb-next click.fb-next","[data-fancybox-next]",function(t){t.stopPropagation(),t.preventDefault(),e.next()}).on("click.fb","[data-fancybox-zoom]",function(t){e[e.isScaledDown()?"scaleToActual":"scaleToFit"]()}),s.on("orientationchange.fb resize.fb",function(t){t&&t.originalEvent&&"resize"===t.originalEvent.type?(e.requestId&&u(e.requestId),e.requestId=d(function(){e.update(t)})):(e.current&&"iframe"===e.current.type&&e.$refs.stage.hide(),setTimeout(function(){e.$refs.stage.show(),e.update(t)},n.fancybox.isMobile?600:250))}),r.on("keydown.fb",function(t){var o=n.fancybox?n.fancybox.getInstance():null,i=o.current,a=t.keyCode||t.which;if(9==a)return void(i.opts.trapFocus&&e.focus(t));if(!(!i.opts.keyboard||t.ctrlKey||t.altKey||t.shiftKey||n(t.target).is("input,textarea,video,audio,select")))return 8===a||27===a?(t.preventDefault(),void e.close(t)):37===a||38===a?(t.preventDefault(),void e.previous()):39===a||40===a?(t.preventDefault(),void e.next()):void e.trigger("afterKeydown",t,a)}),e.group[e.currIndex].opts.idleTime&&(e.idleSecondsCounter=0,r.on("mousemove.fb-idle mouseleave.fb-idle mousedown.fb-idle touchstart.fb-idle touchmove.fb-idle scroll.fb-idle keydown.fb-idle",function(t){e.idleSecondsCounter=0,e.isIdle&&e.showControls(),e.isIdle=!1}),e.idleInterval=t.setInterval(function(){++e.idleSecondsCounter>=e.group[e.currIndex].opts.idleTime&&!e.isDragging&&(e.isIdle=!0,e.idleSecondsCounter=0,e.hideControls())},1e3))},removeEvents:function(){var e=this;s.off("orientationchange.fb resize.fb"),r.off("keydown.fb .fb-idle"),this.$refs.container.off(".fb-close .fb-prev .fb-next"),e.idleInterval&&(t.clearInterval(e.idleInterval),e.idleInterval=null)},previous:function(t){return this.jumpTo(this.currPos-1,t)},next:function(t){return this.jumpTo(this.currPos+1,t)},jumpTo:function(t,e){var o,i,a,s,r,c,l,d,u,f=this,h=f.group.length;if(!(f.isDragging||f.isClosing||f.isAnimating&&f.firstRun)){if(t=parseInt(t,10),!(a=f.current?f.current.opts.loop:f.opts.loop)&&(t<0||t>=h))return!1;if(o=f.firstRun=!Object.keys(f.slides).length,r=f.current,f.prevIndex=f.currIndex,f.prevPos=f.currPos,s=f.createSlide(t),h>1&&((a||s.index0)&&f.createSlide(t-1)),f.current=s,f.currIndex=s.index,f.currPos=s.pos,f.trigger("beforeShow",o),f.updateControls(),s.forcedDuration=void 0,n.isNumeric(e)?s.forcedDuration=e:e=s.opts[o?"animationDuration":"transitionDuration"],e=parseInt(e,10),i=f.isMoved(s),s.$slide.addClass("fancybox-slide--current"),o)return s.opts.animationEffect&&e&&f.$refs.container.css("transition-duration",e+"ms"),f.$refs.container.addClass("fancybox-is-open").trigger("focus"),f.loadSlide(s),void f.preload("image");c=n.fancybox.getTranslate(r.$slide),l=n.fancybox.getTranslate(f.$refs.stage),n.each(f.slides,function(t,e){n.fancybox.stop(e.$slide,!0)}),r.pos!==s.pos&&(r.isComplete=!1),r.$slide.removeClass("fancybox-slide--complete fancybox-slide--current"),i?(u=c.left-(r.pos*c.width+r.pos*r.opts.gutter),n.each(f.slides,function(t,o){o.$slide.removeClass("fancybox-animated").removeClass(function(t,e){return(e.match(/(^|\s)fancybox-fx-\S+/g)||[]).join(" ")});var i=o.pos*c.width+o.pos*o.opts.gutter;n.fancybox.setTranslate(o.$slide,{top:0,left:i-l.left+u}),o.pos!==s.pos&&o.$slide.addClass("fancybox-slide--"+(o.pos>s.pos?"next":"previous")),p(o.$slide),n.fancybox.animate(o.$slide,{top:0,left:(o.pos-s.pos)*c.width+(o.pos-s.pos)*o.opts.gutter},e,function(){o.$slide.css({transform:"",opacity:""}).removeClass("fancybox-slide--next fancybox-slide--previous"),o.pos===f.currPos&&f.complete()})})):e&&s.opts.transitionEffect&&(d="fancybox-animated fancybox-fx-"+s.opts.transitionEffect,r.$slide.addClass("fancybox-slide--"+(r.pos>s.pos?"next":"previous")),n.fancybox.animate(r.$slide,d,e,function(){r.$slide.removeClass(d).removeClass("fancybox-slide--next fancybox-slide--previous")},!1)),s.isLoaded?f.revealContent(s):f.loadSlide(s),f.preload("image")}},createSlide:function(t){var e,o,i=this;return o=t%i.group.length,o=o<0?i.group.length+o:o,!i.slides[t]&&i.group[o]&&(e=n('
').appendTo(i.$refs.stage),i.slides[t]=n.extend(!0,{},i.group[o],{pos:t,$slide:e,isLoaded:!1}),i.updateSlide(i.slides[t])),i.slides[t]},scaleToActual:function(t,e,o){var i,a,s,r,c,l=this,d=l.current,u=d.$content,f=n.fancybox.getTranslate(d.$slide).width,p=n.fancybox.getTranslate(d.$slide).height,h=d.width,g=d.height;l.isAnimating||l.isMoved()||!u||"image"!=d.type||!d.isLoaded||d.hasError||(l.isAnimating=!0,n.fancybox.stop(u),t=void 0===t?.5*f:t,e=void 0===e?.5*p:e,i=n.fancybox.getTranslate(u),i.top-=n.fancybox.getTranslate(d.$slide).top,i.left-=n.fancybox.getTranslate(d.$slide).left,r=h/i.width,c=g/i.height,a=.5*f-.5*h,s=.5*p-.5*g,h>f&&(a=i.left*r-(t*r-t),a>0&&(a=0),ap&&(s=i.top*c-(e*c-e),s>0&&(s=0),se-.5&&(l=e),d>o-.5&&(d=o),"image"===t.type?(u.top=Math.floor(.5*(o-d))+parseFloat(c.css("paddingTop")),u.left=Math.floor(.5*(e-l))+parseFloat(c.css("paddingLeft"))):"video"===t.contentType&&(a=t.opts.width&&t.opts.height?l/d:t.opts.ratio||16/9,d>l/a?d=l/a:l>d*a&&(l=d*a)),u.width=l,u.height=d,u)},update:function(t){var e=this;n.each(e.slides,function(n,o){e.updateSlide(o,t)})},updateSlide:function(t,e){var o=this,i=t&&t.$content,a=t.width||t.opts.width,s=t.height||t.opts.height,r=t.$slide;o.adjustCaption(t),i&&(a||s||"video"===t.contentType)&&!t.hasError&&(n.fancybox.stop(i),n.fancybox.setTranslate(i,o.getFitPos(t)),t.pos===o.currPos&&(o.isAnimating=!1,o.updateCursor())),o.adjustLayout(t),r.length&&(r.trigger("refresh"),t.pos===o.currPos&&o.$refs.toolbar.add(o.$refs.navigation.find(".fancybox-button--arrow_right")).toggleClass("compensate-for-scrollbar",r.get(0).scrollHeight>r.get(0).clientHeight)),o.trigger("onUpdate",t,e)},centerSlide:function(t){var e=this,o=e.current,i=o.$slide;!e.isClosing&&o&&(i.siblings().css({transform:"",opacity:""}),i.parent().children().removeClass("fancybox-slide--previous fancybox-slide--next"),n.fancybox.animate(i,{top:0,left:0,opacity:1},void 0===t?0:t,function(){i.css({transform:"",opacity:""}),o.isComplete||e.complete()},!1))},isMoved:function(t){var e,o,i=t||this.current;return!!i&&(o=n.fancybox.getTranslate(this.$refs.stage),e=n.fancybox.getTranslate(i.$slide),!i.$slide.hasClass("fancybox-animated")&&(Math.abs(e.top-o.top)>.5||Math.abs(e.left-o.left)>.5))},updateCursor:function(t,e){var o,i,a=this,s=a.current,r=a.$refs.container;s&&!a.isClosing&&a.Guestures&&(r.removeClass("fancybox-is-zoomable fancybox-can-zoomIn fancybox-can-zoomOut fancybox-can-swipe fancybox-can-pan"),o=a.canPan(t,e),i=!!o||a.isZoomable(),r.toggleClass("fancybox-is-zoomable",i),n("[data-fancybox-zoom]").prop("disabled",!i),o?r.addClass("fancybox-can-pan"):i&&("zoom"===s.opts.clickContent||n.isFunction(s.opts.clickContent)&&"zoom"==s.opts.clickContent(s))?r.addClass("fancybox-can-zoomIn"):s.opts.touch&&(s.opts.touch.vertical||a.group.length>1)&&"video"!==s.contentType&&r.addClass("fancybox-can-swipe"))},isZoomable:function(){var t,e=this,n=e.current;if(n&&!e.isClosing&&"image"===n.type&&!n.hasError){if(!n.isLoaded)return!0;if((t=e.getFitPos(n))&&(n.width>t.width||n.height>t.height))return!0}return!1},isScaledDown:function(t,e){var o=this,i=!1,a=o.current,s=a.$content;return void 0!==t&&void 0!==e?i=t1.5||Math.abs(a.height-s.height)>1.5)),s},loadSlide:function(t){var e,o,i,a=this;if(!t.isLoading&&!t.isLoaded){if(t.isLoading=!0,!1===a.trigger("beforeLoad",t))return t.isLoading=!1,!1;switch(e=t.type,o=t.$slide,o.off("refresh").trigger("onReset").addClass(t.opts.slideClass),e){case"image":a.setImage(t);break;case"iframe":a.setIframe(t);break;case"html":a.setContent(t,t.src||t.content);break;case"video":a.setContent(t,t.opts.video.tpl.replace(/\{\{src\}\}/gi,t.src).replace("{{format}}",t.opts.videoFormat||t.opts.video.format||"").replace("{{poster}}",t.thumb||""));break;case"inline":n(t.src).length?a.setContent(t,n(t.src)):a.setError(t);break;case"ajax":a.showLoading(t),i=n.ajax(n.extend({},t.opts.ajax.settings,{url:t.src,success:function(e,n){"success"===n&&a.setContent(t,e)},error:function(e,n){e&&"abort"!==n&&a.setError(t)}})),o.one("onReset",function(){i.abort()});break;default:a.setError(t)}return!0}},setImage:function(t){var o,i=this;setTimeout(function(){var e=t.$image;i.isClosing||!t.isLoading||e&&e.length&&e[0].complete||t.hasError||i.showLoading(t)},50),i.checkSrcset(t),t.$content=n('
').addClass("fancybox-is-hidden").appendTo(t.$slide.addClass("fancybox-slide--image")),!1!==t.opts.preload&&t.opts.width&&t.opts.height&&t.thumb&&(t.width=t.opts.width,t.height=t.opts.height,o=e.createElement("img"),o.onerror=function(){n(this).remove(),t.$ghost=null},o.onload=function(){i.afterLoad(t)},t.$ghost=n(o).addClass("fancybox-image").appendTo(t.$content).attr("src",t.thumb)),i.setBigImage(t)},checkSrcset:function(e){var n,o,i,a,s=e.opts.srcset||e.opts.image.srcset;if(s){i=t.devicePixelRatio||1,a=t.innerWidth*i,o=s.split(",").map(function(t){var e={};return t.trim().split(/\s+/).forEach(function(t,n){var o=parseInt(t.substring(0,t.length-1),10);if(0===n)return e.url=t;o&&(e.value=o,e.postfix=t[t.length-1])}),e}),o.sort(function(t,e){return t.value-e.value});for(var r=0;r=a||"x"===c.postfix&&c.value>=i){n=c;break}}!n&&o.length&&(n=o[o.length-1]),n&&(e.src=n.url,e.width&&e.height&&"w"==n.postfix&&(e.height=e.width/e.height*n.value,e.width=n.value),e.opts.srcset=s)}},setBigImage:function(t){var o=this,i=e.createElement("img"),a=n(i);t.$image=a.one("error",function(){o.setError(t)}).one("load",function(){var e;t.$ghost||(o.resolveImageSlideSize(t,this.naturalWidth,this.naturalHeight),o.afterLoad(t)),o.isClosing||(t.opts.srcset&&(e=t.opts.sizes,e&&"auto"!==e||(e=(t.width/t.height>1&&s.width()/s.height()>1?"100":Math.round(t.width/t.height*100))+"vw"),a.attr("sizes",e).attr("srcset",t.opts.srcset)),t.$ghost&&setTimeout(function(){t.$ghost&&!o.isClosing&&t.$ghost.hide()},Math.min(300,Math.max(1e3,t.height/1600))),o.hideLoading(t))}).addClass("fancybox-image").attr("src",t.src).appendTo(t.$content),(i.complete||"complete"==i.readyState)&&a.naturalWidth&&a.naturalHeight?a.trigger("load"):i.error&&a.trigger("error")},resolveImageSlideSize:function(t,e,n){var o=parseInt(t.opts.width,10),i=parseInt(t.opts.height,10);t.width=e,t.height=n,o>0&&(t.width=o,t.height=Math.floor(o*n/e)),i>0&&(t.width=Math.floor(i*e/n),t.height=i)},setIframe:function(t){var e,o=this,i=t.opts.iframe,a=t.$slide;t.$content=n('
').css(i.css).appendTo(a),a.addClass("fancybox-slide--"+t.contentType),t.$iframe=e=n(i.tpl.replace(/\{rnd\}/g,(new Date).getTime())).attr(i.attr).appendTo(t.$content),i.preload?(o.showLoading(t),e.on("load.fb error.fb",function(e){this.isReady=1,t.$slide.trigger("refresh"),o.afterLoad(t)}),a.on("refresh.fb",function(){var n,o,s=t.$content,r=i.css.width,c=i.css.height;if(1===e[0].isReady){try{n=e.contents(),o=n.find("body")}catch(t){}o&&o.length&&o.children().length&&(a.css("overflow","visible"),s.css({width:"100%","max-width":"100%",height:"9999px"}),void 0===r&&(r=Math.ceil(Math.max(o[0].clientWidth,o.outerWidth(!0)))),s.css("width",r||"").css("max-width",""),void 0===c&&(c=Math.ceil(Math.max(o[0].clientHeight,o.outerHeight(!0)))),s.css("height",c||""),a.css("overflow","auto")),s.removeClass("fancybox-is-hidden")}})):o.afterLoad(t),e.attr("src",t.src),a.one("onReset",function(){try{n(this).find("iframe").hide().unbind().attr("src","//about:blank")}catch(t){}n(this).off("refresh.fb").empty(),t.isLoaded=!1,t.isRevealed=!1})},setContent:function(t,e){var o=this;o.isClosing||(o.hideLoading(t),t.$content&&n.fancybox.stop(t.$content),t.$slide.empty(),l(e)&&e.parent().length?((e.hasClass("fancybox-content")||e.parent().hasClass("fancybox-content"))&&e.parents(".fancybox-slide").trigger("onReset"),t.$placeholder=n("
").hide().insertAfter(e),e.css("display","inline-block")):t.hasError||("string"===n.type(e)&&(e=n("
").append(n.trim(e)).contents()),t.opts.filter&&(e=n("
").html(e).find(t.opts.filter))),t.$slide.one("onReset",function(){n(this).find("video,audio").trigger("pause"),t.$placeholder&&(t.$placeholder.after(e.removeClass("fancybox-content").hide()).remove(),t.$placeholder=null),t.$smallBtn&&(t.$smallBtn.remove(),t.$smallBtn=null),t.hasError||(n(this).empty(),t.isLoaded=!1,t.isRevealed=!1)}),n(e).appendTo(t.$slide),n(e).is("video,audio")&&(n(e).addClass("fancybox-video"),n(e).wrap("
"),t.contentType="video",t.opts.width=t.opts.width||n(e).attr("width"),t.opts.height=t.opts.height||n(e).attr("height")),t.$content=t.$slide.children().filter("div,form,main,video,audio,article,.fancybox-content").first(),t.$content.siblings().hide(),t.$content.length||(t.$content=t.$slide.wrapInner("
").children().first()),t.$content.addClass("fancybox-content"),t.$slide.addClass("fancybox-slide--"+t.contentType),o.afterLoad(t))},setError:function(t){t.hasError=!0,t.$slide.trigger("onReset").removeClass("fancybox-slide--"+t.contentType).addClass("fancybox-slide--error"),t.contentType="html",this.setContent(t,this.translate(t,t.opts.errorTpl)),t.pos===this.currPos&&(this.isAnimating=!1)},showLoading:function(t){var e=this;(t=t||e.current)&&!t.$spinner&&(t.$spinner=n(e.translate(e,e.opts.spinnerTpl)).appendTo(t.$slide).hide().fadeIn("fast"))},hideLoading:function(t){var e=this;(t=t||e.current)&&t.$spinner&&(t.$spinner.stop().remove(),delete t.$spinner)},afterLoad:function(t){var e=this;e.isClosing||(t.isLoading=!1,t.isLoaded=!0,e.trigger("afterLoad",t),e.hideLoading(t),!t.opts.smallBtn||t.$smallBtn&&t.$smallBtn.length||(t.$smallBtn=n(e.translate(t,t.opts.btnTpl.smallBtn)).appendTo(t.$content)),t.opts.protect&&t.$content&&!t.hasError&&(t.$content.on("contextmenu.fb",function(t){return 2==t.button&&t.preventDefault(),!0}),"image"===t.type&&n('
').appendTo(t.$content)),e.adjustCaption(t),e.adjustLayout(t),t.pos===e.currPos&&e.updateCursor(),e.revealContent(t))},adjustCaption:function(t){var e,n=this,o=t||n.current,i=o.opts.caption,a=o.opts.preventCaptionOverlap,s=n.$refs.caption,r=!1;s.toggleClass("fancybox-caption--separate",a),a&&i&&i.length&&(o.pos!==n.currPos?(e=s.clone().appendTo(s.parent()),e.children().eq(0).empty().html(i),r=e.outerHeight(!0),e.empty().remove()):n.$caption&&(r=n.$caption.outerHeight(!0)),o.$slide.css("padding-bottom",r||""))},adjustLayout:function(t){var e,n,o,i,a=this,s=t||a.current;s.isLoaded&&!0!==s.opts.disableLayoutFix&&(s.$content.css("margin-bottom",""),s.$content.outerHeight()>s.$slide.height()+.5&&(o=s.$slide[0].style["padding-bottom"],i=s.$slide.css("padding-bottom"),parseFloat(i)>0&&(e=s.$slide[0].scrollHeight,s.$slide.css("padding-bottom",0),Math.abs(e-s.$slide[0].scrollHeight)<1&&(n=i),s.$slide.css("padding-bottom",o))),s.$content.css("margin-bottom",n))},revealContent:function(t){var e,o,i,a,s=this,r=t.$slide,c=!1,l=!1,d=s.isMoved(t),u=t.isRevealed;return t.isRevealed=!0,e=t.opts[s.firstRun?"animationEffect":"transitionEffect"],i=t.opts[s.firstRun?"animationDuration":"transitionDuration"],i=parseInt(void 0===t.forcedDuration?i:t.forcedDuration,10),!d&&t.pos===s.currPos&&i||(e=!1),"zoom"===e&&(t.pos===s.currPos&&i&&"image"===t.type&&!t.hasError&&(l=s.getThumbPos(t))?c=s.getFitPos(t):e="fade"),"zoom"===e?(s.isAnimating=!0,c.scaleX=c.width/l.width,c.scaleY=c.height/l.height,a=t.opts.zoomOpacity,"auto"==a&&(a=Math.abs(t.width/t.height-l.width/l.height)>.1),a&&(l.opacity=.1,c.opacity=1),n.fancybox.setTranslate(t.$content.removeClass("fancybox-is-hidden"),l),p(t.$content),void n.fancybox.animate(t.$content,c,i,function(){s.isAnimating=!1,s.complete()})):(s.updateSlide(t),e?(n.fancybox.stop(r),o="fancybox-slide--"+(t.pos>=s.prevPos?"next":"previous")+" fancybox-animated fancybox-fx-"+e,r.addClass(o).removeClass("fancybox-slide--current"),t.$content.removeClass("fancybox-is-hidden"),p(r),"image"!==t.type&&t.$content.hide().show(0),void n.fancybox.animate(r,"fancybox-slide--current",i,function(){r.removeClass(o).css({transform:"",opacity:""}),t.pos===s.currPos&&s.complete()},!0)):(t.$content.removeClass("fancybox-is-hidden"),u||!d||"image"!==t.type||t.hasError||t.$content.hide().fadeIn("fast"),void(t.pos===s.currPos&&s.complete())))},getThumbPos:function(t){var e,o,i,a,s,r=!1,c=t.$thumb;return!(!c||!g(c[0]))&&(e=n.fancybox.getTranslate(c),o=parseFloat(c.css("border-top-width")||0),i=parseFloat(c.css("border-right-width")||0),a=parseFloat(c.css("border-bottom-width")||0),s=parseFloat(c.css("border-left-width")||0),r={top:e.top+o,left:e.left+s,width:e.width-i-s,height:e.height-o-a,scaleX:1,scaleY:1},e.width>0&&e.height>0&&r)},complete:function(){var t,e=this,o=e.current,i={};!e.isMoved()&&o.isLoaded&&(o.isComplete||(o.isComplete=!0,o.$slide.siblings().trigger("onReset"),e.preload("inline"),p(o.$slide),o.$slide.addClass("fancybox-slide--complete"),n.each(e.slides,function(t,o){o.pos>=e.currPos-1&&o.pos<=e.currPos+1?i[o.pos]=o:o&&(n.fancybox.stop(o.$slide),o.$slide.off().remove())}),e.slides=i),e.isAnimating=!1,e.updateCursor(),e.trigger("afterShow"),o.opts.video.autoStart&&o.$slide.find("video,audio").filter(":visible:first").trigger("play").one("ended",function(){Document.exitFullscreen?Document.exitFullscreen():this.webkitExitFullscreen&&this.webkitExitFullscreen(),e.next()}),o.opts.autoFocus&&"html"===o.contentType&&(t=o.$content.find("input[autofocus]:enabled:visible:first"),t.length?t.trigger("focus"):e.focus(null,!0)),o.$slide.scrollTop(0).scrollLeft(0))},preload:function(t){var e,n,o=this;o.group.length<2||(n=o.slides[o.currPos+1],e=o.slides[o.currPos-1],e&&e.type===t&&o.loadSlide(e),n&&n.type===t&&o.loadSlide(n))},focus:function(t,o){var i,a,s=this,r=["a[href]","area[href]",'input:not([disabled]):not([type="hidden"]):not([aria-hidden])',"select:not([disabled]):not([aria-hidden])","textarea:not([disabled]):not([aria-hidden])","button:not([disabled]):not([aria-hidden])","iframe","object","embed","video","audio","[contenteditable]",'[tabindex]:not([tabindex^="-"])'].join(",");s.isClosing||(i=!t&&s.current&&s.current.isComplete?s.current.$slide.find("*:visible"+(o?":not(.fancybox-close-small)":"")):s.$refs.container.find("*:visible"),i=i.filter(r).filter(function(){return"hidden"!==n(this).css("visibility")&&!n(this).hasClass("disabled")}),i.length?(a=i.index(e.activeElement),t&&t.shiftKey?(a<0||0==a)&&(t.preventDefault(),i.eq(i.length-1).trigger("focus")):(a<0||a==i.length-1)&&(t&&t.preventDefault(),i.eq(0).trigger("focus"))):s.$refs.container.trigger("focus"))},activate:function(){var t=this;n(".fancybox-container").each(function(){var e=n(this).data("FancyBox");e&&e.id!==t.id&&!e.isClosing&&(e.trigger("onDeactivate"),e.removeEvents(),e.isVisible=!1)}),t.isVisible=!0,(t.current||t.isIdle)&&(t.update(),t.updateControls()),t.trigger("onActivate"),t.addEvents()},close:function(t,e){var o,i,a,s,r,c,l,u=this,f=u.current,h=function(){u.cleanUp(t)};return!u.isClosing&&(u.isClosing=!0,!1===u.trigger("beforeClose",t)?(u.isClosing=!1,d(function(){u.update()}),!1):(u.removeEvents(),a=f.$content,o=f.opts.animationEffect,i=n.isNumeric(e)?e:o?f.opts.animationDuration:0,f.$slide.removeClass("fancybox-slide--complete fancybox-slide--next fancybox-slide--previous fancybox-animated"),!0!==t?n.fancybox.stop(f.$slide):o=!1,f.$slide.siblings().trigger("onReset").remove(),i&&u.$refs.container.removeClass("fancybox-is-open").addClass("fancybox-is-closing").css("transition-duration",i+"ms"),u.hideLoading(f),u.hideControls(!0),u.updateCursor(),"zoom"!==o||a&&i&&"image"===f.type&&!u.isMoved()&&!f.hasError&&(l=u.getThumbPos(f))||(o="fade"),"zoom"===o?(n.fancybox.stop(a),s=n.fancybox.getTranslate(a),c={top:s.top,left:s.left,scaleX:s.width/l.width,scaleY:s.height/l.height,width:l.width,height:l.height},r=f.opts.zoomOpacity, +"auto"==r&&(r=Math.abs(f.width/f.height-l.width/l.height)>.1),r&&(l.opacity=0),n.fancybox.setTranslate(a,c),p(a),n.fancybox.animate(a,l,i,h),!0):(o&&i?n.fancybox.animate(f.$slide.addClass("fancybox-slide--previous").removeClass("fancybox-slide--current"),"fancybox-animated fancybox-fx-"+o,i,h):!0===t?setTimeout(h,i):h(),!0)))},cleanUp:function(e){var o,i,a,s=this,r=s.current.opts.$orig;s.current.$slide.trigger("onReset"),s.$refs.container.empty().remove(),s.trigger("afterClose",e),s.current.opts.backFocus&&(r&&r.length&&r.is(":visible")||(r=s.$trigger),r&&r.length&&(i=t.scrollX,a=t.scrollY,r.trigger("focus"),n("html, body").scrollTop(a).scrollLeft(i))),s.current=null,o=n.fancybox.getInstance(),o?o.activate():(n("body").removeClass("fancybox-active compensate-for-scrollbar"),n("#fancybox-style-noscroll").remove())},trigger:function(t,e){var o,i=Array.prototype.slice.call(arguments,1),a=this,s=e&&e.opts?e:a.current;if(s?i.unshift(s):s=a,i.unshift(a),n.isFunction(s.opts[t])&&(o=s.opts[t].apply(s,i)),!1===o)return o;"afterClose"!==t&&a.$refs?a.$refs.container.trigger(t+".fb",i):r.trigger(t+".fb",i)},updateControls:function(){var t=this,o=t.current,i=o.index,a=t.$refs.container,s=t.$refs.caption,r=o.opts.caption;o.$slide.trigger("refresh"),r&&r.length?(t.$caption=s,s.children().eq(0).html(r)):t.$caption=null,t.hasHiddenControls||t.isIdle||t.showControls(),a.find("[data-fancybox-count]").html(t.group.length),a.find("[data-fancybox-index]").html(i+1),a.find("[data-fancybox-prev]").prop("disabled",!o.opts.loop&&i<=0),a.find("[data-fancybox-next]").prop("disabled",!o.opts.loop&&i>=t.group.length-1),"image"===o.type?a.find("[data-fancybox-zoom]").show().end().find("[data-fancybox-download]").attr("href",o.opts.image.src||o.src).show():o.opts.toolbar&&a.find("[data-fancybox-download],[data-fancybox-zoom]").hide(),n(e.activeElement).is(":hidden,[disabled]")&&t.$refs.container.trigger("focus")},hideControls:function(t){var e=this,n=["infobar","toolbar","nav"];!t&&e.current.opts.preventCaptionOverlap||n.push("caption"),this.$refs.container.removeClass(n.map(function(t){return"fancybox-show-"+t}).join(" ")),this.hasHiddenControls=!0},showControls:function(){var t=this,e=t.current?t.current.opts:t.opts,n=t.$refs.container;t.hasHiddenControls=!1,t.idleSecondsCounter=0,n.toggleClass("fancybox-show-toolbar",!(!e.toolbar||!e.buttons)).toggleClass("fancybox-show-infobar",!!(e.infobar&&t.group.length>1)).toggleClass("fancybox-show-caption",!!t.$caption).toggleClass("fancybox-show-nav",!!(e.arrows&&t.group.length>1)).toggleClass("fancybox-is-modal",!!e.modal)},toggleControls:function(){this.hasHiddenControls?this.showControls():this.hideControls()}}),n.fancybox={version:"3.5.7",defaults:a,getInstance:function(t){var e=n('.fancybox-container:not(".fancybox-is-closing"):last').data("FancyBox"),o=Array.prototype.slice.call(arguments,1);return e instanceof b&&("string"===n.type(t)?e[t].apply(e,o):"function"===n.type(t)&&t.apply(e,o),e)},open:function(t,e,n){return new b(t,e,n)},close:function(t){var e=this.getInstance();e&&(e.close(),!0===t&&this.close(t))},destroy:function(){this.close(!0),r.add("body").off("click.fb-start","**")},isMobile:/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent),use3d:function(){var n=e.createElement("div");return t.getComputedStyle&&t.getComputedStyle(n)&&t.getComputedStyle(n).getPropertyValue("transform")&&!(e.documentMode&&e.documentMode<11)}(),getTranslate:function(t){var e;return!(!t||!t.length)&&(e=t[0].getBoundingClientRect(),{top:e.top||0,left:e.left||0,width:e.width,height:e.height,opacity:parseFloat(t.css("opacity"))})},setTranslate:function(t,e){var n="",o={};if(t&&e)return void 0===e.left&&void 0===e.top||(n=(void 0===e.left?t.position().left:e.left)+"px, "+(void 0===e.top?t.position().top:e.top)+"px",n=this.use3d?"translate3d("+n+", 0px)":"translate("+n+")"),void 0!==e.scaleX&&void 0!==e.scaleY?n+=" scale("+e.scaleX+", "+e.scaleY+")":void 0!==e.scaleX&&(n+=" scaleX("+e.scaleX+")"),n.length&&(o.transform=n),void 0!==e.opacity&&(o.opacity=e.opacity),void 0!==e.width&&(o.width=e.width),void 0!==e.height&&(o.height=e.height),t.css(o)},animate:function(t,e,o,i,a){var s,r=this;n.isFunction(o)&&(i=o,o=null),r.stop(t),s=r.getTranslate(t),t.on(f,function(c){(!c||!c.originalEvent||t.is(c.originalEvent.target)&&"z-index"!=c.originalEvent.propertyName)&&(r.stop(t),n.isNumeric(o)&&t.css("transition-duration",""),n.isPlainObject(e)?void 0!==e.scaleX&&void 0!==e.scaleY&&r.setTranslate(t,{top:e.top,left:e.left,width:s.width*e.scaleX,height:s.height*e.scaleY,scaleX:1,scaleY:1}):!0!==a&&t.removeClass(e),n.isFunction(i)&&i(c))}),n.isNumeric(o)&&t.css("transition-duration",o+"ms"),n.isPlainObject(e)?(void 0!==e.scaleX&&void 0!==e.scaleY&&(delete e.width,delete e.height,t.parent().hasClass("fancybox-slide--image")&&t.parent().addClass("fancybox-is-scaling")),n.fancybox.setTranslate(t,e)):t.addClass(e),t.data("timer",setTimeout(function(){t.trigger(f)},o+33))},stop:function(t,e){t&&t.length&&(clearTimeout(t.data("timer")),e&&t.trigger(f),t.off(f).css("transition-duration",""),t.parent().removeClass("fancybox-is-scaling"))}},n.fn.fancybox=function(t){var e;return t=t||{},e=t.selector||!1,e?n("body").off("click.fb-start",e).on("click.fb-start",e,{options:t},i):this.off("click.fb-start").on("click.fb-start",{items:this,options:t},i),this},r.on("click.fb-start","[data-fancybox]",i),r.on("click.fb-start","[data-fancybox-trigger]",function(t){n('[data-fancybox="'+n(this).attr("data-fancybox-trigger")+'"]').eq(n(this).attr("data-fancybox-index")||0).trigger("click.fb-start",{$trigger:n(this)})}),function(){var t=null;r.on("mousedown mouseup focus blur",".fancybox-button",function(e){switch(e.type){case"mousedown":t=n(this);break;case"mouseup":t=null;break;case"focusin":n(".fancybox-button").removeClass("fancybox-focus"),n(this).is(t)||n(this).is("[disabled]")||n(this).addClass("fancybox-focus");break;case"focusout":n(".fancybox-button").removeClass("fancybox-focus")}})}()}}(window,document,jQuery),function(t){"use strict";var e={youtube:{matcher:/(youtube\.com|youtu\.be|youtube\-nocookie\.com)\/(watch\?(.*&)?v=|v\/|u\/|embed\/?)?(videoseries\?list=(.*)|[\w-]{11}|\?listType=(.*)&list=(.*))(.*)/i,params:{autoplay:1,autohide:1,fs:1,rel:0,hd:1,wmode:"transparent",enablejsapi:1,html5:1},paramPlace:8,type:"iframe",url:"https://www.youtube-nocookie.com/embed/$4",thumb:"https://img.youtube.com/vi/$4/hqdefault.jpg"},vimeo:{matcher:/^.+vimeo.com\/(.*\/)?([\d]+)(.*)?/,params:{autoplay:1,hd:1,show_title:1,show_byline:1,show_portrait:0,fullscreen:1},paramPlace:3,type:"iframe",url:"//player.vimeo.com/video/$2"},instagram:{matcher:/(instagr\.am|instagram\.com)\/p\/([a-zA-Z0-9_\-]+)\/?/i,type:"image",url:"//$1/p/$2/media/?size=l"},gmap_place:{matcher:/(maps\.)?google\.([a-z]{2,3}(\.[a-z]{2})?)\/(((maps\/(place\/(.*)\/)?\@(.*),(\d+.?\d+?)z))|(\?ll=))(.*)?/i,type:"iframe",url:function(t){return"//maps.google."+t[2]+"/?ll="+(t[9]?t[9]+"&z="+Math.floor(t[10])+(t[12]?t[12].replace(/^\//,"&"):""):t[12]+"").replace(/\?/,"&")+"&output="+(t[12]&&t[12].indexOf("layer=c")>0?"svembed":"embed")}},gmap_search:{matcher:/(maps\.)?google\.([a-z]{2,3}(\.[a-z]{2})?)\/(maps\/search\/)(.*)/i,type:"iframe",url:function(t){return"//maps.google."+t[2]+"/maps?q="+t[5].replace("query=","q=").replace("api=1","")+"&output=embed"}}},n=function(e,n,o){if(e)return o=o||"","object"===t.type(o)&&(o=t.param(o,!0)),t.each(n,function(t,n){e=e.replace("$"+t,n||"")}),o.length&&(e+=(e.indexOf("?")>0?"&":"?")+o),e};t(document).on("objectNeedsType.fb",function(o,i,a){var s,r,c,l,d,u,f,p=a.src||"",h=!1;s=t.extend(!0,{},e,a.opts.media),t.each(s,function(e,o){if(c=p.match(o.matcher)){if(h=o.type,f=e,u={},o.paramPlace&&c[o.paramPlace]){d=c[o.paramPlace],"?"==d[0]&&(d=d.substring(1)),d=d.split("&");for(var i=0;i1&&("youtube"===n.contentSource||"vimeo"===n.contentSource)&&o.load(n.contentSource)}})}(jQuery),function(t,e,n){"use strict";var o=function(){return t.requestAnimationFrame||t.webkitRequestAnimationFrame||t.mozRequestAnimationFrame||t.oRequestAnimationFrame||function(e){return t.setTimeout(e,1e3/60)}}(),i=function(){return t.cancelAnimationFrame||t.webkitCancelAnimationFrame||t.mozCancelAnimationFrame||t.oCancelAnimationFrame||function(e){t.clearTimeout(e)}}(),a=function(e){var n=[];e=e.originalEvent||e||t.e,e=e.touches&&e.touches.length?e.touches:e.changedTouches&&e.changedTouches.length?e.changedTouches:[e];for(var o in e)e[o].pageX?n.push({x:e[o].pageX,y:e[o].pageY}):e[o].clientX&&n.push({x:e[o].clientX,y:e[o].clientY});return n},s=function(t,e,n){return e&&t?"x"===n?t.x-e.x:"y"===n?t.y-e.y:Math.sqrt(Math.pow(t.x-e.x,2)+Math.pow(t.y-e.y,2)):0},r=function(t){if(t.is('a,area,button,[role="button"],input,label,select,summary,textarea,video,audio,iframe')||n.isFunction(t.get(0).onclick)||t.data("selectable"))return!0;for(var e=0,o=t[0].attributes,i=o.length;ee.clientHeight,a=("scroll"===o||"auto"===o)&&e.scrollWidth>e.clientWidth;return i||a},l=function(t){for(var e=!1;;){if(e=c(t.get(0)))break;if(t=t.parent(),!t.length||t.hasClass("fancybox-stage")||t.is("body"))break}return e},d=function(t){var e=this;e.instance=t,e.$bg=t.$refs.bg,e.$stage=t.$refs.stage,e.$container=t.$refs.container,e.destroy(),e.$container.on("touchstart.fb.touch mousedown.fb.touch",n.proxy(e,"ontouchstart"))};d.prototype.destroy=function(){var t=this;t.$container.off(".fb.touch"),n(e).off(".fb.touch"),t.requestId&&(i(t.requestId),t.requestId=null),t.tapped&&(clearTimeout(t.tapped),t.tapped=null)},d.prototype.ontouchstart=function(o){var i=this,c=n(o.target),d=i.instance,u=d.current,f=u.$slide,p=u.$content,h="touchstart"==o.type;if(h&&i.$container.off("mousedown.fb.touch"),(!o.originalEvent||2!=o.originalEvent.button)&&f.length&&c.length&&!r(c)&&!r(c.parent())&&(c.is("img")||!(o.originalEvent.clientX>c[0].clientWidth+c.offset().left))){if(!u||d.isAnimating||u.$slide.hasClass("fancybox-animated"))return o.stopPropagation(),void o.preventDefault();i.realPoints=i.startPoints=a(o),i.startPoints.length&&(u.touch&&o.stopPropagation(),i.startEvent=o,i.canTap=!0,i.$target=c,i.$content=p,i.opts=u.opts.touch,i.isPanning=!1,i.isSwiping=!1,i.isZooming=!1,i.isScrolling=!1,i.canPan=d.canPan(),i.startTime=(new Date).getTime(),i.distanceX=i.distanceY=i.distance=0,i.canvasWidth=Math.round(f[0].clientWidth),i.canvasHeight=Math.round(f[0].clientHeight),i.contentLastPos=null,i.contentStartPos=n.fancybox.getTranslate(i.$content)||{top:0,left:0},i.sliderStartPos=n.fancybox.getTranslate(f),i.stagePos=n.fancybox.getTranslate(d.$refs.stage),i.sliderStartPos.top-=i.stagePos.top,i.sliderStartPos.left-=i.stagePos.left,i.contentStartPos.top-=i.stagePos.top,i.contentStartPos.left-=i.stagePos.left,n(e).off(".fb.touch").on(h?"touchend.fb.touch touchcancel.fb.touch":"mouseup.fb.touch mouseleave.fb.touch",n.proxy(i,"ontouchend")).on(h?"touchmove.fb.touch":"mousemove.fb.touch",n.proxy(i,"ontouchmove")),n.fancybox.isMobile&&e.addEventListener("scroll",i.onscroll,!0),((i.opts||i.canPan)&&(c.is(i.$stage)||i.$stage.find(c).length)||(c.is(".fancybox-image")&&o.preventDefault(),n.fancybox.isMobile&&c.parents(".fancybox-caption").length))&&(i.isScrollable=l(c)||l(c.parent()),n.fancybox.isMobile&&i.isScrollable||o.preventDefault(),(1===i.startPoints.length||u.hasError)&&(i.canPan?(n.fancybox.stop(i.$content),i.isPanning=!0):i.isSwiping=!0,i.$container.addClass("fancybox-is-grabbing")),2===i.startPoints.length&&"image"===u.type&&(u.isLoaded||u.$ghost)&&(i.canTap=!1,i.isSwiping=!1,i.isPanning=!1,i.isZooming=!0,n.fancybox.stop(i.$content),i.centerPointStartX=.5*(i.startPoints[0].x+i.startPoints[1].x)-n(t).scrollLeft(),i.centerPointStartY=.5*(i.startPoints[0].y+i.startPoints[1].y)-n(t).scrollTop(),i.percentageOfImageAtPinchPointX=(i.centerPointStartX-i.contentStartPos.left)/i.contentStartPos.width,i.percentageOfImageAtPinchPointY=(i.centerPointStartY-i.contentStartPos.top)/i.contentStartPos.height,i.startDistanceBetweenFingers=s(i.startPoints[0],i.startPoints[1]))))}},d.prototype.onscroll=function(t){var n=this;n.isScrolling=!0,e.removeEventListener("scroll",n.onscroll,!0)},d.prototype.ontouchmove=function(t){var e=this;return void 0!==t.originalEvent.buttons&&0===t.originalEvent.buttons?void e.ontouchend(t):e.isScrolling?void(e.canTap=!1):(e.newPoints=a(t),void((e.opts||e.canPan)&&e.newPoints.length&&e.newPoints.length&&(e.isSwiping&&!0===e.isSwiping||t.preventDefault(),e.distanceX=s(e.newPoints[0],e.startPoints[0],"x"),e.distanceY=s(e.newPoints[0],e.startPoints[0],"y"),e.distance=s(e.newPoints[0],e.startPoints[0]),e.distance>0&&(e.isSwiping?e.onSwipe(t):e.isPanning?e.onPan():e.isZooming&&e.onZoom()))))},d.prototype.onSwipe=function(e){var a,s=this,r=s.instance,c=s.isSwiping,l=s.sliderStartPos.left||0;if(!0!==c)"x"==c&&(s.distanceX>0&&(s.instance.group.length<2||0===s.instance.current.index&&!s.instance.current.opts.loop)?l+=Math.pow(s.distanceX,.8):s.distanceX<0&&(s.instance.group.length<2||s.instance.current.index===s.instance.group.length-1&&!s.instance.current.opts.loop)?l-=Math.pow(-s.distanceX,.8):l+=s.distanceX),s.sliderLastPos={top:"x"==c?0:s.sliderStartPos.top+s.distanceY,left:l},s.requestId&&(i(s.requestId),s.requestId=null),s.requestId=o(function(){s.sliderLastPos&&(n.each(s.instance.slides,function(t,e){var o=e.pos-s.instance.currPos;n.fancybox.setTranslate(e.$slide,{top:s.sliderLastPos.top,left:s.sliderLastPos.left+o*s.canvasWidth+o*e.opts.gutter})}),s.$container.addClass("fancybox-is-sliding"))});else if(Math.abs(s.distance)>10){if(s.canTap=!1,r.group.length<2&&s.opts.vertical?s.isSwiping="y":r.isDragging||!1===s.opts.vertical||"auto"===s.opts.vertical&&n(t).width()>800?s.isSwiping="x":(a=Math.abs(180*Math.atan2(s.distanceY,s.distanceX)/Math.PI),s.isSwiping=a>45&&a<135?"y":"x"),"y"===s.isSwiping&&n.fancybox.isMobile&&s.isScrollable)return void(s.isScrolling=!0);r.isDragging=s.isSwiping,s.startPoints=s.newPoints,n.each(r.slides,function(t,e){var o,i;n.fancybox.stop(e.$slide),o=n.fancybox.getTranslate(e.$slide),i=n.fancybox.getTranslate(r.$refs.stage),e.$slide.css({transform:"",opacity:"","transition-duration":""}).removeClass("fancybox-animated").removeClass(function(t,e){return(e.match(/(^|\s)fancybox-fx-\S+/g)||[]).join(" ")}),e.pos===r.current.pos&&(s.sliderStartPos.top=o.top-i.top,s.sliderStartPos.left=o.left-i.left),n.fancybox.setTranslate(e.$slide,{top:o.top-i.top,left:o.left-i.left})}),r.SlideShow&&r.SlideShow.isActive&&r.SlideShow.stop()}},d.prototype.onPan=function(){var t=this;if(s(t.newPoints[0],t.realPoints[0])<(n.fancybox.isMobile?10:5))return void(t.startPoints=t.newPoints);t.canTap=!1,t.contentLastPos=t.limitMovement(),t.requestId&&i(t.requestId),t.requestId=o(function(){n.fancybox.setTranslate(t.$content,t.contentLastPos)})},d.prototype.limitMovement=function(){var t,e,n,o,i,a,s=this,r=s.canvasWidth,c=s.canvasHeight,l=s.distanceX,d=s.distanceY,u=s.contentStartPos,f=u.left,p=u.top,h=u.width,g=u.height;return i=h>r?f+l:f,a=p+d,t=Math.max(0,.5*r-.5*h),e=Math.max(0,.5*c-.5*g),n=Math.min(r-h,.5*r-.5*h),o=Math.min(c-g,.5*c-.5*g),l>0&&i>t&&(i=t-1+Math.pow(-t+f+l,.8)||0),l<0&&i0&&a>e&&(a=e-1+Math.pow(-e+p+d,.8)||0),d<0&&aa?(t=t>0?0:t,t=ts?(e=e>0?0:e,e=e1&&(o.dMs>130&&s>10||s>50);o.sliderLastPos=null,"y"==t&&!e&&Math.abs(o.distanceY)>50?(n.fancybox.animate(o.instance.current.$slide,{top:o.sliderStartPos.top+o.distanceY+150*o.velocityY,opacity:0},200),i=o.instance.close(!0,250)):r&&o.distanceX>0?i=o.instance.previous(300):r&&o.distanceX<0&&(i=o.instance.next(300)),!1!==i||"x"!=t&&"y"!=t||o.instance.centerSlide(200),o.$container.removeClass("fancybox-is-sliding")},d.prototype.endPanning=function(){var t,e,o,i=this;i.contentLastPos&&(!1===i.opts.momentum||i.dMs>350?(t=i.contentLastPos.left,e=i.contentLastPos.top):(t=i.contentLastPos.left+500*i.velocityX,e=i.contentLastPos.top+500*i.velocityY),o=i.limitPosition(t,e,i.contentStartPos.width,i.contentStartPos.height),o.width=i.contentStartPos.width,o.height=i.contentStartPos.height,n.fancybox.animate(i.$content,o,366))},d.prototype.endZooming=function(){var t,e,o,i,a=this,s=a.instance.current,r=a.newWidth,c=a.newHeight;a.contentLastPos&&(t=a.contentLastPos.left,e=a.contentLastPos.top,i={top:e,left:t,width:r,height:c,scaleX:1,scaleY:1},n.fancybox.setTranslate(a.$content,i),rs.width||c>s.height?a.instance.scaleToActual(a.centerPointStartX,a.centerPointStartY,150):(o=a.limitPosition(t,e,r,c),n.fancybox.animate(a.$content,o,150)))},d.prototype.onTap=function(e){var o,i=this,s=n(e.target),r=i.instance,c=r.current,l=e&&a(e)||i.startPoints,d=l[0]?l[0].x-n(t).scrollLeft()-i.stagePos.left:0,u=l[0]?l[0].y-n(t).scrollTop()-i.stagePos.top:0,f=function(t){var o=c.opts[t];if(n.isFunction(o)&&(o=o.apply(r,[c,e])),o)switch(o){case"close":r.close(i.startEvent);break;case"toggleControls":r.toggleControls();break;case"next":r.next();break;case"nextOrClose":r.group.length>1?r.next():r.close(i.startEvent);break;case"zoom":"image"==c.type&&(c.isLoaded||c.$ghost)&&(r.canPan()?r.scaleToFit():r.isScaledDown()?r.scaleToActual(d,u):r.group.length<2&&r.close(i.startEvent))}};if((!e.originalEvent||2!=e.originalEvent.button)&&(s.is("img")||!(d>s[0].clientWidth+s.offset().left))){if(s.is(".fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-container"))o="Outside";else if(s.is(".fancybox-slide"))o="Slide";else{if(!r.current.$content||!r.current.$content.find(s).addBack().filter(s).length)return;o="Content"}if(i.tapped){if(clearTimeout(i.tapped),i.tapped=null,Math.abs(d-i.tapX)>50||Math.abs(u-i.tapY)>50)return this;f("dblclick"+o)}else i.tapX=d,i.tapY=u,c.opts["dblclick"+o]&&c.opts["dblclick"+o]!==c.opts["click"+o]?i.tapped=setTimeout(function(){i.tapped=null,r.isAnimating||f("click"+o)},500):f("click"+o);return this}},n(e).on("onActivate.fb",function(t,e){e&&!e.Guestures&&(e.Guestures=new d(e))}).on("beforeClose.fb",function(t,e){e&&e.Guestures&&e.Guestures.destroy()})}(window,document,jQuery),function(t,e){"use strict";e.extend(!0,e.fancybox.defaults,{btnTpl:{slideShow:''},slideShow:{autoStart:!1,speed:3e3,progress:!0}});var n=function(t){this.instance=t,this.init()};e.extend(n.prototype,{timer:null,isActive:!1,$button:null,init:function(){var t=this,n=t.instance,o=n.group[n.currIndex].opts.slideShow;t.$button=n.$refs.toolbar.find("[data-fancybox-play]").on("click",function(){t.toggle()}),n.group.length<2||!o?t.$button.hide():o.progress&&(t.$progress=e('
').appendTo(n.$refs.inner))},set:function(t){var n=this,o=n.instance,i=o.current;i&&(!0===t||i.opts.loop||o.currIndex'},fullScreen:{autoStart:!1}}),e(t).on(n.fullscreenchange,function(){var t=o.isFullscreen(),n=e.fancybox.getInstance();n&&(n.current&&"image"===n.current.type&&n.isAnimating&&(n.isAnimating=!1,n.update(!0,!0,0),n.isComplete||n.complete()),n.trigger("onFullscreenChange",t),n.$refs.container.toggleClass("fancybox-is-fullscreen",t),n.$refs.toolbar.find("[data-fancybox-fullscreen]").toggleClass("fancybox-button--fsenter",!t).toggleClass("fancybox-button--fsexit",t))})}e(t).on({"onInit.fb":function(t,e){var i;if(!n)return void e.$refs.toolbar.find("[data-fancybox-fullscreen]").remove();e&&e.group[e.currIndex].opts.fullScreen?(i=e.$refs.container,i.on("click.fb-fullscreen","[data-fancybox-fullscreen]",function(t){t.stopPropagation(),t.preventDefault(),o.toggle()}),e.opts.fullScreen&&!0===e.opts.fullScreen.autoStart&&o.request(),e.FullScreen=o):e&&e.$refs.toolbar.find("[data-fancybox-fullscreen]").hide()},"afterKeydown.fb":function(t,e,n,o,i){e&&e.FullScreen&&70===i&&(o.preventDefault(),e.FullScreen.toggle())},"beforeClose.fb":function(t,e){e&&e.FullScreen&&e.$refs.container.hasClass("fancybox-is-fullscreen")&&o.exit()}})}(document,jQuery),function(t,e){"use strict";var n="fancybox-thumbs";e.fancybox.defaults=e.extend(!0,{btnTpl:{thumbs:''},thumbs:{autoStart:!1,hideOnClose:!0,parentEl:".fancybox-container",axis:"y"}},e.fancybox.defaults);var o=function(t){this.init(t)};e.extend(o.prototype,{$button:null,$grid:null,$list:null,isVisible:!1,isActive:!1,init:function(t){var e=this,n=t.group,o=0;e.instance=t,e.opts=n[t.currIndex].opts.thumbs,t.Thumbs=e,e.$button=t.$refs.toolbar.find("[data-fancybox-thumbs]");for(var i=0,a=n.length;i1));i++);o>1&&e.opts?(e.$button.removeAttr("style").on("click",function(){e.toggle()}),e.isActive=!0):e.$button.hide()},create:function(){var t,o=this,i=o.instance,a=o.opts.parentEl,s=[];o.$grid||(o.$grid=e('
').appendTo(i.$refs.container.find(a).addBack().filter(a)),o.$grid.on("click","a",function(){i.jumpTo(e(this).attr("data-index"))})),o.$list||(o.$list=e('
').appendTo(o.$grid)),e.each(i.group,function(e,n){t=n.thumb,t||"image"!==n.type||(t=n.src),s.push('")}),o.$list[0].innerHTML=s.join(""),"x"===o.opts.axis&&o.$list.width(parseInt(o.$grid.css("padding-right"),10)+i.group.length*o.$list.children().eq(0).outerWidth(!0))},focus:function(t){var e,n,o=this,i=o.$list,a=o.$grid;o.instance.current&&(e=i.children().removeClass("fancybox-thumbs-active").filter('[data-index="'+o.instance.current.index+'"]').addClass("fancybox-thumbs-active"),n=e.position(),"y"===o.opts.axis&&(n.top<0||n.top>i.height()-e.outerHeight())?i.stop().animate({scrollTop:i.scrollTop()+n.top},t):"x"===o.opts.axis&&(n.lefta.scrollLeft()+(a.width()-e.outerWidth()))&&i.parent().stop().animate({scrollLeft:n.left},t))},update:function(){var t=this;t.instance.$refs.container.toggleClass("fancybox-show-thumbs",this.isVisible),t.isVisible?(t.$grid||t.create(),t.instance.trigger("onThumbsShow"),t.focus(0)):t.$grid&&t.instance.trigger("onThumbsHide"),t.instance.update()},hide:function(){this.isVisible=!1,this.update()},show:function(){this.isVisible=!0,this.update()},toggle:function(){this.isVisible=!this.isVisible,this.update()}}),e(t).on({"onInit.fb":function(t,e){var n;e&&!e.Thumbs&&(n=new o(e),n.isActive&&!0===n.opts.autoStart&&n.show())},"beforeShow.fb":function(t,e,n,o){var i=e&&e.Thumbs;i&&i.isVisible&&i.focus(o?0:250)},"afterKeydown.fb":function(t,e,n,o,i){var a=e&&e.Thumbs;a&&a.isActive&&71===i&&(o.preventDefault(),a.toggle())},"beforeClose.fb":function(t,e){var n=e&&e.Thumbs;n&&n.isVisible&&!1!==n.opts.hideOnClose&&n.$grid.hide()}})}(document,jQuery),function(t,e){"use strict";function n(t){var e={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/","`":"`","=":"="};return String(t).replace(/[&<>"'`=\/]/g,function(t){return e[t]})}e.extend(!0,e.fancybox.defaults,{btnTpl:{share:''},share:{url:function(t,e){return!t.currentHash&&"inline"!==e.type&&"html"!==e.type&&(e.origSrc||e.src)||window.location}, +tpl:''}}),e(t).on("click","[data-fancybox-share]",function(){var t,o,i=e.fancybox.getInstance(),a=i.current||null;a&&("function"===e.type(a.opts.share.url)&&(t=a.opts.share.url.apply(a,[i,a])),o=a.opts.share.tpl.replace(/\{\{media\}\}/g,"image"===a.type?encodeURIComponent(a.src):"").replace(/\{\{url\}\}/g,encodeURIComponent(t)).replace(/\{\{url_raw\}\}/g,n(t)).replace(/\{\{descr\}\}/g,i.$caption?encodeURIComponent(i.$caption.text()):""),e.fancybox.open({src:i.translate(i,o),type:"html",opts:{touch:!1,animationEffect:!1,afterLoad:function(t,e){i.$refs.container.one("beforeClose.fb",function(){t.close(null,0)}),e.$content.find(".fancybox-share__button").click(function(){return window.open(this.href,"Share","width=550, height=450"),!1})},mobile:{autoFocus:!1}}}))})}(document,jQuery),function(t,e,n){"use strict";function o(){var e=t.location.hash.substr(1),n=e.split("-"),o=n.length>1&&/^\+?\d+$/.test(n[n.length-1])?parseInt(n.pop(-1),10)||1:1,i=n.join("-");return{hash:e,index:o<1?1:o,gallery:i}}function i(t){""!==t.gallery&&n("[data-fancybox='"+n.escapeSelector(t.gallery)+"']").eq(t.index-1).focus().trigger("click.fb-start")}function a(t){var e,n;return!!t&&(e=t.current?t.current.opts:t.opts,""!==(n=e.hash||(e.$orig?e.$orig.data("fancybox")||e.$orig.data("fancybox-trigger"):""))&&n)}n.escapeSelector||(n.escapeSelector=function(t){return(t+"").replace(/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g,function(t,e){return e?"\0"===t?"�":t.slice(0,-1)+"\\"+t.charCodeAt(t.length-1).toString(16)+" ":"\\"+t})}),n(function(){!1!==n.fancybox.defaults.hash&&(n(e).on({"onInit.fb":function(t,e){var n,i;!1!==e.group[e.currIndex].opts.hash&&(n=o(),(i=a(e))&&n.gallery&&i==n.gallery&&(e.currIndex=n.index-1))},"beforeShow.fb":function(n,o,i,s){var r;i&&!1!==i.opts.hash&&(r=a(o))&&(o.currentHash=r+(o.group.length>1?"-"+(i.index+1):""),t.location.hash!=="#"+o.currentHash&&(s&&!o.origHash&&(o.origHash=t.location.hash),o.hashTimer&&clearTimeout(o.hashTimer),o.hashTimer=setTimeout(function(){"replaceState"in t.history?(t.history[s?"pushState":"replaceState"]({},e.title,t.location.pathname+t.location.search+"#"+o.currentHash),s&&(o.hasCreatedHistory=!0)):t.location.hash=o.currentHash,o.hashTimer=null},300)))},"beforeClose.fb":function(n,o,i){i&&!1!==i.opts.hash&&(clearTimeout(o.hashTimer),o.currentHash&&o.hasCreatedHistory?t.history.back():o.currentHash&&("replaceState"in t.history?t.history.replaceState({},e.title,t.location.pathname+t.location.search+(o.origHash||"")):t.location.hash=o.origHash),o.currentHash=null)}}),n(t).on("hashchange.fb",function(){var t=o(),e=null;n.each(n(".fancybox-container").get().reverse(),function(t,o){var i=n(o).data("FancyBox");if(i&&i.currentHash)return e=i,!1}),e?e.currentHash===t.gallery+"-"+t.index||1===t.index&&e.currentHash==t.gallery||(e.currentHash=null,e.close()):""!==t.gallery&&i(t)}),setTimeout(function(){n.fancybox.getInstance()||i(o())},50))})}(window,document,jQuery),function(t,e){"use strict";var n=(new Date).getTime();e(t).on({"onInit.fb":function(t,e,o){e.$refs.stage.on("mousewheel DOMMouseScroll wheel MozMousePixelScroll",function(t){var o=e.current,i=(new Date).getTime();e.group.length<2||!1===o.opts.wheel||"auto"===o.opts.wheel&&"image"!==o.type||(t.preventDefault(),t.stopPropagation(),o.$slide.hasClass("fancybox-animated")||(t=t.originalEvent||t,i-n<250||(n=i,e[(-t.deltaY||-t.deltaX||t.wheelDelta||-t.detail)<0?"next":"previous"]())))})}})}(document,jQuery); \ No newline at end of file diff --git a/view/js/filebrowser.js b/view/js/filebrowser.js deleted file mode 100644 index 24b4d904f..000000000 --- a/view/js/filebrowser.js +++ /dev/null @@ -1,143 +0,0 @@ -// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later -/** - * Filebrowser - Friendica Communications Server - * - * Copyright (c) 2010-2021, the Friendica project - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This code handle user interaction for image/file upload/browser dialog. - * Is loaded from filebrowser_plain.tpl - * - * To load filebrowser in colorbox, call - * - * Dialog.doImageBrowser(eventname, id); - * - * or - * - * Dialog.doFileBrowser(eventname, id); - * - * where: - * - * eventname: event name to catch return value - * id: id returned to event handler - * - * When user select an item, an event in fired in parent page, on body element - * The event is named - * - * fbrowser..[] - * - * will be one of "image" or "file", and the event handler will - * get the following params: - * - * filemane: filename of item choosed by user - * embed: bbcode to embed element into posts - * id: id from caller code - * - * example: - * - * // open dialog for select an image for a textarea with id "myeditor" - * var id="myeditor"; - * Dialog.doImageBrowser("example", id); - * - * // setup event handler to get user selection - * $("body").on("fbrowser.image.example", function(event, filename, bbcode, id) { - * // close colorbox - * $.colorbox.close(); - * // replace textxarea text with bbcode - * $(id).value = bbcode; - * }); - **/ - -var FileBrowser = { - nickname : "", - type : "", - event: "", - id : null, - - init: function(nickname, type) { - FileBrowser.nickname = nickname; - FileBrowser.type = type; - FileBrowser.event = "fbrowser."+type; - if (location['hash']!=="") { - var h = location['hash'].replace("#",""); - FileBrowser.event = FileBrowser.event + "." + h.split("-")[0]; - FileBrowser.id = h.split("-")[1]; - } - - console.log("FileBrowser:", nickname, type,FileBrowser.event, FileBrowser.id ); - - $(".error a.close").on("click", function(e) { - e.preventDefault(); - $(".error").addClass("hidden"); - }); - - $(".folders a, .path a").on("click", function(e){ - e.preventDefault(); - location.href = baseurl + "/fbrowser/" + FileBrowser.type + "/" + encodeURIComponent(this.dataset.folder) + "?mode=minimal" + location['hash']; - }); - - $(".photo-album-photo-link").on('click', function(e){ - e.preventDefault(); - - var embed = ""; - if (FileBrowser.type == "image") { - embed = "[url="+this.dataset.link+"][img="+this.dataset.img+"]"+this.dataset.alt+"[/img][/url]"; - } - if (FileBrowser.type=="file") { - // attachment links are "baseurl/attach/id"; we need id - embed = "[attachment]"+this.dataset.link.split("/").pop()+"[/attachment]"; - } - console.log(FileBrowser.event, this.dataset.filename, embed, FileBrowser.id); - parent.$("body").trigger(FileBrowser.event, [ - this.dataset.filename, - embed, - FileBrowser.id - ]); - - }); - - if ($("#upload-image").length) - var image_uploader = new window.AjaxUpload( - 'upload-image', - { action: 'wall_upload/'+FileBrowser.nickname+'?response=json', - name: 'userfile', - responseType: 'json', - onSubmit: function(file,ext) { $('#profile-rotator').show(); $(".error").addClass('hidden'); }, - onComplete: function(file,response) { - if (response['error']!= undefined) { - $(".error span").html(response['error']); - $(".error").removeClass('hidden'); - $('#profile-rotator').hide(); - return; - } - location = baseurl + "/fbrowser/image/?mode=minimal"+location['hash']; - location.reload(true); - } - } - ); - - if ($("#upload-file").length) - var file_uploader = new window.AjaxUpload( - 'upload-file', - { action: 'wall_attach/'+FileBrowser.nickname+'?response=json', - name: 'userfile', - onSubmit: function(file,ext) { $('#profile-rotator').show(); $(".error").addClass('hidden'); }, - onComplete: function(file,response) { - if (response['error']!= undefined) { - $(".error span").html(response['error']); - $(".error").removeClass('hidden'); - $('#profile-rotator').hide(); - return; - } - location = baseurl + "/fbrowser/file/?mode=minimal"+location['hash']; - location.reload(true); - } - } - ); - } -}; -// @license-end diff --git a/view/js/friendica-tagsinput/friendica-tagsinput.js b/view/js/friendica-tagsinput/friendica-tagsinput.js index 45c00641f..0aca44d54 100644 --- a/view/js/friendica-tagsinput/friendica-tagsinput.js +++ b/view/js/friendica-tagsinput/friendica-tagsinput.js @@ -96,7 +96,7 @@ if (typeof item === "object" && !self.objectItems) throw("Can't add objects when itemValue option is not set"); - // Ignore strings only containg whitespace + // Ignore strings only containing whitespace if (item.toString().match(/^\s*$/)) return; @@ -124,7 +124,7 @@ itemTitle = self.options.itemTitle(item), itemThumb = self.options.itemThumb(item); - // Ignore items allready added + // Ignore items already added var existing = $.grep(self.itemsArray, function(item) { return self.options.itemValue(item) === itemValue; } )[0]; if (existing && !self.options.allowDuplicates) { // Invoke onTagExists @@ -522,7 +522,7 @@ }, /** - * Removes all tagsinput behaviour and unregsiter all event handlers + * Removes all tagsinput behaviour and unregister all event handlers */ destroy: function() { var self = this; diff --git a/view/js/linkPreview.js b/view/js/linkPreview.js index 293020bc8..28c8df9b6 100644 --- a/view/js/linkPreview.js +++ b/view/js/linkPreview.js @@ -31,7 +31,7 @@
\
\
\ - \
\ @@ -125,7 +125,7 @@ isExtern = true; } - // Don't procces the textarea input if we have already + // Don't process the textarea input if we have already // an attachment preview. if (!isExtern && isActive) { return; @@ -233,7 +233,7 @@ }; /** - * Proccess all attachment data and show up a html + * Process all attachment data and show up a html * attachment preview. * * @param {obj} data Attachment data. @@ -242,7 +242,7 @@ var insertAttachment = function(data) { // If we have already a preview, leaver here. // Note: if we finish the Preview of other media content type, - // we can move this condition to the beggining of crawlText(); + // we can move this condition to the beginning of crawlText(); if (isActive) { $('#profile-rotator').hide(); return; @@ -273,7 +273,7 @@ * @returns {void} */ var processAttachmentTpl = function(data) { - // Load and add the template if it isn't allready loaded. + // Load and add the template if it isn't already loaded. if ($('#preview_' + id).length === 0) { var tpl = previewTpl.format( 'type-' + data.type, @@ -368,7 +368,7 @@ // More than just one image. if (images.length > 1) { - // Enable the the button to change the preview pictures. + // Enable the button to change the preview pictures. $('#previewChangeImg_' + id).show(); if (firstPosted === false) { @@ -500,7 +500,7 @@ }; /** - * Convert attachmant bbcode into an array. + * Convert attachment bbcode into an array. * * @param {string} content Text content with the attachment bbcode. * @returns {object || null} @@ -548,12 +548,12 @@ matches = attributes.match(/url='([\s\S]*?)'/im); if (matches !== null && typeof matches[1] !== 'undefined') { - url = matches[1].toLowerCase(); + url = matches[1]; } matches = attributes.match(/url="([\s\S]*?)"/im); if (matches !== null && typeof matches[1] !== 'undefined') { - url = matches[1].toLowerCase(); + url = matches[1]; } if(url !== '') { @@ -564,12 +564,12 @@ matches = attributes.match(/title='([\s\S]*?)'/im); if (matches !== null && typeof matches[1] !== 'undefined') { - title = matches[1].toLowerCase(); + title = trim(matches[1]); } matches = attributes.match(/title="([\s\S]*?)"/im); if (matches !== null && typeof matches[1] !== 'undefined') { - title = matches[1].toLowerCase(); + title = trim(matches[1]); } if (title !== '') { @@ -580,12 +580,12 @@ matches = attributes.match(/image='([\s\S]*?)'/im); if (matches !== null && typeof matches[1] !== 'undefined') { - image = matches[1].toLowerCase(); + image = trim(matches[1]); } matches = attributes.match(/image="([\s\S]*?)"/im); if (matches !== null && typeof matches[1] !== 'undefined') { - image = matches[1].toLowerCase(); + image = trim(matches[1]); } if (image !== '') { @@ -596,12 +596,12 @@ matches = attributes.match(/preview='([\s\S]*?)'/im); if (matches !== null && typeof matches[1] !== 'undefined') { - preview = matches[1].toLowerCase(); + preview = trim(matches[1]); } matches = attributes.match(/preview="([\s\S]*?)"/im); if (matches !== null && typeof matches[1] !== 'undefined') { - preview = matches[1].toLowerCase(); + preview = trim(matches[1]); } if (preview !== '') { @@ -679,7 +679,7 @@ $('#previewImage_' + id).html(appendImage); $('#attachmentImageSrc_' + id).val(bin2hex(image)); - // We need to add the image widht and height when it is + // We need to add the image width and height when it is // loaded. $('' ,{ load : function(){ @@ -805,7 +805,7 @@ /** * Get in a textarea the previous word before the cursor. * - * @param {object} text Textarea elemet. + * @param {object} text Textarea element. * @param {integer} caretPos Cursor position. * * @returns {string} Previous word. @@ -813,7 +813,7 @@ function returnWord(text, caretPos) { var index = text.indexOf(caretPos); var preText = text.substring(0, caretPos); - // If the last charachter is a space or enter remove it + // If the last character is a space or enter remove it // We need this in friendica for the url preview. var lastChar = preText.slice(-1) if ( lastChar === " " @@ -853,9 +853,9 @@ } /** - * Get the cursor posiotion in an text element. + * Get the cursor position in an text element. * - * @param {object} ctrl Textarea elemet. + * @param {object} ctrl Textarea element. * @returns {integer} Position of the cursor. */ function getCaretPosition(ctrl) { diff --git a/view/js/main.js b/view/js/main.js index 93340dc37..c55f85d91 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -166,7 +166,7 @@ $(function() { /* event from comment textarea button popups */ /* insert returned bbcode at cursor position or replace selected text */ - $("body").on("fbrowser.image.comment", function(e, filename, bbcode, id) { + $('body').on('fbrowser.photo.comment', function(e, filename, bbcode, id) { $.colorbox.close(); var textarea = document.getElementById("comment-edit-text-" +id); var start = textarea.selectionStart; @@ -289,18 +289,18 @@ $(function() { $('#mail-update-li').html(mail); - $(".sidebar-group-li .notify").removeClass("show"); - $(data.groups).each(function(key, group) { - var gid = group.id; - var gcount = group.count; - $(".group-"+gid+" .notify").addClass("show").text(gcount); + $(".sidebar-circle-li .notify").removeClass("show"); + $(data.circles).each(function(key, circle) { + var gid = circle.id; + var gcount = circle.count; + $(".circle-"+gid+" .notify").addClass("show").text(gcount); }); - $(".forum-widget-entry .notify").removeClass("show"); - $(data.forums).each(function(key, forum) { - var fid = forum.id; - var fcount = forum.count; - $(".forum-"+fid+" .notify").addClass("show").text(fcount); + $(".group-widget-entry .notify").removeClass("show"); + $(data.groups).each(function(key, group) { + var fid = group.id; + var fcount = group.count; + $(".group-"+fid+" .notify").addClass("show").text(fcount); }); if (data.notifications.length == 0) { @@ -378,16 +378,10 @@ $(function() { // Allow folks to stop the ajax page updates with the pause/break key $(document).keydown(function(event) { - if (event.keyCode == '8') { - var target = event.target || event.srcElement; - if (!/input|textarea/i.test(target.nodeName)) { - return false; - } - } - - if (event.keyCode == '19' || (event.ctrlKey && event.which == '32')) { + // Pause/Break or Ctrl + Space + if (event.which === 19 || (!event.shiftKey && !event.altKey && event.ctrlKey && event.which === 32)) { event.preventDefault(); - if (stopped == false) { + if (stopped === false) { stopped = true; if (event.ctrlKey) { totStopped = true; @@ -506,7 +500,7 @@ function NavUpdate() { $('nav').trigger('nav-update', data.result); // start live update - ['network', 'profile', 'community', 'notes', 'display', 'contact'].forEach(function (src) { + ['network', 'profile', 'channel', 'community', 'notes', 'display', 'contact'].forEach(function (src) { if ($('#live-' + src).length) { liveUpdate(src); } @@ -608,6 +602,26 @@ function liveUpdate(src) { update_url += '&max_id=' + getUrlParameter('max_id'); } + match = $("span.received").first(); + if (match.length > 0) { + update_url += '&first_received=' + match[0].innerHTML; + } + + match = $("span.created").first(); + if (match.length > 0) { + update_url += '&first_created=' + match[0].innerHTML; + } + + match = $("span.commented").first(); + if (match.length > 0) { + update_url += '&first_commented=' + match[0].innerHTML; + } + + match = $("span.uriid").first(); + if (match.length > 0) { + update_url += '&first_uriid=' + match[0].innerHTML; + } + $.get(update_url, function(data) { in_progress = false; update_item = 0; @@ -946,21 +960,21 @@ function bin2hex(s) { return a.join(''); } -function groupChangeMember(gid, cid, sec_token) { +function circleChangeMember(gid, cid, sec_token) { $('body .fakelink').css('cursor', 'wait'); - $.get('group/' + gid + '/' + cid + "?t=" + sec_token, function(data) { - $('#group-update-wrapper').html(data); + $.get('circle/' + gid + '/' + cid + "?t=" + sec_token, function(data) { + $('#circle-update-wrapper').html(data); $('body .fakelink').css('cursor', 'auto'); }); } -function contactgroupChangeMember(checkbox, gid, cid) { +function contactCircleChangeMember(checkbox, gid, cid) { let url; // checkbox.checked is the checkbox state after the click if (checkbox.checked) { - url = 'group/' + gid + '/add/' + cid; + url = 'circle/' + gid + '/add/' + cid; } else { - url = 'group/' + gid + '/remove/' + cid; + url = 'circle/' + gid + '/remove/' + cid; } $('body').css('cursor', 'wait'); $.post(url) @@ -1069,7 +1083,7 @@ var Dialog = { * to the event handler */ doImageBrowser : function (name, id) { - var url = Dialog._get_url("image",name,id); + var url = Dialog._get_url('photo', name, id); return Dialog.show(url); }, @@ -1086,7 +1100,7 @@ var Dialog = { * to the event handler */ doFileBrowser : function (name, id) { - var url = Dialog._get_url("file",name,id); + var url = Dialog._get_url('attachment', name, id); return Dialog.show(url); }, @@ -1095,7 +1109,7 @@ var Dialog = { if (id !== undefined) { hash = hash + "-" + id; } - return baseurl + "/fbrowser/"+type+"/?mode=minimal#"+hash; + return 'media/' + type + '/browser?mode=minimal#' + hash; }, _get_size: function() { diff --git a/view/js/module/media/browser.js b/view/js/module/media/browser.js new file mode 100644 index 000000000..c78a7f13b --- /dev/null +++ b/view/js/module/media/browser.js @@ -0,0 +1,156 @@ +// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later +/** + * Filebrowser - Friendica Communications Server + * + * Copyright (c) 2010-2021, the Friendica project + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This code handle user interaction for image/file upload/browser dialog. + * Is loaded from filebrowser_plain.tpl + * + * To load filebrowser in colorbox, call + * + * Dialog.doImageBrowser(eventname, id); + * + * or + * + * Dialog.doFileBrowser(eventname, id); + * + * where: + * + * eventname: event name to catch return value + * id: id returned to event handler + * + * When user select an item, an event in fired in parent page, on body element + * The event is named + * + * fbrowser..[] + * + * will be one of "image" or "file", and the event handler will + * get the following params: + * + * filename: filename of item chosen by user + * embed: bbcode to embed element into posts + * id: id from caller code + * + * example: + * + * // open dialog for select an image for a textarea with id "myeditor" + * var id="myeditor"; + * Dialog.doImageBrowser("example", id); + * + * // setup event handler to get user selection + * $("body").on("fbrowser.image.example", function(event, filename, bbcode, id) { + * // close colorbox + * $.colorbox.close(); + * // replace textarea text with bbcode + * $(id).value = bbcode; + * }); + **/ +const Browser = { + nickname: '', + type: '', + event: '', + id: null, + + init: function (nickname, type) { + Browser.nickname = nickname; + Browser.type = type; + Browser.event = 'fbrowser.' + type; + if (location['hash'] !== '') { + const h = location['hash'].replace('#', ''); + Browser.event = Browser.event + '.' + h.split('-')[0]; + Browser.id = h.split('-')[1]; + } + + $('.error a.close').on('click', function (e) { + e.preventDefault(); + $('.error').addClass('hidden'); + }); + + $('.folders a, .path a').on('click', function (e) { + e.preventDefault(); + location.href = Browser._getUrl("minimal", location['hash'], this.dataset.folder); + location.reload(); + }); + + $(".photo-album-photo-link").on('click', function (e) { + e.preventDefault(); + + let embed = ''; + if (Browser.type === "photo") { + embed = '[url=' + this.dataset.link + '][img=' + this.dataset.img + ']' + this.dataset.alt + '[/img][/url]'; + } + if (Browser.type === "attachment") { + embed = '[attachment]' + this.dataset.link + '[/attachment]'; + } + parent.$('body').trigger(Browser.event, [ + this.dataset.filename, + embed, + Browser.id + ]); + + }); + + if ($('#upload-photo').length) { + new window.AjaxUpload( + 'upload-photo', + { + action: 'media/photo/upload?response=json', + name: 'userfile', + responseType: 'json', + onSubmit: function (file, ext) { + $('#profile-rotator').show(); + $('.error').addClass('hidden'); + }, + onComplete: function (file, response) { + if (response['error'] !== undefined) { + $('.error span').html(response['error']); + $('.error').removeClass('hidden'); + $('#profile-rotator').hide(); + return; + } + location.href = Browser._getUrl("minimal", location['hash']); + location.reload(); + } + } + ); + } + + if ($('#upload-attachment').length) { + new window.AjaxUpload( + 'upload-attachment', + { + action: 'media/attachment/upload?response=json', + name: 'userfile', + responseType: 'json', + onSubmit: function (file, ext) { + $('#profile-rotator').show(); + $('.error').addClass('hidden'); + }, + onComplete: function (file, response) { + if (response['error'] !== undefined) { + $('.error span').html(response['error']); + $('.error').removeClass('hidden'); + $('#profile-rotator').hide(); + return; + } + location.href = Browser._getUrl("minimal", location['hash']); + location.reload(); + } + } + ); + } + }, + + _getUrl: function (mode, hash, folder) { + let folderValue = folder !== undefined ? folder : Browser.folder; + let folderUrl = folderValue !== undefined ? '/' + encodeURIComponent(folderValue) : ''; + return 'media/' + Browser.type + '/browser' + folderUrl + '?mode=' + mode + hash; + } +}; +// @license-end diff --git a/view/js/vanillaEmojiPicker/LICENSE b/view/js/vanillaEmojiPicker/LICENSE new file mode 100644 index 000000000..e04d5d9d5 --- /dev/null +++ b/view/js/vanillaEmojiPicker/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 woody180 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/view/js/vanillaEmojiPicker/README.md b/view/js/vanillaEmojiPicker/README.md new file mode 100644 index 000000000..38ec2dcc7 --- /dev/null +++ b/view/js/vanillaEmojiPicker/README.md @@ -0,0 +1,39 @@ +# FG Emoji Picker - Emoji picker created with vanilla javascript +This is the simplest to use emoji picker built with vanilla javascript. + +![](./screenshot.png "Vanilla Javascript Emoji Picker") + +## Benefits: + +- It is only one .js file without css or other files +- There is no jQuery or other libraries +- Simplicity of usage +- Multiple textareas and triggers +- Draggable emoji picker container + +## Initialize + +Initialze plugin with ```new EmojiPicker({});``` + +## Options + +- Trigger - must be an array of objects. Inside object there are two properties. First is selector, and second - **insertInto** method to define where emoji going to be inserted. If there are multiple 'textarea's - you can provide array of selectors as well. Watch example below. +- Close button - **closeButton** method can be true of false depending on whether you want close button on emoji picker or not. +- specialButtons - takes color code to change special (move and close) button colors. + +``` +new EmojiPicker({ + trigger: [ + { + selector: '.first-btn', + insertInto: ['.one', '.two'] // If there is only one '.selector', than it can be used without array + }, + { + selector: '.second-btn', + insertInto: '.two' + } + ], + closeButton: true, + specialButtons: 'green' // #008000, rgba(0, 128, 0); +}); +``` diff --git a/view/js/vanillaEmojiPicker/index.html b/view/js/vanillaEmojiPicker/index.html new file mode 100644 index 000000000..dc6ebc1eb --- /dev/null +++ b/view/js/vanillaEmojiPicker/index.html @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + Document + + + + +
+
+ + +
+ +
+ + +
+ +
+ + + + + + + \ No newline at end of file diff --git a/view/js/vanillaEmojiPicker/indextest.html b/view/js/vanillaEmojiPicker/indextest.html new file mode 100644 index 000000000..60b053572 --- /dev/null +++ b/view/js/vanillaEmojiPicker/indextest.html @@ -0,0 +1,47 @@ + + + + + + + + + Document + + + + +
+ +
+
+
+ +
+ +
+ + + + + + + \ No newline at end of file diff --git a/view/js/vanillaEmojiPicker/screenshot.png b/view/js/vanillaEmojiPicker/screenshot.png new file mode 100644 index 000000000..5462501b0 Binary files /dev/null and b/view/js/vanillaEmojiPicker/screenshot.png differ diff --git a/view/js/vanillaEmojiPicker/vanillaEmojiPicker.js b/view/js/vanillaEmojiPicker/vanillaEmojiPicker.js new file mode 100644 index 000000000..f4055c378 --- /dev/null +++ b/view/js/vanillaEmojiPicker/vanillaEmojiPicker.js @@ -0,0 +1,7948 @@ +const EmojiPicker = function(options) { + + this.options = options; + this.trigger = this.options.trigger.map(item => item.selector); + this.insertInto = undefined; + let emojiesHTML = ''; + let categoriesHTML = ''; + let emojiList = undefined; + let moseMove = false; + const pickerWidth = this.options.closeButton ? 370 : 350; + const pickerHeight = 400; + + this.lib = function(el = undefined) { + + const isNodeList = (nodes) => { + var stringRepr = Object.prototype.toString.call(nodes); + + return typeof nodes === 'object' && + /^\[object (HTMLCollection|NodeList|Object)\]$/.test(stringRepr) && + (typeof nodes.length === 'number') && + (nodes.length === 0 || (typeof nodes[0] === "object" && nodes[0].nodeType > 0)); + } + + return { + + el: () => { + // Check if is node + if (!el) { + return undefined; + } else if (el.nodeName) { + return [el]; + } else if (isNodeList(el)) { + return Array.from(el) + } else if (typeof(el) === 'string' || typeof(el) === 'STRING') { + return Array.from(document.querySelectorAll(el)); + } else { + return undefined; + } + }, + + on(event, callback, classList = undefined) { + if (!classList) { + this.el().forEach(item => { + item.addEventListener(event, callback.bind(item)) + }) + } else { + this.el().forEach(item => { + item.addEventListener(event, (e) => { + if (e.target.closest(classList)) { + + let attr = undefined; + + if (Array.isArray(classList)) { + const stringifiedElem = e.target.outerHTML; + + const index = classList.findIndex(attr => stringifiedElem.includes(attr.slice(1))); + + attr = classList[index]; + } + + callback(e, attr) + } + }) + }) + } + }, + + css(params) { + for (const key in params) { + if (Object.hasOwnProperty.call(params, key)) { + const cssVal = params[key]; + this.el().forEach(el => el.style[key] = cssVal) + } + } + }, + + attr(param1, param2 = undefined) { + + if (!param2) { + return this.el()[0].getAttribute(param1) + } + this.el().forEach(el => el.setAttribute(param1, param2)) + }, + + removeAttr(param) { + this.el().forEach(el => el.removeAttribute(param)) + }, + + addClass(param) { + this.el().forEach(el => el.classList.add(param)) + }, + + removeClass(param) { + this.el().forEach(el => el.classList.remove(param)) + }, + + slug(str) { + return str + .toLowerCase() + .replace(/[^\u00BF-\u1FFF\u2C00-\uD7FF\w]+|[\_]+/ig, '-') + .replace(/ +/g,'-') + ; + }, + + remove(param) { + this.el().forEach(el => el.remove()) + }, + + val(param = undefined) { + let val; + + if (param === undefined) { + this.el().forEach(el => { + val = el.value; + }) + } else { + this.el().forEach(el => { + el.value = param; + }) + } + + return val; + }, + + text(msg = undefined) { + if (msg === undefined) { + return el.innerText; + } else { + this.el().forEach(el => { + el.innerText = msg; + }) + } + }, + + html(data = undefined) { + if (data === undefined) { + return el.innerHTML; + } else { + this.el().forEach(el => { + el.innerHTML = data; + }) + } + } + } + }; + + const emojiObj = { + 'People': [ + { + "emoji": "😀", + "title": "Grinning Face" + }, + { + "emoji": "😃", + "title": "Grinning Face with Big Eyes" + }, + { + "emoji": "😄", + "title": "Grinning Face with Smiling Eyes" + }, + { + "emoji": "😁", + "title": "Beaming Face with Smiling Eyes" + }, + { + "emoji": "😆", + "title": "Grinning Squinting Face" + }, + { + "emoji": "😅", + "title": "Grinning Face with Sweat" + }, + { + "emoji": "🤣", + "title": "Rolling on the Floor Laughing" + }, + { + "emoji": "😂", + "title": "Face with Tears of Joy" + }, + { + "emoji": "🙂", + "title": "Slightly Smiling Face" + }, + { + "emoji": "🙃", + "title": "Upside-Down Face" + }, + { + "emoji": "😉", + "title": "Winking Face" + }, + { + "emoji": "😊", + "title": "Smiling Face with Smiling Eyes" + }, + { + "emoji": "😇", + "title": "Smiling Face with Halo" + }, + { + "emoji": "🥰", + "title": "Smiling Face with Hearts" + }, + { + "emoji": "😍", + "title": "Smiling Face with Heart-Eyes" + }, + { + "emoji": "🤩", + "title": "Star-Struck" + }, + { + "emoji": "😘", + "title": "Face Blowing a Kiss" + }, + { + "emoji": "😗", + "title": "Kissing Face" + }, + { + "emoji": "☺️", + "title": "Smiling Face" + }, + { + "emoji": "😚", + "title": "Kissing Face with Closed Eyes" + }, + { + "emoji": "😙", + "title": "Kissing Face with Smiling Eyes" + }, + { + "emoji": "🥲", + "title": "Smiling Face with Tear" + }, + { + "emoji": "😋", + "title": "Face Savoring Food" + }, + { + "emoji": "😛", + "title": "Face with Tongue" + }, + { + "emoji": "😜", + "title": "Winking Face with Tongue" + }, + { + "emoji": "🤪", + "title": "Zany Face" + }, + { + "emoji": "😝", + "title": "Squinting Face with Tongue" + }, + { + "emoji": "🤑", + "title": "Money-Mouth Face" + }, + { + "emoji": "🤗", + "title": "Smiling Face with Open Hands" + }, + { + "emoji": "🤭", + "title": "Face with Hand Over Mouth" + }, + { + "emoji": "🤫", + "title": "Shushing Face" + }, + { + "emoji": "🤔", + "title": "Thinking Face" + }, + { + "emoji": "🤐", + "title": "Zipper-Mouth Face" + }, + { + "emoji": "🤨", + "title": "Face with Raised Eyebrow" + }, + { + "emoji": "😐", + "title": "Neutral Face" + }, + { + "emoji": "😑", + "title": "Expressionless Face" + }, + { + "emoji": "😶", + "title": "Face Without Mouth" + }, + { + "emoji": "😶‍🌫️", + "title": "Face in Clouds" + }, + { + "emoji": "😏", + "title": "Smirking Face" + }, + { + "emoji": "😒", + "title": "Unamused Face" + }, + { + "emoji": "🙄", + "title": "Face with Rolling Eyes" + }, + { + "emoji": "😬", + "title": "Grimacing Face" + }, + { + "emoji": "😮‍💨", + "title": "Face Exhaling" + }, + { + "emoji": "🤥", + "title": "Lying Face" + }, + { + "emoji": "😌", + "title": "Relieved Face" + }, + { + "emoji": "😔", + "title": "Pensive Face" + }, + { + "emoji": "😪", + "title": "Sleepy Face" + }, + { + "emoji": "🤤", + "title": "Drooling Face" + }, + { + "emoji": "😴", + "title": "Sleeping Face" + }, + { + "emoji": "😷", + "title": "Face with Medical Mask" + }, + { + "emoji": "🤒", + "title": "Face with Thermometer" + }, + { + "emoji": "🤕", + "title": "Face with Head-Bandage" + }, + { + "emoji": "🤢", + "title": "Nauseated Face" + }, + { + "emoji": "🤮", + "title": "Face Vomiting" + }, + { + "emoji": "🤧", + "title": "Sneezing Face" + }, + { + "emoji": "🥵", + "title": "Hot Face" + }, + { + "emoji": "🥶", + "title": "Cold Face" + }, + { + "emoji": "🥴", + "title": "Woozy Face" + }, + { + "emoji": "😵", + "title": "Face with Crossed-Out Eyes" + }, + { + "emoji": "😵‍💫", + "title": "Face with Spiral Eyes" + }, + { + "emoji": "🤯", + "title": "Exploding Head" + }, + { + "emoji": "🤠", + "title": "Cowboy Hat Face" + }, + { + "emoji": "🥳", + "title": "Partying Face" + }, + { + "emoji": "🥸", + "title": "Disguised Face" + }, + { + "emoji": "😎", + "title": "Smiling Face with Sunglasses" + }, + { + "emoji": "🤓", + "title": "Nerd Face" + }, + { + "emoji": "🧐", + "title": "Face with Monocle" + }, + { + "emoji": "😕", + "title": "Confused Face" + }, + { + "emoji": "😟", + "title": "Worried Face" + }, + { + "emoji": "🙁", + "title": "Slightly Frowning Face" + }, + { + "emoji": "☹️", + "title": "Frowning Face" + }, + { + "emoji": "😮", + "title": "Face with Open Mouth" + }, + { + "emoji": "😯", + "title": "Hushed Face" + }, + { + "emoji": "😲", + "title": "Astonished Face" + }, + { + "emoji": "😳", + "title": "Flushed Face" + }, + { + "emoji": "🥺", + "title": "Pleading Face" + }, + { + "emoji": "😦", + "title": "Frowning Face with Open Mouth" + }, + { + "emoji": "😧", + "title": "Anguished Face" + }, + { + "emoji": "😨", + "title": "Fearful Face" + }, + { + "emoji": "😰", + "title": "Anxious Face with Sweat" + }, + { + "emoji": "😥", + "title": "Sad but Relieved Face" + }, + { + "emoji": "😢", + "title": "Crying Face" + }, + { + "emoji": "😭", + "title": "Loudly Crying Face" + }, + { + "emoji": "😱", + "title": "Face Screaming in Fear" + }, + { + "emoji": "😖", + "title": "Confounded Face" + }, + { + "emoji": "😣", + "title": "Persevering Face" + }, + { + "emoji": "😞", + "title": "Disappointed Face" + }, + { + "emoji": "😓", + "title": "Downcast Face with Sweat" + }, + { + "emoji": "😩", + "title": "Weary Face" + }, + { + "emoji": "😫", + "title": "Tired Face" + }, + { + "emoji": "🥱", + "title": "Yawning Face" + }, + { + "emoji": "😤", + "title": "Face with Steam From Nose" + }, + { + "emoji": "😡", + "title": "Enraged Face" + }, + { + "emoji": "😠", + "title": "Angry Face" + }, + { + "emoji": "🤬", + "title": "Face with Symbols on Mouth" + }, + { + "emoji": "😈", + "title": "Smiling Face with Horns" + }, + { + "emoji": "👿", + "title": "Angry Face with Horns" + }, + { + "emoji": "💀", + "title": "Skull" + }, + { + "emoji": "☠️", + "title": "Skull and Crossbones" + }, + { + "emoji": "💩", + "title": "Pile of Poo" + }, + { + "emoji": "🤡", + "title": "Clown Face" + }, + { + "emoji": "👹", + "title": "Ogre" + }, + { + "emoji": "👺", + "title": "Goblin" + }, + { + "emoji": "👻", + "title": "Ghost" + }, + { + "emoji": "👽", + "title": "Alien" + }, + { + "emoji": "👾", + "title": "Alien Monster" + }, + { + "emoji": "🤖", + "title": "Robot" + }, + { + "emoji": "😺", + "title": "Grinning Cat" + }, + { + "emoji": "😸", + "title": "Grinning Cat with Smiling Eyes" + }, + { + "emoji": "😹", + "title": "Cat with Tears of Joy" + }, + { + "emoji": "😻", + "title": "Smiling Cat with Heart-Eyes" + }, + { + "emoji": "😼", + "title": "Cat with Wry Smile" + }, + { + "emoji": "😽", + "title": "Kissing Cat" + }, + { + "emoji": "🙀", + "title": "Weary Cat" + }, + { + "emoji": "😿", + "title": "Crying Cat" + }, + { + "emoji": "😾", + "title": "Pouting Cat" + }, + { + "emoji": "💋", + "title": "Kiss Mark" + }, + { + "emoji": "👋", + "title": "Waving Hand" + }, + { + "emoji": "🤚", + "title": "Raised Back of Hand" + }, + { + "emoji": "🖐️", + "title": "Hand with Fingers Splayed" + }, + { + "emoji": "✋", + "title": "Raised Hand" + }, + { + "emoji": "🖖", + "title": "Vulcan Salute" + }, + { + "emoji": "👌", + "title": "OK Hand" + }, + { + "emoji": "🤌", + "title": "Pinched Fingers" + }, + { + "emoji": "🤏", + "title": "Pinching Hand" + }, + { + "emoji": "✌️", + "title": "Victory Hand" + }, + { + "emoji": "🤞", + "title": "Crossed Fingers" + }, + { + "emoji": "🤟", + "title": "Love-You Gesture" + }, + { + "emoji": "🤘", + "title": "Sign of the Horns" + }, + { + "emoji": "🤙", + "title": "Call Me Hand" + }, + { + "emoji": "👈", + "title": "Backhand Index Pointing Left" + }, + { + "emoji": "👉", + "title": "Backhand Index Pointing Right" + }, + { + "emoji": "👆", + "title": "Backhand Index Pointing Up" + }, + { + "emoji": "🖕", + "title": "Middle Finger" + }, + { + "emoji": "👇", + "title": "Backhand Index Pointing Down" + }, + { + "emoji": "☝️", + "title": "Index Pointing Up" + }, + { + "emoji": "👍", + "title": "Thumbs Up" + }, + { + "emoji": "👎", + "title": "Thumbs Down" + }, + { + "emoji": "✊", + "title": "Raised Fist" + }, + { + "emoji": "👊", + "title": "Oncoming Fist" + }, + { + "emoji": "🤛", + "title": "Left-Facing Fist" + }, + { + "emoji": "🤜", + "title": "Right-Facing Fist" + }, + { + "emoji": "👏", + "title": "Clapping Hands" + }, + { + "emoji": "🙌", + "title": "Raising Hands" + }, + { + "emoji": "👐", + "title": "Open Hands" + }, + { + "emoji": "🤲", + "title": "Palms Up Together" + }, + { + "emoji": "🤝", + "title": "Handshake" + }, + { + "emoji": "🙏", + "title": "Folded Hands" + }, + { + "emoji": "✍️", + "title": "Writing Hand" + }, + { + "emoji": "💅", + "title": "Nail Polish" + }, + { + "emoji": "🤳", + "title": "Selfie" + }, + { + "emoji": "💪", + "title": "Flexed Biceps" + }, + { + "emoji": "🦾", + "title": "Mechanical Arm" + }, + { + "emoji": "🦿", + "title": "Mechanical Leg" + }, + { + "emoji": "🦵", + "title": "Leg" + }, + { + "emoji": "🦶", + "title": "Foot" + }, + { + "emoji": "👂", + "title": "Ear" + }, + { + "emoji": "🦻", + "title": "Ear with Hearing Aid" + }, + { + "emoji": "👃", + "title": "Nose" + }, + { + "emoji": "🧠", + "title": "Brain" + }, + { + "emoji": "🫀", + "title": "Anatomical Heart" + }, + { + "emoji": "🫁", + "title": "Lungs" + }, + { + "emoji": "🦷", + "title": "Tooth" + }, + { + "emoji": "🦴", + "title": "Bone" + }, + { + "emoji": "👀", + "title": "Eyes" + }, + { + "emoji": "👁️", + "title": "Eye" + }, + { + "emoji": "👅", + "title": "Tongue" + }, + { + "emoji": "👄", + "title": "Mouth" + }, + { + "emoji": "👶", + "title": "Baby" + }, + { + "emoji": "🧒", + "title": "Child" + }, + { + "emoji": "👦", + "title": "Boy" + }, + { + "emoji": "👧", + "title": "Girl" + }, + { + "emoji": "🧑", + "title": "Person" + }, + { + "emoji": "👱", + "title": "Person: Blond Hair" + }, + { + "emoji": "👨", + "title": "Man" + }, + { + "emoji": "🧔", + "title": "Person: Beard" + }, + { + "emoji": "👨‍🦰", + "title": "Man: Red Hair" + }, + { + "emoji": "👨‍🦱", + "title": "Man: Curly Hair" + }, + { + "emoji": "👨‍🦳", + "title": "Man: White Hair" + }, + { + "emoji": "👨‍🦲", + "title": "Man: Bald" + }, + { + "emoji": "👩", + "title": "Woman" + }, + { + "emoji": "👩‍🦰", + "title": "Woman: Red Hair" + }, + { + "emoji": "🧑‍🦰", + "title": "Person: Red Hair" + }, + { + "emoji": "👩‍🦱", + "title": "Woman: Curly Hair" + }, + { + "emoji": "🧑‍🦱", + "title": "Person: Curly Hair" + }, + { + "emoji": "👩‍🦳", + "title": "Woman: White Hair" + }, + { + "emoji": "🧑‍🦳", + "title": "Person: White Hair" + }, + { + "emoji": "👩‍🦲", + "title": "Woman: Bald" + }, + { + "emoji": "🧑‍🦲", + "title": "Person: Bald" + }, + { + "emoji": "👱‍♀️", + "title": "Woman: Blond Hair" + }, + { + "emoji": "👱‍♂️", + "title": "Man: Blond Hair" + }, + { + "emoji": "🧓", + "title": "Older Person" + }, + { + "emoji": "👴", + "title": "Old Man" + }, + { + "emoji": "👵", + "title": "Old Woman" + }, + { + "emoji": "🙍", + "title": "Person Frowning" + }, + { + "emoji": "🙍‍♂️", + "title": "Man Frowning" + }, + { + "emoji": "🙍‍♀️", + "title": "Woman Frowning" + }, + { + "emoji": "🙎", + "title": "Person Pouting" + }, + { + "emoji": "🙎‍♂️", + "title": "Man Pouting" + }, + { + "emoji": "🙎‍♀️", + "title": "Woman Pouting" + }, + { + "emoji": "🙅", + "title": "Person Gesturing No" + }, + { + "emoji": "🙅‍♂️", + "title": "Man Gesturing No" + }, + { + "emoji": "🙅‍♀️", + "title": "Woman Gesturing No" + }, + { + "emoji": "🙆", + "title": "Person Gesturing OK" + }, + { + "emoji": "🙆‍♂️", + "title": "Man Gesturing OK" + }, + { + "emoji": "🙆‍♀️", + "title": "Woman Gesturing OK" + }, + { + "emoji": "💁", + "title": "Person Tipping Hand" + }, + { + "emoji": "💁‍♂️", + "title": "Man Tipping Hand" + }, + { + "emoji": "💁‍♀️", + "title": "Woman Tipping Hand" + }, + { + "emoji": "🙋", + "title": "Person Raising Hand" + }, + { + "emoji": "🙋‍♂️", + "title": "Man Raising Hand" + }, + { + "emoji": "🙋‍♀️", + "title": "Woman Raising Hand" + }, + { + "emoji": "🧏", + "title": "Deaf Person" + }, + { + "emoji": "🧏‍♂️", + "title": "Deaf Man" + }, + { + "emoji": "🧏‍♀️", + "title": "Deaf Woman" + }, + { + "emoji": "🙇", + "title": "Person Bowing" + }, + { + "emoji": "🙇‍♂️", + "title": "Man Bowing" + }, + { + "emoji": "🙇‍♀️", + "title": "Woman Bowing" + }, + { + "emoji": "🤦", + "title": "Person Facepalming" + }, + { + "emoji": "🤦‍♂️", + "title": "Man Facepalming" + }, + { + "emoji": "🤦‍♀️", + "title": "Woman Facepalming" + }, + { + "emoji": "🤷", + "title": "Person Shrugging" + }, + { + "emoji": "🤷‍♂️", + "title": "Man Shrugging" + }, + { + "emoji": "🤷‍♀️", + "title": "Woman Shrugging" + }, + { + "emoji": "🧑‍⚕️", + "title": "Health Worker" + }, + { + "emoji": "👨‍⚕️", + "title": "Man Health Worker" + }, + { + "emoji": "👩‍⚕️", + "title": "Woman Health Worker" + }, + { + "emoji": "🧑‍🎓", + "title": "Student" + }, + { + "emoji": "👨‍🎓", + "title": "Man Student" + }, + { + "emoji": "👩‍🎓", + "title": "Woman Student" + }, + { + "emoji": "🧑‍🏫", + "title": "Teacher" + }, + { + "emoji": "👨‍🏫", + "title": "Man Teacher" + }, + { + "emoji": "👩‍🏫", + "title": "Woman Teacher" + }, + { + "emoji": "🧑‍⚖️", + "title": "Judge" + }, + { + "emoji": "👨‍⚖️", + "title": "Man Judge" + }, + { + "emoji": "👩‍⚖️", + "title": "Woman Judge" + }, + { + "emoji": "🧑‍🌾", + "title": "Farmer" + }, + { + "emoji": "👨‍🌾", + "title": "Man Farmer" + }, + { + "emoji": "👩‍🌾", + "title": "Woman Farmer" + }, + { + "emoji": "🧑‍🍳", + "title": "Cook" + }, + { + "emoji": "👨‍🍳", + "title": "Man Cook" + }, + { + "emoji": "👩‍🍳", + "title": "Woman Cook" + }, + { + "emoji": "🧑‍🔧", + "title": "Mechanic" + }, + { + "emoji": "👨‍🔧", + "title": "Man Mechanic" + }, + { + "emoji": "👩‍🔧", + "title": "Woman Mechanic" + }, + { + "emoji": "🧑‍🏭", + "title": "Factory Worker" + }, + { + "emoji": "👨‍🏭", + "title": "Man Factory Worker" + }, + { + "emoji": "👩‍🏭", + "title": "Woman Factory Worker" + }, + { + "emoji": "🧑‍💼", + "title": "Office Worker" + }, + { + "emoji": "👨‍💼", + "title": "Man Office Worker" + }, + { + "emoji": "👩‍💼", + "title": "Woman Office Worker" + }, + { + "emoji": "🧑‍🔬", + "title": "Scientist" + }, + { + "emoji": "👨‍🔬", + "title": "Man Scientist" + }, + { + "emoji": "👩‍🔬", + "title": "Woman Scientist" + }, + { + "emoji": "🧑‍💻", + "title": "Technologist" + }, + { + "emoji": "👨‍💻", + "title": "Man Technologist" + }, + { + "emoji": "👩‍💻", + "title": "Woman Technologist" + }, + { + "emoji": "🧑‍🎤", + "title": "Singer" + }, + { + "emoji": "👨‍🎤", + "title": "Man Singer" + }, + { + "emoji": "👩‍🎤", + "title": "Woman Singer" + }, + { + "emoji": "🧑‍🎨", + "title": "Artist" + }, + { + "emoji": "👨‍🎨", + "title": "Man Artist" + }, + { + "emoji": "👩‍🎨", + "title": "Woman Artist" + }, + { + "emoji": "🧑‍✈️", + "title": "Pilot" + }, + { + "emoji": "👨‍✈️", + "title": "Man Pilot" + }, + { + "emoji": "👩‍✈️", + "title": "Woman Pilot" + }, + { + "emoji": "🧑‍🚀", + "title": "Astronaut" + }, + { + "emoji": "👨‍🚀", + "title": "Man Astronaut" + }, + { + "emoji": "👩‍🚀", + "title": "Woman Astronaut" + }, + { + "emoji": "🧑‍🚒", + "title": "Firefighter" + }, + { + "emoji": "👨‍🚒", + "title": "Man Firefighter" + }, + { + "emoji": "👩‍🚒", + "title": "Woman Firefighter" + }, + { + "emoji": "👮", + "title": "Police Officer" + }, + { + "emoji": "👮‍♂️", + "title": "Man Police Officer" + }, + { + "emoji": "👮‍♀️", + "title": "Woman Police Officer" + }, + { + "emoji": "🕵️", + "title": "Detective" + }, + { + "emoji": "🕵️‍♂️", + "title": "Man Detective" + }, + { + "emoji": "🕵️‍♀️", + "title": "Woman Detective" + }, + { + "emoji": "💂", + "title": "Guard" + }, + { + "emoji": "💂‍♂️", + "title": "Man Guard" + }, + { + "emoji": "💂‍♀️", + "title": "Woman Guard" + }, + { + "emoji": "🥷", + "title": "Ninja" + }, + { + "emoji": "👷", + "title": "Construction Worker" + }, + { + "emoji": "👷‍♂️", + "title": "Man Construction Worker" + }, + { + "emoji": "👷‍♀️", + "title": "Woman Construction Worker" + }, + { + "emoji": "🤴", + "title": "Prince" + }, + { + "emoji": "👸", + "title": "Princess" + }, + { + "emoji": "👳", + "title": "Person Wearing Turban" + }, + { + "emoji": "👳‍♂️", + "title": "Man Wearing Turban" + }, + { + "emoji": "👳‍♀️", + "title": "Woman Wearing Turban" + }, + { + "emoji": "👲", + "title": "Person with Skullcap" + }, + { + "emoji": "🧕", + "title": "Woman with Headscarf" + }, + { + "emoji": "🤵", + "title": "Person in Tuxedo" + }, + { + "emoji": "🤵‍♂️", + "title": "Man in Tuxedo" + }, + { + "emoji": "🤵‍♀️", + "title": "Woman in Tuxedo" + }, + { + "emoji": "👰", + "title": "Person with Veil" + }, + { + "emoji": "👰‍♂️", + "title": "Man with Veil" + }, + { + "emoji": "👰‍♀️", + "title": "Woman with Veil" + }, + { + "emoji": "🤰", + "title": "Pregnant Woman" + }, + { + "emoji": "🤱", + "title": "Breast-Feeding" + }, + { + "emoji": "👩‍🍼", + "title": "Woman Feeding Baby" + }, + { + "emoji": "👨‍🍼", + "title": "Man Feeding Baby" + }, + { + "emoji": "🧑‍🍼", + "title": "Person Feeding Baby" + }, + { + "emoji": "👼", + "title": "Baby Angel" + }, + { + "emoji": "🎅", + "title": "Santa Claus" + }, + { + "emoji": "🤶", + "title": "Mrs. Claus" + }, + { + "emoji": "🧑‍🎄", + "title": "Mx Claus" + }, + { + "emoji": "🦸", + "title": "Superhero" + }, + { + "emoji": "🦸‍♂️", + "title": "Man Superhero" + }, + { + "emoji": "🦸‍♀️", + "title": "Woman Superhero" + }, + { + "emoji": "🦹", + "title": "Supervillain" + }, + { + "emoji": "🦹‍♂️", + "title": "Man Supervillain" + }, + { + "emoji": "🦹‍♀️", + "title": "Woman Supervillain" + }, + { + "emoji": "🧙", + "title": "Mage" + }, + { + "emoji": "🧙‍♂️", + "title": "Man Mage" + }, + { + "emoji": "🧙‍♀️", + "title": "Woman Mage" + }, + { + "emoji": "🧚", + "title": "Fairy" + }, + { + "emoji": "🧚‍♂️", + "title": "Man Fairy" + }, + { + "emoji": "🧚‍♀️", + "title": "Woman Fairy" + }, + { + "emoji": "🧛", + "title": "Vampire" + }, + { + "emoji": "🧛‍♂️", + "title": "Man Vampire" + }, + { + "emoji": "🧛‍♀️", + "title": "Woman Vampire" + }, + { + "emoji": "🧜", + "title": "Merperson" + }, + { + "emoji": "🧜‍♂️", + "title": "Merman" + }, + { + "emoji": "🧜‍♀️", + "title": "Mermaid" + }, + { + "emoji": "🧝", + "title": "Elf" + }, + { + "emoji": "🧝‍♂️", + "title": "Man Elf" + }, + { + "emoji": "🧝‍♀️", + "title": "Woman Elf" + }, + { + "emoji": "🧞", + "title": "Genie" + }, + { + "emoji": "🧞‍♂️", + "title": "Man Genie" + }, + { + "emoji": "🧞‍♀️", + "title": "Woman Genie" + }, + { + "emoji": "🧟", + "title": "Zombie" + }, + { + "emoji": "🧟‍♂️", + "title": "Man Zombie" + }, + { + "emoji": "🧟‍♀️", + "title": "Woman Zombie" + }, + { + "emoji": "💆", + "title": "Person Getting Massage" + }, + { + "emoji": "💆‍♂️", + "title": "Man Getting Massage" + }, + { + "emoji": "💆‍♀️", + "title": "Woman Getting Massage" + }, + { + "emoji": "💇", + "title": "Person Getting Haircut" + }, + { + "emoji": "💇‍♂️", + "title": "Man Getting Haircut" + }, + { + "emoji": "💇‍♀️", + "title": "Woman Getting Haircut" + }, + { + "emoji": "🚶", + "title": "Person Walking" + }, + { + "emoji": "🚶‍♂️", + "title": "Man Walking" + }, + { + "emoji": "🚶‍♀️", + "title": "Woman Walking" + }, + { + "emoji": "🧍", + "title": "Person Standing" + }, + { + "emoji": "🧍‍♂️", + "title": "Man Standing" + }, + { + "emoji": "🧍‍♀️", + "title": "Woman Standing" + }, + { + "emoji": "🧎", + "title": "Person Kneeling" + }, + { + "emoji": "🧎‍♂️", + "title": "Man Kneeling" + }, + { + "emoji": "🧎‍♀️", + "title": "Woman Kneeling" + }, + { + "emoji": "🧑‍🦯", + "title": "Person with White Cane" + }, + { + "emoji": "👨‍🦯", + "title": "Man with White Cane" + }, + { + "emoji": "👩‍🦯", + "title": "Woman with White Cane" + }, + { + "emoji": "🧑‍🦼", + "title": "Person in Motorized Wheelchair" + }, + { + "emoji": "👨‍🦼", + "title": "Man in Motorized Wheelchair" + }, + { + "emoji": "👩‍🦼", + "title": "Woman in Motorized Wheelchair" + }, + { + "emoji": "🧑‍🦽", + "title": "Person in Manual Wheelchair" + }, + { + "emoji": "👨‍🦽", + "title": "Man in Manual Wheelchair" + }, + { + "emoji": "👩‍🦽", + "title": "Woman in Manual Wheelchair" + }, + { + "emoji": "🏃", + "title": "Person Running" + }, + { + "emoji": "🏃‍♂️", + "title": "Man Running" + }, + { + "emoji": "🏃‍♀️", + "title": "Woman Running" + }, + { + "emoji": "💃", + "title": "Woman Dancing" + }, + { + "emoji": "🕺", + "title": "Man Dancing" + }, + { + "emoji": "🕴️", + "title": "Person in Suit Levitating" + }, + { + "emoji": "👯", + "title": "People with Bunny Ears" + }, + { + "emoji": "👯‍♂️", + "title": "Men with Bunny Ears" + }, + { + "emoji": "👯‍♀️", + "title": "Women with Bunny Ears" + }, + { + "emoji": "🧖", + "title": "Person in Steamy Room" + }, + { + "emoji": "🧖‍♂️", + "title": "Man in Steamy Room" + }, + { + "emoji": "🧖‍♀️", + "title": "Woman in Steamy Room" + }, + { + "emoji": "🧘", + "title": "Person in Lotus Position" + }, + { + "emoji": "🧑‍🤝‍🧑", + "title": "People Holding Hands" + }, + { + "emoji": "👭", + "title": "Women Holding Hands" + }, + { + "emoji": "👫", + "title": "Woman and Man Holding Hands" + }, + { + "emoji": "👬", + "title": "Men Holding Hands" + }, + { + "emoji": "💏", + "title": "Kiss" + }, + { + "emoji": "👩‍❤️‍💋‍👨", + "title": "Kiss: Woman, Man" + }, + { + "emoji": "👨‍❤️‍💋‍👨", + "title": "Kiss: Man, Man" + }, + { + "emoji": "👩‍❤️‍💋‍👩", + "title": "Kiss: Woman, Woman" + }, + { + "emoji": "💑", + "title": "Couple with Heart" + }, + { + "emoji": "👩‍❤️‍👨", + "title": "Couple with Heart: Woman, Man" + }, + { + "emoji": "👨‍❤️‍👨", + "title": "Couple with Heart: Man, Man" + }, + { + "emoji": "👩‍❤️‍👩", + "title": "Couple with Heart: Woman, Woman" + }, + { + "emoji": "👪", + "title": "Family" + }, + { + "emoji": "👨‍👩‍👦", + "title": "Family: Man, Woman, Boy" + }, + { + "emoji": "👨‍👩‍👧", + "title": "Family: Man, Woman, Girl" + }, + { + "emoji": "👨‍👩‍👧‍👦", + "title": "Family: Man, Woman, Girl, Boy" + }, + { + "emoji": "👨‍👩‍👦‍👦", + "title": "Family: Man, Woman, Boy, Boy" + }, + { + "emoji": "👨‍👩‍👧‍👧", + "title": "Family: Man, Woman, Girl, Girl" + }, + { + "emoji": "👨‍👨‍👦", + "title": "Family: Man, Man, Boy" + }, + { + "emoji": "👨‍👨‍👧", + "title": "Family: Man, Man, Girl" + }, + { + "emoji": "👨‍👨‍👧‍👦", + "title": "Family: Man, Man, Girl, Boy" + }, + { + "emoji": "👨‍👨‍👦‍👦", + "title": "Family: Man, Man, Boy, Boy" + }, + { + "emoji": "👨‍👨‍👧‍👧", + "title": "Family: Man, Man, Girl, Girl" + }, + { + "emoji": "👩‍👩‍👦", + "title": "Family: Woman, Woman, Boy" + }, + { + "emoji": "👩‍👩‍👧", + "title": "Family: Woman, Woman, Girl" + }, + { + "emoji": "👩‍👩‍👧‍👦", + "title": "Family: Woman, Woman, Girl, Boy" + }, + { + "emoji": "👩‍👩‍👦‍👦", + "title": "Family: Woman, Woman, Boy, Boy" + }, + { + "emoji": "👩‍👩‍👧‍👧", + "title": "Family: Woman, Woman, Girl, Girl" + }, + { + "emoji": "👨‍👦", + "title": "Family: Man, Boy" + }, + { + "emoji": "👨‍👦‍👦", + "title": "Family: Man, Boy, Boy" + }, + { + "emoji": "👨‍👧", + "title": "Family: Man, Girl" + }, + { + "emoji": "👨‍👧‍👦", + "title": "Family: Man, Girl, Boy" + }, + { + "emoji": "👨‍👧‍👧", + "title": "Family: Man, Girl, Girl" + }, + { + "emoji": "👩‍👦", + "title": "Family: Woman, Boy" + }, + { + "emoji": "👩‍👦‍👦", + "title": "Family: Woman, Boy, Boy" + }, + { + "emoji": "👩‍👧", + "title": "Family: Woman, Girl" + }, + { + "emoji": "👩‍👧‍👦", + "title": "Family: Woman, Girl, Boy" + }, + { + "emoji": "👩‍👧‍👧", + "title": "Family: Woman, Girl, Girl" + }, + { + "emoji": "🗣️", + "title": "Speaking Head" + }, + { + "emoji": "👤", + "title": "Bust in Silhouette" + }, + { + "emoji": "👥", + "title": "Busts in Silhouette" + }, + { + "emoji": "🫂", + "title": "People Hugging" + }, + { + "emoji": "👣", + "title": "Footprints" + }, + { + "emoji": "🧳", + "title": "Luggage" + }, + { + "emoji": "🌂", + "title": "Closed Umbrella" + }, + { + "emoji": "☂️", + "title": "Umbrella" + }, + { + "emoji": "🎃", + "title": "Jack-O-Lantern" + }, + { + "emoji": "🧵", + "title": "Thread" + }, + { + "emoji": "🧶", + "title": "Yarn" + }, + { + "emoji": "👓", + "title": "Glasses" + }, + { + "emoji": "🕶️", + "title": "Sunglasses" + }, + { + "emoji": "🥽", + "title": "Goggles" + }, + { + "emoji": "🥼", + "title": "Lab Coat" + }, + { + "emoji": "🦺", + "title": "Safety Vest" + }, + { + "emoji": "👔", + "title": "Necktie" + }, + { + "emoji": "👕", + "title": "T-Shirt" + }, + { + "emoji": "👖", + "title": "Jeans" + }, + { + "emoji": "🧣", + "title": "Scarf" + }, + { + "emoji": "🧤", + "title": "Gloves" + }, + { + "emoji": "🧥", + "title": "Coat" + }, + { + "emoji": "🧦", + "title": "Socks" + }, + { + "emoji": "👗", + "title": "Dress" + }, + { + "emoji": "👘", + "title": "Kimono" + }, + { + "emoji": "🥻", + "title": "Sari" + }, + { + "emoji": "🩱", + "title": "One-Piece Swimsuit" + }, + { + "emoji": "🩲", + "title": "Briefs" + }, + { + "emoji": "🩳", + "title": "Shorts" + }, + { + "emoji": "👙", + "title": "Bikini" + }, + { + "emoji": "👚", + "title": "Woman’s Clothes" + }, + { + "emoji": "👛", + "title": "Purse" + }, + { + "emoji": "👜", + "title": "Handbag" + }, + { + "emoji": "👝", + "title": "Clutch Bag" + }, + { + "emoji": "🎒", + "title": "Backpack" + }, + { + "emoji": "🩴", + "title": "Thong Sandal" + }, + { + "emoji": "👞", + "title": "Man’s Shoe" + }, + { + "emoji": "👟", + "title": "Running Shoe" + }, + { + "emoji": "🥾", + "title": "Hiking Boot" + }, + { + "emoji": "🥿", + "title": "Flat Shoe" + }, + { + "emoji": "👠", + "title": "High-Heeled Shoe" + }, + { + "emoji": "👡", + "title": "Woman’s Sandal" + }, + { + "emoji": "🩰", + "title": "Ballet Shoes" + }, + { + "emoji": "👢", + "title": "Woman’s Boot" + }, + { + "emoji": "👑", + "title": "Crown" + }, + { + "emoji": "👒", + "title": "Woman’s Hat" + }, + { + "emoji": "🎩", + "title": "Top Hat" + }, + { + "emoji": "🎓", + "title": "Graduation Cap" + }, + { + "emoji": "🧢", + "title": "Billed Cap" + }, + { + "emoji": "🪖", + "title": "Military Helmet" + }, + { + "emoji": "⛑️", + "title": "Rescue Worker’s Helmet" + }, + { + "emoji": "💄", + "title": "Lipstick" + }, + { + "emoji": "💍", + "title": "Ring" + }, + { + "emoji": "💼", + "title": "Briefcase" + }, + { + "emoji": "🩸", + "title": "Drop of Blood" + } + ], + 'Nature': [ + { + "emoji": "🙈", + "title": "See-No-Evil Monkey" + }, + { + "emoji": "🙉", + "title": "Hear-No-Evil Monkey" + }, + { + "emoji": "🙊", + "title": "Speak-No-Evil Monkey" + }, + { + "emoji": "💥", + "title": "Collision" + }, + { + "emoji": "💫", + "title": "Dizzy" + }, + { + "emoji": "💦", + "title": "Sweat Droplets" + }, + { + "emoji": "💨", + "title": "Dashing Away" + }, + { + "emoji": "🐵", + "title": "Monkey Face" + }, + { + "emoji": "🐒", + "title": "Monkey" + }, + { + "emoji": "🦍", + "title": "Gorilla" + }, + { + "emoji": "🦧", + "title": "Orangutan" + }, + { + "emoji": "🐶", + "title": "Dog Face" + }, + { + "emoji": "🐕", + "title": "Dog" + }, + { + "emoji": "🦮", + "title": "Guide Dog" + }, + { + "emoji": "🐕‍🦺", + "title": "Service Dog" + }, + { + "emoji": "🐩", + "title": "Poodle" + }, + { + "emoji": "🐺", + "title": "Wolf" + }, + { + "emoji": "🦊", + "title": "Fox" + }, + { + "emoji": "🦝", + "title": "Raccoon" + }, + { + "emoji": "🐱", + "title": "Cat Face" + }, + { + "emoji": "🐈", + "title": "Cat" + }, + { + "emoji": "🐈‍⬛", + "title": "Black Cat" + }, + { + "emoji": "🦁", + "title": "Lion" + }, + { + "emoji": "🐯", + "title": "Tiger Face" + }, + { + "emoji": "🐅", + "title": "Tiger" + }, + { + "emoji": "🐆", + "title": "Leopard" + }, + { + "emoji": "🐴", + "title": "Horse Face" + }, + { + "emoji": "🐎", + "title": "Horse" + }, + { + "emoji": "🦄", + "title": "Unicorn" + }, + { + "emoji": "🦓", + "title": "Zebra" + }, + { + "emoji": "🦌", + "title": "Deer" + }, + { + "emoji": "🦬", + "title": "Bison" + }, + { + "emoji": "🐮", + "title": "Cow Face" + }, + { + "emoji": "🐂", + "title": "Ox" + }, + { + "emoji": "🐃", + "title": "Water Buffalo" + }, + { + "emoji": "🐄", + "title": "Cow" + }, + { + "emoji": "🐷", + "title": "Pig Face" + }, + { + "emoji": "🐖", + "title": "Pig" + }, + { + "emoji": "🐗", + "title": "Boar" + }, + { + "emoji": "🐽", + "title": "Pig Nose" + }, + { + "emoji": "🐏", + "title": "Ram" + }, + { + "emoji": "🐑", + "title": "Ewe" + }, + { + "emoji": "🐐", + "title": "Goat" + }, + { + "emoji": "🐪", + "title": "Camel" + }, + { + "emoji": "🐫", + "title": "Two-Hump Camel" + }, + { + "emoji": "🦙", + "title": "Llama" + }, + { + "emoji": "🦒", + "title": "Giraffe" + }, + { + "emoji": "🐘", + "title": "Elephant" + }, + { + "emoji": "🦣", + "title": "Mammoth" + }, + { + "emoji": "🦏", + "title": "Rhinoceros" + }, + { + "emoji": "🦛", + "title": "Hippopotamus" + }, + { + "emoji": "🐭", + "title": "Mouse Face" + }, + { + "emoji": "🐁", + "title": "Mouse" + }, + { + "emoji": "🐀", + "title": "Rat" + }, + { + "emoji": "🐹", + "title": "Hamster" + }, + { + "emoji": "🐰", + "title": "Rabbit Face" + }, + { + "emoji": "🐇", + "title": "Rabbit" + }, + { + "emoji": "🐿️", + "title": "Chipmunk" + }, + { + "emoji": "🦫", + "title": "Beaver" + }, + { + "emoji": "🦔", + "title": "Hedgehog" + }, + { + "emoji": "🦇", + "title": "Bat" + }, + { + "emoji": "🐻", + "title": "Bear" + }, + { + "emoji": "🐻‍❄️", + "title": "Polar Bear" + }, + { + "emoji": "🐨", + "title": "Koala" + }, + { + "emoji": "🐼", + "title": "Panda" + }, + { + "emoji": "🦥", + "title": "Sloth" + }, + { + "emoji": "🦦", + "title": "Otter" + }, + { + "emoji": "🦨", + "title": "Skunk" + }, + { + "emoji": "🦘", + "title": "Kangaroo" + }, + { + "emoji": "🦡", + "title": "Badger" + }, + { + "emoji": "🐾", + "title": "Paw Prints" + }, + { + "emoji": "🦃", + "title": "Turkey" + }, + { + "emoji": "🐔", + "title": "Chicken" + }, + { + "emoji": "🐓", + "title": "Rooster" + }, + { + "emoji": "🐣", + "title": "Hatching Chick" + }, + { + "emoji": "🐤", + "title": "Baby Chick" + }, + { + "emoji": "🐥", + "title": "Front-Facing Baby Chick" + }, + { + "emoji": "🐦", + "title": "Bird" + }, + { + "emoji": "🐧", + "title": "Penguin" + }, + { + "emoji": "🕊️", + "title": "Dove" + }, + { + "emoji": "🦅", + "title": "Eagle" + }, + { + "emoji": "🦆", + "title": "Duck" + }, + { + "emoji": "🦢", + "title": "Swan" + }, + { + "emoji": "🦉", + "title": "Owl" + }, + { + "emoji": "🦤", + "title": "Dodo" + }, + { + "emoji": "🪶", + "title": "Feather" + }, + { + "emoji": "🦩", + "title": "Flamingo" + }, + { + "emoji": "🦚", + "title": "Peacock" + }, + { + "emoji": "🦜", + "title": "Parrot" + }, + { + "emoji": "🐸", + "title": "Frog" + }, + { + "emoji": "🐊", + "title": "Crocodile" + }, + { + "emoji": "🐢", + "title": "Turtle" + }, + { + "emoji": "🦎", + "title": "Lizard" + }, + { + "emoji": "🐍", + "title": "Snake" + }, + { + "emoji": "🐲", + "title": "Dragon Face" + }, + { + "emoji": "🐉", + "title": "Dragon" + }, + { + "emoji": "🦕", + "title": "Sauropod" + }, + { + "emoji": "🦖", + "title": "T-Rex" + }, + { + "emoji": "🐳", + "title": "Spouting Whale" + }, + { + "emoji": "🐋", + "title": "Whale" + }, + { + "emoji": "🐬", + "title": "Dolphin" + }, + { + "emoji": "🦭", + "title": "Seal" + }, + { + "emoji": "🐟", + "title": "Fish" + }, + { + "emoji": "🐠", + "title": "Tropical Fish" + }, + { + "emoji": "🐡", + "title": "Blowfish" + }, + { + "emoji": "🦈", + "title": "Shark" + }, + { + "emoji": "🐙", + "title": "Octopus" + }, + { + "emoji": "🐚", + "title": "Spiral Shell" + }, + { + "emoji": "🐌", + "title": "Snail" + }, + { + "emoji": "🦋", + "title": "Butterfly" + }, + { + "emoji": "🐛", + "title": "Bug" + }, + { + "emoji": "🐜", + "title": "Ant" + }, + { + "emoji": "🐝", + "title": "Honeybee" + }, + { + "emoji": "🪲", + "title": "Beetle" + }, + { + "emoji": "🐞", + "title": "Lady Beetle" + }, + { + "emoji": "🦗", + "title": "Cricket" + }, + { + "emoji": "🪳", + "title": "Cockroach" + }, + { + "emoji": "🕷️", + "title": "Spider" + }, + { + "emoji": "🕸️", + "title": "Spider Web" + }, + { + "emoji": "🦂", + "title": "Scorpion" + }, + { + "emoji": "🦟", + "title": "Mosquito" + }, + { + "emoji": "🪰", + "title": "Fly" + }, + { + "emoji": "🪱", + "title": "Worm" + }, + { + "emoji": "🦠", + "title": "Microbe" + }, + { + "emoji": "💐", + "title": "Bouquet" + }, + { + "emoji": "🌸", + "title": "Cherry Blossom" + }, + { + "emoji": "💮", + "title": "White Flower" + }, + { + "emoji": "🏵️", + "title": "Rosette" + }, + { + "emoji": "🌹", + "title": "Rose" + }, + { + "emoji": "🥀", + "title": "Wilted Flower" + }, + { + "emoji": "🌺", + "title": "Hibiscus" + }, + { + "emoji": "🌻", + "title": "Sunflower" + }, + { + "emoji": "🌼", + "title": "Blossom" + }, + { + "emoji": "🌷", + "title": "Tulip" + }, + { + "emoji": "🌱", + "title": "Seedling" + }, + { + "emoji": "🪴", + "title": "Potted Plant" + }, + { + "emoji": "🌲", + "title": "Evergreen Tree" + }, + { + "emoji": "🌳", + "title": "Deciduous Tree" + }, + { + "emoji": "🌴", + "title": "Palm Tree" + }, + { + "emoji": "🌵", + "title": "Cactus" + }, + { + "emoji": "🌾", + "title": "Sheaf of Rice" + }, + { + "emoji": "🌿", + "title": "Herb" + }, + { + "emoji": "☘️", + "title": "Shamrock" + }, + { + "emoji": "🍀", + "title": "Four Leaf Clover" + }, + { + "emoji": "🍁", + "title": "Maple Leaf" + }, + { + "emoji": "🍂", + "title": "Fallen Leaf" + }, + { + "emoji": "🍃", + "title": "Leaf Fluttering in Wind" + }, + { + "emoji": "🍄", + "title": "Mushroom" + }, + { + "emoji": "🌰", + "title": "Chestnut" + }, + { + "emoji": "🦀", + "title": "Crab" + }, + { + "emoji": "🦞", + "title": "Lobster" + }, + { + "emoji": "🦐", + "title": "Shrimp" + }, + { + "emoji": "🦑", + "title": "Squid" + }, + { + "emoji": "🌍", + "title": "Globe Showing Europe-Africa" + }, + { + "emoji": "🌎", + "title": "Globe Showing Americas" + }, + { + "emoji": "🌏", + "title": "Globe Showing Asia-Australia" + }, + { + "emoji": "🌐", + "title": "Globe with Meridians" + }, + { + "emoji": "🪨", + "title": "Rock" + }, + { + "emoji": "🌑", + "title": "New Moon" + }, + { + "emoji": "🌒", + "title": "Waxing Crescent Moon" + }, + { + "emoji": "🌓", + "title": "First Quarter Moon" + }, + { + "emoji": "🌔", + "title": "Waxing Gibbous Moon" + }, + { + "emoji": "🌕", + "title": "Full Moon" + }, + { + "emoji": "🌖", + "title": "Waning Gibbous Moon" + }, + { + "emoji": "🌗", + "title": "Last Quarter Moon" + }, + { + "emoji": "🌘", + "title": "Waning Crescent Moon" + }, + { + "emoji": "🌙", + "title": "Crescent Moon" + }, + { + "emoji": "🌚", + "title": "New Moon Face" + }, + { + "emoji": "🌛", + "title": "First Quarter Moon Face" + }, + { + "emoji": "🌜", + "title": "Last Quarter Moon Face" + }, + { + "emoji": "☀️", + "title": "Sun" + }, + { + "emoji": "🌝", + "title": "Full Moon Face" + }, + { + "emoji": "🌞", + "title": "Sun with Face" + }, + { + "emoji": "⭐", + "title": "Star" + }, + { + "emoji": "🌟", + "title": "Glowing Star" + }, + { + "emoji": "🌠", + "title": "Shooting Star" + }, + { + "emoji": "☁️", + "title": "Cloud" + }, + { + "emoji": "⛅", + "title": "Sun Behind Cloud" + }, + { + "emoji": "⛈️", + "title": "Cloud with Lightning and Rain" + }, + { + "emoji": "🌤️", + "title": "Sun Behind Small Cloud" + }, + { + "emoji": "🌥️", + "title": "Sun Behind Large Cloud" + }, + { + "emoji": "🌦️", + "title": "Sun Behind Rain Cloud" + }, + { + "emoji": "🌧️", + "title": "Cloud with Rain" + }, + { + "emoji": "🌨️", + "title": "Cloud with Snow" + }, + { + "emoji": "🌩️", + "title": "Cloud with Lightning" + }, + { + "emoji": "🌪️", + "title": "Tornado" + }, + { + "emoji": "🌫️", + "title": "Fog" + }, + { + "emoji": "🌬️", + "title": "Wind Face" + }, + { + "emoji": "🌈", + "title": "Rainbow" + }, + { + "emoji": "☂️", + "title": "Umbrella" + }, + { + "emoji": "☔", + "title": "Umbrella with Rain Drops" + }, + { + "emoji": "⚡", + "title": "High Voltage" + }, + { + "emoji": "❄️", + "title": "Snowflake" + }, + { + "emoji": "☃️", + "title": "Snowman" + }, + { + "emoji": "⛄", + "title": "Snowman Without Snow" + }, + { + "emoji": "☄️", + "title": "Comet" + }, + { + "emoji": "🔥", + "title": "Fire" + }, + { + "emoji": "💧", + "title": "Droplet" + }, + { + "emoji": "🌊", + "title": "Water Wave" + }, + { + "emoji": "🎄", + "title": "Christmas Tree" + }, + { + "emoji": "✨", + "title": "Sparkles" + }, + { + "emoji": "🎋", + "title": "Tanabata Tree" + }, + { + "emoji": "🎍", + "title": "Pine Decoration" + } + ], + 'Food-dring': [ + { + "emoji": "🍇", + "title": "Grapes" + }, + { + "emoji": "🍈", + "title": "Melon" + }, + { + "emoji": "🍉", + "title": "Watermelon" + }, + { + "emoji": "🍊", + "title": "Tangerine" + }, + { + "emoji": "🍋", + "title": "Lemon" + }, + { + "emoji": "🍌", + "title": "Banana" + }, + { + "emoji": "🍍", + "title": "Pineapple" + }, + { + "emoji": "🥭", + "title": "Mango" + }, + { + "emoji": "🍎", + "title": "Red Apple" + }, + { + "emoji": "🍏", + "title": "Green Apple" + }, + { + "emoji": "🍐", + "title": "Pear" + }, + { + "emoji": "🍑", + "title": "Peach" + }, + { + "emoji": "🍒", + "title": "Cherries" + }, + { + "emoji": "🍓", + "title": "Strawberry" + }, + { + "emoji": "🫐", + "title": "Blueberries" + }, + { + "emoji": "🥝", + "title": "Kiwi Fruit" + }, + { + "emoji": "🍅", + "title": "Tomato" + }, + { + "emoji": "🫒", + "title": "Olive" + }, + { + "emoji": "🥥", + "title": "Coconut" + }, + { + "emoji": "🥑", + "title": "Avocado" + }, + { + "emoji": "🍆", + "title": "Eggplant" + }, + { + "emoji": "🥔", + "title": "Potato" + }, + { + "emoji": "🥕", + "title": "Carrot" + }, + { + "emoji": "🌽", + "title": "Ear of Corn" + }, + { + "emoji": "🌶️", + "title": "Hot Pepper" + }, + { + "emoji": "🫑", + "title": "Bell Pepper" + }, + { + "emoji": "🥒", + "title": "Cucumber" + }, + { + "emoji": "🥬", + "title": "Leafy Green" + }, + { + "emoji": "🥦", + "title": "Broccoli" + }, + { + "emoji": "🧄", + "title": "Garlic" + }, + { + "emoji": "🧅", + "title": "Onion" + }, + { + "emoji": "🍄", + "title": "Mushroom" + }, + { + "emoji": "🥜", + "title": "Peanuts" + }, + { + "emoji": "🌰", + "title": "Chestnut" + }, + { + "emoji": "🍞", + "title": "Bread" + }, + { + "emoji": "🥐", + "title": "Croissant" + }, + { + "emoji": "🥖", + "title": "Baguette Bread" + }, + { + "emoji": "🫓", + "title": "Flatbread" + }, + { + "emoji": "🥨", + "title": "Pretzel" + }, + { + "emoji": "🥯", + "title": "Bagel" + }, + { + "emoji": "🥞", + "title": "Pancakes" + }, + { + "emoji": "🧇", + "title": "Waffle" + }, + { + "emoji": "🧀", + "title": "Cheese Wedge" + }, + { + "emoji": "🍖", + "title": "Meat on Bone" + }, + { + "emoji": "🍗", + "title": "Poultry Leg" + }, + { + "emoji": "🥩", + "title": "Cut of Meat" + }, + { + "emoji": "🥓", + "title": "Bacon" + }, + { + "emoji": "🍔", + "title": "Hamburger" + }, + { + "emoji": "🍟", + "title": "French Fries" + }, + { + "emoji": "🍕", + "title": "Pizza" + }, + { + "emoji": "🌭", + "title": "Hot Dog" + }, + { + "emoji": "🥪", + "title": "Sandwich" + }, + { + "emoji": "🌮", + "title": "Taco" + }, + { + "emoji": "🌯", + "title": "Burrito" + }, + { + "emoji": "🫔", + "title": "Tamale" + }, + { + "emoji": "🥙", + "title": "Stuffed Flatbread" + }, + { + "emoji": "🧆", + "title": "Falafel" + }, + { + "emoji": "🥚", + "title": "Egg" + }, + { + "emoji": "🍳", + "title": "Cooking" + }, + { + "emoji": "🥘", + "title": "Shallow Pan of Food" + }, + { + "emoji": "🍲", + "title": "Pot of Food" + }, + { + "emoji": "🫕", + "title": "Fondue" + }, + { + "emoji": "🥣", + "title": "Bowl with Spoon" + }, + { + "emoji": "🥗", + "title": "Green Salad" + }, + { + "emoji": "🍿", + "title": "Popcorn" + }, + { + "emoji": "🧈", + "title": "Butter" + }, + { + "emoji": "🧂", + "title": "Salt" + }, + { + "emoji": "🥫", + "title": "Canned Food" + }, + { + "emoji": "🍱", + "title": "Bento Box" + }, + { + "emoji": "🍘", + "title": "Rice Cracker" + }, + { + "emoji": "🍙", + "title": "Rice Ball" + }, + { + "emoji": "🍚", + "title": "Cooked Rice" + }, + { + "emoji": "🍛", + "title": "Curry Rice" + }, + { + "emoji": "🍜", + "title": "Steaming Bowl" + }, + { + "emoji": "🍝", + "title": "Spaghetti" + }, + { + "emoji": "🍠", + "title": "Roasted Sweet Potato" + }, + { + "emoji": "🍢", + "title": "Oden" + }, + { + "emoji": "🍣", + "title": "Sushi" + }, + { + "emoji": "🍤", + "title": "Fried Shrimp" + }, + { + "emoji": "🍥", + "title": "Fish Cake with Swirl" + }, + { + "emoji": "🥮", + "title": "Moon Cake" + }, + { + "emoji": "🍡", + "title": "Dango" + }, + { + "emoji": "🥟", + "title": "Dumpling" + }, + { + "emoji": "🥠", + "title": "Fortune Cookie" + }, + { + "emoji": "🥡", + "title": "Takeout Box" + }, + { + "emoji": "🦪", + "title": "Oyster" + }, + { + "emoji": "🍦", + "title": "Soft Ice Cream" + }, + { + "emoji": "🍧", + "title": "Shaved Ice" + }, + { + "emoji": "🍨", + "title": "Ice Cream" + }, + { + "emoji": "🍩", + "title": "Doughnut" + }, + { + "emoji": "🍪", + "title": "Cookie" + }, + { + "emoji": "🎂", + "title": "Birthday Cake" + }, + { + "emoji": "🍰", + "title": "Shortcake" + }, + { + "emoji": "🧁", + "title": "Cupcake" + }, + { + "emoji": "🥧", + "title": "Pie" + }, + { + "emoji": "🍫", + "title": "Chocolate Bar" + }, + { + "emoji": "🍬", + "title": "Candy" + }, + { + "emoji": "🍭", + "title": "Lollipop" + }, + { + "emoji": "🍮", + "title": "Custard" + }, + { + "emoji": "🍯", + "title": "Honey Pot" + }, + { + "emoji": "🍼", + "title": "Baby Bottle" + }, + { + "emoji": "🥛", + "title": "Glass of Milk" + }, + { + "emoji": "☕", + "title": "Hot Beverage" + }, + { + "emoji": "🫖", + "title": "Teapot" + }, + { + "emoji": "🍵", + "title": "Teacup Without Handle" + }, + { + "emoji": "🍶", + "title": "Sake" + }, + { + "emoji": "🍾", + "title": "Bottle with Popping Cork" + }, + { + "emoji": "🍷", + "title": "Wine Glass" + }, + { + "emoji": "🍸", + "title": "Cocktail Glass" + }, + { + "emoji": "🍹", + "title": "Tropical Drink" + }, + { + "emoji": "🍺", + "title": "Beer Mug" + }, + { + "emoji": "🍻", + "title": "Clinking Beer Mugs" + }, + { + "emoji": "🥂", + "title": "Clinking Glasses" + }, + { + "emoji": "🥃", + "title": "Tumbler Glass" + }, + { + "emoji": "🥤", + "title": "Cup with Straw" + }, + { + "emoji": "🧋", + "title": "Bubble Tea" + }, + { + "emoji": "🧃", + "title": "Beverage Box" + }, + { + "emoji": "🧉", + "title": "Mate" + }, + { + "emoji": "🧊", + "title": "Ice" + }, + { + "emoji": "🥢", + "title": "Chopsticks" + }, + { + "emoji": "🍽️", + "title": "Fork and Knife with Plate" + }, + { + "emoji": "🍴", + "title": "Fork and Knife" + }, + { + "emoji": "🥄", + "title": "Spoon" + } + ], + 'Activity': [ + { + "emoji": "🕴️", + "title": "Person in Suit Levitating" + }, + { + "emoji": "🧗", + "title": "Person Climbing" + }, + { + "emoji": "🧗‍♂️", + "title": "Man Climbing" + }, + { + "emoji": "🧗‍♀️", + "title": "Woman Climbing" + }, + { + "emoji": "🤺", + "title": "Person Fencing" + }, + { + "emoji": "🏇", + "title": "Horse Racing" + }, + { + "emoji": "⛷️", + "title": "Skier" + }, + { + "emoji": "🏂", + "title": "Snowboarder" + }, + { + "emoji": "🏌️", + "title": "Person Golfing" + }, + { + "emoji": "🏌️‍♂️", + "title": "Man Golfing" + }, + { + "emoji": "🏌️‍♀️", + "title": "Woman Golfing" + }, + { + "emoji": "🏄", + "title": "Person Surfing" + }, + { + "emoji": "🏄‍♂️", + "title": "Man Surfing" + }, + { + "emoji": "🏄‍♀️", + "title": "Woman Surfing" + }, + { + "emoji": "🚣", + "title": "Person Rowing Boat" + }, + { + "emoji": "🚣‍♂️", + "title": "Man Rowing Boat" + }, + { + "emoji": "🚣‍♀️", + "title": "Woman Rowing Boat" + }, + { + "emoji": "🏊", + "title": "Person Swimming" + }, + { + "emoji": "🏊‍♂️", + "title": "Man Swimming" + }, + { + "emoji": "🏊‍♀️", + "title": "Woman Swimming" + }, + { + "emoji": "⛹️", + "title": "Person Bouncing Ball" + }, + { + "emoji": "⛹️‍♂️", + "title": "Man Bouncing Ball" + }, + { + "emoji": "⛹️‍♀️", + "title": "Woman Bouncing Ball" + }, + { + "emoji": "🏋️", + "title": "Person Lifting Weights" + }, + { + "emoji": "🏋️‍♂️", + "title": "Man Lifting Weights" + }, + { + "emoji": "🏋️‍♀️", + "title": "Woman Lifting Weights" + }, + { + "emoji": "🚴", + "title": "Person Biking" + }, + { + "emoji": "🚴‍♂️", + "title": "Man Biking" + }, + { + "emoji": "🚴‍♀️", + "title": "Woman Biking" + }, + { + "emoji": "🚵", + "title": "Person Mountain Biking" + }, + { + "emoji": "🚵‍♂️", + "title": "Man Mountain Biking" + }, + { + "emoji": "🚵‍♀️", + "title": "Woman Mountain Biking" + }, + { + "emoji": "🤸", + "title": "Person Cartwheeling" + }, + { + "emoji": "🤸‍♂️", + "title": "Man Cartwheeling" + }, + { + "emoji": "🤸‍♀️", + "title": "Woman Cartwheeling" + }, + { + "emoji": "🤼", + "title": "People Wrestling" + }, + { + "emoji": "🤼‍♂️", + "title": "Men Wrestling" + }, + { + "emoji": "🤼‍♀️", + "title": "Women Wrestling" + }, + { + "emoji": "🤽", + "title": "Person Playing Water Polo" + }, + { + "emoji": "🤽‍♂️", + "title": "Man Playing Water Polo" + }, + { + "emoji": "🤽‍♀️", + "title": "Woman Playing Water Polo" + }, + { + "emoji": "🤾", + "title": "Person Playing Handball" + }, + { + "emoji": "🤾‍♂️", + "title": "Man Playing Handball" + }, + { + "emoji": "🤾‍♀️", + "title": "Woman Playing Handball" + }, + { + "emoji": "🤹", + "title": "Person Juggling" + }, + { + "emoji": "🤹‍♂️", + "title": "Man Juggling" + }, + { + "emoji": "🤹‍♀️", + "title": "Woman Juggling" + }, + { + "emoji": "🧘", + "title": "Person in Lotus Position" + }, + { + "emoji": "🧘‍♂️", + "title": "Man in Lotus Position" + }, + { + "emoji": "🧘‍♀️", + "title": "Woman in Lotus Position" + }, + { + "emoji": "🎪", + "title": "Circus Tent" + }, + { + "emoji": "🛹", + "title": "Skateboard" + }, + { + "emoji": "🛼", + "title": "Roller Skate" + }, + { + "emoji": "🛶", + "title": "Canoe" + }, + { + "emoji": "🎗️", + "title": "Reminder Ribbon" + }, + { + "emoji": "🎟️", + "title": "Admission Tickets" + }, + { + "emoji": "🎫", + "title": "Ticket" + }, + { + "emoji": "🎖️", + "title": "Military Medal" + }, + { + "emoji": "🏆", + "title": "Trophy" + }, + { + "emoji": "🏅", + "title": "Sports Medal" + }, + { + "emoji": "🥇", + "title": "1st Place Medal" + }, + { + "emoji": "🥈", + "title": "2nd Place Medal" + }, + { + "emoji": "🥉", + "title": "3rd Place Medal" + }, + { + "emoji": "⚽", + "title": "Soccer Ball" + }, + { + "emoji": "⚾", + "title": "Baseball" + }, + { + "emoji": "🥎", + "title": "Softball" + }, + { + "emoji": "🏀", + "title": "Basketball" + }, + { + "emoji": "🏐", + "title": "Volleyball" + }, + { + "emoji": "🏈", + "title": "American Football" + }, + { + "emoji": "🏉", + "title": "Rugby Football" + }, + { + "emoji": "🎾", + "title": "Tennis" + }, + { + "emoji": "🥏", + "title": "Flying Disc" + }, + { + "emoji": "🎳", + "title": "Bowling" + }, + { + "emoji": "🏏", + "title": "Cricket Game" + }, + { + "emoji": "🏑", + "title": "Field Hockey" + }, + { + "emoji": "🏒", + "title": "Ice Hockey" + }, + { + "emoji": "🥍", + "title": "Lacrosse" + }, + { + "emoji": "🏓", + "title": "Ping Pong" + }, + { + "emoji": "🏸", + "title": "Badminton" + }, + { + "emoji": "🥊", + "title": "Boxing Glove" + }, + { + "emoji": "🥋", + "title": "Martial Arts Uniform" + }, + { + "emoji": "🥅", + "title": "Goal Net" + }, + { + "emoji": "⛳", + "title": "Flag in Hole" + }, + { + "emoji": "⛸️", + "title": "Ice Skate" + }, + { + "emoji": "🎣", + "title": "Fishing Pole" + }, + { + "emoji": "🎽", + "title": "Running Shirt" + }, + { + "emoji": "🎿", + "title": "Skis" + }, + { + "emoji": "🛷", + "title": "Sled" + }, + { + "emoji": "🥌", + "title": "Curling Stone" + }, + { + "emoji": "🎯", + "title": "Bullseye" + }, + { + "emoji": "🎱", + "title": "Pool 8 Ball" + }, + { + "emoji": "🎮", + "title": "Video Game" + }, + { + "emoji": "🎰", + "title": "Slot Machine" + }, + { + "emoji": "🎲", + "title": "Game Die" + }, + { + "emoji": "🧩", + "title": "Puzzle Piece" + }, + { + "emoji": "♟️", + "title": "Chess Pawn" + }, + { + "emoji": "🎭", + "title": "Performing Arts" + }, + { + "emoji": "🎨", + "title": "Artist Palette" + }, + { + "emoji": "🧵", + "title": "Thread" + }, + { + "emoji": "🧶", + "title": "Yarn" + }, + { + "emoji": "🎼", + "title": "Musical Score" + }, + { + "emoji": "🎤", + "title": "Microphone" + }, + { + "emoji": "🎧", + "title": "Headphone" + }, + { + "emoji": "🎷", + "title": "Saxophone" + }, + { + "emoji": "🪗", + "title": "Accordion" + }, + { + "emoji": "🎸", + "title": "Guitar" + }, + { + "emoji": "🎹", + "title": "Musical Keyboard" + }, + { + "emoji": "🎺", + "title": "Trumpet" + }, + { + "emoji": "🎻", + "title": "Violin" + }, + { + "emoji": "🥁", + "title": "Drum" + }, + { + "emoji": "🪘", + "title": "Long Drum" + }, + { + "emoji": "🎬", + "title": "Clapper Board" + }, + { + "emoji": "🏹", + "title": "Bow and Arrow" + } + ], + 'Travel-places': [ + { + "emoji": "🚣", + "title": "Person Rowing Boat" + }, + { + "emoji": "🗾", + "title": "Map of Japan" + }, + { + "emoji": "🏔️", + "title": "Snow-Capped Mountain" + }, + { + "emoji": "⛰️", + "title": "Mountain" + }, + { + "emoji": "🌋", + "title": "Volcano" + }, + { + "emoji": "🗻", + "title": "Mount Fuji" + }, + { + "emoji": "🏕️", + "title": "Camping" + }, + { + "emoji": "🏖️", + "title": "Beach with Umbrella" + }, + { + "emoji": "🏜️", + "title": "Desert" + }, + { + "emoji": "🏝️", + "title": "Desert Island" + }, + { + "emoji": "🏞️", + "title": "National Park" + }, + { + "emoji": "🏟️", + "title": "Stadium" + }, + { + "emoji": "🏛️", + "title": "Classical Building" + }, + { + "emoji": "🏗️", + "title": "Building Construction" + }, + { + "emoji": "🛖", + "title": "Hut" + }, + { + "emoji": "🏘️", + "title": "Houses" + }, + { + "emoji": "🏚️", + "title": "Derelict House" + }, + { + "emoji": "🏠", + "title": "House" + }, + { + "emoji": "🏡", + "title": "House with Garden" + }, + { + "emoji": "🏢", + "title": "Office Building" + }, + { + "emoji": "🏣", + "title": "Japanese Post Office" + }, + { + "emoji": "🏤", + "title": "Post Office" + }, + { + "emoji": "🏥", + "title": "Hospital" + }, + { + "emoji": "🏦", + "title": "Bank" + }, + { + "emoji": "🏨", + "title": "Hotel" + }, + { + "emoji": "🏩", + "title": "Love Hotel" + }, + { + "emoji": "🏪", + "title": "Convenience Store" + }, + { + "emoji": "🏫", + "title": "School" + }, + { + "emoji": "🏬", + "title": "Department Store" + }, + { + "emoji": "🏭", + "title": "Factory" + }, + { + "emoji": "🏯", + "title": "Japanese Castle" + }, + { + "emoji": "🏰", + "title": "Castle" + }, + { + "emoji": "💒", + "title": "Wedding" + }, + { + "emoji": "🗼", + "title": "Tokyo Tower" + }, + { + "emoji": "🗽", + "title": "Statue of Liberty" + }, + { + "emoji": "⛪", + "title": "Church" + }, + { + "emoji": "🕌", + "title": "Mosque" + }, + { + "emoji": "🛕", + "title": "Hindu Temple" + }, + { + "emoji": "🕍", + "title": "Synagogue" + }, + { + "emoji": "⛩️", + "title": "Shinto Shrine" + }, + { + "emoji": "🕋", + "title": "Kaaba" + }, + { + "emoji": "⛲", + "title": "Fountain" + }, + { + "emoji": "⛺", + "title": "Tent" + }, + { + "emoji": "🌁", + "title": "Foggy" + }, + { + "emoji": "🌃", + "title": "Night with Stars" + }, + { + "emoji": "🏙️", + "title": "Cityscape" + }, + { + "emoji": "🌄", + "title": "Sunrise Over Mountains" + }, + { + "emoji": "🌅", + "title": "Sunrise" + }, + { + "emoji": "🌆", + "title": "Cityscape at Dusk" + }, + { + "emoji": "🌇", + "title": "Sunset" + }, + { + "emoji": "🌉", + "title": "Bridge at Night" + }, + { + "emoji": "🎠", + "title": "Carousel Horse" + }, + { + "emoji": "🎡", + "title": "Ferris Wheel" + }, + { + "emoji": "🎢", + "title": "Roller Coaster" + }, + { + "emoji": "🚂", + "title": "Locomotive" + }, + { + "emoji": "🚃", + "title": "Railway Car" + }, + { + "emoji": "🚄", + "title": "High-Speed Train" + }, + { + "emoji": "🚅", + "title": "Bullet Train" + }, + { + "emoji": "🚆", + "title": "Train" + }, + { + "emoji": "🚇", + "title": "Metro" + }, + { + "emoji": "🚈", + "title": "Light Rail" + }, + { + "emoji": "🚉", + "title": "Station" + }, + { + "emoji": "🚊", + "title": "Tram" + }, + { + "emoji": "🚝", + "title": "Monorail" + }, + { + "emoji": "🚞", + "title": "Mountain Railway" + }, + { + "emoji": "🚋", + "title": "Tram Car" + }, + { + "emoji": "🚌", + "title": "Bus" + }, + { + "emoji": "🚍", + "title": "Oncoming Bus" + }, + { + "emoji": "🚎", + "title": "Trolleybus" + }, + { + "emoji": "🚐", + "title": "Minibus" + }, + { + "emoji": "🚑", + "title": "Ambulance" + }, + { + "emoji": "🚒", + "title": "Fire Engine" + }, + { + "emoji": "🚓", + "title": "Police Car" + }, + { + "emoji": "🚔", + "title": "Oncoming Police Car" + }, + { + "emoji": "🚕", + "title": "Taxi" + }, + { + "emoji": "🚖", + "title": "Oncoming Taxi" + }, + { + "emoji": "🚗", + "title": "Automobile" + }, + { + "emoji": "🚘", + "title": "Oncoming Automobile" + }, + { + "emoji": "🚙", + "title": "Sport Utility Vehicle" + }, + { + "emoji": "🛻", + "title": "Pickup Truck" + }, + { + "emoji": "🚚", + "title": "Delivery Truck" + }, + { + "emoji": "🚛", + "title": "Articulated Lorry" + }, + { + "emoji": "🚜", + "title": "Tractor" + }, + { + "emoji": "🏎️", + "title": "Racing Car" + }, + { + "emoji": "🏍️", + "title": "Motorcycle" + }, + { + "emoji": "🛵", + "title": "Motor Scooter" + }, + { + "emoji": "🛺", + "title": "Auto Rickshaw" + }, + { + "emoji": "🚲", + "title": "Bicycle" + }, + { + "emoji": "🛴", + "title": "Kick Scooter" + }, + { + "emoji": "🚏", + "title": "Bus Stop" + }, + { + "emoji": "🛣️", + "title": "Motorway" + }, + { + "emoji": "🛤️", + "title": "Railway Track" + }, + { + "emoji": "⛽", + "title": "Fuel Pump" + }, + { + "emoji": "🚨", + "title": "Police Car Light" + }, + { + "emoji": "🚥", + "title": "Horizontal Traffic Light" + }, + { + "emoji": "🚦", + "title": "Vertical Traffic Light" + }, + { + "emoji": "🚧", + "title": "Construction" + }, + { + "emoji": "⚓", + "title": "Anchor" + }, + { + "emoji": "⛵", + "title": "Sailboat" + }, + { + "emoji": "🚤", + "title": "Speedboat" + }, + { + "emoji": "🛳️", + "title": "Passenger Ship" + }, + { + "emoji": "⛴️", + "title": "Ferry" + }, + { + "emoji": "🛥️", + "title": "Motor Boat" + }, + { + "emoji": "🚢", + "title": "Ship" + }, + { + "emoji": "✈️", + "title": "Airplane" + }, + { + "emoji": "🛩️", + "title": "Small Airplane" + }, + { + "emoji": "🛫", + "title": "Airplane Departure" + }, + { + "emoji": "🛬", + "title": "Airplane Arrival" + }, + { + "emoji": "🪂", + "title": "Parachute" + }, + { + "emoji": "💺", + "title": "Seat" + }, + { + "emoji": "🚁", + "title": "Helicopter" + }, + { + "emoji": "🚟", + "title": "Suspension Railway" + }, + { + "emoji": "🚠", + "title": "Mountain Cableway" + }, + { + "emoji": "🚡", + "title": "Aerial Tramway" + }, + { + "emoji": "🛰️", + "title": "Satellite" + }, + { + "emoji": "🚀", + "title": "Rocket" + }, + { + "emoji": "🛸", + "title": "Flying Saucer" + }, + { + "emoji": "🪐", + "title": "Ringed Planet" + }, + { + "emoji": "🌠", + "title": "Shooting Star" + }, + { + "emoji": "🌌", + "title": "Milky Way" + }, + { + "emoji": "⛱️", + "title": "Umbrella on Ground" + }, + { + "emoji": "🎆", + "title": "Fireworks" + }, + { + "emoji": "🎇", + "title": "Sparkler" + }, + { + "emoji": "🎑", + "title": "Moon Viewing Ceremony" + }, + { + "emoji": "💴", + "title": "Yen Banknote" + }, + { + "emoji": "💵", + "title": "Dollar Banknote" + }, + { + "emoji": "💶", + "title": "Euro Banknote" + }, + { + "emoji": "💷", + "title": "Pound Banknote" + }, + { + "emoji": "🗿", + "title": "Moai" + }, + { + "emoji": "🛂", + "title": "Passport Control" + }, + { + "emoji": "🛃", + "title": "Customs" + }, + { + "emoji": "🛄", + "title": "Baggage Claim" + }, + { + "emoji": "🛅", + "title": "Left Luggage" + } + ], + 'Objects': [ + { + "emoji": "💌", + "title": "Love Letter" + }, + { + "emoji": "🕳️", + "title": "Hole" + }, + { + "emoji": "💣", + "title": "Bomb" + }, + { + "emoji": "🛀", + "title": "Person Taking Bath" + }, + { + "emoji": "🛌", + "title": "Person in Bed" + }, + { + "emoji": "🔪", + "title": "Kitchen Knife" + }, + { + "emoji": "🏺", + "title": "Amphora" + }, + { + "emoji": "🗺️", + "title": "World Map" + }, + { + "emoji": "🧭", + "title": "Compass" + }, + { + "emoji": "🧱", + "title": "Brick" + }, + { + "emoji": "💈", + "title": "Barber Pole" + }, + { + "emoji": "🦽", + "title": "Manual Wheelchair" + }, + { + "emoji": "🦼", + "title": "Motorized Wheelchair" + }, + { + "emoji": "🛢️", + "title": "Oil Drum" + }, + { + "emoji": "🛎️", + "title": "Bellhop Bell" + }, + { + "emoji": "🧳", + "title": "Luggage" + }, + { + "emoji": "⌛", + "title": "Hourglass Done" + }, + { + "emoji": "⏳", + "title": "Hourglass Not Done" + }, + { + "emoji": "⌚", + "title": "Watch" + }, + { + "emoji": "⏰", + "title": "Alarm Clock" + }, + { + "emoji": "⏱️", + "title": "Stopwatch" + }, + { + "emoji": "⏲️", + "title": "Timer Clock" + }, + { + "emoji": "🕰️", + "title": "Mantelpiece Clock" + }, + { + "emoji": "🌡️", + "title": "Thermometer" + }, + { + "emoji": "⛱️", + "title": "Umbrella on Ground" + }, + { + "emoji": "🧨", + "title": "Firecracker" + }, + { + "emoji": "🎈", + "title": "Balloon" + }, + { + "emoji": "🎉", + "title": "Party Popper" + }, + { + "emoji": "🎊", + "title": "Confetti Ball" + }, + { + "emoji": "🎎", + "title": "Japanese Dolls" + }, + { + "emoji": "🎏", + "title": "Carp Streamer" + }, + { + "emoji": "🎐", + "title": "Wind Chime" + }, + { + "emoji": "🧧", + "title": "Red Envelope" + }, + { + "emoji": "🎀", + "title": "Ribbon" + }, + { + "emoji": "🎁", + "title": "Wrapped Gift" + }, + { + "emoji": "🤿", + "title": "Diving Mask" + }, + { + "emoji": "🪀", + "title": "Yo-Yo" + }, + { + "emoji": "🪁", + "title": "Kite" + }, + { + "emoji": "🔮", + "title": "Crystal Ball" + }, + { + "emoji": "🪄", + "title": "Magic Wand" + }, + { + "emoji": "🧿", + "title": "Nazar Amulet" + }, + { + "emoji": "🕹️", + "title": "Joystick" + }, + { + "emoji": "🧸", + "title": "Teddy Bear" + }, + { + "emoji": "🪅", + "title": "Piñata" + }, + { + "emoji": "🪆", + "title": "Nesting Dolls" + }, + { + "emoji": "🖼️", + "title": "Framed Picture" + }, + { + "emoji": "🧵", + "title": "Thread" + }, + { + "emoji": "🪡", + "title": "Sewing Needle" + }, + { + "emoji": "🧶", + "title": "Yarn" + }, + { + "emoji": "🪢", + "title": "Knot" + }, + { + "emoji": "🛍️", + "title": "Shopping Bags" + }, + { + "emoji": "📿", + "title": "Prayer Beads" + }, + { + "emoji": "💎", + "title": "Gem Stone" + }, + { + "emoji": "📯", + "title": "Postal Horn" + }, + { + "emoji": "🎙️", + "title": "Studio Microphone" + }, + { + "emoji": "🎚️", + "title": "Level Slider" + }, + { + "emoji": "🎛️", + "title": "Control Knobs" + }, + { + "emoji": "📻", + "title": "Radio" + }, + { + "emoji": "🪕", + "title": "Banjo" + }, + { + "emoji": "📱", + "title": "Mobile Phone" + }, + { + "emoji": "📲", + "title": "Mobile Phone with Arrow" + }, + { + "emoji": "☎️", + "title": "Telephone" + }, + { + "emoji": "📞", + "title": "Telephone Receiver" + }, + { + "emoji": "📟", + "title": "Pager" + }, + { + "emoji": "📠", + "title": "Fax Machine" + }, + { + "emoji": "🔋", + "title": "Battery" + }, + { + "emoji": "🔌", + "title": "Electric Plug" + }, + { + "emoji": "💻", + "title": "Laptop" + }, + { + "emoji": "🖥️", + "title": "Desktop Computer" + }, + { + "emoji": "🖨️", + "title": "Printer" + }, + { + "emoji": "⌨️", + "title": "Keyboard" + }, + { + "emoji": "🖱️", + "title": "Computer Mouse" + }, + { + "emoji": "🖲️", + "title": "Trackball" + }, + { + "emoji": "💽", + "title": "Computer Disk" + }, + { + "emoji": "💾", + "title": "Floppy Disk" + }, + { + "emoji": "💿", + "title": "Optical Disk" + }, + { + "emoji": "📀", + "title": "DVD" + }, + { + "emoji": "🧮", + "title": "Abacus" + }, + { + "emoji": "🎥", + "title": "Movie Camera" + }, + { + "emoji": "🎞️", + "title": "Film Frames" + }, + { + "emoji": "📽️", + "title": "Film Projector" + }, + { + "emoji": "📺", + "title": "Television" + }, + { + "emoji": "📷", + "title": "Camera" + }, + { + "emoji": "📸", + "title": "Camera with Flash" + }, + { + "emoji": "📹", + "title": "Video Camera" + }, + { + "emoji": "📼", + "title": "Videocassette" + }, + { + "emoji": "🔍", + "title": "Magnifying Glass Tilted Left" + }, + { + "emoji": "🔎", + "title": "Magnifying Glass Tilted Right" + }, + { + "emoji": "🕯️", + "title": "Candle" + }, + { + "emoji": "💡", + "title": "Light Bulb" + }, + { + "emoji": "🔦", + "title": "Flashlight" + }, + { + "emoji": "🏮", + "title": "Red Paper Lantern" + }, + { + "emoji": "🪔", + "title": "Diya Lamp" + }, + { + "emoji": "📔", + "title": "Notebook with Decorative Cover" + }, + { + "emoji": "📕", + "title": "Closed Book" + }, + { + "emoji": "📖", + "title": "Open Book" + }, + { + "emoji": "📗", + "title": "Green Book" + }, + { + "emoji": "📘", + "title": "Blue Book" + }, + { + "emoji": "📙", + "title": "Orange Book" + }, + { + "emoji": "📚", + "title": "Books" + }, + { + "emoji": "📓", + "title": "Notebook" + }, + { + "emoji": "📒", + "title": "Ledger" + }, + { + "emoji": "📃", + "title": "Page with Curl" + }, + { + "emoji": "📜", + "title": "Scroll" + }, + { + "emoji": "📄", + "title": "Page Facing Up" + }, + { + "emoji": "📰", + "title": "Newspaper" + }, + { + "emoji": "🗞️", + "title": "Rolled-Up Newspaper" + }, + { + "emoji": "📑", + "title": "Bookmark Tabs" + }, + { + "emoji": "🔖", + "title": "Bookmark" + }, + { + "emoji": "🏷️", + "title": "Label" + }, + { + "emoji": "💰", + "title": "Money Bag" + }, + { + "emoji": "🪙", + "title": "Coin" + }, + { + "emoji": "💴", + "title": "Yen Banknote" + }, + { + "emoji": "💵", + "title": "Dollar Banknote" + }, + { + "emoji": "💶", + "title": "Euro Banknote" + }, + { + "emoji": "💷", + "title": "Pound Banknote" + }, + { + "emoji": "💸", + "title": "Money with Wings" + }, + { + "emoji": "💳", + "title": "Credit Card" + }, + { + "emoji": "🧾", + "title": "Receipt" + }, + { + "emoji": "✉️", + "title": "Envelope" + }, + { + "emoji": "📧", + "title": "E-Mail" + }, + { + "emoji": "📨", + "title": "Incoming Envelope" + }, + { + "emoji": "📩", + "title": "Envelope with Arrow" + }, + { + "emoji": "📤", + "title": "Outbox Tray" + }, + { + "emoji": "📥", + "title": "Inbox Tray" + }, + { + "emoji": "📦", + "title": "Package" + }, + { + "emoji": "📫", + "title": "Closed Mailbox with Raised Flag" + }, + { + "emoji": "📪", + "title": "Closed Mailbox with Lowered Flag" + }, + { + "emoji": "📬", + "title": "Open Mailbox with Raised Flag" + }, + { + "emoji": "📭", + "title": "Open Mailbox with Lowered Flag" + }, + { + "emoji": "📮", + "title": "Postbox" + }, + { + "emoji": "🗳️", + "title": "Ballot Box with Ballot" + }, + { + "emoji": "✏️", + "title": "Pencil" + }, + { + "emoji": "✒️", + "title": "Black Nib" + }, + { + "emoji": "🖋️", + "title": "Fountain Pen" + }, + { + "emoji": "🖊️", + "title": "Pen" + }, + { + "emoji": "🖌️", + "title": "Paintbrush" + }, + { + "emoji": "🖍️", + "title": "Crayon" + }, + { + "emoji": "📝", + "title": "Memo" + }, + { + "emoji": "📁", + "title": "File Folder" + }, + { + "emoji": "📂", + "title": "Open File Folder" + }, + { + "emoji": "🗂️", + "title": "Card Index Dividers" + }, + { + "emoji": "📅", + "title": "Calendar" + }, + { + "emoji": "📆", + "title": "Tear-Off Calendar" + }, + { + "emoji": "🗒️", + "title": "Spiral Notepad" + }, + { + "emoji": "🗓️", + "title": "Spiral Calendar" + }, + { + "emoji": "📇", + "title": "Card Index" + }, + { + "emoji": "📈", + "title": "Chart Increasing" + }, + { + "emoji": "📉", + "title": "Chart Decreasing" + }, + { + "emoji": "📊", + "title": "Bar Chart" + }, + { + "emoji": "📋", + "title": "Clipboard" + }, + { + "emoji": "📌", + "title": "Pushpin" + }, + { + "emoji": "📍", + "title": "Round Pushpin" + }, + { + "emoji": "📎", + "title": "Paperclip" + }, + { + "emoji": "🖇️", + "title": "Linked Paperclips" + }, + { + "emoji": "📏", + "title": "Straight Ruler" + }, + { + "emoji": "📐", + "title": "Triangular Ruler" + }, + { + "emoji": "✂️", + "title": "Scissors" + }, + { + "emoji": "🗃️", + "title": "Card File Box" + }, + { + "emoji": "🗄️", + "title": "File Cabinet" + }, + { + "emoji": "🗑️", + "title": "Wastebasket" + }, + { + "emoji": "🔒", + "title": "Locked" + }, + { + "emoji": "🔓", + "title": "Unlocked" + }, + { + "emoji": "🔏", + "title": "Locked with Pen" + }, + { + "emoji": "🔐", + "title": "Locked with Key" + }, + { + "emoji": "🔑", + "title": "Key" + }, + { + "emoji": "🗝️", + "title": "Old Key" + }, + { + "emoji": "🔨", + "title": "Hammer" + }, + { + "emoji": "🪓", + "title": "Axe" + }, + { + "emoji": "⛏️", + "title": "Pick" + }, + { + "emoji": "⚒️", + "title": "Hammer and Pick" + }, + { + "emoji": "🛠️", + "title": "Hammer and Wrench" + }, + { + "emoji": "🗡️", + "title": "Dagger" + }, + { + "emoji": "⚔️", + "title": "Crossed Swords" + }, + { + "emoji": "🔫", + "title": "Water Pistol" + }, + { + "emoji": "🪃", + "title": "Boomerang" + }, + { + "emoji": "🛡️", + "title": "Shield" + }, + { + "emoji": "🪚", + "title": "Carpentry Saw" + }, + { + "emoji": "🔧", + "title": "Wrench" + }, + { + "emoji": "🪛", + "title": "Screwdriver" + }, + { + "emoji": "🔩", + "title": "Nut and Bolt" + }, + { + "emoji": "⚙️", + "title": "Gear" + }, + { + "emoji": "🗜️", + "title": "Clamp" + }, + { + "emoji": "⚖️", + "title": "Balance Scale" + }, + { + "emoji": "🦯", + "title": "White Cane" + }, + { + "emoji": "🔗", + "title": "Link" + }, + { + "emoji": "⛓️", + "title": "Chains" + }, + { + "emoji": "🪝", + "title": "Hook" + }, + { + "emoji": "🧰", + "title": "Toolbox" + }, + { + "emoji": "🧲", + "title": "Magnet" + }, + { + "emoji": "🪜", + "title": "Ladder" + }, + { + "emoji": "⚗️", + "title": "Alembic" + }, + { + "emoji": "🧪", + "title": "Test Tube" + }, + { + "emoji": "🧫", + "title": "Petri Dish" + }, + { + "emoji": "🧬", + "title": "DNA" + }, + { + "emoji": "🔬", + "title": "Microscope" + }, + { + "emoji": "🔭", + "title": "Telescope" + }, + { + "emoji": "📡", + "title": "Satellite Antenna" + }, + { + "emoji": "💉", + "title": "Syringe" + }, + { + "emoji": "🩸", + "title": "Drop of Blood" + }, + { + "emoji": "💊", + "title": "Pill" + }, + { + "emoji": "🩹", + "title": "Adhesive Bandage" + }, + { + "emoji": "🩺", + "title": "Stethoscope" + }, + { + "emoji": "🚪", + "title": "Door" + }, + { + "emoji": "🪞", + "title": "Mirror" + }, + { + "emoji": "🪟", + "title": "Window" + }, + { + "emoji": "🛏️", + "title": "Bed" + }, + { + "emoji": "🛋️", + "title": "Couch and Lamp" + }, + { + "emoji": "🪑", + "title": "Chair" + }, + { + "emoji": "🚽", + "title": "Toilet" + }, + { + "emoji": "🪠", + "title": "Plunger" + }, + { + "emoji": "🚿", + "title": "Shower" + }, + { + "emoji": "🛁", + "title": "Bathtub" + }, + { + "emoji": "🪤", + "title": "Mouse Trap" + }, + { + "emoji": "🪒", + "title": "Razor" + }, + { + "emoji": "🧴", + "title": "Lotion Bottle" + }, + { + "emoji": "🧷", + "title": "Safety Pin" + }, + { + "emoji": "🧹", + "title": "Broom" + }, + { + "emoji": "🧺", + "title": "Basket" + }, + { + "emoji": "🧻", + "title": "Roll of Paper" + }, + { + "emoji": "🪣", + "title": "Bucket" + }, + { + "emoji": "🧼", + "title": "Soap" + }, + { + "emoji": "🪥", + "title": "Toothbrush" + }, + { + "emoji": "🧽", + "title": "Sponge" + }, + { + "emoji": "🧯", + "title": "Fire Extinguisher" + }, + { + "emoji": "🛒", + "title": "Shopping Cart" + }, + { + "emoji": "🚬", + "title": "Cigarette" + }, + { + "emoji": "⚰️", + "title": "Coffin" + }, + { + "emoji": "🪦", + "title": "Headstone" + }, + { + "emoji": "⚱️", + "title": "Funeral Urn" + }, + { + "emoji": "🗿", + "title": "Moai" + }, + { + "emoji": "🪧", + "title": "Placard" + }, + { + "emoji": "🚰", + "title": "Potable Water" + } + ], + 'Symbols': [ + { + "emoji": "💘", + "title": "Heart with Arrow" + }, + { + "emoji": "💝", + "title": "Heart with Ribbon" + }, + { + "emoji": "💖", + "title": "Sparkling Heart" + }, + { + "emoji": "💗", + "title": "Growing Heart" + }, + { + "emoji": "💓", + "title": "Beating Heart" + }, + { + "emoji": "💞", + "title": "Revolving Hearts" + }, + { + "emoji": "💕", + "title": "Two Hearts" + }, + { + "emoji": "💟", + "title": "Heart Decoration" + }, + { + "emoji": "❣️", + "title": "Heart Exclamation" + }, + { + "emoji": "💔", + "title": "Broken Heart" + }, + { + "emoji": "❤️‍🔥", + "title": "Heart on Fire" + }, + { + "emoji": "❤️‍🩹", + "title": "Mending Heart" + }, + { + "emoji": "❤️", + "title": "Red Heart" + }, + { + "emoji": "🧡", + "title": "Orange Heart" + }, + { + "emoji": "💛", + "title": "Yellow Heart" + }, + { + "emoji": "💚", + "title": "Green Heart" + }, + { + "emoji": "💙", + "title": "Blue Heart" + }, + { + "emoji": "💜", + "title": "Purple Heart" + }, + { + "emoji": "🤎", + "title": "Brown Heart" + }, + { + "emoji": "🖤", + "title": "Black Heart" + }, + { + "emoji": "🤍", + "title": "White Heart" + }, + { + "emoji": "💯", + "title": "Hundred Points" + }, + { + "emoji": "💢", + "title": "Anger Symbol" + }, + { + "emoji": "💬", + "title": "Speech Balloon" + }, + { + "emoji": "👁️‍🗨️", + "title": "Eye in Speech Bubble" + }, + { + "emoji": "🗨️", + "title": "Left Speech Bubble" + }, + { + "emoji": "🗯️", + "title": "Right Anger Bubble" + }, + { + "emoji": "💭", + "title": "Thought Balloon" + }, + { + "emoji": "💤", + "title": "Zzz" + }, + { + "emoji": "💮", + "title": "White Flower" + }, + { + "emoji": "♨️", + "title": "Hot Springs" + }, + { + "emoji": "💈", + "title": "Barber Pole" + }, + { + "emoji": "🛑", + "title": "Stop Sign" + }, + { + "emoji": "🕛", + "title": "Twelve O’Clock" + }, + { + "emoji": "🕧", + "title": "Twelve-Thirty" + }, + { + "emoji": "🕐", + "title": "One O’Clock" + }, + { + "emoji": "🕜", + "title": "One-Thirty" + }, + { + "emoji": "🕑", + "title": "Two O’Clock" + }, + { + "emoji": "🕝", + "title": "Two-Thirty" + }, + { + "emoji": "🕒", + "title": "Three O’Clock" + }, + { + "emoji": "🕞", + "title": "Three-Thirty" + }, + { + "emoji": "🕓", + "title": "Four O’Clock" + }, + { + "emoji": "🕟", + "title": "Four-Thirty" + }, + { + "emoji": "🕔", + "title": "Five O’Clock" + }, + { + "emoji": "🕠", + "title": "Five-Thirty" + }, + { + "emoji": "🕕", + "title": "Six O’Clock" + }, + { + "emoji": "🕡", + "title": "Six-Thirty" + }, + { + "emoji": "🕖", + "title": "Seven O’Clock" + }, + { + "emoji": "🕢", + "title": "Seven-Thirty" + }, + { + "emoji": "🕗", + "title": "Eight O’Clock" + }, + { + "emoji": "🕣", + "title": "Eight-Thirty" + }, + { + "emoji": "🕘", + "title": "Nine O’Clock" + }, + { + "emoji": "🕤", + "title": "Nine-Thirty" + }, + { + "emoji": "🕙", + "title": "Ten O’Clock" + }, + { + "emoji": "🕥", + "title": "Ten-Thirty" + }, + { + "emoji": "🕚", + "title": "Eleven O’Clock" + }, + { + "emoji": "🕦", + "title": "Eleven-Thirty" + }, + { + "emoji": "🌀", + "title": "Cyclone" + }, + { + "emoji": "♠️", + "title": "Spade Suit" + }, + { + "emoji": "♥️", + "title": "Heart Suit" + }, + { + "emoji": "♦️", + "title": "Diamond Suit" + }, + { + "emoji": "♣️", + "title": "Club Suit" + }, + { + "emoji": "🃏", + "title": "Joker" + }, + { + "emoji": "🀄", + "title": "Mahjong Red Dragon" + }, + { + "emoji": "🎴", + "title": "Flower Playing Cards" + }, + { + "emoji": "🔇", + "title": "Muted Speaker" + }, + { + "emoji": "🔈", + "title": "Speaker Low Volume" + }, + { + "emoji": "🔉", + "title": "Speaker Medium Volume" + }, + { + "emoji": "🔊", + "title": "Speaker High Volume" + }, + { + "emoji": "📢", + "title": "Loudspeaker" + }, + { + "emoji": "📣", + "title": "Megaphone" + }, + { + "emoji": "📯", + "title": "Postal Horn" + }, + { + "emoji": "🔔", + "title": "Bell" + }, + { + "emoji": "🔕", + "title": "Bell with Slash" + }, + { + "emoji": "🎵", + "title": "Musical Note" + }, + { + "emoji": "🎶", + "title": "Musical Notes" + }, + { + "emoji": "💹", + "title": "Chart Increasing with Yen" + }, + { + "emoji": "🛗", + "title": "Elevator" + }, + { + "emoji": "🏧", + "title": "ATM Sign" + }, + { + "emoji": "🚮", + "title": "Litter in Bin Sign" + }, + { + "emoji": "🚰", + "title": "Potable Water" + }, + { + "emoji": "♿", + "title": "Wheelchair Symbol" + }, + { + "emoji": "🚹", + "title": "Men’s Room" + }, + { + "emoji": "🚺", + "title": "Women’s Room" + }, + { + "emoji": "🚻", + "title": "Restroom" + }, + { + "emoji": "🚼", + "title": "Baby Symbol" + }, + { + "emoji": "🚾", + "title": "Water Closet" + }, + { + "emoji": "⚠️", + "title": "Warning" + }, + { + "emoji": "🚸", + "title": "Children Crossing" + }, + { + "emoji": "⛔", + "title": "No Entry" + }, + { + "emoji": "🚫", + "title": "Prohibited" + }, + { + "emoji": "🚳", + "title": "No Bicycles" + }, + { + "emoji": "🚭", + "title": "No Smoking" + }, + { + "emoji": "🚯", + "title": "No Littering" + }, + { + "emoji": "🚱", + "title": "Non-Potable Water" + }, + { + "emoji": "🚷", + "title": "No Pedestrians" + }, + { + "emoji": "📵", + "title": "No Mobile Phones" + }, + { + "emoji": "🔞", + "title": "No One Under Eighteen" + }, + { + "emoji": "☢️", + "title": "Radioactive" + }, + { + "emoji": "☣️", + "title": "Biohazard" + }, + { + "emoji": "⬆️", + "title": "Up Arrow" + }, + { + "emoji": "↗️", + "title": "Up-Right Arrow" + }, + { + "emoji": "➡️", + "title": "Right Arrow" + }, + { + "emoji": "↘️", + "title": "Down-Right Arrow" + }, + { + "emoji": "⬇️", + "title": "Down Arrow" + }, + { + "emoji": "↙️", + "title": "Down-Left Arrow" + }, + { + "emoji": "⬅️", + "title": "Left Arrow" + }, + { + "emoji": "↖️", + "title": "Up-Left Arrow" + }, + { + "emoji": "↕️", + "title": "Up-Down Arrow" + }, + { + "emoji": "↔️", + "title": "Left-Right Arrow" + }, + { + "emoji": "↩️", + "title": "Right Arrow Curving Left" + }, + { + "emoji": "↪️", + "title": "Left Arrow Curving Right" + }, + { + "emoji": "⤴️", + "title": "Right Arrow Curving Up" + }, + { + "emoji": "⤵️", + "title": "Right Arrow Curving Down" + }, + { + "emoji": "🔃", + "title": "Clockwise Vertical Arrows" + }, + { + "emoji": "🔄", + "title": "Counterclockwise Arrows Button" + }, + { + "emoji": "🔙", + "title": "Back Arrow" + }, + { + "emoji": "🔚", + "title": "End Arrow" + }, + { + "emoji": "🔛", + "title": "On! Arrow" + }, + { + "emoji": "🔜", + "title": "Soon Arrow" + }, + { + "emoji": "🔝", + "title": "Top Arrow" + }, + { + "emoji": "🛐", + "title": "Place of Worship" + }, + { + "emoji": "⚛️", + "title": "Atom Symbol" + }, + { + "emoji": "🕉️", + "title": "Om" + }, + { + "emoji": "✡️", + "title": "Star of David" + }, + { + "emoji": "☸️", + "title": "Wheel of Dharma" + }, + { + "emoji": "☯️", + "title": "Yin Yang" + }, + { + "emoji": "✝️", + "title": "Latin Cross" + }, + { + "emoji": "☦️", + "title": "Orthodox Cross" + }, + { + "emoji": "☪️", + "title": "Star and Crescent" + }, + { + "emoji": "☮️", + "title": "Peace Symbol" + }, + { + "emoji": "🕎", + "title": "Menorah" + }, + { + "emoji": "🔯", + "title": "Dotted Six-Pointed Star" + }, + { + "emoji": "♈", + "title": "Aries" + }, + { + "emoji": "♉", + "title": "Taurus" + }, + { + "emoji": "♊", + "title": "Gemini" + }, + { + "emoji": "♋", + "title": "Cancer" + }, + { + "emoji": "♌", + "title": "Leo" + }, + { + "emoji": "♍", + "title": "Virgo" + }, + { + "emoji": "♎", + "title": "Libra" + }, + { + "emoji": "♏", + "title": "Scorpio" + }, + { + "emoji": "♐", + "title": "Sagittarius" + }, + { + "emoji": "♑", + "title": "Capricorn" + }, + { + "emoji": "♒", + "title": "Aquarius" + }, + { + "emoji": "♓", + "title": "Pisces" + }, + { + "emoji": "⛎", + "title": "Ophiuchus" + }, + { + "emoji": "🔀", + "title": "Shuffle Tracks Button" + }, + { + "emoji": "🔁", + "title": "Repeat Button" + }, + { + "emoji": "🔂", + "title": "Repeat Single Button" + }, + { + "emoji": "▶️", + "title": "Play Button" + }, + { + "emoji": "⏩", + "title": "Fast-Forward Button" + }, + { + "emoji": "⏭️", + "title": "Next Track Button" + }, + { + "emoji": "⏯️", + "title": "Play or Pause Button" + }, + { + "emoji": "◀️", + "title": "Reverse Button" + }, + { + "emoji": "⏪", + "title": "Fast Reverse Button" + }, + { + "emoji": "⏮️", + "title": "Last Track Button" + }, + { + "emoji": "🔼", + "title": "Upwards Button" + }, + { + "emoji": "⏫", + "title": "Fast Up Button" + }, + { + "emoji": "🔽", + "title": "Downwards Button" + }, + { + "emoji": "⏬", + "title": "Fast Down Button" + }, + { + "emoji": "⏸️", + "title": "Pause Button" + }, + { + "emoji": "⏹️", + "title": "Stop Button" + }, + { + "emoji": "⏺️", + "title": "Record Button" + }, + { + "emoji": "⏏️", + "title": "Eject Button" + }, + { + "emoji": "🎦", + "title": "Cinema" + }, + { + "emoji": "🔅", + "title": "Dim Button" + }, + { + "emoji": "🔆", + "title": "Bright Button" + }, + { + "emoji": "📶", + "title": "Antenna Bars" + }, + { + "emoji": "📳", + "title": "Vibration Mode" + }, + { + "emoji": "📴", + "title": "Mobile Phone Off" + }, + { + "emoji": "♀️", + "title": "Female Sign" + }, + { + "emoji": "♂️", + "title": "Male Sign" + }, + { + "emoji": "✖️", + "title": "Multiply" + }, + { + "emoji": "➕", + "title": "Plus" + }, + { + "emoji": "➖", + "title": "Minus" + }, + { + "emoji": "➗", + "title": "Divide" + }, + { + "emoji": "♾️", + "title": "Infinity" + }, + { + "emoji": "‼️", + "title": "‼ Double Exclamation Mark" + }, + { + "emoji": "⁉️", + "title": "⁉ Exclamation Question Mark" + }, + { + "emoji": "❓", + "title": "Red Question Mark" + }, + { + "emoji": "❔", + "title": "White Question Mark" + }, + { + "emoji": "❕", + "title": "White Exclamation Mark" + }, + { + "emoji": "❗", + "title": "Red Exclamation Mark" + }, + { + "emoji": "〰️", + "title": "〰 Wavy Dash" + }, + { + "emoji": "💱", + "title": "Currency Exchange" + }, + { + "emoji": "💲", + "title": "Heavy Dollar Sign" + }, + { + "emoji": "⚕️", + "title": "Medical Symbol" + }, + { + "emoji": "♻️", + "title": "Recycling Symbol" + }, + { + "emoji": "⚜️", + "title": "Fleur-de-lis" + }, + { + "emoji": "🔱", + "title": "Trident Emblem" + }, + { + "emoji": "📛", + "title": "Name Badge" + }, + { + "emoji": "🔰", + "title": "Japanese Symbol for Beginner" + }, + { + "emoji": "⭕", + "title": "Hollow Red Circle" + }, + { + "emoji": "✅", + "title": "Check Mark Button" + }, + { + "emoji": "☑️", + "title": "Check Box with Check" + }, + { + "emoji": "✔️", + "title": "Check Mark" + }, + { + "emoji": "❌", + "title": "Cross Mark" + }, + { + "emoji": "❎", + "title": "Cross Mark Button" + }, + { + "emoji": "➰", + "title": "Curly Loop" + }, + { + "emoji": "➿", + "title": "Double Curly Loop" + }, + { + "emoji": "〽️", + "title": "〽 Part Alternation Mark" + }, + { + "emoji": "✳️", + "title": "Eight-Spoked Asterisk" + }, + { + "emoji": "✴️", + "title": "Eight-Pointed Star" + }, + { + "emoji": "❇️", + "title": "Sparkle" + }, + { + "emoji": "©️", + "title": "Copyright" + }, + { + "emoji": "®️", + "title": "Registered" + }, + { + "emoji": "™️", + "title": "Trade Mark" + }, + { + "emoji": "#️⃣", + "title": "# Keycap Number Sign" + }, + { + "emoji": "*️⃣", + "title": "* Keycap Asterisk" + }, + { + "emoji": "0️⃣", + "title": "0 Keycap Digit Zero" + }, + { + "emoji": "1️⃣", + "title": "1 Keycap Digit One" + }, + { + "emoji": "2️⃣", + "title": "2 Keycap Digit Two" + }, + { + "emoji": "3️⃣", + "title": "3 Keycap Digit Three" + }, + { + "emoji": "4️⃣", + "title": "4 Keycap Digit Four" + }, + { + "emoji": "5️⃣", + "title": "5 Keycap Digit Five" + }, + { + "emoji": "6️⃣", + "title": "6 Keycap Digit Six" + }, + { + "emoji": "7️⃣", + "title": "7 Keycap Digit Seven" + }, + { + "emoji": "8️⃣", + "title": "8 Keycap Digit Eight" + }, + { + "emoji": "9️⃣", + "title": "9 Keycap Digit Nine" + }, + { + "emoji": "🔟", + "title": "Keycap: 10" + }, + { + "emoji": "🔠", + "title": "Input Latin Uppercase" + }, + { + "emoji": "🔡", + "title": "Input Latin Lowercase" + }, + { + "emoji": "🔢", + "title": "Input Numbers" + }, + { + "emoji": "🔣", + "title": "Input Symbols" + }, + { + "emoji": "🔤", + "title": "Input Latin Letters" + }, + { + "emoji": "🅰️", + "title": "A Button (Blood Type)" + }, + { + "emoji": "🆎", + "title": "AB Button (Blood Type)" + }, + { + "emoji": "🅱️", + "title": "B Button (Blood Type)" + }, + { + "emoji": "🆑", + "title": "CL Button" + }, + { + "emoji": "🆒", + "title": "Cool Button" + }, + { + "emoji": "🆓", + "title": "Free Button" + }, + { + "emoji": "ℹ️", + "title": "ℹ Information" + }, + { + "emoji": "🆔", + "title": "ID Button" + }, + { + "emoji": "Ⓜ️", + "title": "Circled M" + }, + { + "emoji": "🆕", + "title": "New Button" + }, + { + "emoji": "🆖", + "title": "NG Button" + }, + { + "emoji": "🅾️", + "title": "O Button (Blood Type)" + }, + { + "emoji": "🆗", + "title": "OK Button" + }, + { + "emoji": "🅿️", + "title": "P Button" + }, + { + "emoji": "🆘", + "title": "SOS Button" + }, + { + "emoji": "🆙", + "title": "Up! Button" + }, + { + "emoji": "🆚", + "title": "Vs Button" + }, + { + "emoji": "🈁", + "title": "Japanese “Here” Button" + }, + { + "emoji": "🈂️", + "title": "Japanese “Service Charge” Button" + }, + { + "emoji": "🈷️", + "title": "Japanese “Monthly Amount” Button" + }, + { + "emoji": "🈶", + "title": "Japanese “Not Free of Charge” Button" + }, + { + "emoji": "🈯", + "title": "Japanese “Reserved” Button" + }, + { + "emoji": "🉐", + "title": "Japanese “Bargain” Button" + }, + { + "emoji": "🈹", + "title": "Japanese “Discount” Button" + }, + { + "emoji": "🈚", + "title": "Japanese “Free of Charge” Button" + }, + { + "emoji": "🈲", + "title": "Japanese “Prohibited” Button" + }, + { + "emoji": "🉑", + "title": "Japanese “Acceptable” Button" + }, + { + "emoji": "🈸", + "title": "Japanese “Application” Button" + }, + { + "emoji": "🈴", + "title": "Japanese “Passing Grade” Button" + }, + { + "emoji": "🈳", + "title": "Japanese “Vacancy” Button" + }, + { + "emoji": "㊗️", + "title": "Japanese “Congratulations” Button" + }, + { + "emoji": "㊙️", + "title": "Japanese “Secret” Button" + }, + { + "emoji": "🈺", + "title": "Japanese “Open for Business” Button" + }, + { + "emoji": "🈵", + "title": "Japanese “No Vacancy” Button" + }, + { + "emoji": "🔴", + "title": "Red Circle" + }, + { + "emoji": "🟠", + "title": "Orange Circle" + }, + { + "emoji": "🟡", + "title": "Yellow Circle" + }, + { + "emoji": "🟢", + "title": "Green Circle" + }, + { + "emoji": "🔵", + "title": "Blue Circle" + }, + { + "emoji": "🟣", + "title": "Purple Circle" + }, + { + "emoji": "🟤", + "title": "Brown Circle" + }, + { + "emoji": "⚫", + "title": "Black Circle" + }, + { + "emoji": "⚪", + "title": "White Circle" + }, + { + "emoji": "🟥", + "title": "Red Square" + }, + { + "emoji": "🟧", + "title": "Orange Square" + }, + { + "emoji": "🟨", + "title": "Yellow Square" + }, + { + "emoji": "🟩", + "title": "Green Square" + }, + { + "emoji": "🟦", + "title": "Blue Square" + }, + { + "emoji": "🟪", + "title": "Purple Square" + }, + { + "emoji": "🟫", + "title": "Brown Square" + }, + { + "emoji": "⬛", + "title": "Black Large Square" + }, + { + "emoji": "⬜", + "title": "White Large Square" + }, + { + "emoji": "◼️", + "title": "Black Medium Square" + }, + { + "emoji": "◻️", + "title": "White Medium Square" + }, + { + "emoji": "◾", + "title": "Black Medium-Small Square" + }, + { + "emoji": "◽", + "title": "White Medium-Small Square" + }, + { + "emoji": "▪️", + "title": "Black Small Square" + }, + { + "emoji": "▫️", + "title": "White Small Square" + }, + { + "emoji": "🔶", + "title": "Large Orange Diamond" + }, + { + "emoji": "🔷", + "title": "Large Blue Diamond" + }, + { + "emoji": "🔸", + "title": "Small Orange Diamond" + }, + { + "emoji": "🔹", + "title": "Small Blue Diamond" + }, + { + "emoji": "🔺", + "title": "Red Triangle Pointed Up" + }, + { + "emoji": "🔻", + "title": "Red Triangle Pointed Down" + }, + { + "emoji": "💠", + "title": "Diamond with a Dot" + }, + { + "emoji": "🔘", + "title": "Radio Button" + }, + { + "emoji": "🔳", + "title": "White Square Button" + }, + { + "emoji": "🔲", + "title": "Black Square Button" + } + ], + 'Flags': [ + { + "emoji": "🏁", + "title": "Chequered Flag" + }, + { + "emoji": "🚩", + "title": "Triangular Flag" + }, + { + "emoji": "🎌", + "title": "Crossed Flags" + }, + { + "emoji": "🏴", + "title": "Black Flag" + }, + { + "emoji": "🏳️", + "title": "White Flag" + }, + { + "emoji": "🏳️‍🌈", + "title": "Rainbow Flag" + }, + { + "emoji": "🏳️‍⚧️", + "title": "Transgender Flag" + }, + { + "emoji": "🏴‍☠️", + "title": "Pirate Flag" + }, + { + "emoji": "🇦🇨", + "title": "Flag: Ascension Island" + }, + { + "emoji": "🇦🇩", + "title": "Flag: Andorra" + }, + { + "emoji": "🇦🇪", + "title": "Flag: United Arab Emirates" + }, + { + "emoji": "🇦🇫", + "title": "Flag: Afghanistan" + }, + { + "emoji": "🇦🇬", + "title": "Flag: Antigua & Barbuda" + }, + { + "emoji": "🇦🇮", + "title": "Flag: Anguilla" + }, + { + "emoji": "🇦🇱", + "title": "Flag: Albania" + }, + { + "emoji": "🇦🇲", + "title": "Flag: Armenia" + }, + { + "emoji": "🇦🇴", + "title": "Flag: Angola" + }, + { + "emoji": "🇦🇶", + "title": "Flag: Antarctica" + }, + { + "emoji": "🇦🇷", + "title": "Flag: Argentina" + }, + { + "emoji": "🇦🇸", + "title": "Flag: American Samoa" + }, + { + "emoji": "🇦🇹", + "title": "Flag: Austria" + }, + { + "emoji": "🇦🇺", + "title": "Flag: Australia" + }, + { + "emoji": "🇦🇼", + "title": "Flag: Aruba" + }, + { + "emoji": "🇦🇽", + "title": "Flag: Åland Islands" + }, + { + "emoji": "🇦🇿", + "title": "Flag: Azerbaijan" + }, + { + "emoji": "🇧🇦", + "title": "Flag: Bosnia & Herzegovina" + }, + { + "emoji": "🇧🇧", + "title": "Flag: Barbados" + }, + { + "emoji": "🇧🇩", + "title": "Flag: Bangladesh" + }, + { + "emoji": "🇧🇪", + "title": "Flag: Belgium" + }, + { + "emoji": "🇧🇫", + "title": "Flag: Burkina Faso" + }, + { + "emoji": "🇧🇬", + "title": "Flag: Bulgaria" + }, + { + "emoji": "🇧🇭", + "title": "Flag: Bahrain" + }, + { + "emoji": "🇧🇮", + "title": "Flag: Burundi" + }, + { + "emoji": "🇧🇯", + "title": "Flag: Benin" + }, + { + "emoji": "🇧🇱", + "title": "Flag: St. Barthélemy" + }, + { + "emoji": "🇧🇲", + "title": "Flag: Bermuda" + }, + { + "emoji": "🇧🇳", + "title": "Flag: Brunei" + }, + { + "emoji": "🇧🇴", + "title": "Flag: Bolivia" + }, + { + "emoji": "🇧🇶", + "title": "Flag: Caribbean Netherlands" + }, + { + "emoji": "🇧🇷", + "title": "Flag: Brazil" + }, + { + "emoji": "🇧🇸", + "title": "Flag: Bahamas" + }, + { + "emoji": "🇧🇹", + "title": "Flag: Bhutan" + }, + { + "emoji": "🇧🇻", + "title": "Flag: Bouvet Island" + }, + { + "emoji": "🇧🇼", + "title": "Flag: Botswana" + }, + { + "emoji": "🇧🇾", + "title": "Flag: Belarus" + }, + { + "emoji": "🇧🇿", + "title": "Flag: Belize" + }, + { + "emoji": "🇨🇦", + "title": "Flag: Canada" + }, + { + "emoji": "🇨🇨", + "title": "Flag: Cocos (Keeling) Islands" + }, + { + "emoji": "🇨🇩", + "title": "Flag: Congo - Kinshasa" + }, + { + "emoji": "🇨🇫", + "title": "Flag: Central African Republic" + }, + { + "emoji": "🇨🇬", + "title": "Flag: Congo - Brazzaville" + }, + { + "emoji": "🇨🇭", + "title": "Flag: Switzerland" + }, + { + "emoji": "🇨🇮", + "title": "Flag: Côte d’Ivoire" + }, + { + "emoji": "🇨🇰", + "title": "Flag: Cook Islands" + }, + { + "emoji": "🇨🇱", + "title": "Flag: Chile" + }, + { + "emoji": "🇨🇲", + "title": "Flag: Cameroon" + }, + { + "emoji": "🇨🇳", + "title": "Flag: China" + }, + { + "emoji": "🇨🇴", + "title": "Flag: Colombia" + }, + { + "emoji": "🇨🇵", + "title": "Flag: Clipperton Island" + }, + { + "emoji": "🇨🇷", + "title": "Flag: Costa Rica" + }, + { + "emoji": "🇨🇺", + "title": "Flag: Cuba" + }, + { + "emoji": "🇨🇻", + "title": "Flag: Cape Verde" + }, + { + "emoji": "🇨🇼", + "title": "Flag: Curaçao" + }, + { + "emoji": "🇨🇽", + "title": "Flag: Christmas Island" + }, + { + "emoji": "🇨🇾", + "title": "Flag: Cyprus" + }, + { + "emoji": "🇨🇿", + "title": "Flag: Czechia" + }, + { + "emoji": "🇩🇪", + "title": "Flag: Germany" + }, + { + "emoji": "🇩🇬", + "title": "Flag: Diego Garcia" + }, + { + "emoji": "🇩🇯", + "title": "Flag: Djibouti" + }, + { + "emoji": "🇩🇰", + "title": "Flag: Denmark" + }, + { + "emoji": "🇩🇲", + "title": "Flag: Dominica" + }, + { + "emoji": "🇩🇴", + "title": "Flag: Dominican Republic" + }, + { + "emoji": "🇩🇿", + "title": "Flag: Algeria" + }, + { + "emoji": "🇪🇦", + "title": "Flag: Ceuta & Melilla" + }, + { + "emoji": "🇪🇨", + "title": "Flag: Ecuador" + }, + { + "emoji": "🇪🇪", + "title": "Flag: Estonia" + }, + { + "emoji": "🇪🇬", + "title": "Flag: Egypt" + }, + { + "emoji": "🇪🇭", + "title": "Flag: Western Sahara" + }, + { + "emoji": "🇪🇷", + "title": "Flag: Eritrea" + }, + { + "emoji": "🇪🇸", + "title": "Flag: Spain" + }, + { + "emoji": "🇪🇹", + "title": "Flag: Ethiopia" + }, + { + "emoji": "🇪🇺", + "title": "Flag: European Union" + }, + { + "emoji": "🇫🇮", + "title": "Flag: Finland" + }, + { + "emoji": "🇫🇯", + "title": "Flag: Fiji" + }, + { + "emoji": "🇫🇰", + "title": "Flag: Falkland Islands" + }, + { + "emoji": "🇫🇲", + "title": "Flag: Micronesia" + }, + { + "emoji": "🇫🇴", + "title": "Flag: Faroe Islands" + }, + { + "emoji": "🇫🇷", + "title": "Flag: France" + }, + { + "emoji": "🇬🇦", + "title": "Flag: Gabon" + }, + { + "emoji": "🇬🇧", + "title": "Flag: United Kingdom" + }, + { + "emoji": "🇬🇩", + "title": "Flag: Grenada" + }, + { + "emoji": "🇬🇪", + "title": "Flag: Georgia" + }, + { + "emoji": "🇬🇫", + "title": "Flag: French Guiana" + }, + { + "emoji": "🇬🇬", + "title": "Flag: Guernsey" + }, + { + "emoji": "🇬🇭", + "title": "Flag: Ghana" + }, + { + "emoji": "🇬🇮", + "title": "Flag: Gibraltar" + }, + { + "emoji": "🇬🇱", + "title": "Flag: Greenland" + }, + { + "emoji": "🇬🇲", + "title": "Flag: Gambia" + }, + { + "emoji": "🇬🇳", + "title": "Flag: Guinea" + }, + { + "emoji": "🇬🇵", + "title": "Flag: Guadeloupe" + }, + { + "emoji": "🇬🇶", + "title": "Flag: Equatorial Guinea" + }, + { + "emoji": "🇬🇷", + "title": "Flag: Greece" + }, + { + "emoji": "🇬🇸", + "title": "Flag: South Georgia & South Sandwich Islands" + }, + { + "emoji": "🇬🇹", + "title": "Flag: Guatemala" + }, + { + "emoji": "🇬🇺", + "title": "Flag: Guam" + }, + { + "emoji": "🇬🇼", + "title": "Flag: Guinea-Bissau" + }, + { + "emoji": "🇬🇾", + "title": "Flag: Guyana" + }, + { + "emoji": "🇭🇰", + "title": "Flag: Hong Kong SAR China" + }, + { + "emoji": "🇭🇲", + "title": "Flag: Heard & McDonald Islands" + }, + { + "emoji": "🇭🇳", + "title": "Flag: Honduras" + }, + { + "emoji": "🇭🇷", + "title": "Flag: Croatia" + }, + { + "emoji": "🇭🇹", + "title": "Flag: Haiti" + }, + { + "emoji": "🇭🇺", + "title": "Flag: Hungary" + }, + { + "emoji": "🇮🇨", + "title": "Flag: Canary Islands" + }, + { + "emoji": "🇮🇩", + "title": "Flag: Indonesia" + }, + { + "emoji": "🇮🇪", + "title": "Flag: Ireland" + }, + { + "emoji": "🇮🇱", + "title": "Flag: Israel" + }, + { + "emoji": "🇮🇲", + "title": "Flag: Isle of Man" + }, + { + "emoji": "🇮🇳", + "title": "Flag: India" + }, + { + "emoji": "🇮🇴", + "title": "Flag: British Indian Ocean Territory" + }, + { + "emoji": "🇮🇶", + "title": "Flag: Iraq" + }, + { + "emoji": "🇮🇷", + "title": "Flag: Iran" + }, + { + "emoji": "🇮🇸", + "title": "Flag: Iceland" + }, + { + "emoji": "🇮🇹", + "title": "Flag: Italy" + }, + { + "emoji": "🇯🇪", + "title": "Flag: Jersey" + }, + { + "emoji": "🇯🇲", + "title": "Flag: Jamaica" + }, + { + "emoji": "🇯🇴", + "title": "Flag: Jordan" + }, + { + "emoji": "🇯🇵", + "title": "Flag: Japan" + }, + { + "emoji": "🇰🇪", + "title": "Flag: Kenya" + }, + { + "emoji": "🇰🇬", + "title": "Flag: Kyrgyzstan" + }, + { + "emoji": "🇰🇭", + "title": "Flag: Cambodia" + }, + { + "emoji": "🇰🇮", + "title": "Flag: Kiribati" + }, + { + "emoji": "🇰🇲", + "title": "Flag: Comoros" + }, + { + "emoji": "🇰🇳", + "title": "Flag: St. Kitts & Nevis" + }, + { + "emoji": "🇰🇵", + "title": "Flag: North Korea" + }, + { + "emoji": "🇰🇷", + "title": "Flag: South Korea" + }, + { + "emoji": "🇰🇼", + "title": "Flag: Kuwait" + }, + { + "emoji": "🇰🇾", + "title": "Flag: Cayman Islands" + }, + { + "emoji": "🇰🇿", + "title": "Flag: Kazakhstan" + }, + { + "emoji": "🇱🇦", + "title": "Flag: Laos" + }, + { + "emoji": "🇱🇧", + "title": "Flag: Lebanon" + }, + { + "emoji": "🇱🇨", + "title": "Flag: St. Lucia" + }, + { + "emoji": "🇱🇮", + "title": "Flag: Liechtenstein" + }, + { + "emoji": "🇱🇰", + "title": "Flag: Sri Lanka" + }, + { + "emoji": "🇱🇷", + "title": "Flag: Liberia" + }, + { + "emoji": "🇱🇸", + "title": "Flag: Lesotho" + }, + { + "emoji": "🇱🇹", + "title": "Flag: Lithuania" + }, + { + "emoji": "🇱🇺", + "title": "Flag: Luxembourg" + }, + { + "emoji": "🇱🇻", + "title": "Flag: Latvia" + }, + { + "emoji": "🇱🇾", + "title": "Flag: Libya" + }, + { + "emoji": "🇲🇦", + "title": "Flag: Morocco" + }, + { + "emoji": "🇲🇨", + "title": "Flag: Monaco" + }, + { + "emoji": "🇲🇩", + "title": "Flag: Moldova" + }, + { + "emoji": "🇲🇪", + "title": "Flag: Montenegro" + }, + { + "emoji": "🇲🇫", + "title": "Flag: St. Martin" + }, + { + "emoji": "🇲🇬", + "title": "Flag: Madagascar" + }, + { + "emoji": "🇲🇭", + "title": "Flag: Marshall Islands" + }, + { + "emoji": "🇲🇰", + "title": "Flag: North Macedonia" + }, + { + "emoji": "🇲🇱", + "title": "Flag: Mali" + }, + { + "emoji": "🇲🇲", + "title": "Flag: Myanmar (Burma)" + }, + { + "emoji": "🇲🇳", + "title": "Flag: Mongolia" + }, + { + "emoji": "🇲🇴", + "title": "Flag: Macao Sar China" + }, + { + "emoji": "🇲🇵", + "title": "Flag: Northern Mariana Islands" + }, + { + "emoji": "🇲🇶", + "title": "Flag: Martinique" + }, + { + "emoji": "🇲🇷", + "title": "Flag: Mauritania" + }, + { + "emoji": "🇲🇸", + "title": "Flag: Montserrat" + }, + { + "emoji": "🇲🇹", + "title": "Flag: Malta" + }, + { + "emoji": "🇲🇺", + "title": "Flag: Mauritius" + }, + { + "emoji": "🇲🇻", + "title": "Flag: Maldives" + }, + { + "emoji": "🇲🇼", + "title": "Flag: Malawi" + }, + { + "emoji": "🇲🇽", + "title": "Flag: Mexico" + }, + { + "emoji": "🇲🇾", + "title": "Flag: Malaysia" + }, + { + "emoji": "🇲🇿", + "title": "Flag: Mozambique" + }, + { + "emoji": "🇳🇦", + "title": "Flag: Namibia" + }, + { + "emoji": "🇳🇨", + "title": "Flag: New Caledonia" + }, + { + "emoji": "🇳🇪", + "title": "Flag: Niger" + }, + { + "emoji": "🇳🇫", + "title": "Flag: Norfolk Island" + }, + { + "emoji": "🇳🇬", + "title": "Flag: Nigeria" + }, + { + "emoji": "🇳🇮", + "title": "Flag: Nicaragua" + }, + { + "emoji": "🇳🇱", + "title": "Flag: Netherlands" + }, + { + "emoji": "🇳🇴", + "title": "Flag: Norway" + }, + { + "emoji": "🇳🇵", + "title": "Flag: Nepal" + }, + { + "emoji": "🇳🇷", + "title": "Flag: Nauru" + }, + { + "emoji": "🇳🇺", + "title": "Flag: Niue" + }, + { + "emoji": "🇳🇿", + "title": "Flag: New Zealand" + }, + { + "emoji": "🇴🇲", + "title": "Flag: Oman" + }, + { + "emoji": "🇵🇦", + "title": "Flag: Panama" + }, + { + "emoji": "🇵🇪", + "title": "Flag: Peru" + }, + { + "emoji": "🇵🇫", + "title": "Flag: French Polynesia" + }, + { + "emoji": "🇵🇬", + "title": "Flag: Papua New Guinea" + }, + { + "emoji": "🇵🇭", + "title": "Flag: Philippines" + }, + { + "emoji": "🇵🇰", + "title": "Flag: Pakistan" + }, + { + "emoji": "🇵🇱", + "title": "Flag: Poland" + }, + { + "emoji": "🇵🇲", + "title": "Flag: St. Pierre & Miquelon" + }, + { + "emoji": "🇵🇳", + "title": "Flag: Pitcairn Islands" + }, + { + "emoji": "🇵🇷", + "title": "Flag: Puerto Rico" + }, + { + "emoji": "🇵🇸", + "title": "Flag: Palestinian Territories" + }, + { + "emoji": "🇵🇹", + "title": "Flag: Portugal" + }, + { + "emoji": "🇵🇼", + "title": "Flag: Palau" + }, + { + "emoji": "🇵🇾", + "title": "Flag: Paraguay" + }, + { + "emoji": "🇶🇦", + "title": "Flag: Qatar" + }, + { + "emoji": "🇷🇪", + "title": "Flag: Réunion" + }, + { + "emoji": "🇷🇴", + "title": "Flag: Romania" + }, + { + "emoji": "🇷🇸", + "title": "Flag: Serbia" + }, + { + "emoji": "🇷🇺", + "title": "Flag: Russia" + }, + { + "emoji": "🇷🇼", + "title": "Flag: Rwanda" + }, + { + "emoji": "🇸🇦", + "title": "Flag: Saudi Arabia" + }, + { + "emoji": "🇸🇧", + "title": "Flag: Solomon Islands" + }, + { + "emoji": "🇸🇨", + "title": "Flag: Seychelles" + }, + { + "emoji": "🇸🇩", + "title": "Flag: Sudan" + }, + { + "emoji": "🇸🇪", + "title": "Flag: Sweden" + }, + { + "emoji": "🇸🇬", + "title": "Flag: Singapore" + }, + { + "emoji": "🇸🇭", + "title": "Flag: St. Helena" + }, + { + "emoji": "🇸🇮", + "title": "Flag: Slovenia" + }, + { + "emoji": "🇸🇯", + "title": "Flag: Svalbard & Jan Mayen" + }, + { + "emoji": "🇸🇰", + "title": "Flag: Slovakia" + }, + { + "emoji": "🇸🇱", + "title": "Flag: Sierra Leone" + }, + { + "emoji": "🇸🇲", + "title": "Flag: San Marino" + }, + { + "emoji": "🇸🇳", + "title": "Flag: Senegal" + }, + { + "emoji": "🇸🇴", + "title": "Flag: Somalia" + }, + { + "emoji": "🇸🇷", + "title": "Flag: Suriname" + }, + { + "emoji": "🇸🇸", + "title": "Flag: South Sudan" + }, + { + "emoji": "🇸🇹", + "title": "Flag: São Tomé & Príncipe" + }, + { + "emoji": "🇸🇻", + "title": "Flag: El Salvador" + }, + { + "emoji": "🇸🇽", + "title": "Flag: Sint Maarten" + }, + { + "emoji": "🇸🇾", + "title": "Flag: Syria" + }, + { + "emoji": "🇸🇿", + "title": "Flag: Eswatini" + }, + { + "emoji": "🇹🇦", + "title": "Flag: Tristan Da Cunha" + }, + { + "emoji": "🇹🇨", + "title": "Flag: Turks & Caicos Islands" + }, + { + "emoji": "🇹🇩", + "title": "Flag: Chad" + }, + { + "emoji": "🇹🇫", + "title": "Flag: French Southern Territories" + }, + { + "emoji": "🇹🇬", + "title": "Flag: Togo" + }, + { + "emoji": "🇹🇭", + "title": "Flag: Thailand" + }, + { + "emoji": "🇹🇯", + "title": "Flag: Tajikistan" + }, + { + "emoji": "🇹🇰", + "title": "Flag: Tokelau" + }, + { + "emoji": "🇹🇱", + "title": "Flag: Timor-Leste" + }, + { + "emoji": "🇹🇲", + "title": "Flag: Turkmenistan" + }, + { + "emoji": "🇹🇳", + "title": "Flag: Tunisia" + }, + { + "emoji": "🇹🇴", + "title": "Flag: Tonga" + }, + { + "emoji": "🇹🇷", + "title": "Flag: Turkey" + }, + { + "emoji": "🇹🇹", + "title": "Flag: Trinidad & Tobago" + }, + { + "emoji": "🇹🇻", + "title": "Flag: Tuvalu" + }, + { + "emoji": "🇹🇼", + "title": "Flag: Taiwan" + }, + { + "emoji": "🇹🇿", + "title": "Flag: Tanzania" + }, + { + "emoji": "🇺🇦", + "title": "Flag: Ukraine" + }, + { + "emoji": "🇺🇬", + "title": "Flag: Uganda" + }, + { + "emoji": "🇺🇲", + "title": "Flag: U.S. Outlying Islands" + }, + { + "emoji": "🇺🇳", + "title": "Flag: United Nations" + }, + { + "emoji": "🇺🇸", + "title": "Flag: United States" + }, + { + "emoji": "🇺🇾", + "title": "Flag: Uruguay" + }, + { + "emoji": "🇺🇿", + "title": "Flag: Uzbekistan" + }, + { + "emoji": "🇻🇦", + "title": "Flag: Vatican City" + }, + { + "emoji": "🇻🇨", + "title": "Flag: St. Vincent & Grenadines" + }, + { + "emoji": "🇻🇪", + "title": "Flag: Venezuela" + }, + { + "emoji": "🇻🇬", + "title": "Flag: British Virgin Islands" + }, + { + "emoji": "🇻🇮", + "title": "Flag: U.S. Virgin Islands" + }, + { + "emoji": "🇻🇳", + "title": "Flag: Vietnam" + }, + { + "emoji": "🇻🇺", + "title": "Flag: Vanuatu" + }, + { + "emoji": "🇼🇫", + "title": "Flag: Wallis & Futuna" + }, + { + "emoji": "🇼🇸", + "title": "Flag: Samoa" + }, + { + "emoji": "🇽🇰", + "title": "Flag: Kosovo" + }, + { + "emoji": "🇾🇪", + "title": "Flag: Yemen" + }, + { + "emoji": "🇾🇹", + "title": "Flag: Mayotte" + }, + { + "emoji": "🇿🇦", + "title": "Flag: South Africa" + }, + { + "emoji": "🇿🇲", + "title": "Flag: Zambia" + }, + { + "emoji": "🇿🇼", + "title": "Flag: Zimbabwe" + }, + { + "emoji": "🏴󠁧󠁢󠁥󠁮󠁧󠁿", + "title": "Flag: England" + }, + { + "emoji": "🏴󠁧󠁢󠁳󠁣󠁴󠁿", + "title": "Flag: Scotland" + }, + { + "emoji": "🏴󠁧󠁢󠁷󠁬󠁳󠁿", + "title": "Flag: Wales" + }, + { + "emoji": "🏴󠁵󠁳󠁴󠁸󠁿", + "title": "Flag for Texas (US-TX)" + } + ] + }; + + const categoryFlags = { + 'People': ' ', + 'Nature': ' ', + 'Food-dring': ' ', + 'Activity': '', + 'Travel-places': ' ', + 'Objects': ' ', + 'Symbols': ' ', + 'Flags': '' + }; + + const icons = { + search: ' ', + close: '', + move: ' ' + } + + + + + const functions = { + + styles: () => { + + const styles = ` + + `; + + document.head.insertAdjacentHTML('beforeend', styles); + }, + + + position: () => { + + const e = window.event; + const clickPosX = e.clientX; + const clickPosY = e.clientY; + const obj = {}; + + obj.left = clickPosX; + obj.top = clickPosY; + + return obj; + + }, + + + rePositioning: (picker) => { + picker.getBoundingClientRect().right > window.screen.availWidth ? picker.style.left = window.screen.availWidth - picker.offsetWidth + 'px' : false; + + if (window.innerHeight > pickerHeight) { + picker.getBoundingClientRect().bottom > window.innerHeight ? picker.style.top = window.innerHeight - picker.offsetHeight + 'px' : false; + } + }, + + + render: (e, attr) => { + // attr is empty in friendica, no idea why.. + if (!attr) attr='.emojis' + emojiList = undefined; + const index = this.options.trigger.findIndex(item => item.selector === attr); + this.insertInto = this.options.trigger[index].insertInto; + + const position = functions.position(); + + if (!emojiesHTML.length) { + + for (const key in emojiObj) { + if (emojiObj.hasOwnProperty.call(emojiObj, key)) { + const categoryObj = emojiObj[key]; + + + categoriesHTML += `
  • + ${categoryFlags[key]} +
  • `; + + emojiesHTML += `
    `; + emojiesHTML += `

    ${key}

    `; + categoryObj.forEach(ej => { + emojiesHTML += `
  • + ${ej.emoji} +
  • `; + }); + emojiesHTML += '
    '; + } + } + } + + + if (document.querySelector('.fg-emoji-container')) { + this.lib('.fg-emoji-container').remove(); + } + + + const picker = ` +
    + + + + +
    + + +
      + ${emojiesHTML} +
    +
    +
    + `; + + document.body.insertAdjacentHTML('beforeend', picker); + + functions.rePositioning(document.querySelector('.fg-emoji-container')); + + setTimeout(() => { + document.querySelector('.fg-emoji-picker-search input').focus(); + }, 500) + }, + + + closePicker: (e) => { + + e.preventDefault(); + + this.lib('.fg-emoji-container').remove(); + + moseMove = false; + }, + + + checkPickerExist(e) { + + if (document.querySelector('.fg-emoji-container') && !e.target.closest('.fg-emoji-container') && !moseMove) { + + functions.closePicker.call(this, e); + } + }, + + + setCaretPosition: (field, caretPos) => { + var elem = field + if (elem != null) { + if (elem.createTextRange) { + var range = elem.createTextRange(); + range.move('character', caretPos); + range.select(); + } else { + if (elem.selectionStart) { + elem.focus(); + elem.setSelectionRange(caretPos, caretPos); + } else { + elem.focus(); + } + } + } + }, + + + insert: e => { + + e.preventDefault(); + + const emoji = e.target.innerText.trim(); + const myField = document.querySelectorAll(this.insertInto); + const myValue = emoji; + + // Check if selector is an array + myField.forEach(myField => { + + if (document.selection) { + myField.focus(); + sel = document.selection.createRange(); + sel.text = myValue; + } else if (myField.selectionStart || myField.selectionStart == "0") { + const startPos = myField.selectionStart; + const endPos = myField.selectionEnd; + myField.value = myField.value.substring(0, startPos) + myValue + myField.value.substring(endPos, myField.value.length); + + functions.setCaretPosition(myField, startPos + 2) + + } else { + myField.value += myValue; + myField.focus() + } + + }) + }, + + + categoryNav: e => { + e.preventDefault(); + + const link = e.target.closest('a'); + + if (link.getAttribute('id') && link.getAttribute('id') === 'fg-emoji-picker-close-button') return false; + if (link.className.includes('fg-emoji-picker-move')) return false; + + const id = link.getAttribute('href'); + const emojiBody = document.querySelector('.fg-emoji-list'); + const destination = emojiBody.querySelector(`${id}`); + + this.lib('.fg-emoji-nav li').removeClass('emoji-picker-nav-active'); + link.closest('li').classList.add('emoji-picker-nav-active'); + + destination.scrollIntoView({behavior: "smooth", block: "start", inline: "nearest"}) + }, + + + search: e => { + + const val = e.target.value.trim(); + + if (!emojiList) { + emojiList = Array.from(document.querySelectorAll('.fg-emoji-picker-category-wrapper li')); + } + + emojiList.filter(emoji => { + if (!emoji.getAttribute('data-title').match(val)) { + emoji.style.display = 'none' + } else { + emoji.style.display = '' + } + }) + }, + + + mouseDown: e => { + e.preventDefault(); + moseMove = true; + }, + + mouseUp: e => { + e.preventDefault(); + moseMove = false; + }, + + mouseMove: e => { + + if (moseMove) { + e.preventDefault(); + const el = document.querySelector('.fg-emoji-container'); + el.style.left = e.clientX - 320 + 'px'; + el.style.top = e.clientY - 10 + 'px'; + } + } + }; + + + + const bindEvents = () => { + + this.lib(document.body).on('click', functions.closePicker, '#fg-emoji-picker-close-button'); + this.lib(document.body).on('click', functions.checkPickerExist); + this.lib(document.body).on('click', functions.render, this.trigger); + this.lib(document.body).on('click', functions.insert, '.fg-emoji-list a'); + this.lib(document.body).on('click', functions.categoryNav, '.fg-emoji-nav a'); + this.lib(document.body).on('input', functions.search, '.fg-emoji-picker-search input'); + this.lib(document).on('mousedown', functions.mouseDown, '#fg-emoji-picker-move'); + this.lib(document).on('mouseup', functions.mouseUp, '#fg-emoji-picker-move'); + this.lib(document).on('mousemove', functions.mouseMove); + }; + + + + (() => { + + // Start styles + functions.styles(); + + // Event functions + bindEvents.call(this); + + })() +} \ No newline at end of file diff --git a/view/js/vanillaEmojiPicker/vanillaEmojiPicker.min.js b/view/js/vanillaEmojiPicker/vanillaEmojiPicker.min.js new file mode 100644 index 000000000..1bd4eb30a --- /dev/null +++ b/view/js/vanillaEmojiPicker/vanillaEmojiPicker.min.js @@ -0,0 +1,202 @@ +const EmojiPicker=function(e){this.options=e,this.trigger=this.options.trigger.map(e=>e.selector),this.insertInto=void 0;let i="",t="",o,l=!1,a=this.options.closeButton?370:350;this.lib=function(e){let i=e=>{var i=Object.prototype.toString.call(e);return"object"==typeof e&&/^\[object (HTMLCollection|NodeList|Object)\]$/.test(i)&&"number"==typeof e.length&&(0===e.length||"object"==typeof e[0]&&e[0].nodeType>0)};return{el(){if(e)return e.nodeName?[e]:i(e)?Array.from(e):"string"==typeof e||"STRING"==typeof e?Array.from(document.querySelectorAll(e)):void 0},on(e,i,t){t?this.el().forEach(o=>{o.addEventListener(e,e=>{if(e.target.closest(t)){let o;if(Array.isArray(t)){let l=e.target.outerHTML,a=t.findIndex(e=>l.includes(e.slice(1)));o=t[a]}i(e,o)}})}):this.el().forEach(t=>{t.addEventListener(e,i.bind(t))})},css(e){for(let i in e)if(Object.hasOwnProperty.call(e,i)){let t=e[i];this.el().forEach(e=>e.style[i]=t)}},attr(e,i){if(!i)return this.el()[0].getAttribute(e);this.el().forEach(t=>t.setAttribute(e,i))},removeAttr(e){this.el().forEach(i=>i.removeAttribute(e))},addClass(e){this.el().forEach(i=>i.classList.add(e))},removeClass(e){this.el().forEach(i=>i.classList.remove(e))},slug:e=>e.toLowerCase().replace(/[^\u00BF-\u1FFF\u2C00-\uD7FF\w]+|[\_]+/ig,"-").replace(/ +/g,"-"),remove(e){this.el().forEach(e=>e.remove())},val(e){let i;return void 0===e?this.el().forEach(e=>{i=e.value}):this.el().forEach(i=>{i.value=e}),i},text(i){if(void 0===i)return e.innerText;this.el().forEach(e=>{e.innerText=i})},html(i){if(void 0===i)return e.innerHTML;this.el().forEach(e=>{e.innerHTML=i})}}};let m={People:[{emoji:"\uD83D\uDE00",title:"Grinning Face"},{emoji:"\uD83D\uDE03",title:"Grinning Face with Big Eyes"},{emoji:"\uD83D\uDE04",title:"Grinning Face with Smiling Eyes"},{emoji:"\uD83D\uDE01",title:"Beaming Face with Smiling Eyes"},{emoji:"\uD83D\uDE06",title:"Grinning Squinting Face"},{emoji:"\uD83D\uDE05",title:"Grinning Face with Sweat"},{emoji:"\uD83E\uDD23",title:"Rolling on the Floor Laughing"},{emoji:"\uD83D\uDE02",title:"Face with Tears of Joy"},{emoji:"\uD83D\uDE42",title:"Slightly Smiling Face"},{emoji:"\uD83D\uDE43",title:"Upside-Down Face"},{emoji:"\uD83D\uDE09",title:"Winking Face"},{emoji:"\uD83D\uDE0A",title:"Smiling Face with Smiling Eyes"},{emoji:"\uD83D\uDE07",title:"Smiling Face with Halo"},{emoji:"\uD83E\uDD70",title:"Smiling Face with Hearts"},{emoji:"\uD83D\uDE0D",title:"Smiling Face with Heart-Eyes"},{emoji:"\uD83E\uDD29",title:"Star-Struck"},{emoji:"\uD83D\uDE18",title:"Face Blowing a Kiss"},{emoji:"\uD83D\uDE17",title:"Kissing Face"},{emoji:"☺️",title:"Smiling Face"},{emoji:"\uD83D\uDE1A",title:"Kissing Face with Closed Eyes"},{emoji:"\uD83D\uDE19",title:"Kissing Face with Smiling Eyes"},{emoji:"\uD83E\uDD72",title:"Smiling Face with Tear"},{emoji:"\uD83D\uDE0B",title:"Face Savoring Food"},{emoji:"\uD83D\uDE1B",title:"Face with Tongue"},{emoji:"\uD83D\uDE1C",title:"Winking Face with Tongue"},{emoji:"\uD83E\uDD2A",title:"Zany Face"},{emoji:"\uD83D\uDE1D",title:"Squinting Face with Tongue"},{emoji:"\uD83E\uDD11",title:"Money-Mouth Face"},{emoji:"\uD83E\uDD17",title:"Smiling Face with Open Hands"},{emoji:"\uD83E\uDD2D",title:"Face with Hand Over Mouth"},{emoji:"\uD83E\uDD2B",title:"Shushing Face"},{emoji:"\uD83E\uDD14",title:"Thinking Face"},{emoji:"\uD83E\uDD10",title:"Zipper-Mouth Face"},{emoji:"\uD83E\uDD28",title:"Face with Raised Eyebrow"},{emoji:"\uD83D\uDE10",title:"Neutral Face"},{emoji:"\uD83D\uDE11",title:"Expressionless Face"},{emoji:"\uD83D\uDE36",title:"Face Without Mouth"},{emoji:"\uD83D\uDE36‍\uD83C\uDF2B️",title:"Face in Clouds"},{emoji:"\uD83D\uDE0F",title:"Smirking Face"},{emoji:"\uD83D\uDE12",title:"Unamused Face"},{emoji:"\uD83D\uDE44",title:"Face with Rolling Eyes"},{emoji:"\uD83D\uDE2C",title:"Grimacing Face"},{emoji:"\uD83D\uDE2E‍\uD83D\uDCA8",title:"Face Exhaling"},{emoji:"\uD83E\uDD25",title:"Lying Face"},{emoji:"\uD83D\uDE0C",title:"Relieved Face"},{emoji:"\uD83D\uDE14",title:"Pensive Face"},{emoji:"\uD83D\uDE2A",title:"Sleepy Face"},{emoji:"\uD83E\uDD24",title:"Drooling Face"},{emoji:"\uD83D\uDE34",title:"Sleeping Face"},{emoji:"\uD83D\uDE37",title:"Face with Medical Mask"},{emoji:"\uD83E\uDD12",title:"Face with Thermometer"},{emoji:"\uD83E\uDD15",title:"Face with Head-Bandage"},{emoji:"\uD83E\uDD22",title:"Nauseated Face"},{emoji:"\uD83E\uDD2E",title:"Face Vomiting"},{emoji:"\uD83E\uDD27",title:"Sneezing Face"},{emoji:"\uD83E\uDD75",title:"Hot Face"},{emoji:"\uD83E\uDD76",title:"Cold Face"},{emoji:"\uD83E\uDD74",title:"Woozy Face"},{emoji:"\uD83D\uDE35",title:"Face with Crossed-Out Eyes"},{emoji:"\uD83D\uDE35‍\uD83D\uDCAB",title:"Face with Spiral Eyes"},{emoji:"\uD83E\uDD2F",title:"Exploding Head"},{emoji:"\uD83E\uDD20",title:"Cowboy Hat Face"},{emoji:"\uD83E\uDD73",title:"Partying Face"},{emoji:"\uD83E\uDD78",title:"Disguised Face"},{emoji:"\uD83D\uDE0E",title:"Smiling Face with Sunglasses"},{emoji:"\uD83E\uDD13",title:"Nerd Face"},{emoji:"\uD83E\uDDD0",title:"Face with Monocle"},{emoji:"\uD83D\uDE15",title:"Confused Face"},{emoji:"\uD83D\uDE1F",title:"Worried Face"},{emoji:"\uD83D\uDE41",title:"Slightly Frowning Face"},{emoji:"☹️",title:"Frowning Face"},{emoji:"\uD83D\uDE2E",title:"Face with Open Mouth"},{emoji:"\uD83D\uDE2F",title:"Hushed Face"},{emoji:"\uD83D\uDE32",title:"Astonished Face"},{emoji:"\uD83D\uDE33",title:"Flushed Face"},{emoji:"\uD83E\uDD7A",title:"Pleading Face"},{emoji:"\uD83D\uDE26",title:"Frowning Face with Open Mouth"},{emoji:"\uD83D\uDE27",title:"Anguished Face"},{emoji:"\uD83D\uDE28",title:"Fearful Face"},{emoji:"\uD83D\uDE30",title:"Anxious Face with Sweat"},{emoji:"\uD83D\uDE25",title:"Sad but Relieved Face"},{emoji:"\uD83D\uDE22",title:"Crying Face"},{emoji:"\uD83D\uDE2D",title:"Loudly Crying Face"},{emoji:"\uD83D\uDE31",title:"Face Screaming in Fear"},{emoji:"\uD83D\uDE16",title:"Confounded Face"},{emoji:"\uD83D\uDE23",title:"Persevering Face"},{emoji:"\uD83D\uDE1E",title:"Disappointed Face"},{emoji:"\uD83D\uDE13",title:"Downcast Face with Sweat"},{emoji:"\uD83D\uDE29",title:"Weary Face"},{emoji:"\uD83D\uDE2B",title:"Tired Face"},{emoji:"\uD83E\uDD71",title:"Yawning Face"},{emoji:"\uD83D\uDE24",title:"Face with Steam From Nose"},{emoji:"\uD83D\uDE21",title:"Enraged Face"},{emoji:"\uD83D\uDE20",title:"Angry Face"},{emoji:"\uD83E\uDD2C",title:"Face with Symbols on Mouth"},{emoji:"\uD83D\uDE08",title:"Smiling Face with Horns"},{emoji:"\uD83D\uDC7F",title:"Angry Face with Horns"},{emoji:"\uD83D\uDC80",title:"Skull"},{emoji:"☠️",title:"Skull and Crossbones"},{emoji:"\uD83D\uDCA9",title:"Pile of Poo"},{emoji:"\uD83E\uDD21",title:"Clown Face"},{emoji:"\uD83D\uDC79",title:"Ogre"},{emoji:"\uD83D\uDC7A",title:"Goblin"},{emoji:"\uD83D\uDC7B",title:"Ghost"},{emoji:"\uD83D\uDC7D",title:"Alien"},{emoji:"\uD83D\uDC7E",title:"Alien Monster"},{emoji:"\uD83E\uDD16",title:"Robot"},{emoji:"\uD83D\uDE3A",title:"Grinning Cat"},{emoji:"\uD83D\uDE38",title:"Grinning Cat with Smiling Eyes"},{emoji:"\uD83D\uDE39",title:"Cat with Tears of Joy"},{emoji:"\uD83D\uDE3B",title:"Smiling Cat with Heart-Eyes"},{emoji:"\uD83D\uDE3C",title:"Cat with Wry Smile"},{emoji:"\uD83D\uDE3D",title:"Kissing Cat"},{emoji:"\uD83D\uDE40",title:"Weary Cat"},{emoji:"\uD83D\uDE3F",title:"Crying Cat"},{emoji:"\uD83D\uDE3E",title:"Pouting Cat"},{emoji:"\uD83D\uDC8B",title:"Kiss Mark"},{emoji:"\uD83D\uDC4B",title:"Waving Hand"},{emoji:"\uD83E\uDD1A",title:"Raised Back of Hand"},{emoji:"\uD83D\uDD90️",title:"Hand with Fingers Splayed"},{emoji:"✋",title:"Raised Hand"},{emoji:"\uD83D\uDD96",title:"Vulcan Salute"},{emoji:"\uD83D\uDC4C",title:"OK Hand"},{emoji:"\uD83E\uDD0C",title:"Pinched Fingers"},{emoji:"\uD83E\uDD0F",title:"Pinching Hand"},{emoji:"✌️",title:"Victory Hand"},{emoji:"\uD83E\uDD1E",title:"Crossed Fingers"},{emoji:"\uD83E\uDD1F",title:"Love-You Gesture"},{emoji:"\uD83E\uDD18",title:"Sign of the Horns"},{emoji:"\uD83E\uDD19",title:"Call Me Hand"},{emoji:"\uD83D\uDC48",title:"Backhand Index Pointing Left"},{emoji:"\uD83D\uDC49",title:"Backhand Index Pointing Right"},{emoji:"\uD83D\uDC46",title:"Backhand Index Pointing Up"},{emoji:"\uD83D\uDD95",title:"Middle Finger"},{emoji:"\uD83D\uDC47",title:"Backhand Index Pointing Down"},{emoji:"☝️",title:"Index Pointing Up"},{emoji:"\uD83D\uDC4D",title:"Thumbs Up"},{emoji:"\uD83D\uDC4E",title:"Thumbs Down"},{emoji:"✊",title:"Raised Fist"},{emoji:"\uD83D\uDC4A",title:"Oncoming Fist"},{emoji:"\uD83E\uDD1B",title:"Left-Facing Fist"},{emoji:"\uD83E\uDD1C",title:"Right-Facing Fist"},{emoji:"\uD83D\uDC4F",title:"Clapping Hands"},{emoji:"\uD83D\uDE4C",title:"Raising Hands"},{emoji:"\uD83D\uDC50",title:"Open Hands"},{emoji:"\uD83E\uDD32",title:"Palms Up Together"},{emoji:"\uD83E\uDD1D",title:"Handshake"},{emoji:"\uD83D\uDE4F",title:"Folded Hands"},{emoji:"✍️",title:"Writing Hand"},{emoji:"\uD83D\uDC85",title:"Nail Polish"},{emoji:"\uD83E\uDD33",title:"Selfie"},{emoji:"\uD83D\uDCAA",title:"Flexed Biceps"},{emoji:"\uD83E\uDDBE",title:"Mechanical Arm"},{emoji:"\uD83E\uDDBF",title:"Mechanical Leg"},{emoji:"\uD83E\uDDB5",title:"Leg"},{emoji:"\uD83E\uDDB6",title:"Foot"},{emoji:"\uD83D\uDC42",title:"Ear"},{emoji:"\uD83E\uDDBB",title:"Ear with Hearing Aid"},{emoji:"\uD83D\uDC43",title:"Nose"},{emoji:"\uD83E\uDDE0",title:"Brain"},{emoji:"\uD83E\uDEC0",title:"Anatomical Heart"},{emoji:"\uD83E\uDEC1",title:"Lungs"},{emoji:"\uD83E\uDDB7",title:"Tooth"},{emoji:"\uD83E\uDDB4",title:"Bone"},{emoji:"\uD83D\uDC40",title:"Eyes"},{emoji:"\uD83D\uDC41️",title:"Eye"},{emoji:"\uD83D\uDC45",title:"Tongue"},{emoji:"\uD83D\uDC44",title:"Mouth"},{emoji:"\uD83D\uDC76",title:"Baby"},{emoji:"\uD83E\uDDD2",title:"Child"},{emoji:"\uD83D\uDC66",title:"Boy"},{emoji:"\uD83D\uDC67",title:"Girl"},{emoji:"\uD83E\uDDD1",title:"Person"},{emoji:"\uD83D\uDC71",title:"Person: Blond Hair"},{emoji:"\uD83D\uDC68",title:"Man"},{emoji:"\uD83E\uDDD4",title:"Person: Beard"},{emoji:"\uD83D\uDC68‍\uD83E\uDDB0",title:"Man: Red Hair"},{emoji:"\uD83D\uDC68‍\uD83E\uDDB1",title:"Man: Curly Hair"},{emoji:"\uD83D\uDC68‍\uD83E\uDDB3",title:"Man: White Hair"},{emoji:"\uD83D\uDC68‍\uD83E\uDDB2",title:"Man: Bald"},{emoji:"\uD83D\uDC69",title:"Woman"},{emoji:"\uD83D\uDC69‍\uD83E\uDDB0",title:"Woman: Red Hair"},{emoji:"\uD83E\uDDD1‍\uD83E\uDDB0",title:"Person: Red Hair"},{emoji:"\uD83D\uDC69‍\uD83E\uDDB1",title:"Woman: Curly Hair"},{emoji:"\uD83E\uDDD1‍\uD83E\uDDB1",title:"Person: Curly Hair"},{emoji:"\uD83D\uDC69‍\uD83E\uDDB3",title:"Woman: White Hair"},{emoji:"\uD83E\uDDD1‍\uD83E\uDDB3",title:"Person: White Hair"},{emoji:"\uD83D\uDC69‍\uD83E\uDDB2",title:"Woman: Bald"},{emoji:"\uD83E\uDDD1‍\uD83E\uDDB2",title:"Person: Bald"},{emoji:"\uD83D\uDC71‍♀️",title:"Woman: Blond Hair"},{emoji:"\uD83D\uDC71‍♂️",title:"Man: Blond Hair"},{emoji:"\uD83E\uDDD3",title:"Older Person"},{emoji:"\uD83D\uDC74",title:"Old Man"},{emoji:"\uD83D\uDC75",title:"Old Woman"},{emoji:"\uD83D\uDE4D",title:"Person Frowning"},{emoji:"\uD83D\uDE4D‍♂️",title:"Man Frowning"},{emoji:"\uD83D\uDE4D‍♀️",title:"Woman Frowning"},{emoji:"\uD83D\uDE4E",title:"Person Pouting"},{emoji:"\uD83D\uDE4E‍♂️",title:"Man Pouting"},{emoji:"\uD83D\uDE4E‍♀️",title:"Woman Pouting"},{emoji:"\uD83D\uDE45",title:"Person Gesturing No"},{emoji:"\uD83D\uDE45‍♂️",title:"Man Gesturing No"},{emoji:"\uD83D\uDE45‍♀️",title:"Woman Gesturing No"},{emoji:"\uD83D\uDE46",title:"Person Gesturing OK"},{emoji:"\uD83D\uDE46‍♂️",title:"Man Gesturing OK"},{emoji:"\uD83D\uDE46‍♀️",title:"Woman Gesturing OK"},{emoji:"\uD83D\uDC81",title:"Person Tipping Hand"},{emoji:"\uD83D\uDC81‍♂️",title:"Man Tipping Hand"},{emoji:"\uD83D\uDC81‍♀️",title:"Woman Tipping Hand"},{emoji:"\uD83D\uDE4B",title:"Person Raising Hand"},{emoji:"\uD83D\uDE4B‍♂️",title:"Man Raising Hand"},{emoji:"\uD83D\uDE4B‍♀️",title:"Woman Raising Hand"},{emoji:"\uD83E\uDDCF",title:"Deaf Person"},{emoji:"\uD83E\uDDCF‍♂️",title:"Deaf Man"},{emoji:"\uD83E\uDDCF‍♀️",title:"Deaf Woman"},{emoji:"\uD83D\uDE47",title:"Person Bowing"},{emoji:"\uD83D\uDE47‍♂️",title:"Man Bowing"},{emoji:"\uD83D\uDE47‍♀️",title:"Woman Bowing"},{emoji:"\uD83E\uDD26",title:"Person Facepalming"},{emoji:"\uD83E\uDD26‍♂️",title:"Man Facepalming"},{emoji:"\uD83E\uDD26‍♀️",title:"Woman Facepalming"},{emoji:"\uD83E\uDD37",title:"Person Shrugging"},{emoji:"\uD83E\uDD37‍♂️",title:"Man Shrugging"},{emoji:"\uD83E\uDD37‍♀️",title:"Woman Shrugging"},{emoji:"\uD83E\uDDD1‍⚕️",title:"Health Worker"},{emoji:"\uD83D\uDC68‍⚕️",title:"Man Health Worker"},{emoji:"\uD83D\uDC69‍⚕️",title:"Woman Health Worker"},{emoji:"\uD83E\uDDD1‍\uD83C\uDF93",title:"Student"},{emoji:"\uD83D\uDC68‍\uD83C\uDF93",title:"Man Student"},{emoji:"\uD83D\uDC69‍\uD83C\uDF93",title:"Woman Student"},{emoji:"\uD83E\uDDD1‍\uD83C\uDFEB",title:"Teacher"},{emoji:"\uD83D\uDC68‍\uD83C\uDFEB",title:"Man Teacher"},{emoji:"\uD83D\uDC69‍\uD83C\uDFEB",title:"Woman Teacher"},{emoji:"\uD83E\uDDD1‍⚖️",title:"Judge"},{emoji:"\uD83D\uDC68‍⚖️",title:"Man Judge"},{emoji:"\uD83D\uDC69‍⚖️",title:"Woman Judge"},{emoji:"\uD83E\uDDD1‍\uD83C\uDF3E",title:"Farmer"},{emoji:"\uD83D\uDC68‍\uD83C\uDF3E",title:"Man Farmer"},{emoji:"\uD83D\uDC69‍\uD83C\uDF3E",title:"Woman Farmer"},{emoji:"\uD83E\uDDD1‍\uD83C\uDF73",title:"Cook"},{emoji:"\uD83D\uDC68‍\uD83C\uDF73",title:"Man Cook"},{emoji:"\uD83D\uDC69‍\uD83C\uDF73",title:"Woman Cook"},{emoji:"\uD83E\uDDD1‍\uD83D\uDD27",title:"Mechanic"},{emoji:"\uD83D\uDC68‍\uD83D\uDD27",title:"Man Mechanic"},{emoji:"\uD83D\uDC69‍\uD83D\uDD27",title:"Woman Mechanic"},{emoji:"\uD83E\uDDD1‍\uD83C\uDFED",title:"Factory Worker"},{emoji:"\uD83D\uDC68‍\uD83C\uDFED",title:"Man Factory Worker"},{emoji:"\uD83D\uDC69‍\uD83C\uDFED",title:"Woman Factory Worker"},{emoji:"\uD83E\uDDD1‍\uD83D\uDCBC",title:"Office Worker"},{emoji:"\uD83D\uDC68‍\uD83D\uDCBC",title:"Man Office Worker"},{emoji:"\uD83D\uDC69‍\uD83D\uDCBC",title:"Woman Office Worker"},{emoji:"\uD83E\uDDD1‍\uD83D\uDD2C",title:"Scientist"},{emoji:"\uD83D\uDC68‍\uD83D\uDD2C",title:"Man Scientist"},{emoji:"\uD83D\uDC69‍\uD83D\uDD2C",title:"Woman Scientist"},{emoji:"\uD83E\uDDD1‍\uD83D\uDCBB",title:"Technologist"},{emoji:"\uD83D\uDC68‍\uD83D\uDCBB",title:"Man Technologist"},{emoji:"\uD83D\uDC69‍\uD83D\uDCBB",title:"Woman Technologist"},{emoji:"\uD83E\uDDD1‍\uD83C\uDFA4",title:"Singer"},{emoji:"\uD83D\uDC68‍\uD83C\uDFA4",title:"Man Singer"},{emoji:"\uD83D\uDC69‍\uD83C\uDFA4",title:"Woman Singer"},{emoji:"\uD83E\uDDD1‍\uD83C\uDFA8",title:"Artist"},{emoji:"\uD83D\uDC68‍\uD83C\uDFA8",title:"Man Artist"},{emoji:"\uD83D\uDC69‍\uD83C\uDFA8",title:"Woman Artist"},{emoji:"\uD83E\uDDD1‍✈️",title:"Pilot"},{emoji:"\uD83D\uDC68‍✈️",title:"Man Pilot"},{emoji:"\uD83D\uDC69‍✈️",title:"Woman Pilot"},{emoji:"\uD83E\uDDD1‍\uD83D\uDE80",title:"Astronaut"},{emoji:"\uD83D\uDC68‍\uD83D\uDE80",title:"Man Astronaut"},{emoji:"\uD83D\uDC69‍\uD83D\uDE80",title:"Woman Astronaut"},{emoji:"\uD83E\uDDD1‍\uD83D\uDE92",title:"Firefighter"},{emoji:"\uD83D\uDC68‍\uD83D\uDE92",title:"Man Firefighter"},{emoji:"\uD83D\uDC69‍\uD83D\uDE92",title:"Woman Firefighter"},{emoji:"\uD83D\uDC6E",title:"Police Officer"},{emoji:"\uD83D\uDC6E‍♂️",title:"Man Police Officer"},{emoji:"\uD83D\uDC6E‍♀️",title:"Woman Police Officer"},{emoji:"\uD83D\uDD75️",title:"Detective"},{emoji:"\uD83D\uDD75️‍♂️",title:"Man Detective"},{emoji:"\uD83D\uDD75️‍♀️",title:"Woman Detective"},{emoji:"\uD83D\uDC82",title:"Guard"},{emoji:"\uD83D\uDC82‍♂️",title:"Man Guard"},{emoji:"\uD83D\uDC82‍♀️",title:"Woman Guard"},{emoji:"\uD83E\uDD77",title:"Ninja"},{emoji:"\uD83D\uDC77",title:"Construction Worker"},{emoji:"\uD83D\uDC77‍♂️",title:"Man Construction Worker"},{emoji:"\uD83D\uDC77‍♀️",title:"Woman Construction Worker"},{emoji:"\uD83E\uDD34",title:"Prince"},{emoji:"\uD83D\uDC78",title:"Princess"},{emoji:"\uD83D\uDC73",title:"Person Wearing Turban"},{emoji:"\uD83D\uDC73‍♂️",title:"Man Wearing Turban"},{emoji:"\uD83D\uDC73‍♀️",title:"Woman Wearing Turban"},{emoji:"\uD83D\uDC72",title:"Person with Skullcap"},{emoji:"\uD83E\uDDD5",title:"Woman with Headscarf"},{emoji:"\uD83E\uDD35",title:"Person in Tuxedo"},{emoji:"\uD83E\uDD35‍♂️",title:"Man in Tuxedo"},{emoji:"\uD83E\uDD35‍♀️",title:"Woman in Tuxedo"},{emoji:"\uD83D\uDC70",title:"Person with Veil"},{emoji:"\uD83D\uDC70‍♂️",title:"Man with Veil"},{emoji:"\uD83D\uDC70‍♀️",title:"Woman with Veil"},{emoji:"\uD83E\uDD30",title:"Pregnant Woman"},{emoji:"\uD83E\uDD31",title:"Breast-Feeding"},{emoji:"\uD83D\uDC69‍\uD83C\uDF7C",title:"Woman Feeding Baby"},{emoji:"\uD83D\uDC68‍\uD83C\uDF7C",title:"Man Feeding Baby"},{emoji:"\uD83E\uDDD1‍\uD83C\uDF7C",title:"Person Feeding Baby"},{emoji:"\uD83D\uDC7C",title:"Baby Angel"},{emoji:"\uD83C\uDF85",title:"Santa Claus"},{emoji:"\uD83E\uDD36",title:"Mrs. Claus"},{emoji:"\uD83E\uDDD1‍\uD83C\uDF84",title:"Mx Claus"},{emoji:"\uD83E\uDDB8",title:"Superhero"},{emoji:"\uD83E\uDDB8‍♂️",title:"Man Superhero"},{emoji:"\uD83E\uDDB8‍♀️",title:"Woman Superhero"},{emoji:"\uD83E\uDDB9",title:"Supervillain"},{emoji:"\uD83E\uDDB9‍♂️",title:"Man Supervillain"},{emoji:"\uD83E\uDDB9‍♀️",title:"Woman Supervillain"},{emoji:"\uD83E\uDDD9",title:"Mage"},{emoji:"\uD83E\uDDD9‍♂️",title:"Man Mage"},{emoji:"\uD83E\uDDD9‍♀️",title:"Woman Mage"},{emoji:"\uD83E\uDDDA",title:"Fairy"},{emoji:"\uD83E\uDDDA‍♂️",title:"Man Fairy"},{emoji:"\uD83E\uDDDA‍♀️",title:"Woman Fairy"},{emoji:"\uD83E\uDDDB",title:"Vampire"},{emoji:"\uD83E\uDDDB‍♂️",title:"Man Vampire"},{emoji:"\uD83E\uDDDB‍♀️",title:"Woman Vampire"},{emoji:"\uD83E\uDDDC",title:"Merperson"},{emoji:"\uD83E\uDDDC‍♂️",title:"Merman"},{emoji:"\uD83E\uDDDC‍♀️",title:"Mermaid"},{emoji:"\uD83E\uDDDD",title:"Elf"},{emoji:"\uD83E\uDDDD‍♂️",title:"Man Elf"},{emoji:"\uD83E\uDDDD‍♀️",title:"Woman Elf"},{emoji:"\uD83E\uDDDE",title:"Genie"},{emoji:"\uD83E\uDDDE‍♂️",title:"Man Genie"},{emoji:"\uD83E\uDDDE‍♀️",title:"Woman Genie"},{emoji:"\uD83E\uDDDF",title:"Zombie"},{emoji:"\uD83E\uDDDF‍♂️",title:"Man Zombie"},{emoji:"\uD83E\uDDDF‍♀️",title:"Woman Zombie"},{emoji:"\uD83D\uDC86",title:"Person Getting Massage"},{emoji:"\uD83D\uDC86‍♂️",title:"Man Getting Massage"},{emoji:"\uD83D\uDC86‍♀️",title:"Woman Getting Massage"},{emoji:"\uD83D\uDC87",title:"Person Getting Haircut"},{emoji:"\uD83D\uDC87‍♂️",title:"Man Getting Haircut"},{emoji:"\uD83D\uDC87‍♀️",title:"Woman Getting Haircut"},{emoji:"\uD83D\uDEB6",title:"Person Walking"},{emoji:"\uD83D\uDEB6‍♂️",title:"Man Walking"},{emoji:"\uD83D\uDEB6‍♀️",title:"Woman Walking"},{emoji:"\uD83E\uDDCD",title:"Person Standing"},{emoji:"\uD83E\uDDCD‍♂️",title:"Man Standing"},{emoji:"\uD83E\uDDCD‍♀️",title:"Woman Standing"},{emoji:"\uD83E\uDDCE",title:"Person Kneeling"},{emoji:"\uD83E\uDDCE‍♂️",title:"Man Kneeling"},{emoji:"\uD83E\uDDCE‍♀️",title:"Woman Kneeling"},{emoji:"\uD83E\uDDD1‍\uD83E\uDDAF",title:"Person with White Cane"},{emoji:"\uD83D\uDC68‍\uD83E\uDDAF",title:"Man with White Cane"},{emoji:"\uD83D\uDC69‍\uD83E\uDDAF",title:"Woman with White Cane"},{emoji:"\uD83E\uDDD1‍\uD83E\uDDBC",title:"Person in Motorized Wheelchair"},{emoji:"\uD83D\uDC68‍\uD83E\uDDBC",title:"Man in Motorized Wheelchair"},{emoji:"\uD83D\uDC69‍\uD83E\uDDBC",title:"Woman in Motorized Wheelchair"},{emoji:"\uD83E\uDDD1‍\uD83E\uDDBD",title:"Person in Manual Wheelchair"},{emoji:"\uD83D\uDC68‍\uD83E\uDDBD",title:"Man in Manual Wheelchair"},{emoji:"\uD83D\uDC69‍\uD83E\uDDBD",title:"Woman in Manual Wheelchair"},{emoji:"\uD83C\uDFC3",title:"Person Running"},{emoji:"\uD83C\uDFC3‍♂️",title:"Man Running"},{emoji:"\uD83C\uDFC3‍♀️",title:"Woman Running"},{emoji:"\uD83D\uDC83",title:"Woman Dancing"},{emoji:"\uD83D\uDD7A",title:"Man Dancing"},{emoji:"\uD83D\uDD74️",title:"Person in Suit Levitating"},{emoji:"\uD83D\uDC6F",title:"People with Bunny Ears"},{emoji:"\uD83D\uDC6F‍♂️",title:"Men with Bunny Ears"},{emoji:"\uD83D\uDC6F‍♀️",title:"Women with Bunny Ears"},{emoji:"\uD83E\uDDD6",title:"Person in Steamy Room"},{emoji:"\uD83E\uDDD6‍♂️",title:"Man in Steamy Room"},{emoji:"\uD83E\uDDD6‍♀️",title:"Woman in Steamy Room"},{emoji:"\uD83E\uDDD8",title:"Person in Lotus Position"},{emoji:"\uD83E\uDDD1‍\uD83E\uDD1D‍\uD83E\uDDD1",title:"People Holding Hands"},{emoji:"\uD83D\uDC6D",title:"Women Holding Hands"},{emoji:"\uD83D\uDC6B",title:"Woman and Man Holding Hands"},{emoji:"\uD83D\uDC6C",title:"Men Holding Hands"},{emoji:"\uD83D\uDC8F",title:"Kiss"},{emoji:"\uD83D\uDC69‍❤️‍\uD83D\uDC8B‍\uD83D\uDC68",title:"Kiss: Woman, Man"},{emoji:"\uD83D\uDC68‍❤️‍\uD83D\uDC8B‍\uD83D\uDC68",title:"Kiss: Man, Man"},{emoji:"\uD83D\uDC69‍❤️‍\uD83D\uDC8B‍\uD83D\uDC69",title:"Kiss: Woman, Woman"},{emoji:"\uD83D\uDC91",title:"Couple with Heart"},{emoji:"\uD83D\uDC69‍❤️‍\uD83D\uDC68",title:"Couple with Heart: Woman, Man"},{emoji:"\uD83D\uDC68‍❤️‍\uD83D\uDC68",title:"Couple with Heart: Man, Man"},{emoji:"\uD83D\uDC69‍❤️‍\uD83D\uDC69",title:"Couple with Heart: Woman, Woman"},{emoji:"\uD83D\uDC6A",title:"Family"},{emoji:"\uD83D\uDC68‍\uD83D\uDC69‍\uD83D\uDC66",title:"Family: Man, Woman, Boy"},{emoji:"\uD83D\uDC68‍\uD83D\uDC69‍\uD83D\uDC67",title:"Family: Man, Woman, Girl"},{emoji:"\uD83D\uDC68‍\uD83D\uDC69‍\uD83D\uDC67‍\uD83D\uDC66",title:"Family: Man, Woman, Girl, Boy"},{emoji:"\uD83D\uDC68‍\uD83D\uDC69‍\uD83D\uDC66‍\uD83D\uDC66",title:"Family: Man, Woman, Boy, Boy"},{emoji:"\uD83D\uDC68‍\uD83D\uDC69‍\uD83D\uDC67‍\uD83D\uDC67",title:"Family: Man, Woman, Girl, Girl"},{emoji:"\uD83D\uDC68‍\uD83D\uDC68‍\uD83D\uDC66",title:"Family: Man, Man, Boy"},{emoji:"\uD83D\uDC68‍\uD83D\uDC68‍\uD83D\uDC67",title:"Family: Man, Man, Girl"},{emoji:"\uD83D\uDC68‍\uD83D\uDC68‍\uD83D\uDC67‍\uD83D\uDC66",title:"Family: Man, Man, Girl, Boy"},{emoji:"\uD83D\uDC68‍\uD83D\uDC68‍\uD83D\uDC66‍\uD83D\uDC66",title:"Family: Man, Man, Boy, Boy"},{emoji:"\uD83D\uDC68‍\uD83D\uDC68‍\uD83D\uDC67‍\uD83D\uDC67",title:"Family: Man, Man, Girl, Girl"},{emoji:"\uD83D\uDC69‍\uD83D\uDC69‍\uD83D\uDC66",title:"Family: Woman, Woman, Boy"},{emoji:"\uD83D\uDC69‍\uD83D\uDC69‍\uD83D\uDC67",title:"Family: Woman, Woman, Girl"},{emoji:"\uD83D\uDC69‍\uD83D\uDC69‍\uD83D\uDC67‍\uD83D\uDC66",title:"Family: Woman, Woman, Girl, Boy"},{emoji:"\uD83D\uDC69‍\uD83D\uDC69‍\uD83D\uDC66‍\uD83D\uDC66",title:"Family: Woman, Woman, Boy, Boy"},{emoji:"\uD83D\uDC69‍\uD83D\uDC69‍\uD83D\uDC67‍\uD83D\uDC67",title:"Family: Woman, Woman, Girl, Girl"},{emoji:"\uD83D\uDC68‍\uD83D\uDC66",title:"Family: Man, Boy"},{emoji:"\uD83D\uDC68‍\uD83D\uDC66‍\uD83D\uDC66",title:"Family: Man, Boy, Boy"},{emoji:"\uD83D\uDC68‍\uD83D\uDC67",title:"Family: Man, Girl"},{emoji:"\uD83D\uDC68‍\uD83D\uDC67‍\uD83D\uDC66",title:"Family: Man, Girl, Boy"},{emoji:"\uD83D\uDC68‍\uD83D\uDC67‍\uD83D\uDC67",title:"Family: Man, Girl, Girl"},{emoji:"\uD83D\uDC69‍\uD83D\uDC66",title:"Family: Woman, Boy"},{emoji:"\uD83D\uDC69‍\uD83D\uDC66‍\uD83D\uDC66",title:"Family: Woman, Boy, Boy"},{emoji:"\uD83D\uDC69‍\uD83D\uDC67",title:"Family: Woman, Girl"},{emoji:"\uD83D\uDC69‍\uD83D\uDC67‍\uD83D\uDC66",title:"Family: Woman, Girl, Boy"},{emoji:"\uD83D\uDC69‍\uD83D\uDC67‍\uD83D\uDC67",title:"Family: Woman, Girl, Girl"},{emoji:"\uD83D\uDDE3️",title:"Speaking Head"},{emoji:"\uD83D\uDC64",title:"Bust in Silhouette"},{emoji:"\uD83D\uDC65",title:"Busts in Silhouette"},{emoji:"\uD83E\uDEC2",title:"People Hugging"},{emoji:"\uD83D\uDC63",title:"Footprints"},{emoji:"\uD83E\uDDF3",title:"Luggage"},{emoji:"\uD83C\uDF02",title:"Closed Umbrella"},{emoji:"☂️",title:"Umbrella"},{emoji:"\uD83C\uDF83",title:"Jack-O-Lantern"},{emoji:"\uD83E\uDDF5",title:"Thread"},{emoji:"\uD83E\uDDF6",title:"Yarn"},{emoji:"\uD83D\uDC53",title:"Glasses"},{emoji:"\uD83D\uDD76️",title:"Sunglasses"},{emoji:"\uD83E\uDD7D",title:"Goggles"},{emoji:"\uD83E\uDD7C",title:"Lab Coat"},{emoji:"\uD83E\uDDBA",title:"Safety Vest"},{emoji:"\uD83D\uDC54",title:"Necktie"},{emoji:"\uD83D\uDC55",title:"T-Shirt"},{emoji:"\uD83D\uDC56",title:"Jeans"},{emoji:"\uD83E\uDDE3",title:"Scarf"},{emoji:"\uD83E\uDDE4",title:"Gloves"},{emoji:"\uD83E\uDDE5",title:"Coat"},{emoji:"\uD83E\uDDE6",title:"Socks"},{emoji:"\uD83D\uDC57",title:"Dress"},{emoji:"\uD83D\uDC58",title:"Kimono"},{emoji:"\uD83E\uDD7B",title:"Sari"},{emoji:"\uD83E\uDE71",title:"One-Piece Swimsuit"},{emoji:"\uD83E\uDE72",title:"Briefs"},{emoji:"\uD83E\uDE73",title:"Shorts"},{emoji:"\uD83D\uDC59",title:"Bikini"},{emoji:"\uD83D\uDC5A",title:"Woman’s Clothes"},{emoji:"\uD83D\uDC5B",title:"Purse"},{emoji:"\uD83D\uDC5C",title:"Handbag"},{emoji:"\uD83D\uDC5D",title:"Clutch Bag"},{emoji:"\uD83C\uDF92",title:"Backpack"},{emoji:"\uD83E\uDE74",title:"Thong Sandal"},{emoji:"\uD83D\uDC5E",title:"Man’s Shoe"},{emoji:"\uD83D\uDC5F",title:"Running Shoe"},{emoji:"\uD83E\uDD7E",title:"Hiking Boot"},{emoji:"\uD83E\uDD7F",title:"Flat Shoe"},{emoji:"\uD83D\uDC60",title:"High-Heeled Shoe"},{emoji:"\uD83D\uDC61",title:"Woman’s Sandal"},{emoji:"\uD83E\uDE70",title:"Ballet Shoes"},{emoji:"\uD83D\uDC62",title:"Woman’s Boot"},{emoji:"\uD83D\uDC51",title:"Crown"},{emoji:"\uD83D\uDC52",title:"Woman’s Hat"},{emoji:"\uD83C\uDFA9",title:"Top Hat"},{emoji:"\uD83C\uDF93",title:"Graduation Cap"},{emoji:"\uD83E\uDDE2",title:"Billed Cap"},{emoji:"\uD83E\uDE96",title:"Military Helmet"},{emoji:"⛑️",title:"Rescue Worker’s Helmet"},{emoji:"\uD83D\uDC84",title:"Lipstick"},{emoji:"\uD83D\uDC8D",title:"Ring"},{emoji:"\uD83D\uDCBC",title:"Briefcase"},{emoji:"\uD83E\uDE78",title:"Drop of Blood"}],Nature:[{emoji:"\uD83D\uDE48",title:"See-No-Evil Monkey"},{emoji:"\uD83D\uDE49",title:"Hear-No-Evil Monkey"},{emoji:"\uD83D\uDE4A",title:"Speak-No-Evil Monkey"},{emoji:"\uD83D\uDCA5",title:"Collision"},{emoji:"\uD83D\uDCAB",title:"Dizzy"},{emoji:"\uD83D\uDCA6",title:"Sweat Droplets"},{emoji:"\uD83D\uDCA8",title:"Dashing Away"},{emoji:"\uD83D\uDC35",title:"Monkey Face"},{emoji:"\uD83D\uDC12",title:"Monkey"},{emoji:"\uD83E\uDD8D",title:"Gorilla"},{emoji:"\uD83E\uDDA7",title:"Orangutan"},{emoji:"\uD83D\uDC36",title:"Dog Face"},{emoji:"\uD83D\uDC15",title:"Dog"},{emoji:"\uD83E\uDDAE",title:"Guide Dog"},{emoji:"\uD83D\uDC15‍\uD83E\uDDBA",title:"Service Dog"},{emoji:"\uD83D\uDC29",title:"Poodle"},{emoji:"\uD83D\uDC3A",title:"Wolf"},{emoji:"\uD83E\uDD8A",title:"Fox"},{emoji:"\uD83E\uDD9D",title:"Raccoon"},{emoji:"\uD83D\uDC31",title:"Cat Face"},{emoji:"\uD83D\uDC08",title:"Cat"},{emoji:"\uD83D\uDC08‍⬛",title:"Black Cat"},{emoji:"\uD83E\uDD81",title:"Lion"},{emoji:"\uD83D\uDC2F",title:"Tiger Face"},{emoji:"\uD83D\uDC05",title:"Tiger"},{emoji:"\uD83D\uDC06",title:"Leopard"},{emoji:"\uD83D\uDC34",title:"Horse Face"},{emoji:"\uD83D\uDC0E",title:"Horse"},{emoji:"\uD83E\uDD84",title:"Unicorn"},{emoji:"\uD83E\uDD93",title:"Zebra"},{emoji:"\uD83E\uDD8C",title:"Deer"},{emoji:"\uD83E\uDDAC",title:"Bison"},{emoji:"\uD83D\uDC2E",title:"Cow Face"},{emoji:"\uD83D\uDC02",title:"Ox"},{emoji:"\uD83D\uDC03",title:"Water Buffalo"},{emoji:"\uD83D\uDC04",title:"Cow"},{emoji:"\uD83D\uDC37",title:"Pig Face"},{emoji:"\uD83D\uDC16",title:"Pig"},{emoji:"\uD83D\uDC17",title:"Boar"},{emoji:"\uD83D\uDC3D",title:"Pig Nose"},{emoji:"\uD83D\uDC0F",title:"Ram"},{emoji:"\uD83D\uDC11",title:"Ewe"},{emoji:"\uD83D\uDC10",title:"Goat"},{emoji:"\uD83D\uDC2A",title:"Camel"},{emoji:"\uD83D\uDC2B",title:"Two-Hump Camel"},{emoji:"\uD83E\uDD99",title:"Llama"},{emoji:"\uD83E\uDD92",title:"Giraffe"},{emoji:"\uD83D\uDC18",title:"Elephant"},{emoji:"\uD83E\uDDA3",title:"Mammoth"},{emoji:"\uD83E\uDD8F",title:"Rhinoceros"},{emoji:"\uD83E\uDD9B",title:"Hippopotamus"},{emoji:"\uD83D\uDC2D",title:"Mouse Face"},{emoji:"\uD83D\uDC01",title:"Mouse"},{emoji:"\uD83D\uDC00",title:"Rat"},{emoji:"\uD83D\uDC39",title:"Hamster"},{emoji:"\uD83D\uDC30",title:"Rabbit Face"},{emoji:"\uD83D\uDC07",title:"Rabbit"},{emoji:"\uD83D\uDC3F️",title:"Chipmunk"},{emoji:"\uD83E\uDDAB",title:"Beaver"},{emoji:"\uD83E\uDD94",title:"Hedgehog"},{emoji:"\uD83E\uDD87",title:"Bat"},{emoji:"\uD83D\uDC3B",title:"Bear"},{emoji:"\uD83D\uDC3B‍❄️",title:"Polar Bear"},{emoji:"\uD83D\uDC28",title:"Koala"},{emoji:"\uD83D\uDC3C",title:"Panda"},{emoji:"\uD83E\uDDA5",title:"Sloth"},{emoji:"\uD83E\uDDA6",title:"Otter"},{emoji:"\uD83E\uDDA8",title:"Skunk"},{emoji:"\uD83E\uDD98",title:"Kangaroo"},{emoji:"\uD83E\uDDA1",title:"Badger"},{emoji:"\uD83D\uDC3E",title:"Paw Prints"},{emoji:"\uD83E\uDD83",title:"Turkey"},{emoji:"\uD83D\uDC14",title:"Chicken"},{emoji:"\uD83D\uDC13",title:"Rooster"},{emoji:"\uD83D\uDC23",title:"Hatching Chick"},{emoji:"\uD83D\uDC24",title:"Baby Chick"},{emoji:"\uD83D\uDC25",title:"Front-Facing Baby Chick"},{emoji:"\uD83D\uDC26",title:"Bird"},{emoji:"\uD83D\uDC27",title:"Penguin"},{emoji:"\uD83D\uDD4A️",title:"Dove"},{emoji:"\uD83E\uDD85",title:"Eagle"},{emoji:"\uD83E\uDD86",title:"Duck"},{emoji:"\uD83E\uDDA2",title:"Swan"},{emoji:"\uD83E\uDD89",title:"Owl"},{emoji:"\uD83E\uDDA4",title:"Dodo"},{emoji:"\uD83E\uDEB6",title:"Feather"},{emoji:"\uD83E\uDDA9",title:"Flamingo"},{emoji:"\uD83E\uDD9A",title:"Peacock"},{emoji:"\uD83E\uDD9C",title:"Parrot"},{emoji:"\uD83D\uDC38",title:"Frog"},{emoji:"\uD83D\uDC0A",title:"Crocodile"},{emoji:"\uD83D\uDC22",title:"Turtle"},{emoji:"\uD83E\uDD8E",title:"Lizard"},{emoji:"\uD83D\uDC0D",title:"Snake"},{emoji:"\uD83D\uDC32",title:"Dragon Face"},{emoji:"\uD83D\uDC09",title:"Dragon"},{emoji:"\uD83E\uDD95",title:"Sauropod"},{emoji:"\uD83E\uDD96",title:"T-Rex"},{emoji:"\uD83D\uDC33",title:"Spouting Whale"},{emoji:"\uD83D\uDC0B",title:"Whale"},{emoji:"\uD83D\uDC2C",title:"Dolphin"},{emoji:"\uD83E\uDDAD",title:"Seal"},{emoji:"\uD83D\uDC1F",title:"Fish"},{emoji:"\uD83D\uDC20",title:"Tropical Fish"},{emoji:"\uD83D\uDC21",title:"Blowfish"},{emoji:"\uD83E\uDD88",title:"Shark"},{emoji:"\uD83D\uDC19",title:"Octopus"},{emoji:"\uD83D\uDC1A",title:"Spiral Shell"},{emoji:"\uD83D\uDC0C",title:"Snail"},{emoji:"\uD83E\uDD8B",title:"Butterfly"},{emoji:"\uD83D\uDC1B",title:"Bug"},{emoji:"\uD83D\uDC1C",title:"Ant"},{emoji:"\uD83D\uDC1D",title:"Honeybee"},{emoji:"\uD83E\uDEB2",title:"Beetle"},{emoji:"\uD83D\uDC1E",title:"Lady Beetle"},{emoji:"\uD83E\uDD97",title:"Cricket"},{emoji:"\uD83E\uDEB3",title:"Cockroach"},{emoji:"\uD83D\uDD77️",title:"Spider"},{emoji:"\uD83D\uDD78️",title:"Spider Web"},{emoji:"\uD83E\uDD82",title:"Scorpion"},{emoji:"\uD83E\uDD9F",title:"Mosquito"},{emoji:"\uD83E\uDEB0",title:"Fly"},{emoji:"\uD83E\uDEB1",title:"Worm"},{emoji:"\uD83E\uDDA0",title:"Microbe"},{emoji:"\uD83D\uDC90",title:"Bouquet"},{emoji:"\uD83C\uDF38",title:"Cherry Blossom"},{emoji:"\uD83D\uDCAE",title:"White Flower"},{emoji:"\uD83C\uDFF5️",title:"Rosette"},{emoji:"\uD83C\uDF39",title:"Rose"},{emoji:"\uD83E\uDD40",title:"Wilted Flower"},{emoji:"\uD83C\uDF3A",title:"Hibiscus"},{emoji:"\uD83C\uDF3B",title:"Sunflower"},{emoji:"\uD83C\uDF3C",title:"Blossom"},{emoji:"\uD83C\uDF37",title:"Tulip"},{emoji:"\uD83C\uDF31",title:"Seedling"},{emoji:"\uD83E\uDEB4",title:"Potted Plant"},{emoji:"\uD83C\uDF32",title:"Evergreen Tree"},{emoji:"\uD83C\uDF33",title:"Deciduous Tree"},{emoji:"\uD83C\uDF34",title:"Palm Tree"},{emoji:"\uD83C\uDF35",title:"Cactus"},{emoji:"\uD83C\uDF3E",title:"Sheaf of Rice"},{emoji:"\uD83C\uDF3F",title:"Herb"},{emoji:"☘️",title:"Shamrock"},{emoji:"\uD83C\uDF40",title:"Four Leaf Clover"},{emoji:"\uD83C\uDF41",title:"Maple Leaf"},{emoji:"\uD83C\uDF42",title:"Fallen Leaf"},{emoji:"\uD83C\uDF43",title:"Leaf Fluttering in Wind"},{emoji:"\uD83C\uDF44",title:"Mushroom"},{emoji:"\uD83C\uDF30",title:"Chestnut"},{emoji:"\uD83E\uDD80",title:"Crab"},{emoji:"\uD83E\uDD9E",title:"Lobster"},{emoji:"\uD83E\uDD90",title:"Shrimp"},{emoji:"\uD83E\uDD91",title:"Squid"},{emoji:"\uD83C\uDF0D",title:"Globe Showing Europe-Africa"},{emoji:"\uD83C\uDF0E",title:"Globe Showing Americas"},{emoji:"\uD83C\uDF0F",title:"Globe Showing Asia-Australia"},{emoji:"\uD83C\uDF10",title:"Globe with Meridians"},{emoji:"\uD83E\uDEA8",title:"Rock"},{emoji:"\uD83C\uDF11",title:"New Moon"},{emoji:"\uD83C\uDF12",title:"Waxing Crescent Moon"},{emoji:"\uD83C\uDF13",title:"First Quarter Moon"},{emoji:"\uD83C\uDF14",title:"Waxing Gibbous Moon"},{emoji:"\uD83C\uDF15",title:"Full Moon"},{emoji:"\uD83C\uDF16",title:"Waning Gibbous Moon"},{emoji:"\uD83C\uDF17",title:"Last Quarter Moon"},{emoji:"\uD83C\uDF18",title:"Waning Crescent Moon"},{emoji:"\uD83C\uDF19",title:"Crescent Moon"},{emoji:"\uD83C\uDF1A",title:"New Moon Face"},{emoji:"\uD83C\uDF1B",title:"First Quarter Moon Face"},{emoji:"\uD83C\uDF1C",title:"Last Quarter Moon Face"},{emoji:"☀️",title:"Sun"},{emoji:"\uD83C\uDF1D",title:"Full Moon Face"},{emoji:"\uD83C\uDF1E",title:"Sun with Face"},{emoji:"⭐",title:"Star"},{emoji:"\uD83C\uDF1F",title:"Glowing Star"},{emoji:"\uD83C\uDF20",title:"Shooting Star"},{emoji:"☁️",title:"Cloud"},{emoji:"⛅",title:"Sun Behind Cloud"},{emoji:"⛈️",title:"Cloud with Lightning and Rain"},{emoji:"\uD83C\uDF24️",title:"Sun Behind Small Cloud"},{emoji:"\uD83C\uDF25️",title:"Sun Behind Large Cloud"},{emoji:"\uD83C\uDF26️",title:"Sun Behind Rain Cloud"},{emoji:"\uD83C\uDF27️",title:"Cloud with Rain"},{emoji:"\uD83C\uDF28️",title:"Cloud with Snow"},{emoji:"\uD83C\uDF29️",title:"Cloud with Lightning"},{emoji:"\uD83C\uDF2A️",title:"Tornado"},{emoji:"\uD83C\uDF2B️",title:"Fog"},{emoji:"\uD83C\uDF2C️",title:"Wind Face"},{emoji:"\uD83C\uDF08",title:"Rainbow"},{emoji:"☂️",title:"Umbrella"},{emoji:"☔",title:"Umbrella with Rain Drops"},{emoji:"⚡",title:"High Voltage"},{emoji:"❄️",title:"Snowflake"},{emoji:"☃️",title:"Snowman"},{emoji:"⛄",title:"Snowman Without Snow"},{emoji:"☄️",title:"Comet"},{emoji:"\uD83D\uDD25",title:"Fire"},{emoji:"\uD83D\uDCA7",title:"Droplet"},{emoji:"\uD83C\uDF0A",title:"Water Wave"},{emoji:"\uD83C\uDF84",title:"Christmas Tree"},{emoji:"✨",title:"Sparkles"},{emoji:"\uD83C\uDF8B",title:"Tanabata Tree"},{emoji:"\uD83C\uDF8D",title:"Pine Decoration"}],"Food-dring":[{emoji:"\uD83C\uDF47",title:"Grapes"},{emoji:"\uD83C\uDF48",title:"Melon"},{emoji:"\uD83C\uDF49",title:"Watermelon"},{emoji:"\uD83C\uDF4A",title:"Tangerine"},{emoji:"\uD83C\uDF4B",title:"Lemon"},{emoji:"\uD83C\uDF4C",title:"Banana"},{emoji:"\uD83C\uDF4D",title:"Pineapple"},{emoji:"\uD83E\uDD6D",title:"Mango"},{emoji:"\uD83C\uDF4E",title:"Red Apple"},{emoji:"\uD83C\uDF4F",title:"Green Apple"},{emoji:"\uD83C\uDF50",title:"Pear"},{emoji:"\uD83C\uDF51",title:"Peach"},{emoji:"\uD83C\uDF52",title:"Cherries"},{emoji:"\uD83C\uDF53",title:"Strawberry"},{emoji:"\uD83E\uDED0",title:"Blueberries"},{emoji:"\uD83E\uDD5D",title:"Kiwi Fruit"},{emoji:"\uD83C\uDF45",title:"Tomato"},{emoji:"\uD83E\uDED2",title:"Olive"},{emoji:"\uD83E\uDD65",title:"Coconut"},{emoji:"\uD83E\uDD51",title:"Avocado"},{emoji:"\uD83C\uDF46",title:"Eggplant"},{emoji:"\uD83E\uDD54",title:"Potato"},{emoji:"\uD83E\uDD55",title:"Carrot"},{emoji:"\uD83C\uDF3D",title:"Ear of Corn"},{emoji:"\uD83C\uDF36️",title:"Hot Pepper"},{emoji:"\uD83E\uDED1",title:"Bell Pepper"},{emoji:"\uD83E\uDD52",title:"Cucumber"},{emoji:"\uD83E\uDD6C",title:"Leafy Green"},{emoji:"\uD83E\uDD66",title:"Broccoli"},{emoji:"\uD83E\uDDC4",title:"Garlic"},{emoji:"\uD83E\uDDC5",title:"Onion"},{emoji:"\uD83C\uDF44",title:"Mushroom"},{emoji:"\uD83E\uDD5C",title:"Peanuts"},{emoji:"\uD83C\uDF30",title:"Chestnut"},{emoji:"\uD83C\uDF5E",title:"Bread"},{emoji:"\uD83E\uDD50",title:"Croissant"},{emoji:"\uD83E\uDD56",title:"Baguette Bread"},{emoji:"\uD83E\uDED3",title:"Flatbread"},{emoji:"\uD83E\uDD68",title:"Pretzel"},{emoji:"\uD83E\uDD6F",title:"Bagel"},{emoji:"\uD83E\uDD5E",title:"Pancakes"},{emoji:"\uD83E\uDDC7",title:"Waffle"},{emoji:"\uD83E\uDDC0",title:"Cheese Wedge"},{emoji:"\uD83C\uDF56",title:"Meat on Bone"},{emoji:"\uD83C\uDF57",title:"Poultry Leg"},{emoji:"\uD83E\uDD69",title:"Cut of Meat"},{emoji:"\uD83E\uDD53",title:"Bacon"},{emoji:"\uD83C\uDF54",title:"Hamburger"},{emoji:"\uD83C\uDF5F",title:"French Fries"},{emoji:"\uD83C\uDF55",title:"Pizza"},{emoji:"\uD83C\uDF2D",title:"Hot Dog"},{emoji:"\uD83E\uDD6A",title:"Sandwich"},{emoji:"\uD83C\uDF2E",title:"Taco"},{emoji:"\uD83C\uDF2F",title:"Burrito"},{emoji:"\uD83E\uDED4",title:"Tamale"},{emoji:"\uD83E\uDD59",title:"Stuffed Flatbread"},{emoji:"\uD83E\uDDC6",title:"Falafel"},{emoji:"\uD83E\uDD5A",title:"Egg"},{emoji:"\uD83C\uDF73",title:"Cooking"},{emoji:"\uD83E\uDD58",title:"Shallow Pan of Food"},{emoji:"\uD83C\uDF72",title:"Pot of Food"},{emoji:"\uD83E\uDED5",title:"Fondue"},{emoji:"\uD83E\uDD63",title:"Bowl with Spoon"},{emoji:"\uD83E\uDD57",title:"Green Salad"},{emoji:"\uD83C\uDF7F",title:"Popcorn"},{emoji:"\uD83E\uDDC8",title:"Butter"},{emoji:"\uD83E\uDDC2",title:"Salt"},{emoji:"\uD83E\uDD6B",title:"Canned Food"},{emoji:"\uD83C\uDF71",title:"Bento Box"},{emoji:"\uD83C\uDF58",title:"Rice Cracker"},{emoji:"\uD83C\uDF59",title:"Rice Ball"},{emoji:"\uD83C\uDF5A",title:"Cooked Rice"},{emoji:"\uD83C\uDF5B",title:"Curry Rice"},{emoji:"\uD83C\uDF5C",title:"Steaming Bowl"},{emoji:"\uD83C\uDF5D",title:"Spaghetti"},{emoji:"\uD83C\uDF60",title:"Roasted Sweet Potato"},{emoji:"\uD83C\uDF62",title:"Oden"},{emoji:"\uD83C\uDF63",title:"Sushi"},{emoji:"\uD83C\uDF64",title:"Fried Shrimp"},{emoji:"\uD83C\uDF65",title:"Fish Cake with Swirl"},{emoji:"\uD83E\uDD6E",title:"Moon Cake"},{emoji:"\uD83C\uDF61",title:"Dango"},{emoji:"\uD83E\uDD5F",title:"Dumpling"},{emoji:"\uD83E\uDD60",title:"Fortune Cookie"},{emoji:"\uD83E\uDD61",title:"Takeout Box"},{emoji:"\uD83E\uDDAA",title:"Oyster"},{emoji:"\uD83C\uDF66",title:"Soft Ice Cream"},{emoji:"\uD83C\uDF67",title:"Shaved Ice"},{emoji:"\uD83C\uDF68",title:"Ice Cream"},{emoji:"\uD83C\uDF69",title:"Doughnut"},{emoji:"\uD83C\uDF6A",title:"Cookie"},{emoji:"\uD83C\uDF82",title:"Birthday Cake"},{emoji:"\uD83C\uDF70",title:"Shortcake"},{emoji:"\uD83E\uDDC1",title:"Cupcake"},{emoji:"\uD83E\uDD67",title:"Pie"},{emoji:"\uD83C\uDF6B",title:"Chocolate Bar"},{emoji:"\uD83C\uDF6C",title:"Candy"},{emoji:"\uD83C\uDF6D",title:"Lollipop"},{emoji:"\uD83C\uDF6E",title:"Custard"},{emoji:"\uD83C\uDF6F",title:"Honey Pot"},{emoji:"\uD83C\uDF7C",title:"Baby Bottle"},{emoji:"\uD83E\uDD5B",title:"Glass of Milk"},{emoji:"☕",title:"Hot Beverage"},{emoji:"\uD83E\uDED6",title:"Teapot"},{emoji:"\uD83C\uDF75",title:"Teacup Without Handle"},{emoji:"\uD83C\uDF76",title:"Sake"},{emoji:"\uD83C\uDF7E",title:"Bottle with Popping Cork"},{emoji:"\uD83C\uDF77",title:"Wine Glass"},{emoji:"\uD83C\uDF78",title:"Cocktail Glass"},{emoji:"\uD83C\uDF79",title:"Tropical Drink"},{emoji:"\uD83C\uDF7A",title:"Beer Mug"},{emoji:"\uD83C\uDF7B",title:"Clinking Beer Mugs"},{emoji:"\uD83E\uDD42",title:"Clinking Glasses"},{emoji:"\uD83E\uDD43",title:"Tumbler Glass"},{emoji:"\uD83E\uDD64",title:"Cup with Straw"},{emoji:"\uD83E\uDDCB",title:"Bubble Tea"},{emoji:"\uD83E\uDDC3",title:"Beverage Box"},{emoji:"\uD83E\uDDC9",title:"Mate"},{emoji:"\uD83E\uDDCA",title:"Ice"},{emoji:"\uD83E\uDD62",title:"Chopsticks"},{emoji:"\uD83C\uDF7D️",title:"Fork and Knife with Plate"},{emoji:"\uD83C\uDF74",title:"Fork and Knife"},{emoji:"\uD83E\uDD44",title:"Spoon"}],Activity:[{emoji:"\uD83D\uDD74️",title:"Person in Suit Levitating"},{emoji:"\uD83E\uDDD7",title:"Person Climbing"},{emoji:"\uD83E\uDDD7‍♂️",title:"Man Climbing"},{emoji:"\uD83E\uDDD7‍♀️",title:"Woman Climbing"},{emoji:"\uD83E\uDD3A",title:"Person Fencing"},{emoji:"\uD83C\uDFC7",title:"Horse Racing"},{emoji:"⛷️",title:"Skier"},{emoji:"\uD83C\uDFC2",title:"Snowboarder"},{emoji:"\uD83C\uDFCC️",title:"Person Golfing"},{emoji:"\uD83C\uDFCC️‍♂️",title:"Man Golfing"},{emoji:"\uD83C\uDFCC️‍♀️",title:"Woman Golfing"},{emoji:"\uD83C\uDFC4",title:"Person Surfing"},{emoji:"\uD83C\uDFC4‍♂️",title:"Man Surfing"},{emoji:"\uD83C\uDFC4‍♀️",title:"Woman Surfing"},{emoji:"\uD83D\uDEA3",title:"Person Rowing Boat"},{emoji:"\uD83D\uDEA3‍♂️",title:"Man Rowing Boat"},{emoji:"\uD83D\uDEA3‍♀️",title:"Woman Rowing Boat"},{emoji:"\uD83C\uDFCA",title:"Person Swimming"},{emoji:"\uD83C\uDFCA‍♂️",title:"Man Swimming"},{emoji:"\uD83C\uDFCA‍♀️",title:"Woman Swimming"},{emoji:"⛹️",title:"Person Bouncing Ball"},{emoji:"⛹️‍♂️",title:"Man Bouncing Ball"},{emoji:"⛹️‍♀️",title:"Woman Bouncing Ball"},{emoji:"\uD83C\uDFCB️",title:"Person Lifting Weights"},{emoji:"\uD83C\uDFCB️‍♂️",title:"Man Lifting Weights"},{emoji:"\uD83C\uDFCB️‍♀️",title:"Woman Lifting Weights"},{emoji:"\uD83D\uDEB4",title:"Person Biking"},{emoji:"\uD83D\uDEB4‍♂️",title:"Man Biking"},{emoji:"\uD83D\uDEB4‍♀️",title:"Woman Biking"},{emoji:"\uD83D\uDEB5",title:"Person Mountain Biking"},{emoji:"\uD83D\uDEB5‍♂️",title:"Man Mountain Biking"},{emoji:"\uD83D\uDEB5‍♀️",title:"Woman Mountain Biking"},{emoji:"\uD83E\uDD38",title:"Person Cartwheeling"},{emoji:"\uD83E\uDD38‍♂️",title:"Man Cartwheeling"},{emoji:"\uD83E\uDD38‍♀️",title:"Woman Cartwheeling"},{emoji:"\uD83E\uDD3C",title:"People Wrestling"},{emoji:"\uD83E\uDD3C‍♂️",title:"Men Wrestling"},{emoji:"\uD83E\uDD3C‍♀️",title:"Women Wrestling"},{emoji:"\uD83E\uDD3D",title:"Person Playing Water Polo"},{emoji:"\uD83E\uDD3D‍♂️",title:"Man Playing Water Polo"},{emoji:"\uD83E\uDD3D‍♀️",title:"Woman Playing Water Polo"},{emoji:"\uD83E\uDD3E",title:"Person Playing Handball"},{emoji:"\uD83E\uDD3E‍♂️",title:"Man Playing Handball"},{emoji:"\uD83E\uDD3E‍♀️",title:"Woman Playing Handball"},{emoji:"\uD83E\uDD39",title:"Person Juggling"},{emoji:"\uD83E\uDD39‍♂️",title:"Man Juggling"},{emoji:"\uD83E\uDD39‍♀️",title:"Woman Juggling"},{emoji:"\uD83E\uDDD8",title:"Person in Lotus Position"},{emoji:"\uD83E\uDDD8‍♂️",title:"Man in Lotus Position"},{emoji:"\uD83E\uDDD8‍♀️",title:"Woman in Lotus Position"},{emoji:"\uD83C\uDFAA",title:"Circus Tent"},{emoji:"\uD83D\uDEF9",title:"Skateboard"},{emoji:"\uD83D\uDEFC",title:"Roller Skate"},{emoji:"\uD83D\uDEF6",title:"Canoe"},{emoji:"\uD83C\uDF97️",title:"Reminder Ribbon"},{emoji:"\uD83C\uDF9F️",title:"Admission Tickets"},{emoji:"\uD83C\uDFAB",title:"Ticket"},{emoji:"\uD83C\uDF96️",title:"Military Medal"},{emoji:"\uD83C\uDFC6",title:"Trophy"},{emoji:"\uD83C\uDFC5",title:"Sports Medal"},{emoji:"\uD83E\uDD47",title:"1st Place Medal"},{emoji:"\uD83E\uDD48",title:"2nd Place Medal"},{emoji:"\uD83E\uDD49",title:"3rd Place Medal"},{emoji:"⚽",title:"Soccer Ball"},{emoji:"⚾",title:"Baseball"},{emoji:"\uD83E\uDD4E",title:"Softball"},{emoji:"\uD83C\uDFC0",title:"Basketball"},{emoji:"\uD83C\uDFD0",title:"Volleyball"},{emoji:"\uD83C\uDFC8",title:"American Football"},{emoji:"\uD83C\uDFC9",title:"Rugby Football"},{emoji:"\uD83C\uDFBE",title:"Tennis"},{emoji:"\uD83E\uDD4F",title:"Flying Disc"},{emoji:"\uD83C\uDFB3",title:"Bowling"},{emoji:"\uD83C\uDFCF",title:"Cricket Game"},{emoji:"\uD83C\uDFD1",title:"Field Hockey"},{emoji:"\uD83C\uDFD2",title:"Ice Hockey"},{emoji:"\uD83E\uDD4D",title:"Lacrosse"},{emoji:"\uD83C\uDFD3",title:"Ping Pong"},{emoji:"\uD83C\uDFF8",title:"Badminton"},{emoji:"\uD83E\uDD4A",title:"Boxing Glove"},{emoji:"\uD83E\uDD4B",title:"Martial Arts Uniform"},{emoji:"\uD83E\uDD45",title:"Goal Net"},{emoji:"⛳",title:"Flag in Hole"},{emoji:"⛸️",title:"Ice Skate"},{emoji:"\uD83C\uDFA3",title:"Fishing Pole"},{emoji:"\uD83C\uDFBD",title:"Running Shirt"},{emoji:"\uD83C\uDFBF",title:"Skis"},{emoji:"\uD83D\uDEF7",title:"Sled"},{emoji:"\uD83E\uDD4C",title:"Curling Stone"},{emoji:"\uD83C\uDFAF",title:"Bullseye"},{emoji:"\uD83C\uDFB1",title:"Pool 8 Ball"},{emoji:"\uD83C\uDFAE",title:"Video Game"},{emoji:"\uD83C\uDFB0",title:"Slot Machine"},{emoji:"\uD83C\uDFB2",title:"Game Die"},{emoji:"\uD83E\uDDE9",title:"Puzzle Piece"},{emoji:"♟️",title:"Chess Pawn"},{emoji:"\uD83C\uDFAD",title:"Performing Arts"},{emoji:"\uD83C\uDFA8",title:"Artist Palette"},{emoji:"\uD83E\uDDF5",title:"Thread"},{emoji:"\uD83E\uDDF6",title:"Yarn"},{emoji:"\uD83C\uDFBC",title:"Musical Score"},{emoji:"\uD83C\uDFA4",title:"Microphone"},{emoji:"\uD83C\uDFA7",title:"Headphone"},{emoji:"\uD83C\uDFB7",title:"Saxophone"},{emoji:"\uD83E\uDE97",title:"Accordion"},{emoji:"\uD83C\uDFB8",title:"Guitar"},{emoji:"\uD83C\uDFB9",title:"Musical Keyboard"},{emoji:"\uD83C\uDFBA",title:"Trumpet"},{emoji:"\uD83C\uDFBB",title:"Violin"},{emoji:"\uD83E\uDD41",title:"Drum"},{emoji:"\uD83E\uDE98",title:"Long Drum"},{emoji:"\uD83C\uDFAC",title:"Clapper Board"},{emoji:"\uD83C\uDFF9",title:"Bow and Arrow"}],"Travel-places":[{emoji:"\uD83D\uDEA3",title:"Person Rowing Boat"},{emoji:"\uD83D\uDDFE",title:"Map of Japan"},{emoji:"\uD83C\uDFD4️",title:"Snow-Capped Mountain"},{emoji:"⛰️",title:"Mountain"},{emoji:"\uD83C\uDF0B",title:"Volcano"},{emoji:"\uD83D\uDDFB",title:"Mount Fuji"},{emoji:"\uD83C\uDFD5️",title:"Camping"},{emoji:"\uD83C\uDFD6️",title:"Beach with Umbrella"},{emoji:"\uD83C\uDFDC️",title:"Desert"},{emoji:"\uD83C\uDFDD️",title:"Desert Island"},{emoji:"\uD83C\uDFDE️",title:"National Park"},{emoji:"\uD83C\uDFDF️",title:"Stadium"},{emoji:"\uD83C\uDFDB️",title:"Classical Building"},{emoji:"\uD83C\uDFD7️",title:"Building Construction"},{emoji:"\uD83D\uDED6",title:"Hut"},{emoji:"\uD83C\uDFD8️",title:"Houses"},{emoji:"\uD83C\uDFDA️",title:"Derelict House"},{emoji:"\uD83C\uDFE0",title:"House"},{emoji:"\uD83C\uDFE1",title:"House with Garden"},{emoji:"\uD83C\uDFE2",title:"Office Building"},{emoji:"\uD83C\uDFE3",title:"Japanese Post Office"},{emoji:"\uD83C\uDFE4",title:"Post Office"},{emoji:"\uD83C\uDFE5",title:"Hospital"},{emoji:"\uD83C\uDFE6",title:"Bank"},{emoji:"\uD83C\uDFE8",title:"Hotel"},{emoji:"\uD83C\uDFE9",title:"Love Hotel"},{emoji:"\uD83C\uDFEA",title:"Convenience Store"},{emoji:"\uD83C\uDFEB",title:"School"},{emoji:"\uD83C\uDFEC",title:"Department Store"},{emoji:"\uD83C\uDFED",title:"Factory"},{emoji:"\uD83C\uDFEF",title:"Japanese Castle"},{emoji:"\uD83C\uDFF0",title:"Castle"},{emoji:"\uD83D\uDC92",title:"Wedding"},{emoji:"\uD83D\uDDFC",title:"Tokyo Tower"},{emoji:"\uD83D\uDDFD",title:"Statue of Liberty"},{emoji:"⛪",title:"Church"},{emoji:"\uD83D\uDD4C",title:"Mosque"},{emoji:"\uD83D\uDED5",title:"Hindu Temple"},{emoji:"\uD83D\uDD4D",title:"Synagogue"},{emoji:"⛩️",title:"Shinto Shrine"},{emoji:"\uD83D\uDD4B",title:"Kaaba"},{emoji:"⛲",title:"Fountain"},{emoji:"⛺",title:"Tent"},{emoji:"\uD83C\uDF01",title:"Foggy"},{emoji:"\uD83C\uDF03",title:"Night with Stars"},{emoji:"\uD83C\uDFD9️",title:"Cityscape"},{emoji:"\uD83C\uDF04",title:"Sunrise Over Mountains"},{emoji:"\uD83C\uDF05",title:"Sunrise"},{emoji:"\uD83C\uDF06",title:"Cityscape at Dusk"},{emoji:"\uD83C\uDF07",title:"Sunset"},{emoji:"\uD83C\uDF09",title:"Bridge at Night"},{emoji:"\uD83C\uDFA0",title:"Carousel Horse"},{emoji:"\uD83C\uDFA1",title:"Ferris Wheel"},{emoji:"\uD83C\uDFA2",title:"Roller Coaster"},{emoji:"\uD83D\uDE82",title:"Locomotive"},{emoji:"\uD83D\uDE83",title:"Railway Car"},{emoji:"\uD83D\uDE84",title:"High-Speed Train"},{emoji:"\uD83D\uDE85",title:"Bullet Train"},{emoji:"\uD83D\uDE86",title:"Train"},{emoji:"\uD83D\uDE87",title:"Metro"},{emoji:"\uD83D\uDE88",title:"Light Rail"},{emoji:"\uD83D\uDE89",title:"Station"},{emoji:"\uD83D\uDE8A",title:"Tram"},{emoji:"\uD83D\uDE9D",title:"Monorail"},{emoji:"\uD83D\uDE9E",title:"Mountain Railway"},{emoji:"\uD83D\uDE8B",title:"Tram Car"},{emoji:"\uD83D\uDE8C",title:"Bus"},{emoji:"\uD83D\uDE8D",title:"Oncoming Bus"},{emoji:"\uD83D\uDE8E",title:"Trolleybus"},{emoji:"\uD83D\uDE90",title:"Minibus"},{emoji:"\uD83D\uDE91",title:"Ambulance"},{emoji:"\uD83D\uDE92",title:"Fire Engine"},{emoji:"\uD83D\uDE93",title:"Police Car"},{emoji:"\uD83D\uDE94",title:"Oncoming Police Car"},{emoji:"\uD83D\uDE95",title:"Taxi"},{emoji:"\uD83D\uDE96",title:"Oncoming Taxi"},{emoji:"\uD83D\uDE97",title:"Automobile"},{emoji:"\uD83D\uDE98",title:"Oncoming Automobile"},{emoji:"\uD83D\uDE99",title:"Sport Utility Vehicle"},{emoji:"\uD83D\uDEFB",title:"Pickup Truck"},{emoji:"\uD83D\uDE9A",title:"Delivery Truck"},{emoji:"\uD83D\uDE9B",title:"Articulated Lorry"},{emoji:"\uD83D\uDE9C",title:"Tractor"},{emoji:"\uD83C\uDFCE️",title:"Racing Car"},{emoji:"\uD83C\uDFCD️",title:"Motorcycle"},{emoji:"\uD83D\uDEF5",title:"Motor Scooter"},{emoji:"\uD83D\uDEFA",title:"Auto Rickshaw"},{emoji:"\uD83D\uDEB2",title:"Bicycle"},{emoji:"\uD83D\uDEF4",title:"Kick Scooter"},{emoji:"\uD83D\uDE8F",title:"Bus Stop"},{emoji:"\uD83D\uDEE3️",title:"Motorway"},{emoji:"\uD83D\uDEE4️",title:"Railway Track"},{emoji:"⛽",title:"Fuel Pump"},{emoji:"\uD83D\uDEA8",title:"Police Car Light"},{emoji:"\uD83D\uDEA5",title:"Horizontal Traffic Light"},{emoji:"\uD83D\uDEA6",title:"Vertical Traffic Light"},{emoji:"\uD83D\uDEA7",title:"Construction"},{emoji:"⚓",title:"Anchor"},{emoji:"⛵",title:"Sailboat"},{emoji:"\uD83D\uDEA4",title:"Speedboat"},{emoji:"\uD83D\uDEF3️",title:"Passenger Ship"},{emoji:"⛴️",title:"Ferry"},{emoji:"\uD83D\uDEE5️",title:"Motor Boat"},{emoji:"\uD83D\uDEA2",title:"Ship"},{emoji:"✈️",title:"Airplane"},{emoji:"\uD83D\uDEE9️",title:"Small Airplane"},{emoji:"\uD83D\uDEEB",title:"Airplane Departure"},{emoji:"\uD83D\uDEEC",title:"Airplane Arrival"},{emoji:"\uD83E\uDE82",title:"Parachute"},{emoji:"\uD83D\uDCBA",title:"Seat"},{emoji:"\uD83D\uDE81",title:"Helicopter"},{emoji:"\uD83D\uDE9F",title:"Suspension Railway"},{emoji:"\uD83D\uDEA0",title:"Mountain Cableway"},{emoji:"\uD83D\uDEA1",title:"Aerial Tramway"},{emoji:"\uD83D\uDEF0️",title:"Satellite"},{emoji:"\uD83D\uDE80",title:"Rocket"},{emoji:"\uD83D\uDEF8",title:"Flying Saucer"},{emoji:"\uD83E\uDE90",title:"Ringed Planet"},{emoji:"\uD83C\uDF20",title:"Shooting Star"},{emoji:"\uD83C\uDF0C",title:"Milky Way"},{emoji:"⛱️",title:"Umbrella on Ground"},{emoji:"\uD83C\uDF86",title:"Fireworks"},{emoji:"\uD83C\uDF87",title:"Sparkler"},{emoji:"\uD83C\uDF91",title:"Moon Viewing Ceremony"},{emoji:"\uD83D\uDCB4",title:"Yen Banknote"},{emoji:"\uD83D\uDCB5",title:"Dollar Banknote"},{emoji:"\uD83D\uDCB6",title:"Euro Banknote"},{emoji:"\uD83D\uDCB7",title:"Pound Banknote"},{emoji:"\uD83D\uDDFF",title:"Moai"},{emoji:"\uD83D\uDEC2",title:"Passport Control"},{emoji:"\uD83D\uDEC3",title:"Customs"},{emoji:"\uD83D\uDEC4",title:"Baggage Claim"},{emoji:"\uD83D\uDEC5",title:"Left Luggage"}],Objects:[{emoji:"\uD83D\uDC8C",title:"Love Letter"},{emoji:"\uD83D\uDD73️",title:"Hole"},{emoji:"\uD83D\uDCA3",title:"Bomb"},{emoji:"\uD83D\uDEC0",title:"Person Taking Bath"},{emoji:"\uD83D\uDECC",title:"Person in Bed"},{emoji:"\uD83D\uDD2A",title:"Kitchen Knife"},{emoji:"\uD83C\uDFFA",title:"Amphora"},{emoji:"\uD83D\uDDFA️",title:"World Map"},{emoji:"\uD83E\uDDED",title:"Compass"},{emoji:"\uD83E\uDDF1",title:"Brick"},{emoji:"\uD83D\uDC88",title:"Barber Pole"},{emoji:"\uD83E\uDDBD",title:"Manual Wheelchair"},{emoji:"\uD83E\uDDBC",title:"Motorized Wheelchair"},{emoji:"\uD83D\uDEE2️",title:"Oil Drum"},{emoji:"\uD83D\uDECE️",title:"Bellhop Bell"},{emoji:"\uD83E\uDDF3",title:"Luggage"},{emoji:"⌛",title:"Hourglass Done"},{emoji:"⏳",title:"Hourglass Not Done"},{emoji:"⌚",title:"Watch"},{emoji:"⏰",title:"Alarm Clock"},{emoji:"⏱️",title:"Stopwatch"},{emoji:"⏲️",title:"Timer Clock"},{emoji:"\uD83D\uDD70️",title:"Mantelpiece Clock"},{emoji:"\uD83C\uDF21️",title:"Thermometer"},{emoji:"⛱️",title:"Umbrella on Ground"},{emoji:"\uD83E\uDDE8",title:"Firecracker"},{emoji:"\uD83C\uDF88",title:"Balloon"},{emoji:"\uD83C\uDF89",title:"Party Popper"},{emoji:"\uD83C\uDF8A",title:"Confetti Ball"},{emoji:"\uD83C\uDF8E",title:"Japanese Dolls"},{emoji:"\uD83C\uDF8F",title:"Carp Streamer"},{emoji:"\uD83C\uDF90",title:"Wind Chime"},{emoji:"\uD83E\uDDE7",title:"Red Envelope"},{emoji:"\uD83C\uDF80",title:"Ribbon"},{emoji:"\uD83C\uDF81",title:"Wrapped Gift"},{emoji:"\uD83E\uDD3F",title:"Diving Mask"},{emoji:"\uD83E\uDE80",title:"Yo-Yo"},{emoji:"\uD83E\uDE81",title:"Kite"},{emoji:"\uD83D\uDD2E",title:"Crystal Ball"},{emoji:"\uD83E\uDE84",title:"Magic Wand"},{emoji:"\uD83E\uDDFF",title:"Nazar Amulet"},{emoji:"\uD83D\uDD79️",title:"Joystick"},{emoji:"\uD83E\uDDF8",title:"Teddy Bear"},{emoji:"\uD83E\uDE85",title:"Pi\xf1ata"},{emoji:"\uD83E\uDE86",title:"Nesting Dolls"},{emoji:"\uD83D\uDDBC️",title:"Framed Picture"},{emoji:"\uD83E\uDDF5",title:"Thread"},{emoji:"\uD83E\uDEA1",title:"Sewing Needle"},{emoji:"\uD83E\uDDF6",title:"Yarn"},{emoji:"\uD83E\uDEA2",title:"Knot"},{emoji:"\uD83D\uDECD️",title:"Shopping Bags"},{emoji:"\uD83D\uDCFF",title:"Prayer Beads"},{emoji:"\uD83D\uDC8E",title:"Gem Stone"},{emoji:"\uD83D\uDCEF",title:"Postal Horn"},{emoji:"\uD83C\uDF99️",title:"Studio Microphone"},{emoji:"\uD83C\uDF9A️",title:"Level Slider"},{emoji:"\uD83C\uDF9B️",title:"Control Knobs"},{emoji:"\uD83D\uDCFB",title:"Radio"},{emoji:"\uD83E\uDE95",title:"Banjo"},{emoji:"\uD83D\uDCF1",title:"Mobile Phone"},{emoji:"\uD83D\uDCF2",title:"Mobile Phone with Arrow"},{emoji:"☎️",title:"Telephone"},{emoji:"\uD83D\uDCDE",title:"Telephone Receiver"},{emoji:"\uD83D\uDCDF",title:"Pager"},{emoji:"\uD83D\uDCE0",title:"Fax Machine"},{emoji:"\uD83D\uDD0B",title:"Battery"},{emoji:"\uD83D\uDD0C",title:"Electric Plug"},{emoji:"\uD83D\uDCBB",title:"Laptop"},{emoji:"\uD83D\uDDA5️",title:"Desktop Computer"},{emoji:"\uD83D\uDDA8️",title:"Printer"},{emoji:"⌨️",title:"Keyboard"},{emoji:"\uD83D\uDDB1️",title:"Computer Mouse"},{emoji:"\uD83D\uDDB2️",title:"Trackball"},{emoji:"\uD83D\uDCBD",title:"Computer Disk"},{emoji:"\uD83D\uDCBE",title:"Floppy Disk"},{emoji:"\uD83D\uDCBF",title:"Optical Disk"},{emoji:"\uD83D\uDCC0",title:"DVD"},{emoji:"\uD83E\uDDEE",title:"Abacus"},{emoji:"\uD83C\uDFA5",title:"Movie Camera"},{emoji:"\uD83C\uDF9E️",title:"Film Frames"},{emoji:"\uD83D\uDCFD️",title:"Film Projector"},{emoji:"\uD83D\uDCFA",title:"Television"},{emoji:"\uD83D\uDCF7",title:"Camera"},{emoji:"\uD83D\uDCF8",title:"Camera with Flash"},{emoji:"\uD83D\uDCF9",title:"Video Camera"},{emoji:"\uD83D\uDCFC",title:"Videocassette"},{emoji:"\uD83D\uDD0D",title:"Magnifying Glass Tilted Left"},{emoji:"\uD83D\uDD0E",title:"Magnifying Glass Tilted Right"},{emoji:"\uD83D\uDD6F️",title:"Candle"},{emoji:"\uD83D\uDCA1",title:"Light Bulb"},{emoji:"\uD83D\uDD26",title:"Flashlight"},{emoji:"\uD83C\uDFEE",title:"Red Paper Lantern"},{emoji:"\uD83E\uDE94",title:"Diya Lamp"},{emoji:"\uD83D\uDCD4",title:"Notebook with Decorative Cover"},{emoji:"\uD83D\uDCD5",title:"Closed Book"},{emoji:"\uD83D\uDCD6",title:"Open Book"},{emoji:"\uD83D\uDCD7",title:"Green Book"},{emoji:"\uD83D\uDCD8",title:"Blue Book"},{emoji:"\uD83D\uDCD9",title:"Orange Book"},{emoji:"\uD83D\uDCDA",title:"Books"},{emoji:"\uD83D\uDCD3",title:"Notebook"},{emoji:"\uD83D\uDCD2",title:"Ledger"},{emoji:"\uD83D\uDCC3",title:"Page with Curl"},{emoji:"\uD83D\uDCDC",title:"Scroll"},{emoji:"\uD83D\uDCC4",title:"Page Facing Up"},{emoji:"\uD83D\uDCF0",title:"Newspaper"},{emoji:"\uD83D\uDDDE️",title:"Rolled-Up Newspaper"},{emoji:"\uD83D\uDCD1",title:"Bookmark Tabs"},{emoji:"\uD83D\uDD16",title:"Bookmark"},{emoji:"\uD83C\uDFF7️",title:"Label"},{emoji:"\uD83D\uDCB0",title:"Money Bag"},{emoji:"\uD83E\uDE99",title:"Coin"},{emoji:"\uD83D\uDCB4",title:"Yen Banknote"},{emoji:"\uD83D\uDCB5",title:"Dollar Banknote"},{emoji:"\uD83D\uDCB6",title:"Euro Banknote"},{emoji:"\uD83D\uDCB7",title:"Pound Banknote"},{emoji:"\uD83D\uDCB8",title:"Money with Wings"},{emoji:"\uD83D\uDCB3",title:"Credit Card"},{emoji:"\uD83E\uDDFE",title:"Receipt"},{emoji:"✉️",title:"Envelope"},{emoji:"\uD83D\uDCE7",title:"E-Mail"},{emoji:"\uD83D\uDCE8",title:"Incoming Envelope"},{emoji:"\uD83D\uDCE9",title:"Envelope with Arrow"},{emoji:"\uD83D\uDCE4",title:"Outbox Tray"},{emoji:"\uD83D\uDCE5",title:"Inbox Tray"},{emoji:"\uD83D\uDCE6",title:"Package"},{emoji:"\uD83D\uDCEB",title:"Closed Mailbox with Raised Flag"},{emoji:"\uD83D\uDCEA",title:"Closed Mailbox with Lowered Flag"},{emoji:"\uD83D\uDCEC",title:"Open Mailbox with Raised Flag"},{emoji:"\uD83D\uDCED",title:"Open Mailbox with Lowered Flag"},{emoji:"\uD83D\uDCEE",title:"Postbox"},{emoji:"\uD83D\uDDF3️",title:"Ballot Box with Ballot"},{emoji:"✏️",title:"Pencil"},{emoji:"✒️",title:"Black Nib"},{emoji:"\uD83D\uDD8B️",title:"Fountain Pen"},{emoji:"\uD83D\uDD8A️",title:"Pen"},{emoji:"\uD83D\uDD8C️",title:"Paintbrush"},{emoji:"\uD83D\uDD8D️",title:"Crayon"},{emoji:"\uD83D\uDCDD",title:"Memo"},{emoji:"\uD83D\uDCC1",title:"File Folder"},{emoji:"\uD83D\uDCC2",title:"Open File Folder"},{emoji:"\uD83D\uDDC2️",title:"Card Index Dividers"},{emoji:"\uD83D\uDCC5",title:"Calendar"},{emoji:"\uD83D\uDCC6",title:"Tear-Off Calendar"},{emoji:"\uD83D\uDDD2️",title:"Spiral Notepad"},{emoji:"\uD83D\uDDD3️",title:"Spiral Calendar"},{emoji:"\uD83D\uDCC7",title:"Card Index"},{emoji:"\uD83D\uDCC8",title:"Chart Increasing"},{emoji:"\uD83D\uDCC9",title:"Chart Decreasing"},{emoji:"\uD83D\uDCCA",title:"Bar Chart"},{emoji:"\uD83D\uDCCB",title:"Clipboard"},{emoji:"\uD83D\uDCCC",title:"Pushpin"},{emoji:"\uD83D\uDCCD",title:"Round Pushpin"},{emoji:"\uD83D\uDCCE",title:"Paperclip"},{emoji:"\uD83D\uDD87️",title:"Linked Paperclips"},{emoji:"\uD83D\uDCCF",title:"Straight Ruler"},{emoji:"\uD83D\uDCD0",title:"Triangular Ruler"},{emoji:"✂️",title:"Scissors"},{emoji:"\uD83D\uDDC3️",title:"Card File Box"},{emoji:"\uD83D\uDDC4️",title:"File Cabinet"},{emoji:"\uD83D\uDDD1️",title:"Wastebasket"},{emoji:"\uD83D\uDD12",title:"Locked"},{emoji:"\uD83D\uDD13",title:"Unlocked"},{emoji:"\uD83D\uDD0F",title:"Locked with Pen"},{emoji:"\uD83D\uDD10",title:"Locked with Key"},{emoji:"\uD83D\uDD11",title:"Key"},{emoji:"\uD83D\uDDDD️",title:"Old Key"},{emoji:"\uD83D\uDD28",title:"Hammer"},{emoji:"\uD83E\uDE93",title:"Axe"},{emoji:"⛏️",title:"Pick"},{emoji:"⚒️",title:"Hammer and Pick"},{emoji:"\uD83D\uDEE0️",title:"Hammer and Wrench"},{emoji:"\uD83D\uDDE1️",title:"Dagger"},{emoji:"⚔️",title:"Crossed Swords"},{emoji:"\uD83D\uDD2B",title:"Water Pistol"},{emoji:"\uD83E\uDE83",title:"Boomerang"},{emoji:"\uD83D\uDEE1️",title:"Shield"},{emoji:"\uD83E\uDE9A",title:"Carpentry Saw"},{emoji:"\uD83D\uDD27",title:"Wrench"},{emoji:"\uD83E\uDE9B",title:"Screwdriver"},{emoji:"\uD83D\uDD29",title:"Nut and Bolt"},{emoji:"⚙️",title:"Gear"},{emoji:"\uD83D\uDDDC️",title:"Clamp"},{emoji:"⚖️",title:"Balance Scale"},{emoji:"\uD83E\uDDAF",title:"White Cane"},{emoji:"\uD83D\uDD17",title:"Link"},{emoji:"⛓️",title:"Chains"},{emoji:"\uD83E\uDE9D",title:"Hook"},{emoji:"\uD83E\uDDF0",title:"Toolbox"},{emoji:"\uD83E\uDDF2",title:"Magnet"},{emoji:"\uD83E\uDE9C",title:"Ladder"},{emoji:"⚗️",title:"Alembic"},{emoji:"\uD83E\uDDEA",title:"Test Tube"},{emoji:"\uD83E\uDDEB",title:"Petri Dish"},{emoji:"\uD83E\uDDEC",title:"DNA"},{emoji:"\uD83D\uDD2C",title:"Microscope"},{emoji:"\uD83D\uDD2D",title:"Telescope"},{emoji:"\uD83D\uDCE1",title:"Satellite Antenna"},{emoji:"\uD83D\uDC89",title:"Syringe"},{emoji:"\uD83E\uDE78",title:"Drop of Blood"},{emoji:"\uD83D\uDC8A",title:"Pill"},{emoji:"\uD83E\uDE79",title:"Adhesive Bandage"},{emoji:"\uD83E\uDE7A",title:"Stethoscope"},{emoji:"\uD83D\uDEAA",title:"Door"},{emoji:"\uD83E\uDE9E",title:"Mirror"},{emoji:"\uD83E\uDE9F",title:"Window"},{emoji:"\uD83D\uDECF️",title:"Bed"},{emoji:"\uD83D\uDECB️",title:"Couch and Lamp"},{emoji:"\uD83E\uDE91",title:"Chair"},{emoji:"\uD83D\uDEBD",title:"Toilet"},{emoji:"\uD83E\uDEA0",title:"Plunger"},{emoji:"\uD83D\uDEBF",title:"Shower"},{emoji:"\uD83D\uDEC1",title:"Bathtub"},{emoji:"\uD83E\uDEA4",title:"Mouse Trap"},{emoji:"\uD83E\uDE92",title:"Razor"},{emoji:"\uD83E\uDDF4",title:"Lotion Bottle"},{emoji:"\uD83E\uDDF7",title:"Safety Pin"},{emoji:"\uD83E\uDDF9",title:"Broom"},{emoji:"\uD83E\uDDFA",title:"Basket"},{emoji:"\uD83E\uDDFB",title:"Roll of Paper"},{emoji:"\uD83E\uDEA3",title:"Bucket"},{emoji:"\uD83E\uDDFC",title:"Soap"},{emoji:"\uD83E\uDEA5",title:"Toothbrush"},{emoji:"\uD83E\uDDFD",title:"Sponge"},{emoji:"\uD83E\uDDEF",title:"Fire Extinguisher"},{emoji:"\uD83D\uDED2",title:"Shopping Cart"},{emoji:"\uD83D\uDEAC",title:"Cigarette"},{emoji:"⚰️",title:"Coffin"},{emoji:"\uD83E\uDEA6",title:"Headstone"},{emoji:"⚱️",title:"Funeral Urn"},{emoji:"\uD83D\uDDFF",title:"Moai"},{emoji:"\uD83E\uDEA7",title:"Placard"},{emoji:"\uD83D\uDEB0",title:"Potable Water"}],Symbols:[{emoji:"\uD83D\uDC98",title:"Heart with Arrow"},{emoji:"\uD83D\uDC9D",title:"Heart with Ribbon"},{emoji:"\uD83D\uDC96",title:"Sparkling Heart"},{emoji:"\uD83D\uDC97",title:"Growing Heart"},{emoji:"\uD83D\uDC93",title:"Beating Heart"},{emoji:"\uD83D\uDC9E",title:"Revolving Hearts"},{emoji:"\uD83D\uDC95",title:"Two Hearts"},{emoji:"\uD83D\uDC9F",title:"Heart Decoration"},{emoji:"❣️",title:"Heart Exclamation"},{emoji:"\uD83D\uDC94",title:"Broken Heart"},{emoji:"❤️‍\uD83D\uDD25",title:"Heart on Fire"},{emoji:"❤️‍\uD83E\uDE79",title:"Mending Heart"},{emoji:"❤️",title:"Red Heart"},{emoji:"\uD83E\uDDE1",title:"Orange Heart"},{emoji:"\uD83D\uDC9B",title:"Yellow Heart"},{emoji:"\uD83D\uDC9A",title:"Green Heart"},{emoji:"\uD83D\uDC99",title:"Blue Heart"},{emoji:"\uD83D\uDC9C",title:"Purple Heart"},{emoji:"\uD83E\uDD0E",title:"Brown Heart"},{emoji:"\uD83D\uDDA4",title:"Black Heart"},{emoji:"\uD83E\uDD0D",title:"White Heart"},{emoji:"\uD83D\uDCAF",title:"Hundred Points"},{emoji:"\uD83D\uDCA2",title:"Anger Symbol"},{emoji:"\uD83D\uDCAC",title:"Speech Balloon"},{emoji:"\uD83D\uDC41️‍\uD83D\uDDE8️",title:"Eye in Speech Bubble"},{emoji:"\uD83D\uDDE8️",title:"Left Speech Bubble"},{emoji:"\uD83D\uDDEF️",title:"Right Anger Bubble"},{emoji:"\uD83D\uDCAD",title:"Thought Balloon"},{emoji:"\uD83D\uDCA4",title:"Zzz"},{emoji:"\uD83D\uDCAE",title:"White Flower"},{emoji:"♨️",title:"Hot Springs"},{emoji:"\uD83D\uDC88",title:"Barber Pole"},{emoji:"\uD83D\uDED1",title:"Stop Sign"},{emoji:"\uD83D\uDD5B",title:"Twelve O’Clock"},{emoji:"\uD83D\uDD67",title:"Twelve-Thirty"},{emoji:"\uD83D\uDD50",title:"One O’Clock"},{emoji:"\uD83D\uDD5C",title:"One-Thirty"},{emoji:"\uD83D\uDD51",title:"Two O’Clock"},{emoji:"\uD83D\uDD5D",title:"Two-Thirty"},{emoji:"\uD83D\uDD52",title:"Three O’Clock"},{emoji:"\uD83D\uDD5E",title:"Three-Thirty"},{emoji:"\uD83D\uDD53",title:"Four O’Clock"},{emoji:"\uD83D\uDD5F",title:"Four-Thirty"},{emoji:"\uD83D\uDD54",title:"Five O’Clock"},{emoji:"\uD83D\uDD60",title:"Five-Thirty"},{emoji:"\uD83D\uDD55",title:"Six O’Clock"},{emoji:"\uD83D\uDD61",title:"Six-Thirty"},{emoji:"\uD83D\uDD56",title:"Seven O’Clock"},{emoji:"\uD83D\uDD62",title:"Seven-Thirty"},{emoji:"\uD83D\uDD57",title:"Eight O’Clock"},{emoji:"\uD83D\uDD63",title:"Eight-Thirty"},{emoji:"\uD83D\uDD58",title:"Nine O’Clock"},{emoji:"\uD83D\uDD64",title:"Nine-Thirty"},{emoji:"\uD83D\uDD59",title:"Ten O’Clock"},{emoji:"\uD83D\uDD65",title:"Ten-Thirty"},{emoji:"\uD83D\uDD5A",title:"Eleven O’Clock"},{emoji:"\uD83D\uDD66",title:"Eleven-Thirty"},{emoji:"\uD83C\uDF00",title:"Cyclone"},{emoji:"♠️",title:"Spade Suit"},{emoji:"♥️",title:"Heart Suit"},{emoji:"♦️",title:"Diamond Suit"},{emoji:"♣️",title:"Club Suit"},{emoji:"\uD83C\uDCCF",title:"Joker"},{emoji:"\uD83C\uDC04",title:"Mahjong Red Dragon"},{emoji:"\uD83C\uDFB4",title:"Flower Playing Cards"},{emoji:"\uD83D\uDD07",title:"Muted Speaker"},{emoji:"\uD83D\uDD08",title:"Speaker Low Volume"},{emoji:"\uD83D\uDD09",title:"Speaker Medium Volume"},{emoji:"\uD83D\uDD0A",title:"Speaker High Volume"},{emoji:"\uD83D\uDCE2",title:"Loudspeaker"},{emoji:"\uD83D\uDCE3",title:"Megaphone"},{emoji:"\uD83D\uDCEF",title:"Postal Horn"},{emoji:"\uD83D\uDD14",title:"Bell"},{emoji:"\uD83D\uDD15",title:"Bell with Slash"},{emoji:"\uD83C\uDFB5",title:"Musical Note"},{emoji:"\uD83C\uDFB6",title:"Musical Notes"},{emoji:"\uD83D\uDCB9",title:"Chart Increasing with Yen"},{emoji:"\uD83D\uDED7",title:"Elevator"},{emoji:"\uD83C\uDFE7",title:"ATM Sign"},{emoji:"\uD83D\uDEAE",title:"Litter in Bin Sign"},{emoji:"\uD83D\uDEB0",title:"Potable Water"},{emoji:"♿",title:"Wheelchair Symbol"},{emoji:"\uD83D\uDEB9",title:"Men’s Room"},{emoji:"\uD83D\uDEBA",title:"Women’s Room"},{emoji:"\uD83D\uDEBB",title:"Restroom"},{emoji:"\uD83D\uDEBC",title:"Baby Symbol"},{emoji:"\uD83D\uDEBE",title:"Water Closet"},{emoji:"⚠️",title:"Warning"},{emoji:"\uD83D\uDEB8",title:"Children Crossing"},{emoji:"⛔",title:"No Entry"},{emoji:"\uD83D\uDEAB",title:"Prohibited"},{emoji:"\uD83D\uDEB3",title:"No Bicycles"},{emoji:"\uD83D\uDEAD",title:"No Smoking"},{emoji:"\uD83D\uDEAF",title:"No Littering"},{emoji:"\uD83D\uDEB1",title:"Non-Potable Water"},{emoji:"\uD83D\uDEB7",title:"No Pedestrians"},{emoji:"\uD83D\uDCF5",title:"No Mobile Phones"},{emoji:"\uD83D\uDD1E",title:"No One Under Eighteen"},{emoji:"☢️",title:"Radioactive"},{emoji:"☣️",title:"Biohazard"},{emoji:"⬆️",title:"Up Arrow"},{emoji:"↗️",title:"Up-Right Arrow"},{emoji:"➡️",title:"Right Arrow"},{emoji:"↘️",title:"Down-Right Arrow"},{emoji:"⬇️",title:"Down Arrow"},{emoji:"↙️",title:"Down-Left Arrow"},{emoji:"⬅️",title:"Left Arrow"},{emoji:"↖️",title:"Up-Left Arrow"},{emoji:"↕️",title:"Up-Down Arrow"},{emoji:"↔️",title:"Left-Right Arrow"},{emoji:"↩️",title:"Right Arrow Curving Left"},{emoji:"↪️",title:"Left Arrow Curving Right"},{emoji:"⤴️",title:"Right Arrow Curving Up"},{emoji:"⤵️",title:"Right Arrow Curving Down"},{emoji:"\uD83D\uDD03",title:"Clockwise Vertical Arrows"},{emoji:"\uD83D\uDD04",title:"Counterclockwise Arrows Button"},{emoji:"\uD83D\uDD19",title:"Back Arrow"},{emoji:"\uD83D\uDD1A",title:"End Arrow"},{emoji:"\uD83D\uDD1B",title:"On! Arrow"},{emoji:"\uD83D\uDD1C",title:"Soon Arrow"},{emoji:"\uD83D\uDD1D",title:"Top Arrow"},{emoji:"\uD83D\uDED0",title:"Place of Worship"},{emoji:"⚛️",title:"Atom Symbol"},{emoji:"\uD83D\uDD49️",title:"Om"},{emoji:"✡️",title:"Star of David"},{emoji:"☸️",title:"Wheel of Dharma"},{emoji:"☯️",title:"Yin Yang"},{emoji:"✝️",title:"Latin Cross"},{emoji:"☦️",title:"Orthodox Cross"},{emoji:"☪️",title:"Star and Crescent"},{emoji:"☮️",title:"Peace Symbol"},{emoji:"\uD83D\uDD4E",title:"Menorah"},{emoji:"\uD83D\uDD2F",title:"Dotted Six-Pointed Star"},{emoji:"♈",title:"Aries"},{emoji:"♉",title:"Taurus"},{emoji:"♊",title:"Gemini"},{emoji:"♋",title:"Cancer"},{emoji:"♌",title:"Leo"},{emoji:"♍",title:"Virgo"},{emoji:"♎",title:"Libra"},{emoji:"♏",title:"Scorpio"},{emoji:"♐",title:"Sagittarius"},{emoji:"♑",title:"Capricorn"},{emoji:"♒",title:"Aquarius"},{emoji:"♓",title:"Pisces"},{emoji:"⛎",title:"Ophiuchus"},{emoji:"\uD83D\uDD00",title:"Shuffle Tracks Button"},{emoji:"\uD83D\uDD01",title:"Repeat Button"},{emoji:"\uD83D\uDD02",title:"Repeat Single Button"},{emoji:"▶️",title:"Play Button"},{emoji:"⏩",title:"Fast-Forward Button"},{emoji:"⏭️",title:"Next Track Button"},{emoji:"⏯️",title:"Play or Pause Button"},{emoji:"◀️",title:"Reverse Button"},{emoji:"⏪",title:"Fast Reverse Button"},{emoji:"⏮️",title:"Last Track Button"},{emoji:"\uD83D\uDD3C",title:"Upwards Button"},{emoji:"⏫",title:"Fast Up Button"},{emoji:"\uD83D\uDD3D",title:"Downwards Button"},{emoji:"⏬",title:"Fast Down Button"},{emoji:"⏸️",title:"Pause Button"},{emoji:"⏹️",title:"Stop Button"},{emoji:"⏺️",title:"Record Button"},{emoji:"⏏️",title:"Eject Button"},{emoji:"\uD83C\uDFA6",title:"Cinema"},{emoji:"\uD83D\uDD05",title:"Dim Button"},{emoji:"\uD83D\uDD06",title:"Bright Button"},{emoji:"\uD83D\uDCF6",title:"Antenna Bars"},{emoji:"\uD83D\uDCF3",title:"Vibration Mode"},{emoji:"\uD83D\uDCF4",title:"Mobile Phone Off"},{emoji:"♀️",title:"Female Sign"},{emoji:"♂️",title:"Male Sign"},{emoji:"✖️",title:"Multiply"},{emoji:"➕",title:"Plus"},{emoji:"➖",title:"Minus"},{emoji:"➗",title:"Divide"},{emoji:"♾️",title:"Infinity"},{emoji:"‼️",title:"‼ Double Exclamation Mark"},{emoji:"⁉️",title:"⁉ Exclamation Question Mark"},{emoji:"❓",title:"Red Question Mark"},{emoji:"❔",title:"White Question Mark"},{emoji:"❕",title:"White Exclamation Mark"},{emoji:"❗",title:"Red Exclamation Mark"},{emoji:"〰️",title:"〰 Wavy Dash"},{emoji:"\uD83D\uDCB1",title:"Currency Exchange"},{emoji:"\uD83D\uDCB2",title:"Heavy Dollar Sign"},{emoji:"⚕️",title:"Medical Symbol"},{emoji:"♻️",title:"Recycling Symbol"},{emoji:"⚜️",title:"Fleur-de-lis"},{emoji:"\uD83D\uDD31",title:"Trident Emblem"},{emoji:"\uD83D\uDCDB",title:"Name Badge"},{emoji:"\uD83D\uDD30",title:"Japanese Symbol for Beginner"},{emoji:"⭕",title:"Hollow Red Circle"},{emoji:"✅",title:"Check Mark Button"},{emoji:"☑️",title:"Check Box with Check"},{emoji:"✔️",title:"Check Mark"},{emoji:"❌",title:"Cross Mark"},{emoji:"❎",title:"Cross Mark Button"},{emoji:"➰",title:"Curly Loop"},{emoji:"➿",title:"Double Curly Loop"},{emoji:"〽️",title:"〽 Part Alternation Mark"},{emoji:"✳️",title:"Eight-Spoked Asterisk"},{emoji:"✴️",title:"Eight-Pointed Star"},{emoji:"❇️",title:"Sparkle"},{emoji:"\xa9️",title:"Copyright"},{emoji:"\xae️",title:"Registered"},{emoji:"™️",title:"Trade Mark"},{emoji:"#️⃣",title:"# Keycap Number Sign"},{emoji:"*️⃣",title:"* Keycap Asterisk"},{emoji:"0️⃣",title:"0 Keycap Digit Zero"},{emoji:"1️⃣",title:"1 Keycap Digit One"},{emoji:"2️⃣",title:"2 Keycap Digit Two"},{emoji:"3️⃣",title:"3 Keycap Digit Three"},{emoji:"4️⃣",title:"4 Keycap Digit Four"},{emoji:"5️⃣",title:"5 Keycap Digit Five"},{emoji:"6️⃣",title:"6 Keycap Digit Six"},{emoji:"7️⃣",title:"7 Keycap Digit Seven"},{emoji:"8️⃣",title:"8 Keycap Digit Eight"},{emoji:"9️⃣",title:"9 Keycap Digit Nine"},{emoji:"\uD83D\uDD1F",title:"Keycap: 10"},{emoji:"\uD83D\uDD20",title:"Input Latin Uppercase"},{emoji:"\uD83D\uDD21",title:"Input Latin Lowercase"},{emoji:"\uD83D\uDD22",title:"Input Numbers"},{emoji:"\uD83D\uDD23",title:"Input Symbols"},{emoji:"\uD83D\uDD24",title:"Input Latin Letters"},{emoji:"\uD83C\uDD70️",title:"A Button (Blood Type)"},{emoji:"\uD83C\uDD8E",title:"AB Button (Blood Type)"},{emoji:"\uD83C\uDD71️",title:"B Button (Blood Type)"},{emoji:"\uD83C\uDD91",title:"CL Button"},{emoji:"\uD83C\uDD92",title:"Cool Button"},{emoji:"\uD83C\uDD93",title:"Free Button"},{emoji:"ℹ️",title:"ℹ Information"},{emoji:"\uD83C\uDD94",title:"ID Button"},{emoji:"Ⓜ️",title:"Circled M"},{emoji:"\uD83C\uDD95",title:"New Button"},{emoji:"\uD83C\uDD96",title:"NG Button"},{emoji:"\uD83C\uDD7E️",title:"O Button (Blood Type)"},{emoji:"\uD83C\uDD97",title:"OK Button"},{emoji:"\uD83C\uDD7F️",title:"P Button"},{emoji:"\uD83C\uDD98",title:"SOS Button"},{emoji:"\uD83C\uDD99",title:"Up! Button"},{emoji:"\uD83C\uDD9A",title:"Vs Button"},{emoji:"\uD83C\uDE01",title:"Japanese “Here” Button"},{emoji:"\uD83C\uDE02️",title:"Japanese “Service Charge” Button"},{emoji:"\uD83C\uDE37️",title:"Japanese “Monthly Amount” Button"},{emoji:"\uD83C\uDE36",title:"Japanese “Not Free of Charge” Button"},{emoji:"\uD83C\uDE2F",title:"Japanese “Reserved” Button"},{emoji:"\uD83C\uDE50",title:"Japanese “Bargain” Button"},{emoji:"\uD83C\uDE39",title:"Japanese “Discount” Button"},{emoji:"\uD83C\uDE1A",title:"Japanese “Free of Charge” Button"},{emoji:"\uD83C\uDE32",title:"Japanese “Prohibited” Button"},{emoji:"\uD83C\uDE51",title:"Japanese “Acceptable” Button"},{emoji:"\uD83C\uDE38",title:"Japanese “Application” Button"},{emoji:"\uD83C\uDE34",title:"Japanese “Passing Grade” Button"},{emoji:"\uD83C\uDE33",title:"Japanese “Vacancy” Button"},{emoji:"㊗️",title:"Japanese “Congratulations” Button"},{emoji:"㊙️",title:"Japanese “Secret” Button"},{emoji:"\uD83C\uDE3A",title:"Japanese “Open for Business” Button"},{emoji:"\uD83C\uDE35",title:"Japanese “No Vacancy” Button"},{emoji:"\uD83D\uDD34",title:"Red Circle"},{emoji:"\uD83D\uDFE0",title:"Orange Circle"},{emoji:"\uD83D\uDFE1",title:"Yellow Circle"},{emoji:"\uD83D\uDFE2",title:"Green Circle"},{emoji:"\uD83D\uDD35",title:"Blue Circle"},{emoji:"\uD83D\uDFE3",title:"Purple Circle"},{emoji:"\uD83D\uDFE4",title:"Brown Circle"},{emoji:"⚫",title:"Black Circle"},{emoji:"⚪",title:"White Circle"},{emoji:"\uD83D\uDFE5",title:"Red Square"},{emoji:"\uD83D\uDFE7",title:"Orange Square"},{emoji:"\uD83D\uDFE8",title:"Yellow Square"},{emoji:"\uD83D\uDFE9",title:"Green Square"},{emoji:"\uD83D\uDFE6",title:"Blue Square"},{emoji:"\uD83D\uDFEA",title:"Purple Square"},{emoji:"\uD83D\uDFEB",title:"Brown Square"},{emoji:"⬛",title:"Black Large Square"},{emoji:"⬜",title:"White Large Square"},{emoji:"◼️",title:"Black Medium Square"},{emoji:"◻️",title:"White Medium Square"},{emoji:"◾",title:"Black Medium-Small Square"},{emoji:"◽",title:"White Medium-Small Square"},{emoji:"▪️",title:"Black Small Square"},{emoji:"▫️",title:"White Small Square"},{emoji:"\uD83D\uDD36",title:"Large Orange Diamond"},{emoji:"\uD83D\uDD37",title:"Large Blue Diamond"},{emoji:"\uD83D\uDD38",title:"Small Orange Diamond"},{emoji:"\uD83D\uDD39",title:"Small Blue Diamond"},{emoji:"\uD83D\uDD3A",title:"Red Triangle Pointed Up"},{emoji:"\uD83D\uDD3B",title:"Red Triangle Pointed Down"},{emoji:"\uD83D\uDCA0",title:"Diamond with a Dot"},{emoji:"\uD83D\uDD18",title:"Radio Button"},{emoji:"\uD83D\uDD33",title:"White Square Button"},{emoji:"\uD83D\uDD32",title:"Black Square Button"}],Flags:[{emoji:"\uD83C\uDFC1",title:"Chequered Flag"},{emoji:"\uD83D\uDEA9",title:"Triangular Flag"},{emoji:"\uD83C\uDF8C",title:"Crossed Flags"},{emoji:"\uD83C\uDFF4",title:"Black Flag"},{emoji:"\uD83C\uDFF3️",title:"White Flag"},{emoji:"\uD83C\uDFF3️‍\uD83C\uDF08",title:"Rainbow Flag"},{emoji:"\uD83C\uDFF3️‍⚧️",title:"Transgender Flag"},{emoji:"\uD83C\uDFF4‍☠️",title:"Pirate Flag"},{emoji:"\uD83C\uDDE6\uD83C\uDDE8",title:"Flag: Ascension Island"},{emoji:"\uD83C\uDDE6\uD83C\uDDE9",title:"Flag: Andorra"},{emoji:"\uD83C\uDDE6\uD83C\uDDEA",title:"Flag: United Arab Emirates"},{emoji:"\uD83C\uDDE6\uD83C\uDDEB",title:"Flag: Afghanistan"},{emoji:"\uD83C\uDDE6\uD83C\uDDEC",title:"Flag: Antigua & Barbuda"},{emoji:"\uD83C\uDDE6\uD83C\uDDEE",title:"Flag: Anguilla"},{emoji:"\uD83C\uDDE6\uD83C\uDDF1",title:"Flag: Albania"},{emoji:"\uD83C\uDDE6\uD83C\uDDF2",title:"Flag: Armenia"},{emoji:"\uD83C\uDDE6\uD83C\uDDF4",title:"Flag: Angola"},{emoji:"\uD83C\uDDE6\uD83C\uDDF6",title:"Flag: Antarctica"},{emoji:"\uD83C\uDDE6\uD83C\uDDF7",title:"Flag: Argentina"},{emoji:"\uD83C\uDDE6\uD83C\uDDF8",title:"Flag: American Samoa"},{emoji:"\uD83C\uDDE6\uD83C\uDDF9",title:"Flag: Austria"},{emoji:"\uD83C\uDDE6\uD83C\uDDFA",title:"Flag: Australia"},{emoji:"\uD83C\uDDE6\uD83C\uDDFC",title:"Flag: Aruba"},{emoji:"\uD83C\uDDE6\uD83C\uDDFD",title:"Flag: \xc5land Islands"},{emoji:"\uD83C\uDDE6\uD83C\uDDFF",title:"Flag: Azerbaijan"},{emoji:"\uD83C\uDDE7\uD83C\uDDE6",title:"Flag: Bosnia & Herzegovina"},{emoji:"\uD83C\uDDE7\uD83C\uDDE7",title:"Flag: Barbados"},{emoji:"\uD83C\uDDE7\uD83C\uDDE9",title:"Flag: Bangladesh"},{emoji:"\uD83C\uDDE7\uD83C\uDDEA",title:"Flag: Belgium"},{emoji:"\uD83C\uDDE7\uD83C\uDDEB",title:"Flag: Burkina Faso"},{emoji:"\uD83C\uDDE7\uD83C\uDDEC",title:"Flag: Bulgaria"},{emoji:"\uD83C\uDDE7\uD83C\uDDED",title:"Flag: Bahrain"},{emoji:"\uD83C\uDDE7\uD83C\uDDEE",title:"Flag: Burundi"},{emoji:"\uD83C\uDDE7\uD83C\uDDEF",title:"Flag: Benin"},{emoji:"\uD83C\uDDE7\uD83C\uDDF1",title:"Flag: St. Barth\xe9lemy"},{emoji:"\uD83C\uDDE7\uD83C\uDDF2",title:"Flag: Bermuda"},{emoji:"\uD83C\uDDE7\uD83C\uDDF3",title:"Flag: Brunei"},{emoji:"\uD83C\uDDE7\uD83C\uDDF4",title:"Flag: Bolivia"},{emoji:"\uD83C\uDDE7\uD83C\uDDF6",title:"Flag: Caribbean Netherlands"},{emoji:"\uD83C\uDDE7\uD83C\uDDF7",title:"Flag: Brazil"},{emoji:"\uD83C\uDDE7\uD83C\uDDF8",title:"Flag: Bahamas"},{emoji:"\uD83C\uDDE7\uD83C\uDDF9",title:"Flag: Bhutan"},{emoji:"\uD83C\uDDE7\uD83C\uDDFB",title:"Flag: Bouvet Island"},{emoji:"\uD83C\uDDE7\uD83C\uDDFC",title:"Flag: Botswana"},{emoji:"\uD83C\uDDE7\uD83C\uDDFE",title:"Flag: Belarus"},{emoji:"\uD83C\uDDE7\uD83C\uDDFF",title:"Flag: Belize"},{emoji:"\uD83C\uDDE8\uD83C\uDDE6",title:"Flag: Canada"},{emoji:"\uD83C\uDDE8\uD83C\uDDE8",title:"Flag: Cocos (Keeling) Islands"},{emoji:"\uD83C\uDDE8\uD83C\uDDE9",title:"Flag: Congo - Kinshasa"},{emoji:"\uD83C\uDDE8\uD83C\uDDEB",title:"Flag: Central African Republic"},{emoji:"\uD83C\uDDE8\uD83C\uDDEC",title:"Flag: Congo - Brazzaville"},{emoji:"\uD83C\uDDE8\uD83C\uDDED",title:"Flag: Switzerland"},{emoji:"\uD83C\uDDE8\uD83C\uDDEE",title:"Flag: C\xf4te d’Ivoire"},{emoji:"\uD83C\uDDE8\uD83C\uDDF0",title:"Flag: Cook Islands"},{emoji:"\uD83C\uDDE8\uD83C\uDDF1",title:"Flag: Chile"},{emoji:"\uD83C\uDDE8\uD83C\uDDF2",title:"Flag: Cameroon"},{emoji:"\uD83C\uDDE8\uD83C\uDDF3",title:"Flag: China"},{emoji:"\uD83C\uDDE8\uD83C\uDDF4",title:"Flag: Colombia"},{emoji:"\uD83C\uDDE8\uD83C\uDDF5",title:"Flag: Clipperton Island"},{emoji:"\uD83C\uDDE8\uD83C\uDDF7",title:"Flag: Costa Rica"},{emoji:"\uD83C\uDDE8\uD83C\uDDFA",title:"Flag: Cuba"},{emoji:"\uD83C\uDDE8\uD83C\uDDFB",title:"Flag: Cape Verde"},{emoji:"\uD83C\uDDE8\uD83C\uDDFC",title:"Flag: Cura\xe7ao"},{emoji:"\uD83C\uDDE8\uD83C\uDDFD",title:"Flag: Christmas Island"},{emoji:"\uD83C\uDDE8\uD83C\uDDFE",title:"Flag: Cyprus"},{emoji:"\uD83C\uDDE8\uD83C\uDDFF",title:"Flag: Czechia"},{emoji:"\uD83C\uDDE9\uD83C\uDDEA",title:"Flag: Germany"},{emoji:"\uD83C\uDDE9\uD83C\uDDEC",title:"Flag: Diego Garcia"},{emoji:"\uD83C\uDDE9\uD83C\uDDEF",title:"Flag: Djibouti"},{emoji:"\uD83C\uDDE9\uD83C\uDDF0",title:"Flag: Denmark"},{emoji:"\uD83C\uDDE9\uD83C\uDDF2",title:"Flag: Dominica"},{emoji:"\uD83C\uDDE9\uD83C\uDDF4",title:"Flag: Dominican Republic"},{emoji:"\uD83C\uDDE9\uD83C\uDDFF",title:"Flag: Algeria"},{emoji:"\uD83C\uDDEA\uD83C\uDDE6",title:"Flag: Ceuta & Melilla"},{emoji:"\uD83C\uDDEA\uD83C\uDDE8",title:"Flag: Ecuador"},{emoji:"\uD83C\uDDEA\uD83C\uDDEA",title:"Flag: Estonia"},{emoji:"\uD83C\uDDEA\uD83C\uDDEC",title:"Flag: Egypt"},{emoji:"\uD83C\uDDEA\uD83C\uDDED",title:"Flag: Western Sahara"},{emoji:"\uD83C\uDDEA\uD83C\uDDF7",title:"Flag: Eritrea"},{emoji:"\uD83C\uDDEA\uD83C\uDDF8",title:"Flag: Spain"},{emoji:"\uD83C\uDDEA\uD83C\uDDF9",title:"Flag: Ethiopia"},{emoji:"\uD83C\uDDEA\uD83C\uDDFA",title:"Flag: European Union"},{emoji:"\uD83C\uDDEB\uD83C\uDDEE",title:"Flag: Finland"},{emoji:"\uD83C\uDDEB\uD83C\uDDEF",title:"Flag: Fiji"},{emoji:"\uD83C\uDDEB\uD83C\uDDF0",title:"Flag: Falkland Islands"},{emoji:"\uD83C\uDDEB\uD83C\uDDF2",title:"Flag: Micronesia"},{emoji:"\uD83C\uDDEB\uD83C\uDDF4",title:"Flag: Faroe Islands"},{emoji:"\uD83C\uDDEB\uD83C\uDDF7",title:"Flag: France"},{emoji:"\uD83C\uDDEC\uD83C\uDDE6",title:"Flag: Gabon"},{emoji:"\uD83C\uDDEC\uD83C\uDDE7",title:"Flag: United Kingdom"},{emoji:"\uD83C\uDDEC\uD83C\uDDE9",title:"Flag: Grenada"},{emoji:"\uD83C\uDDEC\uD83C\uDDEA",title:"Flag: Georgia"},{emoji:"\uD83C\uDDEC\uD83C\uDDEB",title:"Flag: French Guiana"},{emoji:"\uD83C\uDDEC\uD83C\uDDEC",title:"Flag: Guernsey"},{emoji:"\uD83C\uDDEC\uD83C\uDDED",title:"Flag: Ghana"},{emoji:"\uD83C\uDDEC\uD83C\uDDEE",title:"Flag: Gibraltar"},{emoji:"\uD83C\uDDEC\uD83C\uDDF1",title:"Flag: Greenland"},{emoji:"\uD83C\uDDEC\uD83C\uDDF2",title:"Flag: Gambia"},{emoji:"\uD83C\uDDEC\uD83C\uDDF3",title:"Flag: Guinea"},{emoji:"\uD83C\uDDEC\uD83C\uDDF5",title:"Flag: Guadeloupe"},{emoji:"\uD83C\uDDEC\uD83C\uDDF6",title:"Flag: Equatorial Guinea"},{emoji:"\uD83C\uDDEC\uD83C\uDDF7",title:"Flag: Greece"},{emoji:"\uD83C\uDDEC\uD83C\uDDF8",title:"Flag: South Georgia & South Sandwich Islands"},{emoji:"\uD83C\uDDEC\uD83C\uDDF9",title:"Flag: Guatemala"},{emoji:"\uD83C\uDDEC\uD83C\uDDFA",title:"Flag: Guam"},{emoji:"\uD83C\uDDEC\uD83C\uDDFC",title:"Flag: Guinea-Bissau"},{emoji:"\uD83C\uDDEC\uD83C\uDDFE",title:"Flag: Guyana"},{emoji:"\uD83C\uDDED\uD83C\uDDF0",title:"Flag: Hong Kong SAR China"},{emoji:"\uD83C\uDDED\uD83C\uDDF2",title:"Flag: Heard & McDonald Islands"},{emoji:"\uD83C\uDDED\uD83C\uDDF3",title:"Flag: Honduras"},{emoji:"\uD83C\uDDED\uD83C\uDDF7",title:"Flag: Croatia"},{emoji:"\uD83C\uDDED\uD83C\uDDF9",title:"Flag: Haiti"},{emoji:"\uD83C\uDDED\uD83C\uDDFA",title:"Flag: Hungary"},{emoji:"\uD83C\uDDEE\uD83C\uDDE8",title:"Flag: Canary Islands"},{emoji:"\uD83C\uDDEE\uD83C\uDDE9",title:"Flag: Indonesia"},{emoji:"\uD83C\uDDEE\uD83C\uDDEA",title:"Flag: Ireland"},{emoji:"\uD83C\uDDEE\uD83C\uDDF1",title:"Flag: Israel"},{emoji:"\uD83C\uDDEE\uD83C\uDDF2",title:"Flag: Isle of Man"},{emoji:"\uD83C\uDDEE\uD83C\uDDF3",title:"Flag: India"},{emoji:"\uD83C\uDDEE\uD83C\uDDF4",title:"Flag: British Indian Ocean Territory"},{emoji:"\uD83C\uDDEE\uD83C\uDDF6",title:"Flag: Iraq"},{emoji:"\uD83C\uDDEE\uD83C\uDDF7",title:"Flag: Iran"},{emoji:"\uD83C\uDDEE\uD83C\uDDF8",title:"Flag: Iceland"},{emoji:"\uD83C\uDDEE\uD83C\uDDF9",title:"Flag: Italy"},{emoji:"\uD83C\uDDEF\uD83C\uDDEA",title:"Flag: Jersey"},{emoji:"\uD83C\uDDEF\uD83C\uDDF2",title:"Flag: Jamaica"},{emoji:"\uD83C\uDDEF\uD83C\uDDF4",title:"Flag: Jordan"},{emoji:"\uD83C\uDDEF\uD83C\uDDF5",title:"Flag: Japan"},{emoji:"\uD83C\uDDF0\uD83C\uDDEA",title:"Flag: Kenya"},{emoji:"\uD83C\uDDF0\uD83C\uDDEC",title:"Flag: Kyrgyzstan"},{emoji:"\uD83C\uDDF0\uD83C\uDDED",title:"Flag: Cambodia"},{emoji:"\uD83C\uDDF0\uD83C\uDDEE",title:"Flag: Kiribati"},{emoji:"\uD83C\uDDF0\uD83C\uDDF2",title:"Flag: Comoros"},{emoji:"\uD83C\uDDF0\uD83C\uDDF3",title:"Flag: St. Kitts & Nevis"},{emoji:"\uD83C\uDDF0\uD83C\uDDF5",title:"Flag: North Korea"},{emoji:"\uD83C\uDDF0\uD83C\uDDF7",title:"Flag: South Korea"},{emoji:"\uD83C\uDDF0\uD83C\uDDFC",title:"Flag: Kuwait"},{emoji:"\uD83C\uDDF0\uD83C\uDDFE",title:"Flag: Cayman Islands"},{emoji:"\uD83C\uDDF0\uD83C\uDDFF",title:"Flag: Kazakhstan"},{emoji:"\uD83C\uDDF1\uD83C\uDDE6",title:"Flag: Laos"},{emoji:"\uD83C\uDDF1\uD83C\uDDE7",title:"Flag: Lebanon"},{emoji:"\uD83C\uDDF1\uD83C\uDDE8",title:"Flag: St. Lucia"},{emoji:"\uD83C\uDDF1\uD83C\uDDEE",title:"Flag: Liechtenstein"},{emoji:"\uD83C\uDDF1\uD83C\uDDF0",title:"Flag: Sri Lanka"},{emoji:"\uD83C\uDDF1\uD83C\uDDF7",title:"Flag: Liberia"},{emoji:"\uD83C\uDDF1\uD83C\uDDF8",title:"Flag: Lesotho"},{emoji:"\uD83C\uDDF1\uD83C\uDDF9",title:"Flag: Lithuania"},{emoji:"\uD83C\uDDF1\uD83C\uDDFA",title:"Flag: Luxembourg"},{emoji:"\uD83C\uDDF1\uD83C\uDDFB",title:"Flag: Latvia"},{emoji:"\uD83C\uDDF1\uD83C\uDDFE",title:"Flag: Libya"},{emoji:"\uD83C\uDDF2\uD83C\uDDE6",title:"Flag: Morocco"},{emoji:"\uD83C\uDDF2\uD83C\uDDE8",title:"Flag: Monaco"},{emoji:"\uD83C\uDDF2\uD83C\uDDE9",title:"Flag: Moldova"},{emoji:"\uD83C\uDDF2\uD83C\uDDEA",title:"Flag: Montenegro"},{emoji:"\uD83C\uDDF2\uD83C\uDDEB",title:"Flag: St. Martin"},{emoji:"\uD83C\uDDF2\uD83C\uDDEC",title:"Flag: Madagascar"},{emoji:"\uD83C\uDDF2\uD83C\uDDED",title:"Flag: Marshall Islands"},{emoji:"\uD83C\uDDF2\uD83C\uDDF0",title:"Flag: North Macedonia"},{emoji:"\uD83C\uDDF2\uD83C\uDDF1",title:"Flag: Mali"},{emoji:"\uD83C\uDDF2\uD83C\uDDF2",title:"Flag: Myanmar (Burma)"},{emoji:"\uD83C\uDDF2\uD83C\uDDF3",title:"Flag: Mongolia"},{emoji:"\uD83C\uDDF2\uD83C\uDDF4",title:"Flag: Macao Sar China"},{emoji:"\uD83C\uDDF2\uD83C\uDDF5",title:"Flag: Northern Mariana Islands"},{emoji:"\uD83C\uDDF2\uD83C\uDDF6",title:"Flag: Martinique"},{emoji:"\uD83C\uDDF2\uD83C\uDDF7",title:"Flag: Mauritania"},{emoji:"\uD83C\uDDF2\uD83C\uDDF8",title:"Flag: Montserrat"},{emoji:"\uD83C\uDDF2\uD83C\uDDF9",title:"Flag: Malta"},{emoji:"\uD83C\uDDF2\uD83C\uDDFA",title:"Flag: Mauritius"},{emoji:"\uD83C\uDDF2\uD83C\uDDFB",title:"Flag: Maldives"},{emoji:"\uD83C\uDDF2\uD83C\uDDFC",title:"Flag: Malawi"},{emoji:"\uD83C\uDDF2\uD83C\uDDFD",title:"Flag: Mexico"},{emoji:"\uD83C\uDDF2\uD83C\uDDFE",title:"Flag: Malaysia"},{emoji:"\uD83C\uDDF2\uD83C\uDDFF",title:"Flag: Mozambique"},{emoji:"\uD83C\uDDF3\uD83C\uDDE6",title:"Flag: Namibia"},{emoji:"\uD83C\uDDF3\uD83C\uDDE8",title:"Flag: New Caledonia"},{emoji:"\uD83C\uDDF3\uD83C\uDDEA",title:"Flag: Niger"},{emoji:"\uD83C\uDDF3\uD83C\uDDEB",title:"Flag: Norfolk Island"},{emoji:"\uD83C\uDDF3\uD83C\uDDEC",title:"Flag: Nigeria"},{emoji:"\uD83C\uDDF3\uD83C\uDDEE",title:"Flag: Nicaragua"},{emoji:"\uD83C\uDDF3\uD83C\uDDF1",title:"Flag: Netherlands"},{emoji:"\uD83C\uDDF3\uD83C\uDDF4",title:"Flag: Norway"},{emoji:"\uD83C\uDDF3\uD83C\uDDF5",title:"Flag: Nepal"},{emoji:"\uD83C\uDDF3\uD83C\uDDF7",title:"Flag: Nauru"},{emoji:"\uD83C\uDDF3\uD83C\uDDFA",title:"Flag: Niue"},{emoji:"\uD83C\uDDF3\uD83C\uDDFF",title:"Flag: New Zealand"},{emoji:"\uD83C\uDDF4\uD83C\uDDF2",title:"Flag: Oman"},{emoji:"\uD83C\uDDF5\uD83C\uDDE6",title:"Flag: Panama"},{emoji:"\uD83C\uDDF5\uD83C\uDDEA",title:"Flag: Peru"},{emoji:"\uD83C\uDDF5\uD83C\uDDEB",title:"Flag: French Polynesia"},{emoji:"\uD83C\uDDF5\uD83C\uDDEC",title:"Flag: Papua New Guinea"},{emoji:"\uD83C\uDDF5\uD83C\uDDED",title:"Flag: Philippines"},{emoji:"\uD83C\uDDF5\uD83C\uDDF0",title:"Flag: Pakistan"},{emoji:"\uD83C\uDDF5\uD83C\uDDF1",title:"Flag: Poland"},{emoji:"\uD83C\uDDF5\uD83C\uDDF2",title:"Flag: St. Pierre & Miquelon"},{emoji:"\uD83C\uDDF5\uD83C\uDDF3",title:"Flag: Pitcairn Islands"},{emoji:"\uD83C\uDDF5\uD83C\uDDF7",title:"Flag: Puerto Rico"},{emoji:"\uD83C\uDDF5\uD83C\uDDF8",title:"Flag: Palestinian Territories"},{emoji:"\uD83C\uDDF5\uD83C\uDDF9",title:"Flag: Portugal"},{emoji:"\uD83C\uDDF5\uD83C\uDDFC",title:"Flag: Palau"},{emoji:"\uD83C\uDDF5\uD83C\uDDFE",title:"Flag: Paraguay"},{emoji:"\uD83C\uDDF6\uD83C\uDDE6",title:"Flag: Qatar"},{emoji:"\uD83C\uDDF7\uD83C\uDDEA",title:"Flag: R\xe9union"},{emoji:"\uD83C\uDDF7\uD83C\uDDF4",title:"Flag: Romania"},{emoji:"\uD83C\uDDF7\uD83C\uDDF8",title:"Flag: Serbia"},{emoji:"\uD83C\uDDF7\uD83C\uDDFA",title:"Flag: Russia"},{emoji:"\uD83C\uDDF7\uD83C\uDDFC",title:"Flag: Rwanda"},{emoji:"\uD83C\uDDF8\uD83C\uDDE6",title:"Flag: Saudi Arabia"},{emoji:"\uD83C\uDDF8\uD83C\uDDE7",title:"Flag: Solomon Islands"},{emoji:"\uD83C\uDDF8\uD83C\uDDE8",title:"Flag: Seychelles"},{emoji:"\uD83C\uDDF8\uD83C\uDDE9",title:"Flag: Sudan"},{emoji:"\uD83C\uDDF8\uD83C\uDDEA",title:"Flag: Sweden"},{emoji:"\uD83C\uDDF8\uD83C\uDDEC",title:"Flag: Singapore"},{emoji:"\uD83C\uDDF8\uD83C\uDDED",title:"Flag: St. Helena"},{emoji:"\uD83C\uDDF8\uD83C\uDDEE",title:"Flag: Slovenia"},{emoji:"\uD83C\uDDF8\uD83C\uDDEF",title:"Flag: Svalbard & Jan Mayen"},{emoji:"\uD83C\uDDF8\uD83C\uDDF0",title:"Flag: Slovakia"},{emoji:"\uD83C\uDDF8\uD83C\uDDF1",title:"Flag: Sierra Leone"},{emoji:"\uD83C\uDDF8\uD83C\uDDF2",title:"Flag: San Marino"},{emoji:"\uD83C\uDDF8\uD83C\uDDF3",title:"Flag: Senegal"},{emoji:"\uD83C\uDDF8\uD83C\uDDF4",title:"Flag: Somalia"},{emoji:"\uD83C\uDDF8\uD83C\uDDF7",title:"Flag: Suriname"},{emoji:"\uD83C\uDDF8\uD83C\uDDF8",title:"Flag: South Sudan"},{emoji:"\uD83C\uDDF8\uD83C\uDDF9",title:"Flag: S\xe3o Tom\xe9 & Pr\xedncipe"},{emoji:"\uD83C\uDDF8\uD83C\uDDFB",title:"Flag: El Salvador"},{emoji:"\uD83C\uDDF8\uD83C\uDDFD",title:"Flag: Sint Maarten"},{emoji:"\uD83C\uDDF8\uD83C\uDDFE",title:"Flag: Syria"},{emoji:"\uD83C\uDDF8\uD83C\uDDFF",title:"Flag: Eswatini"},{emoji:"\uD83C\uDDF9\uD83C\uDDE6",title:"Flag: Tristan Da Cunha"},{emoji:"\uD83C\uDDF9\uD83C\uDDE8",title:"Flag: Turks & Caicos Islands"},{emoji:"\uD83C\uDDF9\uD83C\uDDE9",title:"Flag: Chad"},{emoji:"\uD83C\uDDF9\uD83C\uDDEB",title:"Flag: French Southern Territories"},{emoji:"\uD83C\uDDF9\uD83C\uDDEC",title:"Flag: Togo"},{emoji:"\uD83C\uDDF9\uD83C\uDDED",title:"Flag: Thailand"},{emoji:"\uD83C\uDDF9\uD83C\uDDEF",title:"Flag: Tajikistan"},{emoji:"\uD83C\uDDF9\uD83C\uDDF0",title:"Flag: Tokelau"},{emoji:"\uD83C\uDDF9\uD83C\uDDF1",title:"Flag: Timor-Leste"},{emoji:"\uD83C\uDDF9\uD83C\uDDF2",title:"Flag: Turkmenistan"},{emoji:"\uD83C\uDDF9\uD83C\uDDF3",title:"Flag: Tunisia"},{emoji:"\uD83C\uDDF9\uD83C\uDDF4",title:"Flag: Tonga"},{emoji:"\uD83C\uDDF9\uD83C\uDDF7",title:"Flag: Turkey"},{emoji:"\uD83C\uDDF9\uD83C\uDDF9",title:"Flag: Trinidad & Tobago"},{emoji:"\uD83C\uDDF9\uD83C\uDDFB",title:"Flag: Tuvalu"},{emoji:"\uD83C\uDDF9\uD83C\uDDFC",title:"Flag: Taiwan"},{emoji:"\uD83C\uDDF9\uD83C\uDDFF",title:"Flag: Tanzania"},{emoji:"\uD83C\uDDFA\uD83C\uDDE6",title:"Flag: Ukraine"},{emoji:"\uD83C\uDDFA\uD83C\uDDEC",title:"Flag: Uganda"},{emoji:"\uD83C\uDDFA\uD83C\uDDF2",title:"Flag: U.S. Outlying Islands"},{emoji:"\uD83C\uDDFA\uD83C\uDDF3",title:"Flag: United Nations"},{emoji:"\uD83C\uDDFA\uD83C\uDDF8",title:"Flag: United States"},{emoji:"\uD83C\uDDFA\uD83C\uDDFE",title:"Flag: Uruguay"},{emoji:"\uD83C\uDDFA\uD83C\uDDFF",title:"Flag: Uzbekistan"},{emoji:"\uD83C\uDDFB\uD83C\uDDE6",title:"Flag: Vatican City"},{emoji:"\uD83C\uDDFB\uD83C\uDDE8",title:"Flag: St. Vincent & Grenadines"},{emoji:"\uD83C\uDDFB\uD83C\uDDEA",title:"Flag: Venezuela"},{emoji:"\uD83C\uDDFB\uD83C\uDDEC",title:"Flag: British Virgin Islands"},{emoji:"\uD83C\uDDFB\uD83C\uDDEE",title:"Flag: U.S. Virgin Islands"},{emoji:"\uD83C\uDDFB\uD83C\uDDF3",title:"Flag: Vietnam"},{emoji:"\uD83C\uDDFB\uD83C\uDDFA",title:"Flag: Vanuatu"},{emoji:"\uD83C\uDDFC\uD83C\uDDEB",title:"Flag: Wallis & Futuna"},{emoji:"\uD83C\uDDFC\uD83C\uDDF8",title:"Flag: Samoa"},{emoji:"\uD83C\uDDFD\uD83C\uDDF0",title:"Flag: Kosovo"},{emoji:"\uD83C\uDDFE\uD83C\uDDEA",title:"Flag: Yemen"},{emoji:"\uD83C\uDDFE\uD83C\uDDF9",title:"Flag: Mayotte"},{emoji:"\uD83C\uDDFF\uD83C\uDDE6",title:"Flag: South Africa"},{emoji:"\uD83C\uDDFF\uD83C\uDDF2",title:"Flag: Zambia"},{emoji:"\uD83C\uDDFF\uD83C\uDDFC",title:"Flag: Zimbabwe"},{emoji:"\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F",title:"Flag: England"},{emoji:"\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74\uDB40\uDC7F",title:"Flag: Scotland"},{emoji:"\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73\uDB40\uDC7F",title:"Flag: Wales"},{emoji:"\uD83C\uDFF4\uDB40\uDC75\uDB40\uDC73\uDB40\uDC74\uDB40\uDC78\uDB40\uDC7F",title:"Flag for Texas (US-TX)"}]},n={People:' ',Nature:' ',"Food-dring":' ',Activity:'',"Travel-places":' ',Objects:' ',Symbols:' ',Flags:''},j={search:' ',close:'',move:' '},r={styles:()=>{let e=` + + `;document.head.insertAdjacentHTML("beforeend",e)},position(){let e=window.event,i=e.clientX,t=e.clientY,o={};return o.left=i,o.top=t,o},rePositioning(e){e.getBoundingClientRect().right>window.screen.availWidth&&(e.style.left=window.screen.availWidth-e.offsetWidth+"px"),window.innerHeight>400&&e.getBoundingClientRect().bottom>window.innerHeight&&(e.style.top=window.innerHeight-e.offsetHeight+"px")},render:(e,l)=>{l||(l=".emojis"),o=void 0;let a=this.options.trigger.findIndex(e=>e.selector===l);this.insertInto=this.options.trigger[a].insertInto;let g=r.position();if(!i.length){for(let s in m)if(m.hasOwnProperty.call(m,s)){let _=m[s];t+=`
  • + ${n[s]} +
  • `,i+=`
    `,i+=`

    ${s}

    `,_.forEach(e=>{i+=`
  • + ${e.emoji} +
  • `}),i+="
    "}}document.querySelector(".fg-emoji-container")&&this.lib(".fg-emoji-container").remove();let c=` +
    + + + + +
    + + +
      + ${i} +
    +
    +
    + `;document.body.insertAdjacentHTML("beforeend",c),r.rePositioning(document.querySelector(".fg-emoji-container")),setTimeout(()=>{document.querySelector(".fg-emoji-picker-search input").focus()},500)},closePicker:e=>{e.preventDefault(),this.lib(".fg-emoji-container").remove(),l=!1},checkPickerExist(e){!document.querySelector(".fg-emoji-container")||e.target.closest(".fg-emoji-container")||l||r.closePicker.call(this,e)},setCaretPosition(e,i){var t=e;if(null!=t){if(t.createTextRange){var o=t.createTextRange();o.move("character",i),o.select()}else t.selectionStart?(t.focus(),t.setSelectionRange(i,i)):t.focus()}},insert:e=>{e.preventDefault();let i=e.target.innerText.trim(),t=document.querySelectorAll(this.insertInto),o=i;t.forEach(e=>{if(document.selection)e.focus(),(sel=document.selection.createRange()).text=o;else if(e.selectionStart||"0"==e.selectionStart){let i=e.selectionStart,t=e.selectionEnd;e.value=e.value.substring(0,i)+o+e.value.substring(t,e.value.length),r.setCaretPosition(e,i+2)}else e.value+=o,e.focus()})},categoryNav:e=>{e.preventDefault();let i=e.target.closest("a");if(i.getAttribute("id")&&"fg-emoji-picker-close-button"===i.getAttribute("id")||i.className.includes("fg-emoji-picker-move"))return!1;let t=i.getAttribute("href"),o=document.querySelector(".fg-emoji-list"),l=o.querySelector(`${t}`);this.lib(".fg-emoji-nav li").removeClass("emoji-picker-nav-active"),i.closest("li").classList.add("emoji-picker-nav-active"),l.scrollIntoView({behavior:"smooth",block:"start",inline:"nearest"})},search(e){let i=e.target.value.trim();o||(o=Array.from(document.querySelectorAll(".fg-emoji-picker-category-wrapper li"))),o.filter(e=>{e.getAttribute("data-title").match(i)?e.style.display="":e.style.display="none"})},mouseDown(e){e.preventDefault(),l=!0},mouseUp(e){e.preventDefault(),l=!1},mouseMove(e){if(l){e.preventDefault();let i=document.querySelector(".fg-emoji-container");i.style.left=e.clientX-320+"px",i.style.top=e.clientY-10+"px"}}},g=()=>{this.lib(document.body).on("click",r.closePicker,"#fg-emoji-picker-close-button"),this.lib(document.body).on("click",r.checkPickerExist),this.lib(document.body).on("click",r.render,this.trigger),this.lib(document.body).on("click",r.insert,".fg-emoji-list a"),this.lib(document.body).on("click",r.categoryNav,".fg-emoji-nav a"),this.lib(document.body).on("input",r.search,".fg-emoji-picker-search input"),this.lib(document).on("mousedown",r.mouseDown,"#fg-emoji-picker-move"),this.lib(document).on("mouseup",r.mouseUp,"#fg-emoji-picker-move"),this.lib(document).on("mousemove",r.mouseMove)};(()=>{r.styles(),g.call(this)})()}; \ No newline at end of file diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po index ab9a7c830..6de3485ba 100644 --- a/view/lang/C/messages.po +++ b/view/lang/C/messages.po @@ -1,14 +1,14 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # Mike Macgirvin, 2010 # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2022.12-dev\n" +"Project-Id-Version: 2023.09-rc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-29 21:45-0400\n" +"POT-Creation-Date: 2023-11-06 11:31-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,529 +18,70 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" -#: mod/cal.php:45 mod/cal.php:49 mod/follow.php:39 mod/redir.php:35 -#: mod/redir.php:176 src/Module/Conversation/Community.php:193 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 -#: src/Module/Item/Star.php:42 -msgid "Access denied." +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 +msgid "Unable to locate original post." msgstr "" -#: mod/cal.php:62 mod/cal.php:79 mod/photos.php:68 mod/photos.php:139 -#: mod/photos.php:793 src/Model/Profile.php:234 src/Module/Feed.php:72 -#: src/Module/HCard.php:51 src/Module/Profile/Common.php:40 -#: src/Module/Profile/Common.php:51 src/Module/Profile/Contacts.php:39 -#: src/Module/Profile/Contacts.php:49 src/Module/Profile/Media.php:38 -#: src/Module/Profile/Status.php:58 src/Module/Register.php:267 -#: src/Module/RemoteFollow.php:59 -msgid "User not found." +#: mod/item.php:138 +msgid "Post updated." msgstr "" -#: mod/cal.php:121 mod/display.php:259 src/Module/Profile/Profile.php:93 -#: src/Module/Profile/Profile.php:108 src/Module/Profile/Status.php:109 -#: src/Module/Update/Profile.php:55 -msgid "Access to this profile has been restricted." +#: mod/item.php:203 mod/item.php:207 +msgid "Item wasn't stored." msgstr "" -#: mod/cal.php:242 mod/events.php:375 src/Content/Nav.php:196 -#: src/Content/Nav.php:260 src/Module/BaseProfile.php:84 -#: src/Module/BaseProfile.php:95 view/theme/frio/theme.php:241 -#: view/theme/frio/theme.php:245 -msgid "Events" +#: mod/item.php:217 +msgid "Item couldn't be fetched." msgstr "" -#: mod/cal.php:243 mod/events.php:376 -msgid "View" +#: mod/item.php:259 mod/item.php:263 +msgid "Empty post discarded." msgstr "" -#: mod/cal.php:244 mod/events.php:378 -msgid "Previous" +#: mod/item.php:432 src/Module/Admin/Themes/Details.php:39 +#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 +msgid "Item not found." msgstr "" -#: mod/cal.php:245 mod/events.php:379 src/Module/Install.php:214 -msgid "Next" -msgstr "" - -#: mod/cal.php:248 mod/events.php:384 src/Model/Event.php:460 -msgid "today" -msgstr "" - -#: mod/cal.php:249 mod/events.php:385 src/Model/Event.php:461 -#: src/Util/Temporal.php:341 -msgid "month" -msgstr "" - -#: mod/cal.php:250 mod/events.php:386 src/Model/Event.php:462 -#: src/Util/Temporal.php:342 -msgid "week" -msgstr "" - -#: mod/cal.php:251 mod/events.php:387 src/Model/Event.php:463 -#: src/Util/Temporal.php:343 -msgid "day" -msgstr "" - -#: mod/cal.php:252 mod/events.php:388 -msgid "list" -msgstr "" - -#: mod/cal.php:264 src/Console/User.php:182 src/Model/User.php:663 -#: 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:74 -msgid "User not found" -msgstr "" - -#: mod/cal.php:273 -msgid "This calendar format is not supported" -msgstr "" - -#: mod/cal.php:275 -msgid "No exportable data found" -msgstr "" - -#: mod/cal.php:291 -msgid "calendar" -msgstr "" - -#: mod/display.php:140 mod/photos.php:797 -#: src/Module/Conversation/Community.php:187 src/Module/Directory.php:48 -#: src/Module/Search/Index.php:64 -msgid "Public access denied." -msgstr "" - -#: mod/display.php:210 mod/display.php:284 -msgid "The requested item doesn't exist or has been deleted." -msgstr "" - -#: mod/display.php:364 -msgid "The feed for this item is unavailable." -msgstr "" - -#: mod/editpost.php:38 mod/events.php:218 mod/follow.php:56 mod/follow.php:130 -#: mod/item.php:181 mod/item.php:186 mod/item.php:864 mod/message.php:69 -#: mod/message.php:114 mod/notes.php:44 mod/ostatus_subscribe.php:33 -#: mod/photos.php:159 mod/photos.php:886 mod/repair_ostatus.php:31 -#: mod/settings.php:40 mod/settings.php:50 mod/settings.php:156 -#: mod/suggest.php:34 mod/uimport.php:33 mod/unfollow.php:35 -#: mod/unfollow.php:50 mod/unfollow.php:82 mod/wall_attach.php:70 -#: mod/wall_attach.php:72 mod/wall_upload.php:90 src/Module/Attach.php:56 -#: src/Module/BaseApi.php:94 src/Module/BaseNotifications.php:98 -#: src/Module/Contact/Advanced.php:60 src/Module/Delegation.php:118 +#: mod/item.php:456 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 #: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Group.php:40 src/Module/Group.php:83 src/Module/Invite.php:42 -#: src/Module/Invite.php:131 src/Module/Notifications/Notification.php:76 +#: src/Module/Invite.php:42 src/Module/Invite.php:131 +#: src/Module/Notifications/Notification.php:76 #: src/Module/Notifications/Notification.php:107 -#: src/Module/Profile/Common.php:55 src/Module/Profile/Contacts.php:55 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 #: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 #: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 #: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 #: src/Module/Register.php:90 src/Module/Register.php:206 #: src/Module/Register.php:245 src/Module/Search/Directory.php:37 -#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:410 -#: src/Module/Settings/Delegation.php:41 src/Module/Settings/Delegation.php:69 -#: src/Module/Settings/Display.php:41 src/Module/Settings/Display.php:119 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:388 +#: src/Module/Settings/Channels.php:56 src/Module/Settings/Channels.php:114 +#: src/Module/Settings/Delegation.php:90 src/Module/Settings/Display.php:90 +#: src/Module/Settings/Display.php:193 #: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:111 -#: src/Module/Settings/UserExport.php:84 src/Module/Settings/UserExport.php:118 -#: src/Module/Settings/UserExport.php:219 -#: src/Module/Settings/UserExport.php:239 -#: src/Module/Settings/UserExport.php:304 +#: src/Module/Settings/Profile/Photo/Index.php:112 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/User/Import.php:84 src/Module/User/Import.php:91 msgid "Permission denied." msgstr "" -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "" - -#: mod/editpost.php:64 -msgid "Edit post" -msgstr "" - -#: mod/editpost.php:91 mod/notes.php:56 src/Content/Text/HTML.php:882 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -msgid "Save" -msgstr "" - -#: mod/editpost.php:92 mod/photos.php:1333 src/Content/Conversation.php:341 -#: src/Object/Post.php:987 -msgid "Loading..." -msgstr "" - -#: mod/editpost.php:93 mod/message.php:201 mod/message.php:357 -#: src/Content/Conversation.php:342 -msgid "Upload photo" -msgstr "" - -#: mod/editpost.php:94 src/Content/Conversation.php:343 -msgid "upload photo" -msgstr "" - -#: mod/editpost.php:95 src/Content/Conversation.php:344 -msgid "Attach file" -msgstr "" - -#: mod/editpost.php:96 src/Content/Conversation.php:345 -msgid "attach file" -msgstr "" - -#: mod/editpost.php:97 mod/message.php:202 mod/message.php:358 -#: src/Module/Profile/UnkMail.php:154 -msgid "Insert web link" -msgstr "" - -#: mod/editpost.php:98 -msgid "web link" -msgstr "" - -#: mod/editpost.php:99 -msgid "Insert video link" -msgstr "" - -#: mod/editpost.php:100 -msgid "video link" -msgstr "" - -#: mod/editpost.php:101 -msgid "Insert audio link" -msgstr "" - -#: mod/editpost.php:102 -msgid "audio link" -msgstr "" - -#: mod/editpost.php:103 src/Content/Conversation.php:355 -#: src/Module/Item/Compose.php:200 -msgid "Set your location" -msgstr "" - -#: mod/editpost.php:104 src/Content/Conversation.php:356 -msgid "set location" -msgstr "" - -#: mod/editpost.php:105 src/Content/Conversation.php:357 -msgid "Clear browser location" -msgstr "" - -#: mod/editpost.php:106 src/Content/Conversation.php:358 -msgid "clear location" -msgstr "" - -#: mod/editpost.php:107 mod/message.php:203 mod/message.php:360 -#: mod/photos.php:1484 src/Content/Conversation.php:371 -#: src/Content/Conversation.php:717 src/Module/Item/Compose.php:204 -#: src/Module/Profile/UnkMail.php:155 src/Object/Post.php:537 -msgid "Please wait" -msgstr "" - -#: mod/editpost.php:108 src/Content/Conversation.php:372 -msgid "Permission settings" -msgstr "" - -#: mod/editpost.php:116 src/Core/ACL.php:326 -msgid "CC: email addresses" -msgstr "" - -#: mod/editpost.php:117 src/Content/Conversation.php:382 -msgid "Public post" -msgstr "" - -#: mod/editpost.php:120 src/Content/Conversation.php:360 -#: src/Module/Item/Compose.php:205 -msgid "Set title" -msgstr "" - -#: mod/editpost.php:122 src/Content/Conversation.php:362 -#: src/Module/Item/Compose.php:206 -msgid "Categories (comma-separated list)" -msgstr "" - -#: mod/editpost.php:123 src/Core/ACL.php:327 -msgid "Example: bob@example.com, mary@example.com" -msgstr "" - -#: mod/editpost.php:128 mod/events.php:514 mod/photos.php:1332 -#: mod/photos.php:1388 mod/photos.php:1462 src/Content/Conversation.php:386 -#: src/Module/Item/Compose.php:199 src/Object/Post.php:997 -msgid "Preview" -msgstr "" - -#: mod/editpost.php:130 mod/fbrowser.php:119 mod/fbrowser.php:146 -#: mod/follow.php:144 mod/photos.php:999 mod/photos.php:1100 mod/tagrm.php:35 -#: mod/tagrm.php:127 mod/unfollow.php:97 src/Content/Conversation.php:389 -#: src/Module/Contact/Revoke.php:109 src/Module/RemoteFollow.php:128 -#: src/Module/Security/TwoFactor/SignOut.php:125 -msgid "Cancel" -msgstr "" - -#: mod/editpost.php:134 src/Content/Conversation.php:346 -#: src/Module/Item/Compose.php:190 src/Object/Post.php:988 -msgid "Bold" -msgstr "" - -#: mod/editpost.php:135 src/Content/Conversation.php:347 -#: src/Module/Item/Compose.php:191 src/Object/Post.php:989 -msgid "Italic" -msgstr "" - -#: mod/editpost.php:136 src/Content/Conversation.php:348 -#: src/Module/Item/Compose.php:192 src/Object/Post.php:990 -msgid "Underline" -msgstr "" - -#: mod/editpost.php:137 src/Content/Conversation.php:349 -#: src/Module/Item/Compose.php:193 src/Object/Post.php:991 -msgid "Quote" -msgstr "" - -#: mod/editpost.php:138 src/Content/Conversation.php:350 -#: src/Module/Item/Compose.php:194 src/Object/Post.php:992 -msgid "Code" -msgstr "" - -#: mod/editpost.php:139 src/Content/Conversation.php:352 -#: src/Module/Item/Compose.php:196 src/Object/Post.php:994 -msgid "Link" -msgstr "" - -#: mod/editpost.php:140 src/Content/Conversation.php:353 -#: src/Module/Item/Compose.php:197 src/Object/Post.php:995 -msgid "Link or Media" -msgstr "" - -#: mod/editpost.php:143 src/Content/Conversation.php:396 -#: src/Content/Widget/VCard.php:113 src/Model/Profile.php:465 -#: src/Module/Admin/Logs/View.php:93 -msgid "Message" -msgstr "" - -#: mod/editpost.php:144 src/Content/Conversation.php:397 -#: src/Module/Settings/TwoFactor/Trusted.php:139 -msgid "Browser" -msgstr "" - -#: mod/editpost.php:145 mod/events.php:519 mod/photos.php:934 -#: mod/photos.php:1286 src/Content/Conversation.php:373 -msgid "Permissions" -msgstr "" - -#: mod/editpost.php:147 src/Content/Conversation.php:399 -msgid "Open Compose page" -msgstr "" - -#: mod/events.php:124 mod/events.php:126 -msgid "Event can not end before it has started." -msgstr "" - -#: mod/events.php:132 mod/events.php:134 -msgid "Event title and start time are required." -msgstr "" - -#: mod/events.php:377 -msgid "Create New Event" -msgstr "" - -#: mod/events.php:475 src/Module/Admin/Logs/View.php:97 -msgid "Event details" -msgstr "" - -#: mod/events.php:476 -msgid "Starting date and Title are required." -msgstr "" - -#: mod/events.php:477 mod/events.php:482 -msgid "Event Starts:" -msgstr "" - -#: mod/events.php:477 mod/events.php:507 -#: src/Module/Admin/Blocklist/Server/Add.php:136 -#: src/Module/Admin/Blocklist/Server/Add.php:138 -#: src/Module/Admin/Blocklist/Server/Import.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:82 -#: src/Module/Admin/Blocklist/Server/Index.php:83 -#: src/Module/Admin/Blocklist/Server/Index.php:111 -#: src/Module/Admin/Blocklist/Server/Index.php:112 -#: src/Module/Admin/Item/Delete.php:69 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:207 src/Module/Install.php:240 -#: src/Module/Install.php:245 src/Module/Install.php:264 -#: src/Module/Install.php:275 src/Module/Install.php:280 -#: src/Module/Install.php:286 src/Module/Install.php:291 -#: src/Module/Install.php:305 src/Module/Install.php:320 -#: src/Module/Install.php:347 src/Module/Register.php:148 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Index.php:140 -#: src/Module/Settings/TwoFactor/Verify.php:154 -msgid "Required" -msgstr "" - -#: mod/events.php:490 mod/events.php:513 -msgid "Finish date/time is not known or not relevant" -msgstr "" - -#: mod/events.php:492 mod/events.php:497 -msgid "Event Finishes:" -msgstr "" - -#: mod/events.php:503 src/Module/Profile/Profile.php:171 -#: src/Module/Settings/Profile/Index.php:238 -msgid "Description:" -msgstr "" - -#: mod/events.php:505 src/Content/Widget/VCard.php:104 src/Model/Event.php:80 -#: src/Model/Event.php:107 src/Model/Event.php:469 src/Model/Event.php:919 -#: src/Model/Profile.php:373 src/Module/Contact/Profile.php:370 -#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 -#: src/Module/Profile/Profile.php:193 -msgid "Location:" -msgstr "" - -#: mod/events.php:507 mod/events.php:509 -msgid "Title:" -msgstr "" - -#: mod/events.php:510 mod/events.php:511 -msgid "Share this event" -msgstr "" - -#: mod/events.php:516 mod/message.php:204 mod/message.php:359 -#: mod/photos.php:916 mod/photos.php:1020 mod/photos.php:1290 -#: mod/photos.php:1331 mod/photos.php:1387 mod/photos.php:1461 -#: src/Module/Admin/Item/Source.php:60 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Profile.php:328 -#: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:145 -#: src/Module/Install.php:252 src/Module/Install.php:294 -#: src/Module/Install.php:331 src/Module/Invite.php:178 -#: src/Module/Item/Compose.php:189 src/Module/Profile/Profile.php:246 -#: src/Module/Profile/UnkMail.php:156 src/Module/Settings/Profile/Index.php:222 -#: src/Object/Post.php:986 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 -#: view/theme/vier/config.php:135 -msgid "Submit" -msgstr "" - -#: mod/events.php:517 src/Module/Profile/Profile.php:247 -msgid "Basic" -msgstr "" - -#: mod/events.php:518 src/Module/Admin/Site.php:437 src/Module/Contact.php:477 -#: src/Module/Profile/Profile.php:248 -msgid "Advanced" -msgstr "" - -#: mod/events.php:535 -msgid "Failed to remove event" -msgstr "" - -#: mod/fbrowser.php:61 src/Content/Nav.php:194 src/Module/BaseProfile.php:64 -#: view/theme/frio/theme.php:239 -msgid "Photos" -msgstr "" - -#: mod/fbrowser.php:121 mod/fbrowser.php:148 -#: src/Module/Settings/Profile/Photo/Index.php:128 -msgid "Upload" -msgstr "" - -#: mod/fbrowser.php:143 -msgid "Files" -msgstr "" - -#: mod/follow.php:74 mod/unfollow.php:96 src/Module/RemoteFollow.php:127 -msgid "Submit Request" -msgstr "" - -#: mod/follow.php:84 -msgid "You already added this contact." -msgstr "" - -#: mod/follow.php:100 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "" - -#: mod/follow.php:108 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:113 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:138 src/Content/Item.php:404 src/Content/Widget.php:80 -#: src/Model/Contact.php:1194 src/Model/Contact.php:1205 -#: view/theme/vier/theme.php:198 -msgid "Connect/Follow" -msgstr "" - -#: mod/follow.php:139 src/Module/RemoteFollow.php:126 -msgid "Please answer the following:" -msgstr "" - -#: mod/follow.php:140 mod/unfollow.php:94 -msgid "Your Identity Address:" -msgstr "" - -#: mod/follow.php:141 mod/unfollow.php:100 -#: src/Module/Admin/Blocklist/Contact.php:116 -#: src/Module/Contact/Profile.php:366 -#: src/Module/Notifications/Introductions.php:129 -#: src/Module/Notifications/Introductions.php:198 -msgid "Profile URL" -msgstr "" - -#: mod/follow.php:142 src/Module/Contact/Profile.php:378 -#: src/Module/Notifications/Introductions.php:191 -#: src/Module/Profile/Profile.php:206 -msgid "Tags:" -msgstr "" - -#: mod/follow.php:153 -#, php-format -msgid "%s knows you" -msgstr "" - -#: mod/follow.php:154 -msgid "Add a personal note:" -msgstr "" - -#: mod/follow.php:163 mod/unfollow.php:109 src/Module/BaseProfile.php:59 -#: src/Module/Contact.php:447 -msgid "Status Messages and Posts" -msgstr "" - -#: mod/follow.php:191 -msgid "The contact could not be added." -msgstr "" - -#: mod/item.php:131 mod/item.php:135 -msgid "Unable to locate original post." -msgstr "" - -#: mod/item.php:337 mod/item.php:342 -msgid "Empty post discarded." -msgstr "" - -#: mod/item.php:674 -msgid "Post updated." -msgstr "" - -#: mod/item.php:684 mod/item.php:689 -msgid "Item wasn't stored." -msgstr "" - -#: mod/item.php:700 -msgid "Item couldn't be fetched." -msgstr "" - -#: mod/item.php:840 src/Module/Admin/Themes/Details.php:39 -#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 -#: src/Module/Debug/ItemBody.php:57 -msgid "Item not found." -msgstr "" - #: mod/lostpass.php:40 msgid "No valid account found." msgstr "" @@ -610,7 +151,7 @@ msgid "" "your email for further instructions." msgstr "" -#: mod/lostpass.php:130 src/Module/Security/Login.php:161 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " msgstr "" @@ -618,7 +159,7 @@ msgstr "" msgid "Reset" msgstr "" -#: mod/lostpass.php:146 src/Module/Security/Login.php:173 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 msgid "Password Reset" msgstr "" @@ -679,926 +220,598 @@ msgstr "" msgid "Your password has been changed at %s" msgstr "" -#: mod/match.php:62 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "" - -#: mod/match.php:93 src/Module/BaseSearch.php:119 -msgid "No matches" -msgstr "" - -#: mod/match.php:98 -msgid "Profile Match" -msgstr "" - -#: mod/message.php:46 mod/message.php:129 src/Content/Nav.php:288 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 msgid "New Message" msgstr "" -#: mod/message.php:83 src/Module/Profile/UnkMail.php:100 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 msgid "No recipient selected." msgstr "" -#: mod/message.php:88 +#: mod/message.php:87 msgid "Unable to locate contact information." msgstr "" -#: mod/message.php:92 src/Module/Profile/UnkMail.php:106 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 msgid "Message could not be sent." msgstr "" -#: mod/message.php:96 src/Module/Profile/UnkMail.php:109 +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 msgid "Message collection failure." msgstr "" -#: mod/message.php:123 src/Module/Notifications/Introductions.php:135 +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 #: src/Module/Notifications/Introductions.php:170 #: src/Module/Notifications/Notification.php:85 msgid "Discard" msgstr "" -#: mod/message.php:136 src/Content/Nav.php:285 view/theme/frio/theme.php:246 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" msgstr "" -#: mod/message.php:149 +#: mod/message.php:148 msgid "Conversation not found." msgstr "" -#: mod/message.php:154 +#: mod/message.php:153 msgid "Message was not deleted." msgstr "" -#: mod/message.php:169 +#: mod/message.php:168 msgid "Conversation was not removed." msgstr "" -#: mod/message.php:183 mod/message.php:289 src/Module/Profile/UnkMail.php:146 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 msgid "Please enter a link URL:" msgstr "" -#: mod/message.php:192 src/Module/Profile/UnkMail.php:152 +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 msgid "Send Private Message" msgstr "" -#: mod/message.php:193 mod/message.php:349 +#: mod/message.php:191 mod/message.php:346 msgid "To:" msgstr "" -#: mod/message.php:194 mod/message.php:350 +#: mod/message.php:192 mod/message.php:347 msgid "Subject:" msgstr "" -#: mod/message.php:198 mod/message.php:353 src/Module/Invite.php:171 +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 msgid "Your message:" msgstr "" -#: mod/message.php:225 +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1581 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:606 +msgid "Please wait" +msgstr "" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 +#: src/Module/Install.php:274 src/Module/Install.php:309 +#: src/Module/Invite.php:178 src/Module/Item/Compose.php:189 +#: src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 +#: src/Object/Post.php:1146 view/theme/duepuntozero/config.php:85 +#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/vier/config.php:135 +msgid "Submit" +msgstr "" + +#: mod/message.php:223 msgid "No messages." msgstr "" -#: mod/message.php:281 +#: mod/message.php:279 msgid "Message not available." msgstr "" -#: mod/message.php:326 +#: mod/message.php:323 msgid "Delete message" msgstr "" -#: mod/message.php:328 mod/message.php:459 +#: mod/message.php:325 mod/message.php:456 msgid "D, d M Y - g:i A" msgstr "" -#: mod/message.php:343 mod/message.php:456 +#: mod/message.php:340 mod/message.php:453 msgid "Delete conversation" msgstr "" -#: mod/message.php:345 +#: mod/message.php:342 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "" -#: mod/message.php:348 +#: mod/message.php:345 msgid "Send Reply" msgstr "" -#: mod/message.php:430 +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "" -#: mod/message.php:432 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "" -#: mod/message.php:434 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "" -#: mod/message.php:462 +#: mod/message.php:459 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "" msgstr[1] "" -#: mod/notes.php:51 src/Module/BaseProfile.php:106 +#: mod/notes.php:52 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "" -#: mod/notes.php:55 +#: mod/notes.php:56 msgid "Personal notes are visible only by yourself." msgstr "" -#: mod/ostatus_subscribe.php:38 -msgid "Subscribing to contacts" +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:161 +msgid "Save" msgstr "" -#: mod/ostatus_subscribe.php:47 -msgid "No contact provided." +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." msgstr "" -#: mod/ostatus_subscribe.php:53 -msgid "Couldn't fetch information for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:64 -msgid "Couldn't fetch friends for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:70 mod/ostatus_subscribe.php:81 -msgid "Couldn't fetch following contacts." -msgstr "" - -#: mod/ostatus_subscribe.php:76 -msgid "Couldn't fetch remote profile." -msgstr "" - -#: mod/ostatus_subscribe.php:86 -msgid "Unsupported network" -msgstr "" - -#: mod/ostatus_subscribe.php:102 mod/repair_ostatus.php:51 -msgid "Done" -msgstr "" - -#: mod/ostatus_subscribe.php:116 -msgid "success" -msgstr "" - -#: mod/ostatus_subscribe.php:118 -msgid "failed" -msgstr "" - -#: mod/ostatus_subscribe.php:121 -msgid "ignored" -msgstr "" - -#: mod/ostatus_subscribe.php:126 mod/repair_ostatus.php:57 -msgid "Keep this window open until done." -msgstr "" - -#: mod/photos.php:107 src/Module/BaseProfile.php:67 +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 msgid "Photo Albums" msgstr "" -#: mod/photos.php:108 mod/photos.php:1579 +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 msgid "Recent Photos" msgstr "" -#: mod/photos.php:110 mod/photos.php:1068 mod/photos.php:1581 +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 msgid "Upload New Photos" msgstr "" -#: mod/photos.php:128 src/Module/BaseSettings.php:35 +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 msgid "everybody" msgstr "" -#: mod/photos.php:166 +#: mod/photos.php:159 msgid "Contact information unavailable" msgstr "" -#: mod/photos.php:195 +#: mod/photos.php:188 msgid "Album not found." msgstr "" -#: mod/photos.php:249 +#: mod/photos.php:244 msgid "Album successfully deleted" msgstr "" -#: mod/photos.php:251 +#: mod/photos.php:246 msgid "Album was empty." msgstr "" -#: mod/photos.php:283 +#: mod/photos.php:277 msgid "Failed to delete the photo." msgstr "" -#: mod/photos.php:552 +#: mod/photos.php:545 msgid "a photo" msgstr "" -#: mod/photos.php:552 +#: mod/photos.php:545 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "" -#: mod/photos.php:631 mod/photos.php:634 mod/photos.php:661 -#: mod/wall_upload.php:212 src/Module/Settings/Profile/Photo/Index.php:59 -#, php-format -msgid "Image exceeds size limit of %s" +#: mod/photos.php:582 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." msgstr "" -#: mod/photos.php:637 -msgid "Image upload didn't complete, please try again" -msgstr "" - -#: mod/photos.php:640 -msgid "Image file is missing" -msgstr "" - -#: mod/photos.php:645 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "" - -#: mod/photos.php:669 -msgid "Image file is empty." -msgstr "" - -#: mod/photos.php:684 mod/wall_upload.php:173 -#: src/Module/Settings/Profile/Photo/Index.php:68 -msgid "Unable to process image." -msgstr "" - -#: mod/photos.php:710 mod/wall_upload.php:237 -#: src/Module/Settings/Profile/Photo/Index.php:95 -msgid "Image upload failed." -msgstr "" - -#: mod/photos.php:802 +#: mod/photos.php:587 msgid "No photos selected" msgstr "" -#: mod/photos.php:871 -msgid "Access to this item is restricted." +#: mod/photos.php:721 +#, php-format +msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:926 +#: mod/photos.php:728 msgid "Upload Photos" msgstr "" -#: mod/photos.php:930 mod/photos.php:1016 +#: mod/photos.php:732 mod/photos.php:820 msgid "New album name: " msgstr "" -#: mod/photos.php:931 +#: mod/photos.php:733 msgid "or select existing album:" msgstr "" -#: mod/photos.php:932 +#: mod/photos.php:734 msgid "Do not show a status post for this upload" msgstr "" -#: mod/photos.php:997 +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "" + +#: mod/photos.php:801 msgid "Do you really want to delete this photo album and all its photos?" msgstr "" -#: mod/photos.php:998 mod/photos.php:1021 +#: mod/photos.php:802 mod/photos.php:825 msgid "Delete Album" msgstr "" -#: mod/photos.php:1025 +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "" + +#: mod/photos.php:829 msgid "Edit Album" msgstr "" -#: mod/photos.php:1026 +#: mod/photos.php:830 msgid "Drop Album" msgstr "" -#: mod/photos.php:1030 +#: mod/photos.php:834 msgid "Show Newest First" msgstr "" -#: mod/photos.php:1032 +#: mod/photos.php:836 msgid "Show Oldest First" msgstr "" -#: mod/photos.php:1053 mod/photos.php:1564 +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 msgid "View Photo" msgstr "" -#: mod/photos.php:1086 +#: mod/photos.php:889 msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: mod/photos.php:1088 +#: mod/photos.php:891 msgid "Photo not available" msgstr "" -#: mod/photos.php:1098 +#: mod/photos.php:901 msgid "Do you really want to delete this photo?" msgstr "" -#: mod/photos.php:1099 mod/photos.php:1291 +#: mod/photos.php:902 mod/photos.php:1102 msgid "Delete Photo" msgstr "" -#: mod/photos.php:1191 +#: mod/photos.php:1000 msgid "View photo" msgstr "" -#: mod/photos.php:1193 +#: mod/photos.php:1002 msgid "Edit photo" msgstr "" -#: mod/photos.php:1194 +#: mod/photos.php:1003 msgid "Delete photo" msgstr "" -#: mod/photos.php:1195 +#: mod/photos.php:1004 msgid "Use as profile photo" msgstr "" -#: mod/photos.php:1202 +#: mod/photos.php:1011 msgid "Private Photo" msgstr "" -#: mod/photos.php:1208 +#: mod/photos.php:1017 msgid "View Full Size" msgstr "" -#: mod/photos.php:1259 +#: mod/photos.php:1070 msgid "Tags: " msgstr "" -#: mod/photos.php:1262 +#: mod/photos.php:1073 msgid "[Select tags to remove]" msgstr "" -#: mod/photos.php:1277 +#: mod/photos.php:1088 msgid "New album name" msgstr "" -#: mod/photos.php:1278 +#: mod/photos.php:1089 msgid "Caption" msgstr "" -#: mod/photos.php:1279 +#: mod/photos.php:1090 msgid "Add a Tag" msgstr "" -#: mod/photos.php:1279 +#: mod/photos.php:1090 msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "" -#: mod/photos.php:1280 +#: mod/photos.php:1091 msgid "Do not rotate" msgstr "" -#: mod/photos.php:1281 +#: mod/photos.php:1092 msgid "Rotate CW (right)" msgstr "" -#: mod/photos.php:1282 +#: mod/photos.php:1093 msgid "Rotate CCW (left)" msgstr "" -#: mod/photos.php:1328 mod/photos.php:1384 mod/photos.php:1458 -#: src/Module/Contact.php:547 src/Module/Item/Compose.php:188 -#: src/Object/Post.php:983 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "" -#: mod/photos.php:1330 mod/photos.php:1386 mod/photos.php:1460 -#: src/Object/Post.php:531 src/Object/Post.php:985 +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:600 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "" -#: mod/photos.php:1419 src/Content/Conversation.php:633 src/Object/Post.php:255 +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1159 +msgid "Preview" +msgstr "" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1147 +msgid "Loading..." +msgstr "" + +#: mod/photos.php:1236 src/Content/Conversation.php:1496 +#: src/Object/Post.php:261 msgid "Select" msgstr "" -#: mod/photos.php:1420 mod/settings.php:350 src/Content/Conversation.php:634 -#: src/Module/Admin/Users/Active.php:139 src/Module/Admin/Users/Blocked.php:140 -#: src/Module/Admin/Users/Index.php:153 +#: mod/photos.php:1237 src/Content/Conversation.php:1497 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:247 +#: src/Module/Settings/Server/Index.php:109 msgid "Delete" msgstr "" -#: mod/photos.php:1481 src/Object/Post.php:378 +#: mod/photos.php:1298 src/Object/Post.php:426 msgid "Like" msgstr "" -#: mod/photos.php:1482 src/Object/Post.php:378 +#: mod/photos.php:1299 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "" -#: mod/photos.php:1483 src/Object/Post.php:379 +#: mod/photos.php:1300 src/Object/Post.php:427 msgid "Dislike" msgstr "" -#: mod/photos.php:1485 src/Object/Post.php:379 +#: mod/photos.php:1302 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "" -#: mod/photos.php:1507 +#: mod/photos.php:1324 msgid "Map" msgstr "" -#: mod/photos.php:1570 -msgid "View Album" -msgstr "" - -#: mod/redir.php:50 mod/redir.php:103 -msgid "Bad Request." -msgstr "" - -#: mod/redir.php:56 mod/redir.php:130 src/Module/Contact/Advanced.php:70 -#: src/Module/Contact/Advanced.php:109 src/Module/Contact/Contacts.php:53 -#: src/Module/Contact/Conversations.php:84 -#: src/Module/Contact/Conversations.php:89 -#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:142 -#: src/Module/Contact/Profile.php:147 src/Module/Contact/Profile.php:152 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 -#: src/Module/Group.php:97 src/Module/Group.php:106 -msgid "Contact not found." -msgstr "" - -#: mod/removeme.php:65 src/Navigation/Notifications/Repository/Notify.php:467 -msgid "[Friendica System Notify]" -msgstr "" - -#: mod/removeme.php:65 -msgid "User deleted their account" -msgstr "" - -#: mod/removeme.php:66 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "" - -#: mod/removeme.php:67 -#, php-format -msgid "The user id is %d" -msgstr "" - -#: mod/removeme.php:101 mod/removeme.php:104 -msgid "Remove My Account" -msgstr "" - -#: mod/removeme.php:102 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "" - -#: mod/removeme.php:103 -msgid "Please enter your password for verification:" -msgstr "" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "" - -#: mod/repair_ostatus.php:46 src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Security/TwoFactor/Verify.php:98 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "" -msgstr[1] "" - -#: mod/settings.php:123 -msgid "Failed to connect with email account using the settings provided." -msgstr "" - -#: mod/settings.php:176 -msgid "Connected Apps" -msgstr "" - -#: mod/settings.php:177 src/Module/Admin/Blocklist/Contact.php:106 -#: 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 "" - -#: mod/settings.php:178 src/Content/Nav.php:214 -msgid "Home Page" -msgstr "" - -#: mod/settings.php:179 src/Module/Admin/Queue.php:78 -msgid "Created" -msgstr "" - -#: mod/settings.php:180 -msgid "Remove authorization" -msgstr "" - -#: mod/settings.php:206 mod/settings.php:238 mod/settings.php:270 -#: mod/settings.php:355 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81 -#: src/Module/Admin/Site.php:432 src/Module/Admin/Themes/Index.php:113 -#: src/Module/Admin/Tos.php:83 src/Module/Settings/Account.php:563 -#: src/Module/Settings/Delegation.php:169 src/Module/Settings/Display.php:200 -msgid "Save Settings" -msgstr "" - -#: mod/settings.php:214 -msgid "Addon Settings" -msgstr "" - -#: mod/settings.php:215 -msgid "No Addon settings configured" -msgstr "" - -#: mod/settings.php:236 -msgid "Additional Features" -msgstr "" - -#: mod/settings.php:275 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "" - -#: mod/settings.php:275 mod/settings.php:276 -msgid "enabled" -msgstr "" - -#: mod/settings.php:275 mod/settings.php:276 -msgid "disabled" -msgstr "" - -#: mod/settings.php:275 mod/settings.php:276 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "" - -#: mod/settings.php:276 -msgid "OStatus (GNU Social)" -msgstr "" - -#: mod/settings.php:302 -msgid "Email access is disabled on this site." -msgstr "" - -#: mod/settings.php:307 mod/settings.php:353 -msgid "None" -msgstr "" - -#: mod/settings.php:313 src/Module/BaseSettings.php:78 -msgid "Social Networks" -msgstr "" - -#: mod/settings.php:318 -msgid "General Social Media Settings" -msgstr "" - -#: mod/settings.php:321 -msgid "Followed content scope" -msgstr "" - -#: mod/settings.php:323 -msgid "" -"By default, conversations in which your follows participated but didn't " -"start will be shown in your timeline. You can turn this behavior off, or " -"expand it to the conversations in which your follows liked a post." -msgstr "" - -#: mod/settings.php:325 -msgid "Only conversations my follows started" -msgstr "" - -#: mod/settings.php:326 -msgid "Conversations my follows started or commented on (default)" -msgstr "" - -#: mod/settings.php:327 -msgid "Any conversation my follows interacted with, including likes" -msgstr "" - -#: mod/settings.php:330 -msgid "Enable Content Warning" -msgstr "" - -#: mod/settings.php:330 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning " -"field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't " -"affect any other content filtering you eventually set up." -msgstr "" - -#: mod/settings.php:331 -msgid "Show content warnings on own posts" -msgstr "" - -#: mod/settings.php:331 -msgid "" -"Normally Friendica only displays content warnings on posts created by other " -"users. If this option is enabled it will also display content warnings on " -"your own posts." -msgstr "" - -#: mod/settings.php:332 -msgid "Enable intelligent shortening" -msgstr "" - -#: mod/settings.php:332 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If disabled, every shortened post will always point to the original " -"friendica post." -msgstr "" - -#: mod/settings.php:333 -msgid "Enable simple text shortening" -msgstr "" - -#: mod/settings.php:333 -msgid "" -"Normally the system shortens posts at the next line feed. If this option is " -"enabled then the system will shorten the text at the maximum character limit." -msgstr "" - -#: mod/settings.php:334 -msgid "Attach the link title" -msgstr "" - -#: mod/settings.php:334 -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:335 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "" - -#: mod/settings.php:335 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your " -"contacts will be added automatically. The field will be emptied when done." -msgstr "" - -#: mod/settings.php:338 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: mod/settings.php:342 -msgid "Email/Mailbox Setup" -msgstr "" - -#: mod/settings.php:343 -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:344 -msgid "Last successful email check:" -msgstr "" - -#: mod/settings.php:346 -msgid "IMAP server name:" -msgstr "" - -#: mod/settings.php:347 -msgid "IMAP port:" -msgstr "" - -#: mod/settings.php:348 -msgid "Security:" -msgstr "" - -#: mod/settings.php:349 -msgid "Email login name:" -msgstr "" - -#: mod/settings.php:350 -msgid "Email password:" -msgstr "" - -#: mod/settings.php:351 -msgid "Reply-to address:" -msgstr "" - -#: mod/settings.php:352 -msgid "Send public posts to all email contacts:" -msgstr "" - -#: mod/settings.php:353 -msgid "Action after import:" -msgstr "" - -#: mod/settings.php:353 src/Content/Nav.php:282 -msgid "Mark as seen" -msgstr "" - -#: mod/settings.php:353 -msgid "Move to folder" -msgstr "" - -#: mod/settings.php:354 -msgid "Move to folder:" -msgstr "" - -#: mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: mod/suggest.php:55 src/Content/Widget.php:83 view/theme/vier/theme.php:201 -msgid "Friend Suggestions" -msgstr "" - -#: mod/tagger.php:77 src/Content/Item.php:304 src/Model/Item.php:2861 -msgid "photo" -msgstr "" - -#: mod/tagger.php:77 src/Content/Item.php:298 src/Content/Item.php:308 -msgid "status" -msgstr "" - -#: mod/tagger.php:110 src/Content/Item.php:318 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" - -#: mod/tagrm.php:113 -msgid "Remove Item Tag" -msgstr "" - -#: mod/tagrm.php:115 -msgid "Select a tag to remove: " -msgstr "" - -#: mod/tagrm.php:126 src/Module/Settings/Delegation.php:178 -#: src/Module/Settings/TwoFactor/Trusted.php:143 -msgid "Remove" -msgstr "" - -#: mod/uimport.php:46 -msgid "User imports on closed servers can only be done by an administrator." -msgstr "" - -#: mod/uimport.php:55 src/Module/Register.php:99 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: mod/uimport.php:62 src/Module/Register.php:173 -msgid "Import" -msgstr "" - -#: mod/uimport.php:64 -msgid "Move account" -msgstr "" - -#: mod/uimport.php:65 -msgid "You can import an account from another Friendica server." -msgstr "" - -#: mod/uimport.php:66 -msgid "" -"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." -msgstr "" - -#: mod/uimport.php:67 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "" - -#: mod/uimport.php:68 -msgid "Account file" -msgstr "" - -#: mod/uimport.php:68 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" - -#: mod/unfollow.php:65 mod/unfollow.php:134 -msgid "You aren't following this contact." -msgstr "" - -#: mod/unfollow.php:71 -msgid "Unfollowing is currently not supported by your network." -msgstr "" - -#: mod/unfollow.php:92 -msgid "Disconnect/Unfollow" -msgstr "" - -#: mod/unfollow.php:143 -msgid "Contact was successfully unfollowed" -msgstr "" - -#: mod/unfollow.php:146 -msgid "Unable to unfollow this contact, please contact your administrator" -msgstr "" - -#: mod/wall_attach.php:41 mod/wall_attach.php:48 mod/wall_attach.php:79 -#: mod/wall_upload.php:54 mod/wall_upload.php:64 mod/wall_upload.php:101 -#: mod/wall_upload.php:152 -msgid "Invalid request." -msgstr "" - -#: mod/wall_attach.php:95 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: mod/wall_attach.php:95 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: mod/wall_attach.php:107 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "" - -#: mod/wall_attach.php:123 -msgid "File upload failed." -msgstr "" - -#: mod/wall_upload.php:229 src/Model/Photo.php:1086 -msgid "Wall Photos" -msgstr "" - -#: src/App.php:490 +#: src/App.php:473 msgid "No system theme config value set." msgstr "" -#: src/App.php:611 +#: src/App.php:581 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:282 +#: src/App/Page.php:248 msgid "Delete this item?" msgstr "" -#: src/App/Page.php:283 +#: src/App/Page.php:249 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "" -#: src/App/Page.php:353 +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "" + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "" + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "" + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "" + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "" + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "" + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "" + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "" + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "" + +#: src/App/Page.php:351 msgid "toggle mobile" msgstr "" -#: src/App/Router.php:288 +#: src/App/Router.php:309 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "" -#: src/App/Router.php:290 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 msgid "Page not found." msgstr "" -#: src/App/Router.php:318 +#: src/App/Router.php:323 msgid "You must be logged in to use addons. " msgstr "" -#: src/BaseModule.php:392 +#: src/BaseModule.php:407 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 "" -#: src/BaseModule.php:419 +#: src/BaseModule.php:434 msgid "All contacts" msgstr "" -#: src/BaseModule.php:424 src/Content/Widget.php:235 src/Core/ACL.php:194 -#: src/Module/Contact.php:370 src/Module/PermissionTooltip.php:122 -#: src/Module/PermissionTooltip.php:144 +#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 +#: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 +#: src/Module/Settings/Channels.php:120 msgid "Followers" msgstr "" -#: src/BaseModule.php:429 src/Content/Widget.php:236 src/Module/Contact.php:371 +#: src/BaseModule.php:444 src/Content/Widget.php:240 src/Module/Contact.php:417 +#: src/Module/Settings/Channels.php:119 msgid "Following" msgstr "" -#: src/BaseModule.php:434 src/Content/Widget.php:237 src/Module/Contact.php:372 +#: src/BaseModule.php:449 src/Content/Widget.php:241 src/Module/Contact.php:420 msgid "Mutual friends" msgstr "" -#: src/BaseModule.php:442 +#: src/BaseModule.php:457 msgid "Common" msgstr "" @@ -1624,13 +837,13 @@ msgid "The contact entries have been archived" msgstr "" #: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "" #: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:66 +#: src/Module/Moderation/Blocklist/Contact.php:82 msgid "The contact has been blocked from the node" msgstr "" @@ -1748,6 +961,15 @@ msgstr "" msgid "Enter user nickname: " msgstr "" +#: src/Console/User.php:182 src/Model/User.php:784 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "" + #: src/Console/User.php:202 msgid "Enter new password: " msgstr "" @@ -1847,10 +1069,14 @@ msgstr "" msgid "RSS/Atom" msgstr "" -#: src/Content/ContactSelector.php:129 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 +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 msgid "Email" msgstr "" @@ -1906,266 +1132,509 @@ msgstr "" msgid "pnut" msgstr "" -#: src/Content/ContactSelector.php:178 +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "" + +#: src/Content/ContactSelector.php:180 #, php-format msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:210 -#, php-format -msgid "%s likes this." -msgstr "" - -#: src/Content/Conversation.php:213 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: src/Content/Conversation.php:216 -#, php-format -msgid "%s attends." -msgstr "" - -#: src/Content/Conversation.php:219 -#, php-format -msgid "%s doesn't attend." -msgstr "" - -#: src/Content/Conversation.php:222 -#, php-format -msgid "%s attends maybe." -msgstr "" - -#: src/Content/Conversation.php:225 src/Content/Conversation.php:263 -#: src/Content/Conversation.php:877 -#, php-format -msgid "%s reshared this." -msgstr "" - -#: src/Content/Conversation.php:231 +#: src/Content/Conversation.php:226 msgid "and" msgstr "" -#: src/Content/Conversation.php:234 +#: src/Content/Conversation.php:229 #, php-format msgid "and %d other people" msgstr "" -#: src/Content/Conversation.php:242 +#: src/Content/Conversation.php:235 #, php-format -msgid "%2$d people like this" -msgstr "" +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:239 +#, php-format +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:241 +#, php-format +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "" +msgstr[1] "" #: src/Content/Conversation.php:243 #, php-format -msgid "%s like this." -msgstr "" +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:246 +#: src/Content/Conversation.php:245 #, php-format -msgid "%2$d people don't like this" -msgstr "" +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:247 +#: src/Content/Conversation.php:274 #, php-format -msgid "%s don't like this." -msgstr "" +msgid " likes this" +msgid_plural " like this" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:250 +#: src/Content/Conversation.php:277 #, php-format -msgid "%2$d people attend" -msgstr "" +msgid " doesn't like this" +msgid_plural "" +" don't like this" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:251 +#: src/Content/Conversation.php:280 #, php-format -msgid "%s attend." -msgstr "" +msgid " attends" +msgid_plural " attend" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:254 +#: src/Content/Conversation.php:283 #, php-format -msgid "%2$d people don't attend" -msgstr "" +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:255 +#: src/Content/Conversation.php:286 #, php-format -msgid "%s don't attend." -msgstr "" +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:258 +#: src/Content/Conversation.php:289 #, php-format -msgid "%2$d people attend maybe" -msgstr "" +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:259 -#, php-format -msgid "%s attend maybe." -msgstr "" - -#: src/Content/Conversation.php:262 -#, php-format -msgid "%2$d people reshared this" -msgstr "" - -#: src/Content/Conversation.php:310 +#: src/Content/Conversation.php:336 msgid "Visible to everybody" msgstr "" -#: src/Content/Conversation.php:311 src/Module/Item/Compose.php:198 -#: src/Object/Post.php:996 +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "" -#: src/Content/Conversation.php:312 +#: src/Content/Conversation.php:338 msgid "Tag term:" msgstr "" -#: src/Content/Conversation.php:313 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 msgid "Save to Folder:" msgstr "" -#: src/Content/Conversation.php:314 +#: src/Content/Conversation.php:340 msgid "Where are you right now?" msgstr "" -#: src/Content/Conversation.php:315 +#: src/Content/Conversation.php:341 msgid "Delete item(s)?" msgstr "" -#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:175 +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:363 msgid "New Post" msgstr "" -#: src/Content/Conversation.php:340 +#: src/Content/Conversation.php:366 msgid "Share" msgstr "" -#: src/Content/Conversation.php:351 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:993 +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1148 +msgid "Bold" +msgstr "" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1149 +msgid "Italic" +msgstr "" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1150 +msgid "Underline" +msgstr "" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1152 +msgid "Quote" +msgstr "" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1153 +msgid "Add emojis" +msgstr "" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1151 +msgid "Content Warning" +msgstr "" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1154 +msgid "Code" +msgstr "" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1155 msgid "Image" msgstr "" -#: src/Content/Conversation.php:354 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1156 +msgid "Link" +msgstr "" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1157 +msgid "Link or Media" +msgstr "" + +#: src/Content/Conversation.php:382 msgid "Video" msgstr "" -#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:222 +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 msgid "Scheduled at" msgstr "" -#: src/Content/Conversation.php:661 src/Object/Post.php:243 -msgid "Pinned item" +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" msgstr "" -#: src/Content/Conversation.php:677 src/Object/Post.php:485 -#: src/Object/Post.php:486 -#, php-format -msgid "View %s's profile @ %s" +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" msgstr "" -#: src/Content/Conversation.php:690 src/Object/Post.php:473 -msgid "Categories:" +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:131 +#: src/Model/Profile.php:484 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" msgstr "" -#: src/Content/Conversation.php:691 src/Object/Post.php:474 -msgid "Filed under:" +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:143 +msgid "Browser" msgstr "" -#: src/Content/Conversation.php:699 src/Object/Post.php:499 -#, php-format -msgid "%s from %s" +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" msgstr "" -#: src/Content/Conversation.php:715 -msgid "View in context" -msgstr "" - -#: src/Content/Conversation.php:780 +#: src/Content/Conversation.php:595 msgid "remove" msgstr "" -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:599 msgid "Delete Selected Items" msgstr "" -#: src/Content/Conversation.php:849 src/Content/Conversation.php:852 -#: src/Content/Conversation.php:855 src/Content/Conversation.php:858 +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:861 +#: src/Content/Conversation.php:769 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:864 +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "" + +#: src/Content/Conversation.php:776 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:879 +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "" + +#: src/Content/Conversation.php:798 msgid "Reshared" msgstr "" -#: src/Content/Conversation.php:879 +#: src/Content/Conversation.php:798 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:882 +#: src/Content/Conversation.php:801 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:885 +#: src/Content/Conversation.php:804 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:888 +#: src/Content/Conversation.php:807 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:891 +#: src/Content/Conversation.php:810 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:891 +#: src/Content/Conversation.php:810 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:894 +#: src/Content/Conversation.php:813 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:894 +#: src/Content/Conversation.php:813 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:897 +#: src/Content/Conversation.php:816 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:900 +#: src/Content/Conversation.php:819 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:903 +#: src/Content/Conversation.php:822 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:906 +#: src/Content/Conversation.php:825 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:909 +#: src/Content/Conversation.php:828 msgid "Pushed to us" msgstr "" +#: src/Content/Conversation.php:1524 src/Object/Post.php:248 +msgid "Pinned item" +msgstr "" + +#: src/Content/Conversation.php:1541 src/Object/Post.php:547 +#: src/Object/Post.php:548 +#, php-format +msgid "View %s's profile @ %s" +msgstr "" + +#: src/Content/Conversation.php:1554 src/Object/Post.php:535 +msgid "Categories:" +msgstr "" + +#: src/Content/Conversation.php:1555 src/Object/Post.php:536 +msgid "Filed under:" +msgstr "" + +#: src/Content/Conversation.php:1563 src/Object/Post.php:561 +#, php-format +msgid "%s from %s" +msgstr "" + +#: src/Content/Conversation.php:1579 +msgid "View in context" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:42 +msgid "For you" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:42 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:43 +msgid "What's Hot" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:43 +msgid "Posts with a lot of interactions" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:44 +#, php-format +msgid "Posts in %s" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:45 +msgid "Posts from your followers that you don't follow" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:46 +msgid "Sharers of sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:46 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Module/Settings/Channels.php:137 src/Module/Settings/Channels.php:153 +msgid "Images" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:47 +msgid "Posts with images" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:155 +msgid "Audio" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts with audio" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Module/Settings/Channels.php:138 src/Module/Settings/Channels.php:154 +msgid "Videos" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 +msgid "Posts with videos" +msgstr "" + +#: src/Content/Conversation/Factory/Community.php:43 +msgid "Local Community" +msgstr "" + +#: src/Content/Conversation/Factory/Community.php:43 +msgid "Posts from local users on this server" +msgstr "" + +#: src/Content/Conversation/Factory/Community.php:47 +#: src/Module/Settings/Channels.php:118 +msgid "Global Community" +msgstr "" + +#: src/Content/Conversation/Factory/Community.php:47 +msgid "Posts from users of the whole federated network" +msgstr "" + +#: src/Content/Conversation/Factory/Network.php:38 +msgid "Latest Activity" +msgstr "" + +#: src/Content/Conversation/Factory/Network.php:38 +msgid "Sort by latest activity" +msgstr "" + +#: src/Content/Conversation/Factory/Network.php:39 +msgid "Latest Posts" +msgstr "" + +#: src/Content/Conversation/Factory/Network.php:39 +msgid "Sort by post received date" +msgstr "" + +#: src/Content/Conversation/Factory/Network.php:40 +msgid "Latest Creation" +msgstr "" + +#: src/Content/Conversation/Factory/Network.php:40 +msgid "Sort by post creation date" +msgstr "" + +#: src/Content/Conversation/Factory/Network.php:41 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "" + +#: src/Content/Conversation/Factory/Network.php:41 +msgid "Posts that mention or involve you" +msgstr "" + +#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:398 +msgid "Starred" +msgstr "" + +#: src/Content/Conversation/Factory/Network.php:42 +msgid "Favourite Posts" +msgstr "" + #: src/Content/Feature.php:96 msgid "General Features" msgstr "" @@ -2195,12 +1664,12 @@ msgid "Post Composition Features" msgstr "" #: src/Content/Feature.php:105 -msgid "Auto-mention Forums" +msgid "Auto-mention Groups" msgstr "" #: src/Content/Feature.php:105 msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." +"Add/remove mention when a group page is selected/deselected in ACL window." msgstr "" #: src/Content/Feature.php:106 @@ -2241,11 +1710,11 @@ msgid "Advanced Profile Settings" msgstr "" #: src/Content/Feature.php:119 -msgid "List Forums" +msgid "List Groups" msgstr "" #: src/Content/Feature.php:119 -msgid "Show visitors public community forums at the Advanced Profile Page" +msgid "Show visitors public groups at the Advanced Profile Page" msgstr "" #: src/Content/Feature.php:120 @@ -2264,341 +1733,432 @@ msgstr "" msgid "Display membership date in profile" msgstr "" -#: src/Content/ForumManager.php:151 src/Content/Nav.php:241 -#: src/Content/Text/HTML.php:903 src/Content/Widget.php:524 -msgid "Forums" +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" msgstr "" -#: src/Content/ForumManager.php:153 -msgid "External link to forum" +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" msgstr "" -#: src/Content/ForumManager.php:156 src/Content/Widget.php:503 +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "" + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1346 +msgid "Groups" +msgstr "" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 msgid "show less" msgstr "" -#: src/Content/ForumManager.php:157 src/Content/Widget.php:405 -#: src/Content/Widget.php:504 +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 msgid "show more" msgstr "" -#: src/Content/Item.php:295 src/Model/Item.php:2859 +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "" + +#: src/Content/Item.php:332 src/Model/Item.php:3122 msgid "event" msgstr "" -#: src/Content/Item.php:387 view/theme/frio/theme.php:267 +#: src/Content/Item.php:335 src/Content/Item.php:345 +msgid "status" +msgstr "" + +#: src/Content/Item.php:341 src/Model/Item.php:3124 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "" + +#: src/Content/Item.php:355 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + +#: src/Content/Item.php:429 view/theme/frio/theme.php:262 msgid "Follow Thread" msgstr "" -#: src/Content/Item.php:388 src/Model/Contact.php:1199 +#: src/Content/Item.php:430 src/Model/Contact.php:1242 msgid "View Status" msgstr "" -#: src/Content/Item.php:389 src/Content/Item.php:407 src/Model/Contact.php:1137 -#: src/Model/Contact.php:1191 src/Model/Contact.php:1200 -#: src/Module/Directory.php:157 src/Module/Settings/Profile/Index.php:225 +#: src/Content/Item.php:431 src/Content/Item.php:452 src/Model/Contact.php:1176 +#: src/Model/Contact.php:1233 src/Model/Contact.php:1243 +#: src/Module/Directory.php:157 src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "" -#: src/Content/Item.php:390 src/Model/Contact.php:1201 +#: src/Content/Item.php:432 src/Model/Contact.php:1244 msgid "View Photos" msgstr "" -#: src/Content/Item.php:391 src/Model/Contact.php:1192 -#: src/Model/Contact.php:1202 +#: src/Content/Item.php:433 src/Model/Contact.php:1211 +#: src/Model/Profile.php:469 msgid "Network Posts" msgstr "" -#: src/Content/Item.php:392 src/Model/Contact.php:1193 -#: src/Model/Contact.php:1203 +#: src/Content/Item.php:434 src/Model/Contact.php:1235 +#: src/Model/Contact.php:1246 msgid "View Contact" msgstr "" -#: src/Content/Item.php:393 src/Model/Contact.php:1204 +#: src/Content/Item.php:435 src/Model/Contact.php:1247 msgid "Send PM" msgstr "" -#: src/Content/Item.php:394 src/Module/Admin/Blocklist/Contact.php:100 -#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 -#: src/Module/Contact.php:401 src/Module/Contact/Profile.php:349 -#: src/Module/Contact/Profile.php:450 +#: src/Content/Item.php:436 src/Module/Contact.php:467 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 msgid "Block" msgstr "" -#: src/Content/Item.php:395 src/Module/Contact.php:402 -#: src/Module/Contact/Profile.php:350 src/Module/Contact/Profile.php:458 +#: src/Content/Item.php:437 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:519 #: src/Module/Notifications/Introductions.php:134 #: src/Module/Notifications/Introductions.php:206 #: src/Module/Notifications/Notification.php:89 msgid "Ignore" msgstr "" -#: src/Content/Item.php:399 src/Object/Post.php:454 +#: src/Content/Item.php:438 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "" + +#: src/Content/Item.php:439 src/Object/Post.php:289 +#, php-format +msgid "Ignore %s server" +msgstr "" + +#: src/Content/Item.php:443 src/Object/Post.php:508 msgid "Languages" msgstr "" -#: src/Content/Nav.php:90 +#: src/Content/Item.php:449 src/Content/Widget.php:80 +#: src/Model/Contact.php:1236 src/Model/Contact.php:1248 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "" + +#: src/Content/Item.php:883 +msgid "Unable to fetch user." +msgstr "" + +#: src/Content/Nav.php:121 msgid "Nothing new here" msgstr "" -#: src/Content/Nav.php:94 src/Module/Special/HTTPException.php:50 +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 msgid "Go back" msgstr "" -#: src/Content/Nav.php:95 +#: src/Content/Nav.php:126 msgid "Clear notifications" msgstr "" -#: src/Content/Nav.php:96 src/Content/Text/HTML.php:890 -msgid "@name, !forum, #tags, content" +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" msgstr "" -#: src/Content/Nav.php:185 src/Module/Security/Login.php:158 +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 msgid "Logout" msgstr "" -#: src/Content/Nav.php:185 +#: src/Content/Nav.php:222 msgid "End this session" msgstr "" -#: src/Content/Nav.php:187 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:159 +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 msgid "Login" msgstr "" -#: src/Content/Nav.php:187 +#: src/Content/Nav.php:224 msgid "Sign in" msgstr "" -#: src/Content/Nav.php:192 src/Module/BaseProfile.php:56 -#: src/Module/Contact.php:436 src/Module/Contact/Profile.php:381 -#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:237 -msgid "Status" +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:511 +msgid "Conversations" msgstr "" -#: src/Content/Nav.php:192 src/Content/Nav.php:275 -#: view/theme/frio/theme.php:237 -msgid "Your posts and conversations" +#: src/Content/Nav.php:229 +msgid "Conversations you started" msgstr "" -#: src/Content/Nav.php:193 src/Module/BaseProfile.php:48 -#: src/Module/BaseSettings.php:55 src/Module/Contact.php:460 -#: src/Module/Contact/Profile.php:383 src/Module/Profile/Profile.php:240 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 msgid "Profile" msgstr "" -#: src/Content/Nav.php:193 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 msgid "Your profile page" msgstr "" -#: src/Content/Nav.php:194 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 msgid "Your photos" msgstr "" -#: src/Content/Nav.php:195 src/Module/BaseProfile.php:72 -#: src/Module/BaseProfile.php:75 src/Module/Contact.php:452 -#: view/theme/frio/theme.php:240 +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 +#: view/theme/frio/theme.php:235 msgid "Media" msgstr "" -#: src/Content/Nav.php:195 view/theme/frio/theme.php:240 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 msgid "Your postings with media" msgstr "" -#: src/Content/Nav.php:196 view/theme/frio/theme.php:241 -msgid "Your events" +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:310 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" msgstr "" -#: src/Content/Nav.php:197 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "" + +#: src/Content/Nav.php:234 msgid "Personal notes" msgstr "" -#: src/Content/Nav.php:197 +#: src/Content/Nav.php:234 msgid "Your personal notes" msgstr "" -#: src/Content/Nav.php:214 src/Content/Nav.php:275 +#: src/Content/Nav.php:251 src/Content/Nav.php:308 msgid "Home" msgstr "" -#: src/Content/Nav.php:218 src/Module/Register.php:168 +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 #: src/Module/Security/Login.php:124 msgid "Register" msgstr "" -#: src/Content/Nav.php:218 +#: src/Content/Nav.php:255 msgid "Create an account" msgstr "" -#: src/Content/Nav.php:224 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 -#: src/Module/Settings/TwoFactor/Index.php:118 -#: src/Module/Settings/TwoFactor/Recovery.php:106 -#: src/Module/Settings/TwoFactor/Verify.php:145 view/theme/vier/theme.php:243 +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 +#: src/Module/Settings/TwoFactor/Index.php:139 +#: src/Module/Settings/TwoFactor/Recovery.php:110 +#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 msgid "Help" msgstr "" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:261 msgid "Help and documentation" msgstr "" -#: src/Content/Nav.php:228 +#: src/Content/Nav.php:265 msgid "Apps" msgstr "" -#: src/Content/Nav.php:228 +#: src/Content/Nav.php:265 msgid "Addon applications, utilities, games" msgstr "" -#: src/Content/Nav.php:232 src/Content/Text/HTML.php:888 -#: src/Module/Admin/Logs/View.php:87 src/Module/Search/Index.php:111 +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 msgid "Search" msgstr "" -#: src/Content/Nav.php:232 +#: src/Content/Nav.php:269 msgid "Search site content" msgstr "" -#: src/Content/Nav.php:235 src/Content/Text/HTML.php:897 +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 msgid "Full Text" msgstr "" -#: src/Content/Nav.php:236 src/Content/Text/HTML.php:898 +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 #: src/Content/Widget/TagCloud.php:68 msgid "Tags" msgstr "" -#: src/Content/Nav.php:237 src/Content/Nav.php:296 -#: src/Content/Text/HTML.php:899 src/Module/BaseProfile.php:125 -#: src/Module/BaseProfile.php:128 src/Module/Contact.php:373 -#: src/Module/Contact.php:467 view/theme/frio/theme.php:248 +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 +#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 msgid "Contacts" msgstr "" -#: src/Content/Nav.php:256 +#: src/Content/Nav.php:289 msgid "Community" msgstr "" -#: src/Content/Nav.php:256 +#: src/Content/Nav.php:289 msgid "Conversations on this and other servers" msgstr "" -#: src/Content/Nav.php:260 src/Module/BaseProfile.php:87 -#: src/Module/BaseProfile.php:98 view/theme/frio/theme.php:245 -msgid "Events and Calendar" -msgstr "" - -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:296 msgid "Directory" msgstr "" -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:296 msgid "People directory" msgstr "" -#: src/Content/Nav.php:265 src/Module/BaseAdmin.php:85 +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 msgid "Information" msgstr "" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:298 msgid "Information about this friendica instance" msgstr "" -#: src/Content/Nav.php:268 src/Module/Admin/Tos.php:76 -#: src/Module/BaseAdmin.php:96 src/Module/Register.php:176 -#: src/Module/Tos.php:87 +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 msgid "Terms of Service" msgstr "" -#: src/Content/Nav.php:268 +#: src/Content/Nav.php:301 msgid "Terms of Service of this Friendica instance" msgstr "" -#: src/Content/Nav.php:273 view/theme/frio/theme.php:244 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Network" msgstr "" -#: src/Content/Nav.php:273 view/theme/frio/theme.php:244 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Conversations from your friends" msgstr "" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "" + +#: src/Content/Nav.php:312 msgid "Introductions" msgstr "" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:312 msgid "Friend Requests" msgstr "" -#: src/Content/Nav.php:280 src/Module/BaseNotifications.php:149 +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 #: src/Module/Notifications/Introductions.php:75 msgid "Notifications" msgstr "" -#: src/Content/Nav.php:281 +#: src/Content/Nav.php:314 msgid "See all notifications" msgstr "" -#: src/Content/Nav.php:282 +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:247 +msgid "Mark as seen" +msgstr "" + +#: src/Content/Nav.php:315 msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:285 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Private mail" msgstr "" -#: src/Content/Nav.php:286 +#: src/Content/Nav.php:319 msgid "Inbox" msgstr "" -#: src/Content/Nav.php:287 +#: src/Content/Nav.php:320 msgid "Outbox" msgstr "" -#: src/Content/Nav.php:291 +#: src/Content/Nav.php:324 msgid "Accounts" msgstr "" -#: src/Content/Nav.php:291 +#: src/Content/Nav.php:324 msgid "Manage other pages" msgstr "" -#: src/Content/Nav.php:294 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:122 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:247 +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 msgid "Settings" msgstr "" -#: src/Content/Nav.php:294 view/theme/frio/theme.php:247 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 msgid "Account settings" msgstr "" -#: src/Content/Nav.php:296 view/theme/frio/theme.php:248 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 msgid "Manage/edit friends and contacts" msgstr "" -#: src/Content/Nav.php:301 src/Module/BaseAdmin.php:126 +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 msgid "Admin" msgstr "" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:334 msgid "Site setup and configuration" msgstr "" -#: src/Content/Nav.php:304 +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "" + +#: src/Content/Nav.php:338 msgid "Navigation" msgstr "" -#: src/Content/Nav.php:304 +#: src/Content/Nav.php:338 msgid "Site map" msgstr "" -#: src/Content/OEmbed.php:317 +#: src/Content/OEmbed.php:316 msgid "Embedding disabled" msgstr "" -#: src/Content/OEmbed.php:441 +#: src/Content/OEmbed.php:440 msgid "Embedded content" msgstr "" @@ -2618,52 +2178,52 @@ msgstr "" msgid "last" msgstr "" -#: src/Content/Text/BBCode.php:1002 src/Content/Text/BBCode.php:1903 -#: src/Content/Text/BBCode.php:1904 +#: src/Content/Text/BBCode.php:751 src/Content/Text/BBCode.php:1692 +#: src/Content/Text/BBCode.php:1693 msgid "Image/photo" msgstr "" -#: src/Content/Text/BBCode.php:1258 +#: src/Content/Text/BBCode.php:969 #, php-format msgid "" "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:1283 src/Model/Item.php:3460 -#: src/Model/Item.php:3466 src/Model/Item.php:3467 +#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3855 +#: src/Model/Item.php:3861 src/Model/Item.php:3862 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1821 src/Content/Text/HTML.php:940 +#: src/Content/Text/BBCode.php:1599 src/Content/Text/HTML.php:904 msgid "Click to open/close" msgstr "" -#: src/Content/Text/BBCode.php:1852 +#: src/Content/Text/BBCode.php:1632 msgid "$1 wrote:" msgstr "" -#: src/Content/Text/BBCode.php:1908 src/Content/Text/BBCode.php:1909 +#: src/Content/Text/BBCode.php:1697 src/Content/Text/BBCode.php:1698 msgid "Encrypted content" msgstr "" -#: src/Content/Text/BBCode.php:2129 +#: src/Content/Text/BBCode.php:1953 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:2144 +#: src/Content/Text/BBCode.php:1972 msgid "Invalid link protocol" msgstr "" -#: src/Content/Text/HTML.php:805 +#: src/Content/Text/HTML.php:782 msgid "Loading more entries..." msgstr "" -#: src/Content/Text/HTML.php:806 +#: src/Content/Text/HTML.php:783 msgid "The end" msgstr "" -#: src/Content/Text/HTML.php:882 src/Content/Widget/VCard.php:109 -#: src/Model/Profile.php:459 +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:127 +#: src/Model/Profile.php:478 src/Module/Contact/Profile.php:471 msgid "Follow" msgstr "" @@ -2690,113 +2250,131 @@ msgid_plural "%d invitations available" msgstr[0] "" msgstr[1] "" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 msgid "Find People" msgstr "" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 msgid "Enter name or interest" msgstr "" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: src/Content/Widget.php:82 src/Module/Contact.php:394 -#: src/Module/Directory.php:96 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:82 src/Module/Contact.php:460 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 msgid "Find" msgstr "" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:202 +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 msgid "Similar Interests" msgstr "" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:203 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 msgid "Random Profile" msgstr "" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 msgid "Invite Friends" msgstr "" #: src/Content/Widget.php:87 src/Module/Directory.php:88 -#: view/theme/vier/theme.php:205 +#: view/theme/vier/theme.php:202 msgid "Global Directory" msgstr "" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:207 +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 msgid "Local Directory" msgstr "" -#: src/Content/Widget.php:211 src/Model/Group.php:587 -#: src/Module/Contact.php:357 src/Module/Welcome.php:76 -msgid "Groups" +#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Module/Contact.php:400 src/Module/Welcome.php:76 +msgid "Circles" msgstr "" -#: src/Content/Widget.php:213 +#: src/Content/Widget.php:217 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:242 +#: src/Content/Widget.php:242 src/Module/Contact.php:423 +msgid "No relationship" +msgstr "" + +#: src/Content/Widget.php:247 msgid "Relationships" msgstr "" -#: src/Content/Widget.php:244 src/Module/Contact.php:309 -#: src/Module/Group.php:291 +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:344 msgid "All Contacts" msgstr "" -#: src/Content/Widget.php:283 +#: src/Content/Widget.php:288 msgid "Protocols" msgstr "" -#: src/Content/Widget.php:285 +#: src/Content/Widget.php:290 msgid "All Protocols" msgstr "" -#: src/Content/Widget.php:313 +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "" -#: src/Content/Widget.php:315 src/Content/Widget.php:346 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "" -#: src/Content/Widget.php:344 +#: src/Content/Widget.php:349 msgid "Categories" msgstr "" -#: src/Content/Widget.php:401 +#: src/Content/Widget.php:406 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "" msgstr[1] "" -#: src/Content/Widget.php:497 +#: src/Content/Widget.php:506 msgid "Archives" msgstr "" -#: src/Content/Widget.php:521 +#: src/Content/Widget.php:514 +msgid "On this date" +msgstr "" + +#: src/Content/Widget.php:534 msgid "Persons" msgstr "" -#: src/Content/Widget.php:522 +#: src/Content/Widget.php:535 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:523 src/Model/Contact.php:1631 +#: src/Content/Widget.php:536 src/Model/Contact.php:1714 msgid "News" msgstr "" -#: src/Content/Widget.php:527 src/Module/Settings/Account.php:456 +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:434 msgid "Account Types" msgstr "" -#: src/Content/Widget.php:528 src/Module/Admin/BaseUsers.php:51 +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "" +#: src/Content/Widget.php:591 src/Module/BaseSettings.php:125 +#: src/Module/Settings/Channels.php:157 src/Module/Settings/Display.php:309 +msgid "Channels" +msgstr "" + #: src/Content/Widget/CalendarExport.php:56 msgid "Export" msgstr "" @@ -2843,54 +2421,79 @@ msgstr[1] "" msgid "More Trending Tags" msgstr "" -#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:378 -#: src/Module/Contact/Profile.php:372 src/Module/Profile/Profile.php:175 +#: src/Content/Widget/VCard.php:106 src/Model/Contact.php:1204 +#: src/Model/Profile.php:462 +msgid "Post to group" +msgstr "" + +#: src/Content/Widget/VCard.php:110 src/Model/Contact.php:1209 +#: src/Model/Profile.php:467 src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "" + +#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:381 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 msgid "XMPP:" msgstr "" -#: src/Content/Widget/VCard.php:103 src/Model/Profile.php:379 -#: src/Module/Contact/Profile.php:374 src/Module/Profile/Profile.php:179 +#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:382 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:471 +#: src/Content/Widget/VCard.php:122 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:376 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "" + +#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:491 #: src/Module/Notifications/Introductions.php:201 msgid "Network:" msgstr "" -#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:461 +#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1237 +#: src/Model/Contact.php:1249 src/Model/Profile.php:480 +#: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "" -#: src/Core/ACL.php:165 src/Module/Profile/Profile.php:241 +#: src/Content/Widget/VCard.php:135 src/Model/Contact.php:1206 +#: src/Model/Profile.php:464 +msgid "View group" +msgstr "" + +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:201 src/Module/PermissionTooltip.php:128 -#: src/Module/PermissionTooltip.php:150 +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:147 +#: src/Module/PermissionTooltip.php:169 msgid "Mutuals" msgstr "" -#: src/Core/ACL.php:293 +#: src/Core/ACL.php:294 msgid "Post to Email" msgstr "" -#: src/Core/ACL.php:320 src/Module/PermissionTooltip.php:85 -#: src/Module/PermissionTooltip.php:197 +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:211 msgid "Public" msgstr "" -#: src/Core/ACL.php:321 +#: src/Core/ACL.php:322 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "" -#: src/Core/ACL.php:322 src/Module/PermissionTooltip.php:93 +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 msgid "Limited/Private" msgstr "" -#: src/Core/ACL.php:323 +#: src/Core/ACL.php:324 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 " @@ -2898,40 +2501,54 @@ msgid "" msgstr "" #: src/Core/ACL.php:324 -msgid "Show to:" +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "" #: src/Core/ACL.php:325 +msgid "Show to:" +msgstr "" + +#: src/Core/ACL.php:326 msgid "Except to:" msgstr "" -#: src/Core/ACL.php:328 +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "" + +#: src/Core/ACL.php:329 msgid "Connectors" msgstr "" -#: src/Core/Installer.php:183 +#: src/Core/Installer.php:180 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 "" -#: src/Core/Installer.php:200 +#: src/Core/Installer.php:197 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "" -#: src/Core/Installer.php:201 src/Module/Install.php:213 -#: src/Module/Install.php:372 +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "" -#: src/Core/Installer.php:262 +#: src/Core/Installer.php:259 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: src/Core/Installer.php:263 +#: src/Core/Installer.php:260 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 "" -#: src/Core/Installer.php:268 +#: src/Core/Installer.php:265 msgid "PHP executable path" msgstr "" -#: src/Core/Installer.php:268 +#: src/Core/Installer.php:265 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "" -#: src/Core/Installer.php:273 +#: src/Core/Installer.php:270 msgid "Command line PHP" msgstr "" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:279 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "" -#: src/Core/Installer.php:283 +#: src/Core/Installer.php:280 msgid "Found PHP version: " msgstr "" -#: src/Core/Installer.php:285 +#: src/Core/Installer.php:282 msgid "PHP cli binary" msgstr "" -#: src/Core/Installer.php:298 +#: src/Core/Installer.php:295 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "" -#: src/Core/Installer.php:299 +#: src/Core/Installer.php:296 msgid "This is required for message delivery to work." msgstr "" -#: src/Core/Installer.php:304 +#: src/Core/Installer.php:301 msgid "PHP register_argc_argv" msgstr "" -#: src/Core/Installer.php:336 +#: src/Core/Installer.php:333 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "" -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:334 msgid "" "If running under Windows, please see \"http://www.php.net/manual/en/openssl." "installation.php\"." msgstr "" -#: src/Core/Installer.php:340 +#: src/Core/Installer.php:337 msgid "Generate encryption keys" msgstr "" -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:388 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: src/Core/Installer.php:397 +#: src/Core/Installer.php:392 msgid "Apache mod_rewrite module" msgstr "" -#: src/Core/Installer.php:403 +#: src/Core/Installer.php:398 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:408 +#: src/Core/Installer.php:402 msgid "Error: The MySQL driver for PDO is not installed." msgstr "" -#: src/Core/Installer.php:412 +#: src/Core/Installer.php:405 msgid "PDO or MySQLi PHP module" msgstr "" -#: src/Core/Installer.php:420 +#: src/Core/Installer.php:411 +msgid "Error: The IntlChar module is not installed." +msgstr "" + +#: src/Core/Installer.php:414 +msgid "IntlChar PHP module" +msgstr "" + +#: src/Core/Installer.php:422 msgid "Error, XML PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:424 +#: src/Core/Installer.php:426 msgid "XML PHP module" msgstr "" -#: src/Core/Installer.php:427 +#: src/Core/Installer.php:429 msgid "libCurl PHP module" msgstr "" -#: src/Core/Installer.php:428 +#: src/Core/Installer.php:430 msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:434 +#: src/Core/Installer.php:436 msgid "GD graphics PHP module" msgstr "" -#: src/Core/Installer.php:435 +#: src/Core/Installer.php:437 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: src/Core/Installer.php:441 +#: src/Core/Installer.php:443 msgid "OpenSSL PHP module" msgstr "" -#: src/Core/Installer.php:442 +#: src/Core/Installer.php:444 msgid "Error: openssl PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:448 +#: src/Core/Installer.php:450 msgid "mb_string PHP module" msgstr "" -#: src/Core/Installer.php:449 +#: src/Core/Installer.php:451 msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:455 +#: src/Core/Installer.php:457 msgid "iconv PHP module" msgstr "" -#: src/Core/Installer.php:456 +#: src/Core/Installer.php:458 msgid "Error: iconv PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:462 +#: src/Core/Installer.php:464 msgid "POSIX PHP module" msgstr "" -#: src/Core/Installer.php:463 +#: src/Core/Installer.php:465 msgid "Error: POSIX PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:469 +#: src/Core/Installer.php:471 msgid "Program execution functions" msgstr "" -#: src/Core/Installer.php:470 +#: src/Core/Installer.php:472 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Core/Installer.php:476 +#: src/Core/Installer.php:478 msgid "JSON PHP module" msgstr "" -#: src/Core/Installer.php:477 +#: src/Core/Installer.php:479 msgid "Error: JSON PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:483 +#: src/Core/Installer.php:485 msgid "File Information PHP module" msgstr "" -#: src/Core/Installer.php:484 +#: src/Core/Installer.php:486 msgid "Error: File Information PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:490 +#: src/Core/Installer.php:492 msgid "GNU Multiple Precision PHP module" msgstr "" -#: src/Core/Installer.php:491 +#: src/Core/Installer.php:493 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:514 +#: src/Core/Installer.php:516 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." +"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 "" -#: src/Core/Installer.php:515 +#: src/Core/Installer.php:517 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 "" -#: src/Core/Installer.php:516 +#: src/Core/Installer.php:518 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 "" -#: src/Core/Installer.php:517 +#: src/Core/Installer.php:519 msgid "" "You can alternatively skip this procedure and perform a manual installation. " "Please see the file \"doc/INSTALL.md\" for instructions." msgstr "" -#: src/Core/Installer.php:520 +#: src/Core/Installer.php:522 msgid "config/local.config.php is writable" msgstr "" -#: src/Core/Installer.php:540 +#: src/Core/Installer.php:542 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "" -#: src/Core/Installer.php:541 +#: src/Core/Installer.php:543 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 "" -#: src/Core/Installer.php:542 +#: src/Core/Installer.php:544 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has " "write access to this folder." msgstr "" -#: src/Core/Installer.php:543 +#: src/Core/Installer.php:545 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 "" -#: src/Core/Installer.php:546 +#: src/Core/Installer.php:548 msgid "view/smarty3 is writable" msgstr "" -#: src/Core/Installer.php:574 +#: src/Core/Installer.php:576 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "" -#: src/Core/Installer.php:575 +#: src/Core/Installer.php:577 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "" -#: src/Core/Installer.php:577 +#: src/Core/Installer.php:579 msgid "Error message from Curl when fetching" msgstr "" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:585 msgid "Url rewrite is working" msgstr "" -#: src/Core/Installer.php:612 +#: src/Core/Installer.php:614 msgid "" "The detection of TLS to secure the communication between the browser and the " "new Friendica server failed." msgstr "" -#: src/Core/Installer.php:613 +#: src/Core/Installer.php:615 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "" -#: src/Core/Installer.php:614 +#: src/Core/Installer.php:616 msgid "Please ensure that the connection to the server is secure." msgstr "" -#: src/Core/Installer.php:615 +#: src/Core/Installer.php:617 msgid "No TLS detected" msgstr "" -#: src/Core/Installer.php:617 +#: src/Core/Installer.php:619 msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:644 +#: src/Core/Installer.php:646 msgid "ImageMagick PHP extension is not installed" msgstr "" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:648 msgid "ImageMagick PHP extension is installed" msgstr "" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:650 msgid "ImageMagick supports GIF" msgstr "" -#: src/Core/Installer.php:670 +#: src/Core/Installer.php:672 msgid "Database already in use." msgstr "" -#: src/Core/Installer.php:675 +#: src/Core/Installer.php:677 msgid "Could not connect to database." msgstr "" -#: src/Core/L10n.php:403 src/Model/Event.php:428 -#: src/Module/Settings/Display.php:183 +#: src/Core/L10n.php:446 +#, php-format +msgid "%s (%s)" +msgstr "" + +#: src/Core/L10n.php:494 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:278 msgid "Monday" msgstr "" -#: src/Core/L10n.php:403 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:184 +#: src/Core/L10n.php:494 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:279 msgid "Tuesday" msgstr "" -#: src/Core/L10n.php:403 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:185 +#: src/Core/L10n.php:494 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:280 msgid "Wednesday" msgstr "" -#: src/Core/L10n.php:403 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:186 +#: src/Core/L10n.php:494 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:281 msgid "Thursday" msgstr "" -#: src/Core/L10n.php:403 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:187 +#: src/Core/L10n.php:494 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:282 msgid "Friday" msgstr "" -#: src/Core/L10n.php:403 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:188 +#: src/Core/L10n.php:494 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:283 msgid "Saturday" msgstr "" -#: src/Core/L10n.php:403 src/Model/Event.php:427 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:494 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:277 msgid "Sunday" msgstr "" -#: src/Core/L10n.php:407 src/Model/Event.php:448 +#: src/Core/L10n.php:498 src/Model/Event.php:450 msgid "January" msgstr "" -#: src/Core/L10n.php:407 src/Model/Event.php:449 +#: src/Core/L10n.php:498 src/Model/Event.php:451 msgid "February" msgstr "" -#: src/Core/L10n.php:407 src/Model/Event.php:450 +#: src/Core/L10n.php:498 src/Model/Event.php:452 msgid "March" msgstr "" -#: src/Core/L10n.php:407 src/Model/Event.php:451 +#: src/Core/L10n.php:498 src/Model/Event.php:453 msgid "April" msgstr "" -#: src/Core/L10n.php:407 src/Core/L10n.php:426 src/Model/Event.php:439 +#: src/Core/L10n.php:498 src/Core/L10n.php:517 src/Model/Event.php:441 msgid "May" msgstr "" -#: src/Core/L10n.php:407 src/Model/Event.php:452 +#: src/Core/L10n.php:498 src/Model/Event.php:454 msgid "June" msgstr "" -#: src/Core/L10n.php:407 src/Model/Event.php:453 +#: src/Core/L10n.php:498 src/Model/Event.php:455 msgid "July" msgstr "" -#: src/Core/L10n.php:407 src/Model/Event.php:454 +#: src/Core/L10n.php:498 src/Model/Event.php:456 msgid "August" msgstr "" -#: src/Core/L10n.php:407 src/Model/Event.php:455 +#: src/Core/L10n.php:498 src/Model/Event.php:457 msgid "September" msgstr "" -#: src/Core/L10n.php:407 src/Model/Event.php:456 +#: src/Core/L10n.php:498 src/Model/Event.php:458 msgid "October" msgstr "" -#: src/Core/L10n.php:407 src/Model/Event.php:457 +#: src/Core/L10n.php:498 src/Model/Event.php:459 msgid "November" msgstr "" -#: src/Core/L10n.php:407 src/Model/Event.php:458 +#: src/Core/L10n.php:498 src/Model/Event.php:460 msgid "December" msgstr "" -#: src/Core/L10n.php:422 src/Model/Event.php:420 +#: src/Core/L10n.php:513 src/Model/Event.php:422 msgid "Mon" msgstr "" -#: src/Core/L10n.php:422 src/Model/Event.php:421 +#: src/Core/L10n.php:513 src/Model/Event.php:423 msgid "Tue" msgstr "" -#: src/Core/L10n.php:422 src/Model/Event.php:422 +#: src/Core/L10n.php:513 src/Model/Event.php:424 msgid "Wed" msgstr "" -#: src/Core/L10n.php:422 src/Model/Event.php:423 +#: src/Core/L10n.php:513 src/Model/Event.php:425 msgid "Thu" msgstr "" -#: src/Core/L10n.php:422 src/Model/Event.php:424 +#: src/Core/L10n.php:513 src/Model/Event.php:426 msgid "Fri" msgstr "" -#: src/Core/L10n.php:422 src/Model/Event.php:425 +#: src/Core/L10n.php:513 src/Model/Event.php:427 msgid "Sat" msgstr "" -#: src/Core/L10n.php:422 src/Model/Event.php:419 +#: src/Core/L10n.php:513 src/Model/Event.php:421 msgid "Sun" msgstr "" -#: src/Core/L10n.php:426 src/Model/Event.php:435 +#: src/Core/L10n.php:517 src/Model/Event.php:437 msgid "Jan" msgstr "" -#: src/Core/L10n.php:426 src/Model/Event.php:436 +#: src/Core/L10n.php:517 src/Model/Event.php:438 msgid "Feb" msgstr "" -#: src/Core/L10n.php:426 src/Model/Event.php:437 +#: src/Core/L10n.php:517 src/Model/Event.php:439 msgid "Mar" msgstr "" -#: src/Core/L10n.php:426 src/Model/Event.php:438 +#: src/Core/L10n.php:517 src/Model/Event.php:440 msgid "Apr" msgstr "" -#: src/Core/L10n.php:426 src/Model/Event.php:440 +#: src/Core/L10n.php:517 src/Model/Event.php:442 msgid "Jun" msgstr "" -#: src/Core/L10n.php:426 src/Model/Event.php:441 +#: src/Core/L10n.php:517 src/Model/Event.php:443 msgid "Jul" msgstr "" -#: src/Core/L10n.php:426 src/Model/Event.php:442 +#: src/Core/L10n.php:517 src/Model/Event.php:444 msgid "Aug" msgstr "" -#: src/Core/L10n.php:426 +#: src/Core/L10n.php:517 msgid "Sep" msgstr "" -#: src/Core/L10n.php:426 src/Model/Event.php:444 +#: src/Core/L10n.php:517 src/Model/Event.php:446 msgid "Oct" msgstr "" -#: src/Core/L10n.php:426 src/Model/Event.php:445 +#: src/Core/L10n.php:517 src/Model/Event.php:447 msgid "Nov" msgstr "" -#: src/Core/L10n.php:426 src/Model/Event.php:446 +#: src/Core/L10n.php:517 src/Model/Event.php:448 msgid "Dec" msgstr "" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + #: src/Core/Renderer.php:89 src/Core/Renderer.php:118 src/Core/Renderer.php:147 #: src/Core/Renderer.php:181 src/Render/FriendicaSmartyEngine.php:60 msgid "" @@ -3411,36 +3051,36 @@ msgstr "" msgid "Enter a valid existing folder" msgstr "" -#: src/Core/Update.php:69 +#: src/Core/Update.php:80 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version " "2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:80 +#: src/Core/Update.php:91 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least " "to version 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:155 +#: src/Core/Update.php:183 #, php-format msgid "%s: executing pre update %d" msgstr "" -#: src/Core/Update.php:193 +#: src/Core/Update.php:225 #, php-format msgid "%s: executing post update %d" msgstr "" -#: src/Core/Update.php:263 +#: src/Core/Update.php:299 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: src/Core/Update.php:317 +#: src/Core/Update.php:339 #, php-format msgid "" "\n" @@ -3452,52 +3092,20 @@ msgid "" "might be invalid." msgstr "" -#: src/Core/Update.php:323 +#: src/Core/Update.php:345 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "" -#: src/Core/Update.php:327 src/Core/Update.php:369 +#: src/Core/Update.php:349 src/Core/Update.php:377 msgid "[Friendica Notify] Database update" msgstr "" -#: src/Core/Update.php:363 +#: src/Core/Update.php:371 #, php-format msgid "" "\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "" - -#: src/Core/UserImport.php:126 -msgid "Error decoding account file" -msgstr "" - -#: src/Core/UserImport.php:132 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: src/Core/UserImport.php:140 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "" - -#: src/Core/UserImport.php:176 -msgid "User creation error" -msgstr "" - -#: src/Core/UserImport.php:221 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" - -#: src/Core/UserImport.php:274 -msgid "User profile creation error" -msgstr "" - -#: src/Core/UserImport.php:327 -msgid "Done. You can now login with your username and password" +"\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" #: src/Database/DBStructure.php:57 @@ -3505,28 +3113,28 @@ msgstr "" msgid "The database version had been set to %s." msgstr "" -#: src/Database/DBStructure.php:70 +#: src/Database/DBStructure.php:82 #, 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:83 +#: src/Database/DBStructure.php:95 msgid "No unused tables found." msgstr "" -#: src/Database/DBStructure.php:88 +#: src/Database/DBStructure.php:100 msgid "" "These tables are not used for friendica and will be deleted when you execute " "\"dbstructure drop -e\":" msgstr "" -#: src/Database/DBStructure.php:126 +#: src/Database/DBStructure.php:137 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Database/DBStructure.php:150 +#: src/Database/DBStructure.php:161 #, php-format msgid "" "\n" @@ -3534,42 +3142,42 @@ msgid "" "%s\n" msgstr "" -#: src/Database/DBStructure.php:153 +#: src/Database/DBStructure.php:164 msgid "Errors encountered performing database changes: " msgstr "" -#: src/Database/DBStructure.php:219 +#: src/Database/DBStructure.php:232 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:223 +#: src/Database/DBStructure.php:236 #, php-format msgid "%s: Database update" msgstr "" -#: src/Database/DBStructure.php:479 +#: src/Database/DBStructure.php:493 #, php-format msgid "%s: updating %s table." msgstr "" -#: src/Factory/Api/Mastodon/Error.php:55 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Record not found" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:65 +#: src/Factory/Api/Mastodon/Error.php:49 msgid "Unprocessable Entity" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:75 +#: src/Factory/Api/Mastodon/Error.php:56 msgid "Unauthorized" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:85 +#: src/Factory/Api/Mastodon/Error.php:62 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:95 +#: src/Factory/Api/Mastodon/Error.php:69 msgid "Internal Server Error" msgstr "" @@ -3578,547 +3186,607 @@ msgstr "" msgid "Legacy module file not found: %s" msgstr "" -#: src/Model/Contact.php:1195 src/Model/Contact.php:1206 -msgid "UnFollow" +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is " +"not what you intended, please create another circle with a different name." msgstr "" -#: src/Model/Contact.php:1212 src/Module/Admin/Users/Pending.php:107 +#: src/Model/Circle.php:544 +msgid "Everybody" +msgstr "" + +#: src/Model/Circle.php:563 +msgid "edit" +msgstr "" + +#: src/Model/Circle.php:600 +msgid "add" +msgstr "" + +#: src/Model/Circle.php:605 +msgid "Edit circle" +msgstr "" + +#: src/Model/Circle.php:606 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "" + +#: src/Model/Circle.php:608 +msgid "Create a new circle" +msgstr "" + +#: src/Model/Circle.php:609 src/Module/Circle.php:178 src/Module/Circle.php:201 +#: src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "" + +#: src/Model/Circle.php:610 +msgid "Edit circles" +msgstr "" + +#: src/Model/Contact.php:1256 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "" -#: src/Model/Contact.php:1627 +#: src/Model/Contact.php:1710 msgid "Organisation" msgstr "" -#: src/Model/Contact.php:1635 -msgid "Forum" +#: src/Model/Contact.php:1718 +msgid "Group" msgstr "" -#: src/Model/Contact.php:2821 +#: src/Model/Contact.php:3021 msgid "Disallowed profile URL." msgstr "" -#: src/Model/Contact.php:2826 src/Module/Friendica.php:82 +#: src/Model/Contact.php:3026 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "" -#: src/Model/Contact.php:2831 +#: src/Model/Contact.php:3031 msgid "Connect URL missing." msgstr "" -#: src/Model/Contact.php:2840 +#: src/Model/Contact.php:3040 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:2882 +#: src/Model/Contact.php:3058 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "" + +#: src/Model/Contact.php:3075 msgid "The profile address specified does not provide adequate information." msgstr "" -#: src/Model/Contact.php:2884 +#: src/Model/Contact.php:3077 msgid "No compatible communication protocols or feeds were discovered." msgstr "" -#: src/Model/Contact.php:2887 +#: src/Model/Contact.php:3080 msgid "An author or name was not found." msgstr "" -#: src/Model/Contact.php:2890 +#: src/Model/Contact.php:3083 msgid "No browser URL could be matched to this address." msgstr "" -#: src/Model/Contact.php:2893 +#: src/Model/Contact.php:3086 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "" -#: src/Model/Contact.php:2894 +#: src/Model/Contact.php:3087 msgid "Use mailto: in front of address to force email check." msgstr "" -#: src/Model/Contact.php:2900 +#: src/Model/Contact.php:3093 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "" -#: src/Model/Contact.php:2905 +#: src/Model/Contact.php:3098 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "" -#: src/Model/Contact.php:2964 +#: src/Model/Contact.php:3164 msgid "Unable to retrieve contact information." msgstr "" -#: src/Model/Event.php:52 +#: src/Model/Event.php:54 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:73 src/Model/Event.php:90 src/Model/Event.php:467 -#: src/Model/Event.php:901 +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 msgid "Starts:" msgstr "" -#: src/Model/Event.php:76 src/Model/Event.php:96 src/Model/Event.php:468 -#: src/Model/Event.php:905 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 msgid "Finishes:" msgstr "" -#: src/Model/Event.php:417 +#: src/Model/Event.php:419 msgid "all-day" msgstr "" -#: src/Model/Event.php:443 +#: src/Model/Event.php:445 msgid "Sept" msgstr "" -#: src/Model/Event.php:465 +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:288 src/Util/Temporal.php:353 +msgid "month" +msgstr "" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:289 src/Util/Temporal.php:354 +msgid "week" +msgstr "" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:290 src/Util/Temporal.php:355 +msgid "day" +msgstr "" + +#: src/Model/Event.php:467 msgid "No events to display" msgstr "" -#: src/Model/Event.php:581 +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "" + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "" + +#: src/Model/Event.php:637 msgid "l, F j" msgstr "" -#: src/Model/Event.php:612 +#: src/Model/Event.php:664 msgid "Edit event" msgstr "" -#: src/Model/Event.php:613 +#: src/Model/Event.php:665 msgid "Duplicate event" msgstr "" -#: src/Model/Event.php:614 +#: src/Model/Event.php:666 msgid "Delete event" msgstr "" -#: src/Model/Event.php:857 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 msgid "l F d, Y \\@ g:i A" msgstr "" -#: src/Model/Event.php:858 +#: src/Model/Event.php:897 msgid "D g:i A" msgstr "" -#: src/Model/Event.php:859 +#: src/Model/Event.php:898 msgid "g:i A" msgstr "" -#: src/Model/Event.php:920 src/Model/Event.php:922 +#: src/Model/Event.php:964 src/Model/Event.php:966 msgid "Show map" msgstr "" -#: src/Model/Event.php:921 +#: src/Model/Event.php:965 msgid "Hide map" msgstr "" -#: src/Model/Event.php:1014 +#: src/Model/Event.php:1058 #, php-format msgid "%s's birthday" msgstr "" -#: src/Model/Event.php:1015 +#: src/Model/Event.php:1059 #, php-format msgid "Happy Birthday %s" msgstr "" -#: src/Model/Group.php:105 -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." +#: src/Model/Item.php:2176 +#, php-format +msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Group.php:503 -msgid "Default privacy group for new contacts" +#: src/Model/Item.php:2178 +#, php-format +msgid "%s (%s): %s" msgstr "" -#: src/Model/Group.php:535 -msgid "Everybody" -msgstr "" - -#: src/Model/Group.php:554 -msgid "edit" -msgstr "" - -#: src/Model/Group.php:586 -msgid "add" -msgstr "" - -#: src/Model/Group.php:591 -msgid "Edit group" -msgstr "" - -#: src/Model/Group.php:592 src/Module/Group.php:192 -msgid "Contacts not in any group" -msgstr "" - -#: src/Model/Group.php:594 -msgid "Create a new group" -msgstr "" - -#: src/Model/Group.php:595 src/Module/Group.php:177 src/Module/Group.php:200 -#: src/Module/Group.php:275 -msgid "Group Name: " -msgstr "" - -#: src/Model/Group.php:596 -msgid "Edit groups" -msgstr "" - -#: src/Model/Item.php:1971 +#: src/Model/Item.php:2181 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "" -#: src/Model/Item.php:2863 +#: src/Model/Item.php:3126 msgid "activity" msgstr "" -#: src/Model/Item.php:2865 +#: src/Model/Item.php:3128 msgid "comment" msgstr "" -#: src/Model/Item.php:2868 +#: src/Model/Item.php:3131 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "" -#: src/Model/Item.php:3009 +#: src/Model/Item.php:3301 +#, php-format +msgid "%s is blocked" +msgstr "" + +#: src/Model/Item.php:3303 +#, php-format +msgid "%s is ignored" +msgstr "" + +#: src/Model/Item.php:3305 +#, php-format +msgid "Content from %s is collapsed" +msgstr "" + +#: src/Model/Item.php:3309 #, php-format msgid "Content warning: %s" msgstr "" -#: src/Model/Item.php:3372 +#: src/Model/Item.php:3762 msgid "bytes" msgstr "" -#: src/Model/Item.php:3403 +#: src/Model/Item.php:3793 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3405 +#: src/Model/Item.php:3795 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3410 +#: src/Model/Item.php:3800 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3412 +#: src/Model/Item.php:3802 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3414 +#: src/Model/Item.php:3804 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3448 src/Model/Item.php:3449 +#: src/Model/Item.php:3838 src/Model/Item.php:3839 msgid "View on separate page" msgstr "" -#: src/Model/Mail.php:137 src/Model/Mail.php:265 +#: src/Model/Mail.php:137 src/Model/Mail.php:266 msgid "[no subject]" msgstr "" -#: src/Model/Profile.php:361 src/Module/Profile/Profile.php:255 -#: src/Module/Profile/Profile.php:257 +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "" + +#: src/Model/Profile.php:364 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 msgid "Edit profile" msgstr "" -#: src/Model/Profile.php:363 +#: src/Model/Profile.php:366 msgid "Change profile photo" msgstr "" -#: src/Model/Profile.php:376 src/Module/Directory.php:152 -#: src/Module/Profile/Profile.php:183 +#: src/Model/Profile.php:379 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 msgid "Homepage:" msgstr "" -#: src/Model/Profile.php:377 src/Module/Contact/Profile.php:376 +#: src/Model/Profile.php:380 src/Module/Contact/Profile.php:412 #: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "" -#: src/Model/Profile.php:463 +#: src/Model/Profile.php:482 msgid "Atom feed" msgstr "" -#: src/Model/Profile.php:506 +#: src/Model/Profile.php:489 +msgid "This website has been verified to belong to the same person." +msgstr "" + +#: src/Model/Profile.php:530 msgid "F d" msgstr "" -#: src/Model/Profile.php:570 src/Model/Profile.php:659 +#: src/Model/Profile.php:594 src/Model/Profile.php:683 msgid "[today]" msgstr "" -#: src/Model/Profile.php:579 +#: src/Model/Profile.php:603 msgid "Birthday Reminders" msgstr "" -#: src/Model/Profile.php:580 +#: src/Model/Profile.php:604 msgid "Birthdays this week:" msgstr "" -#: src/Model/Profile.php:608 +#: src/Model/Profile.php:632 msgid "g A l F d" msgstr "" -#: src/Model/Profile.php:646 +#: src/Model/Profile.php:670 msgid "[No description]" msgstr "" -#: src/Model/Profile.php:672 +#: src/Model/Profile.php:696 msgid "Event Reminders" msgstr "" -#: src/Model/Profile.php:673 +#: src/Model/Profile.php:697 msgid "Upcoming events the next 7 days:" msgstr "" -#: src/Model/Profile.php:868 +#: src/Model/Profile.php:896 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "" -#: src/Model/Profile.php:1008 +#: src/Model/Profile.php:1036 msgid "Hometown:" msgstr "" -#: src/Model/Profile.php:1009 +#: src/Model/Profile.php:1037 msgid "Marital Status:" msgstr "" -#: src/Model/Profile.php:1010 +#: src/Model/Profile.php:1038 msgid "With:" msgstr "" -#: src/Model/Profile.php:1011 +#: src/Model/Profile.php:1039 msgid "Since:" msgstr "" -#: src/Model/Profile.php:1012 +#: src/Model/Profile.php:1040 msgid "Sexual Preference:" msgstr "" -#: src/Model/Profile.php:1013 +#: src/Model/Profile.php:1041 msgid "Political Views:" msgstr "" -#: src/Model/Profile.php:1014 +#: src/Model/Profile.php:1042 msgid "Religious Views:" msgstr "" -#: src/Model/Profile.php:1015 +#: src/Model/Profile.php:1043 msgid "Likes:" msgstr "" -#: src/Model/Profile.php:1016 +#: src/Model/Profile.php:1044 msgid "Dislikes:" msgstr "" -#: src/Model/Profile.php:1017 +#: src/Model/Profile.php:1045 msgid "Title/Description:" msgstr "" -#: src/Model/Profile.php:1018 src/Module/Admin/Summary.php:236 +#: src/Model/Profile.php:1046 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 msgid "Summary" msgstr "" -#: src/Model/Profile.php:1019 +#: src/Model/Profile.php:1047 msgid "Musical interests" msgstr "" -#: src/Model/Profile.php:1020 +#: src/Model/Profile.php:1048 msgid "Books, literature" msgstr "" -#: src/Model/Profile.php:1021 +#: src/Model/Profile.php:1049 msgid "Television" msgstr "" -#: src/Model/Profile.php:1022 +#: src/Model/Profile.php:1050 msgid "Film/dance/culture/entertainment" msgstr "" -#: src/Model/Profile.php:1023 +#: src/Model/Profile.php:1051 msgid "Hobbies/Interests" msgstr "" -#: src/Model/Profile.php:1024 +#: src/Model/Profile.php:1052 msgid "Love/romance" msgstr "" -#: src/Model/Profile.php:1025 +#: src/Model/Profile.php:1053 msgid "Work/employment" msgstr "" -#: src/Model/Profile.php:1026 +#: src/Model/Profile.php:1054 msgid "School/education" msgstr "" -#: src/Model/Profile.php:1027 +#: src/Model/Profile.php:1055 msgid "Contact information and Social Networks" msgstr "" -#: src/Model/User.php:212 src/Model/User.php:1085 +#: src/Model/User.php:225 src/Model/User.php:1259 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "" -#: src/Model/User.php:572 src/Model/User.php:605 +#: src/Model/User.php:693 src/Model/User.php:726 msgid "Login failed" msgstr "" -#: src/Model/User.php:637 +#: src/Model/User.php:758 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:732 +#: src/Model/User.php:879 msgid "Password can't be empty" msgstr "" -#: src/Model/User.php:774 +#: src/Model/User.php:921 msgid "Empty passwords are not allowed." msgstr "" -#: src/Model/User.php:778 +#: src/Model/User.php:925 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "" -#: src/Model/User.php:782 +#: src/Model/User.php:929 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:786 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" +#: src/Model/User.php:933 +msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:965 +#: src/Model/User.php:1142 msgid "Passwords do not match. Password unchanged." msgstr "" -#: src/Model/User.php:972 +#: src/Model/User.php:1149 msgid "An invitation is required." msgstr "" -#: src/Model/User.php:976 +#: src/Model/User.php:1153 msgid "Invitation could not be verified." msgstr "" -#: src/Model/User.php:984 +#: src/Model/User.php:1161 msgid "Invalid OpenID url" msgstr "" -#: src/Model/User.php:997 src/Security/Authentication.php:239 +#: src/Model/User.php:1174 src/Security/Authentication.php:241 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:997 src/Security/Authentication.php:239 +#: src/Model/User.php:1174 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "" -#: src/Model/User.php:1003 +#: src/Model/User.php:1180 msgid "Please enter the required information." msgstr "" -#: src/Model/User.php:1017 +#: src/Model/User.php:1194 #, 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:1024 +#: src/Model/User.php:1201 #, 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:1028 +#: src/Model/User.php:1205 #, 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:1036 +#: src/Model/User.php:1213 msgid "That doesn't appear to be your full (First Last) name." msgstr "" -#: src/Model/User.php:1041 +#: src/Model/User.php:1218 msgid "Your email domain is not among those allowed on this site." msgstr "" -#: src/Model/User.php:1045 +#: src/Model/User.php:1222 msgid "Not a valid email address." msgstr "" -#: src/Model/User.php:1048 +#: src/Model/User.php:1225 msgid "The nickname was blocked from registration by the nodes admin." msgstr "" -#: src/Model/User.php:1052 src/Model/User.php:1060 +#: src/Model/User.php:1229 src/Model/User.php:1235 msgid "Cannot use that email." msgstr "" -#: src/Model/User.php:1067 +#: src/Model/User.php:1241 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "" -#: src/Model/User.php:1075 src/Model/User.php:1132 +#: src/Model/User.php:1249 src/Model/User.php:1306 msgid "Nickname is already registered. Please choose another." msgstr "" -#: src/Model/User.php:1119 src/Model/User.php:1123 +#: src/Model/User.php:1293 src/Model/User.php:1297 msgid "An error occurred during registration. Please try again." msgstr "" -#: src/Model/User.php:1146 +#: src/Model/User.php:1320 msgid "An error occurred creating your default profile. Please try again." msgstr "" -#: src/Model/User.php:1153 +#: src/Model/User.php:1327 msgid "An error occurred creating your self contact. Please try again." msgstr "" -#: src/Model/User.php:1158 +#: src/Model/User.php:1332 msgid "Friends" msgstr "" -#: src/Model/User.php:1162 +#: src/Model/User.php:1336 msgid "" -"An error occurred creating your default contact group. Please try again." +"An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1201 +#: src/Model/User.php:1380 msgid "Profile Photos" msgstr "" -#: src/Model/User.php:1394 +#: src/Model/User.php:1560 #, php-format msgid "" "\n" @@ -4126,7 +3794,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1397 +#: src/Model/User.php:1563 #, php-format msgid "" "\n" @@ -4146,29 +3814,28 @@ msgid "" "\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" +"\t\tWe recommend adding a profile photo, adding some profile \"keywords\" \n" +"\t\t(very useful in making new friends) - and perhaps what country you live " +"in; \n" +"\t\tif you do not wish to be more specific than 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" +"\t\tIf you ever want to delete your account, you can do so at %1$s/settings/" +"removeme\n" "\n" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1430 src/Model/User.php:1537 +#: src/Model/User.php:1595 src/Model/User.php:1701 #, php-format msgid "Registration details for %s" msgstr "" -#: src/Model/User.php:1450 +#: src/Model/User.php:1615 #, php-format msgid "" "\n" @@ -4184,12 +3851,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:1469 +#: src/Model/User.php:1634 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:1493 +#: src/Model/User.php:1658 #, php-format msgid "" "\n" @@ -4198,7 +3865,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1501 +#: src/Model/User.php:1666 #, php-format msgid "" "\n" @@ -4219,12 +3886,11 @@ msgid "" "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" +"\t\t\tWe recommend adding a profile photo, adding some profile " +"\"keywords\" (very useful\n" +"\t\t\tin making new friends) - and perhaps what country you live in; if you " +"do not wish\n" +"\t\t\tto be more specific than that.\n" "\n" "\t\t\tWe fully respect your right to privacy, and none of these items are " "necessary.\n" @@ -4232,11 +3898,16 @@ msgid "" "\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" +"settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." msgstr "" +#: src/Model/User.php:1728 +msgid "" +"User with delegates can't be removed, please remove delegate users first" +msgstr "" + #: src/Module/Admin/Addons/Details.php:65 msgid "Addon not found." msgstr "" @@ -4257,29 +3928,23 @@ msgid "Disable" msgstr "" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:332 msgid "Enable" msgstr "" #: src/Module/Admin/Addons/Details.php:111 src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:94 -#: src/Module/Admin/Blocklist/Server/Add.php:121 -#: src/Module/Admin/Blocklist/Server/Import.php:117 -#: src/Module/Admin/Blocklist/Server/Index.php:91 -#: src/Module/Admin/Federation.php:202 src/Module/Admin/Item/Delete.php:64 -#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:84 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:429 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:235 -#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:111 -#: src/Module/Admin/Tos.php:75 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 +#: src/Module/Admin/Federation.php:214 src/Module/Admin/Logs/Settings.php:85 +#: src/Module/Admin/Logs/View.php:83 src/Module/Admin/Queue.php:72 +#: src/Module/Admin/Site.php:398 src/Module/Admin/Storage.php:138 +#: src/Module/Admin/Summary.php:196 src/Module/Admin/Themes/Details.php:90 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 msgid "Administration" msgstr "" #: src/Module/Admin/Addons/Details.php:112 src/Module/Admin/Addons/Index.php:68 -#: src/Module/BaseAdmin.php:93 src/Module/BaseSettings.php:85 +#: src/Module/BaseAdmin.php:92 src/Module/BaseSettings.php:139 msgid "Addons" msgstr "" @@ -4288,13 +3953,13 @@ msgstr "" msgid "Toggle" msgstr "" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 msgid "Author: " msgstr "" -#: src/Module/Admin/Addons/Details.php:122 -#: src/Module/Admin/Themes/Details.php:102 +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 msgid "Maintainer: " msgstr "" @@ -4307,11 +3972,22 @@ msgstr "" msgid "Addon %s failed to install." msgstr "" +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:541 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:162 +#: src/Module/Settings/Connectors.php:249 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:303 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "" + #: src/Module/Admin/Addons/Index.php:70 msgid "Reload active addons" msgstr "" -#: src/Module/Admin/Addons/Index.php:75 +#: src/Module/Admin/Addons/Index.php:74 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4319,414 +3995,6 @@ msgid "" "the open addon registry at %2$s" msgstr "" -#: src/Module/Admin/BaseUsers.php:54 -msgid "List of all users" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:59 -msgid "Active" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:62 -msgid "List of active accounts" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:67 src/Module/Contact.php:317 -#: src/Module/Contact.php:377 -msgid "Pending" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:70 -msgid "List of pending registrations" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:75 src/Module/Contact.php:325 -#: src/Module/Contact.php:378 -msgid "Blocked" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:78 -msgid "List of blocked users" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:83 -msgid "Deleted" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:86 -msgid "List of pending user deletions" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:100 src/Module/Settings/Account.php:494 -msgid "Normal Account Page" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:101 src/Module/Settings/Account.php:501 -msgid "Soapbox Page" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:102 src/Module/Settings/Account.php:508 -msgid "Public Forum" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:103 src/Module/Settings/Account.php:515 -msgid "Automatic Friend Page" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:104 -msgid "Private Forum" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:107 src/Module/Settings/Account.php:466 -msgid "Personal Page" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:108 src/Module/Settings/Account.php:473 -msgid "Organisation Page" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:109 src/Module/Settings/Account.php:480 -msgid "News Page" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:110 src/Module/Settings/Account.php:487 -msgid "Community Forum" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:111 -msgid "Relay" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:54 -msgid "You can't block a local contact, please block the user instead" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:73 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Blocklist/Contact.php:95 -msgid "Remote Contact Blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:96 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:97 -msgid "Block Remote Contact" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#: 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 "" - -#: src/Module/Admin/Blocklist/Contact.php:99 -msgid "select none" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:101 -#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156 -#: src/Module/Contact.php:401 src/Module/Contact/Profile.php:349 -#: src/Module/Contact/Profile.php:450 -msgid "Unblock" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:102 -msgid "No remote contact is blocked from this node." -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:104 -msgid "Blocked Remote Contacts" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:105 -msgid "Block New Remote Contact" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Photo" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Reason" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:114 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Blocklist/Contact.php:116 -msgid "URL of the remote contact to block." -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "Also purge contact" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "" -"Removes all content related to this contact from the node. Keeps the contact " -"record. This action cannot be undone." -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:118 -#: src/Module/Admin/Blocklist/Server/Import.php:123 -msgid "Block Reason" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:80 -msgid "Server domain pattern added to the blocklist." -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:88 -#, php-format -msgid "%s server scheduled to be purged." -msgid_plural "%s servers scheduled to be purged." -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Blocklist/Server/Add.php:120 -#: src/Module/Admin/Blocklist/Server/Import.php:116 -msgid "← Return to the list" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:122 -msgid "Block A New Server Domain Pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:123 -#: src/Module/Admin/Blocklist/Server/Index.php:95 -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" -"
    " -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:103 -msgid "Check pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:129 -msgid "Matching known servers" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:130 -msgid "Server Name" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:131 -msgid "Server Domain" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:132 -msgid "Known Contacts" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:133 -#, php-format -msgid "%d known server" -msgid_plural "%d known servers" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Blocklist/Server/Add.php:134 -msgid "Add pattern to the blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:136 -#: src/Module/Admin/Blocklist/Server/Index.php:112 -msgid "Server Domain Pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:136 -#: src/Module/Admin/Blocklist/Server/Index.php:112 -msgid "" -"The domain pattern of the new server to add to the blocklist. Do not include " -"the protocol." -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:137 -msgid "Purge server" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:137 -msgid "" -"Also purges all the locally stored content authored by the known contacts " -"registered on that server. Keeps the contacts and the server records. This " -"action cannot be undone." -msgid_plural "" -"Also purges all the locally stored content authored by the known contacts " -"registered on these servers. Keeps the contacts and the servers records. " -"This action cannot be undone." -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Blocklist/Server/Add.php:138 -msgid "Block reason" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:138 -msgid "" -"The reason why you blocked this server domain pattern. This reason will be " -"shown publicly in the server information page." -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Import.php:75 -#: src/Module/Admin/Blocklist/Server/Import.php:84 -msgid "Error importing pattern file" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Import.php:90 -msgid "Local blocklist replaced with the provided file." -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Import.php:94 -#, php-format -msgid "%d pattern was added to the local blocklist." -msgid_plural "%d patterns were added to the local blocklist." -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Blocklist/Server/Import.php:96 -msgid "No pattern was added to the local blocklist." -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Import.php:118 -msgid "Import a Server Domain Pattern Blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Import.php:119 -msgid "" -"

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

    " -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Import.php:120 -#: src/Module/Admin/Blocklist/Server/Index.php:102 -msgid "Upload file" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Import.php:121 -msgid "Patterns to import" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Import.php:122 -msgid "Domain Pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Import.php:124 -msgid "Import Mode" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Import.php:125 -msgid "Import Patterns" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Import.php:126 -#, php-format -msgid "%d total pattern" -msgid_plural "%d total patterns" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Blocklist/Server/Import.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:111 -msgid "Server domain pattern blocklist CSV file" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Import.php:129 -msgid "Append" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Import.php:129 -msgid "" -"Imports patterns from the file that weren't already existing in the current " -"blocklist." -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Import.php:130 -msgid "Replace" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Import.php:130 -msgid "Replaces the current blocklist by the imported patterns." -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:82 -#: src/Module/Admin/Blocklist/Server/Index.php:106 -msgid "Blocked server domain pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:83 -#: src/Module/Admin/Blocklist/Server/Index.php:107 src/Module/Friendica.php:83 -msgid "Reason for the block" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:84 -msgid "Delete server domain pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:84 -msgid "Check to delete this entry from the blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:92 -msgid "Server Domain Pattern Blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:93 -msgid "" -"This page can be used to define a blocklist of server domain patterns from " -"the federated network that are not allowed to interact with your node. For " -"each domain pattern you should also provide the reason why you block it." -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:94 -msgid "" -"The list of blocked server domain patterns will be made publically available " -"on the /friendica page so that your users and " -"people investigating communication problems can find the reason easily." -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:100 -msgid "Import server domain pattern blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:101 -msgid "Add new entry to the blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:104 -msgid "Save changes to the blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:105 -msgid "Current Entries in the Blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:108 -msgid "Delete entry from the blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:109 -msgid "Delete entry from the blocklist?" -msgstr "" - #: src/Module/Admin/DBSync.php:51 msgid "Update has been marked successful" msgstr "" @@ -4761,28 +4029,28 @@ msgstr "" msgid "There was no additional update function %s that needed to be called." msgstr "" -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:105 msgid "No failed updates." msgstr "" -#: src/Module/Admin/DBSync.php:107 +#: src/Module/Admin/DBSync.php:106 msgid "Check database structure" msgstr "" -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:110 msgid "Failed Updates" msgstr "" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:111 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "" -#: src/Module/Admin/DBSync.php:114 +#: src/Module/Admin/DBSync.php:112 msgid "Mark success (if update was manually applied)" msgstr "" -#: src/Module/Admin/DBSync.php:115 +#: src/Module/Admin/DBSync.php:113 msgid "Attempt to execute this update step automatically" msgstr "" @@ -4791,79 +4059,81 @@ msgstr "" msgid "Lock feature %s" msgstr "" -#: src/Module/Admin/Features.php:85 +#: src/Module/Admin/Features.php:84 msgid "Manage Additional Features" msgstr "" -#: src/Module/Admin/Federation.php:70 +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 msgid "Other" msgstr "" -#: src/Module/Admin/Federation.php:142 src/Module/Admin/Federation.php:391 +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 msgid "unknown" msgstr "" -#: src/Module/Admin/Federation.php:175 +#: src/Module/Admin/Federation.php:187 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:176 +#: src/Module/Admin/Federation.php:188 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:177 +#: src/Module/Admin/Federation.php:189 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:178 +#: src/Module/Admin/Federation.php:190 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:179 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:182 +#: src/Module/Admin/Federation.php:194 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:187 +#: src/Module/Admin/Federation.php:199 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:197 +#: src/Module/Admin/Federation.php:209 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:203 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "" -#: src/Module/Admin/Federation.php:207 +#: src/Module/Admin/Federation.php:219 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4876,129 +4146,57 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Item/Delete.php:53 -msgid "Item marked for deletion." -msgstr "" - -#: src/Module/Admin/Item/Delete.php:65 src/Module/BaseAdmin.php:106 -msgid "Delete Item" -msgstr "" - -#: src/Module/Admin/Item/Delete.php:66 -msgid "Delete this Item" -msgstr "" - -#: src/Module/Admin/Item/Delete.php:67 -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 "" - -#: src/Module/Admin/Item/Delete.php:68 -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 "" - -#: src/Module/Admin/Item/Delete.php:69 -msgid "GUID" -msgstr "" - -#: src/Module/Admin/Item/Delete.php:69 -msgid "The GUID of the item you want to delete." -msgstr "" - -#: src/Module/Admin/Item/Source.php:53 src/Module/BaseAdmin.php:116 -msgid "Item Source" -msgstr "" - -#: src/Module/Admin/Item/Source.php:54 -msgid "Item Guid" -msgstr "" - -#: src/Module/Admin/Item/Source.php:58 -msgid "Item Id" -msgstr "" - -#: src/Module/Admin/Item/Source.php:59 -msgid "Item URI" -msgstr "" - -#: src/Module/Admin/Item/Source.php:61 -msgid "Terms" -msgstr "" - -#: src/Module/Admin/Item/Source.php:62 -msgid "Tag" -msgstr "" - -#: src/Module/Admin/Item/Source.php:63 src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:130 src/Module/Admin/Users/Index.php:142 -msgid "Type" -msgstr "" - -#: src/Module/Admin/Item/Source.php:64 -msgid "Term" -msgstr "" - -#: src/Module/Admin/Item/Source.php:65 -msgid "URL" -msgstr "" - -#: src/Module/Admin/Item/Source.php:66 -msgid "Mention" -msgstr "" - -#: src/Module/Admin/Item/Source.php:67 -msgid "Implicit Mention" -msgstr "" - #: src/Module/Admin/Logs/Settings.php:47 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "" -#: src/Module/Admin/Logs/Settings.php:71 +#: src/Module/Admin/Logs/Settings.php:77 msgid "PHP log currently enabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:73 +#: src/Module/Admin/Logs/Settings.php:79 msgid "PHP log currently disabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:108 -#: src/Module/BaseAdmin.php:109 +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 msgid "Logs" msgstr "" -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:88 msgid "Clear" msgstr "" -#: src/Module/Admin/Logs/Settings.php:86 +#: src/Module/Admin/Logs/Settings.php:91 msgid "Enable Debugging" msgstr "" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "Read-only because it is set by an environment variable" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:92 msgid "Log file" msgstr "" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:92 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "" -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:93 msgid "Log level" msgstr "" -#: src/Module/Admin/Logs/Settings.php:90 +#: src/Module/Admin/Logs/Settings.php:95 msgid "PHP logging" msgstr "" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:96 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 " @@ -5021,73 +4219,77 @@ msgid "" "is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:110 +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 msgid "View Logs" msgstr "" -#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Admin/Logs/View.php:87 msgid "Search in logs" msgstr "" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:88 #: src/Module/Notifications/Notifications.php:140 msgid "Show all" msgstr "" -#: src/Module/Admin/Logs/View.php:90 +#: src/Module/Admin/Logs/View.php:89 msgid "Date" msgstr "" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:90 msgid "Level" msgstr "" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:91 msgid "Context" msgstr "" -#: src/Module/Admin/Logs/View.php:94 +#: src/Module/Admin/Logs/View.php:93 msgid "ALL" msgstr "" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:94 msgid "View details" msgstr "" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:95 msgid "Click to view details" msgstr "" -#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "" + +#: src/Module/Admin/Logs/View.php:97 msgid "Data" msgstr "" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:98 #: src/Module/Debug/ActivityPubConversion.php:57 msgid "Source" msgstr "" -#: src/Module/Admin/Logs/View.php:100 +#: src/Module/Admin/Logs/View.php:99 msgid "File" msgstr "" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:100 msgid "Line" msgstr "" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:101 msgid "Function" msgstr "" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:102 msgid "UID" msgstr "" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:103 msgid "Process ID" msgstr "" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:104 msgid "Close" msgstr "" @@ -5123,474 +4325,487 @@ msgstr "" msgid "Job Parameters" msgstr "" +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "" + #: src/Module/Admin/Queue.php:79 msgid "Priority" msgstr "" -#: src/Module/Admin/Site.php:334 src/Module/Settings/Display.php:137 +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" +msgstr "" + +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:211 msgid "No special theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:351 src/Module/Settings/Display.php:147 +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:221 #, php-format msgid "%s - (Experimental)" msgstr "" -#: src/Module/Admin/Site.php:363 +#: src/Module/Admin/Site.php:342 msgid "No community page" msgstr "" -#: src/Module/Admin/Site.php:364 +#: src/Module/Admin/Site.php:343 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:365 +#: src/Module/Admin/Site.php:344 msgid "Public postings from users of this site" msgstr "" -#: src/Module/Admin/Site.php:366 +#: src/Module/Admin/Site.php:345 msgid "Public postings from the federated network" msgstr "" -#: src/Module/Admin/Site.php:367 +#: src/Module/Admin/Site.php:346 msgid "Public postings from local users and the federated network" msgstr "" -#: src/Module/Admin/Site.php:373 +#: src/Module/Admin/Site.php:352 msgid "Multi user instance" msgstr "" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:375 msgid "Closed" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:376 msgid "Requires approval" msgstr "" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:377 msgid "Open" msgstr "" -#: src/Module/Admin/Site.php:406 src/Module/Install.php:222 -msgid "No SSL policy, links will track page SSL state" -msgstr "" - -#: src/Module/Admin/Site.php:407 src/Module/Install.php:223 -msgid "Force all links to use SSL" -msgstr "" - -#: src/Module/Admin/Site.php:408 src/Module/Install.php:224 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" - -#: src/Module/Admin/Site.php:412 +#: src/Module/Admin/Site.php:381 msgid "Don't check" msgstr "" -#: src/Module/Admin/Site.php:413 +#: src/Module/Admin/Site.php:382 msgid "check the stable version" msgstr "" -#: src/Module/Admin/Site.php:414 +#: src/Module/Admin/Site.php:383 msgid "check the development version" msgstr "" -#: src/Module/Admin/Site.php:418 +#: src/Module/Admin/Site.php:387 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:419 +#: src/Module/Admin/Site.php:388 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:389 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:430 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "" -#: src/Module/Admin/Site.php:431 +#: src/Module/Admin/Site.php:400 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:402 msgid "Republish users to directory" msgstr "" -#: src/Module/Admin/Site.php:434 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 msgid "Registration" msgstr "" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:404 msgid "File upload" msgstr "" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:405 msgid "Policies" msgstr "" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "" + +#: src/Module/Admin/Site.php:407 msgid "Auto Discovered Contact Directory" msgstr "" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:408 msgid "Performance" msgstr "" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:409 msgid "Worker" msgstr "" -#: src/Module/Admin/Site.php:441 +#: src/Module/Admin/Site.php:410 msgid "Message Relay" msgstr "" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:411 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:443 +#: src/Module/Admin/Site.php:412 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:413 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:415 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:447 +#: src/Module/Admin/Site.php:416 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "" -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:417 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:452 +#: src/Module/Admin/Site.php:420 msgid "Site name" msgstr "" -#: src/Module/Admin/Site.php:453 +#: src/Module/Admin/Site.php:421 msgid "Sender Email" msgstr "" -#: src/Module/Admin/Site.php:453 +#: src/Module/Admin/Site.php:421 msgid "" "The email address your server shall use to send notification emails from." msgstr "" -#: src/Module/Admin/Site.php:454 +#: src/Module/Admin/Site.php:422 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:454 +#: src/Module/Admin/Site.php:422 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:455 +#: src/Module/Admin/Site.php:423 msgid "Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:456 +#: src/Module/Admin/Site.php:424 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:425 msgid "Shortcut icon" msgstr "" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:425 msgid "Link to an icon that will be used for browsers." msgstr "" -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:426 msgid "Touch icon" msgstr "" -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:426 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:427 msgid "Additional Info" msgstr "" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:427 #, 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:460 +#: src/Module/Admin/Site.php:428 msgid "System language" msgstr "" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:429 msgid "System theme" msgstr "" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:429 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:430 msgid "Mobile system theme" msgstr "" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:430 msgid "Theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:463 src/Module/Install.php:232 -msgid "SSL link policy" -msgstr "" - -#: src/Module/Admin/Site.php:463 src/Module/Install.php:234 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "" - -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:431 msgid "Force SSL" msgstr "" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:431 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead " "to endless loops." msgstr "" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:432 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:432 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:433 msgid "Single user instance" msgstr "" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:433 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:435 msgid "Maximum image size" msgstr "" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:435 +#, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." +"limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, " +"respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in " +"your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set " +"to %s (%s byte)" msgstr "" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:439 msgid "Maximum image length" msgstr "" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:439 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:470 +#: src/Module/Admin/Site.php:440 msgid "JPEG image quality" msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:440 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:472 +#: src/Module/Admin/Site.php:442 msgid "Register policy" msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "" + +#: src/Module/Admin/Site.php:444 msgid "Maximum Daily Registrations" msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:444 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:474 +#: src/Module/Admin/Site.php:445 msgid "Register text" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:445 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:446 msgid "Forbidden Nicknames" msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:446 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:476 +#: src/Module/Admin/Site.php:447 msgid "Accounts abandoned after x days" msgstr "" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:447 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:448 msgid "Allowed friend domains" msgstr "" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:448 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:478 +#: src/Module/Admin/Site.php:449 msgid "Allowed email domains" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:449 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:479 +#: src/Module/Admin/Site.php:450 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:450 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:451 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:451 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:481 +#: src/Module/Admin/Site.php:452 msgid "Block public" msgstr "" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:452 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:482 +#: src/Module/Admin/Site.php:453 msgid "Force publish" msgstr "" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:453 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:453 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:454 msgid "Global directory URL" msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:454 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:484 +#: src/Module/Admin/Site.php:455 msgid "Private posts by default for new users" msgstr "" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:455 msgid "" "Set default post permissions for all new members to the default privacy " -"group rather than public." +"circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:456 msgid "Don't include post content in email notifications" msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:456 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:486 +#: src/Module/Admin/Site.php:457 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:457 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:458 msgid "Don't embed private images in posts" msgstr "" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:458 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:488 +#: src/Module/Admin/Site.php:459 msgid "Explicit Content" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:459 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 " @@ -5599,257 +4814,267 @@ msgid "" "will be shown at the user registration page." msgstr "" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:460 msgid "Proxify external content" msgstr "" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:460 msgid "" "Route external content via the proxy functionality. This is used for example " "for some OEmbed accesses and in some other rare cases." msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:461 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:461 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:462 msgid "Allow Users to set remote_self" msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:462 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:492 +#: src/Module/Admin/Site.php:463 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:463 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:494 -msgid "Enable Fullname check" +#: src/Module/Admin/Site.php:465 +msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:465 msgid "" -"Enable check to only allow users to register with a space between the first " -"name and the last name in their full name." +"Prevents users from registering with a display name with fewer than two " +"parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "" + +#: src/Module/Admin/Site.php:467 msgid "Community pages for visitors" msgstr "" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:467 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "" -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:468 msgid "Posts per user on community page" msgstr "" -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:468 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "\"Global Community\")" msgstr "" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:470 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:470 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:471 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:472 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:472 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:474 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub " "directory." msgstr "" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:475 msgid "Enable Diaspora support" msgstr "" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:475 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:476 msgid "Verify SSL" msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:476 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:505 +#: src/Module/Admin/Site.php:477 msgid "Proxy user" msgstr "" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:477 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:478 msgid "Proxy URL" msgstr "" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:478 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:479 msgid "Network timeout" msgstr "" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:479 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:480 msgid "Maximum Load Average" msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:480 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:481 msgid "Minimal Memory" msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:481 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:484 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:484 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:485 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:486 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:487 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:517 +#: src/Module/Admin/Site.php:489 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:489 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:491 msgid "Days between requery" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:491 msgid "Number of days after which a server is requeried for his contacts." msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:492 msgid "Discover contacts from other servers" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:492 msgid "" "Periodically query other servers for contacts. The system queries Friendica, " "Mastodon and Hubzilla servers." msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:493 msgid "Search the local directory" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:493 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:523 +#: src/Module/Admin/Site.php:495 msgid "Publish server information" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:495 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 " @@ -5857,50 +5082,50 @@ msgid "" "href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:497 msgid "Check upstream version" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:497 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:526 +#: src/Module/Admin/Site.php:498 msgid "Suppress Tags" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:498 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:499 msgid "Clean database" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:499 msgid "" "Remove old remote items, orphaned database records and old content from some " "other helper tables." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:500 msgid "Lifespan of remote items" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:500 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:529 +#: src/Module/Admin/Site.php:501 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:501 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5908,144 +5133,144 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:502 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:502 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:531 +#: src/Module/Admin/Site.php:503 msgid "Maximum numbers of comments per post" msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:503 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:504 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:504 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:505 msgid "Temp path" msgstr "" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:505 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:534 +#: src/Module/Admin/Site.php:506 msgid "Only search in tags" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:506 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: src/Module/Admin/Site.php:535 -msgid "Generate counts per contact group when calculating network count" +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:507 msgid "" -"On systems with users that heavily use contact groups the query can be very " +"On systems with users that heavily use contact circles the query can be very " "expensive." msgstr "" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:509 msgid "Maximum number of parallel workers" msgstr "" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:509 #, 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:538 +#: src/Module/Admin/Site.php:510 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:510 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:540 +#: src/Module/Admin/Site.php:512 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:512 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:513 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:513 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:541 src/Module/Contact/Profile.php:274 -#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:513 msgid "all" msgstr "" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:513 msgid "tags" msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:514 msgid "Server tags" msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:514 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:515 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:515 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:516 msgid "Allow user tags" msgstr "" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:516 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:547 +#: src/Module/Admin/Site.php:519 msgid "Start Relocation" msgstr "" @@ -6091,16 +5316,22 @@ msgstr "" msgid "This backend doesn't have custom settings" msgstr "" -#: src/Module/Admin/Storage.php:149 +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "" + +#: src/Module/Admin/Storage.php:150 msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:56 +#: src/Module/Admin/Summary.php:55 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:60 +#: src/Module/Admin/Summary.php:59 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -6111,7 +5342,7 @@ msgid "" "automatic conversion.
    " msgstr "" -#: src/Module/Admin/Summary.php:65 +#: src/Module/Admin/Summary.php:64 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -6122,7 +5353,7 @@ msgid "" "installation for an automatic conversion.
    " msgstr "" -#: src/Module/Admin/Summary.php:75 +#: src/Module/Admin/Summary.php:74 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -6146,23 +5377,30 @@ msgstr "" #: src/Module/Admin/Summary.php:98 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.)" +"The last update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear. (Some of the errors are possibly inside the logfile.)" msgstr "" -#: src/Module/Admin/Summary.php:103 +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to " +"unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "" + +#: src/Module/Admin/Summary.php:107 msgid "The worker was never executed. Please check your database structure!" msgstr "" -#: src/Module/Admin/Summary.php:105 +#: src/Module/Admin/Summary.php:109 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please " "check your crontab settings." msgstr "" -#: src/Module/Admin/Summary.php:110 +#: src/Module/Admin/Summary.php:114 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6171,7 +5409,7 @@ msgid "" "with the transition." msgstr "" -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:118 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6180,7 +5418,7 @@ msgid "" "with the transition." msgstr "" -#: src/Module/Admin/Summary.php:120 +#: src/Module/Admin/Summary.php:124 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -6188,82 +5426,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:138 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:152 -#, php-format -msgid "The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:168 +#: src/Module/Admin/Summary.php:148 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the " "system.basepath from your db to avoid differences." msgstr "" -#: src/Module/Admin/Summary.php:176 +#: src/Module/Admin/Summary.php:156 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "" -#: src/Module/Admin/Summary.php:184 +#: src/Module/Admin/Summary.php:164 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "" -#: src/Module/Admin/Summary.php:191 -msgid "Normal Account" -msgstr "" - -#: src/Module/Admin/Summary.php:192 -msgid "Automatic Follower Account" -msgstr "" - -#: src/Module/Admin/Summary.php:193 -msgid "Public Forum Account" -msgstr "" - -#: src/Module/Admin/Summary.php:194 -msgid "Automatic Friend Account" -msgstr "" - -#: src/Module/Admin/Summary.php:195 -msgid "Blog Account" -msgstr "" - -#: src/Module/Admin/Summary.php:196 -msgid "Private Forum Account" -msgstr "" - -#: src/Module/Admin/Summary.php:216 +#: src/Module/Admin/Summary.php:175 msgid "Message queues" msgstr "" -#: src/Module/Admin/Summary.php:222 +#: src/Module/Admin/Summary.php:181 msgid "Server Settings" msgstr "" -#: src/Module/Admin/Summary.php:238 -msgid "Registered users" -msgstr "" - -#: src/Module/Admin/Summary.php:240 -msgid "Pending registrations" -msgstr "" - -#: src/Module/Admin/Summary.php:241 +#: src/Module/Admin/Summary.php:199 msgid "Version" msgstr "" -#: src/Module/Admin/Summary.php:245 +#: src/Module/Admin/Summary.php:203 msgid "Active addons" msgstr "" @@ -6287,7 +5483,7 @@ msgid "Screenshot" msgstr "" #: src/Module/Admin/Themes/Details.php:91 src/Module/Admin/Themes/Index.php:112 -#: src/Module/BaseAdmin.php:94 +#: src/Module/BaseAdmin.php:93 msgid "Themes" msgstr "" @@ -6303,252 +5499,69 @@ msgstr "" msgid "Reload active themes" msgstr "" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:118 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:119 msgid "[Experimental]" msgstr "" -#: src/Module/Admin/Themes/Index.php:121 +#: src/Module/Admin/Themes/Index.php:120 msgid "[Unsupported]" msgstr "" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 msgid "Display Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 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 "" -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 msgid "Display Privacy Statement" msgstr "" -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." +"according e.g. to EU-GDPR." msgstr "" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:81 msgid "Privacy Statement Preview" msgstr "" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "The Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "" -#: src/Module/Admin/Users/Active.php:45 src/Module/Admin/Users/Index.php:45 +#: src/Module/Admin/Tos.php:84 +msgid "The rules" +msgstr "" + +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." +msgstr "" + +#: src/Module/Api/ApiResponse.php:293 #, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "" -msgstr[1] "" - -#: 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" +msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: 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] "" -msgstr[1] "" - -#: 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 "" - -#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103 -#, php-format -msgid "User \"%s\" blocked" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: 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 "" - -#: src/Module/Admin/Users/Active.php:137 -msgid "Active Accounts" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: 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 "" - -#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161 -msgid "Create a new user" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: 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] "" -msgstr[1] "" - -#: src/Module/Admin/Users/Blocked.php:96 src/Module/Admin/Users/Index.php:109 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "" - -#: src/Module/Admin/Users/Blocked.php:138 -msgid "Blocked Users" -msgstr "" - -#: src/Module/Admin/Users/Create.php:62 -msgid "New User" -msgstr "" - -#: src/Module/Admin/Users/Create.php:63 -msgid "Add User" -msgstr "" - -#: src/Module/Admin/Users/Create.php:71 -msgid "Name of the new user." -msgstr "" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname" -msgstr "" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname of the new user." -msgstr "" - -#: src/Module/Admin/Users/Create.php:73 -msgid "Email address of the new user." -msgstr "" - -#: src/Module/Admin/Users/Deleted.php:86 -msgid "Users awaiting permanent deletion" -msgstr "" - -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:162 -msgid "Permanent deletion" -msgstr "" - -#: src/Module/Admin/Users/Index.php:150 src/Module/Admin/Users/Index.php:160 -#: src/Module/BaseAdmin.php:92 -msgid "Users" -msgstr "" - -#: src/Module/Admin/Users/Index.php:152 -msgid "User waiting for permanent deletion" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:48 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users/Pending.php:55 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users/Pending.php:81 -msgid "Account approved." -msgstr "" - -#: src/Module/Admin/Users/Pending.php:87 -msgid "Registration revoked" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:102 -msgid "User registrations awaiting review" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:104 -msgid "Request date" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:105 -msgid "No registrations." -msgstr "" - -#: src/Module/Admin/Users/Pending.php:106 -msgid "Note from the user" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:108 -msgid "Deny" -msgstr "" - -#: src/Module/Api/ApiResponse.php:279 -#, php-format -msgid "API endpoint %s %s is not implemented" -msgstr "" - -#: src/Module/Api/ApiResponse.php:280 -msgid "" -"The API endpoint is currently not implemented but might be in the future." -msgstr "" - -#: src/Module/Api/Mastodon/Apps.php:63 +#: src/Module/Api/Mastodon/Apps.php:73 msgid "Missing parameters" msgstr "" @@ -6560,7 +5573,7 @@ msgstr "" msgid "Only starting posts can be muted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 #, php-format msgid "Posts from %s can't be shared" msgstr "" @@ -6573,7 +5586,7 @@ msgstr "" msgid "Only starting posts can be unmuted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 #, php-format msgid "Posts from %s can't be unshared" msgstr "" @@ -6582,19 +5595,20 @@ msgstr "" msgid "Contact not found" msgstr "" -#: src/Module/Apps.php:55 +#: src/Module/Apps.php:62 msgid "No installed applications." msgstr "" -#: src/Module/Apps.php:60 +#: src/Module/Apps.php:67 msgid "Applications" msgstr "" -#: src/Module/Attach.php:50 src/Module/Attach.php:62 +#: src/Module/Attach.php:49 src/Module/Attach.php:61 msgid "Item was not found." msgstr "" #: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 msgid "Please login to continue." msgstr "" @@ -6608,98 +5622,86 @@ msgid "" "as the main account." msgstr "" -#: src/Module/BaseAdmin.php:86 +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 msgid "Overview" msgstr "" -#: src/Module/BaseAdmin.php:89 +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 msgid "Configuration" msgstr "" -#: src/Module/BaseAdmin.php:95 src/Module/BaseSettings.php:63 +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 msgid "Additional features" msgstr "" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:97 msgid "Database" msgstr "" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:98 msgid "DB updates" msgstr "" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:99 msgid "Inspect Deferred Workers" msgstr "" -#: src/Module/BaseAdmin.php:101 +#: src/Module/BaseAdmin.php:100 msgid "Inspect worker Queue" msgstr "" -#: src/Module/BaseAdmin.php:103 -msgid "Tools" -msgstr "" - -#: src/Module/BaseAdmin.php:104 -msgid "Contact Blocklist" -msgstr "" - -#: src/Module/BaseAdmin.php:105 -msgid "Server Blocklist" -msgstr "" - -#: src/Module/BaseAdmin.php:112 +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 msgid "Diagnostics" msgstr "" -#: src/Module/BaseAdmin.php:113 +#: src/Module/BaseAdmin.php:107 msgid "PHP Info" msgstr "" -#: src/Module/BaseAdmin.php:114 +#: src/Module/BaseAdmin.php:108 msgid "probe address" msgstr "" -#: src/Module/BaseAdmin.php:115 +#: src/Module/BaseAdmin.php:109 msgid "check webfinger" msgstr "" -#: src/Module/BaseAdmin.php:117 +#: src/Module/BaseAdmin.php:110 msgid "Babel" msgstr "" -#: src/Module/BaseAdmin.php:118 src/Module/Debug/ActivityPubConversion.php:137 +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 msgid "ActivityPub Conversion" msgstr "" -#: src/Module/BaseAdmin.php:127 +#: src/Module/BaseAdmin.php:120 msgid "Addon Features" msgstr "" -#: src/Module/BaseAdmin.php:128 +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 msgid "User registrations waiting for confirmation" msgstr "" -#: src/Module/BaseApi.php:242 src/Module/BaseApi.php:258 -#: src/Module/BaseApi.php:274 +#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 +#: src/Module/BaseApi.php:487 msgid "Too Many Requests" msgstr "" -#: src/Module/BaseApi.php:243 +#: src/Module/BaseApi.php:456 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." msgstr[0] "" msgstr[1] "" -#: src/Module/BaseApi.php:259 +#: src/Module/BaseApi.php:472 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "Weekly posting limit of %d posts reached. The post was rejected." msgstr[0] "" msgstr[1] "" -#: src/Module/BaseApi.php:275 +#: src/Module/BaseApi.php:488 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6707,62 +5709,130 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/BaseProfile.php:51 src/Module/Contact.php:463 +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "" + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "" + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:506 msgid "Profile Details" msgstr "" -#: src/Module/BaseProfile.php:109 +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "" + +#: src/Module/BaseProfile.php:111 msgid "Only You Can See This" msgstr "" -#: src/Module/BaseProfile.php:114 src/Module/Profile/Schedule.php:82 +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 msgid "Scheduled Posts" msgstr "" -#: src/Module/BaseProfile.php:117 +#: src/Module/BaseProfile.php:119 msgid "Posts that are scheduled for publishing" msgstr "" -#: src/Module/BaseProfile.php:136 src/Module/BaseProfile.php:139 +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 msgid "Tips for New Members" msgstr "" -#: src/Module/BaseSearch.php:69 +#: src/Module/BaseSearch.php:71 #, php-format msgid "People Search - %s" msgstr "" -#: src/Module/BaseSearch.php:79 +#: src/Module/BaseSearch.php:75 #, php-format -msgid "Forum Search - %s" +msgid "Group Search - %s" msgstr "" -#: src/Module/BaseSettings.php:41 +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseSettings.php:78 msgid "Account" msgstr "" -#: src/Module/BaseSettings.php:48 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:117 +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:138 msgid "Two-factor authentication" msgstr "" -#: src/Module/BaseSettings.php:71 +#: src/Module/BaseSettings.php:118 msgid "Display" msgstr "" -#: src/Module/BaseSettings.php:92 src/Module/Settings/Delegation.php:170 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:206 +msgid "Social Networks" +msgstr "" + +#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 msgid "Manage Accounts" msgstr "" -#: src/Module/BaseSettings.php:99 +#: src/Module/BaseSettings.php:153 msgid "Connected apps" msgstr "" -#: src/Module/BaseSettings.php:106 src/Module/Settings/UserExport.php:102 +#: src/Module/BaseSettings.php:160 +msgid "Remote servers" +msgstr "" + +#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 msgid "Export personal data" msgstr "" -#: src/Module/BaseSettings.php:113 +#: src/Module/BaseSettings.php:174 msgid "Remove account" msgstr "" @@ -6774,117 +5844,364 @@ msgstr "" msgid "The post was created" msgstr "" -#: src/Module/Contact.php:88 +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "" + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "" + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "" + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/Channels.php:130 src/Module/Settings/Channels.php:146 +#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Verify.php:158 +msgid "Required" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:291 +msgid "list" +msgstr "" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "" + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "" + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "" + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "" + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "" + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "" + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "" + +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "" + +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "" + +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "" + +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "" + +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "" + +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "" + +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "" + +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "" + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "" + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "" + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "" + +#: src/Module/Contact.php:96 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "" msgstr[1] "" -#: src/Module/Contact.php:312 +#: src/Module/Contact.php:347 msgid "Show all contacts" msgstr "" -#: src/Module/Contact.php:320 +#: src/Module/Contact.php:352 src/Module/Contact.php:431 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "" + +#: src/Module/Contact.php:355 msgid "Only show pending contacts" msgstr "" -#: src/Module/Contact.php:328 +#: src/Module/Contact.php:360 src/Module/Contact.php:434 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "" + +#: src/Module/Contact.php:363 msgid "Only show blocked contacts" msgstr "" -#: src/Module/Contact.php:333 src/Module/Contact.php:380 -#: src/Object/Post.php:338 +#: src/Module/Contact.php:368 src/Module/Contact.php:440 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:386 msgid "Ignored" msgstr "" -#: src/Module/Contact.php:336 +#: src/Module/Contact.php:371 msgid "Only show ignored contacts" msgstr "" -#: src/Module/Contact.php:341 src/Module/Contact.php:381 +#: src/Module/Contact.php:376 src/Module/Contact.php:443 +msgid "Collapsed" +msgstr "" + +#: src/Module/Contact.php:379 +msgid "Only show collapsed contacts" +msgstr "" + +#: src/Module/Contact.php:384 src/Module/Contact.php:446 msgid "Archived" msgstr "" -#: src/Module/Contact.php:344 +#: src/Module/Contact.php:387 msgid "Only show archived contacts" msgstr "" -#: src/Module/Contact.php:349 src/Module/Contact.php:379 +#: src/Module/Contact.php:392 src/Module/Contact.php:437 msgid "Hidden" msgstr "" -#: src/Module/Contact.php:352 +#: src/Module/Contact.php:395 msgid "Only show hidden contacts" msgstr "" -#: src/Module/Contact.php:360 -msgid "Organize your contact groups" +#: src/Module/Contact.php:403 +msgid "Organize your contact circles" msgstr "" -#: src/Module/Contact.php:392 +#: src/Module/Contact.php:458 msgid "Search your contacts" msgstr "" -#: src/Module/Contact.php:393 src/Module/Search/Index.php:206 +#: src/Module/Contact.php:459 src/Module/Search/Index.php:207 #, php-format msgid "Results for: %s" msgstr "" -#: src/Module/Contact.php:400 +#: src/Module/Contact.php:466 msgid "Update" msgstr "" -#: src/Module/Contact.php:402 src/Module/Contact/Profile.php:350 -#: src/Module/Contact/Profile.php:458 +#: src/Module/Contact.php:467 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "" + +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:519 msgid "Unignore" msgstr "" -#: src/Module/Contact.php:404 +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "" + +#: src/Module/Contact.php:471 msgid "Batch Actions" msgstr "" -#: src/Module/Contact.php:439 +#: src/Module/Contact.php:514 msgid "Conversations started by this contact" msgstr "" -#: src/Module/Contact.php:444 +#: src/Module/Contact.php:519 msgid "Posts and Comments" msgstr "" -#: src/Module/Contact.php:455 +#: src/Module/Contact.php:522 +msgid "Individual Posts and Replies" +msgstr "" + +#: src/Module/Contact.php:530 msgid "Posts containing media objects" msgstr "" -#: src/Module/Contact.php:470 +#: src/Module/Contact.php:538 msgid "View all known contacts" msgstr "" -#: src/Module/Contact.php:480 +#: src/Module/Contact.php:549 msgid "Advanced Contact Settings" msgstr "" -#: src/Module/Contact.php:514 +#: src/Module/Contact.php:585 msgid "Mutual Friendship" msgstr "" -#: src/Module/Contact.php:518 +#: src/Module/Contact.php:589 msgid "is a fan of yours" msgstr "" -#: src/Module/Contact.php:522 +#: src/Module/Contact.php:593 msgid "you are a fan of" msgstr "" -#: src/Module/Contact.php:540 +#: src/Module/Contact.php:611 msgid "Pending outgoing contact request" msgstr "" -#: src/Module/Contact.php:542 +#: src/Module/Contact.php:613 msgid "Pending incoming contact request" msgstr "" -#: src/Module/Contact.php:555 src/Module/Contact/Profile.php:335 +#: src/Module/Contact.php:626 src/Module/Contact/Profile.php:371 #, php-format msgid "Visit %s's profile [%s]" msgstr "" @@ -6897,6 +6214,19 @@ msgstr "" msgid "Return to contact editor" msgstr "" +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "" + #: src/Module/Contact/Advanced.php:135 msgid "Account Nickname" msgstr "" @@ -6913,302 +6243,465 @@ msgstr "" msgid "New photo from this URL" msgstr "" -#: src/Module/Contact/Contacts.php:48 src/Module/Conversation/Network.php:186 -#: src/Module/Group.php:101 -msgid "Invalid contact." -msgstr "" - -#: src/Module/Contact/Contacts.php:71 +#: src/Module/Contact/Contacts.php:89 msgid "No known contacts." msgstr "" -#: src/Module/Contact/Contacts.php:85 src/Module/Profile/Common.php:97 +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 msgid "No common contacts." msgstr "" -#: src/Module/Contact/Contacts.php:97 src/Module/Profile/Contacts.php:95 +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:98 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:101 +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:107 src/Module/Profile/Contacts.php:103 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "" -#: src/Module/Contact/Contacts.php:113 src/Module/Profile/Common.php:85 +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Common.php:87 +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "" -#: src/Module/Contact/Contacts.php:121 src/Module/Profile/Contacts.php:109 +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Profile.php:128 +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:166 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "" + +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "" + +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "" + +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" +msgstr "" + +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "" + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "" + +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "" + +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "" + +#: src/Module/Contact/Profile.php:140 msgid "Failed to update contact record." msgstr "" -#: src/Module/Contact/Profile.php:178 +#: src/Module/Contact/Profile.php:190 msgid "Contact has been unblocked" msgstr "" -#: src/Module/Contact/Profile.php:182 +#: src/Module/Contact/Profile.php:194 msgid "Contact has been blocked" msgstr "" -#: src/Module/Contact/Profile.php:194 +#: src/Module/Contact/Profile.php:206 msgid "Contact has been unignored" msgstr "" -#: src/Module/Contact/Profile.php:198 +#: src/Module/Contact/Profile.php:210 msgid "Contact has been ignored" msgstr "" -#: src/Module/Contact/Profile.php:230 +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:254 #, php-format msgid "You are mutual friends with %s" msgstr "" -#: src/Module/Contact/Profile.php:231 +#: src/Module/Contact/Profile.php:255 #, php-format msgid "You are sharing with %s" msgstr "" -#: src/Module/Contact/Profile.php:232 +#: src/Module/Contact/Profile.php:256 #, php-format msgid "%s is sharing with you" msgstr "" -#: src/Module/Contact/Profile.php:248 +#: src/Module/Contact/Profile.php:272 msgid "Private communications are not available for this contact." msgstr "" -#: src/Module/Contact/Profile.php:250 +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "" + +#: src/Module/Contact/Profile.php:285 msgid "Never" msgstr "" -#: src/Module/Contact/Profile.php:253 +#: src/Module/Contact/Profile.php:288 msgid "(Update was not successful)" msgstr "" -#: src/Module/Contact/Profile.php:253 +#: src/Module/Contact/Profile.php:288 msgid "(Update was successful)" msgstr "" -#: src/Module/Contact/Profile.php:255 src/Module/Contact/Profile.php:421 +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 msgid "Suggest friends" msgstr "" -#: src/Module/Contact/Profile.php:259 +#: src/Module/Contact/Profile.php:294 #, php-format msgid "Network type: %s" msgstr "" -#: src/Module/Contact/Profile.php:264 +#: src/Module/Contact/Profile.php:299 msgid "Communications lost with this contact!" msgstr "" -#: src/Module/Contact/Profile.php:270 +#: src/Module/Contact/Profile.php:305 msgid "Fetch further information for feeds" msgstr "" -#: src/Module/Contact/Profile.php:272 +#: src/Module/Contact/Profile.php:307 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 "" -#: src/Module/Contact/Profile.php:275 +#: src/Module/Contact/Profile.php:310 msgid "Fetch information" msgstr "" -#: src/Module/Contact/Profile.php:276 +#: src/Module/Contact/Profile.php:311 msgid "Fetch keywords" msgstr "" -#: src/Module/Contact/Profile.php:277 +#: src/Module/Contact/Profile.php:312 msgid "Fetch information and keywords" msgstr "" -#: src/Module/Contact/Profile.php:287 src/Module/Contact/Profile.php:293 -#: src/Module/Contact/Profile.php:298 src/Module/Contact/Profile.php:304 +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 msgid "No mirroring" msgstr "" -#: src/Module/Contact/Profile.php:288 -msgid "Mirror as forwarded posting" -msgstr "" - -#: src/Module/Contact/Profile.php:289 src/Module/Contact/Profile.php:299 -#: src/Module/Contact/Profile.php:305 +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 msgid "Mirror as my own posting" msgstr "" -#: src/Module/Contact/Profile.php:294 src/Module/Contact/Profile.php:300 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 msgid "Native reshare" msgstr "" -#: src/Module/Contact/Profile.php:317 +#: src/Module/Contact/Profile.php:353 msgid "Contact Information / Notes" msgstr "" -#: src/Module/Contact/Profile.php:318 +#: src/Module/Contact/Profile.php:354 msgid "Contact Settings" msgstr "" -#: src/Module/Contact/Profile.php:326 +#: src/Module/Contact/Profile.php:362 msgid "Contact" msgstr "" -#: src/Module/Contact/Profile.php:330 +#: src/Module/Contact/Profile.php:366 msgid "Their personal note" msgstr "" -#: src/Module/Contact/Profile.php:332 +#: src/Module/Contact/Profile.php:368 msgid "Edit contact notes" msgstr "" -#: src/Module/Contact/Profile.php:336 +#: src/Module/Contact/Profile.php:372 msgid "Block/Unblock contact" msgstr "" -#: src/Module/Contact/Profile.php:337 +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 msgid "Ignore contact" msgstr "" -#: src/Module/Contact/Profile.php:338 +#: src/Module/Contact/Profile.php:374 msgid "View conversations" msgstr "" -#: src/Module/Contact/Profile.php:343 +#: src/Module/Contact/Profile.php:379 msgid "Last update:" msgstr "" -#: src/Module/Contact/Profile.php:345 +#: src/Module/Contact/Profile.php:381 msgid "Update public posts" msgstr "" -#: src/Module/Contact/Profile.php:347 src/Module/Contact/Profile.php:431 +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 msgid "Update now" msgstr "" -#: src/Module/Contact/Profile.php:354 -msgid "Currently blocked" -msgstr "" - -#: src/Module/Contact/Profile.php:355 -msgid "Currently ignored" -msgstr "" - -#: src/Module/Contact/Profile.php:356 -msgid "Currently archived" -msgstr "" - -#: src/Module/Contact/Profile.php:357 +#: src/Module/Contact/Profile.php:385 msgid "Awaiting connection acknowledge" msgstr "" -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "" + +#: src/Module/Contact/Profile.php:394 #: src/Module/Notifications/Introductions.php:192 msgid "Hide this contact from others" msgstr "" -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:394 msgid "" "Replies/likes to your public posts may still be visible" msgstr "" -#: src/Module/Contact/Profile.php:359 +#: src/Module/Contact/Profile.php:395 msgid "Notification for new posts" msgstr "" -#: src/Module/Contact/Profile.php:359 +#: src/Module/Contact/Profile.php:395 msgid "Send a notification of every new post of this contact" msgstr "" -#: src/Module/Contact/Profile.php:361 +#: src/Module/Contact/Profile.php:397 msgid "Keyword Deny List" msgstr "" -#: src/Module/Contact/Profile.php:361 +#: src/Module/Contact/Profile.php:397 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "" -#: src/Module/Contact/Profile.php:379 -#: src/Module/Settings/TwoFactor/Index.php:139 +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:160 msgid "Actions" msgstr "" -#: src/Module/Contact/Profile.php:387 +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "" + +#: src/Module/Contact/Profile.php:423 msgid "Mirror postings from this contact" msgstr "" -#: src/Module/Contact/Profile.php:389 +#: src/Module/Contact/Profile.php:425 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "" -#: src/Module/Contact/Profile.php:441 +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" +msgstr "" + +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "" + +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "" + +#: src/Module/Contact/Profile.php:502 msgid "Refetch contact data" msgstr "" -#: src/Module/Contact/Profile.php:452 +#: src/Module/Contact/Profile.php:513 msgid "Toggle Blocked status" msgstr "" -#: src/Module/Contact/Profile.php:460 +#: src/Module/Contact/Profile.php:521 msgid "Toggle Ignored status" msgstr "" -#: src/Module/Contact/Profile.php:467 src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" +msgstr "" + +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 msgid "Revoke Follow" msgstr "" -#: src/Module/Contact/Profile.php:469 +#: src/Module/Contact/Profile.php:538 msgid "Revoke the follow from this contact" msgstr "" +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "" + #: src/Module/Contact/Revoke.php:63 msgid "Unknown contact." msgstr "" -#: src/Module/Contact/Revoke.php:73 src/Module/Group.php:110 -msgid "Contact is deleted." -msgstr "" - #: src/Module/Contact/Revoke.php:77 msgid "Contact is being deleted." msgstr "" @@ -7225,106 +6718,89 @@ msgstr "" #: src/Module/Contact/Revoke.php:108 #: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:53 src/Module/Register.php:130 -#: src/Module/Settings/TwoFactor/Trusted.php:125 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Yes" msgstr "" -#: src/Module/Conversation/Community.php:73 +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" + +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "" + +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "" + +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "" + +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "" + +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "" + +#: src/Module/Conversation/Channel.php:139 +#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 +#: src/Module/Search/Index.php:194 +msgid "No results." +msgstr "" + +#: src/Module/Conversation/Channel.php:177 +msgid "Channel not available." +msgstr "" + +#: src/Module/Conversation/Community.php:92 msgid "" "This community stream shows all public posts received by this node. They may " "not reflect the opinions of this node’s users." msgstr "" -#: src/Module/Conversation/Community.php:86 -msgid "Local Community" -msgstr "" - -#: src/Module/Conversation/Community.php:89 -msgid "Posts from local users on this server" -msgstr "" - -#: src/Module/Conversation/Community.php:97 -msgid "Global Community" -msgstr "" - -#: src/Module/Conversation/Community.php:100 -msgid "Posts from users of the whole federated network" -msgstr "" - -#: src/Module/Conversation/Community.php:133 -msgid "Own Contacts" -msgstr "" - -#: src/Module/Conversation/Community.php:137 -msgid "Include" -msgstr "" - -#: src/Module/Conversation/Community.php:138 -msgid "Hide" -msgstr "" - -#: src/Module/Conversation/Community.php:155 src/Module/Search/Index.php:151 -#: src/Module/Search/Index.php:193 -msgid "No results." -msgstr "" - -#: src/Module/Conversation/Community.php:211 +#: src/Module/Conversation/Community.php:180 msgid "Community option not available." msgstr "" -#: src/Module/Conversation/Community.php:227 +#: src/Module/Conversation/Community.php:196 msgid "Not available." msgstr "" -#: src/Module/Conversation/Network.php:172 -msgid "No such group" +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:176 +#: src/Module/Conversation/Network.php:222 #, php-format -msgid "Group: %s" +msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:254 -msgid "Latest Activity" +#: src/Module/Conversation/Network.php:250 +#, php-format +msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:257 -msgid "Sort by latest activity" +#: src/Module/Conversation/Network.php:329 +msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Network.php:262 -msgid "Latest Posts" +#: src/Module/Conversation/Timeline.php:162 +msgid "Own Contacts" msgstr "" -#: src/Module/Conversation/Network.php:265 -msgid "Sort by post received date" +#: src/Module/Conversation/Timeline.php:166 +msgid "Include" msgstr "" -#: src/Module/Conversation/Network.php:270 -msgid "Latest Creation" -msgstr "" - -#: src/Module/Conversation/Network.php:273 -msgid "Sort by post creation date" -msgstr "" - -#: src/Module/Conversation/Network.php:278 -#: src/Module/Settings/Profile/Index.php:227 -msgid "Personal" -msgstr "" - -#: src/Module/Conversation/Network.php:281 -msgid "Posts that mention or involve you" -msgstr "" - -#: src/Module/Conversation/Network.php:286 src/Object/Post.php:350 -msgid "Starred" -msgstr "" - -#: src/Module/Conversation/Network.php:289 -msgid "Favourite Posts" +#: src/Module/Conversation/Timeline.php:167 +msgid "Hide" msgstr "" #: src/Module/Credits.php:44 @@ -7354,6 +6830,14 @@ msgstr "" msgid "Result Item" msgstr "" +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "" +msgstr[1] "" + #: src/Module/Debug/ActivityPubConversion.php:138 msgid "Source activity" msgstr "" @@ -7535,7 +7019,7 @@ msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" #: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:141 +#: src/Module/Settings/Profile/Index.php:177 msgid "You must be logged in to use this module" msgstr "" @@ -7596,29 +7080,6 @@ msgstr "" msgid "Lookup address:" msgstr "" -#: src/Module/Delegation.php:110 -#, php-format -msgid "You are now logged in as %s" -msgstr "" - -#: src/Module/Delegation.php:142 -msgid "Switch between your accounts" -msgstr "" - -#: src/Module/Delegation.php:143 -msgid "Manage your accounts" -msgstr "" - -#: src/Module/Delegation.php:144 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "" - -#: src/Module/Delegation.php:145 -msgid "Select an identity to manage: " -msgstr "" - #: src/Module/Directory.php:74 msgid "No entries (some entries may be hidden)." msgstr "" @@ -7664,138 +7125,65 @@ msgstr "" msgid "Suggest a friend for %s" msgstr "" -#: src/Module/Friendica.php:63 +#: src/Module/Friendica.php:82 msgid "Installed addons/apps:" msgstr "" -#: src/Module/Friendica.php:68 +#: src/Module/Friendica.php:87 msgid "No installed addons/apps" msgstr "" -#: src/Module/Friendica.php:73 +#: src/Module/Friendica.php:92 #, php-format msgid "Read about the Terms of Service of this node." msgstr "" -#: src/Module/Friendica.php:80 +#: src/Module/Friendica.php:99 msgid "On this server the following remote servers are blocked." msgstr "" -#: src/Module/Friendica.php:85 +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +#: src/Module/Settings/Channels.php:164 +msgid "Reason for the block" +msgstr "" + +#: src/Module/Friendica.php:104 msgid "Download this list in CSV format" msgstr "" -#: src/Module/Friendica.php:99 +#: src/Module/Friendica.php:118 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "" -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:123 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "" -#: src/Module/Friendica.php:105 +#: src/Module/Friendica.php:124 msgid "Bug reports and issues: please visit" msgstr "" -#: src/Module/Friendica.php:105 +#: src/Module/Friendica.php:124 msgid "the bugtracker at github" msgstr "" -#: src/Module/Friendica.php:106 +#: src/Module/Friendica.php:125 msgid "" "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "" -#: src/Module/Group.php:56 -msgid "Could not create group." -msgstr "" - -#: src/Module/Group.php:67 src/Module/Group.php:213 src/Module/Group.php:237 -msgid "Group not found." -msgstr "" - -#: src/Module/Group.php:73 -msgid "Group name was not changed." -msgstr "" - -#: src/Module/Group.php:91 -msgid "Unknown group." -msgstr "" - -#: src/Module/Group.php:116 -msgid "Unable to add the contact to the group." -msgstr "" - -#: src/Module/Group.php:119 -msgid "Contact successfully added to group." -msgstr "" - -#: src/Module/Group.php:123 -msgid "Unable to remove the contact from the group." -msgstr "" - -#: src/Module/Group.php:126 -msgid "Contact successfully removed from group." -msgstr "" - -#: src/Module/Group.php:130 -msgid "Bad request." -msgstr "" - -#: src/Module/Group.php:169 -msgid "Save Group" -msgstr "" - -#: src/Module/Group.php:170 -msgid "Filter" -msgstr "" - -#: src/Module/Group.php:176 -msgid "Create a group of contacts/friends." -msgstr "" - -#: src/Module/Group.php:218 -msgid "Unable to remove group." -msgstr "" - -#: src/Module/Group.php:269 -msgid "Delete Group" -msgstr "" - -#: src/Module/Group.php:279 -msgid "Edit Group Name" -msgstr "" - -#: src/Module/Group.php:289 -msgid "Members" -msgstr "" - -#: src/Module/Group.php:292 -msgid "Group is empty" -msgstr "" - -#: src/Module/Group.php:305 -msgid "Remove contact from group" -msgstr "" - -#: src/Module/Group.php:326 -msgid "Click on a contact to add or remove." -msgstr "" - -#: src/Module/Group.php:340 -msgid "Add contact to group" -msgstr "" - #: src/Module/HCard.php:45 msgid "No profile" msgstr "" -#: src/Module/HTTPException/MethodNotAllowed.php:32 +#: src/Module/HTTPException/MethodNotAllowed.php:31 msgid "Method Not Allowed." msgstr "" @@ -7803,160 +7191,153 @@ msgstr "" msgid "Help:" msgstr "" -#: src/Module/Home.php:54 +#: src/Module/Home.php:63 #, php-format msgid "Welcome to %s" msgstr "" -#: src/Module/Install.php:195 +#: src/Module/Install.php:189 msgid "Friendica Communications Server - Setup" msgstr "" -#: src/Module/Install.php:206 +#: src/Module/Install.php:200 msgid "System check" msgstr "" -#: src/Module/Install.php:208 src/Module/Install.php:265 -#: src/Module/Install.php:348 +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 msgid "Requirement not satisfied" msgstr "" -#: src/Module/Install.php:209 +#: src/Module/Install.php:203 msgid "Optional requirement not satisfied" msgstr "" -#: src/Module/Install.php:210 +#: src/Module/Install.php:204 msgid "OK" msgstr "" -#: src/Module/Install.php:215 +#: src/Module/Install.php:208 +msgid "Next" +msgstr "" + +#: src/Module/Install.php:209 msgid "Check again" msgstr "" -#: src/Module/Install.php:230 +#: src/Module/Install.php:222 msgid "Base settings" msgstr "" -#: src/Module/Install.php:237 -msgid "Host name" -msgstr "" - -#: src/Module/Install.php:239 -msgid "" -"Overwrite this field in case the determinated hostname isn't right, " -"otherweise leave it as is." -msgstr "" - -#: src/Module/Install.php:242 +#: src/Module/Install.php:224 msgid "Base path to installation" msgstr "" -#: src/Module/Install.php:244 +#: src/Module/Install.php:226 msgid "" "If the system cannot detect the correct path to your installation, enter the " "correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "" -#: src/Module/Install.php:247 -msgid "Sub path of the URL" +#: src/Module/Install.php:229 +msgid "The Friendica system URL" msgstr "" -#: src/Module/Install.php:249 +#: src/Module/Install.php:231 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." +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." msgstr "" -#: src/Module/Install.php:260 +#: src/Module/Install.php:242 msgid "Database connection" msgstr "" -#: src/Module/Install.php:261 +#: src/Module/Install.php:243 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "" -#: src/Module/Install.php:262 +#: src/Module/Install.php:244 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "" -#: src/Module/Install.php:263 +#: src/Module/Install.php:245 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "" -#: src/Module/Install.php:272 +#: src/Module/Install.php:252 msgid "Database Server Name" msgstr "" -#: src/Module/Install.php:277 +#: src/Module/Install.php:257 msgid "Database Login Name" msgstr "" -#: src/Module/Install.php:283 +#: src/Module/Install.php:263 msgid "Database Login Password" msgstr "" -#: src/Module/Install.php:285 +#: src/Module/Install.php:265 msgid "For security reasons the password must not be empty" msgstr "" -#: src/Module/Install.php:288 +#: src/Module/Install.php:268 msgid "Database Name" msgstr "" -#: src/Module/Install.php:292 src/Module/Install.php:322 +#: src/Module/Install.php:272 src/Module/Install.php:300 msgid "Please select a default timezone for your website" msgstr "" -#: src/Module/Install.php:307 +#: src/Module/Install.php:287 msgid "Site settings" msgstr "" -#: src/Module/Install.php:317 +#: src/Module/Install.php:295 msgid "Site administrator email address" msgstr "" -#: src/Module/Install.php:319 +#: src/Module/Install.php:297 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "" -#: src/Module/Install.php:326 +#: src/Module/Install.php:304 msgid "System Language:" msgstr "" -#: src/Module/Install.php:328 +#: src/Module/Install.php:306 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "" -#: src/Module/Install.php:340 +#: src/Module/Install.php:318 msgid "Your Friendica site database has been installed." msgstr "" -#: src/Module/Install.php:350 +#: src/Module/Install.php:328 msgid "Installation finished" msgstr "" -#: src/Module/Install.php:370 +#: src/Module/Install.php:348 msgid "

    What next

    " msgstr "" -#: src/Module/Install.php:371 +#: src/Module/Install.php:349 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the worker." msgstr "" -#: src/Module/Install.php:374 +#: src/Module/Install.php:352 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -8088,26 +7469,30 @@ msgstr "" msgid "Visibility" msgstr "" -#: src/Module/Item/Compose.php:201 +#: src/Module/Item/Compose.php:203 msgid "Clear the location" msgstr "" -#: src/Module/Item/Compose.php:202 +#: src/Module/Item/Compose.php:204 msgid "Location services are unavailable on your device" msgstr "" -#: src/Module/Item/Compose.php:203 +#: src/Module/Item/Compose.php:205 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "" -#: src/Module/Item/Compose.php:209 +#: src/Module/Item/Compose.php:211 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "" +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "" + #: src/Module/Item/Follow.php:51 msgid "Unable to follow this item." msgstr "" @@ -8127,6 +7512,988 @@ msgstr "" msgid "A Decentralized Social Network" msgstr "" +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:129 +msgid "Upload" +msgstr "" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "" + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:69 +msgid "Unable to process image." +msgstr "" + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:96 +msgid "Image upload failed." +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:472 +msgid "Normal Account Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:479 +msgid "Soapbox Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:486 +msgid "Public Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:493 +msgid "Automatic Friend Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:444 +msgid "Personal Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:451 +msgid "Organisation Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:458 +msgid "News Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:465 +msgid "Community Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact " +"record. This action cannot be undone." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include " +"the protocol." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +#: src/Module/Settings/Channels.php:163 +msgid "Blocked server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +msgid "" +"The list of blocked server domain patterns will be made publically available " +"on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "" + +#: src/Module/Moderation/Item/Delete.php:65 +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 "" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's " +"hosting juridiction." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private " +"information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme " +"or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you reported:" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can " +"appear in forum threads. They still can follow you." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can " +"appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "" + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "" + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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 "" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "" + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "" + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "" + #: src/Module/Notifications/Introductions.php:99 msgid "Show Ignored Requests" msgstr "" @@ -8149,8 +8516,8 @@ msgid "Claims to be known to you: " msgstr "" #: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:125 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "No" msgstr "" @@ -8214,20 +8581,20 @@ msgstr "" msgid "Show unread" msgstr "" -#: src/Module/Notifications/Ping.php:224 +#: src/Module/Notifications/Ping.php:246 msgid "{0} requested registration" msgstr "" -#: src/Module/Notifications/Ping.php:235 +#: src/Module/Notifications/Ping.php:255 #, php-format msgid "{0} and %d others requested registration" msgstr "" -#: src/Module/OAuth/Acknowledge.php:50 +#: src/Module/OAuth/Acknowledge.php:51 msgid "Authorize application connection" msgstr "" -#: src/Module/OAuth/Acknowledge.php:52 +#: src/Module/OAuth/Acknowledge.php:53 msgid "" "Do you want to authorize this application to access your posts and contacts, " "and/or create new posts for you?" @@ -8237,7 +8604,7 @@ msgstr "" msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:72 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 msgid "Incomplete request data" msgstr "" @@ -8248,168 +8615,368 @@ msgid "" "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:96 +#: src/Module/OAuth/Token.php:83 +msgid "Invalid data or unknown client" +msgstr "" + +#: src/Module/OAuth/Token.php:108 msgid "Unsupported or missing grant type" msgstr "" +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "" + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "" + #: src/Module/PermissionTooltip.php:49 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "" -#: src/Module/PermissionTooltip.php:66 +#: src/Module/PermissionTooltip.php:79 msgid "Model not found" msgstr "" -#: src/Module/PermissionTooltip.php:89 +#: src/Module/PermissionTooltip.php:94 msgid "Unlisted" msgstr "" -#: src/Module/PermissionTooltip.php:107 +#: src/Module/PermissionTooltip.php:112 msgid "Remote privacy information not available." msgstr "" -#: src/Module/PermissionTooltip.php:116 +#: src/Module/PermissionTooltip.php:120 msgid "Visible to:" msgstr "" -#: src/Module/PermissionTooltip.php:200 +#: src/Module/PermissionTooltip.php:214 #, php-format msgid "Collection (%s)" msgstr "" -#: src/Module/PermissionTooltip.php:204 +#: src/Module/PermissionTooltip.php:218 #, php-format msgid "Followers (%s)" msgstr "" -#: src/Module/PermissionTooltip.php:223 +#: src/Module/PermissionTooltip.php:237 #, php-format msgid "%d more" msgstr "" -#: src/Module/PermissionTooltip.php:227 +#: src/Module/PermissionTooltip.php:241 #, php-format msgid "To: %s
    " msgstr "" -#: src/Module/PermissionTooltip.php:230 +#: src/Module/PermissionTooltip.php:244 #, php-format msgid "CC: %s
    " msgstr "" -#: src/Module/PermissionTooltip.php:233 +#: src/Module/PermissionTooltip.php:247 #, php-format msgid "BCC: %s
    " msgstr "" -#: src/Module/Photo.php:128 +#: src/Module/PermissionTooltip.php:250 +#, php-format +msgid "Audience: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:253 +#, php-format +msgid "Attributed To: %s
    " +msgstr "" + +#: src/Module/Photo.php:130 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:141 +#: src/Module/Photo.php:155 #, php-format msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:192 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:194 #, php-format msgid "Invalid photo with id %s." msgstr "" -#: src/Module/Profile/Contacts.php:119 +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "" + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "" + +#: src/Module/Post/Tag/Remove.php:108 +#: src/Module/Settings/TwoFactor/Trusted.php:147 +msgid "Remove" +msgstr "" + +#: src/Module/Profile/Contacts.php:159 msgid "No contacts." msgstr "" -#: src/Module/Profile/Profile.php:81 +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:60 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "" + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "" + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 msgid "Profile not found." msgstr "" -#: src/Module/Profile/Profile.php:134 +#: src/Module/Profile/Profile.php:158 #, php-format msgid "" -"You're currently viewing your profile as %s Cancel" +"You're currently viewing your profile as %s Cancel" msgstr "" -#: src/Module/Profile/Profile.php:143 src/Module/Settings/Account.php:579 +#: src/Module/Profile/Profile.php:167 msgid "Full Name:" msgstr "" -#: src/Module/Profile/Profile.php:148 +#: src/Module/Profile/Profile.php:172 msgid "Member since:" msgstr "" -#: src/Module/Profile/Profile.php:154 +#: src/Module/Profile/Profile.php:178 msgid "j F, Y" msgstr "" -#: src/Module/Profile/Profile.php:155 +#: src/Module/Profile/Profile.php:179 msgid "j F" msgstr "" -#: src/Module/Profile/Profile.php:163 src/Util/Temporal.php:166 +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 msgid "Birthday:" msgstr "" -#: src/Module/Profile/Profile.php:166 src/Module/Settings/Profile/Index.php:245 -#: src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:190 src/Module/Settings/Profile/Index.php:291 +#: src/Util/Temporal.php:170 msgid "Age: " msgstr "" -#: src/Module/Profile/Profile.php:166 src/Module/Settings/Profile/Index.php:245 -#: src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:190 src/Module/Settings/Profile/Index.php:291 +#: src/Util/Temporal.php:170 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "" msgstr[1] "" -#: src/Module/Profile/Profile.php:233 -msgid "Forums:" +#: src/Module/Profile/Profile.php:195 src/Module/Settings/Profile/Index.php:284 +msgid "Description:" msgstr "" -#: src/Module/Profile/Profile.php:245 +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "" + +#: src/Module/Profile/Profile.php:273 msgid "View profile as:" msgstr "" -#: src/Module/Profile/Profile.php:262 +#: src/Module/Profile/Profile.php:290 msgid "View as" msgstr "" -#: src/Module/Profile/Profile.php:325 src/Module/Profile/Profile.php:328 -#: src/Module/Profile/Status.php:65 src/Module/Profile/Status.php:68 -#: src/Protocol/Feed.php:1028 src/Protocol/OStatus.php:1047 -#, php-format -msgid "%s's timeline" +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." msgstr "" -#: src/Module/Profile/Profile.php:326 src/Module/Profile/Status.php:66 -#: src/Protocol/Feed.php:1032 src/Protocol/OStatus.php:1052 -#, php-format -msgid "%s's posts" +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" msgstr "" -#: src/Module/Profile/Profile.php:327 src/Module/Profile/Status.php:67 -#: src/Protocol/Feed.php:1035 src/Protocol/OStatus.php:1056 -#, php-format -msgid "%s's comments" +#: src/Module/Profile/RemoteFollow.php:95 +msgid "The provided profile link doesn't seem to be valid" msgstr "" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/RemoteFollow.php:100 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:128 +msgid "Friend/Connection Request" +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:129 +#, 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 "" + +#: src/Module/Profile/RemoteFollow.php:130 +#, 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 "" + +#: src/Module/Profile/RemoteFollow.php:131 +msgid "Your Webfinger address or profile URL:" +msgstr "" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "" + +#: src/Module/Profile/Schedule.php:83 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:84 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:86 +#: src/Module/Profile/Schedule.php:85 msgid "Remove post" msgstr "" @@ -8430,22 +8997,22 @@ msgstr "" msgid "Number of daily wall messages for %s exceeded. Message failed." msgstr "" -#: src/Module/Profile/UnkMail.php:153 +#: src/Module/Profile/UnkMail.php:152 #, 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 "" -#: src/Module/Profile/UnkMail.php:161 +#: src/Module/Profile/UnkMail.php:160 msgid "To" msgstr "" -#: src/Module/Profile/UnkMail.php:162 +#: src/Module/Profile/UnkMail.php:161 msgid "Subject" msgstr "" -#: src/Module/Profile/UnkMail.php:163 +#: src/Module/Profile/UnkMail.php:162 msgid "Your message" msgstr "" @@ -8453,6 +9020,12 @@ msgstr "" msgid "Only parent users can create additional accounts." msgstr "" +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + #: src/Module/Register.php:116 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " @@ -8490,7 +9063,7 @@ msgid "Your invitation code: " msgstr "" #: src/Module/Register.php:158 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgid "Your Display Name (as you would like it to be displayed on this system" msgstr "" #: src/Module/Register.php:159 @@ -8503,8 +9076,8 @@ msgstr "" msgid "Please repeat your e-mail address:" msgstr "" -#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:570 +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:547 msgid "New Password:" msgstr "" @@ -8512,8 +9085,8 @@ msgstr "" msgid "Leave empty for an auto generated password." msgstr "" -#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:102 -#: src/Module/Settings/Account.php:571 +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:548 msgid "Confirm:" msgstr "" @@ -8528,6 +9101,10 @@ msgstr "" msgid "Choose a nickname: " msgstr "" +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "" + #: src/Module/Register.php:174 msgid "Import your profile to this friendica instance" msgstr "" @@ -8536,11 +9113,11 @@ msgstr "" msgid "Note: This node explicitly contains adult content" msgstr "" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:154 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 msgid "Parent Password:" msgstr "" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:154 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "" @@ -8570,83 +9147,47 @@ msgid "" "Registration successful. Please check your email for further instructions." msgstr "" -#: src/Module/Register.php:339 +#: src/Module/Register.php:342 #, php-format msgid "" "Failed to send email message. Here your accout details:
    login: %s
    " "password: %s

    You can change your password after login." msgstr "" -#: src/Module/Register.php:345 +#: src/Module/Register.php:348 msgid "Registration successful." msgstr "" -#: src/Module/Register.php:350 src/Module/Register.php:357 +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 msgid "Your registration can not be processed." msgstr "" -#: src/Module/Register.php:356 +#: src/Module/Register.php:363 msgid "You have to leave a request note for the admin." msgstr "" -#: src/Module/Register.php:402 +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "" + +#: src/Module/Register.php:395 msgid "Your registration is pending approval by the site owner." msgstr "" -#: src/Module/RemoteFollow.php:72 -msgid "Profile unavailable." -msgstr "" - -#: src/Module/RemoteFollow.php:78 -msgid "Invalid locator" -msgstr "" - -#: src/Module/RemoteFollow.php:85 -msgid "The provided profile link doesn't seem to be valid" -msgstr "" - -#: src/Module/RemoteFollow.php:90 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "" - -#: src/Module/RemoteFollow.php:122 -msgid "Friend/Connection Request" -msgstr "" - -#: src/Module/RemoteFollow.php:123 -#, 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 "" - -#: src/Module/RemoteFollow.php:124 -#, 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 "" - -#: src/Module/RemoteFollow.php:125 -msgid "Your Webfinger address or profile URL:" -msgstr "" - -#: src/Module/Search/Acl.php:55 +#: src/Module/Search/Acl.php:73 msgid "You must be logged in to use this module." msgstr "" -#: src/Module/Search/Index.php:68 +#: src/Module/Search/Index.php:69 msgid "Only logged in users are permitted to perform a search." msgstr "" -#: src/Module/Search/Index.php:88 +#: src/Module/Search/Index.php:89 msgid "Only one search per minute is permitted for not logged in users." msgstr "" -#: src/Module/Search/Index.php:204 +#: src/Module/Search/Index.php:205 #, php-format msgid "Items tagged with: %s" msgstr "" @@ -8667,45 +9208,45 @@ msgstr "" msgid "Create a New Account" msgstr "" -#: src/Module/Security/Login.php:143 +#: src/Module/Security/Login.php:142 msgid "Your OpenID: " msgstr "" -#: src/Module/Security/Login.php:146 +#: src/Module/Security/Login.php:145 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "" -#: src/Module/Security/Login.php:148 +#: src/Module/Security/Login.php:147 msgid "Or login using OpenID: " msgstr "" -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:161 msgid "Password: " msgstr "" -#: src/Module/Security/Login.php:163 +#: src/Module/Security/Login.php:162 msgid "Remember me" msgstr "" -#: src/Module/Security/Login.php:172 +#: src/Module/Security/Login.php:171 msgid "Forgot your password?" msgstr "" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:174 msgid "Website Terms of Service" msgstr "" -#: src/Module/Security/Login.php:176 +#: src/Module/Security/Login.php:175 msgid "terms of service" msgstr "" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:177 msgid "Website Privacy Policy" msgstr "" -#: src/Module/Security/Login.php:179 +#: src/Module/Security/Login.php:178 msgid "privacy policy" msgstr "" @@ -8762,25 +9303,25 @@ msgstr "" msgid "Update Password" msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:572 +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:549 msgid "Current Password:" msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:572 +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:549 msgid "Your current password to confirm the changes" msgstr "" -#: src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:555 +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:533 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." +"spaces and accentuated letters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:556 +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:534 msgid "Password length is limited to 72 characters." msgstr "" @@ -8791,7 +9332,7 @@ msgstr "" #: src/Module/Security/TwoFactor/Recovery.php:80 #: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:98 msgid "Invalid code, please retry." msgstr "" @@ -8872,12 +9413,12 @@ msgstr "" #: src/Module/Security/TwoFactor/Verify.php:100 #, php-format msgid "" -"If you do not have access to your authentication code you can use a two-factor recovery code." +"If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" #: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:154 +#: src/Module/Settings/TwoFactor/Verify.php:158 msgid "Please enter a code from your authentication app" msgstr "" @@ -8901,103 +9442,103 @@ msgstr "" msgid "Invalid email." msgstr "" -#: src/Module/Settings/Account.php:119 +#: src/Module/Settings/Account.php:117 msgid "Cannot change to that email." msgstr "" -#: src/Module/Settings/Account.php:149 src/Module/Settings/Account.php:201 -#: src/Module/Settings/Account.php:221 src/Module/Settings/Account.php:305 -#: src/Module/Settings/Account.php:354 +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:220 src/Module/Settings/Account.php:304 +#: src/Module/Settings/Account.php:331 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:366 +#: src/Module/Settings/Account.php:344 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:385 +#: src/Module/Settings/Account.php:363 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:398 +#: src/Module/Settings/Account.php:376 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:415 +#: src/Module/Settings/Account.php:393 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: src/Module/Settings/Account.php:457 +#: src/Module/Settings/Account.php:435 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:458 -msgid "Community Forum Subtypes" +#: src/Module/Settings/Account.php:436 +msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:468 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "" -#: src/Module/Settings/Account.php:475 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:482 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:489 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:496 +#: src/Module/Settings/Account.php:474 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:503 +#: src/Module/Settings/Account.php:481 msgid "" "Account for a public profile that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:488 msgid "Automatically approves all contact requests." msgstr "" -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:495 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:522 -msgid "Private Forum [Experimental]" +#: src/Module/Settings/Account.php:500 +msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:524 +#: src/Module/Settings/Account.php:502 msgid "Requires manual approval of contact requests." msgstr "" -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:511 msgid "OpenID:" msgstr "" -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:511 msgid "(Optional) Allow this OpenID to login to this account." msgstr "" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:519 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:519 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9005,89 +9546,94 @@ msgid "" "system settings." msgstr "" -#: src/Module/Settings/Account.php:547 +#: src/Module/Settings/Account.php:525 #, php-format msgid "" "Your profile will also be published in the global friendica directories (e." "g. %s)." msgstr "" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:538 msgid "Account Settings" msgstr "" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:539 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:546 msgid "Password Settings" msgstr "" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:548 msgid "Leave password fields blank unless changing" msgstr "" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:550 msgid "Password:" msgstr "" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:550 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:553 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:555 msgid "Basic Settings" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "" + +#: src/Module/Settings/Account.php:557 msgid "Email Address:" msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:558 msgid "Your Timezone:" msgstr "" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:559 msgid "Your Language:" msgstr "" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:559 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:560 msgid "Default Post Location:" msgstr "" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:561 msgid "Use Browser Location:" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:563 msgid "Security and Privacy Settings" msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:565 msgid "Maximum Friend Requests/Day:" msgstr "" -#: src/Module/Settings/Account.php:588 src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:565 src/Module/Settings/Account.php:575 msgid "(to prevent spam abuse)" msgstr "" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:567 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:567 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 " @@ -9095,43 +9641,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:568 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:568 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: src/Module/Settings/Account.php:592 -msgid "Hide your profile details from anonymous viewers?" +#: src/Module/Settings/Account.php:569 +msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:569 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." +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:570 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:570 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:571 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:571 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 " @@ -9139,566 +9685,897 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:572 msgid "Allow friends to post to your profile page?" msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:572 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:573 msgid "Allow friends to tag your posts?" msgstr "" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:573 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:574 msgid "Permit unknown people to send you private mail?" msgstr "" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:574 msgid "" "Friendica network users may send you private messages even if they are not " "in your contact list." msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:575 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:576 +msgid "Default privacy circle for new contacts" +msgstr "" + +#: src/Module/Settings/Account.php:577 +msgid "Default privacy circle for new group contacts" +msgstr "" + +#: src/Module/Settings/Account.php:578 msgid "Default Post Permissions" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:582 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:583 msgid "Automatically expire posts after this many days:" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:583 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:584 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:584 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:585 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:585 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:586 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:586 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:587 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:587 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:590 msgid "Notification Settings" msgstr "" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:591 msgid "Send a notification email when:" msgstr "" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:592 msgid "You receive an introduction" msgstr "" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:593 msgid "Your introductions are confirmed" msgstr "" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:594 msgid "Someone writes on your profile wall" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:595 msgid "Someone writes a followup comment" msgstr "" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:596 msgid "You receive a private message" msgstr "" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:597 msgid "You receive a friend suggestion" msgstr "" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:598 msgid "You are tagged in a post" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:600 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:601 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:602 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:603 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:625 src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:603 src/Module/Settings/Account.php:604 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:604 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:605 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:606 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:607 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:631 +#: src/Module/Settings/Account.php:609 msgid "Activate desktop notifications" msgstr "" -#: src/Module/Settings/Account.php:631 +#: src/Module/Settings/Account.php:609 msgid "Show desktop popup on new notifications" msgstr "" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:613 msgid "Text-only notification emails" msgstr "" -#: src/Module/Settings/Account.php:637 +#: src/Module/Settings/Account.php:615 msgid "Send text only notification emails, without the html part" msgstr "" -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:619 msgid "Show detailled notifications" msgstr "" -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:621 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:625 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:627 msgid "" "You don't see posts from ignored contacts. But you still see their comments. " "This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:652 +#: src/Module/Settings/Account.php:630 msgid "Advanced Account/Page Type Settings" msgstr "" -#: src/Module/Settings/Account.php:653 +#: src/Module/Settings/Account.php:631 msgid "Change the behaviour of this account for special situations" msgstr "" -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:634 msgid "Import Contacts" msgstr "" -#: src/Module/Settings/Account.php:657 +#: src/Module/Settings/Account.php:635 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: src/Module/Settings/Account.php:658 +#: src/Module/Settings/Account.php:636 msgid "Upload File" msgstr "" -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:639 msgid "Relocate" msgstr "" -#: src/Module/Settings/Account.php:662 +#: src/Module/Settings/Account.php:640 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "" -#: src/Module/Settings/Account.php:663 +#: src/Module/Settings/Account.php:641 msgid "Resend relocate message to contacts" msgstr "" -#: src/Module/Settings/Delegation.php:52 +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "" + +#: src/Module/Settings/Channels.php:130 src/Module/Settings/Channels.php:146 +#: src/Module/Settings/Display.php:330 +msgid "Label" +msgstr "" + +#: src/Module/Settings/Channels.php:131 src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +msgid "Description" +msgstr "" + +#: src/Module/Settings/Channels.php:132 src/Module/Settings/Channels.php:148 +msgid "Access Key" +msgstr "" + +#: src/Module/Settings/Channels.php:133 src/Module/Settings/Channels.php:149 +msgid "Circle/Channel" +msgstr "" + +#: src/Module/Settings/Channels.php:134 src/Module/Settings/Channels.php:150 +msgid "Include Tags" +msgstr "" + +#: src/Module/Settings/Channels.php:135 src/Module/Settings/Channels.php:151 +msgid "Exclude Tags" +msgstr "" + +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:152 +msgid "Full Text Search" +msgstr "" + +#: src/Module/Settings/Channels.php:140 +msgid "Delete channel" +msgstr "" + +#: src/Module/Settings/Channels.php:140 +msgid "Check to delete this entry from the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:146 +msgid "Short name for the channel. It is displayed on the channels widget." +msgstr "" + +#: src/Module/Settings/Channels.php:147 +msgid "This should describe the content of the channel in a few word." +msgstr "" + +#: src/Module/Settings/Channels.php:148 +msgid "" +"When you want to access this channel via an access key, you can define it " +"here. Pay attention to not use an already used one." +msgstr "" + +#: src/Module/Settings/Channels.php:149 +msgid "Select a circle or channel, that your channel should be based on." +msgstr "" + +#: src/Module/Settings/Channels.php:150 +msgid "" +"Comma separated list of tags. A post will be used when it contains any of " +"the listed tags." +msgstr "" + +#: src/Module/Settings/Channels.php:151 +msgid "" +"Comma separated list of tags. If a post contain any of these tags, then it " +"will not be part of nthis channel." +msgstr "" + +#: src/Module/Settings/Channels.php:152 +#, php-format +msgid "" +"Search terms for the body, supports the \"boolean mode\" operators from " +"MariaDB. See the help for a complete list of operators and additional " +"keywords: %s" +msgstr "" + +#: src/Module/Settings/Channels.php:153 +msgid "Check to display images in the channel." +msgstr "" + +#: src/Module/Settings/Channels.php:154 +msgid "Check to display videos in the channel." +msgstr "" + +#: src/Module/Settings/Channels.php:155 +msgid "Check to display audio in the channel." +msgstr "" + +#: src/Module/Settings/Channels.php:158 +msgid "This page can be used to define your own channels." +msgstr "" + +#: src/Module/Settings/Channels.php:159 +msgid "Add new entry to the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:160 +msgid "Add" +msgstr "" + +#: src/Module/Settings/Channels.php:162 +msgid "Current Entries in the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:165 +msgid "Delete entry from the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:166 +msgid "Delete entry from the channel list?" +msgstr "" + +#: src/Module/Settings/Connectors.php:121 +msgid "Failed to connect with email account using the settings provided." +msgstr "" + +#: src/Module/Settings/Connectors.php:168 +#: src/Module/Settings/Connectors.php:169 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "" + +#: src/Module/Settings/Connectors.php:168 +#: src/Module/Settings/Connectors.php:172 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:171 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:171 +#: src/Module/Settings/Connectors.php:172 +msgid "OStatus (GNU Social)" +msgstr "" + +#: src/Module/Settings/Connectors.php:184 +msgid "Email access is disabled on this site." +msgstr "" + +#: src/Module/Settings/Connectors.php:199 +#: src/Module/Settings/Connectors.php:247 +msgid "None" +msgstr "" + +#: src/Module/Settings/Connectors.php:211 +msgid "General Social Media Settings" +msgstr "" + +#: src/Module/Settings/Connectors.php:214 +msgid "Followed content scope" +msgstr "" + +#: src/Module/Settings/Connectors.php:216 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 +msgid "Only conversations my follows started" +msgstr "" + +#: src/Module/Settings/Connectors.php:219 +msgid "Conversations my follows started or commented on (default)" +msgstr "" + +#: src/Module/Settings/Connectors.php:220 +msgid "Any conversation my follows interacted with, including likes" +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable Content Warning" +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning " +"field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't " +"affect any other content filtering you eventually set up." +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "Show content warnings on own posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"Normally Friendica only displays content warnings on posts created by other " +"users. If this option is enabled it will also display content warnings on " +"your own posts." +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "Enable intelligent shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "Enable simple text shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character limit." +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "Attach the link title" +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that " +"share feed content." +msgstr "" + +#: src/Module/Settings/Connectors.php:228 +msgid "API: Use spoiler field as title" +msgstr "" + +#: src/Module/Settings/Connectors.php:228 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "" + +#: src/Module/Settings/Connectors.php:229 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:229 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "" + +#: src/Module/Settings/Connectors.php:230 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/Connectors.php:230 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your " +"contacts will be added automatically. The field will be emptied when done." +msgstr "" + +#: src/Module/Settings/Connectors.php:232 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: src/Module/Settings/Connectors.php:236 +msgid "Email/Mailbox Setup" +msgstr "" + +#: src/Module/Settings/Connectors.php:237 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "" + +#: src/Module/Settings/Connectors.php:238 +msgid "Last successful email check:" +msgstr "" + +#: src/Module/Settings/Connectors.php:240 +msgid "IMAP server name:" +msgstr "" + +#: src/Module/Settings/Connectors.php:241 +msgid "IMAP port:" +msgstr "" + +#: src/Module/Settings/Connectors.php:242 +msgid "Security:" +msgstr "" + +#: src/Module/Settings/Connectors.php:243 +msgid "Email login name:" +msgstr "" + +#: src/Module/Settings/Connectors.php:244 +msgid "Email password:" +msgstr "" + +#: src/Module/Settings/Connectors.php:245 +msgid "Reply-to address:" +msgstr "" + +#: src/Module/Settings/Connectors.php:246 +msgid "Send public posts to all email contacts:" +msgstr "" + +#: src/Module/Settings/Connectors.php:247 +msgid "Action after import:" +msgstr "" + +#: src/Module/Settings/Connectors.php:247 +msgid "Move to folder" +msgstr "" + +#: src/Module/Settings/Connectors.php:248 +msgid "Move to folder:" +msgstr "" + +#: src/Module/Settings/Delegation.php:73 msgid "Delegation successfully granted." msgstr "" -#: src/Module/Settings/Delegation.php:54 +#: src/Module/Settings/Delegation.php:75 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:58 +#: src/Module/Settings/Delegation.php:79 msgid "Delegation successfully revoked." msgstr "" -#: src/Module/Settings/Delegation.php:80 src/Module/Settings/Delegation.php:102 +#: src/Module/Settings/Delegation.php:98 src/Module/Settings/Delegation.php:120 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:94 +#: src/Module/Settings/Delegation.php:112 msgid "Delegate user not found." msgstr "" -#: src/Module/Settings/Delegation.php:142 +#: src/Module/Settings/Delegation.php:169 msgid "No parent user" msgstr "" -#: src/Module/Settings/Delegation.php:153 -#: src/Module/Settings/Delegation.php:164 +#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:191 msgid "Parent User" msgstr "" -#: src/Module/Settings/Delegation.php:161 +#: src/Module/Settings/Delegation.php:188 msgid "Additional Accounts" msgstr "" -#: src/Module/Settings/Delegation.php:162 +#: src/Module/Settings/Delegation.php:189 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:163 +#: src/Module/Settings/Delegation.php:190 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:167 +#: src/Module/Settings/Delegation.php:192 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "" -#: src/Module/Settings/Delegation.php:171 +#: src/Module/Settings/Delegation.php:195 msgid "Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:173 +#: src/Module/Settings/Delegation.php:196 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 "" -#: src/Module/Settings/Delegation.php:174 +#: src/Module/Settings/Delegation.php:197 msgid "Existing Page Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:176 +#: src/Module/Settings/Delegation.php:198 msgid "Potential Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:179 -msgid "Add" -msgstr "" - -#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:199 msgid "No entries." msgstr "" -#: src/Module/Settings/Display.php:106 +#: src/Module/Settings/Display.php:179 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:145 +#: src/Module/Settings/Display.php:219 #, php-format msgid "%s - (Unsupported)" msgstr "" -#: src/Module/Settings/Display.php:199 +#: src/Module/Settings/Display.php:254 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:255 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:256 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:257 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:302 msgid "Display Settings" msgstr "" -#: src/Module/Settings/Display.php:201 +#: src/Module/Settings/Display.php:304 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:202 +#: src/Module/Settings/Display.php:305 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:203 +#: src/Module/Settings/Display.php:306 msgid "Content Settings" msgstr "" -#: src/Module/Settings/Display.php:204 view/theme/duepuntozero/config.php:86 +#: src/Module/Settings/Display.php:307 view/theme/duepuntozero/config.php:86 #: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "" -#: src/Module/Settings/Display.php:205 -msgid "Calendar" +#: src/Module/Settings/Display.php:308 +msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:211 +#: src/Module/Settings/Display.php:315 msgid "Display Theme:" msgstr "" -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:316 msgid "Mobile Theme:" msgstr "" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:319 msgid "Number of items to display per page:" msgstr "" -#: src/Module/Settings/Display.php:215 src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:319 src/Module/Settings/Display.php:320 msgid "Maximum of 100 items" msgstr "" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:320 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:321 msgid "Update browser every xx seconds" msgstr "" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:321 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:218 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "" - -#: src/Module/Settings/Display.php:218 -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 "" - -#: src/Module/Settings/Display.php:219 +#: src/Module/Settings/Display.php:322 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:219 +#: src/Module/Settings/Display.php:322 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:220 +#: src/Module/Settings/Display.php:323 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:220 +#: src/Module/Settings/Display.php:323 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:221 +#: src/Module/Settings/Display.php:324 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:221 +#: src/Module/Settings/Display.php:324 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:222 +#: src/Module/Settings/Display.php:325 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:222 +#: src/Module/Settings/Display.php:325 msgid "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:326 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:326 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:224 +#: src/Module/Settings/Display.php:327 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:224 +#: src/Module/Settings/Display.php:327 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:226 +#: src/Module/Settings/Display.php:328 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:328 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "" + +#: src/Module/Settings/Display.php:333 +msgid "Bookmark" +msgstr "" + +#: src/Module/Settings/Display.php:335 +msgid "" +"Enable timelines that you want to see in the channels widget. Bookmark " +"timelines that you want to see in the top menu." +msgstr "" + +#: src/Module/Settings/Display.php:337 +msgid "Channel languages:" +msgstr "" + +#: src/Module/Settings/Display.php:337 +msgid "Select all languages that you want to see in your channels." +msgstr "" + +#: src/Module/Settings/Display.php:339 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Profile/Index.php:83 -msgid "Profile Name is required." +#: src/Module/Settings/Display.php:340 +msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Profile/Index.php:131 +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:167 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:172 -#: src/Module/Settings/Profile/Index.php:192 +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:173 -#: src/Module/Settings/Profile/Index.php:193 +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:183 -#: src/Module/Settings/Profile/Index.php:203 +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:184 -#: src/Module/Settings/Profile/Index.php:204 +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 msgid "(click to open/close)" msgstr "" -#: src/Module/Settings/Profile/Index.php:190 +#: src/Module/Settings/Profile/Index.php:224 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:220 -msgid "Profile Actions" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:221 -msgid "Edit Profile Details" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:223 -msgid "Change Profile Photo" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:228 -msgid "Profile picture" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:229 -msgid "Location" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:230 src/Util/Temporal.php:95 -#: src/Util/Temporal.php:97 -msgid "Miscellaneous" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:231 -msgid "Custom Profile Fields" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:233 src/Module/Welcome.php:58 -msgid "Upload Profile Photo" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:237 -msgid "Display name:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:240 -msgid "Street Address:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:241 -msgid "Locality/City:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:242 -msgid "Region/State:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:243 -msgid "Postal/Zip Code:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:244 -msgid "Country:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "XMPP (Jabber) address:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "The XMPP address will be published so that people can follow you there." -msgstr "" - -#: src/Module/Settings/Profile/Index.php:247 -msgid "Matrix (Element) address:" -msgstr "" - #: src/Module/Settings/Profile/Index.php:247 msgid "" -"The Matrix address will be published so that people can follow you there." -msgstr "" - -#: src/Module/Settings/Profile/Index.php:248 -msgid "Homepage URL:" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." msgstr "" #: src/Module/Settings/Profile/Index.php:249 -msgid "Public Keywords:" +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 -msgid "(Used for suggesting potential friends, can be seen by others)" +#: src/Module/Settings/Profile/Index.php:255 +msgid "Profile Actions" msgstr "" -#: src/Module/Settings/Profile/Index.php:250 -msgid "Private Keywords:" +#: src/Module/Settings/Profile/Index.php:256 +msgid "Edit Profile Details" msgstr "" -#: src/Module/Settings/Profile/Index.php:250 -msgid "(Used for searching profiles, never shown to others)" +#: src/Module/Settings/Profile/Index.php:258 +msgid "Change Profile Photo" msgstr "" -#: src/Module/Settings/Profile/Index.php:251 +#: src/Module/Settings/Profile/Index.php:261 +msgid "Profile picture" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:262 +msgid "Location" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 +msgid "Miscellaneous" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:264 +msgid "Custom Profile Fields" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +msgid "Upload Profile Photo" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:266 #, php-format msgid "" "

    Custom fields appear on your profile page.

    \n" @@ -9706,13 +10583,70 @@ msgid "" "\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.

    " +"contacts or the Friendica contacts in the selected circles.

    " +msgstr "" + +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "The XMPP address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" msgstr "" #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:101 +#: src/Module/Settings/Profile/Photo/Index.php:102 #, php-format msgid "Image size reduction [%s] failed." msgstr "" @@ -9748,218 +10682,299 @@ msgstr "" msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:45 +#: src/Module/Settings/Profile/Photo/Index.php:46 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:128 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:132 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "or" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:134 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "skip this step" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:136 +#: src/Module/Settings/Profile/Photo/Index.php:137 msgid "select a photo from your photo albums" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:65 -#: src/Module/Settings/TwoFactor/Recovery.php:63 -#: src/Module/Settings/TwoFactor/Trusted.php:66 -#: src/Module/Settings/TwoFactor/Verify.php:68 +#: src/Module/Settings/RemoveMe.php:76 +msgid "" +"There was a validation error, please make sure you're logged in with the " +"account you want to remove and try again." +msgstr "" + +#: src/Module/Settings/RemoveMe.php:76 +msgid "If this error persists, please contact your administrator." +msgstr "" + +#: src/Module/Settings/RemoveMe.php:90 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:90 +msgid "User deleted their account" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:91 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "" + +#: src/Module/Settings/RemoveMe.php:92 +#, php-format +msgid "The user id is %d" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:105 +msgid "Your account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:130 +msgid "Remove My Account" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:131 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "" + +#: src/Module/Settings/RemoveMe.php:136 +msgid "Please enter your password for verification:" +msgstr "" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "" + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:69 +#: src/Module/Settings/TwoFactor/Recovery.php:67 +#: src/Module/Settings/TwoFactor/Trusted.php:70 +#: src/Module/Settings/TwoFactor/Verify.php:72 msgid "Please enter your password to access this page." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:83 +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:86 +#: src/Module/Settings/TwoFactor/AppSpecific.php:90 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:94 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:96 +#: src/Module/Settings/TwoFactor/AppSpecific.php:100 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:106 +#: src/Module/Settings/TwoFactor/AppSpecific.php:110 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/AppSpecific.php:133 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 "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:130 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 -msgid "Description" -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:138 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:135 +#: src/Module/Settings/TwoFactor/AppSpecific.php:139 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:136 +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 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 "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:144 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:141 +#: src/Module/Settings/TwoFactor/AppSpecific.php:145 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:142 +#: src/Module/Settings/TwoFactor/AppSpecific.php:146 msgid "Generate" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:68 +#: src/Module/Settings/TwoFactor/Index.php:88 msgid "Two-factor authentication successfully disabled." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:120 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "" "

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

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:124 +#: src/Module/Settings/TwoFactor/Index.php:145 msgid "Authenticator app" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Not Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "

    You haven't finished configuring your authenticator app.

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:127 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "

    Your authenticator app is correctly configured.

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:129 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:130 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Remaining valid codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:132 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "" "

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

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:134 +#: src/Module/Settings/TwoFactor/Index.php:155 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:135 +#: src/Module/Settings/TwoFactor/Index.php:156 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:137 +#: src/Module/Settings/TwoFactor/Index.php:158 msgid "" "

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

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Index.php:161 msgid "Current password:" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Index.php:161 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:162 msgid "Enable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:142 +#: src/Module/Settings/TwoFactor/Index.php:163 msgid "Disable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:143 +#: src/Module/Settings/TwoFactor/Index.php:164 msgid "Show recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:144 +#: src/Module/Settings/TwoFactor/Index.php:165 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:166 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:167 msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:79 +#: src/Module/Settings/TwoFactor/Recovery.php:83 msgid "New recovery codes successfully generated." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:105 +#: src/Module/Settings/TwoFactor/Recovery.php:109 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Recovery.php:111 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." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:110 +#: src/Module/Settings/TwoFactor/Recovery.php:114 msgid "Generate new recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:112 +#: src/Module/Settings/TwoFactor/Recovery.php:116 msgid "Next: Verification" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:83 +#: src/Module/Settings/TwoFactor/Trusted.php:87 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:93 +#: src/Module/Settings/TwoFactor/Trusted.php:97 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:135 +#: src/Module/Settings/TwoFactor/Trusted.php:139 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:136 +#: src/Module/Settings/TwoFactor/Trusted.php:140 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 "" -#: src/Module/Settings/TwoFactor/Trusted.php:137 +#: src/Module/Settings/TwoFactor/Trusted.php:141 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:138 +#: src/Module/Settings/TwoFactor/Trusted.php:142 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:144 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:145 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:146 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:148 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:90 +#: src/Module/Settings/TwoFactor/Verify.php:94 msgid "Two-factor authentication successfully activated." msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:124 +#: src/Module/Settings/TwoFactor/Verify.php:128 #, php-format msgid "" "

    Or you can submit the authentication settings manually:

    \n" @@ -10048,68 +11063,105 @@ msgid "" "" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:144 +#: src/Module/Settings/TwoFactor/Verify.php:148 msgid "Two-factor code verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:146 +#: src/Module/Settings/TwoFactor/Verify.php:150 msgid "" "

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

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

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

    %s

    " +"

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

    %s

    " msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:155 +#: src/Module/Settings/TwoFactor/Verify.php:159 msgid "Verify code and enable two-factor authentication" msgstr "" -#: src/Module/Settings/UserExport.php:94 +#: src/Module/Settings/UserExport.php:90 msgid "Export account" msgstr "" -#: src/Module/Settings/UserExport.php:94 +#: src/Module/Settings/UserExport.php:90 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 "" -#: src/Module/Settings/UserExport.php:95 +#: src/Module/Settings/UserExport.php:91 msgid "Export all" msgstr "" -#: src/Module/Settings/UserExport.php:95 +#: src/Module/Settings/UserExport.php:91 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 "" -#: src/Module/Settings/UserExport.php:96 +#: src/Module/Settings/UserExport.php:92 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:96 +#: src/Module/Settings/UserExport.php:92 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to " "e.g. Mastodon." msgstr "" -#: src/Module/Special/HTTPException.php:51 +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:37 +msgid "" +"This node has blocked the top-level author or the author of the shared post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:38 +msgid "" +"You have ignored or blocked the top-level author or the author of the shared " +"post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:39 +msgid "" +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "" + +#: src/Module/Special/HTTPException.php:78 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:55 +#: src/Module/Special/HTTPException.php:83 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:57 src/Module/Tos.php:91 +#: src/Module/Tos.php:58 src/Module/Tos.php:107 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 " @@ -10122,27 +11174,130 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:92 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 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 "" -#: src/Module/Tos.php:59 src/Module/Tos.php:93 +#: src/Module/Tos.php:60 src/Module/Tos.php:109 #, 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." +"to delete their account they can do so at %1$s/settings/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 "" -#: src/Module/Tos.php:62 src/Module/Tos.php:90 +#: src/Module/Tos.php:63 src/Module/Tos.php:106 msgid "Privacy Statement" msgstr "" +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "" + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "" + +#: src/Module/User/Delegation.php:146 +#, php-format +msgid "You are now logged in as %s" +msgstr "" + +#: src/Module/User/Delegation.php:185 +msgid "Switch between your accounts" +msgstr "" + +#: src/Module/User/Delegation.php:186 +msgid "Manage your accounts" +msgstr "" + +#: src/Module/User/Delegation.php:187 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "" + +#: src/Module/User/Delegation.php:188 +msgid "Select an identity to manage: " +msgstr "" + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "" + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "" + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "" + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "" + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "" + #: src/Module/Welcome.php:44 msgid "Welcome to Friendica" msgstr "" @@ -10273,14 +11428,14 @@ msgid "" msgstr "" #: src/Module/Welcome.php:77 -msgid "Group Your Contacts" +msgid "Add Your Contacts To Circle" msgstr "" #: 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." +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." msgstr "" #: src/Module/Welcome.php:80 @@ -10308,11 +11463,11 @@ msgid "" "features and resources." msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:138 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:140 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 msgid "{0} has started following you" msgstr "" @@ -10405,6 +11560,7 @@ msgid "%1$s shared your comment %2$s" msgstr "" #: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 #, php-format msgid "%1$s shared your post %2$s" msgstr "" @@ -10494,188 +11650,188 @@ msgid "%1$s commented on your thread %2$s" msgstr "" #: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:721 +#: src/Navigation/Notifications/Repository/Notify.php:752 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:289 +#: src/Navigation/Notifications/Repository/Notify.php:293 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:291 +#: src/Navigation/Notifications/Repository/Notify.php:295 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:292 +#: src/Navigation/Notifications/Repository/Notify.php:296 msgid "a private message" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:292 +#: src/Navigation/Notifications/Repository/Notify.php:296 #, php-format msgid "%1$s sent you %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:294 +#: src/Navigation/Notifications/Repository/Notify.php:298 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:324 +#: src/Navigation/Notifications/Repository/Notify.php:328 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:329 +#: src/Navigation/Notifications/Repository/Notify.php:333 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:337 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:337 -#: src/Navigation/Notifications/Repository/Notify.php:755 +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:339 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:343 -#: src/Navigation/Notifications/Repository/Notify.php:358 -#: src/Navigation/Notifications/Repository/Notify.php:770 +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:350 +#: src/Navigation/Notifications/Repository/Notify.php:354 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:352 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:353 +#: src/Navigation/Notifications/Repository/Notify.php:357 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:366 +#: src/Navigation/Notifications/Repository/Notify.php:370 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:368 +#: src/Navigation/Notifications/Repository/Notify.php:372 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:369 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:374 -#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 #, php-format msgid "You may visit their profile at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:376 +#: src/Navigation/Notifications/Repository/Notify.php:380 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:383 +#: src/Navigation/Notifications/Repository/Notify.php:387 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:385 -#: src/Navigation/Notifications/Repository/Notify.php:386 +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:393 +#: src/Navigation/Notifications/Repository/Notify.php:397 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:395 -#: src/Navigation/Notifications/Repository/Notify.php:396 +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:409 +#: src/Navigation/Notifications/Repository/Notify.php:413 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:411 +#: src/Navigation/Notifications/Repository/Notify.php:415 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:412 +#: src/Navigation/Notifications/Repository/Notify.php:416 #, php-format msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:418 +#: src/Navigation/Notifications/Repository/Notify.php:422 msgid "Name:" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:419 +#: src/Navigation/Notifications/Repository/Notify.php:423 msgid "Photo:" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:426 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:430 -#: src/Navigation/Notifications/Repository/Notify.php:445 +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:432 -#: src/Navigation/Notifications/Repository/Notify.php:447 +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:433 -#: src/Navigation/Notifications/Repository/Notify.php:448 +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:438 +#: src/Navigation/Notifications/Repository/Notify.php:442 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:440 +#: src/Navigation/Notifications/Repository/Notify.php:444 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:453 +#: src/Navigation/Notifications/Repository/Notify.php:457 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -10684,55 +11840,85 @@ msgid "" "automatically." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:455 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:461 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:467 +#: src/Navigation/Notifications/Repository/Notify.php:471 msgid "registration request" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:469 +#: src/Navigation/Notifications/Repository/Notify.php:473 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:470 +#: src/Navigation/Notifications/Repository/Notify.php:474 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:475 +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 #, php-format msgid "" -"Full Name:\t%s\n" +"Display Name:\t%s\n" "Site Location:\t%s\n" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:481 +#: src/Navigation/Notifications/Repository/Notify.php:485 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:749 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:780 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:752 +#: src/Navigation/Notifications/Repository/Notify.php:783 #, php-format msgid "%s %s shared a new post" msgstr "" +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "" + #: src/Object/EMail/ItemCCEMail.php:42 #, php-format msgid "" @@ -10755,223 +11941,308 @@ msgstr "" msgid "%s posted an update." msgstr "" -#: src/Object/Post.php:135 +#: src/Object/Post.php:138 msgid "Private Message" msgstr "" -#: src/Object/Post.php:139 +#: src/Object/Post.php:142 msgid "Public Message" msgstr "" -#: src/Object/Post.php:143 +#: src/Object/Post.php:146 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:178 +#: src/Object/Post.php:182 msgid "This entry was edited" msgstr "" -#: src/Object/Post.php:206 +#: src/Object/Post.php:210 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:221 src/Object/Post.php:223 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "" -#: src/Object/Post.php:247 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "" -#: src/Object/Post.php:247 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "" -#: src/Object/Post.php:263 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:268 +#: src/Object/Post.php:274 +#, php-format +msgid "Ignore %s" +msgstr "" + +#: src/Object/Post.php:279 +#, php-format +msgid "Collapse %s" +msgstr "" + +#: src/Object/Post.php:283 +msgid "Report post" +msgstr "" + +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:303 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "" -#: src/Object/Post.php:303 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "" -#: src/Object/Post.php:303 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "" -#: src/Object/Post.php:333 +#: src/Object/Post.php:381 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:382 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:335 +#: src/Object/Post.php:383 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:345 +#: src/Object/Post.php:393 msgid "Add star" msgstr "" -#: src/Object/Post.php:346 +#: src/Object/Post.php:394 msgid "Remove star" msgstr "" -#: src/Object/Post.php:347 +#: src/Object/Post.php:395 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:358 +#: src/Object/Post.php:406 msgid "Pin" msgstr "" -#: src/Object/Post.php:359 +#: src/Object/Post.php:407 msgid "Unpin" msgstr "" -#: src/Object/Post.php:360 +#: src/Object/Post.php:408 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:363 +#: src/Object/Post.php:411 msgid "Pinned" msgstr "" -#: src/Object/Post.php:368 +#: src/Object/Post.php:416 msgid "Add tag" msgstr "" -#: src/Object/Post.php:381 +#: src/Object/Post.php:429 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:381 +#: src/Object/Post.php:429 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:384 +#: src/Object/Post.php:432 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:384 +#: src/Object/Post.php:432 msgid "Reshare" msgstr "" -#: src/Object/Post.php:385 +#: src/Object/Post.php:433 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:385 +#: src/Object/Post.php:433 msgid "Unshare" msgstr "" -#: src/Object/Post.php:432 +#: src/Object/Post.php:484 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:437 +#: src/Object/Post.php:490 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:437 +#: src/Object/Post.php:490 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:458 +#: src/Object/Post.php:512 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:458 +#: src/Object/Post.php:512 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:487 +#: src/Object/Post.php:519 +msgid "Unknown parent" +msgstr "" + +#: src/Object/Post.php:523 +#, php-format +msgid "in reply to %s" +msgstr "" + +#: src/Object/Post.php:525 +msgid "Parent is probably private or not federated." +msgstr "" + +#: src/Object/Post.php:549 msgid "to" msgstr "" -#: src/Object/Post.php:488 +#: src/Object/Post.php:550 msgid "via" msgstr "" -#: src/Object/Post.php:489 +#: src/Object/Post.php:551 msgid "Wall-to-Wall" msgstr "" -#: src/Object/Post.php:490 +#: src/Object/Post.php:552 msgid "via Wall-To-Wall:" msgstr "" -#: src/Object/Post.php:532 +#: src/Object/Post.php:601 #, php-format msgid "Reply to %s" msgstr "" -#: src/Object/Post.php:535 +#: src/Object/Post.php:604 msgid "More" msgstr "" -#: src/Object/Post.php:553 +#: src/Object/Post.php:623 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:554 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:555 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:556 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:627 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:577 +#: src/Object/Post.php:649 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: src/Object/Post.php:578 +#: src/Object/Post.php:650 msgid "Show more" msgstr "" -#: src/Object/Post.php:579 +#: src/Object/Post.php:651 msgid "Show fewer" msgstr "" -#: src/Protocol/OStatus.php:1472 +#: src/Object/Post.php:688 +#, php-format +msgid "Reshared by: %s" +msgstr "" + +#: src/Object/Post.php:693 +#, php-format +msgid "Viewed by: %s" +msgstr "" + +#: src/Object/Post.php:698 +#, php-format +msgid "Liked by: %s" +msgstr "" + +#: src/Object/Post.php:703 +#, php-format +msgid "Disliked by: %s" +msgstr "" + +#: src/Object/Post.php:708 +#, php-format +msgid "Attended by: %s" +msgstr "" + +#: src/Object/Post.php:713 +#, php-format +msgid "Maybe attended by: %s" +msgstr "" + +#: src/Object/Post.php:718 +#, php-format +msgid "Not attended by: %s" +msgstr "" + +#: src/Object/Post.php:723 +#, php-format +msgid "Commented by: %s" +msgstr "" + +#: src/Object/Post.php:728 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "" + +#: src/Object/Post.php:751 +#, php-format +msgid "Quote shared by: %s" +msgstr "" + +#: src/Protocol/ActivityPub/Receiver.php:523 +msgid "Chat" +msgstr "" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "" + +#: src/Protocol/OStatus.php:1390 #, php-format msgid "%s is now following %s." msgstr "" -#: src/Protocol/OStatus.php:1473 +#: src/Protocol/OStatus.php:1391 msgid "following" msgstr "" -#: src/Protocol/OStatus.php:1476 +#: src/Protocol/OStatus.php:1394 #, php-format msgid "%s stopped following %s." msgstr "" -#: src/Protocol/OStatus.php:1477 +#: src/Protocol/OStatus.php:1395 msgid "stopped following" msgstr "" @@ -10980,20 +12251,20 @@ msgstr "" msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:225 +#: src/Security/Authentication.php:227 msgid "Login failed." msgstr "" -#: src/Security/Authentication.php:270 +#: src/Security/Authentication.php:272 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:382 +#: src/Security/Authentication.php:391 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:383 +#: src/Security/Authentication.php:392 msgid "Please upload a profile photo." msgstr "" @@ -11020,81 +12291,77 @@ msgstr "" msgid "thanks" msgstr "" -#: src/Util/Temporal.php:170 +#: src/Util/Temporal.php:172 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:278 +#: src/Util/Temporal.php:280 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:317 src/Util/Temporal.php:324 +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 msgid "never" msgstr "" -#: src/Util/Temporal.php:331 +#: src/Util/Temporal.php:343 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:340 +#: src/Util/Temporal.php:352 msgid "year" msgstr "" -#: src/Util/Temporal.php:340 +#: src/Util/Temporal.php:352 msgid "years" msgstr "" -#: src/Util/Temporal.php:341 +#: src/Util/Temporal.php:353 msgid "months" msgstr "" -#: src/Util/Temporal.php:342 +#: src/Util/Temporal.php:354 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:355 msgid "days" msgstr "" -#: src/Util/Temporal.php:344 +#: src/Util/Temporal.php:356 msgid "hour" msgstr "" -#: src/Util/Temporal.php:344 +#: src/Util/Temporal.php:356 msgid "hours" msgstr "" -#: src/Util/Temporal.php:345 +#: src/Util/Temporal.php:357 msgid "minute" msgstr "" -#: src/Util/Temporal.php:345 +#: src/Util/Temporal.php:357 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:346 +#: src/Util/Temporal.php:358 msgid "second" msgstr "" -#: src/Util/Temporal.php:346 +#: src/Util/Temporal.php:358 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:367 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:359 +#: src/Util/Temporal.php:370 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/Delivery.php:534 -msgid "(no subject)" -msgstr "" - #: src/Worker/PushSubscription.php:110 msgid "Notification from Friendica" msgstr "" @@ -11300,11 +12567,11 @@ msgstr "" msgid "Back to top" msgstr "" -#: view/theme/frio/theme.php:219 +#: view/theme/frio/theme.php:211 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:222 +#: view/theme/frio/theme.php:214 msgid "Visitor" msgstr "" @@ -11333,7 +12600,7 @@ msgid "Textareas font size" msgstr "" #: view/theme/vier/config.php:91 -msgid "Comma separated list of helper forums" +msgid "Comma separated list of helper groups" msgstr "" #: view/theme/vier/config.php:131 @@ -11352,7 +12619,7 @@ msgstr "" msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:151 +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 msgid "Community Profiles" msgstr "" @@ -11360,7 +12627,7 @@ msgstr "" msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:322 +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 msgid "Connect Services" msgstr "" @@ -11368,10 +12635,10 @@ msgstr "" msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:178 +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:237 +#: view/theme/vier/theme.php:234 msgid "Quick Start" msgstr "" diff --git a/view/lang/ar/messages.po b/view/lang/ar/messages.po index 7fee47a42..a42dec57d 100644 --- a/view/lang/ar/messages.po +++ b/view/lang/ar/messages.po @@ -1,11 +1,11 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: # Abdullah Alsabi , 2016 # Abdullah Alsabi , 2016 -# abidin toumi , 2020-2021 +# abidin toumi , 2020-2021,2023 # ominds , 2014 # ButterflyOfFire, 2018-2019 # ButterflyOfFire, 2022 @@ -16,536 +16,79 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-06-06 07:33+0000\n" +"POT-Creation-Date: 2023-09-18 05:30+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" -"Last-Translator: ButterflyOfFire, 2022\n" -"Language-Team: Arabic (http://www.transifex.com/Friendica/friendica/language/ar/)\n" +"Last-Translator: abidin toumi , 2020-2021,2023\n" +"Language-Team: Arabic (http://app.transifex.com/Friendica/friendica/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:39 mod/redir.php:36 -#: mod/redir.php:177 src/Module/Conversation/Community.php:181 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: 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:43 -msgid "Access denied." -msgstr "رُفض الوصول." - -#: mod/cal.php:63 mod/cal.php:80 mod/photos.php:69 mod/photos.php:140 -#: mod/photos.php:798 src/Model/Profile.php:231 src/Module/Feed.php:72 -#: src/Module/HCard.php:52 src/Module/Profile/Common.php:41 -#: src/Module/Profile/Common.php:52 src/Module/Profile/Contacts.php:40 -#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Media.php:38 -#: src/Module/Profile/Status.php:59 src/Module/Register.php:267 -#: src/Module/RemoteFollow.php:58 -msgid "User not found." -msgstr "لم يُعثر على المستخدم." - -#: mod/cal.php:122 mod/display.php:247 src/Module/Profile/Profile.php:94 -#: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:110 -#: src/Module/Update/Profile.php:56 -msgid "Access to this profile has been restricted." -msgstr "قُيِّد الوصول لهذا الملف الشخصي." - -#: mod/cal.php:243 mod/events.php:374 src/Content/Nav.php:194 -#: src/Content/Nav.php:258 src/Module/BaseProfile.php:84 -#: src/Module/BaseProfile.php:95 view/theme/frio/theme.php:229 -#: view/theme/frio/theme.php:233 -msgid "Events" -msgstr "الأحداث" - -#: mod/cal.php:244 mod/events.php:375 -msgid "View" -msgstr "اعرض" - -#: mod/cal.php:245 mod/events.php:377 -msgid "Previous" -msgstr "السابق" - -#: mod/cal.php:246 mod/events.php:378 src/Module/Install.php:214 -msgid "Next" -msgstr "التالي" - -#: mod/cal.php:249 mod/events.php:383 src/Model/Event.php:457 -msgid "today" -msgstr "اليوم" - -#: mod/cal.php:250 mod/events.php:384 src/Model/Event.php:458 -#: src/Util/Temporal.php:334 -msgid "month" -msgstr "شهر" - -#: mod/cal.php:251 mod/events.php:385 src/Model/Event.php:459 -#: src/Util/Temporal.php:335 -msgid "week" -msgstr "أسبوع" - -#: mod/cal.php:252 mod/events.php:386 src/Model/Event.php:460 -#: src/Util/Temporal.php:336 -msgid "day" -msgstr "يوم" - -#: mod/cal.php:253 mod/events.php:387 -msgid "list" -msgstr "قائمة" - -#: mod/cal.php:265 src/Console/User.php:182 src/Model/User.php:661 -#: 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:74 -msgid "User not found" -msgstr "لم يُعثر على المستخدم" - -#: mod/cal.php:274 -msgid "This calendar format is not supported" -msgstr "تنسيق هذا التقويم غير مدعوم" - -#: mod/cal.php:276 -msgid "No exportable data found" -msgstr "لم يُعثر على بيانات قابلة للتصدير" - -#: mod/cal.php:292 -msgid "calendar" -msgstr "تقويم" - -#: mod/display.php:142 mod/photos.php:802 -#: src/Module/Conversation/Community.php:175 src/Module/Directory.php:49 -#: src/Module/Search/Index.php:50 -msgid "Public access denied." -msgstr "رُفض الوصول العلني." - -#: mod/display.php:198 mod/display.php:272 -msgid "The requested item doesn't exist or has been deleted." -msgstr "العنصر غير موجود أو حُذف." - -#: mod/display.php:352 -msgid "The feed for this item is unavailable." -msgstr "تغذية هذا العنصر غير متوفرة." - -#: mod/editpost.php:38 mod/events.php:217 mod/follow.php:56 mod/follow.php:130 -#: mod/item.php:181 mod/item.php:186 mod/item.php:875 mod/message.php:69 -#: mod/message.php:111 mod/notes.php:44 mod/ostatus_subscribe.php:33 -#: mod/photos.php:160 mod/photos.php:891 mod/repair_ostatus.php:31 -#: mod/settings.php:40 mod/settings.php:50 mod/settings.php:156 -#: mod/suggest.php:34 mod/uimport.php:33 mod/unfollow.php:35 -#: mod/unfollow.php:50 mod/unfollow.php:82 mod/wall_attach.php:67 -#: mod/wall_attach.php:69 mod/wall_upload.php:89 mod/wall_upload.php:91 -#: mod/wallmessage.php:37 mod/wallmessage.php:56 mod/wallmessage.php:90 -#: mod/wallmessage.php:110 src/Module/Attach.php:56 src/Module/BaseApi.php:93 -#: src/Module/BaseNotifications.php:97 src/Module/Contact/Advanced.php:60 -#: src/Module/Delegation.php:119 src/Module/FollowConfirm.php:38 -#: src/Module/FriendSuggest.php:56 src/Module/Group.php:42 -#: src/Module/Group.php:85 src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:75 -#: src/Module/Notifications/Notification.php:106 -#: src/Module/Profile/Common.php:56 src/Module/Profile/Contacts.php:56 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:77 src/Module/Register.php:90 -#: src/Module/Register.php:206 src/Module/Register.php:245 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:49 -#: src/Module/Settings/Account.php:409 src/Module/Settings/Delegation.php:42 -#: src/Module/Settings/Delegation.php:70 src/Module/Settings/Display.php:42 -#: src/Module/Settings/Display.php:120 -#: src/Module/Settings/Profile/Photo/Crop.php:166 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/UserExport.php:58 src/Module/Settings/UserExport.php:92 -#: src/Module/Settings/UserExport.php:196 -#: src/Module/Settings/UserExport.php:216 -#: src/Module/Settings/UserExport.php:281 -msgid "Permission denied." -msgstr "رُفض الإذن." - -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "لم يُعثر على العنصر" - -#: mod/editpost.php:64 -msgid "Edit post" -msgstr "عدّل المشاركة" - -#: mod/editpost.php:91 mod/notes.php:56 src/Content/Text/HTML.php:875 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:73 -msgid "Save" -msgstr "احفظ" - -#: mod/editpost.php:92 mod/photos.php:1338 src/Content/Conversation.php:338 -#: src/Module/Contact/Poke.php:176 src/Object/Post.php:989 -msgid "Loading..." -msgstr "يحمل..." - -#: mod/editpost.php:93 mod/message.php:198 mod/message.php:355 -#: mod/wallmessage.php:140 src/Content/Conversation.php:339 -msgid "Upload photo" -msgstr "ارفع صورة" - -#: mod/editpost.php:94 src/Content/Conversation.php:340 -msgid "upload photo" -msgstr "ارفع صورة" - -#: mod/editpost.php:95 src/Content/Conversation.php:341 -msgid "Attach file" -msgstr "أرفق ملفًا" - -#: mod/editpost.php:96 src/Content/Conversation.php:342 -msgid "attach file" -msgstr "أرفق ملفًا" - -#: mod/editpost.php:97 mod/message.php:199 mod/message.php:356 -#: mod/wallmessage.php:141 -msgid "Insert web link" -msgstr "أدرج رابط ويب" - -#: mod/editpost.php:98 -msgid "web link" -msgstr "رابط ويب" - -#: mod/editpost.php:99 -msgid "Insert video link" -msgstr "أدرج رابط فيديو" - -#: mod/editpost.php:100 -msgid "video link" -msgstr "رابط فيديو" - -#: mod/editpost.php:101 -msgid "Insert audio link" -msgstr "إدراج رابط ملف صوتي" - -#: mod/editpost.php:102 -msgid "audio link" -msgstr "رابط ملف صوتي" - -#: mod/editpost.php:103 src/Content/Conversation.php:352 -#: src/Module/Item/Compose.php:173 -msgid "Set your location" -msgstr "عيّن موقعك" - -#: mod/editpost.php:104 src/Content/Conversation.php:353 -msgid "set location" -msgstr "عين الموقع" - -#: mod/editpost.php:105 src/Content/Conversation.php:354 -msgid "Clear browser location" -msgstr "امسح موقع المتصفح" - -#: mod/editpost.php:106 src/Content/Conversation.php:355 -msgid "clear location" -msgstr "امسح الموقع" - -#: mod/editpost.php:107 mod/message.php:200 mod/message.php:358 -#: mod/photos.php:1489 mod/wallmessage.php:142 -#: src/Content/Conversation.php:368 src/Content/Conversation.php:712 -#: src/Module/Item/Compose.php:177 src/Object/Post.php:528 -msgid "Please wait" -msgstr "يرجى الانتظار" - -#: mod/editpost.php:108 src/Content/Conversation.php:369 -msgid "Permission settings" -msgstr "إعدادات الأذونات" - -#: mod/editpost.php:116 src/Core/ACL.php:326 -msgid "CC: email addresses" -msgstr "أرسله إلى عناوين البريد الإلكتروني" - -#: mod/editpost.php:117 src/Content/Conversation.php:379 -msgid "Public post" -msgstr "مشاركة علنية" - -#: mod/editpost.php:120 src/Content/Conversation.php:357 -#: src/Module/Item/Compose.php:178 -msgid "Set title" -msgstr "عين العنوان" - -#: mod/editpost.php:122 src/Content/Conversation.php:359 -#: src/Module/Item/Compose.php:179 -msgid "Categories (comma-separated list)" -msgstr "الفئات (قائمة مفصولة بفاصلة)" - -#: mod/editpost.php:123 src/Core/ACL.php:327 -msgid "Example: bob@example.com, mary@example.com" -msgstr "مثل: bob@example.com, mary@example.com" - -#: mod/editpost.php:128 mod/events.php:513 mod/photos.php:1337 -#: mod/photos.php:1393 mod/photos.php:1467 src/Content/Conversation.php:383 -#: src/Module/Item/Compose.php:172 src/Object/Post.php:999 -msgid "Preview" -msgstr "معاينة" - -#: mod/editpost.php:130 mod/fbrowser.php:118 mod/fbrowser.php:145 -#: mod/follow.php:144 mod/photos.php:1004 mod/photos.php:1105 mod/tagrm.php:35 -#: mod/tagrm.php:127 mod/unfollow.php:97 src/Content/Conversation.php:386 -#: src/Module/Contact/Revoke.php:108 src/Module/RemoteFollow.php:127 -msgid "Cancel" -msgstr "ألغ" - -#: mod/editpost.php:134 src/Content/Conversation.php:343 -#: src/Module/Item/Compose.php:163 src/Object/Post.php:990 -msgid "Bold" -msgstr "عريض" - -#: mod/editpost.php:135 src/Content/Conversation.php:344 -#: src/Module/Item/Compose.php:164 src/Object/Post.php:991 -msgid "Italic" -msgstr "مائل" - -#: mod/editpost.php:136 src/Content/Conversation.php:345 -#: src/Module/Item/Compose.php:165 src/Object/Post.php:992 -msgid "Underline" -msgstr "تحته خط" - -#: mod/editpost.php:137 src/Content/Conversation.php:346 -#: src/Module/Item/Compose.php:166 src/Object/Post.php:993 -msgid "Quote" -msgstr "اقتبس" - -#: mod/editpost.php:138 src/Content/Conversation.php:347 -#: src/Module/Item/Compose.php:167 src/Object/Post.php:994 -msgid "Code" -msgstr "شفرة" - -#: mod/editpost.php:139 src/Content/Conversation.php:349 -#: src/Module/Item/Compose.php:169 src/Object/Post.php:996 -msgid "Link" -msgstr "رابط" - -#: mod/editpost.php:140 src/Content/Conversation.php:350 -#: src/Module/Item/Compose.php:170 src/Object/Post.php:997 -msgid "Link or Media" -msgstr "رابط أو وسائط" - -#: mod/editpost.php:143 src/Content/Conversation.php:393 -#: src/Content/Widget/VCard.php:113 src/Model/Profile.php:462 -#: src/Module/Admin/Logs/View.php:93 -msgid "Message" -msgstr "الرسالة" - -#: mod/editpost.php:144 src/Content/Conversation.php:394 -#: src/Module/Settings/TwoFactor/Trusted.php:137 -msgid "Browser" -msgstr "المتصفح" - -#: mod/editpost.php:145 mod/events.php:518 mod/photos.php:939 -#: mod/photos.php:1291 src/Content/Conversation.php:370 -msgid "Permissions" -msgstr "الأُذونات" - -#: mod/editpost.php:147 src/Content/Conversation.php:396 -msgid "Open Compose page" -msgstr "افتح صفحة الإنشاء" - -#: mod/events.php:124 mod/events.php:126 -msgid "Event can not end before it has started." -msgstr "لا يمكن أن ينتهي الحدث قبل أن يبدأ." - -#: mod/events.php:132 mod/events.php:134 -msgid "Event title and start time are required." -msgstr "عنوان الحدث و وقت بدئه إلزاميان." - -#: mod/events.php:376 -msgid "Create New Event" -msgstr "أنشئ حدثاً جديدًا" - -#: mod/events.php:474 src/Module/Admin/Logs/View.php:97 -msgid "Event details" -msgstr "تفاصيل الحدث" - -#: mod/events.php:475 -msgid "Starting date and Title are required." -msgstr "تاريخ البدء والعنوان إلزاميان." - -#: mod/events.php:476 mod/events.php:481 -msgid "Event Starts:" -msgstr "يبدأ الحدث في:" - -#: mod/events.php:476 mod/events.php:506 -#: src/Module/Admin/Blocklist/Server/Add.php:104 -#: src/Module/Admin/Blocklist/Server/Add.php:106 -#: src/Module/Admin/Blocklist/Server/Index.php:68 -#: src/Module/Admin/Blocklist/Server/Index.php:69 -#: src/Module/Admin/Blocklist/Server/Index.php:96 -#: src/Module/Admin/Item/Delete.php:69 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:207 src/Module/Install.php:240 -#: src/Module/Install.php:245 src/Module/Install.php:264 -#: src/Module/Install.php:275 src/Module/Install.php:280 -#: src/Module/Install.php:286 src/Module/Install.php:291 -#: src/Module/Install.php:305 src/Module/Install.php:320 -#: src/Module/Install.php:347 src/Module/Register.php:148 -#: src/Module/Security/TwoFactor/Verify.php:100 -#: src/Module/Settings/TwoFactor/Index.php:133 -#: src/Module/Settings/TwoFactor/Verify.php:154 -msgid "Required" -msgstr "إلزامي" - -#: mod/events.php:489 mod/events.php:512 -msgid "Finish date/time is not known or not relevant" -msgstr "وقت\\تاريخ الانتهاء مجهول أو ليس له صلة" - -#: mod/events.php:491 mod/events.php:496 -msgid "Event Finishes:" -msgstr "ينتهي الحدث في:" - -#: mod/events.php:502 src/Module/Profile/Profile.php:172 -#: src/Module/Settings/Profile/Index.php:238 -msgid "Description:" -msgstr "الوصف:" - -#: mod/events.php:504 src/Content/Widget/VCard.php:104 src/Model/Event.php:80 -#: src/Model/Event.php:107 src/Model/Event.php:466 src/Model/Event.php:915 -#: src/Model/Profile.php:370 src/Module/Contact/Profile.php:369 -#: src/Module/Directory.php:148 src/Module/Notifications/Introductions.php:185 -#: src/Module/Profile/Profile.php:194 -msgid "Location:" -msgstr "الموقع:" - -#: mod/events.php:506 mod/events.php:508 -msgid "Title:" -msgstr "العنوان:" - -#: mod/events.php:509 mod/events.php:510 -msgid "Share this event" -msgstr "شارك هذا الحدث" - -#: mod/events.php:515 mod/message.php:201 mod/message.php:357 -#: mod/photos.php:921 mod/photos.php:1025 mod/photos.php:1295 -#: mod/photos.php:1336 mod/photos.php:1392 mod/photos.php:1466 -#: src/Module/Admin/Item/Source.php:65 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Poke.php:177 src/Module/Contact/Profile.php:327 -#: src/Module/Debug/ActivityPubConversion.php:145 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/Delegation.php:148 src/Module/FriendSuggest.php:144 -#: src/Module/Install.php:252 src/Module/Install.php:294 -#: src/Module/Install.php:331 src/Module/Invite.php:178 -#: src/Module/Item/Compose.php:162 src/Module/Profile/Profile.php:247 -#: src/Module/Settings/Profile/Index.php:222 src/Object/Post.php:988 -#: 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 "أرسل" - -#: mod/events.php:516 src/Module/Profile/Profile.php:248 -msgid "Basic" -msgstr "أساسي" - -#: mod/events.php:517 src/Module/Admin/Site.php:439 src/Module/Contact.php:474 -#: src/Module/Profile/Profile.php:249 -msgid "Advanced" -msgstr "متقدم" - -#: mod/events.php:534 -msgid "Failed to remove event" -msgstr "فشلت إزالة الحدث" - -#: mod/fbrowser.php:61 src/Content/Nav.php:192 src/Module/BaseProfile.php:64 -#: view/theme/frio/theme.php:227 -msgid "Photos" -msgstr "الصور" - -#: mod/fbrowser.php:120 mod/fbrowser.php:147 -#: src/Module/Settings/Profile/Photo/Index.php:129 -msgid "Upload" -msgstr "ارفع" - -#: mod/fbrowser.php:142 -msgid "Files" -msgstr "الملفات" - -#: mod/follow.php:74 mod/unfollow.php:96 src/Module/RemoteFollow.php:126 -msgid "Submit Request" -msgstr "أرسل الطلب" - -#: mod/follow.php:84 -msgid "You already added this contact." -msgstr "أضفت هذا المتراسل سلفًا." - -#: mod/follow.php:100 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "تعذر اكتشاف نوع الشبكة. لا يمكن إضافة المتراسل." - -#: mod/follow.php:108 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "دعم دياسبورا غير مفعل. لا يمكن إضافة المتراسل." - -#: mod/follow.php:113 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "دعم OStatus غير مفعل. لا يمكن إضافة المتراسل." - -#: mod/follow.php:138 src/Content/Item.php:443 src/Content/Widget.php:78 -#: src/Model/Contact.php:1102 src/Model/Contact.php:1114 -#: view/theme/vier/theme.php:172 -msgid "Connect/Follow" -msgstr "اقترن\\تابع" - -#: mod/follow.php:139 src/Module/RemoteFollow.php:125 -msgid "Please answer the following:" -msgstr "من فضلك أجب على ما يلي:" - -#: mod/follow.php:140 mod/unfollow.php:94 -msgid "Your Identity Address:" -msgstr "عنوان معرّفك:" - -#: mod/follow.php:141 mod/unfollow.php:100 -#: src/Module/Admin/Blocklist/Contact.php:116 -#: src/Module/Contact/Profile.php:365 -#: src/Module/Notifications/Introductions.php:127 -#: src/Module/Notifications/Introductions.php:196 -msgid "Profile URL" -msgstr "رابط الملف الشخصي" - -#: mod/follow.php:142 src/Module/Contact/Profile.php:377 -#: src/Module/Notifications/Introductions.php:189 -#: src/Module/Profile/Profile.php:207 -msgid "Tags:" -msgstr "الوسوم:" - -#: mod/follow.php:153 -#, php-format -msgid "%s knows you" -msgstr "%s يعرفك" - -#: mod/follow.php:154 -msgid "Add a personal note:" -msgstr "أضف ملاحظة شخصية:" - -#: mod/follow.php:163 mod/unfollow.php:109 src/Module/BaseProfile.php:59 -#: src/Module/Contact.php:444 -msgid "Status Messages and Posts" -msgstr "مشاركات ورسائل الحالة" - -#: mod/follow.php:191 -msgid "The contact could not be added." -msgstr "تعذر إضافة المتراسل." - -#: mod/item.php:131 mod/item.php:135 +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 msgid "Unable to locate original post." msgstr "تعذر إيجاد المشاركة الأصلية." -#: mod/item.php:337 mod/item.php:342 -msgid "Empty post discarded." -msgstr "رُفضت المشاركة الفارغة." - -#: mod/item.php:687 +#: mod/item.php:138 msgid "Post updated." msgstr "حُدثت المشاركة." -#: mod/item.php:697 mod/item.php:702 +#: mod/item.php:203 mod/item.php:207 msgid "Item wasn't stored." msgstr "لم يخزن العنصر." -#: mod/item.php:713 +#: mod/item.php:217 msgid "Item couldn't be fetched." msgstr "تعذر جلب العنصر." -#: mod/item.php:853 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "رُفضت المشاركة الفارغة." + +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 -#: src/Module/Debug/ItemBody.php:57 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "لم يُعثر على العنصر." +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:99 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:38 +#: src/Module/FriendSuggest.php:57 src/Module/Invite.php:42 +#: src/Module/Invite.php:131 src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Delegation.php:41 src/Module/Settings/Delegation.php:71 +#: src/Module/Settings/Display.php:73 src/Module/Settings/Display.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:111 +#: src/Module/Settings/RemoveMe.php:117 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Import.php:84 +#: src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "رُفض الإذن." + #: mod/lostpass.php:40 msgid "No valid account found." msgstr "لم يُعثر على حساب صالح." @@ -600,7 +143,7 @@ msgstr "تعذر التحقق من الطلب (ربما تكون قد أرسلت #: mod/lostpass.php:113 msgid "Request has expired, please make a new one." -msgstr "انتهت صلاحيته، أرسل طلب واحد جديد." +msgstr "انتهت صلاحيته، أرسل طلب جديد." #: mod/lostpass.php:128 msgid "Forgot your Password?" @@ -610,9 +153,9 @@ msgstr "نسيت كلمة المرور؟" msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." -msgstr "أدخل عنوان بريدك الإلكتروني وأرسله من أجل إعادة تعيين كلمة المرور. بعد ذلك تحقق من بريدك الإلكتروني لمزيد من التعليمات." +msgstr "أدخل عنوان بريدك الإلكتروني لإعادة تعيين كلمة المرور. بعد ذلك راجع من بريدك الإلكتروني لمزيد من التعليمات." -#: mod/lostpass.php:130 src/Module/Security/Login.php:147 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " msgstr "اللقب أو البريد الإلكتروني: " @@ -620,7 +163,7 @@ msgstr "اللقب أو البريد الإلكتروني: " msgid "Reset" msgstr "أعد التعيين" -#: mod/lostpass.php:146 src/Module/Security/Login.php:159 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 msgid "Password Reset" msgstr "إعادة تعيين كلمة المرور" @@ -680,23 +223,11 @@ msgstr "\n\t\t\tتفاصيل الولوج كالتالي:\n\n\t\t\tالموقع: msgid "Your password has been changed at %s" msgstr "غُيرت كلمة المرور على %s" -#: mod/match.php:62 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "لا توجد كلمات مفتاحية لمطابقتها. من فضلك أضف كلمات مفتاحية إلى ملفك الشخصي." - -#: mod/match.php:93 src/Module/BaseSearch.php:119 -msgid "No matches" -msgstr "لا تطابق" - -#: mod/match.php:98 -msgid "Profile Match" -msgstr "الملفات الشخصية المطابقة" - -#: mod/message.php:46 mod/message.php:126 src/Content/Nav.php:286 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 msgid "New Message" msgstr "رسالة جديدة" -#: mod/message.php:83 mod/wallmessage.php:70 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 msgid "No recipient selected." msgstr "لم تختر متلقيا." @@ -704,62 +235,102 @@ msgstr "لم تختر متلقيا." msgid "Unable to locate contact information." msgstr "تعذر العثور على معلومات المتراسل." -#: mod/message.php:90 mod/wallmessage.php:76 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 msgid "Message could not be sent." msgstr "تعذر إرسال الرسالة." -#: mod/message.php:93 mod/wallmessage.php:79 +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 msgid "Message collection failure." msgstr "فشل استرجاع الرسائل." -#: mod/message.php:120 src/Module/Notifications/Introductions.php:133 -#: src/Module/Notifications/Introductions.php:168 -#: src/Module/Notifications/Notification.php:84 +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 msgid "Discard" msgstr "ارفض" -#: mod/message.php:133 src/Content/Nav.php:283 view/theme/frio/theme.php:234 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" msgstr "الرسائل" -#: mod/message.php:146 +#: mod/message.php:148 msgid "Conversation not found." msgstr "لم يُعثر على المُحادثة." -#: mod/message.php:151 +#: mod/message.php:153 msgid "Message was not deleted." msgstr "لم تحذف الرسالة." -#: mod/message.php:166 +#: mod/message.php:168 msgid "Conversation was not removed." msgstr "لم تُزل المحادثة." -#: mod/message.php:180 mod/message.php:286 mod/wallmessage.php:124 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 msgid "Please enter a link URL:" msgstr "يرجى إدخال الرابط:" -#: mod/message.php:189 mod/wallmessage.php:129 +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 msgid "Send Private Message" msgstr "أرسل رسالة خاصة" -#: mod/message.php:190 mod/message.php:347 mod/wallmessage.php:131 +#: mod/message.php:191 mod/message.php:346 msgid "To:" msgstr "إلى:" -#: mod/message.php:191 mod/message.php:348 mod/wallmessage.php:132 +#: mod/message.php:192 mod/message.php:347 msgid "Subject:" msgstr "الموضوع:" -#: mod/message.php:195 mod/message.php:351 mod/wallmessage.php:138 -#: src/Module/Invite.php:171 +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 msgid "Your message:" msgstr "رسالتك:" -#: mod/message.php:222 +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "ارفع صورة" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "أدرج رابط ويب" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:578 +msgid "Please wait" +msgstr "يرجى الانتظار" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:145 +#: src/Module/Install.php:234 src/Module/Install.php:274 +#: src/Module/Install.php:309 src/Module/Invite.php:178 +#: src/Module/Item/Compose.php:189 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Object/Post.php:1095 +#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171 +#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135 +msgid "Submit" +msgstr "أرسل" + +#: mod/message.php:223 msgid "No messages." msgstr "لا رسائل." -#: mod/message.php:278 +#: mod/message.php:279 msgid "Message not available." msgstr "الرّسالة غير متوفّرة." @@ -767,11 +338,11 @@ msgstr "الرّسالة غير متوفّرة." msgid "Delete message" msgstr "احذف الرسالة" -#: mod/message.php:325 mod/message.php:457 +#: mod/message.php:325 mod/message.php:456 msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:i A" -#: mod/message.php:340 mod/message.php:454 +#: mod/message.php:340 mod/message.php:453 msgid "Delete conversation" msgstr "احذف المحادثة" @@ -781,26 +352,26 @@ msgid "" "respond from the sender's profile page." msgstr "لا يتوافر اتصال آمن. قد تستطيع الرد من خلال صفحة الملف الشخصي للمرسل." -#: mod/message.php:346 +#: mod/message.php:345 msgid "Send Reply" msgstr "أرسل ردًا" -#: mod/message.php:428 +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "المرسل مجهول - %s" -#: mod/message.php:430 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "أنت و %s" -#: mod/message.php:432 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "%s وأنت" -#: mod/message.php:460 +#: mod/message.php:459 #, php-format msgid "%d message" msgid_plural "%d messages" @@ -811,831 +382,455 @@ msgstr[3] "%d رسائل" msgstr[4] "%d رسالة" msgstr[5] "%d رسالة" -#: mod/notes.php:51 src/Module/BaseProfile.php:106 +#: mod/notes.php:52 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "ملاحظات شخصية" -#: mod/notes.php:55 +#: mod/notes.php:56 msgid "Personal notes are visible only by yourself." msgstr "الملاحظات الشخصية مرئية لك فقط." -#: mod/ostatus_subscribe.php:38 -msgid "Subscribing to contacts" -msgstr "يشترك في متراسلين" +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 +msgid "Save" +msgstr "احفظ" -#: mod/ostatus_subscribe.php:48 -msgid "No contact provided." -msgstr "لم يُقدم متراسلين." +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "لم يُعثر على المستخدم." -#: mod/ostatus_subscribe.php:54 -msgid "Couldn't fetch information for contact." -msgstr "تعذر جلب معلومات المتراسل." - -#: mod/ostatus_subscribe.php:65 -msgid "Couldn't fetch friends for contact." -msgstr "تعذر جلب أصدقاء المتراسل." - -#: mod/ostatus_subscribe.php:71 mod/ostatus_subscribe.php:82 -msgid "Couldn't fetch following contacts." -msgstr "تعذر جلب متابِعي المتراسل." - -#: mod/ostatus_subscribe.php:77 -msgid "Couldn't fetch remote profile." -msgstr "تعذر جلب الملف الشخصي البعيد." - -#: mod/ostatus_subscribe.php:87 -msgid "Unsupported network" -msgstr "شبكة غير مدعومة" - -#: mod/ostatus_subscribe.php:103 mod/repair_ostatus.php:51 -msgid "Done" -msgstr "تم" - -#: mod/ostatus_subscribe.php:117 -msgid "success" -msgstr "نجح" - -#: mod/ostatus_subscribe.php:119 -msgid "failed" -msgstr "فشل" - -#: mod/ostatus_subscribe.php:122 -msgid "ignored" -msgstr "متجاهل" - -#: mod/ostatus_subscribe.php:127 mod/repair_ostatus.php:57 -msgid "Keep this window open until done." -msgstr "أبق هذه النافذة مفتوحة حتى ينتهي." - -#: mod/photos.php:108 src/Module/BaseProfile.php:67 +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 msgid "Photo Albums" msgstr "ألبومات الصور" -#: mod/photos.php:109 mod/photos.php:1584 +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 msgid "Recent Photos" msgstr "الصور الأخيرة" -#: mod/photos.php:111 mod/photos.php:1073 mod/photos.php:1586 +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 msgid "Upload New Photos" msgstr "ارفع صور جديدة" -#: mod/photos.php:129 src/Module/BaseSettings.php:35 +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 msgid "everybody" msgstr "الجميع" -#: mod/photos.php:167 +#: mod/photos.php:159 msgid "Contact information unavailable" msgstr "معلومات المتراسل غير متوفرة" -#: mod/photos.php:196 +#: mod/photos.php:188 msgid "Album not found." msgstr "لم يُعثر على الألبوم." -#: mod/photos.php:250 +#: mod/photos.php:244 msgid "Album successfully deleted" msgstr "حُذف الألبوم بنجاح" -#: mod/photos.php:252 +#: mod/photos.php:246 msgid "Album was empty." msgstr "ألبوم فارغ." -#: mod/photos.php:284 +#: mod/photos.php:277 msgid "Failed to delete the photo." msgstr "فشل حذف الصفحة." -#: mod/photos.php:553 +#: mod/photos.php:545 msgid "a photo" msgstr "صورة" -#: mod/photos.php:553 +#: mod/photos.php:545 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "ذكر %3$s %1$s في %2$s" -#: mod/photos.php:636 mod/photos.php:639 mod/photos.php:666 -#: mod/wall_upload.php:201 src/Module/Settings/Profile/Photo/Index.php:60 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "تجاوزت الصورة الحد الأقصى للحجم وهو %s" +#: mod/photos.php:582 src/Module/Conversation/Community.php:159 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "رُفض الوصول العلني." -#: mod/photos.php:642 -msgid "Image upload didn't complete, please try again" -msgstr "لم يكتمل رفع الصورة، من فضلك أعد المحاولة" - -#: mod/photos.php:645 -msgid "Image file is missing" -msgstr "ملف الصورة مفقود" - -#: mod/photos.php:650 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "الخادم لا يقبل رفع ملفات جديدة، يرجى التواصل مع مدير الموقع" - -#: mod/photos.php:674 -msgid "Image file is empty." -msgstr "ملف الصورة فارغ." - -#: mod/photos.php:689 mod/wall_upload.php:163 -#: src/Module/Settings/Profile/Photo/Index.php:69 -msgid "Unable to process image." -msgstr "تعذرت معالجة الصورة." - -#: mod/photos.php:715 mod/wall_upload.php:226 -#: src/Module/Settings/Profile/Photo/Index.php:96 -msgid "Image upload failed." -msgstr "فشل رفع الصورة." - -#: mod/photos.php:807 +#: mod/photos.php:587 msgid "No photos selected" msgstr "لم تختر صورًا" -#: mod/photos.php:876 -msgid "Access to this item is restricted." -msgstr "الوصول إلى هذا العنصر مقيد." +#: mod/photos.php:721 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "الحد الأقصى لحجم الصورة المسموح به هو %s" -#: mod/photos.php:931 +#: mod/photos.php:728 msgid "Upload Photos" msgstr "ارفع صورًا" -#: mod/photos.php:935 mod/photos.php:1021 +#: mod/photos.php:732 mod/photos.php:820 msgid "New album name: " msgstr "اسم الألبوم الجديد: " -#: mod/photos.php:936 +#: mod/photos.php:733 msgid "or select existing album:" msgstr "أو اختر ألبومًا موجودًا:" -#: mod/photos.php:937 +#: mod/photos.php:734 msgid "Do not show a status post for this upload" msgstr "لا تظهر مشاركة حالة لهذا الملف المرفوع" -#: mod/photos.php:1002 +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "الأُذونات" + +#: mod/photos.php:801 msgid "Do you really want to delete this photo album and all its photos?" msgstr "أتريد حذف هذا الألبوم وكافة محتوياته؟" -#: mod/photos.php:1003 mod/photos.php:1026 +#: mod/photos.php:802 mod/photos.php:825 msgid "Delete Album" msgstr "احذف الألبوم" -#: mod/photos.php:1030 +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "ألغ" + +#: mod/photos.php:829 msgid "Edit Album" msgstr "عدّل الألبوم" -#: mod/photos.php:1031 +#: mod/photos.php:830 msgid "Drop Album" msgstr "احذف الألبوم" -#: mod/photos.php:1035 +#: mod/photos.php:834 msgid "Show Newest First" msgstr "اعرض الأحدث أولًا" -#: mod/photos.php:1037 +#: mod/photos.php:836 msgid "Show Oldest First" msgstr "اعرض الأقدم أولًا" -#: mod/photos.php:1058 mod/photos.php:1569 +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 msgid "View Photo" msgstr "اعرض الصور" -#: mod/photos.php:1091 +#: mod/photos.php:889 msgid "Permission denied. Access to this item may be restricted." msgstr "رُفض الإذن. قد يكون الوصول إلى هذا العنصر مقيدا." -#: mod/photos.php:1093 +#: mod/photos.php:891 msgid "Photo not available" msgstr "الصورة غير متوفرة" -#: mod/photos.php:1103 +#: mod/photos.php:901 msgid "Do you really want to delete this photo?" msgstr "أتريد حذف هذه الصورة؟" -#: mod/photos.php:1104 mod/photos.php:1296 +#: mod/photos.php:902 mod/photos.php:1102 msgid "Delete Photo" msgstr "احذف الصورة" -#: mod/photos.php:1196 +#: mod/photos.php:1000 msgid "View photo" msgstr "اعرض الصورة" -#: mod/photos.php:1198 +#: mod/photos.php:1002 msgid "Edit photo" msgstr "عدّل الصورة" -#: mod/photos.php:1199 +#: mod/photos.php:1003 msgid "Delete photo" msgstr "احذف الصورة" -#: mod/photos.php:1200 +#: mod/photos.php:1004 msgid "Use as profile photo" msgstr "استخدامها كصورة الملف الشخصي" -#: mod/photos.php:1207 +#: mod/photos.php:1011 msgid "Private Photo" msgstr "صور خاصة" -#: mod/photos.php:1213 +#: mod/photos.php:1017 msgid "View Full Size" msgstr "اعرض بالحجم الكامل" -#: mod/photos.php:1264 +#: mod/photos.php:1070 msgid "Tags: " msgstr "الوسوم: " -#: mod/photos.php:1267 +#: mod/photos.php:1073 msgid "[Select tags to remove]" msgstr "[اختر وسومًا لإزالتها]" -#: mod/photos.php:1282 +#: mod/photos.php:1088 msgid "New album name" msgstr "اسم الألبوم الجديد" -#: mod/photos.php:1283 +#: mod/photos.php:1089 msgid "Caption" msgstr "وصف الصورة" -#: mod/photos.php:1284 +#: mod/photos.php:1090 msgid "Add a Tag" msgstr "أضف وسمًا" -#: mod/photos.php:1284 +#: mod/photos.php:1090 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "مثال: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1285 +#: mod/photos.php:1091 msgid "Do not rotate" msgstr "لا تُدر" -#: mod/photos.php:1286 +#: mod/photos.php:1092 msgid "Rotate CW (right)" msgstr "أدر باتجاه عقارب الساعة" -#: mod/photos.php:1287 +#: mod/photos.php:1093 msgid "Rotate CCW (left)" msgstr "أدر عكس اتجاه عقارب الساعة" -#: mod/photos.php:1333 mod/photos.php:1389 mod/photos.php:1463 -#: src/Module/Contact.php:544 src/Module/Item/Compose.php:160 -#: src/Object/Post.php:985 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1092 msgid "This is you" msgstr "هذا أنت" -#: mod/photos.php:1335 mod/photos.php:1391 mod/photos.php:1465 -#: src/Object/Post.php:522 src/Object/Post.php:987 +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:572 +#: src/Object/Post.php:1094 msgid "Comment" msgstr "علِّق" -#: mod/photos.php:1424 src/Content/Conversation.php:628 -#: src/Object/Post.php:247 +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1108 +msgid "Preview" +msgstr "معاينة" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1096 +msgid "Loading..." +msgstr "يحمل..." + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:260 msgid "Select" msgstr "اختر" -#: mod/photos.php:1425 mod/settings.php:350 src/Content/Conversation.php:629 -#: src/Module/Admin/Users/Active.php:139 -#: src/Module/Admin/Users/Blocked.php:140 src/Module/Admin/Users/Index.php:153 +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 msgid "Delete" msgstr "احذف" -#: mod/photos.php:1486 src/Object/Post.php:369 +#: mod/photos.php:1298 src/Object/Post.php:408 msgid "Like" msgstr "أعجبني" -#: mod/photos.php:1487 src/Object/Post.php:369 +#: mod/photos.php:1299 src/Object/Post.php:408 msgid "I like this (toggle)" msgstr "أعجبني (بدِّل)" -#: mod/photos.php:1488 src/Object/Post.php:370 +#: mod/photos.php:1300 src/Object/Post.php:409 msgid "Dislike" msgstr "لم يعجبني" -#: mod/photos.php:1490 src/Object/Post.php:370 +#: mod/photos.php:1302 src/Object/Post.php:409 msgid "I don't like this (toggle)" msgstr "لم يعجبني (بدِّل)" -#: mod/photos.php:1512 +#: mod/photos.php:1324 msgid "Map" msgstr "خريطة" -#: mod/photos.php:1575 -msgid "View Album" -msgstr "اعرض الألبوم" - -#: mod/redir.php:51 mod/redir.php:104 -msgid "Bad Request." -msgstr "طلب خاطئ." - -#: mod/redir.php:57 mod/redir.php:131 src/Module/Contact/Advanced.php:70 -#: src/Module/Contact/Advanced.php:109 src/Module/Contact/Contacts.php:55 -#: src/Module/Contact/Conversations.php:78 -#: src/Module/Contact/Conversations.php:83 -#: src/Module/Contact/Conversations.php:88 src/Module/Contact/Media.php:43 -#: src/Module/Contact/Posts.php:72 src/Module/Contact/Posts.php:77 -#: src/Module/Contact/Posts.php:82 src/Module/Contact/Profile.php:141 -#: src/Module/Contact/Profile.php:146 src/Module/Contact/Profile.php:151 -#: src/Module/FriendSuggest.php:70 src/Module/FriendSuggest.php:108 -#: src/Module/Group.php:99 src/Module/Group.php:108 -msgid "Contact not found." -msgstr "لم يُعثر على المتراسل." - -#: mod/removeme.php:65 src/Navigation/Notifications/Repository/Notify.php:482 -msgid "[Friendica System Notify]" -msgstr "[تنبيه نظام فرنديكا]" - -#: mod/removeme.php:65 -msgid "User deleted their account" -msgstr "حذف المستخدم حسابه" - -#: mod/removeme.php:66 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "حذف مستخدم حسابه على عقدة فرَندِكا خاصتك. من فضلك تأكد أن بياناتهم أُزيلت من النسخ الاحتياطية." - -#: mod/removeme.php:67 -#, php-format -msgid "The user id is %d" -msgstr "معرف المستخدم هو %d" - -#: mod/removeme.php:101 mod/removeme.php:104 -msgid "Remove My Account" -msgstr "أزل حسابي" - -#: mod/removeme.php:102 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "سيزال حسابك نهائيًا. لا مجال لتراجع عند انتهائه." - -#: mod/removeme.php:103 -msgid "Please enter your password for verification:" -msgstr "يرجى إدخال كلمة المرور للتأكيد:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "يعيد الاشتراك في متراسلي OStatus" - -#: mod/repair_ostatus.php:46 src/Module/Debug/ActivityPubConversion.php:134 -#: src/Module/Debug/Babel.php:293 src/Module/Security/TwoFactor/Verify.php:97 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "لا أخطاء" -msgstr[1] "خطأ" -msgstr[2] "خطآن" -msgstr[3] "أخطاء" -msgstr[4] "خطأً" -msgstr[5] "خطأٍ" - -#: mod/settings.php:122 -msgid "Failed to connect with email account using the settings provided." -msgstr "فشل الاتصال بحساب البريد الإلكتروني باستخدام الإعدادات المقدمة." - -#: mod/settings.php:175 -msgid "Connected Apps" -msgstr "التطبيقات المتصلة" - -#: mod/settings.php:176 src/Module/Admin/Blocklist/Contact.php:106 -#: 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 "الاسم" - -#: mod/settings.php:177 src/Content/Nav.php:212 -msgid "Home Page" -msgstr "الصفحة الرئيسية" - -#: mod/settings.php:178 src/Module/Admin/Queue.php:78 -msgid "Created" -msgstr "أُنشئ" - -#: mod/settings.php:179 -msgid "Remove authorization" -msgstr "أزل التخويل" - -#: mod/settings.php:205 mod/settings.php:237 mod/settings.php:268 -#: mod/settings.php:352 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81 -#: src/Module/Admin/Site.php:434 src/Module/Admin/Themes/Index.php:113 -#: src/Module/Admin/Tos.php:83 src/Module/Settings/Account.php:559 -#: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:193 -msgid "Save Settings" -msgstr "احفظ الإعدادات" - -#: mod/settings.php:213 -msgid "Addon Settings" -msgstr "إعدادات الإضافة" - -#: mod/settings.php:214 -msgid "No Addon settings configured" -msgstr "لم تضبط إعدادات الإضافة" - -#: mod/settings.php:235 -msgid "Additional Features" -msgstr "ميزات إضافية" - -#: mod/settings.php:273 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "دياسبورا (سوشل-هوم، هوب-زيلا)" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "enabled" -msgstr "مفعل" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "disabled" -msgstr "معطل" - -#: mod/settings.php:273 mod/settings.php:274 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "دعم مدمج لـ %s باتصال %s" - -#: mod/settings.php:274 -msgid "OStatus (GNU Social)" -msgstr "OStatus (غنو سوشل)" - -#: mod/settings.php:300 -msgid "Email access is disabled on this site." -msgstr "الوصول إلى البريد الإلكتروني معطل في هذا الموقع." - -#: mod/settings.php:305 mod/settings.php:350 -msgid "None" -msgstr "لا شيء" - -#: mod/settings.php:311 src/Module/BaseSettings.php:78 -msgid "Social Networks" -msgstr "الشبكات الاجتماعية" - -#: mod/settings.php:316 -msgid "General Social Media Settings" -msgstr "الإعدادات العامة لشبكات التواصل الاجتماعي" - -#: mod/settings.php:319 -msgid "Followed content scope" -msgstr "حيز المحتوى المتابَع" - -#: mod/settings.php:321 -msgid "" -"By default, conversations in which your follows participated but didn't " -"start will be shown in your timeline. You can turn this behavior off, or " -"expand it to the conversations in which your follows liked a post." -msgstr "" - -#: mod/settings.php:323 -msgid "Only conversations my follows started" -msgstr "المحادثات التي بدأها متابَعي فقط" - -#: mod/settings.php:324 -msgid "Conversations my follows started or commented on (default)" -msgstr "المحادثات التي بدأها متابَعي أو علقوا عليها (الافتراضي)" - -#: mod/settings.php:325 -msgid "Any conversation my follows interacted with, including likes" -msgstr "أي محادثة تفاعل معها متابَعي" - -#: mod/settings.php:328 -msgid "Enable Content Warning" -msgstr "فعّل التحذير من المحتوى" - -#: mod/settings.php:328 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect any other content filtering you eventually set up." -msgstr "يمكن لمستخدمي شبكات مثل ماستدون أو بليروما تعيين حقل التحذير من المحتوى الذي يطوي مشاركتهم افتراضيا. هذا يفعل الطي التلقائي بدلًا من تعيين التحذير من المحتوى كعنوان للمشاركة. هذا لا يؤثر على أي ترشيح محتوى قمت بإعداده." - -#: mod/settings.php:329 -msgid "Enable intelligent shortening" -msgstr "فعّل الاختصار الذكي" - -#: mod/settings.php:329 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If disabled, every shortened post will always point to the original " -"friendica post." -msgstr "يعثر الاختصار الذكي على الرابط الأنسب في المشاركات المختصرة. عند تعطيله سيشير الرابط إلى منشور فرنديكا الأصلي." - -#: mod/settings.php:330 -msgid "Enable simple text shortening" -msgstr "فعّل اختصار النصوص" - -#: mod/settings.php:330 -msgid "" -"Normally the system shortens posts at the next line feed. If this option is " -"enabled then the system will shorten the text at the maximum character " -"limit." -msgstr "" - -#: mod/settings.php:331 -msgid "Attach the link title" -msgstr "أرفق عنوان الرابط" - -#: mod/settings.php:331 -msgid "" -"When activated, the title of the attached link will be added as a title on " -"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" -" share feed content." -msgstr "عند تفعيله سيتم إرفاق عنوان الصفحة بمنشور دياسبورا. هذا مفيد بشكل أساسي مع المتراسلين \"الذاتيين\" الذين يشاركون تغذيات Rss / Atom." - -#: mod/settings.php:332 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "حساب GNU Social\\ActivityPub القديم" - -#: mod/settings.php:332 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "إذا قمت بإدخال اسم حساب ActivityPub/GNU Social/Statusnet القديم هنا (بنسق user@domain.tld)، سيضاف المتراسلون في هذا الحساب تلقائيا. سيصفر الحقل عند الانتهاء." - -#: mod/settings.php:335 -msgid "Repair OStatus subscriptions" -msgstr "أصلح اشتراكات OStatus" - -#: mod/settings.php:339 -msgid "Email/Mailbox Setup" -msgstr "إعداد بريد الكتروني/صندوق بريد" - -#: mod/settings.php:340 -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:341 -msgid "Last successful email check:" -msgstr "آخر تحقق ناجح للبريد الإلكتروني:" - -#: mod/settings.php:343 -msgid "IMAP server name:" -msgstr "اسم خادم IMAP:" - -#: mod/settings.php:344 -msgid "IMAP port:" -msgstr "منفذ IMAP:" - -#: mod/settings.php:345 -msgid "Security:" -msgstr "الحماية:" - -#: mod/settings.php:346 -msgid "Email login name:" -msgstr "اسم الولوج للبريد الإلكتروني:" - -#: mod/settings.php:347 -msgid "Email password:" -msgstr "كلمة مرور البريد الإلكتروني:" - -#: mod/settings.php:348 -msgid "Reply-to address:" -msgstr "الرد على عنوان:" - -#: mod/settings.php:349 -msgid "Send public posts to all email contacts:" -msgstr "أرسل المشاركات العلنية لجميع متراسلي البريد الإلكتروني:" - -#: mod/settings.php:350 -msgid "Action after import:" -msgstr "الإجراء بعد الاستيراد:" - -#: mod/settings.php:350 src/Content/Nav.php:280 -msgid "Mark as seen" -msgstr "علّمه كمُشاهَد" - -#: mod/settings.php:350 -msgid "Move to folder" -msgstr "انقل إلى مجلد" - -#: mod/settings.php:351 -msgid "Move to folder:" -msgstr "انقل إلى المجلد:" - -#: mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "لا توجد اقتراحات متاحة. إذا كان هذا الموقع جديد، من فضلك أعد المحاولة في غضون 24 ساعة." - -#: mod/suggest.php:55 src/Content/Widget.php:81 view/theme/vier/theme.php:175 -msgid "Friend Suggestions" -msgstr "اقتراحات الأصدقاء" - -#: mod/tagger.php:78 src/Content/Item.php:342 src/Model/Item.php:2699 -msgid "photo" -msgstr "صورة" - -#: mod/tagger.php:78 src/Content/Item.php:337 src/Content/Item.php:346 -msgid "status" -msgstr "حالة" - -#: mod/tagger.php:111 src/Content/Item.php:356 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s وسم %3$s %2$s بـ %4$s" - -#: mod/tagrm.php:113 -msgid "Remove Item Tag" -msgstr "أزل وسم العنصر" - -#: mod/tagrm.php:115 -msgid "Select a tag to remove: " -msgstr "اختر الوسم لإزالته: " - -#: mod/tagrm.php:126 src/Module/Settings/Delegation.php:179 -#: src/Module/Settings/TwoFactor/Trusted.php:140 -msgid "Remove" -msgstr "أزل" - -#: mod/uimport.php:46 -msgid "User imports on closed servers can only be done by an administrator." -msgstr "يمكن للمدراء فقط استيراد المستخدمين في الخوادم المغلقة." - -#: mod/uimport.php:55 src/Module/Register.php:99 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "تجاوز هذا الموقع عدد التسجيلات اليومية المسموح بها. من فضلك حاول غدا." - -#: mod/uimport.php:62 src/Module/Register.php:173 -msgid "Import" -msgstr "استورد" - -#: mod/uimport.php:64 -msgid "Move account" -msgstr "أنقل الحساب" - -#: mod/uimport.php:65 -msgid "You can import an account from another Friendica server." -msgstr "يمكنك استيراد حساب من خادم فرَندِكا آخر." - -#: mod/uimport.php:66 -msgid "" -"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." -msgstr "تحتاج إلى تصدير حسابك من الخادم القديم ورفعه هنا. سوف نقوم بإعادة إنشاء حسابك القديم هنا مع إضافة كل المتراسلين. سوف نحاول أيضًا إبلاغهم أنك انتقلت إلى هنا." - -#: mod/uimport.php:67 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "هذه الميزة تجريبية. لا يمكن استيراد متراسلين من شبكة OStatus (GNU Social/Statusnet) أو من شبكة دياسبورا" - -#: mod/uimport.php:68 -msgid "Account file" -msgstr "ملف الحساب" - -#: mod/uimport.php:68 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "لتصدير حسابك، انتقل إلى \"إعدادات-> تصدير بياناتك الشخصية\" واختر \"صدر الحساب\"" - -#: mod/unfollow.php:65 mod/unfollow.php:134 -msgid "You aren't following this contact." -msgstr "أنت لا تتابع هذا المتراسل." - -#: mod/unfollow.php:71 -msgid "Unfollowing is currently not supported by your network." -msgstr "شبكتك لا تدعم إلغاء المتابعة حاليا." - -#: mod/unfollow.php:92 -msgid "Disconnect/Unfollow" -msgstr "ألغ الاقتران/المتابعة" - -#: mod/unfollow.php:143 -msgid "Contact was successfully unfollowed" -msgstr "نجح إلغاء متابعة المتراسل" - -#: mod/unfollow.php:146 -msgid "Unable to unfollow this contact, please contact your administrator" -msgstr "يتعذر إلغاء متابعة هذا المتراسل، يرجى الاتصال بمدير الموقع" - -#: mod/wall_attach.php:40 mod/wall_attach.php:46 mod/wall_attach.php:75 -#: mod/wall_upload.php:54 mod/wall_upload.php:63 mod/wall_upload.php:97 -#: mod/wall_upload.php:148 mod/wall_upload.php:150 -msgid "Invalid request." -msgstr "طلب غير صالح." - -#: mod/wall_attach.php:93 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "عذراً، ربّما يكون الرفع أكبر من ما يسمح به ضبط PHP" - -#: mod/wall_attach.php:93 -msgid "Or - did you try to upload an empty file?" -msgstr "أو - هل حاولت تحميل ملف فارغ؟" - -#: mod/wall_attach.php:104 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "تجاوز الملف الحد الأقصى للحجم وهو %s" - -#: mod/wall_attach.php:119 -msgid "File upload failed." -msgstr "فشل رفع الملف." - -#: mod/wall_upload.php:218 src/Model/Photo.php:1061 -msgid "Wall Photos" -msgstr "صور الحائط" - -#: mod/wallmessage.php:62 mod/wallmessage.php:116 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "تجاوزت عدد رسائل الحائط اليومية وهو %s. فشل إرسال الرسالة." - -#: mod/wallmessage.php:73 -msgid "Unable to check your home location." -msgstr "تعذر التحقق من موقع منزلك." - -#: mod/wallmessage.php:97 mod/wallmessage.php:104 -msgid "No recipient." -msgstr "بدون متلقٍ." - -#: mod/wallmessage.php:130 -#, 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 "إذا أردت تلقي رد من %s. تحقق أن إعدادات الخصوصية لموقعك تسمح بتلقي رسائل بريد من مصادر مجهولة." - -#: src/App.php:463 +#: src/App.php:473 msgid "No system theme config value set." msgstr "لم تُضبط سمة النظام." -#: src/App.php:584 +#: src/App.php:580 msgid "Apologies but the website is unavailable at the moment." msgstr "نعتذر هذا الموقع غير متاح حاليا." -#: src/App/Page.php:276 +#: src/App/Page.php:248 msgid "Delete this item?" msgstr "أتريد حذف العنصر؟" -#: src/App/Page.php:277 +#: src/App/Page.php:249 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "أتريد حظر هذا المتراسل؟ لن يتمكن من متابعتك أو رؤية مشاركاتك العلنية، ولن تكون قادراً على رؤية مشاركاتهم واستلام تنبيهات منهم." -#: src/App/Page.php:347 +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "" + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "" + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "" + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "" + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "" + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "" + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "" + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "" + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "" + +#: src/App/Page.php:351 msgid "toggle mobile" msgstr "بدّل واجهة الهاتف" -#: src/App/Router.php:275 +#: src/App/Router.php:309 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "هذه الطريقة غير مسموح بها لهذه الوحدة. الطرق المسموح بها: %s" -#: src/App/Router.php:277 src/Module/HTTPException/PageNotFound.php:34 +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 msgid "Page not found." msgstr "لم يُعثر على الصفحة." -#: src/App/Router.php:305 +#: src/App/Router.php:323 msgid "You must be logged in to use addons. " msgstr "يجب عليك الولوج لاستخدام الإضافات. " -#: src/BaseModule.php:377 +#: src/BaseModule.php:401 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 "رمز الأمان للنموذج غير صحيح. ربما لأن النموذج فُتح لفترة طويلة (أكثر من 3 ساعات) قبل تقديمه." -#: src/BaseModule.php:404 +#: src/BaseModule.php:428 msgid "All contacts" msgstr "كل المتراسلين" -#: src/BaseModule.php:409 src/Content/Widget.php:233 src/Core/ACL.php:194 -#: src/Module/Contact.php:367 src/Module/PermissionTooltip.php:122 -#: src/Module/PermissionTooltip.php:144 +#: src/BaseModule.php:433 src/Content/Conversation/Factory/Timeline.php:62 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 msgid "Followers" msgstr "متابِعون" -#: src/BaseModule.php:414 src/Content/Widget.php:234 -#: src/Module/Contact.php:368 +#: src/BaseModule.php:438 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 msgid "Following" msgstr "متابَعون" -#: src/BaseModule.php:419 src/Content/Widget.php:235 -#: src/Module/Contact.php:369 +#: src/BaseModule.php:443 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 msgid "Mutual friends" msgstr "أصدقاء مشتركون" -#: src/BaseModule.php:427 +#: src/BaseModule.php:451 msgid "Common" msgstr "الشائع" -#: src/Console/Addon.php:177 src/Console/Addon.php:202 +#: src/Console/Addon.php:175 src/Console/Addon.php:199 msgid "Addon not found" msgstr "لم يُعثر على الإضافة" -#: src/Console/Addon.php:181 +#: src/Console/Addon.php:179 msgid "Addon already enabled" msgstr "الإضافة مفعلة سلفًا" -#: src/Console/Addon.php:206 +#: src/Console/Addon.php:203 msgid "Addon already disabled" msgstr "الإضافة معطلة سلفًا" @@ -1649,75 +844,75 @@ msgid "The contact entries have been archived" msgstr "أُرشفت مُدخلات المتراسل" #: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "تعذر العثور على متراسل يقود اليه هذا الرابط (%s)" #: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:66 +#: src/Module/Moderation/Blocklist/Contact.php:82 msgid "The contact has been blocked from the node" msgstr "حُجب المتراسل من هذه العقدة" -#: src/Console/MergeContacts.php:74 +#: src/Console/MergeContacts.php:75 #, php-format msgid "%d %s, %d duplicates." msgstr "" -#: src/Console/MergeContacts.php:77 +#: src/Console/MergeContacts.php:78 #, php-format msgid "uri-id is empty for contact %s." msgstr "" -#: src/Console/MergeContacts.php:90 +#: src/Console/MergeContacts.php:91 #, php-format -msgid "No valid first countact found for uri-id %d." +msgid "No valid first contact found for uri-id %d." msgstr "" -#: src/Console/MergeContacts.php:101 +#: src/Console/MergeContacts.php:102 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:105 +#: src/Console/MergeContacts.php:106 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:141 +#: src/Console/MergeContacts.php:142 #, php-format msgid "Deletion of id %d failed" -msgstr "" +msgstr "فشل حذف المعرف %d" -#: src/Console/MergeContacts.php:143 +#: src/Console/MergeContacts.php:144 #, php-format msgid "Deletion of id %d was successful" -msgstr "" +msgstr "نجح حذف المعرف %d" -#: src/Console/MergeContacts.php:149 +#: src/Console/MergeContacts.php:150 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "" -#: src/Console/MergeContacts.php:151 +#: src/Console/MergeContacts.php:152 msgid " - found" msgstr "" -#: src/Console/MergeContacts.php:158 +#: src/Console/MergeContacts.php:159 msgid " - failed" -msgstr "" +msgstr "- فشل" -#: src/Console/MergeContacts.php:160 +#: src/Console/MergeContacts.php:161 msgid " - success" -msgstr "" +msgstr "- نجح" -#: src/Console/MergeContacts.php:164 +#: src/Console/MergeContacts.php:165 msgid " - deleted" -msgstr "" +msgstr "- حُذف" -#: src/Console/MergeContacts.php:167 +#: src/Console/MergeContacts.php:168 msgid " - done" -msgstr "" +msgstr "- تم" #: src/Console/MoveToAvatarCache.php:91 msgid "The avatar cache needs to be enabled to use this command." @@ -1741,7 +936,7 @@ msgstr "" #: src/Console/MoveToAvatarCache.php:155 #, php-format msgid "invalid image for id %s" -msgstr "" +msgstr "الضورة ذات المعرف %s غير صالحة" #: src/Console/MoveToAvatarCache.php:168 #, php-format @@ -1773,15 +968,26 @@ msgstr "تمت كل تحديثات المعلقة للمشاركة." msgid "Enter user nickname: " msgstr "أدخل لقب المستخدم: " +#: src/Console/User.php:182 src/Model/User.php:711 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "لم يُعثر على المستخدم" + #: src/Console/User.php:202 msgid "Enter new password: " msgstr "أدخل كلمة مرور جديدة: " -#: src/Console/User.php:210 src/Module/Settings/Account.php:74 +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 msgid "Password update failed. Please try again." msgstr "فشل تحديث كلمة المرور. من فضلك أعد المحاولة." -#: src/Console/User.php:213 src/Module/Settings/Account.php:77 +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 msgid "Password changed." msgstr "غُيّرت كلمة المرور." @@ -1858,317 +1064,627 @@ msgstr "أسبوعيًا" msgid "Monthly" msgstr "شهرياً" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:126 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:127 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:128 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 +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 msgid "Email" msgstr "البريد الإلكتروني" -#: src/Content/ContactSelector.php:127 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 msgid "Diaspora" msgstr "دياسبورا" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:131 msgid "Zot!" msgstr "زوت!" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:132 msgid "LinkedIn" msgstr "لينكد إن" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:133 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:134 msgid "MySpace" msgstr "ماي سبيس" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:135 msgid "Google+" msgstr "غوغل+" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:136 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:137 msgid "Twitter" msgstr "تويتر" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:138 msgid "Discourse" msgstr "دسکورس" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:139 msgid "Diaspora Connector" msgstr "موصل دياسبورا" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:140 msgid "GNU Social Connector" msgstr "موصل غنو سوشل" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:141 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:142 msgid "pnut" msgstr "" -#: src/Content/ContactSelector.php:175 +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "" + +#: src/Content/ContactSelector.php:180 #, php-format msgid "%s (via %s)" msgstr "%s (عبر %s)" -#: src/Content/Conversation.php:207 -#, php-format -msgid "%s likes this." -msgstr "أعجبَ %s." - -#: src/Content/Conversation.php:210 -#, php-format -msgid "%s doesn't like this." -msgstr "لم يعجب %s." - -#: src/Content/Conversation.php:213 -#, php-format -msgid "%s attends." -msgstr "يحضره %s." - -#: src/Content/Conversation.php:216 -#, php-format -msgid "%s doesn't attend." -msgstr "لن يحضره %s." - -#: src/Content/Conversation.php:219 -#, php-format -msgid "%s attends maybe." -msgstr "قد يحضره %s." - -#: src/Content/Conversation.php:222 src/Content/Conversation.php:260 -#: src/Content/Conversation.php:872 -#, php-format -msgid "%s reshared this." -msgstr "أعاد %s نشره." - -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:226 msgid "and" msgstr "و" -#: src/Content/Conversation.php:231 +#: src/Content/Conversation.php:229 #, php-format msgid "and %d other people" msgstr "و %d أشخاص آخرين" +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + #: src/Content/Conversation.php:239 #, php-format -msgid "%2$d people like this" -msgstr "أعجب %2$d شخص " +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: src/Content/Conversation.php:240 +#: src/Content/Conversation.php:241 #, php-format -msgid "%s like this." -msgstr "أعجب %s." +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #: src/Content/Conversation.php:243 #, php-format -msgid "%2$d people don't like this" -msgstr "لم يعجب %2$d شخص " +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: src/Content/Conversation.php:244 +#: src/Content/Conversation.php:245 #, php-format -msgid "%s don't like this." -msgstr "لم يعجب %s." +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: src/Content/Conversation.php:247 +#: src/Content/Conversation.php:274 #, php-format -msgid "%2$d people attend" -msgstr "سيحضره %2$d شخص" +msgid " likes this" +msgid_plural " like this" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: src/Content/Conversation.php:248 +#: src/Content/Conversation.php:277 #, php-format -msgid "%s attend." -msgstr "سيحضره %s." +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: src/Content/Conversation.php:251 +#: src/Content/Conversation.php:280 #, php-format -msgid "%2$d people don't attend" -msgstr "لن يحضره %2$d شخص" +msgid " attends" +msgid_plural " attend" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: src/Content/Conversation.php:252 +#: src/Content/Conversation.php:283 #, php-format -msgid "%s don't attend." -msgstr "لن يحضره %s." +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: src/Content/Conversation.php:255 +#: src/Content/Conversation.php:286 #, php-format -msgid "%2$d people attend maybe" -msgstr "قد يحضره %2$d شخصا" +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: src/Content/Conversation.php:256 +#: src/Content/Conversation.php:289 #, php-format -msgid "%s attend maybe." -msgstr "قد يحضره %s." +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: src/Content/Conversation.php:259 -#, php-format -msgid "%2$d people reshared this" -msgstr "أعاد نشره %2$d شخص" - -#: src/Content/Conversation.php:307 +#: src/Content/Conversation.php:336 msgid "Visible to everybody" msgstr "مرئي للجميع" -#: src/Content/Conversation.php:308 src/Module/Item/Compose.php:171 -#: src/Object/Post.php:998 +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1107 msgid "Please enter a image/video/audio/webpage URL:" msgstr "رجاء أدخل رابط صورة/فيديو/صوت/صفحة ويب:" -#: src/Content/Conversation.php:309 +#: src/Content/Conversation.php:338 msgid "Tag term:" msgstr "مصطلح الوسم:" -#: src/Content/Conversation.php:310 src/Module/Filer/SaveTag.php:72 +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 msgid "Save to Folder:" msgstr "احفظ في مجلد:" -#: src/Content/Conversation.php:311 +#: src/Content/Conversation.php:340 msgid "Where are you right now?" msgstr "أين أنت حاليا؟" -#: src/Content/Conversation.php:312 +#: src/Content/Conversation.php:341 msgid "Delete item(s)?" msgstr "أتريد حذف العناصر؟" -#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:143 +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 msgid "Created at" -msgstr "" +msgstr "أُنشئ في" -#: src/Content/Conversation.php:334 +#: src/Content/Conversation.php:363 msgid "New Post" msgstr "مشاركة جديدة" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:366 msgid "Share" msgstr "شارك" -#: src/Content/Conversation.php:348 src/Module/Item/Compose.php:168 -#: src/Object/Post.php:995 +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "ارفع صورة" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "أرفق ملفًا" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "أرفق ملفًا" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1097 +msgid "Bold" +msgstr "عريض" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1098 +msgid "Italic" +msgstr "مائل" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1099 +msgid "Underline" +msgstr "تحته خط" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1101 +msgid "Quote" +msgstr "اقتبس" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1102 +msgid "Add emojis" +msgstr "" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1100 +msgid "Content Warning" +msgstr "" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1103 +msgid "Code" +msgstr "شفرة" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1104 msgid "Image" msgstr "صورة" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1105 +msgid "Link" +msgstr "رابط" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1106 +msgid "Link or Media" +msgstr "رابط أو وسائط" + +#: src/Content/Conversation.php:382 msgid "Video" msgstr "فيديو" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:184 +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "عيّن موقعك" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "عين الموقع" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "امسح موقع المتصفح" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "امسح الموقع" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "عين العنوان" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "الفئات (قائمة مفصولة بفاصلة)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 msgid "Scheduled at" msgstr "بُرمِج في" -#: src/Content/Conversation.php:656 src/Object/Post.php:235 -msgid "Pinned item" -msgstr "عنصر مثبت" +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "إعدادات الأذونات" -#: src/Content/Conversation.php:672 src/Object/Post.php:476 -#: src/Object/Post.php:477 -#, php-format -msgid "View %s's profile @ %s" -msgstr "اعرض ملف %s الشخصي @ %s" +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "مشاركة علنية" -#: src/Content/Conversation.php:685 src/Object/Post.php:464 -msgid "Categories:" -msgstr "الفئات:" +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:120 +#: src/Model/Profile.php:467 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "الرسالة" -#: src/Content/Conversation.php:686 src/Object/Post.php:465 -msgid "Filed under:" -msgstr "مصنف كـ:" +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "المتصفح" -#: src/Content/Conversation.php:694 src/Object/Post.php:490 -#, php-format -msgid "%s from %s" -msgstr "%s من %s" +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "افتح صفحة الإنشاء" -#: src/Content/Conversation.php:710 -msgid "View in context" -msgstr "اعرضه في السياق" - -#: src/Content/Conversation.php:775 +#: src/Content/Conversation.php:595 msgid "remove" msgstr "أزل" -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:599 msgid "Delete Selected Items" msgstr "أزل العناصر المختارة" -#: src/Content/Conversation.php:844 src/Content/Conversation.php:847 -#: src/Content/Conversation.php:850 src/Content/Conversation.php:853 +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 #, php-format msgid "You had been addressed (%s)." msgstr "ذُكرت (%s)." -#: src/Content/Conversation.php:856 +#: src/Content/Conversation.php:769 #, php-format msgid "You are following %s." msgstr "تتابع %s." -#: src/Content/Conversation.php:859 -msgid "Tagged" -msgstr "موسوم" +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "" -#: src/Content/Conversation.php:874 +#: src/Content/Conversation.php:776 +msgid "You subscribed to one or more tags in this post." +msgstr "" + +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "أعاد %s نشره." + +#: src/Content/Conversation.php:798 msgid "Reshared" msgstr "أُعيد نشره" -#: src/Content/Conversation.php:874 +#: src/Content/Conversation.php:798 #, php-format msgid "Reshared by %s <%s>" msgstr "أعاد نشره %s <%s>" -#: src/Content/Conversation.php:877 +#: src/Content/Conversation.php:801 #, php-format msgid "%s is participating in this thread." msgstr "%s مشترك في هذا النقاش." -#: src/Content/Conversation.php:880 -msgid "Stored" -msgstr "مُخزن" +#: src/Content/Conversation.php:804 +msgid "Stored for general reasons" +msgstr "" -#: src/Content/Conversation.php:883 -msgid "Global" -msgstr "عالمي" +#: src/Content/Conversation.php:807 +msgid "Global post" +msgstr "مشاركة علنية" -#: src/Content/Conversation.php:886 -msgid "Relayed" -msgstr "منقول" +#: src/Content/Conversation.php:810 +msgid "Sent via an relay server" +msgstr "" -#: src/Content/Conversation.php:886 +#: src/Content/Conversation.php:810 #, php-format -msgid "Relayed by %s <%s>" -msgstr "نقله %s <%s>" +msgid "Sent via the relay server %s <%s>" +msgstr "" -#: src/Content/Conversation.php:889 +#: src/Content/Conversation.php:813 msgid "Fetched" msgstr "جُلب" -#: src/Content/Conversation.php:889 +#: src/Content/Conversation.php:813 #, php-format msgid "Fetched because of %s <%s>" msgstr "جُلب بسبب %s <%s>" +#: src/Content/Conversation.php:816 +msgid "Stored because of a child post to complete this thread." +msgstr "" + +#: src/Content/Conversation.php:819 +msgid "Local delivery" +msgstr "" + +#: src/Content/Conversation.php:822 +msgid "Stored because of your activity (like, comment, star, ...)" +msgstr "" + +#: src/Content/Conversation.php:825 +msgid "Distributed" +msgstr "" + +#: src/Content/Conversation.php:828 +msgid "Pushed to us" +msgstr "" + +#: src/Content/Conversation.php:1492 src/Object/Post.php:247 +msgid "Pinned item" +msgstr "عنصر مثبت" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:521 +#: src/Object/Post.php:522 +#, php-format +msgid "View %s's profile @ %s" +msgstr "اعرض ملف %s الشخصي @ %s" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:509 +msgid "Categories:" +msgstr "الفئات:" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:510 +msgid "Filed under:" +msgstr "مصنف كـ:" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:535 +#, php-format +msgid "%s from %s" +msgstr "%s من %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "اعرضه في السياق" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "For you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "What's Hot" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "Posts with a lot of interactions" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:61 +#, php-format +msgid "Posts in %s" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:62 +msgid "Posts from your followers that you don't follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Sharers of sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Posts with images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Posts with audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Posts with videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Local Community" +msgstr "المجتمع المحلي" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Posts from local users on this server" +msgstr "مشاركات مستخدمي هذا الخادم" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Global Community" +msgstr "المجتمع العالمي" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Posts from users of the whole federated network" +msgstr "مشركات من الشبكة الموحدة" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Latest Activity" +msgstr "آخر نشاط" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Sort by latest activity" +msgstr "رتب حسب آخر نشاط" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Latest Posts" +msgstr "آخر المشاركات" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Sort by post received date" +msgstr "رتب حسب تاريخ استلام المشاركة" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Latest Creation" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Sort by post creation date" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:106 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "نشاطي" + +#: src/Content/Conversation/Factory/Timeline.php:106 +msgid "Posts that mention or involve you" +msgstr "المشاركات التي تذكرك أو تتعلق بك" + +#: src/Content/Conversation/Factory/Timeline.php:107 src/Object/Post.php:380 +msgid "Starred" +msgstr "المفضلة" + +#: src/Content/Conversation/Factory/Timeline.php:107 +msgid "Favourite Posts" +msgstr "المشاركات المفضلة" + #: src/Content/Feature.php:96 msgid "General Features" msgstr "الميّزات العامة" @@ -2198,12 +1714,12 @@ msgid "Post Composition Features" msgstr "ميّزات إنشاء المشاركة" #: src/Content/Feature.php:105 -msgid "Auto-mention Forums" -msgstr "ذكر المنتديات تلقائيا" +msgid "Auto-mention Groups" +msgstr "" #: src/Content/Feature.php:105 msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." +"Add/remove mention when a group page is selected/deselected in ACL window." msgstr "" #: src/Content/Feature.php:106 @@ -2244,12 +1760,12 @@ msgid "Advanced Profile Settings" msgstr "إعدادات الحساب الشخصي المُتقدّمة" #: src/Content/Feature.php:119 -msgid "List Forums" -msgstr "اسرد المنتديات" +msgid "List Groups" +msgstr "" #: src/Content/Feature.php:119 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "إظهار منتديات المجتمعية للزوار على صفحة الملف الشخصي المتقدمة" +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "" #: src/Content/Feature.php:120 msgid "Tag Cloud" @@ -2267,351 +1783,433 @@ msgstr "اعرض عُمر العضوية" msgid "Display membership date in profile" msgstr "اعرض عُمر العضوية في الملف الشخصي" -#: src/Content/ForumManager.php:151 src/Content/Nav.php:239 -#: src/Content/Text/HTML.php:896 src/Content/Widget.php:522 -msgid "Forums" -msgstr "المنتديات" +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "" -#: src/Content/ForumManager.php:153 -msgid "External link to forum" -msgstr "رابط خارجي للمنتدى" +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "" -#: src/Content/ForumManager.php:156 src/Content/Widget.php:501 +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "" + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1273 +msgid "Groups" +msgstr "" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 msgid "show less" msgstr "اعرض أقلّ" -#: src/Content/ForumManager.php:157 src/Content/Widget.php:403 -#: src/Content/Widget.php:502 +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 msgid "show more" msgstr "اعرض المزيد" -#: src/Content/Item.php:301 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s لكز%2$s" +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "" -#: src/Content/Item.php:334 src/Model/Item.php:2697 +#: src/Content/Item.php:331 src/Model/Item.php:3003 msgid "event" msgstr "حدث" -#: src/Content/Item.php:422 view/theme/frio/theme.php:254 +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "حالة" + +#: src/Content/Item.php:340 src/Model/Item.php:3005 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "صورة" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s وسم %3$s %2$s بـ %4$s" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 msgid "Follow Thread" msgstr "تابع المناقشة" -#: src/Content/Item.php:423 src/Model/Contact.php:1107 +#: src/Content/Item.php:429 src/Model/Contact.php:1227 msgid "View Status" msgstr "اعرض الحالة" -#: src/Content/Item.php:424 src/Content/Item.php:446 -#: src/Model/Contact.php:1041 src/Model/Contact.php:1099 -#: src/Model/Contact.php:1108 src/Module/Directory.php:158 -#: src/Module/Settings/Profile/Index.php:225 +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1219 +#: src/Model/Contact.php:1228 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "اعرض الملف الشخصي" -#: src/Content/Item.php:425 src/Model/Contact.php:1109 +#: src/Content/Item.php:431 src/Model/Contact.php:1229 msgid "View Photos" msgstr "اعرض الصور" -#: src/Content/Item.php:426 src/Model/Contact.php:1100 -#: src/Model/Contact.php:1110 +#: src/Content/Item.php:432 src/Model/Contact.php:1220 +#: src/Model/Contact.php:1230 msgid "Network Posts" msgstr "مشاركات الشبكة" -#: src/Content/Item.php:427 src/Model/Contact.php:1101 -#: src/Model/Contact.php:1111 +#: src/Content/Item.php:433 src/Model/Contact.php:1221 +#: src/Model/Contact.php:1231 msgid "View Contact" msgstr "اعرض المتراسل" -#: src/Content/Item.php:428 src/Model/Contact.php:1112 +#: src/Content/Item.php:434 src/Model/Contact.php:1232 msgid "Send PM" msgstr "أرسل رسالة خاصة" -#: src/Content/Item.php:429 src/Module/Admin/Blocklist/Contact.php:100 -#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 -#: src/Module/Contact.php:398 src/Module/Contact/Profile.php:348 -#: src/Module/Contact/Profile.php:449 +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 msgid "Block" msgstr "احجب" -#: src/Content/Item.php:430 src/Module/Contact.php:399 -#: src/Module/Contact/Profile.php:349 src/Module/Contact/Profile.php:457 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 -#: src/Module/Notifications/Notification.php:88 +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 msgid "Ignore" msgstr "تجاهل" -#: src/Content/Item.php:434 src/Object/Post.php:445 +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "" + +#: src/Content/Item.php:438 src/Object/Post.php:288 +#, php-format +msgid "Ignore %s server" +msgstr "" + +#: src/Content/Item.php:442 src/Object/Post.php:490 msgid "Languages" msgstr "اللغات" -#: src/Content/Item.php:438 src/Model/Contact.php:1113 -msgid "Poke" -msgstr "ألكز" +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1222 src/Model/Contact.php:1233 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "اقترن\\تابع" -#: src/Content/Nav.php:90 +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "" + +#: src/Content/Nav.php:121 msgid "Nothing new here" msgstr "لا جديد هنا" -#: src/Content/Nav.php:94 src/Module/Special/HTTPException.php:50 +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 msgid "Go back" msgstr "عُد" -#: src/Content/Nav.php:95 +#: src/Content/Nav.php:126 msgid "Clear notifications" msgstr "امسح التنبيهات" -#: src/Content/Nav.php:96 src/Content/Text/HTML.php:883 -msgid "@name, !forum, #tags, content" -msgstr "@مستخدم، !منتدى، #وسم، محتوى" +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" +msgstr "" -#: src/Content/Nav.php:183 src/Module/Security/Login.php:144 +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 msgid "Logout" msgstr "خروج" -#: src/Content/Nav.php:183 +#: src/Content/Nav.php:222 msgid "End this session" msgstr "أنه هذه الجلسة" -#: src/Content/Nav.php:185 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:145 +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 msgid "Login" msgstr "لِج" -#: src/Content/Nav.php:185 +#: src/Content/Nav.php:224 msgid "Sign in" msgstr "لِج" -#: src/Content/Nav.php:190 src/Module/BaseProfile.php:56 -#: src/Module/Contact.php:433 src/Module/Contact/Profile.php:380 -#: src/Module/Settings/TwoFactor/Index.php:112 view/theme/frio/theme.php:225 -msgid "Status" -msgstr "الحالة" +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "" -#: src/Content/Nav.php:190 src/Content/Nav.php:273 -#: view/theme/frio/theme.php:225 -msgid "Your posts and conversations" -msgstr "مشاركاتك ومحادثاتك" +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "" -#: src/Content/Nav.php:191 src/Module/BaseProfile.php:48 -#: src/Module/BaseSettings.php:55 src/Module/Contact.php:457 -#: src/Module/Contact/Profile.php:382 src/Module/Profile/Profile.php:241 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:226 +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 msgid "Profile" msgstr "الملف شخصي" -#: src/Content/Nav.php:191 view/theme/frio/theme.php:226 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 msgid "Your profile page" msgstr "صفحة ملفك الشخصي" -#: src/Content/Nav.php:192 view/theme/frio/theme.php:227 +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "الصور" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 msgid "Your photos" msgstr "صورك" -#: src/Content/Nav.php:193 src/Module/BaseProfile.php:72 -#: src/Module/BaseProfile.php:75 src/Module/Contact.php:449 -#: view/theme/frio/theme.php:228 +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 msgid "Media" msgstr "الوسائط" -#: src/Content/Nav.php:193 view/theme/frio/theme.php:228 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 msgid "Your postings with media" msgstr "مشاركاتك التي تحوي وسائط" -#: src/Content/Nav.php:194 view/theme/frio/theme.php:229 -msgid "Your events" -msgstr "أحداثك" +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "التقويم" -#: src/Content/Nav.php:195 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "" + +#: src/Content/Nav.php:234 msgid "Personal notes" msgstr "الملاحظات الشخصية" -#: src/Content/Nav.php:195 +#: src/Content/Nav.php:234 msgid "Your personal notes" msgstr "ملاحظاتك الشخصية" -#: src/Content/Nav.php:212 src/Content/Nav.php:273 +#: src/Content/Nav.php:251 src/Content/Nav.php:308 msgid "Home" msgstr "الرئيسية" -#: src/Content/Nav.php:216 src/Module/Register.php:168 -#: src/Module/Security/Login.php:105 +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "الصفحة الرئيسية" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 +#: src/Module/Security/Login.php:124 msgid "Register" msgstr "سجل" -#: src/Content/Nav.php:216 +#: src/Content/Nav.php:255 msgid "Create an account" msgstr "أنشئ حسابا" -#: src/Content/Nav.php:222 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 -#: src/Module/Settings/TwoFactor/Index.php:111 -#: src/Module/Settings/TwoFactor/Recovery.php:105 -#: src/Module/Settings/TwoFactor/Verify.php:145 view/theme/vier/theme.php:217 +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 msgid "Help" msgstr "المساعدة" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:261 msgid "Help and documentation" msgstr "المساعدة والوثائق" -#: src/Content/Nav.php:226 +#: src/Content/Nav.php:265 msgid "Apps" msgstr "التطبيقات" -#: src/Content/Nav.php:226 +#: src/Content/Nav.php:265 msgid "Addon applications, utilities, games" msgstr "إضافات، أدوات، ألعاب" -#: src/Content/Nav.php:230 src/Content/Text/HTML.php:881 -#: src/Module/Admin/Logs/View.php:87 src/Module/Search/Index.php:97 +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 msgid "Search" msgstr "ابحث" -#: src/Content/Nav.php:230 +#: src/Content/Nav.php:269 msgid "Search site content" msgstr "ابحث في محتوى الموقع" -#: src/Content/Nav.php:233 src/Content/Text/HTML.php:890 +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 msgid "Full Text" msgstr "النص الكامل" -#: src/Content/Nav.php:234 src/Content/Text/HTML.php:891 +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 #: src/Content/Widget/TagCloud.php:68 msgid "Tags" msgstr "الوسوم" -#: src/Content/Nav.php:235 src/Content/Nav.php:294 -#: src/Content/Text/HTML.php:892 src/Module/BaseProfile.php:125 -#: src/Module/BaseProfile.php:128 src/Module/Contact.php:370 -#: src/Module/Contact.php:464 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 msgid "Contacts" msgstr "المتراسلون" -#: src/Content/Nav.php:254 +#: src/Content/Nav.php:289 msgid "Community" msgstr "المجتمع" -#: src/Content/Nav.php:254 +#: src/Content/Nav.php:289 msgid "Conversations on this and other servers" msgstr "محادثات في هذا الخادم وخوادم أخرى" -#: src/Content/Nav.php:258 src/Module/BaseProfile.php:87 -#: src/Module/BaseProfile.php:98 view/theme/frio/theme.php:233 -msgid "Events and Calendar" -msgstr "الأحداث والتقويم" - -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:296 msgid "Directory" msgstr "الدليل" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:296 msgid "People directory" msgstr "دليل الأشخاص" -#: src/Content/Nav.php:263 src/Module/BaseAdmin.php:85 +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 msgid "Information" msgstr "معلومات" -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:298 msgid "Information about this friendica instance" msgstr "معلومات حول هذا المثيل" -#: src/Content/Nav.php:266 src/Module/Admin/Tos.php:76 -#: src/Module/BaseAdmin.php:96 src/Module/Register.php:176 -#: src/Module/Tos.php:87 +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 msgid "Terms of Service" msgstr "شروط الخدمة" -#: src/Content/Nav.php:266 +#: src/Content/Nav.php:301 msgid "Terms of Service of this Friendica instance" msgstr "شروط الخدمة لهذا المثيل" -#: src/Content/Nav.php:271 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Network" msgstr "الشبكة" -#: src/Content/Nav.php:271 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Conversations from your friends" msgstr "محادثات أصدقائك" -#: src/Content/Nav.php:277 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "مشاركاتك ومحادثاتك" + +#: src/Content/Nav.php:312 msgid "Introductions" msgstr "المقدمات" -#: src/Content/Nav.php:277 +#: src/Content/Nav.php:312 msgid "Friend Requests" msgstr "طلبات الصداقة" -#: src/Content/Nav.php:278 src/Module/BaseNotifications.php:148 -#: src/Module/Notifications/Introductions.php:73 +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 msgid "Notifications" msgstr "التنبيهات" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:314 msgid "See all notifications" msgstr "الاطّلاع على جميع التنبيهات" -#: src/Content/Nav.php:280 +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "علّمه كمُشاهَد" + +#: src/Content/Nav.php:315 msgid "Mark all system notifications as seen" msgstr "علّم كل تنبيهات النظام كمقروءة" -#: src/Content/Nav.php:283 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Private mail" msgstr "بريد خاص" -#: src/Content/Nav.php:284 +#: src/Content/Nav.php:319 msgid "Inbox" msgstr "صندوق الوارد" -#: src/Content/Nav.php:285 +#: src/Content/Nav.php:320 msgid "Outbox" msgstr "صندوق الصادر" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:324 msgid "Accounts" msgstr "الحسابات" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:324 msgid "Manage other pages" msgstr "إدارة الصفحات الأخرى" -#: src/Content/Nav.php:292 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:122 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:175 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 msgid "Settings" msgstr "الإعدادات" -#: src/Content/Nav.php:292 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 msgid "Account settings" msgstr "إعدادات الحساب" -#: src/Content/Nav.php:294 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 msgid "Manage/edit friends and contacts" msgstr "أدر/عدّل الأصدقاء والمتراسلين" -#: src/Content/Nav.php:299 src/Module/BaseAdmin.php:126 +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 msgid "Admin" msgstr "مدير" -#: src/Content/Nav.php:299 +#: src/Content/Nav.php:334 msgid "Site setup and configuration" msgstr "إعداد الموقع وتكوينه" -#: src/Content/Nav.php:302 +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "" + +#: src/Content/Nav.php:338 msgid "Navigation" msgstr "تصفح" -#: src/Content/Nav.php:302 +#: src/Content/Nav.php:338 msgid "Site map" msgstr "خريطة الموقع" -#: src/Content/OEmbed.php:299 +#: src/Content/OEmbed.php:316 msgid "Embedding disabled" msgstr "التضمين معطل" -#: src/Content/OEmbed.php:417 +#: src/Content/OEmbed.php:440 msgid "Embedded content" msgstr "محتوى مضمن" @@ -2631,51 +2229,51 @@ msgstr "التالي" msgid "last" msgstr "الأخير" -#: src/Content/Text/BBCode.php:990 src/Content/Text/BBCode.php:1784 -#: src/Content/Text/BBCode.php:1785 +#: src/Content/Text/BBCode.php:696 src/Content/Text/BBCode.php:1636 +#: src/Content/Text/BBCode.php:1637 msgid "Image/photo" msgstr "صورة" -#: src/Content/Text/BBCode.php:1163 +#: src/Content/Text/BBCode.php:914 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1188 src/Model/Item.php:3271 -#: src/Model/Item.php:3277 src/Model/Item.php:3278 +#: src/Content/Text/BBCode.php:939 src/Model/Item.php:3745 +#: src/Model/Item.php:3751 src/Model/Item.php:3752 msgid "Link to source" msgstr "رابط المصدر" -#: src/Content/Text/BBCode.php:1702 src/Content/Text/HTML.php:933 +#: src/Content/Text/BBCode.php:1543 src/Content/Text/HTML.php:904 msgid "Click to open/close" msgstr "أنقر للفتح/للإغلاق" -#: src/Content/Text/BBCode.php:1733 +#: src/Content/Text/BBCode.php:1576 msgid "$1 wrote:" msgstr "كتب $1:" -#: src/Content/Text/BBCode.php:1789 src/Content/Text/BBCode.php:1790 +#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642 msgid "Encrypted content" msgstr "محتوى مشفر" -#: src/Content/Text/BBCode.php:2008 +#: src/Content/Text/BBCode.php:1901 msgid "Invalid source protocol" msgstr "ميفاق المصدر غير صالح" -#: src/Content/Text/BBCode.php:2023 +#: src/Content/Text/BBCode.php:1920 msgid "Invalid link protocol" msgstr "ميفاق الرابط غير صالح" -#: src/Content/Text/HTML.php:797 +#: src/Content/Text/HTML.php:782 msgid "Loading more entries..." msgstr "يحمل مزيدًا من المدخلات..." -#: src/Content/Text/HTML.php:798 +#: src/Content/Text/HTML.php:783 msgid "The end" msgstr "النهاية" -#: src/Content/Text/HTML.php:875 src/Content/Widget/VCard.php:109 -#: src/Model/Profile.php:456 +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:116 +#: src/Model/Profile.php:461 src/Module/Contact/Profile.php:471 msgid "Follow" msgstr "تابع" @@ -2695,7 +2293,7 @@ msgstr "مثل: bob@example.com, http://example.com/barbara" msgid "Connect" msgstr "اتصل" -#: src/Content/Widget.php:70 +#: src/Content/Widget.php:72 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" @@ -2706,83 +2304,92 @@ msgstr[3] "%d دعوات متاحة" msgstr[4] "%d دعوة متاحة" msgstr[5] "%d دعوة متاحة" -#: src/Content/Widget.php:76 view/theme/vier/theme.php:170 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 msgid "Find People" msgstr "ابحث عن أشخاص" -#: src/Content/Widget.php:77 view/theme/vier/theme.php:171 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 msgid "Enter name or interest" msgstr "أدخل اسما أو اهتماما" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:173 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 msgid "Examples: Robert Morgenstein, Fishing" msgstr "مثال: أحمد علي، الصيد" -#: src/Content/Widget.php:80 src/Module/Contact.php:391 -#: src/Module/Directory.php:97 view/theme/vier/theme.php:174 +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 msgid "Find" msgstr "ابحث" -#: src/Content/Widget.php:82 view/theme/vier/theme.php:176 +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "اقتراحات الأصدقاء" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 msgid "Similar Interests" msgstr "اهتمامات مشتركة" -#: src/Content/Widget.php:83 view/theme/vier/theme.php:177 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 msgid "Random Profile" msgstr "ملف شخصي عشوائي" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:178 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 msgid "Invite Friends" msgstr "دعوة أصدقاء" -#: src/Content/Widget.php:85 src/Module/Directory.php:89 -#: view/theme/vier/theme.php:179 +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 msgid "Global Directory" msgstr "الدليل العالمي" -#: src/Content/Widget.php:87 view/theme/vier/theme.php:181 +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 msgid "Local Directory" msgstr "الدليل المحلي" -#: src/Content/Widget.php:209 src/Model/Group.php:570 -#: src/Module/Contact.php:354 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "المجموعات" +#: src/Content/Widget.php:215 src/Model/Circle.php:600 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "" -#: src/Content/Widget.php:211 +#: src/Content/Widget.php:217 msgid "Everyone" msgstr "الجميع" -#: src/Content/Widget.php:240 +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "" + +#: src/Content/Widget.php:247 msgid "Relationships" msgstr "العلاقات" -#: src/Content/Widget.php:242 src/Module/Contact.php:306 -#: src/Module/Group.php:293 +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 msgid "All Contacts" msgstr "كل المتراسلين" -#: src/Content/Widget.php:281 +#: src/Content/Widget.php:288 msgid "Protocols" msgstr "الموافيق" -#: src/Content/Widget.php:283 +#: src/Content/Widget.php:290 msgid "All Protocols" msgstr "كل الموافيق" -#: src/Content/Widget.php:311 +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "المجلدات المحفوظة" -#: src/Content/Widget.php:313 src/Content/Widget.php:344 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "كلّ شيء" -#: src/Content/Widget.php:342 +#: src/Content/Widget.php:349 msgid "Categories" msgstr "الفئات" -#: src/Content/Widget.php:399 +#: src/Content/Widget.php:406 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2793,39 +2400,47 @@ msgstr[3] "%d متراسلين مشتركين" msgstr[4] "%d متراسلًا مشتركًا" msgstr[5] "%d متراسل مشترك" -#: src/Content/Widget.php:495 +#: src/Content/Widget.php:506 msgid "Archives" msgstr "الأرشيفات" -#: src/Content/Widget.php:519 +#: src/Content/Widget.php:514 +msgid "On this date" +msgstr "" + +#: src/Content/Widget.php:534 msgid "Persons" msgstr "الأشخاص" -#: src/Content/Widget.php:520 +#: src/Content/Widget.php:535 msgid "Organisations" msgstr "المنظّمات" -#: src/Content/Widget.php:521 src/Model/Contact.php:1537 +#: src/Content/Widget.php:536 src/Model/Contact.php:1698 msgid "News" msgstr "الأخبار" -#: src/Content/Widget.php:525 src/Module/Settings/Account.php:455 +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 msgid "Account Types" msgstr "أنواع الحسابات" -#: src/Content/Widget.php:526 src/Module/Admin/BaseUsers.php:51 +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "الكل" -#: src/Content/Widget/CalendarExport.php:54 +#: src/Content/Widget.php:573 src/Module/Settings/Display.php:266 +msgid "Channels" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:56 msgid "Export" msgstr "صدّر" -#: src/Content/Widget/CalendarExport.php:55 +#: src/Content/Widget/CalendarExport.php:57 msgid "Export calendar as ical" msgstr "صدّر الرزنامة كملف ical" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:58 msgid "Export calendar as csv" msgstr "صدّر الرزنامة كملف csv" @@ -2833,7 +2448,7 @@ msgstr "صدّر الرزنامة كملف csv" msgid "No contacts" msgstr "لا متراسلين" -#: src/Content/Widget/ContactBlock.php:108 +#: src/Content/Widget/ContactBlock.php:110 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -2844,7 +2459,7 @@ msgstr[3] "%d متراسلين" msgstr[4] "%d متراسلا" msgstr[5] "%d متراسل" -#: src/Content/Widget/ContactBlock.php:125 +#: src/Content/Widget/ContactBlock.php:127 msgid "View Contacts" msgstr "اعرض المتراسلين" @@ -2856,7 +2471,7 @@ msgstr "أزل العنصر" msgid "Saved Searches" msgstr "عمليات البحث المحفوظة" -#: src/Content/Widget/TrendingTags.php:51 +#: src/Content/Widget/TrendingTags.php:52 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" @@ -2867,58 +2482,68 @@ msgstr[3] "الوسوم الشائعة (آخر %d ساعات)" msgstr[4] "الوسوم الشائعة (آخر %d ساعة)" msgstr[5] "الوسوم الشائعة (آخر %d ساعة)" -#: src/Content/Widget/TrendingTags.php:52 +#: src/Content/Widget/TrendingTags.php:53 msgid "More Trending Tags" msgstr "المزيد من الوسوم الشائعة" -#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:375 -#: src/Module/Contact/Profile.php:371 src/Module/Profile/Profile.php:176 +#: src/Content/Widget/VCard.php:109 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:103 src/Model/Profile.php:376 -#: src/Module/Contact/Profile.php:373 src/Module/Profile/Profile.php:180 +#: src/Content/Widget/VCard.php:110 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 msgid "Matrix:" msgstr "مايتركس:" -#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:468 -#: src/Module/Notifications/Introductions.php:199 +#: src/Content/Widget/VCard.php:111 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "الموقع:" + +#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:474 +#: src/Module/Notifications/Introductions.php:201 msgid "Network:" msgstr "الشبكة:" -#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:458 +#: src/Content/Widget/VCard.php:118 src/Model/Contact.php:1223 +#: src/Model/Contact.php:1234 src/Model/Profile.php:463 +#: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "ألغِ المتابعة" -#: src/Core/ACL.php:165 src/Module/Profile/Profile.php:242 +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 msgid "Yourself" msgstr "أنت" -#: src/Core/ACL.php:201 src/Module/PermissionTooltip.php:128 -#: src/Module/PermissionTooltip.php:150 +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 msgid "Mutuals" msgstr "المشتركة" -#: src/Core/ACL.php:293 +#: src/Core/ACL.php:294 msgid "Post to Email" msgstr "أنشر عبر البريد الإلكتروني" -#: src/Core/ACL.php:320 src/Module/PermissionTooltip.php:85 -#: src/Module/PermissionTooltip.php:197 +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 msgid "Public" msgstr "علني" -#: src/Core/ACL.php:321 +#: src/Core/ACL.php:322 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "سيتم عرض هذا المحتوى لكل متابِعيك ويمكن مشاهدته في صفحات المجتمع ومن قبل أي شخص عبر رابطه." -#: src/Core/ACL.php:322 src/Module/PermissionTooltip.php:93 +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 msgid "Limited/Private" msgstr "محدود/خاص" -#: src/Core/ACL.php:323 +#: src/Core/ACL.php:324 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 " @@ -2926,40 +2551,54 @@ msgid "" msgstr "سيكون هذا المحتوى مرئيًا فقط من قبل المجموعات والمتراسلين المدرجين في الحقل الأول ، وتستثنى المجموعات والمتراسلون المدرجون في الحقل الثاني. لن يكون هذا المحتوى مرئيا للعامة." #: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." +msgstr "" + +#: src/Core/ACL.php:325 msgid "Show to:" msgstr "اعرضه لـ:" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:326 msgid "Except to:" msgstr "استثني:" -#: src/Core/ACL.php:328 +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "أرسله إلى عناوين البريد الإلكتروني" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "مثل: bob@example.com, mary@example.com" + +#: src/Core/ACL.php:329 msgid "Connectors" msgstr "الموصّلات" -#: src/Core/Installer.php:183 +#: src/Core/Installer.php:180 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 "تعذر كتابة ملف تكوين قاعدة البيانات \"config/local.config.php\". رجاء استخدم النص المرفق لإنشاء ملف تكوين في المجلد الجذر للخادم." -#: src/Core/Installer.php:202 +#: src/Core/Installer.php:197 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "استورد ملف \"database.sql\" يدويا باستخدام phpmyadmin أو mysql." -#: src/Core/Installer.php:203 src/Module/Install.php:213 -#: src/Module/Install.php:372 +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "يرجى مراجعة ملف \"doc/INSTALL.md\"." -#: src/Core/Installer.php:264 +#: src/Core/Installer.php:259 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:260 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 "" -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:265 msgid "PHP executable path" msgstr "مسار الملف التنفيذي لـ PHP" -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:265 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "أدخل المسار الكامل للملف التتفيذي لـ php. يمكنك تركه فارغًا لمتابعة التثبيت." -#: src/Core/Installer.php:275 +#: src/Core/Installer.php:270 msgid "Command line PHP" msgstr "سطر أوامر PHP" -#: src/Core/Installer.php:284 +#: src/Core/Installer.php:279 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "ملف PHP التنفيذي ليس ملفًا ثنائيًا (قد يكون إصدار cgi-fcgi)" -#: src/Core/Installer.php:285 +#: src/Core/Installer.php:280 msgid "Found PHP version: " msgstr "اصدار PHP: " -#: src/Core/Installer.php:287 +#: src/Core/Installer.php:282 msgid "PHP cli binary" msgstr "الملف الثنائي لـ PHP" -#: src/Core/Installer.php:300 +#: src/Core/Installer.php:295 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "إصدار سطر أوامر PHP المثبت على النظام ليس مفعلًا فيه \"register_argc_argv\"." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:296 msgid "This is required for message delivery to work." msgstr "هذا مطلوب لإيصال الرسائل." -#: src/Core/Installer.php:306 +#: src/Core/Installer.php:301 msgid "PHP register_argc_argv" msgstr "" -#: src/Core/Installer.php:338 +#: src/Core/Installer.php:333 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "" -#: src/Core/Installer.php:339 +#: src/Core/Installer.php:334 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "إذا كنت تستعمل ويندوز راجع \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:342 +#: src/Core/Installer.php:337 msgid "Generate encryption keys" msgstr "ولّد مفاتيح التشفير" -#: src/Core/Installer.php:394 +#: src/Core/Installer.php:389 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "خطأ: وحدة mod-rewrite لخادم أباتشي مطلوبة لكنها لم تثبت." -#: src/Core/Installer.php:399 +#: src/Core/Installer.php:394 msgid "Apache mod_rewrite module" msgstr "وحدة Apache mod_rewrite" -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:400 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:410 +#: src/Core/Installer.php:405 msgid "Error: The MySQL driver for PDO is not installed." msgstr "" -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:409 msgid "PDO or MySQLi PHP module" msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:417 msgid "Error, XML PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:421 msgid "XML PHP module" msgstr "" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:424 msgid "libCurl PHP module" msgstr "" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:425 msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:431 msgid "GD graphics PHP module" msgstr "" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:432 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:438 msgid "OpenSSL PHP module" msgstr "" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:439 msgid "Error: openssl PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:445 msgid "mb_string PHP module" msgstr "" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:446 msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:452 msgid "iconv PHP module" msgstr "وحدة iconv PHP" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:453 msgid "Error: iconv PHP module required but not installed." msgstr "خطأ: وحدة iconv PHP مطلوبة ولكنها غير مثبتة." -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:459 msgid "POSIX PHP module" msgstr "وحدة POSIX PHP" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:460 msgid "Error: POSIX PHP module required but not installed." msgstr "خطأ: وحدة POSIX PHP مطلوبة ولكنها غير مثبتة." -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:466 msgid "Program execution functions" msgstr "مهام تنفيذ البرنامج" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:467 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:473 msgid "JSON PHP module" msgstr "وحدة JSON PHP" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:474 msgid "Error: JSON PHP module required but not installed." msgstr "خطأ: وحدة JSON PHP مطلوبة ولكنها غير مثبتة." -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:480 msgid "File Information PHP module" msgstr "وحدة PHP fileinfo" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:481 msgid "Error: File Information PHP module required but not installed." msgstr "خطأ: وحدة PHP fileinfo مطلوبة ولكنها غير مثبتة." -#: src/Core/Installer.php:509 +#: src/Core/Installer.php:487 +msgid "GNU Multiple Precision PHP module" +msgstr "" + +#: src/Core/Installer.php:488 +msgid "Error: GNU Multiple Precision PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:511 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 "مثبِت الويب غير قادر على إنشاء ملف \"local.config.php\" في مجلد \"config\" التابع للخادم." -#: src/Core/Installer.php:510 +#: src/Core/Installer.php:512 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 "في أغلب الأحيان تكون مشكلة إذن. قد لا يتمكن خادم الويب من الكتابة في دليلك - على الرغم من أنك تستطيع ذلك." -#: src/Core/Installer.php:511 +#: src/Core/Installer.php:513 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 "عند نهاية التثبيت سنزودك بمحتويات لملف \"local.config.php\" لتنشئه يدويًا في الدليل الفرعي \"config\" في دليل خادم فرنديكا." -#: src/Core/Installer.php:512 +#: src/Core/Installer.php:514 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "يمكنك أيضًا تخطي هذه الخطوة وإجراء تثبيت يدوي. للقيام بذلك يرجى مراجعة ملف \"doc/INSTALL.md\"." -#: src/Core/Installer.php:515 +#: src/Core/Installer.php:517 msgid "config/local.config.php is writable" msgstr "ملف \"config/local.config.php\" قابل للكتابة" -#: src/Core/Installer.php:535 +#: src/Core/Installer.php:537 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "يستخدم فرنديكا محرك القوالب Smarty3 لتصيير عرض الويب. يقوم Smarty3 ببناء القوالب كـ PHP لتسريع عملية التصيير." -#: src/Core/Installer.php:536 +#: src/Core/Installer.php:538 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 "لتتمكن من تخزين هذه النماذج المترجمة ، يجب أن يكون لخادم الإنترنت أذون الكتابة في دليل view/smarty3/ ضمن المجلد الجذر لفرنديكا." -#: src/Core/Installer.php:537 +#: src/Core/Installer.php:539 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "" -#: src/Core/Installer.php:538 +#: src/Core/Installer.php:540 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 "" -#: src/Core/Installer.php:541 +#: src/Core/Installer.php:543 msgid "view/smarty3 is writable" msgstr "ملف \"view/smarty3\" قابل للكتابة" -#: src/Core/Installer.php:569 +#: src/Core/Installer.php:571 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "" -#: src/Core/Installer.php:570 +#: src/Core/Installer.php:572 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "في بعض المواقف (مثل تشغيله من حاوية) يمكنك تجاهل هذا الخطأ." -#: src/Core/Installer.php:572 +#: src/Core/Installer.php:574 msgid "Error message from Curl when fetching" msgstr "رسالة خطأ من Curl أثناء الجلب" -#: src/Core/Installer.php:578 +#: src/Core/Installer.php:580 msgid "Url rewrite is working" msgstr "إعادة كتابة الرابط تعمل" -#: src/Core/Installer.php:607 +#: src/Core/Installer.php:609 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "" -#: src/Core/Installer.php:608 +#: src/Core/Installer.php:610 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "نوصي بشدة باستخدام فرنديكا عبر اتصال آمن فقط حيث سيتم تبادل معلومات حساسة مثل كلمات المرور." -#: src/Core/Installer.php:609 +#: src/Core/Installer.php:611 msgid "Please ensure that the connection to the server is secure." msgstr "يرجى التأكد من أن الاتصال بالخادم آمن." -#: src/Core/Installer.php:610 +#: src/Core/Installer.php:612 msgid "No TLS detected" msgstr "" -#: src/Core/Installer.php:612 +#: src/Core/Installer.php:614 msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:639 +#: src/Core/Installer.php:641 msgid "ImageMagick PHP extension is not installed" msgstr "" -#: src/Core/Installer.php:641 +#: src/Core/Installer.php:643 msgid "ImageMagick PHP extension is installed" msgstr "" -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:645 msgid "ImageMagick supports GIF" msgstr "ImageMagick يدعم GIF" -#: src/Core/Installer.php:665 +#: src/Core/Installer.php:667 msgid "Database already in use." msgstr "قاعدة البيانات قيد الاستخدام." -#: src/Core/Installer.php:670 +#: src/Core/Installer.php:672 msgid "Could not connect to database." msgstr "يتعذر الاتصال بقاعدة البيانات." -#: src/Core/L10n.php:400 src/Model/Event.php:425 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:476 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:235 msgid "Monday" msgstr "الإثنين" -#: src/Core/L10n.php:400 src/Model/Event.php:426 +#: src/Core/L10n.php:476 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:236 msgid "Tuesday" msgstr "الثلاثاء" -#: src/Core/L10n.php:400 src/Model/Event.php:427 +#: src/Core/L10n.php:476 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:237 msgid "Wednesday" msgstr "الأربعاء" -#: src/Core/L10n.php:400 src/Model/Event.php:428 +#: src/Core/L10n.php:476 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:238 msgid "Thursday" msgstr "الخميس" -#: src/Core/L10n.php:400 src/Model/Event.php:429 +#: src/Core/L10n.php:476 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:239 msgid "Friday" msgstr "الجمعة" -#: src/Core/L10n.php:400 src/Model/Event.php:430 +#: src/Core/L10n.php:476 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:240 msgid "Saturday" msgstr "السبت" -#: src/Core/L10n.php:400 src/Model/Event.php:424 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:476 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:234 msgid "Sunday" msgstr "الأحد" -#: src/Core/L10n.php:404 src/Model/Event.php:445 +#: src/Core/L10n.php:480 src/Model/Event.php:450 msgid "January" msgstr "جانفي" -#: src/Core/L10n.php:404 src/Model/Event.php:446 +#: src/Core/L10n.php:480 src/Model/Event.php:451 msgid "February" msgstr "فيفري" -#: src/Core/L10n.php:404 src/Model/Event.php:447 +#: src/Core/L10n.php:480 src/Model/Event.php:452 msgid "March" msgstr "مارس" -#: src/Core/L10n.php:404 src/Model/Event.php:448 +#: src/Core/L10n.php:480 src/Model/Event.php:453 msgid "April" msgstr "أفريل" -#: src/Core/L10n.php:404 src/Core/L10n.php:424 src/Model/Event.php:436 +#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441 msgid "May" msgstr "ماي" -#: src/Core/L10n.php:404 src/Model/Event.php:449 +#: src/Core/L10n.php:480 src/Model/Event.php:454 msgid "June" msgstr "جوان" -#: src/Core/L10n.php:404 src/Model/Event.php:450 +#: src/Core/L10n.php:480 src/Model/Event.php:455 msgid "July" msgstr "جويلية" -#: src/Core/L10n.php:404 src/Model/Event.php:451 +#: src/Core/L10n.php:480 src/Model/Event.php:456 msgid "August" msgstr "أوت" -#: src/Core/L10n.php:404 src/Model/Event.php:452 +#: src/Core/L10n.php:480 src/Model/Event.php:457 msgid "September" msgstr "سبتمبر" -#: src/Core/L10n.php:404 src/Model/Event.php:453 +#: src/Core/L10n.php:480 src/Model/Event.php:458 msgid "October" msgstr "أكتوبر" -#: src/Core/L10n.php:404 src/Model/Event.php:454 +#: src/Core/L10n.php:480 src/Model/Event.php:459 msgid "November" msgstr "نوفمبر" -#: src/Core/L10n.php:404 src/Model/Event.php:455 +#: src/Core/L10n.php:480 src/Model/Event.php:460 msgid "December" msgstr "ديسمبر" -#: src/Core/L10n.php:420 src/Model/Event.php:417 +#: src/Core/L10n.php:495 src/Model/Event.php:422 msgid "Mon" msgstr "إث" -#: src/Core/L10n.php:420 src/Model/Event.php:418 +#: src/Core/L10n.php:495 src/Model/Event.php:423 msgid "Tue" msgstr "ثلا" -#: src/Core/L10n.php:420 src/Model/Event.php:419 +#: src/Core/L10n.php:495 src/Model/Event.php:424 msgid "Wed" msgstr "أر" -#: src/Core/L10n.php:420 src/Model/Event.php:420 +#: src/Core/L10n.php:495 src/Model/Event.php:425 msgid "Thu" msgstr "خم" -#: src/Core/L10n.php:420 src/Model/Event.php:421 +#: src/Core/L10n.php:495 src/Model/Event.php:426 msgid "Fri" msgstr "جم" -#: src/Core/L10n.php:420 src/Model/Event.php:422 +#: src/Core/L10n.php:495 src/Model/Event.php:427 msgid "Sat" msgstr "سب" -#: src/Core/L10n.php:420 src/Model/Event.php:416 +#: src/Core/L10n.php:495 src/Model/Event.php:421 msgid "Sun" msgstr "أح" -#: src/Core/L10n.php:424 src/Model/Event.php:432 +#: src/Core/L10n.php:499 src/Model/Event.php:437 msgid "Jan" msgstr "جا" -#: src/Core/L10n.php:424 src/Model/Event.php:433 +#: src/Core/L10n.php:499 src/Model/Event.php:438 msgid "Feb" msgstr "في" -#: src/Core/L10n.php:424 src/Model/Event.php:434 +#: src/Core/L10n.php:499 src/Model/Event.php:439 msgid "Mar" msgstr "مارس" -#: src/Core/L10n.php:424 src/Model/Event.php:435 +#: src/Core/L10n.php:499 src/Model/Event.php:440 msgid "Apr" msgstr "أف" -#: src/Core/L10n.php:424 src/Model/Event.php:437 +#: src/Core/L10n.php:499 src/Model/Event.php:442 msgid "Jun" msgstr "جو" -#: src/Core/L10n.php:424 src/Model/Event.php:438 +#: src/Core/L10n.php:499 src/Model/Event.php:443 msgid "Jul" msgstr "جوي" -#: src/Core/L10n.php:424 src/Model/Event.php:439 +#: src/Core/L10n.php:499 src/Model/Event.php:444 msgid "Aug" msgstr "أو" -#: src/Core/L10n.php:424 +#: src/Core/L10n.php:499 msgid "Sep" msgstr "سب" -#: src/Core/L10n.php:424 src/Model/Event.php:441 +#: src/Core/L10n.php:499 src/Model/Event.php:446 msgid "Oct" msgstr "أك" -#: src/Core/L10n.php:424 src/Model/Event.php:442 +#: src/Core/L10n.php:499 src/Model/Event.php:447 msgid "Nov" msgstr "نو" -#: src/Core/L10n.php:424 src/Model/Event.php:443 +#: src/Core/L10n.php:499 src/Model/Event.php:448 msgid "Dec" msgstr "دي" -#: src/Core/L10n.php:443 -msgid "poke" -msgstr "ألكز" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "لا يمكن استخدام ملف السجل ''%s'. لا يمكن كتابة السجلات (خطأ: '%s')" -#: src/Core/L10n.php:443 -msgid "poked" -msgstr "لُكز" - -#: src/Core/L10n.php:444 -msgid "ping" -msgstr "" - -#: src/Core/L10n.php:444 -msgid "pinged" -msgstr "" - -#: src/Core/L10n.php:445 -msgid "prod" -msgstr "انخس" - -#: src/Core/L10n.php:445 -msgid "prodded" -msgstr "نُخِس" - -#: src/Core/L10n.php:446 -msgid "slap" -msgstr "اصفع" - -#: src/Core/L10n.php:446 -msgid "slapped" -msgstr "صُفع" - -#: src/Core/L10n.php:447 -msgid "finger" -msgstr "" - -#: src/Core/L10n.php:447 -msgid "fingered" -msgstr "" - -#: src/Core/L10n.php:448 -msgid "rebuff" -msgstr "" - -#: src/Core/L10n.php:448 -msgid "rebuffed" -msgstr "" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "لا يمكن استخدام ملف السجل الخاص بالتنقيح '%s'. لا يمكن كتابة السجلات (خطأ: '%s')" #: src/Core/Renderer.php:89 src/Core/Renderer.php:118 -#: src/Core/Renderer.php:145 src/Core/Renderer.php:179 -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "لا يمكن لفرَندِيكا عرض هذه الصفحة حاليا، رجاء اتصل بالمدير." -#: src/Core/Renderer.php:141 +#: src/Core/Renderer.php:143 msgid "template engine cannot be registered without a name." msgstr "لا يمكن تسجيل محرك القوالب بدون اسم." -#: src/Core/Renderer.php:175 +#: src/Core/Renderer.php:177 msgid "template engine is not registered!" msgstr "لم يسجل محرك القوالب!" @@ -3476,36 +3091,36 @@ msgstr "المجلد حيث تحفظ الملفات المرفوعة. لأقصى msgid "Enter a valid existing folder" msgstr "أدخل مجلد موجود وصالح" -#: src/Core/Update.php:67 +#: src/Core/Update.php:80 #, 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 "التحديثات التلقائية غير مدعومة من الإصدار %s. يرجى التحديث يدويًا إلى الإصدار 2021.01 وانتظر تحديث البيانات للوصول إلى الإصدار 1383." -#: src/Core/Update.php:78 +#: src/Core/Update.php:91 #, 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 "التحديث التلقائي للبيانات من الإصدار %s غير مدعوم. يرجى التحديث يدويًا إلى الإصدار 2021.01 وانتظر تحديث البيانات للوصول إلى الإصدار 1383." -#: src/Core/Update.php:152 +#: src/Core/Update.php:183 #, php-format msgid "%s: executing pre update %d" msgstr "%s: ينفذ التحديث الاستباقي %d" -#: src/Core/Update.php:190 +#: src/Core/Update.php:225 #, php-format msgid "%s: executing post update %d" msgstr "%s: ينفذ تحديث البيانات %d" -#: src/Core/Update.php:261 +#: src/Core/Update.php:299 #, php-format msgid "Update %s failed. See error logs." msgstr "فشل تحديث %s. راجع سجلات الأخطاء." -#: src/Core/Update.php:314 +#: src/Core/Update.php:339 #, php-format msgid "" "\n" @@ -3515,85 +3130,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\tمطورو فرَندِكا أصدروا التحديث %s مؤخرا،\n\t\t\tولكن حدث خطأ أثناء تثبيته\n\t\t\tوهذا يحتاج إلى إصلاح ، ولا يمكنني فعل ذلك بمفردي. يرجى التواصل مع مطور\n\t\t\t فرَندِكا إذا لم تتمكن من مساعدتي بمفردك. قد تكون قاعدة البيانات غير صالحة." -#: src/Core/Update.php:320 +#: src/Core/Update.php:345 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "رسالة الخطأ\\n[pre]%s[/pre]" -#: src/Core/Update.php:324 src/Core/Update.php:366 +#: src/Core/Update.php:349 src/Core/Update.php:377 msgid "[Friendica Notify] Database update" msgstr "[تنبيهات فرنديكا] تحديث قاعدة البيانات" -#: src/Core/Update.php:360 +#: src/Core/Update.php:371 #, php-format msgid "" "\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n\t\t\t\t\tحُدثت قاعدة البيانات بنجاح من الإصدار %s إلى %s." +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "" -#: src/Core/UserImport.php:125 -msgid "Error decoding account file" -msgstr "خطأ أثناء فك ترميز ملف الحساب" - -#: src/Core/UserImport.php:131 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "خطأ! لا توجد بيانات إصدار في الملف! هذا ليس ملف شخصي لفرنديكا؟" - -#: src/Core/UserImport.php:139 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "المستخدم '%s' موجود سلفًا على هذا الخادم!" - -#: src/Core/UserImport.php:175 -msgid "User creation error" -msgstr "خطأ أثناء إنشاء المستخدم" - -#: src/Core/UserImport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "لم يُستورد أي متراسل %d" -msgstr[1] "لم يستورد متراسل واحد %d" -msgstr[2] "لم يستورد متراسلان %d" -msgstr[3] "لم يستورد %d متراسلين" -msgstr[4] "لم يستورد %d متراسلًا" -msgstr[5] "لم يستورد %d متراسل" - -#: src/Core/UserImport.php:273 -msgid "User profile creation error" -msgstr "خطأ أثناء إنشاء الملف الشخصي للمستخدم" - -#: src/Core/UserImport.php:326 -msgid "Done. You can now login with your username and password" -msgstr "تم. يمكنك الآن الولوج باستخدام اسم المستخدم وكلمة المرور" - -#: src/Database/DBStructure.php:65 +#: src/Database/DBStructure.php:57 #, php-format msgid "The database version had been set to %s." msgstr "عُين إصدار قاعدة البيانات إلى %s." -#: src/Database/DBStructure.php:78 +#: src/Database/DBStructure.php:82 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "تحديث البيانات هو إصدار %d، لكن يجب أن يكون إصدار %d لتتمكن من حذف الجداول بأمان." -#: src/Database/DBStructure.php:91 +#: src/Database/DBStructure.php:95 msgid "No unused tables found." msgstr "لم يُعثر على جداول غير مستعملة." -#: src/Database/DBStructure.php:96 +#: src/Database/DBStructure.php:100 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "فرنديكا لا تستخدم هذه الجداول يمكنك حذفها بتنفيذ \"dbstructure drop -e\":" -#: src/Database/DBStructure.php:134 +#: src/Database/DBStructure.php:137 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "لا توجد جداول في MyISAM أو InnoDB بتنسيق ملف Antelope." -#: src/Database/DBStructure.php:158 +#: src/Database/DBStructure.php:161 #, php-format msgid "" "\n" @@ -3601,20 +3180,20 @@ msgid "" "%s\n" msgstr "\nحدث الخطأ %d أثناء تحديث قاعدة البيانات:\n%s\n" -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:164 msgid "Errors encountered performing database changes: " msgstr "حدثت أخطاء أثناء تحديث قاعدة البيانات: " -#: src/Database/DBStructure.php:549 +#: src/Database/DBStructure.php:232 msgid "Another database update is currently running." msgstr "تحديث آخر لقاعدة البيانات جارٍ." -#: src/Database/DBStructure.php:553 +#: src/Database/DBStructure.php:236 #, php-format msgid "%s: Database update" msgstr "%s: تحديث قاعدة البيانات" -#: src/Database/DBStructure.php:803 +#: src/Database/DBStructure.php:493 #, php-format msgid "%s: updating %s table." msgstr "%s يحدث جدول %s." @@ -3631,12 +3210,12 @@ msgstr "كيان غير قابل للمعالجة" msgid "Unauthorized" msgstr "لم يخوّل" -#: src/Factory/Api/Mastodon/Error.php:85 +#: src/Factory/Api/Mastodon/Error.php:84 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "لم يُخول الرمز عبر مستخدم صالح أو يفتقر إلى حيّزٍ مطلوب" -#: src/Factory/Api/Mastodon/Error.php:95 +#: src/Factory/Api/Mastodon/Error.php:94 msgid "Internal Server Error" msgstr "خطأ داخلي في الخادم" @@ -3645,468 +3224,546 @@ msgstr "خطأ داخلي في الخادم" msgid "Legacy module file not found: %s" msgstr "لم يُعثر على ملف الوحدة القديم: %s" -#: src/Model/Contact.php:1103 src/Model/Contact.php:1115 -msgid "UnFollow" -msgstr "ألغِ المتابعة" +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." +msgstr "" -#: src/Model/Contact.php:1121 src/Module/Admin/Users/Pending.php:107 -#: src/Module/Notifications/Introductions.php:130 -#: src/Module/Notifications/Introductions.php:202 +#: src/Model/Circle.php:543 +msgid "Everybody" +msgstr "الجميع" + +#: src/Model/Circle.php:562 +msgid "edit" +msgstr "عدّل" + +#: src/Model/Circle.php:599 +msgid "add" +msgstr "أضف" + +#: src/Model/Circle.php:604 +msgid "Edit circle" +msgstr "" + +#: src/Model/Circle.php:605 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "" + +#: src/Model/Circle.php:607 +msgid "Create a new circle" +msgstr "" + +#: src/Model/Circle.php:608 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "" + +#: src/Model/Circle.php:609 +msgid "Edit circles" +msgstr "" + +#: src/Model/Contact.php:1240 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "موافق" -#: src/Model/Contact.php:1533 +#: src/Model/Contact.php:1694 msgid "Organisation" msgstr "منظّمة" -#: src/Model/Contact.php:1541 -msgid "Forum" -msgstr "منتدى" +#: src/Model/Contact.php:1702 +msgid "Group" +msgstr "" -#: src/Model/Contact.php:2517 +#: src/Model/Contact.php:3005 msgid "Disallowed profile URL." msgstr "رابط الملف الشخصي غير المسموح." -#: src/Model/Contact.php:2522 src/Module/Friendica.php:81 +#: src/Model/Contact.php:3010 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "نطاق محجوب" -#: src/Model/Contact.php:2527 +#: src/Model/Contact.php:3015 msgid "Connect URL missing." msgstr "رابط الاتصال مفقود." -#: src/Model/Contact.php:2536 +#: src/Model/Contact.php:3024 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "تعذر إضافة المتراسل. تحقق من بيانات اعتماد الشبكة المستهدفة في الإعدادات -> صفحة الشبكات الاجتماعية." -#: src/Model/Contact.php:2578 +#: src/Model/Contact.php:3042 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "" + +#: src/Model/Contact.php:3059 msgid "The profile address specified does not provide adequate information." msgstr "عنوان الملف الشخصي لا يوفر معلومات كافية." -#: src/Model/Contact.php:2580 +#: src/Model/Contact.php:3061 msgid "No compatible communication protocols or feeds were discovered." msgstr "لم تكتشف أي موافيق اتصال أو تغذيات متوافقة." -#: src/Model/Contact.php:2583 +#: src/Model/Contact.php:3064 msgid "An author or name was not found." msgstr "لم يُعثر على الكاتب أو اسمه." -#: src/Model/Contact.php:2586 +#: src/Model/Contact.php:3067 msgid "No browser URL could be matched to this address." msgstr "لا يوجد رابط يطابق هذا العنوان." -#: src/Model/Contact.php:2589 +#: src/Model/Contact.php:3070 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "غير قادر على مطابقة عنوان المعرف \"@\" بميفاق معروف أو متراسل بريد إلكتروني." -#: src/Model/Contact.php:2590 +#: src/Model/Contact.php:3071 msgid "Use mailto: in front of address to force email check." msgstr "استخدم mailto: أمام العنوان للتعرّف عليه كبريد إلكتروني." -#: src/Model/Contact.php:2596 +#: src/Model/Contact.php:3077 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "عنوان الملف الشخصي تابع لشبكة محجوبة في هذا الموقع." -#: src/Model/Contact.php:2601 +#: src/Model/Contact.php:3082 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "ملف شخصي محدود. لن يتمكن هذا الشخص من تلقي تنبيهات مباشرة/شخصية." -#: src/Model/Contact.php:2660 +#: src/Model/Contact.php:3148 msgid "Unable to retrieve contact information." msgstr "تعذر جلب معلومات المتراسل." -#: src/Model/Event.php:52 +#: src/Model/Event.php:54 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:73 src/Model/Event.php:90 src/Model/Event.php:464 -#: src/Model/Event.php:897 +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 msgid "Starts:" msgstr "يبدأ:" -#: src/Model/Event.php:76 src/Model/Event.php:96 src/Model/Event.php:465 -#: src/Model/Event.php:901 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 msgid "Finishes:" msgstr "ينتهي:" -#: src/Model/Event.php:414 +#: src/Model/Event.php:419 msgid "all-day" msgstr "طوال اليوم" -#: src/Model/Event.php:440 +#: src/Model/Event.php:445 msgid "Sept" msgstr "سبتمبر" -#: src/Model/Event.php:462 +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "اليوم" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:245 src/Util/Temporal.php:353 +msgid "month" +msgstr "شهر" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:246 src/Util/Temporal.php:354 +msgid "week" +msgstr "أسبوع" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:247 src/Util/Temporal.php:355 +msgid "day" +msgstr "يوم" + +#: src/Model/Event.php:467 msgid "No events to display" msgstr "لا توجد أحداث لعرضها" -#: src/Model/Event.php:578 +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "قُيِّد الوصول لهذا الملف الشخصي." + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "" + +#: src/Model/Event.php:637 msgid "l, F j" msgstr "" -#: src/Model/Event.php:609 +#: src/Model/Event.php:664 msgid "Edit event" msgstr "عدّل الحدث" -#: src/Model/Event.php:610 +#: src/Model/Event.php:665 msgid "Duplicate event" msgstr "ضاعف الحدث" -#: src/Model/Event.php:611 +#: src/Model/Event.php:666 msgid "Delete event" msgstr "احذف الحدث" -#: src/Model/Event.php:853 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:854 +#: src/Model/Event.php:897 msgid "D g:i A" msgstr "" -#: src/Model/Event.php:855 +#: src/Model/Event.php:898 msgid "g:i A" msgstr "" -#: src/Model/Event.php:916 src/Model/Event.php:918 +#: src/Model/Event.php:964 src/Model/Event.php:966 msgid "Show map" msgstr "أظهر الخريطة" -#: src/Model/Event.php:917 +#: src/Model/Event.php:965 msgid "Hide map" msgstr "اخف الخريطة" -#: src/Model/Event.php:1009 +#: src/Model/Event.php:1058 #, php-format msgid "%s's birthday" msgstr "عيد ميلاد %s" -#: src/Model/Event.php:1010 +#: src/Model/Event.php:1059 #, php-format msgid "Happy Birthday %s" msgstr "%s عيد ميلاد سعيد" -#: src/Model/Group.php:95 -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 "تم إحياء مجموعة محذوفة بهذا الاسم. أذونات العنصر الموجودة سبقًا قد تنطبق على هذه المجموعة وأي أعضاء في المستقبل. إذا حصل هذا، يرجى إنشاء مجموعة أخرى باسم مختلف." - -#: src/Model/Group.php:486 -msgid "Default privacy group for new contacts" -msgstr "المجموعة الافتراضية للمتراسلين الجدد" - -#: src/Model/Group.php:518 -msgid "Everybody" -msgstr "الجميع" - -#: src/Model/Group.php:537 -msgid "edit" -msgstr "عدّل" - -#: src/Model/Group.php:569 -msgid "add" -msgstr "أضف" - -#: src/Model/Group.php:574 -msgid "Edit group" -msgstr "عدّل المجموعة" - -#: src/Model/Group.php:575 src/Module/Group.php:194 -msgid "Contacts not in any group" -msgstr "متراسلون لا ينتمون لأي مجموعة" - -#: src/Model/Group.php:577 -msgid "Create a new group" -msgstr "أنشئ مجموعة جديدة" - -#: src/Model/Group.php:578 src/Module/Group.php:179 src/Module/Group.php:202 -#: src/Module/Group.php:277 -msgid "Group Name: " -msgstr "اسم المجموعة: " - -#: src/Model/Group.php:579 -msgid "Edit groups" -msgstr "عدّل المجموعات" - -#: src/Model/Item.php:1795 +#: src/Model/Item.php:2062 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "اللغات المكتشفة في هذه المشاركة:\\n%s" -#: src/Model/Item.php:2701 +#: src/Model/Item.php:3007 msgid "activity" msgstr "النشاط" -#: src/Model/Item.php:2703 +#: src/Model/Item.php:3009 msgid "comment" msgstr "تعليق" -#: src/Model/Item.php:2706 +#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "مشاركة" -#: src/Model/Item.php:2821 +#: src/Model/Item.php:3182 +#, php-format +msgid "%s is blocked" +msgstr "" + +#: src/Model/Item.php:3184 +#, php-format +msgid "%s is ignored" +msgstr "" + +#: src/Model/Item.php:3186 +#, php-format +msgid "Content from %s is collapsed" +msgstr "" + +#: src/Model/Item.php:3190 #, php-format msgid "Content warning: %s" msgstr "تحذير من المحتوى: %s" -#: src/Model/Item.php:3180 +#: src/Model/Item.php:3652 msgid "bytes" msgstr "بايت" -#: src/Model/Item.php:3214 +#: src/Model/Item.php:3683 #, php-format -msgid "%s (%d%s, %d votes)" -msgstr "" +msgid "%2$s (%3$d%%, %1$d vote)" +msgid_plural "%2$s (%3$d%%, %1$d votes)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: src/Model/Item.php:3216 +#: src/Model/Item.php:3685 #, php-format -msgid "%s (%d votes)" -msgstr "" +msgid "%2$s (%1$d vote)" +msgid_plural "%2$s (%1$d votes)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: src/Model/Item.php:3221 +#: src/Model/Item.php:3690 #, php-format -msgid "%d voters. Poll end: %s" -msgstr "" +msgid "%d voter. Poll end: %s" +msgid_plural "%d voters. Poll end: %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: src/Model/Item.php:3223 +#: src/Model/Item.php:3692 #, php-format -msgid "%d voters." -msgstr "" +msgid "%d voter." +msgid_plural "%d voters." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: src/Model/Item.php:3225 +#: src/Model/Item.php:3694 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3259 src/Model/Item.php:3260 +#: src/Model/Item.php:3728 src/Model/Item.php:3729 msgid "View on separate page" msgstr "اعرضه في صفحة منفصلة" -#: src/Model/Mail.php:137 src/Model/Mail.php:265 +#: src/Model/Mail.php:137 src/Model/Mail.php:266 msgid "[no subject]" msgstr "[بدون موضوع]" -#: src/Model/Profile.php:358 src/Module/Profile/Profile.php:256 -#: src/Module/Profile/Profile.php:258 +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "صور الحائط" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 msgid "Edit profile" msgstr "عدّل الملف الشخصي" -#: src/Model/Profile.php:360 +#: src/Model/Profile.php:361 msgid "Change profile photo" msgstr "غير صورة الملف الشخصي" -#: src/Model/Profile.php:373 src/Module/Directory.php:153 -#: src/Module/Profile/Profile.php:184 +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 msgid "Homepage:" msgstr "الصفحة رئيسية:" -#: src/Model/Profile.php:374 src/Module/Contact/Profile.php:375 -#: src/Module/Notifications/Introductions.php:187 +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "حول:" -#: src/Model/Profile.php:460 +#: src/Model/Profile.php:465 msgid "Atom feed" msgstr "تغذية Atom" -#: src/Model/Profile.php:504 +#: src/Model/Profile.php:472 +msgid "This website has been verified to belong to the same person." +msgstr "" + +#: src/Model/Profile.php:509 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:568 src/Model/Profile.php:652 +#: src/Model/Profile.php:573 src/Model/Profile.php:662 msgid "[today]" msgstr "[اليوم]" -#: src/Model/Profile.php:577 +#: src/Model/Profile.php:582 msgid "Birthday Reminders" msgstr "التذكير أبعياد الميلاد" -#: src/Model/Profile.php:578 +#: src/Model/Profile.php:583 msgid "Birthdays this week:" msgstr "أعياد ميلاد لهذا الأسبوع:" -#: src/Model/Profile.php:601 +#: src/Model/Profile.php:611 msgid "g A l F d" msgstr "g A l F d" -#: src/Model/Profile.php:639 +#: src/Model/Profile.php:649 msgid "[No description]" msgstr "[بدون وصف]" -#: src/Model/Profile.php:665 +#: src/Model/Profile.php:675 msgid "Event Reminders" msgstr "التذكير بالأحداث" -#: src/Model/Profile.php:666 +#: src/Model/Profile.php:676 msgid "Upcoming events the next 7 days:" msgstr "أحداث لهذا الأسبوع:" -#: src/Model/Profile.php:854 +#: src/Model/Profile.php:873 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s يرحب بـ %2$s" -#: src/Model/Profile.php:980 +#: src/Model/Profile.php:1013 msgid "Hometown:" msgstr "المدينة:" -#: src/Model/Profile.php:981 +#: src/Model/Profile.php:1014 msgid "Marital Status:" msgstr "الحالة الاجتماعية:" -#: src/Model/Profile.php:982 +#: src/Model/Profile.php:1015 msgid "With:" msgstr "مع:" -#: src/Model/Profile.php:983 +#: src/Model/Profile.php:1016 msgid "Since:" msgstr "منذ:" -#: src/Model/Profile.php:984 +#: src/Model/Profile.php:1017 msgid "Sexual Preference:" msgstr "التفضيل الجنسي:" -#: src/Model/Profile.php:985 +#: src/Model/Profile.php:1018 msgid "Political Views:" msgstr "الآراء السياسية:" -#: src/Model/Profile.php:986 +#: src/Model/Profile.php:1019 msgid "Religious Views:" msgstr "الآراء الدينية:" -#: src/Model/Profile.php:987 +#: src/Model/Profile.php:1020 msgid "Likes:" msgstr "أعجبني:" -#: src/Model/Profile.php:988 +#: src/Model/Profile.php:1021 msgid "Dislikes:" msgstr "لم يعجبني:" -#: src/Model/Profile.php:989 +#: src/Model/Profile.php:1022 msgid "Title/Description:" msgstr "العنوان/الوصف:" -#: src/Model/Profile.php:990 src/Module/Admin/Summary.php:234 +#: src/Model/Profile.php:1023 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 msgid "Summary" msgstr "موجز" -#: src/Model/Profile.php:991 +#: src/Model/Profile.php:1024 msgid "Musical interests" msgstr "الموسيقى المفضلة" -#: src/Model/Profile.php:992 +#: src/Model/Profile.php:1025 msgid "Books, literature" msgstr "الكتب والأدب" -#: src/Model/Profile.php:993 +#: src/Model/Profile.php:1026 msgid "Television" msgstr "العروض التلفزيونة" -#: src/Model/Profile.php:994 +#: src/Model/Profile.php:1027 msgid "Film/dance/culture/entertainment" msgstr "أفلام/رقص/ثقافة/ترفيه" -#: src/Model/Profile.php:995 +#: src/Model/Profile.php:1028 msgid "Hobbies/Interests" msgstr "الهوايات/الاهتمامات" -#: src/Model/Profile.php:996 +#: src/Model/Profile.php:1029 msgid "Love/romance" msgstr "الحب/الرومانسية" -#: src/Model/Profile.php:997 +#: src/Model/Profile.php:1030 msgid "Work/employment" msgstr "العمل/التوظيف" -#: src/Model/Profile.php:998 +#: src/Model/Profile.php:1031 msgid "School/education" msgstr "المدرسة/التعليم" -#: src/Model/Profile.php:999 +#: src/Model/Profile.php:1032 msgid "Contact information and Social Networks" msgstr "معلومات الاتصال وحسابات الشبكات الاجتماعية" -#: src/Model/User.php:210 src/Model/User.php:1058 +#: src/Model/User.php:227 src/Model/User.php:1186 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "خطأ قاتل: فشل توليد مفاتيح الأمان." -#: src/Model/User.php:570 src/Model/User.php:603 +#: src/Model/User.php:620 src/Model/User.php:653 msgid "Login failed" msgstr "فشل الولوج" -#: src/Model/User.php:635 +#: src/Model/User.php:685 msgid "Not enough information to authenticate" msgstr "لا توجد معلومات كافية للاستيثاق" -#: src/Model/User.php:730 +#: src/Model/User.php:806 msgid "Password can't be empty" msgstr "لا يمكن أن تكون كلمة المرور فارغة" -#: src/Model/User.php:749 +#: src/Model/User.php:848 msgid "Empty passwords are not allowed." msgstr "لا يسمح بكلمات مرور فارغة." -#: src/Model/User.php:753 +#: src/Model/User.php:852 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "كلمة المرور الجديدة جزء من تسريب بيانات علني ، يرجى اختيار كلمة مرور مختلفة." -#: src/Model/User.php:759 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "لا يمكن أن تحتوي كلمة المرور على أحرف منبورة أو مسافات أو نقطتي تفسير (:)" +#: src/Model/User.php:856 +msgid "The password length is limited to 72 characters." +msgstr "" -#: src/Model/User.php:938 +#: src/Model/User.php:860 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "" + +#: src/Model/User.php:1069 msgid "Passwords do not match. Password unchanged." msgstr "كلمتا المرور غير متطابقتين. لم تغيَّر كلمة المرور." -#: src/Model/User.php:945 +#: src/Model/User.php:1076 msgid "An invitation is required." msgstr "الدعوة إلزامية." -#: src/Model/User.php:949 +#: src/Model/User.php:1080 msgid "Invitation could not be verified." msgstr "تعذر التحقق من الدعوة." -#: src/Model/User.php:957 +#: src/Model/User.php:1088 msgid "Invalid OpenID url" msgstr "رابط OpenID عير صالح" -#: src/Model/User.php:970 src/Security/Authentication.php:235 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "واجهنا مشكلة أثناء الولوج باستخدام OpenID. يرجى التحقق من صحة المعرف." -#: src/Model/User.php:970 src/Security/Authentication.php:235 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "رسالة الخطأ:" -#: src/Model/User.php:976 +#: src/Model/User.php:1107 msgid "Please enter the required information." msgstr "رجاءً أدخل المعلومات المطلوبة." -#: src/Model/User.php:990 +#: src/Model/User.php:1121 #, 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:997 +#: src/Model/User.php:1128 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." @@ -4117,7 +3774,7 @@ msgstr[3] "يجب أن لا يقل اسم المستخدم عن %s محارف." msgstr[4] "يجب أن لا يقل اسم المستخدم عن %s محرف." msgstr[5] "يجب أن لا يقل اسم المستخدم عن %s محرف." -#: src/Model/User.php:1001 +#: src/Model/User.php:1132 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." @@ -4128,60 +3785,60 @@ msgstr[3] "يجب أن لا يزيد اسم المستخدم عن %s محارف. msgstr[4] "يجب أن لا يزيد اسم المستخدم عن %s محرف." msgstr[5] "يجب أن لا يزيد اسم المستخدم عن %s محرف." -#: src/Model/User.php:1009 +#: src/Model/User.php:1140 msgid "That doesn't appear to be your full (First Last) name." msgstr "لا يبدو أن هذا اسمك الكامل." -#: src/Model/User.php:1014 +#: src/Model/User.php:1145 msgid "Your email domain is not among those allowed on this site." msgstr "نطاق بريدك الإلكتروني غير مسموح به على هذا الموقع." -#: src/Model/User.php:1018 +#: src/Model/User.php:1149 msgid "Not a valid email address." msgstr "عنوان البريد الإلكتروني غير صالح." -#: src/Model/User.php:1021 +#: src/Model/User.php:1152 msgid "The nickname was blocked from registration by the nodes admin." msgstr "هذا اللقب محظور من قبل مدير العقدة." -#: src/Model/User.php:1025 src/Model/User.php:1033 +#: src/Model/User.php:1156 src/Model/User.php:1162 msgid "Cannot use that email." msgstr "لا يمكن استخدام هذا البريد الإلكتروني." -#: src/Model/User.php:1040 +#: src/Model/User.php:1168 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "يجب أن يتكون اللقب من المحارف a-z، 0-9، _." -#: src/Model/User.php:1048 src/Model/User.php:1105 +#: src/Model/User.php:1176 src/Model/User.php:1233 msgid "Nickname is already registered. Please choose another." msgstr "هذا اللقب محجوز. اختر لقبًا آخر." -#: src/Model/User.php:1092 src/Model/User.php:1096 +#: src/Model/User.php:1220 src/Model/User.php:1224 msgid "An error occurred during registration. Please try again." msgstr "حدث خطأ أثناء التسجيل، رجاء حاول مرة أخرى." -#: src/Model/User.php:1119 +#: src/Model/User.php:1247 msgid "An error occurred creating your default profile. Please try again." msgstr "حدث خطأ أثناء إنشاء الملف الشخصي الافتراضي، رجاء حاول مرة أخرى." -#: src/Model/User.php:1126 +#: src/Model/User.php:1254 msgid "An error occurred creating your self contact. Please try again." msgstr "" -#: src/Model/User.php:1131 +#: src/Model/User.php:1259 msgid "Friends" msgstr "الأصدقاء" -#: src/Model/User.php:1135 +#: src/Model/User.php:1263 msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "حدث خطأ أثناء إنشاء مجموعة المتراسلين الافتراضية، رجاء حاول مرة أخرى." +"An error occurred creating your default contact circle. Please try again." +msgstr "" -#: src/Model/User.php:1174 +#: src/Model/User.php:1307 msgid "Profile Photos" msgstr "صور الملف الشخصي" -#: src/Model/User.php:1368 +#: src/Model/User.php:1487 #, php-format msgid "" "\n" @@ -4189,7 +3846,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\tعزيزي %1$s،\n\t\t\tأنشأ مدير %2$s حساب لك." -#: src/Model/User.php:1371 +#: src/Model/User.php:1490 #, php-format msgid "" "\n" @@ -4216,17 +3873,17 @@ msgid "" "\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" +"\t\tIf you ever want to delete your account, you can do so at %1$s/settings/removeme\n" "\n" "\t\tThank you and welcome to %4$s." -msgstr "\n\t\tتفاصيل تسجيل الولوج هي كالتالي:\n\n\t\tالموقع:\t%1$s\n\t\tاسم المستخدم:\t\t%2$s\n\t\tكلمة المرور:\t%3$s\n\n\t\tيمكنك تغيير كلمة المرور من صفحة إعدادات الحساب.\n\n\t\tيرجى أخذ بضع لحظات لمراجعة الإعدادات الأخرى في تلك الصفحة.\n\n\t\tقد ترغب أيضًا في إضافة بعض المعلومات الأساسية إلى صفحة ملفك الشخصية الافتراضي\n\t\t(من صفحة \"الملفات الشخصية\") حتى يتمكن الآخرون من العثور عليك بسهولة.\n\n\t\tنحن نوصي بوضع اسمك الكامل، إضافة لصورة،\n\t\tوإضافة بعض الكلمات المفتاحية (مفيدة جدا في تكوين صداقات) - و\n\t\tربما البلد الذي تعيش فيه.\n\n\t\tنحن نحترم حقك في الخصوصية احتراما كاملا، ولا ضرورة لأي مما سبق.\n\t\tإذا كنت جديداً ولا تعرف أي شخص هنا، فقد تساعدك هذه المعلومات على تكوين صداقات مثيرة للاهتمام.\n\n\t\tإذا كنت ترغب في حذف حسابك، يمكنك فعل ذلك في %1$s/removeme\n\n\t\tشكرا لك ومرحبًا بك في %4$s." +msgstr "" -#: src/Model/User.php:1404 src/Model/User.php:1511 +#: src/Model/User.php:1523 src/Model/User.php:1630 #, php-format msgid "Registration details for %s" msgstr "تفاصيل التسجيل لـ %s" -#: src/Model/User.php:1424 +#: src/Model/User.php:1543 #, php-format msgid "" "\n" @@ -4241,12 +3898,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\t\t" -#: src/Model/User.php:1443 +#: src/Model/User.php:1562 #, php-format msgid "Registration at %s" msgstr "التسجيل في %s" -#: src/Model/User.php:1467 +#: src/Model/User.php:1586 #, php-format msgid "" "\n" @@ -4255,7 +3912,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\t عزيزي %1$s،\n\t\t\t\tشكرا لك على التسجيل في %2$s. نجح إنشاء حسابك.\n\t\t\t\t" -#: src/Model/User.php:1475 +#: src/Model/User.php:1594 #, php-format msgid "" "\n" @@ -4282,10 +3939,10 @@ msgid "" "\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" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." -msgstr "\n\t\tتفاصيل تسجيل الولوج هي كالتالي:\n\n\t\tالموقع:\t%3$s\n\t\tاسم المستخدم:\t\t%1$s\n\t\tكلمة المرور:\t%5$s\n\n\t\tيمكنك تغيير كلمة المرور من صفحة إعدادات الحساب.\n\n\t\tيرجى أخذ بضع لحظات لمراجعة الإعدادات الأخرى في تلك الصفحة.\n\n\t\tقد ترغب أيضًا في إضافة بعض المعلومات الأساسية إلى صفحة ملفك الشخصية الافتراضي\n\t\t(من صفحة \"الملفات الشخصية\") حتى يتمكن الآخرون من العثور عليك بسهولة.\n\n\t\tنحن نوصي بوضع اسمك الكامل، إضافة لصورة،\n\t\tوإضافة بعض الكلمات المفتاحية (مفيدة جدا في تكوين صداقات) - و\n\t\tربما البلد الذي تعيش فيه.\n\n\t\tنحن نحترم حقك في الخصوصية احتراما كاملا، ولا ضرورة لأي مما سبق.\n\t\tإذا كنت جديداً ولا تعرف أي شخص هنا، فقد تساعدك هذه المعلومات على تكوين صداقات مثيرة للاهتمام.\n\n\t\tإذا كنت ترغب في حذف حسابك، يمكنك فعل ذلك في %3$s/removeme\n\n\t\tشكرا لك ومرحبًا بك في %2$s." +msgstr "" #: src/Module/Admin/Addons/Details.php:65 msgid "Addon not found." @@ -4312,26 +3969,20 @@ msgid "Enable" msgstr "فعّل" #: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:94 -#: src/Module/Admin/Blocklist/Server/Add.php:89 -#: src/Module/Admin/Blocklist/Server/Index.php:78 -#: src/Module/Admin/Federation.php:196 src/Module/Admin/Item/Delete.php:64 -#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:84 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:431 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:233 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:75 -#: 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 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 msgid "Administration" msgstr "إدارة" #: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:93 -#: src/Module/BaseSettings.php:85 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:132 msgid "Addons" msgstr "الإضافات" @@ -4340,13 +3991,13 @@ msgstr "الإضافات" msgid "Toggle" msgstr "بدّل" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 msgid "Author: " msgstr "الكاتب: " -#: src/Module/Admin/Addons/Details.php:122 -#: src/Module/Admin/Themes/Details.php:102 +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 msgid "Maintainer: " msgstr "المصين: " @@ -4359,11 +4010,22 @@ msgstr "أُعيد تحميل الإضافة" msgid "Addon %s failed to install." msgstr "فشل تثبيت إضافة %s." +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "احفظ الإعدادات" + #: src/Module/Admin/Addons/Index.php:70 msgid "Reload active addons" msgstr "أعد تحميل الإضافات النشطة" -#: src/Module/Admin/Addons/Index.php:75 +#: src/Module/Admin/Addons/Index.php:74 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4371,347 +4033,6 @@ msgid "" " the open addon registry at %2$s" msgstr "لا توجد حاليا أي إضافات متاحة في عقدتك. يمكنك العثور على مستودع الإضافات الرسمي في %1$s وقد تجد إضافات أخرى مثيرة للاهتمام في سجل الإضافات المفتوحة في %2$s" -#: src/Module/Admin/BaseUsers.php:54 -msgid "List of all users" -msgstr "قائمة المستخدمين" - -#: src/Module/Admin/BaseUsers.php:59 -msgid "Active" -msgstr "نشط" - -#: src/Module/Admin/BaseUsers.php:62 -msgid "List of active accounts" -msgstr "قائمة الحسابات النشطة" - -#: src/Module/Admin/BaseUsers.php:67 src/Module/Contact.php:314 -#: src/Module/Contact.php:374 -msgid "Pending" -msgstr "معلق" - -#: src/Module/Admin/BaseUsers.php:70 -msgid "List of pending registrations" -msgstr "قائمة التسجيلات المعلقة" - -#: src/Module/Admin/BaseUsers.php:75 src/Module/Contact.php:322 -#: src/Module/Contact.php:375 -msgid "Blocked" -msgstr "محجوب" - -#: src/Module/Admin/BaseUsers.php:78 -msgid "List of blocked users" -msgstr "قائمة المستخدمين المحجوبين" - -#: src/Module/Admin/BaseUsers.php:83 -msgid "Deleted" -msgstr "حُذف" - -#: src/Module/Admin/BaseUsers.php:86 -msgid "List of pending user deletions" -msgstr "قائمة الحذف المعلق للمستخدمين" - -#: src/Module/Admin/BaseUsers.php:100 src/Module/Settings/Account.php:493 -msgid "Normal Account Page" -msgstr "صفحة حساب عادي" - -#: src/Module/Admin/BaseUsers.php:101 src/Module/Settings/Account.php:500 -msgid "Soapbox Page" -msgstr "صفحة سياسي" - -#: src/Module/Admin/BaseUsers.php:102 src/Module/Settings/Account.php:507 -msgid "Public Forum" -msgstr "منتدى عمومي" - -#: src/Module/Admin/BaseUsers.php:103 src/Module/Settings/Account.php:514 -msgid "Automatic Friend Page" -msgstr "صفحة اشترك تلقائي" - -#: src/Module/Admin/BaseUsers.php:104 -msgid "Private Forum" -msgstr "منتدى خاص" - -#: src/Module/Admin/BaseUsers.php:107 src/Module/Settings/Account.php:465 -msgid "Personal Page" -msgstr "صفحة شخصية" - -#: src/Module/Admin/BaseUsers.php:108 src/Module/Settings/Account.php:472 -msgid "Organisation Page" -msgstr "صفحة منظمة" - -#: src/Module/Admin/BaseUsers.php:109 src/Module/Settings/Account.php:479 -msgid "News Page" -msgstr "صفحة إخبارية" - -#: src/Module/Admin/BaseUsers.php:110 src/Module/Settings/Account.php:486 -msgid "Community Forum" -msgstr "منتدى مجتمعي" - -#: src/Module/Admin/BaseUsers.php:111 -msgid "Relay" -msgstr "مُرحِل" - -#: src/Module/Admin/Blocklist/Contact.php:54 -msgid "You can't block a local contact, please block the user instead" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:73 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "لم يُرفع الحجب عن مستخدم %s" -msgstr[1] "رُفع الحجب عن مستخدم %s" -msgstr[2] "رُفع الحجب عن مستخدمَين %s" -msgstr[3] "رُفع الحجب عن %s مستخدمين" -msgstr[4] "رُفع الحجب عن %s مستخدمًا" -msgstr[5] "رُفع الحجب عن %s مستخدم" - -#: src/Module/Admin/Blocklist/Contact.php:95 -msgid "Remote Contact Blocklist" -msgstr "قائمة المتراسلين البِعاد المحظورين" - -#: src/Module/Admin/Blocklist/Contact.php:96 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "هذه الصفحة تمنع رسائل المستخدمين البِعاد من الوصول لعقدتك." - -#: src/Module/Admin/Blocklist/Contact.php:97 -msgid "Block Remote Contact" -msgstr "احجب مستخدمًا بعيدًا" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#: 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 "اختر الكل" - -#: src/Module/Admin/Blocklist/Contact.php:99 -msgid "select none" -msgstr "ألغ الاختيار" - -#: src/Module/Admin/Blocklist/Contact.php:101 -#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156 -#: src/Module/Contact.php:398 src/Module/Contact/Profile.php:348 -#: src/Module/Contact/Profile.php:449 -msgid "Unblock" -msgstr "ارفع الحجب" - -#: src/Module/Admin/Blocklist/Contact.php:102 -msgid "No remote contact is blocked from this node." -msgstr "لم يُحجب متراسل بعيد من هذه العقدة." - -#: src/Module/Admin/Blocklist/Contact.php:104 -msgid "Blocked Remote Contacts" -msgstr "المستخدمون البِعاد المحجبون" - -#: src/Module/Admin/Blocklist/Contact.php:105 -msgid "Block New Remote Contact" -msgstr "احجب مستخدمًا بعيدًا" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Photo" -msgstr "صورة" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Reason" -msgstr "السبب" - -#: src/Module/Admin/Blocklist/Contact.php:114 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "لم يحجب أي متراسل %s" -msgstr[1] "متراسل%s محجوب" -msgstr[2] "متراسلان %s محجوبان" -msgstr[3] "%s متراسلين محجوبين" -msgstr[4] "%s متراسلًا محجوبًا" -msgstr[5] "%s متراسل محجوب" - -#: src/Module/Admin/Blocklist/Contact.php:116 -msgid "URL of the remote contact to block." -msgstr "عنوان المتراسل البعيد المراد حجبه." - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "Also purge contact" -msgstr "امسح المتراسل أيضًا" - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "" -"Removes all content related to this contact from the node. Keeps the contact" -" record. This action cannot be undone." -msgstr "يزيل جميع المحتويات المتعلقة بهذا المتراسل من العقدة. ويحتفظ بسجل للمتراسل. لا يمكن التراجع عن هذا الإجراء." - -#: src/Module/Admin/Blocklist/Contact.php:118 -msgid "Block Reason" -msgstr "سبب الحجب" - -#: src/Module/Admin/Blocklist/Server/Add.php:55 -msgid "Server domain pattern added to the blocklist." -msgstr "أُضيفت صيغة النطاق لقائمة الحجب." - -#: src/Module/Admin/Blocklist/Server/Add.php:63 -#, php-format -msgid "%s server scheduled to be purged." -msgid_plural "%s servers scheduled to be purged." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: src/Module/Admin/Blocklist/Server/Add.php:88 -msgid "← Return to the list" -msgstr "→رجوع للقائمة" - -#: src/Module/Admin/Blocklist/Server/Add.php:90 -msgid "Block A New Server Domain Pattern" -msgstr "احجب صيغة نطاق جديدة" - -#: src/Module/Admin/Blocklist/Server/Add.php:91 -#: src/Module/Admin/Blocklist/Server/Index.php:82 -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" -"
    " -msgstr "

    تنسيق صيّغ النطاق غير حساس لحالة الأحرف ويستخدم محارف بَدلِ الصدفة، بما في ذلك المحارف التالية:

    \n
      \n\t
    • *: أي عدد من المحارف
    • \n\t
    • ?: محرف واحد
    • \n
    " - -#: src/Module/Admin/Blocklist/Server/Add.php:96 -#: src/Module/Admin/Blocklist/Server/Index.php:88 -msgid "Check pattern" -msgstr "تحقق من الصيغة" - -#: src/Module/Admin/Blocklist/Server/Add.php:97 -msgid "Matching known servers" -msgstr "يطابق الخوادم المعروفة" - -#: src/Module/Admin/Blocklist/Server/Add.php:98 -msgid "Server Name" -msgstr "اسم الخادم" - -#: src/Module/Admin/Blocklist/Server/Add.php:99 -msgid "Server Domain" -msgstr "نطاق الخادم" - -#: src/Module/Admin/Blocklist/Server/Add.php:100 -msgid "Known Contacts" -msgstr "المتراسلون المعروفون" - -#: src/Module/Admin/Blocklist/Server/Add.php:101 -#, php-format -msgid "%d known server" -msgid_plural "%d known servers" -msgstr[0] "لا توجد خوادم معروفة %d" -msgstr[1] "خادم %d معروف" -msgstr[2] "خادمان %d معروفان" -msgstr[3] "%d خوادم معروفة" -msgstr[4] "%d خادمًا معروفًا" -msgstr[5] "%d خادمٍ معروفٍ" - -#: src/Module/Admin/Blocklist/Server/Add.php:102 -msgid "Add pattern to the blocklist" -msgstr "أضف المرشِّح لقائمة الحجب" - -#: src/Module/Admin/Blocklist/Server/Add.php:104 -#: src/Module/Admin/Blocklist/Server/Index.php:96 -msgid "Server Domain Pattern" -msgstr "صيغة النطاق" - -#: src/Module/Admin/Blocklist/Server/Add.php:104 -#: src/Module/Admin/Blocklist/Server/Index.php:96 -msgid "" -"The domain pattern of the new server to add to the blocklist. Do not include" -" the protocol." -msgstr "صيغة النطاق المراد إضافتها إلى قائمة الحجب. لا تُضمّن الميفاق." - -#: src/Module/Admin/Blocklist/Server/Add.php:105 -msgid "Purge server" -msgstr "امسح الخادم" - -#: src/Module/Admin/Blocklist/Server/Add.php:105 -msgid "" -"Also purges all the locally stored content authored by the known contacts " -"registered on that server. Keeps the contacts and the server records. This " -"action cannot be undone." -msgid_plural "" -"Also purges all the locally stored content authored by the known contacts " -"registered on these servers. Keeps the contacts and the servers records. " -"This action cannot be undone." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: src/Module/Admin/Blocklist/Server/Add.php:106 -msgid "Block reason" -msgstr "سبب الحجب" - -#: src/Module/Admin/Blocklist/Server/Add.php:106 -msgid "" -"The reason why you blocked this server domain pattern. This reason will be " -"shown publicly in the server information page." -msgstr "سبب حجب صيغة نطاق الخادم. سوف يظهر علنًا في صفحة معلومات الخادم." - -#: src/Module/Admin/Blocklist/Server/Index.php:68 -#: src/Module/Admin/Blocklist/Server/Index.php:91 -msgid "Blocked server domain pattern" -msgstr "صيّغ النطاقات المحجوبة" - -#: src/Module/Admin/Blocklist/Server/Index.php:69 -#: src/Module/Admin/Blocklist/Server/Index.php:92 src/Module/Friendica.php:82 -msgid "Reason for the block" -msgstr "سبب الحجب" - -#: src/Module/Admin/Blocklist/Server/Index.php:70 -msgid "Delete server domain pattern" -msgstr "احذف صيغة النطاق" - -#: src/Module/Admin/Blocklist/Server/Index.php:70 -msgid "Check to delete this entry from the blocklist" -msgstr "أشّر لحذف المدخل من قائمة الحجب" - -#: src/Module/Admin/Blocklist/Server/Index.php:79 -msgid "Server Domain Pattern Blocklist" -msgstr "قائمة الحجب لصيّغ النطاق" - -#: src/Module/Admin/Blocklist/Server/Index.php:80 -msgid "" -"This page can be used to define a blocklist of server domain patterns from " -"the federated network that are not allowed to interact with your node. For " -"each domain pattern you should also provide the reason why you block it." -msgstr "يمكن استخدام هذه الصفحة لتعريف صيّغ النطاقات لححب الخوادم من الشبكة الموحدة لمنع تفاعلها مع عقدتك. لكل صيغة نطاق يجب عليك تقديم سبب الحجب." - -#: src/Module/Admin/Blocklist/Server/Index.php:81 -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 "ستتاح قائمة صيّغ النطاقات الخادم المحجوبة في صفحة /friendica بحيث يمكن للمستخدمين التحقق من الخوادم اذا واجهوا مشكلة في الاتصال بها." - -#: src/Module/Admin/Blocklist/Server/Index.php:87 -msgid "Add new entry to the blocklist" -msgstr "أضف مُدخلًا جديد إلى القائمة الحجب" - -#: src/Module/Admin/Blocklist/Server/Index.php:89 -msgid "Save changes to the blocklist" -msgstr "احفظ التغييرات في قائمة الحجب" - -#: src/Module/Admin/Blocklist/Server/Index.php:90 -msgid "Current Entries in the Blocklist" -msgstr "المدخلات الموجودة في قائمة الحجب" - -#: src/Module/Admin/Blocklist/Server/Index.php:93 -msgid "Delete entry from the blocklist" -msgstr "أزل مدخلًا من قائمة الحجب" - -#: src/Module/Admin/Blocklist/Server/Index.php:94 -msgid "Delete entry from the blocklist?" -msgstr "أتريد إزالة المدخل من قائمة الحجب؟" - #: src/Module/Admin/DBSync.php:51 msgid "Update has been marked successful" msgstr "تُحقق من صحة التحديث وعلّم كـ\"ناجح\"" @@ -4746,28 +4067,28 @@ msgstr "لم يُعد أي رمز حالة للتحديث %s. تتعذر معر msgid "There was no additional update function %s that needed to be called." msgstr "لا توجد وظيفة تحديث إضافية %s يلزم استدعاؤها." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:105 msgid "No failed updates." msgstr "لم تفشل أي تحديثات." -#: src/Module/Admin/DBSync.php:107 +#: src/Module/Admin/DBSync.php:106 msgid "Check database structure" msgstr "تحقق من بنية قاعدة البيانات" -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:110 msgid "Failed Updates" msgstr "التحديثات الفاشلة" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:111 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "هذا لا يشمل الإصدارات السابقة لـ 1139، التي لم تُرجع تفاصيل." -#: src/Module/Admin/DBSync.php:114 +#: src/Module/Admin/DBSync.php:112 msgid "Mark success (if update was manually applied)" msgstr "ضع علامة النجاح (إذا حدثته يدوياً)" -#: src/Module/Admin/DBSync.php:115 +#: src/Module/Admin/DBSync.php:113 msgid "Attempt to execute this update step automatically" msgstr "حاول تنفيذ الخطوة تلقائيًا" @@ -4776,200 +4097,177 @@ msgstr "حاول تنفيذ الخطوة تلقائيًا" msgid "Lock feature %s" msgstr "أقفل ميزة %s" -#: src/Module/Admin/Features.php:85 +#: src/Module/Admin/Features.php:84 msgid "Manage Additional Features" msgstr "إدارة الميّزات الإضافية" -#: src/Module/Admin/Federation.php:65 +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 msgid "Other" msgstr "أخرى" -#: src/Module/Admin/Federation.php:136 src/Module/Admin/Federation.php:385 +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 msgid "unknown" msgstr "مجهول" -#: src/Module/Admin/Federation.php:169 +#: src/Module/Admin/Federation.php:187 #, php-format -msgid "%s total systems" -msgstr "%s نظام" +msgid "%2$s total system" +msgid_plural "%2$s total systems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: src/Module/Admin/Federation.php:170 +#: src/Module/Admin/Federation.php:188 #, php-format -msgid "%s active users last month" -msgstr "%s مستخدم نشط في آخر شهر" +msgid "%2$s active user last month" +msgid_plural "%2$s active users last month" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: src/Module/Admin/Federation.php:171 +#: src/Module/Admin/Federation.php:189 #, php-format -msgid "%s active users last six months" -msgstr "" +msgid "%2$s active user last six months" +msgid_plural "%2$s active users last six months" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: src/Module/Admin/Federation.php:172 +#: src/Module/Admin/Federation.php:190 #, php-format -msgid "%s registered users" -msgstr "%s مستخدم مسجل" - -#: src/Module/Admin/Federation.php:173 -#, php-format -msgid "%s locally created posts and comments" -msgstr "" - -#: src/Module/Admin/Federation.php:176 -#, php-format -msgid "%s posts per user" -msgstr "%s مشاركة لكل مستخدم" - -#: src/Module/Admin/Federation.php:181 -#, php-format -msgid "%s users per system" -msgstr "%s مستخدم لكل نظام" +msgid "%2$s registered user" +msgid_plural "%2$s registered users" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #: src/Module/Admin/Federation.php:191 +#, php-format +msgid "%2$s locally created post or comment" +msgid_plural "%2$s locally created posts and comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: src/Module/Admin/Federation.php:194 +#, php-format +msgid "%2$s post per user" +msgid_plural "%2$s posts per user" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: src/Module/Admin/Federation.php:199 +#, php-format +msgid "%2$s user per system" +msgid_plural "%2$s users per system" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: src/Module/Admin/Federation.php:209 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:197 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "إحصائيات الشبكة الموحدة" -#: src/Module/Admin/Federation.php:201 +#: src/Module/Admin/Federation.php:219 #, php-format msgid "" -"Currently this node is aware of %s nodes (%s active users last month, %s " -"active users last six months, %s registered users in total) from the " +"Currently this node is aware of %2$s node (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " "following platforms:" -msgstr "" - -#: src/Module/Admin/Item/Delete.php:53 -msgid "Item marked for deletion." -msgstr "سيُحذف العنصر." - -#: src/Module/Admin/Item/Delete.php:65 src/Module/BaseAdmin.php:106 -msgid "Delete Item" -msgstr "احذف عنصر" - -#: src/Module/Admin/Item/Delete.php:66 -msgid "Delete this Item" -msgstr "احذف العنصر" - -#: src/Module/Admin/Item/Delete.php:67 -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 "في هذه الصفحة يمكنك حذف عنصر من عقدتك. إذا كان العنصر هو المشاركة الأصلية، سيحذف النقاش بأكمله." - -#: src/Module/Admin/Item/Delete.php:68 -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 "يجب أن تعرف GUID الخاص بالعنصر. يمكنك العثور عليه عن طريق اختيار العنصر ثم قراءة عنوان الرابط. الجزء الأخير من الرابط هو GUID. مثال: http://example.com/display/123456 حيث GUID هو 123456." - -#: src/Module/Admin/Item/Delete.php:69 -msgid "GUID" -msgstr "" - -#: src/Module/Admin/Item/Delete.php:69 -msgid "The GUID of the item you want to delete." -msgstr "" - -#: src/Module/Admin/Item/Source.php:57 src/Module/BaseAdmin.php:116 -msgid "Item Source" -msgstr "مصدر العنصر" - -#: src/Module/Admin/Item/Source.php:58 -msgid "Item Guid" -msgstr "" - -#: src/Module/Admin/Item/Source.php:63 -msgid "Item Id" -msgstr "معرّف العنصر" - -#: src/Module/Admin/Item/Source.php:64 -msgid "Item URI" -msgstr "رابط العنصر" - -#: src/Module/Admin/Item/Source.php:66 -msgid "Terms" -msgstr "الشروط" - -#: src/Module/Admin/Item/Source.php:67 -msgid "Tag" -msgstr "وسم" - -#: 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 "نوع" - -#: src/Module/Admin/Item/Source.php:69 -msgid "Term" -msgstr "مصطلح" - -#: src/Module/Admin/Item/Source.php:70 -msgid "URL" -msgstr "رابط" - -#: src/Module/Admin/Item/Source.php:71 -msgid "Mention" -msgstr "ذكر" - -#: src/Module/Admin/Item/Source.php:72 -msgid "Implicit Mention" -msgstr "ذِكر صريح" - -#: src/Module/Admin/Item/Source.php:73 src/Module/Admin/Logs/View.php:99 -#: src/Module/Debug/ActivityPubConversion.php:62 -msgid "Source" -msgstr "المصدر" +msgid_plural "" +"Currently this node is aware of %2$s nodes (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #: src/Module/Admin/Logs/Settings.php:47 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "ملف السجل ''%s' غير قابل للكتابة. لا يمكن كتابة السجلات" -#: src/Module/Admin/Logs/Settings.php:71 +#: src/Module/Admin/Logs/Settings.php:77 msgid "PHP log currently enabled." msgstr "كتابة سجلات PHP مفعلة." -#: src/Module/Admin/Logs/Settings.php:73 +#: src/Module/Admin/Logs/Settings.php:79 msgid "PHP log currently disabled." msgstr "كتابة سجلات PHP معطلة." -#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:108 -#: src/Module/BaseAdmin.php:109 +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 msgid "Logs" msgstr "سجلات" -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:88 msgid "Clear" msgstr "امحُ" -#: src/Module/Admin/Logs/Settings.php:86 +#: src/Module/Admin/Logs/Settings.php:91 msgid "Enable Debugging" msgstr "فعّل التنقيح" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:92 msgid "Log file" msgstr "ملف السجل" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:92 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "إذن الكتابة للخادم في مجلد جذر فرنديكا مطلوب." -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:93 msgid "Log level" msgstr "مستوى التسجيل" -#: src/Module/Admin/Logs/Settings.php:90 +#: src/Module/Admin/Logs/Settings.php:95 msgid "PHP logging" msgstr "كتابة سجلات PHP" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:96 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 " @@ -4992,68 +4290,77 @@ msgid "" "is readable." msgstr "يتعذر فتح ملف السجل %1$s.
    تحقق مما إذا كان الملف %1$s مُنح أذونات القراءة." -#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:110 +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 msgid "View Logs" msgstr "اعرض السجلات" -#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Admin/Logs/View.php:87 msgid "Search in logs" msgstr "ابحث في السجل" -#: src/Module/Admin/Logs/View.php:89 -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Notifications/Notifications.php:140 msgid "Show all" msgstr "اعرض الكل" -#: src/Module/Admin/Logs/View.php:90 +#: src/Module/Admin/Logs/View.php:89 msgid "Date" msgstr "التّاريخ" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:90 msgid "Level" msgstr "المستوى" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:91 msgid "Context" msgstr "السياق" -#: src/Module/Admin/Logs/View.php:94 +#: src/Module/Admin/Logs/View.php:93 msgid "ALL" msgstr "الكل" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:94 msgid "View details" msgstr "اعرض التفاصيل" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:95 msgid "Click to view details" msgstr "انقر لعرض التفاصيل" -#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "تفاصيل الحدث" + +#: src/Module/Admin/Logs/View.php:97 msgid "Data" msgstr "البيانات" -#: src/Module/Admin/Logs/View.php:100 +#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Debug/ActivityPubConversion.php:57 +msgid "Source" +msgstr "المصدر" + +#: src/Module/Admin/Logs/View.php:99 msgid "File" msgstr "الملف" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:100 msgid "Line" msgstr "السطر" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:101 msgid "Function" msgstr "الدالة" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:102 msgid "UID" msgstr "" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:103 msgid "Process ID" msgstr "مُعرّف العملية" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:104 msgid "Close" msgstr "أغلق" @@ -5089,463 +4396,472 @@ msgstr "أمر" msgid "Job Parameters" msgstr "معطيات العملية" +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "أُنشئ" + #: src/Module/Admin/Queue.php:79 msgid "Priority" msgstr "الأولوية" -#: src/Module/Admin/Site.php:336 src/Module/Settings/Display.php:138 +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" +msgstr "" + +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:178 msgid "No special theme for mobile devices" msgstr "لا توجد سمة مخصصة للهاتف" -#: src/Module/Admin/Site.php:353 src/Module/Settings/Display.php:148 +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188 #, php-format msgid "%s - (Experimental)" msgstr "%s - (اختباري)" -#: src/Module/Admin/Site.php:365 -msgid "No community page for local users" -msgstr "لا توجد صفحة مجتمع للمستخدمين المحليين" - -#: src/Module/Admin/Site.php:366 +#: src/Module/Admin/Site.php:342 msgid "No community page" msgstr "لا توجد صفحة مجتمع" -#: src/Module/Admin/Site.php:367 +#: src/Module/Admin/Site.php:343 +msgid "No community page for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:344 msgid "Public postings from users of this site" msgstr "المشاركات العلنية لمستخدمي هذا الموقع" -#: src/Module/Admin/Site.php:368 +#: src/Module/Admin/Site.php:345 msgid "Public postings from the federated network" msgstr "المشاركات العلنية من الشبكة الموحدة" -#: src/Module/Admin/Site.php:369 +#: src/Module/Admin/Site.php:346 msgid "Public postings from local users and the federated network" msgstr "المشركات العلنية من الشبكة الموحدة والشبكة المحلية" -#: src/Module/Admin/Site.php:375 +#: src/Module/Admin/Site.php:352 msgid "Multi user instance" msgstr "مثيل متعدد المستخدمين" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:375 msgid "Closed" msgstr "مغلق" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:376 msgid "Requires approval" msgstr "تتطلب الحصول على موافقة" -#: src/Module/Admin/Site.php:404 +#: src/Module/Admin/Site.php:377 msgid "Open" msgstr "افتح" -#: src/Module/Admin/Site.php:408 src/Module/Install.php:222 -msgid "No SSL policy, links will track page SSL state" -msgstr "" - -#: src/Module/Admin/Site.php:409 src/Module/Install.php:223 -msgid "Force all links to use SSL" -msgstr "فرض استخدام الروابط ل SSL" - -#: src/Module/Admin/Site.php:410 src/Module/Install.php:224 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" - -#: src/Module/Admin/Site.php:414 +#: src/Module/Admin/Site.php:381 msgid "Don't check" msgstr "لا تتحقق" -#: src/Module/Admin/Site.php:415 +#: src/Module/Admin/Site.php:382 msgid "check the stable version" msgstr "تحقق من الإصدار المستقر" -#: src/Module/Admin/Site.php:416 +#: src/Module/Admin/Site.php:383 msgid "check the development version" msgstr "تحقق من الإصدار التطويري" -#: src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:387 msgid "none" msgstr "لا شيﺀ" -#: src/Module/Admin/Site.php:421 +#: src/Module/Admin/Site.php:388 msgid "Local contacts" msgstr "المُتراسِلون المحليون" -#: src/Module/Admin/Site.php:422 +#: src/Module/Admin/Site.php:389 msgid "Interactors" msgstr "المتفاعلون" -#: src/Module/Admin/Site.php:432 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "موقع" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:400 msgid "General Information" msgstr "معلومات عامة" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:402 msgid "Republish users to directory" msgstr "أعد نشر المستخدمين في الدليل" -#: src/Module/Admin/Site.php:436 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 msgid "Registration" msgstr "التسجيل" -#: src/Module/Admin/Site.php:437 +#: src/Module/Admin/Site.php:404 msgid "File upload" msgstr "رفع الملف" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:405 msgid "Policies" msgstr "السياسات" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "متقدم" + +#: src/Module/Admin/Site.php:407 msgid "Auto Discovered Contact Directory" msgstr "دليل المتراسلين المكتشفين تلقائيًا" -#: src/Module/Admin/Site.php:441 +#: src/Module/Admin/Site.php:408 msgid "Performance" msgstr "الأداء" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:409 msgid "Worker" msgstr "مهمة" -#: src/Module/Admin/Site.php:443 +#: src/Module/Admin/Site.php:410 msgid "Message Relay" msgstr "ترحيل الرسالة" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:411 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:412 msgid "The system is not subscribed to any relays at the moment." msgstr "هذا الخادم ليس مشترك في أي مرحلات حاليًا." -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:413 msgid "The system is currently subscribed to the following relays:" msgstr "هذا الخادم مشترك حاليًا في المرحلات التالية:" -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:415 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:449 +#: src/Module/Admin/Site.php:416 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "" -#: src/Module/Admin/Site.php:450 +#: src/Module/Admin/Site.php:417 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:454 +#: src/Module/Admin/Site.php:420 msgid "Site name" msgstr "اسم الموقع" -#: src/Module/Admin/Site.php:455 +#: src/Module/Admin/Site.php:421 msgid "Sender Email" msgstr "بريد المرسل" -#: src/Module/Admin/Site.php:455 +#: src/Module/Admin/Site.php:421 msgid "" "The email address your server shall use to send notification emails from." msgstr "عنوان البريد الإلكتروني الذي سيستخدمه الخادم لإرسال رسائل التنبيه." -#: src/Module/Admin/Site.php:456 +#: src/Module/Admin/Site.php:422 msgid "Name of the system actor" msgstr "اسم حساب النظام" -#: src/Module/Admin/Site.php:456 +#: src/Module/Admin/Site.php:422 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 "اسم حساب النظام الداخلي المستخدم لتنفيذ طلبات ActivityPub. يجب أن لا يكون هذا الاسم محجوز. إذا عُين لا يمكن تغييره." -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:423 msgid "Banner/Logo" msgstr "اللافتة/الشعار" -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:424 msgid "Email Banner/Logo" msgstr "شعار\\لافتة البريد الإلكتروني" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:425 msgid "Shortcut icon" msgstr "أيقونة الاختصار" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:425 msgid "Link to an icon that will be used for browsers." msgstr "رابط إلى أيقونة سيتم استخدامها للمتصفحات." -#: src/Module/Admin/Site.php:460 +#: src/Module/Admin/Site.php:426 msgid "Touch icon" msgstr "أيقونة الأجهزة اللمسية" -#: src/Module/Admin/Site.php:460 +#: src/Module/Admin/Site.php:426 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "رابط إلى أيقونة سيتم استخدامها للأجهزة اللوحية والهواتف." -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:427 msgid "Additional Info" msgstr "معلومات إضافية" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:427 #, 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:462 +#: src/Module/Admin/Site.php:428 msgid "System language" msgstr "لغة النظام" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:429 msgid "System theme" msgstr "سمة النظام" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:429 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:430 msgid "Mobile system theme" msgstr "سمة الهاتف" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:430 msgid "Theme for mobile devices" msgstr "سمة للأجهزة المحمولة" -#: src/Module/Admin/Site.php:465 src/Module/Install.php:232 -msgid "SSL link policy" -msgstr "سياسة روابط SSL" - -#: src/Module/Admin/Site.php:465 src/Module/Install.php:234 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "يحدد ما إذا كان ينبغي إجبار الروابط المولدة على استخدام SSL" - -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:431 msgid "Force SSL" msgstr "فرض SSL" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:431 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "أعد توجيه جميع الطلبات غير المشفرة إلى طلبات SSL. تحذير: في بعض الأنظمة يمكن أن يؤدي هذا إلى حلقات إعادة توجيه لا نهائية." -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:432 msgid "Show help entry from navigation menu" msgstr "أظهر المساعدة في قائمة التصفح" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:432 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "إظهار المساعدة في قائمة التصفح. تظل المساعدة قابلة للوصول من خلال الانتقال إلى /help مباشرة." -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:433 msgid "Single user instance" msgstr "مثيل لمستخدم وحيد" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:433 msgid "Make this instance multi-user or single-user for the named user" msgstr "اجعل هذا المثيل إما لمستخدم واحد أولعدّة مستخدمين" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:435 msgid "Maximum image size" msgstr "الحجم الأقصى للصورة" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:435 +#, php-format msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "حد حجم الصورة المرفوعة بالبايت. الافتراضي هو 0 والذي يعني حجمًا غير محدود." +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:439 msgid "Maximum image length" msgstr "الطول الأقصى للصورة" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:439 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:472 +#: src/Module/Admin/Site.php:440 msgid "JPEG image quality" msgstr "جودة صور JPEG" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:440 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "سيتم حفظ ملفات JPEG المرفوعة بنسبة جودة [0-100]. القيمة الافتراضية هي 100 وهي جودة الأصلية للملف." -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:442 msgid "Register policy" msgstr "سياسات التسجيل" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "" + +#: src/Module/Admin/Site.php:444 msgid "Maximum Daily Registrations" msgstr "الحد اليومي للتسجيل" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:444 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:476 +#: src/Module/Admin/Site.php:445 msgid "Register text" msgstr "نص صفحة التسجيل" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:445 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "ستعرض في صفحة التسجيل. يمكنك استخدام BBCode." -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:446 msgid "Forbidden Nicknames" msgstr "الألقاب المحظورة" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:446 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:478 +#: src/Module/Admin/Site.php:447 msgid "Accounts abandoned after x days" msgstr "الحسابات المهجورة بعد x يوم" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:447 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:479 +#: src/Module/Admin/Site.php:448 msgid "Allowed friend domains" msgstr "النطاقات المسموحة" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:448 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:480 +#: src/Module/Admin/Site.php:449 msgid "Allowed email domains" msgstr "نطاقات البريد الإلكتروني المسموحة" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:449 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:481 +#: src/Module/Admin/Site.php:450 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:450 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:451 msgid "Trusted third-party domains" msgstr "نطاقات الخارجية الموثوق بها" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:451 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 "قائمة مفصولة بفواصل من النطاقات التي يُسمح بتضمين محتواها في المشاركات مثل OEmbed. يُسمح أيضًا بجميع النطاقات الفرعية التابعة لها." -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:452 msgid "Block public" msgstr "احجب المشاركات العلنية" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:452 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:484 +#: src/Module/Admin/Site.php:453 msgid "Force publish" msgstr "افرض النشر" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:453 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "أشر لفرض إدراج جميع الملفات الشخصية في دليل الموقع." -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:453 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "تفعيله قد ينتهك قوانين حماية الخصوصية مثل GDPR" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:454 msgid "Global directory URL" msgstr "رابط الدليل العالمي" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:454 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:486 +#: src/Module/Admin/Site.php:455 msgid "Private posts by default for new users" msgstr "جعل المشاركات خاصة للمستخدمين الجدد افتراضيًا" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:455 msgid "" "Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "تعيين أذونات النشر الافتراضية لجميع الأعضاء الجدد إلى خاصة بدل العلنية." +"circle rather than public." +msgstr "" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:456 msgid "Don't include post content in email notifications" msgstr "لا تضمن محتويات المشاركات في تنبيهات البريد الإلكتروني" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:456 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:488 +#: src/Module/Admin/Site.php:457 msgid "Disallow public access to addons listed in the apps menu." msgstr "لا تسمح بالوصول العلني للإضافات المدرجة في قائمة التطبيقات." -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:457 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "تأشير هذا الخِيار سيجعل الوصول إلى الإضافات في قائمة التطبيقات للأعضاء فقط." -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:458 msgid "Don't embed private images in posts" msgstr "لا تضمن الصور الخاصة في المشاركات" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:458 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 " @@ -5553,11 +4869,11 @@ msgid "" "while." msgstr "لا تستبدل الصور الخاصة المستضافة محليًا في المشاركات بنسخة مضمنة ، لأن هذا يعني أن المتراسلين الذين يتلقون المشاركات التي تحوي تلك الصور ستحتاج إلى مصادقة لرؤية كل صورة ، ما قد يستغرق بعض الوقت." -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:459 msgid "Explicit Content" msgstr "محتوى حساس" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:459 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 " @@ -5566,257 +4882,267 @@ msgid "" "will be shown at the user registration page." msgstr "عيّن هذا الخيار للإعلان عن أن عقدتك تحتوي محتوى حساس قد لا يكون مناسباً للقصر. وسوف تنشر هذه المعلومات في معلومات العقدة وصفحة التسجيل، ويستخدم هذا الخيار في الدليل العالمي، فأثناء استعراض هذه العقدة في الدليل ستظهر لهم هذه المعلومة." -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:460 msgid "Proxify external content" msgstr "توجيه المحتوى الخارجي عبر الوكيل" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:460 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "توجيه المحتوى الخارجي عن طريق وميل. يستخدم هذا على سبيل المثال وصول OEmbed وفي بعض الحالات النادرة الأخرى." -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:461 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:461 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "خزن الصور الرمزية محليًا. يحجز مساحة كبير ولكنه يزيد الأداء." -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:462 msgid "Allow Users to set remote_self" msgstr "اسمح للمستخدمين بتعيين remote_self" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:462 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:494 +#: src/Module/Admin/Site.php:463 msgid "Enable multiple registrations" msgstr "فعّل تعدد التسجيل" -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:463 msgid "Enable users to register additional accounts for use as pages." msgstr "يمكن المستخدمين من تسجيل حسابات إضافية لتستخدم كصفحات." -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID" msgstr "فعّل OpenID" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID support for registration and logins." msgstr "فعّل دعم OpenID للتسجيل والولوج." -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:465 msgid "Enable Fullname check" msgstr "افرض استخدام الأسماء الكاملة" -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:465 msgid "" "Enable check to only allow users to register with a space between the first " "name and the last name in their full name." msgstr "يفرض على المستخدمين تضمين مسافة واحدة في اسم المستخدم الخاص بهم بين الاسم الأول والاسم الأخير." -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "" + +#: src/Module/Admin/Site.php:467 msgid "Community pages for visitors" msgstr "عرض صفحة المجتمع للزوار" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:467 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "صفحات المجتمع المتاحة للزوار. المستخدمون المحليون يمكنهم مشاهدة كلا النوعين." -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:468 msgid "Posts per user on community page" msgstr "حد المشاركات لكل مستخدم في صفحة المجتمع" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:468 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "\"Global Community\")" msgstr "الحد الأقصى لعدد المشاركات لكل مستخدم في صفحة المجتمع المحلي" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:470 msgid "Enable Mail support" msgstr "فعّل دعم البريد الإلكتروني" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:470 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:471 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:472 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:472 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:474 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:475 msgid "Enable Diaspora support" msgstr "" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:475 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:476 msgid "Verify SSL" msgstr "" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:476 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:507 +#: src/Module/Admin/Site.php:477 msgid "Proxy user" msgstr "مستخدم الوكيل" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:477 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:478 msgid "Proxy URL" msgstr "رابط الوكيل" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:478 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:479 msgid "Network timeout" msgstr "انتهت مهلة الاتصال بالشبكة" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:479 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "القيمة بالثواني. تعيينها لـ 0 يعني مهلة غير محدودة (غير مستحسن)." -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:480 msgid "Maximum Load Average" msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:480 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:481 msgid "Minimal Memory" msgstr "الحد الأدنى للذاكرة" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:481 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "الحد الأدنى لذاكرة الحرة للمهمة بالميغابايت. تحتاج إذن الوصول إلى /proc/meminfo - الافتراضي 0 (معطل)." -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables" msgstr "تحسين الجداول بصفة دورية" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "حسن بانتظام بعض جداول قاعدة البيانات المستخدمة على نطاق واسع مثل ذاكرة التخزين المؤقت أو الأقفال أو الجلسة أو طابور المهام" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:484 msgid "Discover followers/followings from contacts" msgstr "اكتشف قائمة متابِعي/متابَعي متراسليك" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:484 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "اذا فُعل سيقوم هذا الخادم بتجميع قائمة متابِعي ومتابَعي متراسليك." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:485 msgid "None - deactivated" msgstr "لا شيء - معطل" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:486 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "المتراسلون المحليون - متراسلوا مستخدمي هذا الخادم." -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:487 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:519 +#: src/Module/Admin/Site.php:489 msgid "Synchronize the contacts with the directory server" msgstr "زامن المتراسلين مع خادم الدليل" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:489 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "إذا فُعل سيقوم النظام بالتحقق دوريا للبحث عن متراسلين جدد على خادم الدليل المحدد." -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:491 msgid "Days between requery" msgstr "المهلة بالأيام بين الطلبات" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:491 msgid "Number of days after which a server is requeried for his contacts." msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:492 msgid "Discover contacts from other servers" msgstr "اكتشف متراسلين من خوادم أخرى" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:492 msgid "" "Periodically query other servers for contacts. The system queries Friendica," " Mastodon and Hubzilla servers." msgstr "يجلب دوريا متراسلين من خوادم أخرى. يُطبّق على خوادم فرنديكا وماستدون وهوبزيلا." -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:493 msgid "Search the local directory" msgstr "ابحث في الدليل المحلي" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:493 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:525 +#: src/Module/Admin/Site.php:495 msgid "Publish server information" msgstr "انشر معلومات الخادم" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:495 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 " @@ -5824,50 +5150,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "إذا فعل ستنشر البيانات العامة للخادم وبيانات استخدامه. تحتوي هذه البيانات على اسم وإصدار الخادم ، وعدد المستخدمين الذين لهم ملف شخصي علني، وعدد المنشورات وقائمة الموصّلات والموافيق النشطة. راجع federation.info للحصول على التفاصيل." -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:497 msgid "Check upstream version" msgstr "تحقق من الاصدار المنبعي" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:497 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:528 +#: src/Module/Admin/Site.php:498 msgid "Suppress Tags" msgstr "اخف الوسوم" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:498 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "اخف قائمة الوسوم من أسفل المشاركة." -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:499 msgid "Clean database" msgstr "امسح قاعدة البيانات" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:499 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "يزيل العناصر البعيدة القديمة والسجلات اليتيمة والمحتوى القديم من بعض الجداول المساعدة." -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:500 msgid "Lifespan of remote items" msgstr "عمر العناصر البعيدة" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:500 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:531 +#: src/Module/Admin/Site.php:501 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:501 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5875,134 +5201,144 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:502 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:502 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:533 +#: src/Module/Admin/Site.php:503 msgid "Maximum numbers of comments per post" msgstr "حد عدد التعليقات لكل مشاركة" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:503 msgid "How much comments should be shown for each post? Default value is 100." msgstr "عدد التعليقات التي تعرض لكل مشاركة؟ القيمة الافتراضية هي 100." -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:504 msgid "Maximum numbers of comments per post on the display page" msgstr "الحد الأقصى لعدد التعليقات لكل محادثة في صفحة العرض (/display)" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:504 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "عدد التعليقات المعروضة في سياق المشاركة، القيمة الافتراضية هي 1000." -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:505 msgid "Temp path" msgstr "مسار التخزين المؤقت" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:505 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "إذا كان نظامك مقيد حيث لا يستطيع خادم الويب الوصول إلى مسار مجلد التخزين المؤقت (temp)، أدخل مسار آخر هنا." -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:506 msgid "Only search in tags" msgstr "ابحث في الوسوم فقط" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:506 msgid "On large systems the text search can slow down the system extremely." msgstr "في النّظم الكبيرة، يمكن أن يؤدي البحث عن النصوص إلى إبطاء النظام." -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "" + +#: src/Module/Admin/Site.php:507 +msgid "" +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "" + +#: src/Module/Admin/Site.php:509 msgid "Maximum number of parallel workers" msgstr "الحد الأقصى لعدد المهام" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:509 #, 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:539 +#: src/Module/Admin/Site.php:510 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:510 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:541 +#: src/Module/Admin/Site.php:512 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:512 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:513 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:513 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:542 src/Module/Contact/Profile.php:273 -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Disabled" msgstr "معطّل" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:513 msgid "all" msgstr "الكل" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:513 msgid "tags" msgstr "الوسوم" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:514 msgid "Server tags" msgstr "وسوم الخادم" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:514 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:515 msgid "Deny Server tags" msgstr "الوسوم المرفوضة" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:515 msgid "Comma separated list of tags that are rejected." msgstr "قائمة بالوسوم المرفوضة مفصول بفاصلة." -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:516 msgid "Allow user tags" msgstr "اسمح بوسوم المستخدمين" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:516 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:548 +#: src/Module/Admin/Site.php:519 msgid "Start Relocation" msgstr "ابدأ النقل" @@ -6048,16 +5384,22 @@ msgstr "احفظ وأعد التحميل" msgid "This backend doesn't have custom settings" msgstr "" -#: src/Module/Admin/Storage.php:149 +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "" + +#: src/Module/Admin/Storage.php:150 msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:54 +#: src/Module/Admin/Summary.php:55 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:58 +#: src/Module/Admin/Summary.php:59 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -6068,7 +5410,7 @@ msgid "" " an automatic conversion.
    " msgstr "تستخدم قاعدة البيانات جداول MYISAM. يجب عليك تغيير المحرك إلى InnoDB حيث أنه من المخطط أن يستخدم فرنديكا ميزات منوطة بـ InnoDB في المستقبل.راجع هذا الدليل لتحديث قاعدة البيانات الخاصة بك. يمكنك أيضًا تشغيل الأمر php bin/console.php dbstructure toinnodb في دليل الجذر لفرنديكا للتحويل التلقائي.
    " -#: src/Module/Admin/Summary.php:63 +#: src/Module/Admin/Summary.php:64 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -6079,7 +5421,7 @@ msgid "" " installation for an automatic conversion.
    " msgstr "تستخدم قاعدة البيانات جداول InnoDB بتنسيق Antelope. يجب عليك تغيير التنسيق إلى Barracuda حيث أن فرنديكا يستخدم ميزات منوطة بتنسيق Barracuda راجع هذا الدليل لتحديث قاعدة البيانات. يمكنك أيضًا تشغيل الأمر php bin/console.php dbstructure toinnodb في دليل الجذر لفرنديكا للتحويل التلقائي.
    " -#: src/Module/Admin/Summary.php:73 +#: src/Module/Admin/Summary.php:74 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -6087,39 +5429,46 @@ msgid "" " to %d. See here for more information.
    " msgstr "" -#: src/Module/Admin/Summary.php:83 +#: src/Module/Admin/Summary.php:85 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "يتوفر إصدار جديد لفرنديكا. الإصدار الحالي هو %1$s والإصدار الجديد هو %2$s" -#: src/Module/Admin/Summary.php:92 +#: src/Module/Admin/Summary.php:94 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "فشل تحديث قاعدة البيانات. رجاءً شغّل أمر \"php bin/console.php dbstructure update\" من سطر الأوامر وألق نظرة على الأخطاء التي قد تظهر." -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:98 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "فشل آخر تحديث لقاعدة البيانات. رجاءً شغّل أمر \"php bin/console.php dbstructure update\" من سطر الأوامر وألق نظرة على الأخطاء التي قد تظهر. (قد تجد بعض الأخطاء في ملف السجل)" -#: src/Module/Admin/Summary.php:101 +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "" + +#: src/Module/Admin/Summary.php:107 msgid "The worker was never executed. Please check your database structure!" msgstr "لم يتم تنفيذ المهمة أبداً. يرجى التحقق من بنية قاعدة البيانات!" -#: src/Module/Admin/Summary.php:103 +#: src/Module/Admin/Summary.php:109 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "تنفيذ آخر مهمة كان على %s UTC. هذا أقدم من ساعة. يرجى التحقق من إعدادات crontab." -#: src/Module/Admin/Summary.php:108 +#: src/Module/Admin/Summary.php:114 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6128,7 +5477,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:112 +#: src/Module/Admin/Summary.php:118 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6137,7 +5486,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:124 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -6145,83 +5494,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:136 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "لا يمكن استخدام ملف السجل ''%s'. لا يمكن كتابة السجلات (خطأ: '%s')" - -#: src/Module/Admin/Summary.php:150 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "لا يمكن استخدام ملف السجل الخاص بالتنقيح '%s'. لا يمكن كتابة السجلات (خطأ: '%s')" - -#: src/Module/Admin/Summary.php:166 +#: src/Module/Admin/Summary.php:148 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "" -#: src/Module/Admin/Summary.php:174 +#: src/Module/Admin/Summary.php:156 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "" -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:164 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "" -#: src/Module/Admin/Summary.php:189 -msgid "Normal Account" -msgstr "حساب عادي" - -#: src/Module/Admin/Summary.php:190 -msgid "Automatic Follower Account" -msgstr "" - -#: src/Module/Admin/Summary.php:191 -msgid "Public Forum Account" -msgstr "حساب منتدى عمومي" - -#: src/Module/Admin/Summary.php:192 -msgid "Automatic Friend Account" -msgstr "" - -#: src/Module/Admin/Summary.php:193 -msgid "Blog Account" -msgstr "حساب مدونة" - -#: src/Module/Admin/Summary.php:194 -msgid "Private Forum Account" -msgstr "حساب منتدى خاص" - -#: src/Module/Admin/Summary.php:214 +#: src/Module/Admin/Summary.php:175 msgid "Message queues" msgstr "طوابير الرسائل" -#: src/Module/Admin/Summary.php:220 +#: src/Module/Admin/Summary.php:181 msgid "Server Settings" msgstr "إعدادات الخادم" -#: src/Module/Admin/Summary.php:236 -msgid "Registered users" -msgstr "الأعضاء المسجلون" - -#: src/Module/Admin/Summary.php:238 -msgid "Pending registrations" -msgstr "التسجيلات المعلقة" - -#: src/Module/Admin/Summary.php:239 +#: src/Module/Admin/Summary.php:199 msgid "Version" msgstr "الإصدار" -#: src/Module/Admin/Summary.php:243 +#: src/Module/Admin/Summary.php:203 msgid "Active addons" msgstr "الإضافات النشطة" @@ -6245,7 +5551,7 @@ msgid "Screenshot" msgstr "لقطة شاشة" #: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:94 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 msgid "Themes" msgstr "السمات" @@ -6261,34 +5567,34 @@ msgstr "أُعيد تحميل السمة" msgid "Reload active themes" msgstr "أعد تحميل السمة النشطة" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:118 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "لم يُعثر على أي سمات في النظام. يجب أن توضع في %1$s" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:119 msgid "[Experimental]" msgstr "[تجريبي]" -#: src/Module/Admin/Themes/Index.php:121 +#: src/Module/Admin/Themes/Index.php:120 msgid "[Unsupported]" msgstr "[غير مدعوم]" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 msgid "Display Terms of Service" msgstr "أظهر شروط الخدمة" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 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 "فعّل صفحة شروط الخدمة. إذا فُعّل هذا الرابط، سيضاف رابط صفحة شروط الخدمة إلى صفحة التسجيل وصفحة المعلومات العامة." -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 msgid "Display Privacy Statement" msgstr "اعرض بيان الخصوصية" -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -6296,240 +5602,34 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:81 msgid "Privacy Statement Preview" msgstr "اعرض بيان الخصوصية" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "The Terms of Service" msgstr "شروط الخدمة" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "أدخل شروط الخدمة لعقدتك هنا. يمكنك استخدام BBCode. يجب أن تكون عناوين الأقسام [h2] أو أدناه." -#: 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" -msgstr[1] "حُجب مستخدم واحد %s" -msgstr[2] "حُجب مستخدم واحد %s" -msgstr[3] "حُجب %s مستخدمين" -msgstr[4] "حُجب %s مستخدما" -msgstr[5] "حُجب %s مستخدم" - -#: 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 "لا يمكنك إزالة نفسك" - -#: 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" -msgstr[1] "مستخدم محذوف %s" -msgstr[2] "مستخدمان %s محذوفان" -msgstr[3] "%s مستخدمين محذوفين" -msgstr[4] "%s مستخدمًا محذوفًا" -msgstr[5] "%s مستخدم محذوف" - -#: 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\"" - -#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103 -#, php-format -msgid "User \"%s\" blocked" -msgstr "حُجب المستخدم \"%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 "Register date" -msgstr "تاريخ التسجيل" - -#: 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 "آخر ولوج" - -#: 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 "آخر عنصر منشور" - -#: src/Module/Admin/Users/Active.php:137 -msgid "Active Accounts" -msgstr "الحسابات النشطة" - -#: 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 "المستخدم محجوب" - -#: 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 "مدير الموقع" - -#: 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 "انتهت صلاحية الحساب" - -#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161 -msgid "Create a new user" -msgstr "أنشئ مستخدمًا جديدًا" - -#: 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 "سيُحذف المستخدمون المحددون!\\n\\nكل ما نشره هؤلاء على هذا الموقع سيُحذف نهائيًا!\\n\\nهل أنت متأكد؟" - -#: 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}!\\n\\nكل ما نشره على هذا الموقع سيُحذف نهائيًا!\\n\\nهل أنت متأكد؟" - -#: 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" -msgstr[1] "رُفع الحجب عن مستخدم واحد %s" -msgstr[2] "رُفع الحجب عن مستخدمين %s" -msgstr[3] "رُفع الحجب عن %s مستخدمين" -msgstr[4] "رُفع الحجب عن %s مستخدما" -msgstr[5] "رُفع الحجب عن %s مستخدم" - -#: src/Module/Admin/Users/Blocked.php:96 src/Module/Admin/Users/Index.php:109 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "رُفع الحجب عن المستخدم \"%s\"" - -#: src/Module/Admin/Users/Blocked.php:138 -msgid "Blocked Users" -msgstr "المستخدمون المحجوبون" - -#: src/Module/Admin/Users/Create.php:62 -msgid "New User" -msgstr "مستخدم جديد" - -#: src/Module/Admin/Users/Create.php:63 -msgid "Add User" -msgstr "أضف مستخدم" - -#: src/Module/Admin/Users/Create.php:71 -msgid "Name of the new user." -msgstr "اسم المستخدم الجديد." - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname" -msgstr "اللقب" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname of the new user." -msgstr "لقب المستخدم الجديد." - -#: src/Module/Admin/Users/Create.php:73 -msgid "Email address of the new user." -msgstr "عنوان البريد الإلكتروني للمستخدم للجديد." - -#: src/Module/Admin/Users/Deleted.php:86 -msgid "Users awaiting permanent deletion" -msgstr "مستخدمون في انتظار الحذف الدائم" - -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:162 -msgid "Permanent deletion" -msgstr "حذف نهائي" - -#: src/Module/Admin/Users/Index.php:150 src/Module/Admin/Users/Index.php:160 -#: src/Module/BaseAdmin.php:92 -msgid "Users" -msgstr "المستخدمون" - -#: src/Module/Admin/Users/Index.php:152 -msgid "User waiting for permanent deletion" -msgstr "مستخدم ينتظر الحذف الكلي لحسابه" - -#: src/Module/Admin/Users/Pending.php:48 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: src/Module/Admin/Users/Pending.php:55 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "لم يجهض أي تسجيل %s" -msgstr[1] "أجهض تسجيل %s" -msgstr[2] "أجهض تسجيلان %s" -msgstr[3] "أجهظت %s تسجيلات" -msgstr[4] "أجهض %s تسجيلًا" -msgstr[5] "أجهض %s تسجيل" - -#: src/Module/Admin/Users/Pending.php:81 -msgid "Account approved." -msgstr "قُبل الحساب." - -#: src/Module/Admin/Users/Pending.php:87 -msgid "Registration revoked" -msgstr "أجهض التسجيل" - -#: src/Module/Admin/Users/Pending.php:102 -msgid "User registrations awaiting review" -msgstr "تسجيلات تنتظر المعاينة" - -#: src/Module/Admin/Users/Pending.php:104 -msgid "Request date" -msgstr "تاريخ الطلب" - -#: src/Module/Admin/Users/Pending.php:105 -msgid "No registrations." -msgstr "لا توجد تسجيلات." - -#: src/Module/Admin/Users/Pending.php:106 -msgid "Note from the user" -msgstr "ملاحظة من المستخدم" - -#: src/Module/Admin/Users/Pending.php:108 -msgid "Deny" -msgstr "رفض" - -#: src/Module/Api/ApiResponse.php:272 -#, php-format -msgid "API endpoint %s %s is not implemented" +#: src/Module/Admin/Tos.php:84 +msgid "The rules" msgstr "" -#: src/Module/Api/ApiResponse.php:273 -msgid "" -"The API endpoint is currently not implemented but might be in the future." +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." msgstr "" -#: src/Module/Api/Mastodon/Apps.php:63 +#: src/Module/Api/ApiResponse.php:279 +#, php-format +msgid "API endpoint %s %s is not implemented but might be in the future." +msgstr "" + +#: src/Module/Api/Mastodon/Apps.php:73 msgid "Missing parameters" msgstr "معطيات مفقودة" @@ -6537,11 +5637,11 @@ msgstr "معطيات مفقودة" msgid "Only starting posts can be bookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Mute.php:50 +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 msgid "Only starting posts can be muted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:56 #, php-format msgid "Posts from %s can't be shared" msgstr "لا تمكن مشاركة مشاركات %s" @@ -6550,11 +5650,11 @@ msgstr "لا تمكن مشاركة مشاركات %s" msgid "Only starting posts can be unbookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:50 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 msgid "Only starting posts can be unmuted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:62 #, php-format msgid "Posts from %s can't be unshared" msgstr "لا يمكن إلغاء مشاركة مشاركات %s" @@ -6563,19 +5663,20 @@ msgstr "لا يمكن إلغاء مشاركة مشاركات %s" msgid "Contact not found" msgstr "لم يُعثر على المتراسل" -#: src/Module/Apps.php:54 +#: src/Module/Apps.php:62 msgid "No installed applications." msgstr "تطبيقات غير مثبتة." -#: src/Module/Apps.php:59 +#: src/Module/Apps.php:67 msgid "Applications" msgstr "التطبيقات" -#: src/Module/Attach.php:50 src/Module/Attach.php:62 +#: src/Module/Attach.php:49 src/Module/Attach.php:61 msgid "Item was not found." msgstr "لم يُعثر على العنصر." #: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 msgid "Please login to continue." msgstr "يرجى الولوج للمتابعة." @@ -6589,84 +5690,72 @@ msgid "" " as the main account." msgstr "" -#: src/Module/BaseAdmin.php:86 +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 msgid "Overview" msgstr "نظرة عامّة" -#: src/Module/BaseAdmin.php:89 +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 msgid "Configuration" msgstr "الضبط" -#: src/Module/BaseAdmin.php:95 src/Module/BaseSettings.php:63 +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 msgid "Additional features" msgstr "ميزات إضافية" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:97 msgid "Database" msgstr "قاعدة بيانات" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:98 msgid "DB updates" msgstr "تحديثات قاعدة البيانات" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:99 msgid "Inspect Deferred Workers" msgstr "فحص المهام المؤجلة" -#: src/Module/BaseAdmin.php:101 +#: src/Module/BaseAdmin.php:100 msgid "Inspect worker Queue" msgstr "فحص طابور المهام" -#: src/Module/BaseAdmin.php:103 -msgid "Tools" -msgstr "أدوات" - -#: src/Module/BaseAdmin.php:104 -msgid "Contact Blocklist" -msgstr "قائمة المتراسلين المحظورين" - -#: src/Module/BaseAdmin.php:105 -msgid "Server Blocklist" -msgstr "قائمة الخوادم المحظورة" - -#: src/Module/BaseAdmin.php:112 +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 msgid "Diagnostics" msgstr "التشخيصات" -#: src/Module/BaseAdmin.php:113 +#: src/Module/BaseAdmin.php:107 msgid "PHP Info" msgstr "معلومات الـPHP" -#: src/Module/BaseAdmin.php:114 +#: src/Module/BaseAdmin.php:108 msgid "probe address" msgstr "" -#: src/Module/BaseAdmin.php:115 +#: src/Module/BaseAdmin.php:109 msgid "check webfinger" msgstr "تحقق من بصمة الويب" -#: src/Module/BaseAdmin.php:117 +#: src/Module/BaseAdmin.php:110 msgid "Babel" msgstr "" -#: src/Module/BaseAdmin.php:118 src/Module/Debug/ActivityPubConversion.php:142 +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 msgid "ActivityPub Conversion" msgstr "محادثة عبر ActivityPub" -#: src/Module/BaseAdmin.php:127 +#: src/Module/BaseAdmin.php:120 msgid "Addon Features" msgstr "ميزات الإضافة" -#: src/Module/BaseAdmin.php:128 +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 msgid "User registrations waiting for confirmation" msgstr "مستخدم ينتظر الموافقة على طلب تسجيله" -#: src/Module/BaseApi.php:241 src/Module/BaseApi.php:257 -#: src/Module/BaseApi.php:273 +#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467 +#: src/Module/BaseApi.php:483 msgid "Too Many Requests" msgstr "طلبات كثيرة" -#: src/Module/BaseApi.php:242 +#: src/Module/BaseApi.php:452 #, 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." @@ -6677,7 +5766,7 @@ msgstr[3] "رُفضت المشاركة. تجاوزت الحد اليومي وه msgstr[4] "رُفضت المشاركة. تجاوزت الحد اليومي وهو %d مشاركة." msgstr[5] "رُفضت المشاركة. تجاوزت الحد اليومي وهو %d مشاركة." -#: src/Module/BaseApi.php:258 +#: src/Module/BaseApi.php:468 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6689,67 +5778,146 @@ msgstr[3] "رُفضت المشاركة. تجاوزت الحد الأسبوعي msgstr[4] "رُفضت المشاركة. تجاوزت الحد الأسبوعي وهو %d مشاركة." msgstr[5] "رُفضت المشاركة. تجاوزت الحد الأسبوعي وهو %d مشاركة." -#: src/Module/BaseApi.php:274 +#: src/Module/BaseApi.php:484 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "رُفضت المشاركة. تجاوزت الحد الشهري وهو %d مشاركة." +msgid_plural "" +"Monthly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: src/Module/BaseProfile.php:51 src/Module/Contact.php:460 +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "" + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "" + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "المستخدمون" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "أدوات" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "قائمة المتراسلين المحظورين" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "قائمة الخوادم المحظورة" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "احذف عنصر" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "مصدر العنصر" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 msgid "Profile Details" msgstr "تفاصيل الملف الشخصي" -#: src/Module/BaseProfile.php:109 +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "" + +#: src/Module/BaseProfile.php:111 msgid "Only You Can See This" msgstr "فقط أنت من يمكنه رؤية هذا" -#: src/Module/BaseProfile.php:114 src/Module/Profile/Schedule.php:82 +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 msgid "Scheduled Posts" msgstr "المشاركات المبرمجة" -#: src/Module/BaseProfile.php:117 +#: src/Module/BaseProfile.php:119 msgid "Posts that are scheduled for publishing" msgstr "المشاركات المقرر نشرها" -#: src/Module/BaseProfile.php:136 src/Module/BaseProfile.php:139 +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 msgid "Tips for New Members" msgstr "تلميحات للأعضاء الجدد" -#: src/Module/BaseSearch.php:69 +#: src/Module/BaseSearch.php:71 #, php-format msgid "People Search - %s" msgstr "البحث عن أشخاص - %s" -#: src/Module/BaseSearch.php:79 +#: src/Module/BaseSearch.php:75 #, php-format -msgid "Forum Search - %s" -msgstr "البحث عن منتديات - %s" +msgid "Group Search - %s" +msgstr "" -#: src/Module/BaseSettings.php:41 +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "لا تطابق" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: src/Module/BaseSettings.php:78 msgid "Account" msgstr "الحساب" -#: src/Module/BaseSettings.php:48 src/Module/Security/TwoFactor/Verify.php:95 -#: src/Module/Settings/TwoFactor/Index.php:110 +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 msgid "Two-factor authentication" msgstr "الاستيثاق بعاملَيْن" -#: src/Module/BaseSettings.php:71 +#: src/Module/BaseSettings.php:118 msgid "Display" msgstr "العرض" -#: src/Module/BaseSettings.php:92 src/Module/Settings/Delegation.php:171 +#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "الشبكات الاجتماعية" + +#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172 msgid "Manage Accounts" msgstr "إدارة الحسابات" -#: src/Module/BaseSettings.php:99 +#: src/Module/BaseSettings.php:146 msgid "Connected apps" msgstr "التطبيقات المتصلة" -#: src/Module/BaseSettings.php:106 src/Module/Settings/UserExport.php:76 +#: src/Module/BaseSettings.php:153 +msgid "Remote servers" +msgstr "" + +#: src/Module/BaseSettings.php:160 src/Module/Settings/UserExport.php:98 msgid "Export personal data" msgstr "تصدير البيانات الشخصية" -#: src/Module/BaseSettings.php:113 +#: src/Module/BaseSettings.php:167 msgid "Remove account" msgstr "أزل الحساب" @@ -6761,7 +5929,222 @@ msgstr "هذه الصفحة تفتقد معطى للرابط." msgid "The post was created" msgstr "أُنشأت المشاركة" -#: src/Module/Contact.php:88 +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "" + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "فشلت إزالة الحدث" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "لا يمكن أن ينتهي الحدث قبل أن يبدأ." + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "عنوان الحدث و وقت بدئه إلزاميان." + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "تاريخ البدء والعنوان إلزاميان." + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "يبدأ الحدث في:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "إلزامي" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "وقت\\تاريخ الانتهاء مجهول أو ليس له صلة" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "ينتهي الحدث في:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "شارك هذا الحدث" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "أساسي" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "تنسيق هذا التقويم غير مدعوم" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "لم يُعثر على بيانات قابلة للتصدير" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "تقويم" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "الأحداث" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "اعرض" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "أنشئ حدثاً جديدًا" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:248 +msgid "list" +msgstr "قائمة" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "" + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "" + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "" + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "" + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "لم يُعثر على المتراسل." + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "متراسل غير صالح." + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "حُذف المتراسل." + +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "" + +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "" + +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "" + +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "" + +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "طلب خاطئ." + +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "" + +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "رشّح" + +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "" + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "" + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "الأعضاء" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "أنقر على المتراسل لإضافته أو حذفه." + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "" + +#: src/Module/Contact.php:97 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." @@ -6772,110 +6155,142 @@ msgstr[3] "حُرر %d متراسلين." msgstr[4] "حُرر %d متراسلا." msgstr[5] "حُرر %d متراسل." -#: src/Module/Contact.php:309 +#: src/Module/Contact.php:348 msgid "Show all contacts" msgstr "أظهِر كل المتراسلين" -#: src/Module/Contact.php:317 +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "معلق" + +#: src/Module/Contact.php:356 msgid "Only show pending contacts" msgstr "أظهِر المتراسلين المعلقين" -#: src/Module/Contact.php:325 +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "محجوب" + +#: src/Module/Contact.php:364 msgid "Only show blocked contacts" msgstr "أظهِر المتراسلين المحجوبين فقط" -#: src/Module/Contact.php:330 src/Module/Contact.php:377 -#: src/Object/Post.php:329 +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:368 msgid "Ignored" msgstr "مُتجاهَل" -#: src/Module/Contact.php:333 +#: src/Module/Contact.php:372 msgid "Only show ignored contacts" msgstr "أظهِر المتراسلين المتجاهلين فقط" -#: src/Module/Contact.php:338 src/Module/Contact.php:378 +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 msgid "Archived" msgstr "مؤرشف" -#: src/Module/Contact.php:341 +#: src/Module/Contact.php:388 msgid "Only show archived contacts" msgstr "أظهِر المتراسلين المؤرشفين فقط" -#: src/Module/Contact.php:346 src/Module/Contact.php:376 +#: src/Module/Contact.php:393 src/Module/Contact.php:438 msgid "Hidden" msgstr "‮مخفي" -#: src/Module/Contact.php:349 +#: src/Module/Contact.php:396 msgid "Only show hidden contacts" msgstr "أظهِر المتراسلين المخفيين فقط" -#: src/Module/Contact.php:357 -msgid "Organize your contact groups" -msgstr "نظّم مجموعات متراسليك" +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "" -#: src/Module/Contact.php:389 +#: src/Module/Contact.php:459 msgid "Search your contacts" msgstr "ابحث في متراسليك" -#: src/Module/Contact.php:390 src/Module/Search/Index.php:192 +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 #, php-format msgid "Results for: %s" msgstr "نتائج: %s" -#: src/Module/Contact.php:397 +#: src/Module/Contact.php:467 msgid "Update" msgstr "حدّث" -#: src/Module/Contact.php:399 src/Module/Contact/Profile.php:349 -#: src/Module/Contact/Profile.php:457 +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "ارفع الحجب" + +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 msgid "Unignore" msgstr "ألغي التجاهل" -#: src/Module/Contact.php:401 +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "" + +#: src/Module/Contact.php:472 msgid "Batch Actions" msgstr "إجراءات متعددة" -#: src/Module/Contact.php:436 +#: src/Module/Contact.php:515 msgid "Conversations started by this contact" msgstr "بدأ هذا المتراسل للمحادثة" -#: src/Module/Contact.php:441 +#: src/Module/Contact.php:520 msgid "Posts and Comments" msgstr "التعليقات والمشاركات" -#: src/Module/Contact.php:452 +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "" + +#: src/Module/Contact.php:531 msgid "Posts containing media objects" msgstr "مشاركات تحوي وسائط" -#: src/Module/Contact.php:467 +#: src/Module/Contact.php:539 msgid "View all known contacts" msgstr "أظهِر كل المتراسلين المعروفين" -#: src/Module/Contact.php:477 +#: src/Module/Contact.php:550 msgid "Advanced Contact Settings" msgstr "إعدادات المتراسلين المُتقدّمة" -#: src/Module/Contact.php:511 +#: src/Module/Contact.php:586 msgid "Mutual Friendship" msgstr "صداقة متبادلة" -#: src/Module/Contact.php:515 +#: src/Module/Contact.php:590 msgid "is a fan of yours" msgstr "أحد معجبيك" -#: src/Module/Contact.php:519 +#: src/Module/Contact.php:594 msgid "you are a fan of" msgstr "أنت معجب" -#: src/Module/Contact.php:537 +#: src/Module/Contact.php:612 msgid "Pending outgoing contact request" msgstr "طلب تراسل صادر معلق" -#: src/Module/Contact.php:539 +#: src/Module/Contact.php:614 msgid "Pending incoming contact request" msgstr "طلب تراسل وارد معلق" -#: src/Module/Contact.php:552 src/Module/Contact/Profile.php:334 +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 #, php-format msgid "Visit %s's profile [%s]" msgstr "زر ملف %s الشخصي [%s]" @@ -6888,6 +6303,19 @@ msgstr "فشل تحديث المتراسل." msgid "Return to contact editor" msgstr "عُد لمحرر المتراسلين" +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "الاسم" + #: src/Module/Contact/Advanced.php:135 msgid "Account Nickname" msgstr "لقب الحساب" @@ -6904,20 +6332,15 @@ msgstr "رابط استطلاع/تغذية" msgid "New photo from this URL" msgstr "صورة من هذا الرابط" -#: src/Module/Contact/Contacts.php:50 src/Module/Conversation/Network.php:187 -#: src/Module/Group.php:103 -msgid "Invalid contact." -msgstr "متراسل غير صالح." - -#: src/Module/Contact/Contacts.php:73 +#: src/Module/Contact/Contacts.php:89 msgid "No known contacts." msgstr "لا يوجد متراسل معروف." -#: src/Module/Contact/Contacts.php:87 src/Module/Profile/Common.php:98 +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 msgid "No common contacts." msgstr "لا متراسلين مشترَكين." -#: src/Module/Contact/Contacts.php:99 src/Module/Profile/Contacts.php:96 +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" @@ -6928,7 +6351,7 @@ msgstr[3] "%s متابِعين" msgstr[4] "%s متابِعا" msgstr[5] "%s متابِع" -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Contacts.php:99 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" @@ -6939,7 +6362,7 @@ msgstr[3] "%s متابَعين" msgstr[4] "%s متابَعا" msgstr[5] "%s متابَع" -#: src/Module/Contact/Contacts.php:107 src/Module/Profile/Contacts.php:102 +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" @@ -6950,12 +6373,12 @@ msgstr[3] "%s أصدقاء مشتركين" msgstr[4] "%s صديقا مشتركا" msgstr[5] "%s صديق مشترك" -#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:104 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "هؤلاء المتراسلون يتابعون %s وهو يتابعهم." -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Common.php:86 +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" @@ -6966,14 +6389,14 @@ msgstr[3] "%s متراسلين مشتركين" msgstr[4] "%s متراسلا مشتركا" msgstr[5] "%s متراسل مشترك" -#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:88 +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "أنت و %s تفاعلتم مع نفس المتراسلين (متابعة، تعليق، إعجاب بمشاركة)." -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:110 +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" @@ -6984,382 +6407,505 @@ msgstr[3] "%s متراسلين" msgstr[4] "%s متراسلا" msgstr[5] "%s متراسل" -#: src/Module/Contact/Poke.php:135 -msgid "Error while sending poke, please retry." +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:165 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "رُفض الوصول." + +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "أرسل الطلب" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "أضفت هذا المتراسل سلفًا." + +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "تعذر اكتشاف نوع الشبكة. لا يمكن إضافة المتراسل." + +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "دعم دياسبورا غير مفعل. لا يمكن إضافة المتراسل." + +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "دعم OStatus غير مفعل. لا يمكن إضافة المتراسل." + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "من فضلك أجب على ما يلي:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "عنوان معرّفك:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "رابط الملف الشخصي" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "الوسوم:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "%s يعرفك" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "أضف ملاحظة شخصية:" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" msgstr "" -#: src/Module/Contact/Poke.php:148 src/Module/Search/Acl.php:55 -msgid "You must be logged in to use this module." -msgstr "يجب عليك الولوج لاستخدام هذه الوحدة." +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "تعذر إضافة المتراسل." -#: src/Module/Contact/Poke.php:171 -msgid "Poke/Prod" -msgstr "" +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "طلب غير صالح." -#: src/Module/Contact/Poke.php:172 -msgid "poke, prod or do other things to somebody" -msgstr "" +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "لا توجد كلمات مفتاحية لمطابقتها. من فضلك أضف كلمات مفتاحية إلى ملفك الشخصي." -#: src/Module/Contact/Poke.php:174 -msgid "Choose what you wish to do to recipient" -msgstr "اختر ما تريد فعله للمتلقي" +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "الملفات الشخصية المطابقة" -#: src/Module/Contact/Poke.php:175 -msgid "Make this post private" -msgstr "اجعل هذه المشاركة خاصة" - -#: src/Module/Contact/Profile.php:127 +#: src/Module/Contact/Profile.php:140 msgid "Failed to update contact record." msgstr "فشل تحديث سجل التراسل." -#: src/Module/Contact/Profile.php:177 +#: src/Module/Contact/Profile.php:190 msgid "Contact has been unblocked" msgstr "رُفع الحجب عن المتراسل" -#: src/Module/Contact/Profile.php:181 +#: src/Module/Contact/Profile.php:194 msgid "Contact has been blocked" msgstr "حُجب المتراسل" -#: src/Module/Contact/Profile.php:193 +#: src/Module/Contact/Profile.php:206 msgid "Contact has been unignored" msgstr "ألغي تجاهل المتراسل" -#: src/Module/Contact/Profile.php:197 +#: src/Module/Contact/Profile.php:210 msgid "Contact has been ignored" msgstr "تُجوهل المتراسل" -#: src/Module/Contact/Profile.php:229 +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:254 #, php-format msgid "You are mutual friends with %s" msgstr "أنتما صديقان مشتركان لـ %s" -#: src/Module/Contact/Profile.php:230 +#: src/Module/Contact/Profile.php:255 #, php-format msgid "You are sharing with %s" msgstr "أنت تشارك مع %s" -#: src/Module/Contact/Profile.php:231 +#: src/Module/Contact/Profile.php:256 #, php-format msgid "%s is sharing with you" msgstr "%s يشارك معك" -#: src/Module/Contact/Profile.php:247 +#: src/Module/Contact/Profile.php:272 msgid "Private communications are not available for this contact." msgstr "المراسلات الخاصة غير متوفرة لهذا المتراسل." -#: src/Module/Contact/Profile.php:249 +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "" + +#: src/Module/Contact/Profile.php:285 msgid "Never" msgstr "أبدا" -#: src/Module/Contact/Profile.php:252 +#: src/Module/Contact/Profile.php:288 msgid "(Update was not successful)" msgstr "(لم ينجح التحديث)" -#: src/Module/Contact/Profile.php:252 +#: src/Module/Contact/Profile.php:288 msgid "(Update was successful)" msgstr "(حُدث بنجاح)" -#: src/Module/Contact/Profile.php:254 src/Module/Contact/Profile.php:420 +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 msgid "Suggest friends" msgstr "اقترح أصدقاء" -#: src/Module/Contact/Profile.php:258 +#: src/Module/Contact/Profile.php:294 #, php-format msgid "Network type: %s" msgstr "نوع الشبكة: %s" -#: src/Module/Contact/Profile.php:263 +#: src/Module/Contact/Profile.php:299 msgid "Communications lost with this contact!" msgstr "فُقد التواصل مع هذا المتراسل!" -#: src/Module/Contact/Profile.php:269 +#: src/Module/Contact/Profile.php:305 msgid "Fetch further information for feeds" msgstr "اجلب مزيدًا من المعلومات للتغذيات" -#: src/Module/Contact/Profile.php:271 +#: src/Module/Contact/Profile.php:307 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 "" -#: src/Module/Contact/Profile.php:274 +#: src/Module/Contact/Profile.php:310 msgid "Fetch information" msgstr "اجلب معلومات" -#: src/Module/Contact/Profile.php:275 +#: src/Module/Contact/Profile.php:311 msgid "Fetch keywords" msgstr "اجلب كلمات مفتاحية" -#: src/Module/Contact/Profile.php:276 +#: src/Module/Contact/Profile.php:312 msgid "Fetch information and keywords" msgstr "اجلب معلومات وكلمات مفتاحية" -#: src/Module/Contact/Profile.php:286 src/Module/Contact/Profile.php:292 -#: src/Module/Contact/Profile.php:297 src/Module/Contact/Profile.php:303 +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 msgid "No mirroring" msgstr "" -#: src/Module/Contact/Profile.php:287 -msgid "Mirror as forwarded posting" -msgstr "" - -#: src/Module/Contact/Profile.php:288 src/Module/Contact/Profile.php:298 -#: src/Module/Contact/Profile.php:304 +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 msgid "Mirror as my own posting" msgstr "" -#: src/Module/Contact/Profile.php:293 src/Module/Contact/Profile.php:299 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 msgid "Native reshare" msgstr "إعادة النشر الأصلية" -#: src/Module/Contact/Profile.php:316 +#: src/Module/Contact/Profile.php:353 msgid "Contact Information / Notes" msgstr "ملاحظات / معلومات المتراسل" -#: src/Module/Contact/Profile.php:317 +#: src/Module/Contact/Profile.php:354 msgid "Contact Settings" msgstr "إعدادات المتراسل" -#: src/Module/Contact/Profile.php:325 +#: src/Module/Contact/Profile.php:362 msgid "Contact" msgstr "متراسل" -#: src/Module/Contact/Profile.php:329 +#: src/Module/Contact/Profile.php:366 msgid "Their personal note" msgstr "ملاحظتهم الشخصية" -#: src/Module/Contact/Profile.php:331 +#: src/Module/Contact/Profile.php:368 msgid "Edit contact notes" msgstr "عدّل ملاحظات المتراسل" -#: src/Module/Contact/Profile.php:335 +#: src/Module/Contact/Profile.php:372 msgid "Block/Unblock contact" msgstr "احجب/ ارفع الحجب عن متراسل" -#: src/Module/Contact/Profile.php:336 +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 msgid "Ignore contact" msgstr "تجاهل المتراسل" -#: src/Module/Contact/Profile.php:337 +#: src/Module/Contact/Profile.php:374 msgid "View conversations" msgstr "اعرض المحادثات" -#: src/Module/Contact/Profile.php:342 +#: src/Module/Contact/Profile.php:379 msgid "Last update:" msgstr "آخر تحديث:" -#: src/Module/Contact/Profile.php:344 +#: src/Module/Contact/Profile.php:381 msgid "Update public posts" msgstr "حدّث المشاركات العلنية" -#: src/Module/Contact/Profile.php:346 src/Module/Contact/Profile.php:430 +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 msgid "Update now" msgstr "حدّث الآن" -#: src/Module/Contact/Profile.php:353 -msgid "Currently blocked" -msgstr "محجوب حاليا" - -#: src/Module/Contact/Profile.php:354 -msgid "Currently ignored" -msgstr "متجاهَل حاليا" - -#: src/Module/Contact/Profile.php:355 -msgid "Currently archived" -msgstr "مُؤرشف حاليا" - -#: src/Module/Contact/Profile.php:356 +#: src/Module/Contact/Profile.php:385 msgid "Awaiting connection acknowledge" msgstr "ينتظر قبول الاتصال" -#: src/Module/Contact/Profile.php:357 -#: src/Module/Notifications/Introductions.php:190 +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "محجوب حاليا" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "متجاهَل حاليا" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "مُؤرشف حاليا" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "" + +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 msgid "Hide this contact from others" msgstr "اخف هذا المتراسل عن الآخرين" -#: src/Module/Contact/Profile.php:357 +#: src/Module/Contact/Profile.php:394 msgid "" "Replies/likes to your public posts may still be visible" msgstr "قد تبقى الإعجابات/الردود على مشاركاتك مرئية" -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:395 msgid "Notification for new posts" msgstr "تنبيه للمشاركات الجديدة" -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:395 msgid "Send a notification of every new post of this contact" msgstr "أرسل تنبيها عند نشر هذا المتراسل لمشاركات الجديدة" -#: src/Module/Contact/Profile.php:360 +#: src/Module/Contact/Profile.php:397 msgid "Keyword Deny List" msgstr "قائمة الكلمات المفتاحية المرفوضة" -#: src/Module/Contact/Profile.php:360 +#: src/Module/Contact/Profile.php:397 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "قائمة بالكلمات المفتاحية مفصولة بفواصل والتي لا تخول الى وسوم عند اختيار \"اجلب المعلومات والكلمات المفتاحية\"" -#: src/Module/Contact/Profile.php:378 -#: src/Module/Settings/TwoFactor/Index.php:132 +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "Actions" msgstr "الإجراءات" -#: src/Module/Contact/Profile.php:386 +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "الحالة" + +#: src/Module/Contact/Profile.php:423 msgid "Mirror postings from this contact" msgstr "" -#: src/Module/Contact/Profile.php:388 +#: src/Module/Contact/Profile.php:425 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "علّم هذا المتراسل على أنه remote_self ، سيقوم فرنديكا بإعادة نشر المدخلات الجديدة لهذا المتراسل." -#: src/Module/Contact/Profile.php:440 +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" +msgstr "" + +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "" + +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "" + +#: src/Module/Contact/Profile.php:502 msgid "Refetch contact data" msgstr "أعد جلب بيانات المتراسل" -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:513 msgid "Toggle Blocked status" msgstr "بدّل حالة الحجب" -#: src/Module/Contact/Profile.php:459 +#: src/Module/Contact/Profile.php:521 msgid "Toggle Ignored status" msgstr "بدّل حالة التجاهل" -#: src/Module/Contact/Profile.php:466 src/Module/Contact/Revoke.php:105 +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" +msgstr "" + +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 msgid "Revoke Follow" msgstr "أبطل المتابعة" -#: src/Module/Contact/Profile.php:468 +#: src/Module/Contact/Profile.php:538 msgid "Revoke the follow from this contact" msgstr "أبطل المتابعة من هذا المتراسل" -#: src/Module/Contact/Revoke.php:62 +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "طلب خاطئ." + +#: src/Module/Contact/Revoke.php:63 msgid "Unknown contact." msgstr "متراسل مجهول." -#: src/Module/Contact/Revoke.php:72 src/Module/Group.php:112 -msgid "Contact is deleted." -msgstr "حُذف المتراسل." - -#: src/Module/Contact/Revoke.php:76 +#: src/Module/Contact/Revoke.php:77 msgid "Contact is being deleted." msgstr "المتراسل يحذف." -#: src/Module/Contact/Revoke.php:90 +#: src/Module/Contact/Revoke.php:91 msgid "Follow was successfully revoked." msgstr "نجح إبطال المتابعة." -#: src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Revoke.php:107 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "هل تريد إلغاء متابعة هذا المتراسل لك؟ لا يمكن التراجع عن هذا الإجراء وسيتحتم عليهم متابعتك يدوياً." -#: src/Module/Contact/Revoke.php:107 -#: src/Module/Notifications/Introductions.php:142 -#: src/Module/OAuth/Acknowledge.php:53 src/Module/Register.php:130 +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "Yes" msgstr "نعم" -#: src/Module/Conversation/Community.php:68 -msgid "Local Community" -msgstr "المجتمع المحلي" +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "لا توجد اقتراحات متاحة. إذا كان هذا الموقع جديد، من فضلك أعد المحاولة في غضون 24 ساعة." -#: src/Module/Conversation/Community.php:71 -msgid "Posts from local users on this server" -msgstr "مشاركات مستخدمي هذا الخادم" +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "أنت لا تتابع هذا المتراسل." -#: src/Module/Conversation/Community.php:79 -msgid "Global Community" -msgstr "المجتمع العالمي" +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "شبكتك لا تدعم إلغاء المتابعة حاليا." -#: src/Module/Conversation/Community.php:82 -msgid "Posts from users of the whole federated network" -msgstr "مشركات من الشبكة الموحدة" +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "ألغ الاقتران/المتابعة" -#: src/Module/Conversation/Community.php:115 -msgid "Own Contacts" -msgstr "مشاركات متراسليك" +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "نجح إلغاء متابعة المتراسل" -#: src/Module/Conversation/Community.php:119 -msgid "Include" -msgstr "تضمين" +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "يتعذر إلغاء متابعة هذا المتراسل، يرجى الاتصال بمدير الموقع" -#: src/Module/Conversation/Community.php:120 -msgid "Hide" -msgstr "اخف" - -#: src/Module/Conversation/Community.php:137 src/Module/Search/Index.php:137 -#: src/Module/Search/Index.php:179 +#: src/Module/Conversation/Channel.php:121 +#: src/Module/Conversation/Community.php:125 src/Module/Search/Index.php:152 +#: src/Module/Search/Index.php:194 msgid "No results." msgstr "لا نتائج." -#: src/Module/Conversation/Community.php:162 +#: src/Module/Conversation/Channel.php:159 +msgid "Channel not available." +msgstr "" + +#: src/Module/Conversation/Community.php:91 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "يسرد هذا الدفق المجتمعي كافة المحادثات العامة التي يتلقاها الخادم. هذا لا يمثل الآراء الشخصية للمستخدمين المحليين." -#: src/Module/Conversation/Community.php:199 +#: src/Module/Conversation/Community.php:179 msgid "Community option not available." msgstr "" -#: src/Module/Conversation/Community.php:215 +#: src/Module/Conversation/Community.php:195 msgid "Not available." msgstr "غير متاح." -#: src/Module/Conversation/Network.php:173 -msgid "No such group" -msgstr "لا توجد مثل هذه المجموعة" +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "" -#: src/Module/Conversation/Network.php:177 +#: src/Module/Conversation/Network.php:222 #, php-format -msgid "Group: %s" -msgstr "المجموعة: %s" - -#: src/Module/Conversation/Network.php:255 -msgid "Latest Activity" -msgstr "آخر نشاط" - -#: src/Module/Conversation/Network.php:258 -msgid "Sort by latest activity" -msgstr "رتب حسب آخر نشاط" - -#: src/Module/Conversation/Network.php:263 -msgid "Latest Posts" -msgstr "آخر المشاركات" - -#: src/Module/Conversation/Network.php:266 -msgid "Sort by post received date" -msgstr "رتب حسب تاريخ استلام المشاركة" - -#: src/Module/Conversation/Network.php:271 -msgid "Latest Creation" +msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:274 -msgid "Sort by post creation date" +#: src/Module/Conversation/Network.php:317 +msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Network.php:279 -#: src/Module/Settings/Profile/Index.php:227 -msgid "Personal" -msgstr "نشاطي" +#: src/Module/Conversation/Timeline.php:158 +msgid "Own Contacts" +msgstr "مشاركات متراسليك" -#: src/Module/Conversation/Network.php:282 -msgid "Posts that mention or involve you" -msgstr "المشاركات التي تذكرك أو تتعلق بك" +#: src/Module/Conversation/Timeline.php:162 +msgid "Include" +msgstr "تضمين" -#: src/Module/Conversation/Network.php:287 src/Object/Post.php:341 -msgid "Starred" -msgstr "المفضلة" - -#: src/Module/Conversation/Network.php:290 -msgid "Favourite Posts" -msgstr "المشاركات المفضلة" +#: src/Module/Conversation/Timeline.php:163 +msgid "Hide" +msgstr "اخف" #: src/Module/Credits.php:44 msgid "Credits" @@ -7372,23 +6918,35 @@ msgid "" "code or the translation of Friendica. Thank you all!" msgstr "فرَندِكا هي مشروع مجتمعي، لم يكن ممكنا بدون مساعدة العديد من الناس. إليك قائمة بأولئك الذين ساهموا في الشفرة البرمجية أو في الترجمة. شكرا لكم جميعا!" -#: src/Module/Debug/ActivityPubConversion.php:58 +#: src/Module/Debug/ActivityPubConversion.php:53 msgid "Formatted" msgstr "مهيأ" -#: src/Module/Debug/ActivityPubConversion.php:70 +#: src/Module/Debug/ActivityPubConversion.php:65 msgid "Activity" msgstr "النشاط" -#: src/Module/Debug/ActivityPubConversion.php:122 +#: src/Module/Debug/ActivityPubConversion.php:117 msgid "Object data" msgstr "بيانات الكائن" -#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/ActivityPubConversion.php:124 msgid "Result Item" msgstr "النتيجة" -#: src/Module/Debug/ActivityPubConversion.php:143 +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "لا أخطاء" +msgstr[1] "خطأ" +msgstr[2] "خطآن" +msgstr[3] "أخطاء" +msgstr[4] "خطأً" +msgstr[5] "خطأٍ" + +#: src/Module/Debug/ActivityPubConversion.php:138 msgid "Source activity" msgstr "نشاط المصدر" @@ -7568,12 +7126,12 @@ msgstr "HTML" msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" -#: src/Module/Debug/Feed.php:51 src/Module/Filer/SaveTag.php:46 -#: src/Module/Settings/Profile/Index.php:141 +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:177 msgid "You must be logged in to use this module" msgstr "يجب عليك الولوج لاستخدام هذه الوحدة" -#: src/Module/Debug/Feed.php:76 +#: src/Module/Debug/Feed.php:77 msgid "Source URL" msgstr "الرابط المصدري" @@ -7630,201 +7188,131 @@ msgstr "" msgid "Lookup address:" msgstr "عنوان المسح:" -#: src/Module/Delegation.php:111 +#: src/Module/Delegation.php:110 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/Delegation.php:143 +#: src/Module/Delegation.php:142 msgid "Switch between your accounts" msgstr "بدّل الحساب" -#: src/Module/Delegation.php:144 +#: src/Module/Delegation.php:143 msgid "Manage your accounts" msgstr "إدارة حسابك" -#: src/Module/Delegation.php:145 +#: src/Module/Delegation.php:144 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "تنقل بين مختلف الهويات أو الصفحات (المجموعات / المجتمعات) التي تملكها أو التي خوّل لك إدارتها" -#: src/Module/Delegation.php:146 +#: src/Module/Delegation.php:145 msgid "Select an identity to manage: " msgstr "" -#: src/Module/Directory.php:75 +#: src/Module/Directory.php:74 msgid "No entries (some entries may be hidden)." msgstr "لا توجد مدخلات (قد تكون بعض المدخلات مخفية)." -#: src/Module/Directory.php:91 +#: src/Module/Directory.php:90 msgid "Find on this site" msgstr "ابحث في هذا الموقع" -#: src/Module/Directory.php:93 +#: src/Module/Directory.php:92 msgid "Results for:" msgstr "نتائج:" -#: src/Module/Directory.php:95 +#: src/Module/Directory.php:94 msgid "Site Directory" msgstr "دليل الموقع" -#: src/Module/Filer/RemoveTag.php:68 -msgid "Item was not removed" -msgstr "لم يُزل العنصر" - -#: src/Module/Filer/RemoveTag.php:71 +#: src/Module/Filer/RemoveTag.php:105 msgid "Item was not deleted" msgstr "لم يُحذف العنصر" -#: src/Module/Filer/SaveTag.php:72 +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "لم يُزل العنصر" + +#: src/Module/Filer/SaveTag.php:73 msgid "- select -" msgstr "- اختر -" -#: src/Module/FriendSuggest.php:81 +#: src/Module/FriendSuggest.php:82 msgid "Suggested contact not found." msgstr "المتراسل المقترح غير موجود." -#: src/Module/FriendSuggest.php:99 +#: src/Module/FriendSuggest.php:100 msgid "Friend suggestion sent." msgstr "أُرسل إقتراح الصداقة." -#: src/Module/FriendSuggest.php:136 +#: src/Module/FriendSuggest.php:137 msgid "Suggest Friends" msgstr "اقترح أصدقاء" -#: src/Module/FriendSuggest.php:139 +#: src/Module/FriendSuggest.php:140 #, php-format msgid "Suggest a friend for %s" msgstr "أقترح أصدقاء لـ %s" -#: src/Module/Friendica.php:62 +#: src/Module/Friendica.php:82 msgid "Installed addons/apps:" msgstr "التطبيقات/الإضافات المثبتة:" -#: src/Module/Friendica.php:67 +#: src/Module/Friendica.php:87 msgid "No installed addons/apps" msgstr "لم تُثبت أي تطبيقات/إضافات" -#: src/Module/Friendica.php:72 +#: src/Module/Friendica.php:92 #, php-format msgid "Read about the Terms of Service of this node." msgstr "اقرأ عن شروط الخدمة لهذه العقدة." -#: src/Module/Friendica.php:79 +#: src/Module/Friendica.php:99 msgid "On this server the following remote servers are blocked." msgstr "الخوادم البعيدة المحجوبة عن هذا الموقع." -#: src/Module/Friendica.php:97 +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +msgid "Reason for the block" +msgstr "سبب الحجب" + +#: src/Module/Friendica.php:104 +msgid "Download this list in CSV format" +msgstr "" + +#: src/Module/Friendica.php:118 #, 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 "هذا فرانديكا إصدار %s يعمل على موقع %s. إصدار قاعدة البيانات هو %s، وإصدار تحديث البيانات هو %s." -#: src/Module/Friendica.php:102 +#: src/Module/Friendica.php:123 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "رجاء زر Friendi.ca لمعرفة المزيد عن مشروع فرَندِكا." -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:124 msgid "Bug reports and issues: please visit" msgstr "لبلاغات العلل والمشاكل: زر" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:124 msgid "the bugtracker at github" msgstr "متعقب العلل على غيت-هب" -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:125 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "للاقتراحات، أو الإشادة ، إلخ.- رجاءً راسل \"info\" at \"friendi - dot - ca" -#: src/Module/Group.php:58 -msgid "Could not create group." -msgstr "تعذّر إنشاء المجموعة." - -#: src/Module/Group.php:69 src/Module/Group.php:215 src/Module/Group.php:239 -msgid "Group not found." -msgstr "لم يُعثر على المجموعة." - -#: src/Module/Group.php:75 -msgid "Group name was not changed." -msgstr "لم يُغير اسم المجموعة." - -#: src/Module/Group.php:93 -msgid "Unknown group." -msgstr "مجموعة مجهولة." - -#: src/Module/Group.php:118 -msgid "Unable to add the contact to the group." -msgstr "تعذرت إضافة المتراسل إلى المجموعة." - -#: src/Module/Group.php:121 -msgid "Contact successfully added to group." -msgstr "أُضيف المتراسل الى المجموعة بنجاح." - -#: src/Module/Group.php:125 -msgid "Unable to remove the contact from the group." -msgstr "تعذرت إزالة المتراسل من المجموعة." - -#: src/Module/Group.php:128 -msgid "Contact successfully removed from group." -msgstr "أُزيل المتراسل من المجموعة بنجاح." - -#: src/Module/Group.php:132 -msgid "Bad request." -msgstr "طلب خاطئ." - -#: src/Module/Group.php:171 -msgid "Save Group" -msgstr "احفظ المجموعة" - -#: src/Module/Group.php:172 -msgid "Filter" -msgstr "رشّح" - -#: src/Module/Group.php:178 -msgid "Create a group of contacts/friends." -msgstr "أنشئ مجموعة من المتراسلين/الأصدقاء." - -#: src/Module/Group.php:220 -msgid "Unable to remove group." -msgstr "تعذر حذف المجموعة." - -#: src/Module/Group.php:271 -msgid "Delete Group" -msgstr "احذف المجموعة" - -#: src/Module/Group.php:281 -msgid "Edit Group Name" -msgstr "عدّل اسم المجموعة" - -#: src/Module/Group.php:291 -msgid "Members" -msgstr "الأعضاء" - -#: src/Module/Group.php:294 -msgid "Group is empty" -msgstr "المجموعة فارغة" - -#: src/Module/Group.php:307 -msgid "Remove contact from group" -msgstr "احذف المتراسل من المجموعة" - -#: src/Module/Group.php:328 -msgid "Click on a contact to add or remove." -msgstr "أنقر على المتراسل لإضافته أو حذفه." - -#: src/Module/Group.php:342 -msgid "Add contact to group" -msgstr "أضف المتراسل لمجموعة" - -#: src/Module/HCard.php:46 +#: src/Module/HCard.php:45 msgid "No profile" msgstr "لا ملفًا شخصيًا" -#: src/Module/HTTPException/MethodNotAllowed.php:32 +#: src/Module/HTTPException/MethodNotAllowed.php:31 msgid "Method Not Allowed." msgstr "الطريقة غير مسموح بها." @@ -7832,161 +7320,154 @@ msgstr "الطريقة غير مسموح بها." msgid "Help:" msgstr "مساعدة:" -#: src/Module/Home.php:54 +#: src/Module/Home.php:63 #, php-format msgid "Welcome to %s" msgstr "مرحبًا بك في %s" -#: src/Module/Install.php:195 +#: src/Module/Install.php:189 msgid "Friendica Communications Server - Setup" msgstr "خادم شبكة فرنديكا - تثبيت" -#: src/Module/Install.php:206 +#: src/Module/Install.php:200 msgid "System check" msgstr "التحقق من النظام" -#: src/Module/Install.php:208 src/Module/Install.php:265 -#: src/Module/Install.php:348 +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 msgid "Requirement not satisfied" msgstr "لم يستوف المتطلبات" -#: src/Module/Install.php:209 +#: src/Module/Install.php:203 msgid "Optional requirement not satisfied" msgstr "لم يستوف المتطلبات الاختيارية" -#: src/Module/Install.php:210 +#: src/Module/Install.php:204 msgid "OK" msgstr "موافق" -#: src/Module/Install.php:215 +#: src/Module/Install.php:208 +msgid "Next" +msgstr "التالي" + +#: src/Module/Install.php:209 msgid "Check again" msgstr "تحقق مجددا" -#: src/Module/Install.php:230 +#: src/Module/Install.php:222 msgid "Base settings" msgstr "الإعدادات الأساسية" -#: src/Module/Install.php:237 -msgid "Host name" -msgstr "أسم المضيف" - -#: src/Module/Install.php:239 -msgid "" -"Overwrite this field in case the determinated hostname isn't right, " -"otherweise leave it as is." -msgstr "استبدل هذا الحقل في حالة عدم صحة اسم المضيف المحدد، وإلا تركه كما هو." - -#: src/Module/Install.php:242 +#: src/Module/Install.php:224 msgid "Base path to installation" msgstr "المسار الأساسي للتثبيت" -#: src/Module/Install.php:244 +#: src/Module/Install.php:226 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "إذا لم يتمكن النظام من اكتشاف مسار التثبيت ، أدخل المسار الصحيح هنا. يجب استخدام هذا الإعداد فقط إذا كان لديك وصول مقيد إلى نظامك وتستخدم رابط ليّن إلى دليل الخادم." -#: src/Module/Install.php:247 -msgid "Sub path of the URL" -msgstr "المسار الفرعي للرابط" - -#: src/Module/Install.php:249 -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." +#: src/Module/Install.php:229 +msgid "The Friendica system URL" msgstr "" -#: src/Module/Install.php:260 +#: src/Module/Install.php:231 +msgid "" +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." +msgstr "" + +#: src/Module/Install.php:242 msgid "Database connection" msgstr "اتصال قاعدة البيانات" -#: src/Module/Install.php:261 +#: src/Module/Install.php:243 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "لتثبيت فرنديكا، نحتاج إلى معرفة كيفية الاتصال بقاعدة البيانات." -#: src/Module/Install.php:262 +#: src/Module/Install.php:244 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "يرجى الاتصال بموفر الاستضافة أو مدير الموقع إذا كان لديك أسئلة حول هذه الإعدادات." -#: src/Module/Install.php:263 +#: src/Module/Install.php:245 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "قاعدة البيانات التي ستحددها أدناه يجب أن تكون موجودة سلفًا. إذا لم تكن موجودة، أنشئها قبل المتابعة." -#: src/Module/Install.php:272 +#: src/Module/Install.php:252 msgid "Database Server Name" msgstr "اسم خادم قاعدة البيانات" -#: src/Module/Install.php:277 +#: src/Module/Install.php:257 msgid "Database Login Name" msgstr "اسم الولوج لقاعد البيانات" -#: src/Module/Install.php:283 +#: src/Module/Install.php:263 msgid "Database Login Password" msgstr "كلمة سرّ قاعدة البيانات" -#: src/Module/Install.php:285 +#: src/Module/Install.php:265 msgid "For security reasons the password must not be empty" msgstr "لأسباب أمنية يجب ألا تكون كلمة المرور فارغة" -#: src/Module/Install.php:288 +#: src/Module/Install.php:268 msgid "Database Name" msgstr "اسم قاعدة البيانات" -#: src/Module/Install.php:292 src/Module/Install.php:322 +#: src/Module/Install.php:272 src/Module/Install.php:300 msgid "Please select a default timezone for your website" msgstr "رجاء حدد اللغة الافتراضية لموقعك" -#: src/Module/Install.php:307 +#: src/Module/Install.php:287 msgid "Site settings" msgstr "إعدادت الموقع" -#: src/Module/Install.php:317 +#: src/Module/Install.php:295 msgid "Site administrator email address" msgstr "البريد الالكتروني للمدير الموقع" -#: src/Module/Install.php:319 +#: src/Module/Install.php:297 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "يجب أن يتطابق عنوان بريدك الإلكتروني مع هذا من أجل استخدام لوحة الإدارة." -#: src/Module/Install.php:326 +#: src/Module/Install.php:304 msgid "System Language:" msgstr "لغة النظام:" -#: src/Module/Install.php:328 +#: src/Module/Install.php:306 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "عيّن اللغة الافتراضية لواجهة تثبيت فرَندِكا ورسائل البريد الإلكتروني." -#: src/Module/Install.php:340 +#: src/Module/Install.php:318 msgid "Your Friendica site database has been installed." msgstr "ثُبتت قاعدة بيانات فرنديكا." -#: src/Module/Install.php:350 +#: src/Module/Install.php:328 msgid "Installation finished" msgstr "انتهى التثبيت" -#: src/Module/Install.php:370 +#: src/Module/Install.php:348 msgid "

    What next

    " msgstr "

    ما التالي

    " -#: src/Module/Install.php:371 +#: src/Module/Install.php:349 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "" -#: src/Module/Install.php:374 +#: src/Module/Install.php:352 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -8102,41 +7583,51 @@ msgid "" "important, please visit http://friendi.ca" msgstr "للحصول على مزيد من المعلومات عن مشروع فرَندِكا ولماذا نرى أنه مهم، من فضلك زر http://friendi.ca" -#: src/Module/Item/Compose.php:50 +#: src/Module/Item/Compose.php:85 msgid "Please enter a post body." msgstr "" -#: src/Module/Item/Compose.php:63 +#: src/Module/Item/Compose.php:98 msgid "This feature is only available with the frio theme." msgstr "" -#: src/Module/Item/Compose.php:90 +#: src/Module/Item/Compose.php:122 msgid "Compose new personal note" msgstr "أنشئ ملاحظة شخصية جديدة" -#: src/Module/Item/Compose.php:99 +#: src/Module/Item/Compose.php:131 msgid "Compose new post" msgstr "أنشئ مشاركة جديدة" -#: src/Module/Item/Compose.php:153 +#: src/Module/Item/Compose.php:187 msgid "Visibility" msgstr "الظّهور" -#: src/Module/Item/Compose.php:174 +#: src/Module/Item/Compose.php:203 msgid "Clear the location" msgstr "امسح الموقع الجغرافي" -#: src/Module/Item/Compose.php:175 +#: src/Module/Item/Compose.php:204 msgid "Location services are unavailable on your device" msgstr "خدمات الموقع الجغرافي غير متاحة على جهازك" -#: src/Module/Item/Compose.php:176 +#: src/Module/Item/Compose.php:205 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "" -#: src/Module/Item/Follow.php:52 +#: src/Module/Item/Compose.php:211 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "" + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "تغذية هذا العنصر غير متوفرة." + +#: src/Module/Item/Follow.php:51 msgid "Unable to follow this item." msgstr "تتعذر متابعة هذا العنصر." @@ -8155,106 +7646,1144 @@ msgstr "هذه العقدة في وضع الصيانة حاليًا، وهذا msgid "A Decentralized Social Network" msgstr "شبكة اجتماعية لامركزية" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "الملفات" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload" +msgstr "ارفع" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "عذراً، ربّما يكون الرفع أكبر من ما يسمح به ضبط PHP" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "أو - هل حاولت تحميل ملف فارغ؟" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "تجاوز الملف الحد الأقصى للحجم وهو %s" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "فشل رفع الملف." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:68 +msgid "Unable to process image." +msgstr "تعذرت معالجة الصورة." + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:95 +msgid "Image upload failed." +msgstr "فشل رفع الصورة." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "قائمة المستخدمين" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "نشط" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "قائمة الحسابات النشطة" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "قائمة التسجيلات المعلقة" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "قائمة المستخدمين المحجوبين" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "حُذف" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "قائمة الحذف المعلق للمستخدمين" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "صفحة حساب عادي" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "صفحة سياسي" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "صفحة اشترك تلقائي" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "صفحة شخصية" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "صفحة منظمة" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "صفحة إخبارية" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "مُرحِل" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "لم يُرفع الحجب عن مستخدم %s" +msgstr[1] "رُفع الحجب عن مستخدم %s" +msgstr[2] "رُفع الحجب عن مستخدمَين %s" +msgstr[3] "رُفع الحجب عن %s مستخدمين" +msgstr[4] "رُفع الحجب عن %s مستخدمًا" +msgstr[5] "رُفع الحجب عن %s مستخدم" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "قائمة المتراسلين البِعاد المحظورين" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "هذه الصفحة تمنع رسائل المستخدمين البِعاد من الوصول لعقدتك." + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "احجب مستخدمًا بعيدًا" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "اختر الكل" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "ألغ الاختيار" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "لم يُحجب متراسل بعيد من هذه العقدة." + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "المستخدمون البِعاد المحجبون" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "احجب مستخدمًا بعيدًا" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "صورة" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "السبب" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "لم يحجب أي متراسل %s" +msgstr[1] "متراسل%s محجوب" +msgstr[2] "متراسلان %s محجوبان" +msgstr[3] "%s متراسلين محجوبين" +msgstr[4] "%s متراسلًا محجوبًا" +msgstr[5] "%s متراسل محجوب" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "عنوان المتراسل البعيد المراد حجبه." + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "امسح المتراسل أيضًا" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "يزيل جميع المحتويات المتعلقة بهذا المتراسل من العقدة. ويحتفظ بسجل للمتراسل. لا يمكن التراجع عن هذا الإجراء." + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "سبب الحجب" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "أُضيفت صيغة النطاق لقائمة الحجب." + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "→رجوع للقائمة" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "احجب صيغة نطاق جديدة" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "

    تنسيق صيّغ النطاق غير حساس لحالة الأحرف ويستخدم محارف بَدلِ الصدفة، بما في ذلك المحارف التالية:

    \n
      \n\t
    • *: أي عدد من المحارف
    • \n\t
    • ?: محرف واحد
    • \n
    " + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "تحقق من الصيغة" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "يطابق الخوادم المعروفة" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "اسم الخادم" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "نطاق الخادم" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "المتراسلون المعروفون" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "لا توجد خوادم معروفة %d" +msgstr[1] "خادم %d معروف" +msgstr[2] "خادمان %d معروفان" +msgstr[3] "%d خوادم معروفة" +msgstr[4] "%d خادمًا معروفًا" +msgstr[5] "%d خادمٍ معروفٍ" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "أضف المرشِّح لقائمة الحجب" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "صيغة النطاق" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "صيغة النطاق المراد إضافتها إلى قائمة الحجب. لا تُضمّن الميفاق." + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "امسح الخادم" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "سبب الحجب" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "سبب حجب صيغة نطاق الخادم. سوف يظهر علنًا في صفحة معلومات الخادم." + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +msgid "Blocked server domain pattern" +msgstr "صيّغ النطاقات المحجوبة" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "احذف صيغة النطاق" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "أشّر لحذف المدخل من قائمة الحجب" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "قائمة الحجب لصيّغ النطاق" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "يمكن استخدام هذه الصفحة لتعريف صيّغ النطاقات لححب الخوادم من الشبكة الموحدة لمنع تفاعلها مع عقدتك. لكل صيغة نطاق يجب عليك تقديم سبب الحجب." + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +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 "ستتاح قائمة صيّغ النطاقات الخادم المحجوبة في صفحة /friendica بحيث يمكن للمستخدمين التحقق من الخوادم اذا واجهوا مشكلة في الاتصال بها." + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "أضف مُدخلًا جديد إلى القائمة الحجب" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "احفظ التغييرات في قائمة الحجب" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "المدخلات الموجودة في قائمة الحجب" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "أزل مدخلًا من قائمة الحجب" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "أتريد إزالة المدخل من قائمة الحجب؟" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "سيُحذف العنصر." + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "احذف العنصر" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "في هذه الصفحة يمكنك حذف عنصر من عقدتك. إذا كان العنصر هو المشاركة الأصلية، سيحذف النقاش بأكمله." + +#: src/Module/Moderation/Item/Delete.php:65 +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 "يجب أن تعرف GUID الخاص بالعنصر. يمكنك العثور عليه عن طريق اختيار العنصر ثم قراءة عنوان الرابط. الجزء الأخير من الرابط هو GUID. مثال: http://example.com/display/123456 حيث GUID هو 123456." + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "معرّف العنصر" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "رابط العنصر" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "الشروط" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "وسم" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "نوع" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "مصطلح" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "رابط" + +#: src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "ذكر" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "ذِكر صريح" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "لم يُعثر على العنصر" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "" + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "" + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "حساب عادي" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "حساب مدونة" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "الأعضاء المسجلون" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "التسجيلات المعلقة" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "لم يحجب أي مستخدم %s" +msgstr[1] "حُجب مستخدم واحد %s" +msgstr[2] "حُجب مستخدم واحد %s" +msgstr[3] "حُجب %s مستخدمين" +msgstr[4] "حُجب %s مستخدما" +msgstr[5] "حُجب %s مستخدم" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "لا يمكنك إزالة نفسك" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "لا مستخدمين محذوفين %s" +msgstr[1] "مستخدم محذوف %s" +msgstr[2] "مستخدمان %s محذوفان" +msgstr[3] "%s مستخدمين محذوفين" +msgstr[4] "%s مستخدمًا محذوفًا" +msgstr[5] "%s مستخدم محذوف" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "حذف المستخدم \"%s\"" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "حُجب المستخدم \"%s\"" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "تاريخ التسجيل" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "آخر ولوج" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "آخر عنصر منشور" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "الحسابات النشطة" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "المستخدم محجوب" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "مدير الموقع" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "انتهت صلاحية الحساب" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "أنشئ مستخدمًا جديدًا" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "سيُحذف المستخدمون المحددون!\\n\\nكل ما نشره هؤلاء على هذا الموقع سيُحذف نهائيًا!\\n\\nهل أنت متأكد؟" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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}!\\n\\nكل ما نشره على هذا الموقع سيُحذف نهائيًا!\\n\\nهل أنت متأكد؟" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "لم يُرفع الحجب عن أي مستخدم %s" +msgstr[1] "رُفع الحجب عن مستخدم واحد %s" +msgstr[2] "رُفع الحجب عن مستخدمين %s" +msgstr[3] "رُفع الحجب عن %s مستخدمين" +msgstr[4] "رُفع الحجب عن %s مستخدما" +msgstr[5] "رُفع الحجب عن %s مستخدم" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "رُفع الحجب عن المستخدم \"%s\"" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "المستخدمون المحجوبون" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "مستخدم جديد" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "أضف مستخدم" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "اسم المستخدم الجديد." + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "اللقب" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "لقب المستخدم الجديد." + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "عنوان البريد الإلكتروني للمستخدم للجديد." + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "مستخدمون في انتظار الحذف الدائم" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "حذف نهائي" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "مستخدم ينتظر الحذف الكلي لحسابه" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "لم يجهض أي تسجيل %s" +msgstr[1] "أجهض تسجيل %s" +msgstr[2] "أجهض تسجيلان %s" +msgstr[3] "أجهظت %s تسجيلات" +msgstr[4] "أجهض %s تسجيلًا" +msgstr[5] "أجهض %s تسجيل" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "قُبل الحساب." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "أجهض التسجيل" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "تسجيلات تنتظر المعاينة" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "تاريخ الطلب" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "لا توجد تسجيلات." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "ملاحظة من المستخدم" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "رفض" + +#: src/Module/Notifications/Introductions.php:99 msgid "Show Ignored Requests" msgstr "اظهر الطلبات المتجاهلة" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Notifications/Introductions.php:99 msgid "Hide Ignored Requests" msgstr "اخف الطلبات المتجاهلة" -#: src/Module/Notifications/Introductions.php:113 -#: src/Module/Notifications/Introductions.php:176 +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 msgid "Notification type:" msgstr "نوع التنبيه:" -#: src/Module/Notifications/Introductions.php:116 +#: src/Module/Notifications/Introductions.php:118 msgid "Suggested by:" msgstr "اقترحه:" -#: src/Module/Notifications/Introductions.php:141 +#: src/Module/Notifications/Introductions.php:143 msgid "Claims to be known to you: " msgstr "يدعي أنّه يعرفك: " -#: src/Module/Notifications/Introductions.php:142 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:131 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "No" msgstr "لا" -#: src/Module/Notifications/Introductions.php:150 +#: src/Module/Notifications/Introductions.php:152 msgid "Shall your connection be bidirectional or not?" msgstr "" -#: src/Module/Notifications/Introductions.php:151 +#: src/Module/Notifications/Introductions.php:153 #, 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 كصديق لـ%s بالاشتراك في منشوراتك ، وستتلقى تحديثاتهم في تلقيمات الأخبار." -#: src/Module/Notifications/Introductions.php:152 +#: src/Module/Notifications/Introductions.php:154 #, 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 كمشترك له بالاشتراك في منشوراتك، لكن لن تتلقى تحديثاتهم في تلقيمات الأخبار." -#: src/Module/Notifications/Introductions.php:154 +#: src/Module/Notifications/Introductions.php:156 msgid "Friend" msgstr "صديق" -#: src/Module/Notifications/Introductions.php:155 +#: src/Module/Notifications/Introductions.php:157 msgid "Subscriber" msgstr "مشترك" -#: src/Module/Notifications/Introductions.php:214 +#: src/Module/Notifications/Introductions.php:216 msgid "No introductions." msgstr "لا توجد تقديمات." -#: src/Module/Notifications/Introductions.php:215 -#: src/Module/Notifications/Notifications.php:134 +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 #, php-format msgid "No more %s notifications." msgstr "لا مزيد من تنبيهات %s." -#: src/Module/Notifications/Notification.php:134 +#: src/Module/Notifications/Notification.php:135 msgid "You must be logged in to show this page." msgstr "يجب أن تلج لتصل لهذه الصفحة." -#: src/Module/Notifications/Notifications.php:65 +#: src/Module/Notifications/Notifications.php:66 msgid "Network Notifications" msgstr "تنبيهات الشبكة" -#: src/Module/Notifications/Notifications.php:71 +#: src/Module/Notifications/Notifications.php:72 msgid "System Notifications" msgstr "تنبيهات النظام" -#: src/Module/Notifications/Notifications.php:77 +#: src/Module/Notifications/Notifications.php:78 msgid "Personal Notifications" msgstr "تنبيهات شخصية" -#: src/Module/Notifications/Notifications.php:83 +#: src/Module/Notifications/Notifications.php:84 msgid "Home Notifications" msgstr "تنبيهات الصفحة الرئيسية" -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Notifications/Notifications.php:140 msgid "Show unread" msgstr "اعرض غير المقروءة" -#: src/Module/Notifications/Ping.php:221 +#: src/Module/Notifications/Ping.php:246 msgid "{0} requested registration" msgstr "{0} طلبَ التسجيل" -#: src/Module/Notifications/Ping.php:232 +#: src/Module/Notifications/Ping.php:255 #, php-format msgid "{0} and %d others requested registration" msgstr "{0} و %d أخرون يطلبون التسجيل" -#: src/Module/OAuth/Acknowledge.php:50 +#: src/Module/OAuth/Acknowledge.php:51 msgid "Authorize application connection" msgstr "خول لهذا التطبيق الاتصال" -#: src/Module/OAuth/Acknowledge.php:52 +#: src/Module/OAuth/Acknowledge.php:53 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" @@ -8264,7 +8793,7 @@ msgstr "هل تخول لهذا التطبيق الوصول إلى مشاركات msgid "Unsupported or missing response type" msgstr "نوع الاستجابة غير مدعومة أو مفقودة" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:72 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 msgid "Incomplete request data" msgstr "بيانات الطلب غير كاملة" @@ -8275,122 +8804,286 @@ msgid "" "close this window: %s" msgstr "الرجاء نسخ رمز الاستيثاق إلى التطبيق وإغلاق هذه النافذة: %s" -#: src/Module/OAuth/Token.php:96 +#: src/Module/OAuth/Token.php:83 +msgid "Invalid data or unknown client" +msgstr "" + +#: src/Module/OAuth/Token.php:108 msgid "Unsupported or missing grant type" msgstr "" +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "يعيد الاشتراك في متراسلي OStatus" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "أبق هذه النافذة مفتوحة حتى ينتهي." + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "يشترك في متراسلين" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "لم يُقدم متراسلين." + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "تعذر جلب معلومات المتراسل." + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "تعذر جلب أصدقاء المتراسل." + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "تعذر جلب متابِعي المتراسل." + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "تعذر جلب الملف الشخصي البعيد." + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "شبكة غير مدعومة" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "تم" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "نجح" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "فشل" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "متجاهل" + #: src/Module/PermissionTooltip.php:49 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "نوع خاطئ \"%s\" ، يُتوقع أن يكون: %s" -#: src/Module/PermissionTooltip.php:66 +#: src/Module/PermissionTooltip.php:79 msgid "Model not found" msgstr "" -#: src/Module/PermissionTooltip.php:89 +#: src/Module/PermissionTooltip.php:94 msgid "Unlisted" msgstr "" -#: src/Module/PermissionTooltip.php:107 +#: src/Module/PermissionTooltip.php:112 msgid "Remote privacy information not available." msgstr "معلومات الخصوصية غير متوفرة." -#: src/Module/PermissionTooltip.php:116 +#: src/Module/PermissionTooltip.php:121 msgid "Visible to:" msgstr "مرئي لـ:" -#: src/Module/PermissionTooltip.php:200 +#: src/Module/PermissionTooltip.php:204 #, php-format msgid "Collection (%s)" msgstr "" -#: src/Module/PermissionTooltip.php:204 +#: src/Module/PermissionTooltip.php:208 #, php-format msgid "Followers (%s)" msgstr "متابِعون (%s)" -#: src/Module/PermissionTooltip.php:223 +#: src/Module/PermissionTooltip.php:227 #, php-format msgid "%d more" msgstr "" -#: src/Module/PermissionTooltip.php:227 +#: src/Module/PermissionTooltip.php:231 #, php-format msgid "To: %s
    " msgstr "إلى: %s
    " -#: src/Module/PermissionTooltip.php:230 +#: src/Module/PermissionTooltip.php:234 #, php-format msgid "CC: %s
    " msgstr "ووجه إلى:%s
    " -#: src/Module/PermissionTooltip.php:233 +#: src/Module/PermissionTooltip.php:237 #, php-format msgid "BCC: %s
    " msgstr "" -#: src/Module/Photo.php:128 +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "" + +#: src/Module/Photo.php:130 msgid "The Photo is not available." msgstr "الصورة غير متوفرة." -#: src/Module/Photo.php:141 +#: src/Module/Photo.php:155 #, php-format msgid "The Photo with id %s is not available." msgstr "الصورة ذات المعرف %s غير متوفّرة." -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:192 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:194 #, php-format msgid "Invalid photo with id %s." msgstr "الصورة ذات المعرف %s غير صالحة." -#: src/Module/Profile/Contacts.php:120 +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "" + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "عدّل المشاركة" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "رابط ويب" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "أدرج رابط فيديو" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "رابط فيديو" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "إدراج رابط ملف صوتي" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "رابط ملف صوتي" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "أزل وسم العنصر" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "اختر الوسم لإزالته: " + +#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "أزل" + +#: src/Module/Profile/Contacts.php:159 msgid "No contacts." msgstr "لا متراسلين." -#: src/Module/Profile/Profile.php:82 +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "الخط الزمني لـ %s" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "مشاركات %s" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "تعليقات %s" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:59 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "تجاوزت الصورة الحد الأقصى للحجم وهو %s" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "لم يكتمل رفع الصورة، من فضلك أعد المحاولة" + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "ملف الصورة مفقود" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "الخادم لا يقبل رفع ملفات جديدة، يرجى التواصل مع مدير الموقع" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "ملف الصورة فارغ." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "اعرض الألبوم" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 msgid "Profile not found." msgstr "لم يُعثر على الملف الشخصي." -#: src/Module/Profile/Profile.php:135 +#: src/Module/Profile/Profile.php:158 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "أنت حاليا تستعرض ملفك الشخصي كـ %s ألغ" -#: src/Module/Profile/Profile.php:144 src/Module/Settings/Account.php:575 +#: src/Module/Profile/Profile.php:167 msgid "Full Name:" msgstr "الاسم الكامل:" -#: src/Module/Profile/Profile.php:149 +#: src/Module/Profile/Profile.php:172 msgid "Member since:" msgstr "عضو منذ:" -#: src/Module/Profile/Profile.php:155 +#: src/Module/Profile/Profile.php:178 msgid "j F, Y" msgstr "j F, Y" -#: src/Module/Profile/Profile.php:156 +#: src/Module/Profile/Profile.php:179 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 msgid "Birthday:" msgstr "تاريخ الميلاد:" -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 msgid "Age: " msgstr "العمر: " -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 #, php-format msgid "%d year old" msgid_plural "%d years old" @@ -8401,53 +9094,132 @@ msgstr[3] "%d سنوات" msgstr[4] "%d سنة" msgstr[5] "%d سنة" -#: src/Module/Profile/Profile.php:234 -msgid "Forums:" -msgstr "المنتديات:" +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "الوصف:" -#: src/Module/Profile/Profile.php:246 +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "" + +#: src/Module/Profile/Profile.php:273 msgid "View profile as:" msgstr "اعرض الملف الشخصي ك:" -#: src/Module/Profile/Profile.php:263 +#: src/Module/Profile/Profile.php:290 msgid "View as" msgstr "اعرض ك" -#: src/Module/Profile/Profile.php:326 src/Module/Profile/Profile.php:329 -#: src/Module/Profile/Status.php:66 src/Module/Profile/Status.php:69 -#: src/Protocol/Feed.php:1017 src/Protocol/OStatus.php:1245 -#, php-format -msgid "%s's timeline" -msgstr "الخط الزمني لـ %s" +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "الملف الشخصي غير متوفر." -#: src/Module/Profile/Profile.php:327 src/Module/Profile/Status.php:67 -#: src/Protocol/Feed.php:1021 src/Protocol/OStatus.php:1249 -#, php-format -msgid "%s's posts" -msgstr "مشاركات %s" +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "" -#: src/Module/Profile/Profile.php:328 src/Module/Profile/Status.php:68 -#: src/Protocol/Feed.php:1024 src/Protocol/OStatus.php:1252 -#, php-format -msgid "%s's comments" -msgstr "تعليقات %s" +#: src/Module/Profile/RemoteFollow.php:95 +msgid "The provided profile link doesn't seem to be valid" +msgstr "يبدو أنّ رابط الملف الشخصي غير صالح" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/RemoteFollow.php:100 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:128 +msgid "Friend/Connection Request" +msgstr "طلب صداقة/اقتران" + +#: src/Module/Profile/RemoteFollow.php:129 +#, 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 "" + +#: src/Module/Profile/RemoteFollow.php:130 +#, 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 "إن لم تكن عضواً في شبكة اجتماعية حرة، اتبع هذا الرابط للعثور على عقدة عمومية لفرَندِكا وانضم إلينا اليوم." + +#: src/Module/Profile/RemoteFollow.php:131 +msgid "Your Webfinger address or profile URL:" +msgstr "" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "" + +#: src/Module/Profile/Schedule.php:83 msgid "Scheduled" msgstr "مُبرمج" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:84 msgid "Content" msgstr "المحتوى" -#: src/Module/Profile/Schedule.php:86 +#: src/Module/Profile/Schedule.php:85 msgid "Remove post" msgstr "أزل المشاركة" +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "" + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "تعذر التحقق من موقع منزلك." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "" + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "تجاوزت عدد رسائل الحائط اليومية وهو %s. فشل إرسال الرسالة." + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "إذا أردت تلقي رد من %s. تحقق أن إعدادات الخصوصية لموقعك تسمح بتلقي رسائل بريد من مصادر مجهولة." + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "" + #: src/Module/Register.php:84 msgid "Only parent users can create additional accounts." msgstr "فقط المستخدمون الأولياء من يمكنهم إنشاء حسابات إضافية." +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "تجاوز هذا الموقع عدد التسجيلات اليومية المسموح بها. من فضلك حاول غدا." + #: src/Module/Register.php:116 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " @@ -8498,7 +9270,8 @@ msgstr "" msgid "Please repeat your e-mail address:" msgstr "رجاء أعد إدخال عنوان بريدك الإلكتروني:" -#: src/Module/Register.php:162 src/Module/Settings/Account.php:566 +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 msgid "New Password:" msgstr "كلمة المرور الجديدة:" @@ -8506,7 +9279,8 @@ msgstr "كلمة المرور الجديدة:" msgid "Leave empty for an auto generated password." msgstr "" -#: src/Module/Register.php:163 src/Module/Settings/Account.php:567 +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 msgid "Confirm:" msgstr "التأكيد:" @@ -8521,6 +9295,10 @@ msgstr "" msgid "Choose a nickname: " msgstr "اختر لقبًا: " +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "استورد" + #: src/Module/Register.php:174 msgid "Import your profile to this friendica instance" msgstr "استورد ملفك الشخصي لهذا المثيل" @@ -8529,11 +9307,11 @@ msgstr "استورد ملفك الشخصي لهذا المثيل" msgid "Note: This node explicitly contains adult content" msgstr "" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:155 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 msgid "Parent Password:" msgstr "كلمة المرور الولي:" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:155 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "يرجى إدخال كلمة مرور الولي للمصادقة على طلبك." @@ -8563,142 +9341,114 @@ msgid "" "Registration successful. Please check your email for further instructions." msgstr "سجلت بنجاح. راجع بريدك الإلكتروني لمزيد من التعليمات." -#: src/Module/Register.php:339 +#: src/Module/Register.php:342 #, php-format msgid "" "Failed to send email message. Here your accout details:
    login: %s
    " "password: %s

    You can change your password after login." msgstr "" -#: src/Module/Register.php:345 +#: src/Module/Register.php:348 msgid "Registration successful." msgstr "سجلتَ بنجاح." -#: src/Module/Register.php:350 src/Module/Register.php:357 +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 msgid "Your registration can not be processed." msgstr "" -#: src/Module/Register.php:356 +#: src/Module/Register.php:363 msgid "You have to leave a request note for the admin." msgstr "اترك طلب للمدير." -#: src/Module/Register.php:402 +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "" + +#: src/Module/Register.php:395 msgid "Your registration is pending approval by the site owner." msgstr "في انتظار موافقة مالك الموقع لقبول تسجيلك." -#: src/Module/RemoteFollow.php:71 -msgid "Profile unavailable." -msgstr "الملف الشخصي غير متوفر." +#: src/Module/Search/Acl.php:73 +msgid "You must be logged in to use this module." +msgstr "يجب عليك الولوج لاستخدام هذه الوحدة." -#: src/Module/RemoteFollow.php:77 -msgid "Invalid locator" -msgstr "" - -#: src/Module/RemoteFollow.php:84 -msgid "The provided profile link doesn't seem to be valid" -msgstr "يبدو أنّ رابط الملف الشخصي غير صالح" - -#: src/Module/RemoteFollow.php:89 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "" - -#: src/Module/RemoteFollow.php:121 -msgid "Friend/Connection Request" -msgstr "طلب صداقة/اقتران" - -#: src/Module/RemoteFollow.php:122 -#, 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 "" - -#: src/Module/RemoteFollow.php:123 -#, 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 "إن لم تكن عضواً في شبكة اجتماعية حرة، اتبع هذا الرابط للعثور على عقدة عمومية لفرَندِكا وانضم إلينا اليوم." - -#: src/Module/RemoteFollow.php:124 -msgid "Your Webfinger address or profile URL:" -msgstr "" - -#: src/Module/Search/Index.php:54 +#: src/Module/Search/Index.php:69 msgid "Only logged in users are permitted to perform a search." msgstr "يمكن فقط للمستخدمين المسجلين البحث في الموقع." -#: src/Module/Search/Index.php:74 +#: src/Module/Search/Index.php:89 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:205 #, php-format msgid "Items tagged with: %s" msgstr "عناصر موسمة بـ: %s" -#: src/Module/Search/Saved.php:58 +#: src/Module/Search/Saved.php:59 msgid "Search term was not saved." msgstr "لم يُحفظ مصطلح البحث." -#: src/Module/Search/Saved.php:61 +#: src/Module/Search/Saved.php:62 msgid "Search term already saved." msgstr "حُفظ مصطلح البحث سلفًا." -#: src/Module/Search/Saved.php:67 +#: src/Module/Search/Saved.php:68 msgid "Search term was not removed." msgstr "لم يُزل مصطلح البحث." -#: src/Module/Security/Login.php:104 +#: src/Module/Security/Login.php:123 msgid "Create a New Account" msgstr "أنشئ حسابًا جديدًا" -#: src/Module/Security/Login.php:129 +#: src/Module/Security/Login.php:142 msgid "Your OpenID: " msgstr "معرف OpenID: " -#: src/Module/Security/Login.php:132 +#: src/Module/Security/Login.php:145 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "رجاء أدخل كلمة المرور واسم المستخدم لإضافة معرف OpenID لحسابك." -#: src/Module/Security/Login.php:134 +#: src/Module/Security/Login.php:147 msgid "Or login using OpenID: " msgstr "أو لج باستخدام معرف OpenID: " -#: src/Module/Security/Login.php:148 +#: src/Module/Security/Login.php:161 msgid "Password: " msgstr "كلمة المرور: " -#: src/Module/Security/Login.php:149 +#: src/Module/Security/Login.php:162 msgid "Remember me" msgstr "تذكرني" -#: src/Module/Security/Login.php:158 +#: src/Module/Security/Login.php:171 msgid "Forgot your password?" msgstr "أنسيت كلمة المرور؟" -#: src/Module/Security/Login.php:161 +#: src/Module/Security/Login.php:174 msgid "Website Terms of Service" msgstr "شروط الخدمة للموقع" -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:175 msgid "terms of service" msgstr "شروط الخدمة" -#: src/Module/Security/Login.php:164 +#: src/Module/Security/Login.php:177 msgid "Website Privacy Policy" msgstr "سياسة الخصوصية للموقع" -#: src/Module/Security/Login.php:165 +#: src/Module/Security/Login.php:178 msgid "privacy policy" msgstr "سياسة الخصوصية" -#: src/Module/Security/Logout.php:87 +#: src/Module/Security/Logout.php:84 +#: src/Module/Security/TwoFactor/SignOut.php:78 +#: src/Module/Security/TwoFactor/SignOut.php:86 +#: src/Module/Security/TwoFactor/SignOut.php:108 +#: src/Module/Security/TwoFactor/SignOut.php:115 msgid "Logged out." msgstr "خرجت." @@ -8706,193 +9456,282 @@ msgstr "خرجت." msgid "OpenID protocol error. No ID returned" msgstr "خطأ في ميفاق OpenID. لم يعد أي معرف" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:90 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "لم يُعثر على الحساب. رجاء لج إلى حسابك الحالي لإضافة معرف OpenID إليه." -#: src/Module/Security/OpenID.php:94 +#: src/Module/Security/OpenID.php:92 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "لم يُعثر على الحساب. رجاء سجل حساب جديد أو لج إلى حسابك الحالي لإضافة معرف OpenID إليه." -#: src/Module/Security/TwoFactor/Recovery.php:73 +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 +msgid "Passwords do not match." +msgstr "كلمتا المرور غير متطابقتين." + +#: src/Module/Security/PasswordTooLong.php:64 +msgid "Password does not need changing." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 +msgid "Password unchanged." +msgstr "لم تُغير كلمة المرور." + +#: src/Module/Security/PasswordTooLong.php:91 +msgid "Password Too Long" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:92 +msgid "" +"Since version 2022.09, we've realized that any password longer than 72 " +"characters is truncated during hashing. To prevent any confusion about this " +"behavior, please update your password to be fewer or equal to 72 characters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:93 +msgid "Update Password" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Current Password:" +msgstr "كلمة المرور الحالية:" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Your current password to confirm the changes" +msgstr "اكتب كلمة المرور الحالية لتأكيد التغييرات" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces and accentuated letters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 +msgid "Password length is limited to 72 characters." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:74 #, php-format msgid "Remaining recovery codes: %d" msgstr "رموز الاستعادة المتبقية: %d" -#: src/Module/Security/TwoFactor/Recovery.php:77 -#: src/Module/Security/TwoFactor/Verify.php:76 -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Security/TwoFactor/Recovery.php:80 +#: src/Module/Security/TwoFactor/Verify.php:77 +#: src/Module/Settings/TwoFactor/Verify.php:95 msgid "Invalid code, please retry." msgstr "رمز غير صالح، من فضلك أعد المحاولة." -#: src/Module/Security/TwoFactor/Recovery.php:96 +#: src/Module/Security/TwoFactor/Recovery.php:99 msgid "Two-factor recovery" msgstr "الاستيثاق بعاملين" -#: src/Module/Security/TwoFactor/Recovery.php:97 +#: src/Module/Security/TwoFactor/Recovery.php:100 msgid "" "

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

    " msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:98 -#: src/Module/Security/TwoFactor/Verify.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:101 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "لا تحمل هاتفك؟ أدخل رمز الاستعادة للاستيثاق بعاملين" -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:102 msgid "Please enter a recovery code" msgstr "رجاء أدخل رمز الاستعادة" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:103 msgid "Submit recovery code and complete login" msgstr "أرسل رمز الاستعادة لتكمل الولوج" -#: src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Security/TwoFactor/SignOut.php:122 +msgid "Sign out of this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:123 +msgid "" +"

    If you trust this browser, you will not be asked for verification code " +"the next time you sign in.

    " +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:124 +msgid "Sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:126 +msgid "Trust and sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:96 +msgid "Couldn't save browser to Cookie." +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:141 +msgid "Trust this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:142 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:143 +msgid "Not now" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:144 +msgid "Don't trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:145 +msgid "Trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:97 msgid "" "

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

    " msgstr "

    افتح تطبيق الاستيثاق بعاملين على جهازك للحصول على رمز الاستيثاق والتحقق من هويتك.

    " #: src/Module/Security/TwoFactor/Verify.php:100 -#: src/Module/Settings/TwoFactor/Verify.php:154 -msgid "Please enter a code from your authentication app" -msgstr "يرجى إدخال رمز من تطبيق الاستيثاق" +#, php-format +msgid "" +"If you do not have access to your authentication code you can use a two-factor recovery code." +msgstr "" #: src/Module/Security/TwoFactor/Verify.php:101 -msgid "This is my two-factor authenticator app device" -msgstr "هذا هو جهاز الذي استخدمه للاستيثاق بعاملين" +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Please enter a code from your authentication app" +msgstr "يرجى إدخال رمز من تطبيق الاستيثاق" #: src/Module/Security/TwoFactor/Verify.php:102 msgid "Verify code and complete login" msgstr "تحقق من الرمز وأكمل الولوج" -#: src/Module/Settings/Account.php:66 -msgid "Passwords do not match." -msgstr "كلمتا المرور غير متطابقتين." - -#: src/Module/Settings/Account.php:80 -msgid "Password unchanged." -msgstr "لم تُغير كلمة المرور." - -#: src/Module/Settings/Account.php:95 +#: src/Module/Settings/Account.php:96 msgid "Please use a shorter name." msgstr "يرجى استخدام اسم أقصر." -#: src/Module/Settings/Account.php:98 +#: src/Module/Settings/Account.php:99 msgid "Name too short." msgstr "الاسم قصير جداً." -#: src/Module/Settings/Account.php:107 +#: src/Module/Settings/Account.php:108 msgid "Wrong Password." msgstr "كلمة المرور خاطئة." -#: src/Module/Settings/Account.php:112 +#: src/Module/Settings/Account.php:113 msgid "Invalid email." msgstr "البريد الإلكتروني غير صالح." -#: src/Module/Settings/Account.php:118 +#: src/Module/Settings/Account.php:117 msgid "Cannot change to that email." msgstr "لا يمكن التغيير إلى هذا البريد الإلكتروني." -#: src/Module/Settings/Account.php:148 src/Module/Settings/Account.php:200 -#: src/Module/Settings/Account.php:220 src/Module/Settings/Account.php:304 -#: src/Module/Settings/Account.php:353 +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 msgid "Settings were not updated." msgstr "لم تُحدث الإعدادات." -#: src/Module/Settings/Account.php:365 +#: src/Module/Settings/Account.php:364 msgid "Contact CSV file upload error" msgstr "خطأ أثناء رفع ملف CSV" -#: src/Module/Settings/Account.php:384 +#: src/Module/Settings/Account.php:383 msgid "Importing Contacts done" msgstr "أُستورد المتراسلون" -#: src/Module/Settings/Account.php:397 +#: src/Module/Settings/Account.php:396 msgid "Relocate message has been send to your contacts" msgstr "أُرسلت رسالة تنبيه بانتقالك إلى متراسليك" -#: src/Module/Settings/Account.php:414 +#: src/Module/Settings/Account.php:413 msgid "Unable to find your profile. Please contact your admin." msgstr "تعذر العثور على ملفك الشخصي. من فضلك اتصال بالمدير." -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:455 msgid "Personal Page Subtypes" msgstr "الأنواع الفرعية للصفحة الشخصية" -#: src/Module/Settings/Account.php:457 -msgid "Community Forum Subtypes" -msgstr "الأنواع الفرعية للمنتدى المجتمعي" +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" +msgstr "" -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:466 msgid "Account for a personal profile." msgstr "حساب ملف شخصي خاص." -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:473 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "حساب المنظمة يوافق تلقائياً على طلبات المراسلة \"كمتابعين\"." -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:480 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "حساب إخباري يوافق تلقائياً على طلبات المراسلة \"كمتابعين\"." -#: src/Module/Settings/Account.php:488 +#: src/Module/Settings/Account.php:487 msgid "Account for community discussions." msgstr "حساب مناقشات مجتمعية." -#: src/Module/Settings/Account.php:495 +#: src/Module/Settings/Account.php:494 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "حساب ملف شخصي عادي يتطلب الموافقة اليدوية على \"الأصدقاء\" و \"المتابعين\"." -#: src/Module/Settings/Account.php:502 +#: src/Module/Settings/Account.php:501 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "حساب شخصي علني يوافق تلقائياً على طلبات المراسلة \"كمتابعين\"." -#: src/Module/Settings/Account.php:509 +#: src/Module/Settings/Account.php:508 msgid "Automatically approves all contact requests." msgstr "يوافق تلقائياً على جميع طلبات المراسلة." -#: src/Module/Settings/Account.php:516 +#: src/Module/Settings/Account.php:515 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "حساب ملف شخصي لمشهور يوافق تلقائياً على طلبات المراسلة كـ\"أصدقاء\"." -#: src/Module/Settings/Account.php:521 -msgid "Private Forum [Experimental]" -msgstr "منتدى خاص [تجريبي]" +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:522 msgid "Requires manual approval of contact requests." msgstr "يتطلب الموافقة اليدوية على طلبات المراسلة." -#: src/Module/Settings/Account.php:532 +#: src/Module/Settings/Account.php:531 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:532 +#: src/Module/Settings/Account.php:531 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(اختياري) اسمح لمعرف OpenID بالولوج إلى هذا الحساب." -#: src/Module/Settings/Account.php:540 +#: src/Module/Settings/Account.php:539 msgid "Publish your profile in your local site directory?" msgstr "أتريد نشر ملفك الشخصي في الدليل المحلي للموقع؟" -#: src/Module/Settings/Account.php:540 +#: src/Module/Settings/Account.php:539 #, php-format msgid "" "Your profile will be published in this node's local " @@ -8900,103 +9739,94 @@ msgid "" " system settings." msgstr "سينشر ملفك الشخصي في الدليل المحلي لهذه العقدة. تعتمد خصوصية معلوماتك على إعدادات النظام." -#: src/Module/Settings/Account.php:546 +#: src/Module/Settings/Account.php:545 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "سينشر ملفك الشخصي كذلك في الأدلة العالمية لفرَندِيكا (مثال %s)." -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:558 msgid "Account Settings" msgstr "إعدادات الحساب" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:559 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "عنوان معرفك هو '%s' أو '%s'." -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:566 msgid "Password Settings" msgstr "إعدادات كلمة المرور" -#: src/Module/Settings/Account.php:566 -msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "المحارف المسموح بها هي a-z، A-Z، 0-9 والأحرف الخاصة باستثناء المساحات، الأحرف المنبورة ونقطتي التفسير (:)." - -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:568 msgid "Leave password fields blank unless changing" msgstr "اترك حقول كلمة المرور فارغة ما لم ترد تغييرها" -#: src/Module/Settings/Account.php:568 -msgid "Current Password:" -msgstr "كلمة المرور الحالية:" - -#: src/Module/Settings/Account.php:568 -msgid "Your current password to confirm the changes" -msgstr "اكتب كلمة المرور الحالية لتأكيد التغييرات" - -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:570 msgid "Password:" msgstr "كلمة المرور:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:570 msgid "Your current password to confirm the changes of the email address" msgstr "اكتب كلمة المرور الحالية لتأكيد تغيير بريدك الإلكتروني" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:573 msgid "Delete OpenID URL" msgstr "احذف معرف OpenID" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:575 msgid "Basic Settings" msgstr "الإعدادات الأساسيّة" #: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "الاسم العلني:" + +#: src/Module/Settings/Account.php:577 msgid "Email Address:" msgstr "البريد الإلكتروني:" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:578 msgid "Your Timezone:" msgstr "المنطقة الزمنية:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:579 msgid "Your Language:" msgstr "لغتك:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:579 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "عيّن لغة واجهة فرَندِيكا ورسائل البريد الإلكتروني" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:580 msgid "Default Post Location:" msgstr "موقع النشر الافتراضي:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:581 msgid "Use Browser Location:" msgstr "استخدم موقع المتصفح:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:583 msgid "Security and Privacy Settings" msgstr "إعدادات الأمان والخصوصية" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:585 msgid "Maximum Friend Requests/Day:" msgstr "حدُ طلبات الصداقة لليوم الواحد:" -#: src/Module/Settings/Account.php:584 src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 msgid "(to prevent spam abuse)" msgstr "(لمنع الرسائل المزعجة)" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:587 msgid "Allow your profile to be searchable globally?" msgstr "أتريد السماح لملفك الشخصي بالظهور في نتائج البحث العالمي؟" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:587 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 " @@ -9004,43 +9834,43 @@ msgid "" "indexed or not." msgstr "فعّل هذا الإعداد إن أردت أن يُعثر عليك بسهولة. سيتمكن المستخدمون في المواقع البعيد من العثور عليك، وأيضا سيسمح بظهور ملفك الشخصي في محركات البحث." -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:588 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "أتريد إخفاء قائمة المتراسلين/الأصدقاء عن متصفحي ملفك الشخصي؟" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:588 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "عادة تُعرض قائمة المتراسلين على صفحة ملفك الشخصي. إن قمت بتفعيل هذا الخيار ستخفى القائمة." -#: src/Module/Settings/Account.php:588 -msgid "Hide your profile details from anonymous viewers?" -msgstr "اخف معلومات ملفك الشخص عن المتصفحين المجهولين؟" - -#: src/Module/Settings/Account.php:588 -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 "سيرى الزوار المجهولون صورة ملفك الشخصي واسمك العلني ولقبك فقط. لكن ستبقى مشاركتك العامة وردودك متاحة عبر وسائل أخرى." +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "" #: src/Module/Settings/Account.php:589 +msgid "" +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "" + +#: src/Module/Settings/Account.php:590 msgid "Make public posts unlisted" msgstr "لا تدرج المشاركات العلنية" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:590 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "لن تظهر مشاركتك العلنية على صفحات المجتمع أو في نتائج البحث لهذا الموقع، ولن يتم إرسالها إلى خوادم الترحيل. غير أنها ستبقى تظهر في التغذيات العمومية للخوادم البعيدة." -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:591 msgid "Make all posted pictures accessible" msgstr "أتح كل الصور المنشورة" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:591 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 " @@ -9048,837 +9878,1177 @@ msgid "" "public on your photo albums though." msgstr "يسمح هذا الخيار بالوصول للصورة المنشورة عبر رابط مباشر. هذا حل لمعظم الشبكات التي لا يمكنها التعامل مع الأذونات. صورك غير العلنية ستبقى مخفية." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:592 msgid "Allow friends to post to your profile page?" msgstr "أتسمح لأصدقائك بالنشر في صفحة ملفك الشخصي؟" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:592 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "يمكن للمتراسلين كتابة مشاركات على حائط ملفك الشخصي. ستكون هذه المشركات مرئية لكل المتراسلين" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:593 msgid "Allow friends to tag your posts?" msgstr "أتسمح لأصدقائك بوسم مشاركاتك؟" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:593 msgid "Your contacts can add additional tags to your posts." msgstr "يمكن لأصدقائك إضافة وسوم لمشاركاتك." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:594 msgid "Permit unknown people to send you private mail?" msgstr "أتسمح لأشخاص مجهولين بإرسال بريد خاص لك؟" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:594 msgid "" "Friendica network users may send you private messages even if they are not " "in your contact list." msgstr "يمكن لمستخدمي شبكة فرَندِكا إرسال رسائل خاصة لك حتى إن لم يكونوا في قائمة المتراسلين." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:595 msgid "Maximum private messages per day from unknown people:" msgstr "حد الرسائل اليومي المستلمة من مجهولين:" #: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "" + +#: src/Module/Settings/Account.php:598 msgid "Default Post Permissions" msgstr "أذونات النشر الافتراضية" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:602 msgid "Expiration settings" msgstr "إعدادات انتهاء الصلاحية" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:603 msgid "Automatically expire posts after this many days:" msgstr "أنه صَلاحِيَة المشاركات تلقائياً بعد هذا العدد من الأيام:" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:603 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "إذا كان فارغاً، لن تنتهي صلاحية المشاركات. وإلا بعد المهلة ستحذف المشاركات المنتهية صلاحيتها" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:604 msgid "Expire posts" msgstr "أنه صَلاحِيَة المشاركات" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:604 msgid "When activated, posts and comments will be expired." msgstr "عند تفعيله، ستنهى صلاحية المشاركات والتعليقات." -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:605 msgid "Expire personal notes" msgstr "أنه صَلاحِيَة الملاحظات الشخصية" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:605 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "عند تفعيله، ستنهى صلاحية الملاحظات الشخصية على صفحة ملفك الشخصي." -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:606 msgid "Expire starred posts" msgstr "أنتهي صلاحية المشاركات المفضلة" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:606 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "تفضيل مشاركة تقيها من انتهاء الصلاحية. هذا السلوك يُتجاوز من خلال هذا الإعداد." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:607 msgid "Only expire posts by others" msgstr "أنه صَلاحِيَة مشاركات الآخرين فقط" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:607 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "عند تفعيله، لا نهاية لصلاحية مشاركاتك. ثم تكون الإعدادات أعلاه صالحة فقط للمشاركات التي استلمتها." -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:610 msgid "Notification Settings" msgstr "إعدادات التنبيهات" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:611 msgid "Send a notification email when:" msgstr "أرسل تنبيها للبريدي الإلكتروني عند:" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:612 msgid "You receive an introduction" msgstr "تلقي تقديم" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:613 msgid "Your introductions are confirmed" msgstr "أُكدت تقديماتك" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:614 msgid "Someone writes on your profile wall" msgstr "يكتب شخص ما على جدار ملفك الشخصي" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:615 msgid "Someone writes a followup comment" msgstr "شخص ما يعلق على ما نشرت" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:616 msgid "You receive a private message" msgstr "تلقي رسالة خاصة" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:617 msgid "You receive a friend suggestion" msgstr "تلقي اقتراح صداقة" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:618 msgid "You are tagged in a post" msgstr "ذُكرتَ في مشاركة" -#: src/Module/Settings/Account.php:617 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:620 msgid "Create a desktop notification when:" msgstr "أنشئ تنبيه سطح المكتب عند:" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:621 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:622 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:623 msgid "Someone liked your content" msgstr "أُعجب شخص بمحتواك" -#: src/Module/Settings/Account.php:622 src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:624 msgid "Someone shared your content" msgstr "شارك شخص محتواك" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:625 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:626 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:627 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:629 msgid "Activate desktop notifications" msgstr "نشّط تنبيهات سطح المكتب" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:629 msgid "Show desktop popup on new notifications" msgstr "أظهر منبثقات للتنبيهات الجديدة" -#: src/Module/Settings/Account.php:632 +#: src/Module/Settings/Account.php:633 msgid "Text-only notification emails" msgstr "رسائل تنبيه نصية فقط" -#: src/Module/Settings/Account.php:634 +#: src/Module/Settings/Account.php:635 msgid "Send text only notification emails, without the html part" msgstr "أرسل بريد التنبيه كنص فقط، دون وسوم html" -#: src/Module/Settings/Account.php:638 +#: src/Module/Settings/Account.php:639 msgid "Show detailled notifications" msgstr "اعرض تنبيهات مفصلة" -#: src/Module/Settings/Account.php:640 +#: src/Module/Settings/Account.php:641 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "افتراضيًا ، يعرض أحدث تنبيه فقط لكل محادثة. عند تفعيله ستعرض جميع التنبيهات." -#: src/Module/Settings/Account.php:644 +#: src/Module/Settings/Account.php:645 msgid "Show notifications of ignored contacts" msgstr "أظهر تنبيهات للمتراسلين المتجاهلين" -#: src/Module/Settings/Account.php:646 +#: src/Module/Settings/Account.php:647 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "أنت لا ترى مشاركات المتراسلين المتجاهلين. لكن لا يزال بإمكانك رؤية تعليقاتهم. هذا الإعداد يتحكم إذا كنت ترغب في الاستمرار في تلقي تنبيهات سببها المتراسلون المتجاهلون." -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:650 msgid "Advanced Account/Page Type Settings" msgstr "الإعدادات المتقدمة للحساب/للصفحة" -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:651 msgid "Change the behaviour of this account for special situations" msgstr "غيّر سلوك هذا الحساب للحالات الخاصة" -#: src/Module/Settings/Account.php:653 +#: src/Module/Settings/Account.php:654 msgid "Import Contacts" msgstr "استيراد متراسلين" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:655 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "ارفع ملف CSV معرفات المتراسلين لحسابك القديم، معرفات المتابَعين تكون في العمود الأول." -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:656 msgid "Upload File" msgstr "ارفع ملفًا" -#: src/Module/Settings/Account.php:658 +#: src/Module/Settings/Account.php:659 msgid "Relocate" msgstr "الانتقال" -#: src/Module/Settings/Account.php:659 +#: src/Module/Settings/Account.php:660 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "إذا كنت قد نقلت هذا الملف الشخصي من خادم آخر، وبعض المتراسلين لا يتلقون تحديثاتك، أنقر هذا الزر." -#: src/Module/Settings/Account.php:660 +#: src/Module/Settings/Account.php:661 msgid "Resend relocate message to contacts" msgstr "أعد إرسال رسالة الانتقال للمتراسلين" -#: src/Module/Settings/Delegation.php:53 +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "إعدادات الإضافة" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "لم تضبط إعدادات الإضافة" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "فشل الاتصال بحساب البريد الإلكتروني باستخدام الإعدادات المقدمة." + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "دياسبورا (سوشل-هوم، هوب-زيلا)" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "OStatus (غنو سوشل)" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "الوصول إلى البريد الإلكتروني معطل في هذا الموقع." + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "لا شيء" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "الإعدادات العامة لشبكات التواصل الاجتماعي" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "حيز المحتوى المتابَع" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "" + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "المحادثات التي بدأها متابَعي فقط" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "المحادثات التي بدأها متابَعي أو علقوا عليها (الافتراضي)" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "أي محادثة تفاعل معها متابَعي" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "فعّل التحذير من المحتوى" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "يمكن لمستخدمي شبكات مثل ماستدون أو بليروما تعيين حقل التحذير من المحتوى الذي يطوي مشاركتهم افتراضيا. هذا يفعل الطي التلقائي بدلًا من تعيين التحذير من المحتوى كعنوان للمشاركة. هذا لا يؤثر على أي ترشيح محتوى قمت بإعداده." + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "فعّل الاختصار الذكي" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "يعثر الاختصار الذكي على الرابط الأنسب في المشاركات المختصرة. عند تعطيله سيشير الرابط إلى منشور فرنديكا الأصلي." + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "فعّل اختصار النصوص" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "أرفق عنوان الرابط" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "عند تفعيله سيتم إرفاق عنوان الصفحة بمنشور دياسبورا. هذا مفيد بشكل أساسي مع المتراسلين \"الذاتيين\" الذين يشاركون تغذيات Rss / Atom." + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "حساب GNU Social\\ActivityPub القديم" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "إذا قمت بإدخال اسم حساب ActivityPub/GNU Social/Statusnet القديم هنا (بنسق user@domain.tld)، سيضاف المتراسلون في هذا الحساب تلقائيا. سيصفر الحقل عند الانتهاء." + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "أصلح اشتراكات OStatus" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "إعداد بريد الكتروني/صندوق بريد" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "إذا كنت ترغب في التواصل مع متراسلي البريد الإلكتروني باستخدام هذه الخدمة (اختيارية)، من فضلك حدد كيفية الاتصال بصندوق بريدك." + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "آخر تحقق ناجح للبريد الإلكتروني:" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "اسم خادم IMAP:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "منفذ IMAP:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "الحماية:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "اسم الولوج للبريد الإلكتروني:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "كلمة مرور البريد الإلكتروني:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "الرد على عنوان:" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "أرسل المشاركات العلنية لجميع متراسلي البريد الإلكتروني:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "الإجراء بعد الاستيراد:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "انقل إلى مجلد" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "انقل إلى المجلد:" + +#: src/Module/Settings/Delegation.php:54 msgid "Delegation successfully granted." msgstr "منح التفويض بنجاح." -#: src/Module/Settings/Delegation.php:55 +#: src/Module/Settings/Delegation.php:56 msgid "Parent user not found, unavailable or password doesn't match." msgstr "لم يُعثر على الولي أو هو غير متوفر أو كلمة مرور غير صحيحة." -#: src/Module/Settings/Delegation.php:59 +#: src/Module/Settings/Delegation.php:60 msgid "Delegation successfully revoked." msgstr "نجح إبطال التفويض." -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 +#: src/Module/Settings/Delegation.php:82 +#: src/Module/Settings/Delegation.php:104 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:95 +#: src/Module/Settings/Delegation.php:96 msgid "Delegate user not found." msgstr "لم يُعثر على المندوب." -#: src/Module/Settings/Delegation.php:143 +#: src/Module/Settings/Delegation.php:144 msgid "No parent user" msgstr "لا يوجد وليٌ" -#: src/Module/Settings/Delegation.php:154 -#: src/Module/Settings/Delegation.php:165 +#: src/Module/Settings/Delegation.php:155 +#: src/Module/Settings/Delegation.php:166 msgid "Parent User" msgstr "الوليٌ" -#: src/Module/Settings/Delegation.php:162 +#: src/Module/Settings/Delegation.php:163 msgid "Additional Accounts" msgstr "الحسابات الإضافية" -#: src/Module/Settings/Delegation.php:163 +#: src/Module/Settings/Delegation.php:164 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "سجل حسابات إضافية مرتبطة تلقائيا بحسابك الحالي ويمكنك إدارتها عبر هذا الحساب." -#: src/Module/Settings/Delegation.php:164 +#: src/Module/Settings/Delegation.php:165 msgid "Register an additional account" msgstr "سجل حساب إضافي" -#: src/Module/Settings/Delegation.php:168 +#: src/Module/Settings/Delegation.php:169 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "المستخدمون الأولياء لديهم سيطرة كاملة على هذا الحساب، بما في ذلك إعدادات الحساب. الرجاء الحذر عند إعطاء صلاحية الوصول إليه." -#: src/Module/Settings/Delegation.php:172 +#: src/Module/Settings/Delegation.php:173 msgid "Delegates" msgstr "المندوبون" -#: src/Module/Settings/Delegation.php:174 +#: src/Module/Settings/Delegation.php:175 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 "يستطيع المندوبون إدارة جميع جوانب هذا الحساب/الصفحة باستثناء إعدادات الحساب الأساسية. يرجى عدم تفويض حسابك الشخصي لأي شخص لا تثق به." -#: src/Module/Settings/Delegation.php:175 +#: src/Module/Settings/Delegation.php:176 msgid "Existing Page Delegates" msgstr "مندوبو الصفحة الحاليون" -#: src/Module/Settings/Delegation.php:177 +#: src/Module/Settings/Delegation.php:178 msgid "Potential Delegates" msgstr "المندوبون المحتملون" -#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:181 msgid "Add" msgstr "أضف" -#: src/Module/Settings/Delegation.php:181 +#: src/Module/Settings/Delegation.php:182 msgid "No entries." msgstr "لا مدخلات." -#: src/Module/Settings/Display.php:107 +#: src/Module/Settings/Display.php:146 msgid "The theme you chose isn't available." msgstr "السمة التي اخترتها غير متوفرة." -#: src/Module/Settings/Display.php:146 +#: src/Module/Settings/Display.php:186 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (غير مدعوم)" -#: src/Module/Settings/Display.php:192 +#: src/Module/Settings/Display.php:221 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:222 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:223 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:224 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:259 msgid "Display Settings" msgstr "إعدادات العرض" -#: src/Module/Settings/Display.php:194 +#: src/Module/Settings/Display.php:261 msgid "General Theme Settings" msgstr "الإعدادات العامة للسمة" -#: src/Module/Settings/Display.php:195 +#: src/Module/Settings/Display.php:262 msgid "Custom Theme Settings" msgstr "الإعدادات المخصصة للسمة" -#: src/Module/Settings/Display.php:196 +#: src/Module/Settings/Display.php:263 msgid "Content Settings" msgstr "إعدادات المحتوى" -#: src/Module/Settings/Display.php:197 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:161 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 +#: src/Module/Settings/Display.php:264 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "إعدادات السمة" -#: src/Module/Settings/Display.php:198 -msgid "Calendar" -msgstr "التقويم" +#: src/Module/Settings/Display.php:265 +msgid "Timelines" +msgstr "" -#: src/Module/Settings/Display.php:204 +#: src/Module/Settings/Display.php:272 msgid "Display Theme:" msgstr "سمة العرض:" -#: src/Module/Settings/Display.php:205 +#: src/Module/Settings/Display.php:273 msgid "Mobile Theme:" msgstr "سمة الهاتف:" -#: src/Module/Settings/Display.php:208 +#: src/Module/Settings/Display.php:276 msgid "Number of items to display per page:" msgstr "عدد العناصر التي سيتم عرضها في كل صفحة:" -#: src/Module/Settings/Display.php:208 src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277 msgid "Maximum of 100 items" msgstr "الحد الأقصى هو 100 عنصر" -#: src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:277 msgid "Number of items to display per page when viewed from mobile device:" msgstr "عدد العناصر التي سيتم عرضها في كل صفحة في وضع الهاتف:" -#: src/Module/Settings/Display.php:210 +#: src/Module/Settings/Display.php:278 msgid "Update browser every xx seconds" msgstr "حدّث المتصفح كل xx ثانية" -#: src/Module/Settings/Display.php:210 +#: src/Module/Settings/Display.php:278 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "الحد الأدنى هو 10 ثواني. أدخل -1 لتعطيله." -#: src/Module/Settings/Display.php:211 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "" - -#: src/Module/Settings/Display.php:211 -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 "يمكن أن يضيف التحديث التلقائي للتغذية محتوى جديدًا إلى أعلى القائمة ، مما قد يؤثر على تمرير الصفحة ويعيق القراءة إذا تم القيام به في أي مكان آخر غير الجزء العلوي من الصفحة." - -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:279 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:279 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:280 msgid "Infinite scroll" msgstr "التمرير اللانهائي" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:280 msgid "Automatic fetch new items when reaching the page end." msgstr "يجلب عناصر جديدة تلقائياً عند الوصول إلى نهاية الصفحة." -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:281 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:281 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:282 msgid "Display the Dislike feature" msgstr "اعرض ميزة \"لم يعجبني\"" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:282 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "يعرض زر لم يعجبني والتفاعلات السلبية في المشاركات والتعليقات." -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:283 msgid "Display the resharer" msgstr "اعرض صاحب إعادة النشر" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:283 msgid "Display the first resharer as icon and text on a reshared item." msgstr "اعرض صورة صاحب المشاركة الأصلية كأيقونة بالإضافة إلى نص على المشاركة." -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:284 msgid "Stay local" msgstr "ابقى في الخادم المحلي" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:284 msgid "Don't go to a remote system when following a contact link." msgstr "لا يذهب إلى نظام بعيد عند اتباع رابط متراسل." -#: src/Module/Settings/Display.php:219 +#: src/Module/Settings/Display.php:285 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:285 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Timelines for the network page:" +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Select all the timelines that you want to see on your network page." +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Channel languages:" +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Select all languages that you want to see in your channels." +msgstr "" + +#: src/Module/Settings/Display.php:290 msgid "Beginning of week:" msgstr "بداية الأسبوع:" -#: src/Module/Settings/Profile/Index.php:83 -msgid "Profile Name is required." -msgstr "اسم الملف الشخصي مطلوب." +#: src/Module/Settings/Display.php:291 +msgid "Default calendar view:" +msgstr "" -#: src/Module/Settings/Profile/Index.php:131 +#: src/Module/Settings/Display.php:300 src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:312 +#, php-format +msgid "%s: %s" +msgstr "" + +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "ميزات إضافية" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "التطبيقات المتصلة" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "أزل التخويل" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:167 msgid "Profile couldn't be updated." msgstr "تعذر تحديث الملف الشخصي." -#: src/Module/Settings/Profile/Index.php:172 -#: src/Module/Settings/Profile/Index.php:192 +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 msgid "Label:" msgstr "التسمية:" -#: src/Module/Settings/Profile/Index.php:173 -#: src/Module/Settings/Profile/Index.php:193 +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 msgid "Value:" msgstr "القيمة:" -#: src/Module/Settings/Profile/Index.php:183 -#: src/Module/Settings/Profile/Index.php:203 +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 msgid "Field Permissions" msgstr "أذونات الحقل" -#: src/Module/Settings/Profile/Index.php:184 -#: src/Module/Settings/Profile/Index.php:204 +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 msgid "(click to open/close)" msgstr "(أنقر للفتح/للإغلاق)" -#: src/Module/Settings/Profile/Index.php:190 +#: src/Module/Settings/Profile/Index.php:224 msgid "Add a new profile field" msgstr "أضف حقلًا جديدًا للملف الشخصي" -#: src/Module/Settings/Profile/Index.php:220 +#: src/Module/Settings/Profile/Index.php:247 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:249 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:255 msgid "Profile Actions" msgstr "إجراءات الملف الشخصي" -#: src/Module/Settings/Profile/Index.php:221 +#: src/Module/Settings/Profile/Index.php:256 msgid "Edit Profile Details" msgstr "عدّل تفاصيل الملف الشخصي" -#: src/Module/Settings/Profile/Index.php:223 +#: src/Module/Settings/Profile/Index.php:258 msgid "Change Profile Photo" msgstr "غيّر صورة الملف الشخصي" -#: src/Module/Settings/Profile/Index.php:228 +#: src/Module/Settings/Profile/Index.php:261 msgid "Profile picture" msgstr "صورة الملف الشخصي" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:262 msgid "Location" msgstr "الموقع" -#: src/Module/Settings/Profile/Index.php:230 src/Util/Temporal.php:93 -#: src/Util/Temporal.php:95 +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 msgid "Miscellaneous" msgstr "متنوّع" -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:264 msgid "Custom Profile Fields" msgstr "حقول مخصصة للملف الشخصي" -#: src/Module/Settings/Profile/Index.php:233 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 msgid "Upload Profile Photo" msgstr "ارفع صورة الملف الشخصي" -#: src/Module/Settings/Profile/Index.php:237 -msgid "Display name:" -msgstr "الاسم العلني:" - -#: src/Module/Settings/Profile/Index.php:240 -msgid "Street Address:" -msgstr "عنوان الشارع:" - -#: src/Module/Settings/Profile/Index.php:241 -msgid "Locality/City:" -msgstr "المدينة:" - -#: src/Module/Settings/Profile/Index.php:242 -msgid "Region/State:" -msgstr "الولاية:" - -#: src/Module/Settings/Profile/Index.php:243 -msgid "Postal/Zip Code:" -msgstr "الرمز البريدي:" - -#: src/Module/Settings/Profile/Index.php:244 -msgid "Country:" -msgstr "الدّولة:" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "XMPP (Jabber) address:" -msgstr "عنوان XMPP (Jabber):" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "" -"The XMPP address will be published so that people can follow you there." -msgstr "سيتم نشر عنوان XMPP حتى يتمكن الناس من متابعتك هناك." - -#: src/Module/Settings/Profile/Index.php:247 -msgid "Matrix (Element) address:" -msgstr "عنوان مايتركس:" - -#: src/Module/Settings/Profile/Index.php:247 -msgid "" -"The Matrix address will be published so that people can follow you there." -msgstr "سيتم نشر عنوان مايتركس حتى يتمكن الناس من متابعتك هناك." - -#: src/Module/Settings/Profile/Index.php:248 -msgid "Homepage URL:" -msgstr "رابط الصفحة الرئيسية:" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "Public Keywords:" -msgstr "الكلمات المفتاحية العلنية:" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(يستخدم لاقتراح أصدقاء، يمكن للآخرين رؤيتهم)" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "Private Keywords:" -msgstr "الكلمات المفتاحية الخاصة:" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(يستخدم للبحث عن ملفات الشخصية، لا يظهر للآخرين)" - -#: src/Module/Settings/Profile/Index.php:251 +#: src/Module/Settings/Profile/Index.php:266 #, 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 "

    الحقول المخصصة تظهر في صفحة ملفك الشخصي.

    \n\t\t\t\t

    يمكنك استخدام رموز BBCCode في حقول القيم.

    \n\t\t\t\t

    أعد الترتيب بسحب عنوان الحقل.

    \n\t\t\t\t

    أفرغ حقل التسمية لإزالة الحقل مخصص.

    \n\t\t\t\t

    لن يتمكن إلاّ المتراسلين المختارين والمجموعات المختارة من رؤية الحقول غير العلنية.

    " +"\t\t\t\t

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

    " +msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:108 -#: src/Module/Settings/Profile/Photo/Crop.php:126 -#: src/Module/Settings/Profile/Photo/Crop.php:144 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "عنوان الشارع:" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "المدينة:" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "الولاية:" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "الرمز البريدي:" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "الدّولة:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "عنوان XMPP (Jabber):" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "سيتم نشر عنوان XMPP حتى يتمكن الناس من متابعتك هناك." + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "عنوان مايتركس:" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "سيتم نشر عنوان مايتركس حتى يتمكن الناس من متابعتك هناك." + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "رابط الصفحة الرئيسية:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "الكلمات المفتاحية العلنية:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(يستخدم لاقتراح أصدقاء، يمكن للآخرين رؤيتهم)" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "الكلمات المفتاحية الخاصة:" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(يستخدم للبحث عن ملفات الشخصية، لا يظهر للآخرين)" + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 +#: src/Module/Settings/Profile/Photo/Index.php:101 #, php-format msgid "Image size reduction [%s] failed." msgstr "فشل تقليص حجم الصورة [%s]." -#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Crop.php:150 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "إذا لم تظهر الصورة الجديدة أعد تحميل الصفحة مع الضغط على مفتاح Shift، أو امسح ذاكرة التخزين المؤقت للمتصفح." -#: src/Module/Settings/Profile/Photo/Crop.php:156 +#: src/Module/Settings/Profile/Photo/Crop.php:155 msgid "Unable to process image" msgstr "تعذرت معالجة الصورة" -#: src/Module/Settings/Profile/Photo/Crop.php:175 +#: src/Module/Settings/Profile/Photo/Crop.php:174 msgid "Photo not found." msgstr "لم يُعثر على الصورة." -#: src/Module/Settings/Profile/Photo/Crop.php:197 +#: src/Module/Settings/Profile/Photo/Crop.php:196 msgid "Profile picture successfully updated." msgstr "نجح تحديث صورة الملف الشخصي." -#: src/Module/Settings/Profile/Photo/Crop.php:223 -#: src/Module/Settings/Profile/Photo/Crop.php:227 +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 msgid "Crop Image" msgstr "قص الصورة" -#: src/Module/Settings/Profile/Photo/Crop.php:224 +#: src/Module/Settings/Profile/Photo/Crop.php:223 msgid "Please adjust the image cropping for optimum viewing." msgstr "اضبط قص الصور للحصول على أفضل عرض ممكن." -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:225 msgid "Use Image As Is" msgstr "استخدم الصورة كما هي" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:45 msgid "Missing uploaded image." msgstr "الصورة المرفوعة مفقودة." -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Profile Picture Settings" msgstr "إعدادات الصورة الشخصية" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Current Profile Picture" msgstr "الصورة الشخصية الحالية" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Profile Picture" msgstr "ارفع صورة للملف الشخصي" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload Picture:" msgstr "ارفع صورة:" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:132 msgid "or" msgstr "أو" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:134 msgid "skip this step" msgstr "تخطى هذه الخطوة" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:136 msgid "select a photo from your photo albums" msgstr "اختر صورة من ألبومك" -#: src/Module/Settings/TwoFactor/AppSpecific.php:64 -#: src/Module/Settings/TwoFactor/Recovery.php:62 -#: src/Module/Settings/TwoFactor/Trusted.php:65 -#: src/Module/Settings/TwoFactor/Verify.php:68 +#: src/Module/Settings/RemoveMe.php:94 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[تنبيه نظام فرنديكا]" + +#: src/Module/Settings/RemoveMe.php:94 +msgid "User deleted their account" +msgstr "حذف المستخدم حسابه" + +#: src/Module/Settings/RemoveMe.php:95 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "حذف مستخدم حسابه على عقدة فرَندِكا خاصتك. من فضلك تأكد أن بياناتهم أُزيلت من النسخ الاحتياطية." + +#: src/Module/Settings/RemoveMe.php:96 +#, php-format +msgid "The user id is %d" +msgstr "معرف المستخدم هو %d" + +#: src/Module/Settings/RemoveMe.php:108 +msgid "Your user account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:128 +msgid "Remove My Account" +msgstr "أزل حسابي" + +#: src/Module/Settings/RemoveMe.php:129 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "سيزال حسابك نهائيًا. لا مجال لتراجع عند انتهائه." + +#: src/Module/Settings/RemoveMe.php:131 +msgid "Please enter your password for verification:" +msgstr "يرجى إدخال كلمة المرور للتأكيد:" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "" + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 msgid "Please enter your password to access this page." msgstr "يرجى إدخال كلمة المرور للوصول إلى هذه الصفحة." -#: src/Module/Settings/TwoFactor/AppSpecific.php:82 +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:85 +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:89 +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 msgid "New app-specific password generated." msgstr "أُنشئت كلمة مرور جديدة خاصة بالتطبيق بنجاح." -#: src/Module/Settings/TwoFactor/AppSpecific.php:95 +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:105 +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 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 "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 msgid "Description" msgstr "الوصف" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 msgid "Last Used" msgstr "آخر استخدام" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 msgid "Revoke" msgstr "أبطل" -#: src/Module/Settings/TwoFactor/AppSpecific.php:135 +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Revoke All" msgstr "أبطل الكل" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 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 "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:141 +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 msgid "Generate" msgstr "ولّد" -#: src/Module/Settings/TwoFactor/Index.php:67 +#: src/Module/Settings/TwoFactor/Index.php:68 msgid "Two-factor authentication successfully disabled." msgstr "عُطل الاستيثاق بعاملين." -#: src/Module/Settings/TwoFactor/Index.php:93 -msgid "Wrong Password" -msgstr "كلمة مرور خاطئة" - -#: src/Module/Settings/TwoFactor/Index.php:113 +#: src/Module/Settings/TwoFactor/Index.php:120 msgid "" "

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

    " msgstr "

    استخدام تطبيق هاتف للحصول على رموز الاستيثاق بعاملين عند الولوج.

    " -#: src/Module/Settings/TwoFactor/Index.php:117 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Authenticator app" msgstr "تطبيق الاستيثاق" -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Configured" msgstr "مضبوط" -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Not Configured" msgstr "غير مضبوط" -#: src/Module/Settings/TwoFactor/Index.php:119 +#: src/Module/Settings/TwoFactor/Index.php:126 msgid "

    You haven't finished configuring your authenticator app.

    " msgstr "

    لم تنته من ضبط تطبيق الاستيثاق

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

    Your authenticator app is correctly configured.

    " msgstr "

    ضُبط تطبيق الاستيثاق.

    " -#: src/Module/Settings/TwoFactor/Index.php:122 +#: src/Module/Settings/TwoFactor/Index.php:129 msgid "Recovery codes" msgstr "رموز الاستعادة" -#: src/Module/Settings/TwoFactor/Index.php:123 +#: src/Module/Settings/TwoFactor/Index.php:130 msgid "Remaining valid codes" msgstr "رموز الاستعادة المتبقية" -#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "" "

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

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:127 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:128 +#: src/Module/Settings/TwoFactor/Index.php:135 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:130 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "" "

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

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "Current password:" msgstr "كلمة المرور الحالية:" -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "أدخل كلمة المرور لتغيير إعدادات الاستيثاق بعاملين." -#: src/Module/Settings/TwoFactor/Index.php:134 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "Enable two-factor authentication" msgstr "فعّل الاستيثاق بعاملين" -#: src/Module/Settings/TwoFactor/Index.php:135 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Disable two-factor authentication" msgstr "عطّل الاستيثاق بعاملين" -#: src/Module/Settings/TwoFactor/Index.php:136 +#: src/Module/Settings/TwoFactor/Index.php:143 msgid "Show recovery codes" msgstr "أظهر رموز الاستعادة" -#: src/Module/Settings/TwoFactor/Index.php:137 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/Settings/TwoFactor/Index.php:145 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:139 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Finish app configuration" msgstr "أنه ضبط التطبيق" -#: src/Module/Settings/TwoFactor/Recovery.php:78 +#: src/Module/Settings/TwoFactor/Recovery.php:80 msgid "New recovery codes successfully generated." msgstr "نجح توليد رموز الاستعادة." -#: src/Module/Settings/TwoFactor/Recovery.php:104 +#: src/Module/Settings/TwoFactor/Recovery.php:106 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:106 +#: src/Module/Settings/TwoFactor/Recovery.php:108 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 " @@ -9887,64 +11057,68 @@ msgid "" "account.

    " msgstr "

    يمكن استخدام رموز الاستعادة للوصول إلى حسابك في حال فقدت الوصول إلى جهازك ولا يمكن أن تتلقى رموز الاستيثاق بعاملين.

    احتفظ بها في مكان آمن! إذا فقدت جهازك ولم يكن لديك رموز الاستعادة فستفقد الوصول إلى حسابك.

    " -#: src/Module/Settings/TwoFactor/Recovery.php:108 +#: src/Module/Settings/TwoFactor/Recovery.php:110 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:111 msgid "Generate new recovery codes" msgstr "ولّد رموز الاستعادة" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "Next: Verification" msgstr "التالي: التحقق" -#: src/Module/Settings/TwoFactor/Trusted.php:82 +#: src/Module/Settings/TwoFactor/Trusted.php:84 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:92 +#: src/Module/Settings/TwoFactor/Trusted.php:94 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:133 +#: src/Module/Settings/TwoFactor/Trusted.php:136 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:134 +#: src/Module/Settings/TwoFactor/Trusted.php:137 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 "" -#: src/Module/Settings/TwoFactor/Trusted.php:135 +#: src/Module/Settings/TwoFactor/Trusted.php:138 msgid "Device" msgstr "الجهاز" -#: src/Module/Settings/TwoFactor/Trusted.php:136 +#: src/Module/Settings/TwoFactor/Trusted.php:139 msgid "OS" msgstr "نظام التشغيل" -#: src/Module/Settings/TwoFactor/Trusted.php:138 +#: src/Module/Settings/TwoFactor/Trusted.php:141 msgid "Trusted" msgstr "موثوق" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:142 +msgid "Created At" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:143 msgid "Last Use" msgstr "آخر استخدام" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:145 msgid "Remove All" msgstr "أزل الكل" -#: src/Module/Settings/TwoFactor/Verify.php:90 +#: src/Module/Settings/TwoFactor/Verify.php:91 msgid "Two-factor authentication successfully activated." msgstr "فُعّل الاستيثاق بعاملين." -#: src/Module/Settings/TwoFactor/Verify.php:124 +#: src/Module/Settings/TwoFactor/Verify.php:125 #, php-format msgid "" "

    Or you can submit the authentication settings manually:

    \n" @@ -9964,68 +11138,105 @@ msgid "" "" msgstr "

    أو يمكنك إرسال إعدادات الاستيثاق يدوياً:

    \n
    \n\t
    المصدر
    \n\t
    %s
    \n\t
    اسم الحساب
    \n\t
    %s
    \n\t
    المفتاح السري
    \n\t
    %s
    \n\t
    النوع
    \n\t
    مبني الوقت
    \n\t
    عدد الأرقام
    \n\t
    6
    \n\t
    خوارزمية التجزئة
    \n\t
    SHA-1
    \n
    " -#: src/Module/Settings/TwoFactor/Verify.php:144 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Two-factor code verification" msgstr "رمز التحقق للاستيثاق بعاملَيْن" -#: src/Module/Settings/TwoFactor/Verify.php:146 +#: src/Module/Settings/TwoFactor/Verify.php:147 msgid "" "

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

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

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

    %s

    " msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:155 +#: src/Module/Settings/TwoFactor/Verify.php:156 msgid "Verify code and enable two-factor authentication" msgstr "تحقق من الرمز و فعّل الاستيثاق بعاملين" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 msgid "Export account" msgstr "صدّر الحساب" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 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 "صدّر معلومات حسابك ومتراسليك. استخدمه لإنشاء نسخة احتياطية من حسابك أو لنقله إلى خادم آخر." -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:91 msgid "Export all" msgstr "صدّر الكل" -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:91 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 "صدّر معلومات حسابك ومتراسليك وجميع العناصر الخاصة بك كملف json. قد يستغرق وقتًا طويلًا وينتج عنه ملف كبير. استخدمه لإنشاء نسخة احتياطية كاملة من حسابك (الصور غير مضمنة)" -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:92 msgid "Export Contacts to CSV" msgstr "صدّر المتراسلين الى ملف CSV" -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:92 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "صدّر قائمة الحسابات المتابَعة إلى ملف csv. هذا الملف متوافق مع ماستدون." -#: src/Module/Special/HTTPException.php:51 +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:37 +msgid "" +"This node has blocked the top-level author or the author of the shared post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:38 +msgid "" +"You have ignored or blocked the top-level author or the author of the shared" +" post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:39 +msgid "" +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "" + +#: src/Module/Special/HTTPException.php:78 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:55 +#: src/Module/Special/HTTPException.php:83 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:57 src/Module/Tos.php:91 +#: src/Module/Tos.php:58 src/Module/Tos.php:107 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" @@ -10038,28 +11249,111 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:92 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 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 "" -#: src/Module/Tos.php:59 src/Module/Tos.php:93 +#: src/Module/Tos.php:60 src/Module/Tos.php:109 #, 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." +"href=\"%1$s/settings/removeme\">%1$s/settings/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 "" -#: src/Module/Tos.php:62 src/Module/Tos.php:90 +#: src/Module/Tos.php:63 src/Module/Tos.php:106 msgid "Privacy Statement" msgstr "بيان الخصوصية" +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "" + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "العنصر غير موجود أو حُذف." + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "يمكن للمدراء فقط استيراد المستخدمين في الخوادم المغلقة." + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "أنقل الحساب" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "يمكنك استيراد حساب من خادم فرَندِكا آخر." + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "تحتاج إلى تصدير حسابك من الخادم القديم ورفعه هنا. سوف نقوم بإعادة إنشاء حسابك القديم هنا مع إضافة كل المتراسلين. سوف نحاول أيضًا إبلاغهم أنك انتقلت إلى هنا." + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "هذه الميزة تجريبية. لا يمكن استيراد متراسلين من شبكة OStatus (GNU Social/Statusnet) أو من شبكة دياسبورا" + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "ملف الحساب" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "لتصدير حسابك، انتقل إلى \"إعدادات-> تصدير بياناتك الشخصية\" واختر \"صدر الحساب\"" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "خطأ أثناء فك ترميز ملف الحساب" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "خطأ! لا توجد بيانات إصدار في الملف! هذا ليس ملف شخصي لفرنديكا؟" + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "المستخدم '%s' موجود سلفًا على هذا الخادم!" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "خطأ أثناء إنشاء المستخدم" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "لم يُستورد أي متراسل %d" +msgstr[1] "لم يستورد متراسل واحد %d" +msgstr[2] "لم يستورد متراسلان %d" +msgstr[3] "لم يستورد %d متراسلين" +msgstr[4] "لم يستورد %d متراسلًا" +msgstr[5] "لم يستورد %d متراسل" + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "خطأ أثناء إنشاء الملف الشخصي للمستخدم" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "تم. يمكنك الآن الولوج باستخدام اسم المستخدم وكلمة المرور" + #: src/Module/Welcome.php:44 msgid "Welcome to Friendica" msgstr "مرحبا بك في فرَندِكا" @@ -10190,15 +11484,15 @@ msgid "" msgstr "في الشريط الجانبي لصفحة المتراسلين يمكنك للعثور على عدة طرق للعثور على أصدقاء جدد. يمكننا مطابقة الأشخاص بناءً على اهتماماتهم، والبحث عن الأصدقاء بالاسم أو الاهتمام، وتقديم اقتراحات بناءً على هيكلية الشبكة. على موقع جديد تمامًا، يجب أن تبدأ اقتراحات الاشتراك في الظهور بعد 24 ساعة." #: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "نظّم متراسليك في مجموعات" +msgid "Add Your Contacts To Circle" +msgstr "" #: 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 "بمجرد حصولك على عدد من الأصدقاء ،نظمهم في مجموعات محادثة خاصة من الشريط الجانبي لصفحة المتراسلين. بهذا يمكنك التفاعل مع كل مجموعة على حدى من خلال صفحة الشبكة." +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "" #: src/Module/Welcome.php:80 msgid "Why Aren't My Posts Public?" @@ -10225,51 +11519,51 @@ msgid "" " features and resources." msgstr "يمكنك الاطلاع على صفحات المساعدة للحصول على تفاصيل حول ميزات البرامج الأخرى ومصادرها." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:134 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 msgid "{0} wants to follow you" msgstr "{0} يريد متابعتك" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:136 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:91 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 #, php-format msgid "%s liked %s's post" msgstr "أُعجب %s بمشاركة %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:103 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 #, php-format msgid "%s disliked %s's post" msgstr "لم يُعجب %s بمشاركة %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:115 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 #, php-format msgid "%s is attending %s's event" msgstr "يحضر %s حدث %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:127 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 #, php-format msgid "%s is not attending %s's event" msgstr "لن يحضر %s حدث %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:139 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 #, php-format msgid "%s may attending %s's event" msgstr "قد يحضر %s حدث %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:169 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 #, php-format msgid "%s is now friends with %s" msgstr "أصبح %s صديقا ل %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:336 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:374 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 #, php-format msgid "%s commented on %s's post" msgstr "علق %s على مشاركة %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:373 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 #, php-format msgid "%s created a new post" msgstr "أنشأ %s مشاركة جديدة" @@ -10294,322 +11588,307 @@ msgstr "%1$s يريد متابعتك" #: src/Navigation/Notifications/Factory/Notification.php:136 #, php-format msgid "%1$s has started following you" -msgstr "" +msgstr "بدأ %1$s متابعتك" -#: src/Navigation/Notifications/Factory/Notification.php:200 +#: src/Navigation/Notifications/Factory/Notification.php:208 #, php-format msgid "%1$s liked your comment on %2$s" -msgstr "" +msgstr "أٌعجب %1$s بتعليقك على %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:203 +#: src/Navigation/Notifications/Factory/Notification.php:211 #, php-format msgid "%1$s liked your post %2$s" msgstr "أعجب %1$s بمشاركتك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:210 +#: src/Navigation/Notifications/Factory/Notification.php:218 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:213 +#: src/Navigation/Notifications/Factory/Notification.php:221 #, php-format msgid "%1$s disliked your post %2$s" msgstr "لم يعجب %1$s مشاركتك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:220 +#: src/Navigation/Notifications/Factory/Notification.php:228 #, php-format msgid "%1$s shared your comment %2$s" msgstr "شارك %1$s تعليقك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 #, php-format msgid "%1$s shared your post %2$s" msgstr "شارك %1$s مشاركتك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:227 -#: src/Navigation/Notifications/Factory/Notification.php:297 +#: src/Navigation/Notifications/Factory/Notification.php:235 +#: src/Navigation/Notifications/Factory/Notification.php:305 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "شارك %1$s المشاركة %2$s من %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:229 -#: src/Navigation/Notifications/Factory/Notification.php:299 +#: src/Navigation/Notifications/Factory/Notification.php:237 +#: src/Navigation/Notifications/Factory/Notification.php:307 #, php-format msgid "%1$s shared a post from %3$s" msgstr "شارك %1$s مشاركة %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:301 +#: src/Navigation/Notifications/Factory/Notification.php:239 +#: src/Navigation/Notifications/Factory/Notification.php:309 #, php-format msgid "%1$s shared the post %2$s" msgstr "شارك %1$s المشاركة %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:233 -#: src/Navigation/Notifications/Factory/Notification.php:303 +#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:311 #, php-format msgid "%1$s shared a post" msgstr "شارك %1$s مشاركة" -#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s wants to attend your event %2$s" -msgstr "" +msgstr "يريد %1$s حضور حدَثك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:248 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:255 +#: src/Navigation/Notifications/Factory/Notification.php:263 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:262 +#: src/Navigation/Notifications/Factory/Notification.php:270 #, php-format msgid "%1$s tagged you on %2$s" msgstr "ذكرك %1$s في %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:266 +#: src/Navigation/Notifications/Factory/Notification.php:274 #, php-format msgid "%1$s replied to you on %2$s" msgstr "رد %1$s عليك في %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:278 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "علق %1$s على نقاشك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:282 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "علق %1$s على تعليقك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:281 +#: src/Navigation/Notifications/Factory/Notification.php:289 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "علق %1$s على نقاشه %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:283 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s commented in their thread" msgstr "علق %1$s على نقاشه" -#: src/Navigation/Notifications/Factory/Notification.php:285 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "علق %1$s على المحدثة %2$s من %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:287 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "علق %1$s على نقاش %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:292 +#: src/Navigation/Notifications/Factory/Notification.php:300 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "علق %1$s على نقاشك %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:221 -#: src/Navigation/Notifications/Repository/Notify.php:735 +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 msgid "[Friendica:Notify]" msgstr "[فرنديكا: تنبيه]" -#: src/Navigation/Notifications/Repository/Notify.php:285 +#: src/Navigation/Notifications/Repository/Notify.php:293 #, php-format msgid "%s New mail received at %s" msgstr "أُستلم %s بريد جديد على %s" -#: src/Navigation/Notifications/Repository/Notify.php:287 +#: src/Navigation/Notifications/Repository/Notify.php:295 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "أرسل %1$s لك رسالة خاصة على %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:288 +#: src/Navigation/Notifications/Repository/Notify.php:296 msgid "a private message" msgstr "رسالة خاصة" -#: src/Navigation/Notifications/Repository/Notify.php:288 +#: src/Navigation/Notifications/Repository/Notify.php:296 #, php-format msgid "%1$s sent you %2$s." msgstr "أرسل %1$s لك %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:290 +#: src/Navigation/Notifications/Repository/Notify.php:298 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "من فضلك زر %s لعرض و/أو الرد على الرسائل الخاصة." -#: src/Navigation/Notifications/Repository/Notify.php:320 +#: src/Navigation/Notifications/Repository/Notify.php:328 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "علق %1$s على %3$s %2$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:325 +#: src/Navigation/Notifications/Repository/Notify.php:333 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "علق %1$s على %2$s تخصك %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:329 +#: src/Navigation/Notifications/Repository/Notify.php:337 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "علق %1$s على %2$s له %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 -#: src/Navigation/Notifications/Repository/Notify.php:769 +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "علق %1$s على محادثة %3$s #%2$d" -#: src/Navigation/Notifications/Repository/Notify.php:335 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "علق %s على محادثة/عنصر تتابعه." -#: src/Navigation/Notifications/Repository/Notify.php:339 -#: src/Navigation/Notifications/Repository/Notify.php:354 -#: src/Navigation/Notifications/Repository/Notify.php:373 -#: src/Navigation/Notifications/Repository/Notify.php:784 +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "من فضلك زر %s لعرض و/أو الرد على المحادثة." -#: src/Navigation/Notifications/Repository/Notify.php:346 +#: src/Navigation/Notifications/Repository/Notify.php:354 #, php-format msgid "%s %s posted to your profile wall" msgstr "نشر %s%s على حائط ملفك الشخصي" -#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "نشر %1$s على حائط ملفك الشخصي على %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:349 +#: src/Navigation/Notifications/Repository/Notify.php:357 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "نشر %1$s على [url=%2$s]حائطك[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:361 -#, php-format -msgid "%1$s %2$s poked you" -msgstr "لكزك %1$s %2$s" - -#: src/Navigation/Notifications/Repository/Notify.php:363 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "لكزك %1$s على %2$s" - -#: src/Navigation/Notifications/Repository/Notify.php:364 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "[url=%2$s]لكزك[/url] %1$s." - -#: src/Navigation/Notifications/Repository/Notify.php:381 +#: src/Navigation/Notifications/Repository/Notify.php:370 #, php-format msgid "%s Introduction received" msgstr "تلقيت تقديما من %s" -#: src/Navigation/Notifications/Repository/Notify.php:383 +#: src/Navigation/Notifications/Repository/Notify.php:372 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "تلقيت تقديما من '%1$s' على %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:384 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "تلقيت [url=%1$s]تقديما[/url] من %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:435 +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 #, php-format msgid "You may visit their profile at %s" msgstr "يمكنك زيارة ملفهم الشخصي على %s" -#: src/Navigation/Notifications/Repository/Notify.php:391 +#: src/Navigation/Notifications/Repository/Notify.php:380 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "من فضلك زر %s لقبول أو رفض التقديم." -#: src/Navigation/Notifications/Repository/Notify.php:398 +#: src/Navigation/Notifications/Repository/Notify.php:387 #, php-format msgid "%s A new person is sharing with you" msgstr "%s شخص جديد يشارك معك" -#: src/Navigation/Notifications/Repository/Notify.php:400 -#: src/Navigation/Notifications/Repository/Notify.php:401 +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "يشارك %1$s معك على %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:408 +#: src/Navigation/Notifications/Repository/Notify.php:397 #, php-format msgid "%s You have a new follower" msgstr "لديك متابِع جديد %s" -#: src/Navigation/Notifications/Repository/Notify.php:410 -#: src/Navigation/Notifications/Repository/Notify.php:411 +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "لديك متابِع جديد على %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:413 #, php-format msgid "%s Friend suggestion received" msgstr "تلقيت إقتراح صديق %s" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:415 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "تلقيت اقتراح صديق من '%1$s' على %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:427 +#: src/Navigation/Notifications/Repository/Notify.php:416 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "اقترح عليك %3$s [url=%1$s] مصادقة %2$s[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:433 +#: src/Navigation/Notifications/Repository/Notify.php:422 msgid "Name:" msgstr "الاسم:" -#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:423 msgid "Photo:" msgstr "الصورة:" -#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:426 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "من فضلك زر %s لقبول أو رفض الاقتراح." -#: src/Navigation/Notifications/Repository/Notify.php:445 -#: src/Navigation/Notifications/Repository/Notify.php:460 +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 #, php-format msgid "%s Connection accepted" msgstr "قُبِل الاقتران %s" -#: src/Navigation/Notifications/Repository/Notify.php:447 -#: src/Navigation/Notifications/Repository/Notify.php:462 +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "قبِل '%1$s' طلب الاقتران على %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:448 -#: src/Navigation/Notifications/Repository/Notify.php:463 +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "قبِل %2$s [url=%1$s]طلب الاقتران[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:453 +#: src/Navigation/Notifications/Repository/Notify.php:442 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "أصبحتما صديقين من كلا الطرفين ويمكنكما تبادل تحديثات الحالة، والصور، والبريد دون قيود." -#: src/Navigation/Notifications/Repository/Notify.php:455 +#: src/Navigation/Notifications/Repository/Notify.php:444 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "من فضلك زر %s إن أردت تغيير هذه العلاقة." -#: src/Navigation/Notifications/Repository/Notify.php:468 +#: src/Navigation/Notifications/Repository/Notify.php:457 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -10618,33 +11897,34 @@ msgid "" "automatically." msgstr "قبِلك '%1$s' كمعجب، هذا يحدُّ من أشكال التواصل بينكما مثل الرسائل الخاصة وبعض التفاعلات. يتم هذا تلقائيا اذا كانت صفحة مشهور أو مجتمع." -#: src/Navigation/Notifications/Repository/Notify.php:470 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "قد يختار '%1$s' توسيعها إلى علاقة ذات اتجاهين أو أكثر في المستقبل." -#: src/Navigation/Notifications/Repository/Notify.php:472 +#: src/Navigation/Notifications/Repository/Notify.php:461 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "من فضلك زر %s إن أردت تغيير هذه العلاقة." -#: src/Navigation/Notifications/Repository/Notify.php:482 +#: src/Navigation/Notifications/Repository/Notify.php:471 msgid "registration request" msgstr "طلب تسجيل" -#: src/Navigation/Notifications/Repository/Notify.php:484 +#: src/Navigation/Notifications/Repository/Notify.php:473 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "تلقيت طلب تسجيل من '%1$s' على %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:474 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "تلقيت [url=%1$s]طلب تسجيل[/url] من %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:490 +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 #, php-format msgid "" "Full Name:\t%s\n" @@ -10652,21 +11932,50 @@ msgid "" "Login Name:\t%s (%s)" msgstr "الاسم الكامل:\t%s\nالموقع:\t%s\nاسم الولوج:\t%s (%s)" -#: src/Navigation/Notifications/Repository/Notify.php:496 +#: src/Navigation/Notifications/Repository/Notify.php:485 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "من فضلك زر %s لقبول أو رفض الطلب." -#: src/Navigation/Notifications/Repository/Notify.php:763 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:780 #, php-format msgid "%s %s tagged you" msgstr "ذكرك %s%s" -#: src/Navigation/Notifications/Repository/Notify.php:766 +#: src/Navigation/Notifications/Repository/Notify.php:783 #, php-format msgid "%s %s shared a new post" msgstr "شارك %s%s مشاركة جديدة" +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "" + #: src/Object/EMail/ItemCCEMail.php:42 #, php-format msgid "" @@ -10690,194 +11999,208 @@ msgstr "رجاء اتصل بالمرسل بالرد على هذا المشارك msgid "%s posted an update." msgstr "نشر %s تحديثاً." -#: src/Object/Post.php:134 +#: src/Object/Post.php:138 msgid "Private Message" msgstr "رسالة خاصة" -#: src/Object/Post.php:137 +#: src/Object/Post.php:142 msgid "Public Message" -msgstr "" +msgstr "رسالة علنية" -#: src/Object/Post.php:140 +#: src/Object/Post.php:146 msgid "Unlisted Message" -msgstr "" +msgstr "رسالة غير مدرجة" -#: src/Object/Post.php:170 +#: src/Object/Post.php:181 msgid "This entry was edited" msgstr "عدّل المدخل" -#: src/Object/Post.php:198 +#: src/Object/Post.php:209 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:213 src/Object/Post.php:215 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "تعديل" -#: src/Object/Post.php:239 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "احذفه عالميًا" -#: src/Object/Post.php:239 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "أزله محليًا" -#: src/Object/Post.php:255 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "احجب %s" -#: src/Object/Post.php:260 +#: src/Object/Post.php:273 +#, php-format +msgid "Ignore %s" +msgstr "" + +#: src/Object/Post.php:278 +#, php-format +msgid "Collapse %s" +msgstr "" + +#: src/Object/Post.php:282 +msgid "Report post" +msgstr "" + +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "احفظ في مجلد" -#: src/Object/Post.php:294 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "سأحضره" -#: src/Object/Post.php:294 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "لن أحضره" -#: src/Object/Post.php:294 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "قد أحضره" -#: src/Object/Post.php:324 +#: src/Object/Post.php:363 msgid "Ignore thread" msgstr "تجاهل النقاش" -#: src/Object/Post.php:325 +#: src/Object/Post.php:364 msgid "Unignore thread" msgstr "ألغ تجاهل النقاش" -#: src/Object/Post.php:326 +#: src/Object/Post.php:365 msgid "Toggle ignore status" msgstr "بدّل حالة التجاهل" -#: src/Object/Post.php:336 +#: src/Object/Post.php:375 msgid "Add star" msgstr "أضف للمفضلة" -#: src/Object/Post.php:337 +#: src/Object/Post.php:376 msgid "Remove star" msgstr "أزل من المفضلة" -#: src/Object/Post.php:338 +#: src/Object/Post.php:377 msgid "Toggle star status" msgstr "بدِّل حالة التفضيل" -#: src/Object/Post.php:349 +#: src/Object/Post.php:388 msgid "Pin" msgstr "ثبّت" -#: src/Object/Post.php:350 +#: src/Object/Post.php:389 msgid "Unpin" msgstr "ألغ التثبيت" -#: src/Object/Post.php:351 +#: src/Object/Post.php:390 msgid "Toggle pin status" msgstr "بدِّل حالة التثبيت" -#: src/Object/Post.php:354 +#: src/Object/Post.php:393 msgid "Pinned" msgstr "مُثَبَت" -#: src/Object/Post.php:359 +#: src/Object/Post.php:398 msgid "Add tag" msgstr "أضف وسما" -#: src/Object/Post.php:372 +#: src/Object/Post.php:411 msgid "Quote share this" msgstr "اقتبس وشارك" -#: src/Object/Post.php:372 +#: src/Object/Post.php:411 msgid "Quote Share" msgstr "اقتبس وشارك" -#: src/Object/Post.php:375 +#: src/Object/Post.php:414 msgid "Reshare this" msgstr "أعاد نشر هذا" -#: src/Object/Post.php:375 +#: src/Object/Post.php:414 msgid "Reshare" msgstr "أعد نشره" -#: src/Object/Post.php:376 +#: src/Object/Post.php:415 msgid "Cancel your Reshare" msgstr "ألغ إعادة النشر" -#: src/Object/Post.php:376 +#: src/Object/Post.php:415 msgid "Unshare" msgstr "ألغ المشاركة" -#: src/Object/Post.php:423 +#: src/Object/Post.php:466 #, php-format msgid "%s (Received %s)" msgstr "%s (استلم %s)" -#: src/Object/Post.php:428 +#: src/Object/Post.php:472 msgid "Comment this item on your system" msgstr "علّق على هذا العنصر على خادمك" -#: src/Object/Post.php:428 +#: src/Object/Post.php:472 msgid "Remote comment" msgstr "تعليق بعيد" -#: src/Object/Post.php:449 +#: src/Object/Post.php:494 msgid "Share via ..." -msgstr "" +msgstr "شارك عبر" -#: src/Object/Post.php:449 +#: src/Object/Post.php:494 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:478 +#: src/Object/Post.php:523 msgid "to" msgstr "إلى" -#: src/Object/Post.php:479 +#: src/Object/Post.php:524 msgid "via" msgstr "عبر" -#: src/Object/Post.php:480 +#: src/Object/Post.php:525 msgid "Wall-to-Wall" msgstr "حائط لحائط" -#: src/Object/Post.php:481 +#: src/Object/Post.php:526 msgid "via Wall-To-Wall:" msgstr "عير حائط لحائط" -#: src/Object/Post.php:523 +#: src/Object/Post.php:573 #, php-format msgid "Reply to %s" msgstr "رد على %s" -#: src/Object/Post.php:526 +#: src/Object/Post.php:576 msgid "More" msgstr "المزيد" -#: src/Object/Post.php:544 +#: src/Object/Post.php:595 msgid "Notifier task is pending" msgstr "مهمة التنبيه معلقة" -#: src/Object/Post.php:545 +#: src/Object/Post.php:596 msgid "Delivery to remote servers is pending" msgstr "التسليم للخوادم البعيدة معلق" -#: src/Object/Post.php:546 +#: src/Object/Post.php:597 msgid "Delivery to remote servers is underway" msgstr "التسليم إلى الخوادم البعيدة جار" -#: src/Object/Post.php:547 +#: src/Object/Post.php:598 msgid "Delivery to remote servers is mostly done" msgstr "التسليم إلى الخوادم البعيدة يكاد يكتمل" -#: src/Object/Post.php:548 +#: src/Object/Post.php:599 msgid "Delivery to remote servers is done" msgstr "التسليم للخوادم البعيدة اكتمل" -#: src/Object/Post.php:568 +#: src/Object/Post.php:619 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -10888,54 +12211,99 @@ msgstr[3] "%d تعليقات" msgstr[4] "%d تعليقا" msgstr[5] "%d تعليق" -#: src/Object/Post.php:569 +#: src/Object/Post.php:620 msgid "Show more" msgstr "اعرض المزيد" -#: src/Object/Post.php:570 +#: src/Object/Post.php:621 msgid "Show fewer" msgstr "اعرض أقل" -#: src/Protocol/OStatus.php:1648 +#: src/Object/Post.php:657 +#, php-format +msgid "Reshared by: %s" +msgstr "" + +#: src/Object/Post.php:662 +#, php-format +msgid "Viewed by: %s" +msgstr "" + +#: src/Object/Post.php:667 +#, php-format +msgid "Liked by: %s" +msgstr "" + +#: src/Object/Post.php:672 +#, php-format +msgid "Disliked by: %s" +msgstr "" + +#: src/Object/Post.php:677 +#, php-format +msgid "Attended by: %s" +msgstr "" + +#: src/Object/Post.php:682 +#, php-format +msgid "Maybe attended by: %s" +msgstr "" + +#: src/Object/Post.php:687 +#, php-format +msgid "Not attended by: %s" +msgstr "" + +#: src/Object/Post.php:692 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "(بدون موضوع)" + +#: src/Protocol/OStatus.php:1390 #, php-format msgid "%s is now following %s." msgstr "%s يتابع %s." -#: src/Protocol/OStatus.php:1649 +#: src/Protocol/OStatus.php:1391 msgid "following" msgstr "يتابع" -#: src/Protocol/OStatus.php:1652 +#: src/Protocol/OStatus.php:1394 #, php-format msgid "%s stopped following %s." msgstr "%s توقف عن متابعة %s." -#: src/Protocol/OStatus.php:1653 +#: src/Protocol/OStatus.php:1395 msgid "stopped following" msgstr "توقف عن متابعة" -#: src/Render/FriendicaSmartyEngine.php:52 -msgid "The folder view/smarty3/ must be writable by webserver." -msgstr "يجب ان يكون المسار view/smarty3 قابل للتعديل من قبل الخادم." +#: src/Render/FriendicaSmartyEngine.php:56 +#, php-format +msgid "The folder %s must be writable by webserver." +msgstr "" -#: src/Security/Authentication.php:221 +#: src/Security/Authentication.php:227 msgid "Login failed." msgstr "فشل الولوج." -#: src/Security/Authentication.php:262 +#: src/Security/Authentication.php:272 msgid "Login failed. Please check your credentials." msgstr "فشل الولوج. من فضلك تحقق من بيانات الاعتماد." -#: src/Security/Authentication.php:360 +#: src/Security/Authentication.php:391 #, php-format msgid "Welcome %s" msgstr "مرحباً %s" -#: src/Security/Authentication.php:361 +#: src/Security/Authentication.php:392 msgid "Please upload a profile photo." msgstr "من فضلك ارفع صورة لملفك الشخصي." -#: src/Util/EMailer/MailBuilder.php:259 +#: src/Util/EMailer/MailBuilder.php:260 msgid "Friendica Notification" msgstr "تنبيهات فرنديكا" @@ -10958,264 +12326,271 @@ msgstr "مدير %s" msgid "thanks" msgstr "الشكر" -#: src/Util/Temporal.php:167 +#: src/Util/Temporal.php:172 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD أو MM-DD" -#: src/Util/Temporal.php:275 +#: src/Util/Temporal.php:280 #, php-format msgid "Time zone: %s Change in Settings" msgstr "المنطقة الزمنية: %sغيرها من الإعدادات" -#: src/Util/Temporal.php:318 +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 msgid "never" msgstr "أبدًا" -#: src/Util/Temporal.php:325 +#: src/Util/Temporal.php:343 msgid "less than a second ago" msgstr "منذ أقل من ثانية" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:352 msgid "year" msgstr "سنة" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:352 msgid "years" msgstr "سنوات" -#: src/Util/Temporal.php:334 +#: src/Util/Temporal.php:353 msgid "months" msgstr "أشهر" -#: src/Util/Temporal.php:335 +#: src/Util/Temporal.php:354 msgid "weeks" msgstr "أسابيع" -#: src/Util/Temporal.php:336 +#: src/Util/Temporal.php:355 msgid "days" msgstr "أيام" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:356 msgid "hour" msgstr "ساعة" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:356 msgid "hours" msgstr "ساعات" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:357 msgid "minute" msgstr "دقيقة" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:357 msgid "minutes" msgstr "دقائق" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:358 msgid "second" msgstr "ثانية" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:358 msgid "seconds" msgstr "ثوان" -#: src/Util/Temporal.php:349 +#: src/Util/Temporal.php:367 #, php-format msgid "in %1$d %2$s" msgstr "في %1$d %2$s" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:370 #, php-format msgid "%1$d %2$s ago" msgstr "منذ %1$d %2$s" -#: src/Worker/Delivery.php:524 -msgid "(no subject)" -msgstr "(بدون موضوع)" - -#: src/Worker/PushSubscription.php:103 +#: src/Worker/PushSubscription.php:110 msgid "Notification from Friendica" msgstr "تنبيهات من فرنديكا" -#: src/Worker/PushSubscription.php:104 +#: src/Worker/PushSubscription.php:111 msgid "Empty Post" msgstr "مشاركة فارغة" -#: view/theme/duepuntozero/config.php:52 +#: view/theme/duepuntozero/config.php:68 msgid "default" msgstr "افتراضي" -#: view/theme/duepuntozero/config.php:53 +#: view/theme/duepuntozero/config.php:69 msgid "greenzero" msgstr "greenzero" -#: view/theme/duepuntozero/config.php:54 +#: view/theme/duepuntozero/config.php:70 msgid "purplezero" msgstr "purplezero" -#: view/theme/duepuntozero/config.php:55 +#: view/theme/duepuntozero/config.php:71 msgid "easterbunny" msgstr "easterbunny" -#: view/theme/duepuntozero/config.php:56 +#: view/theme/duepuntozero/config.php:72 msgid "darkzero" msgstr "darkzero" -#: view/theme/duepuntozero/config.php:57 +#: view/theme/duepuntozero/config.php:73 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:58 +#: view/theme/duepuntozero/config.php:74 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:87 msgid "Variations" msgstr "تغيرات" -#: view/theme/frio/config.php:142 +#: view/theme/frio/config.php:153 msgid "Light (Accented)" msgstr "فاتح (ذو طابع لوني)" -#: view/theme/frio/config.php:143 +#: view/theme/frio/config.php:154 msgid "Dark (Accented)" msgstr "داكن (ذو طابع لوني)" -#: view/theme/frio/config.php:144 +#: view/theme/frio/config.php:155 msgid "Black (Accented)" msgstr "أسود (ذو طابع لوني)" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Note" msgstr "ملاحظة" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Check image permissions if all users are allowed to see the image" -msgstr "تحقق من أذونات الصورة إذا كان مسموح للجميع مشاهدتها" +msgstr "تحقق أن أذونات الصورة تسمح للجميع مشاهدتها" -#: view/theme/frio/config.php:162 +#: view/theme/frio/config.php:173 msgid "Custom" msgstr "مخصص" -#: view/theme/frio/config.php:163 +#: view/theme/frio/config.php:174 msgid "Legacy" msgstr "أثري" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:175 msgid "Accented" msgstr "ذو طابع لوني" -#: view/theme/frio/config.php:165 +#: view/theme/frio/config.php:176 msgid "Select color scheme" msgstr "اختر مخططات اللون" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Select scheme accent" msgstr "اختر مخططات الطابع اللوني" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Blue" msgstr "أزرق" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Red" msgstr "أحمر" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Purple" msgstr "بنفسجي" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Green" msgstr "أخضر" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Pink" msgstr "وردي" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "Copy or paste schemestring" msgstr "انسخ أو ألصق سلسلة المخططات" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "يمكنك نسخ سلسلة المخططات لمشاركة سمتك مع الآخرين. بلصقها ستطبق سلسلة المخططات" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:179 msgid "Navigation bar background color" msgstr "لون خلفية شريط التصفح" -#: view/theme/frio/config.php:169 +#: view/theme/frio/config.php:180 msgid "Navigation bar icon color " msgstr "لون أيقونة شريط التصفح " -#: view/theme/frio/config.php:170 +#: view/theme/frio/config.php:181 msgid "Link color" msgstr "لون الروابط" -#: view/theme/frio/config.php:171 +#: view/theme/frio/config.php:182 msgid "Set the background color" msgstr "لون الخلفية" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:183 msgid "Content background opacity" msgstr "شفافية خلفية المحتوى" -#: view/theme/frio/config.php:173 +#: view/theme/frio/config.php:184 msgid "Set the background image" msgstr "صورة للخلفية" -#: view/theme/frio/config.php:174 +#: view/theme/frio/config.php:185 msgid "Background image style" msgstr "نمط صورة الخلفية" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "" + +#: view/theme/frio/config.php:192 msgid "Login page background image" msgstr "صورة لخلفية صفحة الولوج" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Login page background color" msgstr "لون خلفية صفحة الولوج" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Leave background image and color empty for theme defaults" msgstr "اترك صورة الخلفية ولونها فارغين لتطبيق الإعدادات الافتراضية للسمة" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:39 msgid "Top Banner" msgstr "اللافتة العلوية" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:39 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "غير حجم الصورة لتناسب عُرض الشاشة وأملأ الفراغ الناتج عن الصفحات الطويلة بلون الخلفية." -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:40 msgid "Full screen" msgstr "املأ الشاشة" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:40 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "غير حجم الصورة لملأ الشاشة. قص الحافة اليمنى أو السفلية." -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:41 msgid "Single row mosaic" msgstr "فسيفساء صف واحد" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:41 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "غيّر حجم صورة لتكرارها في صف واحد، عموديا أو أفقيا." -#: view/theme/frio/php/Image.php:43 +#: view/theme/frio/php/Image.php:42 msgid "Mosaic" msgstr "فسيفساء" -#: view/theme/frio/php/Image.php:43 +#: view/theme/frio/php/Image.php:42 msgid "Repeat image to fill the screen." msgstr "كرر صورة لملأ الشاشة." @@ -11227,78 +12602,78 @@ msgstr "تخطى للمحتوى الرئيسي" msgid "Back to top" msgstr "عُد لأعلى" -#: view/theme/frio/theme.php:207 +#: view/theme/frio/theme.php:211 msgid "Guest" msgstr "ضيف" -#: view/theme/frio/theme.php:210 +#: view/theme/frio/theme.php:214 msgid "Visitor" msgstr "زائر" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Alignment" msgstr "محاذاة" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Left" msgstr "يسار" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Center" msgstr "وسط" -#: view/theme/quattro/config.php:74 +#: view/theme/quattro/config.php:90 msgid "Color scheme" msgstr "مخططات اللَّون" -#: view/theme/quattro/config.php:75 +#: view/theme/quattro/config.php:91 msgid "Posts font size" msgstr "حجم خط المشاركة" -#: view/theme/quattro/config.php:76 +#: view/theme/quattro/config.php:92 msgid "Textareas font size" msgstr "حجم خط مساحة النص" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" -msgstr "قائمة مقسمة بفاصلة لمنتديات الدعم" +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" +msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "don't show" msgstr "لا تعرض" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "show" msgstr "اعرض" -#: view/theme/vier/config.php:121 +#: view/theme/vier/config.php:137 msgid "Set style" msgstr "عيّن أسلوبًا" -#: view/theme/vier/config.php:122 +#: view/theme/vier/config.php:138 msgid "Community Pages" msgstr "صفحات المجتمع" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:125 +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 msgid "Community Profiles" msgstr "الملفات الشخصية المجتمعية" -#: view/theme/vier/config.php:124 +#: view/theme/vier/config.php:140 msgid "Help or @NewHere ?" msgstr "تحتاج لمساعدة أو أنت جديد هنا NewHete@؟" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:296 +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 msgid "Connect Services" msgstr "اتصل بخدمات" -#: view/theme/vier/config.php:126 +#: view/theme/vier/config.php:142 msgid "Find Friends" msgstr "اعثر على أصدقاء" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:152 +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 msgid "Last users" msgstr "آخر المستخدمين" -#: view/theme/vier/theme.php:211 +#: view/theme/vier/theme.php:234 msgid "Quick Start" msgstr "ابدأ بسرعة" diff --git a/view/lang/ar/strings.php b/view/lang/ar/strings.php index cb11bb253..09751ab09 100644 --- a/view/lang/ar/strings.php +++ b/view/lang/ar/strings.php @@ -5,104 +5,13 @@ function string_plural_select_ar($n){ $n = intval($n); if ($n==0) { return 0; } else if ($n==1) { return 1; } else if ($n==2) { return 2; } else if ($n%100>=3 && $n%100<=10) { return 3; } else if ($n%100>=11 && $n%100<=99) { return 4; } else { return 5; } }} -$a->strings['Access denied.'] = 'رُفض الوصول.'; -$a->strings['User not found.'] = 'لم يُعثر على المستخدم.'; -$a->strings['Access to this profile has been restricted.'] = 'قُيِّد الوصول لهذا الملف الشخصي.'; -$a->strings['Events'] = 'الأحداث'; -$a->strings['View'] = 'اعرض'; -$a->strings['Previous'] = 'السابق'; -$a->strings['Next'] = 'التالي'; -$a->strings['today'] = 'اليوم'; -$a->strings['month'] = 'شهر'; -$a->strings['week'] = 'أسبوع'; -$a->strings['day'] = 'يوم'; -$a->strings['list'] = 'قائمة'; -$a->strings['User not found'] = 'لم يُعثر على المستخدم'; -$a->strings['This calendar format is not supported'] = 'تنسيق هذا التقويم غير مدعوم'; -$a->strings['No exportable data found'] = 'لم يُعثر على بيانات قابلة للتصدير'; -$a->strings['calendar'] = 'تقويم'; -$a->strings['Public access denied.'] = 'رُفض الوصول العلني.'; -$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'العنصر غير موجود أو حُذف.'; -$a->strings['The feed for this item is unavailable.'] = 'تغذية هذا العنصر غير متوفرة.'; -$a->strings['Permission denied.'] = 'رُفض الإذن.'; -$a->strings['Item not found'] = 'لم يُعثر على العنصر'; -$a->strings['Edit post'] = 'عدّل المشاركة'; -$a->strings['Save'] = 'احفظ'; -$a->strings['Loading...'] = 'يحمل...'; -$a->strings['Upload photo'] = 'ارفع صورة'; -$a->strings['upload photo'] = 'ارفع صورة'; -$a->strings['Attach file'] = 'أرفق ملفًا'; -$a->strings['attach file'] = 'أرفق ملفًا'; -$a->strings['Insert web link'] = 'أدرج رابط ويب'; -$a->strings['web link'] = 'رابط ويب'; -$a->strings['Insert video link'] = 'أدرج رابط فيديو'; -$a->strings['video link'] = 'رابط فيديو'; -$a->strings['Insert audio link'] = 'إدراج رابط ملف صوتي'; -$a->strings['audio link'] = 'رابط ملف صوتي'; -$a->strings['Set your location'] = 'عيّن موقعك'; -$a->strings['set location'] = 'عين الموقع'; -$a->strings['Clear browser location'] = 'امسح موقع المتصفح'; -$a->strings['clear location'] = 'امسح الموقع'; -$a->strings['Please wait'] = 'يرجى الانتظار'; -$a->strings['Permission settings'] = 'إعدادات الأذونات'; -$a->strings['CC: email addresses'] = 'أرسله إلى عناوين البريد الإلكتروني'; -$a->strings['Public post'] = 'مشاركة علنية'; -$a->strings['Set title'] = 'عين العنوان'; -$a->strings['Categories (comma-separated list)'] = 'الفئات (قائمة مفصولة بفاصلة)'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'مثل: bob@example.com, mary@example.com'; -$a->strings['Preview'] = 'معاينة'; -$a->strings['Cancel'] = 'ألغ'; -$a->strings['Bold'] = 'عريض'; -$a->strings['Italic'] = 'مائل'; -$a->strings['Underline'] = 'تحته خط'; -$a->strings['Quote'] = 'اقتبس'; -$a->strings['Code'] = 'شفرة'; -$a->strings['Link'] = 'رابط'; -$a->strings['Link or Media'] = 'رابط أو وسائط'; -$a->strings['Message'] = 'الرسالة'; -$a->strings['Browser'] = 'المتصفح'; -$a->strings['Permissions'] = 'الأُذونات'; -$a->strings['Open Compose page'] = 'افتح صفحة الإنشاء'; -$a->strings['Event can not end before it has started.'] = 'لا يمكن أن ينتهي الحدث قبل أن يبدأ.'; -$a->strings['Event title and start time are required.'] = 'عنوان الحدث و وقت بدئه إلزاميان.'; -$a->strings['Create New Event'] = 'أنشئ حدثاً جديدًا'; -$a->strings['Event details'] = 'تفاصيل الحدث'; -$a->strings['Starting date and Title are required.'] = 'تاريخ البدء والعنوان إلزاميان.'; -$a->strings['Event Starts:'] = 'يبدأ الحدث في:'; -$a->strings['Required'] = 'إلزامي'; -$a->strings['Finish date/time is not known or not relevant'] = 'وقت\تاريخ الانتهاء مجهول أو ليس له صلة'; -$a->strings['Event Finishes:'] = 'ينتهي الحدث في:'; -$a->strings['Description:'] = 'الوصف:'; -$a->strings['Location:'] = 'الموقع:'; -$a->strings['Title:'] = 'العنوان:'; -$a->strings['Share this event'] = 'شارك هذا الحدث'; -$a->strings['Submit'] = 'أرسل'; -$a->strings['Basic'] = 'أساسي'; -$a->strings['Advanced'] = 'متقدم'; -$a->strings['Failed to remove event'] = 'فشلت إزالة الحدث'; -$a->strings['Photos'] = 'الصور'; -$a->strings['Upload'] = 'ارفع'; -$a->strings['Files'] = 'الملفات'; -$a->strings['Submit Request'] = 'أرسل الطلب'; -$a->strings['You already added this contact.'] = 'أضفت هذا المتراسل سلفًا.'; -$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.'] = 'دعم دياسبورا غير مفعل. لا يمكن إضافة المتراسل.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'دعم OStatus غير مفعل. لا يمكن إضافة المتراسل.'; -$a->strings['Connect/Follow'] = 'اقترن\تابع'; -$a->strings['Please answer the following:'] = 'من فضلك أجب على ما يلي:'; -$a->strings['Your Identity Address:'] = 'عنوان معرّفك:'; -$a->strings['Profile URL'] = 'رابط الملف الشخصي'; -$a->strings['Tags:'] = 'الوسوم:'; -$a->strings['%s knows you'] = '%s يعرفك'; -$a->strings['Add a personal note:'] = 'أضف ملاحظة شخصية:'; -$a->strings['Status Messages and Posts'] = 'مشاركات ورسائل الحالة'; -$a->strings['The contact could not be added.'] = 'تعذر إضافة المتراسل.'; $a->strings['Unable to locate original post.'] = 'تعذر إيجاد المشاركة الأصلية.'; -$a->strings['Empty post discarded.'] = 'رُفضت المشاركة الفارغة.'; $a->strings['Post updated.'] = 'حُدثت المشاركة.'; $a->strings['Item wasn\'t stored.'] = 'لم يخزن العنصر.'; $a->strings['Item couldn\'t be fetched.'] = 'تعذر جلب العنصر.'; +$a->strings['Empty post discarded.'] = 'رُفضت المشاركة الفارغة.'; $a->strings['Item not found.'] = 'لم يُعثر على العنصر.'; +$a->strings['Permission denied.'] = 'رُفض الإذن.'; $a->strings['No valid account found.'] = 'لم يُعثر على حساب صالح.'; $a->strings['Password reset request issued. Check your email.'] = 'تم تقديم طلب إعادة تعيين كلمه المرور. تحقق من بريدك الإلكتروني.'; $a->strings[' @@ -151,9 +60,9 @@ $a->strings[' اسم الولوج: %3$s'; $a->strings['Password reset requested at %s'] = 'طُلب إعادة تعيين كلمة المرور على %s'; $a->strings['Request could not be verified. (You may have previously submitted it.) Password reset failed.'] = 'تعذر التحقق من الطلب (ربما تكون قد أرسلته مسبقاً). فشلت إعادة تعيين كلمة المرور.'; -$a->strings['Request has expired, please make a new one.'] = 'انتهت صلاحيته، أرسل طلب واحد جديد.'; +$a->strings['Request has expired, please make a new one.'] = 'انتهت صلاحيته، أرسل طلب جديد.'; $a->strings['Forgot your Password?'] = 'نسيت كلمة المرور؟'; -$a->strings['Enter your email address and submit to have your password reset. Then check your email for further instructions.'] = 'أدخل عنوان بريدك الإلكتروني وأرسله من أجل إعادة تعيين كلمة المرور. بعد ذلك تحقق من بريدك الإلكتروني لمزيد من التعليمات.'; +$a->strings['Enter your email address and submit to have your password reset. Then check your email for further instructions.'] = 'أدخل عنوان بريدك الإلكتروني لإعادة تعيين كلمة المرور. بعد ذلك راجع من بريدك الإلكتروني لمزيد من التعليمات.'; $a->strings['Nickname or Email: '] = 'اللقب أو البريد الإلكتروني: '; $a->strings['Reset'] = 'أعد التعيين'; $a->strings['Password Reset'] = 'إعادة تعيين كلمة المرور'; @@ -191,9 +100,6 @@ $a->strings[' يمكنك تغيير كلمة المرور من صفحة إعدادات الحساب. '; $a->strings['Your password has been changed at %s'] = 'غُيرت كلمة المرور على %s'; -$a->strings['No keywords to match. Please add keywords to your profile.'] = 'لا توجد كلمات مفتاحية لمطابقتها. من فضلك أضف كلمات مفتاحية إلى ملفك الشخصي.'; -$a->strings['No matches'] = 'لا تطابق'; -$a->strings['Profile Match'] = 'الملفات الشخصية المطابقة'; $a->strings['New Message'] = 'رسالة جديدة'; $a->strings['No recipient selected.'] = 'لم تختر متلقيا.'; $a->strings['Unable to locate contact information.'] = 'تعذر العثور على معلومات المتراسل.'; @@ -209,6 +115,10 @@ $a->strings['Send Private Message'] = 'أرسل رسالة خاصة'; $a->strings['To:'] = 'إلى:'; $a->strings['Subject:'] = 'الموضوع:'; $a->strings['Your message:'] = 'رسالتك:'; +$a->strings['Upload photo'] = 'ارفع صورة'; +$a->strings['Insert web link'] = 'أدرج رابط ويب'; +$a->strings['Please wait'] = 'يرجى الانتظار'; +$a->strings['Submit'] = 'أرسل'; $a->strings['No messages.'] = 'لا رسائل.'; $a->strings['Message not available.'] = 'الرّسالة غير متوفّرة.'; $a->strings['Delete message'] = 'احذف الرسالة'; @@ -229,18 +139,8 @@ $a->strings['%d message'] = [ ]; $a->strings['Personal Notes'] = 'ملاحظات شخصية'; $a->strings['Personal notes are visible only by yourself.'] = 'الملاحظات الشخصية مرئية لك فقط.'; -$a->strings['Subscribing to contacts'] = 'يشترك في متراسلين'; -$a->strings['No contact provided.'] = 'لم يُقدم متراسلين.'; -$a->strings['Couldn\'t fetch information for contact.'] = 'تعذر جلب معلومات المتراسل.'; -$a->strings['Couldn\'t fetch friends for contact.'] = 'تعذر جلب أصدقاء المتراسل.'; -$a->strings['Couldn\'t fetch following contacts.'] = 'تعذر جلب متابِعي المتراسل.'; -$a->strings['Couldn\'t fetch remote profile.'] = 'تعذر جلب الملف الشخصي البعيد.'; -$a->strings['Unsupported network'] = 'شبكة غير مدعومة'; -$a->strings['Done'] = 'تم'; -$a->strings['success'] = 'نجح'; -$a->strings['failed'] = 'فشل'; -$a->strings['ignored'] = 'متجاهل'; -$a->strings['Keep this window open until done.'] = 'أبق هذه النافذة مفتوحة حتى ينتهي.'; +$a->strings['Save'] = 'احفظ'; +$a->strings['User not found.'] = 'لم يُعثر على المستخدم.'; $a->strings['Photo Albums'] = 'ألبومات الصور'; $a->strings['Recent Photos'] = 'الصور الأخيرة'; $a->strings['Upload New Photos'] = 'ارفع صور جديدة'; @@ -252,21 +152,17 @@ $a->strings['Album was empty.'] = 'ألبوم فارغ.'; $a->strings['Failed to delete the photo.'] = 'فشل حذف الصفحة.'; $a->strings['a photo'] = 'صورة'; $a->strings['%1$s was tagged in %2$s by %3$s'] = 'ذكر %3$s %1$s في %2$s'; -$a->strings['Image exceeds size limit of %s'] = 'تجاوزت الصورة الحد الأقصى للحجم وهو %s'; -$a->strings['Image upload didn\'t complete, please try again'] = 'لم يكتمل رفع الصورة، من فضلك أعد المحاولة'; -$a->strings['Image file is missing'] = 'ملف الصورة مفقود'; -$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'الخادم لا يقبل رفع ملفات جديدة، يرجى التواصل مع مدير الموقع'; -$a->strings['Image file is empty.'] = 'ملف الصورة فارغ.'; -$a->strings['Unable to process image.'] = 'تعذرت معالجة الصورة.'; -$a->strings['Image upload failed.'] = 'فشل رفع الصورة.'; +$a->strings['Public access denied.'] = 'رُفض الوصول العلني.'; $a->strings['No photos selected'] = 'لم تختر صورًا'; -$a->strings['Access to this item is restricted.'] = 'الوصول إلى هذا العنصر مقيد.'; +$a->strings['The maximum accepted image size is %s'] = 'الحد الأقصى لحجم الصورة المسموح به هو %s'; $a->strings['Upload Photos'] = 'ارفع صورًا'; $a->strings['New album name: '] = 'اسم الألبوم الجديد: '; $a->strings['or select existing album:'] = 'أو اختر ألبومًا موجودًا:'; $a->strings['Do not show a status post for this upload'] = 'لا تظهر مشاركة حالة لهذا الملف المرفوع'; +$a->strings['Permissions'] = 'الأُذونات'; $a->strings['Do you really want to delete this photo album and all its photos?'] = 'أتريد حذف هذا الألبوم وكافة محتوياته؟'; $a->strings['Delete Album'] = 'احذف الألبوم'; +$a->strings['Cancel'] = 'ألغ'; $a->strings['Edit Album'] = 'عدّل الألبوم'; $a->strings['Drop Album'] = 'احذف الألبوم'; $a->strings['Show Newest First'] = 'اعرض الأحدث أولًا'; @@ -293,6 +189,8 @@ $a->strings['Rotate CW (right)'] = 'أدر باتجاه عقارب الساعة' $a->strings['Rotate CCW (left)'] = 'أدر عكس اتجاه عقارب الساعة'; $a->strings['This is you'] = 'هذا أنت'; $a->strings['Comment'] = 'علِّق'; +$a->strings['Preview'] = 'معاينة'; +$a->strings['Loading...'] = 'يحمل...'; $a->strings['Select'] = 'اختر'; $a->strings['Delete'] = 'احذف'; $a->strings['Like'] = 'أعجبني'; @@ -300,104 +198,6 @@ $a->strings['I like this (toggle)'] = 'أعجبني (بدِّل)'; $a->strings['Dislike'] = 'لم يعجبني'; $a->strings['I don\'t like this (toggle)'] = 'لم يعجبني (بدِّل)'; $a->strings['Map'] = 'خريطة'; -$a->strings['View Album'] = 'اعرض الألبوم'; -$a->strings['Bad Request.'] = 'طلب خاطئ.'; -$a->strings['Contact not found.'] = 'لم يُعثر على المتراسل.'; -$a->strings['[Friendica System Notify]'] = '[تنبيه نظام فرنديكا]'; -$a->strings['User deleted their account'] = 'حذف المستخدم حسابه'; -$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'حذف مستخدم حسابه على عقدة فرَندِكا خاصتك. من فضلك تأكد أن بياناتهم أُزيلت من النسخ الاحتياطية.'; -$a->strings['The user id is %d'] = 'معرف المستخدم هو %d'; -$a->strings['Remove My Account'] = 'أزل حسابي'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'سيزال حسابك نهائيًا. لا مجال لتراجع عند انتهائه.'; -$a->strings['Please enter your password for verification:'] = 'يرجى إدخال كلمة المرور للتأكيد:'; -$a->strings['Resubscribing to OStatus contacts'] = 'يعيد الاشتراك في متراسلي OStatus'; -$a->strings['Error'] = [ - 0 => 'لا أخطاء', - 1 => 'خطأ', - 2 => 'خطآن', - 3 => 'أخطاء', - 4 => 'خطأً', - 5 => 'خطأٍ', -]; -$a->strings['Failed to connect with email account using the settings provided.'] = 'فشل الاتصال بحساب البريد الإلكتروني باستخدام الإعدادات المقدمة.'; -$a->strings['Connected Apps'] = 'التطبيقات المتصلة'; -$a->strings['Name'] = 'الاسم'; -$a->strings['Home Page'] = 'الصفحة الرئيسية'; -$a->strings['Created'] = 'أُنشئ'; -$a->strings['Remove authorization'] = 'أزل التخويل'; -$a->strings['Save Settings'] = 'احفظ الإعدادات'; -$a->strings['Addon Settings'] = 'إعدادات الإضافة'; -$a->strings['No Addon settings configured'] = 'لم تضبط إعدادات الإضافة'; -$a->strings['Additional Features'] = 'ميزات إضافية'; -$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'دياسبورا (سوشل-هوم، هوب-زيلا)'; -$a->strings['enabled'] = 'مفعل'; -$a->strings['disabled'] = 'معطل'; -$a->strings['Built-in support for %s connectivity is %s'] = 'دعم مدمج لـ %s باتصال %s'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (غنو سوشل)'; -$a->strings['Email access is disabled on this site.'] = 'الوصول إلى البريد الإلكتروني معطل في هذا الموقع.'; -$a->strings['None'] = 'لا شيء'; -$a->strings['Social Networks'] = 'الشبكات الاجتماعية'; -$a->strings['General Social Media Settings'] = 'الإعدادات العامة لشبكات التواصل الاجتماعي'; -$a->strings['Followed content scope'] = 'حيز المحتوى المتابَع'; -$a->strings['Only conversations my follows started'] = 'المحادثات التي بدأها متابَعي فقط'; -$a->strings['Conversations my follows started or commented on (default)'] = 'المحادثات التي بدأها متابَعي أو علقوا عليها (الافتراضي)'; -$a->strings['Any conversation my follows interacted with, including likes'] = 'أي محادثة تفاعل معها متابَعي'; -$a->strings['Enable Content Warning'] = 'فعّل التحذير من المحتوى'; -$a->strings['Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.'] = 'يمكن لمستخدمي شبكات مثل ماستدون أو بليروما تعيين حقل التحذير من المحتوى الذي يطوي مشاركتهم افتراضيا. هذا يفعل الطي التلقائي بدلًا من تعيين التحذير من المحتوى كعنوان للمشاركة. هذا لا يؤثر على أي ترشيح محتوى قمت بإعداده.'; -$a->strings['Enable intelligent shortening'] = 'فعّل الاختصار الذكي'; -$a->strings['Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.'] = 'يعثر الاختصار الذكي على الرابط الأنسب في المشاركات المختصرة. عند تعطيله سيشير الرابط إلى منشور فرنديكا الأصلي.'; -$a->strings['Enable simple text shortening'] = 'فعّل اختصار النصوص'; -$a->strings['Attach the link title'] = 'أرفق عنوان الرابط'; -$a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'عند تفعيله سيتم إرفاق عنوان الصفحة بمنشور دياسبورا. هذا مفيد بشكل أساسي مع المتراسلين "الذاتيين" الذين يشاركون تغذيات Rss / Atom.'; -$a->strings['Your legacy ActivityPub/GNU Social account'] = 'حساب GNU Social\ActivityPub القديم'; -$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'إذا قمت بإدخال اسم حساب ActivityPub/GNU Social/Statusnet القديم هنا (بنسق user@domain.tld)، سيضاف المتراسلون في هذا الحساب تلقائيا. سيصفر الحقل عند الانتهاء.'; -$a->strings['Repair OStatus subscriptions'] = 'أصلح اشتراكات OStatus'; -$a->strings['Email/Mailbox Setup'] = 'إعداد بريد الكتروني/صندوق بريد'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'إذا كنت ترغب في التواصل مع متراسلي البريد الإلكتروني باستخدام هذه الخدمة (اختيارية)، من فضلك حدد كيفية الاتصال بصندوق بريدك.'; -$a->strings['Last successful email check:'] = 'آخر تحقق ناجح للبريد الإلكتروني:'; -$a->strings['IMAP server name:'] = 'اسم خادم IMAP:'; -$a->strings['IMAP port:'] = 'منفذ IMAP:'; -$a->strings['Security:'] = 'الحماية:'; -$a->strings['Email login name:'] = 'اسم الولوج للبريد الإلكتروني:'; -$a->strings['Email password:'] = 'كلمة مرور البريد الإلكتروني:'; -$a->strings['Reply-to address:'] = 'الرد على عنوان:'; -$a->strings['Send public posts to all email contacts:'] = 'أرسل المشاركات العلنية لجميع متراسلي البريد الإلكتروني:'; -$a->strings['Action after import:'] = 'الإجراء بعد الاستيراد:'; -$a->strings['Mark as seen'] = 'علّمه كمُشاهَد'; -$a->strings['Move to folder'] = 'انقل إلى مجلد'; -$a->strings['Move to folder:'] = 'انقل إلى المجلد:'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'لا توجد اقتراحات متاحة. إذا كان هذا الموقع جديد، من فضلك أعد المحاولة في غضون 24 ساعة.'; -$a->strings['Friend Suggestions'] = 'اقتراحات الأصدقاء'; -$a->strings['photo'] = 'صورة'; -$a->strings['status'] = 'حالة'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s وسم %3$s %2$s بـ %4$s'; -$a->strings['Remove Item Tag'] = 'أزل وسم العنصر'; -$a->strings['Select a tag to remove: '] = 'اختر الوسم لإزالته: '; -$a->strings['Remove'] = 'أزل'; -$a->strings['User imports on closed servers can only be done by an administrator.'] = 'يمكن للمدراء فقط استيراد المستخدمين في الخوادم المغلقة.'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'تجاوز هذا الموقع عدد التسجيلات اليومية المسموح بها. من فضلك حاول غدا.'; -$a->strings['Import'] = 'استورد'; -$a->strings['Move account'] = 'أنقل الحساب'; -$a->strings['You can import an account from another Friendica server.'] = 'يمكنك استيراد حساب من خادم فرَندِكا آخر.'; -$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.'] = 'تحتاج إلى تصدير حسابك من الخادم القديم ورفعه هنا. سوف نقوم بإعادة إنشاء حسابك القديم هنا مع إضافة كل المتراسلين. سوف نحاول أيضًا إبلاغهم أنك انتقلت إلى هنا.'; -$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'هذه الميزة تجريبية. لا يمكن استيراد متراسلين من شبكة OStatus (GNU Social/Statusnet) أو من شبكة دياسبورا'; -$a->strings['Account file'] = 'ملف الحساب'; -$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'لتصدير حسابك، انتقل إلى "إعدادات-> تصدير بياناتك الشخصية" واختر "صدر الحساب"'; -$a->strings['You aren\'t following this contact.'] = 'أنت لا تتابع هذا المتراسل.'; -$a->strings['Unfollowing is currently not supported by your network.'] = 'شبكتك لا تدعم إلغاء المتابعة حاليا.'; -$a->strings['Disconnect/Unfollow'] = 'ألغ الاقتران/المتابعة'; -$a->strings['Contact was successfully unfollowed'] = 'نجح إلغاء متابعة المتراسل'; -$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'يتعذر إلغاء متابعة هذا المتراسل، يرجى الاتصال بمدير الموقع'; -$a->strings['Invalid request.'] = 'طلب غير صالح.'; -$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'عذراً، ربّما يكون الرفع أكبر من ما يسمح به ضبط PHP'; -$a->strings['Or - did you try to upload an empty file?'] = 'أو - هل حاولت تحميل ملف فارغ؟'; -$a->strings['File exceeds size limit of %s'] = 'تجاوز الملف الحد الأقصى للحجم وهو %s'; -$a->strings['File upload failed.'] = 'فشل رفع الملف.'; -$a->strings['Wall Photos'] = 'صور الحائط'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'تجاوزت عدد رسائل الحائط اليومية وهو %s. فشل إرسال الرسالة.'; -$a->strings['Unable to check your home location.'] = 'تعذر التحقق من موقع منزلك.'; -$a->strings['No recipient.'] = 'بدون متلقٍ.'; -$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'إذا أردت تلقي رد من %s. تحقق أن إعدادات الخصوصية لموقعك تسمح بتلقي رسائل بريد من مصادر مجهولة.'; $a->strings['No system theme config value set.'] = 'لم تُضبط سمة النظام.'; $a->strings['Apologies but the website is unavailable at the moment.'] = 'نعتذر هذا الموقع غير متاح حاليا.'; $a->strings['Delete this item?'] = 'أتريد حذف العنصر؟'; @@ -419,12 +219,20 @@ $a->strings['Could not find any unarchived contact entry for this URL (%s)'] = ' $a->strings['The contact entries have been archived'] = 'أُرشفت مُدخلات المتراسل'; $a->strings['Could not find any contact entry for this URL (%s)'] = 'تعذر العثور على متراسل يقود اليه هذا الرابط (%s)'; $a->strings['The contact has been blocked from the node'] = 'حُجب المتراسل من هذه العقدة'; +$a->strings['Deletion of id %d failed'] = 'فشل حذف المعرف %d'; +$a->strings['Deletion of id %d was successful'] = 'نجح حذف المعرف %d'; +$a->strings[' - failed'] = '- فشل'; +$a->strings[' - success'] = '- نجح'; +$a->strings[' - deleted'] = '- حُذف'; +$a->strings[' - done'] = '- تم'; +$a->strings['invalid image for id %s'] = 'الضورة ذات المعرف %s غير صالحة'; $a->strings['Post update version number has been set to %s.'] = 'عُين رقم إصدار تحديث المشاركة إلى %s.'; $a->strings['Check for pending update actions.'] = 'تحقق من إجراءات التحديث المعلقة.'; $a->strings['Done.'] = 'تم.'; $a->strings['Execute pending post updates.'] = 'نفذ التحديثات المعلقة للمشاركة.'; $a->strings['All pending post updates are done.'] = 'تمت كل تحديثات المعلقة للمشاركة.'; $a->strings['Enter user nickname: '] = 'أدخل لقب المستخدم: '; +$a->strings['User not found'] = 'لم يُعثر على المستخدم'; $a->strings['Enter new password: '] = 'أدخل كلمة مرور جديدة: '; $a->strings['Password update failed. Please try again.'] = 'فشل تحديث كلمة المرور. من فضلك أعد المحاولة.'; $a->strings['Password changed.'] = 'غُيّرت كلمة المرور.'; @@ -463,81 +271,92 @@ $a->strings['Diaspora Connector'] = 'موصل دياسبورا'; $a->strings['GNU Social Connector'] = 'موصل غنو سوشل'; $a->strings['ActivityPub'] = 'ActivityPub'; $a->strings['%s (via %s)'] = '%s (عبر %s)'; -$a->strings['%s likes this.'] = 'أعجبَ %s.'; -$a->strings['%s doesn\'t like this.'] = 'لم يعجب %s.'; -$a->strings['%s attends.'] = 'يحضره %s.'; -$a->strings['%s doesn\'t attend.'] = 'لن يحضره %s.'; -$a->strings['%s attends maybe.'] = 'قد يحضره %s.'; -$a->strings['%s reshared this.'] = 'أعاد %s نشره.'; $a->strings['and'] = 'و'; $a->strings['and %d other people'] = 'و %d أشخاص آخرين'; -$a->strings['%2$d people like this'] = 'أعجب %2$d شخص '; -$a->strings['%s like this.'] = 'أعجب %s.'; -$a->strings['%2$d people don\'t like this'] = 'لم يعجب %2$d شخص '; -$a->strings['%s don\'t like this.'] = 'لم يعجب %s.'; -$a->strings['%2$d people attend'] = 'سيحضره %2$d شخص'; -$a->strings['%s attend.'] = 'سيحضره %s.'; -$a->strings['%2$d people don\'t attend'] = 'لن يحضره %2$d شخص'; -$a->strings['%s don\'t attend.'] = 'لن يحضره %s.'; -$a->strings['%2$d people attend maybe'] = 'قد يحضره %2$d شخصا'; -$a->strings['%s attend maybe.'] = 'قد يحضره %s.'; -$a->strings['%2$d people reshared this'] = 'أعاد نشره %2$d شخص'; $a->strings['Visible to everybody'] = 'مرئي للجميع'; $a->strings['Please enter a image/video/audio/webpage URL:'] = 'رجاء أدخل رابط صورة/فيديو/صوت/صفحة ويب:'; $a->strings['Tag term:'] = 'مصطلح الوسم:'; $a->strings['Save to Folder:'] = 'احفظ في مجلد:'; $a->strings['Where are you right now?'] = 'أين أنت حاليا؟'; $a->strings['Delete item(s)?'] = 'أتريد حذف العناصر؟'; +$a->strings['Created at'] = 'أُنشئ في'; $a->strings['New Post'] = 'مشاركة جديدة'; $a->strings['Share'] = 'شارك'; +$a->strings['upload photo'] = 'ارفع صورة'; +$a->strings['Attach file'] = 'أرفق ملفًا'; +$a->strings['attach file'] = 'أرفق ملفًا'; +$a->strings['Bold'] = 'عريض'; +$a->strings['Italic'] = 'مائل'; +$a->strings['Underline'] = 'تحته خط'; +$a->strings['Quote'] = 'اقتبس'; +$a->strings['Code'] = 'شفرة'; $a->strings['Image'] = 'صورة'; +$a->strings['Link'] = 'رابط'; +$a->strings['Link or Media'] = 'رابط أو وسائط'; $a->strings['Video'] = 'فيديو'; +$a->strings['Set your location'] = 'عيّن موقعك'; +$a->strings['set location'] = 'عين الموقع'; +$a->strings['Clear browser location'] = 'امسح موقع المتصفح'; +$a->strings['clear location'] = 'امسح الموقع'; +$a->strings['Set title'] = 'عين العنوان'; +$a->strings['Categories (comma-separated list)'] = 'الفئات (قائمة مفصولة بفاصلة)'; $a->strings['Scheduled at'] = 'بُرمِج في'; +$a->strings['Permission settings'] = 'إعدادات الأذونات'; +$a->strings['Public post'] = 'مشاركة علنية'; +$a->strings['Message'] = 'الرسالة'; +$a->strings['Browser'] = 'المتصفح'; +$a->strings['Open Compose page'] = 'افتح صفحة الإنشاء'; +$a->strings['remove'] = 'أزل'; +$a->strings['Delete Selected Items'] = 'أزل العناصر المختارة'; +$a->strings['You had been addressed (%s).'] = 'ذُكرت (%s).'; +$a->strings['You are following %s.'] = 'تتابع %s.'; +$a->strings['%s reshared this.'] = 'أعاد %s نشره.'; +$a->strings['Reshared'] = 'أُعيد نشره'; +$a->strings['Reshared by %s <%s>'] = 'أعاد نشره %s <%s>'; +$a->strings['%s is participating in this thread.'] = '%s مشترك في هذا النقاش.'; +$a->strings['Global post'] = 'مشاركة علنية'; +$a->strings['Fetched'] = 'جُلب'; +$a->strings['Fetched because of %s <%s>'] = 'جُلب بسبب %s <%s>'; $a->strings['Pinned item'] = 'عنصر مثبت'; $a->strings['View %s\'s profile @ %s'] = 'اعرض ملف %s الشخصي @ %s'; $a->strings['Categories:'] = 'الفئات:'; $a->strings['Filed under:'] = 'مصنف كـ:'; $a->strings['%s from %s'] = '%s من %s'; $a->strings['View in context'] = 'اعرضه في السياق'; -$a->strings['remove'] = 'أزل'; -$a->strings['Delete Selected Items'] = 'أزل العناصر المختارة'; -$a->strings['You had been addressed (%s).'] = 'ذُكرت (%s).'; -$a->strings['You are following %s.'] = 'تتابع %s.'; -$a->strings['Tagged'] = 'موسوم'; -$a->strings['Reshared'] = 'أُعيد نشره'; -$a->strings['Reshared by %s <%s>'] = 'أعاد نشره %s <%s>'; -$a->strings['%s is participating in this thread.'] = '%s مشترك في هذا النقاش.'; -$a->strings['Stored'] = 'مُخزن'; -$a->strings['Global'] = 'عالمي'; -$a->strings['Relayed'] = 'منقول'; -$a->strings['Relayed by %s <%s>'] = 'نقله %s <%s>'; -$a->strings['Fetched'] = 'جُلب'; -$a->strings['Fetched because of %s <%s>'] = 'جُلب بسبب %s <%s>'; +$a->strings['Local Community'] = 'المجتمع المحلي'; +$a->strings['Posts from local users on this server'] = 'مشاركات مستخدمي هذا الخادم'; +$a->strings['Global Community'] = 'المجتمع العالمي'; +$a->strings['Posts from users of the whole federated network'] = 'مشركات من الشبكة الموحدة'; +$a->strings['Latest Activity'] = 'آخر نشاط'; +$a->strings['Sort by latest activity'] = 'رتب حسب آخر نشاط'; +$a->strings['Latest Posts'] = 'آخر المشاركات'; +$a->strings['Sort by post received date'] = 'رتب حسب تاريخ استلام المشاركة'; +$a->strings['Personal'] = 'نشاطي'; +$a->strings['Posts that mention or involve you'] = 'المشاركات التي تذكرك أو تتعلق بك'; +$a->strings['Starred'] = 'المفضلة'; +$a->strings['Favourite Posts'] = 'المشاركات المفضلة'; $a->strings['General Features'] = 'الميّزات العامة'; $a->strings['Photo Location'] = 'موقع الصورة'; $a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'عادة ما تتم إزالة البيانات الوصفية للصور. هذا يجعل من الممكن حفظ الموقع (قبل إزالة البيانات) ووضع الصورة على الخريطة.'; $a->strings['Trending Tags'] = 'الوسوم الشائعة'; $a->strings['Show a community page widget with a list of the most popular tags in recent public posts.'] = 'أظهر ودجة صفحة المجتمع تحوي قائمة الوسوم الشائعة في المشاركات العلنية الأخيرة.'; $a->strings['Post Composition Features'] = 'ميّزات إنشاء المشاركة'; -$a->strings['Auto-mention Forums'] = 'ذكر المنتديات تلقائيا'; $a->strings['Explicit Mentions'] = 'ذِكر صريح'; $a->strings['Add explicit mentions to comment box for manual control over who gets mentioned in replies.'] = 'يضيف الذِكر الصريح في صندوق التعليق مما يسمح بالتحكم اليدوي بالذِكر في التعليقات.'; $a->strings['Post/Comment Tools'] = 'أدوات النشر\التعليق'; $a->strings['Post Categories'] = 'فئات المشاركة'; $a->strings['Add categories to your posts'] = 'أضف فئات لمشاركاتك'; $a->strings['Advanced Profile Settings'] = 'إعدادات الحساب الشخصي المُتقدّمة'; -$a->strings['List Forums'] = 'اسرد المنتديات'; -$a->strings['Show visitors public community forums at the Advanced Profile Page'] = 'إظهار منتديات المجتمعية للزوار على صفحة الملف الشخصي المتقدمة'; $a->strings['Tag Cloud'] = 'سحابة الوسوم'; $a->strings['Provide a personal tag cloud on your profile page'] = 'إظهار سحابة وسوم في صفحة ملفك الشخصي'; $a->strings['Display Membership Date'] = 'اعرض عُمر العضوية'; $a->strings['Display membership date in profile'] = 'اعرض عُمر العضوية في الملف الشخصي'; -$a->strings['Forums'] = 'المنتديات'; -$a->strings['External link to forum'] = 'رابط خارجي للمنتدى'; $a->strings['show less'] = 'اعرض أقلّ'; $a->strings['show more'] = 'اعرض المزيد'; -$a->strings['%1$s poked %2$s'] = '%1$s لكز%2$s'; $a->strings['event'] = 'حدث'; +$a->strings['status'] = 'حالة'; +$a->strings['photo'] = 'صورة'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s وسم %3$s %2$s بـ %4$s'; $a->strings['Follow Thread'] = 'تابع المناقشة'; $a->strings['View Status'] = 'اعرض الحالة'; $a->strings['View Profile'] = 'اعرض الملف الشخصي'; @@ -548,26 +367,25 @@ $a->strings['Send PM'] = 'أرسل رسالة خاصة'; $a->strings['Block'] = 'احجب'; $a->strings['Ignore'] = 'تجاهل'; $a->strings['Languages'] = 'اللغات'; -$a->strings['Poke'] = 'ألكز'; +$a->strings['Connect/Follow'] = 'اقترن\تابع'; $a->strings['Nothing new here'] = 'لا جديد هنا'; $a->strings['Go back'] = 'عُد'; $a->strings['Clear notifications'] = 'امسح التنبيهات'; -$a->strings['@name, !forum, #tags, content'] = '@مستخدم، !منتدى، #وسم، محتوى'; $a->strings['Logout'] = 'خروج'; $a->strings['End this session'] = 'أنه هذه الجلسة'; $a->strings['Login'] = 'لِج'; $a->strings['Sign in'] = 'لِج'; -$a->strings['Status'] = 'الحالة'; -$a->strings['Your posts and conversations'] = 'مشاركاتك ومحادثاتك'; $a->strings['Profile'] = 'الملف شخصي'; $a->strings['Your profile page'] = 'صفحة ملفك الشخصي'; +$a->strings['Photos'] = 'الصور'; $a->strings['Your photos'] = 'صورك'; $a->strings['Media'] = 'الوسائط'; $a->strings['Your postings with media'] = 'مشاركاتك التي تحوي وسائط'; -$a->strings['Your events'] = 'أحداثك'; +$a->strings['Calendar'] = 'التقويم'; $a->strings['Personal notes'] = 'الملاحظات الشخصية'; $a->strings['Your personal notes'] = 'ملاحظاتك الشخصية'; $a->strings['Home'] = 'الرئيسية'; +$a->strings['Home Page'] = 'الصفحة الرئيسية'; $a->strings['Register'] = 'سجل'; $a->strings['Create an account'] = 'أنشئ حسابا'; $a->strings['Help'] = 'المساعدة'; @@ -581,7 +399,6 @@ $a->strings['Tags'] = 'الوسوم'; $a->strings['Contacts'] = 'المتراسلون'; $a->strings['Community'] = 'المجتمع'; $a->strings['Conversations on this and other servers'] = 'محادثات في هذا الخادم وخوادم أخرى'; -$a->strings['Events and Calendar'] = 'الأحداث والتقويم'; $a->strings['Directory'] = 'الدليل'; $a->strings['People directory'] = 'دليل الأشخاص'; $a->strings['Information'] = 'معلومات'; @@ -590,10 +407,12 @@ $a->strings['Terms of Service'] = 'شروط الخدمة'; $a->strings['Terms of Service of this Friendica instance'] = 'شروط الخدمة لهذا المثيل'; $a->strings['Network'] = 'الشبكة'; $a->strings['Conversations from your friends'] = 'محادثات أصدقائك'; +$a->strings['Your posts and conversations'] = 'مشاركاتك ومحادثاتك'; $a->strings['Introductions'] = 'المقدمات'; $a->strings['Friend Requests'] = 'طلبات الصداقة'; $a->strings['Notifications'] = 'التنبيهات'; $a->strings['See all notifications'] = 'الاطّلاع على جميع التنبيهات'; +$a->strings['Mark as seen'] = 'علّمه كمُشاهَد'; $a->strings['Mark all system notifications as seen'] = 'علّم كل تنبيهات النظام كمقروءة'; $a->strings['Private mail'] = 'بريد خاص'; $a->strings['Inbox'] = 'صندوق الوارد'; @@ -640,12 +459,12 @@ $a->strings['Find People'] = 'ابحث عن أشخاص'; $a->strings['Enter name or interest'] = 'أدخل اسما أو اهتماما'; $a->strings['Examples: Robert Morgenstein, Fishing'] = 'مثال: أحمد علي، الصيد'; $a->strings['Find'] = 'ابحث'; +$a->strings['Friend Suggestions'] = 'اقتراحات الأصدقاء'; $a->strings['Similar Interests'] = 'اهتمامات مشتركة'; $a->strings['Random Profile'] = 'ملف شخصي عشوائي'; $a->strings['Invite Friends'] = 'دعوة أصدقاء'; $a->strings['Global Directory'] = 'الدليل العالمي'; $a->strings['Local Directory'] = 'الدليل المحلي'; -$a->strings['Groups'] = 'المجموعات'; $a->strings['Everyone'] = 'الجميع'; $a->strings['Relationships'] = 'العلاقات'; $a->strings['All Contacts'] = 'كل المتراسلين'; @@ -694,6 +513,7 @@ $a->strings['Trending Tags (last %d hour)'] = [ $a->strings['More Trending Tags'] = 'المزيد من الوسوم الشائعة'; $a->strings['XMPP:'] = 'XMPP:'; $a->strings['Matrix:'] = 'مايتركس:'; +$a->strings['Location:'] = 'الموقع:'; $a->strings['Network:'] = 'الشبكة:'; $a->strings['Unfollow'] = 'ألغِ المتابعة'; $a->strings['Yourself'] = 'أنت'; @@ -705,6 +525,8 @@ $a->strings['Limited/Private'] = 'محدود/خاص'; $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.'] = 'سيكون هذا المحتوى مرئيًا فقط من قبل المجموعات والمتراسلين المدرجين في الحقل الأول ، وتستثنى المجموعات والمتراسلون المدرجون في الحقل الثاني. لن يكون هذا المحتوى مرئيا للعامة.'; $a->strings['Show to:'] = 'اعرضه لـ:'; $a->strings['Except to:'] = 'استثني:'; +$a->strings['CC: email addresses'] = 'أرسله إلى عناوين البريد الإلكتروني'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'مثل: bob@example.com, mary@example.com'; $a->strings['Connectors'] = 'الموصّلات'; $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.'] = 'تعذر كتابة ملف تكوين قاعدة البيانات "config/local.config.php". رجاء استخدم النص المرفق لإنشاء ملف تكوين في المجلد الجذر للخادم.'; $a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'استورد ملف "database.sql" يدويا باستخدام phpmyadmin أو mysql.'; @@ -783,12 +605,8 @@ $a->strings['Sep'] = 'سب'; $a->strings['Oct'] = 'أك'; $a->strings['Nov'] = 'نو'; $a->strings['Dec'] = 'دي'; -$a->strings['poke'] = 'ألكز'; -$a->strings['poked'] = 'لُكز'; -$a->strings['prod'] = 'انخس'; -$a->strings['prodded'] = 'نُخِس'; -$a->strings['slap'] = 'اصفع'; -$a->strings['slapped'] = 'صُفع'; +$a->strings['The logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'لا يمكن استخدام ملف السجل \'\'%s\'. لا يمكن كتابة السجلات (خطأ: \'%s\')'; +$a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'لا يمكن استخدام ملف السجل الخاص بالتنقيح \'%s\'. لا يمكن كتابة السجلات (خطأ: \'%s\')'; $a->strings['Friendica can\'t display this page at the moment, please contact the administrator.'] = 'لا يمكن لفرَندِيكا عرض هذه الصفحة حاليا، رجاء اتصل بالمدير.'; $a->strings['template engine cannot be registered without a name.'] = 'لا يمكن تسجيل محرك القوالب بدون اسم.'; $a->strings['template engine is not registered!'] = 'لم يسجل محرك القوالب!'; @@ -811,23 +629,6 @@ $a->strings[' فرَندِكا إذا لم تتمكن من مساعدتي بمفردك. قد تكون قاعدة البيانات غير صالحة.'; $a->strings['The error message is\n[pre]%s[/pre]'] = 'رسالة الخطأ\n[pre]%s[/pre]'; $a->strings['[Friendica Notify] Database update'] = '[تنبيهات فرنديكا] تحديث قاعدة البيانات'; -$a->strings[' - The friendica database was successfully updated from %s to %s.'] = ' - حُدثت قاعدة البيانات بنجاح من الإصدار %s إلى %s.'; -$a->strings['Error decoding account file'] = 'خطأ أثناء فك ترميز ملف الحساب'; -$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'خطأ! لا توجد بيانات إصدار في الملف! هذا ليس ملف شخصي لفرنديكا؟'; -$a->strings['User \'%s\' already exists on this server!'] = 'المستخدم \'%s\' موجود سلفًا على هذا الخادم!'; -$a->strings['User creation error'] = 'خطأ أثناء إنشاء المستخدم'; -$a->strings['%d contact not imported'] = [ - 0 => 'لم يُستورد أي متراسل %d', - 1 => 'لم يستورد متراسل واحد %d', - 2 => 'لم يستورد متراسلان %d', - 3 => 'لم يستورد %d متراسلين', - 4 => 'لم يستورد %d متراسلًا', - 5 => 'لم يستورد %d متراسل', -]; -$a->strings['User profile creation error'] = 'خطأ أثناء إنشاء الملف الشخصي للمستخدم'; -$a->strings['Done. You can now login with your username and password'] = 'تم. يمكنك الآن الولوج باستخدام اسم المستخدم وكلمة المرور'; $a->strings['The database version had been set to %s.'] = 'عُين إصدار قاعدة البيانات إلى %s.'; $a->strings['The post update is at version %d, it has to be at %d to safely drop the tables.'] = 'تحديث البيانات هو إصدار %d، لكن يجب أن يكون إصدار %d لتتمكن من حذف الجداول بأمان.'; $a->strings['No unused tables found.'] = 'لم يُعثر على جداول غير مستعملة.'; @@ -850,10 +651,11 @@ $a->strings['Unauthorized'] = 'لم يخوّل'; $a->strings['Token is not authorized with a valid user or is missing a required scope'] = 'لم يُخول الرمز عبر مستخدم صالح أو يفتقر إلى حيّزٍ مطلوب'; $a->strings['Internal Server Error'] = 'خطأ داخلي في الخادم'; $a->strings['Legacy module file not found: %s'] = 'لم يُعثر على ملف الوحدة القديم: %s'; -$a->strings['UnFollow'] = 'ألغِ المتابعة'; +$a->strings['Everybody'] = 'الجميع'; +$a->strings['edit'] = 'عدّل'; +$a->strings['add'] = 'أضف'; $a->strings['Approve'] = 'موافق'; $a->strings['Organisation'] = 'منظّمة'; -$a->strings['Forum'] = 'منتدى'; $a->strings['Disallowed profile URL.'] = 'رابط الملف الشخصي غير المسموح.'; $a->strings['Blocked domain'] = 'نطاق محجوب'; $a->strings['Connect URL missing.'] = 'رابط الاتصال مفقود.'; @@ -871,7 +673,12 @@ $a->strings['Starts:'] = 'يبدأ:'; $a->strings['Finishes:'] = 'ينتهي:'; $a->strings['all-day'] = 'طوال اليوم'; $a->strings['Sept'] = 'سبتمبر'; +$a->strings['today'] = 'اليوم'; +$a->strings['month'] = 'شهر'; +$a->strings['week'] = 'أسبوع'; +$a->strings['day'] = 'يوم'; $a->strings['No events to display'] = 'لا توجد أحداث لعرضها'; +$a->strings['Access to this profile has been restricted.'] = 'قُيِّد الوصول لهذا الملف الشخصي.'; $a->strings['Edit event'] = 'عدّل الحدث'; $a->strings['Duplicate event'] = 'ضاعف الحدث'; $a->strings['Delete event'] = 'احذف الحدث'; @@ -880,16 +687,6 @@ $a->strings['Show map'] = 'أظهر الخريطة'; $a->strings['Hide map'] = 'اخف الخريطة'; $a->strings['%s\'s birthday'] = 'عيد ميلاد %s'; $a->strings['Happy Birthday %s'] = '%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.'] = 'تم إحياء مجموعة محذوفة بهذا الاسم. أذونات العنصر الموجودة سبقًا قد تنطبق على هذه المجموعة وأي أعضاء في المستقبل. إذا حصل هذا، يرجى إنشاء مجموعة أخرى باسم مختلف.'; -$a->strings['Default privacy group for new contacts'] = 'المجموعة الافتراضية للمتراسلين الجدد'; -$a->strings['Everybody'] = 'الجميع'; -$a->strings['edit'] = 'عدّل'; -$a->strings['add'] = 'أضف'; -$a->strings['Edit group'] = 'عدّل المجموعة'; -$a->strings['Contacts not in any group'] = 'متراسلون لا ينتمون لأي مجموعة'; -$a->strings['Create a new group'] = 'أنشئ مجموعة جديدة'; -$a->strings['Group Name: '] = 'اسم المجموعة: '; -$a->strings['Edit groups'] = 'عدّل المجموعات'; $a->strings['Detected languages in this post:\n%s'] = 'اللغات المكتشفة في هذه المشاركة:\n%s'; $a->strings['activity'] = 'النشاط'; $a->strings['comment'] = 'تعليق'; @@ -898,6 +695,7 @@ $a->strings['Content warning: %s'] = 'تحذير من المحتوى: %s'; $a->strings['bytes'] = 'بايت'; $a->strings['View on separate page'] = 'اعرضه في صفحة منفصلة'; $a->strings['[no subject]'] = '[بدون موضوع]'; +$a->strings['Wall Photos'] = 'صور الحائط'; $a->strings['Edit profile'] = 'عدّل الملف الشخصي'; $a->strings['Change profile photo'] = 'غير صورة الملف الشخصي'; $a->strings['Homepage:'] = 'الصفحة رئيسية:'; @@ -938,7 +736,6 @@ $a->strings['Not enough information to authenticate'] = 'لا توجد معلو $a->strings['Password can\'t be empty'] = 'لا يمكن أن تكون كلمة المرور فارغة'; $a->strings['Empty passwords are not allowed.'] = 'لا يسمح بكلمات مرور فارغة.'; $a->strings['The new password has been exposed in a public data dump, please choose another.'] = 'كلمة المرور الجديدة جزء من تسريب بيانات علني ، يرجى اختيار كلمة مرور مختلفة.'; -$a->strings['The password can\'t contain accentuated letters, white spaces or colons (:)'] = 'لا يمكن أن تحتوي كلمة المرور على أحرف منبورة أو مسافات أو نقطتي تفسير (:)'; $a->strings['Passwords do not match. Password unchanged.'] = 'كلمتا المرور غير متطابقتين. لم تغيَّر كلمة المرور.'; $a->strings['An invitation is required.'] = 'الدعوة إلزامية.'; $a->strings['Invitation could not be verified.'] = 'تعذر التحقق من الدعوة.'; @@ -972,63 +769,12 @@ $a->strings['Nickname is already registered. Please choose another.'] = 'هذا $a->strings['An error occurred during registration. Please try again.'] = 'حدث خطأ أثناء التسجيل، رجاء حاول مرة أخرى.'; $a->strings['An error occurred creating your default profile. Please try again.'] = 'حدث خطأ أثناء إنشاء الملف الشخصي الافتراضي، رجاء حاول مرة أخرى.'; $a->strings['Friends'] = 'الأصدقاء'; -$a->strings['An error occurred creating your default contact group. Please try again.'] = 'حدث خطأ أثناء إنشاء مجموعة المتراسلين الافتراضية، رجاء حاول مرة أخرى.'; $a->strings['Profile Photos'] = 'صور الملف الشخصي'; $a->strings[' Dear %1$s, the administrator of %2$s has set up an account for you.'] = ' عزيزي %1$s، أنشأ مدير %2$s حساب لك.'; -$a->strings[' - The login details are as follows: - - Site Location: %1$s - Login Name: %2$s - Password: %3$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %1$s/removeme - - Thank you and welcome to %4$s.'] = ' - تفاصيل تسجيل الولوج هي كالتالي: - - الموقع: %1$s - اسم المستخدم: %2$s - كلمة المرور: %3$s - - يمكنك تغيير كلمة المرور من صفحة إعدادات الحساب. - - يرجى أخذ بضع لحظات لمراجعة الإعدادات الأخرى في تلك الصفحة. - - قد ترغب أيضًا في إضافة بعض المعلومات الأساسية إلى صفحة ملفك الشخصية الافتراضي - (من صفحة "الملفات الشخصية") حتى يتمكن الآخرون من العثور عليك بسهولة. - - نحن نوصي بوضع اسمك الكامل، إضافة لصورة، - وإضافة بعض الكلمات المفتاحية (مفيدة جدا في تكوين صداقات) - و - ربما البلد الذي تعيش فيه. - - نحن نحترم حقك في الخصوصية احتراما كاملا، ولا ضرورة لأي مما سبق. - إذا كنت جديداً ولا تعرف أي شخص هنا، فقد تساعدك هذه المعلومات على تكوين صداقات مثيرة للاهتمام. - - إذا كنت ترغب في حذف حسابك، يمكنك فعل ذلك في %1$s/removeme - - شكرا لك ومرحبًا بك في %4$s.'; $a->strings['Registration details for %s'] = 'تفاصيل التسجيل لـ %s'; $a->strings[' Dear %1$s, @@ -1057,56 +803,6 @@ $a->strings[' عزيزي %1$s، شكرا لك على التسجيل في %2$s. نجح إنشاء حسابك. '; -$a->strings[' - The login details are as follows: - - Site Location: %3$s - Login Name: %1$s - Password: %5$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %3$s/removeme - - Thank you and welcome to %2$s.'] = ' - تفاصيل تسجيل الولوج هي كالتالي: - - الموقع: %3$s - اسم المستخدم: %1$s - كلمة المرور: %5$s - - يمكنك تغيير كلمة المرور من صفحة إعدادات الحساب. - - يرجى أخذ بضع لحظات لمراجعة الإعدادات الأخرى في تلك الصفحة. - - قد ترغب أيضًا في إضافة بعض المعلومات الأساسية إلى صفحة ملفك الشخصية الافتراضي - (من صفحة "الملفات الشخصية") حتى يتمكن الآخرون من العثور عليك بسهولة. - - نحن نوصي بوضع اسمك الكامل، إضافة لصورة، - وإضافة بعض الكلمات المفتاحية (مفيدة جدا في تكوين صداقات) - و - ربما البلد الذي تعيش فيه. - - نحن نحترم حقك في الخصوصية احتراما كاملا، ولا ضرورة لأي مما سبق. - إذا كنت جديداً ولا تعرف أي شخص هنا، فقد تساعدك هذه المعلومات على تكوين صداقات مثيرة للاهتمام. - - إذا كنت ترغب في حذف حسابك، يمكنك فعل ذلك في %3$s/removeme - - شكرا لك ومرحبًا بك في %2$s.'; $a->strings['Addon not found.'] = 'لم يُعثر على الإضافة.'; $a->strings['Addon %s disabled.'] = 'الإضافة %s معطلة.'; $a->strings['Addon %s enabled.'] = 'الإضافة %s مفعلة.'; @@ -1119,101 +815,9 @@ $a->strings['Author: '] = 'الكاتب: '; $a->strings['Maintainer: '] = 'المصين: '; $a->strings['Addons reloaded'] = 'أُعيد تحميل الإضافة'; $a->strings['Addon %s failed to install.'] = 'فشل تثبيت إضافة %s.'; +$a->strings['Save Settings'] = 'احفظ الإعدادات'; $a->strings['Reload active addons'] = 'أعد تحميل الإضافات النشطة'; $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'] = 'لا توجد حاليا أي إضافات متاحة في عقدتك. يمكنك العثور على مستودع الإضافات الرسمي في %1$s وقد تجد إضافات أخرى مثيرة للاهتمام في سجل الإضافات المفتوحة في %2$s'; -$a->strings['List of all users'] = 'قائمة المستخدمين'; -$a->strings['Active'] = 'نشط'; -$a->strings['List of active accounts'] = 'قائمة الحسابات النشطة'; -$a->strings['Pending'] = 'معلق'; -$a->strings['List of pending registrations'] = 'قائمة التسجيلات المعلقة'; -$a->strings['Blocked'] = 'محجوب'; -$a->strings['List of blocked users'] = 'قائمة المستخدمين المحجوبين'; -$a->strings['Deleted'] = 'حُذف'; -$a->strings['List of pending user deletions'] = 'قائمة الحذف المعلق للمستخدمين'; -$a->strings['Normal Account Page'] = 'صفحة حساب عادي'; -$a->strings['Soapbox Page'] = 'صفحة سياسي'; -$a->strings['Public Forum'] = 'منتدى عمومي'; -$a->strings['Automatic Friend Page'] = 'صفحة اشترك تلقائي'; -$a->strings['Private Forum'] = 'منتدى خاص'; -$a->strings['Personal Page'] = 'صفحة شخصية'; -$a->strings['Organisation Page'] = 'صفحة منظمة'; -$a->strings['News Page'] = 'صفحة إخبارية'; -$a->strings['Community Forum'] = 'منتدى مجتمعي'; -$a->strings['Relay'] = 'مُرحِل'; -$a->strings['%s contact unblocked'] = [ - 0 => 'لم يُرفع الحجب عن مستخدم %s', - 1 => 'رُفع الحجب عن مستخدم %s', - 2 => 'رُفع الحجب عن مستخدمَين %s', - 3 => 'رُفع الحجب عن %s مستخدمين', - 4 => 'رُفع الحجب عن %s مستخدمًا', - 5 => 'رُفع الحجب عن %s مستخدم', -]; -$a->strings['Remote Contact Blocklist'] = 'قائمة المتراسلين البِعاد المحظورين'; -$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'هذه الصفحة تمنع رسائل المستخدمين البِعاد من الوصول لعقدتك.'; -$a->strings['Block Remote Contact'] = 'احجب مستخدمًا بعيدًا'; -$a->strings['select all'] = 'اختر الكل'; -$a->strings['select none'] = 'ألغ الاختيار'; -$a->strings['Unblock'] = 'ارفع الحجب'; -$a->strings['No remote contact is blocked from this node.'] = 'لم يُحجب متراسل بعيد من هذه العقدة.'; -$a->strings['Blocked Remote Contacts'] = 'المستخدمون البِعاد المحجبون'; -$a->strings['Block New Remote Contact'] = 'احجب مستخدمًا بعيدًا'; -$a->strings['Photo'] = 'صورة'; -$a->strings['Reason'] = 'السبب'; -$a->strings['%s total blocked contact'] = [ - 0 => 'لم يحجب أي متراسل %s', - 1 => 'متراسل%s محجوب', - 2 => 'متراسلان %s محجوبان', - 3 => '%s متراسلين محجوبين', - 4 => '%s متراسلًا محجوبًا', - 5 => '%s متراسل محجوب', -]; -$a->strings['URL of the remote contact to block.'] = 'عنوان المتراسل البعيد المراد حجبه.'; -$a->strings['Also purge contact'] = 'امسح المتراسل أيضًا'; -$a->strings['Removes all content related to this contact from the node. Keeps the contact record. This action cannot be undone.'] = 'يزيل جميع المحتويات المتعلقة بهذا المتراسل من العقدة. ويحتفظ بسجل للمتراسل. لا يمكن التراجع عن هذا الإجراء.'; -$a->strings['Block Reason'] = 'سبب الحجب'; -$a->strings['Server domain pattern added to the blocklist.'] = 'أُضيفت صيغة النطاق لقائمة الحجب.'; -$a->strings['← Return to the list'] = '→رجوع للقائمة'; -$a->strings['Block A New Server Domain Pattern'] = 'احجب صيغة نطاق جديدة'; -$a->strings['

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

    -
      -
    • *: Any number of characters
    • -
    • ?: Any single character
    • -
    '] = '

    تنسيق صيّغ النطاق غير حساس لحالة الأحرف ويستخدم محارف بَدلِ الصدفة، بما في ذلك المحارف التالية:

    -
      -
    • *: أي عدد من المحارف
    • -
    • ?: محرف واحد
    • -
    '; -$a->strings['Check pattern'] = 'تحقق من الصيغة'; -$a->strings['Matching known servers'] = 'يطابق الخوادم المعروفة'; -$a->strings['Server Name'] = 'اسم الخادم'; -$a->strings['Server Domain'] = 'نطاق الخادم'; -$a->strings['Known Contacts'] = 'المتراسلون المعروفون'; -$a->strings['%d known server'] = [ - 0 => 'لا توجد خوادم معروفة %d', - 1 => 'خادم %d معروف', - 2 => 'خادمان %d معروفان', - 3 => '%d خوادم معروفة', - 4 => '%d خادمًا معروفًا', - 5 => '%d خادمٍ معروفٍ', -]; -$a->strings['Add pattern to the blocklist'] = 'أضف المرشِّح لقائمة الحجب'; -$a->strings['Server Domain Pattern'] = 'صيغة النطاق'; -$a->strings['The domain pattern of the new server to add to the blocklist. Do not include the protocol.'] = 'صيغة النطاق المراد إضافتها إلى قائمة الحجب. لا تُضمّن الميفاق.'; -$a->strings['Purge server'] = 'امسح الخادم'; -$a->strings['Block reason'] = 'سبب الحجب'; -$a->strings['The reason why you blocked this server domain pattern. This reason will be shown publicly in the server information page.'] = 'سبب حجب صيغة نطاق الخادم. سوف يظهر علنًا في صفحة معلومات الخادم.'; -$a->strings['Blocked server domain pattern'] = 'صيّغ النطاقات المحجوبة'; -$a->strings['Reason for the block'] = 'سبب الحجب'; -$a->strings['Delete server domain pattern'] = 'احذف صيغة النطاق'; -$a->strings['Check to delete this entry from the blocklist'] = 'أشّر لحذف المدخل من قائمة الحجب'; -$a->strings['Server Domain Pattern Blocklist'] = 'قائمة الحجب لصيّغ النطاق'; -$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.'] = 'يمكن استخدام هذه الصفحة لتعريف صيّغ النطاقات لححب الخوادم من الشبكة الموحدة لمنع تفاعلها مع عقدتك. لكل صيغة نطاق يجب عليك تقديم سبب الحجب.'; -$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.'] = 'ستتاح قائمة صيّغ النطاقات الخادم المحجوبة في صفحة /friendica بحيث يمكن للمستخدمين التحقق من الخوادم اذا واجهوا مشكلة في الاتصال بها.'; -$a->strings['Add new entry to the blocklist'] = 'أضف مُدخلًا جديد إلى القائمة الحجب'; -$a->strings['Save changes to the blocklist'] = 'احفظ التغييرات في قائمة الحجب'; -$a->strings['Current Entries in the Blocklist'] = 'المدخلات الموجودة في قائمة الحجب'; -$a->strings['Delete entry from the blocklist'] = 'أزل مدخلًا من قائمة الحجب'; -$a->strings['Delete entry from the blocklist?'] = 'أتريد إزالة المدخل من قائمة الحجب؟'; $a->strings['Update has been marked successful'] = 'تُحقق من صحة التحديث وعلّم كـ"ناجح"'; $a->strings['Database structure update %s was successfully applied.'] = 'نجح تطبيق التحديث بنية قاعدة البيانات %s.'; $a->strings['Executing of database structure update %s failed with error: %s'] = 'فشل تنفيذ تحديث بنية قاعدة البيانات %s مع رمز الخطأ: %s'; @@ -1231,29 +835,8 @@ $a->strings['Lock feature %s'] = 'أقفل ميزة %s'; $a->strings['Manage Additional Features'] = 'إدارة الميّزات الإضافية'; $a->strings['Other'] = 'أخرى'; $a->strings['unknown'] = 'مجهول'; -$a->strings['%s total systems'] = '%s نظام'; -$a->strings['%s active users last month'] = '%s مستخدم نشط في آخر شهر'; -$a->strings['%s registered users'] = '%s مستخدم مسجل'; -$a->strings['%s posts per user'] = '%s مشاركة لكل مستخدم'; -$a->strings['%s users per system'] = '%s مستخدم لكل نظام'; $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.'] = 'تقدم لك هذه الصفحة بعض الإحصائيات للجزء المعروف من الشبكة الاجتماعية الموحدة المتصلة بعقدتك. هذه الإحصائيات ليست كاملة ولكنها تتضمن المواقع المعروفة لعقدتك من الشبكة.'; $a->strings['Federation Statistics'] = 'إحصائيات الشبكة الموحدة'; -$a->strings['Item marked for deletion.'] = 'سيُحذف العنصر.'; -$a->strings['Delete Item'] = 'احذف عنصر'; -$a->strings['Delete this Item'] = 'احذف العنصر'; -$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.'] = 'في هذه الصفحة يمكنك حذف عنصر من عقدتك. إذا كان العنصر هو المشاركة الأصلية، سيحذف النقاش بأكمله.'; -$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.'] = 'يجب أن تعرف GUID الخاص بالعنصر. يمكنك العثور عليه عن طريق اختيار العنصر ثم قراءة عنوان الرابط. الجزء الأخير من الرابط هو GUID. مثال: http://example.com/display/123456 حيث GUID هو 123456.'; -$a->strings['Item Source'] = 'مصدر العنصر'; -$a->strings['Item Id'] = 'معرّف العنصر'; -$a->strings['Item URI'] = 'رابط العنصر'; -$a->strings['Terms'] = 'الشروط'; -$a->strings['Tag'] = 'وسم'; -$a->strings['Type'] = 'نوع'; -$a->strings['Term'] = 'مصطلح'; -$a->strings['URL'] = 'رابط'; -$a->strings['Mention'] = 'ذكر'; -$a->strings['Implicit Mention'] = 'ذِكر صريح'; -$a->strings['Source'] = 'المصدر'; $a->strings['The logfile \'%s\' is not writable. No logging possible'] = 'ملف السجل \'\'%s\' غير قابل للكتابة. لا يمكن كتابة السجلات'; $a->strings['PHP log currently enabled.'] = 'كتابة سجلات PHP مفعلة.'; $a->strings['PHP log currently disabled.'] = 'كتابة سجلات PHP معطلة.'; @@ -1276,7 +859,9 @@ $a->strings['Context'] = 'السياق'; $a->strings['ALL'] = 'الكل'; $a->strings['View details'] = 'اعرض التفاصيل'; $a->strings['Click to view details'] = 'انقر لعرض التفاصيل'; +$a->strings['Event details'] = 'تفاصيل الحدث'; $a->strings['Data'] = 'البيانات'; +$a->strings['Source'] = 'المصدر'; $a->strings['File'] = 'الملف'; $a->strings['Line'] = 'السطر'; $a->strings['Function'] = 'الدالة'; @@ -1289,10 +874,10 @@ $a->strings['This page lists the currently queued worker jobs. These jobs are ha $a->strings['ID'] = 'المعرف'; $a->strings['Command'] = 'أمر'; $a->strings['Job Parameters'] = 'معطيات العملية'; +$a->strings['Created'] = 'أُنشئ'; $a->strings['Priority'] = 'الأولوية'; $a->strings['No special theme for mobile devices'] = 'لا توجد سمة مخصصة للهاتف'; $a->strings['%s - (Experimental)'] = '%s - (اختباري)'; -$a->strings['No community page for local users'] = 'لا توجد صفحة مجتمع للمستخدمين المحليين'; $a->strings['No community page'] = 'لا توجد صفحة مجتمع'; $a->strings['Public postings from users of this site'] = 'المشاركات العلنية لمستخدمي هذا الموقع'; $a->strings['Public postings from the federated network'] = 'المشاركات العلنية من الشبكة الموحدة'; @@ -1301,7 +886,6 @@ $a->strings['Multi user instance'] = 'مثيل متعدد المستخدمين'; $a->strings['Closed'] = 'مغلق'; $a->strings['Requires approval'] = 'تتطلب الحصول على موافقة'; $a->strings['Open'] = 'افتح'; -$a->strings['Force all links to use SSL'] = 'فرض استخدام الروابط ل SSL'; $a->strings['Don\'t check'] = 'لا تتحقق'; $a->strings['check the stable version'] = 'تحقق من الإصدار المستقر'; $a->strings['check the development version'] = 'تحقق من الإصدار التطويري'; @@ -1314,6 +898,7 @@ $a->strings['Republish users to directory'] = 'أعد نشر المستخدمي $a->strings['Registration'] = 'التسجيل'; $a->strings['File upload'] = 'رفع الملف'; $a->strings['Policies'] = 'السياسات'; +$a->strings['Advanced'] = 'متقدم'; $a->strings['Auto Discovered Contact Directory'] = 'دليل المتراسلين المكتشفين تلقائيًا'; $a->strings['Performance'] = 'الأداء'; $a->strings['Worker'] = 'مهمة'; @@ -1337,8 +922,6 @@ $a->strings['System language'] = 'لغة النظام'; $a->strings['System theme'] = 'سمة النظام'; $a->strings['Mobile system theme'] = 'سمة الهاتف'; $a->strings['Theme for mobile devices'] = 'سمة للأجهزة المحمولة'; -$a->strings['SSL link policy'] = 'سياسة روابط SSL'; -$a->strings['Determines whether generated links should be forced to use SSL'] = 'يحدد ما إذا كان ينبغي إجبار الروابط المولدة على استخدام SSL'; $a->strings['Force SSL'] = 'فرض SSL'; $a->strings['Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'] = 'أعد توجيه جميع الطلبات غير المشفرة إلى طلبات SSL. تحذير: في بعض الأنظمة يمكن أن يؤدي هذا إلى حلقات إعادة توجيه لا نهائية.'; $a->strings['Show help entry from navigation menu'] = 'أظهر المساعدة في قائمة التصفح'; @@ -1346,7 +929,6 @@ $a->strings['Displays the menu entry for the Help pages from the navigation menu $a->strings['Single user instance'] = 'مثيل لمستخدم وحيد'; $a->strings['Make this instance multi-user or single-user for the named user'] = 'اجعل هذا المثيل إما لمستخدم واحد أولعدّة مستخدمين'; $a->strings['Maximum image size'] = 'الحجم الأقصى للصورة'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'حد حجم الصورة المرفوعة بالبايت. الافتراضي هو 0 والذي يعني حجمًا غير محدود.'; $a->strings['Maximum image length'] = 'الطول الأقصى للصورة'; $a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'حد حجم الصورة المرفوعة بالبيكسل. الافتراضي هو 1- والذي يعني حجمًا غير محدود.'; $a->strings['JPEG image quality'] = 'جودة صور JPEG'; @@ -1373,7 +955,6 @@ $a->strings['Enabling this may violate privacy laws like the GDPR'] = 'تفعي $a->strings['Global directory URL'] = 'رابط الدليل العالمي'; $a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'رابط الدليل العالمي. إذا لم يتم تعريف هذا الحقل ، فلن يكون الدليل العام متاحًا.'; $a->strings['Private posts by default for new users'] = 'جعل المشاركات خاصة للمستخدمين الجدد افتراضيًا'; -$a->strings['Set default post permissions for all new members to the default privacy group rather than public.'] = 'تعيين أذونات النشر الافتراضية لجميع الأعضاء الجدد إلى خاصة بدل العلنية.'; $a->strings['Don\'t include post content in email notifications'] = 'لا تضمن محتويات المشاركات في تنبيهات البريد الإلكتروني'; $a->strings['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.'] = 'لا تضمن محتوى المشركات/التعليقات/الرسائل الخاصة/إلخ في تنبيهات البريد الإلكتروني المرسلة من هذا الموقع، كتدبير لحماية الخصوصية.'; $a->strings['Disallow public access to addons listed in the apps menu.'] = 'لا تسمح بالوصول العلني للإضافات المدرجة في قائمة التطبيقات.'; @@ -1459,16 +1040,8 @@ $a->strings['The database update failed. Please run "php bin/console.php dbstruc $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.)'] = 'فشل آخر تحديث لقاعدة البيانات. رجاءً شغّل أمر "php bin/console.php dbstructure update" من سطر الأوامر وألق نظرة على الأخطاء التي قد تظهر. (قد تجد بعض الأخطاء في ملف السجل)'; $a->strings['The worker was never executed. Please check your database structure!'] = 'لم يتم تنفيذ المهمة أبداً. يرجى التحقق من بنية قاعدة البيانات!'; $a->strings['The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings.'] = 'تنفيذ آخر مهمة كان على %s UTC. هذا أقدم من ساعة. يرجى التحقق من إعدادات crontab.'; -$a->strings['The logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'لا يمكن استخدام ملف السجل \'\'%s\'. لا يمكن كتابة السجلات (خطأ: \'%s\')'; -$a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'لا يمكن استخدام ملف السجل الخاص بالتنقيح \'%s\'. لا يمكن كتابة السجلات (خطأ: \'%s\')'; -$a->strings['Normal Account'] = 'حساب عادي'; -$a->strings['Public Forum Account'] = 'حساب منتدى عمومي'; -$a->strings['Blog Account'] = 'حساب مدونة'; -$a->strings['Private Forum Account'] = 'حساب منتدى خاص'; $a->strings['Message queues'] = 'طوابير الرسائل'; $a->strings['Server Settings'] = 'إعدادات الخادم'; -$a->strings['Registered users'] = 'الأعضاء المسجلون'; -$a->strings['Pending registrations'] = 'التسجيلات المعلقة'; $a->strings['Version'] = 'الإصدار'; $a->strings['Active addons'] = 'الإضافات النشطة'; $a->strings['Theme %s disabled.'] = 'سمة %s معطلة.'; @@ -1488,70 +1061,6 @@ $a->strings['Display Privacy Statement'] = 'اعرض بيان الخصوصية'; $a->strings['Privacy Statement Preview'] = 'اعرض بيان الخصوصية'; $a->strings['The Terms of Service'] = 'شروط الخدمة'; $a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = 'أدخل شروط الخدمة لعقدتك هنا. يمكنك استخدام BBCode. يجب أن تكون عناوين الأقسام [h2] أو أدناه.'; -$a->strings['%s user blocked'] = [ - 0 => 'لم يحجب أي مستخدم %s', - 1 => 'حُجب مستخدم واحد %s', - 2 => 'حُجب مستخدم واحد %s', - 3 => 'حُجب %s مستخدمين', - 4 => 'حُجب %s مستخدما', - 5 => 'حُجب %s مستخدم', -]; -$a->strings['You can\'t remove yourself'] = 'لا يمكنك إزالة نفسك'; -$a->strings['%s user deleted'] = [ - 0 => 'لا مستخدمين محذوفين %s', - 1 => 'مستخدم محذوف %s', - 2 => 'مستخدمان %s محذوفان', - 3 => '%s مستخدمين محذوفين', - 4 => '%s مستخدمًا محذوفًا', - 5 => '%s مستخدم محذوف', -]; -$a->strings['User "%s" deleted'] = 'حذف المستخدم "%s"'; -$a->strings['User "%s" blocked'] = 'حُجب المستخدم "%s"'; -$a->strings['Register date'] = 'تاريخ التسجيل'; -$a->strings['Last login'] = 'آخر ولوج'; -$a->strings['Last public item'] = 'آخر عنصر منشور'; -$a->strings['Active Accounts'] = 'الحسابات النشطة'; -$a->strings['User blocked'] = 'المستخدم محجوب'; -$a->strings['Site admin'] = 'مدير الموقع'; -$a->strings['Account expired'] = 'انتهت صلاحية الحساب'; -$a->strings['Create a new user'] = 'أنشئ مستخدمًا جديدًا'; -$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'سيُحذف المستخدمون المحددون!\n\nكل ما نشره هؤلاء على هذا الموقع سيُحذف نهائيًا!\n\nهل أنت متأكد؟'; -$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'سيُحذف المستخدم {0}!\n\nكل ما نشره على هذا الموقع سيُحذف نهائيًا!\n\nهل أنت متأكد؟'; -$a->strings['%s user unblocked'] = [ - 0 => 'لم يُرفع الحجب عن أي مستخدم %s', - 1 => 'رُفع الحجب عن مستخدم واحد %s', - 2 => 'رُفع الحجب عن مستخدمين %s', - 3 => 'رُفع الحجب عن %s مستخدمين', - 4 => 'رُفع الحجب عن %s مستخدما', - 5 => 'رُفع الحجب عن %s مستخدم', -]; -$a->strings['User "%s" unblocked'] = 'رُفع الحجب عن المستخدم "%s"'; -$a->strings['Blocked Users'] = 'المستخدمون المحجوبون'; -$a->strings['New User'] = 'مستخدم جديد'; -$a->strings['Add User'] = 'أضف مستخدم'; -$a->strings['Name of the new user.'] = 'اسم المستخدم الجديد.'; -$a->strings['Nickname'] = 'اللقب'; -$a->strings['Nickname of the new user.'] = 'لقب المستخدم الجديد.'; -$a->strings['Email address of the new user.'] = 'عنوان البريد الإلكتروني للمستخدم للجديد.'; -$a->strings['Users awaiting permanent deletion'] = 'مستخدمون في انتظار الحذف الدائم'; -$a->strings['Permanent deletion'] = 'حذف نهائي'; -$a->strings['Users'] = 'المستخدمون'; -$a->strings['User waiting for permanent deletion'] = 'مستخدم ينتظر الحذف الكلي لحسابه'; -$a->strings['%s registration revoked'] = [ - 0 => 'لم يجهض أي تسجيل %s', - 1 => 'أجهض تسجيل %s', - 2 => 'أجهض تسجيلان %s', - 3 => 'أجهظت %s تسجيلات', - 4 => 'أجهض %s تسجيلًا', - 5 => 'أجهض %s تسجيل', -]; -$a->strings['Account approved.'] = 'قُبل الحساب.'; -$a->strings['Registration revoked'] = 'أجهض التسجيل'; -$a->strings['User registrations awaiting review'] = 'تسجيلات تنتظر المعاينة'; -$a->strings['Request date'] = 'تاريخ الطلب'; -$a->strings['No registrations.'] = 'لا توجد تسجيلات.'; -$a->strings['Note from the user'] = 'ملاحظة من المستخدم'; -$a->strings['Deny'] = 'رفض'; $a->strings['Missing parameters'] = 'معطيات مفقودة'; $a->strings['Posts from %s can\'t be shared'] = 'لا تمكن مشاركة مشاركات %s'; $a->strings['Posts from %s can\'t be unshared'] = 'لا يمكن إلغاء مشاركة مشاركات %s'; @@ -1568,9 +1077,6 @@ $a->strings['Database'] = 'قاعدة بيانات'; $a->strings['DB updates'] = 'تحديثات قاعدة البيانات'; $a->strings['Inspect Deferred Workers'] = 'فحص المهام المؤجلة'; $a->strings['Inspect worker Queue'] = 'فحص طابور المهام'; -$a->strings['Tools'] = 'أدوات'; -$a->strings['Contact Blocklist'] = 'قائمة المتراسلين المحظورين'; -$a->strings['Server Blocklist'] = 'قائمة الخوادم المحظورة'; $a->strings['Diagnostics'] = 'التشخيصات'; $a->strings['PHP Info'] = 'معلومات الـPHP'; $a->strings['check webfinger'] = 'تحقق من بصمة الويب'; @@ -1594,23 +1100,53 @@ $a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = 4 => 'رُفضت المشاركة. تجاوزت الحد الأسبوعي وهو %d مشاركة.', 5 => 'رُفضت المشاركة. تجاوزت الحد الأسبوعي وهو %d مشاركة.', ]; -$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = 'رُفضت المشاركة. تجاوزت الحد الشهري وهو %d مشاركة.'; +$a->strings['Users'] = 'المستخدمون'; +$a->strings['Tools'] = 'أدوات'; +$a->strings['Contact Blocklist'] = 'قائمة المتراسلين المحظورين'; +$a->strings['Server Blocklist'] = 'قائمة الخوادم المحظورة'; +$a->strings['Delete Item'] = 'احذف عنصر'; +$a->strings['Item Source'] = 'مصدر العنصر'; $a->strings['Profile Details'] = 'تفاصيل الملف الشخصي'; $a->strings['Only You Can See This'] = 'فقط أنت من يمكنه رؤية هذا'; $a->strings['Scheduled Posts'] = 'المشاركات المبرمجة'; $a->strings['Posts that are scheduled for publishing'] = 'المشاركات المقرر نشرها'; $a->strings['Tips for New Members'] = 'تلميحات للأعضاء الجدد'; $a->strings['People Search - %s'] = 'البحث عن أشخاص - %s'; -$a->strings['Forum Search - %s'] = 'البحث عن منتديات - %s'; +$a->strings['No matches'] = 'لا تطابق'; $a->strings['Account'] = 'الحساب'; $a->strings['Two-factor authentication'] = 'الاستيثاق بعاملَيْن'; $a->strings['Display'] = 'العرض'; +$a->strings['Social Networks'] = 'الشبكات الاجتماعية'; $a->strings['Manage Accounts'] = 'إدارة الحسابات'; $a->strings['Connected apps'] = 'التطبيقات المتصلة'; $a->strings['Export personal data'] = 'تصدير البيانات الشخصية'; $a->strings['Remove account'] = 'أزل الحساب'; $a->strings['This page is missing a url parameter.'] = 'هذه الصفحة تفتقد معطى للرابط.'; $a->strings['The post was created'] = 'أُنشأت المشاركة'; +$a->strings['Failed to remove event'] = 'فشلت إزالة الحدث'; +$a->strings['Event can not end before it has started.'] = 'لا يمكن أن ينتهي الحدث قبل أن يبدأ.'; +$a->strings['Event title and start time are required.'] = 'عنوان الحدث و وقت بدئه إلزاميان.'; +$a->strings['Starting date and Title are required.'] = 'تاريخ البدء والعنوان إلزاميان.'; +$a->strings['Event Starts:'] = 'يبدأ الحدث في:'; +$a->strings['Required'] = 'إلزامي'; +$a->strings['Finish date/time is not known or not relevant'] = 'وقت\تاريخ الانتهاء مجهول أو ليس له صلة'; +$a->strings['Event Finishes:'] = 'ينتهي الحدث في:'; +$a->strings['Share this event'] = 'شارك هذا الحدث'; +$a->strings['Basic'] = 'أساسي'; +$a->strings['This calendar format is not supported'] = 'تنسيق هذا التقويم غير مدعوم'; +$a->strings['No exportable data found'] = 'لم يُعثر على بيانات قابلة للتصدير'; +$a->strings['calendar'] = 'تقويم'; +$a->strings['Events'] = 'الأحداث'; +$a->strings['View'] = 'اعرض'; +$a->strings['Create New Event'] = 'أنشئ حدثاً جديدًا'; +$a->strings['list'] = 'قائمة'; +$a->strings['Contact not found.'] = 'لم يُعثر على المتراسل.'; +$a->strings['Invalid contact.'] = 'متراسل غير صالح.'; +$a->strings['Contact is deleted.'] = 'حُذف المتراسل.'; +$a->strings['Bad request.'] = 'طلب خاطئ.'; +$a->strings['Filter'] = 'رشّح'; +$a->strings['Members'] = 'الأعضاء'; +$a->strings['Click on a contact to add or remove.'] = 'أنقر على المتراسل لإضافته أو حذفه.'; $a->strings['%d contact edited.'] = [ 0 => 'لم يحُرر أي متراسل %d.', 1 => 'حُرر متراسل واحد %d.', @@ -1620,7 +1156,9 @@ $a->strings['%d contact edited.'] = [ 5 => 'حُرر %d متراسل.', ]; $a->strings['Show all contacts'] = 'أظهِر كل المتراسلين'; +$a->strings['Pending'] = 'معلق'; $a->strings['Only show pending contacts'] = 'أظهِر المتراسلين المعلقين'; +$a->strings['Blocked'] = 'محجوب'; $a->strings['Only show blocked contacts'] = 'أظهِر المتراسلين المحجوبين فقط'; $a->strings['Ignored'] = 'مُتجاهَل'; $a->strings['Only show ignored contacts'] = 'أظهِر المتراسلين المتجاهلين فقط'; @@ -1628,10 +1166,10 @@ $a->strings['Archived'] = 'مؤرشف'; $a->strings['Only show archived contacts'] = 'أظهِر المتراسلين المؤرشفين فقط'; $a->strings['Hidden'] = '‮مخفي'; $a->strings['Only show hidden contacts'] = 'أظهِر المتراسلين المخفيين فقط'; -$a->strings['Organize your contact groups'] = 'نظّم مجموعات متراسليك'; $a->strings['Search your contacts'] = 'ابحث في متراسليك'; $a->strings['Results for: %s'] = 'نتائج: %s'; $a->strings['Update'] = 'حدّث'; +$a->strings['Unblock'] = 'ارفع الحجب'; $a->strings['Unignore'] = 'ألغي التجاهل'; $a->strings['Batch Actions'] = 'إجراءات متعددة'; $a->strings['Conversations started by this contact'] = 'بدأ هذا المتراسل للمحادثة'; @@ -1647,11 +1185,11 @@ $a->strings['Pending incoming contact request'] = 'طلب تراسل وارد م $a->strings['Visit %s\'s profile [%s]'] = 'زر ملف %s الشخصي [%s]'; $a->strings['Contact update failed.'] = 'فشل تحديث المتراسل.'; $a->strings['Return to contact editor'] = 'عُد لمحرر المتراسلين'; +$a->strings['Name'] = 'الاسم'; $a->strings['Account Nickname'] = 'لقب الحساب'; $a->strings['Account URL'] = 'رابط الحساب'; $a->strings['Poll/Feed URL'] = 'رابط استطلاع/تغذية'; $a->strings['New photo from this URL'] = 'صورة من هذا الرابط'; -$a->strings['Invalid contact.'] = 'متراسل غير صالح.'; $a->strings['No known contacts.'] = 'لا يوجد متراسل معروف.'; $a->strings['No common contacts.'] = 'لا متراسلين مشترَكين.'; $a->strings['Follower (%s)'] = [ @@ -1696,9 +1234,22 @@ $a->strings['Contact (%s)'] = [ 4 => '%s متراسلا', 5 => '%s متراسل', ]; -$a->strings['You must be logged in to use this module.'] = 'يجب عليك الولوج لاستخدام هذه الوحدة.'; -$a->strings['Choose what you wish to do to recipient'] = 'اختر ما تريد فعله للمتلقي'; -$a->strings['Make this post private'] = 'اجعل هذه المشاركة خاصة'; +$a->strings['Access denied.'] = 'رُفض الوصول.'; +$a->strings['Submit Request'] = 'أرسل الطلب'; +$a->strings['You already added this contact.'] = 'أضفت هذا المتراسل سلفًا.'; +$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.'] = 'دعم دياسبورا غير مفعل. لا يمكن إضافة المتراسل.'; +$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'دعم OStatus غير مفعل. لا يمكن إضافة المتراسل.'; +$a->strings['Please answer the following:'] = 'من فضلك أجب على ما يلي:'; +$a->strings['Your Identity Address:'] = 'عنوان معرّفك:'; +$a->strings['Profile URL'] = 'رابط الملف الشخصي'; +$a->strings['Tags:'] = 'الوسوم:'; +$a->strings['%s knows you'] = '%s يعرفك'; +$a->strings['Add a personal note:'] = 'أضف ملاحظة شخصية:'; +$a->strings['The contact could not be added.'] = 'تعذر إضافة المتراسل.'; +$a->strings['Invalid request.'] = 'طلب غير صالح.'; +$a->strings['No keywords to match. Please add keywords to your profile.'] = 'لا توجد كلمات مفتاحية لمطابقتها. من فضلك أضف كلمات مفتاحية إلى ملفك الشخصي.'; +$a->strings['Profile Match'] = 'الملفات الشخصية المطابقة'; $a->strings['Failed to update contact record.'] = 'فشل تحديث سجل التراسل.'; $a->strings['Contact has been unblocked'] = 'رُفع الحجب عن المتراسل'; $a->strings['Contact has been blocked'] = 'حُجب المتراسل'; @@ -1730,10 +1281,10 @@ $a->strings['View conversations'] = 'اعرض المحادثات'; $a->strings['Last update:'] = 'آخر تحديث:'; $a->strings['Update public posts'] = 'حدّث المشاركات العلنية'; $a->strings['Update now'] = 'حدّث الآن'; +$a->strings['Awaiting connection acknowledge'] = 'ينتظر قبول الاتصال'; $a->strings['Currently blocked'] = 'محجوب حاليا'; $a->strings['Currently ignored'] = 'متجاهَل حاليا'; $a->strings['Currently archived'] = 'مُؤرشف حاليا'; -$a->strings['Awaiting connection acknowledge'] = 'ينتظر قبول الاتصال'; $a->strings['Hide this contact from others'] = 'اخف هذا المتراسل عن الآخرين'; $a->strings['Replies/likes to your public posts may still be visible'] = 'قد تبقى الإعجابات/الردود على مشاركاتك مرئية'; $a->strings['Notification for new posts'] = 'تنبيه للمشاركات الجديدة'; @@ -1741,44 +1292,45 @@ $a->strings['Send a notification of every new post of this contact'] = 'أرسل $a->strings['Keyword Deny List'] = 'قائمة الكلمات المفتاحية المرفوضة'; $a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'قائمة بالكلمات المفتاحية مفصولة بفواصل والتي لا تخول الى وسوم عند اختيار "اجلب المعلومات والكلمات المفتاحية"'; $a->strings['Actions'] = 'الإجراءات'; +$a->strings['Status'] = 'الحالة'; $a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'علّم هذا المتراسل على أنه remote_self ، سيقوم فرنديكا بإعادة نشر المدخلات الجديدة لهذا المتراسل.'; $a->strings['Refetch contact data'] = 'أعد جلب بيانات المتراسل'; $a->strings['Toggle Blocked status'] = 'بدّل حالة الحجب'; $a->strings['Toggle Ignored status'] = 'بدّل حالة التجاهل'; $a->strings['Revoke Follow'] = 'أبطل المتابعة'; $a->strings['Revoke the follow from this contact'] = 'أبطل المتابعة من هذا المتراسل'; +$a->strings['Bad Request.'] = 'طلب خاطئ.'; $a->strings['Unknown contact.'] = 'متراسل مجهول.'; -$a->strings['Contact is deleted.'] = 'حُذف المتراسل.'; $a->strings['Contact is being deleted.'] = 'المتراسل يحذف.'; $a->strings['Follow was successfully revoked.'] = 'نجح إبطال المتابعة.'; $a->strings['Do you really want to revoke this contact\'s follow? This cannot be undone and they will have to manually follow you back again.'] = 'هل تريد إلغاء متابعة هذا المتراسل لك؟ لا يمكن التراجع عن هذا الإجراء وسيتحتم عليهم متابعتك يدوياً.'; $a->strings['Yes'] = 'نعم'; -$a->strings['Local Community'] = 'المجتمع المحلي'; -$a->strings['Posts from local users on this server'] = 'مشاركات مستخدمي هذا الخادم'; -$a->strings['Global Community'] = 'المجتمع العالمي'; -$a->strings['Posts from users of the whole federated network'] = 'مشركات من الشبكة الموحدة'; -$a->strings['Own Contacts'] = 'مشاركات متراسليك'; -$a->strings['Include'] = 'تضمين'; -$a->strings['Hide'] = 'اخف'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'لا توجد اقتراحات متاحة. إذا كان هذا الموقع جديد، من فضلك أعد المحاولة في غضون 24 ساعة.'; +$a->strings['You aren\'t following this contact.'] = 'أنت لا تتابع هذا المتراسل.'; +$a->strings['Unfollowing is currently not supported by your network.'] = 'شبكتك لا تدعم إلغاء المتابعة حاليا.'; +$a->strings['Disconnect/Unfollow'] = 'ألغ الاقتران/المتابعة'; +$a->strings['Contact was successfully unfollowed'] = 'نجح إلغاء متابعة المتراسل'; +$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'يتعذر إلغاء متابعة هذا المتراسل، يرجى الاتصال بمدير الموقع'; $a->strings['No results.'] = 'لا نتائج.'; $a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'يسرد هذا الدفق المجتمعي كافة المحادثات العامة التي يتلقاها الخادم. هذا لا يمثل الآراء الشخصية للمستخدمين المحليين.'; $a->strings['Not available.'] = 'غير متاح.'; -$a->strings['No such group'] = 'لا توجد مثل هذه المجموعة'; -$a->strings['Group: %s'] = 'المجموعة: %s'; -$a->strings['Latest Activity'] = 'آخر نشاط'; -$a->strings['Sort by latest activity'] = 'رتب حسب آخر نشاط'; -$a->strings['Latest Posts'] = 'آخر المشاركات'; -$a->strings['Sort by post received date'] = 'رتب حسب تاريخ استلام المشاركة'; -$a->strings['Personal'] = 'نشاطي'; -$a->strings['Posts that mention or involve you'] = 'المشاركات التي تذكرك أو تتعلق بك'; -$a->strings['Starred'] = 'المفضلة'; -$a->strings['Favourite Posts'] = 'المشاركات المفضلة'; +$a->strings['Own Contacts'] = 'مشاركات متراسليك'; +$a->strings['Include'] = 'تضمين'; +$a->strings['Hide'] = 'اخف'; $a->strings['Credits'] = 'إشادات'; $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->strings['Formatted'] = 'مهيأ'; $a->strings['Activity'] = 'النشاط'; $a->strings['Object data'] = 'بيانات الكائن'; $a->strings['Result Item'] = 'النتيجة'; +$a->strings['Error'] = [ + 0 => 'لا أخطاء', + 1 => 'خطأ', + 2 => 'خطآن', + 3 => 'أخطاء', + 4 => 'خطأً', + 5 => 'خطأٍ', +]; $a->strings['Source activity'] = 'نشاط المصدر'; $a->strings['Source input'] = 'الدخل المصدري'; $a->strings['BBCode::toPlaintext'] = 'BBCode::toPlaintext'; @@ -1832,8 +1384,8 @@ $a->strings['No entries (some entries may be hidden).'] = 'لا توجد مدخ $a->strings['Find on this site'] = 'ابحث في هذا الموقع'; $a->strings['Results for:'] = 'نتائج:'; $a->strings['Site Directory'] = 'دليل الموقع'; -$a->strings['Item was not removed'] = 'لم يُزل العنصر'; $a->strings['Item was not deleted'] = 'لم يُحذف العنصر'; +$a->strings['Item was not removed'] = 'لم يُزل العنصر'; $a->strings['- select -'] = '- اختر -'; $a->strings['Suggested contact not found.'] = 'المتراسل المقترح غير موجود.'; $a->strings['Friend suggestion sent.'] = 'أُرسل إقتراح الصداقة.'; @@ -1843,31 +1395,12 @@ $a->strings['Installed addons/apps:'] = 'التطبيقات/الإضافات ا $a->strings['No installed addons/apps'] = 'لم تُثبت أي تطبيقات/إضافات'; $a->strings['Read about the Terms of Service of this node.'] = 'اقرأ عن شروط الخدمة لهذه العقدة.'; $a->strings['On this server the following remote servers are blocked.'] = 'الخوادم البعيدة المحجوبة عن هذا الموقع.'; +$a->strings['Reason for the block'] = 'سبب الحجب'; $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.'] = 'هذا فرانديكا إصدار %s يعمل على موقع %s. إصدار قاعدة البيانات هو %s، وإصدار تحديث البيانات هو %s.'; $a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'رجاء زر Friendi.ca لمعرفة المزيد عن مشروع فرَندِكا.'; $a->strings['Bug reports and issues: please visit'] = 'لبلاغات العلل والمشاكل: زر'; $a->strings['the bugtracker at github'] = 'متعقب العلل على غيت-هب'; $a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = 'للاقتراحات، أو الإشادة ، إلخ.- رجاءً راسل "info" at "friendi - dot - ca'; -$a->strings['Could not create group.'] = 'تعذّر إنشاء المجموعة.'; -$a->strings['Group not found.'] = 'لم يُعثر على المجموعة.'; -$a->strings['Group name was not changed.'] = 'لم يُغير اسم المجموعة.'; -$a->strings['Unknown group.'] = 'مجموعة مجهولة.'; -$a->strings['Unable to add the contact to the group.'] = 'تعذرت إضافة المتراسل إلى المجموعة.'; -$a->strings['Contact successfully added to group.'] = 'أُضيف المتراسل الى المجموعة بنجاح.'; -$a->strings['Unable to remove the contact from the group.'] = 'تعذرت إزالة المتراسل من المجموعة.'; -$a->strings['Contact successfully removed from group.'] = 'أُزيل المتراسل من المجموعة بنجاح.'; -$a->strings['Bad request.'] = 'طلب خاطئ.'; -$a->strings['Save Group'] = 'احفظ المجموعة'; -$a->strings['Filter'] = 'رشّح'; -$a->strings['Create a group of contacts/friends.'] = 'أنشئ مجموعة من المتراسلين/الأصدقاء.'; -$a->strings['Unable to remove group.'] = 'تعذر حذف المجموعة.'; -$a->strings['Delete Group'] = 'احذف المجموعة'; -$a->strings['Edit Group Name'] = 'عدّل اسم المجموعة'; -$a->strings['Members'] = 'الأعضاء'; -$a->strings['Group is empty'] = 'المجموعة فارغة'; -$a->strings['Remove contact from group'] = 'احذف المتراسل من المجموعة'; -$a->strings['Click on a contact to add or remove.'] = 'أنقر على المتراسل لإضافته أو حذفه.'; -$a->strings['Add contact to group'] = 'أضف المتراسل لمجموعة'; $a->strings['No profile'] = 'لا ملفًا شخصيًا'; $a->strings['Method Not Allowed.'] = 'الطريقة غير مسموح بها.'; $a->strings['Help:'] = 'مساعدة:'; @@ -1877,13 +1410,11 @@ $a->strings['System check'] = 'التحقق من النظام'; $a->strings['Requirement not satisfied'] = 'لم يستوف المتطلبات'; $a->strings['Optional requirement not satisfied'] = 'لم يستوف المتطلبات الاختيارية'; $a->strings['OK'] = 'موافق'; +$a->strings['Next'] = 'التالي'; $a->strings['Check again'] = 'تحقق مجددا'; $a->strings['Base settings'] = 'الإعدادات الأساسية'; -$a->strings['Host name'] = 'أسم المضيف'; -$a->strings['Overwrite this field in case the determinated hostname isn\'t right, otherweise leave it as is.'] = 'استبدل هذا الحقل في حالة عدم صحة اسم المضيف المحدد، وإلا تركه كما هو.'; $a->strings['Base path to installation'] = 'المسار الأساسي للتثبيت'; $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.'] = 'إذا لم يتمكن النظام من اكتشاف مسار التثبيت ، أدخل المسار الصحيح هنا. يجب استخدام هذا الإعداد فقط إذا كان لديك وصول مقيد إلى نظامك وتستخدم رابط ليّن إلى دليل الخادم.'; -$a->strings['Sub path of the URL'] = 'المسار الفرعي للرابط'; $a->strings['Database connection'] = 'اتصال قاعدة البيانات'; $a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'لتثبيت فرنديكا، نحتاج إلى معرفة كيفية الاتصال بقاعدة البيانات.'; $a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'يرجى الاتصال بموفر الاستضافة أو مدير الموقع إذا كان لديك أسئلة حول هذه الإعدادات.'; @@ -1929,10 +1460,186 @@ $a->strings['Compose new post'] = 'أنشئ مشاركة جديدة'; $a->strings['Visibility'] = 'الظّهور'; $a->strings['Clear the location'] = 'امسح الموقع الجغرافي'; $a->strings['Location services are unavailable on your device'] = 'خدمات الموقع الجغرافي غير متاحة على جهازك'; +$a->strings['The feed for this item is unavailable.'] = 'تغذية هذا العنصر غير متوفرة.'; $a->strings['Unable to follow this item.'] = 'تتعذر متابعة هذا العنصر.'; $a->strings['System down for maintenance'] = 'النظام مغلق للصيانة'; $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.'] = 'هذه العقدة في وضع الصيانة حاليًا، وهذا إما تلقائيا بسبب التحديث أو يدويا من قبل مدير العقدة. يرجى العودة في غضون بضع دقائق.'; $a->strings['A Decentralized Social Network'] = 'شبكة اجتماعية لامركزية'; +$a->strings['Files'] = 'الملفات'; +$a->strings['Upload'] = 'ارفع'; +$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'عذراً، ربّما يكون الرفع أكبر من ما يسمح به ضبط PHP'; +$a->strings['Or - did you try to upload an empty file?'] = 'أو - هل حاولت تحميل ملف فارغ؟'; +$a->strings['File exceeds size limit of %s'] = 'تجاوز الملف الحد الأقصى للحجم وهو %s'; +$a->strings['File upload failed.'] = 'فشل رفع الملف.'; +$a->strings['Unable to process image.'] = 'تعذرت معالجة الصورة.'; +$a->strings['Image upload failed.'] = 'فشل رفع الصورة.'; +$a->strings['List of all users'] = 'قائمة المستخدمين'; +$a->strings['Active'] = 'نشط'; +$a->strings['List of active accounts'] = 'قائمة الحسابات النشطة'; +$a->strings['List of pending registrations'] = 'قائمة التسجيلات المعلقة'; +$a->strings['List of blocked users'] = 'قائمة المستخدمين المحجوبين'; +$a->strings['Deleted'] = 'حُذف'; +$a->strings['List of pending user deletions'] = 'قائمة الحذف المعلق للمستخدمين'; +$a->strings['Normal Account Page'] = 'صفحة حساب عادي'; +$a->strings['Soapbox Page'] = 'صفحة سياسي'; +$a->strings['Automatic Friend Page'] = 'صفحة اشترك تلقائي'; +$a->strings['Personal Page'] = 'صفحة شخصية'; +$a->strings['Organisation Page'] = 'صفحة منظمة'; +$a->strings['News Page'] = 'صفحة إخبارية'; +$a->strings['Relay'] = 'مُرحِل'; +$a->strings['%s contact unblocked'] = [ + 0 => 'لم يُرفع الحجب عن مستخدم %s', + 1 => 'رُفع الحجب عن مستخدم %s', + 2 => 'رُفع الحجب عن مستخدمَين %s', + 3 => 'رُفع الحجب عن %s مستخدمين', + 4 => 'رُفع الحجب عن %s مستخدمًا', + 5 => 'رُفع الحجب عن %s مستخدم', +]; +$a->strings['Remote Contact Blocklist'] = 'قائمة المتراسلين البِعاد المحظورين'; +$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'هذه الصفحة تمنع رسائل المستخدمين البِعاد من الوصول لعقدتك.'; +$a->strings['Block Remote Contact'] = 'احجب مستخدمًا بعيدًا'; +$a->strings['select all'] = 'اختر الكل'; +$a->strings['select none'] = 'ألغ الاختيار'; +$a->strings['No remote contact is blocked from this node.'] = 'لم يُحجب متراسل بعيد من هذه العقدة.'; +$a->strings['Blocked Remote Contacts'] = 'المستخدمون البِعاد المحجبون'; +$a->strings['Block New Remote Contact'] = 'احجب مستخدمًا بعيدًا'; +$a->strings['Photo'] = 'صورة'; +$a->strings['Reason'] = 'السبب'; +$a->strings['%s total blocked contact'] = [ + 0 => 'لم يحجب أي متراسل %s', + 1 => 'متراسل%s محجوب', + 2 => 'متراسلان %s محجوبان', + 3 => '%s متراسلين محجوبين', + 4 => '%s متراسلًا محجوبًا', + 5 => '%s متراسل محجوب', +]; +$a->strings['URL of the remote contact to block.'] = 'عنوان المتراسل البعيد المراد حجبه.'; +$a->strings['Also purge contact'] = 'امسح المتراسل أيضًا'; +$a->strings['Removes all content related to this contact from the node. Keeps the contact record. This action cannot be undone.'] = 'يزيل جميع المحتويات المتعلقة بهذا المتراسل من العقدة. ويحتفظ بسجل للمتراسل. لا يمكن التراجع عن هذا الإجراء.'; +$a->strings['Block Reason'] = 'سبب الحجب'; +$a->strings['Server domain pattern added to the blocklist.'] = 'أُضيفت صيغة النطاق لقائمة الحجب.'; +$a->strings['← Return to the list'] = '→رجوع للقائمة'; +$a->strings['Block A New Server Domain Pattern'] = 'احجب صيغة نطاق جديدة'; +$a->strings['

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

    +
      +
    • *: Any number of characters
    • +
    • ?: Any single character
    • +
    '] = '

    تنسيق صيّغ النطاق غير حساس لحالة الأحرف ويستخدم محارف بَدلِ الصدفة، بما في ذلك المحارف التالية:

    +
      +
    • *: أي عدد من المحارف
    • +
    • ?: محرف واحد
    • +
    '; +$a->strings['Check pattern'] = 'تحقق من الصيغة'; +$a->strings['Matching known servers'] = 'يطابق الخوادم المعروفة'; +$a->strings['Server Name'] = 'اسم الخادم'; +$a->strings['Server Domain'] = 'نطاق الخادم'; +$a->strings['Known Contacts'] = 'المتراسلون المعروفون'; +$a->strings['%d known server'] = [ + 0 => 'لا توجد خوادم معروفة %d', + 1 => 'خادم %d معروف', + 2 => 'خادمان %d معروفان', + 3 => '%d خوادم معروفة', + 4 => '%d خادمًا معروفًا', + 5 => '%d خادمٍ معروفٍ', +]; +$a->strings['Add pattern to the blocklist'] = 'أضف المرشِّح لقائمة الحجب'; +$a->strings['Server Domain Pattern'] = 'صيغة النطاق'; +$a->strings['The domain pattern of the new server to add to the blocklist. Do not include the protocol.'] = 'صيغة النطاق المراد إضافتها إلى قائمة الحجب. لا تُضمّن الميفاق.'; +$a->strings['Purge server'] = 'امسح الخادم'; +$a->strings['Block reason'] = 'سبب الحجب'; +$a->strings['The reason why you blocked this server domain pattern. This reason will be shown publicly in the server information page.'] = 'سبب حجب صيغة نطاق الخادم. سوف يظهر علنًا في صفحة معلومات الخادم.'; +$a->strings['Blocked server domain pattern'] = 'صيّغ النطاقات المحجوبة'; +$a->strings['Delete server domain pattern'] = 'احذف صيغة النطاق'; +$a->strings['Check to delete this entry from the blocklist'] = 'أشّر لحذف المدخل من قائمة الحجب'; +$a->strings['Server Domain Pattern Blocklist'] = 'قائمة الحجب لصيّغ النطاق'; +$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.'] = 'يمكن استخدام هذه الصفحة لتعريف صيّغ النطاقات لححب الخوادم من الشبكة الموحدة لمنع تفاعلها مع عقدتك. لكل صيغة نطاق يجب عليك تقديم سبب الحجب.'; +$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.'] = 'ستتاح قائمة صيّغ النطاقات الخادم المحجوبة في صفحة /friendica بحيث يمكن للمستخدمين التحقق من الخوادم اذا واجهوا مشكلة في الاتصال بها.'; +$a->strings['Add new entry to the blocklist'] = 'أضف مُدخلًا جديد إلى القائمة الحجب'; +$a->strings['Save changes to the blocklist'] = 'احفظ التغييرات في قائمة الحجب'; +$a->strings['Current Entries in the Blocklist'] = 'المدخلات الموجودة في قائمة الحجب'; +$a->strings['Delete entry from the blocklist'] = 'أزل مدخلًا من قائمة الحجب'; +$a->strings['Delete entry from the blocklist?'] = 'أتريد إزالة المدخل من قائمة الحجب؟'; +$a->strings['Item marked for deletion.'] = 'سيُحذف العنصر.'; +$a->strings['Delete this Item'] = 'احذف العنصر'; +$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.'] = 'في هذه الصفحة يمكنك حذف عنصر من عقدتك. إذا كان العنصر هو المشاركة الأصلية، سيحذف النقاش بأكمله.'; +$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.'] = 'يجب أن تعرف GUID الخاص بالعنصر. يمكنك العثور عليه عن طريق اختيار العنصر ثم قراءة عنوان الرابط. الجزء الأخير من الرابط هو GUID. مثال: http://example.com/display/123456 حيث GUID هو 123456.'; +$a->strings['Item Id'] = 'معرّف العنصر'; +$a->strings['Item URI'] = 'رابط العنصر'; +$a->strings['Terms'] = 'الشروط'; +$a->strings['Tag'] = 'وسم'; +$a->strings['Type'] = 'نوع'; +$a->strings['Term'] = 'مصطلح'; +$a->strings['URL'] = 'رابط'; +$a->strings['Mention'] = 'ذكر'; +$a->strings['Implicit Mention'] = 'ذِكر صريح'; +$a->strings['Item not found'] = 'لم يُعثر على العنصر'; +$a->strings['Normal Account'] = 'حساب عادي'; +$a->strings['Blog Account'] = 'حساب مدونة'; +$a->strings['Registered users'] = 'الأعضاء المسجلون'; +$a->strings['Pending registrations'] = 'التسجيلات المعلقة'; +$a->strings['%s user blocked'] = [ + 0 => 'لم يحجب أي مستخدم %s', + 1 => 'حُجب مستخدم واحد %s', + 2 => 'حُجب مستخدم واحد %s', + 3 => 'حُجب %s مستخدمين', + 4 => 'حُجب %s مستخدما', + 5 => 'حُجب %s مستخدم', +]; +$a->strings['You can\'t remove yourself'] = 'لا يمكنك إزالة نفسك'; +$a->strings['%s user deleted'] = [ + 0 => 'لا مستخدمين محذوفين %s', + 1 => 'مستخدم محذوف %s', + 2 => 'مستخدمان %s محذوفان', + 3 => '%s مستخدمين محذوفين', + 4 => '%s مستخدمًا محذوفًا', + 5 => '%s مستخدم محذوف', +]; +$a->strings['User "%s" deleted'] = 'حذف المستخدم "%s"'; +$a->strings['User "%s" blocked'] = 'حُجب المستخدم "%s"'; +$a->strings['Register date'] = 'تاريخ التسجيل'; +$a->strings['Last login'] = 'آخر ولوج'; +$a->strings['Last public item'] = 'آخر عنصر منشور'; +$a->strings['Active Accounts'] = 'الحسابات النشطة'; +$a->strings['User blocked'] = 'المستخدم محجوب'; +$a->strings['Site admin'] = 'مدير الموقع'; +$a->strings['Account expired'] = 'انتهت صلاحية الحساب'; +$a->strings['Create a new user'] = 'أنشئ مستخدمًا جديدًا'; +$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'سيُحذف المستخدمون المحددون!\n\nكل ما نشره هؤلاء على هذا الموقع سيُحذف نهائيًا!\n\nهل أنت متأكد؟'; +$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'سيُحذف المستخدم {0}!\n\nكل ما نشره على هذا الموقع سيُحذف نهائيًا!\n\nهل أنت متأكد؟'; +$a->strings['%s user unblocked'] = [ + 0 => 'لم يُرفع الحجب عن أي مستخدم %s', + 1 => 'رُفع الحجب عن مستخدم واحد %s', + 2 => 'رُفع الحجب عن مستخدمين %s', + 3 => 'رُفع الحجب عن %s مستخدمين', + 4 => 'رُفع الحجب عن %s مستخدما', + 5 => 'رُفع الحجب عن %s مستخدم', +]; +$a->strings['User "%s" unblocked'] = 'رُفع الحجب عن المستخدم "%s"'; +$a->strings['Blocked Users'] = 'المستخدمون المحجوبون'; +$a->strings['New User'] = 'مستخدم جديد'; +$a->strings['Add User'] = 'أضف مستخدم'; +$a->strings['Name of the new user.'] = 'اسم المستخدم الجديد.'; +$a->strings['Nickname'] = 'اللقب'; +$a->strings['Nickname of the new user.'] = 'لقب المستخدم الجديد.'; +$a->strings['Email address of the new user.'] = 'عنوان البريد الإلكتروني للمستخدم للجديد.'; +$a->strings['Users awaiting permanent deletion'] = 'مستخدمون في انتظار الحذف الدائم'; +$a->strings['Permanent deletion'] = 'حذف نهائي'; +$a->strings['User waiting for permanent deletion'] = 'مستخدم ينتظر الحذف الكلي لحسابه'; +$a->strings['%s registration revoked'] = [ + 0 => 'لم يجهض أي تسجيل %s', + 1 => 'أجهض تسجيل %s', + 2 => 'أجهض تسجيلان %s', + 3 => 'أجهظت %s تسجيلات', + 4 => 'أجهض %s تسجيلًا', + 5 => 'أجهض %s تسجيل', +]; +$a->strings['Account approved.'] = 'قُبل الحساب.'; +$a->strings['Registration revoked'] = 'أجهض التسجيل'; +$a->strings['User registrations awaiting review'] = 'تسجيلات تنتظر المعاينة'; +$a->strings['Request date'] = 'تاريخ الطلب'; +$a->strings['No registrations.'] = 'لا توجد تسجيلات.'; +$a->strings['Note from the user'] = 'ملاحظة من المستخدم'; +$a->strings['Deny'] = 'رفض'; $a->strings['Show Ignored Requests'] = 'اظهر الطلبات المتجاهلة'; $a->strings['Hide Ignored Requests'] = 'اخف الطلبات المتجاهلة'; $a->strings['Notification type:'] = 'نوع التنبيه:'; @@ -1958,6 +1665,19 @@ $a->strings['Do you want to authorize this application to access your posts and $a->strings['Unsupported or missing response type'] = 'نوع الاستجابة غير مدعومة أو مفقودة'; $a->strings['Incomplete request data'] = 'بيانات الطلب غير كاملة'; $a->strings['Please copy the following authentication code into your application and close this window: %s'] = 'الرجاء نسخ رمز الاستيثاق إلى التطبيق وإغلاق هذه النافذة: %s'; +$a->strings['Resubscribing to OStatus contacts'] = 'يعيد الاشتراك في متراسلي OStatus'; +$a->strings['Keep this window open until done.'] = 'أبق هذه النافذة مفتوحة حتى ينتهي.'; +$a->strings['Subscribing to contacts'] = 'يشترك في متراسلين'; +$a->strings['No contact provided.'] = 'لم يُقدم متراسلين.'; +$a->strings['Couldn\'t fetch information for contact.'] = 'تعذر جلب معلومات المتراسل.'; +$a->strings['Couldn\'t fetch friends for contact.'] = 'تعذر جلب أصدقاء المتراسل.'; +$a->strings['Couldn\'t fetch following contacts.'] = 'تعذر جلب متابِعي المتراسل.'; +$a->strings['Couldn\'t fetch remote profile.'] = 'تعذر جلب الملف الشخصي البعيد.'; +$a->strings['Unsupported network'] = 'شبكة غير مدعومة'; +$a->strings['Done'] = 'تم'; +$a->strings['success'] = 'نجح'; +$a->strings['failed'] = 'فشل'; +$a->strings['ignored'] = 'متجاهل'; $a->strings['Wrong type "%s", expected one of: %s'] = 'نوع خاطئ "%s" ، يُتوقع أن يكون: %s'; $a->strings['Remote privacy information not available.'] = 'معلومات الخصوصية غير متوفرة.'; $a->strings['Visible to:'] = 'مرئي لـ:'; @@ -1967,7 +1687,25 @@ $a->strings['CC: %s
    '] = 'ووجه إلى:%s
    '; $a->strings['The Photo is not available.'] = 'الصورة غير متوفرة.'; $a->strings['The Photo with id %s is not available.'] = 'الصورة ذات المعرف %s غير متوفّرة.'; $a->strings['Invalid photo with id %s.'] = 'الصورة ذات المعرف %s غير صالحة.'; +$a->strings['Edit post'] = 'عدّل المشاركة'; +$a->strings['web link'] = 'رابط ويب'; +$a->strings['Insert video link'] = 'أدرج رابط فيديو'; +$a->strings['video link'] = 'رابط فيديو'; +$a->strings['Insert audio link'] = 'إدراج رابط ملف صوتي'; +$a->strings['audio link'] = 'رابط ملف صوتي'; +$a->strings['Remove Item Tag'] = 'أزل وسم العنصر'; +$a->strings['Select a tag to remove: '] = 'اختر الوسم لإزالته: '; +$a->strings['Remove'] = 'أزل'; $a->strings['No contacts.'] = 'لا متراسلين.'; +$a->strings['%s\'s timeline'] = 'الخط الزمني لـ %s'; +$a->strings['%s\'s posts'] = 'مشاركات %s'; +$a->strings['%s\'s comments'] = 'تعليقات %s'; +$a->strings['Image exceeds size limit of %s'] = 'تجاوزت الصورة الحد الأقصى للحجم وهو %s'; +$a->strings['Image upload didn\'t complete, please try again'] = 'لم يكتمل رفع الصورة، من فضلك أعد المحاولة'; +$a->strings['Image file is missing'] = 'ملف الصورة مفقود'; +$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'الخادم لا يقبل رفع ملفات جديدة، يرجى التواصل مع مدير الموقع'; +$a->strings['Image file is empty.'] = 'ملف الصورة فارغ.'; +$a->strings['View Album'] = 'اعرض الألبوم'; $a->strings['Profile not found.'] = 'لم يُعثر على الملف الشخصي.'; $a->strings['You\'re currently viewing your profile as %s Cancel'] = 'أنت حاليا تستعرض ملفك الشخصي كـ %s ألغ'; $a->strings['Full Name:'] = 'الاسم الكامل:'; @@ -1984,16 +1722,21 @@ $a->strings['%d year old'] = [ 4 => '%d سنة', 5 => '%d سنة', ]; -$a->strings['Forums:'] = 'المنتديات:'; +$a->strings['Description:'] = 'الوصف:'; $a->strings['View profile as:'] = 'اعرض الملف الشخصي ك:'; $a->strings['View as'] = 'اعرض ك'; -$a->strings['%s\'s timeline'] = 'الخط الزمني لـ %s'; -$a->strings['%s\'s posts'] = 'مشاركات %s'; -$a->strings['%s\'s comments'] = 'تعليقات %s'; +$a->strings['Profile unavailable.'] = 'الملف الشخصي غير متوفر.'; +$a->strings['The provided profile link doesn\'t seem to be valid'] = 'يبدو أنّ رابط الملف الشخصي غير صالح'; +$a->strings['Friend/Connection Request'] = 'طلب صداقة/اقتران'; +$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.'] = 'إن لم تكن عضواً في شبكة اجتماعية حرة، اتبع هذا الرابط للعثور على عقدة عمومية لفرَندِكا وانضم إلينا اليوم.'; $a->strings['Scheduled'] = 'مُبرمج'; $a->strings['Content'] = 'المحتوى'; $a->strings['Remove post'] = 'أزل المشاركة'; +$a->strings['Unable to check your home location.'] = 'تعذر التحقق من موقع منزلك.'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'تجاوزت عدد رسائل الحائط اليومية وهو %s. فشل إرسال الرسالة.'; +$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'إذا أردت تلقي رد من %s. تحقق أن إعدادات الخصوصية لموقعك تسمح بتلقي رسائل بريد من مصادر مجهولة.'; $a->strings['Only parent users can create additional accounts.'] = 'فقط المستخدمون الأولياء من يمكنهم إنشاء حسابات إضافية.'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'تجاوز هذا الموقع عدد التسجيلات اليومية المسموح بها. من فضلك حاول غدا.'; $a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'إذا كنت لا تعرف أو لا تريد استخدام OpenID، رجاء اترك هذا الحقل فارغاً واملأ بقية العناصر.'; $a->strings['Your OpenID (optional): '] = 'معرف OpenID (خياري): '; $a->strings['Include your profile in member directory?'] = 'أتريد نشر ملفك الشخصي في الدليل؟'; @@ -2006,6 +1749,7 @@ $a->strings['Please repeat your e-mail address:'] = 'رجاء أعد إدخال $a->strings['New Password:'] = 'كلمة المرور الجديدة:'; $a->strings['Confirm:'] = 'التأكيد:'; $a->strings['Choose a nickname: '] = 'اختر لقبًا: '; +$a->strings['Import'] = 'استورد'; $a->strings['Import your profile to this friendica instance'] = 'استورد ملفك الشخصي لهذا المثيل'; $a->strings['Parent Password:'] = 'كلمة المرور الولي:'; $a->strings['Please enter the password of the parent account to legitimize your request.'] = 'يرجى إدخال كلمة مرور الولي للمصادقة على طلبك.'; @@ -2017,10 +1761,7 @@ $a->strings['Registration successful. Please check your email for further instru $a->strings['Registration successful.'] = 'سجلتَ بنجاح.'; $a->strings['You have to leave a request note for the admin.'] = 'اترك طلب للمدير.'; $a->strings['Your registration is pending approval by the site owner.'] = 'في انتظار موافقة مالك الموقع لقبول تسجيلك.'; -$a->strings['Profile unavailable.'] = 'الملف الشخصي غير متوفر.'; -$a->strings['The provided profile link doesn\'t seem to be valid'] = 'يبدو أنّ رابط الملف الشخصي غير صالح'; -$a->strings['Friend/Connection Request'] = 'طلب صداقة/اقتران'; -$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.'] = 'إن لم تكن عضواً في شبكة اجتماعية حرة، اتبع هذا الرابط للعثور على عقدة عمومية لفرَندِكا وانضم إلينا اليوم.'; +$a->strings['You must be logged in to use this module.'] = 'يجب عليك الولوج لاستخدام هذه الوحدة.'; $a->strings['Only logged in users are permitted to perform a search.'] = 'يمكن فقط للمستخدمين المسجلين البحث في الموقع.'; $a->strings['Only one search per minute is permitted for not logged in users.'] = 'يسمح ببحث واحد فقط في كل دقيقة للزوار.'; $a->strings['Items tagged with: %s'] = 'عناصر موسمة بـ: %s'; @@ -2042,6 +1783,10 @@ $a->strings['Logged out.'] = 'خرجت.'; $a->strings['OpenID protocol error. No ID returned'] = 'خطأ في ميفاق OpenID. لم يعد أي معرف'; $a->strings['Account not found. Please login to your existing account to add the OpenID to it.'] = 'لم يُعثر على الحساب. رجاء لج إلى حسابك الحالي لإضافة معرف OpenID إليه.'; $a->strings['Account not found. Please register a new account or login to your existing account to add the OpenID to it.'] = 'لم يُعثر على الحساب. رجاء سجل حساب جديد أو لج إلى حسابك الحالي لإضافة معرف OpenID إليه.'; +$a->strings['Passwords do not match.'] = 'كلمتا المرور غير متطابقتين.'; +$a->strings['Password unchanged.'] = 'لم تُغير كلمة المرور.'; +$a->strings['Current Password:'] = 'كلمة المرور الحالية:'; +$a->strings['Your current password to confirm the changes'] = 'اكتب كلمة المرور الحالية لتأكيد التغييرات'; $a->strings['Remaining recovery codes: %d'] = 'رموز الاستعادة المتبقية: %d'; $a->strings['Invalid code, please retry.'] = 'رمز غير صالح، من فضلك أعد المحاولة.'; $a->strings['Two-factor recovery'] = 'الاستيثاق بعاملين'; @@ -2050,10 +1795,7 @@ $a->strings['Please enter a recovery code'] = 'رجاء أدخل رمز الاس $a->strings['Submit recovery code and complete login'] = 'أرسل رمز الاستعادة لتكمل الولوج'; $a->strings['

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

    '] = '

    افتح تطبيق الاستيثاق بعاملين على جهازك للحصول على رمز الاستيثاق والتحقق من هويتك.

    '; $a->strings['Please enter a code from your authentication app'] = 'يرجى إدخال رمز من تطبيق الاستيثاق'; -$a->strings['This is my two-factor authenticator app device'] = 'هذا هو جهاز الذي استخدمه للاستيثاق بعاملين'; $a->strings['Verify code and complete login'] = 'تحقق من الرمز وأكمل الولوج'; -$a->strings['Passwords do not match.'] = 'كلمتا المرور غير متطابقتين.'; -$a->strings['Password unchanged.'] = 'لم تُغير كلمة المرور.'; $a->strings['Please use a shorter name.'] = 'يرجى استخدام اسم أقصر.'; $a->strings['Name too short.'] = 'الاسم قصير جداً.'; $a->strings['Wrong Password.'] = 'كلمة المرور خاطئة.'; @@ -2065,7 +1807,6 @@ $a->strings['Importing Contacts done'] = 'أُستورد المتراسلون'; $a->strings['Relocate message has been send to your contacts'] = 'أُرسلت رسالة تنبيه بانتقالك إلى متراسليك'; $a->strings['Unable to find your profile. Please contact your admin.'] = 'تعذر العثور على ملفك الشخصي. من فضلك اتصال بالمدير.'; $a->strings['Personal Page Subtypes'] = 'الأنواع الفرعية للصفحة الشخصية'; -$a->strings['Community Forum Subtypes'] = 'الأنواع الفرعية للمنتدى المجتمعي'; $a->strings['Account for a personal profile.'] = 'حساب ملف شخصي خاص.'; $a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'حساب المنظمة يوافق تلقائياً على طلبات المراسلة "كمتابعين".'; $a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'حساب إخباري يوافق تلقائياً على طلبات المراسلة "كمتابعين".'; @@ -2074,7 +1815,6 @@ $a->strings['Account for a regular personal profile that requires manual approva $a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'حساب شخصي علني يوافق تلقائياً على طلبات المراسلة "كمتابعين".'; $a->strings['Automatically approves all contact requests.'] = 'يوافق تلقائياً على جميع طلبات المراسلة.'; $a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'حساب ملف شخصي لمشهور يوافق تلقائياً على طلبات المراسلة كـ"أصدقاء".'; -$a->strings['Private Forum [Experimental]'] = 'منتدى خاص [تجريبي]'; $a->strings['Requires manual approval of contact requests.'] = 'يتطلب الموافقة اليدوية على طلبات المراسلة.'; $a->strings['OpenID:'] = 'OpenID:'; $a->strings['(Optional) Allow this OpenID to login to this account.'] = '(اختياري) اسمح لمعرف OpenID بالولوج إلى هذا الحساب.'; @@ -2084,14 +1824,12 @@ $a->strings['Your profile will also be published in the global friendica directo $a->strings['Account Settings'] = 'إعدادات الحساب'; $a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'عنوان معرفك هو \'%s\' أو \'%s\'.'; $a->strings['Password Settings'] = 'إعدادات كلمة المرور'; -$a->strings['Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).'] = 'المحارف المسموح بها هي a-z، A-Z، 0-9 والأحرف الخاصة باستثناء المساحات، الأحرف المنبورة ونقطتي التفسير (:).'; $a->strings['Leave password fields blank unless changing'] = 'اترك حقول كلمة المرور فارغة ما لم ترد تغييرها'; -$a->strings['Current Password:'] = 'كلمة المرور الحالية:'; -$a->strings['Your current password to confirm the changes'] = 'اكتب كلمة المرور الحالية لتأكيد التغييرات'; $a->strings['Password:'] = 'كلمة المرور:'; $a->strings['Your current password to confirm the changes of the email address'] = 'اكتب كلمة المرور الحالية لتأكيد تغيير بريدك الإلكتروني'; $a->strings['Delete OpenID URL'] = 'احذف معرف OpenID'; $a->strings['Basic Settings'] = 'الإعدادات الأساسيّة'; +$a->strings['Display name:'] = 'الاسم العلني:'; $a->strings['Email Address:'] = 'البريد الإلكتروني:'; $a->strings['Your Timezone:'] = 'المنطقة الزمنية:'; $a->strings['Your Language:'] = 'لغتك:'; @@ -2105,8 +1843,6 @@ $a->strings['Allow your profile to be searchable globally?'] = 'أتريد ال $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.'] = 'فعّل هذا الإعداد إن أردت أن يُعثر عليك بسهولة. سيتمكن المستخدمون في المواقع البعيد من العثور عليك، وأيضا سيسمح بظهور ملفك الشخصي في محركات البحث.'; $a->strings['Hide your contact/friend list from viewers of your profile?'] = 'أتريد إخفاء قائمة المتراسلين/الأصدقاء عن متصفحي ملفك الشخصي؟'; $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->strings['Hide your profile details from anonymous viewers?'] = 'اخف معلومات ملفك الشخص عن المتصفحين المجهولين؟'; -$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->strings['Make public posts unlisted'] = 'لا تدرج المشاركات العلنية'; $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->strings['Make all posted pictures accessible'] = 'أتح كل الصور المنشورة'; @@ -2158,6 +1894,41 @@ $a->strings['Upload File'] = 'ارفع ملفًا'; $a->strings['Relocate'] = 'الانتقال'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'إذا كنت قد نقلت هذا الملف الشخصي من خادم آخر، وبعض المتراسلين لا يتلقون تحديثاتك، أنقر هذا الزر.'; $a->strings['Resend relocate message to contacts'] = 'أعد إرسال رسالة الانتقال للمتراسلين'; +$a->strings['Addon Settings'] = 'إعدادات الإضافة'; +$a->strings['No Addon settings configured'] = 'لم تضبط إعدادات الإضافة'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'فشل الاتصال بحساب البريد الإلكتروني باستخدام الإعدادات المقدمة.'; +$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'دياسبورا (سوشل-هوم، هوب-زيلا)'; +$a->strings['OStatus (GNU Social)'] = 'OStatus (غنو سوشل)'; +$a->strings['Email access is disabled on this site.'] = 'الوصول إلى البريد الإلكتروني معطل في هذا الموقع.'; +$a->strings['None'] = 'لا شيء'; +$a->strings['General Social Media Settings'] = 'الإعدادات العامة لشبكات التواصل الاجتماعي'; +$a->strings['Followed content scope'] = 'حيز المحتوى المتابَع'; +$a->strings['Only conversations my follows started'] = 'المحادثات التي بدأها متابَعي فقط'; +$a->strings['Conversations my follows started or commented on (default)'] = 'المحادثات التي بدأها متابَعي أو علقوا عليها (الافتراضي)'; +$a->strings['Any conversation my follows interacted with, including likes'] = 'أي محادثة تفاعل معها متابَعي'; +$a->strings['Enable Content Warning'] = 'فعّل التحذير من المحتوى'; +$a->strings['Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.'] = 'يمكن لمستخدمي شبكات مثل ماستدون أو بليروما تعيين حقل التحذير من المحتوى الذي يطوي مشاركتهم افتراضيا. هذا يفعل الطي التلقائي بدلًا من تعيين التحذير من المحتوى كعنوان للمشاركة. هذا لا يؤثر على أي ترشيح محتوى قمت بإعداده.'; +$a->strings['Enable intelligent shortening'] = 'فعّل الاختصار الذكي'; +$a->strings['Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.'] = 'يعثر الاختصار الذكي على الرابط الأنسب في المشاركات المختصرة. عند تعطيله سيشير الرابط إلى منشور فرنديكا الأصلي.'; +$a->strings['Enable simple text shortening'] = 'فعّل اختصار النصوص'; +$a->strings['Attach the link title'] = 'أرفق عنوان الرابط'; +$a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'عند تفعيله سيتم إرفاق عنوان الصفحة بمنشور دياسبورا. هذا مفيد بشكل أساسي مع المتراسلين "الذاتيين" الذين يشاركون تغذيات Rss / Atom.'; +$a->strings['Your legacy ActivityPub/GNU Social account'] = 'حساب GNU Social\ActivityPub القديم'; +$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'إذا قمت بإدخال اسم حساب ActivityPub/GNU Social/Statusnet القديم هنا (بنسق user@domain.tld)، سيضاف المتراسلون في هذا الحساب تلقائيا. سيصفر الحقل عند الانتهاء.'; +$a->strings['Repair OStatus subscriptions'] = 'أصلح اشتراكات OStatus'; +$a->strings['Email/Mailbox Setup'] = 'إعداد بريد الكتروني/صندوق بريد'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'إذا كنت ترغب في التواصل مع متراسلي البريد الإلكتروني باستخدام هذه الخدمة (اختيارية)، من فضلك حدد كيفية الاتصال بصندوق بريدك.'; +$a->strings['Last successful email check:'] = 'آخر تحقق ناجح للبريد الإلكتروني:'; +$a->strings['IMAP server name:'] = 'اسم خادم IMAP:'; +$a->strings['IMAP port:'] = 'منفذ IMAP:'; +$a->strings['Security:'] = 'الحماية:'; +$a->strings['Email login name:'] = 'اسم الولوج للبريد الإلكتروني:'; +$a->strings['Email password:'] = 'كلمة مرور البريد الإلكتروني:'; +$a->strings['Reply-to address:'] = 'الرد على عنوان:'; +$a->strings['Send public posts to all email contacts:'] = 'أرسل المشاركات العلنية لجميع متراسلي البريد الإلكتروني:'; +$a->strings['Action after import:'] = 'الإجراء بعد الاستيراد:'; +$a->strings['Move to folder'] = 'انقل إلى مجلد'; +$a->strings['Move to folder:'] = 'انقل إلى المجلد:'; $a->strings['Delegation successfully granted.'] = 'منح التفويض بنجاح.'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'لم يُعثر على الولي أو هو غير متوفر أو كلمة مرور غير صحيحة.'; $a->strings['Delegation successfully revoked.'] = 'نجح إبطال التفويض.'; @@ -2181,7 +1952,6 @@ $a->strings['General Theme Settings'] = 'الإعدادات العامة للس $a->strings['Custom Theme Settings'] = 'الإعدادات المخصصة للسمة'; $a->strings['Content Settings'] = 'إعدادات المحتوى'; $a->strings['Theme settings'] = 'إعدادات السمة'; -$a->strings['Calendar'] = 'التقويم'; $a->strings['Display Theme:'] = 'سمة العرض:'; $a->strings['Mobile Theme:'] = 'سمة الهاتف:'; $a->strings['Number of items to display per page:'] = 'عدد العناصر التي سيتم عرضها في كل صفحة:'; @@ -2189,7 +1959,6 @@ $a->strings['Maximum of 100 items'] = 'الحد الأقصى هو 100 عنصر'; $a->strings['Number of items to display per page when viewed from mobile device:'] = 'عدد العناصر التي سيتم عرضها في كل صفحة في وضع الهاتف:'; $a->strings['Update browser every xx seconds'] = 'حدّث المتصفح كل xx ثانية'; $a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'الحد الأدنى هو 10 ثواني. أدخل -1 لتعطيله.'; -$a->strings['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.'] = 'يمكن أن يضيف التحديث التلقائي للتغذية محتوى جديدًا إلى أعلى القائمة ، مما قد يؤثر على تمرير الصفحة ويعيق القراءة إذا تم القيام به في أي مكان آخر غير الجزء العلوي من الصفحة.'; $a->strings['Infinite scroll'] = 'التمرير اللانهائي'; $a->strings['Automatic fetch new items when reaching the page end.'] = 'يجلب عناصر جديدة تلقائياً عند الوصول إلى نهاية الصفحة.'; $a->strings['Display the Dislike feature'] = 'اعرض ميزة "لم يعجبني"'; @@ -2199,7 +1968,9 @@ $a->strings['Display the first resharer as icon and text on a reshared item.'] = $a->strings['Stay local'] = 'ابقى في الخادم المحلي'; $a->strings['Don\'t go to a remote system when following a contact link.'] = 'لا يذهب إلى نظام بعيد عند اتباع رابط متراسل.'; $a->strings['Beginning of week:'] = 'بداية الأسبوع:'; -$a->strings['Profile Name is required.'] = 'اسم الملف الشخصي مطلوب.'; +$a->strings['Additional Features'] = 'ميزات إضافية'; +$a->strings['Connected Apps'] = 'التطبيقات المتصلة'; +$a->strings['Remove authorization'] = 'أزل التخويل'; $a->strings['Profile couldn\'t be updated.'] = 'تعذر تحديث الملف الشخصي.'; $a->strings['Label:'] = 'التسمية:'; $a->strings['Value:'] = 'القيمة:'; @@ -2214,7 +1985,6 @@ $a->strings['Location'] = 'الموقع'; $a->strings['Miscellaneous'] = 'متنوّع'; $a->strings['Custom Profile Fields'] = 'حقول مخصصة للملف الشخصي'; $a->strings['Upload Profile Photo'] = 'ارفع صورة الملف الشخصي'; -$a->strings['Display name:'] = 'الاسم العلني:'; $a->strings['Street Address:'] = 'عنوان الشارع:'; $a->strings['Locality/City:'] = 'المدينة:'; $a->strings['Region/State:'] = 'الولاية:'; @@ -2229,15 +1999,6 @@ $a->strings['Public Keywords:'] = 'الكلمات المفتاحية العلن $a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(يستخدم لاقتراح أصدقاء، يمكن للآخرين رؤيتهم)'; $a->strings['Private Keywords:'] = 'الكلمات المفتاحية الخاصة:'; $a->strings['(Used for searching profiles, never shown to others)'] = '(يستخدم للبحث عن ملفات الشخصية، لا يظهر للآخرين)'; -$a->strings['

    Custom fields appear on your profile page.

    -

    You can use BBCodes in the field values.

    -

    Reorder by dragging the field title.

    -

    Empty the label field to remove a custom field.

    -

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

    '] = '

    الحقول المخصصة تظهر في صفحة ملفك الشخصي.

    -

    يمكنك استخدام رموز BBCCode في حقول القيم.

    -

    أعد الترتيب بسحب عنوان الحقل.

    -

    أفرغ حقل التسمية لإزالة الحقل مخصص.

    -

    لن يتمكن إلاّ المتراسلين المختارين والمجموعات المختارة من رؤية الحقول غير العلنية.

    '; $a->strings['Image size reduction [%s] failed.'] = 'فشل تقليص حجم الصورة [%s].'; $a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'إذا لم تظهر الصورة الجديدة أعد تحميل الصفحة مع الضغط على مفتاح Shift، أو امسح ذاكرة التخزين المؤقت للمتصفح.'; $a->strings['Unable to process image'] = 'تعذرت معالجة الصورة'; @@ -2254,6 +2015,13 @@ $a->strings['Upload Picture:'] = 'ارفع صورة:'; $a->strings['or'] = 'أو'; $a->strings['skip this step'] = 'تخطى هذه الخطوة'; $a->strings['select a photo from your photo albums'] = 'اختر صورة من ألبومك'; +$a->strings['[Friendica System Notify]'] = '[تنبيه نظام فرنديكا]'; +$a->strings['User deleted their account'] = 'حذف المستخدم حسابه'; +$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'حذف مستخدم حسابه على عقدة فرَندِكا خاصتك. من فضلك تأكد أن بياناتهم أُزيلت من النسخ الاحتياطية.'; +$a->strings['The user id is %d'] = 'معرف المستخدم هو %d'; +$a->strings['Remove My Account'] = 'أزل حسابي'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'سيزال حسابك نهائيًا. لا مجال لتراجع عند انتهائه.'; +$a->strings['Please enter your password for verification:'] = 'يرجى إدخال كلمة المرور للتأكيد:'; $a->strings['Please enter your password to access this page.'] = 'يرجى إدخال كلمة المرور للوصول إلى هذه الصفحة.'; $a->strings['New app-specific password generated.'] = 'أُنشئت كلمة مرور جديدة خاصة بالتطبيق بنجاح.'; $a->strings['Description'] = 'الوصف'; @@ -2262,7 +2030,6 @@ $a->strings['Revoke'] = 'أبطل'; $a->strings['Revoke All'] = 'أبطل الكل'; $a->strings['Generate'] = 'ولّد'; $a->strings['Two-factor authentication successfully disabled.'] = 'عُطل الاستيثاق بعاملين.'; -$a->strings['Wrong Password'] = 'كلمة مرور خاطئة'; $a->strings['

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

    '] = '

    استخدام تطبيق هاتف للحصول على رموز الاستيثاق بعاملين عند الولوج.

    '; $a->strings['Authenticator app'] = 'تطبيق الاستيثاق'; $a->strings['Configured'] = 'مضبوط'; @@ -2325,6 +2092,28 @@ $a->strings['Export your account info, contacts and all your items as json. Coul $a->strings['Export Contacts to CSV'] = 'صدّر المتراسلين الى ملف CSV'; $a->strings['Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon.'] = 'صدّر قائمة الحسابات المتابَعة إلى ملف csv. هذا الملف متوافق مع ماستدون.'; $a->strings['Privacy Statement'] = 'بيان الخصوصية'; +$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'العنصر غير موجود أو حُذف.'; +$a->strings['User imports on closed servers can only be done by an administrator.'] = 'يمكن للمدراء فقط استيراد المستخدمين في الخوادم المغلقة.'; +$a->strings['Move account'] = 'أنقل الحساب'; +$a->strings['You can import an account from another Friendica server.'] = 'يمكنك استيراد حساب من خادم فرَندِكا آخر.'; +$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.'] = 'تحتاج إلى تصدير حسابك من الخادم القديم ورفعه هنا. سوف نقوم بإعادة إنشاء حسابك القديم هنا مع إضافة كل المتراسلين. سوف نحاول أيضًا إبلاغهم أنك انتقلت إلى هنا.'; +$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'هذه الميزة تجريبية. لا يمكن استيراد متراسلين من شبكة OStatus (GNU Social/Statusnet) أو من شبكة دياسبورا'; +$a->strings['Account file'] = 'ملف الحساب'; +$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'لتصدير حسابك، انتقل إلى "إعدادات-> تصدير بياناتك الشخصية" واختر "صدر الحساب"'; +$a->strings['Error decoding account file'] = 'خطأ أثناء فك ترميز ملف الحساب'; +$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'خطأ! لا توجد بيانات إصدار في الملف! هذا ليس ملف شخصي لفرنديكا؟'; +$a->strings['User \'%s\' already exists on this server!'] = 'المستخدم \'%s\' موجود سلفًا على هذا الخادم!'; +$a->strings['User creation error'] = 'خطأ أثناء إنشاء المستخدم'; +$a->strings['%d contact not imported'] = [ + 0 => 'لم يُستورد أي متراسل %d', + 1 => 'لم يستورد متراسل واحد %d', + 2 => 'لم يستورد متراسلان %d', + 3 => 'لم يستورد %d متراسلين', + 4 => 'لم يستورد %d متراسلًا', + 5 => 'لم يستورد %d متراسل', +]; +$a->strings['User profile creation error'] = 'خطأ أثناء إنشاء الملف الشخصي للمستخدم'; +$a->strings['Done. You can now login with your username and password'] = 'تم. يمكنك الآن الولوج باستخدام اسم المستخدم وكلمة المرور'; $a->strings['Welcome to Friendica'] = 'مرحبا بك في فرَندِكا'; $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.'] = 'نود أن نقدم بعض النصائح والروابط للمساعدة في جعل تجربتك ممتعة. انقر فوق أي عنصر لزيارة الصفحة ذات الصلة. رابط لهذه الصفحة سيكون مرئيًا في الصفحة الرئيسية لمدة أسبوعين بعد تاريخ تسجيلك.'; $a->strings['Getting Started'] = 'بدء الاستخدام'; @@ -2344,8 +2133,6 @@ $a->strings['Go to Your Site\'s Directory'] = 'انتقل إلى دليل موق $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->strings['Finding New People'] = 'إيجاد أشخاص جدد'; $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.'] = 'في الشريط الجانبي لصفحة المتراسلين يمكنك للعثور على عدة طرق للعثور على أصدقاء جدد. يمكننا مطابقة الأشخاص بناءً على اهتماماتهم، والبحث عن الأصدقاء بالاسم أو الاهتمام، وتقديم اقتراحات بناءً على هيكلية الشبكة. على موقع جديد تمامًا، يجب أن تبدأ اقتراحات الاشتراك في الظهور بعد 24 ساعة.'; -$a->strings['Group Your Contacts'] = 'نظّم متراسليك في مجموعات'; -$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.'] = 'بمجرد حصولك على عدد من الأصدقاء ،نظمهم في مجموعات محادثة خاصة من الشريط الجانبي لصفحة المتراسلين. بهذا يمكنك التفاعل مع كل مجموعة على حدى من خلال صفحة الشبكة.'; $a->strings['Why Aren\'t My Posts Public?'] = 'لماذا لا تنشر مشاركاتي للعموم؟'; $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->strings['Getting Help'] = 'الحصول على مساعدة'; @@ -2364,6 +2151,8 @@ $a->strings['Friend Suggestion'] = 'اقتراح صديق'; $a->strings['Friend/Connect Request'] = 'طلب صداقة/اقتران'; $a->strings['New Follower'] = 'متابِع جديد'; $a->strings['%1$s wants to follow you'] = '%1$s يريد متابعتك'; +$a->strings['%1$s has started following you'] = 'بدأ %1$s متابعتك'; +$a->strings['%1$s liked your comment on %2$s'] = 'أٌعجب %1$s بتعليقك على %2$s'; $a->strings['%1$s liked your post %2$s'] = 'أعجب %1$s بمشاركتك %2$s'; $a->strings['%1$s disliked your post %2$s'] = 'لم يعجب %1$s مشاركتك %2$s'; $a->strings['%1$s shared your comment %2$s'] = 'شارك %1$s تعليقك %2$s'; @@ -2372,6 +2161,7 @@ $a->strings['%1$s shared the post %2$s from %3$s'] = 'شارك %1$s المشار $a->strings['%1$s shared a post from %3$s'] = 'شارك %1$s مشاركة %3$s'; $a->strings['%1$s shared the post %2$s'] = 'شارك %1$s المشاركة %2$s'; $a->strings['%1$s shared a post'] = 'شارك %1$s مشاركة'; +$a->strings['%1$s wants to attend your event %2$s'] = 'يريد %1$s حضور حدَثك %2$s'; $a->strings['%1$s tagged you on %2$s'] = 'ذكرك %1$s في %2$s'; $a->strings['%1$s replied to you on %2$s'] = 'رد %1$s عليك في %2$s'; $a->strings['%1$s commented in your thread %2$s'] = 'علق %1$s على نقاشك %2$s'; @@ -2396,9 +2186,6 @@ $a->strings['Please visit %s to view and/or reply to the conversation.'] = 'من $a->strings['%s %s posted to your profile wall'] = 'نشر %s%s على حائط ملفك الشخصي'; $a->strings['%1$s posted to your profile wall at %2$s'] = 'نشر %1$s على حائط ملفك الشخصي على %2$s'; $a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = 'نشر %1$s على [url=%2$s]حائطك[/url]'; -$a->strings['%1$s %2$s poked you'] = 'لكزك %1$s %2$s'; -$a->strings['%1$s poked you at %2$s'] = 'لكزك %1$s على %2$s'; -$a->strings['%1$s [url=%2$s]poked you[/url].'] = '[url=%2$s]لكزك[/url] %1$s.'; $a->strings['%s Introduction received'] = 'تلقيت تقديما من %s'; $a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'تلقيت تقديما من \'%1$s\' على %2$s'; $a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'تلقيت [url=%1$s]تقديما[/url] من %2$s.'; @@ -2438,6 +2225,8 @@ $a->strings['You may visit them online at %s'] = 'يمكنك زيارتهم عب $a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'رجاء اتصل بالمرسل بالرد على هذا المشاركة إذا كنت لا ترغب في تلقي هذه الرسائل.'; $a->strings['%s posted an update.'] = 'نشر %s تحديثاً.'; $a->strings['Private Message'] = 'رسالة خاصة'; +$a->strings['Public Message'] = 'رسالة علنية'; +$a->strings['Unlisted Message'] = 'رسالة غير مدرجة'; $a->strings['This entry was edited'] = 'عدّل المدخل'; $a->strings['Edit'] = 'تعديل'; $a->strings['Delete globally'] = 'احذفه عالميًا'; @@ -2467,6 +2256,7 @@ $a->strings['Unshare'] = 'ألغ المشاركة'; $a->strings['%s (Received %s)'] = '%s (استلم %s)'; $a->strings['Comment this item on your system'] = 'علّق على هذا العنصر على خادمك'; $a->strings['Remote comment'] = 'تعليق بعيد'; +$a->strings['Share via ...'] = 'شارك عبر'; $a->strings['to'] = 'إلى'; $a->strings['via'] = 'عبر'; $a->strings['Wall-to-Wall'] = 'حائط لحائط'; @@ -2488,11 +2278,11 @@ $a->strings['%d comment'] = [ ]; $a->strings['Show more'] = 'اعرض المزيد'; $a->strings['Show fewer'] = 'اعرض أقل'; +$a->strings['(no subject)'] = '(بدون موضوع)'; $a->strings['%s is now following %s.'] = '%s يتابع %s.'; $a->strings['following'] = 'يتابع'; $a->strings['%s stopped following %s.'] = '%s توقف عن متابعة %s.'; $a->strings['stopped following'] = 'توقف عن متابعة'; -$a->strings['The folder view/smarty3/ must be writable by webserver.'] = 'يجب ان يكون المسار view/smarty3 قابل للتعديل من قبل الخادم.'; $a->strings['Login failed.'] = 'فشل الولوج.'; $a->strings['Login failed. Please check your credentials.'] = 'فشل الولوج. من فضلك تحقق من بيانات الاعتماد.'; $a->strings['Welcome %s'] = 'مرحباً %s'; @@ -2518,7 +2308,6 @@ $a->strings['second'] = 'ثانية'; $a->strings['seconds'] = 'ثوان'; $a->strings['in %1$d %2$s'] = 'في %1$d %2$s'; $a->strings['%1$d %2$s ago'] = 'منذ %1$d %2$s'; -$a->strings['(no subject)'] = '(بدون موضوع)'; $a->strings['Notification from Friendica'] = 'تنبيهات من فرنديكا'; $a->strings['Empty Post'] = 'مشاركة فارغة'; $a->strings['default'] = 'افتراضي'; @@ -2533,7 +2322,7 @@ $a->strings['Light (Accented)'] = 'فاتح (ذو طابع لوني)'; $a->strings['Dark (Accented)'] = 'داكن (ذو طابع لوني)'; $a->strings['Black (Accented)'] = 'أسود (ذو طابع لوني)'; $a->strings['Note'] = 'ملاحظة'; -$a->strings['Check image permissions if all users are allowed to see the image'] = 'تحقق من أذونات الصورة إذا كان مسموح للجميع مشاهدتها'; +$a->strings['Check image permissions if all users are allowed to see the image'] = 'تحقق أن أذونات الصورة تسمح للجميع مشاهدتها'; $a->strings['Custom'] = 'مخصص'; $a->strings['Legacy'] = 'أثري'; $a->strings['Accented'] = 'ذو طابع لوني'; @@ -2574,7 +2363,6 @@ $a->strings['Center'] = 'وسط'; $a->strings['Color scheme'] = 'مخططات اللَّون'; $a->strings['Posts font size'] = 'حجم خط المشاركة'; $a->strings['Textareas font size'] = 'حجم خط مساحة النص'; -$a->strings['Comma separated list of helper forums'] = 'قائمة مقسمة بفاصلة لمنتديات الدعم'; $a->strings['don\'t show'] = 'لا تعرض'; $a->strings['show'] = 'اعرض'; $a->strings['Set style'] = 'عيّن أسلوبًا'; diff --git a/view/lang/bg/messages.po b/view/lang/bg/messages.po index 784f32e6e..4ddf097f2 100644 --- a/view/lang/bg/messages.po +++ b/view/lang/bg/messages.po @@ -1,5 +1,5 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: @@ -10,1450 +10,79 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-23 05:36-0500\n" -"PO-Revision-Date: 2021-01-23 12:32+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Bulgarian (http://www.transifex.com/Friendica/friendica/language/bg/)\n" +"POT-Creation-Date: 2023-09-18 05:30+0000\n" +"PO-Revision-Date: 2011-05-05 10:19+0000\n" +"Last-Translator: Rafael Kalachev , 2021\n" +"Language-Team: Bulgarian (http://app.transifex.com/Friendica/friendica/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: include/api.php:1129 -#, 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пост е достигнат. Постът беше отхвърлен." -msgstr[1] "Дневният лимит от %d поста е достигнат. Постът беше отхвърлен." - -#: include/api.php:1143 -#, 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 пост е достигнат. Постът беше отказан." -msgstr[1] "Седмичният лимит от %d поста е достигнат. Постът беше отказан." - -#: include/api.php:1157 -#, php-format -msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "Месечният лимит от %d пост е достигнат. Постът беше отказан." - -#: include/api.php:4454 mod/photos.php:107 mod/photos.php:211 -#: mod/photos.php:639 mod/photos.php:1043 mod/photos.php:1060 -#: mod/photos.php:1607 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 -#: src/Module/Settings/Profile/Photo/Index.php:96 -#: src/Module/Settings/Profile/Photo/Index.php:102 -msgid "Profile Photos" -msgstr "Снимка на профила" - -#: include/conversation.php:190 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: include/conversation.php:222 src/Model/Item.php:2763 -msgid "event" -msgstr "събитието." - -#: include/conversation.php:225 include/conversation.php:234 mod/tagger.php:90 -msgid "status" -msgstr "статус" - -#: include/conversation.php:230 mod/tagger.php:90 src/Model/Item.php:2765 -msgid "photo" -msgstr "снимка" - -#: include/conversation.php:244 mod/tagger.php:123 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s сложи етикет с %2$s - %3$s %4$s" - -#: include/conversation.php:560 mod/photos.php:1468 src/Object/Post.php:238 -msgid "Select" -msgstr "избор" - -#: include/conversation.php:561 mod/photos.php:1469 mod/settings.php:564 -#: mod/settings.php:706 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:886 src/Module/Contact.php:1190 -msgid "Delete" -msgstr "Изтриване" - -#: include/conversation.php:596 src/Object/Post.php:457 -#: src/Object/Post.php:458 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Преглед профила на %s в %s" - -#: include/conversation.php:609 src/Object/Post.php:445 -msgid "Categories:" -msgstr "Категории:" - -#: include/conversation.php:610 src/Object/Post.php:446 -msgid "Filed under:" -msgstr "Записано в:" - -#: include/conversation.php:617 src/Object/Post.php:471 -#, php-format -msgid "%s from %s" -msgstr "%s от %s" - -#: include/conversation.php:632 -msgid "View in context" -msgstr "Поглед в контекста" - -#: include/conversation.php:634 include/conversation.php:1216 -#: mod/editpost.php:104 mod/message.php:205 mod/message.php:375 -#: mod/photos.php:1534 mod/wallmessage.php:155 src/Module/Item/Compose.php:159 -#: src/Object/Post.php:505 -msgid "Please wait" -msgstr "Моля, изчакайте" - -#: include/conversation.php:698 -msgid "remove" -msgstr "Премахване" - -#: include/conversation.php:703 -msgid "Delete Selected Items" -msgstr "Изтриване на избраните елементи" - -#: include/conversation.php:740 include/conversation.php:743 -#: include/conversation.php:746 include/conversation.php:749 -#, php-format -msgid "You had been addressed (%s)." -msgstr "" - -#: include/conversation.php:752 -#, php-format -msgid "You are following %s." -msgstr "" - -#: include/conversation.php:755 -msgid "Tagged" -msgstr "" - -#: include/conversation.php:766 include/conversation.php:1109 -#: include/conversation.php:1147 -#, php-format -msgid "%s reshared this." -msgstr "" - -#: include/conversation.php:768 -msgid "Reshared" -msgstr "" - -#: include/conversation.php:768 -#, php-format -msgid "Reshared by %s" -msgstr "" - -#: include/conversation.php:771 -#, php-format -msgid "%s is participating in this thread." -msgstr "" - -#: include/conversation.php:774 -msgid "Stored" -msgstr "запазено" - -#: include/conversation.php:777 -msgid "Global" -msgstr "" - -#: include/conversation.php:780 -msgid "Relayed" -msgstr "" - -#: include/conversation.php:780 -#, php-format -msgid "Relayed by %s." -msgstr "" - -#: include/conversation.php:783 -msgid "Fetched" -msgstr "" - -#: include/conversation.php:783 -#, php-format -msgid "Fetched because of %s" -msgstr "" - -#: include/conversation.php:942 view/theme/frio/theme.php:321 -msgid "Follow Thread" -msgstr "" - -#: include/conversation.php:943 src/Model/Contact.php:984 -msgid "View Status" -msgstr "Показване на състоянието" - -#: include/conversation.php:944 include/conversation.php:966 -#: src/Model/Contact.php:910 src/Model/Contact.php:976 -#: src/Model/Contact.php:985 src/Module/Directory.php:166 -#: src/Module/Settings/Profile/Index.php:240 -msgid "View Profile" -msgstr "Преглед на профил" - -#: include/conversation.php:945 src/Model/Contact.php:986 -msgid "View Photos" -msgstr "Вижте снимки" - -#: include/conversation.php:946 src/Model/Contact.php:977 -#: src/Model/Contact.php:987 -msgid "Network Posts" -msgstr "Мрежови Мнения" - -#: include/conversation.php:947 src/Model/Contact.php:978 -#: src/Model/Contact.php:988 -msgid "View Contact" -msgstr "Преглед на Контакта" - -#: include/conversation.php:948 src/Model/Contact.php:990 -msgid "Send PM" -msgstr "Изпратете PM" - -#: include/conversation.php:949 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:625 src/Module/Contact.php:883 -#: src/Module/Contact.php:1165 -msgid "Block" -msgstr "Блокиране" - -#: include/conversation.php:950 src/Module/Contact.php:626 -#: src/Module/Contact.php:884 src/Module/Contact.php:1173 -#: src/Module/Notifications/Introductions.php:113 -#: src/Module/Notifications/Introductions.php:191 -#: src/Module/Notifications/Notification.php:59 -msgid "Ignore" -msgstr "Пренебрегване" - -#: include/conversation.php:954 src/Object/Post.php:434 -msgid "Languages" -msgstr "Езици" - -#: include/conversation.php:958 src/Model/Contact.php:991 -msgid "Poke" -msgstr "Сръчкай" - -#: include/conversation.php:963 mod/follow.php:146 src/Content/Widget.php:75 -#: src/Model/Contact.php:979 src/Model/Contact.php:992 -#: view/theme/vier/theme.php:172 -msgid "Connect/Follow" -msgstr "Свържете се / последваща" - -#: include/conversation.php:1094 -#, php-format -msgid "%s likes this." -msgstr "%s харесва това." - -#: include/conversation.php:1097 -#, php-format -msgid "%s doesn't like this." -msgstr "%s не харесва това." - -#: include/conversation.php:1100 -#, php-format -msgid "%s attends." -msgstr "" - -#: include/conversation.php:1103 -#, php-format -msgid "%s doesn't attend." -msgstr "" - -#: include/conversation.php:1106 -#, php-format -msgid "%s attends maybe." -msgstr "" - -#: include/conversation.php:1115 -msgid "and" -msgstr "и" - -#: include/conversation.php:1118 -#, php-format -msgid "and %d other people" -msgstr "" - -#: include/conversation.php:1126 -#, php-format -msgid "%2$d people like this" -msgstr "" - -#: include/conversation.php:1127 -#, php-format -msgid "%s like this." -msgstr "" - -#: include/conversation.php:1130 -#, php-format -msgid "%2$d people don't like this" -msgstr "" - -#: include/conversation.php:1131 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: include/conversation.php:1134 -#, php-format -msgid "%2$d people attend" -msgstr "" - -#: include/conversation.php:1135 -#, php-format -msgid "%s attend." -msgstr "" - -#: include/conversation.php:1138 -#, php-format -msgid "%2$d people don't attend" -msgstr "" - -#: include/conversation.php:1139 -#, php-format -msgid "%s don't attend." -msgstr "" - -#: include/conversation.php:1142 -#, php-format -msgid "%2$d people attend maybe" -msgstr "" - -#: include/conversation.php:1143 -#, php-format -msgid "%s attend maybe." -msgstr "" - -#: include/conversation.php:1146 -#, php-format -msgid "%2$d people reshared this" -msgstr "" - -#: include/conversation.php:1176 -msgid "Visible to everybody" -msgstr "Видим всички " - -#: include/conversation.php:1177 src/Module/Item/Compose.php:153 -#: src/Object/Post.php:972 -msgid "Please enter a image/video/audio/webpage URL:" -msgstr "" - -#: include/conversation.php:1178 -msgid "Tag term:" -msgstr "Tag термин:" - -#: include/conversation.php:1179 src/Module/Filer/SaveTag.php:69 -msgid "Save to Folder:" -msgstr "Запиши в папка:" - -#: include/conversation.php:1180 -msgid "Where are you right now?" -msgstr "Къде сте в момента?" - -#: include/conversation.php:1181 -msgid "Delete item(s)?" -msgstr "" - -#: include/conversation.php:1191 -msgid "New Post" -msgstr "Нов пост" - -#: include/conversation.php:1194 -msgid "Share" -msgstr "Споделяне" - -#: include/conversation.php:1195 mod/editpost.php:89 mod/photos.php:1382 -#: src/Module/Contact/Poke.php:154 src/Object/Post.php:963 -msgid "Loading..." -msgstr "Зареждане..." - -#: include/conversation.php:1196 mod/editpost.php:90 mod/message.php:203 -#: mod/message.php:372 mod/wallmessage.php:153 -msgid "Upload photo" -msgstr "Качване на снимка" - -#: include/conversation.php:1197 mod/editpost.php:91 -msgid "upload photo" -msgstr "качване на снимка" - -#: include/conversation.php:1198 mod/editpost.php:92 -msgid "Attach file" -msgstr "Прикачване на файл" - -#: include/conversation.php:1199 mod/editpost.php:93 -msgid "attach file" -msgstr "Прикачване на файл" - -#: include/conversation.php:1200 src/Module/Item/Compose.php:145 -#: src/Object/Post.php:964 -msgid "Bold" -msgstr "Получер" - -#: include/conversation.php:1201 src/Module/Item/Compose.php:146 -#: src/Object/Post.php:965 -msgid "Italic" -msgstr "Курсив" - -#: include/conversation.php:1202 src/Module/Item/Compose.php:147 -#: src/Object/Post.php:966 -msgid "Underline" -msgstr "Подчертан" - -#: include/conversation.php:1203 src/Module/Item/Compose.php:148 -#: src/Object/Post.php:967 -msgid "Quote" -msgstr "Цитат" - -#: include/conversation.php:1204 src/Module/Item/Compose.php:149 -#: src/Object/Post.php:968 -msgid "Code" -msgstr "Код" - -#: include/conversation.php:1205 src/Module/Item/Compose.php:150 -#: src/Object/Post.php:969 -msgid "Image" -msgstr "Изображение" - -#: include/conversation.php:1206 src/Module/Item/Compose.php:151 -#: src/Object/Post.php:970 -msgid "Link" -msgstr "Връзка" - -#: include/conversation.php:1207 src/Module/Item/Compose.php:152 -#: src/Object/Post.php:971 -msgid "Link or Media" -msgstr "" - -#: include/conversation.php:1208 mod/editpost.php:100 -#: src/Module/Item/Compose.php:155 -msgid "Set your location" -msgstr "Задайте местоположението си" - -#: include/conversation.php:1209 mod/editpost.php:101 -msgid "set location" -msgstr "Задаване на местоположението" - -#: include/conversation.php:1210 mod/editpost.php:102 -msgid "Clear browser location" -msgstr "Изчистване на браузъра място" - -#: include/conversation.php:1211 mod/editpost.php:103 -msgid "clear location" -msgstr "ясно място" - -#: include/conversation.php:1213 mod/editpost.php:117 -#: src/Module/Item/Compose.php:160 -msgid "Set title" -msgstr "Задайте заглавие" - -#: include/conversation.php:1215 mod/editpost.php:119 -#: src/Module/Item/Compose.php:161 -msgid "Categories (comma-separated list)" -msgstr "Категории (разделен със запетаи списък)" - -#: include/conversation.php:1217 mod/editpost.php:105 -msgid "Permission settings" -msgstr "Настройките за достъп" - -#: include/conversation.php:1218 mod/editpost.php:134 mod/events.php:578 -#: mod/photos.php:969 mod/photos.php:1335 -msgid "Permissions" -msgstr "права" - -#: include/conversation.php:1227 mod/editpost.php:114 -msgid "Public post" -msgstr "Обществена длъжност" - -#: include/conversation.php:1231 mod/editpost.php:125 mod/events.php:573 -#: mod/photos.php:1381 mod/photos.php:1438 mod/photos.php:1511 -#: src/Module/Item/Compose.php:154 src/Object/Post.php:973 -msgid "Preview" -msgstr "Преглед" - -#: include/conversation.php:1235 mod/dfrn_request.php:643 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/settings.php:504 -#: mod/settings.php:530 mod/tagrm.php:37 mod/tagrm.php:127 -#: mod/unfollow.php:100 src/Module/Contact.php:459 -#: src/Module/RemoteFollow.php:110 -msgid "Cancel" -msgstr "Отмени" - -#: include/conversation.php:1242 mod/editpost.php:132 -#: src/Model/Profile.php:445 src/Module/Contact.php:344 -msgid "Message" -msgstr "Съобщение" - -#: include/conversation.php:1243 mod/editpost.php:133 -msgid "Browser" -msgstr "Браузър" - -#: include/conversation.php:1245 mod/editpost.php:136 -msgid "Open Compose page" -msgstr "" - -#: include/enotify.php:52 -msgid "[Friendica:Notify]" -msgstr "" - -#: include/enotify.php:138 -#, php-format -msgid "%s New mail received at %s" -msgstr "" - -#: include/enotify.php:140 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s в %2$s ви изпрати ново лично съобщение ." - -#: include/enotify.php:141 -msgid "a private message" -msgstr "лично съобщение" - -#: include/enotify.php:141 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "Ви изпрати %2$s %1$s %2$s ." - -#: include/enotify.php:143 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Моля, посетете %s да видите и / или да отговорите на Вашите лични съобщения." - -#: include/enotify.php:190 -#, php-format -msgid "%1$s replied to you on %2$s's %3$s %4$s" -msgstr "" - -#: include/enotify.php:192 -#, php-format -msgid "%1$s tagged you on %2$s's %3$s %4$s" -msgstr "" - -#: include/enotify.php:194 -#, php-format -msgid "%1$s commented on %2$s's %3$s %4$s" -msgstr "" - -#: include/enotify.php:204 -#, php-format -msgid "%1$s replied to you on your %2$s %3$s" -msgstr "" - -#: include/enotify.php:206 -#, php-format -msgid "%1$s tagged you on your %2$s %3$s" -msgstr "" - -#: include/enotify.php:208 -#, php-format -msgid "%1$s commented on your %2$s %3$s" -msgstr "" - -#: include/enotify.php:215 -#, php-format -msgid "%1$s replied to you on their %2$s %3$s" -msgstr "" - -#: include/enotify.php:217 -#, php-format -msgid "%1$s tagged you on their %2$s %3$s" -msgstr "" - -#: include/enotify.php:219 -#, php-format -msgid "%1$s commented on their %2$s %3$s" -msgstr "" - -#: include/enotify.php:230 -#, php-format -msgid "%s %s tagged you" -msgstr "" - -#: include/enotify.php:232 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s те маркира при %2$s" - -#: include/enotify.php:234 -#, php-format -msgid "%1$s Comment to conversation #%2$d by %3$s" -msgstr "" - -#: include/enotify.php:236 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s коментира артикул / разговор, който са били." - -#: include/enotify.php:241 include/enotify.php:256 include/enotify.php:281 -#: include/enotify.php:300 include/enotify.php:316 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Моля, посетете %s да видите и / или да отговорите на разговор." - -#: include/enotify.php:248 -#, php-format -msgid "%s %s posted to your profile wall" -msgstr "" - -#: include/enotify.php:250 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s публикуван вашия профил стена при %2$s" - -#: include/enotify.php:251 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "" - -#: include/enotify.php:264 -#, php-format -msgid "%s %s shared a new post" -msgstr "" - -#: include/enotify.php:266 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "" - -#: include/enotify.php:267 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "" - -#: include/enotify.php:272 -#, php-format -msgid "%s %s shared a post from %s" -msgstr "" - -#: include/enotify.php:274 -#, php-format -msgid "%1$s shared a post from %2$s at %3$s" -msgstr "" - -#: include/enotify.php:275 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url] from %3$s." -msgstr "" - -#: include/enotify.php:288 -#, php-format -msgid "%1$s %2$s poked you" -msgstr "" - -#: include/enotify.php:290 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "" - -#: include/enotify.php:291 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" - -#: include/enotify.php:308 -#, php-format -msgid "%s %s tagged your post" -msgstr "" - -#: include/enotify.php:310 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s маркира твоя пост в %2$s" - -#: include/enotify.php:311 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s маркира [URL = %2$s ] Публикацията ви [/ URL]" - -#: include/enotify.php:323 -#, php-format -msgid "%s Introduction received" -msgstr "" - -#: include/enotify.php:325 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Получили сте въведения от %1$s в %2$s" - -#: include/enotify.php:326 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Получили сте [URL = %1$s ] въведение [/ URL] от %2$s ." - -#: include/enotify.php:331 include/enotify.php:377 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Можете да посетите техния профил в %s" - -#: include/enotify.php:333 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Моля, посетете %s да одобри или да отхвърли въвеждането." - -#: include/enotify.php:340 -#, php-format -msgid "%s A new person is sharing with you" -msgstr "" - -#: include/enotify.php:342 include/enotify.php:343 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "" - -#: include/enotify.php:350 -#, php-format -msgid "%s You have a new follower" -msgstr "" - -#: include/enotify.php:352 include/enotify.php:353 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "" - -#: include/enotify.php:366 -#, php-format -msgid "%s Friend suggestion received" -msgstr "" - -#: include/enotify.php:368 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Получили сте приятел предложение от %1$s в %2$s" - -#: include/enotify.php:369 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Получили сте [URL = %1$s ] предложение приятел [/ URL] %2$s от %3$s ." - -#: include/enotify.php:375 -msgid "Name:" -msgstr "Наименование:" - -#: include/enotify.php:376 -msgid "Photo:" -msgstr "Снимка:" - -#: include/enotify.php:379 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Моля, посетете %s да одобри или отхвърли предложението." - -#: include/enotify.php:387 include/enotify.php:402 -#, php-format -msgid "%s Connection accepted" -msgstr "" - -#: include/enotify.php:389 include/enotify.php:404 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "" - -#: include/enotify.php:390 include/enotify.php:405 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "" - -#: include/enotify.php:395 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and " -"email without restriction." -msgstr "" - -#: include/enotify.php:397 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "" - -#: include/enotify.php:410 -#, php-format -msgid "" -"'%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." -msgstr "" - -#: include/enotify.php:412 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future." -msgstr "" - -#: include/enotify.php:414 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "" - -#: include/enotify.php:424 mod/removeme.php:63 -msgid "[Friendica System Notify]" -msgstr "" - -#: include/enotify.php:424 -msgid "registration request" -msgstr "" - -#: include/enotify.php:426 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "" - -#: include/enotify.php:427 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "" - -#: include/enotify.php:432 -#, php-format -msgid "" -"Full Name:\t%s\n" -"Site Location:\t%s\n" -"Login Name:\t%s (%s)" -msgstr "" - -#: include/enotify.php:438 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "" - -#: mod/api.php:52 mod/api.php:57 mod/dfrn_confirm.php:79 mod/editpost.php:37 -#: mod/events.php:231 mod/follow.php:55 mod/follow.php:135 mod/item.php:183 -#: mod/item.php:188 mod/item.php:905 mod/message.php:70 mod/message.php:113 -#: 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:493 mod/suggest.php:34 -#: mod/uimport.php:32 mod/unfollow.php:35 mod/unfollow.php:50 -#: mod/unfollow.php:82 mod/wallmessage.php:35 mod/wallmessage.php:59 -#: mod/wallmessage.php:96 mod/wallmessage.php:120 mod/wall_attach.php:78 -#: mod/wall_attach.php:81 mod/wall_upload.php:99 mod/wall_upload.php:102 -#: src/Module/Attach.php:56 src/Module/BaseApi.php:59 -#: src/Module/BaseApi.php:65 src/Module/BaseNotifications.php:88 -#: src/Module/Contact/Advanced.php:43 src/Module/Contact.php:385 -#: 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:128 -#: 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 -msgid "Permission denied." -msgstr "Разрешението е отказано." - -#: mod/api.php:102 mod/api.php:124 -msgid "Authorize application connection" -msgstr "Разрешава връзка с прилагането" - -#: mod/api.php:103 -msgid "Return to your app and insert this Securty Code:" -msgstr "Назад към приложението ти и поставите този Securty код:" - -#: mod/api.php:112 src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -msgid "Please login to continue." -msgstr "Моля, влезте, за да продължите." - -#: 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 "Искате ли да се разреши това приложение за достъп до вашите мнения и контакти, и / или създаване на нови длъжности за вас?" - -#: mod/api.php:127 src/Module/Contact.php:456 -#: src/Module/Notifications/Introductions.php:123 src/Module/Register.php:115 -msgid "Yes" -msgstr "Yes" - -#: mod/api.php:128 src/Module/Notifications/Introductions.php:123 -#: src/Module/Register.php:116 -msgid "No" -msgstr "Не" - -#: 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/Ignore.php:41 -msgid "Access denied." -msgstr "Отказан достъп." - -#: 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 "" - -#: mod/cal.php:143 mod/display.php:287 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 "Достъпът до този профил е ограничен." - -#: mod/cal.php:274 mod/events.php:417 src/Content/Nav.php:181 -#: src/Content/Nav.php:248 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:99 view/theme/frio/theme.php:229 -#: view/theme/frio/theme.php:233 -msgid "Events" -msgstr "Събития" - -#: mod/cal.php:275 mod/events.php:418 -msgid "View" -msgstr "" - -#: mod/cal.php:276 mod/events.php:420 -msgid "Previous" -msgstr "Предишна" - -#: mod/cal.php:277 mod/events.php:421 src/Module/Install.php:196 -msgid "Next" -msgstr "Следваща" - -#: mod/cal.php:280 mod/events.php:426 src/Model/Event.php:460 -msgid "today" -msgstr "" - -#: mod/cal.php:281 mod/events.php:427 src/Model/Event.php:461 -#: src/Util/Temporal.php:330 -msgid "month" -msgstr "месец." - -#: mod/cal.php:282 mod/events.php:428 src/Model/Event.php:462 -#: src/Util/Temporal.php:331 -msgid "week" -msgstr "седмица" - -#: mod/cal.php:283 mod/events.php:429 src/Model/Event.php:463 -#: src/Util/Temporal.php:332 -msgid "day" -msgstr "Ден:" - -#: mod/cal.php:284 mod/events.php:430 -msgid "list" -msgstr "" - -#: mod/cal.php:297 src/Console/User.php:152 src/Console/User.php:250 -#: src/Console/User.php:283 src/Console/User.php:309 src/Model/User.php:607 -#: 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 -msgid "User not found" -msgstr "" - -#: mod/cal.php:306 -msgid "This calendar format is not supported" -msgstr "" - -#: mod/cal.php:308 -msgid "No exportable data found" -msgstr "" - -#: mod/cal.php:325 -msgid "calendar" -msgstr "" - -#: mod/dfrn_confirm.php:85 src/Module/Profile/Profile.php:82 -msgid "Profile not found." -msgstr "Профил не е намерен." - -#: mod/dfrn_confirm.php:140 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 "Контактът не е намерен." - -#: mod/dfrn_confirm.php:141 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Това понякога може да се случи, ако контакт е поискано от двете лица и вече е одобрен." - -#: mod/dfrn_confirm.php:242 -msgid "Response from remote site was not understood." -msgstr "Отговор от отдалечен сайт не е бил разбран." - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:255 -msgid "Unexpected response from remote site: " -msgstr "Неочакван отговор от отдалечения сайт: " - -#: mod/dfrn_confirm.php:264 -msgid "Confirmation completed successfully." -msgstr "Потвърждение приключи успешно." - -#: mod/dfrn_confirm.php:276 -msgid "Temporary failure. Please wait and try again." -msgstr "Временен неуспех. Моля изчакайте и опитайте отново." - -#: mod/dfrn_confirm.php:279 -msgid "Introduction failed or was revoked." -msgstr "Въведение не успя или е анулиран." - -#: mod/dfrn_confirm.php:284 -msgid "Remote site reported: " -msgstr "Отдалеченият сайт докладвани: " - -#: mod/dfrn_confirm.php:389 -#, php-format -msgid "No user record found for '%s' " -msgstr "Нито един потребител не запис за ' %s" - -#: mod/dfrn_confirm.php:399 -msgid "Our site encryption key is apparently messed up." -msgstr "Основният ни сайт криптиране е очевидно побъркани." - -#: mod/dfrn_confirm.php:410 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Празен сайт URL е предоставена или URL не може да бъде разшифрован от нас." - -#: mod/dfrn_confirm.php:426 -msgid "Contact record was not found for you on our site." -msgstr "Контакт с запис не е намерен за вас на нашия сайт." - -#: mod/dfrn_confirm.php:440 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Site публичния ключ не е наличен в контакт рекорд за %s URL ." - -#: mod/dfrn_confirm.php:456 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "ID, предоставена от вашата система, е дубликат на нашата система. Той трябва да работи, ако се опитате отново." - -#: mod/dfrn_confirm.php:467 -msgid "Unable to set your contact credentials on our system." -msgstr "Не може да се установи контакт с вас пълномощията на нашата система." - -#: mod/dfrn_confirm.php:523 -msgid "Unable to update your contact profile details on our system" -msgstr "Не може да актуализирате вашите данни за контакт на профил в нашата система" - -#: mod/dfrn_poll.php:135 mod/dfrn_poll.php:506 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "" - -#: mod/dfrn_request.php:114 -msgid "This introduction has already been accepted." -msgstr "Това въведение е вече е приета." - -#: mod/dfrn_request.php:132 mod/dfrn_request.php:370 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Профил местоположение не е валиден или не съдържа информация на профила." - -#: mod/dfrn_request.php:136 mod/dfrn_request.php:374 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Внимание: профила място има няма установен име на собственика." - -#: mod/dfrn_request.php:139 mod/dfrn_request.php:377 -msgid "Warning: profile location has no profile photo." -msgstr "Внимание: профила местоположение не е снимката на профила." - -#: mod/dfrn_request.php:143 mod/dfrn_request.php:381 -#, 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] "" -msgstr[1] "" - -#: mod/dfrn_request.php:181 -msgid "Introduction complete." -msgstr "Въведение завърши." - -#: mod/dfrn_request.php:217 -msgid "Unrecoverable protocol error." -msgstr "Невъзстановима протокол грешка." - -#: mod/dfrn_request.php:244 src/Module/RemoteFollow.php:54 -msgid "Profile unavailable." -msgstr "Профил недостъпни." - -#: mod/dfrn_request.php:265 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s е получил твърде много заявки за свързване днес." - -#: mod/dfrn_request.php:266 -msgid "Spam protection measures have been invoked." -msgstr "Мерките за защита срещу спам да бъдат изтъкнати." - -#: mod/dfrn_request.php:267 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Приятели се препоръчва да се моля опитайте отново в рамките на 24 часа." - -#: mod/dfrn_request.php:291 src/Module/RemoteFollow.php:60 -msgid "Invalid locator" -msgstr "Невалиден локатор" - -#: mod/dfrn_request.php:327 -msgid "You have already introduced yourself here." -msgstr "Вие вече се въведе тук." - -#: mod/dfrn_request.php:330 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Явно вече сте приятели с %s ." - -#: mod/dfrn_request.php:350 -msgid "Invalid profile URL." -msgstr "Невалиден URL адрес на профила." - -#: mod/dfrn_request.php:356 src/Model/Contact.php:2136 -msgid "Disallowed profile URL." -msgstr "Отхвърлен профила URL." - -#: mod/dfrn_request.php:362 src/Model/Contact.php:2141 -#: src/Module/Friendica.php:80 -msgid "Blocked domain" -msgstr "" - -#: mod/dfrn_request.php:429 src/Module/Contact.php:157 -msgid "Failed to update contact record." -msgstr "Неуспех да се актуализира рекорд за контакт." - -#: mod/dfrn_request.php:449 -msgid "Your introduction has been sent." -msgstr "Вашият въвеждането е било изпратено." - -#: mod/dfrn_request.php:481 src/Module/RemoteFollow.php:72 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "" - -#: mod/dfrn_request.php:497 -msgid "Please login to confirm introduction." -msgstr "Моля, влезте, за да потвърди въвеждането." - -#: mod/dfrn_request.php:505 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Неправилно идентичност, който в момента е логнат. Моля, влезте с потребителско име и парола на този профил ." - -#: mod/dfrn_request.php:519 mod/dfrn_request.php:534 -msgid "Confirm" -msgstr "Потвърждаване" - -#: mod/dfrn_request.php:530 -msgid "Hide this contact" -msgstr "Скриване на този контакт" - -#: mod/dfrn_request.php:532 -#, php-format -msgid "Welcome home %s." -msgstr "Добре дошли у дома %s ." - -#: mod/dfrn_request.php:533 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Моля, потвърдете, въвеждане / заявката за свързване към %s ." - -#: mod/dfrn_request.php:601 mod/display.php:180 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:51 -#: src/Module/Search/Index.php:56 -msgid "Public access denied." -msgstr "Публичен достъп отказан." - -#: mod/dfrn_request.php:637 src/Module/RemoteFollow.php:104 -msgid "Friend/Connection Request" -msgstr "Приятел / заявка за връзка" - -#: mod/dfrn_request.php:638 -#, 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 "" - -#: mod/dfrn_request.php:639 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 "" - -#: mod/dfrn_request.php:640 src/Module/RemoteFollow.php:107 -msgid "Your Webfinger address or profile URL:" -msgstr "" - -#: mod/dfrn_request.php:641 mod/follow.php:147 src/Module/RemoteFollow.php:108 -msgid "Please answer the following:" -msgstr "Моля отговорете на следните:" - -#: mod/dfrn_request.php:642 mod/follow.php:74 mod/unfollow.php:99 -#: src/Module/RemoteFollow.php:109 -msgid "Submit Request" -msgstr "Изпращане на заявката" - -#: mod/dfrn_request.php:649 mod/follow.php:161 -#, php-format -msgid "%s knows you" -msgstr "" - -#: mod/dfrn_request.php:650 mod/follow.php:162 -msgid "Add a personal note:" -msgstr "Добавяне на лична бележка:" - -#: mod/display.php:239 mod/display.php:323 -msgid "The requested item doesn't exist or has been deleted." -msgstr "" - -#: mod/display.php:403 -msgid "The feed for this item is unavailable." -msgstr "" - -#: mod/editpost.php:44 mod/editpost.php:54 -msgid "Item not found" -msgstr "Елемент не е намерена" - -#: mod/editpost.php:61 -msgid "Edit post" -msgstr "Редактиране на мнение" - -#: mod/editpost.php:88 mod/notes.php:63 src/Content/Text/HTML.php:881 -#: src/Module/Filer/SaveTag.php:70 -msgid "Save" -msgstr "Запази" - -#: mod/editpost.php:94 mod/message.php:204 mod/message.php:373 -#: mod/wallmessage.php:154 -msgid "Insert web link" -msgstr "Вмъкване на връзка в Мрежата" - -#: mod/editpost.php:95 -msgid "web link" -msgstr "Уеб-линк" - -#: mod/editpost.php:96 -msgid "Insert video link" -msgstr "Поставете линка на видео" - -#: mod/editpost.php:97 -msgid "video link" -msgstr "видео връзка" - -#: mod/editpost.php:98 -msgid "Insert audio link" -msgstr "Поставете аудио връзка" - -#: mod/editpost.php:99 -msgid "audio link" -msgstr "аудио връзка" - -#: mod/editpost.php:113 src/Core/ACL.php:312 -msgid "CC: email addresses" -msgstr "CC: имейл адреси" - -#: mod/editpost.php:120 src/Core/ACL.php:313 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Пример: bob@example.com, mary@example.com" - -#: mod/events.php:138 mod/events.php:140 -msgid "Event can not end before it has started." -msgstr "" - -#: mod/events.php:147 mod/events.php:149 -msgid "Event title and start time are required." -msgstr "" - -#: mod/events.php:419 -msgid "Create New Event" -msgstr "Създаване на нов събитие" - -#: mod/events.php:531 -msgid "Event details" -msgstr "Подробности за събитието" - -#: mod/events.php:532 -msgid "Starting date and Title are required." -msgstr "" - -#: mod/events.php:533 mod/events.php:538 -msgid "Event Starts:" -msgstr "Събитие Започва:" - -#: 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:57 -#: src/Module/Install.php:189 src/Module/Install.php:222 -#: src/Module/Install.php:227 src/Module/Install.php:246 -#: src/Module/Install.php:257 src/Module/Install.php:262 -#: src/Module/Install.php:268 src/Module/Install.php:273 -#: src/Module/Install.php:287 src/Module/Install.php:302 -#: src/Module/Install.php:329 src/Module/Register.php:135 -#: src/Module/Security/TwoFactor/Verify.php:85 -#: src/Module/Settings/TwoFactor/Index.php:128 -#: src/Module/Settings/TwoFactor/Verify.php:141 -msgid "Required" -msgstr "Задължително" - -#: mod/events.php:546 mod/events.php:571 -msgid "Finish date/time is not known or not relevant" -msgstr "Завършете дата / час не е известен или не е приложимо" - -#: mod/events.php:548 mod/events.php:553 -msgid "Event Finishes:" -msgstr "Събитие играчи:" - -#: mod/events.php:559 mod/events.php:572 -msgid "Adjust for viewer timezone" -msgstr "Настрои зрителя часовата зона" - -#: mod/events.php:561 src/Module/Profile/Profile.php:172 -#: src/Module/Settings/Profile/Index.php:253 -msgid "Description:" -msgstr "Описание:" - -#: mod/events.php:563 src/Model/Event.php:84 src/Model/Event.php:111 -#: src/Model/Event.php:469 src/Model/Event.php:954 src/Model/Profile.php:358 -#: src/Module/Contact.php:646 src/Module/Directory.php:156 -#: src/Module/Notifications/Introductions.php:172 -#: src/Module/Profile/Profile.php:190 -msgid "Location:" -msgstr "Място:" - -#: mod/events.php:565 mod/events.php:567 -msgid "Title:" -msgstr "Заглавие:" - -#: mod/events.php:568 mod/events.php:569 -msgid "Share this event" -msgstr "Споделете това събитие" - -#: mod/events.php:575 mod/message.php:206 mod/message.php:374 -#: mod/photos.php:951 mod/photos.php:1054 mod/photos.php:1339 -#: mod/photos.php:1380 mod/photos.php:1437 mod/photos.php:1510 -#: src/Module/Contact/Advanced.php:132 src/Module/Contact/Poke.php:155 -#: src/Module/Contact.php:604 src/Module/Debug/Localtime.php:64 -#: src/Module/Delegation.php:152 src/Module/FriendSuggest.php:129 -#: src/Module/Install.php:234 src/Module/Install.php:276 -#: src/Module/Install.php:313 src/Module/Invite.php:175 -#: src/Module/Item/Compose.php:144 src/Module/Profile/Profile.php:242 -#: src/Module/Settings/Profile/Index.php:237 src/Object/Post.php:962 -#: 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 "Изпращане" - -#: mod/events.php:576 src/Module/Profile/Profile.php:243 -msgid "Basic" -msgstr "" - -#: mod/events.php:577 src/Module/Admin/Site.php:587 src/Module/Contact.php:953 -#: src/Module/Profile/Profile.php:244 -msgid "Advanced" -msgstr "Напреднал" - -#: mod/events.php:594 -msgid "Failed to remove event" -msgstr "" - -#: mod/fbrowser.php:43 src/Content/Nav.php:179 src/Module/BaseProfile.php:68 -#: view/theme/frio/theme.php:227 -msgid "Photos" -msgstr "Снимки" - -#: mod/fbrowser.php:107 mod/fbrowser.php:136 -#: src/Module/Settings/Profile/Photo/Index.php:130 -msgid "Upload" -msgstr "Качете в Мрежата " - -#: mod/fbrowser.php:131 -msgid "Files" -msgstr "Файлове" - -#: mod/follow.php:84 -msgid "You already added this contact." -msgstr "" - -#: mod/follow.php:100 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "" - -#: mod/follow.php:108 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:113 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:148 mod/unfollow.php:97 -msgid "Your Identity Address:" -msgstr "Адрес на вашата самоличност:" - -#: mod/follow.php:149 mod/unfollow.php:103 -#: src/Module/Admin/Blocklist/Contact.php:100 src/Module/Contact.php:642 -#: src/Module/Notifications/Introductions.php:108 -#: src/Module/Notifications/Introductions.php:183 -msgid "Profile URL" -msgstr "" - -#: mod/follow.php:150 src/Module/Contact.php:652 -#: src/Module/Notifications/Introductions.php:176 -#: src/Module/Profile/Profile.php:202 -msgid "Tags:" -msgstr "Маркери:" - -#: mod/follow.php:171 mod/unfollow.php:113 src/Module/BaseProfile.php:63 -#: src/Module/Contact.php:931 -msgid "Status Messages and Posts" -msgstr "Съобщения за състоянието и пощи" - -#: mod/follow.php:203 -msgid "The contact could not be added." -msgstr "" - -#: mod/item.php:134 mod/item.php:138 +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 msgid "Unable to locate original post." msgstr "Не може да се намери оригиналната публикация." -#: mod/item.php:333 mod/item.php:338 -msgid "Empty post discarded." -msgstr "Empty мнение изхвърли." - -#: mod/item.php:700 +#: mod/item.php:138 msgid "Post updated." msgstr "" -#: mod/item.php:717 mod/item.php:722 +#: mod/item.php:203 mod/item.php:207 msgid "Item wasn't stored." msgstr "" -#: mod/item.php:733 +#: mod/item.php:217 msgid "Item couldn't be fetched." msgstr "" -#: mod/item.php:857 -#, php-format -msgid "Blocked on item with guid %s" -msgstr "" +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "Empty мнение изхвърли." -#: mod/item.php:884 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 +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 +#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Елемент не е намерен." +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:99 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:38 +#: src/Module/FriendSuggest.php:57 src/Module/Invite.php:42 +#: src/Module/Invite.php:131 src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Delegation.php:41 src/Module/Settings/Delegation.php:71 +#: src/Module/Settings/Display.php:73 src/Module/Settings/Display.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:111 +#: src/Module/Settings/RemoveMe.php:117 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Import.php:84 +#: src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "Разрешението е отказано." + #: mod/lostpass.php:40 msgid "No valid account found." msgstr "Не е валиден акаунт." @@ -1520,7 +149,7 @@ msgid "" "your email for further instructions." msgstr "Въведете вашия имейл адрес и представя си за нулиране на паролата. След това проверявате електронната си поща за по-нататъшни инструкции." -#: mod/lostpass.php:130 src/Module/Security/Login.php:144 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " msgstr "Псевдоним или имейл адрес: " @@ -1528,7 +157,7 @@ msgstr "Псевдоним или имейл адрес: " msgid "Reset" msgstr "Нулиране" -#: mod/lostpass.php:146 src/Module/Security/Login.php:156 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 msgid "Password Reset" msgstr "Смяна на паролата" @@ -1588,53 +217,33 @@ msgstr "" msgid "Your password has been changed at %s" msgstr "" -#: mod/match.php:62 -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 -msgid "No matches" -msgstr "Няма съответствия" - -#: mod/match.php:125 -msgid "Profile Match" -msgstr "Профил мач" - -#: mod/message.php:47 mod/message.php:128 src/Content/Nav.php:276 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 msgid "New Message" msgstr "Ново съобщение" -#: mod/message.php:84 mod/wallmessage.php:76 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 msgid "No recipient selected." msgstr "Не е избран получател." -#: mod/message.php:88 +#: mod/message.php:87 msgid "Unable to locate contact information." msgstr "Не може да се намери информация за контакт." -#: mod/message.php:91 mod/wallmessage.php:82 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 msgid "Message could not be sent." msgstr "Писмото не може да бъде изпратена." -#: mod/message.php:94 mod/wallmessage.php:85 +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 msgid "Message collection failure." msgstr "Съобщение за събиране на неуспех." -#: mod/message.php:122 src/Module/Notifications/Introductions.php:114 -#: src/Module/Notifications/Introductions.php:155 -#: src/Module/Notifications/Notification.php:56 +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 msgid "Discard" msgstr "Отхвърляне" -#: mod/message.php:135 src/Content/Nav.php:273 view/theme/frio/theme.php:234 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" msgstr "Съобщения" @@ -1646,1442 +255,684 @@ msgstr "" msgid "Message was not deleted." msgstr "" -#: mod/message.php:171 +#: mod/message.php:168 msgid "Conversation was not removed." msgstr "" -#: mod/message.php:185 mod/message.php:298 mod/wallmessage.php:137 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 msgid "Please enter a link URL:" msgstr "Моля, въведете URL адреса за връзка:" -#: mod/message.php:194 mod/wallmessage.php:142 +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 msgid "Send Private Message" msgstr "Изпрати Лично Съобщение" -#: mod/message.php:195 mod/message.php:364 mod/wallmessage.php:144 +#: mod/message.php:191 mod/message.php:346 msgid "To:" msgstr "До:" -#: mod/message.php:196 mod/message.php:365 mod/wallmessage.php:145 +#: mod/message.php:192 mod/message.php:347 msgid "Subject:" msgstr "Относно:" -#: mod/message.php:200 mod/message.php:368 mod/wallmessage.php:151 -#: src/Module/Invite.php:168 +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 msgid "Your message:" msgstr "Ваше съобщение" -#: mod/message.php:234 +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "Качване на снимка" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "Вмъкване на връзка в Мрежата" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:578 +msgid "Please wait" +msgstr "Моля, изчакайте" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:145 +#: src/Module/Install.php:234 src/Module/Install.php:274 +#: src/Module/Install.php:309 src/Module/Invite.php:178 +#: src/Module/Item/Compose.php:189 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Object/Post.php:1095 +#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171 +#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Изпращане" + +#: mod/message.php:223 msgid "No messages." msgstr "Няма съобщения." -#: mod/message.php:290 +#: mod/message.php:279 msgid "Message not available." msgstr "Съобщението не е посочена." -#: mod/message.php:340 +#: mod/message.php:323 msgid "Delete message" msgstr "Изтриване на съобщение" -#: mod/message.php:342 mod/message.php:469 +#: mod/message.php:325 mod/message.php:456 msgid "D, d M Y - g:i A" msgstr "D, D MY - Г: А" -#: mod/message.php:357 mod/message.php:466 +#: mod/message.php:340 mod/message.php:453 msgid "Delete conversation" msgstr "Изтриване на разговор" -#: mod/message.php:359 +#: mod/message.php:342 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Няма сигурни комуникации. Можете май да бъде в състояние да отговори от страницата на профила на подателя." -#: mod/message.php:363 +#: mod/message.php:345 msgid "Send Reply" msgstr "Изпратете Отговор" -#: mod/message.php:445 +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "Непознат подател %s" -#: mod/message.php:447 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "Вие и %s" -#: mod/message.php:449 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "%s" -#: mod/message.php:472 +#: mod/message.php:459 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "" msgstr[1] "" -#: mod/notes.php:51 src/Module/BaseProfile.php:110 +#: mod/notes.php:52 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "Личните бележки" -#: mod/notes.php:59 +#: mod/notes.php:56 msgid "Personal notes are visible only by yourself." msgstr "" -#: mod/ostatus_subscribe.php:35 -msgid "Subscribing to OStatus contacts" +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 +msgid "Save" +msgstr "Запази" + +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." msgstr "" -#: mod/ostatus_subscribe.php:45 -msgid "No contact provided." -msgstr "" - -#: mod/ostatus_subscribe.php:51 -msgid "Couldn't fetch information for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:61 -msgid "Couldn't fetch friends for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:79 mod/repair_ostatus.php:65 -msgid "Done" -msgstr "" - -#: mod/ostatus_subscribe.php:93 -msgid "success" -msgstr "" - -#: mod/ostatus_subscribe.php:95 -msgid "failed" -msgstr "" - -#: mod/ostatus_subscribe.php:98 src/Object/Post.php:318 -msgid "ignored" -msgstr "" - -#: mod/ostatus_subscribe.php:103 mod/repair_ostatus.php:71 -msgid "Keep this window open until done." -msgstr "" - -#: mod/photos.php:129 src/Module/BaseProfile.php:71 +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 msgid "Photo Albums" msgstr "Фотоалбуми" -#: mod/photos.php:130 mod/photos.php:1636 +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 msgid "Recent Photos" msgstr "Последни снимки" -#: mod/photos.php:132 mod/photos.php:1105 mod/photos.php:1638 +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 msgid "Upload New Photos" msgstr "Качване на нови снимки" -#: mod/photos.php:150 src/Module/BaseSettings.php:37 +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 msgid "everybody" msgstr "всички" -#: mod/photos.php:183 +#: mod/photos.php:159 msgid "Contact information unavailable" msgstr "Свържете се с информация недостъпна" -#: mod/photos.php:222 +#: mod/photos.php:188 msgid "Album not found." msgstr "Албумът не е намерен." -#: mod/photos.php:280 +#: mod/photos.php:244 msgid "Album successfully deleted" msgstr "" -#: mod/photos.php:282 +#: mod/photos.php:246 msgid "Album was empty." msgstr "" -#: mod/photos.php:314 +#: mod/photos.php:277 msgid "Failed to delete the photo." msgstr "" -#: mod/photos.php:589 +#: mod/photos.php:545 msgid "a photo" msgstr "" -#: mod/photos.php:589 +#: mod/photos.php:545 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "" -#: mod/photos.php:672 mod/photos.php:675 mod/photos.php:702 -#: mod/wall_upload.php:174 src/Module/Settings/Profile/Photo/Index.php:61 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "" +#: mod/photos.php:582 src/Module/Conversation/Community.php:159 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Публичен достъп отказан." -#: mod/photos.php:678 -msgid "Image upload didn't complete, please try again" -msgstr "" - -#: mod/photos.php:681 -msgid "Image file is missing" -msgstr "" - -#: mod/photos.php:686 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "" - -#: mod/photos.php:710 -msgid "Image file is empty." -msgstr "Image файл е празен." - -#: mod/photos.php:725 mod/wall_upload.php:188 -#: src/Module/Settings/Profile/Photo/Index.php:70 -msgid "Unable to process image." -msgstr "Не може да се обработи." - -#: mod/photos.php:754 mod/wall_upload.php:227 -#: src/Module/Settings/Profile/Photo/Index.php:97 -msgid "Image upload failed." -msgstr "Image Upload неуспешно." - -#: mod/photos.php:841 +#: mod/photos.php:587 msgid "No photos selected" msgstr "Няма избрани снимки" -#: mod/photos.php:907 mod/videos.php:182 -msgid "Access to this item is restricted." -msgstr "Достъп до тази точка е ограничена." +#: mod/photos.php:721 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "" -#: mod/photos.php:961 +#: mod/photos.php:728 msgid "Upload Photos" msgstr "Качване на снимки" -#: mod/photos.php:965 mod/photos.php:1050 +#: mod/photos.php:732 mod/photos.php:820 msgid "New album name: " msgstr "Нов албум име: " -#: mod/photos.php:966 +#: mod/photos.php:733 msgid "or select existing album:" msgstr "" -#: mod/photos.php:967 +#: mod/photos.php:734 msgid "Do not show a status post for this upload" msgstr "Да не се показва след статут за това качване" -#: mod/photos.php:1033 +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "права" + +#: mod/photos.php:801 msgid "Do you really want to delete this photo album and all its photos?" msgstr "" -#: mod/photos.php:1034 mod/photos.php:1055 +#: mod/photos.php:802 mod/photos.php:825 msgid "Delete Album" msgstr "Изтриване на албума" -#: mod/photos.php:1061 +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Отмени" + +#: mod/photos.php:829 msgid "Edit Album" msgstr "Редактиране на албум" -#: mod/photos.php:1062 +#: mod/photos.php:830 msgid "Drop Album" msgstr "" -#: mod/photos.php:1067 +#: mod/photos.php:834 msgid "Show Newest First" msgstr "" -#: mod/photos.php:1069 +#: mod/photos.php:836 msgid "Show Oldest First" msgstr "" -#: mod/photos.php:1090 mod/photos.php:1621 +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 msgid "View Photo" msgstr "Преглед на снимка" -#: mod/photos.php:1127 +#: mod/photos.php:889 msgid "Permission denied. Access to this item may be restricted." msgstr "Разрешението е отказано. Достъпът до тази точка може да бъде ограничено." -#: mod/photos.php:1129 +#: mod/photos.php:891 msgid "Photo not available" msgstr "Снимката не е" -#: mod/photos.php:1139 +#: mod/photos.php:901 msgid "Do you really want to delete this photo?" msgstr "" -#: mod/photos.php:1140 mod/photos.php:1340 +#: mod/photos.php:902 mod/photos.php:1102 msgid "Delete Photo" msgstr "Изтриване на снимка" -#: mod/photos.php:1231 +#: mod/photos.php:1000 msgid "View photo" msgstr "Преглед на снимка" -#: mod/photos.php:1233 +#: mod/photos.php:1002 msgid "Edit photo" msgstr "Редактиране на снимка" -#: mod/photos.php:1234 +#: mod/photos.php:1003 msgid "Delete photo" msgstr "" -#: mod/photos.php:1235 +#: mod/photos.php:1004 msgid "Use as profile photo" msgstr "Използва се като снимката на профила" -#: mod/photos.php:1242 +#: mod/photos.php:1011 msgid "Private Photo" msgstr "" -#: mod/photos.php:1248 +#: mod/photos.php:1017 msgid "View Full Size" msgstr "Изглед в пълен размер" -#: mod/photos.php:1308 +#: mod/photos.php:1070 msgid "Tags: " msgstr "Маркери: " -#: mod/photos.php:1311 +#: mod/photos.php:1073 msgid "[Select tags to remove]" msgstr "" -#: mod/photos.php:1326 +#: mod/photos.php:1088 msgid "New album name" msgstr "Ново име на албум" -#: mod/photos.php:1327 +#: mod/photos.php:1089 msgid "Caption" msgstr "Надпис" -#: mod/photos.php:1328 +#: mod/photos.php:1090 msgid "Add a Tag" msgstr "Добавите етикет" -#: mod/photos.php:1328 +#: mod/photos.php:1090 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Пример: @ Боб, @ Barbara_Jensen, jim@example.com @, # Калифорния, къмпинг" -#: mod/photos.php:1329 +#: mod/photos.php:1091 msgid "Do not rotate" msgstr "" -#: mod/photos.php:1330 +#: mod/photos.php:1092 msgid "Rotate CW (right)" msgstr "Rotate CW (вдясно)" -#: mod/photos.php:1331 +#: mod/photos.php:1093 msgid "Rotate CCW (left)" msgstr "Завъртане ККО (вляво)" -#: mod/photos.php:1377 mod/photos.php:1434 mod/photos.php:1507 -#: src/Module/Contact.php:1096 src/Module/Item/Compose.php:142 -#: src/Object/Post.php:959 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1092 msgid "This is you" msgstr "Това сте вие" -#: mod/photos.php:1379 mod/photos.php:1436 mod/photos.php:1509 -#: src/Object/Post.php:499 src/Object/Post.php:961 +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:572 +#: src/Object/Post.php:1094 msgid "Comment" msgstr "Коментар" -#: mod/photos.php:1531 +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1108 +msgid "Preview" +msgstr "Преглед" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1096 +msgid "Loading..." +msgstr "Зареждане..." + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:260 +msgid "Select" +msgstr "избор" + +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 +msgid "Delete" +msgstr "Изтриване" + +#: mod/photos.php:1298 src/Object/Post.php:408 msgid "Like" msgstr "" -#: mod/photos.php:1532 src/Object/Post.php:358 +#: mod/photos.php:1299 src/Object/Post.php:408 msgid "I like this (toggle)" msgstr "Харесва ми това (смяна)" -#: mod/photos.php:1533 +#: mod/photos.php:1300 src/Object/Post.php:409 msgid "Dislike" msgstr "" -#: mod/photos.php:1535 src/Object/Post.php:359 +#: mod/photos.php:1302 src/Object/Post.php:409 msgid "I don't like this (toggle)" msgstr "Не ми харесва това (смяна)" -#: mod/photos.php:1557 +#: mod/photos.php:1324 msgid "Map" msgstr "" -#: mod/photos.php:1627 mod/videos.php:259 -msgid "View Album" -msgstr "Вижте албуми" - -#: mod/ping.php:285 -msgid "{0} wants to be your friend" -msgstr "{0} иска да бъде твой приятел" - -#: mod/ping.php:302 -msgid "{0} requested registration" -msgstr "{0} исканата регистрация" - -#: mod/ping.php:315 -#, php-format -msgid "{0} and %d others requested registration" -msgstr "" - -#: mod/redir.php:50 mod/redir.php:130 -msgid "Bad Request." -msgstr "" - -#: mod/removeme.php:63 -msgid "User deleted their account" -msgstr "" - -#: mod/removeme.php:64 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "" - -#: mod/removeme.php:65 -#, php-format -msgid "The user id is %d" -msgstr "" - -#: mod/removeme.php:99 mod/removeme.php:102 -msgid "Remove My Account" -msgstr "Извадете Моят профил" - -#: mod/removeme.php:100 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Това ще премахне изцяло сметката си. След като това е направено, не е възстановим." - -#: mod/removeme.php:101 -msgid "Please enter your password for verification:" -msgstr "Моля, въведете паролата си за проверка:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "" - -#: mod/repair_ostatus.php:50 src/Module/Debug/ActivityPubConversion.php:130 -#: src/Module/Debug/Babel.php:293 src/Module/Security/TwoFactor/Verify.php:82 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "" -msgstr[1] "" - -#: mod/settings.php:90 -msgid "Missing some important data!" -msgstr "Липсват някои важни данни!" - -#: mod/settings.php:92 mod/settings.php:529 src/Module/Contact.php:882 -msgid "Update" -msgstr "Актуализиране" - -#: mod/settings.php:200 -msgid "Failed to connect with email account using the settings provided." -msgstr "Неуспех да се свърже с имейл акаунт, като използвате предоставените настройки." - -#: mod/settings.php:229 -msgid "Contact CSV file upload error" -msgstr "" - -#: mod/settings.php:246 -msgid "Importing Contacts done" -msgstr "" - -#: mod/settings.php:259 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: mod/settings.php:271 -msgid "Passwords do not match." -msgstr "" - -#: mod/settings.php:279 src/Console/User.php:166 -msgid "Password update failed. Please try again." -msgstr "Парола актуализация се провали. Моля, опитайте отново." - -#: mod/settings.php:282 src/Console/User.php:169 -msgid "Password changed." -msgstr "Парола промени." - -#: mod/settings.php:285 -msgid "Password unchanged." -msgstr "" - -#: mod/settings.php:368 -msgid "Please use a shorter name." -msgstr "" - -#: mod/settings.php:371 -msgid "Name too short." -msgstr "" - -#: mod/settings.php:378 -msgid "Wrong Password." -msgstr "" - -#: mod/settings.php:383 -msgid "Invalid email." -msgstr "" - -#: mod/settings.php:389 -msgid "Cannot change to that email." -msgstr "" - -#: mod/settings.php:426 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Частен форум няма разрешения за неприкосновеността на личния живот. Използване подразбиране поверителност група." - -#: mod/settings.php:429 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Частен форум няма разрешения за неприкосновеността на личния живот и никоя група по подразбиране неприкосновеността на личния живот." - -#: mod/settings.php:446 -msgid "Settings were not updated." -msgstr "" - -#: mod/settings.php:502 mod/settings.php:528 mod/settings.php:562 -msgid "Add application" -msgstr "Добави приложение" - -#: mod/settings.php:503 mod/settings.php:610 mod/settings.php:708 -#: mod/settings.php:843 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/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:505 mod/settings.php:531 -#: 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 "Име" - -#: mod/settings.php:506 mod/settings.php:532 -msgid "Consumer Key" -msgstr "Ключ на консуматора:" - -#: mod/settings.php:507 mod/settings.php:533 -msgid "Consumer Secret" -msgstr "Тайна стойност на консуматора:" - -#: mod/settings.php:508 mod/settings.php:534 -msgid "Redirect" -msgstr "Пренасочвания:" - -#: mod/settings.php:509 mod/settings.php:535 -msgid "Icon url" -msgstr "Икона URL" - -#: mod/settings.php:520 -msgid "You can't edit this application." -msgstr "Вие не можете да редактирате тази кандидатура." - -#: mod/settings.php:561 -msgid "Connected Apps" -msgstr "Свързани Apps" - -#: mod/settings.php:563 src/Object/Post.php:192 src/Object/Post.php:194 -msgid "Edit" -msgstr "Редактиране" - -#: mod/settings.php:565 -msgid "Client key starts with" -msgstr "Ключ на клиента започва с" - -#: mod/settings.php:566 -msgid "No name" -msgstr "Без име" - -#: mod/settings.php:567 -msgid "Remove authorization" -msgstr "Премахване на разрешение" - -#: mod/settings.php:578 -msgid "No Addon settings configured" -msgstr "" - -#: mod/settings.php:587 -msgid "Addon Settings" -msgstr "" - -#: mod/settings.php:608 -msgid "Additional Features" -msgstr "Допълнителни възможности" - -#: mod/settings.php:633 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "" - -#: mod/settings.php:633 mod/settings.php:634 -msgid "enabled" -msgstr "разрешен" - -#: mod/settings.php:633 mod/settings.php:634 -msgid "disabled" -msgstr "забранен" - -#: mod/settings.php:633 mod/settings.php:634 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Вградена поддръжка за връзка от %s %s" - -#: mod/settings.php:634 -msgid "OStatus (GNU Social)" -msgstr "" - -#: mod/settings.php:665 -msgid "Email access is disabled on this site." -msgstr "Достъп до електронна поща е забранен на този сайт." - -#: mod/settings.php:670 mod/settings.php:706 -msgid "None" -msgstr "Няма " - -#: mod/settings.php:676 src/Module/BaseSettings.php:80 -msgid "Social Networks" -msgstr "" - -#: mod/settings.php:681 -msgid "General Social Media Settings" -msgstr "" - -#: mod/settings.php:682 -msgid "Accept only top level posts by contacts you follow" -msgstr "" - -#: mod/settings.php:682 -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 " -"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." -msgstr "" - -#: mod/settings.php:683 -msgid "Disable Content Warning" -msgstr "" - -#: mod/settings.php:683 -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 " -"collapsing and sets the content warning as the post title. Doesn't affect " -"any other content filtering you eventually set up." -msgstr "" - -#: mod/settings.php:684 -msgid "Disable intelligent shortening" -msgstr "" - -#: mod/settings.php:684 -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:685 -msgid "Attach the link title" -msgstr "" - -#: mod/settings.php:685 -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:686 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "" - -#: mod/settings.php:686 -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:687 -msgid "Default group for OStatus contacts" -msgstr "" - -#: mod/settings.php:688 -msgid "Your legacy GNU Social account" -msgstr "" - -#: mod/settings.php:688 -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:691 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: mod/settings.php:695 -msgid "Email/Mailbox Setup" -msgstr "Email / Mailbox Setup" - -#: mod/settings.php:696 -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:697 -msgid "Last successful email check:" -msgstr "Последна успешна проверка на електронната поща:" - -#: mod/settings.php:699 -msgid "IMAP server name:" -msgstr "Име на IMAP сървъра:" - -#: mod/settings.php:700 -msgid "IMAP port:" -msgstr "IMAP порта:" - -#: mod/settings.php:701 -msgid "Security:" -msgstr "Сигурност" - -#: mod/settings.php:702 -msgid "Email login name:" -msgstr "Email потребителско име:" - -#: mod/settings.php:703 -msgid "Email password:" -msgstr "Email парола:" - -#: mod/settings.php:704 -msgid "Reply-to address:" -msgstr "Адрес за отговор:" - -#: mod/settings.php:705 -msgid "Send public posts to all email contacts:" -msgstr "Изпратете публични длъжности за всички имейл контакти:" - -#: mod/settings.php:706 -msgid "Action after import:" -msgstr "Действия след вноса:" - -#: mod/settings.php:706 src/Content/Nav.php:270 -msgid "Mark as seen" -msgstr "Марк, както се вижда" - -#: mod/settings.php:706 -msgid "Move to folder" -msgstr "Премества избраното в папка" - -#: mod/settings.php:707 -msgid "Move to folder:" -msgstr "Премества избраното в папка" - -#: mod/settings.php:721 -msgid "Unable to find your profile. Please contact your admin." -msgstr "" - -#: mod/settings.php:757 src/Content/Widget.php:529 -msgid "Account Types" -msgstr "" - -#: mod/settings.php:758 -msgid "Personal Page Subtypes" -msgstr "" - -#: mod/settings.php:759 -msgid "Community Forum Subtypes" -msgstr "" - -#: mod/settings.php:766 src/Module/Admin/BaseUsers.php:106 -msgid "Personal Page" -msgstr "" - -#: mod/settings.php:767 -msgid "Account for a personal profile." -msgstr "" - -#: mod/settings.php:770 src/Module/Admin/BaseUsers.php:107 -msgid "Organisation Page" -msgstr "" - -#: mod/settings.php:771 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "" - -#: mod/settings.php:774 src/Module/Admin/BaseUsers.php:108 -msgid "News Page" -msgstr "" - -#: mod/settings.php:775 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "" - -#: mod/settings.php:778 src/Module/Admin/BaseUsers.php:109 -msgid "Community Forum" -msgstr "" - -#: mod/settings.php:779 -msgid "Account for community discussions." -msgstr "" - -#: mod/settings.php:782 src/Module/Admin/BaseUsers.php:99 -msgid "Normal Account Page" -msgstr "Нормално страницата с профила" - -#: mod/settings.php:783 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "" - -#: mod/settings.php:786 src/Module/Admin/BaseUsers.php:100 -msgid "Soapbox Page" -msgstr "Импровизирана трибуна Page" - -#: mod/settings.php:787 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "" - -#: mod/settings.php:790 src/Module/Admin/BaseUsers.php:101 -msgid "Public Forum" -msgstr "" - -#: mod/settings.php:791 -msgid "Automatically approves all contact requests." -msgstr "" - -#: mod/settings.php:794 src/Module/Admin/BaseUsers.php:102 -msgid "Automatic Friend Page" -msgstr "Автоматично приятел Page" - -#: mod/settings.php:795 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "" - -#: mod/settings.php:798 -msgid "Private Forum [Experimental]" -msgstr "Частен форум [експериментална]" - -#: mod/settings.php:799 -msgid "Requires manual approval of contact requests." -msgstr "" - -#: mod/settings.php:810 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:810 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(По избор) позволяват това OpenID, за да влезете в тази сметка." - -#: mod/settings.php:818 -msgid "Publish your profile in your local site directory?" -msgstr "" - -#: mod/settings.php:818 -#, php-format -msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "" - -#: mod/settings.php:824 -#, php-format -msgid "" -"Your profile will also be published in the global friendica directories " -"(e.g. %s)." +#: src/App.php:473 +msgid "No system theme config value set." msgstr "" -#: mod/settings.php:830 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "" - -#: mod/settings.php:841 -msgid "Account Settings" -msgstr "Настройки на профила" - -#: mod/settings.php:849 -msgid "Password Settings" -msgstr "Парола Настройки" - -#: mod/settings.php:850 src/Module/Register.php:149 -msgid "New Password:" -msgstr "нова парола" - -#: mod/settings.php:850 -msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "" - -#: mod/settings.php:851 src/Module/Register.php:150 -msgid "Confirm:" -msgstr "Потвърждаване..." - -#: mod/settings.php:851 -msgid "Leave password fields blank unless changing" -msgstr "Оставете паролите полета празни, освен ако промяна" - -#: mod/settings.php:852 -msgid "Current Password:" -msgstr "Текуща парола:" - -#: mod/settings.php:852 -msgid "Your current password to confirm the changes" -msgstr "" - -#: mod/settings.php:853 -msgid "Password:" -msgstr "Парола" - -#: mod/settings.php:853 -msgid "Your current password to confirm the changes of the email address" -msgstr "" - -#: mod/settings.php:856 -msgid "Delete OpenID URL" -msgstr "" - -#: mod/settings.php:858 -msgid "Basic Settings" -msgstr "Основни настройки" - -#: mod/settings.php:859 src/Module/Profile/Profile.php:144 -msgid "Full Name:" -msgstr "Собствено и фамилно име" - -#: mod/settings.php:860 -msgid "Email Address:" -msgstr "Електронна поща:" - -#: mod/settings.php:861 -msgid "Your Timezone:" -msgstr "Вашият Часовата зона:" - -#: mod/settings.php:862 -msgid "Your Language:" -msgstr "" - -#: mod/settings.php:862 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "" - -#: mod/settings.php:863 -msgid "Default Post Location:" -msgstr "Мнение местоположението по подразбиране:" - -#: mod/settings.php:864 -msgid "Use Browser Location:" -msgstr "Използвайте Browser Местоположение:" - -#: mod/settings.php:866 -msgid "Security and Privacy Settings" -msgstr "Сигурност и и лични настройки" - -#: mod/settings.php:868 -msgid "Maximum Friend Requests/Day:" -msgstr "Максимален брой молби за приятелство / ден:" - -#: mod/settings.php:868 mod/settings.php:878 -msgid "(to prevent spam abuse)" -msgstr "(Да се ​​предотврати спама злоупотреба)" - -#: mod/settings.php:870 -msgid "Allow your profile to be searchable globally?" -msgstr "" - -#: mod/settings.php:870 -msgid "" -"Activate this setting if you want others to easily find and follow you. Your" -" profile will be searchable on remote systems. This setting also determines " -"whether Friendica will inform search engines that your profile should be " -"indexed or not." -msgstr "" - -#: mod/settings.php:871 -msgid "Hide your contact/friend list from viewers of your profile?" -msgstr "" - -#: mod/settings.php:871 -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:872 -msgid "Hide your profile details from anonymous viewers?" -msgstr "" - -#: mod/settings.php:872 -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:873 -msgid "Make public posts unlisted" -msgstr "" - -#: mod/settings.php:873 -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:874 -msgid "Make all posted pictures accessible" -msgstr "" - -#: mod/settings.php:874 -msgid "" -"This option makes every posted picture accessible via the direct link. This " -"is a workaround for the problem that most other networks can't handle " -"permissions on pictures. Non public pictures still won't be visible for the " -"public on your photo albums though." -msgstr "" - -#: mod/settings.php:875 -msgid "Allow friends to post to your profile page?" -msgstr "Оставете приятели, които да публикувате в страницата с вашия профил?" - -#: mod/settings.php:875 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "" - -#: mod/settings.php:876 -msgid "Allow friends to tag your posts?" -msgstr "Оставете приятели, за да маркирам собствените си мнения?" - -#: mod/settings.php:876 -msgid "Your contacts can add additional tags to your posts." -msgstr "" - -#: mod/settings.php:877 -msgid "Permit unknown people to send you private mail?" -msgstr "Разрешение непознати хора, за да ви Изпратете лично поща?" - -#: mod/settings.php:877 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "" - -#: mod/settings.php:878 -msgid "Maximum private messages per day from unknown people:" -msgstr "Максимални лични съобщения на ден от непознати хора:" - -#: mod/settings.php:880 -msgid "Default Post Permissions" -msgstr "Разрешения по подразбиране и" - -#: mod/settings.php:884 -msgid "Expiration settings" -msgstr "" - -#: mod/settings.php:885 -msgid "Automatically expire posts after this many days:" -msgstr "Автоматично изтича мнения след толкова много дни:" - -#: mod/settings.php:885 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Ако е празна, мнението няма да изтече. Изтекли мнения ще бъдат изтрити" - -#: mod/settings.php:886 -msgid "Expire posts" -msgstr "" - -#: mod/settings.php:886 -msgid "When activated, posts and comments will be expired." -msgstr "" - -#: mod/settings.php:887 -msgid "Expire personal notes" -msgstr "" - -#: mod/settings.php:887 -msgid "" -"When activated, the personal notes on your profile page will be expired." -msgstr "" - -#: mod/settings.php:888 -msgid "Expire starred posts" -msgstr "" - -#: mod/settings.php:888 -msgid "" -"Starring posts keeps them from being expired. That behaviour is overwritten " -"by this setting." -msgstr "" - -#: mod/settings.php:889 -msgid "Expire photos" -msgstr "" - -#: mod/settings.php:889 -msgid "When activated, photos will be expired." -msgstr "" - -#: mod/settings.php:890 -msgid "Only expire posts by others" -msgstr "" - -#: mod/settings.php:890 -msgid "" -"When activated, your own posts never expire. Then the settings above are " -"only valid for posts you received." -msgstr "" - -#: mod/settings.php:893 -msgid "Notification Settings" -msgstr "Настройки за уведомяване" - -#: mod/settings.php:894 -msgid "Send a notification email when:" -msgstr "Изпращане на известие по имейл, когато:" - -#: mod/settings.php:895 -msgid "You receive an introduction" -msgstr "Вие получавате въведение" - -#: mod/settings.php:896 -msgid "Your introductions are confirmed" -msgstr "Вашите въвеждания са потвърдени" - -#: mod/settings.php:897 -msgid "Someone writes on your profile wall" -msgstr "Някой пише в профила ви стена" - -#: mod/settings.php:898 -msgid "Someone writes a followup comment" -msgstr "Някой пише последващ коментар" - -#: mod/settings.php:899 -msgid "You receive a private message" -msgstr "Ще получите лично съобщение" - -#: mod/settings.php:900 -msgid "You receive a friend suggestion" -msgstr "Ще получите предложение приятел" - -#: mod/settings.php:901 -msgid "You are tagged in a post" -msgstr "Са маркирани в един пост" - -#: mod/settings.php:902 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: mod/settings.php:904 -msgid "Activate desktop notifications" -msgstr "" - -#: mod/settings.php:904 -msgid "Show desktop popup on new notifications" -msgstr "" - -#: mod/settings.php:906 -msgid "Text-only notification emails" -msgstr "" - -#: mod/settings.php:908 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: mod/settings.php:910 -msgid "Show detailled notifications" -msgstr "" - -#: mod/settings.php:912 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "" - -#: mod/settings.php:914 -msgid "Advanced Account/Page Type Settings" -msgstr "Разширено сметка / Настройки на вид страница" - -#: mod/settings.php:915 -msgid "Change the behaviour of this account for special situations" -msgstr "Промяна на поведението на тази сметка за специални ситуации" - -#: mod/settings.php:918 -msgid "Import Contacts" -msgstr "" - -#: mod/settings.php:919 -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:920 -msgid "Upload File" -msgstr "" - -#: mod/settings.php:922 -msgid "Relocate" -msgstr "" - -#: mod/settings.php:923 -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:924 -msgid "Resend relocate message to contacts" -msgstr "" - -#: mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Няма предложения. Ако това е нов сайт, моля опитайте отново в рамките на 24 часа." - -#: mod/suggest.php:55 src/Content/Widget.php:78 view/theme/vier/theme.php:175 -msgid "Friend Suggestions" -msgstr "Предложения за приятели" - -#: mod/tagrm.php:113 -msgid "Remove Item Tag" -msgstr "Извадете Tag т." - -#: mod/tagrm.php:115 -msgid "Select a tag to remove: " -msgstr "Изберете етикет, за да премахнете: " - -#: mod/tagrm.php:126 src/Module/Settings/Delegation.php:179 -msgid "Remove" -msgstr "Премахване" - -#: mod/uimport.php:45 -msgid "User imports on closed servers can only be done by an administrator." -msgstr "" - -#: 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 "Този сайт е надвишил броя на разрешените дневни регистрации сметка. Моля, опитайте отново утре." - -#: mod/uimport.php:61 src/Module/Register.php:160 -msgid "Import" -msgstr "Внасяне" - -#: mod/uimport.php:63 -msgid "Move account" -msgstr "" - -#: mod/uimport.php:64 -msgid "You can import an account from another Friendica server." -msgstr "" - -#: mod/uimport.php:65 -msgid "" -"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." -msgstr "" - -#: mod/uimport.php:66 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "" - -#: mod/uimport.php:67 -msgid "Account file" -msgstr "" - -#: mod/uimport.php:67 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" - -#: mod/unfollow.php:65 mod/unfollow.php:133 -msgid "You aren't following this contact." -msgstr "" - -#: mod/unfollow.php:71 mod/unfollow.php:139 -msgid "Unfollowing is currently not supported by your network." -msgstr "" - -#: mod/unfollow.php:95 -msgid "Disconnect/Unfollow" -msgstr "" - -#: mod/videos.php:134 -msgid "No videos selected" -msgstr "Няма избрани видеоклипове" - -#: mod/videos.php:252 src/Model/Item.php:2952 -msgid "View Video" -msgstr "Преглед на видеоклип" - -#: mod/videos.php:267 -msgid "Recent Videos" -msgstr "Скорошни видеоклипове" - -#: mod/videos.php:269 -msgid "Upload New Videos" -msgstr "Качване на нови видеоклипове" - -#: mod/wallmessage.php:68 mod/wallmessage.php:129 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Брой на ежедневните съобщения за стена за %s е превишен. Съобщение не успя." - -#: mod/wallmessage.php:79 -msgid "Unable to check your home location." -msgstr "Не може да проверите вашето местоположение." - -#: mod/wallmessage.php:103 mod/wallmessage.php:112 -msgid "No recipient." -msgstr "Не получателя." - -#: 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 "Ако желаете за %s да отговори, моля, проверете дали настройките за поверителност на сайта си позволяват частни съобщения от непознати податели." - -#: 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 "" - -#: mod/wall_attach.php:105 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: mod/wall_attach.php:105 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: mod/wall_attach.php:116 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "" - -#: mod/wall_attach.php:131 -msgid "File upload failed." -msgstr "Файл за качване не успя." - -#: mod/wall_upload.php:219 -msgid "Wall Photos" -msgstr "Стена снимки" - -#: src/App/Module.php:241 -msgid "You must be logged in to use addons. " +#: src/App.php:580 +msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:250 +#: src/App/Page.php:248 msgid "Delete this item?" msgstr "Изтриване на тази бележка?" -#: src/App/Page.php:251 +#: src/App/Page.php:249 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "" -#: src/App/Page.php:299 +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "" + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "" + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "" + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "" + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "" + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "" + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "" + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "" + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "" + +#: src/App/Page.php:351 msgid "toggle mobile" msgstr "" -#: src/App/Router.php:234 +#: src/App/Router.php:309 #, 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:311 src/Module/HTTPException/PageNotFound.php:49 msgid "Page not found." msgstr "Страницата не е намерена." -#: src/App.php:309 -msgid "No system theme config value set." +#: src/App/Router.php:323 +msgid "You must be logged in to use addons. " msgstr "" -#: src/BaseModule.php:150 +#: src/BaseModule.php:401 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 "Маркера за сигурност не е вярна. Това вероятно е станало, тъй като формата е била отворена за прекалено дълго време (> 3 часа) преди да го представи." -#: src/BaseModule.php:179 +#: src/BaseModule.php:428 msgid "All contacts" msgstr "" -#: src/BaseModule.php:184 src/Content/Widget.php:237 src/Core/ACL.php:182 -#: src/Module/Contact.php:852 src/Module/PermissionTooltip.php:77 -#: src/Module/PermissionTooltip.php:99 +#: src/BaseModule.php:433 src/Content/Conversation/Factory/Timeline.php:62 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 msgid "Followers" msgstr "" -#: src/BaseModule.php:189 src/Content/Widget.php:238 -#: src/Module/Contact.php:853 +#: src/BaseModule.php:438 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 msgid "Following" msgstr "" -#: src/BaseModule.php:194 src/Content/Widget.php:239 -#: src/Module/Contact.php:854 +#: src/BaseModule.php:443 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 msgid "Mutual friends" msgstr "" -#: src/BaseModule.php:202 +#: src/BaseModule.php:451 msgid "Common" msgstr "" -#: src/Console/ArchiveContact.php:105 +#: src/Console/Addon.php:175 src/Console/Addon.php:199 +msgid "Addon not found" +msgstr "" + +#: src/Console/Addon.php:179 +msgid "Addon already enabled" +msgstr "" + +#: src/Console/Addon.php:203 +msgid "Addon already disabled" +msgstr "" + +#: src/Console/ArchiveContact.php:106 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "" -#: src/Console/ArchiveContact.php:108 +#: src/Console/ArchiveContact.php:109 msgid "The contact entries have been archived" msgstr "" #: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "" #: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:47 +#: src/Module/Moderation/Blocklist/Contact.php:82 msgid "The contact has been blocked from the node" msgstr "" +#: src/Console/MergeContacts.php:75 +#, php-format +msgid "%d %s, %d duplicates." +msgstr "" + +#: src/Console/MergeContacts.php:78 +#, php-format +msgid "uri-id is empty for contact %s." +msgstr "" + +#: src/Console/MergeContacts.php:91 +#, php-format +msgid "No valid first contact found for uri-id %d." +msgstr "" + +#: src/Console/MergeContacts.php:102 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:106 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:142 +#, php-format +msgid "Deletion of id %d failed" +msgstr "" + +#: src/Console/MergeContacts.php:144 +#, php-format +msgid "Deletion of id %d was successful" +msgstr "" + +#: src/Console/MergeContacts.php:150 +#, php-format +msgid "Updating \"%s\" in \"%s\" from %d to %d" +msgstr "" + +#: src/Console/MergeContacts.php:152 +msgid " - found" +msgstr "" + +#: src/Console/MergeContacts.php:159 +msgid " - failed" +msgstr "" + +#: src/Console/MergeContacts.php:161 +msgid " - success" +msgstr "" + +#: src/Console/MergeContacts.php:165 +msgid " - deleted" +msgstr "" + +#: src/Console/MergeContacts.php:168 +msgid " - done" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:91 +msgid "The avatar cache needs to be enabled to use this command." +msgstr "" + +#: src/Console/MoveToAvatarCache.php:109 +#, php-format +msgid "no resource in photo %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:137 +#, php-format +msgid "no photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:146 +#, php-format +msgid "no image data for photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:155 +#, php-format +msgid "invalid image for id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:168 +#, php-format +msgid "Quit on invalid photo %s" +msgstr "" + #: src/Console/PostUpdate.php:87 #, php-format msgid "Post update version number has been set to %s." @@ -3103,44 +954,74 @@ msgstr "" msgid "All pending post updates are done." msgstr "" -#: src/Console/User.php:158 -msgid "Enter new password: " -msgstr "" - -#: src/Console/User.php:193 -msgid "Enter user name: " -msgstr "" - -#: src/Console/User.php:201 src/Console/User.php:241 src/Console/User.php:274 -#: src/Console/User.php:300 +#: src/Console/User.php:158 src/Console/User.php:245 msgid "Enter user nickname: " msgstr "" -#: src/Console/User.php:209 +#: src/Console/User.php:182 src/Model/User.php:711 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "" + +#: src/Console/User.php:202 +msgid "Enter new password: " +msgstr "" + +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 +msgid "Password update failed. Please try again." +msgstr "Парола актуализация се провали. Моля, опитайте отново." + +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 +msgid "Password changed." +msgstr "Парола промени." + +#: src/Console/User.php:237 +msgid "Enter user name: " +msgstr "" + +#: src/Console/User.php:253 msgid "Enter user email address: " msgstr "" -#: src/Console/User.php:217 +#: src/Console/User.php:261 msgid "Enter a language (optional): " msgstr "" -#: src/Console/User.php:255 +#: src/Console/User.php:286 msgid "User is not pending." msgstr "" -#: src/Console/User.php:313 +#: src/Console/User.php:318 msgid "User has already been marked for deletion." msgstr "" -#: src/Console/User.php:318 +#: src/Console/User.php:323 #, php-format msgid "Type \"yes\" to delete %s" msgstr "" -#: src/Console/User.php:320 +#: src/Console/User.php:325 msgid "Deletion aborted." msgstr "" +#: src/Console/User.php:450 +msgid "Enter category: " +msgstr "" + +#: src/Console/User.php:460 +msgid "Enter key: " +msgstr "" + +#: src/Console/User.php:494 +msgid "Enter value: " +msgstr "" + #: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 msgid "newer" msgstr "" @@ -3149,106 +1030,603 @@ msgstr "" msgid "older" msgstr "" -#: src/Content/ContactSelector.php:48 +#: src/Content/ContactSelector.php:51 msgid "Frequently" msgstr "" -#: src/Content/ContactSelector.php:49 +#: src/Content/ContactSelector.php:52 msgid "Hourly" msgstr "" -#: src/Content/ContactSelector.php:50 +#: src/Content/ContactSelector.php:53 msgid "Twice daily" msgstr "" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:54 msgid "Daily" msgstr "" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:55 msgid "Weekly" msgstr "" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:56 msgid "Monthly" msgstr "" -#: src/Content/ContactSelector.php:99 +#: src/Content/ContactSelector.php:126 msgid "DFRN" msgstr "" -#: src/Content/ContactSelector.php:100 +#: src/Content/ContactSelector.php:127 msgid "OStatus" msgstr "" -#: src/Content/ContactSelector.php:101 +#: src/Content/ContactSelector.php:128 msgid "RSS/Atom" msgstr "" -#: src/Content/ContactSelector.php:102 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 +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 msgid "Email" msgstr "Е-поща" -#: src/Content/ContactSelector.php:103 src/Module/Debug/Babel.php:306 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 msgid "Diaspora" msgstr "Диаспора" -#: src/Content/ContactSelector.php:104 +#: src/Content/ContactSelector.php:131 msgid "Zot!" msgstr "" -#: src/Content/ContactSelector.php:105 +#: src/Content/ContactSelector.php:132 msgid "LinkedIn" msgstr "" -#: src/Content/ContactSelector.php:106 +#: src/Content/ContactSelector.php:133 msgid "XMPP/IM" msgstr "" -#: src/Content/ContactSelector.php:107 +#: src/Content/ContactSelector.php:134 msgid "MySpace" msgstr "" -#: src/Content/ContactSelector.php:108 +#: src/Content/ContactSelector.php:135 msgid "Google+" msgstr "" -#: src/Content/ContactSelector.php:109 +#: src/Content/ContactSelector.php:136 msgid "pump.io" msgstr "" -#: src/Content/ContactSelector.php:110 +#: src/Content/ContactSelector.php:137 msgid "Twitter" msgstr "" -#: src/Content/ContactSelector.php:111 +#: src/Content/ContactSelector.php:138 msgid "Discourse" msgstr "" -#: src/Content/ContactSelector.php:112 +#: src/Content/ContactSelector.php:139 msgid "Diaspora Connector" msgstr "" -#: src/Content/ContactSelector.php:113 +#: src/Content/ContactSelector.php:140 msgid "GNU Social Connector" msgstr "" -#: src/Content/ContactSelector.php:114 +#: src/Content/ContactSelector.php:141 msgid "ActivityPub" msgstr "" -#: src/Content/ContactSelector.php:115 +#: src/Content/ContactSelector.php:142 msgid "pnut" msgstr "" -#: src/Content/ContactSelector.php:149 +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "" + +#: src/Content/ContactSelector.php:180 #, php-format msgid "%s (via %s)" msgstr "" +#: src/Content/Conversation.php:226 +msgid "and" +msgstr "и" + +#: src/Content/Conversation.php:229 +#, php-format +msgid "and %d other people" +msgstr "" + +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:239 +#, php-format +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:241 +#, php-format +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:243 +#, php-format +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:245 +#, php-format +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:274 +#, php-format +msgid " likes this" +msgid_plural " like this" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:277 +#, php-format +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:280 +#, php-format +msgid " attends" +msgid_plural " attend" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:283 +#, php-format +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:286 +#, php-format +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:289 +#, php-format +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:336 +msgid "Visible to everybody" +msgstr "Видим всички " + +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1107 +msgid "Please enter a image/video/audio/webpage URL:" +msgstr "" + +#: src/Content/Conversation.php:338 +msgid "Tag term:" +msgstr "Tag термин:" + +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 +msgid "Save to Folder:" +msgstr "Запиши в папка:" + +#: src/Content/Conversation.php:340 +msgid "Where are you right now?" +msgstr "Къде сте в момента?" + +#: src/Content/Conversation.php:341 +msgid "Delete item(s)?" +msgstr "" + +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 +msgid "Created at" +msgstr "" + +#: src/Content/Conversation.php:363 +msgid "New Post" +msgstr "Нов пост" + +#: src/Content/Conversation.php:366 +msgid "Share" +msgstr "Споделяне" + +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "качване на снимка" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Прикачване на файл" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "Прикачване на файл" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1097 +msgid "Bold" +msgstr "Получер" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1098 +msgid "Italic" +msgstr "Курсив" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1099 +msgid "Underline" +msgstr "Подчертан" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1101 +msgid "Quote" +msgstr "Цитат" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1102 +msgid "Add emojis" +msgstr "" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1100 +msgid "Content Warning" +msgstr "" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1103 +msgid "Code" +msgstr "Код" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1104 +msgid "Image" +msgstr "Изображение" + +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1105 +msgid "Link" +msgstr "Връзка" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1106 +msgid "Link or Media" +msgstr "" + +#: src/Content/Conversation.php:382 +msgid "Video" +msgstr "" + +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "Задайте местоположението си" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "Задаване на местоположението" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "Изчистване на браузъра място" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "ясно място" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Задайте заглавие" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Категории (разделен със запетаи списък)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 +msgid "Scheduled at" +msgstr "" + +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Настройките за достъп" + +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Обществена длъжност" + +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:120 +#: src/Model/Profile.php:467 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "Съобщение" + +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Браузър" + +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "" + +#: src/Content/Conversation.php:595 +msgid "remove" +msgstr "Премахване" + +#: src/Content/Conversation.php:599 +msgid "Delete Selected Items" +msgstr "Изтриване на избраните елементи" + +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 +#, php-format +msgid "You had been addressed (%s)." +msgstr "" + +#: src/Content/Conversation.php:769 +#, php-format +msgid "You are following %s." +msgstr "" + +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "" + +#: src/Content/Conversation.php:776 +msgid "You subscribed to one or more tags in this post." +msgstr "" + +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "" + +#: src/Content/Conversation.php:798 +msgid "Reshared" +msgstr "" + +#: src/Content/Conversation.php:798 +#, php-format +msgid "Reshared by %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:801 +#, php-format +msgid "%s is participating in this thread." +msgstr "" + +#: src/Content/Conversation.php:804 +msgid "Stored for general reasons" +msgstr "" + +#: src/Content/Conversation.php:807 +msgid "Global post" +msgstr "" + +#: src/Content/Conversation.php:810 +msgid "Sent via an relay server" +msgstr "" + +#: src/Content/Conversation.php:810 +#, php-format +msgid "Sent via the relay server %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:813 +msgid "Fetched" +msgstr "" + +#: src/Content/Conversation.php:813 +#, php-format +msgid "Fetched because of %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:816 +msgid "Stored because of a child post to complete this thread." +msgstr "" + +#: src/Content/Conversation.php:819 +msgid "Local delivery" +msgstr "" + +#: src/Content/Conversation.php:822 +msgid "Stored because of your activity (like, comment, star, ...)" +msgstr "" + +#: src/Content/Conversation.php:825 +msgid "Distributed" +msgstr "" + +#: src/Content/Conversation.php:828 +msgid "Pushed to us" +msgstr "" + +#: src/Content/Conversation.php:1492 src/Object/Post.php:247 +msgid "Pinned item" +msgstr "" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:521 +#: src/Object/Post.php:522 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Преглед профила на %s в %s" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:509 +msgid "Categories:" +msgstr "Категории:" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:510 +msgid "Filed under:" +msgstr "Записано в:" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:535 +#, php-format +msgid "%s from %s" +msgstr "%s от %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "Поглед в контекста" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "For you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "What's Hot" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "Posts with a lot of interactions" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:61 +#, php-format +msgid "Posts in %s" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:62 +msgid "Posts from your followers that you don't follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Sharers of sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Posts with images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Posts with audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Posts with videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Local Community" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Posts from local users on this server" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Global Community" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Posts from users of the whole federated network" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Latest Activity" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Sort by latest activity" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Latest Posts" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Sort by post received date" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Latest Creation" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Sort by post creation date" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:106 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "Лично" + +#: src/Content/Conversation/Factory/Timeline.php:106 +msgid "Posts that mention or involve you" +msgstr "Мнения, които споменават или включват" + +#: src/Content/Conversation/Factory/Timeline.php:107 src/Object/Post.php:380 +msgid "Starred" +msgstr "Със звезда" + +#: src/Content/Conversation/Factory/Timeline.php:107 +msgid "Favourite Posts" +msgstr "Любими Мнения" + #: src/Content/Feature.php:96 msgid "General Features" msgstr "" @@ -3278,12 +1656,12 @@ msgid "Post Composition Features" msgstr "" #: src/Content/Feature.php:105 -msgid "Auto-mention Forums" +msgid "Auto-mention Groups" msgstr "" #: src/Content/Feature.php:105 msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." +"Add/remove mention when a group page is selected/deselected in ACL window." msgstr "" #: src/Content/Feature.php:106 @@ -3296,526 +1674,652 @@ msgid "" "mentioned in replies." msgstr "" -#: src/Content/Feature.php:111 +#: src/Content/Feature.php:107 +msgid "Add an abstract from ActivityPub content warnings" +msgstr "" + +#: src/Content/Feature.php:107 +msgid "" +"Add an abstract when commenting on ActivityPub posts with a content warning." +" Abstracts are displayed as content warning on systems like Mastodon or " +"Pleroma." +msgstr "" + +#: src/Content/Feature.php:112 msgid "Post/Comment Tools" msgstr "" -#: src/Content/Feature.php:112 +#: src/Content/Feature.php:113 msgid "Post Categories" msgstr "" -#: src/Content/Feature.php:112 +#: src/Content/Feature.php:113 msgid "Add categories to your posts" msgstr "" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:118 msgid "Advanced Profile Settings" msgstr "" -#: src/Content/Feature.php:118 -msgid "List Forums" -msgstr "" - -#: src/Content/Feature.php:118 -msgid "Show visitors public community forums at the Advanced Profile Page" +#: src/Content/Feature.php:119 +msgid "List Groups" msgstr "" #: src/Content/Feature.php:119 +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "" + +#: src/Content/Feature.php:120 msgid "Tag Cloud" msgstr "" -#: src/Content/Feature.php:119 +#: src/Content/Feature.php:120 msgid "Provide a personal tag cloud on your profile page" msgstr "" -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:121 msgid "Display Membership Date" msgstr "" -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:121 msgid "Display membership date in profile" msgstr "" -#: src/Content/ForumManager.php:145 src/Content/Nav.php:229 -#: src/Content/Text/HTML.php:902 src/Content/Widget.php:526 -msgid "Forums" +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" msgstr "" -#: src/Content/ForumManager.php:147 -msgid "External link to forum" +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" msgstr "" -#: src/Content/ForumManager.php:150 src/Content/Widget.php:505 +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "" + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1273 +msgid "Groups" +msgstr "" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 msgid "show less" msgstr "" -#: src/Content/ForumManager.php:151 src/Content/Widget.php:410 -#: src/Content/Widget.php:506 +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 msgid "show more" msgstr "покажи още" -#: src/Content/Nav.php:90 +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "" + +#: src/Content/Item.php:331 src/Model/Item.php:3003 +msgid "event" +msgstr "събитието." + +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "статус" + +#: src/Content/Item.php:340 src/Model/Item.php:3005 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "снимка" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s сложи етикет с %2$s - %3$s %4$s" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 +msgid "Follow Thread" +msgstr "" + +#: src/Content/Item.php:429 src/Model/Contact.php:1227 +msgid "View Status" +msgstr "Показване на състоянието" + +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1219 +#: src/Model/Contact.php:1228 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 +msgid "View Profile" +msgstr "Преглед на профил" + +#: src/Content/Item.php:431 src/Model/Contact.php:1229 +msgid "View Photos" +msgstr "Вижте снимки" + +#: src/Content/Item.php:432 src/Model/Contact.php:1220 +#: src/Model/Contact.php:1230 +msgid "Network Posts" +msgstr "Мрежови Мнения" + +#: src/Content/Item.php:433 src/Model/Contact.php:1221 +#: src/Model/Contact.php:1231 +msgid "View Contact" +msgstr "Преглед на Контакта" + +#: src/Content/Item.php:434 src/Model/Contact.php:1232 +msgid "Send PM" +msgstr "Изпратете PM" + +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 +msgid "Block" +msgstr "Блокиране" + +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 +msgid "Ignore" +msgstr "Пренебрегване" + +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "" + +#: src/Content/Item.php:438 src/Object/Post.php:288 +#, php-format +msgid "Ignore %s server" +msgstr "" + +#: src/Content/Item.php:442 src/Object/Post.php:490 +msgid "Languages" +msgstr "Езици" + +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1222 src/Model/Contact.php:1233 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Свържете се / последваща" + +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "" + +#: src/Content/Nav.php:121 msgid "Nothing new here" msgstr "Нищо ново тук" -#: src/Content/Nav.php:94 src/Module/Special/HTTPException.php:75 +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 msgid "Go back" msgstr "" -#: src/Content/Nav.php:95 +#: src/Content/Nav.php:126 msgid "Clear notifications" msgstr "Изчистване на уведомленията" -#: src/Content/Nav.php:96 src/Content/Text/HTML.php:889 -msgid "@name, !forum, #tags, content" +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" msgstr "" -#: src/Content/Nav.php:169 src/Module/Security/Login.php:141 +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 msgid "Logout" msgstr "изход" -#: src/Content/Nav.php:169 +#: src/Content/Nav.php:222 msgid "End this session" msgstr "Край на тази сесия" -#: src/Content/Nav.php:171 src/Module/Bookmarklet.php:46 -#: src/Module/Security/Login.php:142 +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 msgid "Login" msgstr "Вход" -#: src/Content/Nav.php:171 +#: src/Content/Nav.php:224 msgid "Sign in" msgstr "Вход" -#: src/Content/Nav.php:177 src/Module/BaseProfile.php:60 -#: src/Module/Contact.php:655 src/Module/Contact.php:920 -#: src/Module/Settings/TwoFactor/Index.php:107 view/theme/frio/theme.php:225 -msgid "Status" -msgstr "Състояние:" +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "" -#: src/Content/Nav.php:177 src/Content/Nav.php:263 -#: view/theme/frio/theme.php:225 -msgid "Your posts and conversations" -msgstr "Вашите мнения и разговори" +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "" -#: src/Content/Nav.php:178 src/Module/BaseProfile.php:52 -#: src/Module/BaseSettings.php:57 src/Module/Contact.php:657 -#: src/Module/Contact.php:936 src/Module/Profile/Profile.php:236 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:226 +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 msgid "Profile" msgstr "Височина на профила" -#: src/Content/Nav.php:178 view/theme/frio/theme.php:226 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 msgid "Your profile page" msgstr "Вашият профил страница" -#: src/Content/Nav.php:179 view/theme/frio/theme.php:227 +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Снимки" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 msgid "Your photos" msgstr "Вашите снимки" -#: src/Content/Nav.php:180 src/Module/BaseProfile.php:76 -#: src/Module/BaseProfile.php:79 view/theme/frio/theme.php:228 -msgid "Videos" -msgstr "Видеоклипове" - -#: src/Content/Nav.php:180 view/theme/frio/theme.php:228 -msgid "Your videos" +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 +msgid "Media" msgstr "" -#: src/Content/Nav.php:181 view/theme/frio/theme.php:229 -msgid "Your events" -msgstr "Събитията си" +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +msgid "Your postings with media" +msgstr "" -#: src/Content/Nav.php:182 +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "" + +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "" + +#: src/Content/Nav.php:234 msgid "Personal notes" msgstr "Личните бележки" -#: src/Content/Nav.php:182 +#: src/Content/Nav.php:234 msgid "Your personal notes" msgstr "" -#: src/Content/Nav.php:202 src/Content/Nav.php:263 +#: src/Content/Nav.php:251 src/Content/Nav.php:308 msgid "Home" msgstr "Начало" -#: src/Content/Nav.php:202 +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 msgid "Home Page" msgstr "Начална страница" -#: src/Content/Nav.php:206 src/Module/Register.php:155 -#: src/Module/Security/Login.php:102 +#: src/Content/Nav.php:255 src/Module/Register.php:168 +#: src/Module/Security/Login.php:124 msgid "Register" msgstr "Регистратор" -#: src/Content/Nav.php:206 +#: src/Content/Nav.php:255 msgid "Create an account" msgstr "Създаване на сметка" -#: src/Content/Nav.php:212 src/Module/Help.php:69 -#: src/Module/Settings/TwoFactor/AppSpecific.php:115 -#: src/Module/Settings/TwoFactor/Index.php:106 -#: src/Module/Settings/TwoFactor/Recovery.php:93 -#: src/Module/Settings/TwoFactor/Verify.php:132 view/theme/vier/theme.php:217 +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 msgid "Help" msgstr "Помощ" -#: src/Content/Nav.php:212 +#: src/Content/Nav.php:261 msgid "Help and documentation" msgstr "Помощ и документация" -#: src/Content/Nav.php:216 +#: src/Content/Nav.php:265 msgid "Apps" msgstr "Apps" -#: src/Content/Nav.php:216 +#: src/Content/Nav.php:265 msgid "Addon applications, utilities, games" msgstr "Адон приложения, помощни програми, игри" -#: src/Content/Nav.php:220 src/Content/Text/HTML.php:887 -#: src/Module/Search/Index.php:100 +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 msgid "Search" msgstr "Търсене" -#: src/Content/Nav.php:220 +#: src/Content/Nav.php:269 msgid "Search site content" msgstr "Търсене в сайта съдържание" -#: src/Content/Nav.php:223 src/Content/Text/HTML.php:896 +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 msgid "Full Text" msgstr "" -#: src/Content/Nav.php:224 src/Content/Text/HTML.php:897 +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 #: src/Content/Widget/TagCloud.php:68 msgid "Tags" msgstr "" -#: src/Content/Nav.php:225 src/Content/Nav.php:284 -#: src/Content/Text/HTML.php:898 src/Module/BaseProfile.php:121 -#: src/Module/BaseProfile.php:124 src/Module/Contact.php:855 -#: src/Module/Contact.php:943 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 msgid "Contacts" msgstr "Контакти " -#: src/Content/Nav.php:244 +#: src/Content/Nav.php:289 msgid "Community" msgstr "Общност" -#: src/Content/Nav.php:244 +#: src/Content/Nav.php:289 msgid "Conversations on this and other servers" msgstr "" -#: src/Content/Nav.php:248 src/Module/BaseProfile.php:91 -#: src/Module/BaseProfile.php:102 view/theme/frio/theme.php:233 -msgid "Events and Calendar" -msgstr "Събития и календарни" - -#: src/Content/Nav.php:251 +#: src/Content/Nav.php:296 msgid "Directory" msgstr "директория" -#: src/Content/Nav.php:251 +#: src/Content/Nav.php:296 msgid "People directory" msgstr "Хората директория" -#: src/Content/Nav.php:253 src/Module/BaseAdmin.php:85 +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 msgid "Information" msgstr "" -#: src/Content/Nav.php:253 +#: src/Content/Nav.php:298 msgid "Information about this friendica instance" msgstr "" -#: src/Content/Nav.php:256 src/Module/Admin/Tos.php:59 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:163 -#: src/Module/Tos.php:84 +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 msgid "Terms of Service" msgstr "" -#: src/Content/Nav.php:256 +#: src/Content/Nav.php:301 msgid "Terms of Service of this Friendica instance" msgstr "" -#: src/Content/Nav.php:261 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Network" msgstr "Мрежа" -#: src/Content/Nav.php:261 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Conversations from your friends" msgstr "Разговори от вашите приятели" -#: src/Content/Nav.php:267 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "Вашите мнения и разговори" + +#: src/Content/Nav.php:312 msgid "Introductions" msgstr "Представяне" -#: src/Content/Nav.php:267 +#: src/Content/Nav.php:312 msgid "Friend Requests" msgstr "Молби за приятелство" -#: src/Content/Nav.php:268 src/Module/BaseNotifications.php:139 -#: src/Module/Notifications/Introductions.php:54 +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 msgid "Notifications" msgstr "Уведомления " -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:314 msgid "See all notifications" msgstr "Вижте всички нотификации" -#: src/Content/Nav.php:270 -msgid "Mark all system notifications seen" -msgstr "Марк виждали уведомления всички системни" +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Марк, както се вижда" -#: src/Content/Nav.php:273 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:315 +msgid "Mark all system notifications as seen" +msgstr "" + +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Private mail" msgstr "Частна поща" -#: src/Content/Nav.php:274 +#: src/Content/Nav.php:319 msgid "Inbox" msgstr "Вх. поща" -#: src/Content/Nav.php:275 +#: src/Content/Nav.php:320 msgid "Outbox" msgstr "Изходящи" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:324 msgid "Accounts" msgstr "" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:324 msgid "Manage other pages" msgstr "Управление на други страници" -#: src/Content/Nav.php:282 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:235 +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:175 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 msgid "Settings" msgstr "Настройки" -#: src/Content/Nav.php:282 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 msgid "Account settings" msgstr "Настройки на профила" -#: src/Content/Nav.php:284 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 msgid "Manage/edit friends and contacts" msgstr "Управление / редактиране на приятели и контакти" -#: src/Content/Nav.php:289 src/Module/BaseAdmin.php:125 +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 msgid "Admin" msgstr "admin" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:334 msgid "Site setup and configuration" msgstr "Настройка и конфигуриране на сайта" -#: src/Content/Nav.php:292 +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "" + +#: src/Content/Nav.php:338 msgid "Navigation" msgstr "Навигация" -#: src/Content/Nav.php:292 +#: src/Content/Nav.php:338 msgid "Site map" msgstr "Карта на сайта" -#: src/Content/OEmbed.php:267 +#: src/Content/OEmbed.php:316 msgid "Embedding disabled" msgstr "Вграждане на инвалиди" -#: src/Content/OEmbed.php:389 +#: src/Content/OEmbed.php:440 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:961 src/Content/Text/BBCode.php:1605 -#: src/Content/Text/BBCode.php:1606 +#: src/Content/Text/BBCode.php:696 src/Content/Text/BBCode.php:1636 +#: src/Content/Text/BBCode.php:1637 msgid "Image/photo" msgstr "Изображение / снимка" -#: src/Content/Text/BBCode.php:1063 +#: src/Content/Text/BBCode.php:914 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:1088 src/Model/Item.php:3020 -#: src/Model/Item.php:3026 -msgid "link to source" -msgstr "връзка източник" +#: src/Content/Text/BBCode.php:939 src/Model/Item.php:3745 +#: src/Model/Item.php:3751 src/Model/Item.php:3752 +msgid "Link to source" +msgstr "" -#: src/Content/Text/BBCode.php:1523 src/Content/Text/HTML.php:939 +#: src/Content/Text/BBCode.php:1543 src/Content/Text/HTML.php:904 msgid "Click to open/close" msgstr "Кликнете за отваряне / затваряне" -#: src/Content/Text/BBCode.php:1554 +#: src/Content/Text/BBCode.php:1576 msgid "$1 wrote:" msgstr "$ 1 пише:" -#: src/Content/Text/BBCode.php:1608 src/Content/Text/BBCode.php:1609 +#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642 msgid "Encrypted content" msgstr "Шифрирано съдържание" -#: src/Content/Text/BBCode.php:1821 +#: src/Content/Text/BBCode.php:1901 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:1836 +#: src/Content/Text/BBCode.php:1920 msgid "Invalid link protocol" msgstr "" -#: src/Content/Text/HTML.php:787 +#: src/Content/Text/HTML.php:782 msgid "Loading more entries..." msgstr "" -#: src/Content/Text/HTML.php:788 +#: src/Content/Text/HTML.php:783 msgid "The end" msgstr "" -#: src/Content/Text/HTML.php:881 src/Model/Profile.php:439 -#: src/Module/Contact.php:340 +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:116 +#: src/Model/Profile.php:461 src/Module/Contact/Profile.php:471 msgid "Follow" msgstr "" -#: src/Content/Widget/CalendarExport.php:63 -msgid "Export" -msgstr "" - -#: src/Content/Widget/CalendarExport.php:64 -msgid "Export calendar as ical" -msgstr "" - -#: src/Content/Widget/CalendarExport.php:65 -msgid "Export calendar as csv" -msgstr "" - -#: src/Content/Widget/ContactBlock.php:73 -msgid "No contacts" -msgstr "Няма контакти" - -#: src/Content/Widget/ContactBlock.php:105 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "" -msgstr[1] "" - -#: src/Content/Widget/ContactBlock.php:124 -msgid "View Contacts" -msgstr "Вижте Контакти" - -#: src/Content/Widget/SavedSearches.php:47 -msgid "Remove term" -msgstr "Премахване мандат" - -#: src/Content/Widget/SavedSearches.php:60 -msgid "Saved Searches" -msgstr "Запазени търсения" - -#: src/Content/Widget/TrendingTags.php:51 -#, php-format -msgid "Trending Tags (last %d hour)" -msgid_plural "Trending Tags (last %d hours)" -msgstr[0] "" -msgstr[1] "" - -#: src/Content/Widget/TrendingTags.php:52 -msgid "More Trending Tags" -msgstr "" - -#: src/Content/Widget.php:48 +#: src/Content/Widget.php:51 msgid "Add New Contact" msgstr "Добавяне на нов контакт" -#: src/Content/Widget.php:49 +#: src/Content/Widget.php:52 msgid "Enter address or web location" msgstr "Въведете местоположение на адрес или уеб" -#: src/Content/Widget.php:50 +#: src/Content/Widget.php:53 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Пример: bob@example.com, http://example.com/barbara" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:55 msgid "Connect" msgstr "Свързване! " -#: src/Content/Widget.php:67 +#: src/Content/Widget.php:72 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "" msgstr[1] "" -#: src/Content/Widget.php:73 view/theme/vier/theme.php:170 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 msgid "Find People" msgstr "Намерете хора," -#: src/Content/Widget.php:74 view/theme/vier/theme.php:171 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 msgid "Enter name or interest" msgstr "Въведете името или интерес" -#: src/Content/Widget.php:76 view/theme/vier/theme.php:173 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Примери: Робърт Morgenstein, Риболов" -#: src/Content/Widget.php:77 src/Module/Contact.php:876 -#: src/Module/Directory.php:105 view/theme/vier/theme.php:174 +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 msgid "Find" msgstr "Търсене" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:176 +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "Предложения за приятели" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 msgid "Similar Interests" msgstr "Сходни интереси" -#: src/Content/Widget.php:80 view/theme/vier/theme.php:177 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 msgid "Random Profile" msgstr "Случайна Профил" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:178 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 msgid "Invite Friends" msgstr "Покани приятели" -#: src/Content/Widget.php:82 src/Module/Directory.php:97 -#: view/theme/vier/theme.php:179 +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 msgid "Global Directory" msgstr "Глобален справочник" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:181 +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 msgid "Local Directory" msgstr "Локалната директория" -#: src/Content/Widget.php:213 src/Model/Group.php:535 -#: src/Module/Contact.php:839 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "Групи" +#: src/Content/Widget.php:215 src/Model/Circle.php:600 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "" -#: src/Content/Widget.php:215 +#: src/Content/Widget.php:217 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:244 +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "" + +#: src/Content/Widget.php:247 msgid "Relationships" msgstr "" -#: src/Content/Widget.php:246 src/Module/Contact.php:791 -#: src/Module/Group.php:292 +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 msgid "All Contacts" msgstr "Всички Контакти" -#: src/Content/Widget.php:285 +#: src/Content/Widget.php:288 msgid "Protocols" msgstr "" -#: src/Content/Widget.php:287 +#: src/Content/Widget.php:290 msgid "All Protocols" msgstr "" -#: src/Content/Widget.php:315 +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "Записани папки" -#: src/Content/Widget.php:317 src/Content/Widget.php:351 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "Всичко" @@ -3830,94 +2334,197 @@ msgid_plural "%d contacts in common" msgstr[0] "" msgstr[1] "" -#: src/Content/Widget.php:499 +#: src/Content/Widget.php:506 msgid "Archives" msgstr "Архиви" -#: src/Content/Widget.php:523 +#: src/Content/Widget.php:514 +msgid "On this date" +msgstr "" + +#: src/Content/Widget.php:534 msgid "Persons" msgstr "" -#: src/Content/Widget.php:524 +#: src/Content/Widget.php:535 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:525 src/Model/Contact.php:1402 +#: src/Content/Widget.php:536 src/Model/Contact.php:1698 msgid "News" msgstr "" -#: src/Content/Widget.php:530 src/Module/Admin/BaseUsers.php:50 +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 +msgid "Account Types" +msgstr "" + +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "" -#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:237 +#: src/Content/Widget.php:573 src/Module/Settings/Display.php:266 +msgid "Channels" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:56 +msgid "Export" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:57 +msgid "Export calendar as ical" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:58 +msgid "Export calendar as csv" +msgstr "" + +#: src/Content/Widget/ContactBlock.php:79 +msgid "No contacts" +msgstr "Няма контакти" + +#: src/Content/Widget/ContactBlock.php:110 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Widget/ContactBlock.php:127 +msgid "View Contacts" +msgstr "Вижте Контакти" + +#: src/Content/Widget/SavedSearches.php:47 +msgid "Remove term" +msgstr "Премахване мандат" + +#: src/Content/Widget/SavedSearches.php:60 +msgid "Saved Searches" +msgstr "Запазени търсения" + +#: src/Content/Widget/TrendingTags.php:52 +#, php-format +msgid "Trending Tags (last %d hour)" +msgid_plural "Trending Tags (last %d hours)" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Widget/TrendingTags.php:53 +msgid "More Trending Tags" +msgstr "" + +#: src/Content/Widget/VCard.php:109 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 +msgid "XMPP:" +msgstr "" + +#: src/Content/Widget/VCard.php:110 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 +msgid "Matrix:" +msgstr "" + +#: src/Content/Widget/VCard.php:111 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Място:" + +#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:474 +#: src/Module/Notifications/Introductions.php:201 +msgid "Network:" +msgstr "" + +#: src/Content/Widget/VCard.php:118 src/Model/Contact.php:1223 +#: src/Model/Contact.php:1234 src/Model/Profile.php:463 +#: src/Module/Contact/Profile.php:463 +msgid "Unfollow" +msgstr "" + +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:189 src/Module/PermissionTooltip.php:83 -#: src/Module/PermissionTooltip.php:105 +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 msgid "Mutuals" msgstr "" -#: src/Core/ACL.php:279 +#: src/Core/ACL.php:294 msgid "Post to Email" msgstr "Коментар на e-mail" -#: src/Core/ACL.php:306 +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 msgid "Public" msgstr "" -#: src/Core/ACL.php:307 +#: src/Core/ACL.php:322 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 msgid "Limited/Private" msgstr "" -#: src/Core/ACL.php:309 +#: src/Core/ACL.php:324 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." +msgstr "" + +#: src/Core/ACL.php:325 msgid "Show to:" msgstr "" -#: src/Core/ACL.php:311 +#: src/Core/ACL.php:326 msgid "Except to:" msgstr "" -#: src/Core/ACL.php:314 +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "CC: имейл адреси" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Пример: bob@example.com, mary@example.com" + +#: src/Core/ACL.php:329 msgid "Connectors" msgstr "" -#: src/Core/Installer.php:179 +#: src/Core/Installer.php:180 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 "" -#: src/Core/Installer.php:198 +#: src/Core/Installer.php:197 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Може да се наложи да импортирате файла \"database.sql\" ръчно чрез настървение или MySQL." -#: src/Core/Installer.php:199 src/Module/Install.php:195 +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "" -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:259 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Не може да се намери командния ред версия на PHP в PATH уеб сървър." -#: src/Core/Installer.php:261 +#: src/Core/Installer.php:260 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 "" -#: src/Core/Installer.php:266 +#: src/Core/Installer.php:265 msgid "PHP executable path" msgstr "PHP изпълним път" -#: src/Core/Installer.php:266 +#: src/Core/Installer.php:265 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Въведете пълния път до изпълнимия файл на PHP. Можете да оставите полето празно, за да продължите инсталацията." -#: src/Core/Installer.php:271 +#: src/Core/Installer.php:270 msgid "Command line PHP" msgstr "Команден ред PHP" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:279 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "" -#: src/Core/Installer.php:281 +#: src/Core/Installer.php:280 msgid "Found PHP version: " msgstr "" -#: src/Core/Installer.php:283 +#: src/Core/Installer.php:282 msgid "PHP cli binary" msgstr "" -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:295 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "В командния ред версия на PHP на вашата система не трябва \"register_argc_argv\" дадоха възможност." -#: src/Core/Installer.php:297 +#: src/Core/Installer.php:296 msgid "This is required for message delivery to work." msgstr "Това е необходимо за доставка на съобщение, за да работят." -#: src/Core/Installer.php:302 +#: src/Core/Installer.php:301 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:333 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Грешка: \"openssl_pkey_new\" функция на тази система не е в състояние да генерира криптиращи ключове" -#: src/Core/Installer.php:335 +#: src/Core/Installer.php:334 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Ако работите под Windows, моля, вижте \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:338 +#: src/Core/Installer.php:337 msgid "Generate encryption keys" msgstr "Генериране на криптиращи ключове" -#: src/Core/Installer.php:390 +#: src/Core/Installer.php:389 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Грешка: МОД-пренаписване модул на Apache уеб сървър е необходимо, но не е инсталиран." -#: src/Core/Installer.php:395 +#: src/Core/Installer.php:394 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite модул" -#: src/Core/Installer.php:401 +#: src/Core/Installer.php:400 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:406 +#: src/Core/Installer.php:405 msgid "Error: The MySQL driver for PDO is not installed." msgstr "" -#: src/Core/Installer.php:410 +#: src/Core/Installer.php:409 msgid "PDO or MySQLi PHP module" msgstr "" -#: src/Core/Installer.php:418 +#: src/Core/Installer.php:417 msgid "Error, XML PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:421 msgid "XML PHP module" msgstr "" -#: src/Core/Installer.php:425 +#: src/Core/Installer.php:424 msgid "libCurl PHP module" msgstr "libCurl PHP модул" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:425 msgid "Error: libCURL PHP module required but not installed." msgstr "Грешка: libCURL PHP модул, но не е инсталирана." -#: src/Core/Installer.php:432 +#: src/Core/Installer.php:431 msgid "GD graphics PHP module" msgstr "GD графика PHP модул" -#: src/Core/Installer.php:433 +#: src/Core/Installer.php:432 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Грешка: GD графика PHP модул с поддръжка на JPEG, но не е инсталирана." -#: src/Core/Installer.php:439 +#: src/Core/Installer.php:438 msgid "OpenSSL PHP module" msgstr "OpenSSL PHP модул" -#: src/Core/Installer.php:440 +#: src/Core/Installer.php:439 msgid "Error: openssl PHP module required but not installed." msgstr "Грешка: OpenSSL PHP модул са необходими, но не е инсталирана." -#: src/Core/Installer.php:446 +#: src/Core/Installer.php:445 msgid "mb_string PHP module" msgstr "mb_string PHP модул" -#: src/Core/Installer.php:447 +#: src/Core/Installer.php:446 msgid "Error: mb_string PHP module required but not installed." msgstr "Грешка: mb_string PHP модул, но не е инсталирана." -#: src/Core/Installer.php:453 +#: src/Core/Installer.php:452 msgid "iconv PHP module" msgstr "" -#: src/Core/Installer.php:454 +#: src/Core/Installer.php:453 msgid "Error: iconv PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:460 +#: src/Core/Installer.php:459 msgid "POSIX PHP module" msgstr "" -#: src/Core/Installer.php:461 +#: src/Core/Installer.php:460 msgid "Error: POSIX PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:467 +#: src/Core/Installer.php:466 msgid "Program execution functions" msgstr "" -#: src/Core/Installer.php:468 -msgid "Error: Program execution functions required but not enabled." +#: src/Core/Installer.php:467 +msgid "" +"Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Core/Installer.php:474 +#: src/Core/Installer.php:473 msgid "JSON PHP module" msgstr "" -#: src/Core/Installer.php:475 +#: src/Core/Installer.php:474 msgid "Error: JSON PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:481 +#: src/Core/Installer.php:480 msgid "File Information PHP module" msgstr "" -#: src/Core/Installer.php:482 +#: src/Core/Installer.php:481 msgid "Error: File Information PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:505 +#: src/Core/Installer.php:487 +msgid "GNU Multiple Precision PHP module" +msgstr "" + +#: src/Core/Installer.php:488 +msgid "Error: GNU Multiple Precision PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:511 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 "" -#: src/Core/Installer.php:506 +#: src/Core/Installer.php:512 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 "Това е най-често настройка разрешение, тъй като уеб сървъра не може да бъде в състояние да записва файлове във вашата папка - дори и ако можете." -#: src/Core/Installer.php:507 +#: src/Core/Installer.php:513 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 "" -#: src/Core/Installer.php:508 +#: src/Core/Installer.php:514 msgid "" "You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Можете като алтернатива да пропуснете тази процедура и да извърши ръчно инсталиране. Моля, вижте файла \"INSTALL.txt\", за инструкции." +" Please see the file \"doc/INSTALL.md\" for instructions." +msgstr "" -#: src/Core/Installer.php:511 +#: src/Core/Installer.php:517 msgid "config/local.config.php is writable" msgstr "" -#: src/Core/Installer.php:531 +#: src/Core/Installer.php:537 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "" -#: src/Core/Installer.php:532 +#: src/Core/Installer.php:538 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 "" -#: src/Core/Installer.php:533 +#: src/Core/Installer.php:539 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "" -#: src/Core/Installer.php:534 +#: src/Core/Installer.php:540 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 "" -#: src/Core/Installer.php:537 +#: src/Core/Installer.php:543 msgid "view/smarty3 is writable" msgstr "" -#: src/Core/Installer.php:566 +#: src/Core/Installer.php:571 msgid "" -"Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist" -" to .htaccess." +"Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" +"dist to .htaccess." msgstr "" -#: src/Core/Installer.php:568 +#: src/Core/Installer.php:572 +msgid "" +"In some circumstances (like running inside containers), you can skip this " +"error." +msgstr "" + +#: src/Core/Installer.php:574 msgid "Error message from Curl when fetching" msgstr "" -#: src/Core/Installer.php:573 +#: src/Core/Installer.php:580 msgid "Url rewrite is working" msgstr ", Url пренаписванията работи" -#: src/Core/Installer.php:602 +#: src/Core/Installer.php:609 +msgid "" +"The detection of TLS to secure the communication between the browser and the" +" new Friendica server failed." +msgstr "" + +#: src/Core/Installer.php:610 +msgid "" +"It is highly encouraged to use Friendica only over a secure connection as " +"sensitive information like passwords will be transmitted." +msgstr "" + +#: src/Core/Installer.php:611 +msgid "Please ensure that the connection to the server is secure." +msgstr "" + +#: src/Core/Installer.php:612 +msgid "No TLS detected" +msgstr "" + +#: src/Core/Installer.php:614 +msgid "TLS detected" +msgstr "" + +#: src/Core/Installer.php:641 msgid "ImageMagick PHP extension is not installed" msgstr "" -#: src/Core/Installer.php:604 +#: src/Core/Installer.php:643 msgid "ImageMagick PHP extension is installed" msgstr "" -#: src/Core/Installer.php:606 +#: src/Core/Installer.php:645 msgid "ImageMagick supports GIF" msgstr "" -#: src/Core/Installer.php:628 +#: src/Core/Installer.php:667 msgid "Database already in use." msgstr "" -#: src/Core/Installer.php:633 +#: src/Core/Installer.php:672 msgid "Could not connect to database." msgstr "Не може да се свърже с базата данни." -#: src/Core/L10n.php:371 src/Model/Event.php:428 -#: src/Module/Settings/Display.php:178 +#: src/Core/L10n.php:476 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:235 msgid "Monday" msgstr "Понеделник" -#: src/Core/L10n.php:371 src/Model/Event.php:429 +#: src/Core/L10n.php:476 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:236 msgid "Tuesday" msgstr "Вторник" -#: src/Core/L10n.php:371 src/Model/Event.php:430 +#: src/Core/L10n.php:476 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:237 msgid "Wednesday" msgstr "Сряда" -#: src/Core/L10n.php:371 src/Model/Event.php:431 +#: src/Core/L10n.php:476 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:238 msgid "Thursday" msgstr "Четвъртък" -#: src/Core/L10n.php:371 src/Model/Event.php:432 +#: src/Core/L10n.php:476 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:239 msgid "Friday" msgstr "Петък" -#: src/Core/L10n.php:371 src/Model/Event.php:433 +#: src/Core/L10n.php:476 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:240 msgid "Saturday" msgstr "Събота" -#: src/Core/L10n.php:371 src/Model/Event.php:427 -#: src/Module/Settings/Display.php:178 +#: src/Core/L10n.php:476 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:234 msgid "Sunday" msgstr "Неделя" -#: src/Core/L10n.php:375 src/Model/Event.php:448 +#: src/Core/L10n.php:480 src/Model/Event.php:450 msgid "January" msgstr "януари" -#: src/Core/L10n.php:375 src/Model/Event.php:449 +#: src/Core/L10n.php:480 src/Model/Event.php:451 msgid "February" msgstr "февруари" -#: src/Core/L10n.php:375 src/Model/Event.php:450 +#: src/Core/L10n.php:480 src/Model/Event.php:452 msgid "March" msgstr "март" -#: src/Core/L10n.php:375 src/Model/Event.php:451 +#: src/Core/L10n.php:480 src/Model/Event.php:453 msgid "April" msgstr "април" -#: src/Core/L10n.php:375 src/Core/L10n.php:395 src/Model/Event.php:439 +#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441 msgid "May" msgstr "Май" -#: src/Core/L10n.php:375 src/Model/Event.php:452 +#: src/Core/L10n.php:480 src/Model/Event.php:454 msgid "June" msgstr "юни" -#: src/Core/L10n.php:375 src/Model/Event.php:453 +#: src/Core/L10n.php:480 src/Model/Event.php:455 msgid "July" msgstr "юли" -#: src/Core/L10n.php:375 src/Model/Event.php:454 +#: src/Core/L10n.php:480 src/Model/Event.php:456 msgid "August" msgstr "август" -#: src/Core/L10n.php:375 src/Model/Event.php:455 +#: src/Core/L10n.php:480 src/Model/Event.php:457 msgid "September" msgstr "септември" -#: src/Core/L10n.php:375 src/Model/Event.php:456 +#: src/Core/L10n.php:480 src/Model/Event.php:458 msgid "October" msgstr "октомври" -#: src/Core/L10n.php:375 src/Model/Event.php:457 +#: src/Core/L10n.php:480 src/Model/Event.php:459 msgid "November" msgstr "ноември" -#: src/Core/L10n.php:375 src/Model/Event.php:458 +#: src/Core/L10n.php:480 src/Model/Event.php:460 msgid "December" msgstr "декември" -#: src/Core/L10n.php:391 src/Model/Event.php:420 +#: src/Core/L10n.php:495 src/Model/Event.php:422 msgid "Mon" msgstr "" -#: src/Core/L10n.php:391 src/Model/Event.php:421 +#: src/Core/L10n.php:495 src/Model/Event.php:423 msgid "Tue" msgstr "" -#: src/Core/L10n.php:391 src/Model/Event.php:422 +#: src/Core/L10n.php:495 src/Model/Event.php:424 msgid "Wed" msgstr "" -#: src/Core/L10n.php:391 src/Model/Event.php:423 +#: src/Core/L10n.php:495 src/Model/Event.php:425 msgid "Thu" msgstr "" -#: src/Core/L10n.php:391 src/Model/Event.php:424 +#: src/Core/L10n.php:495 src/Model/Event.php:426 msgid "Fri" msgstr "" -#: src/Core/L10n.php:391 src/Model/Event.php:425 +#: src/Core/L10n.php:495 src/Model/Event.php:427 msgid "Sat" msgstr "" -#: src/Core/L10n.php:391 src/Model/Event.php:419 +#: src/Core/L10n.php:495 src/Model/Event.php:421 msgid "Sun" msgstr "" -#: src/Core/L10n.php:395 src/Model/Event.php:435 +#: src/Core/L10n.php:499 src/Model/Event.php:437 msgid "Jan" msgstr "" -#: src/Core/L10n.php:395 src/Model/Event.php:436 +#: src/Core/L10n.php:499 src/Model/Event.php:438 msgid "Feb" msgstr "" -#: src/Core/L10n.php:395 src/Model/Event.php:437 +#: src/Core/L10n.php:499 src/Model/Event.php:439 msgid "Mar" msgstr "" -#: src/Core/L10n.php:395 src/Model/Event.php:438 +#: src/Core/L10n.php:499 src/Model/Event.php:440 msgid "Apr" msgstr "" -#: src/Core/L10n.php:395 src/Model/Event.php:440 +#: src/Core/L10n.php:499 src/Model/Event.php:442 msgid "Jun" msgstr "" -#: src/Core/L10n.php:395 src/Model/Event.php:441 +#: src/Core/L10n.php:499 src/Model/Event.php:443 msgid "Jul" msgstr "" -#: src/Core/L10n.php:395 src/Model/Event.php:442 +#: src/Core/L10n.php:499 src/Model/Event.php:444 msgid "Aug" msgstr "" -#: src/Core/L10n.php:395 +#: src/Core/L10n.php:499 msgid "Sep" msgstr "" -#: src/Core/L10n.php:395 src/Model/Event.php:444 +#: src/Core/L10n.php:499 src/Model/Event.php:446 msgid "Oct" msgstr "" -#: src/Core/L10n.php:395 src/Model/Event.php:445 +#: src/Core/L10n.php:499 src/Model/Event.php:447 msgid "Nov" msgstr "" -#: src/Core/L10n.php:395 src/Model/Event.php:446 +#: src/Core/L10n.php:499 src/Model/Event.php:448 msgid "Dec" msgstr "" -#: src/Core/L10n.php:414 -msgid "poke" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/L10n.php:414 -msgid "poked" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/L10n.php:415 -msgid "ping" -msgstr "" - -#: src/Core/L10n.php:415 -msgid "pinged" -msgstr "" - -#: src/Core/L10n.php:416 -msgid "prod" -msgstr "" - -#: src/Core/L10n.php:416 -msgid "prodded" -msgstr "" - -#: src/Core/L10n.php:417 -msgid "slap" -msgstr "" - -#: src/Core/L10n.php:417 -msgid "slapped" -msgstr "" - -#: src/Core/L10n.php:418 -msgid "finger" -msgstr "" - -#: src/Core/L10n.php:418 -msgid "fingered" -msgstr "" - -#: src/Core/L10n.php:419 -msgid "rebuff" -msgstr "" - -#: src/Core/L10n.php:419 -msgid "rebuffed" -msgstr "" - -#: 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 +#: src/Core/Renderer.php:89 src/Core/Renderer.php:118 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "" -#: src/Core/Renderer.php:142 +#: src/Core/Renderer.php:143 msgid "template engine cannot be registered without a name." msgstr "" -#: src/Core/Renderer.php:176 +#: src/Core/Renderer.php:177 msgid "template engine is not registered!" msgstr "" -#: src/Core/Update.php:66 +#: src/Core/Storage/Type/FilesystemConfig.php:78 +msgid "Storage base path" +msgstr "" + +#: src/Core/Storage/Type/FilesystemConfig.php:80 +msgid "" +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "" + +#: src/Core/Storage/Type/FilesystemConfig.php:93 +msgid "Enter a valid existing folder" +msgstr "" + +#: src/Core/Update.php:80 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:77 +#: src/Core/Update.php:91 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:244 +#: src/Core/Update.php:183 +#, php-format +msgid "%s: executing pre update %d" +msgstr "" + +#: src/Core/Update.php:225 +#, php-format +msgid "%s: executing post update %d" +msgstr "" + +#: src/Core/Update.php:299 #, php-format msgid "Update %s failed. See error logs." msgstr "Актуализация %s не успя. Виж логовете за грешки." -#: src/Core/Update.php:297 +#: src/Core/Update.php:339 #, php-format msgid "" "\n" @@ -4418,74 +3056,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "" -#: src/Core/Update.php:303 +#: src/Core/Update.php:345 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "" -#: src/Core/Update.php:307 src/Core/Update.php:349 +#: src/Core/Update.php:349 src/Core/Update.php:377 msgid "[Friendica Notify] Database update" msgstr "" -#: src/Core/Update.php:343 +#: src/Core/Update.php:371 #, php-format msgid "" "\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." +"\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" -#: src/Core/UserImport.php:126 -msgid "Error decoding account file" -msgstr "" - -#: src/Core/UserImport.php:132 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: src/Core/UserImport.php:140 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "" - -#: src/Core/UserImport.php:176 -msgid "User creation error" -msgstr "Грешка при създаване на потребителя" - -#: src/Core/UserImport.php:221 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" - -#: src/Core/UserImport.php:274 -msgid "User profile creation error" -msgstr "Грешка при създаване профила на потребителя" - -#: src/Core/UserImport.php:330 -msgid "Done. You can now login with your username and password" -msgstr "" - -#: src/Database/DBStructure.php:64 +#: src/Database/DBStructure.php:57 #, php-format msgid "The database version had been set to %s." msgstr "" #: src/Database/DBStructure.php:82 +#, 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:95 msgid "No unused tables found." msgstr "" -#: src/Database/DBStructure.php:87 +#: src/Database/DBStructure.php:100 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "" -#: src/Database/DBStructure.php:125 +#: src/Database/DBStructure.php:137 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Database/DBStructure.php:149 +#: src/Database/DBStructure.php:161 #, php-format msgid "" "\n" @@ -4493,559 +3106,641 @@ msgid "" "%s\n" msgstr "" -#: src/Database/DBStructure.php:152 +#: src/Database/DBStructure.php:164 msgid "Errors encountered performing database changes: " msgstr "" -#: src/Database/DBStructure.php:380 +#: src/Database/DBStructure.php:232 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:384 +#: src/Database/DBStructure.php:236 #, php-format msgid "%s: Database update" msgstr "" -#: src/Database/DBStructure.php:684 +#: src/Database/DBStructure.php:493 #, 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/Notification/Introduction.php:135 -msgid "Friend Suggestion" -msgstr "Приятел за предложения" - -#: src/Factory/Notification/Introduction.php:161 -msgid "Friend/Connect Request" -msgstr "Приятел / заявка за свързване" - -#: src/Factory/Notification/Introduction.php:161 -msgid "New Follower" -msgstr "Нов последовател" - -#: src/Factory/Notification/Notification.php:103 -#, php-format -msgid "%s created a new post" -msgstr "%s създаден нов пост" - -#: src/Factory/Notification/Notification.php:104 -#: src/Factory/Notification/Notification.php:362 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s коментира %s е след" - -#: src/Factory/Notification/Notification.php:130 -#, php-format -msgid "%s liked %s's post" -msgstr "%s харесва %s е след" - -#: src/Factory/Notification/Notification.php:141 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s не харесвал %s е след" - -#: src/Factory/Notification/Notification.php:152 -#, php-format -msgid "%s is attending %s's event" +#: src/Factory/Api/Mastodon/Error.php:65 +msgid "Unprocessable Entity" msgstr "" -#: src/Factory/Notification/Notification.php:163 -#, php-format -msgid "%s is not attending %s's event" +#: src/Factory/Api/Mastodon/Error.php:75 +msgid "Unauthorized" msgstr "" -#: src/Factory/Notification/Notification.php:174 -#, php-format -msgid "%s may attending %s's event" +#: src/Factory/Api/Mastodon/Error.php:84 +msgid "" +"Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Notification/Notification.php:201 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s вече е приятел с %s" +#: src/Factory/Api/Mastodon/Error.php:94 +msgid "Internal Server Error" +msgstr "" -#: src/LegacyModule.php:49 +#: src/LegacyModule.php:63 #, php-format msgid "Legacy module file not found: %s" msgstr "" -#: src/Model/Contact.php:980 src/Model/Contact.php:993 -msgid "UnFollow" +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." msgstr "" -#: src/Model/Contact.php:989 -msgid "Drop Contact" +#: src/Model/Circle.php:543 +msgid "Everybody" +msgstr "Всички" + +#: src/Model/Circle.php:562 +msgid "edit" +msgstr "редактиране" + +#: src/Model/Circle.php:599 +msgid "add" +msgstr "добави" + +#: src/Model/Circle.php:604 +msgid "Edit circle" msgstr "" -#: src/Model/Contact.php:999 src/Module/Admin/Users/Pending.php:107 -#: src/Module/Notifications/Introductions.php:111 -#: src/Module/Notifications/Introductions.php:189 +#: src/Model/Circle.php:605 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "" + +#: src/Model/Circle.php:607 +msgid "Create a new circle" +msgstr "" + +#: src/Model/Circle.php:608 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "" + +#: src/Model/Circle.php:609 +msgid "Edit circles" +msgstr "" + +#: src/Model/Contact.php:1240 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Одобряване" -#: src/Model/Contact.php:1398 +#: src/Model/Contact.php:1694 msgid "Organisation" msgstr "" -#: src/Model/Contact.php:1406 -msgid "Forum" +#: src/Model/Contact.php:1702 +msgid "Group" msgstr "" -#: src/Model/Contact.php:2146 +#: src/Model/Contact.php:3005 +msgid "Disallowed profile URL." +msgstr "Отхвърлен профила URL." + +#: src/Model/Contact.php:3010 src/Module/Friendica.php:101 +msgid "Blocked domain" +msgstr "" + +#: src/Model/Contact.php:3015 msgid "Connect URL missing." msgstr "Свързване URL липсва." -#: src/Model/Contact.php:2155 +#: src/Model/Contact.php:3024 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:2196 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Този сайт не е конфигуриран да позволява комуникация с други мрежи." +#: src/Model/Contact.php:3042 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "" -#: src/Model/Contact.php:2197 src/Model/Contact.php:2210 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Няма съвместими комуникационни протоколи или фуражите не са били открити." - -#: src/Model/Contact.php:2208 +#: src/Model/Contact.php:3059 msgid "The profile address specified does not provide adequate information." msgstr "Профилът на посочения адрес не предоставя достатъчна информация." -#: src/Model/Contact.php:2213 +#: src/Model/Contact.php:3061 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Няма съвместими комуникационни протоколи или фуражите не са били открити." + +#: src/Model/Contact.php:3064 msgid "An author or name was not found." msgstr "Един автор или име не е намерен." -#: src/Model/Contact.php:2216 +#: src/Model/Contact.php:3067 msgid "No browser URL could be matched to this address." msgstr "Не браузър URL може да съвпадне с този адрес." -#: src/Model/Contact.php:2219 +#: src/Model/Contact.php:3070 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Не мога да съответства @ стил Адрес идентичност с известен протокол или се свържете с имейл." -#: src/Model/Contact.php:2220 +#: src/Model/Contact.php:3071 msgid "Use mailto: in front of address to force email check." msgstr "Използвайте mailto: пред адрес, за да принуди проверка на имейл." -#: src/Model/Contact.php:2226 +#: src/Model/Contact.php:3077 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "Профилът адрес принадлежи към мрежа, която е била забранена в този сайт." -#: src/Model/Contact.php:2231 +#: src/Model/Contact.php:3082 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Limited профил. Този човек ще бъде в състояние да получат преки / лична уведомления от вас." -#: src/Model/Contact.php:2290 +#: src/Model/Contact.php:3148 msgid "Unable to retrieve contact information." msgstr "Не мога да получа информация за контакт." -#: src/Model/Event.php:50 src/Model/Event.php:868 -#: src/Module/Debug/Localtime.php:36 -msgid "l F d, Y \\@ g:i A" -msgstr "L F г, Y \\ @ G: I A" +#: src/Model/Event.php:54 +msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" +msgstr "" -#: src/Model/Event.php:77 src/Model/Event.php:94 src/Model/Event.php:467 -#: src/Model/Event.php:936 +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 msgid "Starts:" msgstr "Започва:" -#: src/Model/Event.php:80 src/Model/Event.php:100 src/Model/Event.php:468 -#: src/Model/Event.php:940 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 msgid "Finishes:" msgstr "Играчи:" -#: src/Model/Event.php:417 +#: src/Model/Event.php:419 msgid "all-day" msgstr "" -#: src/Model/Event.php:443 +#: src/Model/Event.php:445 msgid "Sept" msgstr "" -#: src/Model/Event.php:465 +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:245 src/Util/Temporal.php:353 +msgid "month" +msgstr "месец." + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:246 src/Util/Temporal.php:354 +msgid "week" +msgstr "седмица" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:247 src/Util/Temporal.php:355 +msgid "day" +msgstr "Ден:" + +#: src/Model/Event.php:467 msgid "No events to display" msgstr "" -#: src/Model/Event.php:584 +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "Достъпът до този профил е ограничен." + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "" + +#: src/Model/Event.php:637 msgid "l, F j" msgstr "л, F J" -#: src/Model/Event.php:615 +#: src/Model/Event.php:664 msgid "Edit event" msgstr "Редактиране на Събитието" -#: src/Model/Event.php:616 +#: src/Model/Event.php:665 msgid "Duplicate event" msgstr "" -#: src/Model/Event.php:617 +#: src/Model/Event.php:666 msgid "Delete event" msgstr "" -#: src/Model/Event.php:869 +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +msgid "l F d, Y \\@ g:i A" +msgstr "L F г, Y \\ @ G: I A" + +#: src/Model/Event.php:897 msgid "D g:i A" msgstr "" -#: src/Model/Event.php:870 +#: src/Model/Event.php:898 msgid "g:i A" msgstr "" -#: src/Model/Event.php:955 src/Model/Event.php:957 +#: src/Model/Event.php:964 src/Model/Event.php:966 msgid "Show map" msgstr "" -#: src/Model/Event.php:956 +#: src/Model/Event.php:965 msgid "Hide map" msgstr "" -#: src/Model/Event.php:1048 +#: src/Model/Event.php:1058 #, php-format msgid "%s's birthday" msgstr "" -#: src/Model/Event.php:1049 +#: src/Model/Event.php:1059 #, php-format msgid "Happy Birthday %s" msgstr "Честит рожден ден, %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 "Изтрита група с това име се възражда. Съществуващ елемент от разрешения май се прилагат към тази група и всички бъдещи членове. Ако това не е това, което сте възнамерявали, моля да се създаде друга група с различно име." - -#: src/Model/Group.php:451 -msgid "Default privacy group for new contacts" -msgstr "Неприкосновеността на личния живот на група по подразбиране за нови контакти" - -#: src/Model/Group.php:483 -msgid "Everybody" -msgstr "Всички" - -#: src/Model/Group.php:502 -msgid "edit" -msgstr "редактиране" - -#: src/Model/Group.php:534 -msgid "add" -msgstr "добави" - -#: src/Model/Group.php:539 -msgid "Edit group" -msgstr "Редактиране на групата" - -#: src/Model/Group.php:540 src/Module/Group.php:193 -msgid "Contacts not in any group" -msgstr "Контакти, не във всяка група" - -#: src/Model/Group.php:542 -msgid "Create a new group" -msgstr "Създайте нова група" - -#: src/Model/Group.php:543 src/Module/Group.php:178 src/Module/Group.php:201 -#: src/Module/Group.php:276 -msgid "Group Name: " -msgstr "Име на група: " - -#: src/Model/Group.php:544 -msgid "Edit groups" -msgstr "" - -#: src/Model/Item.php:1760 +#: src/Model/Item.php:2062 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "" -#: src/Model/Item.php:2767 +#: src/Model/Item.php:3007 msgid "activity" msgstr "дейност" -#: src/Model/Item.php:2769 src/Object/Post.php:558 +#: src/Model/Item.php:3009 msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "" +msgstr "" -#: src/Model/Item.php:2772 +#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "след" -#: src/Model/Item.php:2896 +#: src/Model/Item.php:3182 +#, php-format +msgid "%s is blocked" +msgstr "" + +#: src/Model/Item.php:3184 +#, php-format +msgid "%s is ignored" +msgstr "" + +#: src/Model/Item.php:3186 +#, php-format +msgid "Content from %s is collapsed" +msgstr "" + +#: src/Model/Item.php:3190 #, php-format msgid "Content warning: %s" msgstr "" -#: src/Model/Item.php:2969 +#: src/Model/Item.php:3652 msgid "bytes" msgstr "байта" -#: src/Model/Item.php:3014 +#: src/Model/Item.php:3683 +#, php-format +msgid "%2$s (%3$d%%, %1$d vote)" +msgid_plural "%2$s (%3$d%%, %1$d votes)" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3685 +#, php-format +msgid "%2$s (%1$d vote)" +msgid_plural "%2$s (%1$d votes)" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3690 +#, php-format +msgid "%d voter. Poll end: %s" +msgid_plural "%d voters. Poll end: %s" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3692 +#, php-format +msgid "%d voter." +msgid_plural "%d voters." +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3694 +#, php-format +msgid "Poll end: %s" +msgstr "" + +#: src/Model/Item.php:3728 src/Model/Item.php:3729 msgid "View on separate page" msgstr "" -#: src/Model/Item.php:3015 -msgid "view on separate page" -msgstr "" - -#: src/Model/Mail.php:121 src/Model/Mail.php:259 +#: src/Model/Mail.php:137 src/Model/Mail.php:266 msgid "[no subject]" msgstr "[Без тема]" -#: src/Model/Profile.php:346 src/Module/Profile/Profile.php:251 -#: src/Module/Profile/Profile.php:253 +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Стена снимки" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 msgid "Edit profile" msgstr "Редактиране на потребителския профил" -#: src/Model/Profile.php:348 +#: src/Model/Profile.php:361 msgid "Change profile photo" msgstr "Промяна на снимката на профил" -#: src/Model/Profile.php:361 src/Module/Directory.php:161 -#: src/Module/Profile/Profile.php:180 +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 msgid "Homepage:" msgstr "Начална страница:" -#: src/Model/Profile.php:362 src/Module/Contact.php:650 -#: src/Module/Notifications/Introductions.php:174 +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "това ?" -#: src/Model/Profile.php:363 src/Module/Contact.php:648 -#: src/Module/Profile/Profile.php:176 -msgid "XMPP:" -msgstr "" - -#: src/Model/Profile.php:441 src/Module/Contact.php:342 -msgid "Unfollow" -msgstr "" - -#: src/Model/Profile.php:443 +#: src/Model/Profile.php:465 msgid "Atom feed" msgstr "" -#: src/Model/Profile.php:451 src/Module/Contact.php:338 -#: src/Module/Notifications/Introductions.php:186 -msgid "Network:" +#: src/Model/Profile.php:472 +msgid "This website has been verified to belong to the same person." msgstr "" -#: src/Model/Profile.php:481 src/Model/Profile.php:578 -msgid "g A l F d" -msgstr "грама Л Е г" - -#: src/Model/Profile.php:482 +#: src/Model/Profile.php:509 msgid "F d" msgstr "F г" -#: src/Model/Profile.php:544 src/Model/Profile.php:629 +#: src/Model/Profile.php:573 src/Model/Profile.php:662 msgid "[today]" msgstr "Днес" -#: src/Model/Profile.php:554 +#: src/Model/Profile.php:582 msgid "Birthday Reminders" msgstr "Напомняния за рождени дни" -#: src/Model/Profile.php:555 +#: src/Model/Profile.php:583 msgid "Birthdays this week:" msgstr "Рождени дни този Седмица:" -#: src/Model/Profile.php:616 +#: src/Model/Profile.php:611 +msgid "g A l F d" +msgstr "грама Л Е г" + +#: src/Model/Profile.php:649 msgid "[No description]" msgstr "[Няма описание]" -#: src/Model/Profile.php:642 +#: src/Model/Profile.php:675 msgid "Event Reminders" msgstr "Напомняния" -#: src/Model/Profile.php:643 +#: src/Model/Profile.php:676 msgid "Upcoming events the next 7 days:" msgstr "" -#: src/Model/Profile.php:818 +#: src/Model/Profile.php:873 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "" -#: src/Model/Storage/Database.php:74 -#, php-format -msgid "Database storage failed to update %s" +#: src/Model/Profile.php:1013 +msgid "Hometown:" +msgstr "Hometown:" + +#: src/Model/Profile.php:1014 +msgid "Marital Status:" msgstr "" -#: src/Model/Storage/Database.php:82 -msgid "Database storage failed to insert data" +#: src/Model/Profile.php:1015 +msgid "With:" msgstr "" -#: src/Model/Storage/Filesystem.php:100 -#, php-format -msgid "Filesystem storage failed to create \"%s\". Check you write permissions." +#: src/Model/Profile.php:1016 +msgid "Since:" msgstr "" -#: src/Model/Storage/Filesystem.php:148 -#, php-format -msgid "" -"Filesystem storage failed to save data to \"%s\". Check your write " -"permissions" -msgstr "" +#: src/Model/Profile.php:1017 +msgid "Sexual Preference:" +msgstr "Сексуални предпочитания:" -#: src/Model/Storage/Filesystem.php:176 -msgid "Storage base path" -msgstr "" +#: src/Model/Profile.php:1018 +msgid "Political Views:" +msgstr "Политически възгледи:" -#: 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 "" +#: src/Model/Profile.php:1019 +msgid "Religious Views:" +msgstr "Религиозни възгледи:" -#: src/Model/Storage/Filesystem.php:191 -msgid "Enter a valid existing folder" -msgstr "" +#: src/Model/Profile.php:1020 +msgid "Likes:" +msgstr "Харесвания:" -#: src/Model/User.php:186 src/Model/User.php:931 +#: src/Model/Profile.php:1021 +msgid "Dislikes:" +msgstr "Нехаресвания:" + +#: src/Model/Profile.php:1022 +msgid "Title/Description:" +msgstr "Наименование/Описание" + +#: src/Model/Profile.php:1023 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 +msgid "Summary" +msgstr "Резюме" + +#: src/Model/Profile.php:1024 +msgid "Musical interests" +msgstr "Музикални интереси" + +#: src/Model/Profile.php:1025 +msgid "Books, literature" +msgstr "Книги, литература" + +#: src/Model/Profile.php:1026 +msgid "Television" +msgstr "Телевизия" + +#: src/Model/Profile.php:1027 +msgid "Film/dance/culture/entertainment" +msgstr "Филм / танц / Култура / забавления" + +#: src/Model/Profile.php:1028 +msgid "Hobbies/Interests" +msgstr "Хобита / интереси" + +#: src/Model/Profile.php:1029 +msgid "Love/romance" +msgstr "Любов / романтика" + +#: src/Model/Profile.php:1030 +msgid "Work/employment" +msgstr "Работа / заетост" + +#: src/Model/Profile.php:1031 +msgid "School/education" +msgstr "Училище / образование" + +#: src/Model/Profile.php:1032 +msgid "Contact information and Social Networks" +msgstr "Информация за контакти и социални мрежи" + +#: src/Model/User.php:227 src/Model/User.php:1186 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "Сериозна грешка: генериране на ключове за защита не успя." -#: src/Model/User.php:549 +#: src/Model/User.php:620 src/Model/User.php:653 msgid "Login failed" msgstr "" -#: src/Model/User.php:581 +#: src/Model/User.php:685 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:676 +#: src/Model/User.php:806 msgid "Password can't be empty" msgstr "" -#: src/Model/User.php:695 +#: src/Model/User.php:848 msgid "Empty passwords are not allowed." msgstr "" -#: src/Model/User.php:699 +#: src/Model/User.php:852 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "" -#: src/Model/User.php:705 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" +#: src/Model/User.php:856 +msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:811 +#: src/Model/User.php:860 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "" + +#: src/Model/User.php:1069 msgid "Passwords do not match. Password unchanged." msgstr "Паролите не съвпадат. Парола непроменен." -#: src/Model/User.php:818 +#: src/Model/User.php:1076 msgid "An invitation is required." msgstr "Се изисква покана." -#: src/Model/User.php:822 +#: src/Model/User.php:1080 msgid "Invitation could not be verified." msgstr "Покана не може да бъде проверена." -#: src/Model/User.php:830 +#: src/Model/User.php:1088 msgid "Invalid OpenID url" msgstr "Невалиден URL OpenID" -#: src/Model/User.php:843 src/Security/Authentication.php:224 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Ние се натъкна на проблем, докато влезете с OpenID, който сте посочили. Моля, проверете правилното изписване на идентификацията." -#: src/Model/User.php:843 src/Security/Authentication.php:224 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "Съобщението за грешка е:" -#: src/Model/User.php:849 +#: src/Model/User.php:1107 msgid "Please enter the required information." msgstr "Моля, въведете необходимата информация." -#: src/Model/User.php:863 +#: src/Model/User.php:1121 #, 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:1128 #, 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:1132 #, 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:1140 msgid "That doesn't appear to be your full (First Last) name." msgstr "Това не изглежда да е пълен (първи Последно) име." -#: src/Model/User.php:887 +#: src/Model/User.php:1145 msgid "Your email domain is not among those allowed on this site." msgstr "Вашият имейл домейн не е сред тези, разрешени на този сайт." -#: src/Model/User.php:891 +#: src/Model/User.php:1149 msgid "Not a valid email address." msgstr "Не е валиден имейл адрес." -#: src/Model/User.php:894 +#: src/Model/User.php:1152 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:1156 src/Model/User.php:1162 msgid "Cannot use that email." msgstr "Не може да се използва този имейл." -#: src/Model/User.php:913 +#: src/Model/User.php:1168 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:1176 src/Model/User.php:1233 msgid "Nickname is already registered. Please choose another." msgstr "Псевдоним вече е регистрирано. Моля, изберете друга." -#: src/Model/User.php:965 src/Model/User.php:969 +#: src/Model/User.php:1220 src/Model/User.php:1224 msgid "An error occurred during registration. Please try again." msgstr "Възникна грешка по време на регистрацията. Моля, опитайте отново." -#: src/Model/User.php:992 +#: src/Model/User.php:1247 msgid "An error occurred creating your default profile. Please try again." msgstr "Възникна грешка при създаването на своя профил по подразбиране. Моля, опитайте отново." -#: src/Model/User.php:999 +#: src/Model/User.php:1254 msgid "An error occurred creating your self contact. Please try again." msgstr "" -#: src/Model/User.php:1004 +#: src/Model/User.php:1259 msgid "Friends" msgstr "Приятели" -#: src/Model/User.php:1008 +#: src/Model/User.php:1263 msgid "" -"An error occurred creating your default contact group. Please try again." +"An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1199 +#: src/Model/User.php:1307 +msgid "Profile Photos" +msgstr "Снимка на профила" + +#: src/Model/User.php:1487 #, php-format msgid "" "\n" @@ -5053,7 +3748,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:1490 #, php-format msgid "" "\n" @@ -5080,17 +3775,17 @@ msgid "" "\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" +"\t\tIf you ever want to delete your account, you can do so at %1$s/settings/removeme\n" "\n" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1235 src/Model/User.php:1342 +#: src/Model/User.php:1523 src/Model/User.php:1630 #, php-format msgid "Registration details for %s" msgstr "Регистрационни данни за %s" -#: src/Model/User.php:1255 +#: src/Model/User.php:1543 #, php-format msgid "" "\n" @@ -5105,12 +3800,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:1274 +#: src/Model/User.php:1562 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:1298 +#: src/Model/User.php:1586 #, php-format msgid "" "\n" @@ -5119,7 +3814,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1306 +#: src/Model/User.php:1594 #, php-format msgid "" "\n" @@ -5146,7 +3841,7 @@ msgid "" "\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" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." msgstr "" @@ -5176,24 +3871,20 @@ msgid "Enable" 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:140 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:230 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 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 +#: src/Module/Admin/Themes/Details.php:90 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 msgid "Administration" msgstr "Администриране " #: src/Module/Admin/Addons/Details.php:112 #: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:87 +#: src/Module/BaseSettings.php:132 msgid "Addons" msgstr "" @@ -5202,13 +3893,13 @@ msgstr "" msgid "Toggle" msgstr "切換" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 msgid "Author: " msgstr "Автор: " -#: src/Module/Admin/Addons/Details.php:122 -#: src/Module/Admin/Themes/Details.php:102 +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 msgid "Maintainer: " msgstr "Отговорник: " @@ -5221,11 +3912,22 @@ msgstr "" msgid "Addon %s failed to install." msgstr "" +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "" + #: src/Module/Admin/Addons/Index.php:70 msgid "Reload active addons" msgstr "" -#: src/Module/Admin/Addons/Index.php:75 +#: src/Module/Admin/Addons/Index.php:74 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -5233,218 +3935,6 @@ msgid "" " the open addon registry at %2$s" msgstr "" -#: src/Module/Admin/BaseUsers.php:53 -msgid "List of all users" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:58 -msgid "Active" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:61 -msgid "List of active accounts" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:66 src/Module/Contact.php:799 -#: src/Module/Contact.php:859 -msgid "Pending" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:69 -msgid "List of pending registrations" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:74 src/Module/Contact.php:807 -#: src/Module/Contact.php:860 -msgid "Blocked" -msgstr "Блокиран" - -#: src/Module/Admin/BaseUsers.php:77 -msgid "List of blocked users" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:82 -msgid "Deleted" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:85 -msgid "List of pending user deletions" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:103 -msgid "Private Forum" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:110 -msgid "Relay" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:57 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Blocklist/Contact.php:79 -msgid "Remote Contact Blocklist" -msgstr "" - -#: 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 "" - -#: src/Module/Admin/Blocklist/Contact.php:81 -msgid "Block Remote Contact" -msgstr "" - -#: 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 "Избор на всичко" - -#: src/Module/Admin/Blocklist/Contact.php:83 -msgid "select none" -msgstr "" - -#: 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:625 src/Module/Contact.php:883 -#: src/Module/Contact.php:1165 -msgid "Unblock" -msgstr "Разблокиране" - -#: src/Module/Admin/Blocklist/Contact.php:86 -msgid "No remote contact is blocked from this node." -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:88 -msgid "Blocked Remote Contacts" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:89 -msgid "Block New Remote Contact" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Photo" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Reason" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Blocklist/Contact.php:100 -msgid "URL of the remote contact to block." -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:101 -msgid "Block Reason" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:49 -msgid "Server domain pattern added to blocklist." -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:79 -#: src/Module/Admin/Blocklist/Server.php:104 -msgid "Blocked server domain pattern" -msgstr "" - -#: 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 "" - -#: src/Module/Admin/Blocklist/Server.php:81 -msgid "Delete server domain pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:81 -msgid "Check to delete this entry from the blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:89 -msgid "Server Domain Pattern Blocklist" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: 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 "" - -#: src/Module/Admin/Blocklist/Server.php:98 -msgid "Add new entry to block list" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:99 -msgid "Server Domain Pattern" -msgstr "" - -#: 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 "" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "Block reason" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "The reason why you blocked this server domain pattern." -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "Add Entry" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:102 -msgid "Save changes to the blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:103 -msgid "Current Entries in the Blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:106 -msgid "Delete entry from blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:109 -msgid "Delete entry from blocklist?" -msgstr "" - #: src/Module/Admin/DBSync.php:51 msgid "Update has been marked successful" msgstr "Update е маркиран успешно" @@ -5479,28 +3969,28 @@ msgstr "Актуализация %s не се връща статус. Изве msgid "There was no additional update function %s that needed to be called." msgstr "" -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:105 msgid "No failed updates." msgstr "Няма провалени новини." -#: src/Module/Admin/DBSync.php:107 +#: src/Module/Admin/DBSync.php:106 msgid "Check database structure" msgstr "" -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:110 msgid "Failed Updates" msgstr "Неуспешно Updates" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:111 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Това не включва актуализации, преди 1139, които не връщат статута." -#: src/Module/Admin/DBSync.php:114 +#: src/Module/Admin/DBSync.php:112 msgid "Mark success (if update was manually applied)" msgstr "Марк успех (ако актуализация е ръчно прилага)" -#: src/Module/Admin/DBSync.php:115 +#: src/Module/Admin/DBSync.php:113 msgid "Attempt to execute this update step automatically" msgstr "Опита да изпълни тази стъпка се обновяват автоматично" @@ -5509,118 +3999,145 @@ msgstr "Опита да изпълни тази стъпка се обновяв msgid "Lock feature %s" msgstr "" -#: src/Module/Admin/Features.php:85 +#: src/Module/Admin/Features.php:84 msgid "Manage Additional Features" msgstr "" -#: src/Module/Admin/Federation.php:53 +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 msgid "Other" msgstr "Друг" -#: src/Module/Admin/Federation.php:107 src/Module/Admin/Federation.php:267 +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 msgid "unknown" msgstr "" -#: src/Module/Admin/Federation.php:135 +#: src/Module/Admin/Federation.php:187 +#, php-format +msgid "%2$s total system" +msgid_plural "%2$s total systems" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:188 +#, php-format +msgid "%2$s active user last month" +msgid_plural "%2$s active users last month" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:189 +#, php-format +msgid "%2$s active user last six months" +msgid_plural "%2$s active users last six months" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:190 +#, php-format +msgid "%2$s registered user" +msgid_plural "%2$s registered users" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:191 +#, php-format +msgid "%2$s locally created post or comment" +msgid_plural "%2$s locally created posts and comments" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:194 +#, php-format +msgid "%2$s post per user" +msgid_plural "%2$s posts per user" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:199 +#, php-format +msgid "%2$s user per system" +msgid_plural "%2$s users per system" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:209 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:141 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "" -#: src/Module/Admin/Federation.php:145 +#: src/Module/Admin/Federation.php:219 #, php-format msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " +"Currently this node is aware of %2$s node (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " "following platforms:" -msgstr "" +msgid_plural "" +"Currently this node is aware of %2$s nodes (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgstr[0] "" +msgstr[1] "" -#: src/Module/Admin/Item/Delete.php:54 -msgid "Item marked for deletion." -msgstr "" - -#: src/Module/Admin/Item/Delete.php:66 src/Module/BaseAdmin.php:105 -msgid "Delete Item" -msgstr "" - -#: src/Module/Admin/Item/Delete.php:67 -msgid "Delete this Item" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: src/Module/Admin/Item/Delete.php:70 -msgid "GUID" -msgstr "" - -#: src/Module/Admin/Item/Delete.php:70 -msgid "The GUID of the item you want to delete." -msgstr "" - -#: src/Module/Admin/Item/Source.php:57 -msgid "Item Guid" -msgstr "" - -#: src/Module/Admin/Logs/Settings.php:48 +#: src/Module/Admin/Logs/Settings.php:47 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "" -#: src/Module/Admin/Logs/Settings.php:72 +#: src/Module/Admin/Logs/Settings.php:77 msgid "PHP log currently enabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/Settings.php:79 msgid "PHP log currently disabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:81 src/Module/BaseAdmin.php:107 -#: src/Module/BaseAdmin.php:108 +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 msgid "Logs" msgstr "Дневници" -#: src/Module/Admin/Logs/Settings.php:83 +#: src/Module/Admin/Logs/Settings.php:88 msgid "Clear" msgstr "Безцветен " -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:91 msgid "Enable Debugging" msgstr "" -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:92 msgid "Log file" msgstr "Регистрационен файл" -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:92 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Трябва да бъде записван от уеб сървър. В сравнение с вашата Friendica най-високо ниво директория." -#: src/Module/Admin/Logs/Settings.php:89 +#: src/Module/Admin/Logs/Settings.php:93 msgid "Log level" msgstr "Вход ниво" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:95 msgid "PHP logging" msgstr "" -#: src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:96 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 " @@ -5629,24 +4146,94 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "" -#: src/Module/Admin/Logs/View.php:40 +#: src/Module/Admin/Logs/View.php:70 #, php-format msgid "" -"Error trying to open %1$s log file.\\r\\n
    Check to see " -"if file %1$s exist and is readable." +"Error trying to open %1$s log file.
    Check to see if " +"file %1$s exist and is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:44 +#: src/Module/Admin/Logs/View.php:79 #, php-format msgid "" -"Couldn't open %1$s log file.\\r\\n
    Check to see if file" -" %1$s is readable." +"Couldn't open %1$s log file.
    Check to see if file %1$s " +"is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:65 src/Module/BaseAdmin.php:109 +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 msgid "View Logs" msgstr "" +#: src/Module/Admin/Logs/View.php:87 +msgid "Search in logs" +msgstr "" + +#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Notifications/Notifications.php:140 +msgid "Show all" +msgstr "" + +#: src/Module/Admin/Logs/View.php:89 +msgid "Date" +msgstr "" + +#: src/Module/Admin/Logs/View.php:90 +msgid "Level" +msgstr "" + +#: src/Module/Admin/Logs/View.php:91 +msgid "Context" +msgstr "" + +#: src/Module/Admin/Logs/View.php:93 +msgid "ALL" +msgstr "" + +#: src/Module/Admin/Logs/View.php:94 +msgid "View details" +msgstr "" + +#: src/Module/Admin/Logs/View.php:95 +msgid "Click to view details" +msgstr "" + +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Подробности за събитието" + +#: src/Module/Admin/Logs/View.php:97 +msgid "Data" +msgstr "" + +#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Debug/ActivityPubConversion.php:57 +msgid "Source" +msgstr "" + +#: src/Module/Admin/Logs/View.php:99 +msgid "File" +msgstr "" + +#: src/Module/Admin/Logs/View.php:100 +msgid "Line" +msgstr "" + +#: src/Module/Admin/Logs/View.php:101 +msgid "Function" +msgstr "" + +#: src/Module/Admin/Logs/View.php:102 +msgid "UID" +msgstr "" + +#: src/Module/Admin/Logs/View.php:103 +msgid "Process ID" +msgstr "" + +#: src/Module/Admin/Logs/View.php:104 +msgid "Close" +msgstr "" + #: src/Module/Admin/Queue.php:50 msgid "Inspect Deferred Worker Queue" msgstr "" @@ -5672,478 +4259,479 @@ msgid "ID" msgstr "" #: src/Module/Admin/Queue.php:76 -msgid "Job Parameters" +msgid "Command" msgstr "" #: src/Module/Admin/Queue.php:77 +msgid "Job Parameters" +msgstr "" + +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 msgid "Created" msgstr "" -#: src/Module/Admin/Queue.php:78 +#: src/Module/Admin/Queue.php:79 msgid "Priority" msgstr "" -#: src/Module/Admin/Site.php:69 -msgid "Can not parse base url. Must have at least ://" +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:123 -msgid "Relocation started. Could take a while to complete." -msgstr "" - -#: src/Module/Admin/Site.php:249 -msgid "Invalid storage backend setting value." -msgstr "" - -#: src/Module/Admin/Site.php:449 src/Module/Settings/Display.php:134 +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:178 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:330 src/Module/Settings/Display.php:188 #, php-format msgid "%s - (Experimental)" msgstr "" -#: src/Module/Admin/Site.php:478 -msgid "No community page for local users" -msgstr "" - -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:342 msgid "No community page" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:343 +msgid "No community page for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:344 msgid "Public postings from users of this site" msgstr "" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:345 msgid "Public postings from the federated network" msgstr "" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:346 msgid "Public postings from local users and the federated network" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:352 msgid "Multi user instance" msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:375 msgid "Closed" msgstr "Затворен" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:376 msgid "Requires approval" msgstr "Изисква одобрение" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:377 msgid "Open" msgstr "Отворена." -#: src/Module/Admin/Site.php:522 src/Module/Install.php:204 -msgid "No SSL policy, links will track page SSL state" -msgstr "Не SSL политика, връзки ще следи страница SSL състояние" - -#: src/Module/Admin/Site.php:523 src/Module/Install.php:205 -msgid "Force all links to use SSL" -msgstr "Принуди всички връзки да се използва SSL" - -#: src/Module/Admin/Site.php:524 src/Module/Install.php:206 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Самоподписан сертификат, използвайте SSL за местни връзки единствено (обезкуражени)" - -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:381 msgid "Don't check" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:382 msgid "check the stable version" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:383 msgid "check the development version" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:387 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:388 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:389 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:549 -msgid "Database (legacy)" -msgstr "" - -#: src/Module/Admin/Site.php:580 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Сайт" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:400 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:402 msgid "Republish users to directory" msgstr "" -#: src/Module/Admin/Site.php:584 src/Module/Register.php:139 +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 msgid "Registration" msgstr "Регистрация" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:404 msgid "File upload" msgstr "Прикачване на файлове" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:405 msgid "Policies" msgstr "Политики" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "Напреднал" + +#: src/Module/Admin/Site.php:407 msgid "Auto Discovered Contact Directory" msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:408 msgid "Performance" msgstr "Производителност" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:409 msgid "Worker" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:410 msgid "Message Relay" msgstr "" -#: src/Module/Admin/Site.php:592 -msgid "Relocate Instance" -msgstr "" - -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:411 msgid "" -"Warning! Advanced function. Could make this server " -"unreachable." +"Use the command \"console relay\" in the command line to add or remove " +"relays." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:412 +msgid "The system is not subscribed to any relays at the moment." +msgstr "" + +#: src/Module/Admin/Site.php:413 +msgid "The system is currently subscribed to the following relays:" +msgstr "" + +#: src/Module/Admin/Site.php:415 +msgid "Relocate Node" +msgstr "" + +#: src/Module/Admin/Site.php:416 +msgid "" +"Relocating your node enables you to change the DNS domain of this node and " +"keep all the existing users and posts. This process takes a while and can " +"only be started from the relocate console command like this:" +msgstr "" + +#: src/Module/Admin/Site.php:417 +msgid "(Friendica directory)# bin/console relocate https://newdomain.com" +msgstr "" + +#: src/Module/Admin/Site.php:420 msgid "Site name" msgstr "Име на сайта" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:421 msgid "Sender Email" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:421 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:422 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:422 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:423 msgid "Banner/Logo" msgstr "Банер / лого" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:424 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:425 msgid "Shortcut icon" msgstr "" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:425 msgid "Link to an icon that will be used for browsers." msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:426 msgid "Touch icon" msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:426 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:427 msgid "Additional Info" msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:427 #, 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:428 msgid "System language" msgstr "Системен език" -#: src/Module/Admin/Site.php:606 +#: src/Module/Admin/Site.php:429 msgid "System theme" msgstr "Системна тема" -#: src/Module/Admin/Site.php:606 +#: src/Module/Admin/Site.php:429 +#, php-format msgid "" -"Default system theme - may be over-ridden by user profiles - Change default theme settings" +"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:430 msgid "Mobile system theme" msgstr "" -#: src/Module/Admin/Site.php:607 +#: src/Module/Admin/Site.php:430 msgid "Theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:608 src/Module/Install.php:214 -msgid "SSL link policy" -msgstr "SSL връзка политика" - -#: src/Module/Admin/Site.php:608 src/Module/Install.php:216 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Определя дали генерирани връзки трябва да бъдат принудени да се използва SSL" - -#: src/Module/Admin/Site.php:609 +#: src/Module/Admin/Site.php:431 msgid "Force SSL" msgstr "" -#: src/Module/Admin/Site.php:609 +#: src/Module/Admin/Site.php:431 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 -msgid "Hide help entry from navigation menu" +#: src/Module/Admin/Site.php:432 +msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:610 +#: src/Module/Admin/Site.php:432 msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." +"Displays the menu entry for the Help pages from the navigation menu. It is " +"always accessible by calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:611 +#: src/Module/Admin/Site.php:433 msgid "Single user instance" msgstr "" -#: src/Module/Admin/Site.php:611 +#: src/Module/Admin/Site.php:433 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: src/Module/Admin/Site.php:613 -msgid "File storage backend" -msgstr "" - -#: 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 "" - -#: src/Module/Admin/Site.php:615 +#: src/Module/Admin/Site.php:435 msgid "Maximum image size" msgstr "Максимален размер на изображението" -#: src/Module/Admin/Site.php:615 +#: src/Module/Admin/Site.php:435 +#, php-format msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Максимален размер в байтове на качените изображения. По подразбиране е 0, което означава, няма граници." +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "" -#: src/Module/Admin/Site.php:616 +#: src/Module/Admin/Site.php:439 msgid "Maximum image length" msgstr "" -#: src/Module/Admin/Site.php:616 +#: src/Module/Admin/Site.php:439 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:440 msgid "JPEG image quality" msgstr "" -#: src/Module/Admin/Site.php:617 +#: src/Module/Admin/Site.php:440 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:442 msgid "Register policy" msgstr "Регистрирайте политика" -#: src/Module/Admin/Site.php:620 +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "" + +#: src/Module/Admin/Site.php:444 msgid "Maximum Daily Registrations" msgstr "" -#: src/Module/Admin/Site.php:620 +#: src/Module/Admin/Site.php:444 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:445 msgid "Register text" msgstr "Регистрирайте се текст" -#: src/Module/Admin/Site.php:621 +#: src/Module/Admin/Site.php:445 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:446 msgid "Forbidden Nicknames" msgstr "" -#: src/Module/Admin/Site.php:622 +#: src/Module/Admin/Site.php:446 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:447 msgid "Accounts abandoned after x days" msgstr "Сметките изоставени след дни х" -#: src/Module/Admin/Site.php:623 +#: src/Module/Admin/Site.php:447 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Няма да губи системните ресурси избирателните външни сайтове за abandonded сметки. Въведете 0 за без ограничение във времето." -#: src/Module/Admin/Site.php:624 +#: src/Module/Admin/Site.php:448 msgid "Allowed friend domains" msgstr "Позволи на домейни приятел" -#: src/Module/Admin/Site.php:624 +#: src/Module/Admin/Site.php:448 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Разделени със запетая списък на домейни, на които е разрешено да се създадат приятелства с този сайт. Заместващи символи са приети. На Empty да се даде възможност на всички домейни" -#: src/Module/Admin/Site.php:625 +#: src/Module/Admin/Site.php:449 msgid "Allowed email domains" msgstr "Позволи на домейни имейл" -#: src/Module/Admin/Site.php:625 +#: src/Module/Admin/Site.php:449 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 "Разделени със запетая списък на домейни, които са разрешени в имейл адреси за регистрации в този сайт. Заместващи символи са приети. На Empty да се даде възможност на всички домейни" -#: src/Module/Admin/Site.php:626 +#: src/Module/Admin/Site.php:450 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:626 +#: src/Module/Admin/Site.php:450 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:627 -msgid "Allowed OEmbed domains" +#: src/Module/Admin/Site.php:451 +msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:627 +#: src/Module/Admin/Site.php:451 msgid "" -"Comma separated list of domains which oembed content is allowed to be " -"displayed. Wildcards are accepted." +"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:452 msgid "Block public" msgstr "Блокиране на обществения" -#: src/Module/Admin/Site.php:628 +#: src/Module/Admin/Site.php:452 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:453 msgid "Force publish" msgstr "Принудително публикува" -#: src/Module/Admin/Site.php:629 +#: src/Module/Admin/Site.php:453 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:453 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "" -#: src/Module/Admin/Site.php:630 +#: src/Module/Admin/Site.php:454 msgid "Global directory URL" msgstr "" -#: src/Module/Admin/Site.php:630 +#: src/Module/Admin/Site.php:454 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:455 msgid "Private posts by default for new users" msgstr "" -#: src/Module/Admin/Site.php:631 +#: src/Module/Admin/Site.php:455 msgid "" "Set default post permissions for all new members to the default privacy " -"group rather than public." +"circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:632 +#: src/Module/Admin/Site.php:456 msgid "Don't include post content in email notifications" msgstr "" -#: src/Module/Admin/Site.php:632 +#: src/Module/Admin/Site.php:456 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:457 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: src/Module/Admin/Site.php:633 +#: src/Module/Admin/Site.php:457 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:458 msgid "Don't embed private images in posts" msgstr "" -#: src/Module/Admin/Site.php:634 +#: src/Module/Admin/Site.php:458 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 " @@ -6151,11 +4739,11 @@ msgid "" "while." msgstr "" -#: src/Module/Admin/Site.php:635 +#: src/Module/Admin/Site.php:459 msgid "Explicit Content" msgstr "" -#: src/Module/Admin/Site.php:635 +#: src/Module/Admin/Site.php:459 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 " @@ -6164,234 +4752,267 @@ msgid "" "will be shown at the user registration page." msgstr "" -#: src/Module/Admin/Site.php:636 +#: src/Module/Admin/Site.php:460 +msgid "Proxify external content" +msgstr "" + +#: src/Module/Admin/Site.php:460 +msgid "" +"Route external content via the proxy functionality. This is used for example" +" for some OEmbed accesses and in some other rare cases." +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "Cache contact avatars" +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "" +"Locally store the avatar pictures of the contacts. This uses a lot of " +"storage space but it increases the performance." +msgstr "" + +#: src/Module/Admin/Site.php:462 msgid "Allow Users to set remote_self" msgstr "" -#: src/Module/Admin/Site.php:636 +#: src/Module/Admin/Site.php:462 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 -msgid "Block multiple registrations" -msgstr "Блокиране на множество регистрации" - -#: src/Module/Admin/Site.php:637 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Забраните на потребителите да се регистрират допълнителни сметки, за използване като страниците." - -#: src/Module/Admin/Site.php:638 -msgid "Disable OpenID" +#: src/Module/Admin/Site.php:463 +msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:638 -msgid "Disable OpenID support for registration and logins." +#: src/Module/Admin/Site.php:463 +msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:639 -msgid "No Fullname check" +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:639 +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID support for registration and logins." +msgstr "" + +#: src/Module/Admin/Site.php:465 +msgid "Enable Fullname check" +msgstr "" + +#: src/Module/Admin/Site.php:465 msgid "" -"Allow users to register without a space between the first name and the last " -"name in their full name." +"Enable check to only allow users to register with 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:466 +msgid "Email administrators on new registration" +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "" + +#: src/Module/Admin/Site.php:467 msgid "Community pages for visitors" msgstr "" -#: src/Module/Admin/Site.php:640 +#: src/Module/Admin/Site.php:467 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:468 msgid "Posts per user on community page" msgstr "" -#: src/Module/Admin/Site.php:641 +#: src/Module/Admin/Site.php:468 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "\"Global Community\")" msgstr "" -#: src/Module/Admin/Site.php:642 -msgid "Disable OStatus support" +#: src/Module/Admin/Site.php:470 +msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:642 +#: src/Module/Admin/Site.php:470 msgid "" -"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." +"Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:643 -msgid "OStatus support can only be enabled if threading is enabled." +#: src/Module/Admin/Site.php:471 +msgid "" +"Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:645 +#: src/Module/Admin/Site.php:472 +msgid "Enable OStatus support" +msgstr "" + +#: src/Module/Admin/Site.php:472 +msgid "" +"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public." +msgstr "" + +#: src/Module/Admin/Site.php:474 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:475 msgid "Enable Diaspora support" msgstr "Активирайте диаспора подкрепа" -#: src/Module/Admin/Site.php:646 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Осигури вградена диаспора в мрежата съвместимост." - -#: src/Module/Admin/Site.php:647 -msgid "Only allow Friendica contacts" -msgstr "Позволяват само Friendica контакти" - -#: src/Module/Admin/Site.php:647 +#: src/Module/Admin/Site.php:475 msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Всички контакти трябва да използвате Friendica протоколи. Всички останали вградени комуникационни протоколи с увреждания." +"Enable built-in Diaspora network compatibility for communicating with " +"diaspora servers." +msgstr "" -#: src/Module/Admin/Site.php:648 +#: src/Module/Admin/Site.php:476 msgid "Verify SSL" msgstr "Провери SSL" -#: src/Module/Admin/Site.php:648 +#: src/Module/Admin/Site.php:476 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:477 msgid "Proxy user" msgstr "Proxy потребител" -#: src/Module/Admin/Site.php:650 +#: src/Module/Admin/Site.php:477 +msgid "User name for the proxy server." +msgstr "" + +#: src/Module/Admin/Site.php:478 msgid "Proxy URL" msgstr "Proxy URL" -#: src/Module/Admin/Site.php:651 +#: src/Module/Admin/Site.php:478 +msgid "" +"If you want to use a proxy server that Friendica should use to connect to " +"the network, put the URL of the proxy here." +msgstr "" + +#: src/Module/Admin/Site.php:479 msgid "Network timeout" msgstr "Мрежа изчакване" -#: src/Module/Admin/Site.php:651 +#: src/Module/Admin/Site.php:479 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:480 msgid "Maximum Load Average" msgstr "Максимално натоварване" -#: src/Module/Admin/Site.php:652 +#: src/Module/Admin/Site.php:480 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "" -#: src/Module/Admin/Site.php:653 -msgid "Maximum Load Average (Frontend)" -msgstr "" - -#: src/Module/Admin/Site.php:653 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "" - -#: src/Module/Admin/Site.php:654 +#: src/Module/Admin/Site.php:481 msgid "Minimal Memory" msgstr "" -#: src/Module/Admin/Site.php:654 +#: src/Module/Admin/Site.php:481 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:482 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:655 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:657 +#: src/Module/Admin/Site.php:484 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:657 +#: src/Module/Admin/Site.php:484 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:658 +#: src/Module/Admin/Site.php:485 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:659 +#: src/Module/Admin/Site.php:486 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:487 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:489 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:662 +#: src/Module/Admin/Site.php:489 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:491 msgid "Days between requery" msgstr "" -#: src/Module/Admin/Site.php:664 +#: src/Module/Admin/Site.php:491 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:492 msgid "Discover contacts from other servers" msgstr "" -#: src/Module/Admin/Site.php:665 +#: src/Module/Admin/Site.php:492 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:493 msgid "Search the local directory" msgstr "" -#: src/Module/Admin/Site.php:666 +#: src/Module/Admin/Site.php:493 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:495 msgid "Publish server information" msgstr "" -#: src/Module/Admin/Site.php:668 +#: src/Module/Admin/Site.php:495 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 " @@ -6399,50 +5020,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:670 +#: src/Module/Admin/Site.php:497 msgid "Check upstream version" msgstr "" -#: src/Module/Admin/Site.php:670 +#: src/Module/Admin/Site.php:497 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:498 msgid "Suppress Tags" msgstr "" -#: src/Module/Admin/Site.php:671 +#: src/Module/Admin/Site.php:498 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:499 msgid "Clean database" msgstr "" -#: src/Module/Admin/Site.php:672 +#: src/Module/Admin/Site.php:499 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:500 msgid "Lifespan of remote items" msgstr "" -#: src/Module/Admin/Site.php:673 +#: src/Module/Admin/Site.php:500 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:501 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:674 +#: src/Module/Admin/Site.php:501 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -6450,215 +5071,205 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:675 +#: src/Module/Admin/Site.php:502 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:675 +#: src/Module/Admin/Site.php:502 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 -msgid "Path to item cache" -msgstr "" - -#: src/Module/Admin/Site.php:676 -msgid "The item caches buffers generated bbcode and external images." -msgstr "" - -#: src/Module/Admin/Site.php:677 -msgid "Cache duration in seconds" -msgstr "" - -#: 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 "" - -#: src/Module/Admin/Site.php:678 +#: src/Module/Admin/Site.php:503 msgid "Maximum numbers of comments per post" msgstr "" -#: src/Module/Admin/Site.php:678 +#: src/Module/Admin/Site.php:503 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:504 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:679 +#: src/Module/Admin/Site.php:504 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:505 msgid "Temp path" msgstr "" -#: src/Module/Admin/Site.php:680 +#: src/Module/Admin/Site.php:505 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 -msgid "Disable picture proxy" -msgstr "" - -#: 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 "" - -#: src/Module/Admin/Site.php:682 +#: src/Module/Admin/Site.php:506 msgid "Only search in tags" msgstr "" -#: src/Module/Admin/Site.php:682 +#: src/Module/Admin/Site.php:506 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: src/Module/Admin/Site.php:684 -msgid "New base url" +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:684 +#: src/Module/Admin/Site.php:507 msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." +"On systems with users that heavily use contact circles the query can be very" +" expensive." msgstr "" -#: src/Module/Admin/Site.php:686 -msgid "RINO Encryption" -msgstr "" - -#: src/Module/Admin/Site.php:686 -msgid "Encryption layer between nodes." -msgstr "" - -#: src/Module/Admin/Site.php:686 src/Module/Admin/Site.php:694 -#: src/Module/Contact.php:554 src/Module/Settings/TwoFactor/Index.php:113 -msgid "Disabled" -msgstr "" - -#: src/Module/Admin/Site.php:686 -msgid "Enabled" -msgstr "" - -#: src/Module/Admin/Site.php:688 +#: src/Module/Admin/Site.php:509 msgid "Maximum number of parallel workers" msgstr "" -#: src/Module/Admin/Site.php:688 +#: src/Module/Admin/Site.php:509 #, 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:510 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:689 +#: src/Module/Admin/Site.php:510 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 +#: src/Module/Admin/Site.php:512 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:693 +#: src/Module/Admin/Site.php:512 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:513 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:694 +#: src/Module/Admin/Site.php:513 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:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Disabled" +msgstr "" + +#: src/Module/Admin/Site.php:513 msgid "all" msgstr "" -#: src/Module/Admin/Site.php:694 +#: src/Module/Admin/Site.php:513 msgid "tags" msgstr "" -#: src/Module/Admin/Site.php:695 +#: src/Module/Admin/Site.php:514 msgid "Server tags" msgstr "" -#: src/Module/Admin/Site.php:695 +#: src/Module/Admin/Site.php:514 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:696 +#: src/Module/Admin/Site.php:515 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:696 +#: src/Module/Admin/Site.php:515 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:697 +#: src/Module/Admin/Site.php:516 msgid "Allow user tags" msgstr "" -#: src/Module/Admin/Site.php:697 +#: src/Module/Admin/Site.php:516 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:519 msgid "Start Relocation" msgstr "" -#: src/Module/Admin/Summary.php:53 +#: src/Module/Admin/Storage.php:46 +#, php-format +msgid "Storage backend, %s is invalid." +msgstr "" + +#: src/Module/Admin/Storage.php:73 +#, php-format +msgid "Storage backend %s error: %s" +msgstr "" + +#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +msgid "Invalid storage backend setting value." +msgstr "" + +#: src/Module/Admin/Storage.php:139 +msgid "Current Storage Backend" +msgstr "" + +#: src/Module/Admin/Storage.php:140 +msgid "Storage Configuration" +msgstr "" + +#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +msgid "Storage" +msgstr "" + +#: src/Module/Admin/Storage.php:143 +msgid "Save & Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:144 +msgid "Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:145 +msgid "Save & Reload" +msgstr "" + +#: src/Module/Admin/Storage.php:146 +msgid "This backend doesn't have custom settings" +msgstr "" + +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "" + +#: src/Module/Admin/Storage.php:150 +msgid "Database (legacy)" +msgstr "" + +#: src/Module/Admin/Summary.php:55 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:57 +#: src/Module/Admin/Summary.php:59 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -6669,7 +5280,7 @@ msgid "" " an automatic conversion.
    " msgstr "" -#: src/Module/Admin/Summary.php:62 +#: src/Module/Admin/Summary.php:64 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -6680,48 +5291,54 @@ msgid "" " installation for an automatic conversion.
    " msgstr "" -#: src/Module/Admin/Summary.php:71 +#: src/Module/Admin/Summary.php:74 #, 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 (or -1 for autosizing). See here for more " -"information.
    " +" to %d. See here for more information.
    " msgstr "" -#: src/Module/Admin/Summary.php:80 +#: src/Module/Admin/Summary.php:85 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "" -#: src/Module/Admin/Summary.php:89 +#: src/Module/Admin/Summary.php:94 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "" -#: src/Module/Admin/Summary.php:93 +#: src/Module/Admin/Summary.php:98 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "" -#: src/Module/Admin/Summary.php:98 +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "" + +#: src/Module/Admin/Summary.php:107 msgid "The worker was never executed. Please check your database structure!" msgstr "" -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:109 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "" -#: src/Module/Admin/Summary.php:105 +#: src/Module/Admin/Summary.php:114 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6730,7 +5347,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:118 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6739,7 +5356,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:115 +#: src/Module/Admin/Summary.php:124 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -6747,87 +5364,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:133 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:147 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:163 +#: src/Module/Admin/Summary.php:148 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "" -#: src/Module/Admin/Summary.php:171 +#: src/Module/Admin/Summary.php:156 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "" -#: src/Module/Admin/Summary.php:179 +#: src/Module/Admin/Summary.php:164 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "" -#: src/Module/Admin/Summary.php:186 -msgid "Normal Account" -msgstr "Нормално профил" - -#: src/Module/Admin/Summary.php:187 -msgid "Automatic Follower Account" -msgstr "" - -#: src/Module/Admin/Summary.php:188 -msgid "Public Forum Account" -msgstr "" - -#: src/Module/Admin/Summary.php:189 -msgid "Automatic Friend Account" -msgstr "Автоматично приятел акаунт" - -#: src/Module/Admin/Summary.php:190 -msgid "Blog Account" -msgstr "" - -#: src/Module/Admin/Summary.php:191 -msgid "Private Forum Account" -msgstr "" - -#: src/Module/Admin/Summary.php:211 +#: src/Module/Admin/Summary.php:175 msgid "Message queues" msgstr "Съобщение опашки" -#: src/Module/Admin/Summary.php:217 +#: src/Module/Admin/Summary.php:181 msgid "Server Settings" msgstr "" -#: src/Module/Admin/Summary.php:231 src/Repository/ProfileField.php:285 -msgid "Summary" -msgstr "Резюме" - -#: src/Module/Admin/Summary.php:233 -msgid "Registered users" -msgstr "Регистрираните потребители" - -#: src/Module/Admin/Summary.php:235 -msgid "Pending registrations" -msgstr "Предстоящи регистрации" - -#: src/Module/Admin/Summary.php:236 +#: src/Module/Admin/Summary.php:199 msgid "Version" msgstr "Версия " -#: src/Module/Admin/Summary.php:240 +#: src/Module/Admin/Summary.php:203 msgid "Active addons" msgstr "" @@ -6855,7 +5425,7 @@ msgstr "Screenshot" msgid "Themes" msgstr "Теми" -#: src/Module/Admin/Themes/Embed.php:65 +#: src/Module/Admin/Themes/Embed.php:80 msgid "Unknown theme." msgstr "" @@ -6867,279 +5437,119 @@ msgstr "" msgid "Reload active themes" msgstr "" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:118 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:119 msgid "[Experimental]" msgstr "(Експериментален)" -#: src/Module/Admin/Themes/Index.php:121 +#: src/Module/Admin/Themes/Index.php:120 msgid "[Unsupported]" msgstr "Неподдържан]" -#: src/Module/Admin/Tos.php:60 +#: src/Module/Admin/Tos.php:79 msgid "Display Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:60 +#: src/Module/Admin/Tos.php:79 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 "" -#: src/Module/Admin/Tos.php:61 +#: src/Module/Admin/Tos.php:80 msgid "Display Privacy Statement" msgstr "" -#: src/Module/Admin/Tos.php:61 +#: src/Module/Admin/Tos.php:80 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." +"according e.g. to EU-GDPR." msgstr "" -#: src/Module/Admin/Tos.php:62 +#: src/Module/Admin/Tos.php:81 msgid "Privacy Statement Preview" msgstr "" -#: src/Module/Admin/Tos.php:64 +#: src/Module/Admin/Tos.php:83 msgid "The Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:64 +#: src/Module/Admin/Tos.php:83 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "" -#: src/Module/Admin/Users/Active.php:45 src/Module/Admin/Users/Index.php:45 +#: src/Module/Admin/Tos.php:84 +msgid "The rules" +msgstr "" + +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." +msgstr "" + +#: src/Module/Api/ApiResponse.php:279 #, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "" -msgstr[1] "" - -#: 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" +msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Admin/Users/Active.php:57 src/Module/Admin/Users/Blocked.php:58 -#: src/Module/Admin/Users/Index.php:64 +#: src/Module/Api/Mastodon/Apps.php:73 +msgid "Missing parameters" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:51 +msgid "Only starting posts can be bookmarked" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +msgid "Only starting posts can be muted" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Reblog.php:56 #, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "" -msgstr[1] "" +msgid "Posts from %s can't be shared" +msgstr "" -#: src/Module/Admin/Users/Active.php:86 src/Module/Admin/Users/Blocked.php:87 -#: src/Module/Admin/Users/Index.php:93 +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +msgid "Only starting posts can be unbookmarked" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +msgid "Only starting posts can be unmuted" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:62 #, php-format -msgid "User \"%s\" deleted" +msgid "Posts from %s can't be unshared" msgstr "" -#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103 -#, php-format -msgid "User \"%s\" blocked" -msgstr "" - -#: 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 "Дата на регистрация" - -#: 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 "Последно влизане" - -#: 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 "" - -#: src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:130 src/Module/Admin/Users/Index.php:142 -msgid "Type" -msgstr "" - -#: src/Module/Admin/Users/Active.php:137 -msgid "Active Accounts" -msgstr "" - -#: 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 "" - -#: 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 "Администратор на сайта" - -#: 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 "" - -#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161 -msgid "Create a new user" -msgstr "" - -#: 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 "Избрани потребители ще бъде изтрита! \\ N \\ nEverything тези потребители са публикувани на този сайт ще бъде изтрит завинаги! \\ N \\ nСигурни ли сте?" - -#: 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} ще бъде изтрит! \\ n \\ nEverything този потребител публикувани на този сайт ще бъде изтрит завинаги! \\ n \\ nСигурни ли сте?" - -#: 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] "" -msgstr[1] "" - -#: src/Module/Admin/Users/Blocked.php:96 src/Module/Admin/Users/Index.php:109 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "" - -#: src/Module/Admin/Users/Blocked.php:138 -msgid "Blocked Users" -msgstr "" - -#: src/Module/Admin/Users/Create.php:62 -msgid "New User" -msgstr "" - -#: src/Module/Admin/Users/Create.php:63 -msgid "Add User" -msgstr "" - -#: src/Module/Admin/Users/Create.php:71 -msgid "Name of the new user." -msgstr "" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname" -msgstr "" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname of the new user." -msgstr "" - -#: src/Module/Admin/Users/Create.php:73 -msgid "Email address of the new user." -msgstr "" - -#: src/Module/Admin/Users/Deleted.php:86 -msgid "Users awaiting permanent deletion" -msgstr "" - -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:162 -msgid "Permanent deletion" -msgstr "" - -#: src/Module/Admin/Users/Index.php:150 src/Module/Admin/Users/Index.php:160 -#: src/Module/BaseAdmin.php:91 -msgid "Users" -msgstr "Потребители" - -#: src/Module/Admin/Users/Index.php:152 -msgid "User waiting for permanent deletion" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:48 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users/Pending.php:55 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users/Pending.php:81 -msgid "Account approved." -msgstr "Сметка одобрен." - -#: src/Module/Admin/Users/Pending.php:87 -msgid "Registration revoked" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:102 -msgid "User registrations awaiting review" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:104 -msgid "Request date" -msgstr "Искане дата" - -#: src/Module/Admin/Users/Pending.php:105 -msgid "No registrations." -msgstr "Няма регистрации." - -#: src/Module/Admin/Users/Pending.php:106 -msgid "Note from the user" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:108 -msgid "Deny" -msgstr "Отказ" - -#: src/Module/Api/Mastodon/Unimplemented.php:42 -#, php-format -msgid "API endpoint \"%s\" is not implemented" -msgstr "" - -#: src/Module/Api/Mastodon/Unimplemented.php:43 -msgid "" -"The API endpoint is currently not implemented but might be in the future." -msgstr "" - -#: src/Module/Api/Twitter/ContactEndpoint.php:65 src/Module/Contact.php:400 +#: src/Module/Api/Twitter/ContactEndpoint.php:66 msgid "Contact not found" msgstr "" -#: src/Module/Api/Twitter/ContactEndpoint.php:135 -msgid "Profile not found" -msgstr "" - -#: src/Module/Apps.php:47 +#: src/Module/Apps.php:62 msgid "No installed applications." msgstr "Няма инсталираните приложения." -#: src/Module/Apps.php:52 +#: src/Module/Apps.php:67 msgid "Applications" msgstr "Приложения" -#: src/Module/Attach.php:50 src/Module/Attach.php:62 +#: src/Module/Attach.php:49 src/Module/Attach.php:61 msgid "Item was not found." msgstr "Елемент не е намерен." +#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +msgid "Please login to continue." +msgstr "Моля, влезте, за да продължите." + #: src/Module/BaseAdmin.php:63 msgid "You don't have access to administration pages." msgstr "" @@ -7150,15 +5560,15 @@ msgid "" " as the main account." msgstr "" -#: src/Module/BaseAdmin.php:86 +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 msgid "Overview" msgstr "" -#: src/Module/BaseAdmin.php:89 +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 msgid "Configuration" msgstr "" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:65 +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 msgid "Additional features" msgstr "Допълнителни възможности" @@ -7178,701 +5588,1155 @@ msgstr "" msgid "Inspect worker Queue" msgstr "" -#: src/Module/BaseAdmin.php:102 -msgid "Tools" -msgstr "" - -#: src/Module/BaseAdmin.php:103 -msgid "Contact Blocklist" -msgstr "" - -#: src/Module/BaseAdmin.php:104 -msgid "Server Blocklist" -msgstr "" - -#: src/Module/BaseAdmin.php:111 +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 msgid "Diagnostics" msgstr "" -#: src/Module/BaseAdmin.php:112 +#: src/Module/BaseAdmin.php:107 msgid "PHP Info" msgstr "" -#: src/Module/BaseAdmin.php:113 +#: src/Module/BaseAdmin.php:108 msgid "probe address" msgstr "" -#: src/Module/BaseAdmin.php:114 +#: src/Module/BaseAdmin.php:109 msgid "check webfinger" msgstr "" -#: src/Module/BaseAdmin.php:115 -msgid "Item Source" -msgstr "" - -#: src/Module/BaseAdmin.php:116 +#: src/Module/BaseAdmin.php:110 msgid "Babel" msgstr "" -#: src/Module/BaseAdmin.php:117 +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 msgid "ActivityPub Conversion" msgstr "" -#: src/Module/BaseAdmin.php:126 +#: src/Module/BaseAdmin.php:120 msgid "Addon Features" msgstr "" -#: src/Module/BaseAdmin.php:127 +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 msgid "User registrations waiting for confirmation" msgstr "Потребителски регистрации, чакащи за потвърждение" -#: src/Module/BaseProfile.php:55 src/Module/Contact.php:939 +#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467 +#: src/Module/BaseApi.php:483 +msgid "Too Many Requests" +msgstr "" + +#: src/Module/BaseApi.php:452 +#, 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пост е достигнат. Постът беше отхвърлен." +msgstr[1] "Дневният лимит от %d поста е достигнат. Постът беше отхвърлен." + +#: src/Module/BaseApi.php:468 +#, 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 пост е достигнат. Постът беше отказан." +msgstr[1] "Седмичният лимит от %d поста е достигнат. Постът беше отказан." + +#: src/Module/BaseApi.php:484 +#, php-format +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Monthly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "" + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "" + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Потребители" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 msgid "Profile Details" msgstr "Детайли от профила" -#: src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "" + +#: src/Module/BaseProfile.php:111 msgid "Only You Can See This" msgstr "Можете да видите това" -#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +msgid "Scheduled Posts" +msgstr "" + +#: src/Module/BaseProfile.php:119 +msgid "Posts that are scheduled for publishing" +msgstr "" + +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 msgid "Tips for New Members" msgstr "Съвети за нови членове" -#: src/Module/BaseSearch.php:69 +#: src/Module/BaseSearch.php:71 #, php-format msgid "People Search - %s" msgstr "" -#: src/Module/BaseSearch.php:79 +#: src/Module/BaseSearch.php:75 #, php-format -msgid "Forum Search - %s" +msgid "Group Search - %s" msgstr "" -#: src/Module/BaseSettings.php:43 +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "Няма съответствия" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseSettings.php:78 msgid "Account" msgstr "профил" -#: src/Module/BaseSettings.php:50 src/Module/Security/TwoFactor/Verify.php:80 -#: src/Module/Settings/TwoFactor/Index.php:105 +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 msgid "Two-factor authentication" msgstr "" -#: src/Module/BaseSettings.php:73 +#: src/Module/BaseSettings.php:118 msgid "Display" msgstr "" -#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:171 +#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "" + +#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172 msgid "Manage Accounts" msgstr "" -#: src/Module/BaseSettings.php:101 +#: src/Module/BaseSettings.php:146 msgid "Connected apps" msgstr "Свързани приложения" -#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:67 +#: src/Module/BaseSettings.php:153 +msgid "Remote servers" +msgstr "" + +#: src/Module/BaseSettings.php:160 src/Module/Settings/UserExport.php:98 msgid "Export personal data" msgstr "Експортиране на личните данни" -#: src/Module/BaseSettings.php:115 +#: src/Module/BaseSettings.php:167 msgid "Remove account" msgstr "Премахване сметка" -#: src/Module/Bookmarklet.php:56 +#: src/Module/Bookmarklet.php:54 msgid "This page is missing a url parameter." msgstr "" -#: src/Module/Bookmarklet.php:78 +#: src/Module/Bookmarklet.php:66 msgid "The post was created" msgstr "" -#: src/Module/Contact/Advanced.php:92 -msgid "Contact update failed." -msgstr "Свържете се актуализира провали." - -#: 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 " ВНИМАНИЕ: Това е силно напреднали и ако въведете невярна информация вашите комуникации с този контакт може да спре да работи." - -#: 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 "Моля, използвайте Назад на вашия браузър бутон сега, ако не сте сигурни какво да правят на тази страница." - -#: src/Module/Contact/Advanced.php:130 -msgid "Return to contact editor" -msgstr "Назад, за да се свържете с редактор" - -#: src/Module/Contact/Advanced.php:135 -msgid "Account Nickname" -msgstr "Сметка Псевдоним" - -#: src/Module/Contact/Advanced.php:136 -msgid "@Tagname - overrides Name/Nickname" -msgstr "Име / псевдоним на @ Tagname - Заменя" - -#: src/Module/Contact/Advanced.php:137 -msgid "Account URL" -msgstr "Сметка URL" - -#: src/Module/Contact/Advanced.php:138 -msgid "Account URL Alias" +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" msgstr "" -#: src/Module/Contact/Advanced.php:139 -msgid "Friend Request URL" -msgstr "URL приятел заявка" +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "" -#: src/Module/Contact/Advanced.php:140 -msgid "Friend Confirm URL" -msgstr "Приятел Потвърди URL" +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "" -#: src/Module/Contact/Advanced.php:141 -msgid "Notification Endpoint URL" -msgstr "URL адрес на Уведомление Endpoint" +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "" -#: src/Module/Contact/Advanced.php:142 -msgid "Poll/Feed URL" -msgstr "Анкета / URL Feed" +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "" -#: src/Module/Contact/Advanced.php:143 -msgid "New photo from this URL" -msgstr "Нова снимка от този адрес" +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "" -#: src/Module/Contact/Contacts.php:31 src/Module/Conversation/Network.php:175 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "Събитие Започва:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Задължително" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "Завършете дата / час не е известен или не е приложимо" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "Събитие играчи:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Споделете това събитие" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Събития" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Създаване на нов събитие" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:248 +msgid "list" +msgstr "" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "" + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "" + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "" + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "" + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "Контактът не е намерен." + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 msgid "Invalid contact." msgstr "Невалиден свържете." -#: src/Module/Contact/Contacts.php:54 -msgid "No known contacts." +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." msgstr "" -#: src/Module/Contact/Contacts.php:68 src/Module/Profile/Common.php:99 -msgid "No common contacts." +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Contact/Contacts.php:80 src/Module/Profile/Contacts.php:97 -#, php-format -msgid "Follower (%s)" -msgid_plural "Followers (%s)" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Contact/Contacts.php:84 src/Module/Profile/Contacts.php:100 -#, php-format -msgid "Following (%s)" -msgid_plural "Following (%s)" -msgstr[0] "" -msgstr[1] "" - -#: 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] "" -msgstr[1] "" - -#: src/Module/Contact/Contacts.php:90 src/Module/Profile/Contacts.php:105 -#, php-format -msgid "These contacts both follow and are followed by %s." +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." msgstr "" -#: 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] "" -msgstr[1] "" - -#: 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)." +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Contact/Contacts.php:104 src/Module/Profile/Contacts.php:111 -#, php-format -msgid "Contact (%s)" -msgid_plural "Contacts (%s)" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Contact/Poke.php:113 -msgid "Error while sending poke, please retry." +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Contact/Poke.php:126 src/Module/Search/Acl.php:56 -msgid "You must be logged in to use this module." +#: src/Module/Circle.php:131 +msgid "Bad request." msgstr "" -#: src/Module/Contact/Poke.php:149 -msgid "Poke/Prod" +#: src/Module/Circle.php:170 +msgid "Save Circle" msgstr "" -#: src/Module/Contact/Poke.php:150 -msgid "poke, prod or do other things to somebody" +#: src/Module/Circle.php:171 +msgid "Filter" msgstr "" -#: src/Module/Contact/Poke.php:152 -msgid "Choose what you wish to do to recipient" +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Contact/Poke.php:153 -msgid "Make this post private" +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." msgstr "" -#: src/Module/Contact.php:94 +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "Членове" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "Щракнете върху контакт, за да добавите или премахнете." + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "" + +#: src/Module/Contact.php:97 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "" msgstr[1] "" -#: src/Module/Contact.php:121 -msgid "Could not access contact record." -msgstr "Не може да бъде достъп до запис за контакт." +#: src/Module/Contact.php:348 +msgid "Show all contacts" +msgstr "Покажи на всички контакти" -#: src/Module/Contact.php:419 -msgid "Contact has been blocked" -msgstr "За контакти е бил блокиран" +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "" -#: src/Module/Contact.php:419 +#: src/Module/Contact.php:356 +msgid "Only show pending contacts" +msgstr "" + +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Блокиран" + +#: src/Module/Contact.php:364 +msgid "Only show blocked contacts" +msgstr "Покажи само Блокираните контакти" + +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:368 +msgid "Ignored" +msgstr "Игнорирани" + +#: src/Module/Contact.php:372 +msgid "Only show ignored contacts" +msgstr "Покажи само игнорирани контакти" + +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 +msgid "Archived" +msgstr "Архивиран:" + +#: src/Module/Contact.php:388 +msgid "Only show archived contacts" +msgstr "Покажи само архивирани контакти" + +#: src/Module/Contact.php:393 src/Module/Contact.php:438 +msgid "Hidden" +msgstr "Скрит" + +#: src/Module/Contact.php:396 +msgid "Only show hidden contacts" +msgstr "Само показва скрити контакти" + +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "" + +#: src/Module/Contact.php:459 +msgid "Search your contacts" +msgstr "Търсене на вашите контакти" + +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 +#, php-format +msgid "Results for: %s" +msgstr "" + +#: src/Module/Contact.php:467 +msgid "Update" +msgstr "Актуализиране" + +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Разблокиране" + +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 +msgid "Unignore" +msgstr "Извади от пренебрегнатите" + +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "" + +#: src/Module/Contact.php:472 +msgid "Batch Actions" +msgstr "" + +#: src/Module/Contact.php:515 +msgid "Conversations started by this contact" +msgstr "" + +#: src/Module/Contact.php:520 +msgid "Posts and Comments" +msgstr "" + +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "" + +#: src/Module/Contact.php:531 +msgid "Posts containing media objects" +msgstr "" + +#: src/Module/Contact.php:539 +msgid "View all known contacts" +msgstr "" + +#: src/Module/Contact.php:550 +msgid "Advanced Contact Settings" +msgstr "Разширени настройки за контакт" + +#: src/Module/Contact.php:586 +msgid "Mutual Friendship" +msgstr "Взаимното приятелство" + +#: src/Module/Contact.php:590 +msgid "is a fan of yours" +msgstr "е фенка" + +#: src/Module/Contact.php:594 +msgid "you are a fan of" +msgstr "Вие сте фен на" + +#: src/Module/Contact.php:612 +msgid "Pending outgoing contact request" +msgstr "" + +#: src/Module/Contact.php:614 +msgid "Pending incoming contact request" +msgstr "" + +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Посетете %s Профилът на [ %s ]" + +#: src/Module/Contact/Advanced.php:99 +msgid "Contact update failed." +msgstr "Свържете се актуализира провали." + +#: src/Module/Contact/Advanced.php:130 +msgid "Return to contact editor" +msgstr "Назад, за да се свържете с редактор" + +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Име" + +#: src/Module/Contact/Advanced.php:135 +msgid "Account Nickname" +msgstr "Сметка Псевдоним" + +#: src/Module/Contact/Advanced.php:136 +msgid "Account URL" +msgstr "Сметка URL" + +#: src/Module/Contact/Advanced.php:137 +msgid "Poll/Feed URL" +msgstr "Анкета / URL Feed" + +#: src/Module/Contact/Advanced.php:138 +msgid "New photo from this URL" +msgstr "Нова снимка от този адрес" + +#: src/Module/Contact/Contacts.php:89 +msgid "No known contacts." +msgstr "" + +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +msgid "No common contacts." +msgstr "" + +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#, php-format +msgid "Follower (%s)" +msgid_plural "Followers (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#, php-format +msgid "Following (%s)" +msgid_plural "Following (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#, php-format +msgid "Mutual friend (%s)" +msgid_plural "Mutual friends (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#, php-format +msgid "These contacts both follow and are followed by %s." +msgstr "" + +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#, php-format +msgid "Common contact (%s)" +msgid_plural "Common contacts (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#, php-format +msgid "" +"Both %s and yourself have publicly interacted with these " +"contacts (follow, comment or likes on public posts)." +msgstr "" + +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#, php-format +msgid "Contact (%s)" +msgid_plural "Contacts (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:165 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Отказан достъп." + +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Изпращане на заявката" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "" + +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "" + +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Моля отговорете на следните:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "Адрес на вашата самоличност:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Маркери:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Добавяне на лична бележка:" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" +msgstr "" + +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "" + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "" + +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "" + +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "Профил мач" + +#: src/Module/Contact/Profile.php:140 +msgid "Failed to update contact record." +msgstr "Неуспех да се актуализира рекорд за контакт." + +#: src/Module/Contact/Profile.php:190 msgid "Contact has been unblocked" msgstr "Контакт са отблокирани" -#: src/Module/Contact.php:429 -msgid "Contact has been ignored" -msgstr "Лицето е било игнорирано" +#: src/Module/Contact/Profile.php:194 +msgid "Contact has been blocked" +msgstr "За контакти е бил блокиран" -#: src/Module/Contact.php:429 +#: src/Module/Contact/Profile.php:206 msgid "Contact has been unignored" msgstr "За контакти е бил unignored" -#: src/Module/Contact.php:439 -msgid "Contact has been archived" -msgstr "Контакт бяха архивирани" +#: src/Module/Contact/Profile.php:210 +msgid "Contact has been ignored" +msgstr "Лицето е било игнорирано" -#: src/Module/Contact.php:439 -msgid "Contact has been unarchived" -msgstr "За контакти е бил разархивира" - -#: src/Module/Contact.php:452 -msgid "Drop contact" +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" msgstr "" -#: src/Module/Contact.php:455 src/Module/Contact.php:879 -msgid "Do you really want to delete this contact?" -msgstr "Наистина ли искате да изтриете този контакт?" +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "" -#: src/Module/Contact.php:468 -msgid "Contact has been removed." -msgstr "Контакт е била отстранена." - -#: src/Module/Contact.php:496 +#: src/Module/Contact/Profile.php:254 #, php-format msgid "You are mutual friends with %s" msgstr "Вие сте общи приятели с %s" -#: src/Module/Contact.php:500 +#: src/Module/Contact/Profile.php:255 #, php-format msgid "You are sharing with %s" msgstr "Вие споделяте с %s" -#: src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:256 #, php-format msgid "%s is sharing with you" msgstr "%s се споделя с вас" -#: src/Module/Contact.php:528 +#: src/Module/Contact/Profile.php:272 msgid "Private communications are not available for this contact." msgstr "Частни съобщения не са на разположение за този контакт." -#: src/Module/Contact.php:530 +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "" + +#: src/Module/Contact/Profile.php:285 msgid "Never" msgstr "Никога!" -#: src/Module/Contact.php:533 +#: src/Module/Contact/Profile.php:288 msgid "(Update was not successful)" msgstr "(Актуализация не е била успешна)" -#: src/Module/Contact.php:533 +#: src/Module/Contact/Profile.php:288 msgid "(Update was successful)" msgstr "(Update е била успешна)" -#: src/Module/Contact.php:535 src/Module/Contact.php:1136 +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 msgid "Suggest friends" msgstr "Предложете приятели" -#: src/Module/Contact.php:539 +#: src/Module/Contact/Profile.php:294 #, php-format msgid "Network type: %s" msgstr "Тип мрежа: %s" -#: src/Module/Contact.php:544 +#: src/Module/Contact/Profile.php:299 msgid "Communications lost with this contact!" msgstr "Communications загубиха с този контакт!" -#: src/Module/Contact.php:550 +#: src/Module/Contact/Profile.php:305 msgid "Fetch further information for feeds" msgstr "" -#: src/Module/Contact.php:552 +#: src/Module/Contact/Profile.php:307 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 "" -#: src/Module/Contact.php:555 +#: src/Module/Contact/Profile.php:310 msgid "Fetch information" msgstr "" -#: src/Module/Contact.php:556 +#: src/Module/Contact/Profile.php:311 msgid "Fetch keywords" msgstr "" -#: src/Module/Contact.php:557 +#: src/Module/Contact/Profile.php:312 msgid "Fetch information and keywords" msgstr "" -#: src/Module/Contact.php:569 src/Module/Contact.php:573 -#: src/Module/Contact.php:576 src/Module/Contact.php:580 +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 msgid "No mirroring" msgstr "" -#: src/Module/Contact.php:570 -msgid "Mirror as forwarded posting" -msgstr "" - -#: src/Module/Contact.php:571 src/Module/Contact.php:577 -#: src/Module/Contact.php:581 +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 msgid "Mirror as my own posting" msgstr "" -#: src/Module/Contact.php:574 src/Module/Contact.php:578 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 msgid "Native reshare" msgstr "" -#: src/Module/Contact.php:593 +#: src/Module/Contact/Profile.php:353 msgid "Contact Information / Notes" msgstr "Информация за контакти / Забележки" -#: src/Module/Contact.php:594 +#: src/Module/Contact/Profile.php:354 msgid "Contact Settings" msgstr "" -#: src/Module/Contact.php:602 +#: src/Module/Contact/Profile.php:362 msgid "Contact" msgstr "" -#: src/Module/Contact.php:606 +#: src/Module/Contact/Profile.php:366 msgid "Their personal note" msgstr "" -#: src/Module/Contact.php:608 +#: src/Module/Contact/Profile.php:368 msgid "Edit contact notes" msgstr "Редактиране на контакт с бележка" -#: src/Module/Contact.php:611 src/Module/Contact.php:1104 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Посетете %s Профилът на [ %s ]" - -#: src/Module/Contact.php:612 +#: src/Module/Contact/Profile.php:372 msgid "Block/Unblock contact" msgstr "Блокиране / Деблокиране на контакт" -#: src/Module/Contact.php:613 +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 msgid "Ignore contact" msgstr "Игнорирай се свържете с" -#: src/Module/Contact.php:614 +#: src/Module/Contact/Profile.php:374 msgid "View conversations" msgstr "Вижте разговори" -#: src/Module/Contact.php:619 +#: src/Module/Contact/Profile.php:379 msgid "Last update:" msgstr "Последна актуализация:" -#: src/Module/Contact.php:621 +#: src/Module/Contact/Profile.php:381 msgid "Update public posts" msgstr "Актуализиране на държавни длъжности" -#: src/Module/Contact.php:623 src/Module/Contact.php:1146 +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 msgid "Update now" msgstr "Актуализирай сега" -#: src/Module/Contact.php:626 src/Module/Contact.php:884 -#: src/Module/Contact.php:1173 -msgid "Unignore" -msgstr "Извади от пренебрегнатите" - -#: src/Module/Contact.php:630 -msgid "Currently blocked" -msgstr "Които понастоящем са блокирани" - -#: src/Module/Contact.php:631 -msgid "Currently ignored" -msgstr "В момента игнорирани" - -#: src/Module/Contact.php:632 -msgid "Currently archived" -msgstr "В момента архивират" - -#: src/Module/Contact.php:633 +#: src/Module/Contact/Profile.php:385 msgid "Awaiting connection acknowledge" msgstr "" -#: src/Module/Contact.php:634 src/Module/Notifications/Introductions.php:177 +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "Които понастоящем са блокирани" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "В момента игнорирани" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "В момента архивират" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "" + +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 msgid "Hide this contact from others" msgstr "Скриване на този контакт от другите" -#: src/Module/Contact.php:634 +#: src/Module/Contact/Profile.php:394 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Отговори / обича да си публични длъжности май все още да се вижда" -#: src/Module/Contact.php:635 +#: src/Module/Contact/Profile.php:395 msgid "Notification for new posts" msgstr "" -#: src/Module/Contact.php:635 +#: src/Module/Contact/Profile.php:395 msgid "Send a notification of every new post of this contact" msgstr "" -#: src/Module/Contact.php:637 +#: src/Module/Contact/Profile.php:397 msgid "Keyword Deny List" msgstr "" -#: src/Module/Contact.php:637 +#: src/Module/Contact/Profile.php:397 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "" -#: src/Module/Contact.php:653 src/Module/Settings/TwoFactor/Index.php:127 +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "Actions" msgstr "" -#: src/Module/Contact.php:660 +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "Състояние:" + +#: src/Module/Contact/Profile.php:423 msgid "Mirror postings from this contact" msgstr "" -#: src/Module/Contact.php:662 +#: src/Module/Contact/Profile.php:425 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "" -#: src/Module/Contact.php:794 -msgid "Show all contacts" -msgstr "Покажи на всички контакти" - -#: src/Module/Contact.php:802 -msgid "Only show pending contacts" +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" msgstr "" -#: src/Module/Contact.php:810 -msgid "Only show blocked contacts" -msgstr "Покажи само Блокираните контакти" - -#: src/Module/Contact.php:815 src/Module/Contact.php:862 -msgid "Ignored" -msgstr "Игнорирани" - -#: src/Module/Contact.php:818 -msgid "Only show ignored contacts" -msgstr "Покажи само игнорирани контакти" - -#: src/Module/Contact.php:823 src/Module/Contact.php:863 -msgid "Archived" -msgstr "Архивиран:" - -#: src/Module/Contact.php:826 -msgid "Only show archived contacts" -msgstr "Покажи само архивирани контакти" - -#: src/Module/Contact.php:831 src/Module/Contact.php:861 -msgid "Hidden" -msgstr "Скрит" - -#: src/Module/Contact.php:834 -msgid "Only show hidden contacts" -msgstr "Само показва скрити контакти" - -#: src/Module/Contact.php:842 -msgid "Organize your contact groups" +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" msgstr "" -#: src/Module/Contact.php:874 -msgid "Search your contacts" -msgstr "Търсене на вашите контакти" - -#: src/Module/Contact.php:875 src/Module/Search/Index.php:193 -#, php-format -msgid "Results for: %s" +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." msgstr "" -#: src/Module/Contact.php:885 src/Module/Contact.php:1182 -msgid "Archive" -msgstr "Архив" - -#: src/Module/Contact.php:885 src/Module/Contact.php:1182 -msgid "Unarchive" -msgstr "Разархивирате" - -#: src/Module/Contact.php:888 -msgid "Batch Actions" +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" msgstr "" -#: src/Module/Contact.php:923 -msgid "Conversations started by this contact" +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." msgstr "" -#: src/Module/Contact.php:928 -msgid "Posts and Comments" +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" msgstr "" -#: src/Module/Contact.php:946 -msgid "View all known contacts" +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" msgstr "" -#: src/Module/Contact.php:956 -msgid "Advanced Contact Settings" -msgstr "Разширени настройки за контакт" - -#: src/Module/Contact.php:1063 -msgid "Mutual Friendship" -msgstr "Взаимното приятелство" - -#: src/Module/Contact.php:1067 -msgid "is a fan of yours" -msgstr "е фенка" - -#: src/Module/Contact.php:1071 -msgid "you are a fan of" -msgstr "Вие сте фен на" - -#: src/Module/Contact.php:1089 -msgid "Pending outgoing contact request" +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" msgstr "" -#: src/Module/Contact.php:1091 -msgid "Pending incoming contact request" +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." msgstr "" -#: src/Module/Contact.php:1156 +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "" + +#: src/Module/Contact/Profile.php:502 msgid "Refetch contact data" msgstr "" -#: src/Module/Contact.php:1167 +#: src/Module/Contact/Profile.php:513 msgid "Toggle Blocked status" msgstr "Превключване Блокирани статус" -#: src/Module/Contact.php:1175 +#: src/Module/Contact/Profile.php:521 msgid "Toggle Ignored status" msgstr "Превключване игнорирани статус" -#: src/Module/Contact.php:1184 -msgid "Toggle Archive status" -msgstr "Превключване статус Архив" - -#: src/Module/Contact.php:1192 -msgid "Delete contact" -msgstr "Изтриване на контакта" - -#: src/Module/Conversation/Community.php:69 -msgid "Local Community" +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" msgstr "" -#: src/Module/Conversation/Community.php:72 -msgid "Posts from local users on this server" +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 +msgid "Revoke Follow" msgstr "" -#: src/Module/Conversation/Community.php:80 -msgid "Global Community" +#: src/Module/Contact/Profile.php:538 +msgid "Revoke the follow from this contact" msgstr "" -#: src/Module/Conversation/Community.php:83 -msgid "Posts from users of the whole federated network" +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." msgstr "" -#: src/Module/Conversation/Community.php:116 -msgid "Own Contacts" +#: src/Module/Contact/Revoke.php:63 +msgid "Unknown contact." msgstr "" -#: src/Module/Conversation/Community.php:120 -msgid "Include" +#: src/Module/Contact/Revoke.php:77 +msgid "Contact is being deleted." msgstr "" -#: src/Module/Conversation/Community.php:121 -msgid "Hide" +#: src/Module/Contact/Revoke.php:91 +msgid "Follow was successfully revoked." msgstr "" -#: src/Module/Conversation/Community.php:149 src/Module/Search/Index.php:140 -#: src/Module/Search/Index.php:180 +#: src/Module/Contact/Revoke.php:107 +msgid "" +"Do you really want to revoke this contact's follow? This cannot be undone " +"and they will have to manually follow you back again." +msgstr "" + +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "Yes" +msgstr "Yes" + +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Няма предложения. Ако това е нов сайт, моля опитайте отново в рамките на 24 часа." + +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "" + +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "" + +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "" + +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "" + +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "" + +#: src/Module/Conversation/Channel.php:121 +#: src/Module/Conversation/Community.php:125 src/Module/Search/Index.php:152 +#: src/Module/Search/Index.php:194 msgid "No results." msgstr "Няма резултати." -#: src/Module/Conversation/Community.php:174 +#: src/Module/Conversation/Channel.php:159 +msgid "Channel not available." +msgstr "" + +#: src/Module/Conversation/Community.php:91 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "" -#: src/Module/Conversation/Community.php:212 +#: src/Module/Conversation/Community.php:179 msgid "Community option not available." msgstr "" -#: src/Module/Conversation/Community.php:228 +#: src/Module/Conversation/Community.php:195 msgid "Not available." msgstr "Няма налични" -#: src/Module/Conversation/Network.php:161 -msgid "No such group" -msgstr "Няма такава група" +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "" -#: src/Module/Conversation/Network.php:165 +#: src/Module/Conversation/Network.php:222 #, php-format -msgid "Group: %s" +msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:241 -msgid "Latest Activity" +#: src/Module/Conversation/Network.php:317 +msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Network.php:244 -msgid "Sort by latest activity" +#: src/Module/Conversation/Timeline.php:158 +msgid "Own Contacts" msgstr "" -#: src/Module/Conversation/Network.php:249 -msgid "Latest Posts" +#: src/Module/Conversation/Timeline.php:162 +msgid "Include" msgstr "" -#: src/Module/Conversation/Network.php:252 -msgid "Sort by post received date" +#: src/Module/Conversation/Timeline.php:163 +msgid "Hide" msgstr "" -#: src/Module/Conversation/Network.php:257 -#: src/Module/Settings/Profile/Index.php:242 -msgid "Personal" -msgstr "Лично" - -#: src/Module/Conversation/Network.php:260 -msgid "Posts that mention or involve you" -msgstr "Мнения, които споменават или включват" - -#: src/Module/Conversation/Network.php:265 -msgid "Starred" -msgstr "Със звезда" - -#: src/Module/Conversation/Network.php:268 -msgid "Favourite Posts" -msgstr "Любими Мнения" - #: src/Module/Credits.php:44 msgid "Credits" msgstr "" @@ -7884,163 +6748,167 @@ msgid "" "code or the translation of Friendica. Thank you all!" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:58 +#: src/Module/Debug/ActivityPubConversion.php:53 msgid "Formatted" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:62 -msgid "Source" -msgstr "" - -#: src/Module/Debug/ActivityPubConversion.php:70 +#: src/Module/Debug/ActivityPubConversion.php:65 msgid "Activity" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:118 +#: src/Module/Debug/ActivityPubConversion.php:117 msgid "Object data" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:125 +#: src/Module/Debug/ActivityPubConversion.php:124 msgid "Result Item" msgstr "" +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "" +msgstr[1] "" + #: src/Module/Debug/ActivityPubConversion.php:138 msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:54 +#: src/Module/Debug/Babel.php:51 msgid "Source input" msgstr "" -#: src/Module/Debug/Babel.php:60 +#: src/Module/Debug/Babel.php:57 msgid "BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:66 +#: src/Module/Debug/Babel.php:63 msgid "BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:71 +#: src/Module/Debug/Babel.php:68 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:76 +#: src/Module/Debug/Babel.php:73 msgid "BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:82 +#: src/Module/Debug/Babel.php:79 msgid "BBCode::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:88 +#: src/Module/Debug/Babel.php:85 msgid "BBCode::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:94 +#: src/Module/Debug/Babel.php:91 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:98 +#: src/Module/Debug/Babel.php:95 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:104 +#: src/Module/Debug/Babel.php:101 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:110 +#: src/Module/Debug/Babel.php:107 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:118 +#: src/Module/Debug/Babel.php:115 msgid "Item Body" msgstr "" -#: src/Module/Debug/Babel.php:122 +#: src/Module/Debug/Babel.php:119 msgid "Item Tags" msgstr "" -#: src/Module/Debug/Babel.php:128 +#: src/Module/Debug/Babel.php:125 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:133 +#: src/Module/Debug/Babel.php:130 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:137 +#: src/Module/Debug/Babel.php:134 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:144 +#: src/Module/Debug/Babel.php:141 msgid "Source input (Diaspora format)" msgstr "" -#: src/Module/Debug/Babel.php:153 +#: src/Module/Debug/Babel.php:150 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:159 +#: src/Module/Debug/Babel.php:156 msgid "Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:164 +#: src/Module/Debug/Babel.php:161 msgid "Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:170 +#: src/Module/Debug/Babel.php:167 msgid "Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:177 +#: src/Module/Debug/Babel.php:174 msgid "Raw HTML input" msgstr "" -#: src/Module/Debug/Babel.php:182 +#: src/Module/Debug/Babel.php:179 msgid "HTML Input" msgstr "" -#: src/Module/Debug/Babel.php:191 +#: src/Module/Debug/Babel.php:186 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:196 +#: src/Module/Debug/Babel.php:191 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:201 +#: src/Module/Debug/Babel.php:196 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:207 +#: src/Module/Debug/Babel.php:202 msgid "HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:213 +#: src/Module/Debug/Babel.php:208 msgid "HTML::toBBCode => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:218 +#: src/Module/Debug/Babel.php:213 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:224 +#: src/Module/Debug/Babel.php:219 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:230 +#: src/Module/Debug/Babel.php:225 msgid "HTML::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:236 +#: src/Module/Debug/Babel.php:231 msgid "HTML::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:242 +#: src/Module/Debug/Babel.php:237 msgid "HTML::toPlaintext (compact)" msgstr "" -#: src/Module/Debug/Babel.php:252 +#: src/Module/Debug/Babel.php:255 msgid "Decoded post" msgstr "" @@ -8061,31 +6929,35 @@ msgid "Twitter addon is absent from the addon/ folder." msgstr "" #: src/Module/Debug/Babel.php:304 -msgid "Source text" +msgid "Babel Diagnostic" msgstr "" #: src/Module/Debug/Babel.php:305 +msgid "Source text" +msgstr "" + +#: src/Module/Debug/Babel.php:306 msgid "BBCode" msgstr "" -#: src/Module/Debug/Babel.php:307 +#: src/Module/Debug/Babel.php:308 msgid "Markdown" msgstr "" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:309 msgid "HTML" msgstr "" -#: src/Module/Debug/Babel.php:310 -msgid "Twitter Source" +#: src/Module/Debug/Babel.php:311 +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/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:177 msgid "You must be logged in to use this module" msgstr "" -#: src/Module/Debug/Feed.php:63 +#: src/Module/Debug/Feed.php:77 msgid "Source URL" msgstr "" @@ -8122,259 +6994,196 @@ msgstr "Моля изберете вашия часовата зона:" msgid "Only logged in users are permitted to perform a probing." msgstr "" -#: src/Module/Debug/Probe.php:54 +#: src/Module/Debug/Probe.php:52 +msgid "Probe Diagnostic" +msgstr "" + +#: src/Module/Debug/Probe.php:53 +msgid "Output" +msgstr "" + +#: src/Module/Debug/Probe.php:56 msgid "Lookup address" msgstr "" -#: src/Module/Delegation.php:147 +#: src/Module/Debug/WebFinger.php:50 +msgid "Webfinger Diagnostic" +msgstr "" + +#: src/Module/Debug/WebFinger.php:52 +msgid "Lookup address:" +msgstr "" + +#: src/Module/Delegation.php:110 +#, php-format +msgid "You are now logged in as %s" +msgstr "" + +#: src/Module/Delegation.php:142 msgid "Switch between your accounts" msgstr "" -#: src/Module/Delegation.php:148 +#: src/Module/Delegation.php:143 msgid "Manage your accounts" msgstr "" -#: src/Module/Delegation.php:149 +#: src/Module/Delegation.php:144 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Превключвате между различните идентичности или общността / групата страници, които споделят данните на акаунта ви, или които сте получили \"управление\" разрешения" -#: src/Module/Delegation.php:150 +#: src/Module/Delegation.php:145 msgid "Select an identity to manage: " msgstr "Изберете идентичност, за да управлява: " -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:74 msgid "No entries (some entries may be hidden)." msgstr "Няма записи (някои вписвания, могат да бъдат скрити)." -#: src/Module/Directory.php:99 +#: src/Module/Directory.php:90 msgid "Find on this site" msgstr "Търсене в този сайт" -#: src/Module/Directory.php:101 +#: src/Module/Directory.php:92 msgid "Results for:" msgstr "" -#: src/Module/Directory.php:103 +#: src/Module/Directory.php:94 msgid "Site Directory" msgstr "Site Directory" -#: src/Module/Filer/RemoveTag.php:69 -msgid "Item was not removed" -msgstr "" - -#: src/Module/Filer/RemoveTag.php:72 +#: src/Module/Filer/RemoveTag.php:105 msgid "Item was not deleted" msgstr "" -#: src/Module/Filer/SaveTag.php:69 +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "" + +#: src/Module/Filer/SaveTag.php:73 msgid "- select -" msgstr "избор" -#: src/Module/Friendica.php:61 +#: src/Module/FriendSuggest.php:82 +msgid "Suggested contact not found." +msgstr "" + +#: src/Module/FriendSuggest.php:100 +msgid "Friend suggestion sent." +msgstr "Предложението за приятелство е изпратено." + +#: src/Module/FriendSuggest.php:137 +msgid "Suggest Friends" +msgstr "Предлагане на приятели" + +#: src/Module/FriendSuggest.php:140 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Предлагане на приятел за %s" + +#: src/Module/Friendica.php:82 msgid "Installed addons/apps:" msgstr "" -#: src/Module/Friendica.php:66 +#: src/Module/Friendica.php:87 msgid "No installed addons/apps" msgstr "" -#: src/Module/Friendica.php:71 +#: src/Module/Friendica.php:92 #, php-format msgid "Read about the Terms of Service of this node." msgstr "" -#: src/Module/Friendica.php:78 +#: src/Module/Friendica.php:99 msgid "On this server the following remote servers are blocked." msgstr "" -#: src/Module/Friendica.php:96 +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +msgid "Reason for the block" +msgstr "" + +#: src/Module/Friendica.php:104 +msgid "Download this list in CSV format" +msgstr "" + +#: src/Module/Friendica.php:118 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "" -#: src/Module/Friendica.php:101 +#: src/Module/Friendica.php:123 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "" -#: src/Module/Friendica.php:102 +#: src/Module/Friendica.php:124 msgid "Bug reports and issues: please visit" msgstr "Доклади за грешки и проблеми: моля посетете" -#: src/Module/Friendica.php:102 +#: src/Module/Friendica.php:124 msgid "the bugtracker at github" msgstr "" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:125 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "" -#: src/Module/FriendSuggest.php:65 -msgid "Suggested contact not found." +#: src/Module/HCard.php:45 +msgid "No profile" +msgstr "Няма профил" + +#: src/Module/HTTPException/MethodNotAllowed.php:31 +msgid "Method Not Allowed." msgstr "" -#: src/Module/FriendSuggest.php:84 -msgid "Friend suggestion sent." -msgstr "Предложението за приятелство е изпратено." - -#: src/Module/FriendSuggest.php:121 -msgid "Suggest Friends" -msgstr "Предлагане на приятели" - -#: src/Module/FriendSuggest.php:124 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Предлагане на приятел за %s" - -#: src/Module/Group.php:61 -msgid "Could not create group." -msgstr "Не може да се създаде група." - -#: src/Module/Group.php:72 src/Module/Group.php:214 src/Module/Group.php:238 -msgid "Group not found." -msgstr "Групата не е намерен." - -#: src/Module/Group.php:78 -msgid "Group name was not changed." -msgstr "" - -#: src/Module/Group.php:100 -msgid "Unknown group." -msgstr "" - -#: src/Module/Group.php:109 -msgid "Contact is deleted." -msgstr "" - -#: src/Module/Group.php:115 -msgid "Unable to add the contact to the group." -msgstr "" - -#: src/Module/Group.php:118 -msgid "Contact successfully added to group." -msgstr "" - -#: src/Module/Group.php:122 -msgid "Unable to remove the contact from the group." -msgstr "" - -#: src/Module/Group.php:125 -msgid "Contact successfully removed from group." -msgstr "" - -#: src/Module/Group.php:128 -msgid "Unknown group command." -msgstr "" - -#: src/Module/Group.php:131 -msgid "Bad request." -msgstr "" - -#: src/Module/Group.php:170 -msgid "Save Group" -msgstr "" - -#: src/Module/Group.php:171 -msgid "Filter" -msgstr "" - -#: src/Module/Group.php:177 -msgid "Create a group of contacts/friends." -msgstr "Създаване на група от контакти / приятели." - -#: src/Module/Group.php:219 -msgid "Unable to remove group." -msgstr "Не може да премахнете група." - -#: src/Module/Group.php:270 -msgid "Delete Group" -msgstr "" - -#: src/Module/Group.php:280 -msgid "Edit Group Name" -msgstr "" - -#: src/Module/Group.php:290 -msgid "Members" -msgstr "Членове" - -#: src/Module/Group.php:293 -msgid "Group is empty" -msgstr "Групата е празна" - -#: src/Module/Group.php:306 -msgid "Remove contact from group" -msgstr "" - -#: src/Module/Group.php:326 -msgid "Click on a contact to add or remove." -msgstr "Щракнете върху контакт, за да добавите или премахнете." - -#: src/Module/Group.php:340 -msgid "Add contact to group" -msgstr "" - -#: src/Module/Help.php:62 +#: src/Module/Help.php:60 msgid "Help:" msgstr "Помощ" -#: src/Module/Home.php:54 +#: src/Module/Home.php:63 #, php-format msgid "Welcome to %s" msgstr "Добре дошли %s" -#: src/Module/HoverCard.php:47 -msgid "No profile" -msgstr "Няма профил" - -#: src/Module/HTTPException/MethodNotAllowed.php:32 -msgid "Method Not Allowed." -msgstr "" - -#: src/Module/Install.php:177 +#: src/Module/Install.php:189 msgid "Friendica Communications Server - Setup" msgstr "" -#: src/Module/Install.php:188 +#: src/Module/Install.php:200 msgid "System check" msgstr "Проверка на системата" -#: src/Module/Install.php:190 src/Module/Install.php:247 -#: src/Module/Install.php:330 +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 msgid "Requirement not satisfied" msgstr "" -#: src/Module/Install.php:191 +#: src/Module/Install.php:203 msgid "Optional requirement not satisfied" msgstr "" -#: src/Module/Install.php:192 +#: src/Module/Install.php:204 msgid "OK" msgstr "" -#: src/Module/Install.php:197 +#: src/Module/Install.php:208 +msgid "Next" +msgstr "Следваща" + +#: src/Module/Install.php:209 msgid "Check again" msgstr "Проверете отново" -#: src/Module/Install.php:212 +#: src/Module/Install.php:222 msgid "Base settings" msgstr "" -#: src/Module/Install.php:219 -msgid "Host name" -msgstr "" - -#: src/Module/Install.php:221 -msgid "" -"Overwrite this field in case the determinated hostname isn't right, " -"otherweise leave it as is." -msgstr "" - #: src/Module/Install.php:224 msgid "Base path to installation" msgstr "" @@ -8387,14 +7196,13 @@ msgid "" msgstr "" #: src/Module/Install.php:229 -msgid "Sub path of the URL" +msgid "The Friendica system URL" msgstr "" #: src/Module/Install.php:231 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." +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." msgstr "" #: src/Module/Install.php:242 @@ -8419,77 +7227,73 @@ msgid "" "create it before continuing." msgstr "База данни, за да определите по-долу би трябвало вече да съществува. Ако това не стане, моля да го създадете, преди да продължите." -#: src/Module/Install.php:254 +#: src/Module/Install.php:252 msgid "Database Server Name" msgstr "Име на сървър за база данни" -#: src/Module/Install.php:259 +#: src/Module/Install.php:257 msgid "Database Login Name" msgstr "Името на базата данни Парола" -#: src/Module/Install.php:265 +#: src/Module/Install.php:263 msgid "Database Login Password" msgstr "Database Влизам Парола" -#: src/Module/Install.php:267 +#: src/Module/Install.php:265 msgid "For security reasons the password must not be empty" msgstr "" -#: src/Module/Install.php:270 +#: src/Module/Install.php:268 msgid "Database Name" msgstr "Име на база данни" -#: src/Module/Install.php:274 src/Module/Install.php:304 +#: src/Module/Install.php:272 src/Module/Install.php:300 msgid "Please select a default timezone for your website" msgstr "Моля, изберете часовата зона по подразбиране за вашия уеб сайт" -#: src/Module/Install.php:289 +#: src/Module/Install.php:287 msgid "Site settings" msgstr "Настройки на сайта" -#: src/Module/Install.php:299 +#: src/Module/Install.php:295 msgid "Site administrator email address" msgstr "Сайт администратор на имейл адрес" -#: src/Module/Install.php:301 +#: src/Module/Install.php:297 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Вашият имейл адрес трябва да съответстват на това, за да използвате уеб панел администратор." -#: src/Module/Install.php:308 +#: src/Module/Install.php:304 msgid "System Language:" msgstr "" -#: src/Module/Install.php:310 +#: src/Module/Install.php:306 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "" -#: src/Module/Install.php:322 +#: src/Module/Install.php:318 msgid "Your Friendica site database has been installed." msgstr "Вашият Friendica сайт база данни е инсталиран." -#: src/Module/Install.php:332 +#: src/Module/Install.php:328 msgid "Installation finished" msgstr "" -#: src/Module/Install.php:352 +#: src/Module/Install.php:348 msgid "

    What next

    " msgstr "

    Каква е следващата стъпка " -#: src/Module/Install.php:353 +#: src/Module/Install.php:349 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "" -#: src/Module/Install.php:354 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Моля, вижте файла \"INSTALL.txt\"." - -#: src/Module/Install.php:356 +#: src/Module/Install.php:352 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -8497,40 +7301,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "" -#: src/Module/Invite.php:55 +#: src/Module/Invite.php:57 msgid "Total invitation limit exceeded." msgstr "" -#: src/Module/Invite.php:78 +#: src/Module/Invite.php:82 #, php-format msgid "%s : Not a valid email address." msgstr "%s не е валиден имейл адрес." -#: src/Module/Invite.php:105 +#: src/Module/Invite.php:108 msgid "Please join us on Friendica" msgstr "Моля, присъединете се към нас на Friendica" -#: src/Module/Invite.php:114 +#: src/Module/Invite.php:117 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: src/Module/Invite.php:118 +#: src/Module/Invite.php:121 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Съобщение доставка не успя." -#: src/Module/Invite.php:122 +#: src/Module/Invite.php:125 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "" msgstr[1] "" -#: src/Module/Invite.php:140 +#: src/Module/Invite.php:143 msgid "You have no more invitations available" msgstr "Имате няма повече покани" -#: src/Module/Invite.php:147 +#: src/Module/Invite.php:150 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -8538,14 +7342,14 @@ msgid "" " other social networks." msgstr "Посетете %s за списък на публичните сайтове, които можете да се присъедините. Friendica членове на други сайтове могат да се свързват един с друг, както и с членовете на много други социални мрежи." -#: src/Module/Invite.php:149 +#: src/Module/Invite.php:152 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "За да приемете тази покана, моля, посетете и се регистрира в %s или друга публична уебсайт Friendica." -#: src/Module/Invite.php:150 +#: src/Module/Invite.php:153 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -8554,417 +7358,1548 @@ msgid "" "sites you can join." msgstr "Friendica сайтове се свързват, за да се създаде огромна допълнителна защита на личния живот, социална мрежа, която е собственост и се управлява от нейните членове. Те също могат да се свържат с много от традиционните социални мрежи. Виж %s за списък на алтернативни сайтове Friendica, можете да се присъедините." -#: src/Module/Invite.php:154 +#: src/Module/Invite.php:157 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Нашите извинения. Тази система в момента не е конфигуриран да се свържете с други обществени обекти, или ще поканят членове." -#: src/Module/Invite.php:157 +#: src/Module/Invite.php:160 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "" -#: src/Module/Invite.php:156 +#: src/Module/Invite.php:159 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "" -#: src/Module/Invite.php:164 +#: src/Module/Invite.php:167 msgid "Send invitations" msgstr "Изпращане на покани" -#: src/Module/Invite.php:165 +#: src/Module/Invite.php:168 msgid "Enter email addresses, one per line:" msgstr "Въведете имейл адреси, по един на ред:" -#: src/Module/Invite.php:169 +#: src/Module/Invite.php:172 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Вие сте любезно поканени да се присъединят към мен и други близки приятели за Friendica, - и да ни помогне да създадем по-добра социална мрежа." -#: src/Module/Invite.php:171 +#: src/Module/Invite.php:174 msgid "You will need to supply this invitation code: $invite_code" msgstr "Вие ще трябва да предоставят този код за покана: $ invite_code" -#: src/Module/Invite.php:171 +#: src/Module/Invite.php:174 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "След като сте се регистрирали, моля свържете се с мен чрез профила на моята страница в:" -#: src/Module/Invite.php:173 +#: src/Module/Invite.php:176 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "" -#: src/Module/Item/Compose.php:46 +#: src/Module/Item/Compose.php:85 msgid "Please enter a post body." msgstr "" -#: src/Module/Item/Compose.php:59 +#: src/Module/Item/Compose.php:98 msgid "This feature is only available with the frio theme." msgstr "" -#: src/Module/Item/Compose.php:86 +#: src/Module/Item/Compose.php:122 msgid "Compose new personal note" msgstr "" -#: src/Module/Item/Compose.php:95 +#: src/Module/Item/Compose.php:131 msgid "Compose new post" msgstr "" -#: src/Module/Item/Compose.php:135 +#: src/Module/Item/Compose.php:187 msgid "Visibility" msgstr "" -#: src/Module/Item/Compose.php:156 +#: src/Module/Item/Compose.php:203 msgid "Clear the location" msgstr "" -#: src/Module/Item/Compose.php:157 +#: src/Module/Item/Compose.php:204 msgid "Location services are unavailable on your device" msgstr "" -#: src/Module/Item/Compose.php:158 +#: src/Module/Item/Compose.php:205 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "" -#: src/Module/Maintenance.php:46 +#: src/Module/Item/Compose.php:211 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "" + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "" + +#: src/Module/Item/Follow.php:51 +msgid "Unable to follow this item." +msgstr "" + +#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 msgid "System down for maintenance" msgstr "" -#: src/Module/Manifest.php:42 +#: 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 "" + +#: src/Module/Manifest.php:40 msgid "A Decentralized Social Network" msgstr "" -#: src/Module/Notifications/Introductions.php:78 +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Файлове" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload" +msgstr "Качете в Мрежата " + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "Файл за качване не успя." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:68 +msgid "Unable to process image." +msgstr "Не може да се обработи." + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:95 +msgid "Image upload failed." +msgstr "Image Upload неуспешно." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "Нормално страницата с профила" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "Импровизирана трибуна Page" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "Автоматично приятел Page" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "Избор на всичко" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +msgid "Blocked server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "" + +#: src/Module/Moderation/Item/Delete.php:65 +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 "" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Елемент не е намерена" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "" + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "" + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Нормално профил" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Автоматично приятел акаунт" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Регистрираните потребители" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Предстоящи регистрации" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Дата на регистрация" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "Последно влизане" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "Администратор на сайта" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Избрани потребители ще бъде изтрита! \\ N \\ nEverything тези потребители са публикувани на този сайт ще бъде изтрит завинаги! \\ N \\ nСигурни ли сте?" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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} ще бъде изтрит! \\ n \\ nEverything този потребител публикувани на този сайт ще бъде изтрит завинаги! \\ n \\ nСигурни ли сте?" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "" + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "" + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Сметка одобрен." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Искане дата" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "Няма регистрации." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Отказ" + +#: src/Module/Notifications/Introductions.php:99 msgid "Show Ignored Requests" msgstr "Показване на пренебрегнатите заявки" -#: src/Module/Notifications/Introductions.php:78 +#: src/Module/Notifications/Introductions.php:99 msgid "Hide Ignored Requests" msgstr "Скриване на пренебрегнатите заявки" -#: src/Module/Notifications/Introductions.php:94 -#: src/Module/Notifications/Introductions.php:163 +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 msgid "Notification type:" msgstr "" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Notifications/Introductions.php:118 msgid "Suggested by:" msgstr "" -#: src/Module/Notifications/Introductions.php:122 +#: src/Module/Notifications/Introductions.php:143 msgid "Claims to be known to you: " msgstr "Искания, да се знае за вас: " -#: src/Module/Notifications/Introductions.php:131 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "No" +msgstr "Не" + +#: src/Module/Notifications/Introductions.php:152 msgid "Shall your connection be bidirectional or not?" msgstr "" -#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:153 #, 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 "" -#: src/Module/Notifications/Introductions.php:133 +#: src/Module/Notifications/Introductions.php:154 #, 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 "" -#: src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:156 msgid "Friend" msgstr "Приятел" -#: src/Module/Notifications/Introductions.php:136 +#: src/Module/Notifications/Introductions.php:157 msgid "Subscriber" msgstr "" -#: src/Module/Notifications/Introductions.php:201 +#: src/Module/Notifications/Introductions.php:216 msgid "No introductions." msgstr "Няма въвеждане." -#: src/Module/Notifications/Introductions.php:202 -#: src/Module/Notifications/Notifications.php:133 +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 #, php-format msgid "No more %s notifications." msgstr "" -#: src/Module/Notifications/Notification.php:103 +#: src/Module/Notifications/Notification.php:135 msgid "You must be logged in to show this page." msgstr "" -#: src/Module/Notifications/Notifications.php:50 +#: src/Module/Notifications/Notifications.php:66 msgid "Network Notifications" msgstr "Мрежа Известия" -#: src/Module/Notifications/Notifications.php:58 +#: src/Module/Notifications/Notifications.php:72 msgid "System Notifications" msgstr "Системни известия" -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:78 msgid "Personal Notifications" msgstr "Лични Известия" -#: src/Module/Notifications/Notifications.php:74 +#: src/Module/Notifications/Notifications.php:84 msgid "Home Notifications" msgstr "Начало Известия" -#: src/Module/Notifications/Notifications.php:138 +#: src/Module/Notifications/Notifications.php:140 msgid "Show unread" msgstr "" -#: src/Module/Notifications/Notifications.php:138 -msgid "Show all" +#: src/Module/Notifications/Ping.php:246 +msgid "{0} requested registration" +msgstr "{0} исканата регистрация" + +#: src/Module/Notifications/Ping.php:255 +#, php-format +msgid "{0} and %d others requested registration" msgstr "" -#: src/Module/PermissionTooltip.php:25 +#: src/Module/OAuth/Acknowledge.php:51 +msgid "Authorize application connection" +msgstr "Разрешава връзка с прилагането" + +#: src/Module/OAuth/Acknowledge.php:53 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Искате ли да се разреши това приложение за достъп до вашите мнения и контакти, и / или създаване на нови длъжности за вас?" + +#: src/Module/OAuth/Authorize.php:54 +msgid "Unsupported or missing response type" +msgstr "" + +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +msgid "Incomplete request data" +msgstr "" + +#: 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:83 +msgid "Invalid data or unknown client" +msgstr "" + +#: src/Module/OAuth/Token.php:108 +msgid "Unsupported or missing grant type" +msgstr "" + +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "" + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "" + +#: src/Module/PermissionTooltip.php:49 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "" -#: src/Module/PermissionTooltip.php:38 +#: src/Module/PermissionTooltip.php:79 msgid "Model not found" msgstr "" -#: src/Module/PermissionTooltip.php:60 +#: src/Module/PermissionTooltip.php:94 +msgid "Unlisted" +msgstr "" + +#: src/Module/PermissionTooltip.php:112 msgid "Remote privacy information not available." msgstr "Дистанционно неприкосновеността на личния живот информация не е достъпен." -#: src/Module/PermissionTooltip.php:71 +#: src/Module/PermissionTooltip.php:121 msgid "Visible to:" msgstr "Вижда се от:" -#: src/Module/Photo.php:93 +#: src/Module/PermissionTooltip.php:204 +#, php-format +msgid "Collection (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:208 +#, php-format +msgid "Followers (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:227 +#, php-format +msgid "%d more" +msgstr "" + +#: src/Module/PermissionTooltip.php:231 +#, php-format +msgid "To: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:234 +#, php-format +msgid "CC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:237 +#, php-format +msgid "BCC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "" + +#: src/Module/Photo.php:130 +msgid "The Photo is not available." +msgstr "" + +#: src/Module/Photo.php:155 #, php-format msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:111 +#: src/Module/Photo.php:192 +#, php-format +msgid "Invalid external resource with url %s." +msgstr "" + +#: src/Module/Photo.php:194 #, php-format msgid "Invalid photo with id %s." msgstr "" -#: src/Module/Profile/Contacts.php:121 +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "" + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Редактиране на мнение" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "Уеб-линк" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Поставете линка на видео" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "видео връзка" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Поставете аудио връзка" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "аудио връзка" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Извадете Tag т." + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Изберете етикет, за да премахнете: " + +#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Премахване" + +#: src/Module/Profile/Contacts.php:159 msgid "No contacts." msgstr "Няма контакти." -#: src/Module/Profile/Profile.php:135 +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:59 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "" + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "Image файл е празен." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "Вижте албуми" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +msgid "Profile not found." +msgstr "Профил не е намерен." + +#: src/Module/Profile/Profile.php:158 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "" -#: src/Module/Profile/Profile.php:149 +#: src/Module/Profile/Profile.php:167 +msgid "Full Name:" +msgstr "Собствено и фамилно име" + +#: src/Module/Profile/Profile.php:172 msgid "Member since:" msgstr "" -#: src/Module/Profile/Profile.php:155 +#: src/Module/Profile/Profile.php:178 msgid "j F, Y" msgstr "J F, Y" -#: src/Module/Profile/Profile.php:156 +#: src/Module/Profile/Profile.php:179 msgid "j F" msgstr "J F" -#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 msgid "Birthday:" msgstr "Дата на раждане:" -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 msgid "Age: " msgstr "Възраст: " -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "" msgstr[1] "" -#: src/Module/Profile/Profile.php:229 -msgid "Forums:" +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "Описание:" + +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" msgstr "" -#: src/Module/Profile/Profile.php:241 +#: src/Module/Profile/Profile.php:273 msgid "View profile as:" msgstr "" -#: src/Module/Profile/Profile.php:258 +#: src/Module/Profile/Profile.php:290 msgid "View as" msgstr "" -#: src/Module/Profile/Profile.php:321 src/Module/Profile/Profile.php:324 -#: src/Module/Profile/Status.php:65 src/Module/Profile/Status.php:68 -#: src/Protocol/Feed.php:940 src/Protocol/OStatus.php:1258 -#, php-format -msgid "%s's timeline" -msgstr "" +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "Профил недостъпни." -#: src/Module/Profile/Profile.php:322 src/Module/Profile/Status.php:66 -#: src/Protocol/Feed.php:944 src/Protocol/OStatus.php:1262 -#, php-format -msgid "%s's posts" -msgstr "" +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "Невалиден локатор" -#: src/Module/Profile/Profile.php:323 src/Module/Profile/Status.php:67 -#: src/Protocol/Feed.php:947 src/Protocol/OStatus.php:1265 -#, php-format -msgid "%s's comments" -msgstr "" - -#: src/Module/Register.php:69 -msgid "Only parent users can create additional accounts." -msgstr "" - -#: src/Module/Register.php:101 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking \"Register\"." -msgstr "" - -#: 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 "Ако не сте запознати с OpenID, моля оставете това поле празно и попълнете останалата част от елементите." - -#: src/Module/Register.php:103 -msgid "Your OpenID (optional): " -msgstr "Вашият OpenID (не е задължително): " - -#: src/Module/Register.php:112 -msgid "Include your profile in member directory?" -msgstr "Включете вашия профил в член директория?" - -#: src/Module/Register.php:135 -msgid "Note for the admin" -msgstr "" - -#: src/Module/Register.php:135 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "" - -#: src/Module/Register.php:136 -msgid "Membership on this site is by invitation only." -msgstr "Членството на този сайт е само с покани." - -#: src/Module/Register.php:137 -msgid "Your invitation code: " -msgstr "" - -#: src/Module/Register.php:145 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "" - -#: src/Module/Register.php:146 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "" - -#: src/Module/Register.php:147 -msgid "Please repeat your e-mail address:" -msgstr "" - -#: src/Module/Register.php:149 -msgid "Leave empty for an auto generated password." -msgstr "" - -#: 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 "" - -#: src/Module/Register.php:152 -msgid "Choose a nickname: " -msgstr "Изберете прякор: " - -#: src/Module/Register.php:161 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: src/Module/Register.php:168 -msgid "Note: This node explicitly contains adult content" -msgstr "" - -#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 -msgid "Parent Password:" -msgstr "" - -#: 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 "" - -#: src/Module/Register.php:199 -msgid "Password doesn't match." -msgstr "" - -#: src/Module/Register.php:205 -msgid "Please enter your password." -msgstr "" - -#: src/Module/Register.php:247 -msgid "You have entered too much information." -msgstr "" - -#: src/Module/Register.php:271 -msgid "Please enter the identical mail address in the second field." -msgstr "" - -#: src/Module/Register.php:298 -msgid "The additional account was created." -msgstr "" - -#: src/Module/Register.php:323 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Регистрация успешно. Моля, проверете електронната си поща за по-нататъшни инструкции." - -#: 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 "" - -#: src/Module/Register.php:333 -msgid "Registration successful." -msgstr "" - -#: src/Module/Register.php:338 src/Module/Register.php:345 -msgid "Your registration can not be processed." -msgstr "Вашата регистрация не могат да бъдат обработени." - -#: src/Module/Register.php:344 -msgid "You have to leave a request note for the admin." -msgstr "" - -#: src/Module/Register.php:390 -msgid "Your registration is pending approval by the site owner." -msgstr "Вашата регистрация е в очакване на одобрение от собственика на сайта." - -#: src/Module/RemoteFollow.php:67 +#: src/Module/Profile/RemoteFollow.php:95 msgid "The provided profile link doesn't seem to be valid" msgstr "" -#: src/Module/RemoteFollow.php:105 +#: src/Module/Profile/RemoteFollow.php:100 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:128 +msgid "Friend/Connection Request" +msgstr "Приятел / заявка за връзка" + +#: src/Module/Profile/RemoteFollow.php:129 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -8972,78 +8907,314 @@ msgid "" " or %s directly on your system." msgstr "" -#: src/Module/Search/Index.php:55 +#: src/Module/Profile/RemoteFollow.php:130 +#, 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 "" + +#: src/Module/Profile/RemoteFollow.php:131 +msgid "Your Webfinger address or profile URL:" +msgstr "" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "" + +#: src/Module/Profile/Schedule.php:83 +msgid "Scheduled" +msgstr "" + +#: src/Module/Profile/Schedule.php:84 +msgid "Content" +msgstr "" + +#: src/Module/Profile/Schedule.php:85 +msgid "Remove post" +msgstr "" + +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "" + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Не може да проверите вашето местоположение." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "" + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Брой на ежедневните съобщения за стена за %s е превишен. Съобщение не успя." + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "Ако желаете за %s да отговори, моля, проверете дали настройките за поверителност на сайта си позволяват частни съобщения от непознати податели." + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "" + +#: src/Module/Register.php:84 +msgid "Only parent users can create additional accounts." +msgstr "" + +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Този сайт е надвишил броя на разрешените дневни регистрации сметка. Моля, опитайте отново утре." + +#: src/Module/Register.php:116 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." +msgstr "" + +#: src/Module/Register.php:117 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Ако не сте запознати с OpenID, моля оставете това поле празно и попълнете останалата част от елементите." + +#: src/Module/Register.php:118 +msgid "Your OpenID (optional): " +msgstr "Вашият OpenID (не е задължително): " + +#: src/Module/Register.php:127 +msgid "Include your profile in member directory?" +msgstr "Включете вашия профил в член директория?" + +#: src/Module/Register.php:148 +msgid "Note for the admin" +msgstr "" + +#: src/Module/Register.php:148 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "" + +#: src/Module/Register.php:149 +msgid "Membership on this site is by invitation only." +msgstr "Членството на този сайт е само с покани." + +#: src/Module/Register.php:150 +msgid "Your invitation code: " +msgstr "" + +#: src/Module/Register.php:158 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: src/Module/Register.php:159 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "" + +#: src/Module/Register.php:160 +msgid "Please repeat your e-mail address:" +msgstr "" + +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 +msgid "New Password:" +msgstr "нова парола" + +#: src/Module/Register.php:162 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 +msgid "Confirm:" +msgstr "Потвърждаване..." + +#: src/Module/Register.php:164 +#, php-format +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be \"nickname@%s\"." +msgstr "" + +#: src/Module/Register.php:165 +msgid "Choose a nickname: " +msgstr "Изберете прякор: " + +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Внасяне" + +#: src/Module/Register.php:174 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: src/Module/Register.php:181 +msgid "Note: This node explicitly contains adult content" +msgstr "" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "Parent Password:" +msgstr "" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "" + +#: src/Module/Register.php:212 +msgid "Password doesn't match." +msgstr "" + +#: src/Module/Register.php:218 +msgid "Please enter your password." +msgstr "" + +#: src/Module/Register.php:260 +msgid "You have entered too much information." +msgstr "" + +#: src/Module/Register.php:283 +msgid "Please enter the identical mail address in the second field." +msgstr "" + +#: src/Module/Register.php:310 +msgid "The additional account was created." +msgstr "" + +#: src/Module/Register.php:335 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Регистрация успешно. Моля, проверете електронната си поща за по-нататъшни инструкции." + +#: src/Module/Register.php:342 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "" + +#: src/Module/Register.php:348 +msgid "Registration successful." +msgstr "" + +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 +msgid "Your registration can not be processed." +msgstr "Вашата регистрация не могат да бъдат обработени." + +#: src/Module/Register.php:363 +msgid "You have to leave a request note for the admin." +msgstr "" + +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "" + +#: src/Module/Register.php:395 +msgid "Your registration is pending approval by the site owner." +msgstr "Вашата регистрация е в очакване на одобрение от собственика на сайта." + +#: src/Module/Search/Acl.php:73 +msgid "You must be logged in to use this module." +msgstr "" + +#: src/Module/Search/Index.php:69 msgid "Only logged in users are permitted to perform a search." msgstr "" -#: src/Module/Search/Index.php:77 +#: src/Module/Search/Index.php:89 msgid "Only one search per minute is permitted for not logged in users." msgstr "" -#: src/Module/Search/Index.php:191 +#: src/Module/Search/Index.php:205 #, php-format msgid "Items tagged with: %s" msgstr "" -#: src/Module/Search/Saved.php:45 +#: src/Module/Search/Saved.php:59 msgid "Search term was not saved." msgstr "" -#: src/Module/Search/Saved.php:48 +#: src/Module/Search/Saved.php:62 msgid "Search term already saved." msgstr "" -#: src/Module/Search/Saved.php:54 +#: src/Module/Search/Saved.php:68 msgid "Search term was not removed." msgstr "" -#: src/Module/Security/Login.php:101 +#: src/Module/Security/Login.php:123 msgid "Create a New Account" msgstr "Създаване на нов профил:" -#: src/Module/Security/Login.php:126 +#: src/Module/Security/Login.php:142 msgid "Your OpenID: " msgstr "" -#: src/Module/Security/Login.php:129 +#: src/Module/Security/Login.php:145 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "" -#: src/Module/Security/Login.php:131 +#: src/Module/Security/Login.php:147 msgid "Or login using OpenID: " msgstr "Или да влезнете с OpenID: " -#: src/Module/Security/Login.php:145 +#: src/Module/Security/Login.php:161 msgid "Password: " msgstr "Парола " -#: src/Module/Security/Login.php:146 +#: src/Module/Security/Login.php:162 msgid "Remember me" msgstr "" -#: src/Module/Security/Login.php:155 +#: src/Module/Security/Login.php:171 msgid "Forgot your password?" msgstr "Забравена парола?" -#: src/Module/Security/Login.php:158 +#: src/Module/Security/Login.php:174 msgid "Website Terms of Service" msgstr "Условия за ползване на сайта" -#: src/Module/Security/Login.php:159 +#: src/Module/Security/Login.php:175 msgid "terms of service" msgstr "условия за ползване" -#: src/Module/Security/Login.php:161 +#: src/Module/Security/Login.php:177 msgid "Website Privacy Policy" msgstr "Политика за поверителност на сайта" -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:178 msgid "privacy policy" msgstr "политика за поверителност" -#: src/Module/Security/Logout.php:53 +#: src/Module/Security/Logout.php:84 +#: src/Module/Security/TwoFactor/SignOut.php:78 +#: src/Module/Security/TwoFactor/SignOut.php:86 +#: src/Module/Security/TwoFactor/SignOut.php:108 +#: src/Module/Security/TwoFactor/SignOut.php:115 msgid "Logged out." msgstr "Изход" @@ -9051,653 +9222,1599 @@ msgstr "Изход" msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:90 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "" -#: src/Module/Security/OpenID.php:94 +#: src/Module/Security/OpenID.php:92 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:60 +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 +msgid "Passwords do not match." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:64 +msgid "Password does not need changing." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 +msgid "Password unchanged." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:91 +msgid "Password Too Long" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:92 +msgid "" +"Since version 2022.09, we've realized that any password longer than 72 " +"characters is truncated during hashing. To prevent any confusion about this " +"behavior, please update your password to be fewer or equal to 72 characters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:93 +msgid "Update Password" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Current Password:" +msgstr "Текуща парола:" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Your current password to confirm the changes" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces and accentuated letters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 +msgid "Password length is limited to 72 characters." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:74 #, php-format msgid "Remaining recovery codes: %d" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:64 -#: src/Module/Security/TwoFactor/Verify.php:61 -#: src/Module/Settings/TwoFactor/Verify.php:82 +#: src/Module/Security/TwoFactor/Recovery.php:80 +#: src/Module/Security/TwoFactor/Verify.php:77 +#: src/Module/Settings/TwoFactor/Verify.php:95 msgid "Invalid code, please retry." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:83 +#: src/Module/Security/TwoFactor/Recovery.php:99 msgid "Two-factor recovery" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:84 +#: src/Module/Security/TwoFactor/Recovery.php:100 msgid "" "

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

    " msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:85 -#: src/Module/Security/TwoFactor/Verify.php:84 +#: src/Module/Security/TwoFactor/Recovery.php:101 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:86 +#: src/Module/Security/TwoFactor/Recovery.php:102 msgid "Please enter a recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:87 +#: src/Module/Security/TwoFactor/Recovery.php:103 msgid "Submit recovery code and complete login" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:81 +#: src/Module/Security/TwoFactor/SignOut.php:122 +msgid "Sign out of this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:123 +msgid "" +"

    If you trust this browser, you will not be asked for verification code " +"the next time you sign in.

    " +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:124 +msgid "Sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:126 +msgid "Trust and sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:96 +msgid "Couldn't save browser to Cookie." +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:141 +msgid "Trust this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:142 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:143 +msgid "Not now" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:144 +msgid "Don't trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:145 +msgid "Trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:97 msgid "" "

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

    " msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:85 -#: src/Module/Settings/TwoFactor/Verify.php:141 +#: src/Module/Security/TwoFactor/Verify.php:100 +#, php-format +msgid "" +"If you do not have access to your authentication code you can use a two-factor recovery code." +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Verify.php:155 msgid "Please enter a code from your authentication app" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:86 +#: src/Module/Security/TwoFactor/Verify.php:102 msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Delegation.php:53 +#: src/Module/Settings/Account.php:96 +msgid "Please use a shorter name." +msgstr "" + +#: src/Module/Settings/Account.php:99 +msgid "Name too short." +msgstr "" + +#: src/Module/Settings/Account.php:108 +msgid "Wrong Password." +msgstr "" + +#: src/Module/Settings/Account.php:113 +msgid "Invalid email." +msgstr "" + +#: src/Module/Settings/Account.php:117 +msgid "Cannot change to that email." +msgstr "" + +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 +msgid "Settings were not updated." +msgstr "" + +#: src/Module/Settings/Account.php:364 +msgid "Contact CSV file upload error" +msgstr "" + +#: src/Module/Settings/Account.php:383 +msgid "Importing Contacts done" +msgstr "" + +#: src/Module/Settings/Account.php:396 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: src/Module/Settings/Account.php:413 +msgid "Unable to find your profile. Please contact your admin." +msgstr "" + +#: src/Module/Settings/Account.php:455 +msgid "Personal Page Subtypes" +msgstr "" + +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" +msgstr "" + +#: src/Module/Settings/Account.php:466 +msgid "Account for a personal profile." +msgstr "" + +#: src/Module/Settings/Account.php:473 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:480 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:487 +msgid "Account for community discussions." +msgstr "" + +#: src/Module/Settings/Account.php:494 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:501 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:508 +msgid "Automatically approves all contact requests." +msgstr "" + +#: src/Module/Settings/Account.php:515 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "" + +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "" + +#: src/Module/Settings/Account.php:522 +msgid "Requires manual approval of contact requests." +msgstr "" + +#: src/Module/Settings/Account.php:531 +msgid "OpenID:" +msgstr "OpenID:" + +#: src/Module/Settings/Account.php:531 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(По избор) позволяват това OpenID, за да влезете в тази сметка." + +#: src/Module/Settings/Account.php:539 +msgid "Publish your profile in your local site directory?" +msgstr "" + +#: src/Module/Settings/Account.php:539 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "" + +#: src/Module/Settings/Account.php:545 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "" + +#: src/Module/Settings/Account.php:558 +msgid "Account Settings" +msgstr "Настройки на профила" + +#: src/Module/Settings/Account.php:559 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: src/Module/Settings/Account.php:566 +msgid "Password Settings" +msgstr "Парола Настройки" + +#: src/Module/Settings/Account.php:568 +msgid "Leave password fields blank unless changing" +msgstr "Оставете паролите полета празни, освен ако промяна" + +#: src/Module/Settings/Account.php:570 +msgid "Password:" +msgstr "Парола" + +#: src/Module/Settings/Account.php:570 +msgid "Your current password to confirm the changes of the email address" +msgstr "" + +#: src/Module/Settings/Account.php:573 +msgid "Delete OpenID URL" +msgstr "" + +#: src/Module/Settings/Account.php:575 +msgid "Basic Settings" +msgstr "Основни настройки" + +#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "" + +#: src/Module/Settings/Account.php:577 +msgid "Email Address:" +msgstr "Електронна поща:" + +#: src/Module/Settings/Account.php:578 +msgid "Your Timezone:" +msgstr "Вашият Часовата зона:" + +#: src/Module/Settings/Account.php:579 +msgid "Your Language:" +msgstr "" + +#: src/Module/Settings/Account.php:579 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: src/Module/Settings/Account.php:580 +msgid "Default Post Location:" +msgstr "Мнение местоположението по подразбиране:" + +#: src/Module/Settings/Account.php:581 +msgid "Use Browser Location:" +msgstr "Използвайте Browser Местоположение:" + +#: src/Module/Settings/Account.php:583 +msgid "Security and Privacy Settings" +msgstr "Сигурност и и лични настройки" + +#: src/Module/Settings/Account.php:585 +msgid "Maximum Friend Requests/Day:" +msgstr "Максимален брой молби за приятелство / ден:" + +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 +msgid "(to prevent spam abuse)" +msgstr "(Да се ​​предотврати спама злоупотреба)" + +#: src/Module/Settings/Account.php:587 +msgid "Allow your profile to be searchable globally?" +msgstr "" + +#: src/Module/Settings/Account.php:587 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "" + +#: src/Module/Settings/Account.php:588 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "" + +#: src/Module/Settings/Account.php:588 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "" +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "Make public posts unlisted" +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "" + +#: src/Module/Settings/Account.php:591 +msgid "Make all posted pictures accessible" +msgstr "" + +#: src/Module/Settings/Account.php:591 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "" + +#: src/Module/Settings/Account.php:592 +msgid "Allow friends to post to your profile page?" +msgstr "Оставете приятели, които да публикувате в страницата с вашия профил?" + +#: src/Module/Settings/Account.php:592 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "" + +#: src/Module/Settings/Account.php:593 +msgid "Allow friends to tag your posts?" +msgstr "Оставете приятели, за да маркирам собствените си мнения?" + +#: src/Module/Settings/Account.php:593 +msgid "Your contacts can add additional tags to your posts." +msgstr "" + +#: src/Module/Settings/Account.php:594 +msgid "Permit unknown people to send you private mail?" +msgstr "Разрешение непознати хора, за да ви Изпратете лично поща?" + +#: src/Module/Settings/Account.php:594 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "" + +#: src/Module/Settings/Account.php:595 +msgid "Maximum private messages per day from unknown people:" +msgstr "Максимални лични съобщения на ден от непознати хора:" + +#: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "" + +#: src/Module/Settings/Account.php:598 +msgid "Default Post Permissions" +msgstr "Разрешения по подразбиране и" + +#: src/Module/Settings/Account.php:602 +msgid "Expiration settings" +msgstr "" + +#: src/Module/Settings/Account.php:603 +msgid "Automatically expire posts after this many days:" +msgstr "Автоматично изтича мнения след толкова много дни:" + +#: src/Module/Settings/Account.php:603 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Ако е празна, мнението няма да изтече. Изтекли мнения ще бъдат изтрити" + +#: src/Module/Settings/Account.php:604 +msgid "Expire posts" +msgstr "" + +#: src/Module/Settings/Account.php:604 +msgid "When activated, posts and comments will be expired." +msgstr "" + +#: src/Module/Settings/Account.php:605 +msgid "Expire personal notes" +msgstr "" + +#: src/Module/Settings/Account.php:605 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "" + +#: src/Module/Settings/Account.php:606 +msgid "Expire starred posts" +msgstr "" + +#: src/Module/Settings/Account.php:606 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "" + +#: src/Module/Settings/Account.php:607 +msgid "Only expire posts by others" +msgstr "" + +#: src/Module/Settings/Account.php:607 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "" + +#: src/Module/Settings/Account.php:610 +msgid "Notification Settings" +msgstr "Настройки за уведомяване" + +#: src/Module/Settings/Account.php:611 +msgid "Send a notification email when:" +msgstr "Изпращане на известие по имейл, когато:" + +#: src/Module/Settings/Account.php:612 +msgid "You receive an introduction" +msgstr "Вие получавате въведение" + +#: src/Module/Settings/Account.php:613 +msgid "Your introductions are confirmed" +msgstr "Вашите въвеждания са потвърдени" + +#: src/Module/Settings/Account.php:614 +msgid "Someone writes on your profile wall" +msgstr "Някой пише в профила ви стена" + +#: src/Module/Settings/Account.php:615 +msgid "Someone writes a followup comment" +msgstr "Някой пише последващ коментар" + +#: src/Module/Settings/Account.php:616 +msgid "You receive a private message" +msgstr "Ще получите лично съобщение" + +#: src/Module/Settings/Account.php:617 +msgid "You receive a friend suggestion" +msgstr "Ще получите предложение приятел" + +#: src/Module/Settings/Account.php:618 +msgid "You are tagged in a post" +msgstr "Са маркирани в един пост" + +#: src/Module/Settings/Account.php:620 +msgid "Create a desktop notification when:" +msgstr "" + +#: src/Module/Settings/Account.php:621 +msgid "Someone tagged you" +msgstr "" + +#: src/Module/Settings/Account.php:622 +msgid "Someone directly commented on your post" +msgstr "" + +#: src/Module/Settings/Account.php:623 +msgid "Someone liked your content" +msgstr "" + +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +msgid "Can only be enabled, when the direct comment notification is enabled." +msgstr "" + +#: src/Module/Settings/Account.php:624 +msgid "Someone shared your content" +msgstr "" + +#: src/Module/Settings/Account.php:625 +msgid "Someone commented in your thread" +msgstr "" + +#: src/Module/Settings/Account.php:626 +msgid "Someone commented in a thread where you commented" +msgstr "" + +#: src/Module/Settings/Account.php:627 +msgid "Someone commented in a thread where you interacted" +msgstr "" + +#: src/Module/Settings/Account.php:629 +msgid "Activate desktop notifications" +msgstr "" + +#: src/Module/Settings/Account.php:629 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: src/Module/Settings/Account.php:633 +msgid "Text-only notification emails" +msgstr "" + +#: src/Module/Settings/Account.php:635 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: src/Module/Settings/Account.php:639 +msgid "Show detailled notifications" +msgstr "" + +#: src/Module/Settings/Account.php:641 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "" + +#: src/Module/Settings/Account.php:645 +msgid "Show notifications of ignored contacts" +msgstr "" + +#: src/Module/Settings/Account.php:647 +msgid "" +"You don't see posts from ignored contacts. But you still see their comments." +" This setting controls if you want to still receive regular notifications " +"that are caused by ignored contacts or not." +msgstr "" + +#: src/Module/Settings/Account.php:650 +msgid "Advanced Account/Page Type Settings" +msgstr "Разширено сметка / Настройки на вид страница" + +#: src/Module/Settings/Account.php:651 +msgid "Change the behaviour of this account for special situations" +msgstr "Промяна на поведението на тази сметка за специални ситуации" + +#: src/Module/Settings/Account.php:654 +msgid "Import Contacts" +msgstr "" + +#: src/Module/Settings/Account.php:655 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "" + +#: src/Module/Settings/Account.php:656 +msgid "Upload File" +msgstr "" + +#: src/Module/Settings/Account.php:659 +msgid "Relocate" +msgstr "" + +#: src/Module/Settings/Account.php:660 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: src/Module/Settings/Account.php:661 +msgid "Resend relocate message to contacts" +msgstr "" + +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "Неуспех да се свърже с имейл акаунт, като използвате предоставените настройки." + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "Достъп до електронна поща е забранен на този сайт." + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "Няма " + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "" + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "Email / Mailbox Setup" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Ако желаете да се комуникира с имейл контакти, които използват тази услуга (по желание), моля посочете как да се свържете с вашата пощенска кутия." + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "Последна успешна проверка на електронната поща:" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "Име на IMAP сървъра:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "IMAP порта:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "Сигурност" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "Email потребителско име:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "Email парола:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "Адрес за отговор:" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "Изпратете публични длъжности за всички имейл контакти:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "Действия след вноса:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "Премества избраното в папка" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "Премества избраното в папка" + +#: src/Module/Settings/Delegation.php:54 msgid "Delegation successfully granted." msgstr "" -#: src/Module/Settings/Delegation.php:55 +#: src/Module/Settings/Delegation.php:56 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:59 +#: src/Module/Settings/Delegation.php:60 msgid "Delegation successfully revoked." msgstr "" -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 +#: src/Module/Settings/Delegation.php:82 +#: src/Module/Settings/Delegation.php:104 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:95 +#: src/Module/Settings/Delegation.php:96 msgid "Delegate user not found." msgstr "" -#: src/Module/Settings/Delegation.php:143 +#: src/Module/Settings/Delegation.php:144 msgid "No parent user" msgstr "" -#: src/Module/Settings/Delegation.php:154 -#: src/Module/Settings/Delegation.php:165 +#: src/Module/Settings/Delegation.php:155 +#: src/Module/Settings/Delegation.php:166 msgid "Parent User" msgstr "" -#: src/Module/Settings/Delegation.php:162 +#: src/Module/Settings/Delegation.php:163 msgid "Additional Accounts" msgstr "" -#: src/Module/Settings/Delegation.php:163 +#: src/Module/Settings/Delegation.php:164 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:164 +#: src/Module/Settings/Delegation.php:165 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:168 +#: src/Module/Settings/Delegation.php:169 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "" -#: src/Module/Settings/Delegation.php:172 +#: src/Module/Settings/Delegation.php:173 msgid "Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:174 +#: src/Module/Settings/Delegation.php:175 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 "Делегатите са в състояние да управляват всички аспекти от тази сметка / страница, с изключение на основните настройки сметка. Моля, не делегира Вашата лична сметка на никого, че не се доверявате напълно." -#: src/Module/Settings/Delegation.php:175 +#: src/Module/Settings/Delegation.php:176 msgid "Existing Page Delegates" msgstr "Съществуващите Делегатите Страница" -#: src/Module/Settings/Delegation.php:177 +#: src/Module/Settings/Delegation.php:178 msgid "Potential Delegates" msgstr "Потенциални Делегатите" -#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:181 msgid "Add" msgstr "Добави" -#: src/Module/Settings/Delegation.php:181 +#: src/Module/Settings/Delegation.php:182 msgid "No entries." msgstr "няма регистрирани" -#: src/Module/Settings/Display.php:105 +#: src/Module/Settings/Display.php:146 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:142 +#: src/Module/Settings/Display.php:186 #, php-format msgid "%s - (Unsupported)" msgstr "" -#: src/Module/Settings/Display.php:188 +#: src/Module/Settings/Display.php:221 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:222 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:223 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:224 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:259 msgid "Display Settings" msgstr "Настройки на дисплея" -#: src/Module/Settings/Display.php:190 +#: src/Module/Settings/Display.php:261 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:191 +#: src/Module/Settings/Display.php:262 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:192 +#: src/Module/Settings/Display.php:263 msgid "Content Settings" msgstr "" -#: 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 +#: src/Module/Settings/Display.php:264 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Тема Настройки" -#: src/Module/Settings/Display.php:194 -msgid "Calendar" +#: src/Module/Settings/Display.php:265 +msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:200 +#: src/Module/Settings/Display.php:272 msgid "Display Theme:" msgstr "Палитрата на дисплея:" -#: src/Module/Settings/Display.php:201 +#: src/Module/Settings/Display.php:273 msgid "Mobile Theme:" msgstr "" -#: src/Module/Settings/Display.php:204 +#: src/Module/Settings/Display.php:276 msgid "Number of items to display per page:" msgstr "" -#: src/Module/Settings/Display.php:204 src/Module/Settings/Display.php:205 +#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277 msgid "Maximum of 100 items" msgstr "Максимум от 100 точки" -#: src/Module/Settings/Display.php:205 +#: src/Module/Settings/Display.php:277 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:206 +#: src/Module/Settings/Display.php:278 msgid "Update browser every xx seconds" msgstr "Актуализиране на браузъра на всеки ХХ секунди" -#: src/Module/Settings/Display.php:206 +#: src/Module/Settings/Display.php:278 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:207 -msgid "Automatic updates only at the top of the post stream pages" +#: src/Module/Settings/Display.php:279 +msgid "Display emoticons" msgstr "" -#: 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." +#: src/Module/Settings/Display.php:279 +msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:208 -msgid "Don't show emoticons" -msgstr "Да не се показват емотикони" - -#: src/Module/Settings/Display.php:208 -msgid "" -"Normally emoticons are replaced with matching symbols. This setting disables" -" this behaviour." -msgstr "" - -#: src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:280 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:280 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:210 -msgid "Disable Smart Threading" +#: src/Module/Settings/Display.php:281 +msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:210 -msgid "Disable the automatic suppression of extraneous thread indentation." +#: src/Module/Settings/Display.php:281 +msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:211 -msgid "Hide the Dislike feature" +#: src/Module/Settings/Display.php:282 +msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:211 -msgid "Hides the Dislike button and dislike reactions on posts and comments." +#: src/Module/Settings/Display.php:282 +msgid "" +"Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:283 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:283 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:284 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:284 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:285 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:285 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Timelines for the network page:" +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Select all the timelines that you want to see on your network page." +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Channel languages:" +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Select all languages that you want to see in your channels." +msgstr "" + +#: src/Module/Settings/Display.php:290 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Profile/Index.php:85 -msgid "Profile Name is required." -msgstr "Име на профил се изисква." +#: src/Module/Settings/Display.php:291 +msgid "Default calendar view:" +msgstr "" -#: src/Module/Settings/Profile/Index.php:137 +#: src/Module/Settings/Display.php:300 src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:312 +#, php-format +msgid "%s: %s" +msgstr "" + +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "Допълнителни възможности" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Свързани Apps" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "Премахване на разрешение" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:167 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:205 +#: src/Module/Settings/Profile/Index.php:226 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:188 -#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:198 -#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:199 -#: src/Module/Settings/Profile/Index.php:219 +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 msgid "(click to open/close)" msgstr "(Щракнете за отваряне / затваряне)" -#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:224 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:235 -msgid "Profile Actions" +#: src/Module/Settings/Profile/Index.php:247 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:236 -msgid "Edit Profile Details" -msgstr "Редактиране на детайли от профила" - -#: src/Module/Settings/Profile/Index.php:238 -msgid "Change Profile Photo" -msgstr "Промяна снимката на профила" - -#: src/Module/Settings/Profile/Index.php:243 -msgid "Profile picture" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:244 -msgid "Location" -msgstr "Местоположение " - -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:93 -#: src/Util/Temporal.php:95 -msgid "Miscellaneous" -msgstr "Разни" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "Custom Profile Fields" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:248 src/Module/Welcome.php:58 -msgid "Upload Profile Photo" -msgstr "Качване на снимка Профилът" - -#: src/Module/Settings/Profile/Index.php:252 -msgid "Display name:" +#: src/Module/Settings/Profile/Index.php:249 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." msgstr "" #: src/Module/Settings/Profile/Index.php:255 -msgid "Street Address:" -msgstr "Адрес:" - -#: src/Module/Settings/Profile/Index.php:256 -msgid "Locality/City:" -msgstr "Махала / Град:" - -#: src/Module/Settings/Profile/Index.php:257 -msgid "Region/State:" -msgstr "Регион / Щат:" - -#: src/Module/Settings/Profile/Index.php:258 -msgid "Postal/Zip Code:" -msgstr "Postal / Zip Code:" - -#: src/Module/Settings/Profile/Index.php:259 -msgid "Country:" -msgstr "Държава:" - -#: src/Module/Settings/Profile/Index.php:261 -msgid "XMPP (Jabber) address:" +msgid "Profile Actions" msgstr "" +#: src/Module/Settings/Profile/Index.php:256 +msgid "Edit Profile Details" +msgstr "Редактиране на детайли от профила" + +#: src/Module/Settings/Profile/Index.php:258 +msgid "Change Profile Photo" +msgstr "Промяна снимката на профила" + #: src/Module/Settings/Profile/Index.php:261 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." +msgid "Profile picture" msgstr "" #: src/Module/Settings/Profile/Index.php:262 -msgid "Homepage URL:" -msgstr "Електронна страница:" +msgid "Location" +msgstr "Местоположение " -#: src/Module/Settings/Profile/Index.php:263 -msgid "Public Keywords:" -msgstr "Публичните Ключови думи:" - -#: src/Module/Settings/Profile/Index.php:263 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Използва се за предполагайки потенциален приятели, може да се види от други)" +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 +msgid "Miscellaneous" +msgstr "Разни" #: src/Module/Settings/Profile/Index.php:264 -msgid "Private Keywords:" -msgstr "Частни Ключови думи:" +msgid "Custom Profile Fields" +msgstr "" -#: src/Module/Settings/Profile/Index.php:264 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Използва се за търсене на профилите, никога не показва и на други)" +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +msgid "Upload Profile Photo" +msgstr "Качване на снимка Профилът" -#: src/Module/Settings/Profile/Index.php:265 +#: src/Module/Settings/Profile/Index.php:266 #, 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.

    " +"\t\t\t\t

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

    " 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/Index.php:103 +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "Адрес:" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "Махала / Град:" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "Регион / Щат:" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "Postal / Zip Code:" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "Държава:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "Електронна страница:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "Публичните Ключови думи:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Използва се за предполагайки потенциален приятели, може да се види от други)" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "Частни Ключови думи:" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Използва се за търсене на профилите, никога не показва и на други)" + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 +#: src/Module/Settings/Profile/Photo/Index.php:101 #, php-format msgid "Image size reduction [%s] failed." msgstr "Намаляване на размер [ %s ] не успя." -#: src/Module/Settings/Profile/Photo/Crop.php:139 +#: src/Module/Settings/Profile/Photo/Crop.php:150 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Shift-презаредите страницата или ясно, кеша на браузъра, ако новата снимка не показва веднага." -#: src/Module/Settings/Profile/Photo/Crop.php:147 +#: src/Module/Settings/Profile/Photo/Crop.php:155 msgid "Unable to process image" msgstr "Не може да се обработи" -#: src/Module/Settings/Profile/Photo/Crop.php:166 +#: src/Module/Settings/Profile/Photo/Crop.php:174 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:190 +#: src/Module/Settings/Profile/Photo/Crop.php:196 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:213 -#: src/Module/Settings/Profile/Photo/Crop.php:217 +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 msgid "Crop Image" msgstr "Изрязване на изображението" -#: src/Module/Settings/Profile/Photo/Crop.php:214 +#: src/Module/Settings/Profile/Photo/Crop.php:223 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:225 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:47 +#: src/Module/Settings/Profile/Photo/Index.php:45 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:134 +#: src/Module/Settings/Profile/Photo/Index.php:132 msgid "or" msgstr "или" -#: src/Module/Settings/Profile/Photo/Index.php:136 +#: src/Module/Settings/Profile/Photo/Index.php:134 msgid "skip this step" msgstr "пропуснете тази стъпка" -#: src/Module/Settings/Profile/Photo/Index.php:138 +#: src/Module/Settings/Profile/Photo/Index.php:136 msgid "select a photo from your photo albums" msgstr "изберете снимка от вашите фото албуми" -#: src/Module/Settings/TwoFactor/AppSpecific.php:52 -#: src/Module/Settings/TwoFactor/Recovery.php:50 -#: src/Module/Settings/TwoFactor/Verify.php:56 +#: src/Module/Settings/RemoveMe.php:94 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:94 +msgid "User deleted their account" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:95 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "" + +#: src/Module/Settings/RemoveMe.php:96 +#, php-format +msgid "The user id is %d" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:108 +msgid "Your user account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:128 +msgid "Remove My Account" +msgstr "Извадете Моят профил" + +#: src/Module/Settings/RemoveMe.php:129 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Това ще премахне изцяло сметката си. След като това е направено, не е възстановим." + +#: src/Module/Settings/RemoveMe.php:131 +msgid "Please enter your password for verification:" +msgstr "Моля, въведете паролата си за проверка:" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "" + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 msgid "Please enter your password to access this page." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:70 +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:73 +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:77 +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:83 +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:93 +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:114 +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:116 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 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 "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:117 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:120 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 msgid "Description" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:121 +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:122 +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:123 +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 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 "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 msgid "Generate" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:67 +#: src/Module/Settings/TwoFactor/Index.php:68 msgid "Two-factor authentication successfully disabled." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:88 -msgid "Wrong Password" -msgstr "Неправилна парола" - -#: src/Module/Settings/TwoFactor/Index.php:108 +#: src/Module/Settings/TwoFactor/Index.php:120 msgid "" "

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

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:112 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Authenticator app" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:113 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:113 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Not Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:114 +#: src/Module/Settings/TwoFactor/Index.php:126 msgid "

    You haven't finished configuring your authenticator app.

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:115 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "

    Your authenticator app is correctly configured.

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:117 +#: src/Module/Settings/TwoFactor/Index.php:129 msgid "Recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Index.php:130 msgid "Remaining valid codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:120 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "" "

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

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:122 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:123 +#: src/Module/Settings/TwoFactor/Index.php:135 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "" "

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

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:128 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "Current password:" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:128 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:129 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "Enable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:130 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Disable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:131 +#: src/Module/Settings/TwoFactor/Index.php:143 msgid "Show recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:132 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:145 +msgid "Manage trusted browsers" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:80 msgid "New recovery codes successfully generated." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:92 +#: src/Module/Settings/TwoFactor/Recovery.php:106 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:94 +#: src/Module/Settings/TwoFactor/Recovery.php:108 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 " @@ -9706,25 +10823,68 @@ msgid "" "account.

    " msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Recovery.php:110 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:97 +#: src/Module/Settings/TwoFactor/Recovery.php:111 msgid "Generate new recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:99 +#: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "Next: Verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:78 +#: src/Module/Settings/TwoFactor/Trusted.php:84 +msgid "Trusted browsers successfully removed." +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:94 +msgid "Trusted browser successfully removed." +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:136 +msgid "Two-factor Trusted Browsers" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:137 +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 "" + +#: src/Module/Settings/TwoFactor/Trusted.php:138 +msgid "Device" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:139 +msgid "OS" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:141 +msgid "Trusted" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:142 +msgid "Created At" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:143 +msgid "Last Use" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:145 +msgid "Remove All" +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:91 msgid "Two-factor authentication successfully activated." msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:111 +#: src/Module/Settings/TwoFactor/Verify.php:125 #, php-format msgid "" "

    Or you can submit the authentication settings manually:

    \n" @@ -9744,127 +10904,105 @@ msgid "" "" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:131 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Two-factor code verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:133 +#: src/Module/Settings/TwoFactor/Verify.php:147 msgid "" "

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

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

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

    %s

    " msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:142 +#: src/Module/Settings/TwoFactor/Verify.php:156 msgid "Verify code and enable two-factor authentication" msgstr "" -#: src/Module/Settings/UserExport.php:59 +#: src/Module/Settings/UserExport.php:90 msgid "Export account" msgstr "" -#: src/Module/Settings/UserExport.php:59 +#: src/Module/Settings/UserExport.php:90 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 "" -#: src/Module/Settings/UserExport.php:60 +#: src/Module/Settings/UserExport.php:91 msgid "Export all" msgstr "Изнасяне на всичко" -#: src/Module/Settings/UserExport.php:60 +#: src/Module/Settings/UserExport.php:91 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 "" -#: src/Module/Settings/UserExport.php:61 +#: src/Module/Settings/UserExport.php:92 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:61 +#: src/Module/Settings/UserExport.php:92 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/HTTPException.php:49 -msgid "Bad Request" +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/HTTPException.php:50 -msgid "Unauthorized" +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/HTTPException.php:51 -msgid "Forbidden" -msgstr "" - -#: src/Module/Special/HTTPException.php:52 -msgid "Not Found" -msgstr "Не е намерено" - -#: src/Module/Special/HTTPException.php:53 -msgid "Internal Server Error" -msgstr "" - -#: src/Module/Special/HTTPException.php:54 -msgid "Service Unavailable" -msgstr "" - -#: src/Module/Special/HTTPException.php:61 +#: src/Module/Special/DisplayNotFound.php:37 msgid "" -"The server cannot or will not process the request due to an apparent client " -"error." +"This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/HTTPException.php:62 +#: src/Module/Special/DisplayNotFound.php:38 msgid "" -"Authentication is required and has failed or has not yet been provided." +"You have ignored or blocked the top-level author or the author of the shared" +" post." msgstr "" -#: src/Module/Special/HTTPException.php:63 +#: src/Module/Special/DisplayNotFound.php:39 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." +"You have ignored the top-level author's server or the shared post author's " +"server." msgstr "" -#: src/Module/Special/HTTPException.php:64 -msgid "" -"The requested resource could not be found but may be available in the " -"future." +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/HTTPException.php:65 -msgid "" -"An unexpected condition was encountered and no more specific message is " -"suitable." +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/HTTPException.php:66 -msgid "" -"The server is currently unavailable (because it is overloaded or down for " -"maintenance). Please try again later." +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:76 +#: src/Module/Special/HTTPException.php:78 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:80 +#: src/Module/Special/HTTPException.php:83 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:46 src/Module/Tos.php:88 +#: src/Module/Tos.php:58 src/Module/Tos.php:107 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" @@ -9877,28 +11015,107 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:47 src/Module/Tos.php:89 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 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 "" -#: src/Module/Tos.php:48 src/Module/Tos.php:90 +#: src/Module/Tos.php:60 src/Module/Tos.php:109 #, 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." +"href=\"%1$s/settings/removeme\">%1$s/settings/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 "" -#: src/Module/Tos.php:51 src/Module/Tos.php:87 +#: src/Module/Tos.php:63 src/Module/Tos.php:106 msgid "Privacy Statement" msgstr "" +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "" + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "" + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "" + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "" + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "" + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "" + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "Грешка при създаване на потребителя" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "Грешка при създаване профила на потребителя" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "" + #: src/Module/Welcome.php:44 msgid "Welcome to Friendica" msgstr "Добре дошли да Friendica" @@ -10029,15 +11246,15 @@ msgid "" msgstr "На страничния панел на страницата \"Контакти\" са няколко инструмента, да намерите нови приятели. Ние можем да съчетаем хора по интереси, потърсете хора по име или интерес, и да предостави предложения на базата на мрежови връзки. На чисто нов сайт, приятел предложения ще обикновено започват да се населена в рамките на 24 часа." #: src/Module/Welcome.php:77 -msgid "Group Your Contacts" +msgid "Add Your Contacts To Circle" msgstr "" #: 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 "След като сте направили някои приятели, да ги организирате в групи от частния разговор от страничната лента на страницата с контакти и след това можете да взаимодействате с всяка група частно във вашата мрежа." +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "" #: src/Module/Welcome.php:80 msgid "Why Aren't My Posts Public?" @@ -10064,355 +11281,787 @@ msgid "" " features and resources." msgstr "Нашата помощ страницата може да бъде консултиран за подробности относно други характеристики, програма и ресурси." -#: src/Object/EMail/ItemCCEMail.php:39 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +msgid "{0} wants to follow you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +msgid "{0} has started following you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#, php-format +msgid "%s liked %s's post" +msgstr "%s харесва %s е след" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s не харесвал %s е след" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#, php-format +msgid "%s is attending %s's event" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#, php-format +msgid "%s is not attending %s's event" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#, php-format +msgid "%s may attending %s's event" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s вече е приятел с %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s коментира %s е след" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#, php-format +msgid "%s created a new post" +msgstr "%s създаден нов пост" + +#: src/Navigation/Notifications/Factory/Introduction.php:133 +msgid "Friend Suggestion" +msgstr "Приятел за предложения" + +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "Friend/Connect Request" +msgstr "Приятел / заявка за свързване" + +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "New Follower" +msgstr "Нов последовател" + +#: src/Navigation/Notifications/Factory/Notification.php:134 +#, php-format +msgid "%1$s wants to follow you" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:136 +#, php-format +msgid "%1$s has started following you" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:208 +#, php-format +msgid "%1$s liked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:211 +#, php-format +msgid "%1$s liked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:218 +#, php-format +msgid "%1$s disliked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:221 +#, php-format +msgid "%1$s disliked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:228 +#, php-format +msgid "%1$s shared your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 +#, php-format +msgid "%1$s shared your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:235 +#: src/Navigation/Notifications/Factory/Notification.php:305 +#, php-format +msgid "%1$s shared the post %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:237 +#: src/Navigation/Notifications/Factory/Notification.php:307 +#, php-format +msgid "%1$s shared a post from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:239 +#: src/Navigation/Notifications/Factory/Notification.php:309 +#, php-format +msgid "%1$s shared the post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:311 +#, php-format +msgid "%1$s shared a post" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:249 +#, php-format +msgid "%1$s wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:256 +#, php-format +msgid "%1$s does not want to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:263 +#, php-format +msgid "%1$s maybe wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:270 +#, php-format +msgid "%1$s tagged you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:274 +#, php-format +msgid "%1$s replied to you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:278 +#, php-format +msgid "%1$s commented in your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:282 +#, php-format +msgid "%1$s commented on your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:289 +#, php-format +msgid "%1$s commented in their thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:291 +#, php-format +msgid "%1$s commented in their thread" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:293 +#, php-format +msgid "%1$s commented in the thread %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:295 +#, php-format +msgid "%1$s commented in the thread from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:300 +#, php-format +msgid "%1$s commented on your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 +msgid "[Friendica:Notify]" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:293 +#, php-format +msgid "%s New mail received at %s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:295 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s в %2$s ви изпрати ново лично съобщение ." + +#: src/Navigation/Notifications/Repository/Notify.php:296 +msgid "a private message" +msgstr "лично съобщение" + +#: src/Navigation/Notifications/Repository/Notify.php:296 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "Ви изпрати %2$s %1$s %2$s ." + +#: src/Navigation/Notifications/Repository/Notify.php:298 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Моля, посетете %s да видите и / или да отговорите на Вашите лични съобщения." + +#: src/Navigation/Notifications/Repository/Notify.php:328 +#, php-format +msgid "%1$s commented on %2$s's %3$s %4$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:333 +#, php-format +msgid "%1$s commented on your %2$s %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:337 +#, php-format +msgid "%1$s commented on their %2$s %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 +#, php-format +msgid "%1$s Comment to conversation #%2$d by %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:343 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s коментира артикул / разговор, който са били." + +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Моля, посетете %s да видите и / или да отговорите на разговор." + +#: src/Navigation/Notifications/Repository/Notify.php:354 +#, php-format +msgid "%s %s posted to your profile wall" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:356 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s публикуван вашия профил стена при %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:357 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:370 +#, php-format +msgid "%s Introduction received" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:372 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Получили сте въведения от %1$s в %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:373 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Получили сте [URL = %1$s ] въведение [/ URL] от %2$s ." + +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Можете да посетите техния профил в %s" + +#: src/Navigation/Notifications/Repository/Notify.php:380 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Моля, посетете %s да одобри или да отхвърли въвеждането." + +#: src/Navigation/Notifications/Repository/Notify.php:387 +#, php-format +msgid "%s A new person is sharing with you" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:397 +#, php-format +msgid "%s You have a new follower" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:413 +#, php-format +msgid "%s Friend suggestion received" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:415 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Получили сте приятел предложение от %1$s в %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:416 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Получили сте [URL = %1$s ] предложение приятел [/ URL] %2$s от %3$s ." + +#: src/Navigation/Notifications/Repository/Notify.php:422 +msgid "Name:" +msgstr "Наименование:" + +#: src/Navigation/Notifications/Repository/Notify.php:423 +msgid "Photo:" +msgstr "Снимка:" + +#: src/Navigation/Notifications/Repository/Notify.php:426 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Моля, посетете %s да одобри или отхвърли предложението." + +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 +#, php-format +msgid "%s Connection accepted" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:442 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:444 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:457 +#, php-format +msgid "" +"'%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." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:459 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:461 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:471 +msgid "registration request" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:473 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:474 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 +#, php-format +msgid "" +"Full Name:\t%s\n" +"Site Location:\t%s\n" +"Login Name:\t%s (%s)" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:485 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:780 +#, php-format +msgid "%s %s tagged you" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:783 +#, php-format +msgid "%s %s shared a new post" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "" + +#: src/Object/EMail/ItemCCEMail.php:42 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Това съобщение е изпратено до вас от %s , член на социалната мрежа на Friendica." -#: src/Object/EMail/ItemCCEMail.php:41 +#: src/Object/EMail/ItemCCEMail.php:44 #, php-format msgid "You may visit them online at %s" msgstr "Можете да ги посетите онлайн на адрес %s" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:45 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Моля, свържете се с подателя, като отговори на този пост, ако не желаете да получавате тези съобщения." -#: src/Object/EMail/ItemCCEMail.php:46 +#: src/Object/EMail/ItemCCEMail.php:49 #, php-format msgid "%s posted an update." msgstr "%s е публикувал актуализация." -#: src/Object/Post.php:148 -msgid "This entry was edited" -msgstr "Записът е редактиран" - -#: src/Object/Post.php:176 +#: src/Object/Post.php:138 msgid "Private Message" msgstr "Лично съобщение" -#: src/Object/Post.php:221 -msgid "pinned item" +#: src/Object/Post.php:142 +msgid "Public Message" msgstr "" -#: src/Object/Post.php:226 -msgid "Delete locally" +#: src/Object/Post.php:146 +msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:229 +#: src/Object/Post.php:181 +msgid "This entry was edited" +msgstr "Записът е редактиран" + +#: src/Object/Post.php:209 +msgid "Connector Message" +msgstr "" + +#: src/Object/Post.php:225 src/Object/Post.php:227 +msgid "Edit" +msgstr "Редактиране" + +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "" -#: src/Object/Post.php:229 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "" -#: src/Object/Post.php:243 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:248 -msgid "save to folder" -msgstr "запишете в папка" +#: src/Object/Post.php:273 +#, php-format +msgid "Ignore %s" +msgstr "" -#: src/Object/Post.php:283 +#: src/Object/Post.php:278 +#, php-format +msgid "Collapse %s" +msgstr "" + +#: src/Object/Post.php:282 +msgid "Report post" +msgstr "" + +#: src/Object/Post.php:293 +msgid "Save to folder" +msgstr "" + +#: src/Object/Post.php:333 msgid "I will attend" msgstr "" -#: src/Object/Post.php:283 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "" -#: src/Object/Post.php:283 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "" -#: src/Object/Post.php:313 -msgid "ignore thread" +#: src/Object/Post.php:363 +msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:314 -msgid "unignore thread" +#: src/Object/Post.php:364 +msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:315 -msgid "toggle ignore status" +#: src/Object/Post.php:365 +msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:327 -msgid "pin" +#: src/Object/Post.php:375 +msgid "Add star" msgstr "" -#: src/Object/Post.php:328 -msgid "unpin" +#: src/Object/Post.php:376 +msgid "Remove star" msgstr "" -#: src/Object/Post.php:329 -msgid "toggle pin status" +#: src/Object/Post.php:377 +msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:332 -msgid "pinned" +#: src/Object/Post.php:388 +msgid "Pin" msgstr "" -#: src/Object/Post.php:339 -msgid "add star" -msgstr "Добавяне на звезда" +#: src/Object/Post.php:389 +msgid "Unpin" +msgstr "" -#: src/Object/Post.php:340 -msgid "remove star" -msgstr "Премахване на звездата" +#: src/Object/Post.php:390 +msgid "Toggle pin status" +msgstr "" -#: src/Object/Post.php:341 -msgid "toggle star status" -msgstr "превключване звезда статус" +#: src/Object/Post.php:393 +msgid "Pinned" +msgstr "" -#: src/Object/Post.php:344 -msgid "starred" -msgstr "звезда" +#: src/Object/Post.php:398 +msgid "Add tag" +msgstr "" -#: src/Object/Post.php:348 -msgid "add tag" -msgstr "добавяне на етикет" - -#: src/Object/Post.php:358 -msgid "like" -msgstr "харесвам" - -#: src/Object/Post.php:359 -msgid "dislike" -msgstr "не харесвам" - -#: src/Object/Post.php:361 +#: src/Object/Post.php:411 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:361 +#: src/Object/Post.php:411 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:364 +#: src/Object/Post.php:414 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:364 +#: src/Object/Post.php:414 msgid "Reshare" msgstr "" -#: src/Object/Post.php:365 +#: src/Object/Post.php:415 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:365 +#: src/Object/Post.php:415 msgid "Unshare" msgstr "" -#: src/Object/Post.php:410 +#: src/Object/Post.php:466 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:415 +#: src/Object/Post.php:472 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:415 -msgid "remote comment" +#: src/Object/Post.php:472 +msgid "Remote comment" msgstr "" -#: src/Object/Post.php:427 -msgid "Pushed" +#: src/Object/Post.php:494 +msgid "Share via ..." msgstr "" -#: src/Object/Post.php:427 -msgid "Pulled" +#: src/Object/Post.php:494 +msgid "Share via external services" msgstr "" -#: src/Object/Post.php:459 +#: src/Object/Post.php:523 msgid "to" msgstr "за" -#: src/Object/Post.php:460 +#: src/Object/Post.php:524 msgid "via" msgstr "" -#: src/Object/Post.php:461 +#: src/Object/Post.php:525 msgid "Wall-to-Wall" msgstr "От стена до стена" -#: src/Object/Post.php:462 +#: src/Object/Post.php:526 msgid "via Wall-To-Wall:" msgstr "чрез стена до стена:" -#: src/Object/Post.php:500 +#: src/Object/Post.php:573 #, php-format msgid "Reply to %s" msgstr "" -#: src/Object/Post.php:503 +#: src/Object/Post.php:576 msgid "More" msgstr "" -#: src/Object/Post.php:521 +#: src/Object/Post.php:595 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:522 +#: src/Object/Post.php:596 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:523 +#: src/Object/Post.php:597 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:524 +#: src/Object/Post.php:598 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:525 +#: src/Object/Post.php:599 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:545 +#: src/Object/Post.php:619 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: src/Object/Post.php:546 +#: src/Object/Post.php:620 msgid "Show more" msgstr "" -#: src/Object/Post.php:547 +#: src/Object/Post.php:621 msgid "Show fewer" msgstr "" -#: src/Protocol/Diaspora.php:3424 -msgid "Attachments:" -msgstr "Приложения" +#: src/Object/Post.php:657 +#, php-format +msgid "Reshared by: %s" +msgstr "" -#: src/Protocol/OStatus.php:1760 +#: src/Object/Post.php:662 +#, php-format +msgid "Viewed by: %s" +msgstr "" + +#: src/Object/Post.php:667 +#, php-format +msgid "Liked by: %s" +msgstr "" + +#: src/Object/Post.php:672 +#, php-format +msgid "Disliked by: %s" +msgstr "" + +#: src/Object/Post.php:677 +#, php-format +msgid "Attended by: %s" +msgstr "" + +#: src/Object/Post.php:682 +#, php-format +msgid "Maybe attended by: %s" +msgstr "" + +#: src/Object/Post.php:687 +#, php-format +msgid "Not attended by: %s" +msgstr "" + +#: src/Object/Post.php:692 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "" + +#: src/Protocol/OStatus.php:1390 #, php-format msgid "%s is now following %s." msgstr "" -#: src/Protocol/OStatus.php:1761 +#: src/Protocol/OStatus.php:1391 msgid "following" msgstr "следните условия:" -#: src/Protocol/OStatus.php:1764 +#: src/Protocol/OStatus.php:1394 #, php-format msgid "%s stopped following %s." msgstr "" -#: src/Protocol/OStatus.php:1765 +#: src/Protocol/OStatus.php:1395 msgid "stopped following" msgstr "спря след" -#: src/Render/FriendicaSmartyEngine.php:52 -msgid "The folder view/smarty3/ must be writable by webserver." +#: src/Render/FriendicaSmartyEngine.php:56 +#, php-format +msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Repository/ProfileField.php:275 -msgid "Hometown:" -msgstr "Hometown:" - -#: src/Repository/ProfileField.php:276 -msgid "Marital Status:" -msgstr "" - -#: src/Repository/ProfileField.php:277 -msgid "With:" -msgstr "" - -#: src/Repository/ProfileField.php:278 -msgid "Since:" -msgstr "" - -#: src/Repository/ProfileField.php:279 -msgid "Sexual Preference:" -msgstr "Сексуални предпочитания:" - -#: src/Repository/ProfileField.php:280 -msgid "Political Views:" -msgstr "Политически възгледи:" - -#: src/Repository/ProfileField.php:281 -msgid "Religious Views:" -msgstr "Религиозни възгледи:" - -#: src/Repository/ProfileField.php:282 -msgid "Likes:" -msgstr "Харесвания:" - -#: src/Repository/ProfileField.php:283 -msgid "Dislikes:" -msgstr "Нехаресвания:" - -#: src/Repository/ProfileField.php:284 -msgid "Title/Description:" -msgstr "Наименование/Описание" - -#: src/Repository/ProfileField.php:286 -msgid "Musical interests" -msgstr "Музикални интереси" - -#: src/Repository/ProfileField.php:287 -msgid "Books, literature" -msgstr "Книги, литература" - -#: src/Repository/ProfileField.php:288 -msgid "Television" -msgstr "Телевизия" - -#: src/Repository/ProfileField.php:289 -msgid "Film/dance/culture/entertainment" -msgstr "Филм / танц / Култура / забавления" - -#: src/Repository/ProfileField.php:290 -msgid "Hobbies/Interests" -msgstr "Хобита / интереси" - -#: src/Repository/ProfileField.php:291 -msgid "Love/romance" -msgstr "Любов / романтика" - -#: src/Repository/ProfileField.php:292 -msgid "Work/employment" -msgstr "Работа / заетост" - -#: src/Repository/ProfileField.php:293 -msgid "School/education" -msgstr "Училище / образование" - -#: src/Repository/ProfileField.php:294 -msgid "Contact information and Social Networks" -msgstr "Информация за контакти и социални мрежи" - -#: src/Security/Authentication.php:210 src/Security/Authentication.php:262 +#: src/Security/Authentication.php:227 msgid "Login failed." msgstr "Влез не успя." -#: src/Security/Authentication.php:273 +#: src/Security/Authentication.php:272 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:389 +#: src/Security/Authentication.php:391 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:390 +#: src/Security/Authentication.php:392 msgid "Please upload a profile photo." msgstr "Моля, да качите снимка профил." -#: src/Util/EMailer/MailBuilder.php:259 +#: src/Util/EMailer/MailBuilder.php:260 msgid "Friendica Notification" msgstr "" @@ -10435,330 +12084,354 @@ msgstr "" msgid "thanks" msgstr "" -#: src/Util/Temporal.php:167 +#: src/Util/Temporal.php:172 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:314 +#: src/Util/Temporal.php:280 +#, php-format +msgid "Time zone: %s Change in Settings" +msgstr "" + +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 msgid "never" msgstr "" -#: src/Util/Temporal.php:321 +#: src/Util/Temporal.php:343 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:329 +#: src/Util/Temporal.php:352 msgid "year" msgstr "" -#: src/Util/Temporal.php:329 +#: src/Util/Temporal.php:352 msgid "years" msgstr "" -#: src/Util/Temporal.php:330 +#: src/Util/Temporal.php:353 msgid "months" msgstr "" -#: src/Util/Temporal.php:331 +#: src/Util/Temporal.php:354 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:332 +#: src/Util/Temporal.php:355 msgid "days" msgstr "" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:356 msgid "hour" msgstr "" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:356 msgid "hours" msgstr "" -#: src/Util/Temporal.php:334 +#: src/Util/Temporal.php:357 msgid "minute" msgstr "" -#: src/Util/Temporal.php:334 +#: src/Util/Temporal.php:357 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:335 +#: src/Util/Temporal.php:358 msgid "second" msgstr "" -#: src/Util/Temporal.php:335 +#: src/Util/Temporal.php:358 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:345 +#: src/Util/Temporal.php:367 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:348 +#: src/Util/Temporal.php:370 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/Delivery.php:566 -msgid "(no subject)" +#: src/Worker/PushSubscription.php:110 +msgid "Notification from Friendica" msgstr "" -#: view/theme/duepuntozero/config.php:52 +#: src/Worker/PushSubscription.php:111 +msgid "Empty Post" +msgstr "" + +#: view/theme/duepuntozero/config.php:68 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:53 +#: view/theme/duepuntozero/config.php:69 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:54 +#: view/theme/duepuntozero/config.php:70 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:55 +#: view/theme/duepuntozero/config.php:71 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:56 +#: view/theme/duepuntozero/config.php:72 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:57 +#: view/theme/duepuntozero/config.php:73 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:58 +#: view/theme/duepuntozero/config.php:74 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:87 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:142 +#: view/theme/frio/config.php:153 msgid "Light (Accented)" msgstr "" -#: view/theme/frio/config.php:143 +#: view/theme/frio/config.php:154 msgid "Dark (Accented)" msgstr "" -#: view/theme/frio/config.php:144 +#: view/theme/frio/config.php:155 msgid "Black (Accented)" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Note" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:162 +#: view/theme/frio/config.php:173 msgid "Custom" msgstr "" -#: view/theme/frio/config.php:163 +#: view/theme/frio/config.php:174 msgid "Legacy" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:175 msgid "Accented" msgstr "" -#: view/theme/frio/config.php:165 +#: view/theme/frio/config.php:176 msgid "Select color scheme" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Select scheme accent" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Red" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Green" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:179 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:169 +#: view/theme/frio/config.php:180 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:170 +#: view/theme/frio/config.php:181 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:171 +#: view/theme/frio/config.php:182 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:183 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:173 +#: view/theme/frio/config.php:184 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:174 +#: view/theme/frio/config.php:185 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "" + +#: view/theme/frio/config.php:192 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:38 -msgid "Skip to main content" -msgstr "" - -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:39 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:39 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:40 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:40 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:41 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:41 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:43 +#: view/theme/frio/php/Image.php:42 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:43 +#: view/theme/frio/php/Image.php:42 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/theme.php:207 +#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +msgid "Skip to main content" +msgstr "" + +#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +msgid "Back to top" +msgstr "" + +#: view/theme/frio/theme.php:211 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:210 +#: view/theme/frio/theme.php:214 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:74 +#: view/theme/quattro/config.php:90 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:75 +#: view/theme/quattro/config.php:91 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:76 +#: view/theme/quattro/config.php:92 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "show" msgstr "" -#: view/theme/vier/config.php:121 +#: view/theme/vier/config.php:137 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:122 +#: view/theme/vier/config.php:138 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:125 +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:124 +#: view/theme/vier/config.php:140 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:296 +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:126 +#: view/theme/vier/config.php:142 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:152 +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:211 +#: view/theme/vier/theme.php:234 msgid "Quick Start" msgstr "" diff --git a/view/lang/bg/strings.php b/view/lang/bg/strings.php index 13948b328..ae11c1475 100644 --- a/view/lang/bg/strings.php +++ b/view/lang/bg/strings.php @@ -5,188 +5,10 @@ function string_plural_select_bg($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Дневният лимит от %dпост е достигнат. Постът беше отхвърлен.', - 1 => 'Дневният лимит от %d поста е достигнат. Постът беше отхвърлен.', -]; -$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Седмичният лимит от %d пост е достигнат. Постът беше отказан.', - 1 => 'Седмичният лимит от %d поста е достигнат. Постът беше отказан.', -]; -$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = 'Месечният лимит от %d пост е достигнат. Постът беше отказан.'; -$a->strings['Profile Photos'] = 'Снимка на профила'; -$a->strings['event'] = 'събитието.'; -$a->strings['status'] = 'статус'; -$a->strings['photo'] = 'снимка'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s сложи етикет с %2$s - %3$s %4$s'; -$a->strings['Select'] = 'избор'; -$a->strings['Delete'] = 'Изтриване'; -$a->strings['View %s\'s profile @ %s'] = 'Преглед профила на %s в %s'; -$a->strings['Categories:'] = 'Категории:'; -$a->strings['Filed under:'] = 'Записано в:'; -$a->strings['%s from %s'] = '%s от %s'; -$a->strings['View in context'] = 'Поглед в контекста'; -$a->strings['Please wait'] = 'Моля, изчакайте'; -$a->strings['remove'] = 'Премахване'; -$a->strings['Delete Selected Items'] = 'Изтриване на избраните елементи'; -$a->strings['Stored'] = 'запазено'; -$a->strings['View Status'] = 'Показване на състоянието'; -$a->strings['View Profile'] = 'Преглед на профил'; -$a->strings['View Photos'] = 'Вижте снимки'; -$a->strings['Network Posts'] = 'Мрежови Мнения'; -$a->strings['View Contact'] = 'Преглед на Контакта'; -$a->strings['Send PM'] = 'Изпратете PM'; -$a->strings['Block'] = 'Блокиране'; -$a->strings['Ignore'] = 'Пренебрегване'; -$a->strings['Languages'] = 'Езици'; -$a->strings['Poke'] = 'Сръчкай'; -$a->strings['Connect/Follow'] = 'Свържете се / последваща'; -$a->strings['%s likes this.'] = '%s харесва това.'; -$a->strings['%s doesn\'t like this.'] = '%s не харесва това.'; -$a->strings['and'] = 'и'; -$a->strings['Visible to everybody'] = 'Видим всички '; -$a->strings['Tag term:'] = 'Tag термин:'; -$a->strings['Save to Folder:'] = 'Запиши в папка:'; -$a->strings['Where are you right now?'] = 'Къде сте в момента?'; -$a->strings['New Post'] = 'Нов пост'; -$a->strings['Share'] = 'Споделяне'; -$a->strings['Loading...'] = 'Зареждане...'; -$a->strings['Upload photo'] = 'Качване на снимка'; -$a->strings['upload photo'] = 'качване на снимка'; -$a->strings['Attach file'] = 'Прикачване на файл'; -$a->strings['attach file'] = 'Прикачване на файл'; -$a->strings['Bold'] = 'Получер'; -$a->strings['Italic'] = 'Курсив'; -$a->strings['Underline'] = 'Подчертан'; -$a->strings['Quote'] = 'Цитат'; -$a->strings['Code'] = 'Код'; -$a->strings['Image'] = 'Изображение'; -$a->strings['Link'] = 'Връзка'; -$a->strings['Set your location'] = 'Задайте местоположението си'; -$a->strings['set location'] = 'Задаване на местоположението'; -$a->strings['Clear browser location'] = 'Изчистване на браузъра място'; -$a->strings['clear location'] = 'ясно място'; -$a->strings['Set title'] = 'Задайте заглавие'; -$a->strings['Categories (comma-separated list)'] = 'Категории (разделен със запетаи списък)'; -$a->strings['Permission settings'] = 'Настройките за достъп'; -$a->strings['Permissions'] = 'права'; -$a->strings['Public post'] = 'Обществена длъжност'; -$a->strings['Preview'] = 'Преглед'; -$a->strings['Cancel'] = 'Отмени'; -$a->strings['Message'] = 'Съобщение'; -$a->strings['Browser'] = 'Браузър'; -$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s в %2$s ви изпрати ново лично съобщение .'; -$a->strings['a private message'] = 'лично съобщение'; -$a->strings['%1$s sent you %2$s.'] = 'Ви изпрати %2$s %1$s %2$s .'; -$a->strings['Please visit %s to view and/or reply to your private messages.'] = 'Моля, посетете %s да видите и / или да отговорите на Вашите лични съобщения.'; -$a->strings['%1$s tagged you at %2$s'] = '%1$s те маркира при %2$s'; -$a->strings['%s commented on an item/conversation you have been following.'] = '%s коментира артикул / разговор, който са били.'; -$a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Моля, посетете %s да видите и / или да отговорите на разговор.'; -$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s публикуван вашия профил стена при %2$s'; -$a->strings['%1$s tagged your post at %2$s'] = '%1$s маркира твоя пост в %2$s'; -$a->strings['%1$s tagged [url=%2$s]your post[/url]'] = '%1$s маркира [URL = %2$s ] Публикацията ви [/ URL]'; -$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Получили сте въведения от %1$s в %2$s'; -$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Получили сте [URL = %1$s ] въведение [/ URL] от %2$s .'; -$a->strings['You may visit their profile at %s'] = 'Можете да посетите техния профил в %s'; -$a->strings['Please visit %s to approve or reject the introduction.'] = 'Моля, посетете %s да одобри или да отхвърли въвеждането.'; -$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = 'Получили сте приятел предложение от %1$s в %2$s'; -$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = 'Получили сте [URL = %1$s ] предложение приятел [/ URL] %2$s от %3$s .'; -$a->strings['Name:'] = 'Наименование:'; -$a->strings['Photo:'] = 'Снимка:'; -$a->strings['Please visit %s to approve or reject the suggestion.'] = 'Моля, посетете %s да одобри или отхвърли предложението.'; -$a->strings['Permission denied.'] = 'Разрешението е отказано.'; -$a->strings['Authorize application connection'] = 'Разрешава връзка с прилагането'; -$a->strings['Return to your app and insert this Securty Code:'] = 'Назад към приложението ти и поставите този Securty код:'; -$a->strings['Please login to continue.'] = 'Моля, влезте, за да продължите.'; -$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Искате ли да се разреши това приложение за достъп до вашите мнения и контакти, и / или създаване на нови длъжности за вас?'; -$a->strings['Yes'] = 'Yes'; -$a->strings['No'] = 'Не'; -$a->strings['Access denied.'] = 'Отказан достъп.'; -$a->strings['Access to this profile has been restricted.'] = 'Достъпът до този профил е ограничен.'; -$a->strings['Events'] = 'Събития'; -$a->strings['Previous'] = 'Предишна'; -$a->strings['Next'] = 'Следваща'; -$a->strings['month'] = 'месец.'; -$a->strings['week'] = 'седмица'; -$a->strings['day'] = 'Ден:'; -$a->strings['Profile not found.'] = 'Профил не е намерен.'; -$a->strings['Contact not found.'] = 'Контактът не е намерен.'; -$a->strings['This may occasionally happen if contact was requested by both persons and it has already been approved.'] = 'Това понякога може да се случи, ако контакт е поискано от двете лица и вече е одобрен.'; -$a->strings['Response from remote site was not understood.'] = 'Отговор от отдалечен сайт не е бил разбран.'; -$a->strings['Unexpected response from remote site: '] = 'Неочакван отговор от отдалечения сайт: '; -$a->strings['Confirmation completed successfully.'] = 'Потвърждение приключи успешно.'; -$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['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.'] = 'Site публичния ключ не е наличен в контакт рекорд за %s URL .'; -$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'ID, предоставена от вашата система, е дубликат на нашата система. Той трябва да работи, ако се опитате отново.'; -$a->strings['Unable to set your contact credentials on our system.'] = 'Не може да се установи контакт с вас пълномощията на нашата система.'; -$a->strings['Unable to update your contact profile details on our system'] = 'Не може да актуализирате вашите данни за контакт на профил в нашата система'; -$a->strings['This introduction has already been accepted.'] = 'Това въведение е вече е приета.'; -$a->strings['Profile location is not valid or does not contain profile information.'] = 'Профил местоположение не е валиден или не съдържа информация на профила.'; -$a->strings['Warning: profile location has no identifiable owner name.'] = 'Внимание: профила място има няма установен име на собственика.'; -$a->strings['Warning: profile location has no profile photo.'] = 'Внимание: профила местоположение не е снимката на профила.'; -$a->strings['Introduction complete.'] = 'Въведение завърши.'; -$a->strings['Unrecoverable protocol error.'] = 'Невъзстановима протокол грешка.'; -$a->strings['Profile unavailable.'] = 'Профил недостъпни.'; -$a->strings['%s has received too many connection requests today.'] = '%s е получил твърде много заявки за свързване днес.'; -$a->strings['Spam protection measures have been invoked.'] = 'Мерките за защита срещу спам да бъдат изтъкнати.'; -$a->strings['Friends are advised to please try again in 24 hours.'] = 'Приятели се препоръчва да се моля опитайте отново в рамките на 24 часа.'; -$a->strings['Invalid locator'] = 'Невалиден локатор'; -$a->strings['You have already introduced yourself here.'] = 'Вие вече се въведе тук.'; -$a->strings['Apparently you are already friends with %s.'] = 'Явно вече сте приятели с %s .'; -$a->strings['Invalid profile URL.'] = 'Невалиден URL адрес на профила.'; -$a->strings['Disallowed profile URL.'] = 'Отхвърлен профила URL.'; -$a->strings['Failed to update contact record.'] = 'Неуспех да се актуализира рекорд за контакт.'; -$a->strings['Your introduction has been sent.'] = 'Вашият въвеждането е било изпратено.'; -$a->strings['Please login to confirm introduction.'] = 'Моля, влезте, за да потвърди въвеждането.'; -$a->strings['Incorrect identity currently logged in. Please login to this profile.'] = 'Неправилно идентичност, който в момента е логнат. Моля, влезте с потребителско име и парола на този профил .'; -$a->strings['Confirm'] = 'Потвърждаване'; -$a->strings['Hide this contact'] = 'Скриване на този контакт'; -$a->strings['Welcome home %s.'] = 'Добре дошли у дома %s .'; -$a->strings['Please confirm your introduction/connection request to %s.'] = 'Моля, потвърдете, въвеждане / заявката за свързване към %s .'; -$a->strings['Public access denied.'] = 'Публичен достъп отказан.'; -$a->strings['Friend/Connection Request'] = 'Приятел / заявка за връзка'; -$a->strings['Please answer the following:'] = 'Моля отговорете на следните:'; -$a->strings['Submit Request'] = 'Изпращане на заявката'; -$a->strings['Add a personal note:'] = 'Добавяне на лична бележка:'; -$a->strings['Item not found'] = 'Елемент не е намерена'; -$a->strings['Edit post'] = 'Редактиране на мнение'; -$a->strings['Save'] = 'Запази'; -$a->strings['Insert web link'] = 'Вмъкване на връзка в Мрежата'; -$a->strings['web link'] = 'Уеб-линк'; -$a->strings['Insert video link'] = 'Поставете линка на видео'; -$a->strings['video link'] = 'видео връзка'; -$a->strings['Insert audio link'] = 'Поставете аудио връзка'; -$a->strings['audio link'] = 'аудио връзка'; -$a->strings['CC: email addresses'] = 'CC: имейл адреси'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Пример: bob@example.com, mary@example.com'; -$a->strings['Create New Event'] = 'Създаване на нов събитие'; -$a->strings['Event details'] = 'Подробности за събитието'; -$a->strings['Event Starts:'] = 'Събитие Започва:'; -$a->strings['Required'] = 'Задължително'; -$a->strings['Finish date/time is not known or not relevant'] = 'Завършете дата / час не е известен или не е приложимо'; -$a->strings['Event Finishes:'] = 'Събитие играчи:'; -$a->strings['Adjust for viewer timezone'] = 'Настрои зрителя часовата зона'; -$a->strings['Description:'] = 'Описание:'; -$a->strings['Location:'] = 'Място:'; -$a->strings['Title:'] = 'Заглавие:'; -$a->strings['Share this event'] = 'Споделете това събитие'; -$a->strings['Submit'] = 'Изпращане'; -$a->strings['Advanced'] = 'Напреднал'; -$a->strings['Photos'] = 'Снимки'; -$a->strings['Upload'] = 'Качете в Мрежата '; -$a->strings['Files'] = 'Файлове'; -$a->strings['Your Identity Address:'] = 'Адрес на вашата самоличност:'; -$a->strings['Tags:'] = 'Маркери:'; -$a->strings['Status Messages and Posts'] = 'Съобщения за състоянието и пощи'; $a->strings['Unable to locate original post.'] = 'Не може да се намери оригиналната публикация.'; $a->strings['Empty post discarded.'] = 'Empty мнение изхвърли.'; $a->strings['Item not found.'] = 'Елемент не е намерен.'; +$a->strings['Permission denied.'] = 'Разрешението е отказано.'; $a->strings['No valid account found.'] = 'Не е валиден акаунт.'; $a->strings['Password reset request issued. Check your email.'] = ', Издадено искане за възстановяване на паролата. Проверете Вашата електронна поща.'; $a->strings['Password reset requested at %s'] = 'Исканото за нулиране на паролата на %s'; @@ -201,10 +23,6 @@ $a->strings['Your new password is'] = 'Вашата нова парола е'; $a->strings['Save or copy your new password - and then'] = 'Запазване или копиране на новата си парола и след това'; $a->strings['click here to login'] = 'Кликнете тук за Вход'; $a->strings['Your password may be changed from the Settings page after successful login.'] = 'Вашата парола може да бъде променена от Настройки , След успешен вход.'; -$a->strings['first'] = 'Първа'; -$a->strings['next'] = 'следващ'; -$a->strings['No matches'] = 'Няма съответствия'; -$a->strings['Profile Match'] = 'Профил мач'; $a->strings['New Message'] = 'Ново съобщение'; $a->strings['No recipient selected.'] = 'Не е избран получател.'; $a->strings['Unable to locate contact information.'] = 'Не може да се намери информация за контакт.'; @@ -217,6 +35,10 @@ $a->strings['Send Private Message'] = 'Изпрати Лично Съобщен $a->strings['To:'] = 'До:'; $a->strings['Subject:'] = 'Относно:'; $a->strings['Your message:'] = 'Ваше съобщение'; +$a->strings['Upload photo'] = 'Качване на снимка'; +$a->strings['Insert web link'] = 'Вмъкване на връзка в Мрежата'; +$a->strings['Please wait'] = 'Моля, изчакайте'; +$a->strings['Submit'] = 'Изпращане'; $a->strings['No messages.'] = 'Няма съобщения.'; $a->strings['Message not available.'] = 'Съобщението не е посочена.'; $a->strings['Delete message'] = 'Изтриване на съобщение'; @@ -228,21 +50,21 @@ $a->strings['Unknown sender - %s'] = 'Непознат подател %s'; $a->strings['You and %s'] = 'Вие и %s'; $a->strings['%s and You'] = '%s'; $a->strings['Personal Notes'] = 'Личните бележки'; +$a->strings['Save'] = 'Запази'; $a->strings['Photo Albums'] = 'Фотоалбуми'; $a->strings['Recent Photos'] = 'Последни снимки'; $a->strings['Upload New Photos'] = 'Качване на нови снимки'; $a->strings['everybody'] = 'всички'; $a->strings['Contact information unavailable'] = 'Свържете се с информация недостъпна'; $a->strings['Album not found.'] = 'Албумът не е намерен.'; -$a->strings['Image file is empty.'] = 'Image файл е празен.'; -$a->strings['Unable to process image.'] = 'Не може да се обработи.'; -$a->strings['Image upload failed.'] = 'Image Upload неуспешно.'; +$a->strings['Public access denied.'] = 'Публичен достъп отказан.'; $a->strings['No photos selected'] = 'Няма избрани снимки'; -$a->strings['Access to this item is restricted.'] = 'Достъп до тази точка е ограничена.'; $a->strings['Upload Photos'] = 'Качване на снимки'; $a->strings['New album name: '] = 'Нов албум име: '; $a->strings['Do not show a status post for this upload'] = 'Да не се показва след статут за това качване'; +$a->strings['Permissions'] = 'права'; $a->strings['Delete Album'] = 'Изтриване на албума'; +$a->strings['Cancel'] = 'Отмени'; $a->strings['Edit Album'] = 'Редактиране на албум'; $a->strings['View Photo'] = 'Преглед на снимка'; $a->strings['Permission denied. Access to this item may be restricted.'] = 'Разрешението е отказано. Достъпът до тази точка може да бъде ограничено.'; @@ -261,68 +83,576 @@ $a->strings['Rotate CW (right)'] = 'Rotate CW (вдясно)'; $a->strings['Rotate CCW (left)'] = 'Завъртане ККО (вляво)'; $a->strings['This is you'] = 'Това сте вие'; $a->strings['Comment'] = 'Коментар'; +$a->strings['Preview'] = 'Преглед'; +$a->strings['Loading...'] = 'Зареждане...'; +$a->strings['Select'] = 'избор'; +$a->strings['Delete'] = 'Изтриване'; $a->strings['I like this (toggle)'] = 'Харесва ми това (смяна)'; $a->strings['I don\'t like this (toggle)'] = 'Не ми харесва това (смяна)'; -$a->strings['View Album'] = 'Вижте албуми'; -$a->strings['{0} wants to be your friend'] = '{0} иска да бъде твой приятел'; -$a->strings['{0} requested registration'] = '{0} исканата регистрация'; -$a->strings['Remove My Account'] = 'Извадете Моят профил'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Това ще премахне изцяло сметката си. След като това е направено, не е възстановим.'; -$a->strings['Please enter your password for verification:'] = 'Моля, въведете паролата си за проверка:'; -$a->strings['Missing some important data!'] = 'Липсват някои важни данни!'; -$a->strings['Update'] = 'Актуализиране'; -$a->strings['Failed to connect with email account using the settings provided.'] = 'Неуспех да се свърже с имейл акаунт, като използвате предоставените настройки.'; +$a->strings['Delete this item?'] = 'Изтриване на тази бележка?'; +$a->strings['Page not found.'] = 'Страницата не е намерена.'; +$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.'] = 'Маркера за сигурност не е вярна. Това вероятно е станало, тъй като формата е била отворена за прекалено дълго време (> 3 часа) преди да го представи.'; $a->strings['Password update failed. Please try again.'] = 'Парола актуализация се провали. Моля, опитайте отново.'; $a->strings['Password changed.'] = 'Парола промени.'; -$a->strings['Private forum has no privacy permissions. Using default privacy group.'] = 'Частен форум няма разрешения за неприкосновеността на личния живот. Използване подразбиране поверителност група.'; -$a->strings['Private forum has no privacy permissions and no default privacy group.'] = 'Частен форум няма разрешения за неприкосновеността на личния живот и никоя група по подразбиране неприкосновеността на личния живот.'; -$a->strings['Add application'] = 'Добави приложение'; -$a->strings['Name'] = 'Име'; -$a->strings['Consumer Key'] = 'Ключ на консуматора:'; -$a->strings['Consumer Secret'] = 'Тайна стойност на консуматора:'; -$a->strings['Redirect'] = 'Пренасочвания:'; -$a->strings['Icon url'] = 'Икона URL'; -$a->strings['You can\'t edit this application.'] = 'Вие не можете да редактирате тази кандидатура.'; -$a->strings['Connected Apps'] = 'Свързани Apps'; -$a->strings['Edit'] = 'Редактиране'; -$a->strings['Client key starts with'] = 'Ключ на клиента започва с'; -$a->strings['No name'] = 'Без име'; -$a->strings['Remove authorization'] = 'Премахване на разрешение'; -$a->strings['Additional Features'] = 'Допълнителни възможности'; -$a->strings['enabled'] = 'разрешен'; -$a->strings['disabled'] = 'забранен'; -$a->strings['Built-in support for %s connectivity is %s'] = 'Вградена поддръжка за връзка от %s %s'; -$a->strings['Email access is disabled on this site.'] = 'Достъп до електронна поща е забранен на този сайт.'; -$a->strings['None'] = 'Няма '; -$a->strings['Email/Mailbox Setup'] = 'Email / Mailbox Setup'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Ако желаете да се комуникира с имейл контакти, които използват тази услуга (по желание), моля посочете как да се свържете с вашата пощенска кутия.'; -$a->strings['Last successful email check:'] = 'Последна успешна проверка на електронната поща:'; -$a->strings['IMAP server name:'] = 'Име на IMAP сървъра:'; -$a->strings['IMAP port:'] = 'IMAP порта:'; -$a->strings['Security:'] = 'Сигурност'; -$a->strings['Email login name:'] = 'Email потребителско име:'; -$a->strings['Email password:'] = 'Email парола:'; -$a->strings['Reply-to address:'] = 'Адрес за отговор:'; -$a->strings['Send public posts to all email contacts:'] = 'Изпратете публични длъжности за всички имейл контакти:'; -$a->strings['Action after import:'] = 'Действия след вноса:'; +$a->strings['Email'] = 'Е-поща'; +$a->strings['Diaspora'] = 'Диаспора'; +$a->strings['and'] = 'и'; +$a->strings['Visible to everybody'] = 'Видим всички '; +$a->strings['Tag term:'] = 'Tag термин:'; +$a->strings['Save to Folder:'] = 'Запиши в папка:'; +$a->strings['Where are you right now?'] = 'Къде сте в момента?'; +$a->strings['New Post'] = 'Нов пост'; +$a->strings['Share'] = 'Споделяне'; +$a->strings['upload photo'] = 'качване на снимка'; +$a->strings['Attach file'] = 'Прикачване на файл'; +$a->strings['attach file'] = 'Прикачване на файл'; +$a->strings['Bold'] = 'Получер'; +$a->strings['Italic'] = 'Курсив'; +$a->strings['Underline'] = 'Подчертан'; +$a->strings['Quote'] = 'Цитат'; +$a->strings['Code'] = 'Код'; +$a->strings['Image'] = 'Изображение'; +$a->strings['Link'] = 'Връзка'; +$a->strings['Set your location'] = 'Задайте местоположението си'; +$a->strings['set location'] = 'Задаване на местоположението'; +$a->strings['Clear browser location'] = 'Изчистване на браузъра място'; +$a->strings['clear location'] = 'ясно място'; +$a->strings['Set title'] = 'Задайте заглавие'; +$a->strings['Categories (comma-separated list)'] = 'Категории (разделен със запетаи списък)'; +$a->strings['Permission settings'] = 'Настройките за достъп'; +$a->strings['Public post'] = 'Обществена длъжност'; +$a->strings['Message'] = 'Съобщение'; +$a->strings['Browser'] = 'Браузър'; +$a->strings['remove'] = 'Премахване'; +$a->strings['Delete Selected Items'] = 'Изтриване на избраните елементи'; +$a->strings['View %s\'s profile @ %s'] = 'Преглед профила на %s в %s'; +$a->strings['Categories:'] = 'Категории:'; +$a->strings['Filed under:'] = 'Записано в:'; +$a->strings['%s from %s'] = '%s от %s'; +$a->strings['View in context'] = 'Поглед в контекста'; +$a->strings['Personal'] = 'Лично'; +$a->strings['Posts that mention or involve you'] = 'Мнения, които споменават или включват'; +$a->strings['Starred'] = 'Със звезда'; +$a->strings['Favourite Posts'] = 'Любими Мнения'; +$a->strings['show more'] = 'покажи още'; +$a->strings['event'] = 'събитието.'; +$a->strings['status'] = 'статус'; +$a->strings['photo'] = 'снимка'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s сложи етикет с %2$s - %3$s %4$s'; +$a->strings['View Status'] = 'Показване на състоянието'; +$a->strings['View Profile'] = 'Преглед на профил'; +$a->strings['View Photos'] = 'Вижте снимки'; +$a->strings['Network Posts'] = 'Мрежови Мнения'; +$a->strings['View Contact'] = 'Преглед на Контакта'; +$a->strings['Send PM'] = 'Изпратете PM'; +$a->strings['Block'] = 'Блокиране'; +$a->strings['Ignore'] = 'Пренебрегване'; +$a->strings['Languages'] = 'Езици'; +$a->strings['Connect/Follow'] = 'Свържете се / последваща'; +$a->strings['Nothing new here'] = 'Нищо ново тук'; +$a->strings['Clear notifications'] = 'Изчистване на уведомленията'; +$a->strings['Logout'] = 'изход'; +$a->strings['End this session'] = 'Край на тази сесия'; +$a->strings['Login'] = 'Вход'; +$a->strings['Sign in'] = 'Вход'; +$a->strings['Profile'] = 'Височина на профила'; +$a->strings['Your profile page'] = 'Вашият профил страница'; +$a->strings['Photos'] = 'Снимки'; +$a->strings['Your photos'] = 'Вашите снимки'; +$a->strings['Personal notes'] = 'Личните бележки'; +$a->strings['Home'] = 'Начало'; +$a->strings['Home Page'] = 'Начална страница'; +$a->strings['Register'] = 'Регистратор'; +$a->strings['Create an account'] = 'Създаване на сметка'; +$a->strings['Help'] = 'Помощ'; +$a->strings['Help and documentation'] = 'Помощ и документация'; +$a->strings['Apps'] = 'Apps'; +$a->strings['Addon applications, utilities, games'] = 'Адон приложения, помощни програми, игри'; +$a->strings['Search'] = 'Търсене'; +$a->strings['Search site content'] = 'Търсене в сайта съдържание'; +$a->strings['Contacts'] = 'Контакти '; +$a->strings['Community'] = 'Общност'; +$a->strings['Directory'] = 'директория'; +$a->strings['People directory'] = 'Хората директория'; +$a->strings['Network'] = 'Мрежа'; +$a->strings['Conversations from your friends'] = 'Разговори от вашите приятели'; +$a->strings['Your posts and conversations'] = 'Вашите мнения и разговори'; +$a->strings['Introductions'] = 'Представяне'; +$a->strings['Friend Requests'] = 'Молби за приятелство'; +$a->strings['Notifications'] = 'Уведомления '; +$a->strings['See all notifications'] = 'Вижте всички нотификации'; $a->strings['Mark as seen'] = 'Марк, както се вижда'; -$a->strings['Move to folder'] = 'Премества избраното в папка'; -$a->strings['Move to folder:'] = 'Премества избраното в папка'; +$a->strings['Private mail'] = 'Частна поща'; +$a->strings['Inbox'] = 'Вх. поща'; +$a->strings['Outbox'] = 'Изходящи'; +$a->strings['Manage other pages'] = 'Управление на други страници'; +$a->strings['Settings'] = 'Настройки'; +$a->strings['Account settings'] = 'Настройки на профила'; +$a->strings['Manage/edit friends and contacts'] = 'Управление / редактиране на приятели и контакти'; +$a->strings['Admin'] = 'admin'; +$a->strings['Site setup and configuration'] = 'Настройка и конфигуриране на сайта'; +$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'] = 'Кликнете за отваряне / затваряне'; +$a->strings['$1 wrote:'] = '$ 1 пише:'; +$a->strings['Encrypted content'] = 'Шифрирано съдържание'; +$a->strings['Add New Contact'] = 'Добавяне на нов контакт'; +$a->strings['Enter address or web location'] = 'Въведете местоположение на адрес или уеб'; +$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Пример: bob@example.com, http://example.com/barbara'; +$a->strings['Connect'] = 'Свързване! '; +$a->strings['Find People'] = 'Намерете хора,'; +$a->strings['Enter name or interest'] = 'Въведете името или интерес'; +$a->strings['Examples: Robert Morgenstein, Fishing'] = 'Примери: Робърт Morgenstein, Риболов'; +$a->strings['Find'] = 'Търсене'; +$a->strings['Friend Suggestions'] = 'Предложения за приятели'; +$a->strings['Similar Interests'] = 'Сходни интереси'; +$a->strings['Random Profile'] = 'Случайна Профил'; +$a->strings['Invite Friends'] = 'Покани приятели'; +$a->strings['Global Directory'] = 'Глобален справочник'; +$a->strings['Local Directory'] = 'Локалната директория'; +$a->strings['All Contacts'] = 'Всички Контакти'; +$a->strings['Saved Folders'] = 'Записани папки'; +$a->strings['Everything'] = 'Всичко'; +$a->strings['Categories'] = 'Категории'; +$a->strings['Archives'] = 'Архиви'; +$a->strings['No contacts'] = 'Няма контакти'; +$a->strings['View Contacts'] = 'Вижте Контакти'; +$a->strings['Remove term'] = 'Премахване мандат'; +$a->strings['Saved Searches'] = 'Запазени търсения'; +$a->strings['Location:'] = 'Място:'; +$a->strings['Post to Email'] = 'Коментар на e-mail'; +$a->strings['CC: email addresses'] = 'CC: имейл адреси'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Пример: bob@example.com, mary@example.com'; +$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Може да се наложи да импортирате файла "database.sql" ръчно чрез настървение или MySQL.'; +$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Не може да се намери командния ред версия на PHP в PATH уеб сървър.'; +$a->strings['PHP executable path'] = 'PHP изпълним път'; +$a->strings['Enter full path to php executable. You can leave this blank to continue the installation.'] = 'Въведете пълния път до изпълнимия файл на PHP. Можете да оставите полето празно, за да продължите инсталацията.'; +$a->strings['Command line PHP'] = 'Команден ред PHP'; +$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['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['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Грешка: МОД-пренаписване модул на Apache уеб сървър е необходимо, но не е инсталиран.'; +$a->strings['Apache mod_rewrite module'] = 'Apache mod_rewrite модул'; +$a->strings['libCurl PHP module'] = 'libCurl PHP модул'; +$a->strings['Error: libCURL PHP module required but not installed.'] = 'Грешка: libCURL PHP модул, но не е инсталирана.'; +$a->strings['GD graphics PHP module'] = 'GD графика PHP модул'; +$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Грешка: GD графика PHP модул с поддръжка на JPEG, но не е инсталирана.'; +$a->strings['OpenSSL PHP module'] = 'OpenSSL PHP модул'; +$a->strings['Error: openssl PHP module required but not installed.'] = 'Грешка: OpenSSL PHP модул са необходими, но не е инсталирана.'; +$a->strings['mb_string PHP module'] = 'mb_string PHP модул'; +$a->strings['Error: mb_string PHP module required but not installed.'] = 'Грешка: mb_string PHP модул, но не е инсталирана.'; +$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.'] = 'Това е най-често настройка разрешение, тъй като уеб сървъра не може да бъде в състояние да записва файлове във вашата папка - дори и ако можете.'; +$a->strings['Url rewrite is working'] = ', Url пренаписванията работи'; +$a->strings['Could not connect to database.'] = 'Не може да се свърже с базата данни.'; +$a->strings['Monday'] = 'Понеделник'; +$a->strings['Tuesday'] = 'Вторник'; +$a->strings['Wednesday'] = 'Сряда'; +$a->strings['Thursday'] = 'Четвъртък'; +$a->strings['Friday'] = 'Петък'; +$a->strings['Saturday'] = 'Събота'; +$a->strings['Sunday'] = 'Неделя'; +$a->strings['January'] = 'януари'; +$a->strings['February'] = 'февруари'; +$a->strings['March'] = 'март'; +$a->strings['April'] = 'април'; +$a->strings['May'] = 'Май'; +$a->strings['June'] = 'юни'; +$a->strings['July'] = 'юли'; +$a->strings['August'] = 'август'; +$a->strings['September'] = 'септември'; +$a->strings['October'] = 'октомври'; +$a->strings['November'] = 'ноември'; +$a->strings['December'] = 'декември'; +$a->strings['Update %s failed. See error logs.'] = 'Актуализация %s не успя. Виж логовете за грешки.'; +$a->strings['Everybody'] = 'Всички'; +$a->strings['edit'] = 'редактиране'; +$a->strings['add'] = 'добави'; +$a->strings['Approve'] = 'Одобряване'; +$a->strings['Disallowed profile URL.'] = 'Отхвърлен профила URL.'; +$a->strings['Connect URL missing.'] = 'Свързване URL липсва.'; +$a->strings['The profile address specified does not provide adequate information.'] = 'Профилът на посочения адрес не предоставя достатъчна информация.'; +$a->strings['No compatible communication protocols or feeds were discovered.'] = 'Няма съвместими комуникационни протоколи или фуражите не са били открити.'; +$a->strings['An author or name was not found.'] = 'Един автор или име не е намерен.'; +$a->strings['No browser URL could be matched to this address.'] = 'Не браузър URL може да съвпадне с този адрес.'; +$a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Не мога да съответства @ стил Адрес идентичност с известен протокол или се свържете с имейл.'; +$a->strings['Use mailto: in front of address to force email check.'] = 'Използвайте mailto: пред адрес, за да принуди проверка на имейл.'; +$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Профилът адрес принадлежи към мрежа, която е била забранена в този сайт.'; +$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Limited профил. Този човек ще бъде в състояние да получат преки / лична уведомления от вас.'; +$a->strings['Unable to retrieve contact information.'] = 'Не мога да получа информация за контакт.'; +$a->strings['Starts:'] = 'Започва:'; +$a->strings['Finishes:'] = 'Играчи:'; +$a->strings['month'] = 'месец.'; +$a->strings['week'] = 'седмица'; +$a->strings['day'] = 'Ден:'; +$a->strings['Access to this profile has been restricted.'] = 'Достъпът до този профил е ограничен.'; +$a->strings['l, F j'] = 'л, F J'; +$a->strings['Edit event'] = 'Редактиране на Събитието'; +$a->strings['l F d, Y \@ g:i A'] = 'L F г, Y \ @ G: I A'; +$a->strings['Happy Birthday %s'] = 'Честит рожден ден, %s!'; +$a->strings['activity'] = 'дейност'; +$a->strings['post'] = 'след'; +$a->strings['bytes'] = 'байта'; +$a->strings['[no subject]'] = '[Без тема]'; +$a->strings['Wall Photos'] = 'Стена снимки'; +$a->strings['Edit profile'] = 'Редактиране на потребителския профил'; +$a->strings['Change profile photo'] = 'Промяна на снимката на профил'; +$a->strings['Homepage:'] = 'Начална страница:'; +$a->strings['About:'] = 'това ?'; +$a->strings['F d'] = 'F г'; +$a->strings['[today]'] = 'Днес'; +$a->strings['Birthday Reminders'] = 'Напомняния за рождени дни'; +$a->strings['Birthdays this week:'] = 'Рождени дни този Седмица:'; +$a->strings['g A l F d'] = 'грама Л Е г'; +$a->strings['[No description]'] = '[Няма описание]'; +$a->strings['Event Reminders'] = 'Напомняния'; +$a->strings['Hometown:'] = 'Hometown:'; +$a->strings['Sexual Preference:'] = 'Сексуални предпочитания:'; +$a->strings['Political Views:'] = 'Политически възгледи:'; +$a->strings['Religious Views:'] = 'Религиозни възгледи:'; +$a->strings['Likes:'] = 'Харесвания:'; +$a->strings['Dislikes:'] = 'Нехаресвания:'; +$a->strings['Title/Description:'] = 'Наименование/Описание'; +$a->strings['Summary'] = 'Резюме'; +$a->strings['Musical interests'] = 'Музикални интереси'; +$a->strings['Books, literature'] = 'Книги, литература'; +$a->strings['Television'] = 'Телевизия'; +$a->strings['Film/dance/culture/entertainment'] = 'Филм / танц / Култура / забавления'; +$a->strings['Hobbies/Interests'] = 'Хобита / интереси'; +$a->strings['Love/romance'] = 'Любов / романтика'; +$a->strings['Work/employment'] = 'Работа / заетост'; +$a->strings['School/education'] = 'Училище / образование'; +$a->strings['Contact information and Social Networks'] = 'Информация за контакти и социални мрежи'; +$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'Сериозна грешка: генериране на ключове за защита не успя.'; +$a->strings['Passwords do not match. Password unchanged.'] = 'Паролите не съвпадат. Парола непроменен.'; +$a->strings['An invitation is required.'] = 'Се изисква покана.'; +$a->strings['Invitation could not be verified.'] = 'Покана не може да бъде проверена.'; +$a->strings['Invalid OpenID url'] = 'Невалиден URL OpenID'; +$a->strings['We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.'] = 'Ние се натъкна на проблем, докато влезете с OpenID, който сте посочили. Моля, проверете правилното изписване на идентификацията.'; +$a->strings['The error message was:'] = 'Съобщението за грешка е:'; +$a->strings['Please enter the required information.'] = 'Моля, въведете необходимата информация.'; +$a->strings['That doesn\'t appear to be your full (First Last) name.'] = 'Това не изглежда да е пълен (първи Последно) име.'; +$a->strings['Your email domain is not among those allowed on this site.'] = 'Вашият имейл домейн не е сред тези, разрешени на този сайт.'; +$a->strings['Not a valid email address.'] = 'Не е валиден имейл адрес.'; +$a->strings['Cannot use that email.'] = 'Не може да се използва този имейл.'; +$a->strings['Nickname is already registered. Please choose another.'] = 'Псевдоним вече е регистрирано. Моля, изберете друга.'; +$a->strings['An error occurred during registration. Please try again.'] = 'Възникна грешка по време на регистрацията. Моля, опитайте отново.'; +$a->strings['An error occurred creating your default profile. Please try again.'] = 'Възникна грешка при създаването на своя профил по подразбиране. Моля, опитайте отново.'; +$a->strings['Friends'] = 'Приятели'; +$a->strings['Profile Photos'] = 'Снимка на профила'; +$a->strings['Registration details for %s'] = 'Регистрационни данни за %s'; +$a->strings['Disable'] = 'забрани'; +$a->strings['Enable'] = 'Да се активира ли?'; +$a->strings['Administration'] = 'Администриране '; +$a->strings['Toggle'] = '切換'; +$a->strings['Author: '] = 'Автор: '; +$a->strings['Maintainer: '] = 'Отговорник: '; +$a->strings['Update has been marked successful'] = 'Update е маркиран успешно'; +$a->strings['Update %s was successfully applied.'] = 'Актуализация %s бе успешно приложена.'; +$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'Актуализация %s не се връща статус. Известно дали тя успя.'; +$a->strings['No failed updates.'] = 'Няма провалени новини.'; +$a->strings['Failed Updates'] = 'Неуспешно Updates'; +$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Това не включва актуализации, преди 1139, които не връщат статута.'; +$a->strings['Mark success (if update was manually applied)'] = 'Марк успех (ако актуализация е ръчно прилага)'; +$a->strings['Attempt to execute this update step automatically'] = 'Опита да изпълни тази стъпка се обновяват автоматично'; +$a->strings['Other'] = 'Друг'; +$a->strings['Logs'] = 'Дневници'; +$a->strings['Clear'] = 'Безцветен '; +$a->strings['Log file'] = 'Регистрационен файл'; +$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Трябва да бъде записван от уеб сървър. В сравнение с вашата Friendica най-високо ниво директория.'; +$a->strings['Log level'] = 'Вход ниво'; +$a->strings['Event details'] = 'Подробности за събитието'; +$a->strings['Closed'] = 'Затворен'; +$a->strings['Requires approval'] = 'Изисква одобрение'; +$a->strings['Open'] = 'Отворена.'; +$a->strings['Site'] = 'Сайт'; +$a->strings['Registration'] = 'Регистрация'; +$a->strings['File upload'] = 'Прикачване на файлове'; +$a->strings['Policies'] = 'Политики'; +$a->strings['Advanced'] = 'Напреднал'; +$a->strings['Performance'] = 'Производителност'; +$a->strings['Site name'] = 'Име на сайта'; +$a->strings['Banner/Logo'] = 'Банер / лого'; +$a->strings['System language'] = 'Системен език'; +$a->strings['System theme'] = 'Системна тема'; +$a->strings['Maximum image size'] = 'Максимален размер на изображението'; +$a->strings['Register policy'] = 'Регистрирайте политика'; +$a->strings['Register text'] = 'Регистрирайте се текст'; +$a->strings['Accounts abandoned after x days'] = 'Сметките изоставени след дни х'; +$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = 'Няма да губи системните ресурси избирателните външни сайтове за abandonded сметки. Въведете 0 за без ограничение във времето.'; +$a->strings['Allowed friend domains'] = 'Позволи на домейни приятел'; +$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Разделени със запетая списък на домейни, на които е разрешено да се създадат приятелства с този сайт. Заместващи символи са приети. На Empty да се даде възможност на всички домейни'; +$a->strings['Allowed email domains'] = 'Позволи на домейни имейл'; +$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Разделени със запетая списък на домейни, които са разрешени в имейл адреси за регистрации в този сайт. Заместващи символи са приети. На Empty да се даде възможност на всички домейни'; +$a->strings['Block public'] = 'Блокиране на обществения'; +$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Тръгване за блокиране на публичен достъп до всички по друг начин публичните лични страници на този сайт, освен ако в момента сте влезли в системата.'; +$a->strings['Force publish'] = 'Принудително публикува'; +$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Проверете, за да се принудят всички профили на този сайт да бъдат изброени в директорията на сайта.'; +$a->strings['Enable Diaspora support'] = 'Активирайте диаспора подкрепа'; +$a->strings['Verify SSL'] = 'Провери SSL'; +$a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = 'Ако желаете, можете да се обърнете на стриктна проверка на сертификат. Това ще означава, че не можете да свържете (на всички), за да самоподписани SSL обекти.'; +$a->strings['Proxy user'] = 'Proxy потребител'; +$a->strings['Proxy URL'] = 'Proxy URL'; +$a->strings['Network timeout'] = 'Мрежа изчакване'; +$a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Стойността е в секунди. Настройте на 0 за неограничен (не се препоръчва).'; +$a->strings['Maximum Load Average'] = 'Максимално натоварване'; +$a->strings['Message queues'] = 'Съобщение опашки'; +$a->strings['Version'] = 'Версия '; +$a->strings['Screenshot'] = 'Screenshot'; +$a->strings['Themes'] = 'Теми'; +$a->strings['[Experimental]'] = '(Експериментален)'; +$a->strings['[Unsupported]'] = 'Неподдържан]'; +$a->strings['No installed applications.'] = 'Няма инсталираните приложения.'; +$a->strings['Applications'] = 'Приложения'; +$a->strings['Item was not found.'] = 'Елемент не е намерен.'; +$a->strings['Please login to continue.'] = 'Моля, влезте, за да продължите.'; +$a->strings['Additional features'] = 'Допълнителни възможности'; +$a->strings['DB updates'] = 'Обновления на БД'; +$a->strings['User registrations waiting for confirmation'] = 'Потребителски регистрации, чакащи за потвърждение'; +$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Дневният лимит от %dпост е достигнат. Постът беше отхвърлен.', + 1 => 'Дневният лимит от %d поста е достигнат. Постът беше отхвърлен.', +]; +$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Седмичният лимит от %d пост е достигнат. Постът беше отказан.', + 1 => 'Седмичният лимит от %d поста е достигнат. Постът беше отказан.', +]; +$a->strings['Users'] = 'Потребители'; +$a->strings['Profile Details'] = 'Детайли от профила'; +$a->strings['Only You Can See This'] = 'Можете да видите това'; +$a->strings['Tips for New Members'] = 'Съвети за нови членове'; +$a->strings['No matches'] = 'Няма съответствия'; +$a->strings['Account'] = 'профил'; +$a->strings['Connected apps'] = 'Свързани приложения'; +$a->strings['Export personal data'] = 'Експортиране на личните данни'; +$a->strings['Remove account'] = 'Премахване сметка'; +$a->strings['Event Starts:'] = 'Събитие Започва:'; +$a->strings['Required'] = 'Задължително'; +$a->strings['Finish date/time is not known or not relevant'] = 'Завършете дата / час не е известен или не е приложимо'; +$a->strings['Event Finishes:'] = 'Събитие играчи:'; +$a->strings['Share this event'] = 'Споделете това събитие'; +$a->strings['Events'] = 'Събития'; +$a->strings['Create New Event'] = 'Създаване на нов събитие'; +$a->strings['Contact not found.'] = 'Контактът не е намерен.'; +$a->strings['Invalid contact.'] = 'Невалиден свържете.'; +$a->strings['Members'] = 'Членове'; +$a->strings['Click on a contact to add or remove.'] = 'Щракнете върху контакт, за да добавите или премахнете.'; +$a->strings['Show all contacts'] = 'Покажи на всички контакти'; +$a->strings['Blocked'] = 'Блокиран'; +$a->strings['Only show blocked contacts'] = 'Покажи само Блокираните контакти'; +$a->strings['Ignored'] = 'Игнорирани'; +$a->strings['Only show ignored contacts'] = 'Покажи само игнорирани контакти'; +$a->strings['Archived'] = 'Архивиран:'; +$a->strings['Only show archived contacts'] = 'Покажи само архивирани контакти'; +$a->strings['Hidden'] = 'Скрит'; +$a->strings['Only show hidden contacts'] = 'Само показва скрити контакти'; +$a->strings['Search your contacts'] = 'Търсене на вашите контакти'; +$a->strings['Update'] = 'Актуализиране'; +$a->strings['Unblock'] = 'Разблокиране'; +$a->strings['Unignore'] = 'Извади от пренебрегнатите'; +$a->strings['Advanced Contact Settings'] = 'Разширени настройки за контакт'; +$a->strings['Mutual Friendship'] = 'Взаимното приятелство'; +$a->strings['is a fan of yours'] = 'е фенка'; +$a->strings['you are a fan of'] = 'Вие сте фен на'; +$a->strings['Visit %s\'s profile [%s]'] = 'Посетете %s Профилът на [ %s ]'; +$a->strings['Contact update failed.'] = 'Свържете се актуализира провали.'; +$a->strings['Return to contact editor'] = 'Назад, за да се свържете с редактор'; +$a->strings['Name'] = 'Име'; +$a->strings['Account Nickname'] = 'Сметка Псевдоним'; +$a->strings['Account URL'] = 'Сметка URL'; +$a->strings['Poll/Feed URL'] = 'Анкета / URL Feed'; +$a->strings['New photo from this URL'] = 'Нова снимка от този адрес'; +$a->strings['Access denied.'] = 'Отказан достъп.'; +$a->strings['Submit Request'] = 'Изпращане на заявката'; +$a->strings['Please answer the following:'] = 'Моля отговорете на следните:'; +$a->strings['Your Identity Address:'] = 'Адрес на вашата самоличност:'; +$a->strings['Tags:'] = 'Маркери:'; +$a->strings['Add a personal note:'] = 'Добавяне на лична бележка:'; +$a->strings['Profile Match'] = 'Профил мач'; +$a->strings['Failed to update contact record.'] = 'Неуспех да се актуализира рекорд за контакт.'; +$a->strings['Contact has been unblocked'] = 'Контакт са отблокирани'; +$a->strings['Contact has been blocked'] = 'За контакти е бил блокиран'; +$a->strings['Contact has been unignored'] = 'За контакти е бил unignored'; +$a->strings['Contact has been ignored'] = 'Лицето е било игнорирано'; +$a->strings['You are mutual friends with %s'] = 'Вие сте общи приятели с %s'; +$a->strings['You are sharing with %s'] = 'Вие споделяте с %s'; +$a->strings['%s is sharing with you'] = '%s се споделя с вас'; +$a->strings['Private communications are not available for this contact.'] = 'Частни съобщения не са на разположение за този контакт.'; +$a->strings['Never'] = 'Никога!'; +$a->strings['(Update was not successful)'] = '(Актуализация не е била успешна)'; +$a->strings['(Update was successful)'] = '(Update е била успешна)'; +$a->strings['Suggest friends'] = 'Предложете приятели'; +$a->strings['Network type: %s'] = 'Тип мрежа: %s'; +$a->strings['Communications lost with this contact!'] = 'Communications загубиха с този контакт!'; +$a->strings['Contact Information / Notes'] = 'Информация за контакти / Забележки'; +$a->strings['Edit contact notes'] = 'Редактиране на контакт с бележка'; +$a->strings['Block/Unblock contact'] = 'Блокиране / Деблокиране на контакт'; +$a->strings['Ignore contact'] = 'Игнорирай се свържете с'; +$a->strings['View conversations'] = 'Вижте разговори'; +$a->strings['Last update:'] = 'Последна актуализация:'; +$a->strings['Update public posts'] = 'Актуализиране на държавни длъжности'; +$a->strings['Update now'] = 'Актуализирай сега'; +$a->strings['Currently blocked'] = 'Които понастоящем са блокирани'; +$a->strings['Currently ignored'] = 'В момента игнорирани'; +$a->strings['Currently archived'] = 'В момента архивират'; +$a->strings['Hide this contact from others'] = 'Скриване на този контакт от другите'; +$a->strings['Replies/likes to your public posts may still be visible'] = 'Отговори / обича да си публични длъжности май все още да се вижда'; +$a->strings['Status'] = 'Състояние:'; +$a->strings['Toggle Blocked status'] = 'Превключване Блокирани статус'; +$a->strings['Toggle Ignored status'] = 'Превключване игнорирани статус'; +$a->strings['Yes'] = 'Yes'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Няма предложения. Ако това е нов сайт, моля опитайте отново в рамките на 24 часа.'; +$a->strings['No results.'] = 'Няма резултати.'; +$a->strings['Not available.'] = 'Няма налични'; +$a->strings['Time Conversion'] = 'Време за преобразуване'; +$a->strings['UTC time: %s'] = 'UTC време: %s'; +$a->strings['Current timezone: %s'] = 'Текуща часова зона: %s'; +$a->strings['Converted localtime: %s'] = 'Превърнат localtime: %s'; +$a->strings['Please select your timezone:'] = 'Моля изберете вашия часовата зона:'; +$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Превключвате между различните идентичности или общността / групата страници, които споделят данните на акаунта ви, или които сте получили "управление" разрешения'; +$a->strings['Select an identity to manage: '] = 'Изберете идентичност, за да управлява: '; +$a->strings['No entries (some entries may be hidden).'] = 'Няма записи (някои вписвания, могат да бъдат скрити).'; +$a->strings['Find on this site'] = 'Търсене в този сайт'; +$a->strings['Site Directory'] = 'Site Directory'; +$a->strings['- select -'] = 'избор'; +$a->strings['Friend suggestion sent.'] = 'Предложението за приятелство е изпратено.'; +$a->strings['Suggest Friends'] = 'Предлагане на приятели'; +$a->strings['Suggest a friend for %s'] = 'Предлагане на приятел за %s'; +$a->strings['Bug reports and issues: please visit'] = 'Доклади за грешки и проблеми: моля посетете'; +$a->strings['No profile'] = 'Няма профил'; +$a->strings['Help:'] = 'Помощ'; +$a->strings['Welcome to %s'] = 'Добре дошли %s'; +$a->strings['System check'] = 'Проверка на системата'; +$a->strings['Next'] = 'Следваща'; +$a->strings['Check again'] = 'Проверете отново'; +$a->strings['Database connection'] = 'Свързване на база данни'; +$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'За да инсталирате Friendica трябва да знаем как да се свърже към вашата база данни.'; +$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Моля, свържете с вашия хостинг доставчик или администратора на сайта, ако имате въпроси относно тези настройки.'; +$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'База данни, за да определите по-долу би трябвало вече да съществува. Ако това не стане, моля да го създадете, преди да продължите.'; +$a->strings['Database Server Name'] = 'Име на сървър за база данни'; +$a->strings['Database Login Name'] = 'Името на базата данни Парола'; +$a->strings['Database Login Password'] = 'Database Влизам Парола'; +$a->strings['Database Name'] = 'Име на база данни'; +$a->strings['Please select a default timezone for your website'] = 'Моля, изберете часовата зона по подразбиране за вашия уеб сайт'; +$a->strings['Site settings'] = 'Настройки на сайта'; +$a->strings['Site administrator email address'] = 'Сайт администратор на имейл адрес'; +$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'Вашият имейл адрес трябва да съответстват на това, за да използвате уеб панел администратор.'; +$a->strings['Your Friendica site database has been installed.'] = 'Вашият Friendica сайт база данни е инсталиран.'; +$a->strings['

    What next

    '] = '

    Каква е следващата стъпка '; +$a->strings['%s : Not a valid email address.'] = '%s не е валиден имейл адрес.'; +$a->strings['Please join us on Friendica'] = 'Моля, присъединете се към нас на Friendica'; +$a->strings['%s : Message delivery failed.'] = '%s : Съобщение доставка не успя.'; +$a->strings['You have no more invitations available'] = 'Имате няма повече покани'; +$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.'] = 'Посетете %s за списък на публичните сайтове, които можете да се присъедините. Friendica членове на други сайтове могат да се свързват един с друг, както и с членовете на много други социални мрежи.'; +$a->strings['To accept this invitation, please visit and register at %s or any other public Friendica website.'] = 'За да приемете тази покана, моля, посетете и се регистрира в %s или друга публична уебсайт Friendica.'; +$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.'] = 'Friendica сайтове се свързват, за да се създаде огромна допълнителна защита на личния живот, социална мрежа, която е собственост и се управлява от нейните членове. Те също могат да се свържат с много от традиционните социални мрежи. Виж %s за списък на алтернативни сайтове Friendica, можете да се присъедините.'; +$a->strings['Our apologies. This system is not currently configured to connect with other public sites or invite members.'] = 'Нашите извинения. Тази система в момента не е конфигуриран да се свържете с други обществени обекти, или ще поканят членове.'; +$a->strings['Send invitations'] = 'Изпращане на покани'; +$a->strings['Enter email addresses, one per line:'] = 'Въведете имейл адреси, по един на ред:'; +$a->strings['You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.'] = 'Вие сте любезно поканени да се присъединят към мен и други близки приятели за Friendica, - и да ни помогне да създадем по-добра социална мрежа.'; +$a->strings['You will need to supply this invitation code: $invite_code'] = 'Вие ще трябва да предоставят този код за покана: $ invite_code'; +$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'След като сте се регистрирали, моля свържете се с мен чрез профила на моята страница в:'; +$a->strings['Files'] = 'Файлове'; +$a->strings['Upload'] = 'Качете в Мрежата '; +$a->strings['File upload failed.'] = 'Файл за качване не успя.'; +$a->strings['Unable to process image.'] = 'Не може да се обработи.'; +$a->strings['Image upload failed.'] = 'Image Upload неуспешно.'; $a->strings['Normal Account Page'] = 'Нормално страницата с профила'; $a->strings['Soapbox Page'] = 'Импровизирана трибуна Page'; $a->strings['Automatic Friend Page'] = 'Автоматично приятел Page'; -$a->strings['Private Forum [Experimental]'] = 'Частен форум [експериментална]'; +$a->strings['select all'] = 'Избор на всичко'; +$a->strings['Item not found'] = 'Елемент не е намерена'; +$a->strings['Normal Account'] = 'Нормално профил'; +$a->strings['Automatic Friend Account'] = 'Автоматично приятел акаунт'; +$a->strings['Registered users'] = 'Регистрираните потребители'; +$a->strings['Pending registrations'] = 'Предстоящи регистрации'; +$a->strings['Register date'] = 'Дата на регистрация'; +$a->strings['Last login'] = 'Последно влизане'; +$a->strings['Site admin'] = 'Администратор на сайта'; +$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Избрани потребители ще бъде изтрита! \ N \ nEverything тези потребители са публикувани на този сайт ще бъде изтрит завинаги! \ N \ nСигурни ли сте?'; +$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Потребител {0} ще бъде изтрит! \ n \ nEverything този потребител публикувани на този сайт ще бъде изтрит завинаги! \ n \ nСигурни ли сте?'; +$a->strings['Account approved.'] = 'Сметка одобрен.'; +$a->strings['Request date'] = 'Искане дата'; +$a->strings['No registrations.'] = 'Няма регистрации.'; +$a->strings['Deny'] = 'Отказ'; +$a->strings['Show Ignored Requests'] = 'Показване на пренебрегнатите заявки'; +$a->strings['Hide Ignored Requests'] = 'Скриване на пренебрегнатите заявки'; +$a->strings['Claims to be known to you: '] = 'Искания, да се знае за вас: '; +$a->strings['No'] = 'Не'; +$a->strings['Friend'] = 'Приятел'; +$a->strings['No introductions.'] = 'Няма въвеждане.'; +$a->strings['Network Notifications'] = 'Мрежа Известия'; +$a->strings['System Notifications'] = 'Системни известия'; +$a->strings['Personal Notifications'] = 'Лични Известия'; +$a->strings['Home Notifications'] = 'Начало Известия'; +$a->strings['{0} requested registration'] = '{0} исканата регистрация'; +$a->strings['Authorize application connection'] = 'Разрешава връзка с прилагането'; +$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Искате ли да се разреши това приложение за достъп до вашите мнения и контакти, и / или създаване на нови длъжности за вас?'; +$a->strings['Remote privacy information not available.'] = 'Дистанционно неприкосновеността на личния живот информация не е достъпен.'; +$a->strings['Visible to:'] = 'Вижда се от:'; +$a->strings['Edit post'] = 'Редактиране на мнение'; +$a->strings['web link'] = 'Уеб-линк'; +$a->strings['Insert video link'] = 'Поставете линка на видео'; +$a->strings['video link'] = 'видео връзка'; +$a->strings['Insert audio link'] = 'Поставете аудио връзка'; +$a->strings['audio link'] = 'аудио връзка'; +$a->strings['Remove Item Tag'] = 'Извадете Tag т.'; +$a->strings['Select a tag to remove: '] = 'Изберете етикет, за да премахнете: '; +$a->strings['Remove'] = 'Премахване'; +$a->strings['No contacts.'] = 'Няма контакти.'; +$a->strings['Image file is empty.'] = 'Image файл е празен.'; +$a->strings['View Album'] = 'Вижте албуми'; +$a->strings['Profile not found.'] = 'Профил не е намерен.'; +$a->strings['Full Name:'] = 'Собствено и фамилно име'; +$a->strings['j F, Y'] = 'J F, Y'; +$a->strings['j F'] = 'J F'; +$a->strings['Birthday:'] = 'Дата на раждане:'; +$a->strings['Age: '] = 'Възраст: '; +$a->strings['Description:'] = 'Описание:'; +$a->strings['Profile unavailable.'] = 'Профил недостъпни.'; +$a->strings['Invalid locator'] = 'Невалиден локатор'; +$a->strings['Friend/Connection Request'] = 'Приятел / заявка за връзка'; +$a->strings['Unable to check your home location.'] = 'Не може да проверите вашето местоположение.'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Брой на ежедневните съобщения за стена за %s е превишен. Съобщение не успя.'; +$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Ако желаете за %s да отговори, моля, проверете дали настройките за поверителност на сайта си позволяват частни съобщения от непознати податели.'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Този сайт е надвишил броя на разрешените дневни регистрации сметка. Моля, опитайте отново утре.'; +$a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Ако не сте запознати с OpenID, моля оставете това поле празно и попълнете останалата част от елементите.'; +$a->strings['Your OpenID (optional): '] = 'Вашият OpenID (не е задължително): '; +$a->strings['Include your profile in member directory?'] = 'Включете вашия профил в член директория?'; +$a->strings['Membership on this site is by invitation only.'] = 'Членството на този сайт е само с покани.'; +$a->strings['New Password:'] = 'нова парола'; +$a->strings['Confirm:'] = 'Потвърждаване...'; +$a->strings['Choose a nickname: '] = 'Изберете прякор: '; +$a->strings['Import'] = 'Внасяне'; +$a->strings['Registration successful. Please check your email for further instructions.'] = 'Регистрация успешно. Моля, проверете електронната си поща за по-нататъшни инструкции.'; +$a->strings['Your registration can not be processed.'] = 'Вашата регистрация не могат да бъдат обработени.'; +$a->strings['Your registration is pending approval by the site owner.'] = 'Вашата регистрация е в очакване на одобрение от собственика на сайта.'; +$a->strings['Create a New Account'] = 'Създаване на нов профил:'; +$a->strings['Or login using OpenID: '] = 'Или да влезнете с OpenID: '; +$a->strings['Password: '] = 'Парола '; +$a->strings['Forgot your password?'] = 'Забравена парола?'; +$a->strings['Website Terms of Service'] = 'Условия за ползване на сайта'; +$a->strings['terms of service'] = 'условия за ползване'; +$a->strings['Website Privacy Policy'] = 'Политика за поверителност на сайта'; +$a->strings['privacy policy'] = 'политика за поверителност'; +$a->strings['Logged out.'] = 'Изход'; +$a->strings['Current Password:'] = 'Текуща парола:'; $a->strings['OpenID:'] = 'OpenID:'; $a->strings['(Optional) Allow this OpenID to login to this account.'] = '(По избор) позволяват това OpenID, за да влезете в тази сметка.'; $a->strings['Account Settings'] = 'Настройки на профила'; $a->strings['Password Settings'] = 'Парола Настройки'; -$a->strings['New Password:'] = 'нова парола'; -$a->strings['Confirm:'] = 'Потвърждаване...'; $a->strings['Leave password fields blank unless changing'] = 'Оставете паролите полета празни, освен ако промяна'; -$a->strings['Current Password:'] = 'Текуща парола:'; $a->strings['Password:'] = 'Парола'; $a->strings['Basic Settings'] = 'Основни настройки'; -$a->strings['Full Name:'] = 'Собствено и фамилно име'; $a->strings['Email Address:'] = 'Електронна поща:'; $a->strings['Your Timezone:'] = 'Вашият Часовата зона:'; $a->strings['Default Post Location:'] = 'Мнение местоположението по подразбиране:'; @@ -348,485 +678,22 @@ $a->strings['You receive a friend suggestion'] = 'Ще получите пред $a->strings['You are tagged in a post'] = 'Са маркирани в един пост'; $a->strings['Advanced Account/Page Type Settings'] = 'Разширено сметка / Настройки на вид страница'; $a->strings['Change the behaviour of this account for special situations'] = 'Промяна на поведението на тази сметка за специални ситуации'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Няма предложения. Ако това е нов сайт, моля опитайте отново в рамките на 24 часа.'; -$a->strings['Friend Suggestions'] = 'Предложения за приятели'; -$a->strings['Remove Item Tag'] = 'Извадете Tag т.'; -$a->strings['Select a tag to remove: '] = 'Изберете етикет, за да премахнете: '; -$a->strings['Remove'] = 'Премахване'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Този сайт е надвишил броя на разрешените дневни регистрации сметка. Моля, опитайте отново утре.'; -$a->strings['Import'] = 'Внасяне'; -$a->strings['No videos selected'] = 'Няма избрани видеоклипове'; -$a->strings['View Video'] = 'Преглед на видеоклип'; -$a->strings['Recent Videos'] = 'Скорошни видеоклипове'; -$a->strings['Upload New Videos'] = 'Качване на нови видеоклипове'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Брой на ежедневните съобщения за стена за %s е превишен. Съобщение не успя.'; -$a->strings['Unable to check your home location.'] = 'Не може да проверите вашето местоположение.'; -$a->strings['No recipient.'] = 'Не получателя.'; -$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Ако желаете за %s да отговори, моля, проверете дали настройките за поверителност на сайта си позволяват частни съобщения от непознати податели.'; -$a->strings['File upload failed.'] = 'Файл за качване не успя.'; -$a->strings['Wall Photos'] = 'Стена снимки'; -$a->strings['Delete this item?'] = 'Изтриване на тази бележка?'; -$a->strings['Page not found.'] = 'Страницата не е намерена.'; -$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.'] = 'Маркера за сигурност не е вярна. Това вероятно е станало, тъй като формата е била отворена за прекалено дълго време (> 3 часа) преди да го представи.'; -$a->strings['Email'] = 'Е-поща'; -$a->strings['Diaspora'] = 'Диаспора'; -$a->strings['show more'] = 'покажи още'; -$a->strings['Nothing new here'] = 'Нищо ново тук'; -$a->strings['Clear notifications'] = 'Изчистване на уведомленията'; -$a->strings['Logout'] = 'изход'; -$a->strings['End this session'] = 'Край на тази сесия'; -$a->strings['Login'] = 'Вход'; -$a->strings['Sign in'] = 'Вход'; -$a->strings['Status'] = 'Състояние:'; -$a->strings['Your posts and conversations'] = 'Вашите мнения и разговори'; -$a->strings['Profile'] = 'Височина на профила'; -$a->strings['Your profile page'] = 'Вашият профил страница'; -$a->strings['Your photos'] = 'Вашите снимки'; -$a->strings['Videos'] = 'Видеоклипове'; -$a->strings['Your events'] = 'Събитията си'; -$a->strings['Personal notes'] = 'Личните бележки'; -$a->strings['Home'] = 'Начало'; -$a->strings['Home Page'] = 'Начална страница'; -$a->strings['Register'] = 'Регистратор'; -$a->strings['Create an account'] = 'Създаване на сметка'; -$a->strings['Help'] = 'Помощ'; -$a->strings['Help and documentation'] = 'Помощ и документация'; -$a->strings['Apps'] = 'Apps'; -$a->strings['Addon applications, utilities, games'] = 'Адон приложения, помощни програми, игри'; -$a->strings['Search'] = 'Търсене'; -$a->strings['Search site content'] = 'Търсене в сайта съдържание'; -$a->strings['Contacts'] = 'Контакти '; -$a->strings['Community'] = 'Общност'; -$a->strings['Events and Calendar'] = 'Събития и календарни'; -$a->strings['Directory'] = 'директория'; -$a->strings['People directory'] = 'Хората директория'; -$a->strings['Network'] = 'Мрежа'; -$a->strings['Conversations from your friends'] = 'Разговори от вашите приятели'; -$a->strings['Introductions'] = 'Представяне'; -$a->strings['Friend Requests'] = 'Молби за приятелство'; -$a->strings['Notifications'] = 'Уведомления '; -$a->strings['See all notifications'] = 'Вижте всички нотификации'; -$a->strings['Mark all system notifications seen'] = 'Марк виждали уведомления всички системни'; -$a->strings['Private mail'] = 'Частна поща'; -$a->strings['Inbox'] = 'Вх. поща'; -$a->strings['Outbox'] = 'Изходящи'; -$a->strings['Manage other pages'] = 'Управление на други страници'; -$a->strings['Settings'] = 'Настройки'; -$a->strings['Account settings'] = 'Настройки на профила'; -$a->strings['Manage/edit friends and contacts'] = 'Управление / редактиране на приятели и контакти'; -$a->strings['Admin'] = 'admin'; -$a->strings['Site setup and configuration'] = 'Настройка и конфигуриране на сайта'; -$a->strings['Navigation'] = 'Навигация'; -$a->strings['Site map'] = 'Карта на сайта'; -$a->strings['Embedding disabled'] = 'Вграждане на инвалиди'; -$a->strings['Embedded content'] = 'Вградени съдържание'; -$a->strings['prev'] = 'Пред.'; -$a->strings['last'] = 'Дата на последния одит. '; -$a->strings['Image/photo'] = 'Изображение / снимка'; -$a->strings['link to source'] = 'връзка източник'; -$a->strings['Click to open/close'] = 'Кликнете за отваряне / затваряне'; -$a->strings['$1 wrote:'] = '$ 1 пише:'; -$a->strings['Encrypted content'] = 'Шифрирано съдържание'; -$a->strings['No contacts'] = 'Няма контакти'; -$a->strings['View Contacts'] = 'Вижте Контакти'; -$a->strings['Remove term'] = 'Премахване мандат'; -$a->strings['Saved Searches'] = 'Запазени търсения'; -$a->strings['Add New Contact'] = 'Добавяне на нов контакт'; -$a->strings['Enter address or web location'] = 'Въведете местоположение на адрес или уеб'; -$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Пример: bob@example.com, http://example.com/barbara'; -$a->strings['Connect'] = 'Свързване! '; -$a->strings['Find People'] = 'Намерете хора,'; -$a->strings['Enter name or interest'] = 'Въведете името или интерес'; -$a->strings['Examples: Robert Morgenstein, Fishing'] = 'Примери: Робърт Morgenstein, Риболов'; -$a->strings['Find'] = 'Търсене'; -$a->strings['Similar Interests'] = 'Сходни интереси'; -$a->strings['Random Profile'] = 'Случайна Профил'; -$a->strings['Invite Friends'] = 'Покани приятели'; -$a->strings['Global Directory'] = 'Глобален справочник'; -$a->strings['Local Directory'] = 'Локалната директория'; -$a->strings['Groups'] = 'Групи'; -$a->strings['All Contacts'] = 'Всички Контакти'; -$a->strings['Saved Folders'] = 'Записани папки'; -$a->strings['Everything'] = 'Всичко'; -$a->strings['Categories'] = 'Категории'; -$a->strings['Archives'] = 'Архиви'; -$a->strings['Post to Email'] = 'Коментар на e-mail'; -$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Може да се наложи да импортирате файла "database.sql" ръчно чрез настървение или MySQL.'; -$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Не може да се намери командния ред версия на PHP в PATH уеб сървър.'; -$a->strings['PHP executable path'] = 'PHP изпълним път'; -$a->strings['Enter full path to php executable. You can leave this blank to continue the installation.'] = 'Въведете пълния път до изпълнимия файл на PHP. Можете да оставите полето празно, за да продължите инсталацията.'; -$a->strings['Command line PHP'] = 'Команден ред PHP'; -$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['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['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Грешка: МОД-пренаписване модул на Apache уеб сървър е необходимо, но не е инсталиран.'; -$a->strings['Apache mod_rewrite module'] = 'Apache mod_rewrite модул'; -$a->strings['libCurl PHP module'] = 'libCurl PHP модул'; -$a->strings['Error: libCURL PHP module required but not installed.'] = 'Грешка: libCURL PHP модул, но не е инсталирана.'; -$a->strings['GD graphics PHP module'] = 'GD графика PHP модул'; -$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Грешка: GD графика PHP модул с поддръжка на JPEG, но не е инсталирана.'; -$a->strings['OpenSSL PHP module'] = 'OpenSSL PHP модул'; -$a->strings['Error: openssl PHP module required but not installed.'] = 'Грешка: OpenSSL PHP модул са необходими, но не е инсталирана.'; -$a->strings['mb_string PHP module'] = 'mb_string PHP модул'; -$a->strings['Error: mb_string PHP module required but not installed.'] = 'Грешка: mb_string PHP модул, но не е инсталирана.'; -$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.'] = 'Това е най-често настройка разрешение, тъй като уеб сървъра не може да бъде в състояние да записва файлове във вашата папка - дори и ако можете.'; -$a->strings['You can alternatively skip this procedure and perform a manual installation. Please see the file "INSTALL.txt" for instructions.'] = 'Можете като алтернатива да пропуснете тази процедура и да извърши ръчно инсталиране. Моля, вижте файла "INSTALL.txt", за инструкции.'; -$a->strings['Url rewrite is working'] = ', Url пренаписванията работи'; -$a->strings['Could not connect to database.'] = 'Не може да се свърже с базата данни.'; -$a->strings['Monday'] = 'Понеделник'; -$a->strings['Tuesday'] = 'Вторник'; -$a->strings['Wednesday'] = 'Сряда'; -$a->strings['Thursday'] = 'Четвъртък'; -$a->strings['Friday'] = 'Петък'; -$a->strings['Saturday'] = 'Събота'; -$a->strings['Sunday'] = 'Неделя'; -$a->strings['January'] = 'януари'; -$a->strings['February'] = 'февруари'; -$a->strings['March'] = 'март'; -$a->strings['April'] = 'април'; -$a->strings['May'] = 'Май'; -$a->strings['June'] = 'юни'; -$a->strings['July'] = 'юли'; -$a->strings['August'] = 'август'; -$a->strings['September'] = 'септември'; -$a->strings['October'] = 'октомври'; -$a->strings['November'] = 'ноември'; -$a->strings['December'] = 'декември'; -$a->strings['Update %s failed. See error logs.'] = 'Актуализация %s не успя. Виж логовете за грешки.'; -$a->strings['User creation error'] = 'Грешка при създаване на потребителя'; -$a->strings['User profile creation error'] = 'Грешка при създаване профила на потребителя'; -$a->strings['Friend Suggestion'] = 'Приятел за предложения'; -$a->strings['Friend/Connect Request'] = 'Приятел / заявка за свързване'; -$a->strings['New Follower'] = 'Нов последовател'; -$a->strings['%s created a new post'] = '%s създаден нов пост'; -$a->strings['%s commented on %s\'s post'] = '%s коментира %s е след'; -$a->strings['%s liked %s\'s post'] = '%s харесва %s е след'; -$a->strings['%s disliked %s\'s post'] = '%s не харесвал %s е след'; -$a->strings['%s is now friends with %s'] = '%s вече е приятел с %s'; -$a->strings['Approve'] = 'Одобряване'; -$a->strings['Connect URL missing.'] = 'Свързване URL липсва.'; -$a->strings['This site is not configured to allow communications with other networks.'] = 'Този сайт не е конфигуриран да позволява комуникация с други мрежи.'; -$a->strings['No compatible communication protocols or feeds were discovered.'] = 'Няма съвместими комуникационни протоколи или фуражите не са били открити.'; -$a->strings['The profile address specified does not provide adequate information.'] = 'Профилът на посочения адрес не предоставя достатъчна информация.'; -$a->strings['An author or name was not found.'] = 'Един автор или име не е намерен.'; -$a->strings['No browser URL could be matched to this address.'] = 'Не браузър URL може да съвпадне с този адрес.'; -$a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Не мога да съответства @ стил Адрес идентичност с известен протокол или се свържете с имейл.'; -$a->strings['Use mailto: in front of address to force email check.'] = 'Използвайте mailto: пред адрес, за да принуди проверка на имейл.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Профилът адрес принадлежи към мрежа, която е била забранена в този сайт.'; -$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Limited профил. Този човек ще бъде в състояние да получат преки / лична уведомления от вас.'; -$a->strings['Unable to retrieve contact information.'] = 'Не мога да получа информация за контакт.'; -$a->strings['l F d, Y \@ g:i A'] = 'L F г, Y \ @ G: I A'; -$a->strings['Starts:'] = 'Започва:'; -$a->strings['Finishes:'] = 'Играчи:'; -$a->strings['l, F j'] = 'л, F J'; -$a->strings['Edit event'] = 'Редактиране на Събитието'; -$a->strings['Happy Birthday %s'] = 'Честит рожден ден, %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.'] = 'Изтрита група с това име се възражда. Съществуващ елемент от разрешения май се прилагат към тази група и всички бъдещи членове. Ако това не е това, което сте възнамерявали, моля да се създаде друга група с различно име.'; -$a->strings['Default privacy group for new contacts'] = 'Неприкосновеността на личния живот на група по подразбиране за нови контакти'; -$a->strings['Everybody'] = 'Всички'; -$a->strings['edit'] = 'редактиране'; -$a->strings['add'] = 'добави'; -$a->strings['Edit group'] = 'Редактиране на групата'; -$a->strings['Contacts not in any group'] = 'Контакти, не във всяка група'; -$a->strings['Create a new group'] = 'Създайте нова група'; -$a->strings['Group Name: '] = 'Име на група: '; -$a->strings['activity'] = 'дейност'; -$a->strings['post'] = 'след'; -$a->strings['bytes'] = 'байта'; -$a->strings['[no subject]'] = '[Без тема]'; -$a->strings['Edit profile'] = 'Редактиране на потребителския профил'; -$a->strings['Change profile photo'] = 'Промяна на снимката на профил'; -$a->strings['Homepage:'] = 'Начална страница:'; -$a->strings['About:'] = 'това ?'; -$a->strings['g A l F d'] = 'грама Л Е г'; -$a->strings['F d'] = 'F г'; -$a->strings['[today]'] = 'Днес'; -$a->strings['Birthday Reminders'] = 'Напомняния за рождени дни'; -$a->strings['Birthdays this week:'] = 'Рождени дни този Седмица:'; -$a->strings['[No description]'] = '[Няма описание]'; -$a->strings['Event Reminders'] = 'Напомняния'; -$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'Сериозна грешка: генериране на ключове за защита не успя.'; -$a->strings['Passwords do not match. Password unchanged.'] = 'Паролите не съвпадат. Парола непроменен.'; -$a->strings['An invitation is required.'] = 'Се изисква покана.'; -$a->strings['Invitation could not be verified.'] = 'Покана не може да бъде проверена.'; -$a->strings['Invalid OpenID url'] = 'Невалиден URL OpenID'; -$a->strings['We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.'] = 'Ние се натъкна на проблем, докато влезете с OpenID, който сте посочили. Моля, проверете правилното изписване на идентификацията.'; -$a->strings['The error message was:'] = 'Съобщението за грешка е:'; -$a->strings['Please enter the required information.'] = 'Моля, въведете необходимата информация.'; -$a->strings['That doesn\'t appear to be your full (First Last) name.'] = 'Това не изглежда да е пълен (първи Последно) име.'; -$a->strings['Your email domain is not among those allowed on this site.'] = 'Вашият имейл домейн не е сред тези, разрешени на този сайт.'; -$a->strings['Not a valid email address.'] = 'Не е валиден имейл адрес.'; -$a->strings['Cannot use that email.'] = 'Не може да се използва този имейл.'; -$a->strings['Nickname is already registered. Please choose another.'] = 'Псевдоним вече е регистрирано. Моля, изберете друга.'; -$a->strings['An error occurred during registration. Please try again.'] = 'Възникна грешка по време на регистрацията. Моля, опитайте отново.'; -$a->strings['An error occurred creating your default profile. Please try again.'] = 'Възникна грешка при създаването на своя профил по подразбиране. Моля, опитайте отново.'; -$a->strings['Friends'] = 'Приятели'; -$a->strings['Registration details for %s'] = 'Регистрационни данни за %s'; -$a->strings['Disable'] = 'забрани'; -$a->strings['Enable'] = 'Да се активира ли?'; -$a->strings['Administration'] = 'Администриране '; -$a->strings['Toggle'] = '切換'; -$a->strings['Author: '] = 'Автор: '; -$a->strings['Maintainer: '] = 'Отговорник: '; -$a->strings['Blocked'] = 'Блокиран'; -$a->strings['select all'] = 'Избор на всичко'; -$a->strings['Unblock'] = 'Разблокиране'; -$a->strings['Update has been marked successful'] = 'Update е маркиран успешно'; -$a->strings['Update %s was successfully applied.'] = 'Актуализация %s бе успешно приложена.'; -$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'Актуализация %s не се връща статус. Известно дали тя успя.'; -$a->strings['No failed updates.'] = 'Няма провалени новини.'; -$a->strings['Failed Updates'] = 'Неуспешно Updates'; -$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Това не включва актуализации, преди 1139, които не връщат статута.'; -$a->strings['Mark success (if update was manually applied)'] = 'Марк успех (ако актуализация е ръчно прилага)'; -$a->strings['Attempt to execute this update step automatically'] = 'Опита да изпълни тази стъпка се обновяват автоматично'; -$a->strings['Other'] = 'Друг'; -$a->strings['Logs'] = 'Дневници'; -$a->strings['Clear'] = 'Безцветен '; -$a->strings['Log file'] = 'Регистрационен файл'; -$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Трябва да бъде записван от уеб сървър. В сравнение с вашата Friendica най-високо ниво директория.'; -$a->strings['Log level'] = 'Вход ниво'; -$a->strings['Closed'] = 'Затворен'; -$a->strings['Requires approval'] = 'Изисква одобрение'; -$a->strings['Open'] = 'Отворена.'; -$a->strings['No SSL policy, links will track page SSL state'] = 'Не SSL политика, връзки ще следи страница SSL състояние'; -$a->strings['Force all links to use SSL'] = 'Принуди всички връзки да се използва SSL'; -$a->strings['Self-signed certificate, use SSL for local links only (discouraged)'] = 'Самоподписан сертификат, използвайте SSL за местни връзки единствено (обезкуражени)'; -$a->strings['Site'] = 'Сайт'; -$a->strings['Registration'] = 'Регистрация'; -$a->strings['File upload'] = 'Прикачване на файлове'; -$a->strings['Policies'] = 'Политики'; -$a->strings['Performance'] = 'Производителност'; -$a->strings['Site name'] = 'Име на сайта'; -$a->strings['Banner/Logo'] = 'Банер / лого'; -$a->strings['System language'] = 'Системен език'; -$a->strings['System theme'] = 'Системна тема'; -$a->strings['SSL link policy'] = 'SSL връзка политика'; -$a->strings['Determines whether generated links should be forced to use SSL'] = 'Определя дали генерирани връзки трябва да бъдат принудени да се използва SSL'; -$a->strings['Maximum image size'] = 'Максимален размер на изображението'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'Максимален размер в байтове на качените изображения. По подразбиране е 0, което означава, няма граници.'; -$a->strings['Register policy'] = 'Регистрирайте политика'; -$a->strings['Register text'] = 'Регистрирайте се текст'; -$a->strings['Accounts abandoned after x days'] = 'Сметките изоставени след дни х'; -$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = 'Няма да губи системните ресурси избирателните външни сайтове за abandonded сметки. Въведете 0 за без ограничение във времето.'; -$a->strings['Allowed friend domains'] = 'Позволи на домейни приятел'; -$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Разделени със запетая списък на домейни, на които е разрешено да се създадат приятелства с този сайт. Заместващи символи са приети. На Empty да се даде възможност на всички домейни'; -$a->strings['Allowed email domains'] = 'Позволи на домейни имейл'; -$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Разделени със запетая списък на домейни, които са разрешени в имейл адреси за регистрации в този сайт. Заместващи символи са приети. На Empty да се даде възможност на всички домейни'; -$a->strings['Block public'] = 'Блокиране на обществения'; -$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Тръгване за блокиране на публичен достъп до всички по друг начин публичните лични страници на този сайт, освен ако в момента сте влезли в системата.'; -$a->strings['Force publish'] = 'Принудително публикува'; -$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Проверете, за да се принудят всички профили на този сайт да бъдат изброени в директорията на сайта.'; -$a->strings['Block multiple registrations'] = 'Блокиране на множество регистрации'; -$a->strings['Disallow users to register additional accounts for use as pages.'] = 'Забраните на потребителите да се регистрират допълнителни сметки, за използване като страниците.'; -$a->strings['Enable Diaspora support'] = 'Активирайте диаспора подкрепа'; -$a->strings['Provide built-in Diaspora network compatibility.'] = 'Осигури вградена диаспора в мрежата съвместимост.'; -$a->strings['Only allow Friendica contacts'] = 'Позволяват само Friendica контакти'; -$a->strings['All contacts must use Friendica protocols. All other built-in communication protocols disabled.'] = 'Всички контакти трябва да използвате Friendica протоколи. Всички останали вградени комуникационни протоколи с увреждания.'; -$a->strings['Verify SSL'] = 'Провери SSL'; -$a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = 'Ако желаете, можете да се обърнете на стриктна проверка на сертификат. Това ще означава, че не можете да свържете (на всички), за да самоподписани SSL обекти.'; -$a->strings['Proxy user'] = 'Proxy потребител'; -$a->strings['Proxy URL'] = 'Proxy URL'; -$a->strings['Network timeout'] = 'Мрежа изчакване'; -$a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Стойността е в секунди. Настройте на 0 за неограничен (не се препоръчва).'; -$a->strings['Maximum Load Average'] = 'Максимално натоварване'; -$a->strings['Normal Account'] = 'Нормално профил'; -$a->strings['Automatic Friend Account'] = 'Автоматично приятел акаунт'; -$a->strings['Message queues'] = 'Съобщение опашки'; -$a->strings['Summary'] = 'Резюме'; -$a->strings['Registered users'] = 'Регистрираните потребители'; -$a->strings['Pending registrations'] = 'Предстоящи регистрации'; -$a->strings['Version'] = 'Версия '; -$a->strings['Screenshot'] = 'Screenshot'; -$a->strings['Themes'] = 'Теми'; -$a->strings['[Experimental]'] = '(Експериментален)'; -$a->strings['[Unsupported]'] = 'Неподдържан]'; -$a->strings['Register date'] = 'Дата на регистрация'; -$a->strings['Last login'] = 'Последно влизане'; -$a->strings['Site admin'] = 'Администратор на сайта'; -$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Избрани потребители ще бъде изтрита! \ N \ nEverything тези потребители са публикувани на този сайт ще бъде изтрит завинаги! \ N \ nСигурни ли сте?'; -$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Потребител {0} ще бъде изтрит! \ n \ nEverything този потребител публикувани на този сайт ще бъде изтрит завинаги! \ n \ nСигурни ли сте?'; -$a->strings['Users'] = 'Потребители'; -$a->strings['Account approved.'] = 'Сметка одобрен.'; -$a->strings['Request date'] = 'Искане дата'; -$a->strings['No registrations.'] = 'Няма регистрации.'; -$a->strings['Deny'] = 'Отказ'; -$a->strings['No installed applications.'] = 'Няма инсталираните приложения.'; -$a->strings['Applications'] = 'Приложения'; -$a->strings['Item was not found.'] = 'Елемент не е намерен.'; -$a->strings['Additional features'] = 'Допълнителни възможности'; -$a->strings['DB updates'] = 'Обновления на БД'; -$a->strings['User registrations waiting for confirmation'] = 'Потребителски регистрации, чакащи за потвърждение'; -$a->strings['Profile Details'] = 'Детайли от профила'; -$a->strings['Only You Can See This'] = 'Можете да видите това'; -$a->strings['Tips for New Members'] = 'Съвети за нови членове'; -$a->strings['Account'] = 'профил'; -$a->strings['Connected apps'] = 'Свързани приложения'; -$a->strings['Export personal data'] = 'Експортиране на личните данни'; -$a->strings['Remove account'] = 'Премахване сметка'; -$a->strings['Contact update failed.'] = 'Свържете се актуализира провали.'; -$a->strings['WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working.'] = ' ВНИМАНИЕ: Това е силно напреднали и ако въведете невярна информация вашите комуникации с този контакт може да спре да работи.'; -$a->strings['Please use your browser \'Back\' button now if you are uncertain what to do on this page.'] = 'Моля, използвайте Назад на вашия браузър бутон сега, ако не сте сигурни какво да правят на тази страница.'; -$a->strings['Return to contact editor'] = 'Назад, за да се свържете с редактор'; -$a->strings['Account Nickname'] = 'Сметка Псевдоним'; -$a->strings['@Tagname - overrides Name/Nickname'] = 'Име / псевдоним на @ Tagname - Заменя'; -$a->strings['Account URL'] = 'Сметка URL'; -$a->strings['Friend Request URL'] = 'URL приятел заявка'; -$a->strings['Friend Confirm URL'] = 'Приятел Потвърди URL'; -$a->strings['Notification Endpoint URL'] = 'URL адрес на Уведомление Endpoint'; -$a->strings['Poll/Feed URL'] = 'Анкета / URL Feed'; -$a->strings['New photo from this URL'] = 'Нова снимка от този адрес'; -$a->strings['Invalid contact.'] = 'Невалиден свържете.'; -$a->strings['Could not access contact record.'] = 'Не може да бъде достъп до запис за контакт.'; -$a->strings['Contact has been blocked'] = 'За контакти е бил блокиран'; -$a->strings['Contact has been unblocked'] = 'Контакт са отблокирани'; -$a->strings['Contact has been ignored'] = 'Лицето е било игнорирано'; -$a->strings['Contact has been unignored'] = 'За контакти е бил unignored'; -$a->strings['Contact has been archived'] = 'Контакт бяха архивирани'; -$a->strings['Contact has been unarchived'] = 'За контакти е бил разархивира'; -$a->strings['Do you really want to delete this contact?'] = 'Наистина ли искате да изтриете този контакт?'; -$a->strings['Contact has been removed.'] = 'Контакт е била отстранена.'; -$a->strings['You are mutual friends with %s'] = 'Вие сте общи приятели с %s'; -$a->strings['You are sharing with %s'] = 'Вие споделяте с %s'; -$a->strings['%s is sharing with you'] = '%s се споделя с вас'; -$a->strings['Private communications are not available for this contact.'] = 'Частни съобщения не са на разположение за този контакт.'; -$a->strings['Never'] = 'Никога!'; -$a->strings['(Update was not successful)'] = '(Актуализация не е била успешна)'; -$a->strings['(Update was successful)'] = '(Update е била успешна)'; -$a->strings['Suggest friends'] = 'Предложете приятели'; -$a->strings['Network type: %s'] = 'Тип мрежа: %s'; -$a->strings['Communications lost with this contact!'] = 'Communications загубиха с този контакт!'; -$a->strings['Contact Information / Notes'] = 'Информация за контакти / Забележки'; -$a->strings['Edit contact notes'] = 'Редактиране на контакт с бележка'; -$a->strings['Visit %s\'s profile [%s]'] = 'Посетете %s Профилът на [ %s ]'; -$a->strings['Block/Unblock contact'] = 'Блокиране / Деблокиране на контакт'; -$a->strings['Ignore contact'] = 'Игнорирай се свържете с'; -$a->strings['View conversations'] = 'Вижте разговори'; -$a->strings['Last update:'] = 'Последна актуализация:'; -$a->strings['Update public posts'] = 'Актуализиране на държавни длъжности'; -$a->strings['Update now'] = 'Актуализирай сега'; -$a->strings['Unignore'] = 'Извади от пренебрегнатите'; -$a->strings['Currently blocked'] = 'Които понастоящем са блокирани'; -$a->strings['Currently ignored'] = 'В момента игнорирани'; -$a->strings['Currently archived'] = 'В момента архивират'; -$a->strings['Hide this contact from others'] = 'Скриване на този контакт от другите'; -$a->strings['Replies/likes to your public posts may still be visible'] = 'Отговори / обича да си публични длъжности май все още да се вижда'; -$a->strings['Show all contacts'] = 'Покажи на всички контакти'; -$a->strings['Only show blocked contacts'] = 'Покажи само Блокираните контакти'; -$a->strings['Ignored'] = 'Игнорирани'; -$a->strings['Only show ignored contacts'] = 'Покажи само игнорирани контакти'; -$a->strings['Archived'] = 'Архивиран:'; -$a->strings['Only show archived contacts'] = 'Покажи само архивирани контакти'; -$a->strings['Hidden'] = 'Скрит'; -$a->strings['Only show hidden contacts'] = 'Само показва скрити контакти'; -$a->strings['Search your contacts'] = 'Търсене на вашите контакти'; -$a->strings['Archive'] = 'Архив'; -$a->strings['Unarchive'] = 'Разархивирате'; -$a->strings['Advanced Contact Settings'] = 'Разширени настройки за контакт'; -$a->strings['Mutual Friendship'] = 'Взаимното приятелство'; -$a->strings['is a fan of yours'] = 'е фенка'; -$a->strings['you are a fan of'] = 'Вие сте фен на'; -$a->strings['Toggle Blocked status'] = 'Превключване Блокирани статус'; -$a->strings['Toggle Ignored status'] = 'Превключване игнорирани статус'; -$a->strings['Toggle Archive status'] = 'Превключване статус Архив'; -$a->strings['Delete contact'] = 'Изтриване на контакта'; -$a->strings['No results.'] = 'Няма резултати.'; -$a->strings['Not available.'] = 'Няма налични'; -$a->strings['No such group'] = 'Няма такава група'; -$a->strings['Personal'] = 'Лично'; -$a->strings['Posts that mention or involve you'] = 'Мнения, които споменават или включват'; -$a->strings['Starred'] = 'Със звезда'; -$a->strings['Favourite Posts'] = 'Любими Мнения'; -$a->strings['Time Conversion'] = 'Време за преобразуване'; -$a->strings['UTC time: %s'] = 'UTC време: %s'; -$a->strings['Current timezone: %s'] = 'Текуща часова зона: %s'; -$a->strings['Converted localtime: %s'] = 'Превърнат localtime: %s'; -$a->strings['Please select your timezone:'] = 'Моля изберете вашия часовата зона:'; -$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Превключвате между различните идентичности или общността / групата страници, които споделят данните на акаунта ви, или които сте получили "управление" разрешения'; -$a->strings['Select an identity to manage: '] = 'Изберете идентичност, за да управлява: '; -$a->strings['No entries (some entries may be hidden).'] = 'Няма записи (някои вписвания, могат да бъдат скрити).'; -$a->strings['Find on this site'] = 'Търсене в този сайт'; -$a->strings['Site Directory'] = 'Site Directory'; -$a->strings['- select -'] = 'избор'; -$a->strings['Bug reports and issues: please visit'] = 'Доклади за грешки и проблеми: моля посетете'; -$a->strings['Friend suggestion sent.'] = 'Предложението за приятелство е изпратено.'; -$a->strings['Suggest Friends'] = 'Предлагане на приятели'; -$a->strings['Suggest a friend for %s'] = 'Предлагане на приятел за %s'; -$a->strings['Could not create group.'] = 'Не може да се създаде група.'; -$a->strings['Group not found.'] = 'Групата не е намерен.'; -$a->strings['Create a group of contacts/friends.'] = 'Създаване на група от контакти / приятели.'; -$a->strings['Unable to remove group.'] = 'Не може да премахнете група.'; -$a->strings['Members'] = 'Членове'; -$a->strings['Group is empty'] = 'Групата е празна'; -$a->strings['Click on a contact to add or remove.'] = 'Щракнете върху контакт, за да добавите или премахнете.'; -$a->strings['Help:'] = 'Помощ'; -$a->strings['Welcome to %s'] = 'Добре дошли %s'; -$a->strings['No profile'] = 'Няма профил'; -$a->strings['System check'] = 'Проверка на системата'; -$a->strings['Check again'] = 'Проверете отново'; -$a->strings['Database connection'] = 'Свързване на база данни'; -$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'За да инсталирате Friendica трябва да знаем как да се свърже към вашата база данни.'; -$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Моля, свържете с вашия хостинг доставчик или администратора на сайта, ако имате въпроси относно тези настройки.'; -$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'База данни, за да определите по-долу би трябвало вече да съществува. Ако това не стане, моля да го създадете, преди да продължите.'; -$a->strings['Database Server Name'] = 'Име на сървър за база данни'; -$a->strings['Database Login Name'] = 'Името на базата данни Парола'; -$a->strings['Database Login Password'] = 'Database Влизам Парола'; -$a->strings['Database Name'] = 'Име на база данни'; -$a->strings['Please select a default timezone for your website'] = 'Моля, изберете часовата зона по подразбиране за вашия уеб сайт'; -$a->strings['Site settings'] = 'Настройки на сайта'; -$a->strings['Site administrator email address'] = 'Сайт администратор на имейл адрес'; -$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'Вашият имейл адрес трябва да съответстват на това, за да използвате уеб панел администратор.'; -$a->strings['Your Friendica site database has been installed.'] = 'Вашият Friendica сайт база данни е инсталиран.'; -$a->strings['

    What next

    '] = '

    Каква е следващата стъпка '; -$a->strings['Please see the file "INSTALL.txt".'] = 'Моля, вижте файла "INSTALL.txt".'; -$a->strings['%s : Not a valid email address.'] = '%s не е валиден имейл адрес.'; -$a->strings['Please join us on Friendica'] = 'Моля, присъединете се към нас на Friendica'; -$a->strings['%s : Message delivery failed.'] = '%s : Съобщение доставка не успя.'; -$a->strings['You have no more invitations available'] = 'Имате няма повече покани'; -$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.'] = 'Посетете %s за списък на публичните сайтове, които можете да се присъедините. Friendica членове на други сайтове могат да се свързват един с друг, както и с членовете на много други социални мрежи.'; -$a->strings['To accept this invitation, please visit and register at %s or any other public Friendica website.'] = 'За да приемете тази покана, моля, посетете и се регистрира в %s или друга публична уебсайт Friendica.'; -$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.'] = 'Friendica сайтове се свързват, за да се създаде огромна допълнителна защита на личния живот, социална мрежа, която е собственост и се управлява от нейните членове. Те също могат да се свържат с много от традиционните социални мрежи. Виж %s за списък на алтернативни сайтове Friendica, можете да се присъедините.'; -$a->strings['Our apologies. This system is not currently configured to connect with other public sites or invite members.'] = 'Нашите извинения. Тази система в момента не е конфигуриран да се свържете с други обществени обекти, или ще поканят членове.'; -$a->strings['Send invitations'] = 'Изпращане на покани'; -$a->strings['Enter email addresses, one per line:'] = 'Въведете имейл адреси, по един на ред:'; -$a->strings['You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.'] = 'Вие сте любезно поканени да се присъединят към мен и други близки приятели за Friendica, - и да ни помогне да създадем по-добра социална мрежа.'; -$a->strings['You will need to supply this invitation code: $invite_code'] = 'Вие ще трябва да предоставят този код за покана: $ invite_code'; -$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'След като сте се регистрирали, моля свържете се с мен чрез профила на моята страница в:'; -$a->strings['Show Ignored Requests'] = 'Показване на пренебрегнатите заявки'; -$a->strings['Hide Ignored Requests'] = 'Скриване на пренебрегнатите заявки'; -$a->strings['Claims to be known to you: '] = 'Искания, да се знае за вас: '; -$a->strings['Friend'] = 'Приятел'; -$a->strings['No introductions.'] = 'Няма въвеждане.'; -$a->strings['Network Notifications'] = 'Мрежа Известия'; -$a->strings['System Notifications'] = 'Системни известия'; -$a->strings['Personal Notifications'] = 'Лични Известия'; -$a->strings['Home Notifications'] = 'Начало Известия'; -$a->strings['Remote privacy information not available.'] = 'Дистанционно неприкосновеността на личния живот информация не е достъпен.'; -$a->strings['Visible to:'] = 'Вижда се от:'; -$a->strings['No contacts.'] = 'Няма контакти.'; -$a->strings['j F, Y'] = 'J F, Y'; -$a->strings['j F'] = 'J F'; -$a->strings['Birthday:'] = 'Дата на раждане:'; -$a->strings['Age: '] = 'Възраст: '; -$a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Ако не сте запознати с OpenID, моля оставете това поле празно и попълнете останалата част от елементите.'; -$a->strings['Your OpenID (optional): '] = 'Вашият OpenID (не е задължително): '; -$a->strings['Include your profile in member directory?'] = 'Включете вашия профил в член директория?'; -$a->strings['Membership on this site is by invitation only.'] = 'Членството на този сайт е само с покани.'; -$a->strings['Choose a nickname: '] = 'Изберете прякор: '; -$a->strings['Registration successful. Please check your email for further instructions.'] = 'Регистрация успешно. Моля, проверете електронната си поща за по-нататъшни инструкции.'; -$a->strings['Your registration can not be processed.'] = 'Вашата регистрация не могат да бъдат обработени.'; -$a->strings['Your registration is pending approval by the site owner.'] = 'Вашата регистрация е в очакване на одобрение от собственика на сайта.'; -$a->strings['Create a New Account'] = 'Създаване на нов профил:'; -$a->strings['Or login using OpenID: '] = 'Или да влезнете с OpenID: '; -$a->strings['Password: '] = 'Парола '; -$a->strings['Forgot your password?'] = 'Забравена парола?'; -$a->strings['Website Terms of Service'] = 'Условия за ползване на сайта'; -$a->strings['terms of service'] = 'условия за ползване'; -$a->strings['Website Privacy Policy'] = 'Политика за поверителност на сайта'; -$a->strings['privacy policy'] = 'политика за поверителност'; -$a->strings['Logged out.'] = 'Изход'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'Неуспех да се свърже с имейл акаунт, като използвате предоставените настройки.'; +$a->strings['Email access is disabled on this site.'] = 'Достъп до електронна поща е забранен на този сайт.'; +$a->strings['None'] = 'Няма '; +$a->strings['Email/Mailbox Setup'] = 'Email / Mailbox Setup'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Ако желаете да се комуникира с имейл контакти, които използват тази услуга (по желание), моля посочете как да се свържете с вашата пощенска кутия.'; +$a->strings['Last successful email check:'] = 'Последна успешна проверка на електронната поща:'; +$a->strings['IMAP server name:'] = 'Име на IMAP сървъра:'; +$a->strings['IMAP port:'] = 'IMAP порта:'; +$a->strings['Security:'] = 'Сигурност'; +$a->strings['Email login name:'] = 'Email потребителско име:'; +$a->strings['Email password:'] = 'Email парола:'; +$a->strings['Reply-to address:'] = 'Адрес за отговор:'; +$a->strings['Send public posts to all email contacts:'] = 'Изпратете публични длъжности за всички имейл контакти:'; +$a->strings['Action after import:'] = 'Действия след вноса:'; +$a->strings['Move to folder'] = 'Премества избраното в папка'; +$a->strings['Move to folder:'] = 'Премества избраното в папка'; $a->strings['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->strings['Existing Page Delegates'] = 'Съществуващите Делегатите Страница'; $a->strings['Potential Delegates'] = 'Потенциални Делегатите'; @@ -837,8 +704,9 @@ $a->strings['Theme settings'] = 'Тема Настройки'; $a->strings['Display Theme:'] = 'Палитрата на дисплея:'; $a->strings['Maximum of 100 items'] = 'Максимум от 100 точки'; $a->strings['Update browser every xx seconds'] = 'Актуализиране на браузъра на всеки ХХ секунди'; -$a->strings['Don\'t show emoticons'] = 'Да не се показват емотикони'; -$a->strings['Profile Name is required.'] = 'Име на профил се изисква.'; +$a->strings['Additional Features'] = 'Допълнителни възможности'; +$a->strings['Connected Apps'] = 'Свързани Apps'; +$a->strings['Remove authorization'] = 'Премахване на разрешение'; $a->strings['(click to open/close)'] = '(Щракнете за отваряне / затваряне)'; $a->strings['Edit Profile Details'] = 'Редактиране на детайли от профила'; $a->strings['Change Profile Photo'] = 'Промяна снимката на профила'; @@ -863,9 +731,12 @@ $a->strings['Please adjust the image cropping for optimum viewing.'] = 'Моля $a->strings['or'] = 'или'; $a->strings['skip this step'] = 'пропуснете тази стъпка'; $a->strings['select a photo from your photo albums'] = 'изберете снимка от вашите фото албуми'; -$a->strings['Wrong Password'] = 'Неправилна парола'; +$a->strings['Remove My Account'] = 'Извадете Моят профил'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Това ще премахне изцяло сметката си. След като това е направено, не е възстановим.'; +$a->strings['Please enter your password for verification:'] = 'Моля, въведете паролата си за проверка:'; $a->strings['Export all'] = 'Изнасяне на всичко'; -$a->strings['Not Found'] = 'Не е намерено'; +$a->strings['User creation error'] = 'Грешка при създаване на потребителя'; +$a->strings['User profile creation error'] = 'Грешка при създаване профила на потребителя'; $a->strings['Welcome to Friendica'] = 'Добре дошли да Friendica'; $a->strings['New Member Checklist'] = 'Нова държава Чеклист'; $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.'] = 'Бихме искали да предложим някои съвети и връзки, за да направи своя опит приятно. Кликнете върху елемент, за да посетите съответната страница. Линк към тази страница ще бъде видима от началната си страница в продължение на две седмици след първоначалната си регистрация и след това спокойно ще изчезне.'; @@ -882,44 +753,43 @@ $a->strings['Your Contacts page is your gateway to managing friendships and conn $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->strings['Finding New People'] = 'Откриване на нови хора'; $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.'] = 'На страничния панел на страницата "Контакти" са няколко инструмента, да намерите нови приятели. Ние можем да съчетаем хора по интереси, потърсете хора по име или интерес, и да предостави предложения на базата на мрежови връзки. На чисто нов сайт, приятел предложения ще обикновено започват да се населена в рамките на 24 часа.'; -$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.'] = 'След като сте направили някои приятели, да ги организирате в групи от частния разговор от страничната лента на страницата с контакти и след това можете да взаимодействате с всяка група частно във вашата мрежа.'; $a->strings['Why Aren\'t My Posts Public?'] = 'Защо публикациите ми не са публични?'; $a->strings['Our help pages may be consulted for detail on other program features and resources.'] = 'Нашата помощ страницата може да бъде консултиран за подробности относно други характеристики, програма и ресурси.'; +$a->strings['%s liked %s\'s post'] = '%s харесва %s е след'; +$a->strings['%s disliked %s\'s post'] = '%s не харесвал %s е след'; +$a->strings['%s is now friends with %s'] = '%s вече е приятел с %s'; +$a->strings['%s commented on %s\'s post'] = '%s коментира %s е след'; +$a->strings['%s created a new post'] = '%s създаден нов пост'; +$a->strings['Friend Suggestion'] = 'Приятел за предложения'; +$a->strings['Friend/Connect Request'] = 'Приятел / заявка за свързване'; +$a->strings['New Follower'] = 'Нов последовател'; +$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s в %2$s ви изпрати ново лично съобщение .'; +$a->strings['a private message'] = 'лично съобщение'; +$a->strings['%1$s sent you %2$s.'] = 'Ви изпрати %2$s %1$s %2$s .'; +$a->strings['Please visit %s to view and/or reply to your private messages.'] = 'Моля, посетете %s да видите и / или да отговорите на Вашите лични съобщения.'; +$a->strings['%s commented on an item/conversation you have been following.'] = '%s коментира артикул / разговор, който са били.'; +$a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Моля, посетете %s да видите и / или да отговорите на разговор.'; +$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s публикуван вашия профил стена при %2$s'; +$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Получили сте въведения от %1$s в %2$s'; +$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Получили сте [URL = %1$s ] въведение [/ URL] от %2$s .'; +$a->strings['You may visit their profile at %s'] = 'Можете да посетите техния профил в %s'; +$a->strings['Please visit %s to approve or reject the introduction.'] = 'Моля, посетете %s да одобри или да отхвърли въвеждането.'; +$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = 'Получили сте приятел предложение от %1$s в %2$s'; +$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = 'Получили сте [URL = %1$s ] предложение приятел [/ URL] %2$s от %3$s .'; +$a->strings['Name:'] = 'Наименование:'; +$a->strings['Photo:'] = 'Снимка:'; +$a->strings['Please visit %s to approve or reject the suggestion.'] = 'Моля, посетете %s да одобри или отхвърли предложението.'; $a->strings['This message was sent to you by %s, a member of the Friendica social network.'] = 'Това съобщение е изпратено до вас от %s , член на социалната мрежа на Friendica.'; $a->strings['You may visit them online at %s'] = 'Можете да ги посетите онлайн на адрес %s'; $a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Моля, свържете се с подателя, като отговори на този пост, ако не желаете да получавате тези съобщения.'; $a->strings['%s posted an update.'] = '%s е публикувал актуализация.'; -$a->strings['This entry was edited'] = 'Записът е редактиран'; $a->strings['Private Message'] = 'Лично съобщение'; -$a->strings['save to folder'] = 'запишете в папка'; -$a->strings['add star'] = 'Добавяне на звезда'; -$a->strings['remove star'] = 'Премахване на звездата'; -$a->strings['toggle star status'] = 'превключване звезда статус'; -$a->strings['starred'] = 'звезда'; -$a->strings['add tag'] = 'добавяне на етикет'; -$a->strings['like'] = 'харесвам'; -$a->strings['dislike'] = 'не харесвам'; +$a->strings['This entry was edited'] = 'Записът е редактиран'; +$a->strings['Edit'] = 'Редактиране'; $a->strings['to'] = 'за'; $a->strings['Wall-to-Wall'] = 'От стена до стена'; $a->strings['via Wall-To-Wall:'] = 'чрез стена до стена:'; -$a->strings['Attachments:'] = 'Приложения'; $a->strings['following'] = 'следните условия:'; $a->strings['stopped following'] = 'спря след'; -$a->strings['Hometown:'] = 'Hometown:'; -$a->strings['Sexual Preference:'] = 'Сексуални предпочитания:'; -$a->strings['Political Views:'] = 'Политически възгледи:'; -$a->strings['Religious Views:'] = 'Религиозни възгледи:'; -$a->strings['Likes:'] = 'Харесвания:'; -$a->strings['Dislikes:'] = 'Нехаресвания:'; -$a->strings['Title/Description:'] = 'Наименование/Описание'; -$a->strings['Musical interests'] = 'Музикални интереси'; -$a->strings['Books, literature'] = 'Книги, литература'; -$a->strings['Television'] = 'Телевизия'; -$a->strings['Film/dance/culture/entertainment'] = 'Филм / танц / Култура / забавления'; -$a->strings['Hobbies/Interests'] = 'Хобита / интереси'; -$a->strings['Love/romance'] = 'Любов / романтика'; -$a->strings['Work/employment'] = 'Работа / заетост'; -$a->strings['School/education'] = 'Училище / образование'; -$a->strings['Contact information and Social Networks'] = 'Информация за контакти и социални мрежи'; $a->strings['Login failed.'] = 'Влез не успя.'; $a->strings['Please upload a profile photo.'] = 'Моля, да качите снимка профил.'; diff --git a/view/lang/ca/messages.po b/view/lang/ca/messages.po index 1bb1d7e43..420add7b2 100644 --- a/view/lang/ca/messages.po +++ b/view/lang/ca/messages.po @@ -1,3064 +1,3763 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: +# Joan Bar , 2019 # Rafael Garau, 2012 +# Rafael Garau, 2018 # Rafael Garau, 2012-2013 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-19 07:46+0100\n" -"PO-Revision-Date: 2016-12-19 10:01+0000\n" -"Last-Translator: fabrixxm \n" -"Language-Team: Catalan (http://www.transifex.com/Friendica/friendica/language/ca/)\n" +"POT-Creation-Date: 2023-09-18 05:30+0000\n" +"PO-Revision-Date: 2011-05-05 10:19+0000\n" +"Last-Translator: Joan Bar , 2019\n" +"Language-Team: Catalan (http://app.transifex.com/Friendica/friendica/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: include/contact_widgets.php:6 +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 +msgid "Unable to locate original post." +msgstr "No es pot localitzar post original." + +#: mod/item.php:138 +msgid "Post updated." +msgstr "" + +#: mod/item.php:203 mod/item.php:207 +msgid "Item wasn't stored." +msgstr "" + +#: mod/item.php:217 +msgid "Item couldn't be fetched." +msgstr "" + +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "Buidat després de rebutjar." + +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 +#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 +msgid "Item not found." +msgstr "Article no trobat." + +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:99 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:38 +#: src/Module/FriendSuggest.php:57 src/Module/Invite.php:42 +#: src/Module/Invite.php:131 src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Delegation.php:41 src/Module/Settings/Delegation.php:71 +#: src/Module/Settings/Display.php:73 src/Module/Settings/Display.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:111 +#: src/Module/Settings/RemoveMe.php:117 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Import.php:84 +#: src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "Permís denegat." + +#: mod/lostpass.php:40 +msgid "No valid account found." +msgstr "Compte no vàlid trobat." + +#: mod/lostpass.php:52 +msgid "Password reset request issued. Check your email." +msgstr "Sol·licitut de restabliment de contrasenya enviat. Comprovi el seu correu." + +#: 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\tBenvolgut %1$s,\n\t\t\tRecentment es va rebre una sol·licitud a \"%2$s\" per restablir el vostre compte\n\t\tcontrasenya Per confirmar aquesta sol·licitud, seleccioneu l’enllaç de verificació\n\t\ta continuació o enganxeu-lo a la barra d'adreces del navegador web\n\t\tSi NO heu sol·licitat aquest canvi, NO seguiu l'enllaç\n\t\tsempre que, ignorant i / o suprimint aquest correu electrònic, la sol·licitud caducarà en breu.\n\n\t\tLa vostra contrasenya no es canviarà tret que puguem verificar-la\nva emetre aquesta sol·licitud." + +#: mod/lostpass.php: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\tSeguiu aquest enllaç aviat per verificar la vostra identitat:\n\n\t\t%1$s\n\n\t\tA continuació, rebrà un missatge de seguiment que conté la nova contrasenya.\n\t\tPodeu canviar aquesta contrasenya des de la pàgina de configuració del compte després d’iniciar la sessió.\n\t\tEls detalls d’inici de sessió són els següents:\n\n\t\tUbicació del lloc:\t%2$s\n\t\tNom d'usuari:\t%3$s" + +#: mod/lostpass.php:84 +#, php-format +msgid "Password reset requested at %s" +msgstr "Contrasenya restablerta enviada a %s" + +#: mod/lostpass.php:100 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La sol·licitut no pot ser verificada. (Hauries de presentar-la abans). Restabliment de contrasenya fracassat." + +#: mod/lostpass.php:113 +msgid "Request has expired, please make a new one." +msgstr "La sol·licitud ha caducat, fes-ne una de nova." + +#: mod/lostpass.php:128 +msgid "Forgot your Password?" +msgstr "Has Oblidat la Contrasenya?" + +#: mod/lostpass.php:129 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Introdueixi la seva adreça de correu i enivii-la per restablir la seva contrasenya. Llavors comprovi el seu correu per a les següents instruccións. " + +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 +msgid "Nickname or Email: " +msgstr "Àlies o Correu:" + +#: mod/lostpass.php:131 +msgid "Reset" +msgstr "Restablir" + +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 +msgid "Password Reset" +msgstr "Restabliment de Contrasenya" + +#: mod/lostpass.php:147 +msgid "Your password has been reset as requested." +msgstr "La teva contrasenya fou restablerta com vas demanar." + +#: mod/lostpass.php:148 +msgid "Your new password is" +msgstr "La teva nova contrasenya es" + +#: mod/lostpass.php:149 +msgid "Save or copy your new password - and then" +msgstr "Guarda o copia la nova contrasenya - i llavors" + +#: mod/lostpass.php:150 +msgid "click here to login" +msgstr "clica aquí per identificarte" + +#: mod/lostpass.php:151 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Pots camviar la contrasenya des de la pàgina de Configuración desprès d'accedir amb èxit." + +#: mod/lostpass.php:155 +msgid "Your password has been reset." +msgstr "" + +#: 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\tBenvolgut %1$s,\n\t\t\t\tLa vostra contrasenya s'ha canviat segons la sol·licitud. Conserveu-ho\n\t\t\tinformació sobre els vostres registres (o canviar-ne la contrasenya immediatament a\n\t\t\tcosa que recordareu).\n\t\t" + +#: mod/lostpass.php: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\tLes dades de connexió són les següents:\n\n\t\t\tUbicació del lloc:\t%1$s\n\t\t\tNom d'usuari:\t%2$s\n\t\t\tContrasenya:\t%3$s\n\n\t\t\todeu canviar aquesta contrasenya des de la pàgina de configuració del compte després d’iniciar la sessió..\n\t\t" + +#: mod/lostpass.php:176 +#, php-format +msgid "Your password has been changed at %s" +msgstr "La teva contrasenya ha estat canviada a %s" + +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 +msgid "New Message" +msgstr "Nou Missatge" + +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 +msgid "No recipient selected." +msgstr "No s'ha seleccionat destinatari." + +#: mod/message.php:87 +msgid "Unable to locate contact information." +msgstr "No es pot trobar informació de contacte." + +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 +msgid "Message could not be sent." +msgstr "El Missatge no ha estat enviat." + +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 +msgid "Message collection failure." +msgstr "Ha fallat la recollida del missatge." + +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 +msgid "Discard" +msgstr "Descartar" + +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +msgid "Messages" +msgstr "Missatges" + +#: mod/message.php:148 +msgid "Conversation not found." +msgstr "No s'ha trobat la conversa." + +#: mod/message.php:153 +msgid "Message was not deleted." +msgstr "" + +#: mod/message.php:168 +msgid "Conversation was not removed." +msgstr "" + +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 +msgid "Please enter a link URL:" +msgstr "Sius plau, entri l'enllaç URL:" + +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 +msgid "Send Private Message" +msgstr "Enviant Missatge Privat" + +#: mod/message.php:191 mod/message.php:346 +msgid "To:" +msgstr "Per a:" + +#: mod/message.php:192 mod/message.php:347 +msgid "Subject:" +msgstr "Assumpte::" + +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 +msgid "Your message:" +msgstr "El teu missatge:" + +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "Carregar foto" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "Inserir enllaç web" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:578 +msgid "Please wait" +msgstr "Si us plau esperi" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:145 +#: src/Module/Install.php:234 src/Module/Install.php:274 +#: src/Module/Install.php:309 src/Module/Invite.php:178 +#: src/Module/Item/Compose.php:189 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Object/Post.php:1095 +#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171 +#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Enviar" + +#: mod/message.php:223 +msgid "No messages." +msgstr "Sense missatges." + +#: mod/message.php:279 +msgid "Message not available." +msgstr "Missatge no disponible." + +#: mod/message.php:323 +msgid "Delete message" +msgstr "Esborra missatge" + +#: mod/message.php:325 mod/message.php:456 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:340 mod/message.php:453 +msgid "Delete conversation" +msgstr "Esborrar conversació" + +#: mod/message.php:342 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Comunicacions degures no disponibles. Tú pots respondre des de la pàgina de perfil del remitent." + +#: mod/message.php:345 +msgid "Send Reply" +msgstr "Enviar Resposta" + +#: mod/message.php:427 +#, php-format +msgid "Unknown sender - %s" +msgstr "remitent desconegut - %s" + +#: mod/message.php:429 +#, php-format +msgid "You and %s" +msgstr "Tu i %s" + +#: mod/message.php:431 +#, php-format +msgid "%s and You" +msgstr "%s i Tu" + +#: mod/message.php:459 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d missatge" +msgstr[1] "%d missatges" + +#: mod/notes.php:52 src/Module/BaseProfile.php:108 +msgid "Personal Notes" +msgstr "Notes Personals" + +#: mod/notes.php:56 +msgid "Personal notes are visible only by yourself." +msgstr "" + +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 +msgid "Save" +msgstr "Guardar" + +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "" + +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 +msgid "Photo Albums" +msgstr "Àlbum de Fotos" + +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 +msgid "Recent Photos" +msgstr "Fotos Recents" + +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 +msgid "Upload New Photos" +msgstr "Actualitzar Noves Fotos" + +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 +msgid "everybody" +msgstr "tothom" + +#: mod/photos.php:159 +msgid "Contact information unavailable" +msgstr "Informació del Contacte no disponible" + +#: mod/photos.php:188 +msgid "Album not found." +msgstr "Àlbum no trobat." + +#: mod/photos.php:244 +msgid "Album successfully deleted" +msgstr "" + +#: mod/photos.php:246 +msgid "Album was empty." +msgstr "" + +#: mod/photos.php:277 +msgid "Failed to delete the photo." +msgstr "" + +#: mod/photos.php:545 +msgid "a photo" +msgstr "una foto" + +#: mod/photos.php:545 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s fou etiquetat a %2$s per %3$s" + +#: mod/photos.php:582 src/Module/Conversation/Community.php:159 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Accés públic denegat." + +#: mod/photos.php:587 +msgid "No photos selected" +msgstr "No s'han seleccionat fotos" + +#: mod/photos.php:721 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "" + +#: mod/photos.php:728 +msgid "Upload Photos" +msgstr "Carregar Fotos" + +#: mod/photos.php:732 mod/photos.php:820 +msgid "New album name: " +msgstr "Nou nom d'àlbum:" + +#: mod/photos.php:733 +msgid "or select existing album:" +msgstr "" + +#: mod/photos.php:734 +msgid "Do not show a status post for this upload" +msgstr "No tornis a mostrar un missatge d'estat d'aquesta pujada" + +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "Permisos" + +#: mod/photos.php:801 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Realment vols esborrar aquest album de fotos amb totes les fotos?" + +#: mod/photos.php:802 mod/photos.php:825 +msgid "Delete Album" +msgstr "Eliminar Àlbum" + +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Cancel·lar" + +#: mod/photos.php:829 +msgid "Edit Album" +msgstr "Editar Àlbum" + +#: mod/photos.php:830 +msgid "Drop Album" +msgstr "" + +#: mod/photos.php:834 +msgid "Show Newest First" +msgstr "Mostrar el més Nou Primer" + +#: mod/photos.php:836 +msgid "Show Oldest First" +msgstr "Mostrar el més Antic Primer" + +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +msgid "View Photo" +msgstr "Veure Foto" + +#: mod/photos.php:889 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permís denegat. L'accés a aquest element pot estar restringit." + +#: mod/photos.php:891 +msgid "Photo not available" +msgstr "Foto no disponible" + +#: mod/photos.php:901 +msgid "Do you really want to delete this photo?" +msgstr "Realment vols esborrar aquesta foto?" + +#: mod/photos.php:902 mod/photos.php:1102 +msgid "Delete Photo" +msgstr "Eliminar Foto" + +#: mod/photos.php:1000 +msgid "View photo" +msgstr "Veure foto" + +#: mod/photos.php:1002 +msgid "Edit photo" +msgstr "Editar foto" + +#: mod/photos.php:1003 +msgid "Delete photo" +msgstr "" + +#: mod/photos.php:1004 +msgid "Use as profile photo" +msgstr "Emprar com a foto del perfil" + +#: mod/photos.php:1011 +msgid "Private Photo" +msgstr "" + +#: mod/photos.php:1017 +msgid "View Full Size" +msgstr "Veure'l a Mida Completa" + +#: mod/photos.php:1070 +msgid "Tags: " +msgstr "Etiquetes:" + +#: mod/photos.php:1073 +msgid "[Select tags to remove]" +msgstr "" + +#: mod/photos.php:1088 +msgid "New album name" +msgstr "Nou nom d'àlbum" + +#: mod/photos.php:1089 +msgid "Caption" +msgstr "Títol" + +#: mod/photos.php:1090 +msgid "Add a Tag" +msgstr "Afegir una etiqueta" + +#: mod/photos.php:1090 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Exemple: @bob, @Barbara_jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1091 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1092 +msgid "Rotate CW (right)" +msgstr "Rotar CW (dreta)" + +#: mod/photos.php:1093 +msgid "Rotate CCW (left)" +msgstr "Rotar CCW (esquerra)" + +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1092 +msgid "This is you" +msgstr "Aquest ets tu" + +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:572 +#: src/Object/Post.php:1094 +msgid "Comment" +msgstr "Comentari" + +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1108 +msgid "Preview" +msgstr "Vista prèvia" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1096 +msgid "Loading..." +msgstr "" + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:260 +msgid "Select" +msgstr "Selecionar" + +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 +msgid "Delete" +msgstr "Esborrar" + +#: mod/photos.php:1298 src/Object/Post.php:408 +msgid "Like" +msgstr "" + +#: mod/photos.php:1299 src/Object/Post.php:408 +msgid "I like this (toggle)" +msgstr "M'agrada això (canviar)" + +#: mod/photos.php:1300 src/Object/Post.php:409 +msgid "Dislike" +msgstr "" + +#: mod/photos.php:1302 src/Object/Post.php:409 +msgid "I don't like this (toggle)" +msgstr "No m'agrada això (canviar)" + +#: mod/photos.php:1324 +msgid "Map" +msgstr "" + +#: src/App.php:473 +msgid "No system theme config value set." +msgstr "" + +#: src/App.php:580 +msgid "Apologies but the website is unavailable at the moment." +msgstr "" + +#: src/App/Page.php:248 +msgid "Delete this item?" +msgstr "Esborrar aquest element?" + +#: src/App/Page.php:249 +msgid "" +"Block this author? They won't be able to follow you nor see your public " +"posts, and you won't be able to see their posts and their notifications." +msgstr "" + +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "" + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "" + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "" + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "" + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "" + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "" + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "" + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "" + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "" + +#: src/App/Page.php:351 +msgid "toggle mobile" +msgstr "canviar a mòbil" + +#: src/App/Router.php:309 +#, php-format +msgid "Method not allowed for this module. Allowed method(s): %s" +msgstr "" + +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +msgid "Page not found." +msgstr "Pàgina no trobada." + +#: src/App/Router.php:323 +msgid "You must be logged in to use addons. " +msgstr "T'has d'identificar per emprar els complements" + +#: src/BaseModule.php:401 +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 "El formulari del token de seguretat no es correcte. Això probablement passa perquè el formulari ha estat massa temps obert (>3 hores) abans d'enviat-lo." + +#: src/BaseModule.php:428 +msgid "All contacts" +msgstr "Tots contactes" + +#: src/BaseModule.php:433 src/Content/Conversation/Factory/Timeline.php:62 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 +msgid "Followers" +msgstr "Seguidors" + +#: src/BaseModule.php:438 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 +msgid "Following" +msgstr "" + +#: src/BaseModule.php:443 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 +msgid "Mutual friends" +msgstr "" + +#: src/BaseModule.php:451 +msgid "Common" +msgstr "" + +#: src/Console/Addon.php:175 src/Console/Addon.php:199 +msgid "Addon not found" +msgstr "" + +#: src/Console/Addon.php:179 +msgid "Addon already enabled" +msgstr "" + +#: src/Console/Addon.php:203 +msgid "Addon already disabled" +msgstr "" + +#: src/Console/ArchiveContact.php:106 +#, php-format +msgid "Could not find any unarchived contact entry for this URL (%s)" +msgstr "" + +#: src/Console/ArchiveContact.php:109 +msgid "The contact entries have been archived" +msgstr "" + +#: src/Console/GlobalCommunityBlock.php:96 +#: src/Module/Moderation/Blocklist/Contact.php:65 +#, php-format +msgid "Could not find any contact entry for this URL (%s)" +msgstr "" + +#: src/Console/GlobalCommunityBlock.php:101 +#: src/Module/Moderation/Blocklist/Contact.php:82 +msgid "The contact has been blocked from the node" +msgstr "" + +#: src/Console/MergeContacts.php:75 +#, php-format +msgid "%d %s, %d duplicates." +msgstr "" + +#: src/Console/MergeContacts.php:78 +#, php-format +msgid "uri-id is empty for contact %s." +msgstr "" + +#: src/Console/MergeContacts.php:91 +#, php-format +msgid "No valid first contact found for uri-id %d." +msgstr "" + +#: src/Console/MergeContacts.php:102 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:106 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:142 +#, php-format +msgid "Deletion of id %d failed" +msgstr "" + +#: src/Console/MergeContacts.php:144 +#, php-format +msgid "Deletion of id %d was successful" +msgstr "" + +#: src/Console/MergeContacts.php:150 +#, php-format +msgid "Updating \"%s\" in \"%s\" from %d to %d" +msgstr "" + +#: src/Console/MergeContacts.php:152 +msgid " - found" +msgstr "" + +#: src/Console/MergeContacts.php:159 +msgid " - failed" +msgstr "" + +#: src/Console/MergeContacts.php:161 +msgid " - success" +msgstr "" + +#: src/Console/MergeContacts.php:165 +msgid " - deleted" +msgstr "" + +#: src/Console/MergeContacts.php:168 +msgid " - done" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:91 +msgid "The avatar cache needs to be enabled to use this command." +msgstr "" + +#: src/Console/MoveToAvatarCache.php:109 +#, php-format +msgid "no resource in photo %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:137 +#, php-format +msgid "no photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:146 +#, php-format +msgid "no image data for photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:155 +#, php-format +msgid "invalid image for id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:168 +#, php-format +msgid "Quit on invalid photo %s" +msgstr "" + +#: src/Console/PostUpdate.php:87 +#, php-format +msgid "Post update version number has been set to %s." +msgstr "" + +#: src/Console/PostUpdate.php:95 +msgid "Check for pending update actions." +msgstr "" + +#: src/Console/PostUpdate.php:97 +msgid "Done." +msgstr "" + +#: src/Console/PostUpdate.php:99 +msgid "Execute pending post updates." +msgstr "" + +#: src/Console/PostUpdate.php:105 +msgid "All pending post updates are done." +msgstr "" + +#: src/Console/User.php:158 src/Console/User.php:245 +msgid "Enter user nickname: " +msgstr "" + +#: src/Console/User.php:182 src/Model/User.php:711 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "" + +#: src/Console/User.php:202 +msgid "Enter new password: " +msgstr "" + +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 +msgid "Password update failed. Please try again." +msgstr "Ha fallat l'actualització de la Contrasenya. Per favor, intenti-ho de nou." + +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 +msgid "Password changed." +msgstr "Contrasenya canviada." + +#: src/Console/User.php:237 +msgid "Enter user name: " +msgstr "" + +#: src/Console/User.php:253 +msgid "Enter user email address: " +msgstr "" + +#: src/Console/User.php:261 +msgid "Enter a language (optional): " +msgstr "" + +#: src/Console/User.php:286 +msgid "User is not pending." +msgstr "" + +#: src/Console/User.php:318 +msgid "User has already been marked for deletion." +msgstr "" + +#: src/Console/User.php:323 +#, php-format +msgid "Type \"yes\" to delete %s" +msgstr "" + +#: src/Console/User.php:325 +msgid "Deletion aborted." +msgstr "" + +#: src/Console/User.php:450 +msgid "Enter category: " +msgstr "" + +#: src/Console/User.php:460 +msgid "Enter key: " +msgstr "" + +#: src/Console/User.php:494 +msgid "Enter value: " +msgstr "" + +#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +msgid "newer" +msgstr "Més nou" + +#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +msgid "older" +msgstr "més vell" + +#: src/Content/ContactSelector.php:51 +msgid "Frequently" +msgstr "" + +#: src/Content/ContactSelector.php:52 +msgid "Hourly" +msgstr "" + +#: src/Content/ContactSelector.php:53 +msgid "Twice daily" +msgstr "" + +#: src/Content/ContactSelector.php:54 +msgid "Daily" +msgstr "" + +#: src/Content/ContactSelector.php:55 +msgid "Weekly" +msgstr "" + +#: src/Content/ContactSelector.php:56 +msgid "Monthly" +msgstr "" + +#: src/Content/ContactSelector.php:126 +msgid "DFRN" +msgstr "" + +#: src/Content/ContactSelector.php:127 +msgid "OStatus" +msgstr "" + +#: src/Content/ContactSelector.php:128 +msgid "RSS/Atom" +msgstr "" + +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Email" +msgstr "Correu" + +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +msgid "Diaspora" +msgstr "Diaspora" + +#: src/Content/ContactSelector.php:131 +msgid "Zot!" +msgstr "" + +#: src/Content/ContactSelector.php:132 +msgid "LinkedIn" +msgstr "" + +#: src/Content/ContactSelector.php:133 +msgid "XMPP/IM" +msgstr "" + +#: src/Content/ContactSelector.php:134 +msgid "MySpace" +msgstr "" + +#: src/Content/ContactSelector.php:135 +msgid "Google+" +msgstr "" + +#: src/Content/ContactSelector.php:136 +msgid "pump.io" +msgstr "" + +#: src/Content/ContactSelector.php:137 +msgid "Twitter" +msgstr "" + +#: src/Content/ContactSelector.php:138 +msgid "Discourse" +msgstr "" + +#: src/Content/ContactSelector.php:139 +msgid "Diaspora Connector" +msgstr "" + +#: src/Content/ContactSelector.php:140 +msgid "GNU Social Connector" +msgstr "" + +#: src/Content/ContactSelector.php:141 +msgid "ActivityPub" +msgstr "" + +#: src/Content/ContactSelector.php:142 +msgid "pnut" +msgstr "" + +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "" + +#: src/Content/ContactSelector.php:180 +#, php-format +msgid "%s (via %s)" +msgstr "" + +#: src/Content/Conversation.php:226 +msgid "and" +msgstr "i" + +#: src/Content/Conversation.php:229 +#, php-format +msgid "and %d other people" +msgstr "i %d altre gent" + +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:239 +#, php-format +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:241 +#, php-format +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:243 +#, php-format +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:245 +#, php-format +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:274 +#, php-format +msgid " likes this" +msgid_plural " like this" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:277 +#, php-format +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:280 +#, php-format +msgid " attends" +msgid_plural " attend" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:283 +#, php-format +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:286 +#, php-format +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:289 +#, php-format +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:336 +msgid "Visible to everybody" +msgstr "Visible per a tothom" + +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1107 +msgid "Please enter a image/video/audio/webpage URL:" +msgstr "Introduïu una URL / imatge / vídeo / àudio / pàgina web:" + +#: src/Content/Conversation.php:338 +msgid "Tag term:" +msgstr "Terminis de l'etiqueta:" + +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 +msgid "Save to Folder:" +msgstr "Guardar a la Carpeta:" + +#: src/Content/Conversation.php:340 +msgid "Where are you right now?" +msgstr "On ets ara?" + +#: src/Content/Conversation.php:341 +msgid "Delete item(s)?" +msgstr "Esborrar element(s)?" + +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 +msgid "Created at" +msgstr "" + +#: src/Content/Conversation.php:363 +msgid "New Post" +msgstr "Missatge nou" + +#: src/Content/Conversation.php:366 +msgid "Share" +msgstr "Compartir" + +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "carregar fotos" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Adjunta fitxer" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "adjuntar arxiu" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1097 +msgid "Bold" +msgstr "Negreta" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1098 +msgid "Italic" +msgstr "Itallica" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1099 +msgid "Underline" +msgstr "Subratllat" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1101 +msgid "Quote" +msgstr "Cometes" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1102 +msgid "Add emojis" +msgstr "" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1100 +msgid "Content Warning" +msgstr "" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1103 +msgid "Code" +msgstr "Codi" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1104 +msgid "Image" +msgstr "Imatge" + +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1105 +msgid "Link" +msgstr "Enllaç" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1106 +msgid "Link or Media" +msgstr "Enllaç o suports" + +#: src/Content/Conversation.php:382 +msgid "Video" +msgstr "" + +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "Canvia la teva ubicació" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "establir la ubicació" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "neteja adreçes del navegador" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "netejar ubicació" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Canviar títol" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Categories (lista separada per comes)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 +msgid "Scheduled at" +msgstr "" + +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Configuració de permisos" + +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Enviament públic" + +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:120 +#: src/Model/Profile.php:467 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "Missatge" + +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Navegador" + +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "" + +#: src/Content/Conversation.php:595 +msgid "remove" +msgstr "esborrar" + +#: src/Content/Conversation.php:599 +msgid "Delete Selected Items" +msgstr "Esborra els Elements Seleccionats" + +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 +#, php-format +msgid "You had been addressed (%s)." +msgstr "" + +#: src/Content/Conversation.php:769 +#, php-format +msgid "You are following %s." +msgstr "" + +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "" + +#: src/Content/Conversation.php:776 +msgid "You subscribed to one or more tags in this post." +msgstr "" + +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "%s va tornar a compartir això" + +#: src/Content/Conversation.php:798 +msgid "Reshared" +msgstr "" + +#: src/Content/Conversation.php:798 +#, php-format +msgid "Reshared by %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:801 +#, php-format +msgid "%s is participating in this thread." +msgstr "" + +#: src/Content/Conversation.php:804 +msgid "Stored for general reasons" +msgstr "" + +#: src/Content/Conversation.php:807 +msgid "Global post" +msgstr "" + +#: src/Content/Conversation.php:810 +msgid "Sent via an relay server" +msgstr "" + +#: src/Content/Conversation.php:810 +#, php-format +msgid "Sent via the relay server %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:813 +msgid "Fetched" +msgstr "" + +#: src/Content/Conversation.php:813 +#, php-format +msgid "Fetched because of %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:816 +msgid "Stored because of a child post to complete this thread." +msgstr "" + +#: src/Content/Conversation.php:819 +msgid "Local delivery" +msgstr "" + +#: src/Content/Conversation.php:822 +msgid "Stored because of your activity (like, comment, star, ...)" +msgstr "" + +#: src/Content/Conversation.php:825 +msgid "Distributed" +msgstr "" + +#: src/Content/Conversation.php:828 +msgid "Pushed to us" +msgstr "" + +#: src/Content/Conversation.php:1492 src/Object/Post.php:247 +msgid "Pinned item" +msgstr "" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:521 +#: src/Object/Post.php:522 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Veure perfil de %s @ %s" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:509 +msgid "Categories:" +msgstr "Categories:" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:510 +msgid "Filed under:" +msgstr "Arxivat a:" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:535 +#, php-format +msgid "%s from %s" +msgstr "%s des de %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "Veure en context" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "For you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "What's Hot" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "Posts with a lot of interactions" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:61 +#, php-format +msgid "Posts in %s" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:62 +msgid "Posts from your followers that you don't follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Sharers of sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Posts with images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Posts with audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Posts with videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Local Community" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Posts from local users on this server" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Global Community" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Posts from users of the whole federated network" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Latest Activity" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Sort by latest activity" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Latest Posts" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Sort by post received date" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Latest Creation" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Sort by post creation date" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:106 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "Personal" + +#: src/Content/Conversation/Factory/Timeline.php:106 +msgid "Posts that mention or involve you" +msgstr "Missatge que et menciona o t'impliquen" + +#: src/Content/Conversation/Factory/Timeline.php:107 src/Object/Post.php:380 +msgid "Starred" +msgstr "Favorits" + +#: src/Content/Conversation/Factory/Timeline.php:107 +msgid "Favourite Posts" +msgstr "Enviaments Favorits" + +#: src/Content/Feature.php:96 +msgid "General Features" +msgstr "Característiques Generals" + +#: src/Content/Feature.php:98 +msgid "Photo Location" +msgstr "" + +#: 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 "" + +#: src/Content/Feature.php:99 +msgid "Trending Tags" +msgstr "" + +#: src/Content/Feature.php:99 +msgid "" +"Show a community page widget with a list of the most popular tags in recent " +"public posts." +msgstr "" + +#: src/Content/Feature.php:104 +msgid "Post Composition Features" +msgstr "Característiques de Composició d'Enviaments" + +#: src/Content/Feature.php:105 +msgid "Auto-mention Groups" +msgstr "" + +#: src/Content/Feature.php:105 +msgid "" +"Add/remove mention when a group page is selected/deselected in ACL window." +msgstr "" + +#: src/Content/Feature.php:106 +msgid "Explicit Mentions" +msgstr "" + +#: src/Content/Feature.php:106 +msgid "" +"Add explicit mentions to comment box for manual control over who gets " +"mentioned in replies." +msgstr "" + +#: src/Content/Feature.php:107 +msgid "Add an abstract from ActivityPub content warnings" +msgstr "" + +#: src/Content/Feature.php:107 +msgid "" +"Add an abstract when commenting on ActivityPub posts with a content warning." +" Abstracts are displayed as content warning on systems like Mastodon or " +"Pleroma." +msgstr "" + +#: src/Content/Feature.php:112 +msgid "Post/Comment Tools" +msgstr "Eines d'Enviaments/Comentaris" + +#: src/Content/Feature.php:113 +msgid "Post Categories" +msgstr "Categories en Enviaments" + +#: src/Content/Feature.php:113 +msgid "Add categories to your posts" +msgstr "Afegeix categories als teus enviaments" + +#: src/Content/Feature.php:118 +msgid "Advanced Profile Settings" +msgstr "" + +#: src/Content/Feature.php:119 +msgid "List Groups" +msgstr "" + +#: src/Content/Feature.php:119 +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "" + +#: src/Content/Feature.php:120 +msgid "Tag Cloud" +msgstr "" + +#: src/Content/Feature.php:120 +msgid "Provide a personal tag cloud on your profile page" +msgstr "" + +#: src/Content/Feature.php:121 +msgid "Display Membership Date" +msgstr "" + +#: src/Content/Feature.php:121 +msgid "Display membership date in profile" +msgstr "" + +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "" + +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "" + +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "" + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1273 +msgid "Groups" +msgstr "" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 +msgid "show less" +msgstr "" + +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 +msgid "show more" +msgstr "Mostrar més" + +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "" + +#: src/Content/Item.php:331 src/Model/Item.php:3003 +msgid "event" +msgstr "esdeveniment" + +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "estatus" + +#: src/Content/Item.php:340 src/Model/Item.php:3005 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "foto" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s etiquetats %2$s %3$s amb %4$s" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 +msgid "Follow Thread" +msgstr "Seguir el Fil" + +#: src/Content/Item.php:429 src/Model/Contact.php:1227 +msgid "View Status" +msgstr "Veure Estatus" + +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1219 +#: src/Model/Contact.php:1228 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 +msgid "View Profile" +msgstr "Veure Perfil" + +#: src/Content/Item.php:431 src/Model/Contact.php:1229 +msgid "View Photos" +msgstr "Veure Fotos" + +#: src/Content/Item.php:432 src/Model/Contact.php:1220 +#: src/Model/Contact.php:1230 +msgid "Network Posts" +msgstr "Enviaments a la Xarxa" + +#: src/Content/Item.php:433 src/Model/Contact.php:1221 +#: src/Model/Contact.php:1231 +msgid "View Contact" +msgstr "Veure contacte" + +#: src/Content/Item.php:434 src/Model/Contact.php:1232 +msgid "Send PM" +msgstr "Enviar Missatge Privat" + +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 +msgid "Block" +msgstr "Bloquejar" + +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 +msgid "Ignore" +msgstr "Ignorar" + +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "" + +#: src/Content/Item.php:438 src/Object/Post.php:288 +#, php-format +msgid "Ignore %s server" +msgstr "" + +#: src/Content/Item.php:442 src/Object/Post.php:490 +msgid "Languages" +msgstr "" + +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1222 src/Model/Contact.php:1233 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Connectar/Seguir" + +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "" + +#: src/Content/Nav.php:121 +msgid "Nothing new here" +msgstr "Res nou aquí" + +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +msgid "Go back" +msgstr "" + +#: src/Content/Nav.php:126 +msgid "Clear notifications" +msgstr "Neteja notificacions" + +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" +msgstr "" + +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 +msgid "Logout" +msgstr "Sortir" + +#: src/Content/Nav.php:222 +msgid "End this session" +msgstr "Termina sessió" + +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 +msgid "Login" +msgstr "Identifica't" + +#: src/Content/Nav.php:224 +msgid "Sign in" +msgstr "Accedeix" + +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "" + +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "" + +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +msgid "Profile" +msgstr "Perfil" + +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +msgid "Your profile page" +msgstr "La seva pàgina de perfil" + +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Fotos" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +msgid "Your photos" +msgstr "Les seves fotos" + +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 +msgid "Media" +msgstr "" + +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +msgid "Your postings with media" +msgstr "" + +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "" + +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "" + +#: src/Content/Nav.php:234 +msgid "Personal notes" +msgstr "Notes personals" + +#: src/Content/Nav.php:234 +msgid "Your personal notes" +msgstr "" + +#: src/Content/Nav.php:251 src/Content/Nav.php:308 +msgid "Home" +msgstr "Inici" + +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "Pàgina d'Inici" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 +#: src/Module/Security/Login.php:124 +msgid "Register" +msgstr "Registrar" + +#: src/Content/Nav.php:255 +msgid "Create an account" +msgstr "Crear un compte" + +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 +msgid "Help" +msgstr "Ajuda" + +#: src/Content/Nav.php:261 +msgid "Help and documentation" +msgstr "Ajuda i documentació" + +#: src/Content/Nav.php:265 +msgid "Apps" +msgstr "Aplicacions" + +#: src/Content/Nav.php:265 +msgid "Addon applications, utilities, games" +msgstr "Afegits: aplicacions, utilitats, jocs" + +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 +msgid "Search" +msgstr "Cercar" + +#: src/Content/Nav.php:269 +msgid "Search site content" +msgstr "Busca contingut en el lloc" + +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 +msgid "Full Text" +msgstr "Text Complet" + +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 +#: src/Content/Widget/TagCloud.php:68 +msgid "Tags" +msgstr "Etiquetes" + +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 +msgid "Contacts" +msgstr "Contactes" + +#: src/Content/Nav.php:289 +msgid "Community" +msgstr "Comunitat" + +#: src/Content/Nav.php:289 +msgid "Conversations on this and other servers" +msgstr "" + +#: src/Content/Nav.php:296 +msgid "Directory" +msgstr "Directori" + +#: src/Content/Nav.php:296 +msgid "People directory" +msgstr "Directori de gent" + +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 +msgid "Information" +msgstr "" + +#: src/Content/Nav.php:298 +msgid "Information about this friendica instance" +msgstr "" + +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 +msgid "Terms of Service" +msgstr "" + +#: src/Content/Nav.php:301 +msgid "Terms of Service of this Friendica instance" +msgstr "" + +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +msgid "Network" +msgstr "Xarxa" + +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +msgid "Conversations from your friends" +msgstr "Converses dels teus amics" + +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "Els teus anuncis i converses" + +#: src/Content/Nav.php:312 +msgid "Introductions" +msgstr "Presentacions" + +#: src/Content/Nav.php:312 +msgid "Friend Requests" +msgstr "Sol·licitud d'Amistat" + +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 +msgid "Notifications" +msgstr "Notificacions" + +#: src/Content/Nav.php:314 +msgid "See all notifications" +msgstr "Veure totes les notificacions" + +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Marcar com a vist" + +#: src/Content/Nav.php:315 +msgid "Mark all system notifications as seen" +msgstr "" + +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +msgid "Private mail" +msgstr "Correu privat" + +#: src/Content/Nav.php:319 +msgid "Inbox" +msgstr "Safata d'entrada" + +#: src/Content/Nav.php:320 +msgid "Outbox" +msgstr "Safata de sortida" + +#: src/Content/Nav.php:324 +msgid "Accounts" +msgstr "" + +#: src/Content/Nav.php:324 +msgid "Manage other pages" +msgstr "Gestiona altres pàgines" + +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:175 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +msgid "Settings" +msgstr "Ajustos" + +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +msgid "Account settings" +msgstr "Configuració del compte" + +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +msgid "Manage/edit friends and contacts" +msgstr "Gestiona/edita amics i contactes" + +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +msgid "Admin" +msgstr "Admin" + +#: src/Content/Nav.php:334 +msgid "Site setup and configuration" +msgstr "Ajustos i configuració del lloc" + +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "" + +#: src/Content/Nav.php:338 +msgid "Navigation" +msgstr "Navegació" + +#: src/Content/Nav.php:338 +msgid "Site map" +msgstr "Mapa del lloc" + +#: src/Content/OEmbed.php:316 +msgid "Embedding disabled" +msgstr "Incrustacions deshabilitades" + +#: src/Content/OEmbed.php:440 +msgid "Embedded content" +msgstr "Contingut incrustat" + +#: src/Content/Pager.php:216 +msgid "first" +msgstr "Primer" + +#: src/Content/Pager.php:221 +msgid "prev" +msgstr "Prev" + +#: src/Content/Pager.php:276 +msgid "next" +msgstr "següent" + +#: src/Content/Pager.php:281 +msgid "last" +msgstr "Últim" + +#: src/Content/Text/BBCode.php:696 src/Content/Text/BBCode.php:1636 +#: src/Content/Text/BBCode.php:1637 +msgid "Image/photo" +msgstr "Imatge/foto" + +#: src/Content/Text/BBCode.php:914 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: src/Content/Text/BBCode.php:939 src/Model/Item.php:3745 +#: src/Model/Item.php:3751 src/Model/Item.php:3752 +msgid "Link to source" +msgstr "" + +#: src/Content/Text/BBCode.php:1543 src/Content/Text/HTML.php:904 +msgid "Click to open/close" +msgstr "Clicar per a obrir/tancar" + +#: src/Content/Text/BBCode.php:1576 +msgid "$1 wrote:" +msgstr "$1 va escriure:" + +#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642 +msgid "Encrypted content" +msgstr "Encriptar contingut" + +#: src/Content/Text/BBCode.php:1901 +msgid "Invalid source protocol" +msgstr "" + +#: src/Content/Text/BBCode.php:1920 +msgid "Invalid link protocol" +msgstr "" + +#: src/Content/Text/HTML.php:782 +msgid "Loading more entries..." +msgstr "Carregant mes entrades..." + +#: src/Content/Text/HTML.php:783 +msgid "The end" +msgstr "El final" + +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:116 +#: src/Model/Profile.php:461 src/Module/Contact/Profile.php:471 +msgid "Follow" +msgstr "Seguir" + +#: src/Content/Widget.php:51 msgid "Add New Contact" msgstr "Afegir Nou Contacte" -#: include/contact_widgets.php:7 +#: src/Content/Widget.php:52 msgid "Enter address or web location" msgstr "Introdueixi adreça o ubicació web" -#: include/contact_widgets.php:8 +#: src/Content/Widget.php:53 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Exemple: bob@example.com, http://example.com/barbara" -#: include/contact_widgets.php:10 include/identity.php:218 -#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87 -#: mod/suggest.php:101 +#: src/Content/Widget.php:55 msgid "Connect" msgstr "Connexió" -#: include/contact_widgets.php:24 +#: src/Content/Widget.php:72 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d invitació disponible" msgstr[1] "%d invitacions disponibles" -#: include/contact_widgets.php:30 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 msgid "Find People" msgstr "Trobar Gent" -#: include/contact_widgets.php:31 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 msgid "Enter name or interest" msgstr "Introdueixi nom o aficions" -#: include/contact_widgets.php:32 include/Contact.php:354 -#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204 -#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103 -msgid "Connect/Follow" -msgstr "Connectar/Seguir" - -#: include/contact_widgets.php:33 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Exemples: Robert Morgenstein, Pescar" -#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798 +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 msgid "Find" msgstr "Cercar" -#: include/contact_widgets.php:35 mod/suggest.php:114 -#: view/theme/vier/theme.php:203 +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 msgid "Friend Suggestions" msgstr "Amics Suggerits" -#: include/contact_widgets.php:36 view/theme/vier/theme.php:202 +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 msgid "Similar Interests" msgstr "Aficions Similars" -#: include/contact_widgets.php:37 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 msgid "Random Profile" msgstr "Perfi Aleatori" -#: include/contact_widgets.php:38 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 msgid "Invite Friends" msgstr "Invita Amics" -#: include/contact_widgets.php:108 -msgid "Networks" -msgstr "Xarxes" +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 +msgid "Global Directory" +msgstr "Directori Global" -#: include/contact_widgets.php:111 -msgid "All Networks" -msgstr "totes les Xarxes" +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +msgid "Local Directory" +msgstr "Directori Local" -#: include/contact_widgets.php:141 include/features.php:110 +#: src/Content/Widget.php:215 src/Model/Circle.php:600 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "" + +#: src/Content/Widget.php:217 +msgid "Everyone" +msgstr "" + +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "" + +#: src/Content/Widget.php:247 +msgid "Relationships" +msgstr "" + +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 +msgid "All Contacts" +msgstr "Tots els Contactes" + +#: src/Content/Widget.php:288 +msgid "Protocols" +msgstr "" + +#: src/Content/Widget.php:290 +msgid "All Protocols" +msgstr "" + +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "Carpetes Guardades" -#: include/contact_widgets.php:144 include/contact_widgets.php:176 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "Tot" -#: include/contact_widgets.php:173 +#: src/Content/Widget.php:349 msgid "Categories" msgstr "Categories" -#: include/contact_widgets.php:237 +#: src/Content/Widget.php:406 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d contacte en comú" msgstr[1] "%d contactes en comú" -#: include/contact_widgets.php:242 include/ForumManager.php:119 -#: include/items.php:2245 mod/content.php:624 object/Item.php:432 -#: view/theme/vier/theme.php:260 boot.php:972 -msgid "show more" -msgstr "Mostrar més" - -#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025 -#: view/theme/vier/theme.php:255 -msgid "Forums" -msgstr "" - -#: include/ForumManager.php:116 view/theme/vier/theme.php:257 -msgid "External link to forum" -msgstr "" - -#: include/profile_selectors.php:6 -msgid "Male" -msgstr "Home" - -#: include/profile_selectors.php:6 -msgid "Female" -msgstr "Dona" - -#: include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Actualment Home" - -#: include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Actualment Dona" - -#: include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Habitualment Home" - -#: include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Habitualment Dona" - -#: include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgènere" - -#: include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Bisexual" - -#: include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transexual" - -#: include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodita" - -#: include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutre" - -#: include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "No específicat" - -#: include/profile_selectors.php:6 -msgid "Other" -msgstr "Altres" - -#: include/profile_selectors.php:6 include/conversation.php:1487 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: include/profile_selectors.php:23 -msgid "Males" -msgstr "Home" - -#: include/profile_selectors.php:23 -msgid "Females" -msgstr "Dona" - -#: include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gay" - -#: include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbiana" - -#: include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Sense Preferències" - -#: include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisexual" - -#: include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosexual" - -#: include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Abstinent/a" - -#: include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Verge" - -#: include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Desviat/da" - -#: include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetixiste" - -#: include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Orgies" - -#: include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Asexual" - -#: include/profile_selectors.php:42 -msgid "Single" -msgstr "Solter/a" - -#: include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Solitari" - -#: include/profile_selectors.php:42 -msgid "Available" -msgstr "Disponible" - -#: include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "No Disponible" - -#: include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Compromés" - -#: include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Enamorat" - -#: include/profile_selectors.php:42 -msgid "Dating" -msgstr "De cites" - -#: include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Infidel" - -#: include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Adicte al sexe" - -#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284 -msgid "Friends" -msgstr "Amics/Amigues" - -#: include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Amics íntims" - -#: include/profile_selectors.php:42 -msgid "Casual" -msgstr "Oportunista" - -#: include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Promès" - -#: include/profile_selectors.php:42 -msgid "Married" -msgstr "Casat" - -#: include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Matrimoni imaginari" - -#: include/profile_selectors.php:42 -msgid "Partners" -msgstr "Socis" - -#: include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Cohabitant" - -#: include/profile_selectors.php:42 -msgid "Common law" -msgstr "Segons costums" - -#: include/profile_selectors.php:42 -msgid "Happy" -msgstr "Feliç" - -#: include/profile_selectors.php:42 -msgid "Not looking" -msgstr "No cerco" - -#: include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Parella Liberal" - -#: include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Traït/da" - -#: include/profile_selectors.php:42 -msgid "Separated" -msgstr "Separat/da" - -#: include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Inestable" - -#: include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Divorciat/da" - -#: include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Divorci imaginari" - -#: include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Vidu/a" - -#: include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Incert" - -#: include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Es complicat" - -#: include/profile_selectors.php:42 -msgid "Don't care" -msgstr "No t'interessa" - -#: include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Pregunta'm" - -#: include/dba_pdo.php:72 include/dba.php:56 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "No put trobar informació de DNS del servidor de base de dades '%s'" - -#: include/auth.php:45 -msgid "Logged out." -msgstr "Has sortit" - -#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 -msgid "Login failed." -msgstr "Error d'accés." - -#: include/auth.php:132 include/user.php:75 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Em trobat un problema quan accedies amb la OpenID que has proporcionat. Per favor, revisa la cadena del ID." - -#: include/auth.php:132 include/user.php:75 -msgid "The error message was:" -msgstr "El missatge d'error fou: " - -#: include/group.php:25 -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 "Un grup eliminat amb aquest nom va ser restablert. Els permisos dels elements existents poden aplicar-se a aquest grup i tots els futurs membres. Si això no és el que pretén, si us plau, crei un altre grup amb un nom diferent." - -#: include/group.php:209 -msgid "Default privacy group for new contacts" -msgstr "Privacitat per defecte per a nous contactes" - -#: include/group.php:242 -msgid "Everybody" -msgstr "Tothom" - -#: include/group.php:265 -msgid "edit" -msgstr "editar" - -#: include/group.php:286 mod/newmember.php:61 -msgid "Groups" -msgstr "Grups" - -#: include/group.php:288 -msgid "Edit groups" -msgstr "" - -#: include/group.php:290 -msgid "Edit group" -msgstr "Editar grup" - -#: include/group.php:291 -msgid "Create a new group" -msgstr "Crear un nou grup" - -#: include/group.php:292 mod/group.php:94 mod/group.php:178 -msgid "Group Name: " -msgstr "Nom del Grup:" - -#: include/group.php:294 -msgid "Contacts not in any group" -msgstr "Contactes en cap grup" - -#: include/group.php:296 mod/network.php:201 -msgid "add" -msgstr "afegir" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Desconegut/No categoritzat" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Bloquejar immediatament" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Sospitós, Spam, auto-publicitat" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Conegut per mi, però sense opinió" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "Bé, probablement inofensiu" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Bona reputació, té la meva confiança" - -#: include/contact_selectors.php:56 mod/admin.php:890 -msgid "Frequently" -msgstr "Freqüentment" - -#: include/contact_selectors.php:57 mod/admin.php:891 -msgid "Hourly" -msgstr "Cada hora" - -#: include/contact_selectors.php:58 mod/admin.php:892 -msgid "Twice daily" -msgstr "Dues vegades al dia" - -#: include/contact_selectors.php:59 mod/admin.php:893 -msgid "Daily" -msgstr "Diari" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Setmanal" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensual" - -#: include/contact_selectors.php:76 mod/dfrn_request.php:868 -msgid "Friendica" -msgstr "Friendica" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440 -msgid "Email" -msgstr "Correu" - -#: include/contact_selectors.php:80 mod/settings.php:842 -#: mod/dfrn_request.php:870 -msgid "Diaspora" -msgstr "Diaspora" - -#: include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "" - -#: include/contact_selectors.php:91 -msgid "GNU Social" -msgstr "" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "" - -#: include/contact_selectors.php:103 -msgid "Hubzilla/Redmatrix" -msgstr "" - -#: include/acl_selectors.php:327 -msgid "Post to Email" -msgstr "Correu per enviar" - -#: include/acl_selectors.php:332 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: include/acl_selectors.php:333 mod/settings.php:1181 -msgid "Hide your profile details from unknown viewers?" -msgstr "Amagar els detalls del seu perfil a espectadors desconeguts?" - -#: include/acl_selectors.php:338 -msgid "Visible to everybody" -msgstr "Visible per tothom" - -#: include/acl_selectors.php:339 view/theme/vier/config.php:103 -msgid "show" -msgstr "mostra" - -#: include/acl_selectors.php:340 view/theme/vier/config.php:103 -msgid "don't show" -msgstr "no mostris" - -#: include/acl_selectors.php:346 mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "CC: Adreça de correu" - -#: include/acl_selectors.php:347 mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Exemple: bob@example.com, mary@example.com" - -#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156 -#: mod/photos.php:1535 -msgid "Permissions" -msgstr "Permisos" - -#: include/acl_selectors.php:350 -msgid "Close" -msgstr "Tancar" - -#: include/like.php:163 include/conversation.php:130 -#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87 -#: mod/tagger.php:62 -msgid "photo" -msgstr "foto" - -#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125 -#: include/conversation.php:134 include/conversation.php:261 -#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62 -msgid "status" -msgstr "estatus" - -#: include/like.php:165 include/conversation.php:122 -#: include/conversation.php:258 include/text.php:1802 -msgid "event" -msgstr "esdeveniment" - -#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "a %1$s agrada %2$s de %3$s" - -#: include/like.php:184 include/conversation.php:144 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "a %1$s no agrada %2$s de %3$s" - -#: include/like.php:186 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "" - -#: include/like.php:188 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "" - -#: include/like.php:190 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "" - -#: include/message.php:15 include/message.php:173 -msgid "[no subject]" -msgstr "[Sense assumpte]" - -#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056 -#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218 -#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478 -msgid "Wall Photos" -msgstr "Fotos del Mur" - -#: include/plugin.php:526 include/plugin.php:528 -msgid "Click here to upgrade." -msgstr "Clica aquí per actualitzar." - -#: include/plugin.php:534 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Aquesta acció excedeix els límits del teu plan de subscripció." - -#: include/plugin.php:539 -msgid "This action is not available under your subscription plan." -msgstr "Aquesta acció no està disponible en el teu plan de subscripció." - -#: include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Error decodificant l'arxiu del compte" - -#: include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Error! No hi ha dades al arxiu! No es un arxiu de compte de Friendica?" - -#: include/uimport.php:116 include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Error! No puc comprobar l'Àlies" - -#: include/uimport.php:120 include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "El usuari %s' ja existeix en aquest servidor!" - -#: include/uimport.php:153 -msgid "User creation error" -msgstr "Error en la creació de l'usuari" - -#: include/uimport.php:173 -msgid "User profile creation error" -msgstr "Error en la creació del perfil d'usuari" - -#: include/uimport.php:222 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contacte no importat" -msgstr[1] "%d contactes no importats" - -#: include/uimport.php:292 -msgid "Done. You can now login with your username and password" -msgstr "Fet. Ja pots identificar-te amb el teu nom d'usuari i contrasenya" - -#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705 -msgid "Miscellaneous" -msgstr "Miscel·lania" - -#: include/datetime.php:183 include/identity.php:629 -msgid "Birthday:" -msgstr "Aniversari:" - -#: include/datetime.php:185 mod/profiles.php:728 -msgid "Age: " -msgstr "Edat:" - -#: include/datetime.php:187 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: include/datetime.php:341 -msgid "never" -msgstr "mai" - -#: include/datetime.php:347 -msgid "less than a second ago" -msgstr "Fa menys d'un segon" - -#: include/datetime.php:350 -msgid "year" -msgstr "any" - -#: include/datetime.php:350 -msgid "years" -msgstr "anys" - -#: include/datetime.php:351 include/event.php:480 mod/cal.php:284 -#: mod/events.php:389 -msgid "month" -msgstr "mes" - -#: include/datetime.php:351 -msgid "months" -msgstr "mesos" - -#: include/datetime.php:352 include/event.php:481 mod/cal.php:285 -#: mod/events.php:390 -msgid "week" -msgstr "setmana" - -#: include/datetime.php:352 -msgid "weeks" -msgstr "setmanes" - -#: include/datetime.php:353 include/event.php:482 mod/cal.php:286 -#: mod/events.php:391 -msgid "day" -msgstr "dia" - -#: include/datetime.php:353 -msgid "days" -msgstr "dies" - -#: include/datetime.php:354 -msgid "hour" -msgstr "hora" - -#: include/datetime.php:354 -msgid "hours" -msgstr "hores" - -#: include/datetime.php:355 -msgid "minute" -msgstr "minut" - -#: include/datetime.php:355 -msgid "minutes" -msgstr "minuts" - -#: include/datetime.php:356 -msgid "second" -msgstr "segon" - -#: include/datetime.php:356 -msgid "seconds" -msgstr "segons" - -#: include/datetime.php:365 -#, php-format -msgid "%1$d %2$s ago" -msgstr " fa %1$d %2$s" - -#: include/datetime.php:572 -#, php-format -msgid "%s's birthday" -msgstr "%s aniversari" - -#: include/datetime.php:573 include/dfrn.php:1109 -#, php-format -msgid "Happy Birthday %s" -msgstr "Feliç Aniversari %s" - -#: include/enotify.php:24 -msgid "Friendica Notification" -msgstr "Notificacions de Friendica" - -#: include/enotify.php:27 -msgid "Thank You," -msgstr "Gràcies," - -#: include/enotify.php:30 -#, php-format -msgid "%s Administrator" -msgstr "%s Administrador" - -#: include/enotify.php:32 -#, php-format -msgid "%1$s, %2$s Administrator" -msgstr "" - -#: include/enotify.php:43 include/delivery.php:457 -msgid "noreply" -msgstr "no contestar" - -#: include/enotify.php:70 -#, php-format -msgid "%s " -msgstr "%s " - -#: include/enotify.php:83 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica: Notifica] nou correu rebut a %s" - -#: include/enotify.php:85 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s t'ha enviat un missatge privat nou en %2$s." - -#: include/enotify.php:86 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s t'ha enviat %2$s." - -#: include/enotify.php:86 -msgid "a private message" -msgstr "un missatge privat" - -#: include/enotify.php:88 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Per favor, visiteu %s per a veure i/o respondre els teus missatges privats." - -#: include/enotify.php:134 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s ha comentat en [url=%2$s]a %3$s[/url]" - -#: include/enotify.php:141 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s ha comentat en [url=%2$s]%3$s de %4$s[/url]" - -#: include/enotify.php:149 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s ha comentat en [url=%2$s] el teu %3$s[/url]" - -#: include/enotify.php:159 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Notificació] Comentaris a la conversació #%1$d per %2$s" - -#: include/enotify.php:161 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s ha comentat un element/conversació que estas seguint." - -#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192 -#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Si us pau, visiteu %s per a veure i/o respondre la conversació." - -#: include/enotify.php:171 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notifica] %s enviat al teu mur del perfil" - -#: include/enotify.php:173 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s ha fet un enviament al teu mur de perfils en %2$s" - -#: include/enotify.php:174 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s enviat a [url=%2$s]teu mur[/url]" - -#: include/enotify.php:185 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notifica] %s t'ha etiquetat" - -#: include/enotify.php:187 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s t'ha etiquetat a %2$s" - -#: include/enotify.php:188 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s] t'ha etiquetat[/url]." - -#: include/enotify.php:199 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "" - -#: include/enotify.php:201 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "" - -#: include/enotify.php:202 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "" - -#: include/enotify.php:213 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notificació] %1$s t'atia" - -#: include/enotify.php:215 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s t'atia en %2$s" - -#: include/enotify.php:216 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]t'atia[/url]." - -#: include/enotify.php:231 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notifica] %s ha etiquetat el teu missatge" - -#: include/enotify.php:233 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s ha etiquetat un missatge teu a %2$s" - -#: include/enotify.php:234 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s etiquetà [url=%2$s] el teu enviament[/url]" - -#: include/enotify.php:245 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notifica] Presentacio rebuda" - -#: include/enotify.php:247 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Has rebut una presentació des de '%1$s' en %2$s" - -#: include/enotify.php:248 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Has rebut [url=%1$s] com a presentació[/url] des de %2$s." - -#: include/enotify.php:252 include/enotify.php:295 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Pot visitar el seu perfil en %s" - -#: include/enotify.php:254 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Si us plau visiteu %s per aprovar o rebutjar la presentació." - -#: include/enotify.php:262 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "" - -#: include/enotify.php:264 include/enotify.php:265 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "" - -#: include/enotify.php:271 -msgid "[Friendica:Notify] You have a new follower" -msgstr "" - -#: include/enotify.php:273 include/enotify.php:274 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "" - -#: include/enotify.php:285 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notifica] Suggerencia d'amistat rebuda" - -#: include/enotify.php:287 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Has rebut una suggerencia d'amistat des de '%1$s' en %2$s" - -#: include/enotify.php:288 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Has rebut [url=%1$s] com a suggerencia d'amistat[/url] per a %2$s des de %3$s." - -#: include/enotify.php:293 -msgid "Name:" -msgstr "Nom:" - -#: include/enotify.php:294 -msgid "Photo:" -msgstr "Foto:" - -#: include/enotify.php:297 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Si us plau, visiteu %s per aprovar o rebutjar la suggerencia." - -#: include/enotify.php:305 include/enotify.php:319 -msgid "[Friendica:Notify] Connection accepted" -msgstr "" - -#: include/enotify.php:307 include/enotify.php:321 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "" - -#: include/enotify.php:308 include/enotify.php:322 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "" - -#: include/enotify.php:312 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and " -"email without restriction." -msgstr "" - -#: include/enotify.php:314 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "" - -#: include/enotify.php:326 -#, php-format -msgid "" -"'%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." -msgstr "" - -#: include/enotify.php:328 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future." -msgstr "" - -#: include/enotify.php:330 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "" - -#: include/enotify.php:340 -msgid "[Friendica System:Notify] registration request" -msgstr "" - -#: include/enotify.php:342 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "" - -#: include/enotify.php:343 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "" - -#: include/enotify.php:347 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "" - -#: include/enotify.php:350 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "" - -#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: include/event.php:33 include/event.php:51 include/event.php:487 -#: include/bb2diaspora.php:158 -msgid "Starts:" -msgstr "Inici:" - -#: include/event.php:36 include/event.php:57 include/event.php:488 -#: include/bb2diaspora.php:166 -msgid "Finishes:" -msgstr "Acaba:" - -#: include/event.php:39 include/event.php:63 include/event.php:489 -#: include/bb2diaspora.php:174 include/identity.php:328 -#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494 -#: mod/contacts.php:628 -msgid "Location:" -msgstr "Ubicació:" - -#: include/event.php:441 -msgid "Sun" -msgstr "" - -#: include/event.php:442 -msgid "Mon" -msgstr "" - -#: include/event.php:443 -msgid "Tue" -msgstr "" - -#: include/event.php:444 -msgid "Wed" -msgstr "" - -#: include/event.php:445 -msgid "Thu" -msgstr "" - -#: include/event.php:446 -msgid "Fri" -msgstr "" - -#: include/event.php:447 -msgid "Sat" -msgstr "" - -#: include/event.php:448 include/text.php:1130 mod/settings.php:972 -msgid "Sunday" -msgstr "Diumenge" - -#: include/event.php:449 include/text.php:1130 mod/settings.php:972 -msgid "Monday" -msgstr "Dilluns" - -#: include/event.php:450 include/text.php:1130 -msgid "Tuesday" -msgstr "Dimarts" - -#: include/event.php:451 include/text.php:1130 -msgid "Wednesday" -msgstr "Dimecres" - -#: include/event.php:452 include/text.php:1130 -msgid "Thursday" -msgstr "Dijous" - -#: include/event.php:453 include/text.php:1130 -msgid "Friday" -msgstr "Divendres" - -#: include/event.php:454 include/text.php:1130 -msgid "Saturday" -msgstr "Dissabte" - -#: include/event.php:455 -msgid "Jan" -msgstr "" - -#: include/event.php:456 -msgid "Feb" -msgstr "" - -#: include/event.php:457 -msgid "Mar" -msgstr "" - -#: include/event.php:458 -msgid "Apr" -msgstr "" - -#: include/event.php:459 include/event.php:471 include/text.php:1134 -msgid "May" -msgstr "Maig" - -#: include/event.php:460 -msgid "Jun" -msgstr "" - -#: include/event.php:461 -msgid "Jul" -msgstr "" - -#: include/event.php:462 -msgid "Aug" -msgstr "" - -#: include/event.php:463 -msgid "Sept" -msgstr "" - -#: include/event.php:464 -msgid "Oct" -msgstr "" - -#: include/event.php:465 -msgid "Nov" -msgstr "" - -#: include/event.php:466 -msgid "Dec" -msgstr "" - -#: include/event.php:467 include/text.php:1134 -msgid "January" -msgstr "Gener" - -#: include/event.php:468 include/text.php:1134 -msgid "February" -msgstr "Febrer" - -#: include/event.php:469 include/text.php:1134 -msgid "March" -msgstr "Març" - -#: include/event.php:470 include/text.php:1134 -msgid "April" -msgstr "Abril" - -#: include/event.php:472 include/text.php:1134 -msgid "June" -msgstr "Juny" - -#: include/event.php:473 include/text.php:1134 -msgid "July" -msgstr "Juliol" - -#: include/event.php:474 include/text.php:1134 -msgid "August" -msgstr "Agost" - -#: include/event.php:475 include/text.php:1134 -msgid "September" -msgstr "Setembre" - -#: include/event.php:476 include/text.php:1134 -msgid "October" -msgstr "Octubre" - -#: include/event.php:477 include/text.php:1134 -msgid "November" -msgstr "Novembre" - -#: include/event.php:478 include/text.php:1134 -msgid "December" -msgstr "Desembre" - -#: include/event.php:479 mod/cal.php:283 mod/events.php:388 -msgid "today" -msgstr "" - -#: include/event.php:483 -msgid "all-day" -msgstr "" - -#: include/event.php:485 -msgid "No events to display" -msgstr "" - -#: include/event.php:574 -msgid "l, F j" -msgstr "l, F j" - -#: include/event.php:593 -msgid "Edit event" -msgstr "Editar esdeveniment" - -#: include/event.php:615 include/text.php:1532 include/text.php:1539 -msgid "link to source" -msgstr "Enllaç al origen" - -#: include/event.php:850 -msgid "Export" -msgstr "" - -#: include/event.php:851 -msgid "Export calendar as ical" -msgstr "" - -#: include/event.php:852 -msgid "Export calendar as csv" -msgstr "" - -#: include/nav.php:35 mod/navigation.php:19 -msgid "Nothing new here" -msgstr "Res nou aquí" - -#: include/nav.php:39 mod/navigation.php:23 -msgid "Clear notifications" -msgstr "Neteja notificacions" - -#: include/nav.php:40 include/text.php:1015 -msgid "@name, !forum, #tags, content" -msgstr "" - -#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792 -msgid "Logout" -msgstr "Sortir" - -#: include/nav.php:78 view/theme/frio/theme.php:246 -msgid "End this session" -msgstr "Termina sessió" - -#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637 -#: mod/contacts.php:833 view/theme/frio/theme.php:249 -msgid "Status" -msgstr "Estatus" - -#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249 -msgid "Your posts and conversations" -msgstr "Els teus anuncis i converses" - -#: include/nav.php:82 include/identity.php:605 include/identity.php:691 -#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32 -#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250 -msgid "Profile" -msgstr "Perfil" - -#: include/nav.php:82 view/theme/frio/theme.php:250 -msgid "Your profile page" -msgstr "La seva pàgina de perfil" - -#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32 -#: view/theme/frio/theme.php:251 -msgid "Photos" -msgstr "Fotos" - -#: include/nav.php:83 view/theme/frio/theme.php:251 -msgid "Your photos" -msgstr "Les seves fotos" - -#: include/nav.php:84 include/identity.php:738 include/identity.php:741 -#: view/theme/frio/theme.php:252 -msgid "Videos" -msgstr "Vídeos" - -#: include/nav.php:84 view/theme/frio/theme.php:252 -msgid "Your videos" -msgstr "" - -#: include/nav.php:85 include/nav.php:149 include/identity.php:750 -#: include/identity.php:761 mod/cal.php:275 mod/events.php:379 -#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257 -msgid "Events" -msgstr "Esdeveniments" - -#: include/nav.php:85 view/theme/frio/theme.php:253 -msgid "Your events" -msgstr "Els seus esdeveniments" - -#: include/nav.php:86 -msgid "Personal notes" -msgstr "Notes personals" - -#: include/nav.php:86 -msgid "Your personal notes" -msgstr "" - -#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793 -msgid "Login" -msgstr "Identifica't" - -#: include/nav.php:95 -msgid "Sign in" -msgstr "Accedeix" - -#: include/nav.php:105 include/nav.php:161 -#: include/NotificationsManager.php:174 -msgid "Home" -msgstr "Inici" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "Pàgina d'Inici" - -#: include/nav.php:109 mod/register.php:289 boot.php:1768 -msgid "Register" -msgstr "Registrar" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "Crear un compte" - -#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298 -msgid "Help" -msgstr "Ajuda" - -#: include/nav.php:115 -msgid "Help and documentation" -msgstr "Ajuda i documentació" - -#: include/nav.php:119 -msgid "Apps" -msgstr "Aplicacions" - -#: include/nav.php:119 -msgid "Addon applications, utilities, games" -msgstr "Afegits: aplicacions, utilitats, jocs" - -#: include/nav.php:123 include/text.php:1012 mod/search.php:149 -msgid "Search" -msgstr "Cercar" - -#: include/nav.php:123 -msgid "Search site content" -msgstr "Busca contingut en el lloc" - -#: include/nav.php:126 include/text.php:1020 -msgid "Full Text" -msgstr "" - -#: include/nav.php:127 include/text.php:1021 -msgid "Tags" -msgstr "" - -#: include/nav.php:128 include/nav.php:192 include/identity.php:783 -#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792 -#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260 -msgid "Contacts" -msgstr "Contactes" - -#: include/nav.php:143 include/nav.php:145 mod/community.php:36 -msgid "Community" -msgstr "Comunitat" - -#: include/nav.php:143 -msgid "Conversations on this site" -msgstr "Converses en aquest lloc" - -#: include/nav.php:145 -msgid "Conversations on the network" -msgstr "" - -#: include/nav.php:149 include/identity.php:753 include/identity.php:764 -#: view/theme/frio/theme.php:257 -msgid "Events and Calendar" -msgstr "Esdeveniments i Calendari" - -#: include/nav.php:152 -msgid "Directory" -msgstr "Directori" - -#: include/nav.php:152 -msgid "People directory" -msgstr "Directori de gent" - -#: include/nav.php:154 -msgid "Information" -msgstr "" - -#: include/nav.php:154 -msgid "Information about this friendica instance" -msgstr "" - -#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411 -#: view/theme/frio/theme.php:256 -msgid "Network" -msgstr "Xarxa" - -#: include/nav.php:158 view/theme/frio/theme.php:256 -msgid "Conversations from your friends" -msgstr "Converses dels teus amics" - -#: include/nav.php:159 -msgid "Network Reset" -msgstr "Reiniciar Xarxa" - -#: include/nav.php:159 -msgid "Load Network page with no filters" -msgstr "carrega la pàgina de Xarxa sense filtres" - -#: include/nav.php:166 include/NotificationsManager.php:181 -msgid "Introductions" -msgstr "Presentacions" - -#: include/nav.php:166 -msgid "Friend Requests" -msgstr "Sol·licitud d'Amistat" - -#: include/nav.php:169 mod/notifications.php:96 -msgid "Notifications" -msgstr "Notificacions" - -#: include/nav.php:170 -msgid "See all notifications" -msgstr "Veure totes les notificacions" - -#: include/nav.php:171 mod/settings.php:902 -msgid "Mark as seen" -msgstr "Marcar com a vist" - -#: include/nav.php:171 -msgid "Mark all system notifications seen" -msgstr "Marcar totes les notificacions del sistema com a vistes" - -#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258 -msgid "Messages" -msgstr "Missatges" - -#: include/nav.php:175 view/theme/frio/theme.php:258 -msgid "Private mail" -msgstr "Correu privat" - -#: include/nav.php:176 -msgid "Inbox" -msgstr "Safata d'entrada" - -#: include/nav.php:177 -msgid "Outbox" -msgstr "Safata de sortida" - -#: include/nav.php:178 mod/message.php:16 -msgid "New Message" -msgstr "Nou Missatge" - -#: include/nav.php:181 -msgid "Manage" -msgstr "Gestionar" - -#: include/nav.php:181 -msgid "Manage other pages" -msgstr "Gestiona altres pàgines" - -#: include/nav.php:184 mod/settings.php:81 -msgid "Delegations" -msgstr "Delegacions" - -#: include/nav.php:184 mod/delegate.php:130 -msgid "Delegate Page Management" -msgstr "Gestió de les Pàgines Delegades" - -#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 -#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259 -msgid "Settings" -msgstr "Ajustos" - -#: include/nav.php:186 view/theme/frio/theme.php:259 -msgid "Account settings" -msgstr "Configuració del compte" - -#: include/nav.php:189 include/identity.php:282 -msgid "Profiles" -msgstr "Perfils" - -#: include/nav.php:189 -msgid "Manage/Edit Profiles" -msgstr "Gestiona/Edita Perfils" - -#: include/nav.php:192 view/theme/frio/theme.php:260 -msgid "Manage/edit friends and contacts" -msgstr "Gestiona/edita amics i contactes" - -#: include/nav.php:197 mod/admin.php:186 -msgid "Admin" -msgstr "Admin" - -#: include/nav.php:197 -msgid "Site setup and configuration" -msgstr "Ajustos i configuració del lloc" - -#: include/nav.php:200 -msgid "Navigation" -msgstr "Navegació" - -#: include/nav.php:200 -msgid "Site map" -msgstr "Mapa del lloc" - -#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62 -#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211 -#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807 -msgid "Contact Photos" -msgstr "Fotos de Contacte" - -#: include/security.php:22 -msgid "Welcome " -msgstr "Benvingut" - -#: include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Per favor, carrega una foto per al perfil" - -#: include/security.php:26 -msgid "Welcome back " -msgstr "Benvingut de nou " - -#: include/security.php:373 -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 "El formulari del token de seguretat no es correcte. Això probablement passa perquè el formulari ha estat massa temps obert (>3 hores) abans d'enviat-lo." - -#: include/NotificationsManager.php:153 -msgid "System" -msgstr "Sistema" - -#: include/NotificationsManager.php:167 mod/profiles.php:703 -#: mod/network.php:845 -msgid "Personal" -msgstr "Personal" - -#: include/NotificationsManager.php:234 include/NotificationsManager.php:244 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s va comentar en l'enviament de %s" - -#: include/NotificationsManager.php:243 -#, php-format -msgid "%s created a new post" -msgstr "%s ha creat un enviament nou" - -#: include/NotificationsManager.php:256 -#, php-format -msgid "%s liked %s's post" -msgstr "A %s li agrada l'enviament de %s" - -#: include/NotificationsManager.php:267 -#, php-format -msgid "%s disliked %s's post" -msgstr "A %s no li agrada l'enviament de %s" - -#: include/NotificationsManager.php:278 -#, php-format -msgid "%s is attending %s's event" -msgstr "" - -#: include/NotificationsManager.php:289 -#, php-format -msgid "%s is not attending %s's event" -msgstr "" - -#: include/NotificationsManager.php:300 -#, php-format -msgid "%s may attend %s's event" -msgstr "" - -#: include/NotificationsManager.php:315 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s es ara amic de %s" - -#: include/NotificationsManager.php:748 -msgid "Friend Suggestion" -msgstr "Amics Suggerits " - -#: include/NotificationsManager.php:781 -msgid "Friend/Connect Request" -msgstr "Sol·licitud d'Amistat/Connexió" - -#: include/NotificationsManager.php:781 -msgid "New Follower" -msgstr "Nou Seguidor" - -#: include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "" - -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "" - -#: include/dbstructure.php:183 -msgid "Errors encountered creating database tables." -msgstr "Trobats errors durant la creació de les taules de la base de dades." - -#: include/dbstructure.php:260 -msgid "Errors encountered performing database changes." -msgstr "" - -#: include/delivery.php:446 -msgid "(no subject)" -msgstr "(sense assumpte)" - -#: include/diaspora.php:1958 -msgid "Sharing notification from Diaspora network" -msgstr "Compartint la notificació de la xarxa Diàspora" - -#: include/diaspora.php:2864 -msgid "Attachments:" -msgstr "Adjunts:" - -#: include/network.php:595 -msgid "view full size" -msgstr "Veure'l a mida completa" - -#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398 -#: include/conversation.php:968 include/conversation.php:984 -#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203 -#: mod/match.php:71 mod/suggest.php:82 -msgid "View Profile" -msgstr "Veure Perfil" - -#: include/Contact.php:397 include/conversation.php:967 -msgid "View Status" -msgstr "Veure Estatus" - -#: include/Contact.php:399 include/conversation.php:969 -msgid "View Photos" -msgstr "Veure Fotos" - -#: include/Contact.php:400 include/conversation.php:970 -msgid "Network Posts" -msgstr "Enviaments a la Xarxa" - -#: include/Contact.php:401 include/conversation.php:971 -msgid "View Contact" -msgstr "" - -#: include/Contact.php:402 -msgid "Drop Contact" -msgstr "" - -#: include/Contact.php:403 include/conversation.php:972 -msgid "Send PM" -msgstr "Enviar Missatge Privat" - -#: include/Contact.php:404 include/conversation.php:976 -msgid "Poke" -msgstr "Atia" - -#: include/Contact.php:775 -msgid "Organisation" -msgstr "" - -#: include/Contact.php:778 -msgid "News" -msgstr "" - -#: include/Contact.php:781 -msgid "Forum" -msgstr "" - -#: include/api.php:1018 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:1038 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:1059 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058 -msgid "Image/photo" -msgstr "Imatge/foto" - -#: include/bbcode.php:467 -#, php-format -msgid "%2$s %3$s" -msgstr "" - -#: include/bbcode.php:1017 include/bbcode.php:1037 -msgid "$1 wrote:" -msgstr "$1 va escriure:" - -#: include/bbcode.php:1066 include/bbcode.php:1067 -msgid "Encrypted content" -msgstr "Encriptar contingut" - -#: include/bbcode.php:1169 -msgid "Invalid source protocol" -msgstr "" - -#: include/bbcode.php:1179 -msgid "Invalid link protocol" -msgstr "" - -#: include/conversation.php:147 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "" - -#: include/conversation.php:150 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "" - -#: include/conversation.php:153 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "" - -#: include/conversation.php:185 mod/dfrn_confirm.php:477 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s és ara amic amb %2$s" - -#: include/conversation.php:219 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s atiat %2$s" - -#: include/conversation.php:239 mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s es normalment %2$s" - -#: include/conversation.php:278 mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s etiquetats %2$s %3$s amb %4$s" - -#: include/conversation.php:303 -msgid "post/item" -msgstr "anunci/element" - -#: include/conversation.php:304 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s marcat %2$s's %3$s com favorit" - -#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346 -#: mod/photos.php:1607 -msgid "Likes" -msgstr "Agrada" - -#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350 -#: mod/photos.php:1607 -msgid "Dislikes" -msgstr "No agrada" - -#: include/conversation.php:586 include/conversation.php:1481 -#: mod/content.php:373 mod/photos.php:1608 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 -msgid "Not attending" -msgstr "" - -#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 -msgid "Might attend" -msgstr "" - -#: include/conversation.php:708 mod/content.php:453 mod/content.php:758 -#: mod/photos.php:1681 object/Item.php:133 -msgid "Select" -msgstr "Selecionar" - -#: include/conversation.php:709 mod/group.php:171 mod/content.php:454 -#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741 -#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007 -#: object/Item.php:134 -msgid "Delete" -msgstr "Esborrar" - -#: include/conversation.php:753 mod/content.php:487 mod/content.php:910 -#: mod/content.php:911 object/Item.php:367 object/Item.php:368 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Veure perfil de %s @ %s" - -#: include/conversation.php:765 object/Item.php:355 -msgid "Categories:" -msgstr "Categories:" - -#: include/conversation.php:766 object/Item.php:356 -msgid "Filed under:" -msgstr "Arxivat a:" - -#: include/conversation.php:773 mod/content.php:497 mod/content.php:923 -#: object/Item.php:381 -#, php-format -msgid "%s from %s" -msgstr "%s des de %s" - -#: include/conversation.php:789 mod/content.php:513 -msgid "View in context" -msgstr "Veure en context" - -#: include/conversation.php:791 include/conversation.php:1264 -#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 -#: mod/message.php:548 mod/content.php:515 mod/content.php:948 -#: mod/photos.php:1570 object/Item.php:406 -msgid "Please wait" -msgstr "Si us plau esperi" - -#: include/conversation.php:870 -msgid "remove" -msgstr "esborrar" - -#: include/conversation.php:874 -msgid "Delete Selected Items" -msgstr "Esborra els Elements Seleccionats" - -#: include/conversation.php:966 -msgid "Follow Thread" -msgstr "Seguir el Fil" - -#: include/conversation.php:1097 -#, php-format -msgid "%s likes this." -msgstr "a %s agrada això." - -#: include/conversation.php:1100 -#, php-format -msgid "%s doesn't like this." -msgstr "a %s desagrada això." - -#: include/conversation.php:1103 -#, php-format -msgid "%s attends." -msgstr "" - -#: include/conversation.php:1106 -#, php-format -msgid "%s doesn't attend." -msgstr "" - -#: include/conversation.php:1109 -#, php-format -msgid "%s attends maybe." -msgstr "" - -#: include/conversation.php:1119 -msgid "and" -msgstr "i" - -#: include/conversation.php:1125 -#, php-format -msgid ", and %d other people" -msgstr ", i altres %d persones" - -#: include/conversation.php:1134 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d gent agrada això" - -#: include/conversation.php:1135 -#, php-format -msgid "%s like this." -msgstr "" - -#: include/conversation.php:1138 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d gent no agrada això" - -#: include/conversation.php:1139 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: include/conversation.php:1142 -#, php-format -msgid "%2$d people attend" -msgstr "" - -#: include/conversation.php:1143 -#, php-format -msgid "%s attend." -msgstr "" - -#: include/conversation.php:1146 -#, php-format -msgid "%2$d people don't attend" -msgstr "" - -#: include/conversation.php:1147 -#, php-format -msgid "%s don't attend." -msgstr "" - -#: include/conversation.php:1150 -#, php-format -msgid "%2$d people attend maybe" -msgstr "" - -#: include/conversation.php:1151 -#, php-format -msgid "%s anttend maybe." -msgstr "" - -#: include/conversation.php:1190 include/conversation.php:1208 -msgid "Visible to everybody" -msgstr "Visible per a tothom" - -#: include/conversation.php:1191 include/conversation.php:1209 -#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 -#: mod/message.php:299 mod/message.php:442 mod/message.php:450 -msgid "Please enter a link URL:" -msgstr "Sius plau, entri l'enllaç URL:" - -#: include/conversation.php:1192 include/conversation.php:1210 -msgid "Please enter a video link/URL:" -msgstr "Per favor , introdueixi el enllaç/URL del video" - -#: include/conversation.php:1193 include/conversation.php:1211 -msgid "Please enter an audio link/URL:" -msgstr "Per favor , introdueixi el enllaç/URL del audio:" - -#: include/conversation.php:1194 include/conversation.php:1212 -msgid "Tag term:" -msgstr "Terminis de l'etiqueta:" - -#: include/conversation.php:1195 include/conversation.php:1213 -#: mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Guardar a la Carpeta:" - -#: include/conversation.php:1196 include/conversation.php:1214 -msgid "Where are you right now?" -msgstr "On ets ara?" - -#: include/conversation.php:1197 -msgid "Delete item(s)?" -msgstr "Esborrar element(s)?" - -#: include/conversation.php:1245 mod/photos.php:1569 -msgid "Share" -msgstr "Compartir" - -#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154 -#: mod/message.php:354 mod/message.php:545 -msgid "Upload photo" -msgstr "Carregar foto" - -#: include/conversation.php:1247 mod/editpost.php:111 -msgid "upload photo" -msgstr "carregar fotos" - -#: include/conversation.php:1248 mod/editpost.php:112 -msgid "Attach file" -msgstr "Adjunta fitxer" - -#: include/conversation.php:1249 mod/editpost.php:113 -msgid "attach file" -msgstr "adjuntar arxiu" - -#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155 -#: mod/message.php:355 mod/message.php:546 -msgid "Insert web link" -msgstr "Inserir enllaç web" - -#: include/conversation.php:1251 mod/editpost.php:115 -msgid "web link" -msgstr "enllaç de web" - -#: include/conversation.php:1252 mod/editpost.php:116 -msgid "Insert video link" -msgstr "Insertar enllaç de video" - -#: include/conversation.php:1253 mod/editpost.php:117 -msgid "video link" -msgstr "enllaç de video" - -#: include/conversation.php:1254 mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Insertar enllaç de audio" - -#: include/conversation.php:1255 mod/editpost.php:119 -msgid "audio link" -msgstr "enllaç de audio" - -#: include/conversation.php:1256 mod/editpost.php:120 -msgid "Set your location" -msgstr "Canvia la teva ubicació" - -#: include/conversation.php:1257 mod/editpost.php:121 -msgid "set location" -msgstr "establir la ubicació" - -#: include/conversation.php:1258 mod/editpost.php:122 -msgid "Clear browser location" -msgstr "neteja adreçes del navegador" - -#: include/conversation.php:1259 mod/editpost.php:123 -msgid "clear location" -msgstr "netejar ubicació" - -#: include/conversation.php:1261 mod/editpost.php:137 -msgid "Set title" -msgstr "Canviar títol" - -#: include/conversation.php:1263 mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Categories (lista separada per comes)" - -#: include/conversation.php:1265 mod/editpost.php:125 -msgid "Permission settings" -msgstr "Configuració de permisos" - -#: include/conversation.php:1266 mod/editpost.php:154 -msgid "permissions" -msgstr "Permissos" - -#: include/conversation.php:1274 mod/editpost.php:134 -msgid "Public post" -msgstr "Enviament públic" - -#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737 -#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639 -#: mod/photos.php:1725 object/Item.php:729 -msgid "Preview" -msgstr "Vista prèvia" - -#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101 -#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148 -#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235 -#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705 -#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876 -#: mod/follow.php:121 -msgid "Cancel" -msgstr "Cancel·lar" - -#: include/conversation.php:1289 -msgid "Post to Groups" -msgstr "Publica-ho a Grups" - -#: include/conversation.php:1290 -msgid "Post to Contacts" -msgstr "Publica-ho a Contactes" - -#: include/conversation.php:1291 -msgid "Private post" -msgstr "Enviament Privat" - -#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152 -msgid "Message" -msgstr "Missatge" - -#: include/conversation.php:1297 mod/editpost.php:153 -msgid "Browser" -msgstr "" - -#: include/conversation.php:1453 -msgid "View all" -msgstr "" - -#: include/conversation.php:1475 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:1478 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:1484 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: include/dfrn.php:1108 -#, php-format -msgid "%s\\'s birthday" -msgstr "" - -#: include/features.php:70 -msgid "General Features" -msgstr "Característiques Generals" - -#: include/features.php:72 -msgid "Multiple Profiles" -msgstr "Perfils Múltiples" - -#: include/features.php:72 -msgid "Ability to create multiple profiles" -msgstr "Habilitat per crear múltiples perfils" - -#: include/features.php:73 -msgid "Photo Location" -msgstr "" - -#: include/features.php:73 -msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "" - -#: include/features.php:74 -msgid "Export Public Calendar" -msgstr "" - -#: include/features.php:74 -msgid "Ability for visitors to download the public calendar" -msgstr "" - -#: include/features.php:79 -msgid "Post Composition Features" -msgstr "Característiques de Composició d'Enviaments" - -#: include/features.php:80 -msgid "Richtext Editor" -msgstr "Editor de Text Enriquit" - -#: include/features.php:80 -msgid "Enable richtext editor" -msgstr "Activar l'Editor de Text Enriquit" - -#: include/features.php:81 -msgid "Post Preview" -msgstr "Vista Prèvia de l'Enviament" - -#: include/features.php:81 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Permetre la vista prèvia dels enviament i comentaris abans de publicar-los" - -#: include/features.php:82 -msgid "Auto-mention Forums" -msgstr "" - -#: include/features.php:82 -msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "" - -#: include/features.php:87 -msgid "Network Sidebar Widgets" -msgstr "Barra Lateral Selectora de Xarxa " - -#: include/features.php:88 -msgid "Search by Date" -msgstr "Cerca per Data" - -#: include/features.php:88 -msgid "Ability to select posts by date ranges" -msgstr "Possibilitat de seleccionar els missatges per intervals de temps" - -#: include/features.php:89 include/features.php:119 -msgid "List Forums" -msgstr "" - -#: include/features.php:89 -msgid "Enable widget to display the forums your are connected with" -msgstr "" - -#: include/features.php:90 -msgid "Group Filter" -msgstr "Filtre de Grup" - -#: include/features.php:90 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Habilitar botò per veure missatges de Xarxa només del grup seleccionat" - -#: include/features.php:91 -msgid "Network Filter" -msgstr "Filtre de Xarxa" - -#: include/features.php:91 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Habilitar botò per veure missatges de Xarxa només de la xarxa seleccionada" - -#: include/features.php:92 mod/search.php:34 mod/network.php:200 -msgid "Saved Searches" -msgstr "Cerques Guardades" - -#: include/features.php:92 -msgid "Save search terms for re-use" -msgstr "Guarda els termes de cerca per re-emprar" - -#: include/features.php:97 -msgid "Network Tabs" -msgstr "Pestanya Xarxes" - -#: include/features.php:98 -msgid "Network Personal Tab" -msgstr "Pestanya Xarxa Personal" - -#: include/features.php:98 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Habilitar la pestanya per veure unicament missatges de Xarxa en els que has intervingut" - -#: include/features.php:99 -msgid "Network New Tab" -msgstr "Pestanya Nova Xarxa" - -#: include/features.php:99 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Habilitar la pestanya per veure només els nous missatges de Xarxa (els de les darreres 12 hores)" - -#: include/features.php:100 -msgid "Network Shared Links Tab" -msgstr "Pestanya d'Enllaços de Xarxa Compartits" - -#: include/features.php:100 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Habilitar la pestanya per veure els missatges de Xarxa amb enllaços en ells" - -#: include/features.php:105 -msgid "Post/Comment Tools" -msgstr "Eines d'Enviaments/Comentaris" - -#: include/features.php:106 -msgid "Multiple Deletion" -msgstr "Esborrat Múltiple" - -#: include/features.php:106 -msgid "Select and delete multiple posts/comments at once" -msgstr "Sel·lecciona i esborra múltiples enviaments/commentaris en una vegada" - -#: include/features.php:107 -msgid "Edit Sent Posts" -msgstr "Editar Missatges Enviats" - -#: include/features.php:107 -msgid "Edit and correct posts and comments after sending" -msgstr "Edita i corregeix enviaments i comentaris una vegada han estat enviats" - -#: include/features.php:108 -msgid "Tagging" -msgstr "Etiquetant" - -#: include/features.php:108 -msgid "Ability to tag existing posts" -msgstr "Habilitar el etiquetar missatges existents" - -#: include/features.php:109 -msgid "Post Categories" -msgstr "Categories en Enviaments" - -#: include/features.php:109 -msgid "Add categories to your posts" -msgstr "Afegeix categories als teus enviaments" - -#: include/features.php:110 -msgid "Ability to file posts under folders" -msgstr "Habilitar el arxivar missatges en carpetes" - -#: include/features.php:111 -msgid "Dislike Posts" -msgstr "No agrada el Missatge" - -#: include/features.php:111 -msgid "Ability to dislike posts/comments" -msgstr "Habilita el marcar amb \"no agrada\" els enviaments/comentaris" - -#: include/features.php:112 -msgid "Star Posts" -msgstr "Missatge Estelar" - -#: include/features.php:112 -msgid "Ability to mark special posts with a star indicator" -msgstr "Habilita el marcar amb un estel, missatges especials" - -#: include/features.php:113 -msgid "Mute Post Notifications" -msgstr "" - -#: include/features.php:113 -msgid "Ability to mute notifications for a thread" -msgstr "" - -#: include/features.php:118 -msgid "Advanced Profile Settings" -msgstr "" - -#: include/features.php:119 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "" - -#: include/follow.php:81 mod/dfrn_request.php:509 -msgid "Disallowed profile URL." -msgstr "Perfil URL no permès." - -#: include/follow.php:86 -msgid "Connect URL missing." -msgstr "URL del connector perduda." - -#: include/follow.php:113 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Aquest lloc no està configurat per permetre les comunicacions amb altres xarxes." - -#: include/follow.php:114 include/follow.php:134 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Protocol de comunnicació no compatible o alimentador descobert." - -#: include/follow.php:132 -msgid "The profile address specified does not provide adequate information." -msgstr "L'adreça de perfil especificada no proveeix informació adient." - -#: include/follow.php:136 -msgid "An author or name was not found." -msgstr "Un autor o nom no va ser trobat" - -#: include/follow.php:138 -msgid "No browser URL could be matched to this address." -msgstr "Cap direcció URL del navegador coincideix amb aquesta adreça." - -#: include/follow.php:140 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Incapaç de trobar coincidències amb la Adreça d'Identitat estil @ amb els protocols coneguts o contactes de correu. " - -#: include/follow.php:141 -msgid "Use mailto: in front of address to force email check." -msgstr "Emprar mailto: davant la adreça per a forçar la comprovació del correu." - -#: include/follow.php:147 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "La direcció del perfil especificat pertany a una xarxa que ha estat desactivada en aquest lloc." - -#: include/follow.php:157 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Perfil limitat. Aquesta persona no podrà rebre notificacions personals/directes de tu." - -#: include/follow.php:258 -msgid "Unable to retrieve contact information." -msgstr "No es pot recuperar la informació de contacte." - -#: include/identity.php:42 -msgid "Requested account is not available." -msgstr "El compte sol·licitat no esta disponible" - -#: include/identity.php:51 mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "El perfil sol·licitat no està disponible." - -#: include/identity.php:95 include/identity.php:311 include/identity.php:688 -msgid "Edit profile" -msgstr "Editar perfil" - -#: include/identity.php:251 -msgid "Atom feed" -msgstr "" - -#: include/identity.php:282 -msgid "Manage/edit profiles" -msgstr "Gestiona/edita perfils" - -#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795 -msgid "Change profile photo" -msgstr "Canviar la foto del perfil" - -#: include/identity.php:288 mod/profiles.php:796 -msgid "Create New Profile" -msgstr "Crear un Nou Perfil" - -#: include/identity.php:298 mod/profiles.php:785 -msgid "Profile Image" -msgstr "Imatge del Perfil" - -#: include/identity.php:301 mod/profiles.php:787 -msgid "visible to everybody" -msgstr "Visible per tothom" - -#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788 -msgid "Edit visibility" -msgstr "Editar visibilitat" - -#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238 -#: mod/directory.php:139 -msgid "Gender:" -msgstr "Gènere:" - -#: include/identity.php:333 include/identity.php:636 mod/directory.php:141 -msgid "Status:" -msgstr "Estatus:" - -#: include/identity.php:335 include/identity.php:647 mod/directory.php:143 -msgid "Homepage:" -msgstr "Pàgina web:" - -#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234 -#: mod/directory.php:145 mod/contacts.php:632 -msgid "About:" -msgstr "Acerca de:" - -#: include/identity.php:339 mod/contacts.php:630 -msgid "XMPP:" -msgstr "" - -#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50 -msgid "Network:" -msgstr "" - -#: include/identity.php:451 include/identity.php:535 -msgid "g A l F d" -msgstr "g A l F d" - -#: include/identity.php:452 include/identity.php:536 -msgid "F d" -msgstr "F d" - -#: include/identity.php:497 include/identity.php:582 -msgid "[today]" -msgstr "[avui]" - -#: include/identity.php:509 -msgid "Birthday Reminders" -msgstr "Recordatori d'Aniversaris" - -#: include/identity.php:510 -msgid "Birthdays this week:" -msgstr "Aniversari aquesta setmana" - -#: include/identity.php:569 -msgid "[No description]" -msgstr "[sense descripció]" - -#: include/identity.php:593 -msgid "Event Reminders" -msgstr "Recordatori d'Esdeveniments" - -#: include/identity.php:594 -msgid "Events this week:" -msgstr "Esdeveniments aquesta setmana" - -#: include/identity.php:614 mod/settings.php:1279 -msgid "Full Name:" -msgstr "Nom Complet:" - -#: include/identity.php:621 -msgid "j F, Y" -msgstr "j F, Y" - -#: include/identity.php:622 -msgid "j F" -msgstr "j F" - -#: include/identity.php:633 -msgid "Age:" -msgstr "Edat:" - -#: include/identity.php:642 -#, php-format -msgid "for %1$d %2$s" -msgstr "per a %1$d %2$s" - -#: include/identity.php:645 mod/profiles.php:710 -msgid "Sexual Preference:" -msgstr "Preferència Sexual:" - -#: include/identity.php:649 mod/profiles.php:737 -msgid "Hometown:" -msgstr "Lloc de residència:" - -#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634 -#: mod/follow.php:134 -msgid "Tags:" -msgstr "Etiquetes:" - -#: include/identity.php:653 mod/profiles.php:738 -msgid "Political Views:" -msgstr "Idees Polítiques:" - -#: include/identity.php:655 -msgid "Religion:" -msgstr "Religió:" - -#: include/identity.php:659 -msgid "Hobbies/Interests:" -msgstr "Aficiones/Intereses:" - -#: include/identity.php:661 mod/profiles.php:742 -msgid "Likes:" -msgstr "Agrada:" - -#: include/identity.php:663 mod/profiles.php:743 -msgid "Dislikes:" -msgstr "No Agrada" - -#: include/identity.php:666 -msgid "Contact information and Social Networks:" -msgstr "Informació de contacte i Xarxes Socials:" - -#: include/identity.php:668 -msgid "Musical interests:" -msgstr "Gustos musicals:" - -#: include/identity.php:670 -msgid "Books, literature:" -msgstr "Llibres, literatura:" - -#: include/identity.php:672 -msgid "Television:" -msgstr "Televisió:" - -#: include/identity.php:674 -msgid "Film/dance/culture/entertainment:" -msgstr "Cinema/ball/cultura/entreteniments:" - -#: include/identity.php:676 -msgid "Love/Romance:" -msgstr "Amor/sentiments:" - -#: include/identity.php:678 -msgid "Work/employment:" -msgstr "Treball/ocupació:" - -#: include/identity.php:680 -msgid "School/education:" -msgstr "Escola/formació" - -#: include/identity.php:684 -msgid "Forums:" -msgstr "" - -#: include/identity.php:692 mod/events.php:507 -msgid "Basic" -msgstr "" - -#: include/identity.php:693 mod/events.php:508 mod/admin.php:959 -#: mod/contacts.php:870 -msgid "Advanced" -msgstr "Avançat" - -#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142 -msgid "Status Messages and Posts" -msgstr "Missatges i Enviaments d'Estatus" - -#: include/identity.php:725 mod/contacts.php:844 -msgid "Profile Details" -msgstr "Detalls del Perfil" - -#: include/identity.php:733 mod/photos.php:87 -msgid "Photo Albums" -msgstr "Àlbum de Fotos" - -#: include/identity.php:772 mod/notes.php:46 -msgid "Personal Notes" -msgstr "Notes Personals" - -#: include/identity.php:775 -msgid "Only You Can See This" -msgstr "Només ho pots veure tu" - -#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746 -msgid "[Name Withheld]" -msgstr "[Nom Amagat]" - -#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15 -#: mod/display.php:103 mod/display.php:279 mod/display.php:478 -#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705 -msgid "Item not found." -msgstr "Article no trobat." - -#: include/items.php:1969 -msgid "Do you really want to delete this item?" -msgstr "Realment vols esborrar aquest article?" - -#: include/items.php:1971 mod/api.php:105 mod/message.php:217 -#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677 -#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163 -#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 -#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 -#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 -#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 -#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110 -msgid "Yes" -msgstr "Si" - -#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23 -#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101 -#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33 -#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9 -#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 -#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9 -#: mod/message.php:46 mod/message.php:182 mod/manage.php:96 -#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150 -#: mod/profile_photo.php:19 mod/profile_photo.php:175 -#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110 -#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605 -#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11 -#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58 -#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42 -#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665 -#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77 -#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61 -#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199 -#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401 -msgid "Permission denied." -msgstr "Permís denegat." - -#: include/items.php:2239 +#: src/Content/Widget.php:506 msgid "Archives" msgstr "Arxius" -#: include/oembed.php:264 -msgid "Embedded content" -msgstr "Contingut incrustat" - -#: include/oembed.php:272 -msgid "Embedding disabled" -msgstr "Incrustacions deshabilitades" - -#: include/ostatus.php:1825 -#, php-format -msgid "%s is now following %s." +#: src/Content/Widget.php:514 +msgid "On this date" msgstr "" -#: include/ostatus.php:1826 -msgid "following" -msgstr "seguint" - -#: include/ostatus.php:1829 -#, php-format -msgid "%s stopped following %s." +#: src/Content/Widget.php:534 +msgid "Persons" msgstr "" -#: include/ostatus.php:1830 -msgid "stopped following" -msgstr "Deixar de seguir" - -#: include/text.php:304 -msgid "newer" -msgstr "Més nou" - -#: include/text.php:306 -msgid "older" -msgstr "més vell" - -#: include/text.php:311 -msgid "prev" -msgstr "Prev" - -#: include/text.php:313 -msgid "first" -msgstr "Primer" - -#: include/text.php:345 -msgid "last" -msgstr "Últim" - -#: include/text.php:348 -msgid "next" -msgstr "següent" - -#: include/text.php:403 -msgid "Loading more entries..." +#: src/Content/Widget.php:535 +msgid "Organisations" msgstr "" -#: include/text.php:404 -msgid "The end" +#: src/Content/Widget.php:536 src/Model/Contact.php:1698 +msgid "News" msgstr "" -#: include/text.php:889 +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 +msgid "Account Types" +msgstr "" + +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 +msgid "All" +msgstr "" + +#: src/Content/Widget.php:573 src/Module/Settings/Display.php:266 +msgid "Channels" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:56 +msgid "Export" +msgstr "Exportar" + +#: src/Content/Widget/CalendarExport.php:57 +msgid "Export calendar as ical" +msgstr "Exportar calendari com ical" + +#: src/Content/Widget/CalendarExport.php:58 +msgid "Export calendar as csv" +msgstr "Exportar calendari com csv" + +#: src/Content/Widget/ContactBlock.php:79 msgid "No contacts" msgstr "Sense contactes" -#: include/text.php:912 +#: src/Content/Widget/ContactBlock.php:110 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d Contacte" msgstr[1] "%d Contactes" -#: include/text.php:925 +#: src/Content/Widget/ContactBlock.php:127 msgid "View Contacts" msgstr "Veure Contactes" -#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31 -#: mod/editpost.php:109 -msgid "Save" -msgstr "Guardar" +#: src/Content/Widget/SavedSearches.php:47 +msgid "Remove term" +msgstr "Traieu termini" -#: include/text.php:1076 -msgid "poke" -msgstr "atia" +#: src/Content/Widget/SavedSearches.php:60 +msgid "Saved Searches" +msgstr "Cerques Guardades" -#: include/text.php:1076 -msgid "poked" -msgstr "atiar" +#: src/Content/Widget/TrendingTags.php:52 +#, php-format +msgid "Trending Tags (last %d hour)" +msgid_plural "Trending Tags (last %d hours)" +msgstr[0] "" +msgstr[1] "" -#: include/text.php:1077 -msgid "ping" -msgstr "toc" - -#: include/text.php:1077 -msgid "pinged" -msgstr "tocat" - -#: include/text.php:1078 -msgid "prod" -msgstr "pinxat" - -#: include/text.php:1078 -msgid "prodded" -msgstr "pinxat" - -#: include/text.php:1079 -msgid "slap" -msgstr "bufetada" - -#: include/text.php:1079 -msgid "slapped" -msgstr "Abufetejat" - -#: include/text.php:1080 -msgid "finger" -msgstr "dit" - -#: include/text.php:1080 -msgid "fingered" -msgstr "Senyalat" - -#: include/text.php:1081 -msgid "rebuff" -msgstr "rebuig" - -#: include/text.php:1081 -msgid "rebuffed" -msgstr "rebutjat" - -#: include/text.php:1095 -msgid "happy" -msgstr "feliç" - -#: include/text.php:1096 -msgid "sad" -msgstr "trist" - -#: include/text.php:1097 -msgid "mellow" -msgstr "embafador" - -#: include/text.php:1098 -msgid "tired" -msgstr "cansat" - -#: include/text.php:1099 -msgid "perky" -msgstr "alegre" - -#: include/text.php:1100 -msgid "angry" -msgstr "disgustat" - -#: include/text.php:1101 -msgid "stupified" -msgstr "estupefacte" - -#: include/text.php:1102 -msgid "puzzled" -msgstr "perplexe" - -#: include/text.php:1103 -msgid "interested" -msgstr "interessat" - -#: include/text.php:1104 -msgid "bitter" -msgstr "amarg" - -#: include/text.php:1105 -msgid "cheerful" -msgstr "animat" - -#: include/text.php:1106 -msgid "alive" -msgstr "viu" - -#: include/text.php:1107 -msgid "annoyed" -msgstr "molest" - -#: include/text.php:1108 -msgid "anxious" -msgstr "ansiós" - -#: include/text.php:1109 -msgid "cranky" -msgstr "irritable" - -#: include/text.php:1110 -msgid "disturbed" -msgstr "turbat" - -#: include/text.php:1111 -msgid "frustrated" -msgstr "frustrat" - -#: include/text.php:1112 -msgid "motivated" -msgstr "motivat" - -#: include/text.php:1113 -msgid "relaxed" -msgstr "tranquil" - -#: include/text.php:1114 -msgid "surprised" -msgstr "sorprès" - -#: include/text.php:1324 mod/videos.php:380 -msgid "View Video" -msgstr "Veure Video" - -#: include/text.php:1356 -msgid "bytes" -msgstr "bytes" - -#: include/text.php:1388 include/text.php:1400 -msgid "Click to open/close" -msgstr "Clicar per a obrir/tancar" - -#: include/text.php:1526 -msgid "View on separate page" +#: src/Content/Widget/TrendingTags.php:53 +msgid "More Trending Tags" msgstr "" -#: include/text.php:1527 -msgid "view on separate page" +#: src/Content/Widget/VCard.php:109 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 +msgid "XMPP:" msgstr "" -#: include/text.php:1806 +#: src/Content/Widget/VCard.php:110 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 +msgid "Matrix:" +msgstr "" + +#: src/Content/Widget/VCard.php:111 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Ubicació:" + +#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:474 +#: src/Module/Notifications/Introductions.php:201 +msgid "Network:" +msgstr "" + +#: src/Content/Widget/VCard.php:118 src/Model/Contact.php:1223 +#: src/Model/Contact.php:1234 src/Model/Profile.php:463 +#: src/Module/Contact/Profile.php:463 +msgid "Unfollow" +msgstr "" + +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +msgid "Yourself" +msgstr "" + +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 +msgid "Mutuals" +msgstr "Mútues" + +#: src/Core/ACL.php:294 +msgid "Post to Email" +msgstr "Correu per enviar" + +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 +msgid "Public" +msgstr "" + +#: src/Core/ACL.php:322 +msgid "" +"This content will be shown to all your followers and can be seen in the " +"community pages and by anyone with its link." +msgstr "" + +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 +msgid "Limited/Private" +msgstr "" + +#: src/Core/ACL.php:324 +msgid "" +"This content will be shown only to the people in the first box, to the " +"exception of the people mentioned in the second box. It won't appear " +"anywhere public." +msgstr "" + +#: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." +msgstr "" + +#: src/Core/ACL.php:325 +msgid "Show to:" +msgstr "" + +#: src/Core/ACL.php:326 +msgid "Except to:" +msgstr "" + +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "CC: Adreça de correu" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Exemple: bob@example.com, mary@example.com" + +#: src/Core/ACL.php:329 +msgid "Connectors" +msgstr "" + +#: src/Core/Installer.php:180 +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 "El fitxer de configuració de la base de dades 'config / local.config.php' no s'ha pogut escriure. Utilitzeu el text adjunt per crear un fitxer de configuració a l’arrel del servidor web." + +#: src/Core/Installer.php:197 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Pot ser que hagi d'importar l'arxiu \"database.sql\" manualment amb phpmyadmin o mysql." + +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 +msgid "Please see the file \"doc/INSTALL.md\"." +msgstr "" + +#: src/Core/Installer.php:259 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "No es va poder trobar una versió de línia de comandos de PHP en la ruta del servidor web." + +#: src/Core/Installer.php:260 +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 "" + +#: src/Core/Installer.php:265 +msgid "PHP executable path" +msgstr "Direcció del executable PHP" + +#: src/Core/Installer.php:265 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Entra la ruta sencera fins l'executable de php. Pots deixar això buit per continuar l'instal·lació." + +#: src/Core/Installer.php:270 +msgid "Command line PHP" +msgstr "Linia de comandos PHP" + +#: src/Core/Installer.php:279 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "El programari executable PHP no es el binari php cli (hauria de ser la versió cgi-fcgi)" + +#: src/Core/Installer.php:280 +msgid "Found PHP version: " +msgstr "Trobada la versió PHP:" + +#: src/Core/Installer.php:282 +msgid "PHP cli binary" +msgstr "PHP cli binari" + +#: src/Core/Installer.php:295 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versió de línia de comandos de PHP en el seu sistema no té \"register_argc_argv\" habilitat." + +#: src/Core/Installer.php:296 +msgid "This is required for message delivery to work." +msgstr "Això és necessari perquè funcioni el lliurament de missatges." + +#: src/Core/Installer.php:301 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: src/Core/Installer.php:333 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: la funció \"openssl_pkey_new\" en aquest sistema no és capaç de generar claus de xifrat" + +#: src/Core/Installer.php:334 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Si s'executa en Windows, per favor consulti la secció \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: src/Core/Installer.php:337 +msgid "Generate encryption keys" +msgstr "Generar claus d'encripció" + +#: src/Core/Installer.php:389 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: el mòdul mod-rewrite del servidor web Apache és necessari però no està instal·lat." + +#: src/Core/Installer.php:394 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite modul " + +#: src/Core/Installer.php:400 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "Error: PDO or MySQLi PHP mòdul necessari però no instal·lat." + +#: src/Core/Installer.php:405 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "Error: The MySQL el controlador de PDO no està instal·lat." + +#: src/Core/Installer.php:409 +msgid "PDO or MySQLi PHP module" +msgstr "" + +#: src/Core/Installer.php:417 +msgid "Error, XML PHP module required but not installed." +msgstr "Error, XML PHP mòdul necessari però no instal·lat." + +#: src/Core/Installer.php:421 +msgid "XML PHP module" +msgstr "" + +#: src/Core/Installer.php:424 +msgid "libCurl PHP module" +msgstr "Mòdul libCurl de PHP" + +#: src/Core/Installer.php:425 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: El mòdul libCURL de PHP és necessari però no està instal·lat." + +#: src/Core/Installer.php:431 +msgid "GD graphics PHP module" +msgstr "Mòdul GD de gràfics de PHP" + +#: src/Core/Installer.php:432 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: el mòdul gràfic GD de PHP amb support per JPEG és necessari però no està instal·lat." + +#: src/Core/Installer.php:438 +msgid "OpenSSL PHP module" +msgstr "Mòdul OpenSSl de PHP" + +#: src/Core/Installer.php:439 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: El mòdul enssl de PHP és necessari però no està instal·lat." + +#: src/Core/Installer.php:445 +msgid "mb_string PHP module" +msgstr "Mòdul mb_string de PHP" + +#: src/Core/Installer.php:446 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: mòdul mb_string de PHP requerit però no instal·lat." + +#: src/Core/Installer.php:452 +msgid "iconv PHP module" +msgstr "" + +#: src/Core/Installer.php:453 +msgid "Error: iconv PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:459 +msgid "POSIX PHP module" +msgstr "" + +#: src/Core/Installer.php:460 +msgid "Error: POSIX PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:466 +msgid "Program execution functions" +msgstr "" + +#: src/Core/Installer.php:467 +msgid "" +"Error: Program execution functions (proc_open) required but not enabled." +msgstr "" + +#: src/Core/Installer.php:473 +msgid "JSON PHP module" +msgstr "" + +#: src/Core/Installer.php:474 +msgid "Error: JSON PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:480 +msgid "File Information PHP module" +msgstr "" + +#: src/Core/Installer.php:481 +msgid "Error: File Information PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:487 +msgid "GNU Multiple Precision PHP module" +msgstr "" + +#: src/Core/Installer.php:488 +msgid "Error: GNU Multiple Precision PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:511 +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 "" + +#: src/Core/Installer.php:512 +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 "Això freqüentment és a causa d'una configuració de permisos; el servidor web no pot escriure arxius en la carpeta - encara que sigui possible." + +#: src/Core/Installer.php:513 +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 "" + +#: src/Core/Installer.php:514 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"doc/INSTALL.md\" for instructions." +msgstr "" + +#: src/Core/Installer.php:517 +msgid "config/local.config.php is writable" +msgstr "" + +#: src/Core/Installer.php:537 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica empra el motor de plantilla Smarty3 per dibuixar la web. Smarty3 compila plantilles a PHP per accelerar el redibuxar." + +#: src/Core/Installer.php:538 +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 "Per poder guardar aquestes plantilles compilades, el servidor web necessita tenir accés d'escriptura al directori view/smarty3/ sota la carpeta principal de Friendica." + +#: src/Core/Installer.php:539 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Per favor, asegura que l'usuari que corre el servidor web (p.e. www-data) te accés d'escriptura a aquesta carpeta." + +#: src/Core/Installer.php:540 +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 "Nota: Com a mesura de seguretat, hauries de facilitar al servidor web, accés d'escriptura a view/smarty3/ excepte els fitxers de plantilles (.tpl) que conté." + +#: src/Core/Installer.php:543 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 es escribible" + +#: src/Core/Installer.php:571 +msgid "" +"Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" +"dist to .htaccess." +msgstr "" + +#: src/Core/Installer.php:572 +msgid "" +"In some circumstances (like running inside containers), you can skip this " +"error." +msgstr "" + +#: src/Core/Installer.php:574 +msgid "Error message from Curl when fetching" +msgstr "" + +#: src/Core/Installer.php:580 +msgid "Url rewrite is working" +msgstr "URL rewrite està treballant" + +#: src/Core/Installer.php:609 +msgid "" +"The detection of TLS to secure the communication between the browser and the" +" new Friendica server failed." +msgstr "" + +#: src/Core/Installer.php:610 +msgid "" +"It is highly encouraged to use Friendica only over a secure connection as " +"sensitive information like passwords will be transmitted." +msgstr "" + +#: src/Core/Installer.php:611 +msgid "Please ensure that the connection to the server is secure." +msgstr "" + +#: src/Core/Installer.php:612 +msgid "No TLS detected" +msgstr "" + +#: src/Core/Installer.php:614 +msgid "TLS detected" +msgstr "" + +#: src/Core/Installer.php:641 +msgid "ImageMagick PHP extension is not installed" +msgstr "" + +#: src/Core/Installer.php:643 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: src/Core/Installer.php:645 +msgid "ImageMagick supports GIF" +msgstr "" + +#: src/Core/Installer.php:667 +msgid "Database already in use." +msgstr "" + +#: src/Core/Installer.php:672 +msgid "Could not connect to database." +msgstr "No puc connectar a la base de dades." + +#: src/Core/L10n.php:476 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:235 +msgid "Monday" +msgstr "Dilluns" + +#: src/Core/L10n.php:476 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:236 +msgid "Tuesday" +msgstr "Dimarts" + +#: src/Core/L10n.php:476 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:237 +msgid "Wednesday" +msgstr "Dimecres" + +#: src/Core/L10n.php:476 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:238 +msgid "Thursday" +msgstr "Dijous" + +#: src/Core/L10n.php:476 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:239 +msgid "Friday" +msgstr "Divendres" + +#: src/Core/L10n.php:476 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:240 +msgid "Saturday" +msgstr "Dissabte" + +#: src/Core/L10n.php:476 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:234 +msgid "Sunday" +msgstr "Diumenge" + +#: src/Core/L10n.php:480 src/Model/Event.php:450 +msgid "January" +msgstr "Gener" + +#: src/Core/L10n.php:480 src/Model/Event.php:451 +msgid "February" +msgstr "Febrer" + +#: src/Core/L10n.php:480 src/Model/Event.php:452 +msgid "March" +msgstr "Març" + +#: src/Core/L10n.php:480 src/Model/Event.php:453 +msgid "April" +msgstr "Abril" + +#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441 +msgid "May" +msgstr "Maig" + +#: src/Core/L10n.php:480 src/Model/Event.php:454 +msgid "June" +msgstr "Juny" + +#: src/Core/L10n.php:480 src/Model/Event.php:455 +msgid "July" +msgstr "Juliol" + +#: src/Core/L10n.php:480 src/Model/Event.php:456 +msgid "August" +msgstr "Agost" + +#: src/Core/L10n.php:480 src/Model/Event.php:457 +msgid "September" +msgstr "Setembre" + +#: src/Core/L10n.php:480 src/Model/Event.php:458 +msgid "October" +msgstr "Octubre" + +#: src/Core/L10n.php:480 src/Model/Event.php:459 +msgid "November" +msgstr "Novembre" + +#: src/Core/L10n.php:480 src/Model/Event.php:460 +msgid "December" +msgstr "Desembre" + +#: src/Core/L10n.php:495 src/Model/Event.php:422 +msgid "Mon" +msgstr "Dl" + +#: src/Core/L10n.php:495 src/Model/Event.php:423 +msgid "Tue" +msgstr "Dt" + +#: src/Core/L10n.php:495 src/Model/Event.php:424 +msgid "Wed" +msgstr "Dc" + +#: src/Core/L10n.php:495 src/Model/Event.php:425 +msgid "Thu" +msgstr "Dj" + +#: src/Core/L10n.php:495 src/Model/Event.php:426 +msgid "Fri" +msgstr "Dv" + +#: src/Core/L10n.php:495 src/Model/Event.php:427 +msgid "Sat" +msgstr "Ds" + +#: src/Core/L10n.php:495 src/Model/Event.php:421 +msgid "Sun" +msgstr "Dg" + +#: src/Core/L10n.php:499 src/Model/Event.php:437 +msgid "Jan" +msgstr "Gen" + +#: src/Core/L10n.php:499 src/Model/Event.php:438 +msgid "Feb" +msgstr "Feb" + +#: src/Core/L10n.php:499 src/Model/Event.php:439 +msgid "Mar" +msgstr "Mar" + +#: src/Core/L10n.php:499 src/Model/Event.php:440 +msgid "Apr" +msgstr "Abr" + +#: src/Core/L10n.php:499 src/Model/Event.php:442 +msgid "Jun" +msgstr "Jun" + +#: src/Core/L10n.php:499 src/Model/Event.php:443 +msgid "Jul" +msgstr "Jul" + +#: src/Core/L10n.php:499 src/Model/Event.php:444 +msgid "Aug" +msgstr "Ago" + +#: src/Core/L10n.php:499 +msgid "Sep" +msgstr "Set" + +#: src/Core/L10n.php:499 src/Model/Event.php:446 +msgid "Oct" +msgstr "Oct" + +#: src/Core/L10n.php:499 src/Model/Event.php:447 +msgid "Nov" +msgstr "Nov" + +#: src/Core/L10n.php:499 src/Model/Event.php:448 +msgid "Dec" +msgstr "Des" + +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Core/Renderer.php:89 src/Core/Renderer.php:118 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 +msgid "" +"Friendica can't display this page at the moment, please contact the " +"administrator." +msgstr "" + +#: src/Core/Renderer.php:143 +msgid "template engine cannot be registered without a name." +msgstr "" + +#: src/Core/Renderer.php:177 +msgid "template engine is not registered!" +msgstr "" + +#: src/Core/Storage/Type/FilesystemConfig.php:78 +msgid "Storage base path" +msgstr "Ruta base d'emmagatzematge" + +#: src/Core/Storage/Type/FilesystemConfig.php:80 +msgid "" +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "Carpeta on es desen els fitxers penjats. Per a la màxima seguretat, aquest ha de ser un camí fora de l'arbre de carpetes del servidor web" + +#: src/Core/Storage/Type/FilesystemConfig.php:93 +msgid "Enter a valid existing folder" +msgstr "Introduïu una carpeta existent vàlida" + +#: src/Core/Update.php:80 +#, php-format +msgid "" +"Updates from version %s are not supported. Please update at least to version" +" 2021.01 and wait until the postupdate finished version 1383." +msgstr "" + +#: src/Core/Update.php:91 +#, php-format +msgid "" +"Updates from postupdate version %s are not supported. Please update at least" +" to version 2021.01 and wait until the postupdate finished version 1383." +msgstr "" + +#: src/Core/Update.php:183 +#, php-format +msgid "%s: executing pre update %d" +msgstr "" + +#: src/Core/Update.php:225 +#, php-format +msgid "%s: executing post update %d" +msgstr "" + +#: src/Core/Update.php:299 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Actualització de %s fracassà. Mira el registre d'errors." + +#: src/Core/Update.php:339 +#, 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\tEls desenvolupadors de Friendica van publicar l'actualització %s recentment\n\t\t\t\tperò, quan vaig intentar instal·lar-ho, alguna cosa va anar terriblement malament.\n\t\t\t\tAixò s'ha de solucionar aviat i no ho puc fer sol. Contacteu amb\n\t\t\t\tdesenvolupador amic si no em podeu ajudar pel vostre compte. És possible que la meva base de dades no sigui vàlida." + +#: src/Core/Update.php:345 +#, php-format +msgid "The error message is\\n[pre]%s[/pre]" +msgstr "" + +#: src/Core/Update.php:349 src/Core/Update.php:377 +msgid "[Friendica Notify] Database update" +msgstr "[Notificació Friendica] Actualització de la base de dades" + +#: src/Core/Update.php:371 +#, php-format +msgid "" +"\n" +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "" + +#: src/Database/DBStructure.php:57 +#, php-format +msgid "The database version had been set to %s." +msgstr "" + +#: src/Database/DBStructure.php:82 +#, 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:95 +msgid "No unused tables found." +msgstr "" + +#: src/Database/DBStructure.php:100 +msgid "" +"These tables are not used for friendica and will be deleted when you execute" +" \"dbstructure drop -e\":" +msgstr "" + +#: src/Database/DBStructure.php:137 +msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." +msgstr "" + +#: src/Database/DBStructure.php:161 +#, php-format +msgid "" +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "\nError %d es va produir durant l'actualització de la base de dades:\n%s\n" + +#: src/Database/DBStructure.php:164 +msgid "Errors encountered performing database changes: " +msgstr "S'han produït errors en realitzar canvis de base de dades:" + +#: src/Database/DBStructure.php:232 +msgid "Another database update is currently running." +msgstr "" + +#: src/Database/DBStructure.php:236 +#, php-format +msgid "%s: Database update" +msgstr "%s: Actualització de la base de dades" + +#: src/Database/DBStructure.php:493 +#, php-format +msgid "%s: updating %s table." +msgstr "%s: actualització %s taula." + +#: src/Factory/Api/Mastodon/Error.php:55 +msgid "Record not found" +msgstr "" + +#: src/Factory/Api/Mastodon/Error.php:65 +msgid "Unprocessable Entity" +msgstr "" + +#: src/Factory/Api/Mastodon/Error.php:75 +msgid "Unauthorized" +msgstr "" + +#: src/Factory/Api/Mastodon/Error.php:84 +msgid "" +"Token is not authorized with a valid user or is missing a required scope" +msgstr "" + +#: src/Factory/Api/Mastodon/Error.php:94 +msgid "Internal Server Error" +msgstr "" + +#: src/LegacyModule.php:63 +#, php-format +msgid "Legacy module file not found: %s" +msgstr "" + +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." +msgstr "" + +#: src/Model/Circle.php:543 +msgid "Everybody" +msgstr "Tothom" + +#: src/Model/Circle.php:562 +msgid "edit" +msgstr "editar" + +#: src/Model/Circle.php:599 +msgid "add" +msgstr "afegir" + +#: src/Model/Circle.php:604 +msgid "Edit circle" +msgstr "" + +#: src/Model/Circle.php:605 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "" + +#: src/Model/Circle.php:607 +msgid "Create a new circle" +msgstr "" + +#: src/Model/Circle.php:608 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "" + +#: src/Model/Circle.php:609 +msgid "Edit circles" +msgstr "" + +#: src/Model/Contact.php:1240 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 +msgid "Approve" +msgstr "Aprovar" + +#: src/Model/Contact.php:1694 +msgid "Organisation" +msgstr "" + +#: src/Model/Contact.php:1702 +msgid "Group" +msgstr "" + +#: src/Model/Contact.php:3005 +msgid "Disallowed profile URL." +msgstr "Perfil URL no permès." + +#: src/Model/Contact.php:3010 src/Module/Friendica.php:101 +msgid "Blocked domain" +msgstr "" + +#: src/Model/Contact.php:3015 +msgid "Connect URL missing." +msgstr "URL del connector perduda." + +#: src/Model/Contact.php:3024 +msgid "" +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "" + +#: src/Model/Contact.php:3042 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "" + +#: src/Model/Contact.php:3059 +msgid "The profile address specified does not provide adequate information." +msgstr "L'adreça de perfil especificada no proveeix informació adient." + +#: src/Model/Contact.php:3061 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Protocol de comunnicació no compatible o alimentador descobert." + +#: src/Model/Contact.php:3064 +msgid "An author or name was not found." +msgstr "Un autor o nom no va ser trobat" + +#: src/Model/Contact.php:3067 +msgid "No browser URL could be matched to this address." +msgstr "Cap direcció URL del navegador coincideix amb aquesta adreça." + +#: src/Model/Contact.php:3070 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Incapaç de trobar coincidències amb la Adreça d'Identitat estil @ amb els protocols coneguts o contactes de correu. " + +#: src/Model/Contact.php:3071 +msgid "Use mailto: in front of address to force email check." +msgstr "Emprar mailto: davant la adreça per a forçar la comprovació del correu." + +#: src/Model/Contact.php:3077 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "La direcció del perfil especificat pertany a una xarxa que ha estat desactivada en aquest lloc." + +#: src/Model/Contact.php:3082 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Perfil limitat. Aquesta persona no podrà rebre notificacions personals/directes de tu." + +#: src/Model/Contact.php:3148 +msgid "Unable to retrieve contact information." +msgstr "No es pot recuperar la informació de contacte." + +#: src/Model/Event.php:54 +msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" +msgstr "" + +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 +msgid "Starts:" +msgstr "Inici:" + +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 +msgid "Finishes:" +msgstr "Acaba:" + +#: src/Model/Event.php:419 +msgid "all-day" +msgstr "tot el dia" + +#: src/Model/Event.php:445 +msgid "Sept" +msgstr "Set" + +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "avui" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:245 src/Util/Temporal.php:353 +msgid "month" +msgstr "mes" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:246 src/Util/Temporal.php:354 +msgid "week" +msgstr "setmana" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:247 src/Util/Temporal.php:355 +msgid "day" +msgstr "dia" + +#: src/Model/Event.php:467 +msgid "No events to display" +msgstr "No hi ha esdeveniments per mostrar" + +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "L'accés a aquest perfil ha estat restringit." + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "" + +#: src/Model/Event.php:637 +msgid "l, F j" +msgstr "l, F j" + +#: src/Model/Event.php:664 +msgid "Edit event" +msgstr "Editar esdeveniment" + +#: src/Model/Event.php:665 +msgid "Duplicate event" +msgstr "Esdeveniment duplicat" + +#: src/Model/Event.php:666 +msgid "Delete event" +msgstr "Esborrar esdeveniment" + +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: src/Model/Event.php:897 +msgid "D g:i A" +msgstr "D g:i A" + +#: src/Model/Event.php:898 +msgid "g:i A" +msgstr "g:i A" + +#: src/Model/Event.php:964 src/Model/Event.php:966 +msgid "Show map" +msgstr "Mostra el mapa" + +#: src/Model/Event.php:965 +msgid "Hide map" +msgstr "Amaga el mapa" + +#: src/Model/Event.php:1058 +#, php-format +msgid "%s's birthday" +msgstr "%s aniversari" + +#: src/Model/Event.php:1059 +#, php-format +msgid "Happy Birthday %s" +msgstr "Feliç Aniversari %s" + +#: src/Model/Item.php:2062 +#, php-format +msgid "Detected languages in this post:\\n%s" +msgstr "" + +#: src/Model/Item.php:3007 msgid "activity" msgstr "activitat" -#: include/text.php:1808 mod/content.php:623 object/Item.php:431 -#: object/Item.php:444 +#: src/Model/Item.php:3009 msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "comentari" +msgstr "" -#: include/text.php:1809 +#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "missatge" -#: include/text.php:1977 -msgid "Item filed" -msgstr "Element arxivat" - -#: include/user.php:39 mod/settings.php:373 -msgid "Passwords do not match. Password unchanged." -msgstr "Les contrasenyes no coincideixen. Contrasenya no canviada." - -#: include/user.php:48 -msgid "An invitation is required." -msgstr "Es requereix invitació." - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "La invitació no ha pogut ser verificada." - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "OpenID url no vàlid" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "Per favor, introdueixi la informació requerida." - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "Per favor, empri un nom més curt." - -#: include/user.php:98 -msgid "Name too short." -msgstr "Nom massa curt." - -#: include/user.php:113 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Això no sembla ser el teu nom complet." - -#: include/user.php:118 -msgid "Your email domain is not among those allowed on this site." -msgstr "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc." - -#: include/user.php:121 -msgid "Not a valid email address." -msgstr "Adreça de correu no vàlida." - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "No es pot utilitzar aquest correu electrònic." - -#: include/user.php:140 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +#: src/Model/Item.php:3182 +#, php-format +msgid "%s is blocked" msgstr "" -#: include/user.php:147 include/user.php:245 -msgid "Nickname is already registered. Please choose another." -msgstr "àlies ja registrat. Tria un altre." +#: src/Model/Item.php:3184 +#, php-format +msgid "%s is ignored" +msgstr "" -#: include/user.php:157 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "L'àlies emprat ja està registrat alguna vegada i no es pot reutilitzar " +#: src/Model/Item.php:3186 +#, php-format +msgid "Content from %s is collapsed" +msgstr "" -#: include/user.php:173 +#: src/Model/Item.php:3190 +#, php-format +msgid "Content warning: %s" +msgstr "" + +#: src/Model/Item.php:3652 +msgid "bytes" +msgstr "bytes" + +#: src/Model/Item.php:3683 +#, php-format +msgid "%2$s (%3$d%%, %1$d vote)" +msgid_plural "%2$s (%3$d%%, %1$d votes)" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3685 +#, php-format +msgid "%2$s (%1$d vote)" +msgid_plural "%2$s (%1$d votes)" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3690 +#, php-format +msgid "%d voter. Poll end: %s" +msgid_plural "%d voters. Poll end: %s" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3692 +#, php-format +msgid "%d voter." +msgid_plural "%d voters." +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3694 +#, php-format +msgid "Poll end: %s" +msgstr "" + +#: src/Model/Item.php:3728 src/Model/Item.php:3729 +msgid "View on separate page" +msgstr "Veure en un altre pàgina" + +#: src/Model/Mail.php:137 src/Model/Mail.php:266 +msgid "[no subject]" +msgstr "[Sense assumpte]" + +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Fotos del Mur" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 +msgid "Edit profile" +msgstr "Editar perfil" + +#: src/Model/Profile.php:361 +msgid "Change profile photo" +msgstr "Canviar la foto del perfil" + +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 +msgid "Homepage:" +msgstr "Pàgina web:" + +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 +msgid "About:" +msgstr "Acerca de:" + +#: src/Model/Profile.php:465 +msgid "Atom feed" +msgstr "" + +#: src/Model/Profile.php:472 +msgid "This website has been verified to belong to the same person." +msgstr "" + +#: src/Model/Profile.php:509 +msgid "F d" +msgstr "F d" + +#: src/Model/Profile.php:573 src/Model/Profile.php:662 +msgid "[today]" +msgstr "[avui]" + +#: src/Model/Profile.php:582 +msgid "Birthday Reminders" +msgstr "Recordatori d'Aniversaris" + +#: src/Model/Profile.php:583 +msgid "Birthdays this week:" +msgstr "Aniversari aquesta setmana" + +#: src/Model/Profile.php:611 +msgid "g A l F d" +msgstr "g A l F d" + +#: src/Model/Profile.php:649 +msgid "[No description]" +msgstr "[sense descripció]" + +#: src/Model/Profile.php:675 +msgid "Event Reminders" +msgstr "Recordatori d'Esdeveniments" + +#: src/Model/Profile.php:676 +msgid "Upcoming events the next 7 days:" +msgstr "" + +#: src/Model/Profile.php:873 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" + +#: src/Model/Profile.php:1013 +msgid "Hometown:" +msgstr "Lloc de residència:" + +#: src/Model/Profile.php:1014 +msgid "Marital Status:" +msgstr "" + +#: src/Model/Profile.php:1015 +msgid "With:" +msgstr "" + +#: src/Model/Profile.php:1016 +msgid "Since:" +msgstr "" + +#: src/Model/Profile.php:1017 +msgid "Sexual Preference:" +msgstr "Preferència Sexual:" + +#: src/Model/Profile.php:1018 +msgid "Political Views:" +msgstr "Idees Polítiques:" + +#: src/Model/Profile.php:1019 +msgid "Religious Views:" +msgstr "Creencies Religioses:" + +#: src/Model/Profile.php:1020 +msgid "Likes:" +msgstr "Agrada:" + +#: src/Model/Profile.php:1021 +msgid "Dislikes:" +msgstr "No Agrada" + +#: src/Model/Profile.php:1022 +msgid "Title/Description:" +msgstr "Títol/Descripció:" + +#: src/Model/Profile.php:1023 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 +msgid "Summary" +msgstr "Sumari" + +#: src/Model/Profile.php:1024 +msgid "Musical interests" +msgstr "Gustos musicals" + +#: src/Model/Profile.php:1025 +msgid "Books, literature" +msgstr "Llibres, Literatura" + +#: src/Model/Profile.php:1026 +msgid "Television" +msgstr "Televisió" + +#: src/Model/Profile.php:1027 +msgid "Film/dance/culture/entertainment" +msgstr "Cinema/ball/cultura/entreteniments" + +#: src/Model/Profile.php:1028 +msgid "Hobbies/Interests" +msgstr "Aficions/Interessos" + +#: src/Model/Profile.php:1029 +msgid "Love/romance" +msgstr "Amor/sentiments" + +#: src/Model/Profile.php:1030 +msgid "Work/employment" +msgstr "Treball/ocupació" + +#: src/Model/Profile.php:1031 +msgid "School/education" +msgstr "Ensenyament/estudis" + +#: src/Model/Profile.php:1032 +msgid "Contact information and Social Networks" +msgstr "Informació de contacte i Xarxes Socials" + +#: src/Model/User.php:227 src/Model/User.php:1186 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERROR IMPORTANT: La generació de claus de seguretat ha fallat." -#: include/user.php:231 +#: src/Model/User.php:620 src/Model/User.php:653 +msgid "Login failed" +msgstr "" + +#: src/Model/User.php:685 +msgid "Not enough information to authenticate" +msgstr "" + +#: src/Model/User.php:806 +msgid "Password can't be empty" +msgstr "" + +#: src/Model/User.php:848 +msgid "Empty passwords are not allowed." +msgstr "" + +#: src/Model/User.php:852 +msgid "" +"The new password has been exposed in a public data dump, please choose " +"another." +msgstr "" + +#: src/Model/User.php:856 +msgid "The password length is limited to 72 characters." +msgstr "" + +#: src/Model/User.php:860 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "" + +#: src/Model/User.php:1069 +msgid "Passwords do not match. Password unchanged." +msgstr "Les contrasenyes no coincideixen. Contrasenya no canviada." + +#: src/Model/User.php:1076 +msgid "An invitation is required." +msgstr "Es requereix invitació." + +#: src/Model/User.php:1080 +msgid "Invitation could not be verified." +msgstr "La invitació no ha pogut ser verificada." + +#: src/Model/User.php:1088 +msgid "Invalid OpenID url" +msgstr "OpenID url no vàlid" + +#: src/Model/User.php:1101 src/Security/Authentication.php:241 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Em trobat un problema quan accedies amb la OpenID que has proporcionat. Per favor, revisa la cadena del ID." + +#: src/Model/User.php:1101 src/Security/Authentication.php:241 +msgid "The error message was:" +msgstr "El missatge d'error fou: " + +#: src/Model/User.php:1107 +msgid "Please enter the required information." +msgstr "Per favor, introdueixi la informació requerida." + +#: src/Model/User.php:1121 +#, 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:1128 +#, 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:1132 +#, 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:1140 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Això no sembla ser el teu nom complet." + +#: src/Model/User.php:1145 +msgid "Your email domain is not among those allowed on this site." +msgstr "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc." + +#: src/Model/User.php:1149 +msgid "Not a valid email address." +msgstr "Adreça de correu no vàlida." + +#: src/Model/User.php:1152 +msgid "The nickname was blocked from registration by the nodes admin." +msgstr "" + +#: src/Model/User.php:1156 src/Model/User.php:1162 +msgid "Cannot use that email." +msgstr "No es pot utilitzar aquest correu electrònic." + +#: src/Model/User.php:1168 +msgid "Your nickname can only contain a-z, 0-9 and _." +msgstr "" + +#: src/Model/User.php:1176 src/Model/User.php:1233 +msgid "Nickname is already registered. Please choose another." +msgstr "àlies ja registrat. Tria un altre." + +#: src/Model/User.php:1220 src/Model/User.php:1224 msgid "An error occurred during registration. Please try again." msgstr "Un error ha succeït durant el registre. Intenta-ho de nou." -#: include/user.php:256 view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "per defecte" - -#: include/user.php:266 +#: src/Model/User.php:1247 msgid "An error occurred creating your default profile. Please try again." msgstr "Un error ha succeit durant la creació del teu perfil per defecte. Intenta-ho de nou." -#: include/user.php:326 include/user.php:333 include/user.php:340 -#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 -#: mod/profile_photo.php:210 mod/profile_photo.php:302 -#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180 -#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232 -#: mod/photos.php:1819 +#: src/Model/User.php:1254 +msgid "An error occurred creating your self contact. Please try again." +msgstr "" + +#: src/Model/User.php:1259 +msgid "Friends" +msgstr "Amics/Amigues" + +#: src/Model/User.php:1263 +msgid "" +"An error occurred creating your default contact circle. Please try again." +msgstr "" + +#: src/Model/User.php:1307 msgid "Profile Photos" msgstr "Fotos del Perfil" -#: include/user.php:414 +#: src/Model/User.php:1487 #, php-format msgid "" "\n" "\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" -"\t" +"\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: include/user.php:424 -#, php-format -msgid "Registration at %s" -msgstr "" - -#: include/user.php:434 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "" - -#: include/user.php:438 +#: src/Model/User.php:1490 #, php-format msgid "" "\n" "\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\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" @@ -3077,4275 +3776,54 @@ msgid "" "\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/settings/removeme\n" "\n" -"\t\tThank you and welcome to %2$s." +"\t\tThank you and welcome to %4$s." msgstr "" -#: include/user.php:470 mod/admin.php:1213 +#: src/Model/User.php:1523 src/Model/User.php:1630 #, php-format msgid "Registration details for %s" msgstr "Detalls del registre per a %s" -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "Publicat amb éxit." - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Accés denegat." - -#: mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Benvingut a %s" - -#: mod/notify.php:60 -msgid "No more system notifications." -msgstr "No més notificacions del sistema." - -#: mod/notify.php:64 mod/notifications.php:111 -msgid "System Notifications" -msgstr "Notificacions del Sistema" - -#: mod/search.php:25 mod/network.php:191 -msgid "Remove term" -msgstr "Traieu termini" - -#: mod/search.php:93 mod/search.php:99 mod/community.php:22 -#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944 -#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35 -msgid "Public access denied." -msgstr "Accés públic denegat." - -#: mod/search.php:100 -msgid "Only logged in users are permitted to perform a search." -msgstr "" - -#: mod/search.php:124 -msgid "Too Many Requests" -msgstr "" - -#: mod/search.php:125 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "" - -#: mod/search.php:224 mod/community.php:66 mod/community.php:75 -msgid "No results." -msgstr "Sense resultats." - -#: mod/search.php:230 -#, php-format -msgid "Items tagged with: %s" -msgstr "" - -#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146 -#, php-format -msgid "Results for: %s" -msgstr "" - -#: mod/friendica.php:70 -msgid "This is Friendica, version" -msgstr "Això és Friendica, versió" - -#: mod/friendica.php:71 -msgid "running at web location" -msgstr "funcionant en la ubicació web" - -#: mod/friendica.php:73 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Si us plau, visiteu Friendica.com per obtenir més informació sobre el projecte Friendica." - -#: mod/friendica.php:75 -msgid "Bug reports and issues: please visit" -msgstr "Pels informes d'error i problemes: si us plau, visiteu" - -#: mod/friendica.php:75 -msgid "the bugtracker at github" -msgstr "" - -#: mod/friendica.php:76 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggeriments, elogis, donacions, etc si us plau escrigui a \"Info\" en Friendica - dot com" - -#: mod/friendica.php:90 -msgid "Installed plugins/addons/apps:" -msgstr "plugins/addons/apps instal·lats:" - -#: mod/friendica.php:103 -msgid "No installed plugins/addons/apps" -msgstr "plugins/addons/apps no instal·lats" - -#: mod/lostpass.php:19 -msgid "No valid account found." -msgstr "compte no vàlid trobat." - -#: mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Sol·licitut de restabliment de contrasenya enviat. Comprovi el seu correu." - -#: mod/lostpass.php:42 -#, 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.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "" - -#: mod/lostpass.php:53 -#, php-format -msgid "" -"\n" -"\t\tFollow this link 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 "" - -#: mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Contrasenya restablerta enviada a %s" - -#: mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La sol·licitut no pot ser verificada. (Hauries de presentar-la abans). Restabliment de contrasenya fracassat." - -#: mod/lostpass.php:109 boot.php:1807 -msgid "Password Reset" -msgstr "Restabliment de Contrasenya" - -#: mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "La teva contrasenya fou restablerta com vas demanar." - -#: mod/lostpass.php:111 -msgid "Your new password is" -msgstr "La teva nova contrasenya es" - -#: mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Guarda o copia la nova contrasenya - i llavors" - -#: mod/lostpass.php:113 -msgid "click here to login" -msgstr "clica aquí per identificarte" - -#: mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Pots camviar la contrasenya des de la pàgina de Configuración desprès d'accedir amb èxit." - -#: mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "" - -#: mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "" - -#: mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "La teva contrasenya ha estat canviada a %s" - -#: mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Has Oblidat la Contrasenya?" - -#: mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Introdueixi la seva adreça de correu i enivii-la per restablir la seva contrasenya. Llavors comprovi el seu correu per a les següents instruccións. " - -#: mod/lostpass.php:161 boot.php:1795 -msgid "Nickname or Email: " -msgstr "Àlies o Correu:" - -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "Restablir" - -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Sense perfil" - -#: mod/help.php:41 -msgid "Help:" -msgstr "Ajuda:" - -#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12 -#: mod/fetch.php:39 mod/fetch.php:48 index.php:288 -msgid "Not Found" -msgstr "No trobat" - -#: mod/help.php:56 index.php:291 -msgid "Page not found." -msgstr "Pàgina no trobada." - -#: mod/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informació de privacitat remota no disponible." - -#: mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visible per a:" - -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Error al protocol OpenID. No ha retornat ID." - -#: mod/openid.php:60 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Compte no trobat i el registrar-se amb OpenID no està permès en aquest lloc." - -#: mod/uimport.php:50 mod/register.php:198 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Aquest lloc excedeix el nombre diari de registres de comptes. Per favor, provi de nou demà." - -#: mod/uimport.php:64 mod/register.php:295 -msgid "Import" -msgstr "Importar" - -#: mod/uimport.php:66 -msgid "Move account" -msgstr "Moure el compte" - -#: mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Pots importar un compte d'un altre servidor Friendica" - -#: mod/uimport.php:68 -msgid "" -"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." -msgstr "Es necessari que exportis el teu compte de l'antic servidor i el pugis a aquest. Recrearem el teu antic compte aquí amb tots els teus contactes. Intentarem també informar als teus amics que t'has traslladat aquí." - -#: mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "" - -#: mod/uimport.php:70 -msgid "Account file" -msgstr "Arxiu del compte" - -#: mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" - -#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930 -#: mod/viewcontacts.php:97 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visitar perfil de %s [%s]" - -#: mod/nogroup.php:42 mod/contacts.php:931 -msgid "Edit contact" -msgstr "Editar contacte" - -#: mod/nogroup.php:63 -msgid "Contacts who are not members of a group" -msgstr "Contactes que no pertanyen a cap grup" - -#: mod/uexport.php:29 -msgid "Export account" -msgstr "Exportar compte" - -#: mod/uexport.php:29 -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 "Exportar la teva informació del compte i de contactes. Empra això per fer una còpia de seguretat del teu compte i/o moure'l cap altre servidor. " - -#: mod/uexport.php:30 -msgid "Export all" -msgstr "Exportar tot" - -#: mod/uexport.php:30 -msgid "" -"Export your accout 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 "Exportar la teva informació de compte, contactes i tots els teus articles com a json. Pot ser un fitxer molt gran, i pot trigar molt temps. Empra això per fer una còpia de seguretat total del teu compte (les fotos no s'exporten)" - -#: mod/uexport.php:37 mod/settings.php:95 -msgid "Export personal data" -msgstr "Exportar dades personals" - -#: mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limit d'invitacions excedit." - -#: mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : No es una adreça de correu vàlida" - -#: mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Per favor, uneixi's a nosaltres en Friendica" - -#: mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limit d'invitacions excedit. Per favor, Contacti amb l'administrador del lloc." - -#: mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Ha fallat l'entrega del missatge." - -#: mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d missatge enviat" -msgstr[1] "%d missatges enviats." - -#: mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "No te més invitacions disponibles" - -#: mod/invite.php:120 -#, 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 "Visita %s per a una llista de llocs públics on unir-te. Els membres de Friendica d'altres llocs poden connectar-se de forma total, així com amb membres de moltes altres xarxes socials." - -#: mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Per acceptar aquesta invitació, per favor visita i registra't a %s o en qualsevol altre pàgina web pública Friendica." - -#: mod/invite.php:123 -#, 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 "Tots els llocs Friendica estàn interconnectats per crear una web social amb privacitat millorada, controlada i propietat dels seus membres. També poden connectar amb moltes xarxes socials tradicionals. Consulteu %s per a una llista de llocs de Friendica alternatius en que pot inscriure's." - -#: mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Nostres disculpes. Aquest sistema no està configurat actualment per connectar amb altres llocs públics o convidar als membres." - -#: mod/invite.php:132 -msgid "Send invitations" -msgstr "Enviant Invitacions" - -#: mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Entri adreçes de correu, una per línia:" - -#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351 -#: mod/message.php:541 -msgid "Your message:" -msgstr "El teu missatge:" - -#: mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Estàs cordialment convidat a ajuntarte a mi i altres amics propers en Friendica - i ajudar-nos a crear una millor web social." - -#: mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Vostè haurà de proporcionar aquest codi d'invitació: $invite_code" - -#: mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Un cop registrat, si us plau contactar amb mi a través de la meva pàgina de perfil a:" - -#: mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Per a més informació sobre el projecte Friendica i perque creiem que això es important, per favor, visita http://friendica.com" - -#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357 -#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154 -#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199 -#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104 -#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590 -#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577 -#: mod/install.php:272 mod/install.php:312 object/Item.php:720 -#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64 -#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Enviar" - -#: mod/fbrowser.php:133 -msgid "Files" -msgstr "Arxius" - -#: mod/profperm.php:19 mod/group.php:72 index.php:400 -msgid "Permission denied" -msgstr "Permís denegat" - -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Identificador del perfil no vàlid." - -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "Editor de Visibilitat del Perfil" - -#: mod/profperm.php:106 mod/group.php:223 -msgid "Click on a contact to add or remove." -msgstr "Clicar sobre el contacte per afegir o esborrar." - -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "Visible Per" - -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Tots els Contactes (amb accés segur al perfil)" - -#: mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Etiqueta eliminada" - -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Esborrar etiqueta del element" - -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Selecciona etiqueta a esborrar:" - -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Esborrar" - -#: mod/repair_ostatus.php:14 -msgid "Resubscribing to OStatus contacts" -msgstr "" - -#: mod/repair_ostatus.php:30 -msgid "Error" -msgstr "" - -#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 -msgid "Done" -msgstr "" - -#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 -msgid "Keep this window open until done." -msgstr "" - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "No es troben pàgines potencialment delegades." - -#: mod/delegate.php:132 -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 "Els delegats poden gestionar tots els aspectes d'aquest compte/pàgina, excepte per als ajustaments bàsics del compte. Si us plau, no deleguin el seu compte personal a ningú que no confiïn completament." - -#: mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Actuals Administradors de Pàgina" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Actuals Delegats de Pàgina" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Delegats Potencials" - -#: mod/delegate.php:140 -msgid "Add" -msgstr "Afegir" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "Sense entrades" - -#: mod/credits.php:16 -msgid "Credits" -msgstr "" - -#: mod/credits.php:17 -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 "" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "- seleccionar -" - -#: mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s esta seguint %2$s de %3$s" - -#: mod/attach.php:8 -msgid "Item not available." -msgstr "Element no disponible" - -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "Element no trobat." - -#: mod/apps.php:7 index.php:244 -msgid "You must be logged in to use addons. " -msgstr "T'has d'identificar per emprar els complements" - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Aplicacions" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Aplicacions no instal·lades." - -#: mod/p.php:9 -msgid "Not Extended" -msgstr "" - -#: mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Benvingut a Friendica" - -#: mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Llista de Verificació dels Nous Membres" - -#: mod/newmember.php:12 -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 "Ens agradaria oferir alguns consells i enllaços per ajudar a fer la teva experiència agradable. Feu clic a qualsevol element per visitar la pàgina corresponent. Un enllaç a aquesta pàgina serà visible des de la pàgina d'inici durant dues setmanes després de la teva inscripció inicial i després desapareixerà en silenci." - -#: mod/newmember.php:14 -msgid "Getting Started" -msgstr "Començem" - -#: mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Paseja per Friendica" - -#: mod/newmember.php:18 -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 la teva pàgina de Inici Ràpid - troba una breu presentació per les teves fitxes de perfil i xarxa, crea alguna nova connexió i troba algun grup per unir-te." - -#: mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Anar als Teus Ajustos" - -#: mod/newmember.php:26 -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 "En la de la seva configuració de la pàgina - canviï la contrasenya inicial. També prengui nota de la Adreça d'Identitat. Això s'assembla a una adreça de correu electrònic - i serà útil per fer amics a la xarxa social lliure." - -#: mod/newmember.php:28 -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 "Reviseu les altres configuracions, en particular la configuració de privadesa. Una llista de directoris no publicada és com tenir un número de telèfon no llistat. Normalment, hauria de publicar la seva llista - a menys que tots els seus amics i els amics potencials sàpiguen exactament com trobar-li." - -#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707 -msgid "Upload Profile Photo" -msgstr "Pujar Foto del Perfil" - -#: mod/newmember.php:36 -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 "Puji una foto del seu perfil si encara no ho ha fet. Els estudis han demostrat que les persones amb fotos reals de ells mateixos tenen deu vegades més probabilitats de fer amics que les persones que no ho fan." - -#: mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Editar el Teu Perfil" - -#: mod/newmember.php:38 -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 "Editi el perfil per defecte al seu gust. Reviseu la configuració per ocultar la seva llista d'amics i ocultar el perfil dels visitants desconeguts." - -#: mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Paraules clau del Perfil" - -#: mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Estableix algunes paraules clau públiques al teu perfil predeterminat que descriguin els teus interessos. Podem ser capaços de trobar altres persones amb interessos similars i suggerir amistats." - -#: mod/newmember.php:44 -msgid "Connecting" -msgstr "Connectant" - -#: mod/newmember.php:51 -msgid "Importing Emails" -msgstr "Important Emails" - -#: mod/newmember.php:51 -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 "Introduïu les dades d'accés al correu electrònic a la seva pàgina de configuració de connector, si es desitja importar i relacionar-se amb amics o llistes de correu de la seva bústia d'email" - -#: mod/newmember.php:53 -msgid "Go to Your Contacts Page" -msgstr "Anar a la Teva Pàgina de Contactes" - -#: mod/newmember.php:53 -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 "La seva pàgina de Contactes és la seva porta d'entrada a la gestió de l'amistat i la connexió amb amics d'altres xarxes. Normalment, vostè entrar en la seva direcció o URL del lloc al diàleg Afegir Nou Contacte." - -#: mod/newmember.php:55 -msgid "Go to Your Site's Directory" -msgstr "Anar al Teu Directori" - -#: mod/newmember.php:55 -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 "La pàgina del Directori li permet trobar altres persones en aquesta xarxa o altres llocs federats. Busqui un enllaç Connectar o Seguir a la seva pàgina de perfil. Proporcioni la seva pròpia Adreça de Identitat si així ho sol·licita." - -#: mod/newmember.php:57 -msgid "Finding New People" -msgstr "Trobar Gent Nova" - -#: mod/newmember.php:57 -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 "Al tauler lateral de la pàgina de contacte Hi ha diverses eines per trobar nous amics. Podem coincidir amb les persones per interesos, buscar persones pel nom o per interès, i oferir suggeriments basats en les relacions de la xarxa. En un nou lloc, els suggeriments d'amics, en general comencen a poblar el lloc a les 24 hores." - -#: mod/newmember.php:65 -msgid "Group Your Contacts" -msgstr "Agrupar els Teus Contactes" - -#: mod/newmember.php:65 -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 "Una vegada que s'han fet alguns amics, organitzi'ls en grups de conversa privada a la barra lateral de la seva pàgina de contactes i després pot interactuar amb cada grup de forma privada a la pàgina de la xarxa." - -#: mod/newmember.php:68 -msgid "Why Aren't My Posts Public?" -msgstr "Per que no es public el meu enviament?" - -#: mod/newmember.php:68 -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 "Friendica respecta la teva privacitat. Per defecte, els teus enviaments només s'envien a gent que has afegit com a amic. Per més informació, mira la secció d'ajuda des de l'enllaç de dalt." - -#: mod/newmember.php:73 -msgid "Getting Help" -msgstr "Demanant Ajuda" - -#: mod/newmember.php:77 -msgid "Go to the Help Section" -msgstr "Anar a la secció d'Ajuda" - -#: mod/newmember.php:77 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "A les nostres pàgines d'ajuda es poden consultar detalls sobre les característiques d'altres programes i recursos." - -#: mod/removeme.php:46 mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Eliminar el Meu Compte" - -#: mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Això eliminarà per complet el seu compte. Quan s'hagi fet això, no serà recuperable." - -#: mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Si us plau, introduïu la contrasenya per a la verificació:" - -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "Element no trobat" - -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "Editar Enviament" - -#: mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Temps de Conversió" - -#: mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica ofereix aquest servei per a compartir esdeveniments amb d'altres xarxes i amics en zones horaries que son desconegudes" - -#: mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "hora UTC: %s" - -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Zona horària actual: %s" - -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Conversión de hora local: %s" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Si us plau, seleccioneu la vostra zona horària:" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "" - -#: mod/group.php:29 -msgid "Group created." -msgstr "Grup creat." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "No puc crear grup." - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "Grup no trobat" - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "Nom de Grup canviat." - -#: mod/group.php:87 -msgid "Save Group" -msgstr "" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Crear un grup de contactes/amics." - -#: mod/group.php:113 -msgid "Group removed." -msgstr "Grup esborrat." - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "Incapaç de esborrar Grup." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Editor de Grup:" - -#: mod/group.php:190 -msgid "Members" -msgstr "Membres" - -#: mod/group.php:192 mod/contacts.php:692 -msgid "All Contacts" -msgstr "Tots els Contactes" - -#: mod/group.php:193 mod/content.php:130 mod/network.php:496 -msgid "Group is empty" -msgstr "El Grup es buit" - -#: mod/wallmessage.php:42 mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Nombre diari de missatges al mur per %s excedit. El missatge ha fallat." - -#: mod/wallmessage.php:56 mod/message.php:71 -msgid "No recipient selected." -msgstr "No s'ha seleccionat destinatari." - -#: mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Incapaç de comprovar la localització." - -#: mod/wallmessage.php:62 mod/message.php:78 -msgid "Message could not be sent." -msgstr "El Missatge no ha estat enviat." - -#: mod/wallmessage.php:65 mod/message.php:81 -msgid "Message collection failure." -msgstr "Ha fallat la recollida del missatge." - -#: mod/wallmessage.php:68 mod/message.php:84 -msgid "Message sent." -msgstr "Missatge enviat." - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Sense destinatari." - -#: mod/wallmessage.php:142 mod/message.php:341 -msgid "Send Private Message" -msgstr "Enviant Missatge Privat" - -#: 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 "si vols respondre a %s, comprova que els ajustos de privacitat del lloc permeten correus privats de remitents desconeguts." - -#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536 -msgid "To:" -msgstr "Per a:" - -#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 -msgid "Subject:" -msgstr "Assumpte::" - -#: mod/share.php:38 -msgid "link" -msgstr "enllaç" - -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autoritzi la connexió de aplicacions" - -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torni a la seva aplicació i inserti aquest Codi de Seguretat:" - -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "Per favor, accedeixi per a continuar." - -#: mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vol autoritzar a aquesta aplicació per accedir als teus missatges i contactes, i/o crear nous enviaments per a vostè?" - -#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652 -#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163 -#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 -#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 -#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 -#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 -#: mod/dfrn_request.php:862 mod/follow.php:110 -msgid "No" -msgstr "No" - -#: mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Text Codi (bbcode): " - -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Font (Diaspora) Convertir text a BBcode" - -#: mod/babel.php:31 -msgid "Source input: " -msgstr "Entrada de Codi:" - -#: mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (raw HTML): " - -#: mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " - -#: mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Font d'entrada (format de Diaspora)" - -#: mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: mod/ostatus_subscribe.php:14 -msgid "Subscribing to OStatus contacts" -msgstr "" - -#: mod/ostatus_subscribe.php:25 -msgid "No contact provided." -msgstr "" - -#: mod/ostatus_subscribe.php:30 -msgid "Couldn't fetch information for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:38 -msgid "Couldn't fetch friends for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:65 -msgid "success" -msgstr "" - -#: mod/ostatus_subscribe.php:67 -msgid "failed" -msgstr "" - -#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245 -msgid "ignored" -msgstr "" - -#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s benvingut %2$s" - -#: mod/message.php:75 -msgid "Unable to locate contact information." -msgstr "No es pot trobar informació de contacte." - -#: mod/message.php:215 -msgid "Do you really want to delete this message?" -msgstr "Realment vols esborrar aquest missatge?" - -#: mod/message.php:235 -msgid "Message deleted." -msgstr "Missatge eliminat." - -#: mod/message.php:266 -msgid "Conversation removed." -msgstr "Conversació esborrada." - -#: mod/message.php:383 -msgid "No messages." -msgstr "Sense missatges." - -#: mod/message.php:426 -msgid "Message not available." -msgstr "Missatge no disponible." - -#: mod/message.php:503 -msgid "Delete message" -msgstr "Esborra missatge" - -#: mod/message.php:529 mod/message.php:609 -msgid "Delete conversation" -msgstr "Esborrar conversació" - -#: mod/message.php:531 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Comunicacions degures no disponibles. Tú pots respondre des de la pàgina de perfil del remitent." - -#: mod/message.php:535 -msgid "Send Reply" -msgstr "Enviar Resposta" - -#: mod/message.php:579 -#, php-format -msgid "Unknown sender - %s" -msgstr "remitent desconegut - %s" - -#: mod/message.php:581 -#, php-format -msgid "You and %s" -msgstr "Tu i %s" - -#: mod/message.php:583 -#, php-format -msgid "%s and You" -msgstr "%s i Tu" - -#: mod/message.php:612 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: mod/message.php:615 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d missatge" -msgstr[1] "%d missatges" - -#: mod/manage.php:139 -msgid "Manage Identities and/or Pages" -msgstr "Administrar Identitats i/o Pàgines" - -#: mod/manage.php:140 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Alternar entre les diferents identitats o les pàgines de comunitats/grups que comparteixen les dades del seu compte o que se li ha concedit els permisos de \"administrar\"" - -#: mod/manage.php:141 -msgid "Select an identity to manage: " -msgstr "Seleccionar identitat a administrar:" - -#: mod/crepair.php:87 -msgid "Contact settings applied." -msgstr "Ajustos de Contacte aplicats." - -#: mod/crepair.php:89 -msgid "Contact update failed." -msgstr "Fracassà l'actualització de Contacte" - -#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/dfrn_confirm.php:126 -msgid "Contact not found." -msgstr "Contacte no trobat" - -#: mod/crepair.php:120 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ADVERTÈNCIA: Això és molt avançat i si s'introdueix informació incorrecta la seva comunicació amb aquest contacte pot deixar de funcionar." - -#: mod/crepair.php:121 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Si us plau, prem el botó 'Tornar' ara si no saps segur que has de fer aqui." - -#: mod/crepair.php:134 mod/crepair.php:136 -msgid "No mirroring" -msgstr "" - -#: mod/crepair.php:134 -msgid "Mirror as forwarded posting" -msgstr "" - -#: mod/crepair.php:134 mod/crepair.php:136 -msgid "Mirror as my own posting" -msgstr "" - -#: mod/crepair.php:150 -msgid "Return to contact editor" -msgstr "Tornar al editor de contactes" - -#: mod/crepair.php:152 -msgid "Refetch contact data" -msgstr "" - -#: mod/crepair.php:156 -msgid "Remote Self" -msgstr "" - -#: mod/crepair.php:159 -msgid "Mirror postings from this contact" -msgstr "" - -#: mod/crepair.php:161 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - -#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706 -#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438 -msgid "Name" -msgstr "Nom" - -#: mod/crepair.php:166 -msgid "Account Nickname" -msgstr "Àlies del Compte" - -#: mod/crepair.php:167 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - té prel·lació sobre Nom/Àlies" - -#: mod/crepair.php:168 -msgid "Account URL" -msgstr "Adreça URL del Compte" - -#: mod/crepair.php:169 -msgid "Friend Request URL" -msgstr "Adreça URL de sol·licitud d'Amistat" - -#: mod/crepair.php:170 -msgid "Friend Confirm URL" -msgstr "Adreça URL de confirmació d'Amic" - -#: mod/crepair.php:171 -msgid "Notification Endpoint URL" -msgstr "Adreça URL de Notificació" - -#: mod/crepair.php:172 -msgid "Poll/Feed URL" -msgstr "Adreça de Enquesta/Alimentador" - -#: mod/crepair.php:173 -msgid "New photo from this URL" -msgstr "Nova foto d'aquesta URL" - -#: mod/content.php:119 mod/network.php:469 -msgid "No such group" -msgstr "Cap grup com" - -#: mod/content.php:135 mod/network.php:500 -#, php-format -msgid "Group: %s" -msgstr "" - -#: mod/content.php:325 object/Item.php:95 -msgid "This entry was edited" -msgstr "L'entrada fou editada" - -#: mod/content.php:621 object/Item.php:429 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentari" -msgstr[1] "%d comentaris" - -#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117 -msgid "Private Message" -msgstr "Missatge Privat" - -#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263 -msgid "I like this (toggle)" -msgstr "M'agrada això (canviar)" - -#: mod/content.php:702 object/Item.php:263 -msgid "like" -msgstr "Agrada" - -#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264 -msgid "I don't like this (toggle)" -msgstr "No m'agrada això (canviar)" - -#: mod/content.php:703 object/Item.php:264 -msgid "dislike" -msgstr "Desagrada" - -#: mod/content.php:705 object/Item.php:266 -msgid "Share this" -msgstr "Compartir això" - -#: mod/content.php:705 object/Item.php:266 -msgid "share" -msgstr "Compartir" - -#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635 -#: mod/photos.php:1721 object/Item.php:717 -msgid "This is you" -msgstr "Aquest ets tu" - -#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589 -#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403 -#: object/Item.php:719 boot.php:971 -msgid "Comment" -msgstr "Comentari" - -#: mod/content.php:729 object/Item.php:721 -msgid "Bold" -msgstr "Negreta" - -#: mod/content.php:730 object/Item.php:722 -msgid "Italic" -msgstr "Itallica" - -#: mod/content.php:731 object/Item.php:723 -msgid "Underline" -msgstr "Subratllat" - -#: mod/content.php:732 object/Item.php:724 -msgid "Quote" -msgstr "Cometes" - -#: mod/content.php:733 object/Item.php:725 -msgid "Code" -msgstr "Codi" - -#: mod/content.php:734 object/Item.php:726 -msgid "Image" -msgstr "Imatge" - -#: mod/content.php:735 object/Item.php:727 -msgid "Link" -msgstr "Enllaç" - -#: mod/content.php:736 object/Item.php:728 -msgid "Video" -msgstr "Video" - -#: mod/content.php:746 mod/settings.php:740 object/Item.php:122 -#: object/Item.php:124 -msgid "Edit" -msgstr "Editar" - -#: mod/content.php:771 object/Item.php:227 -msgid "add star" -msgstr "Afegir a favorits" - -#: mod/content.php:772 object/Item.php:228 -msgid "remove star" -msgstr "Esborrar favorit" - -#: mod/content.php:773 object/Item.php:229 -msgid "toggle star status" -msgstr "Canviar estatus de favorit" - -#: mod/content.php:776 object/Item.php:232 -msgid "starred" -msgstr "favorit" - -#: mod/content.php:777 mod/content.php:798 object/Item.php:252 -msgid "add tag" -msgstr "afegir etiqueta" - -#: mod/content.php:787 object/Item.php:240 -msgid "ignore thread" -msgstr "" - -#: mod/content.php:788 object/Item.php:241 -msgid "unignore thread" -msgstr "" - -#: mod/content.php:789 object/Item.php:242 -msgid "toggle ignore status" -msgstr "" - -#: mod/content.php:803 object/Item.php:137 -msgid "save to folder" -msgstr "guardat a la carpeta" - -#: mod/content.php:848 object/Item.php:201 -msgid "I will attend" -msgstr "" - -#: mod/content.php:848 object/Item.php:201 -msgid "I will not attend" -msgstr "" - -#: mod/content.php:848 object/Item.php:201 -msgid "I might attend" -msgstr "" - -#: mod/content.php:912 object/Item.php:369 -msgid "to" -msgstr "a" - -#: mod/content.php:913 object/Item.php:371 -msgid "Wall-to-Wall" -msgstr "Mur-a-Mur" - -#: mod/content.php:914 object/Item.php:372 -msgid "via Wall-To-Wall:" -msgstr "via Mur-a-Mur" - -#: mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Enviat suggeriment d'amic." - -#: mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerir Amics" - -#: mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerir un amic per a %s" - -#: mod/mood.php:133 -msgid "Mood" -msgstr "Humor" - -#: mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Ajusta el teu actual estat d'ànim i comenta-ho als amics" - -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Atia/Punxa" - -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "Atiar, punxar o fer altres coses a algú" - -#: mod/poke.php:194 -msgid "Recipient" -msgstr "Recipient" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Tria que vols fer amb el contenidor" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Fes aquest missatge privat" - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Imatge pujada però no es va poder retallar." - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:314 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "La reducció de la imatge [%s] va fracassar." - -#: mod/profile_photo.php:124 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Recarregui la pàgina o netegi la caché del navegador si la nova foto no apareix immediatament." - -#: mod/profile_photo.php:134 -msgid "Unable to process image" -msgstr "No es pot processar la imatge" - -#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "" - -#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188 -msgid "Unable to process image." -msgstr "Incapaç de processar la imatge." - -#: mod/profile_photo.php:248 -msgid "Upload File:" -msgstr "Pujar arxiu:" - -#: mod/profile_photo.php:249 -msgid "Select a profile:" -msgstr "Tria un perfil:" - -#: mod/profile_photo.php:251 -msgid "Upload" -msgstr "Pujar" - -#: mod/profile_photo.php:254 -msgid "or" -msgstr "o" - -#: mod/profile_photo.php:254 -msgid "skip this step" -msgstr "saltar aquest pas" - -#: mod/profile_photo.php:254 -msgid "select a photo from your photo albums" -msgstr "tria una foto dels teus àlbums" - -#: mod/profile_photo.php:268 -msgid "Crop Image" -msgstr "retallar imatge" - -#: mod/profile_photo.php:269 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Per favor, ajusta la retallada d'imatge per a una optima visualització." - -#: mod/profile_photo.php:271 -msgid "Done Editing" -msgstr "Edició Feta" - -#: mod/profile_photo.php:305 -msgid "Image uploaded successfully." -msgstr "Carregada de la imatge amb èxit." - -#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221 -msgid "Image upload failed." -msgstr "Actualització de la imatge fracassada." - -#: mod/regmod.php:55 -msgid "Account approved." -msgstr "Compte aprovat." - -#: mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "Procés de Registre revocat per a %s" - -#: mod/regmod.php:104 -msgid "Please login." -msgstr "Si us plau, ingressa." - -#: mod/notifications.php:35 -msgid "Invalid request identifier." -msgstr "Sol·licitud d'identificació no vàlida." - -#: mod/notifications.php:44 mod/notifications.php:180 -#: mod/notifications.php:252 -msgid "Discard" -msgstr "Descartar" - -#: mod/notifications.php:60 mod/notifications.php:179 -#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806 -#: mod/contacts.php:991 -msgid "Ignore" -msgstr "Ignorar" - -#: mod/notifications.php:105 -msgid "Network Notifications" -msgstr "Notificacions de la Xarxa" - -#: mod/notifications.php:117 -msgid "Personal Notifications" -msgstr "Notificacions Personals" - -#: mod/notifications.php:123 -msgid "Home Notifications" -msgstr "Notificacions d'Inici" - -#: mod/notifications.php:152 -msgid "Show Ignored Requests" -msgstr "Mostra les Sol·licituds Ignorades" - -#: mod/notifications.php:152 -msgid "Hide Ignored Requests" -msgstr "Amaga les Sol·licituds Ignorades" - -#: mod/notifications.php:164 mod/notifications.php:222 -msgid "Notification type: " -msgstr "Tipus de Notificació:" - -#: mod/notifications.php:167 -#, php-format -msgid "suggested by %s" -msgstr "sugerit per %s" - -#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613 -msgid "Hide this contact from others" -msgstr "Amaga aquest contacte dels altres" - -#: mod/notifications.php:173 mod/notifications.php:240 -msgid "Post a new friend activity" -msgstr "Publica una activitat d'amic nova" - -#: mod/notifications.php:173 mod/notifications.php:240 -msgid "if applicable" -msgstr "si es pot aplicar" - -#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412 -msgid "Approve" -msgstr "Aprovar" - -#: mod/notifications.php:195 -msgid "Claims to be known to you: " -msgstr "Diu que et coneix:" - -#: mod/notifications.php:196 -msgid "yes" -msgstr "sí" - -#: mod/notifications.php:196 -msgid "no" -msgstr "no" - -#: mod/notifications.php:197 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " -msgstr "" - -#: mod/notifications.php:200 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "" - -#: mod/notifications.php:209 -msgid "Friend" -msgstr "Amic" - -#: mod/notifications.php:210 -msgid "Sharer" -msgstr "Partícip" - -#: mod/notifications.php:210 -msgid "Fan/Admirer" -msgstr "Fan/Admirador" - -#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126 -msgid "Profile URL" -msgstr "" - -#: mod/notifications.php:260 -msgid "No introductions." -msgstr "Sense presentacions." - -#: mod/notifications.php:299 -msgid "Show unread" -msgstr "" - -#: mod/notifications.php:299 -msgid "Show all" -msgstr "" - -#: mod/notifications.php:305 -#, php-format -msgid "No more %s notifications." -msgstr "" - -#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180 -#: mod/profiles.php:617 mod/dfrn_confirm.php:70 -msgid "Profile not found." -msgstr "Perfil no trobat." - -#: mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Perfil esborrat." - -#: mod/profiles.php:56 mod/profiles.php:90 -msgid "Profile-" -msgstr "Perfil-" - -#: mod/profiles.php:75 mod/profiles.php:118 -msgid "New profile created." -msgstr "Nou perfil creat." - -#: mod/profiles.php:96 -msgid "Profile unavailable to clone." -msgstr "No es pot clonar el perfil." - -#: mod/profiles.php:190 -msgid "Profile Name is required." -msgstr "Nom de perfil requerit." - -#: mod/profiles.php:338 -msgid "Marital Status" -msgstr "Estatus Marital" - -#: mod/profiles.php:342 -msgid "Romantic Partner" -msgstr "Soci Romàntic" - -#: mod/profiles.php:354 -msgid "Work/Employment" -msgstr "Treball/Ocupació" - -#: mod/profiles.php:357 -msgid "Religion" -msgstr "Religió" - -#: mod/profiles.php:361 -msgid "Political Views" -msgstr "Idees Polítiques" - -#: mod/profiles.php:365 -msgid "Gender" -msgstr "Gènere" - -#: mod/profiles.php:369 -msgid "Sexual Preference" -msgstr "Preferència sexual" - -#: mod/profiles.php:373 -msgid "XMPP" -msgstr "" - -#: mod/profiles.php:377 -msgid "Homepage" -msgstr "Inici" - -#: mod/profiles.php:381 mod/profiles.php:702 -msgid "Interests" -msgstr "Interesos" - -#: mod/profiles.php:385 -msgid "Address" -msgstr "Adreça" - -#: mod/profiles.php:392 mod/profiles.php:698 -msgid "Location" -msgstr "Ubicació" - -#: mod/profiles.php:477 -msgid "Profile updated." -msgstr "Perfil actualitzat." - -#: mod/profiles.php:564 -msgid " and " -msgstr " i " - -#: mod/profiles.php:572 -msgid "public profile" -msgstr "perfil públic" - -#: mod/profiles.php:575 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s s'ha canviat de %2$s a “%3$s”" - -#: mod/profiles.php:576 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Visita %1$s de %2$s" - -#: mod/profiles.php:579 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s te una actualització %2$s, canviant %3$s." - -#: mod/profiles.php:645 -msgid "Hide contacts and friends:" -msgstr "" - -#: mod/profiles.php:650 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Amaga la llista de contactes/amics en la vista d'aquest perfil?" - -#: mod/profiles.php:674 -msgid "Show more profile fields:" -msgstr "" - -#: mod/profiles.php:686 -msgid "Profile Actions" -msgstr "" - -#: mod/profiles.php:687 -msgid "Edit Profile Details" -msgstr "Editor de Detalls del Perfil" - -#: mod/profiles.php:689 -msgid "Change Profile Photo" -msgstr "Canviar la Foto del Perfil" - -#: mod/profiles.php:690 -msgid "View this profile" -msgstr "Veure aquest perfil" - -#: mod/profiles.php:692 -msgid "Create a new profile using these settings" -msgstr "Crear un nou perfil amb aquests ajustos" - -#: mod/profiles.php:693 -msgid "Clone this profile" -msgstr "Clonar aquest perfil" - -#: mod/profiles.php:694 -msgid "Delete this profile" -msgstr "Esborrar aquest perfil" - -#: mod/profiles.php:696 -msgid "Basic information" -msgstr "" - -#: mod/profiles.php:697 -msgid "Profile picture" -msgstr "" - -#: mod/profiles.php:699 -msgid "Preferences" -msgstr "" - -#: mod/profiles.php:700 -msgid "Status information" -msgstr "" - -#: mod/profiles.php:701 -msgid "Additional information" -msgstr "" - -#: mod/profiles.php:704 -msgid "Relation" -msgstr "" - -#: mod/profiles.php:708 -msgid "Your Gender:" -msgstr "Gènere:" - -#: mod/profiles.php:709 -msgid " Marital Status:" -msgstr " Estat Civil:" - -#: mod/profiles.php:711 -msgid "Example: fishing photography software" -msgstr "Exemple: pesca fotografia programari" - -#: mod/profiles.php:716 -msgid "Profile Name:" -msgstr "Nom de Perfil:" - -#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496 -msgid "Required" -msgstr "Requerit" - -#: mod/profiles.php:718 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "Aquest és el teu perfil públic.
    El qual pot ser visible per qualsevol qui faci servir Internet." - -#: mod/profiles.php:719 -msgid "Your Full Name:" -msgstr "El Teu Nom Complet." - -#: mod/profiles.php:720 -msgid "Title/Description:" -msgstr "Títol/Descripció:" - -#: mod/profiles.php:723 -msgid "Street Address:" -msgstr "Direcció:" - -#: mod/profiles.php:724 -msgid "Locality/City:" -msgstr "Localitat/Ciutat:" - -#: mod/profiles.php:725 -msgid "Region/State:" -msgstr "Regió/Estat:" - -#: mod/profiles.php:726 -msgid "Postal/Zip Code:" -msgstr "Codi Postal:" - -#: mod/profiles.php:727 -msgid "Country:" -msgstr "País" - -#: mod/profiles.php:731 -msgid "Who: (if applicable)" -msgstr "Qui? (si és aplicable)" - -#: mod/profiles.php:731 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" - -#: mod/profiles.php:732 -msgid "Since [date]:" -msgstr "Des de [data]" - -#: mod/profiles.php:734 -msgid "Tell us about yourself..." -msgstr "Parla'ns de tú....." - -#: mod/profiles.php:735 -msgid "XMPP (Jabber) address:" -msgstr "" - -#: mod/profiles.php:735 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." -msgstr "" - -#: mod/profiles.php:736 -msgid "Homepage URL:" -msgstr "Pàgina web URL:" - -#: mod/profiles.php:739 -msgid "Religious Views:" -msgstr "Creencies Religioses:" - -#: mod/profiles.php:740 -msgid "Public Keywords:" -msgstr "Paraules Clau Públiques" - -#: mod/profiles.php:740 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Emprat per suggerir potencials amics, Altres poden veure-ho)" - -#: mod/profiles.php:741 -msgid "Private Keywords:" -msgstr "Paraules Clau Privades:" - -#: mod/profiles.php:741 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Emprat durant la cerca de perfils, mai mostrat a ningú)" - -#: mod/profiles.php:744 -msgid "Musical interests" -msgstr "Gustos musicals" - -#: mod/profiles.php:745 -msgid "Books, literature" -msgstr "Llibres, Literatura" - -#: mod/profiles.php:746 -msgid "Television" -msgstr "Televisió" - -#: mod/profiles.php:747 -msgid "Film/dance/culture/entertainment" -msgstr "Cinema/ball/cultura/entreteniments" - -#: mod/profiles.php:748 -msgid "Hobbies/Interests" -msgstr "Aficions/Interessos" - -#: mod/profiles.php:749 -msgid "Love/romance" -msgstr "Amor/sentiments" - -#: mod/profiles.php:750 -msgid "Work/employment" -msgstr "Treball/ocupació" - -#: mod/profiles.php:751 -msgid "School/education" -msgstr "Ensenyament/estudis" - -#: mod/profiles.php:752 -msgid "Contact information and Social Networks" -msgstr "Informació de contacte i Xarxes Socials" - -#: mod/profiles.php:794 -msgid "Edit/Manage Profiles" -msgstr "Editar/Gestionar Perfils" - -#: mod/allfriends.php:43 -msgid "No friends to display." -msgstr "No hi ha amics que mostrar" - -#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "L'accés a aquest perfil ha estat restringit." - -#: mod/cal.php:276 mod/events.php:380 -msgid "View" -msgstr "" - -#: mod/cal.php:277 mod/events.php:382 -msgid "Previous" -msgstr "Previ" - -#: mod/cal.php:278 mod/events.php:383 mod/install.php:231 -msgid "Next" -msgstr "Següent" - -#: mod/cal.php:287 mod/events.php:392 -msgid "list" -msgstr "" - -#: mod/cal.php:297 -msgid "User not found" -msgstr "" - -#: mod/cal.php:313 -msgid "This calendar format is not supported" -msgstr "" - -#: mod/cal.php:315 -msgid "No exportable data found" -msgstr "" - -#: mod/cal.php:330 -msgid "calendar" -msgstr "" - -#: mod/common.php:86 -msgid "No contacts in common." -msgstr "Sense contactes en comú." - -#: mod/common.php:134 mod/contacts.php:863 -msgid "Common Friends" -msgstr "Amics Comuns" - -#: mod/community.php:27 -msgid "Not available." -msgstr "No disponible." - -#: mod/directory.php:197 view/theme/vier/theme.php:201 -msgid "Global Directory" -msgstr "Directori Global" - -#: mod/directory.php:199 -msgid "Find on this site" -msgstr "Trobat en aquest lloc" - -#: mod/directory.php:201 -msgid "Results for:" -msgstr "" - -#: mod/directory.php:203 -msgid "Site Directory" -msgstr "Directori Local" - -#: mod/directory.php:210 -msgid "No entries (some entries may be hidden)." -msgstr "No hi ha entrades (algunes de les entrades poden estar amagades)." - -#: mod/dirfind.php:36 -#, php-format -msgid "People Search - %s" -msgstr "" - -#: mod/dirfind.php:47 -#, php-format -msgid "Forum Search - %s" -msgstr "" - -#: mod/dirfind.php:240 mod/match.php:107 -msgid "No matches" -msgstr "No hi ha coincidències" - -#: mod/display.php:473 -msgid "Item has been removed." -msgstr "El element ha estat esborrat." - -#: mod/events.php:95 mod/events.php:97 -msgid "Event can not end before it has started." -msgstr "" - -#: mod/events.php:104 mod/events.php:106 -msgid "Event title and start time are required." -msgstr "Títol d'esdeveniment i hora d'inici requerits." - -#: mod/events.php:381 -msgid "Create New Event" -msgstr "Crear un nou esdeveniment" - -#: mod/events.php:482 -msgid "Event details" -msgstr "Detalls del esdeveniment" - -#: mod/events.php:483 -msgid "Starting date and Title are required." -msgstr "" - -#: mod/events.php:484 mod/events.php:485 -msgid "Event Starts:" -msgstr "Inici d'Esdeveniment:" - -#: mod/events.php:486 mod/events.php:502 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/hora de finalització no es coneixen o no són relevants" - -#: mod/events.php:488 mod/events.php:489 -msgid "Event Finishes:" -msgstr "L'esdeveniment Finalitza:" - -#: mod/events.php:490 mod/events.php:503 -msgid "Adjust for viewer timezone" -msgstr "Ajustar a la zona horaria de l'espectador" - -#: mod/events.php:492 -msgid "Description:" -msgstr "Descripció:" - -#: mod/events.php:496 mod/events.php:498 -msgid "Title:" -msgstr "Títol:" - -#: mod/events.php:499 mod/events.php:500 -msgid "Share this event" -msgstr "Compartir aquest esdeveniment" - -#: mod/maintenance.php:9 -msgid "System down for maintenance" -msgstr "Sistema apagat per manteniment" - -#: mod/match.php:33 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "No hi ha paraules clau que coincideixin. Si us plau, afegeixi paraules clau al teu perfil predeterminat." - -#: mod/match.php:86 -msgid "is interested in:" -msgstr "està interessat en:" - -#: mod/match.php:100 -msgid "Profile Match" -msgstr "Perfil Aconseguit" - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Consells per a nous membres" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Realment vols esborrar aquest suggeriment?" - -#: mod/suggest.php:71 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Cap suggeriment disponible. Si això és un nou lloc, si us plau torna a intentar en 24 hores." - -#: mod/suggest.php:84 mod/suggest.php:104 -msgid "Ignore/Hide" -msgstr "Ignorar/Amagar" - -#: mod/update_community.php:19 mod/update_display.php:23 -#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 -msgid "[Embedded content - reload page to view]" -msgstr "[Contingut embegut - recarrega la pàgina per a veure-ho]" - -#: mod/photos.php:88 mod/photos.php:1856 -msgid "Recent Photos" -msgstr "Fotos Recents" - -#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858 -msgid "Upload New Photos" -msgstr "Actualitzar Noves Fotos" - -#: mod/photos.php:105 mod/settings.php:36 -msgid "everybody" -msgstr "tothom" - -#: mod/photos.php:169 -msgid "Contact information unavailable" -msgstr "Informació del Contacte no disponible" - -#: mod/photos.php:190 -msgid "Album not found." -msgstr "Àlbum no trobat." - -#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227 -msgid "Delete Album" -msgstr "Eliminar Àlbum" - -#: mod/photos.php:230 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Realment vols esborrar aquest album de fotos amb totes les fotos?" - -#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540 -msgid "Delete Photo" -msgstr "Eliminar Foto" - -#: mod/photos.php:317 -msgid "Do you really want to delete this photo?" -msgstr "Realment vols esborrar aquesta foto?" - -#: mod/photos.php:688 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s fou etiquetat a %2$s per %3$s" - -#: mod/photos.php:688 -msgid "a photo" -msgstr "una foto" - -#: mod/photos.php:794 -msgid "Image file is empty." -msgstr "El fitxer de imatge és buit." - -#: mod/photos.php:954 -msgid "No photos selected" -msgstr "No s'han seleccionat fotos" - -#: mod/photos.php:1054 mod/videos.php:305 -msgid "Access to this item is restricted." -msgstr "L'accés a aquest element està restringit." - -#: mod/photos.php:1114 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Has emprat %1$.2f Mbytes de %2$.2f Mbytes del magatzem de fotos." - -#: mod/photos.php:1148 -msgid "Upload Photos" -msgstr "Carregar Fotos" - -#: mod/photos.php:1152 mod/photos.php:1222 -msgid "New album name: " -msgstr "Nou nom d'àlbum:" - -#: mod/photos.php:1153 -msgid "or existing album name: " -msgstr "o nom d'àlbum existent:" - -#: mod/photos.php:1154 -msgid "Do not show a status post for this upload" -msgstr "No tornis a mostrar un missatge d'estat d'aquesta pujada" - -#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300 -msgid "Show to Groups" -msgstr "Mostrar en Grups" - -#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301 -msgid "Show to Contacts" -msgstr "Mostrar a Contactes" - -#: mod/photos.php:1167 -msgid "Private Photo" -msgstr "Foto Privada" - -#: mod/photos.php:1168 -msgid "Public Photo" -msgstr "Foto Pública" - -#: mod/photos.php:1234 -msgid "Edit Album" -msgstr "Editar Àlbum" - -#: mod/photos.php:1240 -msgid "Show Newest First" -msgstr "Mostrar el més Nou Primer" - -#: mod/photos.php:1242 -msgid "Show Oldest First" -msgstr "Mostrar el més Antic Primer" - -#: mod/photos.php:1269 mod/photos.php:1841 -msgid "View Photo" -msgstr "Veure Foto" - -#: mod/photos.php:1315 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permís denegat. L'accés a aquest element pot estar restringit." - -#: mod/photos.php:1317 -msgid "Photo not available" -msgstr "Foto no disponible" - -#: mod/photos.php:1372 -msgid "View photo" -msgstr "Veure foto" - -#: mod/photos.php:1372 -msgid "Edit photo" -msgstr "Editar foto" - -#: mod/photos.php:1373 -msgid "Use as profile photo" -msgstr "Emprar com a foto del perfil" - -#: mod/photos.php:1398 -msgid "View Full Size" -msgstr "Veure'l a Mida Completa" - -#: mod/photos.php:1484 -msgid "Tags: " -msgstr "Etiquetes:" - -#: mod/photos.php:1487 -msgid "[Remove any tag]" -msgstr "Treure etiquetes" - -#: mod/photos.php:1526 -msgid "New album name" -msgstr "Nou nom d'àlbum" - -#: mod/photos.php:1527 -msgid "Caption" -msgstr "Títol" - -#: mod/photos.php:1528 -msgid "Add a Tag" -msgstr "Afegir una etiqueta" - -#: mod/photos.php:1528 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Exemple: @bob, @Barbara_jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1529 -msgid "Do not rotate" -msgstr "" - -#: mod/photos.php:1530 -msgid "Rotate CW (right)" -msgstr "Rotar CW (dreta)" - -#: mod/photos.php:1531 -msgid "Rotate CCW (left)" -msgstr "Rotar CCW (esquerra)" - -#: mod/photos.php:1546 -msgid "Private photo" -msgstr "Foto Privada" - -#: mod/photos.php:1547 -msgid "Public photo" -msgstr "Foto pública" - -#: mod/photos.php:1770 -msgid "Map" -msgstr "" - -#: mod/photos.php:1847 mod/videos.php:387 -msgid "View Album" -msgstr "Veure Àlbum" - -#: mod/register.php:93 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrat amb èxit. Per favor, comprovi el seu correu per a posteriors instruccions." - -#: mod/register.php:98 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
    login: %s
    " -"password: %s

    You can change your password after login." -msgstr "" - -#: mod/register.php:105 -msgid "Registration successful." -msgstr "" - -#: mod/register.php:111 -msgid "Your registration can not be processed." -msgstr "El seu registre no pot ser processat." - -#: mod/register.php:160 -msgid "Your registration is pending approval by the site owner." -msgstr "El seu registre està pendent d'aprovació pel propietari del lloc." - -#: mod/register.php:226 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Vostè pot (opcionalment), omplir aquest formulari a través de OpenID mitjançant el subministrament de la seva OpenID i fent clic a 'Registrar'." - -#: mod/register.php:227 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Si vostè no està familiaritzat amb Twitter, si us plau deixi aquest camp en blanc i completi la resta dels elements." - -#: mod/register.php:228 -msgid "Your OpenID (optional): " -msgstr "El seu OpenID (opcional):" - -#: mod/register.php:242 -msgid "Include your profile in member directory?" -msgstr "Incloc el seu perfil al directori de membres?" - -#: mod/register.php:267 -msgid "Note for the admin" -msgstr "" - -#: mod/register.php:267 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "" - -#: mod/register.php:268 -msgid "Membership on this site is by invitation only." -msgstr "Lloc accesible mitjançant invitació." - -#: mod/register.php:269 -msgid "Your invitation ID: " -msgstr "El teu ID de invitació:" - -#: mod/register.php:272 mod/admin.php:956 -msgid "Registration" -msgstr "Procés de Registre" - -#: mod/register.php:280 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "" - -#: mod/register.php:281 -msgid "Your Email Address: " -msgstr "La Seva Adreça de Correu:" - -#: mod/register.php:283 mod/settings.php:1271 -msgid "New Password:" -msgstr "Nova Contrasenya:" - -#: mod/register.php:283 -msgid "Leave empty for an auto generated password." -msgstr "" - -#: mod/register.php:284 mod/settings.php:1272 -msgid "Confirm:" -msgstr "Confirmar:" - -#: mod/register.php:285 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Tria un nom de perfil. Això ha de començar amb un caràcter de text. La seva adreça de perfil en aquest lloc serà 'alies@$sitename'." - -#: mod/register.php:286 -msgid "Choose a nickname: " -msgstr "Tria un àlies:" - -#: mod/register.php:296 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: mod/settings.php:43 mod/admin.php:1396 -msgid "Account" -msgstr "Compte" - -#: mod/settings.php:52 mod/admin.php:160 -msgid "Additional features" -msgstr "Característiques Adicionals" - -#: mod/settings.php:60 -msgid "Display" -msgstr "" - -#: mod/settings.php:67 mod/settings.php:886 -msgid "Social Networks" -msgstr "" - -#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 -msgid "Plugins" -msgstr "Plugins" - -#: mod/settings.php:88 -msgid "Connected apps" -msgstr "App connectada" - -#: mod/settings.php:102 -msgid "Remove account" -msgstr "Esborrar compte" - -#: mod/settings.php:155 -msgid "Missing some important data!" -msgstr "Perdudes algunes dades importants!" - -#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804 -msgid "Update" -msgstr "Actualitzar" - -#: mod/settings.php:269 -msgid "Failed to connect with email account using the settings provided." -msgstr "Connexió fracassada amb el compte de correu emprant la configuració proveïda." - -#: mod/settings.php:274 -msgid "Email settings updated." -msgstr "Configuració del correu electrònic actualitzada." - -#: mod/settings.php:289 -msgid "Features updated" -msgstr "Característiques actualitzades" - -#: mod/settings.php:359 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: mod/settings.php:378 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "No es permeten contasenyes buides. Contrasenya no canviada" - -#: mod/settings.php:386 -msgid "Wrong password." -msgstr "Contrasenya errònia" - -#: mod/settings.php:397 -msgid "Password changed." -msgstr "Contrasenya canviada." - -#: mod/settings.php:399 -msgid "Password update failed. Please try again." -msgstr "Ha fallat l'actualització de la Contrasenya. Per favor, intenti-ho de nou." - -#: mod/settings.php:479 -msgid " Please use a shorter name." -msgstr "Si us plau, faci servir un nom més curt." - -#: mod/settings.php:481 -msgid " Name too short." -msgstr "Nom massa curt." - -#: mod/settings.php:490 -msgid "Wrong Password" -msgstr "Contrasenya Errònia" - -#: mod/settings.php:495 -msgid " Not valid email." -msgstr "Correu no vàlid." - -#: mod/settings.php:501 -msgid " Cannot change to that email." -msgstr "No puc canviar a aquest correu." - -#: mod/settings.php:557 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Els Fòrums privats no tenen permisos de privacitat. Empra la privacitat de grup per defecte." - -#: mod/settings.php:561 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Els Fòrums privats no tenen permisos de privacitat i tampoc privacitat per defecte de grup." - -#: mod/settings.php:601 -msgid "Settings updated." -msgstr "Ajustos actualitzats." - -#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739 -msgid "Add application" -msgstr "Afegir aplicació" - -#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835 -#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264 -#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905 -#: mod/admin.php:2055 -msgid "Save Settings" -msgstr "" - -#: mod/settings.php:681 mod/settings.php:707 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: mod/settings.php:682 mod/settings.php:708 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: mod/settings.php:683 mod/settings.php:709 -msgid "Redirect" -msgstr "Redirigir" - -#: mod/settings.php:684 mod/settings.php:710 -msgid "Icon url" -msgstr "icona de url" - -#: mod/settings.php:695 -msgid "You can't edit this application." -msgstr "No pots editar aquesta aplicació." - -#: mod/settings.php:738 -msgid "Connected Apps" -msgstr "Aplicacions conectades" - -#: mod/settings.php:742 -msgid "Client key starts with" -msgstr "Les claus de client comançen amb" - -#: mod/settings.php:743 -msgid "No name" -msgstr "Sense nom" - -#: mod/settings.php:744 -msgid "Remove authorization" -msgstr "retirar l'autorització" - -#: mod/settings.php:756 -msgid "No Plugin settings configured" -msgstr "No s'han configurat ajustos de Plugin" - -#: mod/settings.php:764 -msgid "Plugin Settings" -msgstr "Ajustos de Plugin" - -#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 -msgid "Off" -msgstr "Apagat" - -#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 -msgid "On" -msgstr "Engegat" - -#: mod/settings.php:786 -msgid "Additional Features" -msgstr "Característiques Adicionals" - -#: mod/settings.php:796 mod/settings.php:800 -msgid "General Social Media Settings" -msgstr "" - -#: mod/settings.php:806 -msgid "Disable intelligent shortening" -msgstr "" - -#: mod/settings.php:808 -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:814 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "" - -#: mod/settings.php:816 -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:822 -msgid "Default group for OStatus contacts" -msgstr "" - -#: mod/settings.php:828 -msgid "Your legacy GNU Social account" -msgstr "" - -#: mod/settings.php:830 -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:833 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: mod/settings.php:842 mod/settings.php:843 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "El suport integrat per a la connectivitat de %s és %s" - -#: mod/settings.php:842 mod/settings.php:843 -msgid "enabled" -msgstr "habilitat" - -#: mod/settings.php:842 mod/settings.php:843 -msgid "disabled" -msgstr "deshabilitat" - -#: mod/settings.php:843 -msgid "GNU Social (OStatus)" -msgstr "" - -#: mod/settings.php:879 -msgid "Email access is disabled on this site." -msgstr "L'accés al correu està deshabilitat en aquest lloc." - -#: mod/settings.php:891 -msgid "Email/Mailbox Setup" -msgstr "Preparació de Correu/Bústia" - -#: mod/settings.php:892 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Si vol comunicar-se amb els contactes de correu emprant aquest servei (opcional), Si us plau, especifiqui com connectar amb la seva bústia." - -#: mod/settings.php:893 -msgid "Last successful email check:" -msgstr "Última comprovació de correu amb èxit:" - -#: mod/settings.php:895 -msgid "IMAP server name:" -msgstr "Nom del servidor IMAP:" - -#: mod/settings.php:896 -msgid "IMAP port:" -msgstr "Port IMAP:" - -#: mod/settings.php:897 -msgid "Security:" -msgstr "Seguretat:" - -#: mod/settings.php:897 mod/settings.php:902 -msgid "None" -msgstr "Cap" - -#: mod/settings.php:898 -msgid "Email login name:" -msgstr "Nom d'usuari del correu" - -#: mod/settings.php:899 -msgid "Email password:" -msgstr "Contrasenya del correu:" - -#: mod/settings.php:900 -msgid "Reply-to address:" -msgstr "Adreça de resposta:" - -#: mod/settings.php:901 -msgid "Send public posts to all email contacts:" -msgstr "Enviar correu públic a tots els contactes del correu:" - -#: mod/settings.php:902 -msgid "Action after import:" -msgstr "Acció després d'importar:" - -#: mod/settings.php:902 -msgid "Move to folder" -msgstr "Moure a la carpeta" - -#: mod/settings.php:903 -msgid "Move to folder:" -msgstr "Moure a la carpeta:" - -#: mod/settings.php:934 mod/admin.php:862 -msgid "No special theme for mobile devices" -msgstr "No hi ha un tema específic per a mòbil" - -#: mod/settings.php:994 -msgid "Display Settings" -msgstr "Ajustos de Pantalla" - -#: mod/settings.php:1000 mod/settings.php:1023 -msgid "Display Theme:" -msgstr "Visualitzar el Tema:" - -#: mod/settings.php:1001 -msgid "Mobile Theme:" -msgstr "Tema Mobile:" - -#: mod/settings.php:1002 -msgid "Suppress warning of insecure networks" -msgstr "" - -#: mod/settings.php:1002 -msgid "" -"Should the system suppress the warning that the current group contains " -"members of networks that can't receive non public postings." -msgstr "" - -#: mod/settings.php:1003 -msgid "Update browser every xx seconds" -msgstr "Actualitzar navegador cada xx segons" - -#: mod/settings.php:1003 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "" - -#: mod/settings.php:1004 -msgid "Number of items to display per page:" -msgstr "Número d'elements a mostrar per pàgina" - -#: mod/settings.php:1004 mod/settings.php:1005 -msgid "Maximum of 100 items" -msgstr "Màxim de 100 elements" - -#: mod/settings.php:1005 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Nombre d'elements a veure per pàgina quan es vegin des d'un dispositiu mòbil:" - -#: mod/settings.php:1006 -msgid "Don't show emoticons" -msgstr "No mostrar emoticons" - -#: mod/settings.php:1007 -msgid "Calendar" -msgstr "" - -#: mod/settings.php:1008 -msgid "Beginning of week:" -msgstr "" - -#: mod/settings.php:1009 -msgid "Don't show notices" -msgstr "" - -#: mod/settings.php:1010 -msgid "Infinite scroll" -msgstr "" - -#: mod/settings.php:1011 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: mod/settings.php:1012 -msgid "Bandwith Saver Mode" -msgstr "" - -#: mod/settings.php:1012 -msgid "" -"When enabled, embedded content is not displayed on automatic updates, they " -"only show on page reload." -msgstr "" - -#: mod/settings.php:1014 -msgid "General Theme Settings" -msgstr "" - -#: mod/settings.php:1015 -msgid "Custom Theme Settings" -msgstr "" - -#: mod/settings.php:1016 -msgid "Content Settings" -msgstr "" - -#: mod/settings.php:1017 view/theme/frio/config.php:61 -#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109 -#: view/theme/duepuntozero/config.php:61 -msgid "Theme settings" -msgstr "Configuració de Temes" - -#: mod/settings.php:1099 -msgid "Account Types" -msgstr "" - -#: mod/settings.php:1100 -msgid "Personal Page Subtypes" -msgstr "" - -#: mod/settings.php:1101 -msgid "Community Forum Subtypes" -msgstr "" - -#: mod/settings.php:1108 -msgid "Personal Page" -msgstr "" - -#: mod/settings.php:1109 -msgid "This account is a regular personal profile" -msgstr "" - -#: mod/settings.php:1112 -msgid "Organisation Page" -msgstr "" - -#: mod/settings.php:1113 -msgid "This account is a profile for an organisation" -msgstr "" - -#: mod/settings.php:1116 -msgid "News Page" -msgstr "" - -#: mod/settings.php:1117 -msgid "This account is a news account/reflector" -msgstr "" - -#: mod/settings.php:1120 -msgid "Community Forum" -msgstr "" - -#: mod/settings.php:1121 -msgid "" -"This account is a community forum where people can discuss with each other" -msgstr "" - -#: mod/settings.php:1124 -msgid "Normal Account Page" -msgstr "Pàgina Normal del Compte " - -#: mod/settings.php:1125 -msgid "This account is a normal personal profile" -msgstr "Aques compte es un compte personal normal" - -#: mod/settings.php:1128 -msgid "Soapbox Page" -msgstr "Pàgina de Soapbox" - -#: mod/settings.php:1129 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Aprova automàticament totes les sol·licituds de amistat/connexió com a fans de només lectura." - -#: mod/settings.php:1132 -msgid "Public Forum" -msgstr "" - -#: mod/settings.php:1133 -msgid "Automatically approve all contact requests" -msgstr "" - -#: mod/settings.php:1136 -msgid "Automatic Friend Page" -msgstr "Compte d'Amistat Automàtica" - -#: mod/settings.php:1137 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Aprova totes les sol·licituds de amistat/connexió com a amic automàticament" - -#: mod/settings.php:1140 -msgid "Private Forum [Experimental]" -msgstr "Fòrum Privat [Experimental]" - -#: mod/settings.php:1141 -msgid "Private forum - approved members only" -msgstr "Fòrum privat - Només membres aprovats" - -#: mod/settings.php:1153 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1153 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opcional) Permetre a aquest OpenID iniciar sessió en aquest compte." - -#: mod/settings.php:1163 -msgid "Publish your default profile in your local site directory?" -msgstr "Publicar el teu perfil predeterminat en el directori del lloc local?" - -#: mod/settings.php:1169 -msgid "Publish your default profile in the global social directory?" -msgstr "Publicar el teu perfil predeterminat al directori social global?" - -#: mod/settings.php:1177 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Amaga la teva llista de contactes/amics dels espectadors del seu perfil per defecte?" - -#: mod/settings.php:1181 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" - -#: mod/settings.php:1186 -msgid "Allow friends to post to your profile page?" -msgstr "Permet als amics publicar en la seva pàgina de perfil?" - -#: mod/settings.php:1192 -msgid "Allow friends to tag your posts?" -msgstr "Permet als amics d'etiquetar els teus missatges?" - -#: mod/settings.php:1198 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Permeteu-nos suggerir-li com un amic potencial dels nous membres?" - -#: mod/settings.php:1204 -msgid "Permit unknown people to send you private mail?" -msgstr "Permetre a desconeguts enviar missatges al teu correu privat?" - -#: mod/settings.php:1212 -msgid "Profile is not published." -msgstr "El Perfil no està publicat." - -#: mod/settings.php:1220 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "" - -#: mod/settings.php:1227 -msgid "Automatically expire posts after this many days:" -msgstr "Després de aquests nombre de dies, els missatges caduquen automàticament:" - -#: mod/settings.php:1227 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Si està buit, els missatges no caducarà. Missatges caducats s'eliminaran" - -#: mod/settings.php:1228 -msgid "Advanced expiration settings" -msgstr "Configuració avançada d'expiració" - -#: mod/settings.php:1229 -msgid "Advanced Expiration" -msgstr "Expiració Avançada" - -#: mod/settings.php:1230 -msgid "Expire posts:" -msgstr "Expiració d'enviaments" - -#: mod/settings.php:1231 -msgid "Expire personal notes:" -msgstr "Expiració de notes personals" - -#: mod/settings.php:1232 -msgid "Expire starred posts:" -msgstr "Expiració de enviaments de favorits" - -#: mod/settings.php:1233 -msgid "Expire photos:" -msgstr "Expiració de fotos" - -#: mod/settings.php:1234 -msgid "Only expire posts by others:" -msgstr "Només expiren els enviaments dels altres:" - -#: mod/settings.php:1262 -msgid "Account Settings" -msgstr "Ajustos de Compte" - -#: mod/settings.php:1270 -msgid "Password Settings" -msgstr "Ajustos de Contrasenya" - -#: mod/settings.php:1272 -msgid "Leave password fields blank unless changing" -msgstr "Deixi els camps de contrasenya buits per a no fer canvis" - -#: mod/settings.php:1273 -msgid "Current Password:" -msgstr "Contrasenya Actual:" - -#: mod/settings.php:1273 mod/settings.php:1274 -msgid "Your current password to confirm the changes" -msgstr "La teva actual contrasenya a fi de confirmar els canvis" - -#: mod/settings.php:1274 -msgid "Password:" -msgstr "Contrasenya:" - -#: mod/settings.php:1278 -msgid "Basic Settings" -msgstr "Ajustos Basics" - -#: mod/settings.php:1280 -msgid "Email Address:" -msgstr "Adreça de Correu:" - -#: mod/settings.php:1281 -msgid "Your Timezone:" -msgstr "La teva zona Horària:" - -#: mod/settings.php:1282 -msgid "Your Language:" -msgstr "" - -#: mod/settings.php:1282 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "" - -#: mod/settings.php:1283 -msgid "Default Post Location:" -msgstr "Localització per Defecte del Missatge:" - -#: mod/settings.php:1284 -msgid "Use Browser Location:" -msgstr "Ubicar-se amb el Navegador:" - -#: mod/settings.php:1287 -msgid "Security and Privacy Settings" -msgstr "Ajustos de Seguretat i Privacitat" - -#: mod/settings.php:1289 -msgid "Maximum Friend Requests/Day:" -msgstr "Nombre Màxim de Sol·licituds per Dia" - -#: mod/settings.php:1289 mod/settings.php:1319 -msgid "(to prevent spam abuse)" -msgstr "(per a prevenir abusos de spam)" - -#: mod/settings.php:1290 -msgid "Default Post Permissions" -msgstr "Permisos de Correu per Defecte" - -#: mod/settings.php:1291 -msgid "(click to open/close)" -msgstr "(clicar per a obrir/tancar)" - -#: mod/settings.php:1302 -msgid "Default Private Post" -msgstr "Missatges Privats Per Defecte" - -#: mod/settings.php:1303 -msgid "Default Public Post" -msgstr "Missatges Públics Per Defecte" - -#: mod/settings.php:1307 -msgid "Default Permissions for New Posts" -msgstr "Permisos Per Defecte per a Nous Missatges" - -#: mod/settings.php:1319 -msgid "Maximum private messages per day from unknown people:" -msgstr "Màxim nombre de missatges, per dia, de desconeguts:" - -#: mod/settings.php:1322 -msgid "Notification Settings" -msgstr "Ajustos de Notificació" - -#: mod/settings.php:1323 -msgid "By default post a status message when:" -msgstr "Enviar per defecte un missatge de estatus quan:" - -#: mod/settings.php:1324 -msgid "accepting a friend request" -msgstr "Acceptar una sol·licitud d'amistat" - -#: mod/settings.php:1325 -msgid "joining a forum/community" -msgstr "Unint-se a un fòrum/comunitat" - -#: mod/settings.php:1326 -msgid "making an interesting profile change" -msgstr "fent un canvi al perfil" - -#: mod/settings.php:1327 -msgid "Send a notification email when:" -msgstr "Envia un correu notificant quan:" - -#: mod/settings.php:1328 -msgid "You receive an introduction" -msgstr "Has rebut una presentació" - -#: mod/settings.php:1329 -msgid "Your introductions are confirmed" -msgstr "La teva presentació està confirmada" - -#: mod/settings.php:1330 -msgid "Someone writes on your profile wall" -msgstr "Algú ha escrit en el teu mur de perfil" - -#: mod/settings.php:1331 -msgid "Someone writes a followup comment" -msgstr "Algú ha escrit un comentari de seguiment" - -#: mod/settings.php:1332 -msgid "You receive a private message" -msgstr "Has rebut un missatge privat" - -#: mod/settings.php:1333 -msgid "You receive a friend suggestion" -msgstr "Has rebut una suggerencia d'un amic" - -#: mod/settings.php:1334 -msgid "You are tagged in a post" -msgstr "Estàs etiquetat en un enviament" - -#: mod/settings.php:1335 -msgid "You are poked/prodded/etc. in a post" -msgstr "Has estat Atiat/punxat/etc, en un enviament" - -#: mod/settings.php:1337 -msgid "Activate desktop notifications" -msgstr "" - -#: mod/settings.php:1337 -msgid "Show desktop popup on new notifications" -msgstr "" - -#: mod/settings.php:1339 -msgid "Text-only notification emails" -msgstr "" - -#: mod/settings.php:1341 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: mod/settings.php:1343 -msgid "Advanced Account/Page Type Settings" -msgstr "Ajustos Avançats de Compte/ Pàgina" - -#: mod/settings.php:1344 -msgid "Change the behaviour of this account for special situations" -msgstr "Canviar el comportament d'aquest compte en situacions especials" - -#: mod/settings.php:1347 -msgid "Relocate" -msgstr "" - -#: mod/settings.php:1348 -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:1349 -msgid "Resend relocate message to contacts" -msgstr "" - -#: mod/videos.php:120 -msgid "Do you really want to delete this video?" -msgstr "" - -#: mod/videos.php:125 -msgid "Delete Video" -msgstr "" - -#: mod/videos.php:204 -msgid "No videos selected" -msgstr "No s'han seleccionat vídeos " - -#: mod/videos.php:396 -msgid "Recent Videos" -msgstr "Videos Recents" - -#: mod/videos.php:398 -msgid "Upload New Videos" -msgstr "Carrega Nous Videos" - -#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 -#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 -#: mod/wall_upload.php:122 mod/wall_upload.php:125 -msgid "Invalid request." -msgstr "" - -#: mod/wall_attach.php:94 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: mod/wall_attach.php:94 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: mod/wall_attach.php:105 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "" - -#: mod/wall_attach.php:156 mod/wall_attach.php:172 -msgid "File upload failed." -msgstr "La càrrega de fitxers ha fallat." - -#: mod/admin.php:92 -msgid "Theme settings updated." -msgstr "Ajustos de Tema actualitzats" - -#: mod/admin.php:156 mod/admin.php:954 -msgid "Site" -msgstr "Lloc" - -#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420 -msgid "Users" -msgstr "Usuaris" - -#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830 -msgid "Themes" -msgstr "Temes" - -#: mod/admin.php:161 -msgid "DB updates" -msgstr "Actualitzacions de BD" - -#: mod/admin.php:162 mod/admin.php:406 -msgid "Inspect Queue" -msgstr "" - -#: mod/admin.php:163 mod/admin.php:372 -msgid "Federation Statistics" -msgstr "" - -#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904 -msgid "Logs" -msgstr "Registres" - -#: mod/admin.php:178 mod/admin.php:1972 -msgid "View Logs" -msgstr "" - -#: mod/admin.php:179 -msgid "probe address" -msgstr "" - -#: mod/admin.php:180 -msgid "check webfinger" -msgstr "" - -#: mod/admin.php:187 -msgid "Plugin Features" -msgstr "Característiques del Plugin" - -#: mod/admin.php:189 -msgid "diagnostics" -msgstr "" - -#: mod/admin.php:190 -msgid "User registrations waiting for confirmation" -msgstr "Registre d'usuari a l'espera de confirmació" - -#: mod/admin.php:306 -msgid "unknown" -msgstr "" - -#: mod/admin.php:365 -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 "" - -#: mod/admin.php:366 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "" - -#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953 -#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779 -#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971 -msgid "Administration" -msgstr "Administració" - -#: mod/admin.php:378 -#, php-format -msgid "Currently this node is aware of %d nodes from the following platforms:" -msgstr "" - -#: mod/admin.php:408 -msgid "ID" -msgstr "" - -#: mod/admin.php:409 -msgid "Recipient Name" -msgstr "" - -#: mod/admin.php:410 -msgid "Recipient Profile" -msgstr "" - -#: mod/admin.php:412 -msgid "Created" -msgstr "" - -#: mod/admin.php:413 -msgid "Last Tried" -msgstr "" - -#: mod/admin.php:414 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "" - -#: mod/admin.php:439 -#, 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 " -"convert_innodb.sql in the /util directory of your " -"Friendica installation.
    " -msgstr "" - -#: mod/admin.php:444 -msgid "" -"You are using a MySQL version which does not support all features that " -"Friendica uses. You should consider switching to MariaDB." -msgstr "" - -#: mod/admin.php:448 mod/admin.php:1352 -msgid "Normal Account" -msgstr "Compte Normal" - -#: mod/admin.php:449 mod/admin.php:1353 -msgid "Soapbox Account" -msgstr "Compte Tribuna" - -#: mod/admin.php:450 mod/admin.php:1354 -msgid "Community/Celebrity Account" -msgstr "Compte de Comunitat/Celebritat" - -#: mod/admin.php:451 mod/admin.php:1355 -msgid "Automatic Friend Account" -msgstr "Compte d'Amistat Automàtic" - -#: mod/admin.php:452 -msgid "Blog Account" -msgstr "Compte de Blog" - -#: mod/admin.php:453 -msgid "Private Forum" -msgstr "Fòrum Privat" - -#: mod/admin.php:479 -msgid "Message queues" -msgstr "Cues de missatges" - -#: mod/admin.php:485 -msgid "Summary" -msgstr "Sumari" - -#: mod/admin.php:488 -msgid "Registered users" -msgstr "Usuaris registrats" - -#: mod/admin.php:490 -msgid "Pending registrations" -msgstr "Registres d'usuari pendents" - -#: mod/admin.php:491 -msgid "Version" -msgstr "Versió" - -#: mod/admin.php:496 -msgid "Active plugins" -msgstr "Plugins actius" - -#: mod/admin.php:521 -msgid "Can not parse base url. Must have at least ://" -msgstr "" - -#: mod/admin.php:826 -msgid "RINO2 needs mcrypt php extension to work." -msgstr "" - -#: mod/admin.php:834 -msgid "Site settings updated." -msgstr "Ajustos del lloc actualitzats." - -#: mod/admin.php:881 -msgid "No community page" -msgstr "" - -#: mod/admin.php:882 -msgid "Public postings from users of this site" -msgstr "" - -#: mod/admin.php:883 -msgid "Global community page" -msgstr "" - -#: mod/admin.php:888 mod/contacts.php:530 -msgid "Never" -msgstr "Mai" - -#: mod/admin.php:889 -msgid "At post arrival" -msgstr "" - -#: mod/admin.php:897 mod/contacts.php:557 -msgid "Disabled" -msgstr "" - -#: mod/admin.php:899 -msgid "Users, Global Contacts" -msgstr "" - -#: mod/admin.php:900 -msgid "Users, Global Contacts/fallback" -msgstr "" - -#: mod/admin.php:904 -msgid "One month" -msgstr "" - -#: mod/admin.php:905 -msgid "Three months" -msgstr "" - -#: mod/admin.php:906 -msgid "Half a year" -msgstr "" - -#: mod/admin.php:907 -msgid "One year" -msgstr "" - -#: mod/admin.php:912 -msgid "Multi user instance" -msgstr "Instancia multiusuari" - -#: mod/admin.php:935 -msgid "Closed" -msgstr "Tancat" - -#: mod/admin.php:936 -msgid "Requires approval" -msgstr "Requereix aprovació" - -#: mod/admin.php:937 -msgid "Open" -msgstr "Obert" - -#: mod/admin.php:941 -msgid "No SSL policy, links will track page SSL state" -msgstr "No existe una política de SSL, se hará un seguimiento de los vínculos de la página con SSL" - -#: mod/admin.php:942 -msgid "Force all links to use SSL" -msgstr "Forzar a tots els enllaços a utilitzar SSL" - -#: mod/admin.php:943 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certificat auto-signat, utilitzar SSL només per a enllaços locals (desaconsellat)" - -#: mod/admin.php:957 -msgid "File upload" -msgstr "Fitxer carregat" - -#: mod/admin.php:958 -msgid "Policies" -msgstr "Polítiques" - -#: mod/admin.php:960 -msgid "Auto Discovered Contact Directory" -msgstr "" - -#: mod/admin.php:961 -msgid "Performance" -msgstr "Rendiment" - -#: mod/admin.php:962 -msgid "Worker" -msgstr "" - -#: mod/admin.php:963 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" - -#: mod/admin.php:966 -msgid "Site name" -msgstr "Nom del lloc" - -#: mod/admin.php:967 -msgid "Host name" -msgstr "" - -#: mod/admin.php:968 -msgid "Sender Email" -msgstr "" - -#: mod/admin.php:968 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "" - -#: mod/admin.php:969 -msgid "Banner/Logo" -msgstr "Senyera/Logo" - -#: mod/admin.php:970 -msgid "Shortcut icon" -msgstr "" - -#: mod/admin.php:970 -msgid "Link to an icon that will be used for browsers." -msgstr "" - -#: mod/admin.php:971 -msgid "Touch icon" -msgstr "" - -#: mod/admin.php:971 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "" - -#: mod/admin.php:972 -msgid "Additional Info" -msgstr "" - -#: mod/admin.php:972 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/siteinfo." -msgstr "" - -#: mod/admin.php:973 -msgid "System language" -msgstr "Idioma del Sistema" - -#: mod/admin.php:974 -msgid "System theme" -msgstr "Tema del sistema" - -#: mod/admin.php:974 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema per defecte del sistema - pot ser obviat pels perfils del usuari - Canviar ajustos de tema" - -#: mod/admin.php:975 -msgid "Mobile system theme" -msgstr "Tema per a mòbil" - -#: mod/admin.php:975 -msgid "Theme for mobile devices" -msgstr "Tema per a aparells mòbils" - -#: mod/admin.php:976 -msgid "SSL link policy" -msgstr "Política SSL per als enllaços" - -#: mod/admin.php:976 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determina si els enllaços generats han de ser forçats a utilitzar SSL" - -#: mod/admin.php:977 -msgid "Force SSL" -msgstr "" - -#: mod/admin.php:977 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "" - -#: mod/admin.php:978 -msgid "Old style 'Share'" -msgstr "" - -#: mod/admin.php:978 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "" - -#: mod/admin.php:979 -msgid "Hide help entry from navigation menu" -msgstr "Amaga l'entrada d'ajuda del menu de navegació" - -#: mod/admin.php:979 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Amaga l'entrada del menú de les pàgines d'ajuda. Pots encara accedir entrant /ajuda directament." - -#: mod/admin.php:980 -msgid "Single user instance" -msgstr "Instancia per a un únic usuari" - -#: mod/admin.php:980 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Fer aquesta instancia multi-usuari o mono-usuari per al usuari anomenat" - -#: mod/admin.php:981 -msgid "Maximum image size" -msgstr "Mida màxima de les imatges" - -#: mod/admin.php:981 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Mida màxima en bytes de les imatges a pujar. Per defecte es 0, que vol dir sense límits." - -#: mod/admin.php:982 -msgid "Maximum image length" -msgstr "Maxima longitud d'imatge" - -#: mod/admin.php:982 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Longitud màxima en píxels del costat més llarg de la imatge carregada. Per defecte es -1, que significa sense límits" - -#: mod/admin.php:983 -msgid "JPEG image quality" -msgstr "Qualitat per a la imatge JPEG" - -#: mod/admin.php:983 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Els JPEGs pujats seran guardats amb la qualitat que ajustis de [0-100]. Per defecte es 100 màxima qualitat." - -#: mod/admin.php:985 -msgid "Register policy" -msgstr "Política per a registrar" - -#: mod/admin.php:986 -msgid "Maximum Daily Registrations" -msgstr "Registres Màxims Diaris" - -#: mod/admin.php:986 -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 "Si es permet el registre, això ajusta el nombre màxim de nous usuaris a acceptar diariament. Si el registre esta tancat, aquest ajust no te efectes." - -#: mod/admin.php:987 -msgid "Register text" -msgstr "Text al registrar" - -#: mod/admin.php:987 -msgid "Will be displayed prominently on the registration page." -msgstr "Serà mostrat de forma preminent a la pàgina durant el procés de registre." - -#: mod/admin.php:988 -msgid "Accounts abandoned after x days" -msgstr "Comptes abandonats després de x dies" - -#: mod/admin.php:988 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "No gastará recursos del sistema creant enquestes des de llocs externos per a comptes abandonats. Introdueixi 0 per a cap límit temporal." - -#: mod/admin.php:989 -msgid "Allowed friend domains" -msgstr "Dominis amics permesos" - -#: mod/admin.php:989 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Llista de dominis separada per comes, de adreçes de correu que són permeses per establir amistats. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis." - -#: mod/admin.php:990 -msgid "Allowed email domains" -msgstr "Dominis de correu permesos" - -#: mod/admin.php:990 -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 "Llista de dominis separada per comes, de adreçes de correu que són permeses per registrtar-se. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis." - -#: mod/admin.php:991 -msgid "Block public" -msgstr "Bloqueig públic" - -#: mod/admin.php:991 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Bloqueja l'accés públic a qualsevol pàgina del lloc fins que t'hagis identificat." - -#: mod/admin.php:992 -msgid "Force publish" -msgstr "Forçar publicació" - -#: mod/admin.php:992 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Obliga a que tots el perfils en aquest lloc siguin mostrats en el directori del lloc." - -#: mod/admin.php:993 -msgid "Global directory URL" -msgstr "" - -#: mod/admin.php:993 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "" - -#: mod/admin.php:994 -msgid "Allow threaded items" -msgstr "Permetre fils als articles" - -#: mod/admin.php:994 -msgid "Allow infinite level threading for items on this site." -msgstr "Permet un nivell infinit de fils per a articles en aquest lloc." - -#: mod/admin.php:995 -msgid "Private posts by default for new users" -msgstr "Els enviaments dels nous usuaris seran privats per defecte." - -#: mod/admin.php:995 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Canviar els permisos d'enviament per defecte per a tots els nous membres a grup privat en lloc de públic." - -#: mod/admin.php:996 -msgid "Don't include post content in email notifications" -msgstr "No incloure el assumpte a les notificacions per correu electrónic" - -#: mod/admin.php:996 -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 "No incloure assumpte d'un enviament/comentari/missatge_privat/etc. Als correus electronics que envii fora d'aquest lloc, com a mesura de privacitat. " - -#: mod/admin.php:997 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Deshabilita el accés públic als complements llistats al menu d'aplicacions" - -#: mod/admin.php:997 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Marcant això restringiras els complements llistats al menú d'aplicacions al membres" - -#: mod/admin.php:998 -msgid "Don't embed private images in posts" -msgstr "No incrustar imatges en missatges privats" - -#: mod/admin.php:998 -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 "No reemplaçar les fotos privades hospedades localment en missatges amb una còpia de l'imatge embeguda. Això vol dir que els contactes que rebin el missatge contenint fotos privades s'ha d'autenticar i carregar cada imatge, amb el que pot suposar bastant temps." - -#: mod/admin.php:999 -msgid "Allow Users to set remote_self" -msgstr "" - -#: mod/admin.php:999 -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 "" - -#: mod/admin.php:1000 -msgid "Block multiple registrations" -msgstr "Bloquejar multiples registracions" - -#: mod/admin.php:1000 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Inhabilita als usuaris el crear comptes adicionals per a usar com a pàgines." - -#: mod/admin.php:1001 -msgid "OpenID support" -msgstr "Suport per a OpenID" - -#: mod/admin.php:1001 -msgid "OpenID support for registration and logins." -msgstr "Suport per a registre i validació a OpenID." - -#: mod/admin.php:1002 -msgid "Fullname check" -msgstr "Comprobació de nom complet" - -#: mod/admin.php:1002 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Obliga els usuaris a col·locar un espai en blanc entre nom i cognoms, com a mesura antispam" - -#: mod/admin.php:1003 -msgid "UTF-8 Regular expressions" -msgstr "expresions regulars UTF-8" - -#: mod/admin.php:1003 -msgid "Use PHP UTF8 regular expressions" -msgstr "Empri expresions regulars de PHP amb format UTF8" - -#: mod/admin.php:1004 -msgid "Community Page Style" -msgstr "" - -#: mod/admin.php:1004 -msgid "" -"Type of community page to show. 'Global community' shows every public " -"posting from an open distributed network that arrived on this server." -msgstr "" - -#: mod/admin.php:1005 -msgid "Posts per user on community page" -msgstr "" - -#: mod/admin.php:1005 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "" - -#: mod/admin.php:1006 -msgid "Enable OStatus support" -msgstr "Activa el suport per a OStatus" - -#: mod/admin.php:1006 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "" - -#: mod/admin.php:1007 -msgid "OStatus conversation completion interval" -msgstr "Interval de conclusió de la conversació a OStatus" - -#: mod/admin.php:1007 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "Com de sovint el sondejador ha de comprovar les noves conversacions entrades a OStatus? Això pot implicar una gran càrrega de treball." - -#: mod/admin.php:1008 -msgid "Only import OStatus threads from our contacts" -msgstr "" - -#: mod/admin.php:1008 -msgid "" -"Normally we import every content from our OStatus contacts. With this option" -" we only store threads that are started by a contact that is known on our " -"system." -msgstr "" - -#: mod/admin.php:1009 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "" - -#: mod/admin.php:1011 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "" - -#: mod/admin.php:1012 -msgid "Enable Diaspora support" -msgstr "Habilitar suport per Diaspora" - -#: mod/admin.php:1012 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Proveeix compatibilitat integrada amb la xarxa Diaspora" - -#: mod/admin.php:1013 -msgid "Only allow Friendica contacts" -msgstr "Només permetre contactes de Friendica" - -#: mod/admin.php:1013 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Tots els contactes " - -#: mod/admin.php:1014 -msgid "Verify SSL" -msgstr "Verificar SSL" - -#: mod/admin.php:1014 -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 "Si ho vols, pots comprovar el certificat estrictament. Això farà que no puguis connectar (de cap manera) amb llocs amb certificats SSL autosignats." - -#: mod/admin.php:1015 -msgid "Proxy user" -msgstr "proxy d'usuari" - -#: mod/admin.php:1016 -msgid "Proxy URL" -msgstr "URL del proxy" - -#: mod/admin.php:1017 -msgid "Network timeout" -msgstr "Temps excedit a la xarxa" - -#: mod/admin.php:1017 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valor en segons. Canviat a 0 es sense límits (no recomenat)" - -#: mod/admin.php:1018 -msgid "Delivery interval" -msgstr "Interval d'entrega" - -#: mod/admin.php:1018 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Retardar processos d'entrega, en segon pla, en aquesta quantitat de segons, per reduir la càrrega del sistema . Recomanem : 4-5 per als servidors compartits , 2-3 per a servidors privats virtuals . 0-1 per els grans servidors dedicats." - -#: mod/admin.php:1019 -msgid "Poll interval" -msgstr "Interval entre sondejos" - -#: mod/admin.php:1019 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Endarrerir els processos de sondeig en segon pla durant aquest període, en segons, per tal de reduir la càrrega de treball del sistema, Si s'empra 0, s'utilitza l'interval d'entregues. " - -#: mod/admin.php:1020 -msgid "Maximum Load Average" -msgstr "Càrrega Màxima Sostinguda" - -#: mod/admin.php:1020 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Càrrega màxima del sistema abans d'apaçar els processos d'entrega i sondeig - predeterminat a 50." - -#: mod/admin.php:1021 -msgid "Maximum Load Average (Frontend)" -msgstr "" - -#: mod/admin.php:1021 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "" - -#: mod/admin.php:1022 -msgid "Maximum table size for optimization" -msgstr "" - -#: mod/admin.php:1022 -msgid "" -"Maximum table size (in MB) for the automatic optimization - default 100 MB. " -"Enter -1 to disable it." -msgstr "" - -#: mod/admin.php:1023 -msgid "Minimum level of fragmentation" -msgstr "" - -#: mod/admin.php:1023 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "" - -#: mod/admin.php:1025 -msgid "Periodical check of global contacts" -msgstr "" - -#: mod/admin.php:1025 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "" - -#: mod/admin.php:1026 -msgid "Days between requery" -msgstr "" - -#: mod/admin.php:1026 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "" - -#: mod/admin.php:1027 -msgid "Discover contacts from other servers" -msgstr "" - -#: mod/admin.php:1027 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." -msgstr "" - -#: mod/admin.php:1028 -msgid "Timeframe for fetching global contacts" -msgstr "" - -#: mod/admin.php:1028 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "" - -#: mod/admin.php:1029 -msgid "Search the local directory" -msgstr "" - -#: mod/admin.php:1029 -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 "" - -#: mod/admin.php:1031 -msgid "Publish server information" -msgstr "" - -#: mod/admin.php:1031 -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 "" - -#: mod/admin.php:1033 -msgid "Use MySQL full text engine" -msgstr "Emprar el motor de text complet de MySQL" - -#: mod/admin.php:1033 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Activa el motos de text complet. Accelera les cerques pero només pot cercar per quatre o més caracters." - -#: mod/admin.php:1034 -msgid "Suppress Language" -msgstr "" - -#: mod/admin.php:1034 -msgid "Suppress language information in meta information about a posting." -msgstr "" - -#: mod/admin.php:1035 -msgid "Suppress Tags" -msgstr "" - -#: mod/admin.php:1035 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" - -#: mod/admin.php:1036 -msgid "Path to item cache" -msgstr "Camí cap a la caché de l'article" - -#: mod/admin.php:1036 -msgid "The item caches buffers generated bbcode and external images." -msgstr "" - -#: mod/admin.php:1037 -msgid "Cache duration in seconds" -msgstr "Duració de la caché en segons" - -#: mod/admin.php:1037 -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 "" - -#: mod/admin.php:1038 -msgid "Maximum numbers of comments per post" -msgstr "" - -#: mod/admin.php:1038 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: mod/admin.php:1039 -msgid "Path for lock file" -msgstr "Camí per a l'arxiu bloquejat" - -#: mod/admin.php:1039 -msgid "" -"The lock file is used to avoid multiple pollers at one time. Only define a " -"folder here." -msgstr "" - -#: mod/admin.php:1040 -msgid "Temp path" -msgstr "Camí a carpeta temporal" - -#: mod/admin.php:1040 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "" - -#: mod/admin.php:1041 -msgid "Base path to installation" -msgstr "Trajectoria base per a instal·lar" - -#: mod/admin.php:1041 -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 "" - -#: mod/admin.php:1042 -msgid "Disable picture proxy" -msgstr "" - -#: mod/admin.php:1042 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "" - -#: mod/admin.php:1043 -msgid "Enable old style pager" -msgstr "" - -#: mod/admin.php:1043 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "" - -#: mod/admin.php:1044 -msgid "Only search in tags" -msgstr "" - -#: mod/admin.php:1044 -msgid "On large systems the text search can slow down the system extremely." -msgstr "" - -#: mod/admin.php:1046 -msgid "New base url" -msgstr "" - -#: mod/admin.php:1046 -msgid "" -"Change base url for this server. Sends relocate message to all DFRN contacts" -" of all users." -msgstr "" - -#: mod/admin.php:1048 -msgid "RINO Encryption" -msgstr "" - -#: mod/admin.php:1048 -msgid "Encryption layer between nodes." -msgstr "" - -#: mod/admin.php:1049 -msgid "Embedly API key" -msgstr "" - -#: mod/admin.php:1049 -msgid "" -"Embedly is used to fetch additional data for " -"web pages. This is an optional parameter." -msgstr "" - -#: mod/admin.php:1051 -msgid "Enable 'worker' background processing" -msgstr "" - -#: mod/admin.php:1051 -msgid "" -"The worker background processing limits the number of parallel background " -"jobs to a maximum number and respects the system load." -msgstr "" - -#: mod/admin.php:1052 -msgid "Maximum number of parallel workers" -msgstr "" - -#: mod/admin.php:1052 -msgid "" -"On shared hosters set this to 2. On larger systems, values of 10 are great. " -"Default value is 4." -msgstr "" - -#: mod/admin.php:1053 -msgid "Don't use 'proc_open' with the worker" -msgstr "" - -#: mod/admin.php:1053 -msgid "" -"Enable this if your system doesn't allow the use of 'proc_open'. This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of poller calls in your crontab." -msgstr "" - -#: mod/admin.php:1054 -msgid "Enable fastlane" -msgstr "" - -#: mod/admin.php:1054 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes" -" with higher priority are blocked by processes of lower priority." -msgstr "" - -#: mod/admin.php:1055 -msgid "Enable frontend worker" -msgstr "" - -#: mod/admin.php:1055 -msgid "" -"When enabled the Worker process is triggered when backend access is " -"performed (e.g. messages being delivered). On smaller sites you might want " -"to call yourdomain.tld/worker on a regular basis via an external cron job. " -"You should only enable this option if you cannot utilize cron/scheduled jobs" -" on your server. The worker background process needs to be activated for " -"this." -msgstr "" - -#: mod/admin.php:1084 -msgid "Update has been marked successful" -msgstr "L'actualització ha estat marcada amb èxit" - -#: mod/admin.php:1092 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "" - -#: mod/admin.php:1095 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "" - -#: mod/admin.php:1107 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "" - -#: mod/admin.php:1110 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'actualització de %s es va aplicar amb èxit." - -#: mod/admin.php:1114 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'actualització de %s no ha retornat el seu estatus. Es desconeix si ha estat amb èxit." - -#: mod/admin.php:1116 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" - -#: mod/admin.php:1135 -msgid "No failed updates." -msgstr "No hi ha actualitzacions fallides." - -#: mod/admin.php:1136 -msgid "Check database structure" -msgstr "" - -#: mod/admin.php:1141 -msgid "Failed Updates" -msgstr "Actualitzacions Fallides" - -#: mod/admin.php:1142 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Això no inclou actualitzacions anteriors a 1139, raó per la que no ha retornat l'estatus." - -#: mod/admin.php:1143 -msgid "Mark success (if update was manually applied)" -msgstr "Marcat am èxit (si l'actualització es va fer manualment)" - -#: mod/admin.php:1144 -msgid "Attempt to execute this update step automatically" -msgstr "Intentant executar aquest pas d'actualització automàticament" - -#: mod/admin.php:1178 +#: src/Model/User.php:1543 #, php-format msgid "" "\n" "\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." +"\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 "" -#: mod/admin.php:1181 +#: src/Model/User.php:1562 +#, php-format +msgid "Registration at %s" +msgstr "" + +#: src/Model/User.php:1586 +#, 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 "" + +#: src/Model/User.php:1594 #, php-format msgid "" "\n" "\t\t\tThe login details are as follows:\n" "\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\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" @@ -7364,1538 +3842,8597 @@ msgid "" "\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\tThank you and welcome to %4$s." +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" +"\n" +"\t\t\tThank you and welcome to %2$s." msgstr "" -#: mod/admin.php:1225 +#: src/Module/Admin/Addons/Details.php:65 +msgid "Addon not found." +msgstr "" + +#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 #, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s usuari bloquejar/desbloquejar" -msgstr[1] "%s usuaris bloquejar/desbloquejar" +msgid "Addon %s disabled." +msgstr "" -#: mod/admin.php:1232 +#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 #, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s usuari esborrat" -msgstr[1] "%s usuaris esborrats" - -#: mod/admin.php:1279 -#, php-format -msgid "User '%s' deleted" -msgstr "Usuari %s' esborrat" - -#: mod/admin.php:1287 -#, php-format -msgid "User '%s' unblocked" -msgstr "Usuari %s' desbloquejat" - -#: mod/admin.php:1287 -#, php-format -msgid "User '%s' blocked" -msgstr "L'usuari '%s' és bloquejat" - -#: mod/admin.php:1396 mod/admin.php:1422 -msgid "Register date" -msgstr "Data de registre" - -#: mod/admin.php:1396 mod/admin.php:1422 -msgid "Last login" -msgstr "Últim accés" - -#: mod/admin.php:1396 mod/admin.php:1422 -msgid "Last item" -msgstr "Últim element" - -#: mod/admin.php:1405 -msgid "Add User" +msgid "Addon %s enabled." msgstr "" -#: mod/admin.php:1406 -msgid "select all" -msgstr "Seleccionar tot" - -#: mod/admin.php:1407 -msgid "User registrations waiting for confirm" -msgstr "Registre d'usuari esperant confirmació" - -#: mod/admin.php:1408 -msgid "User waiting for permanent deletion" -msgstr "" - -#: mod/admin.php:1409 -msgid "Request date" -msgstr "Data de sol·licitud" - -#: mod/admin.php:1410 -msgid "No registrations." -msgstr "Sense registres." - -#: mod/admin.php:1411 -msgid "Note from the user" -msgstr "" - -#: mod/admin.php:1413 -msgid "Deny" -msgstr "Denegar" - -#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805 -#: mod/contacts.php:983 -msgid "Block" -msgstr "Bloquejar" - -#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805 -#: mod/contacts.php:983 -msgid "Unblock" -msgstr "Desbloquejar" - -#: mod/admin.php:1417 -msgid "Site admin" -msgstr "Administrador del lloc" - -#: mod/admin.php:1418 -msgid "Account expired" -msgstr "Compte expirat" - -#: mod/admin.php:1421 -msgid "New User" -msgstr "" - -#: mod/admin.php:1422 -msgid "Deleted since" -msgstr "" - -#: mod/admin.php:1427 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Els usuaris seleccionats seran esborrats!\\n\\nqualsevol cosa que aquests usuaris hagin publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?" - -#: mod/admin.php:1428 -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 "L'usuari {0} s'eliminarà!\\n\\nQualsevol cosa que aquest usuari hagi publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?" - -#: mod/admin.php:1438 -msgid "Name of the new user." -msgstr "" - -#: mod/admin.php:1439 -msgid "Nickname" -msgstr "" - -#: mod/admin.php:1439 -msgid "Nickname of the new user." -msgstr "" - -#: mod/admin.php:1440 -msgid "Email address of the new user." -msgstr "" - -#: mod/admin.php:1483 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s deshabilitat." - -#: mod/admin.php:1487 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s habilitat." - -#: mod/admin.php:1498 mod/admin.php:1734 +#: src/Module/Admin/Addons/Details.php:88 +#: src/Module/Admin/Themes/Details.php:46 msgid "Disable" msgstr "Deshabilitar" -#: mod/admin.php:1500 mod/admin.php:1736 +#: src/Module/Admin/Addons/Details.php:91 +#: src/Module/Admin/Themes/Details.php:49 msgid "Enable" msgstr "Habilitar" -#: mod/admin.php:1523 mod/admin.php:1781 +#: src/Module/Admin/Addons/Details.php:111 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 +#: src/Module/Admin/Themes/Details.php:90 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 +msgid "Administration" +msgstr "Administració" + +#: src/Module/Admin/Addons/Details.php:112 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:132 +msgid "Addons" +msgstr "" + +#: src/Module/Admin/Addons/Details.php:113 +#: src/Module/Admin/Themes/Details.php:92 msgid "Toggle" msgstr "Canviar" -#: mod/admin.php:1531 mod/admin.php:1790 +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 msgid "Author: " msgstr "Autor:" -#: mod/admin.php:1532 mod/admin.php:1791 +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 msgid "Maintainer: " msgstr "Responsable:" -#: mod/admin.php:1584 -msgid "Reload active plugins" +#: src/Module/Admin/Addons/Index.php:42 +msgid "Addons reloaded" msgstr "" -#: mod/admin.php:1589 +#: src/Module/Admin/Addons/Index.php:53 +#, php-format +msgid "Addon %s failed to install." +msgstr "" + +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Desa la configuració" + +#: src/Module/Admin/Addons/Index.php:70 +msgid "Reload active addons" +msgstr "" + +#: src/Module/Admin/Addons/Index.php:74 #, php-format msgid "" -"There are currently no plugins available on your node. You can find the " -"official plugin repository at %1$s and might find other interesting plugins " -"in the open plugin registry at %2$s" +"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 "" -#: mod/admin.php:1694 -msgid "No themes found." -msgstr "No s'ha trobat temes." +#: src/Module/Admin/DBSync.php:51 +msgid "Update has been marked successful" +msgstr "L'actualització ha estat marcada amb èxit" -#: mod/admin.php:1772 -msgid "Screenshot" -msgstr "Captura de pantalla" - -#: mod/admin.php:1832 -msgid "Reload active themes" -msgstr "" - -#: mod/admin.php:1837 +#: src/Module/Admin/DBSync.php:59 #, php-format -msgid "No themes found on the system. They should be paced in %1$s" +msgid "Database structure update %s was successfully applied." msgstr "" -#: mod/admin.php:1838 -msgid "[Experimental]" -msgstr "[Experimental]" +#: src/Module/Admin/DBSync.php:61 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" -#: mod/admin.php:1839 -msgid "[Unsupported]" -msgstr "[No soportat]" +#: src/Module/Admin/DBSync.php:76 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "" -#: mod/admin.php:1863 -msgid "Log settings updated." -msgstr "Configuració del registre actualitzada." +#: src/Module/Admin/DBSync.php:78 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'actualització de %s es va aplicar amb èxit." -#: mod/admin.php:1895 +#: src/Module/Admin/DBSync.php:81 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'actualització de %s no ha retornat el seu estatus. Es desconeix si ha estat amb èxit." + +#: src/Module/Admin/DBSync.php:84 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: src/Module/Admin/DBSync.php:105 +msgid "No failed updates." +msgstr "No hi ha actualitzacions fallides." + +#: src/Module/Admin/DBSync.php:106 +msgid "Check database structure" +msgstr "" + +#: src/Module/Admin/DBSync.php:110 +msgid "Failed Updates" +msgstr "Actualitzacions Fallides" + +#: src/Module/Admin/DBSync.php:111 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Això no inclou actualitzacions anteriors a 1139, raó per la que no ha retornat l'estatus." + +#: src/Module/Admin/DBSync.php:112 +msgid "Mark success (if update was manually applied)" +msgstr "Marcat am èxit (si l'actualització es va fer manualment)" + +#: src/Module/Admin/DBSync.php:113 +msgid "Attempt to execute this update step automatically" +msgstr "Intentant executar aquest pas d'actualització automàticament" + +#: src/Module/Admin/Features.php:76 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: src/Module/Admin/Features.php:84 +msgid "Manage Additional Features" +msgstr "" + +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 +msgid "Other" +msgstr "Altres" + +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 +msgid "unknown" +msgstr "" + +#: src/Module/Admin/Federation.php:187 +#, php-format +msgid "%2$s total system" +msgid_plural "%2$s total systems" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:188 +#, php-format +msgid "%2$s active user last month" +msgid_plural "%2$s active users last month" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:189 +#, php-format +msgid "%2$s active user last six months" +msgid_plural "%2$s active users last six months" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:190 +#, php-format +msgid "%2$s registered user" +msgid_plural "%2$s registered users" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:191 +#, php-format +msgid "%2$s locally created post or comment" +msgid_plural "%2$s locally created posts and comments" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:194 +#, php-format +msgid "%2$s post per user" +msgid_plural "%2$s posts per user" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:199 +#, php-format +msgid "%2$s user per system" +msgid_plural "%2$s users per system" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:209 +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:215 src/Module/BaseAdmin.php:87 +msgid "Federation Statistics" +msgstr "" + +#: src/Module/Admin/Federation.php:219 +#, php-format +msgid "" +"Currently this node is aware of %2$s node (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgid_plural "" +"Currently this node is aware of %2$s nodes (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Logs/Settings.php:47 +#, php-format +msgid "The logfile '%s' is not writable. No logging possible" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:77 msgid "PHP log currently enabled." msgstr "" -#: mod/admin.php:1897 +#: src/Module/Admin/Logs/Settings.php:79 msgid "PHP log currently disabled." msgstr "" -#: mod/admin.php:1906 +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 +msgid "Logs" +msgstr "Registres" + +#: src/Module/Admin/Logs/Settings.php:88 msgid "Clear" msgstr "Netejar" -#: mod/admin.php:1911 +#: src/Module/Admin/Logs/Settings.php:91 msgid "Enable Debugging" msgstr "Habilitar Depuració" -#: mod/admin.php:1912 +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:92 msgid "Log file" msgstr "Arxiu de registre" -#: mod/admin.php:1912 +#: src/Module/Admin/Logs/Settings.php:92 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Ha de tenir permisos d'escriptura pel servidor web. En relació amb el seu directori Friendica de nivell superior." -#: mod/admin.php:1913 +#: src/Module/Admin/Logs/Settings.php:93 msgid "Log level" msgstr "Nivell de transcripció" -#: mod/admin.php:1916 +#: src/Module/Admin/Logs/Settings.php:95 msgid "PHP logging" msgstr "" -#: mod/admin.php:1917 +#: src/Module/Admin/Logs/Settings.php:96 msgid "" -"To enable logging of PHP errors and warnings you can add the following to " -"the .htconfig.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 " +"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 "" -#: mod/admin.php:2045 +#: src/Module/Admin/Logs/View.php:70 #, php-format -msgid "Lock feature %s" +msgid "" +"Error trying to open %1$s log file.
    Check to see if " +"file %1$s exist and is readable." msgstr "" -#: mod/admin.php:2053 -msgid "Manage Additional Features" +#: src/Module/Admin/Logs/View.php:79 +#, php-format +msgid "" +"Couldn't open %1$s log file.
    Check to see if file %1$s " +"is readable." msgstr "" -#: mod/contacts.php:128 +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 +msgid "View Logs" +msgstr "" + +#: src/Module/Admin/Logs/View.php:87 +msgid "Search in logs" +msgstr "" + +#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Notifications/Notifications.php:140 +msgid "Show all" +msgstr "" + +#: src/Module/Admin/Logs/View.php:89 +msgid "Date" +msgstr "" + +#: src/Module/Admin/Logs/View.php:90 +msgid "Level" +msgstr "" + +#: src/Module/Admin/Logs/View.php:91 +msgid "Context" +msgstr "" + +#: src/Module/Admin/Logs/View.php:93 +msgid "ALL" +msgstr "" + +#: src/Module/Admin/Logs/View.php:94 +msgid "View details" +msgstr "" + +#: src/Module/Admin/Logs/View.php:95 +msgid "Click to view details" +msgstr "" + +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Detalls del esdeveniment" + +#: src/Module/Admin/Logs/View.php:97 +msgid "Data" +msgstr "" + +#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Debug/ActivityPubConversion.php:57 +msgid "Source" +msgstr "" + +#: src/Module/Admin/Logs/View.php:99 +msgid "File" +msgstr "" + +#: src/Module/Admin/Logs/View.php:100 +msgid "Line" +msgstr "" + +#: src/Module/Admin/Logs/View.php:101 +msgid "Function" +msgstr "" + +#: src/Module/Admin/Logs/View.php:102 +msgid "UID" +msgstr "" + +#: src/Module/Admin/Logs/View.php:103 +msgid "Process ID" +msgstr "" + +#: src/Module/Admin/Logs/View.php:104 +msgid "Close" +msgstr "" + +#: src/Module/Admin/Queue.php:50 +msgid "Inspect Deferred Worker Queue" +msgstr "" + +#: 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 "" + +#: src/Module/Admin/Queue.php:54 +msgid "Inspect Worker Queue" +msgstr "" + +#: 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 "" + +#: src/Module/Admin/Queue.php:75 +msgid "ID" +msgstr "" + +#: src/Module/Admin/Queue.php:76 +msgid "Command" +msgstr "" + +#: src/Module/Admin/Queue.php:77 +msgid "Job Parameters" +msgstr "" + +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "" + +#: src/Module/Admin/Queue.php:79 +msgid "Priority" +msgstr "" + +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" +msgstr "" + +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:178 +msgid "No special theme for mobile devices" +msgstr "No hi ha un tema específic per a mòbil" + +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Experimental)" + +#: src/Module/Admin/Site.php:342 +msgid "No community page" +msgstr "" + +#: src/Module/Admin/Site.php:343 +msgid "No community page for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:344 +msgid "Public postings from users of this site" +msgstr "" + +#: src/Module/Admin/Site.php:345 +msgid "Public postings from the federated network" +msgstr "" + +#: src/Module/Admin/Site.php:346 +msgid "Public postings from local users and the federated network" +msgstr "" + +#: src/Module/Admin/Site.php:352 +msgid "Multi user instance" +msgstr "Instancia multiusuari" + +#: src/Module/Admin/Site.php:375 +msgid "Closed" +msgstr "Tancat" + +#: src/Module/Admin/Site.php:376 +msgid "Requires approval" +msgstr "Requereix aprovació" + +#: src/Module/Admin/Site.php:377 +msgid "Open" +msgstr "Obert" + +#: src/Module/Admin/Site.php:381 +msgid "Don't check" +msgstr "" + +#: src/Module/Admin/Site.php:382 +msgid "check the stable version" +msgstr "" + +#: src/Module/Admin/Site.php:383 +msgid "check the development version" +msgstr "" + +#: src/Module/Admin/Site.php:387 +msgid "none" +msgstr "" + +#: src/Module/Admin/Site.php:388 +msgid "Local contacts" +msgstr "" + +#: src/Module/Admin/Site.php:389 +msgid "Interactors" +msgstr "" + +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 +msgid "Site" +msgstr "Lloc" + +#: src/Module/Admin/Site.php:400 +msgid "General Information" +msgstr "" + +#: src/Module/Admin/Site.php:402 +msgid "Republish users to directory" +msgstr "" + +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 +msgid "Registration" +msgstr "Procés de Registre" + +#: src/Module/Admin/Site.php:404 +msgid "File upload" +msgstr "Fitxer carregat" + +#: src/Module/Admin/Site.php:405 +msgid "Policies" +msgstr "Polítiques" + +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "Avançat" + +#: src/Module/Admin/Site.php:407 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: src/Module/Admin/Site.php:408 +msgid "Performance" +msgstr "Rendiment" + +#: src/Module/Admin/Site.php:409 +msgid "Worker" +msgstr "" + +#: src/Module/Admin/Site.php:410 +msgid "Message Relay" +msgstr "" + +#: src/Module/Admin/Site.php:411 +msgid "" +"Use the command \"console relay\" in the command line to add or remove " +"relays." +msgstr "" + +#: src/Module/Admin/Site.php:412 +msgid "The system is not subscribed to any relays at the moment." +msgstr "" + +#: src/Module/Admin/Site.php:413 +msgid "The system is currently subscribed to the following relays:" +msgstr "" + +#: src/Module/Admin/Site.php:415 +msgid "Relocate Node" +msgstr "" + +#: src/Module/Admin/Site.php:416 +msgid "" +"Relocating your node enables you to change the DNS domain of this node and " +"keep all the existing users and posts. This process takes a while and can " +"only be started from the relocate console command like this:" +msgstr "" + +#: src/Module/Admin/Site.php:417 +msgid "(Friendica directory)# bin/console relocate https://newdomain.com" +msgstr "" + +#: src/Module/Admin/Site.php:420 +msgid "Site name" +msgstr "Nom del lloc" + +#: src/Module/Admin/Site.php:421 +msgid "Sender Email" +msgstr "" + +#: src/Module/Admin/Site.php:421 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: src/Module/Admin/Site.php:422 +msgid "Name of the system actor" +msgstr "" + +#: src/Module/Admin/Site.php:422 +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:423 +msgid "Banner/Logo" +msgstr "Senyera/Logo" + +#: src/Module/Admin/Site.php:424 +msgid "Email Banner/Logo" +msgstr "" + +#: src/Module/Admin/Site.php:425 +msgid "Shortcut icon" +msgstr "" + +#: src/Module/Admin/Site.php:425 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: src/Module/Admin/Site.php:426 +msgid "Touch icon" +msgstr "" + +#: src/Module/Admin/Site.php:426 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: src/Module/Admin/Site.php:427 +msgid "Additional Info" +msgstr "" + +#: src/Module/Admin/Site.php:427 +#, 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:428 +msgid "System language" +msgstr "Idioma del Sistema" + +#: src/Module/Admin/Site.php:429 +msgid "System theme" +msgstr "Tema del sistema" + +#: src/Module/Admin/Site.php:429 +#, php-format +msgid "" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "" + +#: src/Module/Admin/Site.php:430 +msgid "Mobile system theme" +msgstr "Tema per a mòbil" + +#: src/Module/Admin/Site.php:430 +msgid "Theme for mobile devices" +msgstr "Tema per a aparells mòbils" + +#: src/Module/Admin/Site.php:431 +msgid "Force SSL" +msgstr "" + +#: src/Module/Admin/Site.php:431 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" + +#: src/Module/Admin/Site.php:432 +msgid "Show help entry from navigation menu" +msgstr "" + +#: src/Module/Admin/Site.php:432 +msgid "" +"Displays the menu entry for the Help pages from the navigation menu. It is " +"always accessible by calling /help directly." +msgstr "" + +#: src/Module/Admin/Site.php:433 +msgid "Single user instance" +msgstr "Instancia per a un únic usuari" + +#: src/Module/Admin/Site.php:433 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Fer aquesta instancia multi-usuari o mono-usuari per al usuari anomenat" + +#: src/Module/Admin/Site.php:435 +msgid "Maximum image size" +msgstr "Mida màxima de les imatges" + +#: src/Module/Admin/Site.php:435 +#, php-format +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "" + +#: src/Module/Admin/Site.php:439 +msgid "Maximum image length" +msgstr "Maxima longitud d'imatge" + +#: src/Module/Admin/Site.php:439 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Longitud màxima en píxels del costat més llarg de la imatge carregada. Per defecte es -1, que significa sense límits" + +#: src/Module/Admin/Site.php:440 +msgid "JPEG image quality" +msgstr "Qualitat per a la imatge JPEG" + +#: src/Module/Admin/Site.php:440 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Els JPEGs pujats seran guardats amb la qualitat que ajustis de [0-100]. Per defecte es 100 màxima qualitat." + +#: src/Module/Admin/Site.php:442 +msgid "Register policy" +msgstr "Política per a registrar" + +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "" + +#: src/Module/Admin/Site.php:444 +msgid "Maximum Daily Registrations" +msgstr "Registres Màxims Diaris" + +#: src/Module/Admin/Site.php:444 +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 "Si es permet el registre, això ajusta el nombre màxim de nous usuaris a acceptar diariament. Si el registre esta tancat, aquest ajust no te efectes." + +#: src/Module/Admin/Site.php:445 +msgid "Register text" +msgstr "Text al registrar" + +#: src/Module/Admin/Site.php:445 +msgid "" +"Will be displayed prominently on the registration page. You can use BBCode " +"here." +msgstr "Es mostrarà de manera destacada a la pàgina de registre. Podeu utilitzar BBCode aquí." + +#: src/Module/Admin/Site.php:446 +msgid "Forbidden Nicknames" +msgstr "Noms prohibits" + +#: src/Module/Admin/Site.php:446 +msgid "" +"Comma separated list of nicknames that are forbidden from registration. " +"Preset is a list of role names according RFC 2142." +msgstr "Llista de sobrenoms separats per comes que tenen prohibit el registre. Els presets són una llista de noms de rol segonsRFC 2142." + +#: src/Module/Admin/Site.php:447 +msgid "Accounts abandoned after x days" +msgstr "Comptes abandonats després de x dies" + +#: src/Module/Admin/Site.php:447 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "No gastará recursos del sistema creant enquestes des de llocs externos per a comptes abandonats. Introdueixi 0 per a cap límit temporal." + +#: src/Module/Admin/Site.php:448 +msgid "Allowed friend domains" +msgstr "Dominis amics permesos" + +#: src/Module/Admin/Site.php:448 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Llista de dominis separada per comes, de adreçes de correu que són permeses per establir amistats. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis." + +#: src/Module/Admin/Site.php:449 +msgid "Allowed email domains" +msgstr "Dominis de correu permesos" + +#: src/Module/Admin/Site.php:449 +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 "Llista de dominis separada per comes, de adreçes de correu que són permeses per registrtar-se. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis." + +#: src/Module/Admin/Site.php:450 +msgid "No OEmbed rich content" +msgstr "" + +#: src/Module/Admin/Site.php:450 +msgid "" +"Don't show the rich content (e.g. embedded PDF), except from the domains " +"listed below." +msgstr "" + +#: src/Module/Admin/Site.php:451 +msgid "Trusted third-party domains" +msgstr "" + +#: src/Module/Admin/Site.php:451 +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:452 +msgid "Block public" +msgstr "Bloqueig públic" + +#: src/Module/Admin/Site.php:452 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Bloqueja l'accés públic a qualsevol pàgina del lloc fins que t'hagis identificat." + +#: src/Module/Admin/Site.php:453 +msgid "Force publish" +msgstr "Forçar publicació" + +#: src/Module/Admin/Site.php:453 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Obliga a que tots el perfils en aquest lloc siguin mostrats en el directori del lloc." + +#: src/Module/Admin/Site.php:453 +msgid "Enabling this may violate privacy laws like the GDPR" +msgstr "" + +#: src/Module/Admin/Site.php:454 +msgid "Global directory URL" +msgstr "" + +#: src/Module/Admin/Site.php:454 +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:455 +msgid "Private posts by default for new users" +msgstr "Els enviaments dels nous usuaris seran privats per defecte." + +#: src/Module/Admin/Site.php:455 +msgid "" +"Set default post permissions for all new members to the default privacy " +"circle rather than public." +msgstr "" + +#: src/Module/Admin/Site.php:456 +msgid "Don't include post content in email notifications" +msgstr "No incloure el assumpte a les notificacions per correu electrónic" + +#: src/Module/Admin/Site.php:456 +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 "No incloure assumpte d'un enviament/comentari/missatge_privat/etc. Als correus electronics que envii fora d'aquest lloc, com a mesura de privacitat. " + +#: src/Module/Admin/Site.php:457 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Deshabilita el accés públic als complements llistats al menu d'aplicacions" + +#: src/Module/Admin/Site.php:457 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Marcant això restringiras els complements llistats al menú d'aplicacions al membres" + +#: src/Module/Admin/Site.php:458 +msgid "Don't embed private images in posts" +msgstr "No incrustar imatges en missatges privats" + +#: src/Module/Admin/Site.php:458 +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 "No reemplaçar les fotos privades hospedades localment en missatges amb una còpia de l'imatge embeguda. Això vol dir que els contactes que rebin el missatge contenint fotos privades s'ha d'autenticar i carregar cada imatge, amb el que pot suposar bastant temps." + +#: src/Module/Admin/Site.php:459 +msgid "Explicit Content" +msgstr "" + +#: src/Module/Admin/Site.php:459 +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 "" + +#: src/Module/Admin/Site.php:460 +msgid "Proxify external content" +msgstr "" + +#: src/Module/Admin/Site.php:460 +msgid "" +"Route external content via the proxy functionality. This is used for example" +" for some OEmbed accesses and in some other rare cases." +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "Cache contact avatars" +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "" +"Locally store the avatar pictures of the contacts. This uses a lot of " +"storage space but it increases the performance." +msgstr "" + +#: src/Module/Admin/Site.php:462 +msgid "Allow Users to set remote_self" +msgstr "" + +#: src/Module/Admin/Site.php:462 +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:463 +msgid "Enable multiple registrations" +msgstr "" + +#: src/Module/Admin/Site.php:463 +msgid "Enable users to register additional accounts for use as pages." +msgstr "" + +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID" +msgstr "" + +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID support for registration and logins." +msgstr "" + +#: src/Module/Admin/Site.php:465 +msgid "Enable Fullname check" +msgstr "" + +#: src/Module/Admin/Site.php:465 +msgid "" +"Enable check to only allow users to register with a space between the first " +"name and the last name in their full name." +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "" + +#: src/Module/Admin/Site.php:467 +msgid "Community pages for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:467 +msgid "" +"Which community pages should be available for visitors. Local users always " +"see both pages." +msgstr "" + +#: src/Module/Admin/Site.php:468 +msgid "Posts per user on community page" +msgstr "" + +#: src/Module/Admin/Site.php:468 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"\"Global Community\")" +msgstr "" + +#: src/Module/Admin/Site.php:470 +msgid "Enable Mail support" +msgstr "" + +#: src/Module/Admin/Site.php:470 +msgid "" +"Enable built-in mail support to poll IMAP folders and to reply via mail." +msgstr "" + +#: src/Module/Admin/Site.php:471 +msgid "" +"Mail support can't be enabled because the PHP IMAP module is not installed." +msgstr "" + +#: src/Module/Admin/Site.php:472 +msgid "Enable OStatus support" +msgstr "" + +#: src/Module/Admin/Site.php:472 +msgid "" +"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public." +msgstr "" + +#: src/Module/Admin/Site.php:474 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "" + +#: src/Module/Admin/Site.php:475 +msgid "Enable Diaspora support" +msgstr "Habilitar suport per Diaspora" + +#: src/Module/Admin/Site.php:475 +msgid "" +"Enable built-in Diaspora network compatibility for communicating with " +"diaspora servers." +msgstr "" + +#: src/Module/Admin/Site.php:476 +msgid "Verify SSL" +msgstr "Verificar SSL" + +#: src/Module/Admin/Site.php:476 +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 "Si ho vols, pots comprovar el certificat estrictament. Això farà que no puguis connectar (de cap manera) amb llocs amb certificats SSL autosignats." + +#: src/Module/Admin/Site.php:477 +msgid "Proxy user" +msgstr "proxy d'usuari" + +#: src/Module/Admin/Site.php:477 +msgid "User name for the proxy server." +msgstr "" + +#: src/Module/Admin/Site.php:478 +msgid "Proxy URL" +msgstr "URL del proxy" + +#: src/Module/Admin/Site.php:478 +msgid "" +"If you want to use a proxy server that Friendica should use to connect to " +"the network, put the URL of the proxy here." +msgstr "" + +#: src/Module/Admin/Site.php:479 +msgid "Network timeout" +msgstr "Temps excedit a la xarxa" + +#: src/Module/Admin/Site.php:479 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valor en segons. Canviat a 0 es sense límits (no recomenat)" + +#: src/Module/Admin/Site.php:480 +msgid "Maximum Load Average" +msgstr "Càrrega Màxima Sostinguda" + +#: src/Module/Admin/Site.php:480 +#, php-format +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default %d." +msgstr "" + +#: src/Module/Admin/Site.php:481 +msgid "Minimal Memory" +msgstr "" + +#: src/Module/Admin/Site.php:481 +msgid "" +"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "" + +#: src/Module/Admin/Site.php:482 +msgid "Periodically optimize tables" +msgstr "" + +#: src/Module/Admin/Site.php:482 +msgid "Periodically optimize tables like the cache and the workerqueue" +msgstr "" + +#: src/Module/Admin/Site.php:484 +msgid "Discover followers/followings from contacts" +msgstr "" + +#: src/Module/Admin/Site.php:484 +msgid "" +"If enabled, contacts are checked for their followers and following contacts." +msgstr "" + +#: src/Module/Admin/Site.php:485 +msgid "None - deactivated" +msgstr "" + +#: src/Module/Admin/Site.php:486 +msgid "" +"Local contacts - contacts of our local contacts are discovered for their " +"followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:487 +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:489 +msgid "Synchronize the contacts with the directory server" +msgstr "" + +#: src/Module/Admin/Site.php:489 +msgid "" +"if enabled, the system will check periodically for new contacts on the " +"defined directory server." +msgstr "" + +#: src/Module/Admin/Site.php:491 +msgid "Days between requery" +msgstr "" + +#: src/Module/Admin/Site.php:491 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: src/Module/Admin/Site.php:492 +msgid "Discover contacts from other servers" +msgstr "" + +#: src/Module/Admin/Site.php:492 +msgid "" +"Periodically query other servers for contacts. The system queries Friendica," +" Mastodon and Hubzilla servers." +msgstr "" + +#: src/Module/Admin/Site.php:493 +msgid "Search the local directory" +msgstr "" + +#: src/Module/Admin/Site.php:493 +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:495 +msgid "Publish server information" +msgstr "" + +#: src/Module/Admin/Site.php:495 +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 "" + +#: src/Module/Admin/Site.php:497 +msgid "Check upstream version" +msgstr "" + +#: src/Module/Admin/Site.php:497 +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:498 +msgid "Suppress Tags" +msgstr "" + +#: src/Module/Admin/Site.php:498 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: src/Module/Admin/Site.php:499 +msgid "Clean database" +msgstr "" + +#: src/Module/Admin/Site.php:499 +msgid "" +"Remove old remote items, orphaned database records and old content from some" +" other helper tables." +msgstr "" + +#: src/Module/Admin/Site.php:500 +msgid "Lifespan of remote items" +msgstr "" + +#: src/Module/Admin/Site.php:500 +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:501 +msgid "Lifespan of unclaimed items" +msgstr "" + +#: src/Module/Admin/Site.php:501 +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 "" + +#: src/Module/Admin/Site.php:502 +msgid "Lifespan of raw conversation data" +msgstr "" + +#: src/Module/Admin/Site.php:502 +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:503 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: src/Module/Admin/Site.php:503 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: src/Module/Admin/Site.php:504 +msgid "Maximum numbers of comments per post on the display page" +msgstr "" + +#: src/Module/Admin/Site.php:504 +msgid "" +"How many comments should be shown on the single view for each post? Default " +"value is 1000." +msgstr "" + +#: src/Module/Admin/Site.php:505 +msgid "Temp path" +msgstr "Camí a carpeta temporal" + +#: src/Module/Admin/Site.php:505 +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:506 +msgid "Only search in tags" +msgstr "" + +#: src/Module/Admin/Site.php:506 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "" + +#: src/Module/Admin/Site.php:507 +msgid "" +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "" + +#: src/Module/Admin/Site.php:509 +msgid "Maximum number of parallel workers" +msgstr "" + +#: src/Module/Admin/Site.php:509 +#, 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:510 +msgid "Enable fastlane" +msgstr "" + +#: src/Module/Admin/Site.php:510 +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:512 +msgid "Direct relay transfer" +msgstr "" + +#: src/Module/Admin/Site.php:512 +msgid "" +"Enables the direct transfer to other servers without using the relay servers" +msgstr "" + +#: src/Module/Admin/Site.php:513 +msgid "Relay scope" +msgstr "" + +#: src/Module/Admin/Site.php:513 +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:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Disabled" +msgstr "" + +#: src/Module/Admin/Site.php:513 +msgid "all" +msgstr "" + +#: src/Module/Admin/Site.php:513 +msgid "tags" +msgstr "" + +#: src/Module/Admin/Site.php:514 +msgid "Server tags" +msgstr "" + +#: src/Module/Admin/Site.php:514 +msgid "Comma separated list of tags for the \"tags\" subscription." +msgstr "" + +#: src/Module/Admin/Site.php:515 +msgid "Deny Server tags" +msgstr "" + +#: src/Module/Admin/Site.php:515 +msgid "Comma separated list of tags that are rejected." +msgstr "" + +#: src/Module/Admin/Site.php:516 +msgid "Allow user tags" +msgstr "" + +#: src/Module/Admin/Site.php:516 +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:519 +msgid "Start Relocation" +msgstr "" + +#: src/Module/Admin/Storage.php:46 +#, php-format +msgid "Storage backend, %s is invalid." +msgstr "" + +#: src/Module/Admin/Storage.php:73 +#, php-format +msgid "Storage backend %s error: %s" +msgstr "" + +#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +msgid "Invalid storage backend setting value." +msgstr "" + +#: src/Module/Admin/Storage.php:139 +msgid "Current Storage Backend" +msgstr "" + +#: src/Module/Admin/Storage.php:140 +msgid "Storage Configuration" +msgstr "" + +#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +msgid "Storage" +msgstr "" + +#: src/Module/Admin/Storage.php:143 +msgid "Save & Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:144 +msgid "Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:145 +msgid "Save & Reload" +msgstr "" + +#: src/Module/Admin/Storage.php:146 +msgid "This backend doesn't have custom settings" +msgstr "" + +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "" + +#: src/Module/Admin/Storage.php:150 +msgid "Database (legacy)" +msgstr "" + +#: src/Module/Admin/Summary.php:55 +#, php-format +msgid "Template engine (%s) error: %s" +msgstr "" + +#: src/Module/Admin/Summary.php:59 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"bin/console.php dbstructure toinnodb of your Friendica installation for" +" an automatic conversion.
    " +msgstr "" + +#: src/Module/Admin/Summary.php:64 +#, php-format +msgid "" +"Your DB still runs with InnoDB tables in the Antelope file format. You " +"should change the file format to Barracuda. Friendica is using features that" +" are not provided by the Antelope format. See here for a " +"guide that may be helpful converting the table engines. You may also use the" +" command php bin/console.php dbstructure toinnodb of your Friendica" +" installation for an automatic conversion.
    " +msgstr "" + +#: src/Module/Admin/Summary.php:74 +#, php-format +msgid "" +"Your table_definition_cache is too low (%d). This can lead to the database " +"error \"Prepared statement needs to be re-prepared\". Please set it at least" +" to %d. See here for more information.
    " +msgstr "" + +#: src/Module/Admin/Summary.php:85 +#, php-format +msgid "" +"There is a new version of Friendica available for download. Your current " +"version is %1$s, upstream version is %2$s" +msgstr "" + +#: src/Module/Admin/Summary.php:94 +msgid "" +"The database update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "" + +#: src/Module/Admin/Summary.php:98 +msgid "" +"The last update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear. (Some of the errors are possibly inside the logfile.)" +msgstr "" + +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "" + +#: src/Module/Admin/Summary.php:107 +msgid "The worker was never executed. Please check your database structure!" +msgstr "" + +#: src/Module/Admin/Summary.php:109 +#, php-format +msgid "" +"The last worker execution was on %s UTC. This is older than one hour. Please" +" check your crontab settings." +msgstr "" + +#: src/Module/Admin/Summary.php:114 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +".htconfig.php. See the Config help page for " +"help with the transition." +msgstr "" + +#: src/Module/Admin/Summary.php:118 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +"config/local.ini.php. See the Config help " +"page for help with the transition." +msgstr "" + +#: src/Module/Admin/Summary.php:124 +#, php-format +msgid "" +"%s is not reachable on your system. This is a severe " +"configuration issue that prevents server to server communication. See the installation page for help." +msgstr "" + +#: src/Module/Admin/Summary.php:148 +#, php-format +msgid "" +"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" +" system.basepath from your db to avoid differences." +msgstr "" + +#: src/Module/Admin/Summary.php:156 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is wrong and the config file '%s' " +"isn't used." +msgstr "" + +#: src/Module/Admin/Summary.php:164 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is not equal to the config file " +"'%s'. Please fix your configuration." +msgstr "" + +#: src/Module/Admin/Summary.php:175 +msgid "Message queues" +msgstr "Cues de missatges" + +#: src/Module/Admin/Summary.php:181 +msgid "Server Settings" +msgstr "" + +#: src/Module/Admin/Summary.php:199 +msgid "Version" +msgstr "Versió" + +#: src/Module/Admin/Summary.php:203 +msgid "Active addons" +msgstr "" + +#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 +#, php-format +msgid "Theme %s disabled." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 +#, php-format +msgid "Theme %s successfully enabled." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 +#, php-format +msgid "Theme %s failed to install." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:83 +msgid "Screenshot" +msgstr "Captura de pantalla" + +#: src/Module/Admin/Themes/Details.php:91 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 +msgid "Themes" +msgstr "Temes" + +#: src/Module/Admin/Themes/Embed.php:80 +msgid "Unknown theme." +msgstr "" + +#: src/Module/Admin/Themes/Index.php:51 +msgid "Themes reloaded" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:114 +msgid "Reload active themes" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:118 +#, php-format +msgid "No themes found on the system. They should be placed in %1$s" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:119 +msgid "[Experimental]" +msgstr "[Experimental]" + +#: src/Module/Admin/Themes/Index.php:120 +msgid "[Unsupported]" +msgstr "[No soportat]" + +#: src/Module/Admin/Tos.php:79 +msgid "Display Terms of Service" +msgstr "" + +#: src/Module/Admin/Tos.php:79 +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 "" + +#: src/Module/Admin/Tos.php:80 +msgid "Display Privacy Statement" +msgstr "" + +#: src/Module/Admin/Tos.php:80 +#, php-format +msgid "" +"Show some informations regarding the needed information to operate the node " +"according e.g. to EU-GDPR." +msgstr "" + +#: src/Module/Admin/Tos.php:81 +msgid "Privacy Statement Preview" +msgstr "" + +#: src/Module/Admin/Tos.php:83 +msgid "The Terms of Service" +msgstr "" + +#: src/Module/Admin/Tos.php:83 +msgid "" +"Enter the Terms of Service for your node here. You can use BBCode. Headers " +"of sections should be [h2] and below." +msgstr "" + +#: src/Module/Admin/Tos.php:84 +msgid "The rules" +msgstr "" + +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." +msgstr "" + +#: src/Module/Api/ApiResponse.php:279 +#, php-format +msgid "API endpoint %s %s is not implemented but might be in the future." +msgstr "" + +#: src/Module/Api/Mastodon/Apps.php:73 +msgid "Missing parameters" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:51 +msgid "Only starting posts can be bookmarked" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +msgid "Only starting posts can be muted" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Reblog.php:56 +#, php-format +msgid "Posts from %s can't be shared" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +msgid "Only starting posts can be unbookmarked" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +msgid "Only starting posts can be unmuted" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:62 +#, php-format +msgid "Posts from %s can't be unshared" +msgstr "" + +#: src/Module/Api/Twitter/ContactEndpoint.php:66 +msgid "Contact not found" +msgstr "" + +#: src/Module/Apps.php:62 +msgid "No installed applications." +msgstr "Aplicacions no instal·lades." + +#: src/Module/Apps.php:67 +msgid "Applications" +msgstr "Aplicacions" + +#: src/Module/Attach.php:49 src/Module/Attach.php:61 +msgid "Item was not found." +msgstr "Element no trobat." + +#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +msgid "Please login to continue." +msgstr "Per favor, accedeixi per a continuar." + +#: src/Module/BaseAdmin.php:63 +msgid "You don't have access to administration pages." +msgstr "" + +#: src/Module/BaseAdmin.php:67 +msgid "" +"Submanaged account can't access the administration pages. Please log back in" +" as the main account." +msgstr "" + +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +msgid "Overview" +msgstr "" + +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +msgid "Configuration" +msgstr "" + +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +msgid "Additional features" +msgstr "Característiques Adicionals" + +#: src/Module/BaseAdmin.php:97 +msgid "Database" +msgstr "" + +#: src/Module/BaseAdmin.php:98 +msgid "DB updates" +msgstr "Actualitzacions de BD" + +#: src/Module/BaseAdmin.php:99 +msgid "Inspect Deferred Workers" +msgstr "" + +#: src/Module/BaseAdmin.php:100 +msgid "Inspect worker Queue" +msgstr "" + +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +msgid "Diagnostics" +msgstr "" + +#: src/Module/BaseAdmin.php:107 +msgid "PHP Info" +msgstr "" + +#: src/Module/BaseAdmin.php:108 +msgid "probe address" +msgstr "" + +#: src/Module/BaseAdmin.php:109 +msgid "check webfinger" +msgstr "" + +#: src/Module/BaseAdmin.php:110 +msgid "Babel" +msgstr "" + +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 +msgid "ActivityPub Conversion" +msgstr "" + +#: src/Module/BaseAdmin.php:120 +msgid "Addon Features" +msgstr "" + +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +msgid "User registrations waiting for confirmation" +msgstr "Registre d'usuari a l'espera de confirmació" + +#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467 +#: src/Module/BaseApi.php:483 +msgid "Too Many Requests" +msgstr "" + +#: src/Module/BaseApi.php:452 +#, php-format +msgid "Daily posting limit of %d post reached. The post was rejected." +msgid_plural "Daily posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseApi.php:468 +#, php-format +msgid "Weekly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Weekly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseApi.php:484 +#, php-format +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Monthly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "" + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "" + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Usuaris" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 +msgid "Profile Details" +msgstr "Detalls del Perfil" + +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "" + +#: src/Module/BaseProfile.php:111 +msgid "Only You Can See This" +msgstr "Només ho pots veure tu" + +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +msgid "Scheduled Posts" +msgstr "" + +#: src/Module/BaseProfile.php:119 +msgid "Posts that are scheduled for publishing" +msgstr "" + +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +msgid "Tips for New Members" +msgstr "Consells per a nous membres" + +#: src/Module/BaseSearch.php:71 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: src/Module/BaseSearch.php:75 +#, php-format +msgid "Group Search - %s" +msgstr "" + +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "No hi ha coincidències" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseSettings.php:78 +msgid "Account" +msgstr "Compte" + +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 +msgid "Two-factor authentication" +msgstr "" + +#: src/Module/BaseSettings.php:118 +msgid "Display" +msgstr "" + +#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "Xarxes socials" + +#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172 +msgid "Manage Accounts" +msgstr "" + +#: src/Module/BaseSettings.php:146 +msgid "Connected apps" +msgstr "App connectada" + +#: src/Module/BaseSettings.php:153 +msgid "Remote servers" +msgstr "" + +#: src/Module/BaseSettings.php:160 src/Module/Settings/UserExport.php:98 +msgid "Export personal data" +msgstr "Exportar dades personals" + +#: src/Module/BaseSettings.php:167 +msgid "Remove account" +msgstr "Esborrar compte" + +#: src/Module/Bookmarklet.php:54 +msgid "This page is missing a url parameter." +msgstr "" + +#: src/Module/Bookmarklet.php:66 +msgid "The post was created" +msgstr "" + +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "" + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "" + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "Títol d'esdeveniment i hora d'inici requerits." + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "Inici d'Esdeveniment:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Requerit" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "La data/hora de finalització no es coneixen o no són relevants" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "L'esdeveniment Finalitza:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Compartir aquest esdeveniment" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "Basic" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "calendari" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Esdeveniments" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Crear un nou esdeveniment" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:248 +msgid "list" +msgstr "llista" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "" + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "" + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "" + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "" + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "Contacte no trobat" + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "Contacte no vàlid." + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "" + +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "" + +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "" + +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "" + +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "" + +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "" + +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "" + +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "" + +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "" + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "" + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "Membres" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "Clicar sobre el contacte per afegir o esborrar." + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "" + +#: src/Module/Contact.php:97 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "" msgstr[1] "" -#: mod/contacts.php:159 mod/contacts.php:368 -msgid "Could not access contact record." -msgstr "No puc accedir al registre del contacte." +#: src/Module/Contact.php:348 +msgid "Show all contacts" +msgstr "Mostrar tots els contactes" -#: mod/contacts.php:173 -msgid "Could not locate selected profile." -msgstr "No puc localitzar el perfil seleccionat." +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "" -#: mod/contacts.php:206 -msgid "Contact updated." -msgstr "Contacte actualitzat." +#: src/Module/Contact.php:356 +msgid "Only show pending contacts" +msgstr "" -#: mod/contacts.php:208 mod/dfrn_request.php:583 +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Blocat" + +#: src/Module/Contact.php:364 +msgid "Only show blocked contacts" +msgstr "Mostrar únicament els contactes blocats" + +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:368 +msgid "Ignored" +msgstr "Ignorat" + +#: src/Module/Contact.php:372 +msgid "Only show ignored contacts" +msgstr "Mostrar únicament els contactes ignorats" + +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 +msgid "Archived" +msgstr "Arxivat" + +#: src/Module/Contact.php:388 +msgid "Only show archived contacts" +msgstr "Mostrar únicament els contactes arxivats" + +#: src/Module/Contact.php:393 src/Module/Contact.php:438 +msgid "Hidden" +msgstr "Amagat" + +#: src/Module/Contact.php:396 +msgid "Only show hidden contacts" +msgstr "Mostrar únicament els contactes amagats" + +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "" + +#: src/Module/Contact.php:459 +msgid "Search your contacts" +msgstr "Cercant el seus contactes" + +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 +#, php-format +msgid "Results for: %s" +msgstr "" + +#: src/Module/Contact.php:467 +msgid "Update" +msgstr "Actualitzar" + +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Desbloquejar" + +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 +msgid "Unignore" +msgstr "Treure d'Ignorats" + +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "" + +#: src/Module/Contact.php:472 +msgid "Batch Actions" +msgstr "" + +#: src/Module/Contact.php:515 +msgid "Conversations started by this contact" +msgstr "" + +#: src/Module/Contact.php:520 +msgid "Posts and Comments" +msgstr "" + +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "" + +#: src/Module/Contact.php:531 +msgid "Posts containing media objects" +msgstr "" + +#: src/Module/Contact.php:539 +msgid "View all known contacts" +msgstr "" + +#: src/Module/Contact.php:550 +msgid "Advanced Contact Settings" +msgstr "Ajustos Avançats per als Contactes" + +#: src/Module/Contact.php:586 +msgid "Mutual Friendship" +msgstr "Amistat Mutua" + +#: src/Module/Contact.php:590 +msgid "is a fan of yours" +msgstr "Es un fan teu" + +#: src/Module/Contact.php:594 +msgid "you are a fan of" +msgstr "ets fan de" + +#: src/Module/Contact.php:612 +msgid "Pending outgoing contact request" +msgstr "" + +#: src/Module/Contact.php:614 +msgid "Pending incoming contact request" +msgstr "" + +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visitar perfil de %s [%s]" + +#: src/Module/Contact/Advanced.php:99 +msgid "Contact update failed." +msgstr "Fracassà l'actualització de Contacte" + +#: src/Module/Contact/Advanced.php:130 +msgid "Return to contact editor" +msgstr "Tornar al editor de contactes" + +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Nom" + +#: src/Module/Contact/Advanced.php:135 +msgid "Account Nickname" +msgstr "Àlies del Compte" + +#: src/Module/Contact/Advanced.php:136 +msgid "Account URL" +msgstr "Adreça URL del Compte" + +#: src/Module/Contact/Advanced.php:137 +msgid "Poll/Feed URL" +msgstr "Adreça de Enquesta/Alimentador" + +#: src/Module/Contact/Advanced.php:138 +msgid "New photo from this URL" +msgstr "Nova foto d'aquesta URL" + +#: src/Module/Contact/Contacts.php:89 +msgid "No known contacts." +msgstr "" + +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +msgid "No common contacts." +msgstr "" + +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#, php-format +msgid "Follower (%s)" +msgid_plural "Followers (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#, php-format +msgid "Following (%s)" +msgid_plural "Following (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#, php-format +msgid "Mutual friend (%s)" +msgid_plural "Mutual friends (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#, php-format +msgid "These contacts both follow and are followed by %s." +msgstr "" + +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#, php-format +msgid "Common contact (%s)" +msgid_plural "Common contacts (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#, php-format +msgid "" +"Both %s and yourself have publicly interacted with these " +"contacts (follow, comment or likes on public posts)." +msgstr "" + +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#, php-format +msgid "Contact (%s)" +msgid_plural "Contacts (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:165 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Accés denegat." + +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Sol·licitud Enviada" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "Ja heu afegit aquest contacte." + +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "No s'ha pogut detectar el tipus de xarxa. El contacte no es pot afegir." + +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Diaspora l'assistència no està habilitada. El contacte no es pot afegir." + +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "OStatus l'assistència està desactivada. El contacte no es pot afegir." + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Si us plau, contesti les següents preguntes:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "La Teva Adreça Identificativa:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "Perfil URL" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Etiquetes:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Afegir una nota personal:" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" +msgstr "" + +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "El contacte no s'ha pogut afegir." + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "" + +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "" + +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "Perfil Aconseguit" + +#: src/Module/Contact/Profile.php:140 msgid "Failed to update contact record." msgstr "Error en actualitzar registre de contacte." -#: mod/contacts.php:389 -msgid "Contact has been blocked" -msgstr "Elcontacte ha estat bloquejat" - -#: mod/contacts.php:389 +#: src/Module/Contact/Profile.php:190 msgid "Contact has been unblocked" msgstr "El contacte ha estat desbloquejat" -#: mod/contacts.php:400 -msgid "Contact has been ignored" -msgstr "El contacte ha estat ignorat" +#: src/Module/Contact/Profile.php:194 +msgid "Contact has been blocked" +msgstr "Elcontacte ha estat bloquejat" -#: mod/contacts.php:400 +#: src/Module/Contact/Profile.php:206 msgid "Contact has been unignored" msgstr "El contacte ha estat recordat" -#: mod/contacts.php:412 -msgid "Contact has been archived" -msgstr "El contacte ha estat arxivat" +#: src/Module/Contact/Profile.php:210 +msgid "Contact has been ignored" +msgstr "El contacte ha estat ignorat" -#: mod/contacts.php:412 -msgid "Contact has been unarchived" -msgstr "El contacte ha estat desarxivat" - -#: mod/contacts.php:437 -msgid "Drop contact" +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" msgstr "" -#: mod/contacts.php:440 mod/contacts.php:801 -msgid "Do you really want to delete this contact?" -msgstr "Realment vols esborrar aquest contacte?" +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "" -#: mod/contacts.php:457 -msgid "Contact has been removed." -msgstr "El contacte ha estat tret" - -#: mod/contacts.php:498 +#: src/Module/Contact/Profile.php:254 #, php-format msgid "You are mutual friends with %s" msgstr "Ara te una amistat mutua amb %s" -#: mod/contacts.php:502 +#: src/Module/Contact/Profile.php:255 #, php-format msgid "You are sharing with %s" msgstr "Estas compartint amb %s" -#: mod/contacts.php:507 +#: src/Module/Contact/Profile.php:256 #, php-format msgid "%s is sharing with you" msgstr "%s esta compartint amb tú" -#: mod/contacts.php:527 +#: src/Module/Contact/Profile.php:272 msgid "Private communications are not available for this contact." msgstr "Comunicacions privades no disponibles per aquest contacte." -#: mod/contacts.php:534 -msgid "(Update was successful)" -msgstr "(L'actualització fou exitosa)" +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "" -#: mod/contacts.php:534 +#: src/Module/Contact/Profile.php:285 +msgid "Never" +msgstr "Mai" + +#: src/Module/Contact/Profile.php:288 msgid "(Update was not successful)" msgstr "(L'actualització fracassà)" -#: mod/contacts.php:536 mod/contacts.php:964 +#: src/Module/Contact/Profile.php:288 +msgid "(Update was successful)" +msgstr "(L'actualització fou exitosa)" + +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 msgid "Suggest friends" msgstr "Suggerir amics" -#: mod/contacts.php:540 +#: src/Module/Contact/Profile.php:294 #, php-format msgid "Network type: %s" msgstr "Xarxa tipus: %s" -#: mod/contacts.php:553 +#: src/Module/Contact/Profile.php:299 msgid "Communications lost with this contact!" msgstr "La comunicació amb aquest contacte s'ha perdut!" -#: mod/contacts.php:556 +#: src/Module/Contact/Profile.php:305 msgid "Fetch further information for feeds" msgstr "" -#: mod/contacts.php:557 +#: src/Module/Contact/Profile.php:307 +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 "" + +#: src/Module/Contact/Profile.php:310 msgid "Fetch information" msgstr "" -#: mod/contacts.php:557 +#: src/Module/Contact/Profile.php:311 +msgid "Fetch keywords" +msgstr "" + +#: src/Module/Contact/Profile.php:312 msgid "Fetch information and keywords" msgstr "" -#: mod/contacts.php:575 -msgid "Contact" +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 +msgid "No mirroring" msgstr "" -#: mod/contacts.php:578 -msgid "Profile Visibility" -msgstr "Perfil de Visibilitat" +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 +msgid "Mirror as my own posting" +msgstr "" -#: mod/contacts.php:579 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Si us plau triï el perfil que voleu mostrar a %s quan estigui veient el teu de forma segura." +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 +msgid "Native reshare" +msgstr "" -#: mod/contacts.php:580 +#: src/Module/Contact/Profile.php:353 msgid "Contact Information / Notes" msgstr "Informació/Notes del contacte" -#: mod/contacts.php:581 +#: src/Module/Contact/Profile.php:354 +msgid "Contact Settings" +msgstr "" + +#: src/Module/Contact/Profile.php:362 +msgid "Contact" +msgstr "" + +#: src/Module/Contact/Profile.php:366 +msgid "Their personal note" +msgstr "" + +#: src/Module/Contact/Profile.php:368 msgid "Edit contact notes" msgstr "Editar notes de contactes" -#: mod/contacts.php:587 +#: src/Module/Contact/Profile.php:372 msgid "Block/Unblock contact" msgstr "Bloquejar/Alliberar contacte" -#: mod/contacts.php:588 +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 msgid "Ignore contact" msgstr "Ignore contacte" -#: mod/contacts.php:589 -msgid "Repair URL settings" -msgstr "Restablir configuració de URL" - -#: mod/contacts.php:590 +#: src/Module/Contact/Profile.php:374 msgid "View conversations" msgstr "Veient conversacions" -#: mod/contacts.php:596 +#: src/Module/Contact/Profile.php:379 msgid "Last update:" msgstr "Última actualització:" -#: mod/contacts.php:598 +#: src/Module/Contact/Profile.php:381 msgid "Update public posts" msgstr "Actualitzar enviament públic" -#: mod/contacts.php:600 mod/contacts.php:974 +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 msgid "Update now" msgstr "Actualitza ara" -#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991 -msgid "Unignore" -msgstr "Treure d'Ignorats" +#: src/Module/Contact/Profile.php:385 +msgid "Awaiting connection acknowledge" +msgstr "" -#: mod/contacts.php:610 +#: src/Module/Contact/Profile.php:386 msgid "Currently blocked" msgstr "Bloquejat actualment" -#: mod/contacts.php:611 +#: src/Module/Contact/Profile.php:387 msgid "Currently ignored" msgstr "Ignorat actualment" -#: mod/contacts.php:612 +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:389 msgid "Currently archived" msgstr "Actualment arxivat" -#: mod/contacts.php:613 +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "" + +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 +msgid "Hide this contact from others" +msgstr "Amaga aquest contacte dels altres" + +#: src/Module/Contact/Profile.php:394 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Répliques/agraiments per als teus missatges públics poden romandre visibles" -#: mod/contacts.php:614 +#: src/Module/Contact/Profile.php:395 msgid "Notification for new posts" msgstr "" -#: mod/contacts.php:614 +#: src/Module/Contact/Profile.php:395 msgid "Send a notification of every new post of this contact" msgstr "" -#: mod/contacts.php:617 -msgid "Blacklisted keywords" +#: src/Module/Contact/Profile.php:397 +msgid "Keyword Deny List" msgstr "" -#: mod/contacts.php:617 +#: src/Module/Contact/Profile.php:397 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "" -#: mod/contacts.php:635 +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "Actions" msgstr "" -#: mod/contacts.php:638 -msgid "Contact Settings" +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "Estatus" + +#: src/Module/Contact/Profile.php:423 +msgid "Mirror postings from this contact" msgstr "" -#: mod/contacts.php:684 -msgid "Suggestions" -msgstr "Suggeriments" - -#: mod/contacts.php:687 -msgid "Suggest potential friends" -msgstr "Suggerir amics potencials" - -#: mod/contacts.php:695 -msgid "Show all contacts" -msgstr "Mostrar tots els contactes" - -#: mod/contacts.php:700 -msgid "Unblocked" -msgstr "Desblocat" - -#: mod/contacts.php:703 -msgid "Only show unblocked contacts" -msgstr "Mostrar únicament els contactes no blocats" - -#: mod/contacts.php:709 -msgid "Blocked" -msgstr "Blocat" - -#: mod/contacts.php:712 -msgid "Only show blocked contacts" -msgstr "Mostrar únicament els contactes blocats" - -#: mod/contacts.php:718 -msgid "Ignored" -msgstr "Ignorat" - -#: mod/contacts.php:721 -msgid "Only show ignored contacts" -msgstr "Mostrar únicament els contactes ignorats" - -#: mod/contacts.php:727 -msgid "Archived" -msgstr "Arxivat" - -#: mod/contacts.php:730 -msgid "Only show archived contacts" -msgstr "Mostrar únicament els contactes arxivats" - -#: mod/contacts.php:736 -msgid "Hidden" -msgstr "Amagat" - -#: mod/contacts.php:739 -msgid "Only show hidden contacts" -msgstr "Mostrar únicament els contactes amagats" - -#: mod/contacts.php:796 -msgid "Search your contacts" -msgstr "Cercant el seus contactes" - -#: mod/contacts.php:807 mod/contacts.php:999 -msgid "Archive" -msgstr "Arxivat" - -#: mod/contacts.php:807 mod/contacts.php:999 -msgid "Unarchive" -msgstr "Desarxivat" - -#: mod/contacts.php:810 -msgid "Batch Actions" +#: src/Module/Contact/Profile.php:425 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." msgstr "" -#: mod/contacts.php:856 -msgid "View all contacts" -msgstr "Veure tots els contactes" - -#: mod/contacts.php:866 -msgid "View all common friends" +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" msgstr "" -#: mod/contacts.php:873 -msgid "Advanced Contact Settings" -msgstr "Ajustos Avançats per als Contactes" +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "" -#: mod/contacts.php:907 -msgid "Mutual Friendship" -msgstr "Amistat Mutua" +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "" -#: mod/contacts.php:911 -msgid "is a fan of yours" -msgstr "Es un fan teu" +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "" -#: mod/contacts.php:915 -msgid "you are a fan of" -msgstr "ets fan de" +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "" -#: mod/contacts.php:985 +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "" + +#: src/Module/Contact/Profile.php:502 +msgid "Refetch contact data" +msgstr "" + +#: src/Module/Contact/Profile.php:513 msgid "Toggle Blocked status" msgstr "Canvi de estatus blocat" -#: mod/contacts.php:993 +#: src/Module/Contact/Profile.php:521 msgid "Toggle Ignored status" msgstr "Canvi de estatus ignorat" -#: mod/contacts.php:1001 -msgid "Toggle Archive status" -msgstr "Canvi de estatus del arxiu" - -#: mod/contacts.php:1009 -msgid "Delete contact" -msgstr "Esborrar contacte" - -#: mod/dfrn_confirm.php:127 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Això pot ocorre ocasionalment si el contacte fa una petició per ambdues persones i ja han estat aprovades." - -#: mod/dfrn_confirm.php:246 -msgid "Response from remote site was not understood." -msgstr "La resposta des del lloc remot no s'entenia." - -#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 -msgid "Unexpected response from remote site: " -msgstr "Resposta inesperada de lloc remot:" - -#: mod/dfrn_confirm.php:269 -msgid "Confirmation completed successfully." -msgstr "La confirmació s'ha completat correctament." - -#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 -msgid "Remote site reported: " -msgstr "El lloc remot informa:" - -#: mod/dfrn_confirm.php:283 -msgid "Temporary failure. Please wait and try again." -msgstr "Fallada temporal. Si us plau, espereu i torneu a intentar." - -#: mod/dfrn_confirm.php:290 -msgid "Introduction failed or was revoked." -msgstr "La presentació va fallar o va ser revocada." - -#: mod/dfrn_confirm.php:419 -msgid "Unable to set contact photo." -msgstr "No es pot canviar la foto de contacte." - -#: mod/dfrn_confirm.php:557 -#, php-format -msgid "No user record found for '%s' " -msgstr "No es troben registres d'usuari per a '%s'" - -#: mod/dfrn_confirm.php:567 -msgid "Our site encryption key is apparently messed up." -msgstr "La nostra clau de xifrat del lloc pel que sembla en mal estat." - -#: mod/dfrn_confirm.php:578 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Es va proporcionar una URL del lloc buida o la URL no va poder ser desxifrada per nosaltres." - -#: mod/dfrn_confirm.php:599 -msgid "Contact record was not found for you on our site." -msgstr "No s'han trobat registres del contacte al nostre lloc." - -#: mod/dfrn_confirm.php:613 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "la clau pública del lloc no disponible en les dades del contacte per URL %s." - -#: mod/dfrn_confirm.php:633 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "La ID proporcionada pel seu sistema és un duplicat en el nostre sistema. Hauria de treballar si intenta de nou." - -#: mod/dfrn_confirm.php:644 -msgid "Unable to set your contact credentials on our system." -msgstr "No es pot canviar les seves credencials de contacte en el nostre sistema." - -#: mod/dfrn_confirm.php:703 -msgid "Unable to update your contact profile details on our system" -msgstr "No es pot actualitzar els detalls del seu perfil de contacte en el nostre sistema" - -#: mod/dfrn_confirm.php:775 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s s'ha unit a %2$s" - -#: mod/dfrn_request.php:101 -msgid "This introduction has already been accepted." -msgstr "Aquesta presentació ha estat acceptada." - -#: mod/dfrn_request.php:124 mod/dfrn_request.php:520 -msgid "Profile location is not valid or does not contain profile information." -msgstr "El perfil de situació no és vàlid o no contè informació de perfil" - -#: mod/dfrn_request.php:129 mod/dfrn_request.php:525 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Atenció: El perfil de situació no te nom de propietari identificable." - -#: mod/dfrn_request.php:131 mod/dfrn_request.php:527 -msgid "Warning: profile location has no profile photo." -msgstr "Atenció: El perfil de situació no te foto de perfil" - -#: mod/dfrn_request.php:134 mod/dfrn_request.php:530 -#, 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 el paràmetre requerit no es va trobar al lloc indicat" -msgstr[1] "%d els paràmetres requerits no es van trobar allloc indicat" - -#: mod/dfrn_request.php:180 -msgid "Introduction complete." -msgstr "Completada la presentació." - -#: mod/dfrn_request.php:222 -msgid "Unrecoverable protocol error." -msgstr "Error de protocol irrecuperable." - -#: mod/dfrn_request.php:250 -msgid "Profile unavailable." -msgstr "Perfil no disponible" - -#: mod/dfrn_request.php:277 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s avui ha rebut excesives peticions de connexió. " - -#: mod/dfrn_request.php:278 -msgid "Spam protection measures have been invoked." -msgstr "Mesures de protecció contra spam han estat invocades." - -#: mod/dfrn_request.php:279 -msgid "Friends are advised to please try again in 24 hours." -msgstr "S'aconsellà els amics que probin pasades 24 hores." - -#: mod/dfrn_request.php:341 -msgid "Invalid locator" -msgstr "Localitzador no vàlid" - -#: mod/dfrn_request.php:350 -msgid "Invalid email address." -msgstr "Adreça de correu no vàlida." - -#: mod/dfrn_request.php:375 -msgid "This account has not been configured for email. Request failed." -msgstr "Aquest compte no s'ha configurat per al correu electrònic. Ha fallat la sol·licitud." - -#: mod/dfrn_request.php:478 -msgid "You have already introduced yourself here." -msgstr "Has fer la teva presentació aquí." - -#: mod/dfrn_request.php:482 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Aparentment, ja tens amistat amb %s" - -#: mod/dfrn_request.php:503 -msgid "Invalid profile URL." -msgstr "Perfil URL no vàlid." - -#: mod/dfrn_request.php:604 -msgid "Your introduction has been sent." -msgstr "La teva presentació ha estat enviada." - -#: mod/dfrn_request.php:644 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" msgstr "" -#: mod/dfrn_request.php:664 -msgid "Please login to confirm introduction." -msgstr "Si us plau, entri per confirmar la presentació." - -#: mod/dfrn_request.php:674 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Sesió iniciada amb la identificació incorrecta. Entra en aquest perfil." - -#: mod/dfrn_request.php:688 mod/dfrn_request.php:705 -msgid "Confirm" -msgstr "Confirmar" - -#: mod/dfrn_request.php:700 -msgid "Hide this contact" -msgstr "Amaga aquest contacte" - -#: mod/dfrn_request.php:703 -#, php-format -msgid "Welcome home %s." -msgstr "Benvingut de nou %s" - -#: mod/dfrn_request.php:704 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Si us plau, confirmi la seva sol·licitud de Presentació/Amistat a %s." - -#: mod/dfrn_request.php:833 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Si us plau, introdueixi la seva \"Adreça Identificativa\" d'una de les següents xarxes socials suportades:" - -#: mod/dfrn_request.php:854 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " -"join us today." +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 +msgid "Revoke Follow" msgstr "" -#: mod/dfrn_request.php:859 -msgid "Friend/Connection Request" -msgstr "Sol·licitud d'Amistat" +#: src/Module/Contact/Profile.php:538 +msgid "Revoke the follow from this contact" +msgstr "" -#: mod/dfrn_request.php:860 +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "" + +#: src/Module/Contact/Revoke.php:63 +msgid "Unknown contact." +msgstr "" + +#: src/Module/Contact/Revoke.php:77 +msgid "Contact is being deleted." +msgstr "" + +#: src/Module/Contact/Revoke.php:91 +msgid "Follow was successfully revoked." +msgstr "" + +#: src/Module/Contact/Revoke.php:107 msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Exemples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" +"Do you really want to revoke this contact's follow? This cannot be undone " +"and they will have to manually follow you back again." +msgstr "" -#: mod/dfrn_request.php:861 mod/follow.php:109 -msgid "Please answer the following:" -msgstr "Si us plau, contesti les següents preguntes:" +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "Yes" +msgstr "Si" -#: mod/dfrn_request.php:862 mod/follow.php:110 +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Cap suggeriment disponible. Si això és un nou lloc, si us plau torna a intentar en 24 hores." + +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "No seguiu aquest contacte." + +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "Actualment, la vostra xarxa no és compatible amb el fet de seguir." + +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "Desconnecta / Deixa de seguir" + +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "" + +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "" + +#: src/Module/Conversation/Channel.php:121 +#: src/Module/Conversation/Community.php:125 src/Module/Search/Index.php:152 +#: src/Module/Search/Index.php:194 +msgid "No results." +msgstr "Sense resultats." + +#: src/Module/Conversation/Channel.php:159 +msgid "Channel not available." +msgstr "" + +#: src/Module/Conversation/Community.php:91 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "" + +#: src/Module/Conversation/Community.php:179 +msgid "Community option not available." +msgstr "" + +#: src/Module/Conversation/Community.php:195 +msgid "Not available." +msgstr "No disponible." + +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "" + +#: src/Module/Conversation/Network.php:222 #, php-format -msgid "Does %s know you?" -msgstr "%s et coneix?" +msgid "Circle: %s" +msgstr "" -#: mod/dfrn_request.php:866 mod/follow.php:111 -msgid "Add a personal note:" -msgstr "Afegir una nota personal:" +#: src/Module/Conversation/Network.php:317 +msgid "Network feed not available." +msgstr "" -#: mod/dfrn_request.php:869 -msgid "StatusNet/Federated Social Web" -msgstr "Web Social StatusNet/Federated " +#: src/Module/Conversation/Timeline.php:158 +msgid "Own Contacts" +msgstr "" -#: mod/dfrn_request.php:871 +#: src/Module/Conversation/Timeline.php:162 +msgid "Include" +msgstr "" + +#: src/Module/Conversation/Timeline.php:163 +msgid "Hide" +msgstr "" + +#: src/Module/Credits.php:44 +msgid "Credits" +msgstr "" + +#: 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 "" + +#: src/Module/Debug/ActivityPubConversion.php:53 +msgid "Formatted" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:65 +msgid "Activity" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:117 +msgid "Object data" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:124 +msgid "Result Item" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Debug/ActivityPubConversion.php:138 +msgid "Source activity" +msgstr "" + +#: src/Module/Debug/Babel.php:51 +msgid "Source input" +msgstr "" + +#: src/Module/Debug/Babel.php:57 +msgid "BBCode::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:63 +msgid "BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:68 +msgid "BBCode::convert (hex)" +msgstr "" + +#: src/Module/Debug/Babel.php:73 +msgid "BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:79 +msgid "BBCode::convert => HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:85 +msgid "BBCode::toMarkdown" +msgstr "" + +#: src/Module/Debug/Babel.php:91 +msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:95 +msgid "BBCode::toMarkdown => Markdown::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:101 +msgid "BBCode::toMarkdown => Markdown::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:107 +msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:115 +msgid "Item Body" +msgstr "" + +#: src/Module/Debug/Babel.php:119 +msgid "Item Tags" +msgstr "" + +#: src/Module/Debug/Babel.php:125 +msgid "PageInfo::appendToBody" +msgstr "" + +#: src/Module/Debug/Babel.php:130 +msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:134 +msgid "PageInfo::appendToBody => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:141 +msgid "Source input (Diaspora format)" +msgstr "" + +#: src/Module/Debug/Babel.php:150 +msgid "Source input (Markdown)" +msgstr "" + +#: src/Module/Debug/Babel.php:156 +msgid "Markdown::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:161 +msgid "Markdown::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:167 +msgid "Markdown::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:174 +msgid "Raw HTML input" +msgstr "" + +#: src/Module/Debug/Babel.php:179 +msgid "HTML Input" +msgstr "" + +#: src/Module/Debug/Babel.php:186 +msgid "HTML Purified (raw)" +msgstr "" + +#: src/Module/Debug/Babel.php:191 +msgid "HTML Purified (hex)" +msgstr "" + +#: src/Module/Debug/Babel.php:196 +msgid "HTML Purified" +msgstr "" + +#: src/Module/Debug/Babel.php:202 +msgid "HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:208 +msgid "HTML::toBBCode => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:213 +msgid "HTML::toBBCode => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:219 +msgid "HTML::toBBCode => BBCode::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:225 +msgid "HTML::toMarkdown" +msgstr "" + +#: src/Module/Debug/Babel.php:231 +msgid "HTML::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:237 +msgid "HTML::toPlaintext (compact)" +msgstr "" + +#: src/Module/Debug/Babel.php:255 +msgid "Decoded post" +msgstr "" + +#: src/Module/Debug/Babel.php:276 +msgid "Post array before expand entities" +msgstr "" + +#: src/Module/Debug/Babel.php:283 +msgid "Post converted" +msgstr "" + +#: src/Module/Debug/Babel.php:288 +msgid "Converted body" +msgstr "" + +#: src/Module/Debug/Babel.php:294 +msgid "Twitter addon is absent from the addon/ folder." +msgstr "" + +#: src/Module/Debug/Babel.php:304 +msgid "Babel Diagnostic" +msgstr "" + +#: src/Module/Debug/Babel.php:305 +msgid "Source text" +msgstr "" + +#: src/Module/Debug/Babel.php:306 +msgid "BBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:308 +msgid "Markdown" +msgstr "" + +#: src/Module/Debug/Babel.php:309 +msgid "HTML" +msgstr "" + +#: src/Module/Debug/Babel.php:311 +msgid "Twitter Source / Tweet URL (requires API key)" +msgstr "" + +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:177 +msgid "You must be logged in to use this module" +msgstr "" + +#: src/Module/Debug/Feed.php:77 +msgid "Source URL" +msgstr "" + +#: src/Module/Debug/Localtime.php:49 +msgid "Time Conversion" +msgstr "Temps de Conversió" + +#: src/Module/Debug/Localtime.php:50 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica ofereix aquest servei per a compartir esdeveniments amb d'altres xarxes i amics en zones horaries que son desconegudes" + +#: src/Module/Debug/Localtime.php:51 +#, php-format +msgid "UTC time: %s" +msgstr "hora UTC: %s" + +#: src/Module/Debug/Localtime.php:54 +#, php-format +msgid "Current timezone: %s" +msgstr "Zona horària actual: %s" + +#: src/Module/Debug/Localtime.php:58 +#, php-format +msgid "Converted localtime: %s" +msgstr "Conversión de hora local: %s" + +#: src/Module/Debug/Localtime.php:62 +msgid "Please select your timezone:" +msgstr "Si us plau, seleccioneu la vostra zona horària:" + +#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +msgid "Only logged in users are permitted to perform a probing." +msgstr "" + +#: src/Module/Debug/Probe.php:52 +msgid "Probe Diagnostic" +msgstr "" + +#: src/Module/Debug/Probe.php:53 +msgid "Output" +msgstr "" + +#: src/Module/Debug/Probe.php:56 +msgid "Lookup address" +msgstr "" + +#: src/Module/Debug/WebFinger.php:50 +msgid "Webfinger Diagnostic" +msgstr "" + +#: src/Module/Debug/WebFinger.php:52 +msgid "Lookup address:" +msgstr "" + +#: src/Module/Delegation.php:110 +#, php-format +msgid "You are now logged in as %s" +msgstr "" + +#: src/Module/Delegation.php:142 +msgid "Switch between your accounts" +msgstr "" + +#: src/Module/Delegation.php:143 +msgid "Manage your accounts" +msgstr "" + +#: src/Module/Delegation.php:144 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Alternar entre les diferents identitats o les pàgines de comunitats/grups que comparteixen les dades del seu compte o que se li ha concedit els permisos de \"administrar\"" + +#: src/Module/Delegation.php:145 +msgid "Select an identity to manage: " +msgstr "Seleccionar identitat a administrar:" + +#: src/Module/Directory.php:74 +msgid "No entries (some entries may be hidden)." +msgstr "No hi ha entrades (algunes de les entrades poden estar amagades)." + +#: src/Module/Directory.php:90 +msgid "Find on this site" +msgstr "Trobat en aquest lloc" + +#: src/Module/Directory.php:92 +msgid "Results for:" +msgstr "" + +#: src/Module/Directory.php:94 +msgid "Site Directory" +msgstr "Directori Local" + +#: src/Module/Filer/RemoveTag.php:105 +msgid "Item was not deleted" +msgstr "" + +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "" + +#: src/Module/Filer/SaveTag.php:73 +msgid "- select -" +msgstr "- seleccionar -" + +#: src/Module/FriendSuggest.php:82 +msgid "Suggested contact not found." +msgstr "No s'ha trobat el contacte suggerit." + +#: src/Module/FriendSuggest.php:100 +msgid "Friend suggestion sent." +msgstr "Enviat suggeriment d'amic." + +#: src/Module/FriendSuggest.php:137 +msgid "Suggest Friends" +msgstr "Suggerir Amics" + +#: src/Module/FriendSuggest.php:140 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Suggerir un amic per a %s" + +#: src/Module/Friendica.php:82 +msgid "Installed addons/apps:" +msgstr "" + +#: src/Module/Friendica.php:87 +msgid "No installed addons/apps" +msgstr "" + +#: src/Module/Friendica.php:92 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "" + +#: src/Module/Friendica.php:99 +msgid "On this server the following remote servers are blocked." +msgstr "" + +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +msgid "Reason for the block" +msgstr "" + +#: src/Module/Friendica.php:104 +msgid "Download this list in CSV format" +msgstr "" + +#: src/Module/Friendica.php:118 #, php-format msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - per favor no utilitzi aquest formulari. Al contrari, entra %s en la barra de cerques de Diaspora." - -#: mod/dfrn_request.php:872 mod/follow.php:117 -msgid "Your Identity Address:" -msgstr "La Teva Adreça Identificativa:" - -#: mod/dfrn_request.php:875 mod/follow.php:19 -msgid "Submit Request" -msgstr "Sol·licitud Enviada" - -#: mod/follow.php:30 -msgid "You already added this contact." +"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 "" -#: mod/follow.php:39 -msgid "Diaspora support isn't enabled. Contact can't be added." +#: src/Module/Friendica.php:123 +msgid "" +"Please visit Friendi.ca to learn more " +"about the Friendica project." msgstr "" -#: mod/follow.php:46 -msgid "OStatus support is disabled. Contact can't be added." +#: src/Module/Friendica.php:124 +msgid "Bug reports and issues: please visit" +msgstr "Pels informes d'error i problemes: si us plau, visiteu" + +#: src/Module/Friendica.php:124 +msgid "the bugtracker at github" msgstr "" -#: mod/follow.php:53 -msgid "The network type couldn't be detected. Contact can't be added." +#: src/Module/Friendica.php:125 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "" -#: mod/follow.php:180 -msgid "Contact added" -msgstr "Contacte afegit" +#: src/Module/HCard.php:45 +msgid "No profile" +msgstr "Sense perfil" -#: mod/install.php:139 +#: src/Module/HTTPException/MethodNotAllowed.php:31 +msgid "Method Not Allowed." +msgstr "" + +#: src/Module/Help.php:60 +msgid "Help:" +msgstr "Ajuda:" + +#: src/Module/Home.php:63 +#, php-format +msgid "Welcome to %s" +msgstr "Benvingut a %s" + +#: src/Module/Install.php:189 msgid "Friendica Communications Server - Setup" -msgstr "Friendica Servidor de Comunicacions - Configuració" - -#: mod/install.php:145 -msgid "Could not connect to database." -msgstr "No puc connectar a la base de dades." - -#: mod/install.php:149 -msgid "Could not create table." -msgstr "No puc creat taula." - -#: mod/install.php:155 -msgid "Your Friendica site database has been installed." -msgstr "La base de dades del teu lloc Friendica ha estat instal·lada." - -#: mod/install.php:160 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Pot ser que hagi d'importar l'arxiu \"database.sql\" manualment amb phpmyadmin o mysql." - -#: mod/install.php:161 mod/install.php:230 mod/install.php:607 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Per favor, consulti l'arxiu \"INSTALL.txt\"." - -#: mod/install.php:173 -msgid "Database already in use." msgstr "" -#: mod/install.php:227 +#: src/Module/Install.php:200 msgid "System check" msgstr "Comprovació del Sistema" -#: mod/install.php:232 +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 +msgid "Requirement not satisfied" +msgstr "" + +#: src/Module/Install.php:203 +msgid "Optional requirement not satisfied" +msgstr "" + +#: src/Module/Install.php:204 +msgid "OK" +msgstr "" + +#: src/Module/Install.php:208 +msgid "Next" +msgstr "Següent" + +#: src/Module/Install.php:209 msgid "Check again" msgstr "Comprovi de nou" -#: mod/install.php:251 +#: src/Module/Install.php:222 +msgid "Base settings" +msgstr "" + +#: src/Module/Install.php:224 +msgid "Base path to installation" +msgstr "Trajectoria base per a instal·lar" + +#: src/Module/Install.php:226 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: src/Module/Install.php:229 +msgid "The Friendica system URL" +msgstr "" + +#: src/Module/Install.php:231 +msgid "" +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." +msgstr "" + +#: src/Module/Install.php:242 msgid "Database connection" msgstr "Conexió a la base de dades" -#: mod/install.php:252 +#: src/Module/Install.php:243 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Per a instal·lar Friendica necessitem conèixer com connectar amb la deva base de dades." -#: mod/install.php:253 +#: src/Module/Install.php:244 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Per favor, posi's en contacte amb el seu proveïdor de hosting o administrador del lloc si té alguna pregunta sobre aquestes opcions." -#: mod/install.php:254 +#: src/Module/Install.php:245 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "La base de dades que especifiques ja hauria d'existir. Si no és així, crea-la abans de continuar." -#: mod/install.php:258 +#: src/Module/Install.php:252 msgid "Database Server Name" msgstr "Nom del Servidor de base de Dades" -#: mod/install.php:259 +#: src/Module/Install.php:257 msgid "Database Login Name" msgstr "Nom d'Usuari de la base de Dades" -#: mod/install.php:260 +#: src/Module/Install.php:263 msgid "Database Login Password" msgstr "Contrasenya d'Usuari de la base de Dades" -#: mod/install.php:261 +#: src/Module/Install.php:265 +msgid "For security reasons the password must not be empty" +msgstr "" + +#: src/Module/Install.php:268 msgid "Database Name" msgstr "Nom de la base de Dades" -#: mod/install.php:262 mod/install.php:303 +#: src/Module/Install.php:272 src/Module/Install.php:300 +msgid "Please select a default timezone for your website" +msgstr "Per favor, seleccioni una zona horària per defecte per al seu lloc web" + +#: src/Module/Install.php:287 +msgid "Site settings" +msgstr "Configuracions del lloc" + +#: src/Module/Install.php:295 msgid "Site administrator email address" msgstr "Adreça de correu del administrador del lloc" -#: mod/install.php:262 mod/install.php:303 +#: src/Module/Install.php:297 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "El seu compte d'adreça electrònica ha de coincidir per tal d'utilitzar el panell d'administració web." -#: mod/install.php:266 mod/install.php:306 -msgid "Please select a default timezone for your website" -msgstr "Per favor, seleccioni una zona horària per defecte per al seu lloc web" - -#: mod/install.php:293 -msgid "Site settings" -msgstr "Configuracions del lloc" - -#: mod/install.php:307 +#: src/Module/Install.php:304 msgid "System Language:" msgstr "" -#: mod/install.php:307 +#: src/Module/Install.php:306 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "" -#: mod/install.php:347 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "No es va poder trobar una versió de línia de comandos de PHP en la ruta del servidor web." +#: src/Module/Install.php:318 +msgid "Your Friendica site database has been installed." +msgstr "La base de dades del teu lloc Friendica ha estat instal·lada." -#: mod/install.php:348 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Setup the poller'" +#: src/Module/Install.php:328 +msgid "Installation finished" msgstr "" -#: mod/install.php:352 -msgid "PHP executable path" -msgstr "Direcció del executable PHP" - -#: mod/install.php:352 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Entra la ruta sencera fins l'executable de php. Pots deixar això buit per continuar l'instal·lació." - -#: mod/install.php:357 -msgid "Command line PHP" -msgstr "Linia de comandos PHP" - -#: mod/install.php:366 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "El programari executable PHP no es el binari php cli (hauria de ser la versió cgi-fcgi)" - -#: mod/install.php:367 -msgid "Found PHP version: " -msgstr "Trobada la versió PHP:" - -#: mod/install.php:369 -msgid "PHP cli binary" -msgstr "PHP cli binari" - -#: mod/install.php:380 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versió de línia de comandos de PHP en el seu sistema no té \"register_argc_argv\" habilitat." - -#: mod/install.php:381 -msgid "This is required for message delivery to work." -msgstr "Això és necessari perquè funcioni el lliurament de missatges." - -#: mod/install.php:383 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: mod/install.php:404 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: la funció \"openssl_pkey_new\" en aquest sistema no és capaç de generar claus de xifrat" - -#: mod/install.php:405 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Si s'executa en Windows, per favor consulti la secció \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: mod/install.php:407 -msgid "Generate encryption keys" -msgstr "Generar claus d'encripció" - -#: mod/install.php:414 -msgid "libCurl PHP module" -msgstr "Mòdul libCurl de PHP" - -#: mod/install.php:415 -msgid "GD graphics PHP module" -msgstr "Mòdul GD de gràfics de PHP" - -#: mod/install.php:416 -msgid "OpenSSL PHP module" -msgstr "Mòdul OpenSSl de PHP" - -#: mod/install.php:417 -msgid "mysqli PHP module" -msgstr "Mòdul mysqli de PHP" - -#: mod/install.php:418 -msgid "mb_string PHP module" -msgstr "Mòdul mb_string de PHP" - -#: mod/install.php:419 -msgid "mcrypt PHP module" -msgstr "" - -#: mod/install.php:420 -msgid "XML PHP module" -msgstr "" - -#: mod/install.php:421 -msgid "iconv module" -msgstr "" - -#: mod/install.php:425 mod/install.php:427 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite modul " - -#: mod/install.php:425 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: el mòdul mod-rewrite del servidor web Apache és necessari però no està instal·lat." - -#: mod/install.php:433 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: El mòdul libCURL de PHP és necessari però no està instal·lat." - -#: mod/install.php:437 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: el mòdul gràfic GD de PHP amb support per JPEG és necessari però no està instal·lat." - -#: mod/install.php:441 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: El mòdul enssl de PHP és necessari però no està instal·lat." - -#: mod/install.php:445 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Error: El mòdul mysqli de PHP és necessari però no està instal·lat." - -#: mod/install.php:449 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: mòdul mb_string de PHP requerit però no instal·lat." - -#: mod/install.php:453 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "" - -#: mod/install.php:457 -msgid "Error: iconv PHP module required but not installed." -msgstr "" - -#: mod/install.php:466 -msgid "" -"If you are using php_cli, please make sure that mcrypt module is enabled in " -"its config file" -msgstr "" - -#: mod/install.php:469 -msgid "" -"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " -"encryption layer." -msgstr "" - -#: mod/install.php:471 -msgid "mcrypt_create_iv() function" -msgstr "" - -#: mod/install.php:479 -msgid "Error, XML PHP module required but not installed." -msgstr "" - -#: mod/install.php:494 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "L'instal·lador web necessita crear un arxiu anomenat \".htconfig.php\" en la carpeta superior del seu servidor web però alguna cosa ho va impedir." - -#: mod/install.php:495 -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 "Això freqüentment és a causa d'una configuració de permisos; el servidor web no pot escriure arxius en la carpeta - encara que sigui possible." - -#: mod/install.php:496 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Al final d'aquest procediment, et facilitarem un text que hauràs de guardar en un arxiu que s'anomena .htconfig.php que hi es a la carpeta principal del teu Friendica." - -#: mod/install.php:497 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Alternativament, pots saltar-te aquest procediment i configurar-ho manualment. Per favor, mira l'arxiu \"INTALL.txt\" per a instruccions." - -#: mod/install.php:500 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php és escribible" - -#: mod/install.php:510 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica empra el motor de plantilla Smarty3 per dibuixar la web. Smarty3 compila plantilles a PHP per accelerar el redibuxar." - -#: mod/install.php:511 -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 "Per poder guardar aquestes plantilles compilades, el servidor web necessita tenir accés d'escriptura al directori view/smarty3/ sota la carpeta principal de Friendica." - -#: mod/install.php:512 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Per favor, asegura que l'usuari que corre el servidor web (p.e. www-data) te accés d'escriptura a aquesta carpeta." - -#: mod/install.php:513 -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 "Nota: Com a mesura de seguretat, hauries de facilitar al servidor web, accés d'escriptura a view/smarty3/ excepte els fitxers de plantilles (.tpl) que conté." - -#: mod/install.php:516 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 es escribible" - -#: mod/install.php:532 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "URL rewrite en .htaccess no esta treballant. Comprova la configuració del teu servidor." - -#: mod/install.php:534 -msgid "Url rewrite is working" -msgstr "URL rewrite està treballant" - -#: mod/install.php:552 -msgid "ImageMagick PHP extension is not installed" -msgstr "" - -#: mod/install.php:555 -msgid "ImageMagick PHP extension is installed" -msgstr "" - -#: mod/install.php:557 -msgid "ImageMagick supports GIF" -msgstr "" - -#: mod/install.php:566 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "L'arxiu per a la configuració de la base de dades \".htconfig.php\" no es pot escriure. Per favor, usi el text adjunt per crear un arxiu de configuració en l'arrel del servidor web." - -#: mod/install.php:605 +#: src/Module/Install.php:348 msgid "

    What next

    " msgstr "

    Que es següent

    " -#: mod/install.php:606 +#: src/Module/Install.php:349 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT: necessitarà configurar [manualment] el programar una tasca pel sondejador (poller.php)" +"worker." +msgstr "" -#: mod/item.php:116 -msgid "Unable to locate original post." -msgstr "No es pot localitzar post original." +#: src/Module/Install.php:352 +#, 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 "" -#: mod/item.php:341 -msgid "Empty post discarded." -msgstr "Buidat després de rebutjar." +#: src/Module/Invite.php:57 +msgid "Total invitation limit exceeded." +msgstr "Limit d'invitacions excedit." -#: mod/item.php:902 -msgid "System error. Post not saved." -msgstr "Error del sistema. Publicació no guardada." +#: src/Module/Invite.php:82 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : No es una adreça de correu vàlida" -#: mod/item.php:992 +#: src/Module/Invite.php:108 +msgid "Please join us on Friendica" +msgstr "Per favor, uneixi's a nosaltres en Friendica" + +#: src/Module/Invite.php:117 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limit d'invitacions excedit. Per favor, Contacti amb l'administrador del lloc." + +#: src/Module/Invite.php:121 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Ha fallat l'entrega del missatge." + +#: src/Module/Invite.php:125 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d missatge enviat" +msgstr[1] "%d missatges enviats." + +#: src/Module/Invite.php:143 +msgid "You have no more invitations available" +msgstr "No te més invitacions disponibles" + +#: src/Module/Invite.php:150 +#, 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 "Visita %s per a una llista de llocs públics on unir-te. Els membres de Friendica d'altres llocs poden connectar-se de forma total, així com amb membres de moltes altres xarxes socials." + +#: src/Module/Invite.php:152 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Per acceptar aquesta invitació, per favor visita i registra't a %s o en qualsevol altre pàgina web pública Friendica." + +#: src/Module/Invite.php:153 +#, 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 "Tots els llocs Friendica estàn interconnectats per crear una web social amb privacitat millorada, controlada i propietat dels seus membres. També poden connectar amb moltes xarxes socials tradicionals. Consulteu %s per a una llista de llocs de Friendica alternatius en que pot inscriure's." + +#: src/Module/Invite.php:157 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Nostres disculpes. Aquest sistema no està configurat actualment per connectar amb altres llocs públics o convidar als membres." + +#: src/Module/Invite.php:160 +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks." +msgstr "" + +#: src/Module/Invite.php:159 +#, php-format +msgid "To accept this invitation, please visit and register at %s." +msgstr "" + +#: src/Module/Invite.php:167 +msgid "Send invitations" +msgstr "Enviant Invitacions" + +#: src/Module/Invite.php:168 +msgid "Enter email addresses, one per line:" +msgstr "Entri adreçes de correu, una per línia:" + +#: src/Module/Invite.php:172 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Estàs cordialment convidat a ajuntarte a mi i altres amics propers en Friendica - i ajudar-nos a crear una millor web social." + +#: src/Module/Invite.php:174 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Vostè haurà de proporcionar aquest codi d'invitació: $invite_code" + +#: src/Module/Invite.php:174 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Un cop registrat, si us plau contactar amb mi a través de la meva pàgina de perfil a:" + +#: src/Module/Invite.php:176 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendi.ca" +msgstr "" + +#: src/Module/Item/Compose.php:85 +msgid "Please enter a post body." +msgstr "" + +#: src/Module/Item/Compose.php:98 +msgid "This feature is only available with the frio theme." +msgstr "" + +#: src/Module/Item/Compose.php:122 +msgid "Compose new personal note" +msgstr "" + +#: src/Module/Item/Compose.php:131 +msgid "Compose new post" +msgstr "" + +#: src/Module/Item/Compose.php:187 +msgid "Visibility" +msgstr "" + +#: src/Module/Item/Compose.php:203 +msgid "Clear the location" +msgstr "" + +#: src/Module/Item/Compose.php:204 +msgid "Location services are unavailable on your device" +msgstr "" + +#: src/Module/Item/Compose.php:205 +msgid "" +"Location services are disabled. Please check the website's permissions on " +"your device" +msgstr "" + +#: src/Module/Item/Compose.php:211 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "" + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "" + +#: src/Module/Item/Follow.php:51 +msgid "Unable to follow this item." +msgstr "" + +#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +msgid "System down for maintenance" +msgstr "Sistema apagat per manteniment" + +#: 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 "" + +#: src/Module/Manifest.php:40 +msgid "A Decentralized Social Network" +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Arxius" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload" +msgstr "Pujar" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "La càrrega de fitxers ha fallat." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:68 +msgid "Unable to process image." +msgstr "Incapaç de processar la imatge." + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:95 +msgid "Image upload failed." +msgstr "Actualització de la imatge fracassada." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "Pàgina Normal del Compte " + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "Pàgina de Soapbox" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "Compte d'Amistat Automàtica" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "Página de organización" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "Página de noticias" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "Seleccionar tot" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +msgid "Blocked server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "" + +#: src/Module/Moderation/Item/Delete.php:65 +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 "" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Element no trobat" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "" + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "" + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Compte Normal" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Compte d'Amistat Automàtic" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Compte de Blog" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Usuaris registrats" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Registres d'usuari pendents" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s usuari esborrat" +msgstr[1] "%s usuaris esborrats" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Data de registre" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "Últim accés" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "Administrador del lloc" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "Compte expirat" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Els usuaris seleccionats seran esborrats!\\n\\nqualsevol cosa que aquests usuaris hagin publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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 "L'usuari {0} s'eliminarà!\\n\\nQualsevol cosa que aquest usuari hagi publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "" + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "" + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Compte aprovat." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Data de sol·licitud" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "Sense registres." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Denegar" + +#: src/Module/Notifications/Introductions.php:99 +msgid "Show Ignored Requests" +msgstr "Mostra les Sol·licituds Ignorades" + +#: src/Module/Notifications/Introductions.php:99 +msgid "Hide Ignored Requests" +msgstr "Amaga les Sol·licituds Ignorades" + +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 +msgid "Notification type:" +msgstr "" + +#: src/Module/Notifications/Introductions.php:118 +msgid "Suggested by:" +msgstr "" + +#: src/Module/Notifications/Introductions.php:143 +msgid "Claims to be known to you: " +msgstr "Diu que et coneix:" + +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "No" +msgstr "No" + +#: src/Module/Notifications/Introductions.php:152 +msgid "Shall your connection be bidirectional or not?" +msgstr "" + +#: src/Module/Notifications/Introductions.php:153 +#, 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 "" + +#: src/Module/Notifications/Introductions.php:154 +#, 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 "" + +#: src/Module/Notifications/Introductions.php:156 +msgid "Friend" +msgstr "Amic" + +#: src/Module/Notifications/Introductions.php:157 +msgid "Subscriber" +msgstr "" + +#: src/Module/Notifications/Introductions.php:216 +msgid "No introductions." +msgstr "Sense presentacions." + +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 +#, php-format +msgid "No more %s notifications." +msgstr "" + +#: src/Module/Notifications/Notification.php:135 +msgid "You must be logged in to show this page." +msgstr "" + +#: src/Module/Notifications/Notifications.php:66 +msgid "Network Notifications" +msgstr "Notificacions de la Xarxa" + +#: src/Module/Notifications/Notifications.php:72 +msgid "System Notifications" +msgstr "Notificacions del Sistema" + +#: src/Module/Notifications/Notifications.php:78 +msgid "Personal Notifications" +msgstr "Notificacions Personals" + +#: src/Module/Notifications/Notifications.php:84 +msgid "Home Notifications" +msgstr "Notificacions d'Inici" + +#: src/Module/Notifications/Notifications.php:140 +msgid "Show unread" +msgstr "" + +#: src/Module/Notifications/Ping.php:246 +msgid "{0} requested registration" +msgstr "{0} solicituts de registre" + +#: src/Module/Notifications/Ping.php:255 +#, php-format +msgid "{0} and %d others requested registration" +msgstr "" + +#: src/Module/OAuth/Acknowledge.php:51 +msgid "Authorize application connection" +msgstr "Autoritzi la connexió de aplicacions" + +#: src/Module/OAuth/Acknowledge.php:53 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vol autoritzar a aquesta aplicació per accedir als teus missatges i contactes, i/o crear nous enviaments per a vostè?" + +#: src/Module/OAuth/Authorize.php:54 +msgid "Unsupported or missing response type" +msgstr "" + +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +msgid "Incomplete request data" +msgstr "" + +#: 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:83 +msgid "Invalid data or unknown client" +msgstr "" + +#: src/Module/OAuth/Token.php:108 +msgid "Unsupported or missing grant type" +msgstr "" + +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "Tornar a inscriure’s a OStatus contactes" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "Manteniu aquesta finestra oberta fins que no hàgiu acabat." + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "No s’ha proporcionat cap contacte." + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "No s'ha pogut obtenir informació per al contacte." + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "No s'ha pogut buscar amics per contactar-los." + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Fet" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "èxit" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "suspendre" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "ignorar" + +#: src/Module/PermissionTooltip.php:49 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "" + +#: src/Module/PermissionTooltip.php:79 +msgid "Model not found" +msgstr "" + +#: src/Module/PermissionTooltip.php:94 +msgid "Unlisted" +msgstr "" + +#: src/Module/PermissionTooltip.php:112 +msgid "Remote privacy information not available." +msgstr "Informació de privacitat remota no disponible." + +#: src/Module/PermissionTooltip.php:121 +msgid "Visible to:" +msgstr "Visible per a:" + +#: src/Module/PermissionTooltip.php:204 +#, php-format +msgid "Collection (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:208 +#, php-format +msgid "Followers (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:227 +#, php-format +msgid "%d more" +msgstr "" + +#: src/Module/PermissionTooltip.php:231 +#, php-format +msgid "To: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:234 +#, php-format +msgid "CC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:237 +#, php-format +msgid "BCC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "" + +#: src/Module/Photo.php:130 +msgid "The Photo is not available." +msgstr "" + +#: src/Module/Photo.php:155 +#, php-format +msgid "The Photo with id %s is not available." +msgstr "" + +#: src/Module/Photo.php:192 +#, php-format +msgid "Invalid external resource with url %s." +msgstr "" + +#: src/Module/Photo.php:194 +#, php-format +msgid "Invalid photo with id %s." +msgstr "" + +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "" + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Editar Enviament" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "enllaç de web" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Insertar enllaç de video" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "enllaç de video" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Insertar enllaç de audio" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "enllaç de audio" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Esborrar etiqueta del element" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Selecciona etiqueta a esborrar:" + +#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Esborrar" + +#: src/Module/Profile/Contacts.php:159 +msgid "No contacts." +msgstr "Sense Contactes" + +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:59 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "" + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "El fitxer de imatge és buit." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "Veure Àlbum" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +msgid "Profile not found." +msgstr "Perfil no trobat." + +#: src/Module/Profile/Profile.php:158 +#, php-format +msgid "" +"You're currently viewing your profile as %s Cancel" +msgstr "" + +#: src/Module/Profile/Profile.php:167 +msgid "Full Name:" +msgstr "Nom Complet:" + +#: src/Module/Profile/Profile.php:172 +msgid "Member since:" +msgstr "" + +#: src/Module/Profile/Profile.php:178 +msgid "j F, Y" +msgstr "j F, Y" + +#: src/Module/Profile/Profile.php:179 +msgid "j F" +msgstr "j F" + +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 +msgid "Birthday:" +msgstr "Aniversari:" + +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +msgid "Age: " +msgstr "Edat:" + +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#, php-format +msgid "%d year old" +msgid_plural "%d years old" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "Descripció:" + +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "" + +#: src/Module/Profile/Profile.php:273 +msgid "View profile as:" +msgstr "" + +#: src/Module/Profile/Profile.php:290 +msgid "View as" +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "Perfil no disponible" + +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "Localitzador no vàlid" + +#: src/Module/Profile/RemoteFollow.php:95 +msgid "The provided profile link doesn't seem to be valid" +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:100 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:128 +msgid "Friend/Connection Request" +msgstr "Sol·licitud d'Amistat" + +#: src/Module/Profile/RemoteFollow.php:129 +#, 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 "" + +#: src/Module/Profile/RemoteFollow.php:130 +#, 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 "" + +#: src/Module/Profile/RemoteFollow.php:131 +msgid "Your Webfinger address or profile URL:" +msgstr "" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "" + +#: src/Module/Profile/Schedule.php:83 +msgid "Scheduled" +msgstr "" + +#: src/Module/Profile/Schedule.php:84 +msgid "Content" +msgstr "" + +#: src/Module/Profile/Schedule.php:85 +msgid "Remove post" +msgstr "" + +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "" + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Incapaç de comprovar la localització." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "" + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Nombre diari de missatges al mur per %s excedit. El missatge ha fallat." + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "si vols respondre a %s, comprova que els ajustos de privacitat del lloc permeten correus privats de remitents desconeguts." + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "" + +#: src/Module/Register.php:84 +msgid "Only parent users can create additional accounts." +msgstr "" + +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Aquest lloc excedeix el nombre diari de registres de comptes. Per favor, provi de nou demà." + +#: src/Module/Register.php:116 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." +msgstr "Podeu (opcionalment) omplir aquest formulari mitjançant OpenID subministrant el vostre OpenID i fent clic a 'Registre'." + +#: src/Module/Register.php:117 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Si vostè no està familiaritzat amb Twitter, si us plau deixi aquest camp en blanc i completi la resta dels elements." + +#: src/Module/Register.php:118 +msgid "Your OpenID (optional): " +msgstr "El seu OpenID (opcional):" + +#: src/Module/Register.php:127 +msgid "Include your profile in member directory?" +msgstr "Incloc el seu perfil al directori de membres?" + +#: src/Module/Register.php:148 +msgid "Note for the admin" +msgstr "Nota per a l'administrador" + +#: src/Module/Register.php:148 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Deixa un missatge per a l'administrador, per què vols unir-te a aquest node" + +#: src/Module/Register.php:149 +msgid "Membership on this site is by invitation only." +msgstr "Lloc accesible mitjançant invitació." + +#: src/Module/Register.php:150 +msgid "Your invitation code: " +msgstr "El vostre codi d'invitació:" + +#: src/Module/Register.php:158 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "El vostre nom complet (per exemple, Joe Smith, amb aspecte real o real):" + +#: src/Module/Register.php:159 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "La vostra adreça de correu electrònic: (la informació inicial s’enviarà allà, així que ha de ser una adreça existent.)" + +#: src/Module/Register.php:160 +msgid "Please repeat your e-mail address:" +msgstr "" + +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 +msgid "New Password:" +msgstr "Nova Contrasenya:" + +#: src/Module/Register.php:162 +msgid "Leave empty for an auto generated password." +msgstr "Deixeu-lo buit per obtenir una contrasenya generat automàticament." + +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 +msgid "Confirm:" +msgstr "Confirmar:" + +#: src/Module/Register.php:164 +#, 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 "Trieu un sobrenom de perfil. Això ha de començar amb un caràcter de text. La vostra adreça de perfil en aquest lloc serà la següent\"sobrenom @%s\"." + +#: src/Module/Register.php:165 +msgid "Choose a nickname: " +msgstr "Tria un àlies:" + +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Importar" + +#: src/Module/Register.php:174 +msgid "Import your profile to this friendica instance" +msgstr "Importeu el vostre perfil a aquesta instància de friendica" + +#: src/Module/Register.php:181 +msgid "Note: This node explicitly contains adult content" +msgstr "Nota: Aquest node conté explícitament contingut per a adults" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "Parent Password:" +msgstr "Contrasenya principal:" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "Introduïu la contrasenya del compte principal per validar la vostra sol·licitud." + +#: src/Module/Register.php:212 +msgid "Password doesn't match." +msgstr "" + +#: src/Module/Register.php:218 +msgid "Please enter your password." +msgstr "" + +#: src/Module/Register.php:260 +msgid "You have entered too much information." +msgstr "" + +#: src/Module/Register.php:283 +msgid "Please enter the identical mail address in the second field." +msgstr "" + +#: src/Module/Register.php:310 +msgid "The additional account was created." +msgstr "" + +#: src/Module/Register.php:335 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrat amb èxit. Per favor, comprovi el seu correu per a posteriors instruccions." + +#: src/Module/Register.php:342 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "No s'ha pogut enviar el missatge de correu electrònic. Aquí teniu els vostres detalls
    iniciar Sessió %s
    contrasenya: %s

    Podeu canviar la vostra contrasenya després de l’inici de sessió." + +#: src/Module/Register.php:348 +msgid "Registration successful." +msgstr "El registre ha tingut èxit." + +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 +msgid "Your registration can not be processed." +msgstr "El seu registre no pot ser processat." + +#: src/Module/Register.php:363 +msgid "You have to leave a request note for the admin." +msgstr "" + +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "" + +#: src/Module/Register.php:395 +msgid "Your registration is pending approval by the site owner." +msgstr "El seu registre està pendent d'aprovació pel propietari del lloc." + +#: src/Module/Search/Acl.php:73 +msgid "You must be logged in to use this module." +msgstr "" + +#: src/Module/Search/Index.php:69 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: src/Module/Search/Index.php:89 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: src/Module/Search/Index.php:205 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: src/Module/Search/Saved.php:59 +msgid "Search term was not saved." +msgstr "" + +#: src/Module/Search/Saved.php:62 +msgid "Search term already saved." +msgstr "" + +#: src/Module/Search/Saved.php:68 +msgid "Search term was not removed." +msgstr "" + +#: src/Module/Security/Login.php:123 +msgid "Create a New Account" +msgstr "Crear un Nou Compte" + +#: src/Module/Security/Login.php:142 +msgid "Your OpenID: " +msgstr "" + +#: src/Module/Security/Login.php:145 +msgid "" +"Please enter your username and password to add the OpenID to your existing " +"account." +msgstr "" + +#: src/Module/Security/Login.php:147 +msgid "Or login using OpenID: " +msgstr "O accedixi emprant OpenID:" + +#: src/Module/Security/Login.php:161 +msgid "Password: " +msgstr "Contrasenya:" + +#: src/Module/Security/Login.php:162 +msgid "Remember me" +msgstr "Recorda'm ho" + +#: src/Module/Security/Login.php:171 +msgid "Forgot your password?" +msgstr "Oblidà la contrasenya?" + +#: src/Module/Security/Login.php:174 +msgid "Website Terms of Service" +msgstr "Termes del Servei al Llocweb" + +#: src/Module/Security/Login.php:175 +msgid "terms of service" +msgstr "termes del servei" + +#: src/Module/Security/Login.php:177 +msgid "Website Privacy Policy" +msgstr "Política de Privacitat al Llocweb" + +#: src/Module/Security/Login.php:178 +msgid "privacy policy" +msgstr "política de privacitat" + +#: src/Module/Security/Logout.php:84 +#: src/Module/Security/TwoFactor/SignOut.php:78 +#: src/Module/Security/TwoFactor/SignOut.php:86 +#: src/Module/Security/TwoFactor/SignOut.php:108 +#: src/Module/Security/TwoFactor/SignOut.php:115 +msgid "Logged out." +msgstr "Has sortit" + +#: src/Module/Security/OpenID.php:54 +msgid "OpenID protocol error. No ID returned" +msgstr "" + +#: src/Module/Security/OpenID.php:90 +msgid "" +"Account not found. Please login to your existing account to add the OpenID " +"to it." +msgstr "" + +#: src/Module/Security/OpenID.php:92 +msgid "" +"Account not found. Please register a new account or login to your existing " +"account to add the OpenID to it." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 +msgid "Passwords do not match." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:64 +msgid "Password does not need changing." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 +msgid "Password unchanged." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:91 +msgid "Password Too Long" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:92 +msgid "" +"Since version 2022.09, we've realized that any password longer than 72 " +"characters is truncated during hashing. To prevent any confusion about this " +"behavior, please update your password to be fewer or equal to 72 characters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:93 +msgid "Update Password" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Current Password:" +msgstr "Contrasenya Actual:" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Your current password to confirm the changes" +msgstr "La teva actual contrasenya a fi de confirmar els canvis" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces and accentuated letters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 +msgid "Password length is limited to 72 characters." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:74 +#, php-format +msgid "Remaining recovery codes: %d" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:80 +#: src/Module/Security/TwoFactor/Verify.php:77 +#: src/Module/Settings/TwoFactor/Verify.php:95 +msgid "Invalid code, please retry." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:99 +msgid "Two-factor recovery" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:100 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:101 +#, php-format +msgid "Don’t have your phone? Enter a two-factor recovery code" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:102 +msgid "Please enter a recovery code" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:103 +msgid "Submit recovery code and complete login" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:122 +msgid "Sign out of this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:123 +msgid "" +"

    If you trust this browser, you will not be asked for verification code " +"the next time you sign in.

    " +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:124 +msgid "Sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:126 +msgid "Trust and sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:96 +msgid "Couldn't save browser to Cookie." +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:141 +msgid "Trust this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:142 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:143 +msgid "Not now" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:144 +msgid "Don't trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:145 +msgid "Trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:97 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:100 +#, php-format +msgid "" +"If you do not have access to your authentication code you can use a two-factor recovery code." +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Please enter a code from your authentication app" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:102 +msgid "Verify code and complete login" +msgstr "" + +#: src/Module/Settings/Account.php:96 +msgid "Please use a shorter name." +msgstr "" + +#: src/Module/Settings/Account.php:99 +msgid "Name too short." +msgstr "" + +#: src/Module/Settings/Account.php:108 +msgid "Wrong Password." +msgstr "" + +#: src/Module/Settings/Account.php:113 +msgid "Invalid email." +msgstr "" + +#: src/Module/Settings/Account.php:117 +msgid "Cannot change to that email." +msgstr "" + +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 +msgid "Settings were not updated." +msgstr "" + +#: src/Module/Settings/Account.php:364 +msgid "Contact CSV file upload error" +msgstr "" + +#: src/Module/Settings/Account.php:383 +msgid "Importing Contacts done" +msgstr "" + +#: src/Module/Settings/Account.php:396 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: src/Module/Settings/Account.php:413 +msgid "Unable to find your profile. Please contact your admin." +msgstr "" + +#: src/Module/Settings/Account.php:455 +msgid "Personal Page Subtypes" +msgstr "" + +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" +msgstr "" + +#: src/Module/Settings/Account.php:466 +msgid "Account for a personal profile." +msgstr "" + +#: src/Module/Settings/Account.php:473 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "Compte per a una organització que aprovi automàticament les sol·licituds de contacte com a 'seguidors'." + +#: src/Module/Settings/Account.php:480 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:487 +msgid "Account for community discussions." +msgstr "" + +#: src/Module/Settings/Account.php:494 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:501 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "Cuenta para un perfil público que aprueba automáticamente las solicitudes de contacto como 'Seguidores'." + +#: src/Module/Settings/Account.php:508 +msgid "Automatically approves all contact requests." +msgstr "" + +#: src/Module/Settings/Account.php:515 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "" + +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "" + +#: src/Module/Settings/Account.php:522 +msgid "Requires manual approval of contact requests." +msgstr "" + +#: src/Module/Settings/Account.php:531 +msgid "OpenID:" +msgstr "OpenID:" + +#: src/Module/Settings/Account.php:531 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opcional) Permetre a aquest OpenID iniciar sessió en aquest compte." + +#: src/Module/Settings/Account.php:539 +msgid "Publish your profile in your local site directory?" +msgstr "" + +#: src/Module/Settings/Account.php:539 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "" + +#: src/Module/Settings/Account.php:545 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "" + +#: src/Module/Settings/Account.php:558 +msgid "Account Settings" +msgstr "Ajustos de Compte" + +#: src/Module/Settings/Account.php:559 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: src/Module/Settings/Account.php:566 +msgid "Password Settings" +msgstr "Ajustos de Contrasenya" + +#: src/Module/Settings/Account.php:568 +msgid "Leave password fields blank unless changing" +msgstr "Deixi els camps de contrasenya buits per a no fer canvis" + +#: src/Module/Settings/Account.php:570 +msgid "Password:" +msgstr "Contrasenya:" + +#: src/Module/Settings/Account.php:570 +msgid "Your current password to confirm the changes of the email address" +msgstr "" + +#: src/Module/Settings/Account.php:573 +msgid "Delete OpenID URL" +msgstr "" + +#: src/Module/Settings/Account.php:575 +msgid "Basic Settings" +msgstr "Ajustos Basics" + +#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "" + +#: src/Module/Settings/Account.php:577 +msgid "Email Address:" +msgstr "Adreça de Correu:" + +#: src/Module/Settings/Account.php:578 +msgid "Your Timezone:" +msgstr "La teva zona Horària:" + +#: src/Module/Settings/Account.php:579 +msgid "Your Language:" +msgstr "El teu idioma:" + +#: src/Module/Settings/Account.php:579 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Definiu l’idioma que utilitzem per mostrar-vos la interfície Friendica i per enviar-vos correus electrònics" + +#: src/Module/Settings/Account.php:580 +msgid "Default Post Location:" +msgstr "Localització per Defecte del Missatge:" + +#: src/Module/Settings/Account.php:581 +msgid "Use Browser Location:" +msgstr "Ubicar-se amb el Navegador:" + +#: src/Module/Settings/Account.php:583 +msgid "Security and Privacy Settings" +msgstr "Ajustos de Seguretat i Privacitat" + +#: src/Module/Settings/Account.php:585 +msgid "Maximum Friend Requests/Day:" +msgstr "Nombre Màxim de Sol·licituds per Dia" + +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 +msgid "(to prevent spam abuse)" +msgstr "(per a prevenir abusos de spam)" + +#: src/Module/Settings/Account.php:587 +msgid "Allow your profile to be searchable globally?" +msgstr "" + +#: src/Module/Settings/Account.php:587 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "" + +#: src/Module/Settings/Account.php:588 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "" + +#: src/Module/Settings/Account.php:588 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "" +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "Make public posts unlisted" +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "" + +#: src/Module/Settings/Account.php:591 +msgid "Make all posted pictures accessible" +msgstr "" + +#: src/Module/Settings/Account.php:591 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "" + +#: src/Module/Settings/Account.php:592 +msgid "Allow friends to post to your profile page?" +msgstr "Permet als amics publicar en la seva pàgina de perfil?" + +#: src/Module/Settings/Account.php:592 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "" + +#: src/Module/Settings/Account.php:593 +msgid "Allow friends to tag your posts?" +msgstr "Permet als amics d'etiquetar els teus missatges?" + +#: src/Module/Settings/Account.php:593 +msgid "Your contacts can add additional tags to your posts." +msgstr "" + +#: src/Module/Settings/Account.php:594 +msgid "Permit unknown people to send you private mail?" +msgstr "Permetre a desconeguts enviar missatges al teu correu privat?" + +#: src/Module/Settings/Account.php:594 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "" + +#: src/Module/Settings/Account.php:595 +msgid "Maximum private messages per day from unknown people:" +msgstr "Màxim nombre de missatges, per dia, de desconeguts:" + +#: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "" + +#: src/Module/Settings/Account.php:598 +msgid "Default Post Permissions" +msgstr "Permisos de Correu per Defecte" + +#: src/Module/Settings/Account.php:602 +msgid "Expiration settings" +msgstr "" + +#: src/Module/Settings/Account.php:603 +msgid "Automatically expire posts after this many days:" +msgstr "Després de aquests nombre de dies, els missatges caduquen automàticament:" + +#: src/Module/Settings/Account.php:603 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Si està buit, els missatges no caducarà. Missatges caducats s'eliminaran" + +#: src/Module/Settings/Account.php:604 +msgid "Expire posts" +msgstr "" + +#: src/Module/Settings/Account.php:604 +msgid "When activated, posts and comments will be expired." +msgstr "" + +#: src/Module/Settings/Account.php:605 +msgid "Expire personal notes" +msgstr "" + +#: src/Module/Settings/Account.php:605 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "" + +#: src/Module/Settings/Account.php:606 +msgid "Expire starred posts" +msgstr "" + +#: src/Module/Settings/Account.php:606 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "" + +#: src/Module/Settings/Account.php:607 +msgid "Only expire posts by others" +msgstr "" + +#: src/Module/Settings/Account.php:607 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "" + +#: src/Module/Settings/Account.php:610 +msgid "Notification Settings" +msgstr "Ajustos de Notificació" + +#: src/Module/Settings/Account.php:611 +msgid "Send a notification email when:" +msgstr "Envia un correu notificant quan:" + +#: src/Module/Settings/Account.php:612 +msgid "You receive an introduction" +msgstr "Has rebut una presentació" + +#: src/Module/Settings/Account.php:613 +msgid "Your introductions are confirmed" +msgstr "La teva presentació està confirmada" + +#: src/Module/Settings/Account.php:614 +msgid "Someone writes on your profile wall" +msgstr "Algú ha escrit en el teu mur de perfil" + +#: src/Module/Settings/Account.php:615 +msgid "Someone writes a followup comment" +msgstr "Algú ha escrit un comentari de seguiment" + +#: src/Module/Settings/Account.php:616 +msgid "You receive a private message" +msgstr "Has rebut un missatge privat" + +#: src/Module/Settings/Account.php:617 +msgid "You receive a friend suggestion" +msgstr "Has rebut una suggerencia d'un amic" + +#: src/Module/Settings/Account.php:618 +msgid "You are tagged in a post" +msgstr "Estàs etiquetat en un enviament" + +#: src/Module/Settings/Account.php:620 +msgid "Create a desktop notification when:" +msgstr "" + +#: src/Module/Settings/Account.php:621 +msgid "Someone tagged you" +msgstr "" + +#: src/Module/Settings/Account.php:622 +msgid "Someone directly commented on your post" +msgstr "" + +#: src/Module/Settings/Account.php:623 +msgid "Someone liked your content" +msgstr "" + +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +msgid "Can only be enabled, when the direct comment notification is enabled." +msgstr "" + +#: src/Module/Settings/Account.php:624 +msgid "Someone shared your content" +msgstr "" + +#: src/Module/Settings/Account.php:625 +msgid "Someone commented in your thread" +msgstr "" + +#: src/Module/Settings/Account.php:626 +msgid "Someone commented in a thread where you commented" +msgstr "" + +#: src/Module/Settings/Account.php:627 +msgid "Someone commented in a thread where you interacted" +msgstr "" + +#: src/Module/Settings/Account.php:629 +msgid "Activate desktop notifications" +msgstr "Activa les notificacions a l'escriptori" + +#: src/Module/Settings/Account.php:629 +msgid "Show desktop popup on new notifications" +msgstr "Mostra la finestra emergent a les noves notificacions" + +#: src/Module/Settings/Account.php:633 +msgid "Text-only notification emails" +msgstr "Correu electrònic de notificació de només text" + +#: src/Module/Settings/Account.php:635 +msgid "Send text only notification emails, without the html part" +msgstr "Envieu només missatges de correu electrònic de notificació de text, sense la part html" + +#: src/Module/Settings/Account.php:639 +msgid "Show detailled notifications" +msgstr "Mostra les notificacions detallades" + +#: src/Module/Settings/Account.php:641 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "Per defecte, les notificacions es condensen a una única notificació per element. Quan està activada, es mostra tota notificació." + +#: src/Module/Settings/Account.php:645 +msgid "Show notifications of ignored contacts" +msgstr "" + +#: src/Module/Settings/Account.php:647 +msgid "" +"You don't see posts from ignored contacts. But you still see their comments." +" This setting controls if you want to still receive regular notifications " +"that are caused by ignored contacts or not." +msgstr "" + +#: src/Module/Settings/Account.php:650 +msgid "Advanced Account/Page Type Settings" +msgstr "Ajustos Avançats de Compte/ Pàgina" + +#: src/Module/Settings/Account.php:651 +msgid "Change the behaviour of this account for special situations" +msgstr "Canviar el comportament d'aquest compte en situacions especials" + +#: src/Module/Settings/Account.php:654 +msgid "Import Contacts" +msgstr "" + +#: src/Module/Settings/Account.php:655 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "" + +#: src/Module/Settings/Account.php:656 +msgid "Upload File" +msgstr "" + +#: src/Module/Settings/Account.php:659 +msgid "Relocate" +msgstr "traslladar-se" + +#: src/Module/Settings/Account.php:660 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "Si heu mogut aquest perfil d'un altre servidor i alguns dels vostres contactes no reben les vostres actualitzacions, proveu de prémer aquest botó." + +#: src/Module/Settings/Account.php:661 +msgid "Resend relocate message to contacts" +msgstr "Torneu a enviar el missatge a contactes" + +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "Connexió fracassada amb el compte de correu emprant la configuració proveïda." + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "L'accés al correu està deshabilitat en aquest lloc." + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "Cap" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "Configuració general de les xarxes socials" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "" + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "Repara les subscripcions a OStatus" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "Preparació de Correu/Bústia" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Si vol comunicar-se amb els contactes de correu emprant aquest servei (opcional), Si us plau, especifiqui com connectar amb la seva bústia." + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "Última comprovació de correu amb èxit:" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "Nom del servidor IMAP:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "Port IMAP:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "Seguretat:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "Nom d'usuari del correu" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "Contrasenya del correu:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "Adreça de resposta:" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "Enviar correu públic a tots els contactes del correu:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "Acció després d'importar:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "Moure a la carpeta" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "Moure a la carpeta:" + +#: src/Module/Settings/Delegation.php:54 +msgid "Delegation successfully granted." +msgstr "" + +#: src/Module/Settings/Delegation.php:56 +msgid "Parent user not found, unavailable or password doesn't match." +msgstr "" + +#: src/Module/Settings/Delegation.php:60 +msgid "Delegation successfully revoked." +msgstr "" + +#: src/Module/Settings/Delegation.php:82 +#: src/Module/Settings/Delegation.php:104 +msgid "" +"Delegated administrators can view but not change delegation permissions." +msgstr "" + +#: src/Module/Settings/Delegation.php:96 +msgid "Delegate user not found." +msgstr "" + +#: src/Module/Settings/Delegation.php:144 +msgid "No parent user" +msgstr "Cap usuari principal" + +#: src/Module/Settings/Delegation.php:155 +#: src/Module/Settings/Delegation.php:166 +msgid "Parent User" +msgstr "Usuari Principal" + +#: src/Module/Settings/Delegation.php:163 +msgid "Additional Accounts" +msgstr "" + +#: src/Module/Settings/Delegation.php:164 +msgid "" +"Register additional accounts that are automatically connected to your " +"existing account so you can manage them from this account." +msgstr "" + +#: src/Module/Settings/Delegation.php:165 +msgid "Register an additional account" +msgstr "" + +#: src/Module/Settings/Delegation.php:169 +msgid "" +"Parent users have total control about this account, including the account " +"settings. Please double check whom you give this access." +msgstr "Els usuaris principals tenen un control total sobre aquest compte, inclosa la configuració del compte. Si us plau, comprova a qui dóna aquest accés." + +#: src/Module/Settings/Delegation.php:173 +msgid "Delegates" +msgstr "delegada" + +#: src/Module/Settings/Delegation.php:175 +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 "Els delegats poden gestionar tots els aspectes d'aquest compte/pàgina, excepte per als ajustaments bàsics del compte. Si us plau, no deleguin el seu compte personal a ningú que no confiïn completament." + +#: src/Module/Settings/Delegation.php:176 +msgid "Existing Page Delegates" +msgstr "Actuals Delegats de Pàgina" + +#: src/Module/Settings/Delegation.php:178 +msgid "Potential Delegates" +msgstr "Delegats Potencials" + +#: src/Module/Settings/Delegation.php:181 +msgid "Add" +msgstr "Afegir" + +#: src/Module/Settings/Delegation.php:182 +msgid "No entries." +msgstr "Sense entrades" + +#: src/Module/Settings/Display.php:146 +msgid "The theme you chose isn't available." +msgstr "" + +#: src/Module/Settings/Display.php:186 +#, php-format +msgid "%s - (Unsupported)" +msgstr "%s - (No és compatible)" + +#: src/Module/Settings/Display.php:221 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:222 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:223 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:224 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:259 +msgid "Display Settings" +msgstr "Ajustos de Pantalla" + +#: src/Module/Settings/Display.php:261 +msgid "General Theme Settings" +msgstr "" + +#: src/Module/Settings/Display.php:262 +msgid "Custom Theme Settings" +msgstr "" + +#: src/Module/Settings/Display.php:263 +msgid "Content Settings" +msgstr "" + +#: src/Module/Settings/Display.php:264 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 +msgid "Theme settings" +msgstr "Configuració de Temes" + +#: src/Module/Settings/Display.php:265 +msgid "Timelines" +msgstr "" + +#: src/Module/Settings/Display.php:272 +msgid "Display Theme:" +msgstr "Visualitzar el Tema:" + +#: src/Module/Settings/Display.php:273 +msgid "Mobile Theme:" +msgstr "Tema Mobile:" + +#: src/Module/Settings/Display.php:276 +msgid "Number of items to display per page:" +msgstr "Número d'elements a mostrar per pàgina" + +#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277 +msgid "Maximum of 100 items" +msgstr "Màxim de 100 elements" + +#: src/Module/Settings/Display.php:277 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Nombre d'elements a veure per pàgina quan es vegin des d'un dispositiu mòbil:" + +#: src/Module/Settings/Display.php:278 +msgid "Update browser every xx seconds" +msgstr "Actualitzar navegador cada xx segons" + +#: src/Module/Settings/Display.php:278 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Mínim de 10 segons. Introduïu -1 per desactivar-lo." + +#: src/Module/Settings/Display.php:279 +msgid "Display emoticons" +msgstr "" + +#: src/Module/Settings/Display.php:279 +msgid "When enabled, emoticons are replaced with matching symbols." +msgstr "" + +#: src/Module/Settings/Display.php:280 +msgid "Infinite scroll" +msgstr "" + +#: src/Module/Settings/Display.php:280 +msgid "Automatic fetch new items when reaching the page end." +msgstr "" + +#: src/Module/Settings/Display.php:281 +msgid "Enable Smart Threading" +msgstr "" + +#: src/Module/Settings/Display.php:281 +msgid "Enable the automatic suppression of extraneous thread indentation." +msgstr "" + +#: src/Module/Settings/Display.php:282 +msgid "Display the Dislike feature" +msgstr "" + +#: src/Module/Settings/Display.php:282 +msgid "" +"Display the Dislike button and dislike reactions on posts and comments." +msgstr "" + +#: src/Module/Settings/Display.php:283 +msgid "Display the resharer" +msgstr "" + +#: src/Module/Settings/Display.php:283 +msgid "Display the first resharer as icon and text on a reshared item." +msgstr "" + +#: src/Module/Settings/Display.php:284 +msgid "Stay local" +msgstr "" + +#: src/Module/Settings/Display.php:284 +msgid "Don't go to a remote system when following a contact link." +msgstr "" + +#: src/Module/Settings/Display.php:285 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:285 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Timelines for the network page:" +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Select all the timelines that you want to see on your network page." +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Channel languages:" +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Select all languages that you want to see in your channels." +msgstr "" + +#: src/Module/Settings/Display.php:290 +msgid "Beginning of week:" +msgstr "" + +#: src/Module/Settings/Display.php:291 +msgid "Default calendar view:" +msgstr "" + +#: src/Module/Settings/Display.php:300 src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:312 +#, php-format +msgid "%s: %s" +msgstr "" + +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "Característiques Adicionals" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Aplicacions conectades" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "retirar l'autorització" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:167 +msgid "Profile couldn't be updated." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 +msgid "Label:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 +msgid "Value:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 +msgid "Field Permissions" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 +msgid "(click to open/close)" +msgstr "(clicar per a obrir/tancar)" + +#: src/Module/Settings/Profile/Index.php:224 +msgid "Add a new profile field" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:247 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:249 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:255 +msgid "Profile Actions" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:256 +msgid "Edit Profile Details" +msgstr "Editor de Detalls del Perfil" + +#: src/Module/Settings/Profile/Index.php:258 +msgid "Change Profile Photo" +msgstr "Canviar la Foto del Perfil" + +#: src/Module/Settings/Profile/Index.php:261 +msgid "Profile picture" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:262 +msgid "Location" +msgstr "Ubicació" + +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 +msgid "Miscellaneous" +msgstr "Miscel·lania" + +#: src/Module/Settings/Profile/Index.php:264 +msgid "Custom Profile Fields" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +msgid "Upload Profile Photo" +msgstr "Pujar Foto del Perfil" + +#: src/Module/Settings/Profile/Index.php:266 +#, 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 circles.

    " +msgstr "" + +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "Direcció:" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "Localitat/Ciutat:" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "Regió/Estat:" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "Codi Postal:" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "País" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "Pàgina web URL:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "Paraules Clau Públiques" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Emprat per suggerir potencials amics, Altres poden veure-ho)" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "Paraules Clau Privades:" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Emprat durant la cerca de perfils, mai mostrat a ningú)" + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 +#: src/Module/Settings/Profile/Photo/Index.php:101 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "La reducció de la imatge [%s] va fracassar." + +#: src/Module/Settings/Profile/Photo/Crop.php:150 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Recarregui la pàgina o netegi la caché del navegador si la nova foto no apareix immediatament." + +#: src/Module/Settings/Profile/Photo/Crop.php:155 +msgid "Unable to process image" +msgstr "No es pot processar la imatge" + +#: src/Module/Settings/Profile/Photo/Crop.php:174 +msgid "Photo not found." +msgstr "" + +#: src/Module/Settings/Profile/Photo/Crop.php:196 +msgid "Profile picture successfully updated." +msgstr "" + +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 +msgid "Crop Image" +msgstr "retallar imatge" + +#: src/Module/Settings/Profile/Photo/Crop.php:223 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Per favor, ajusta la retallada d'imatge per a una optima visualització." + +#: src/Module/Settings/Profile/Photo/Crop.php:225 +msgid "Use Image As Is" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:45 +msgid "Missing uploaded image." +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:124 +msgid "Profile Picture Settings" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:125 +msgid "Current Profile Picture" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:126 +msgid "Upload Profile Picture" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:127 +msgid "Upload Picture:" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:132 +msgid "or" +msgstr "o" + +#: src/Module/Settings/Profile/Photo/Index.php:134 +msgid "skip this step" +msgstr "saltar aquest pas" + +#: src/Module/Settings/Profile/Photo/Index.php:136 +msgid "select a photo from your photo albums" +msgstr "tria una foto dels teus àlbums" + +#: src/Module/Settings/RemoveMe.php:94 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[Notificació del sistema Friendica]" + +#: src/Module/Settings/RemoveMe.php:94 +msgid "User deleted their account" +msgstr "L’usuari ha suprimit el seu compte" + +#: src/Module/Settings/RemoveMe.php:95 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "Al vostre node Friendica, un usuari ha suprimit el seu compte. Assegureu-vos que les seves dades siguin eliminades de les còpies de seguretat." + +#: src/Module/Settings/RemoveMe.php:96 +#, php-format +msgid "The user id is %d" +msgstr "L’identificador d’usuari és %d" + +#: src/Module/Settings/RemoveMe.php:108 +msgid "Your user account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:128 +msgid "Remove My Account" +msgstr "Eliminar el Meu Compte" + +#: src/Module/Settings/RemoveMe.php:129 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Això eliminarà per complet el seu compte. Quan s'hagi fet això, no serà recuperable." + +#: src/Module/Settings/RemoveMe.php:131 +msgid "Please enter your password for verification:" +msgstr "Si us plau, introduïu la contrasenya per a la verificació:" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "" + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 +msgid "Please enter your password to access this page." +msgstr "Introduïu la vostra contrasenya per accedir a aquesta pàgina." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 +msgid "App-specific password generation failed: The description is empty." +msgstr "Ha fallat la generació de contrasenya específica per a l’aplicació: la descripció està buida." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +msgid "" +"App-specific password generation failed: This description already exists." +msgstr "Ha fallat la generació de contrasenya específica per a l'aplicació: aquesta descripció ja existeix" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 +msgid "New app-specific password generated." +msgstr "S'ha generat una contrasenya nova específica per a l'aplicació." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 +msgid "App-specific passwords successfully revoked." +msgstr "Les contrasenyes específiques de l'aplicació s'han revocat correctament." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 +msgid "App-specific password successfully revoked." +msgstr "La contrasenya específica de l'aplicació s'ha revocat correctament." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +msgid "Two-factor app-specific passwords" +msgstr "Contrasenyes específiques per a l'aplicació de dos factors" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 +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 "

    Les contrasenyes específiques de l’aplicació són contrasenyes generades aleatòriament en lloc de la contrasenya habitual per autenticar el vostre compte en aplicacions de tercers que no admeten l’autenticació de dos factors

    " + +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +msgid "" +"Make sure to copy your new app-specific password now. You won’t be able to " +"see it again!" +msgstr "Assegureu-vos de copiar la vostra nova contrasenya específica de l'aplicació ara. No el podreu tornar a veure!" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +msgid "Description" +msgstr "Descripció" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 +msgid "Last Used" +msgstr "Últim utilitzat" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 +msgid "Revoke" +msgstr "Revocar" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +msgid "Revoke All" +msgstr "Revoca tot" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +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 "Quan genereu una contrasenya nova específica de l’aplicació, l’heu d’utilitzar de seguida, us la mostrarà un cop després de generar-la." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 +msgid "Generate new app-specific password" +msgstr "Genereu una contrasenya nova específica de l'aplicació" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 +msgid "Friendiqa on my Fairphone 2..." +msgstr "Friendica al meu Fairphone 2." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +msgid "Generate" +msgstr "generar" + +#: src/Module/Settings/TwoFactor/Index.php:68 +msgid "Two-factor authentication successfully disabled." +msgstr "S'ha desactivat correctament l'autenticació de dos factors." + +#: src/Module/Settings/TwoFactor/Index.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:124 +msgid "Authenticator app" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Configured" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Not Configured" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:126 +msgid "

    You haven't finished configuring your authenticator app.

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

    Your authenticator app is correctly configured.

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:129 +msgid "Recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:130 +msgid "Remaining valid codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:132 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:134 +msgid "App-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:135 +msgid "Generated app-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:137 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:140 +msgid "Current password:" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:140 +msgid "" +"You need to provide your current password to change two-factor " +"authentication settings." +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:141 +msgid "Enable two-factor authentication" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:142 +msgid "Disable two-factor authentication" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:143 +msgid "Show recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:144 +msgid "Manage app-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:145 +msgid "Manage trusted browsers" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:146 +msgid "Finish app configuration" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:80 +msgid "New recovery codes successfully generated." +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:106 +msgid "Two-factor recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:108 +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 "" + +#: src/Module/Settings/TwoFactor/Recovery.php:110 +msgid "" +"When you generate new recovery codes, you must copy the new codes. Your old " +"codes won’t work anymore." +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:111 +msgid "Generate new recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:113 +msgid "Next: Verification" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:84 +msgid "Trusted browsers successfully removed." +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:94 +msgid "Trusted browser successfully removed." +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:136 +msgid "Two-factor Trusted Browsers" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:137 +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 "" + +#: src/Module/Settings/TwoFactor/Trusted.php:138 +msgid "Device" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:139 +msgid "OS" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:141 +msgid "Trusted" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:142 +msgid "Created At" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:143 +msgid "Last Use" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:145 +msgid "Remove All" +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:91 +msgid "Two-factor authentication successfully activated." +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:125 +#, 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 "" + +#: src/Module/Settings/TwoFactor/Verify.php:145 +msgid "Two-factor code verification" +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:147 +msgid "" +"

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

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

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

    %s

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:156 +msgid "Verify code and enable two-factor authentication" +msgstr "" + +#: src/Module/Settings/UserExport.php:90 +msgid "Export account" +msgstr "Exportar compte" + +#: src/Module/Settings/UserExport.php:90 +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 "Exportar la teva informació del compte i de contactes. Empra això per fer una còpia de seguretat del teu compte i/o moure'l cap altre servidor. " + +#: src/Module/Settings/UserExport.php:91 +msgid "Export all" +msgstr "Exportar tot" + +#: src/Module/Settings/UserExport.php:91 +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 "" + +#: src/Module/Settings/UserExport.php:92 +msgid "Export Contacts to CSV" +msgstr "" + +#: src/Module/Settings/UserExport.php:92 +msgid "" +"Export the list of the accounts you are following as CSV file. Compatible to" +" e.g. Mastodon." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:37 +msgid "" +"This node has blocked the top-level author or the author of the shared post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:38 +msgid "" +"You have ignored or blocked the top-level author or the author of the shared" +" post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:39 +msgid "" +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "" + +#: src/Module/Special/HTTPException.php:78 +msgid "Stack trace:" +msgstr "" + +#: src/Module/Special/HTTPException.php:83 +#, php-format +msgid "Exception thrown in %s:%d" +msgstr "" + +#: src/Module/Tos.php:58 src/Module/Tos.php:107 +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 "" + +#: src/Module/Tos.php:59 src/Module/Tos.php:108 +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 "" + +#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#, 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/settings/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 "" + +#: src/Module/Tos.php:63 src/Module/Tos.php:106 +msgid "Privacy Statement" +msgstr "" + +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "" + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "" + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "Les administracions de servidors tancats només poden ser realitzades per un administrador." + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "Moure el compte" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "Pots importar un compte d'un altre servidor Friendica" + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "Es necessari que exportis el teu compte de l'antic servidor i el pugis a aquest. Recrearem el teu antic compte aquí amb tots els teus contactes. Intentarem també informar als teus amics que t'has traslladat aquí." + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "Aquesta característica és experimental. No podem importar contactes des de la xarxa OStatus(GNU Social/Statusnet) or from Diaspora" + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "Arxiu del compte" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Per exportar el vostre compte, aneu a 'Configuració-> Exporta les vostres dades personals' i seleccioneu 'Exporta el compte'" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "Error decodificant l'arxiu del compte" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Error! No hi ha dades al arxiu! No es un arxiu de compte de Friendica?" + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "El usuari %s' ja existeix en aquest servidor!" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "Error en la creació de l'usuari" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contacte no importat" +msgstr[1] "%d contactes no importats" + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "Error en la creació del perfil d'usuari" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "Fet. Ja pots identificar-te amb el teu nom d'usuari i contrasenya" + +#: src/Module/Welcome.php:44 +msgid "Welcome to Friendica" +msgstr "Benvingut a Friendica" + +#: src/Module/Welcome.php:45 +msgid "New Member Checklist" +msgstr "Llista de Verificació dels Nous Membres" + +#: 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 "Ens agradaria oferir alguns consells i enllaços per ajudar a fer la teva experiència agradable. Feu clic a qualsevol element per visitar la pàgina corresponent. Un enllaç a aquesta pàgina serà visible des de la pàgina d'inici durant dues setmanes després de la teva inscripció inicial i després desapareixerà en silenci." + +#: src/Module/Welcome.php:48 +msgid "Getting Started" +msgstr "Començem" + +#: src/Module/Welcome.php:49 +msgid "Friendica Walk-Through" +msgstr "Paseja per Friendica" + +#: 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 la teva pàgina de Inici Ràpid - troba una breu presentació per les teves fitxes de perfil i xarxa, crea alguna nova connexió i troba algun grup per unir-te." + +#: src/Module/Welcome.php:53 +msgid "Go to Your Settings" +msgstr "Anar als Teus Ajustos" + +#: 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 "En la de la seva configuració de la pàgina - canviï la contrasenya inicial. També prengui nota de la Adreça d'Identitat. Això s'assembla a una adreça de correu electrònic - i serà útil per fer amics a la xarxa social lliure." + +#: 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 "Reviseu les altres configuracions, en particular la configuració de privadesa. Una llista de directoris no publicada és com tenir un número de telèfon no llistat. Normalment, hauria de publicar la seva llista - a menys que tots els seus amics i els amics potencials sàpiguen exactament com trobar-li." + +#: 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 "Puji una foto del seu perfil si encara no ho ha fet. Els estudis han demostrat que les persones amb fotos reals de ells mateixos tenen deu vegades més probabilitats de fer amics que les persones que no ho fan." + +#: src/Module/Welcome.php:60 +msgid "Edit Your Profile" +msgstr "Editar el Teu Perfil" + +#: 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 "Editi el perfil per defecte al seu gust. Reviseu la configuració per ocultar la seva llista d'amics i ocultar el perfil dels visitants desconeguts." + +#: src/Module/Welcome.php:62 +msgid "Profile Keywords" +msgstr "Paraules clau del Perfil" + +#: 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 "" + +#: src/Module/Welcome.php:65 +msgid "Connecting" +msgstr "Connectant" + +#: src/Module/Welcome.php:67 +msgid "Importing Emails" +msgstr "Important Emails" + +#: 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 "Introduïu les dades d'accés al correu electrònic a la seva pàgina de configuració de connector, si es desitja importar i relacionar-se amb amics o llistes de correu de la seva bústia d'email" + +#: src/Module/Welcome.php:69 +msgid "Go to Your Contacts Page" +msgstr "Anar a la Teva Pàgina de Contactes" + +#: 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 "La seva pàgina de Contactes és la seva porta d'entrada a la gestió de l'amistat i la connexió amb amics d'altres xarxes. Normalment, vostè entrar en la seva direcció o URL del lloc al diàleg Afegir Nou Contacte." + +#: src/Module/Welcome.php:71 +msgid "Go to Your Site's Directory" +msgstr "Anar al Teu Directori" + +#: 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 "La pàgina del Directori li permet trobar altres persones en aquesta xarxa o altres llocs federats. Busqui un enllaç Connectar o Seguir a la seva pàgina de perfil. Proporcioni la seva pròpia Adreça de Identitat si així ho sol·licita." + +#: src/Module/Welcome.php:73 +msgid "Finding New People" +msgstr "Trobar Gent Nova" + +#: 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 "Al tauler lateral de la pàgina de contacte Hi ha diverses eines per trobar nous amics. Podem coincidir amb les persones per interesos, buscar persones pel nom o per interès, i oferir suggeriments basats en les relacions de la xarxa. En un nou lloc, els suggeriments d'amics, en general comencen a poblar el lloc a les 24 hores." + +#: src/Module/Welcome.php:77 +msgid "Add Your Contacts To Circle" +msgstr "" + +#: src/Module/Welcome.php:78 +msgid "" +"Once you have made some friends, organize them into private conversation " +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "" + +#: src/Module/Welcome.php:80 +msgid "Why Aren't My Posts Public?" +msgstr "Per que no es public el meu enviament?" + +#: 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 "Friendica respecta la teva privacitat. Per defecte, els teus enviaments només s'envien a gent que has afegit com a amic. Per més informació, mira la secció d'ajuda des de l'enllaç de dalt." + +#: src/Module/Welcome.php:83 +msgid "Getting Help" +msgstr "Demanant Ajuda" + +#: src/Module/Welcome.php:84 +msgid "Go to the Help Section" +msgstr "Anar a la secció d'Ajuda" + +#: src/Module/Welcome.php:85 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "A les nostres pàgines d'ajuda es poden consultar detalls sobre les característiques d'altres programes i recursos." + +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +msgid "{0} wants to follow you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +msgid "{0} has started following you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#, php-format +msgid "%s liked %s's post" +msgstr "A %s li agrada l'enviament de %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#, php-format +msgid "%s disliked %s's post" +msgstr "A %s no li agrada l'enviament de %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#, php-format +msgid "%s is attending %s's event" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#, php-format +msgid "%s is not attending %s's event" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#, php-format +msgid "%s may attending %s's event" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s es ara amic de %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s va comentar en l'enviament de %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#, php-format +msgid "%s created a new post" +msgstr "%s ha creat un enviament nou" + +#: src/Navigation/Notifications/Factory/Introduction.php:133 +msgid "Friend Suggestion" +msgstr "Amics Suggerits " + +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "Friend/Connect Request" +msgstr "Sol·licitud d'Amistat/Connexió" + +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "New Follower" +msgstr "Nou Seguidor" + +#: src/Navigation/Notifications/Factory/Notification.php:134 +#, php-format +msgid "%1$s wants to follow you" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:136 +#, php-format +msgid "%1$s has started following you" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:208 +#, php-format +msgid "%1$s liked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:211 +#, php-format +msgid "%1$s liked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:218 +#, php-format +msgid "%1$s disliked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:221 +#, php-format +msgid "%1$s disliked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:228 +#, php-format +msgid "%1$s shared your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 +#, php-format +msgid "%1$s shared your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:235 +#: src/Navigation/Notifications/Factory/Notification.php:305 +#, php-format +msgid "%1$s shared the post %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:237 +#: src/Navigation/Notifications/Factory/Notification.php:307 +#, php-format +msgid "%1$s shared a post from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:239 +#: src/Navigation/Notifications/Factory/Notification.php:309 +#, php-format +msgid "%1$s shared the post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:311 +#, php-format +msgid "%1$s shared a post" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:249 +#, php-format +msgid "%1$s wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:256 +#, php-format +msgid "%1$s does not want to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:263 +#, php-format +msgid "%1$s maybe wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:270 +#, php-format +msgid "%1$s tagged you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:274 +#, php-format +msgid "%1$s replied to you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:278 +#, php-format +msgid "%1$s commented in your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:282 +#, php-format +msgid "%1$s commented on your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:289 +#, php-format +msgid "%1$s commented in their thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:291 +#, php-format +msgid "%1$s commented in their thread" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:293 +#, php-format +msgid "%1$s commented in the thread %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:295 +#, php-format +msgid "%1$s commented in the thread from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:300 +#, php-format +msgid "%1$s commented on your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 +msgid "[Friendica:Notify]" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:293 +#, php-format +msgid "%s New mail received at %s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:295 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s t'ha enviat un missatge privat nou en %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:296 +msgid "a private message" +msgstr "un missatge privat" + +#: src/Navigation/Notifications/Repository/Notify.php:296 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s t'ha enviat %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:298 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Per favor, visiteu %s per a veure i/o respondre els teus missatges privats." + +#: src/Navigation/Notifications/Repository/Notify.php:328 +#, php-format +msgid "%1$s commented on %2$s's %3$s %4$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:333 +#, php-format +msgid "%1$s commented on your %2$s %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:337 +#, php-format +msgid "%1$s commented on their %2$s %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 +#, php-format +msgid "%1$s Comment to conversation #%2$d by %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:343 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s ha comentat un element/conversació que estas seguint." + +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Si us pau, visiteu %s per a veure i/o respondre la conversació." + +#: src/Navigation/Notifications/Repository/Notify.php:354 +#, php-format +msgid "%s %s posted to your profile wall" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:356 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s ha fet un enviament al teu mur de perfils en %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:357 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s enviat a [url=%2$s]teu mur[/url]" + +#: src/Navigation/Notifications/Repository/Notify.php:370 +#, php-format +msgid "%s Introduction received" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:372 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Has rebut una presentació des de '%1$s' en %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:373 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Has rebut [url=%1$s] com a presentació[/url] des de %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Pot visitar el seu perfil en %s" + +#: src/Navigation/Notifications/Repository/Notify.php:380 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Si us plau visiteu %s per aprovar o rebutjar la presentació." + +#: src/Navigation/Notifications/Repository/Notify.php:387 +#, php-format +msgid "%s A new person is sharing with you" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s està compartint amb tú a %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:397 +#, php-format +msgid "%s You have a new follower" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "Tens un nou seguidor a %2$s : %1$s" + +#: src/Navigation/Notifications/Repository/Notify.php:413 +#, php-format +msgid "%s Friend suggestion received" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:415 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Has rebut una suggerencia d'amistat des de '%1$s' en %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:416 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Has rebut [url=%1$s] com a suggerencia d'amistat[/url] per a %2$s des de %3$s." + +#: src/Navigation/Notifications/Repository/Notify.php:422 +msgid "Name:" +msgstr "Nom:" + +#: src/Navigation/Notifications/Repository/Notify.php:423 +msgid "Photo:" +msgstr "Foto:" + +#: src/Navigation/Notifications/Repository/Notify.php:426 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Si us plau, visiteu %s per aprovar o rebutjar la suggerencia." + +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 +#, php-format +msgid "%s Connection accepted" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "'%1$s' ha acceptat la teva petició de conexió a %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s ha acceptat el teu [url=%1$s]sol·licitud de connexió[/url]." + +#: src/Navigation/Notifications/Repository/Notify.php:442 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "Ara sou amics mutus i podeu intercanviar actualitzacions d'estat, fotos i correu electrònic sense restriccions." + +#: src/Navigation/Notifications/Repository/Notify.php:444 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr " Visiteu%ssi voleu fer canvis en aquesta relació." + +#: src/Navigation/Notifications/Repository/Notify.php:457 +#, php-format +msgid "" +"'%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." +msgstr "'%1$s' ha decidit acceptar-vos un fan, que restringeix algunes formes de comunicació, com ara la missatgeria privada i algunes interaccions de perfils. Si es tracta d’una pàgina de celebritat o comunitat, aquestes opcions s’apliquen automàticament." + +#: src/Navigation/Notifications/Repository/Notify.php:459 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future." +msgstr "'%1$s' pot decidir optar per ampliar-la en una relació bidireccional o més permissiva en el futur." + +#: src/Navigation/Notifications/Repository/Notify.php:461 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Visiteu%s si voleu fer canvis en aquesta relació." + +#: src/Navigation/Notifications/Repository/Notify.php:471 +msgid "registration request" +msgstr "sol·licitud de registre" + +#: src/Navigation/Notifications/Repository/Notify.php:473 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "Heu rebut una sol·licitud de registre de '%1$s' a %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:474 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "Heu rebut un [url=%1$s]sol·licitud de registre[/url] from %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 +#, php-format +msgid "" +"Full Name:\t%s\n" +"Site Location:\t%s\n" +"Login Name:\t%s (%s)" +msgstr "Nom complet:\t%s\nUbicació del lloc:\t%s\nNom d'usuari:\t%s (%s)" + +#: src/Navigation/Notifications/Repository/Notify.php:485 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Visiteu %s per aprovar o rebutjar la sol·licitud." + +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:780 +#, php-format +msgid "%s %s tagged you" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:783 +#, php-format +msgid "%s %s shared a new post" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "" + +#: src/Object/EMail/ItemCCEMail.php:42 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Aquest missatge va ser enviat a vostè per %s, un membre de la xarxa social Friendica." -#: mod/item.php:994 +#: src/Object/EMail/ItemCCEMail.php:44 #, php-format msgid "You may visit them online at %s" msgstr "El pot visitar en línia a %s" -#: mod/item.php:995 +#: src/Object/EMail/ItemCCEMail.php:45 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Si us plau, poseu-vos en contacte amb el remitent responent a aquest missatge si no voleu rebre aquests missatges." -#: mod/item.php:999 +#: src/Object/EMail/ItemCCEMail.php:49 #, php-format msgid "%s posted an update." msgstr "%s ha publicat una actualització." -#: mod/network.php:398 -#, php-format -msgid "" -"Warning: This group contains %s member from a network that doesn't allow non" -" public messages." -msgid_plural "" -"Warning: This group contains %s members from a network that doesn't allow " -"non public messages." -msgstr[0] "" -msgstr[1] "" +#: src/Object/Post.php:138 +msgid "Private Message" +msgstr "Missatge Privat" -#: mod/network.php:401 -msgid "Messages in this group won't be send to these receivers." +#: src/Object/Post.php:142 +msgid "Public Message" msgstr "" -#: mod/network.php:529 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Els missatges privats a aquesta persona es troben en risc de divulgació pública." +#: src/Object/Post.php:146 +msgid "Unlisted Message" +msgstr "" -#: mod/network.php:534 -msgid "Invalid contact." -msgstr "Contacte no vàlid." +#: src/Object/Post.php:181 +msgid "This entry was edited" +msgstr "L'entrada fou editada" -#: mod/network.php:826 -msgid "Commented Order" -msgstr "Ordre dels Comentaris" +#: src/Object/Post.php:209 +msgid "Connector Message" +msgstr "" -#: mod/network.php:829 -msgid "Sort by Comment Date" -msgstr "Ordenar per Data de Comentari" +#: src/Object/Post.php:225 src/Object/Post.php:227 +msgid "Edit" +msgstr "Editar" -#: mod/network.php:834 -msgid "Posted Order" -msgstr "Ordre dels Enviaments" +#: src/Object/Post.php:261 +msgid "Delete globally" +msgstr "" -#: mod/network.php:837 -msgid "Sort by Post Date" -msgstr "Ordenar per Data d'Enviament" +#: src/Object/Post.php:261 +msgid "Remove locally" +msgstr "" -#: mod/network.php:848 -msgid "Posts that mention or involve you" -msgstr "Missatge que et menciona o t'impliquen" +#: src/Object/Post.php:268 +#, php-format +msgid "Block %s" +msgstr "" -#: mod/network.php:856 -msgid "New" -msgstr "Nou" +#: src/Object/Post.php:273 +#, php-format +msgid "Ignore %s" +msgstr "" -#: mod/network.php:859 -msgid "Activity Stream - by date" -msgstr "Activitat del Flux - per data" +#: src/Object/Post.php:278 +#, php-format +msgid "Collapse %s" +msgstr "" -#: mod/network.php:867 -msgid "Shared Links" -msgstr "Enllaços Compartits" +#: src/Object/Post.php:282 +msgid "Report post" +msgstr "" -#: mod/network.php:870 -msgid "Interesting Links" -msgstr "Enllaços Interesants" +#: src/Object/Post.php:293 +msgid "Save to folder" +msgstr "" -#: mod/network.php:878 -msgid "Starred" -msgstr "Favorits" +#: src/Object/Post.php:333 +msgid "I will attend" +msgstr "" -#: mod/network.php:881 -msgid "Favourite Posts" -msgstr "Enviaments Favorits" +#: src/Object/Post.php:333 +msgid "I will not attend" +msgstr "" -#: mod/ping.php:261 -msgid "{0} wants to be your friend" -msgstr "{0} vol ser el teu amic" +#: src/Object/Post.php:333 +msgid "I might attend" +msgstr "" -#: mod/ping.php:276 -msgid "{0} sent you a message" -msgstr "{0} t'ha enviat un missatge de" +#: src/Object/Post.php:363 +msgid "Ignore thread" +msgstr "" -#: mod/ping.php:291 -msgid "{0} requested registration" -msgstr "{0} solicituts de registre" +#: src/Object/Post.php:364 +msgid "Unignore thread" +msgstr "" -#: mod/viewcontacts.php:72 -msgid "No contacts." -msgstr "Sense Contactes" +#: src/Object/Post.php:365 +msgid "Toggle ignore status" +msgstr "" -#: object/Item.php:370 +#: src/Object/Post.php:375 +msgid "Add star" +msgstr "" + +#: src/Object/Post.php:376 +msgid "Remove star" +msgstr "" + +#: src/Object/Post.php:377 +msgid "Toggle star status" +msgstr "" + +#: src/Object/Post.php:388 +msgid "Pin" +msgstr "" + +#: src/Object/Post.php:389 +msgid "Unpin" +msgstr "" + +#: src/Object/Post.php:390 +msgid "Toggle pin status" +msgstr "" + +#: src/Object/Post.php:393 +msgid "Pinned" +msgstr "" + +#: src/Object/Post.php:398 +msgid "Add tag" +msgstr "" + +#: src/Object/Post.php:411 +msgid "Quote share this" +msgstr "" + +#: src/Object/Post.php:411 +msgid "Quote Share" +msgstr "" + +#: src/Object/Post.php:414 +msgid "Reshare this" +msgstr "" + +#: src/Object/Post.php:414 +msgid "Reshare" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Cancel your Reshare" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Unshare" +msgstr "" + +#: src/Object/Post.php:466 +#, php-format +msgid "%s (Received %s)" +msgstr "" + +#: src/Object/Post.php:472 +msgid "Comment this item on your system" +msgstr "" + +#: src/Object/Post.php:472 +msgid "Remote comment" +msgstr "" + +#: src/Object/Post.php:494 +msgid "Share via ..." +msgstr "" + +#: src/Object/Post.php:494 +msgid "Share via external services" +msgstr "" + +#: src/Object/Post.php:523 +msgid "to" +msgstr "a" + +#: src/Object/Post.php:524 msgid "via" msgstr "via" -#: view/theme/frio/php/Image.php:23 -msgid "Repeat the image" +#: src/Object/Post.php:525 +msgid "Wall-to-Wall" +msgstr "Mur-a-Mur" + +#: src/Object/Post.php:526 +msgid "via Wall-To-Wall:" +msgstr "via Mur-a-Mur" + +#: src/Object/Post.php:573 +#, php-format +msgid "Reply to %s" msgstr "" -#: view/theme/frio/php/Image.php:23 -msgid "Will repeat your image to fill the background." +#: src/Object/Post.php:576 +msgid "More" msgstr "" -#: view/theme/frio/php/Image.php:25 -msgid "Stretch" +#: src/Object/Post.php:595 +msgid "Notifier task is pending" msgstr "" -#: view/theme/frio/php/Image.php:25 -msgid "Will stretch to width/height of the image." +#: src/Object/Post.php:596 +msgid "Delivery to remote servers is pending" msgstr "" -#: view/theme/frio/php/Image.php:27 -msgid "Resize fill and-clip" +#: src/Object/Post.php:597 +msgid "Delivery to remote servers is underway" msgstr "" -#: view/theme/frio/php/Image.php:27 -msgid "Resize to fill and retain aspect ratio." +#: src/Object/Post.php:598 +msgid "Delivery to remote servers is mostly done" msgstr "" -#: view/theme/frio/php/Image.php:29 -msgid "Resize best fit" +#: src/Object/Post.php:599 +msgid "Delivery to remote servers is done" msgstr "" -#: view/theme/frio/php/Image.php:29 -msgid "Resize to best fit and retain aspect ratio." +#: src/Object/Post.php:619 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentari" +msgstr[1] "%d comentaris" + +#: src/Object/Post.php:620 +msgid "Show more" msgstr "" -#: view/theme/frio/config.php:42 -msgid "Default" +#: src/Object/Post.php:621 +msgid "Show fewer" msgstr "" -#: view/theme/frio/config.php:54 -msgid "Note: " +#: src/Object/Post.php:657 +#, php-format +msgid "Reshared by: %s" msgstr "" -#: view/theme/frio/config.php:54 -msgid "Check image permissions if all users are allowed to visit the image" +#: src/Object/Post.php:662 +#, php-format +msgid "Viewed by: %s" msgstr "" -#: view/theme/frio/config.php:62 -msgid "Select scheme" +#: src/Object/Post.php:667 +#, php-format +msgid "Liked by: %s" msgstr "" -#: view/theme/frio/config.php:63 -msgid "Navigation bar background color" +#: src/Object/Post.php:672 +#, php-format +msgid "Disliked by: %s" msgstr "" -#: view/theme/frio/config.php:64 -msgid "Navigation bar icon color " +#: src/Object/Post.php:677 +#, php-format +msgid "Attended by: %s" msgstr "" -#: view/theme/frio/config.php:65 -msgid "Link color" +#: src/Object/Post.php:682 +#, php-format +msgid "Maybe attended by: %s" msgstr "" -#: view/theme/frio/config.php:66 -msgid "Set the background color" +#: src/Object/Post.php:687 +#, php-format +msgid "Not attended by: %s" msgstr "" -#: view/theme/frio/config.php:67 -msgid "Content background transparency" +#: src/Object/Post.php:692 +#, php-format +msgid "Reacted with %s by: %s" msgstr "" -#: view/theme/frio/config.php:68 -msgid "Set the background image" +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" msgstr "" -#: view/theme/frio/theme.php:229 -msgid "Guest" +#: src/Protocol/OStatus.php:1390 +#, php-format +msgid "%s is now following %s." msgstr "" -#: view/theme/frio/theme.php:235 -msgid "Visitor" +#: src/Protocol/OStatus.php:1391 +msgid "following" +msgstr "seguint" + +#: src/Protocol/OStatus.php:1394 +#, php-format +msgid "%s stopped following %s." msgstr "" -#: view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Adaptació" +#: src/Protocol/OStatus.php:1395 +msgid "stopped following" +msgstr "Deixar de seguir" -#: view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Esquerra" - -#: view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centre" - -#: view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Esquema de colors" - -#: view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Mida del text en enviaments" - -#: view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "mida del text en Areas de Text" - -#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112 -msgid "Community Profiles" -msgstr "Perfils de Comunitat" - -#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116 -msgid "Last users" -msgstr "Últims usuaris" - -#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115 -msgid "Find Friends" -msgstr "Trobar Amistats" - -#: view/theme/vier/theme.php:200 -msgid "Local Directory" -msgstr "Directori Local" - -#: view/theme/vier/theme.php:291 -msgid "Quick Start" +#: src/Render/FriendicaSmartyEngine.php:56 +#, php-format +msgid "The folder %s must be writable by webserver." msgstr "" -#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114 -msgid "Connect Services" -msgstr "Serveis Connectats" +#: src/Security/Authentication.php:227 +msgid "Login failed." +msgstr "Error d'accés." -#: view/theme/vier/config.php:64 -msgid "Comma separated list of helper forums" +#: src/Security/Authentication.php:272 +msgid "Login failed. Please check your credentials." msgstr "" -#: view/theme/vier/config.php:110 -msgid "Set style" +#: src/Security/Authentication.php:391 +#, php-format +msgid "Welcome %s" msgstr "" -#: view/theme/vier/config.php:111 -msgid "Community Pages" -msgstr "Pàgines de la Comunitat" +#: src/Security/Authentication.php:392 +msgid "Please upload a profile photo." +msgstr "Per favor, carrega una foto per al perfil" -#: view/theme/vier/config.php:113 -msgid "Help or @NewHere ?" -msgstr "Ajuda o @NouAqui?" +#: src/Util/EMailer/MailBuilder.php:260 +msgid "Friendica Notification" +msgstr "" -#: view/theme/duepuntozero/config.php:45 +#: src/Util/EMailer/NotifyMailBuilder.php:78 +#: src/Util/EMailer/SystemMailBuilder.php:54 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "" + +#: src/Util/EMailer/NotifyMailBuilder.php:80 +#: src/Util/EMailer/SystemMailBuilder.php:56 +#, php-format +msgid "%s Administrator" +msgstr "" + +#: 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 "" + +#: src/Util/Temporal.php:172 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: src/Util/Temporal.php:280 +#, php-format +msgid "Time zone: %s Change in Settings" +msgstr "" + +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +msgid "never" +msgstr "" + +#: src/Util/Temporal.php:343 +msgid "less than a second ago" +msgstr "" + +#: src/Util/Temporal.php:352 +msgid "year" +msgstr "" + +#: src/Util/Temporal.php:352 +msgid "years" +msgstr "" + +#: src/Util/Temporal.php:353 +msgid "months" +msgstr "" + +#: src/Util/Temporal.php:354 +msgid "weeks" +msgstr "" + +#: src/Util/Temporal.php:355 +msgid "days" +msgstr "" + +#: src/Util/Temporal.php:356 +msgid "hour" +msgstr "" + +#: src/Util/Temporal.php:356 +msgid "hours" +msgstr "" + +#: src/Util/Temporal.php:357 +msgid "minute" +msgstr "" + +#: src/Util/Temporal.php:357 +msgid "minutes" +msgstr "" + +#: src/Util/Temporal.php:358 +msgid "second" +msgstr "" + +#: src/Util/Temporal.php:358 +msgid "seconds" +msgstr "" + +#: src/Util/Temporal.php:367 +#, php-format +msgid "in %1$d %2$s" +msgstr "" + +#: src/Util/Temporal.php:370 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: src/Worker/PushSubscription.php:110 +msgid "Notification from Friendica" +msgstr "" + +#: src/Worker/PushSubscription.php:111 +msgid "Empty Post" +msgstr "" + +#: view/theme/duepuntozero/config.php:68 +msgid "default" +msgstr "" + +#: view/theme/duepuntozero/config.php:69 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:46 +#: view/theme/duepuntozero/config.php:70 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:47 +#: view/theme/duepuntozero/config.php:71 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:48 +#: view/theme/duepuntozero/config.php:72 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:49 +#: view/theme/duepuntozero/config.php:73 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:50 +#: view/theme/duepuntozero/config.php:74 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:62 +#: view/theme/duepuntozero/config.php:87 msgid "Variations" msgstr "" -#: boot.php:970 -msgid "Delete this item?" -msgstr "Esborrar aquest element?" +#: view/theme/frio/config.php:153 +msgid "Light (Accented)" +msgstr "" -#: boot.php:973 -msgid "show fewer" -msgstr "Mostrar menys" +#: view/theme/frio/config.php:154 +msgid "Dark (Accented)" +msgstr "" -#: boot.php:1655 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Actualització de %s fracassà. Mira el registre d'errors." +#: view/theme/frio/config.php:155 +msgid "Black (Accented)" +msgstr "" -#: boot.php:1767 -msgid "Create a New Account" -msgstr "Crear un Nou Compte" +#: view/theme/frio/config.php:167 +msgid "Note" +msgstr "" -#: boot.php:1796 -msgid "Password: " -msgstr "Contrasenya:" +#: view/theme/frio/config.php:167 +msgid "Check image permissions if all users are allowed to see the image" +msgstr "" -#: boot.php:1797 -msgid "Remember me" -msgstr "Recorda'm ho" +#: view/theme/frio/config.php:173 +msgid "Custom" +msgstr "" -#: boot.php:1800 -msgid "Or login using OpenID: " -msgstr "O accedixi emprant OpenID:" +#: view/theme/frio/config.php:174 +msgid "Legacy" +msgstr "" -#: boot.php:1806 -msgid "Forgot your password?" -msgstr "Oblidà la contrasenya?" +#: view/theme/frio/config.php:175 +msgid "Accented" +msgstr "" -#: boot.php:1809 -msgid "Website Terms of Service" -msgstr "Termes del Servei al Llocweb" +#: view/theme/frio/config.php:176 +msgid "Select color scheme" +msgstr "" -#: boot.php:1810 -msgid "terms of service" -msgstr "termes del servei" +#: view/theme/frio/config.php:177 +msgid "Select scheme accent" +msgstr "" -#: boot.php:1812 -msgid "Website Privacy Policy" -msgstr "Política de Privacitat al Llocweb" +#: view/theme/frio/config.php:177 +msgid "Blue" +msgstr "" -#: boot.php:1813 -msgid "privacy policy" -msgstr "política de privacitat" +#: view/theme/frio/config.php:177 +msgid "Red" +msgstr "" -#: index.php:451 -msgid "toggle mobile" -msgstr "canviar a mòbil" +#: view/theme/frio/config.php:177 +msgid "Purple" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Green" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Pink" +msgstr "" + +#: view/theme/frio/config.php:178 +msgid "Copy or paste schemestring" +msgstr "" + +#: view/theme/frio/config.php:178 +msgid "" +"You can copy this string to share your theme with others. Pasting here " +"applies the schemestring" +msgstr "" + +#: view/theme/frio/config.php:179 +msgid "Navigation bar background color" +msgstr "" + +#: view/theme/frio/config.php:180 +msgid "Navigation bar icon color " +msgstr "" + +#: view/theme/frio/config.php:181 +msgid "Link color" +msgstr "" + +#: view/theme/frio/config.php:182 +msgid "Set the background color" +msgstr "" + +#: view/theme/frio/config.php:183 +msgid "Content background opacity" +msgstr "" + +#: view/theme/frio/config.php:184 +msgid "Set the background image" +msgstr "" + +#: view/theme/frio/config.php:185 +msgid "Background image style" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "" + +#: view/theme/frio/config.php:192 +msgid "Login page background image" +msgstr "" + +#: view/theme/frio/config.php:196 +msgid "Login page background color" +msgstr "" + +#: view/theme/frio/config.php:196 +msgid "Leave background image and color empty for theme defaults" +msgstr "" + +#: view/theme/frio/php/Image.php:39 +msgid "Top Banner" +msgstr "" + +#: view/theme/frio/php/Image.php:39 +msgid "" +"Resize image to the width of the screen and show background color below on " +"long pages." +msgstr "" + +#: view/theme/frio/php/Image.php:40 +msgid "Full screen" +msgstr "" + +#: view/theme/frio/php/Image.php:40 +msgid "" +"Resize image to fill entire screen, clipping either the right or the bottom." +msgstr "" + +#: view/theme/frio/php/Image.php:41 +msgid "Single row mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:41 +msgid "" +"Resize image to repeat it on a single row, either vertical or horizontal." +msgstr "" + +#: view/theme/frio/php/Image.php:42 +msgid "Mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:42 +msgid "Repeat image to fill the screen." +msgstr "" + +#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +msgid "Skip to main content" +msgstr "" + +#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +msgid "Back to top" +msgstr "" + +#: view/theme/frio/theme.php:211 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:214 +msgid "Visitor" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Alignment" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Left" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Center" +msgstr "" + +#: view/theme/quattro/config.php:90 +msgid "Color scheme" +msgstr "" + +#: view/theme/quattro/config.php:91 +msgid "Posts font size" +msgstr "" + +#: view/theme/quattro/config.php:92 +msgid "Textareas font size" +msgstr "" + +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" +msgstr "" + +#: view/theme/vier/config.php:131 +msgid "don't show" +msgstr "" + +#: view/theme/vier/config.php:131 +msgid "show" +msgstr "" + +#: view/theme/vier/config.php:137 +msgid "Set style" +msgstr "" + +#: view/theme/vier/config.php:138 +msgid "Community Pages" +msgstr "" + +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +msgid "Community Profiles" +msgstr "" + +#: view/theme/vier/config.php:140 +msgid "Help or @NewHere ?" +msgstr "" + +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +msgid "Connect Services" +msgstr "" + +#: view/theme/vier/config.php:142 +msgid "Find Friends" +msgstr "" + +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +msgid "Last users" +msgstr "" + +#: view/theme/vier/theme.php:234 +msgid "Quick Start" +msgstr "" diff --git a/view/lang/ca/strings.php b/view/lang/ca/strings.php index f542daf97..40150ac50 100644 --- a/view/lang/ca/strings.php +++ b/view/lang/ca/strings.php @@ -5,261 +5,259 @@ function string_plural_select_ca($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Add New Contact'] = 'Afegir Nou Contacte'; -$a->strings['Enter address or web location'] = 'Introdueixi adreça o ubicació web'; -$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Exemple: bob@example.com, http://example.com/barbara'; -$a->strings['Connect'] = 'Connexió'; -$a->strings['%d invitation available'] = [ - 0 => '%d invitació disponible', - 1 => '%d invitacions disponibles', +$a->strings['Unable to locate original post.'] = 'No es pot localitzar post original.'; +$a->strings['Empty post discarded.'] = 'Buidat després de rebutjar.'; +$a->strings['Item not found.'] = 'Article no trobat.'; +$a->strings['Permission denied.'] = 'Permís denegat.'; +$a->strings['No valid account found.'] = 'Compte no vàlid trobat.'; +$a->strings['Password reset request issued. Check your email.'] = 'Sol·licitut de restabliment de contrasenya enviat. Comprovi el seu correu.'; +$a->strings[' + Dear %1$s, + A request was recently received at "%2$s" to reset your account + password. In order to confirm this request, please select the verification link + below or paste it into your web browser address bar. + + If you did NOT request this change, please DO NOT follow the link + provided and ignore and/or delete this email, the request will expire shortly. + + Your password will not be changed unless we can verify that you + issued this request.'] = ' + Benvolgut %1$s, + Recentment es va rebre una sol·licitud a "%2$s" per restablir el vostre compte + contrasenya Per confirmar aquesta sol·licitud, seleccioneu l’enllaç de verificació + a continuació o enganxeu-lo a la barra d\'adreces del navegador web + Si NO heu sol·licitat aquest canvi, NO seguiu l\'enllaç + sempre que, ignorant i / o suprimint aquest correu electrònic, la sol·licitud caducarà en breu. + + La vostra contrasenya no es canviarà tret que puguem verificar-la +va emetre aquesta sol·licitud.'; +$a->strings[' + Follow this link soon to verify your identity: + + %1$s + + You will then receive a follow-up message containing the new password. + You may change that password from your account settings page after logging in. + + The login details are as follows: + + Site Location: %2$s + Login Name: %3$s'] = ' + Seguiu aquest enllaç aviat per verificar la vostra identitat: + + %1$s + + A continuació, rebrà un missatge de seguiment que conté la nova contrasenya. + Podeu canviar aquesta contrasenya des de la pàgina de configuració del compte després d’iniciar la sessió. + Els detalls d’inici de sessió són els següents: + + Ubicació del lloc: %2$s + Nom d\'usuari: %3$s'; +$a->strings['Password reset requested at %s'] = 'Contrasenya restablerta enviada a %s'; +$a->strings['Request could not be verified. (You may have previously submitted it.) Password reset failed.'] = 'La sol·licitut no pot ser verificada. (Hauries de presentar-la abans). Restabliment de contrasenya fracassat.'; +$a->strings['Request has expired, please make a new one.'] = 'La sol·licitud ha caducat, fes-ne una de nova.'; +$a->strings['Forgot your Password?'] = 'Has Oblidat la Contrasenya?'; +$a->strings['Enter your email address and submit to have your password reset. Then check your email for further instructions.'] = 'Introdueixi la seva adreça de correu i enivii-la per restablir la seva contrasenya. Llavors comprovi el seu correu per a les següents instruccións. '; +$a->strings['Nickname or Email: '] = 'Àlies o Correu:'; +$a->strings['Reset'] = 'Restablir'; +$a->strings['Password Reset'] = 'Restabliment de Contrasenya'; +$a->strings['Your password has been reset as requested.'] = 'La teva contrasenya fou restablerta com vas demanar.'; +$a->strings['Your new password is'] = 'La teva nova contrasenya es'; +$a->strings['Save or copy your new password - and then'] = 'Guarda o copia la nova contrasenya - i llavors'; +$a->strings['click here to login'] = 'clica aquí per identificarte'; +$a->strings['Your password may be changed from the Settings page after successful login.'] = 'Pots camviar la contrasenya des de la pàgina de Configuración desprès d\'accedir amb èxit.'; +$a->strings[' + Dear %1$s, + Your password has been changed as requested. Please retain this + information for your records (or change your password immediately to + something that you will remember). + '] = ' + Benvolgut %1$s, + La vostra contrasenya s\'ha canviat segons la sol·licitud. Conserveu-ho + informació sobre els vostres registres (o canviar-ne la contrasenya immediatament a + cosa que recordareu). + '; +$a->strings[' + Your login details are as follows: + + Site Location: %1$s + Login Name: %2$s + Password: %3$s + + You may change that password from your account settings page after logging in. + '] = ' + Les dades de connexió són les següents: + + Ubicació del lloc: %1$s + Nom d\'usuari: %2$s + Contrasenya: %3$s + + odeu canviar aquesta contrasenya des de la pàgina de configuració del compte després d’iniciar la sessió.. + '; +$a->strings['Your password has been changed at %s'] = 'La teva contrasenya ha estat canviada a %s'; +$a->strings['New Message'] = 'Nou Missatge'; +$a->strings['No recipient selected.'] = 'No s\'ha seleccionat destinatari.'; +$a->strings['Unable to locate contact information.'] = 'No es pot trobar informació de contacte.'; +$a->strings['Message could not be sent.'] = 'El Missatge no ha estat enviat.'; +$a->strings['Message collection failure.'] = 'Ha fallat la recollida del missatge.'; +$a->strings['Discard'] = 'Descartar'; +$a->strings['Messages'] = 'Missatges'; +$a->strings['Conversation not found.'] = 'No s\'ha trobat la conversa.'; +$a->strings['Please enter a link URL:'] = 'Sius plau, entri l\'enllaç URL:'; +$a->strings['Send Private Message'] = 'Enviant Missatge Privat'; +$a->strings['To:'] = 'Per a:'; +$a->strings['Subject:'] = 'Assumpte::'; +$a->strings['Your message:'] = 'El teu missatge:'; +$a->strings['Upload photo'] = 'Carregar foto'; +$a->strings['Insert web link'] = 'Inserir enllaç web'; +$a->strings['Please wait'] = 'Si us plau esperi'; +$a->strings['Submit'] = 'Enviar'; +$a->strings['No messages.'] = 'Sense missatges.'; +$a->strings['Message not available.'] = 'Missatge no disponible.'; +$a->strings['Delete message'] = 'Esborra missatge'; +$a->strings['D, d M Y - g:i A'] = 'D, d M Y - g:i A'; +$a->strings['Delete conversation'] = 'Esborrar conversació'; +$a->strings['No secure communications available. You may be able to respond from the sender\'s profile page.'] = 'Comunicacions degures no disponibles. Tú pots respondre des de la pàgina de perfil del remitent.'; +$a->strings['Send Reply'] = 'Enviar Resposta'; +$a->strings['Unknown sender - %s'] = 'remitent desconegut - %s'; +$a->strings['You and %s'] = 'Tu i %s'; +$a->strings['%s and You'] = '%s i Tu'; +$a->strings['%d message'] = [ + 0 => '%d missatge', + 1 => '%d missatges', ]; -$a->strings['Find People'] = 'Trobar Gent'; -$a->strings['Enter name or interest'] = 'Introdueixi nom o aficions'; -$a->strings['Connect/Follow'] = 'Connectar/Seguir'; -$a->strings['Examples: Robert Morgenstein, Fishing'] = 'Exemples: Robert Morgenstein, Pescar'; -$a->strings['Find'] = 'Cercar'; -$a->strings['Friend Suggestions'] = 'Amics Suggerits'; -$a->strings['Similar Interests'] = 'Aficions Similars'; -$a->strings['Random Profile'] = 'Perfi Aleatori'; -$a->strings['Invite Friends'] = 'Invita Amics'; -$a->strings['Networks'] = 'Xarxes'; -$a->strings['All Networks'] = 'totes les Xarxes'; -$a->strings['Saved Folders'] = 'Carpetes Guardades'; -$a->strings['Everything'] = 'Tot'; -$a->strings['Categories'] = 'Categories'; -$a->strings['%d contact in common'] = [ - 0 => '%d contacte en comú', - 1 => '%d contactes en comú', -]; -$a->strings['show more'] = 'Mostrar més'; -$a->strings['Male'] = 'Home'; -$a->strings['Female'] = 'Dona'; -$a->strings['Currently Male'] = 'Actualment Home'; -$a->strings['Currently Female'] = 'Actualment Dona'; -$a->strings['Mostly Male'] = 'Habitualment Home'; -$a->strings['Mostly Female'] = 'Habitualment Dona'; -$a->strings['Transgender'] = 'Transgènere'; -$a->strings['Intersex'] = 'Bisexual'; -$a->strings['Transsexual'] = 'Transexual'; -$a->strings['Hermaphrodite'] = 'Hermafrodita'; -$a->strings['Neuter'] = 'Neutre'; -$a->strings['Non-specific'] = 'No específicat'; -$a->strings['Other'] = 'Altres'; -$a->strings['Males'] = 'Home'; -$a->strings['Females'] = 'Dona'; -$a->strings['Gay'] = 'Gay'; -$a->strings['Lesbian'] = 'Lesbiana'; -$a->strings['No Preference'] = 'Sense Preferències'; -$a->strings['Bisexual'] = 'Bisexual'; -$a->strings['Autosexual'] = 'Autosexual'; -$a->strings['Abstinent'] = 'Abstinent/a'; -$a->strings['Virgin'] = 'Verge'; -$a->strings['Deviant'] = 'Desviat/da'; -$a->strings['Fetish'] = 'Fetixiste'; -$a->strings['Oodles'] = 'Orgies'; -$a->strings['Nonsexual'] = 'Asexual'; -$a->strings['Single'] = 'Solter/a'; -$a->strings['Lonely'] = 'Solitari'; -$a->strings['Available'] = 'Disponible'; -$a->strings['Unavailable'] = 'No Disponible'; -$a->strings['Has crush'] = 'Compromés'; -$a->strings['Infatuated'] = 'Enamorat'; -$a->strings['Dating'] = 'De cites'; -$a->strings['Unfaithful'] = 'Infidel'; -$a->strings['Sex Addict'] = 'Adicte al sexe'; -$a->strings['Friends'] = 'Amics/Amigues'; -$a->strings['Friends/Benefits'] = 'Amics íntims'; -$a->strings['Casual'] = 'Oportunista'; -$a->strings['Engaged'] = 'Promès'; -$a->strings['Married'] = 'Casat'; -$a->strings['Imaginarily married'] = 'Matrimoni imaginari'; -$a->strings['Partners'] = 'Socis'; -$a->strings['Cohabiting'] = 'Cohabitant'; -$a->strings['Common law'] = 'Segons costums'; -$a->strings['Happy'] = 'Feliç'; -$a->strings['Not looking'] = 'No cerco'; -$a->strings['Swinger'] = 'Parella Liberal'; -$a->strings['Betrayed'] = 'Traït/da'; -$a->strings['Separated'] = 'Separat/da'; -$a->strings['Unstable'] = 'Inestable'; -$a->strings['Divorced'] = 'Divorciat/da'; -$a->strings['Imaginarily divorced'] = 'Divorci imaginari'; -$a->strings['Widowed'] = 'Vidu/a'; -$a->strings['Uncertain'] = 'Incert'; -$a->strings['It\'s complicated'] = 'Es complicat'; -$a->strings['Don\'t care'] = 'No t\'interessa'; -$a->strings['Ask me'] = 'Pregunta\'m'; -$a->strings['Cannot locate DNS info for database server \'%s\''] = 'No put trobar informació de DNS del servidor de base de dades \'%s\''; -$a->strings['Logged out.'] = 'Has sortit'; -$a->strings['Login failed.'] = 'Error d\'accés.'; -$a->strings['We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.'] = 'Em trobat un problema quan accedies amb la OpenID que has proporcionat. Per favor, revisa la cadena del ID.'; -$a->strings['The error message was:'] = 'El missatge d\'error fou: '; -$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.'] = 'Un grup eliminat amb aquest nom va ser restablert. Els permisos dels elements existents poden aplicar-se a aquest grup i tots els futurs membres. Si això no és el que pretén, si us plau, crei un altre grup amb un nom diferent.'; -$a->strings['Default privacy group for new contacts'] = 'Privacitat per defecte per a nous contactes'; -$a->strings['Everybody'] = 'Tothom'; -$a->strings['edit'] = 'editar'; -$a->strings['Groups'] = 'Grups'; -$a->strings['Edit group'] = 'Editar grup'; -$a->strings['Create a new group'] = 'Crear un nou grup'; -$a->strings['Group Name: '] = 'Nom del Grup:'; -$a->strings['Contacts not in any group'] = 'Contactes en cap grup'; -$a->strings['add'] = 'afegir'; -$a->strings['Unknown | Not categorised'] = 'Desconegut/No categoritzat'; -$a->strings['Block immediately'] = 'Bloquejar immediatament'; -$a->strings['Shady, spammer, self-marketer'] = 'Sospitós, Spam, auto-publicitat'; -$a->strings['Known to me, but no opinion'] = 'Conegut per mi, però sense opinió'; -$a->strings['OK, probably harmless'] = 'Bé, probablement inofensiu'; -$a->strings['Reputable, has my trust'] = 'Bona reputació, té la meva confiança'; -$a->strings['Frequently'] = 'Freqüentment'; -$a->strings['Hourly'] = 'Cada hora'; -$a->strings['Twice daily'] = 'Dues vegades al dia'; -$a->strings['Daily'] = 'Diari'; -$a->strings['Weekly'] = 'Setmanal'; -$a->strings['Monthly'] = 'Mensual'; -$a->strings['Friendica'] = 'Friendica'; -$a->strings['OStatus'] = 'OStatus'; -$a->strings['RSS/Atom'] = 'RSS/Atom'; +$a->strings['Personal Notes'] = 'Notes Personals'; +$a->strings['Save'] = 'Guardar'; +$a->strings['Photo Albums'] = 'Àlbum de Fotos'; +$a->strings['Recent Photos'] = 'Fotos Recents'; +$a->strings['Upload New Photos'] = 'Actualitzar Noves Fotos'; +$a->strings['everybody'] = 'tothom'; +$a->strings['Contact information unavailable'] = 'Informació del Contacte no disponible'; +$a->strings['Album not found.'] = 'Àlbum no trobat.'; +$a->strings['a photo'] = 'una foto'; +$a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s fou etiquetat a %2$s per %3$s'; +$a->strings['Public access denied.'] = 'Accés públic denegat.'; +$a->strings['No photos selected'] = 'No s\'han seleccionat fotos'; +$a->strings['Upload Photos'] = 'Carregar Fotos'; +$a->strings['New album name: '] = 'Nou nom d\'àlbum:'; +$a->strings['Do not show a status post for this upload'] = 'No tornis a mostrar un missatge d\'estat d\'aquesta pujada'; +$a->strings['Permissions'] = 'Permisos'; +$a->strings['Do you really want to delete this photo album and all its photos?'] = 'Realment vols esborrar aquest album de fotos amb totes les fotos?'; +$a->strings['Delete Album'] = 'Eliminar Àlbum'; +$a->strings['Cancel'] = 'Cancel·lar'; +$a->strings['Edit Album'] = 'Editar Àlbum'; +$a->strings['Show Newest First'] = 'Mostrar el més Nou Primer'; +$a->strings['Show Oldest First'] = 'Mostrar el més Antic Primer'; +$a->strings['View Photo'] = 'Veure Foto'; +$a->strings['Permission denied. Access to this item may be restricted.'] = 'Permís denegat. L\'accés a aquest element pot estar restringit.'; +$a->strings['Photo not available'] = 'Foto no disponible'; +$a->strings['Do you really want to delete this photo?'] = 'Realment vols esborrar aquesta foto?'; +$a->strings['Delete Photo'] = 'Eliminar Foto'; +$a->strings['View photo'] = 'Veure foto'; +$a->strings['Edit photo'] = 'Editar foto'; +$a->strings['Use as profile photo'] = 'Emprar com a foto del perfil'; +$a->strings['View Full Size'] = 'Veure\'l a Mida Completa'; +$a->strings['Tags: '] = 'Etiquetes:'; +$a->strings['New album name'] = 'Nou nom d\'àlbum'; +$a->strings['Caption'] = 'Títol'; +$a->strings['Add a Tag'] = 'Afegir una etiqueta'; +$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Exemple: @bob, @Barbara_jensen, @jim@example.com, #California, #camping'; +$a->strings['Rotate CW (right)'] = 'Rotar CW (dreta)'; +$a->strings['Rotate CCW (left)'] = 'Rotar CCW (esquerra)'; +$a->strings['This is you'] = 'Aquest ets tu'; +$a->strings['Comment'] = 'Comentari'; +$a->strings['Preview'] = 'Vista prèvia'; +$a->strings['Select'] = 'Selecionar'; +$a->strings['Delete'] = 'Esborrar'; +$a->strings['I like this (toggle)'] = 'M\'agrada això (canviar)'; +$a->strings['I don\'t like this (toggle)'] = 'No m\'agrada això (canviar)'; +$a->strings['Delete this item?'] = 'Esborrar aquest element?'; +$a->strings['toggle mobile'] = 'canviar a mòbil'; +$a->strings['Page not found.'] = 'Pàgina no trobada.'; +$a->strings['You must be logged in to use addons. '] = 'T\'has d\'identificar per emprar els complements'; +$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.'] = 'El formulari del token de seguretat no es correcte. Això probablement passa perquè el formulari ha estat massa temps obert (>3 hores) abans d\'enviat-lo.'; +$a->strings['All contacts'] = 'Tots contactes'; +$a->strings['Followers'] = 'Seguidors'; +$a->strings['Password update failed. Please try again.'] = 'Ha fallat l\'actualització de la Contrasenya. Per favor, intenti-ho de nou.'; +$a->strings['Password changed.'] = 'Contrasenya canviada.'; +$a->strings['newer'] = 'Més nou'; +$a->strings['older'] = 'més vell'; $a->strings['Email'] = 'Correu'; $a->strings['Diaspora'] = 'Diaspora'; -$a->strings['Facebook'] = 'Facebook'; -$a->strings['Zot!'] = 'Zot!'; -$a->strings['LinkedIn'] = 'LinkedIn'; -$a->strings['XMPP/IM'] = 'XMPP/IM'; -$a->strings['MySpace'] = 'MySpace'; -$a->strings['Google+'] = 'Google+'; -$a->strings['Post to Email'] = 'Correu per enviar'; -$a->strings['Hide your profile details from unknown viewers?'] = 'Amagar els detalls del seu perfil a espectadors desconeguts?'; -$a->strings['Visible to everybody'] = 'Visible per tothom'; -$a->strings['show'] = 'mostra'; -$a->strings['don\'t show'] = 'no mostris'; -$a->strings['CC: email addresses'] = 'CC: Adreça de correu'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Exemple: bob@example.com, mary@example.com'; -$a->strings['Permissions'] = 'Permisos'; -$a->strings['Close'] = 'Tancar'; -$a->strings['photo'] = 'foto'; -$a->strings['status'] = 'estatus'; +$a->strings['and'] = 'i'; +$a->strings['and %d other people'] = 'i %d altre gent'; +$a->strings['Visible to everybody'] = 'Visible per a tothom'; +$a->strings['Please enter a image/video/audio/webpage URL:'] = 'Introduïu una URL / imatge / vídeo / àudio / pàgina web:'; +$a->strings['Tag term:'] = 'Terminis de l\'etiqueta:'; +$a->strings['Save to Folder:'] = 'Guardar a la Carpeta:'; +$a->strings['Where are you right now?'] = 'On ets ara?'; +$a->strings['Delete item(s)?'] = 'Esborrar element(s)?'; +$a->strings['New Post'] = 'Missatge nou'; +$a->strings['Share'] = 'Compartir'; +$a->strings['upload photo'] = 'carregar fotos'; +$a->strings['Attach file'] = 'Adjunta fitxer'; +$a->strings['attach file'] = 'adjuntar arxiu'; +$a->strings['Bold'] = 'Negreta'; +$a->strings['Italic'] = 'Itallica'; +$a->strings['Underline'] = 'Subratllat'; +$a->strings['Quote'] = 'Cometes'; +$a->strings['Code'] = 'Codi'; +$a->strings['Image'] = 'Imatge'; +$a->strings['Link'] = 'Enllaç'; +$a->strings['Link or Media'] = 'Enllaç o suports'; +$a->strings['Set your location'] = 'Canvia la teva ubicació'; +$a->strings['set location'] = 'establir la ubicació'; +$a->strings['Clear browser location'] = 'neteja adreçes del navegador'; +$a->strings['clear location'] = 'netejar ubicació'; +$a->strings['Set title'] = 'Canviar títol'; +$a->strings['Categories (comma-separated list)'] = 'Categories (lista separada per comes)'; +$a->strings['Permission settings'] = 'Configuració de permisos'; +$a->strings['Public post'] = 'Enviament públic'; +$a->strings['Message'] = 'Missatge'; +$a->strings['Browser'] = 'Navegador'; +$a->strings['remove'] = 'esborrar'; +$a->strings['Delete Selected Items'] = 'Esborra els Elements Seleccionats'; +$a->strings['%s reshared this.'] = '%s va tornar a compartir això'; +$a->strings['View %s\'s profile @ %s'] = 'Veure perfil de %s @ %s'; +$a->strings['Categories:'] = 'Categories:'; +$a->strings['Filed under:'] = 'Arxivat a:'; +$a->strings['%s from %s'] = '%s des de %s'; +$a->strings['View in context'] = 'Veure en context'; +$a->strings['Personal'] = 'Personal'; +$a->strings['Posts that mention or involve you'] = 'Missatge que et menciona o t\'impliquen'; +$a->strings['Starred'] = 'Favorits'; +$a->strings['Favourite Posts'] = 'Enviaments Favorits'; +$a->strings['General Features'] = 'Característiques Generals'; +$a->strings['Post Composition Features'] = 'Característiques de Composició d\'Enviaments'; +$a->strings['Post/Comment Tools'] = 'Eines d\'Enviaments/Comentaris'; +$a->strings['Post Categories'] = 'Categories en Enviaments'; +$a->strings['Add categories to your posts'] = 'Afegeix categories als teus enviaments'; +$a->strings['show more'] = 'Mostrar més'; $a->strings['event'] = 'esdeveniment'; -$a->strings['%1$s likes %2$s\'s %3$s'] = 'a %1$s agrada %2$s de %3$s'; -$a->strings['%1$s doesn\'t like %2$s\'s %3$s'] = 'a %1$s no agrada %2$s de %3$s'; -$a->strings['[no subject]'] = '[Sense assumpte]'; -$a->strings['Wall Photos'] = 'Fotos del Mur'; -$a->strings['Click here to upgrade.'] = 'Clica aquí per actualitzar.'; -$a->strings['This action exceeds the limits set by your subscription plan.'] = 'Aquesta acció excedeix els límits del teu plan de subscripció.'; -$a->strings['This action is not available under your subscription plan.'] = 'Aquesta acció no està disponible en el teu plan de subscripció.'; -$a->strings['Error decoding account file'] = 'Error decodificant l\'arxiu del compte'; -$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Error! No hi ha dades al arxiu! No es un arxiu de compte de Friendica?'; -$a->strings['Error! Cannot check nickname'] = 'Error! No puc comprobar l\'Àlies'; -$a->strings['User \'%s\' already exists on this server!'] = 'El usuari %s\' ja existeix en aquest servidor!'; -$a->strings['User creation error'] = 'Error en la creació de l\'usuari'; -$a->strings['User profile creation error'] = 'Error en la creació del perfil d\'usuari'; -$a->strings['%d contact not imported'] = [ - 0 => '%d contacte no importat', - 1 => '%d contactes no importats', -]; -$a->strings['Done. You can now login with your username and password'] = 'Fet. Ja pots identificar-te amb el teu nom d\'usuari i contrasenya'; -$a->strings['Miscellaneous'] = 'Miscel·lania'; -$a->strings['Birthday:'] = 'Aniversari:'; -$a->strings['Age: '] = 'Edat:'; -$a->strings['never'] = 'mai'; -$a->strings['less than a second ago'] = 'Fa menys d\'un segon'; -$a->strings['year'] = 'any'; -$a->strings['years'] = 'anys'; -$a->strings['month'] = 'mes'; -$a->strings['months'] = 'mesos'; -$a->strings['week'] = 'setmana'; -$a->strings['weeks'] = 'setmanes'; -$a->strings['day'] = 'dia'; -$a->strings['days'] = 'dies'; -$a->strings['hour'] = 'hora'; -$a->strings['hours'] = 'hores'; -$a->strings['minute'] = 'minut'; -$a->strings['minutes'] = 'minuts'; -$a->strings['second'] = 'segon'; -$a->strings['seconds'] = 'segons'; -$a->strings['%1$d %2$s ago'] = ' fa %1$d %2$s'; -$a->strings['%s\'s birthday'] = '%s aniversari'; -$a->strings['Happy Birthday %s'] = 'Feliç Aniversari %s'; -$a->strings['Friendica Notification'] = 'Notificacions de Friendica'; -$a->strings['Thank You,'] = 'Gràcies,'; -$a->strings['%s Administrator'] = '%s Administrador'; -$a->strings['noreply'] = 'no contestar'; -$a->strings['%s '] = '%s '; -$a->strings['[Friendica:Notify] New mail received at %s'] = '[Friendica: Notifica] nou correu rebut a %s'; -$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s t\'ha enviat un missatge privat nou en %2$s.'; -$a->strings['%1$s sent you %2$s.'] = '%1$s t\'ha enviat %2$s.'; -$a->strings['a private message'] = 'un missatge privat'; -$a->strings['Please visit %s to view and/or reply to your private messages.'] = 'Per favor, visiteu %s per a veure i/o respondre els teus missatges privats.'; -$a->strings['%1$s commented on [url=%2$s]a %3$s[/url]'] = '%1$s ha comentat en [url=%2$s]a %3$s[/url]'; -$a->strings['%1$s commented on [url=%2$s]%3$s\'s %4$s[/url]'] = '%1$s ha comentat en [url=%2$s]%3$s de %4$s[/url]'; -$a->strings['%1$s commented on [url=%2$s]your %3$s[/url]'] = '%1$s ha comentat en [url=%2$s] el teu %3$s[/url]'; -$a->strings['[Friendica:Notify] Comment to conversation #%1$d by %2$s'] = '[Friendica:Notificació] Comentaris a la conversació #%1$d per %2$s'; -$a->strings['%s commented on an item/conversation you have been following.'] = '%s ha comentat un element/conversació que estas seguint.'; -$a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Si us pau, visiteu %s per a veure i/o respondre la conversació.'; -$a->strings['[Friendica:Notify] %s posted to your profile wall'] = '[Friendica:Notifica] %s enviat al teu mur del perfil'; -$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s ha fet un enviament al teu mur de perfils en %2$s'; -$a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s enviat a [url=%2$s]teu mur[/url]'; -$a->strings['[Friendica:Notify] %s tagged you'] = '[Friendica:Notifica] %s t\'ha etiquetat'; -$a->strings['%1$s tagged you at %2$s'] = '%1$s t\'ha etiquetat a %2$s'; -$a->strings['%1$s [url=%2$s]tagged you[/url].'] = '%1$s [url=%2$s] t\'ha etiquetat[/url].'; -$a->strings['[Friendica:Notify] %1$s poked you'] = '[Friendica:Notificació] %1$s t\'atia'; -$a->strings['%1$s poked you at %2$s'] = '%1$s t\'atia en %2$s'; -$a->strings['%1$s [url=%2$s]poked you[/url].'] = '%1$s [url=%2$s]t\'atia[/url].'; -$a->strings['[Friendica:Notify] %s tagged your post'] = '[Friendica:Notifica] %s ha etiquetat el teu missatge'; -$a->strings['%1$s tagged your post at %2$s'] = '%1$s ha etiquetat un missatge teu a %2$s'; -$a->strings['%1$s tagged [url=%2$s]your post[/url]'] = '%1$s etiquetà [url=%2$s] el teu enviament[/url]'; -$a->strings['[Friendica:Notify] Introduction received'] = '[Friendica:Notifica] Presentacio rebuda'; -$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Has rebut una presentació des de \'%1$s\' en %2$s'; -$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Has rebut [url=%1$s] com a presentació[/url] des de %2$s.'; -$a->strings['You may visit their profile at %s'] = 'Pot visitar el seu perfil en %s'; -$a->strings['Please visit %s to approve or reject the introduction.'] = 'Si us plau visiteu %s per aprovar o rebutjar la presentació.'; -$a->strings['[Friendica:Notify] Friend suggestion received'] = '[Friendica:Notifica] Suggerencia d\'amistat rebuda'; -$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = 'Has rebut una suggerencia d\'amistat des de \'%1$s\' en %2$s'; -$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = 'Has rebut [url=%1$s] com a suggerencia d\'amistat[/url] per a %2$s des de %3$s.'; -$a->strings['Name:'] = 'Nom:'; -$a->strings['Photo:'] = 'Foto:'; -$a->strings['Please visit %s to approve or reject the suggestion.'] = 'Si us plau, visiteu %s per aprovar o rebutjar la suggerencia.'; -$a->strings['l F d, Y \@ g:i A'] = 'l F d, Y \@ g:i A'; -$a->strings['Starts:'] = 'Inici:'; -$a->strings['Finishes:'] = 'Acaba:'; -$a->strings['Location:'] = 'Ubicació:'; -$a->strings['Sunday'] = 'Diumenge'; -$a->strings['Monday'] = 'Dilluns'; -$a->strings['Tuesday'] = 'Dimarts'; -$a->strings['Wednesday'] = 'Dimecres'; -$a->strings['Thursday'] = 'Dijous'; -$a->strings['Friday'] = 'Divendres'; -$a->strings['Saturday'] = 'Dissabte'; -$a->strings['May'] = 'Maig'; -$a->strings['January'] = 'Gener'; -$a->strings['February'] = 'Febrer'; -$a->strings['March'] = 'Març'; -$a->strings['April'] = 'Abril'; -$a->strings['June'] = 'Juny'; -$a->strings['July'] = 'Juliol'; -$a->strings['August'] = 'Agost'; -$a->strings['September'] = 'Setembre'; -$a->strings['October'] = 'Octubre'; -$a->strings['November'] = 'Novembre'; -$a->strings['December'] = 'Desembre'; -$a->strings['l, F j'] = 'l, F j'; -$a->strings['Edit event'] = 'Editar esdeveniment'; -$a->strings['link to source'] = 'Enllaç al origen'; +$a->strings['status'] = 'estatus'; +$a->strings['photo'] = 'foto'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s etiquetats %2$s %3$s amb %4$s'; +$a->strings['Follow Thread'] = 'Seguir el Fil'; +$a->strings['View Status'] = 'Veure Estatus'; +$a->strings['View Profile'] = 'Veure Perfil'; +$a->strings['View Photos'] = 'Veure Fotos'; +$a->strings['Network Posts'] = 'Enviaments a la Xarxa'; +$a->strings['View Contact'] = 'Veure contacte'; +$a->strings['Send PM'] = 'Enviar Missatge Privat'; +$a->strings['Block'] = 'Bloquejar'; +$a->strings['Ignore'] = 'Ignorar'; +$a->strings['Connect/Follow'] = 'Connectar/Seguir'; $a->strings['Nothing new here'] = 'Res nou aquí'; $a->strings['Clear notifications'] = 'Neteja notificacions'; $a->strings['Logout'] = 'Sortir'; $a->strings['End this session'] = 'Termina sessió'; -$a->strings['Status'] = 'Estatus'; -$a->strings['Your posts and conversations'] = 'Els teus anuncis i converses'; +$a->strings['Login'] = 'Identifica\'t'; +$a->strings['Sign in'] = 'Accedeix'; $a->strings['Profile'] = 'Perfil'; $a->strings['Your profile page'] = 'La seva pàgina de perfil'; $a->strings['Photos'] = 'Fotos'; $a->strings['Your photos'] = 'Les seves fotos'; -$a->strings['Videos'] = 'Vídeos'; -$a->strings['Events'] = 'Esdeveniments'; -$a->strings['Your events'] = 'Els seus esdeveniments'; $a->strings['Personal notes'] = 'Notes personals'; -$a->strings['Login'] = 'Identifica\'t'; -$a->strings['Sign in'] = 'Accedeix'; $a->strings['Home'] = 'Inici'; $a->strings['Home Page'] = 'Pàgina d\'Inici'; $a->strings['Register'] = 'Registrar'; @@ -270,171 +268,192 @@ $a->strings['Apps'] = 'Aplicacions'; $a->strings['Addon applications, utilities, games'] = 'Afegits: aplicacions, utilitats, jocs'; $a->strings['Search'] = 'Cercar'; $a->strings['Search site content'] = 'Busca contingut en el lloc'; +$a->strings['Full Text'] = 'Text Complet'; +$a->strings['Tags'] = 'Etiquetes'; $a->strings['Contacts'] = 'Contactes'; $a->strings['Community'] = 'Comunitat'; -$a->strings['Conversations on this site'] = 'Converses en aquest lloc'; -$a->strings['Events and Calendar'] = 'Esdeveniments i Calendari'; $a->strings['Directory'] = 'Directori'; $a->strings['People directory'] = 'Directori de gent'; $a->strings['Network'] = 'Xarxa'; $a->strings['Conversations from your friends'] = 'Converses dels teus amics'; -$a->strings['Network Reset'] = 'Reiniciar Xarxa'; -$a->strings['Load Network page with no filters'] = 'carrega la pàgina de Xarxa sense filtres'; +$a->strings['Your posts and conversations'] = 'Els teus anuncis i converses'; $a->strings['Introductions'] = 'Presentacions'; $a->strings['Friend Requests'] = 'Sol·licitud d\'Amistat'; $a->strings['Notifications'] = 'Notificacions'; $a->strings['See all notifications'] = 'Veure totes les notificacions'; $a->strings['Mark as seen'] = 'Marcar com a vist'; -$a->strings['Mark all system notifications seen'] = 'Marcar totes les notificacions del sistema com a vistes'; -$a->strings['Messages'] = 'Missatges'; $a->strings['Private mail'] = 'Correu privat'; $a->strings['Inbox'] = 'Safata d\'entrada'; $a->strings['Outbox'] = 'Safata de sortida'; -$a->strings['New Message'] = 'Nou Missatge'; -$a->strings['Manage'] = 'Gestionar'; $a->strings['Manage other pages'] = 'Gestiona altres pàgines'; -$a->strings['Delegations'] = 'Delegacions'; -$a->strings['Delegate Page Management'] = 'Gestió de les Pàgines Delegades'; $a->strings['Settings'] = 'Ajustos'; $a->strings['Account settings'] = 'Configuració del compte'; -$a->strings['Profiles'] = 'Perfils'; -$a->strings['Manage/Edit Profiles'] = 'Gestiona/Edita Perfils'; $a->strings['Manage/edit friends and contacts'] = 'Gestiona/edita amics i contactes'; $a->strings['Admin'] = 'Admin'; $a->strings['Site setup and configuration'] = 'Ajustos i configuració del lloc'; $a->strings['Navigation'] = 'Navegació'; $a->strings['Site map'] = 'Mapa del lloc'; -$a->strings['Contact Photos'] = 'Fotos de Contacte'; -$a->strings['Welcome '] = 'Benvingut'; -$a->strings['Please upload a profile photo.'] = 'Per favor, carrega una foto per al perfil'; -$a->strings['Welcome back '] = 'Benvingut de nou '; -$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.'] = 'El formulari del token de seguretat no es correcte. Això probablement passa perquè el formulari ha estat massa temps obert (>3 hores) abans d\'enviat-lo.'; -$a->strings['System'] = 'Sistema'; -$a->strings['Personal'] = 'Personal'; -$a->strings['%s commented on %s\'s post'] = '%s va comentar en l\'enviament de %s'; -$a->strings['%s created a new post'] = '%s ha creat un enviament nou'; -$a->strings['%s liked %s\'s post'] = 'A %s li agrada l\'enviament de %s'; -$a->strings['%s disliked %s\'s post'] = 'A %s no li agrada l\'enviament de %s'; -$a->strings['%s is now friends with %s'] = '%s es ara amic de %s'; -$a->strings['Friend Suggestion'] = 'Amics Suggerits '; -$a->strings['Friend/Connect Request'] = 'Sol·licitud d\'Amistat/Connexió'; -$a->strings['New Follower'] = 'Nou Seguidor'; -$a->strings['Errors encountered creating database tables.'] = 'Trobats errors durant la creació de les taules de la base de dades.'; -$a->strings['(no subject)'] = '(sense assumpte)'; -$a->strings['Sharing notification from Diaspora network'] = 'Compartint la notificació de la xarxa Diàspora'; -$a->strings['Attachments:'] = 'Adjunts:'; -$a->strings['view full size'] = 'Veure\'l a mida completa'; -$a->strings['View Profile'] = 'Veure Perfil'; -$a->strings['View Status'] = 'Veure Estatus'; -$a->strings['View Photos'] = 'Veure Fotos'; -$a->strings['Network Posts'] = 'Enviaments a la Xarxa'; -$a->strings['Send PM'] = 'Enviar Missatge Privat'; -$a->strings['Poke'] = 'Atia'; +$a->strings['Embedding disabled'] = 'Incrustacions deshabilitades'; +$a->strings['Embedded content'] = 'Contingut incrustat'; +$a->strings['first'] = 'Primer'; +$a->strings['prev'] = 'Prev'; +$a->strings['next'] = 'següent'; +$a->strings['last'] = 'Últim'; $a->strings['Image/photo'] = 'Imatge/foto'; +$a->strings['Click to open/close'] = 'Clicar per a obrir/tancar'; $a->strings['$1 wrote:'] = '$1 va escriure:'; $a->strings['Encrypted content'] = 'Encriptar contingut'; -$a->strings['%1$s is now friends with %2$s'] = '%1$s és ara amic amb %2$s'; -$a->strings['%1$s poked %2$s'] = '%1$s atiat %2$s'; -$a->strings['%1$s is currently %2$s'] = '%1$s es normalment %2$s'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s etiquetats %2$s %3$s amb %4$s'; -$a->strings['post/item'] = 'anunci/element'; -$a->strings['%1$s marked %2$s\'s %3$s as favorite'] = '%1$s marcat %2$s\'s %3$s com favorit'; -$a->strings['Likes'] = 'Agrada'; -$a->strings['Dislikes'] = 'No agrada'; -$a->strings['Select'] = 'Selecionar'; -$a->strings['Delete'] = 'Esborrar'; -$a->strings['View %s\'s profile @ %s'] = 'Veure perfil de %s @ %s'; -$a->strings['Categories:'] = 'Categories:'; -$a->strings['Filed under:'] = 'Arxivat a:'; -$a->strings['%s from %s'] = '%s des de %s'; -$a->strings['View in context'] = 'Veure en context'; -$a->strings['Please wait'] = 'Si us plau esperi'; -$a->strings['remove'] = 'esborrar'; -$a->strings['Delete Selected Items'] = 'Esborra els Elements Seleccionats'; -$a->strings['Follow Thread'] = 'Seguir el Fil'; -$a->strings['%s likes this.'] = 'a %s agrada això.'; -$a->strings['%s doesn\'t like this.'] = 'a %s desagrada això.'; -$a->strings['and'] = 'i'; -$a->strings[', and %d other people'] = ', i altres %d persones'; -$a->strings['%2$d people like this'] = '%2$d gent agrada això'; -$a->strings['%2$d people don\'t like this'] = '%2$d gent no agrada això'; -$a->strings['Visible to everybody'] = 'Visible per a tothom'; -$a->strings['Please enter a link URL:'] = 'Sius plau, entri l\'enllaç URL:'; -$a->strings['Please enter a video link/URL:'] = 'Per favor , introdueixi el enllaç/URL del video'; -$a->strings['Please enter an audio link/URL:'] = 'Per favor , introdueixi el enllaç/URL del audio:'; -$a->strings['Tag term:'] = 'Terminis de l\'etiqueta:'; -$a->strings['Save to Folder:'] = 'Guardar a la Carpeta:'; -$a->strings['Where are you right now?'] = 'On ets ara?'; -$a->strings['Delete item(s)?'] = 'Esborrar element(s)?'; -$a->strings['Share'] = 'Compartir'; -$a->strings['Upload photo'] = 'Carregar foto'; -$a->strings['upload photo'] = 'carregar fotos'; -$a->strings['Attach file'] = 'Adjunta fitxer'; -$a->strings['attach file'] = 'adjuntar arxiu'; -$a->strings['Insert web link'] = 'Inserir enllaç web'; -$a->strings['web link'] = 'enllaç de web'; -$a->strings['Insert video link'] = 'Insertar enllaç de video'; -$a->strings['video link'] = 'enllaç de video'; -$a->strings['Insert audio link'] = 'Insertar enllaç de audio'; -$a->strings['audio link'] = 'enllaç de audio'; -$a->strings['Set your location'] = 'Canvia la teva ubicació'; -$a->strings['set location'] = 'establir la ubicació'; -$a->strings['Clear browser location'] = 'neteja adreçes del navegador'; -$a->strings['clear location'] = 'netejar ubicació'; -$a->strings['Set title'] = 'Canviar títol'; -$a->strings['Categories (comma-separated list)'] = 'Categories (lista separada per comes)'; -$a->strings['Permission settings'] = 'Configuració de permisos'; -$a->strings['permissions'] = 'Permissos'; -$a->strings['Public post'] = 'Enviament públic'; -$a->strings['Preview'] = 'Vista prèvia'; -$a->strings['Cancel'] = 'Cancel·lar'; -$a->strings['Post to Groups'] = 'Publica-ho a Grups'; -$a->strings['Post to Contacts'] = 'Publica-ho a Contactes'; -$a->strings['Private post'] = 'Enviament Privat'; -$a->strings['Message'] = 'Missatge'; -$a->strings['General Features'] = 'Característiques Generals'; -$a->strings['Multiple Profiles'] = 'Perfils Múltiples'; -$a->strings['Ability to create multiple profiles'] = 'Habilitat per crear múltiples perfils'; -$a->strings['Post Composition Features'] = 'Característiques de Composició d\'Enviaments'; -$a->strings['Richtext Editor'] = 'Editor de Text Enriquit'; -$a->strings['Enable richtext editor'] = 'Activar l\'Editor de Text Enriquit'; -$a->strings['Post Preview'] = 'Vista Prèvia de l\'Enviament'; -$a->strings['Allow previewing posts and comments before publishing them'] = 'Permetre la vista prèvia dels enviament i comentaris abans de publicar-los'; -$a->strings['Network Sidebar Widgets'] = 'Barra Lateral Selectora de Xarxa '; -$a->strings['Search by Date'] = 'Cerca per Data'; -$a->strings['Ability to select posts by date ranges'] = 'Possibilitat de seleccionar els missatges per intervals de temps'; -$a->strings['Group Filter'] = 'Filtre de Grup'; -$a->strings['Enable widget to display Network posts only from selected group'] = 'Habilitar botò per veure missatges de Xarxa només del grup seleccionat'; -$a->strings['Network Filter'] = 'Filtre de Xarxa'; -$a->strings['Enable widget to display Network posts only from selected network'] = 'Habilitar botò per veure missatges de Xarxa només de la xarxa seleccionada'; +$a->strings['Loading more entries...'] = 'Carregant mes entrades...'; +$a->strings['The end'] = 'El final'; +$a->strings['Follow'] = 'Seguir'; +$a->strings['Add New Contact'] = 'Afegir Nou Contacte'; +$a->strings['Enter address or web location'] = 'Introdueixi adreça o ubicació web'; +$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Exemple: bob@example.com, http://example.com/barbara'; +$a->strings['Connect'] = 'Connexió'; +$a->strings['%d invitation available'] = [ + 0 => '%d invitació disponible', + 1 => '%d invitacions disponibles', +]; +$a->strings['Find People'] = 'Trobar Gent'; +$a->strings['Enter name or interest'] = 'Introdueixi nom o aficions'; +$a->strings['Examples: Robert Morgenstein, Fishing'] = 'Exemples: Robert Morgenstein, Pescar'; +$a->strings['Find'] = 'Cercar'; +$a->strings['Friend Suggestions'] = 'Amics Suggerits'; +$a->strings['Similar Interests'] = 'Aficions Similars'; +$a->strings['Random Profile'] = 'Perfi Aleatori'; +$a->strings['Invite Friends'] = 'Invita Amics'; +$a->strings['Global Directory'] = 'Directori Global'; +$a->strings['Local Directory'] = 'Directori Local'; +$a->strings['All Contacts'] = 'Tots els Contactes'; +$a->strings['Saved Folders'] = 'Carpetes Guardades'; +$a->strings['Everything'] = 'Tot'; +$a->strings['Categories'] = 'Categories'; +$a->strings['%d contact in common'] = [ + 0 => '%d contacte en comú', + 1 => '%d contactes en comú', +]; +$a->strings['Archives'] = 'Arxius'; +$a->strings['Export'] = 'Exportar'; +$a->strings['Export calendar as ical'] = 'Exportar calendari com ical'; +$a->strings['Export calendar as csv'] = 'Exportar calendari com csv'; +$a->strings['No contacts'] = 'Sense contactes'; +$a->strings['%d Contact'] = [ + 0 => '%d Contacte', + 1 => '%d Contactes', +]; +$a->strings['View Contacts'] = 'Veure Contactes'; +$a->strings['Remove term'] = 'Traieu termini'; $a->strings['Saved Searches'] = 'Cerques Guardades'; -$a->strings['Save search terms for re-use'] = 'Guarda els termes de cerca per re-emprar'; -$a->strings['Network Tabs'] = 'Pestanya Xarxes'; -$a->strings['Network Personal Tab'] = 'Pestanya Xarxa Personal'; -$a->strings['Enable tab to display only Network posts that you\'ve interacted on'] = 'Habilitar la pestanya per veure unicament missatges de Xarxa en els que has intervingut'; -$a->strings['Network New Tab'] = 'Pestanya Nova Xarxa'; -$a->strings['Enable tab to display only new Network posts (from the last 12 hours)'] = 'Habilitar la pestanya per veure només els nous missatges de Xarxa (els de les darreres 12 hores)'; -$a->strings['Network Shared Links Tab'] = 'Pestanya d\'Enllaços de Xarxa Compartits'; -$a->strings['Enable tab to display only Network posts with links in them'] = 'Habilitar la pestanya per veure els missatges de Xarxa amb enllaços en ells'; -$a->strings['Post/Comment Tools'] = 'Eines d\'Enviaments/Comentaris'; -$a->strings['Multiple Deletion'] = 'Esborrat Múltiple'; -$a->strings['Select and delete multiple posts/comments at once'] = 'Sel·lecciona i esborra múltiples enviaments/commentaris en una vegada'; -$a->strings['Edit Sent Posts'] = 'Editar Missatges Enviats'; -$a->strings['Edit and correct posts and comments after sending'] = 'Edita i corregeix enviaments i comentaris una vegada han estat enviats'; -$a->strings['Tagging'] = 'Etiquetant'; -$a->strings['Ability to tag existing posts'] = 'Habilitar el etiquetar missatges existents'; -$a->strings['Post Categories'] = 'Categories en Enviaments'; -$a->strings['Add categories to your posts'] = 'Afegeix categories als teus enviaments'; -$a->strings['Ability to file posts under folders'] = 'Habilitar el arxivar missatges en carpetes'; -$a->strings['Dislike Posts'] = 'No agrada el Missatge'; -$a->strings['Ability to dislike posts/comments'] = 'Habilita el marcar amb "no agrada" els enviaments/comentaris'; -$a->strings['Star Posts'] = 'Missatge Estelar'; -$a->strings['Ability to mark special posts with a star indicator'] = 'Habilita el marcar amb un estel, missatges especials'; +$a->strings['Location:'] = 'Ubicació:'; +$a->strings['Mutuals'] = 'Mútues'; +$a->strings['Post to Email'] = 'Correu per enviar'; +$a->strings['CC: email addresses'] = 'CC: Adreça de correu'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Exemple: bob@example.com, mary@example.com'; +$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.'] = 'El fitxer de configuració de la base de dades \'config / local.config.php\' no s\'ha pogut escriure. Utilitzeu el text adjunt per crear un fitxer de configuració a l’arrel del servidor web.'; +$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Pot ser que hagi d\'importar l\'arxiu "database.sql" manualment amb phpmyadmin o mysql.'; +$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'No es va poder trobar una versió de línia de comandos de PHP en la ruta del servidor web.'; +$a->strings['PHP executable path'] = 'Direcció del executable PHP'; +$a->strings['Enter full path to php executable. You can leave this blank to continue the installation.'] = 'Entra la ruta sencera fins l\'executable de php. Pots deixar això buit per continuar l\'instal·lació.'; +$a->strings['Command line PHP'] = 'Linia de comandos PHP'; +$a->strings['PHP executable is not the php cli binary (could be cgi-fgci version)'] = 'El programari executable PHP no es el binari php cli (hauria de ser la versió cgi-fcgi)'; +$a->strings['Found PHP version: '] = 'Trobada la versió PHP:'; +$a->strings['PHP cli binary'] = 'PHP cli binari'; +$a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'La versió de línia de comandos de PHP en el seu sistema no té "register_argc_argv" habilitat.'; +$a->strings['This is required for message delivery to work.'] = 'Això és necessari perquè funcioni el lliurament de missatges.'; +$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'] = 'Error: la funció "openssl_pkey_new" en aquest sistema no és capaç de generar claus de xifrat'; +$a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'Si s\'executa en Windows, per favor consulti la secció "http://www.php.net/manual/en/openssl.installation.php".'; +$a->strings['Generate encryption keys'] = 'Generar claus d\'encripció'; +$a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Error: el mòdul mod-rewrite del servidor web Apache és necessari però no està instal·lat.'; +$a->strings['Apache mod_rewrite module'] = 'Apache mod_rewrite modul '; +$a->strings['Error: PDO or MySQLi PHP module required but not installed.'] = 'Error: PDO or MySQLi PHP mòdul necessari però no instal·lat.'; +$a->strings['Error: The MySQL driver for PDO is not installed.'] = 'Error: The MySQL el controlador de PDO no està instal·lat.'; +$a->strings['Error, XML PHP module required but not installed.'] = 'Error, XML PHP mòdul necessari però no instal·lat.'; +$a->strings['libCurl PHP module'] = 'Mòdul libCurl de PHP'; +$a->strings['Error: libCURL PHP module required but not installed.'] = 'Error: El mòdul libCURL de PHP és necessari però no està instal·lat.'; +$a->strings['GD graphics PHP module'] = 'Mòdul GD de gràfics de PHP'; +$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Error: el mòdul gràfic GD de PHP amb support per JPEG és necessari però no està instal·lat.'; +$a->strings['OpenSSL PHP module'] = 'Mòdul OpenSSl de PHP'; +$a->strings['Error: openssl PHP module required but not installed.'] = 'Error: El mòdul enssl de PHP és necessari però no està instal·lat.'; +$a->strings['mb_string PHP module'] = 'Mòdul mb_string de PHP'; +$a->strings['Error: mb_string PHP module required but not installed.'] = 'Error: mòdul mb_string de PHP requerit però no instal·lat.'; +$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.'] = 'Això freqüentment és a causa d\'una configuració de permisos; el servidor web no pot escriure arxius en la carpeta - encara que sigui possible.'; +$a->strings['Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.'] = 'Friendica empra el motor de plantilla Smarty3 per dibuixar la web. Smarty3 compila plantilles a PHP per accelerar el redibuxar.'; +$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.'] = 'Per poder guardar aquestes plantilles compilades, el servidor web necessita tenir accés d\'escriptura al directori view/smarty3/ sota la carpeta principal de Friendica.'; +$a->strings['Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder.'] = 'Per favor, asegura que l\'usuari que corre el servidor web (p.e. www-data) te accés d\'escriptura a aquesta carpeta.'; +$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.'] = 'Nota: Com a mesura de seguretat, hauries de facilitar al servidor web, accés d\'escriptura a view/smarty3/ excepte els fitxers de plantilles (.tpl) que conté.'; +$a->strings['view/smarty3 is writable'] = 'view/smarty3 es escribible'; +$a->strings['Url rewrite is working'] = 'URL rewrite està treballant'; +$a->strings['Could not connect to database.'] = 'No puc connectar a la base de dades.'; +$a->strings['Monday'] = 'Dilluns'; +$a->strings['Tuesday'] = 'Dimarts'; +$a->strings['Wednesday'] = 'Dimecres'; +$a->strings['Thursday'] = 'Dijous'; +$a->strings['Friday'] = 'Divendres'; +$a->strings['Saturday'] = 'Dissabte'; +$a->strings['Sunday'] = 'Diumenge'; +$a->strings['January'] = 'Gener'; +$a->strings['February'] = 'Febrer'; +$a->strings['March'] = 'Març'; +$a->strings['April'] = 'Abril'; +$a->strings['May'] = 'Maig'; +$a->strings['June'] = 'Juny'; +$a->strings['July'] = 'Juliol'; +$a->strings['August'] = 'Agost'; +$a->strings['September'] = 'Setembre'; +$a->strings['October'] = 'Octubre'; +$a->strings['November'] = 'Novembre'; +$a->strings['December'] = 'Desembre'; +$a->strings['Mon'] = 'Dl'; +$a->strings['Tue'] = 'Dt'; +$a->strings['Wed'] = 'Dc'; +$a->strings['Thu'] = 'Dj'; +$a->strings['Fri'] = 'Dv'; +$a->strings['Sat'] = 'Ds'; +$a->strings['Sun'] = 'Dg'; +$a->strings['Jan'] = 'Gen'; +$a->strings['Feb'] = 'Feb'; +$a->strings['Mar'] = 'Mar'; +$a->strings['Apr'] = 'Abr'; +$a->strings['Jun'] = 'Jun'; +$a->strings['Jul'] = 'Jul'; +$a->strings['Aug'] = 'Ago'; +$a->strings['Sep'] = 'Set'; +$a->strings['Oct'] = 'Oct'; +$a->strings['Nov'] = 'Nov'; +$a->strings['Dec'] = 'Des'; +$a->strings['Storage base path'] = 'Ruta base d\'emmagatzematge'; +$a->strings['Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree'] = 'Carpeta on es desen els fitxers penjats. Per a la màxima seguretat, aquest ha de ser un camí fora de l\'arbre de carpetes del servidor web'; +$a->strings['Enter a valid existing folder'] = 'Introduïu una carpeta existent vàlida'; +$a->strings['Update %s failed. See error logs.'] = 'Actualització de %s fracassà. Mira el registre d\'errors.'; +$a->strings[' + The friendica developers released update %s recently, + but when I tried to install it, something went terribly wrong. + This needs to be fixed soon and I can\'t do it alone. Please contact a + friendica developer if you can not help me on your own. My database might be invalid.'] = ' + Els desenvolupadors de Friendica van publicar l\'actualització %s recentment + però, quan vaig intentar instal·lar-ho, alguna cosa va anar terriblement malament. + Això s\'ha de solucionar aviat i no ho puc fer sol. Contacteu amb + desenvolupador amic si no em podeu ajudar pel vostre compte. És possible que la meva base de dades no sigui vàlida.'; +$a->strings['[Friendica Notify] Database update'] = '[Notificació Friendica] Actualització de la base de dades'; +$a->strings[' +Error %d occurred during database update: +%s +'] = ' +Error %d es va produir durant l\'actualització de la base de dades: +%s +'; +$a->strings['Errors encountered performing database changes: '] = 'S\'han produït errors en realitzar canvis de base de dades:'; +$a->strings['%s: Database update'] = '%s: Actualització de la base de dades'; +$a->strings['%s: updating %s table.'] = '%s: actualització %s taula.'; +$a->strings['Everybody'] = 'Tothom'; +$a->strings['edit'] = 'editar'; +$a->strings['add'] = 'afegir'; +$a->strings['Approve'] = 'Aprovar'; $a->strings['Disallowed profile URL.'] = 'Perfil URL no permès.'; $a->strings['Connect URL missing.'] = 'URL del connector perduda.'; -$a->strings['This site is not configured to allow communications with other networks.'] = 'Aquest lloc no està configurat per permetre les comunicacions amb altres xarxes.'; -$a->strings['No compatible communication protocols or feeds were discovered.'] = 'Protocol de comunnicació no compatible o alimentador descobert.'; $a->strings['The profile address specified does not provide adequate information.'] = 'L\'adreça de perfil especificada no proveeix informació adient.'; +$a->strings['No compatible communication protocols or feeds were discovered.'] = 'Protocol de comunnicació no compatible o alimentador descobert.'; $a->strings['An author or name was not found.'] = 'Un autor o nom no va ser trobat'; $a->strings['No browser URL could be matched to this address.'] = 'Cap direcció URL del navegador coincideix amb aquesta adreça.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Incapaç de trobar coincidències amb la Adreça d\'Identitat estil @ amb els protocols coneguts o contactes de correu. '; @@ -442,190 +461,312 @@ $a->strings['Use mailto: in front of address to force email check.'] = 'Emprar m $a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'La direcció del perfil especificat pertany a una xarxa que ha estat desactivada en aquest lloc.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Perfil limitat. Aquesta persona no podrà rebre notificacions personals/directes de tu.'; $a->strings['Unable to retrieve contact information.'] = 'No es pot recuperar la informació de contacte.'; -$a->strings['Requested account is not available.'] = 'El compte sol·licitat no esta disponible'; -$a->strings['Requested profile is not available.'] = 'El perfil sol·licitat no està disponible.'; +$a->strings['Starts:'] = 'Inici:'; +$a->strings['Finishes:'] = 'Acaba:'; +$a->strings['all-day'] = 'tot el dia'; +$a->strings['Sept'] = 'Set'; +$a->strings['today'] = 'avui'; +$a->strings['month'] = 'mes'; +$a->strings['week'] = 'setmana'; +$a->strings['day'] = 'dia'; +$a->strings['No events to display'] = 'No hi ha esdeveniments per mostrar'; +$a->strings['Access to this profile has been restricted.'] = 'L\'accés a aquest perfil ha estat restringit.'; +$a->strings['l, F j'] = 'l, F j'; +$a->strings['Edit event'] = 'Editar esdeveniment'; +$a->strings['Duplicate event'] = 'Esdeveniment duplicat'; +$a->strings['Delete event'] = 'Esborrar esdeveniment'; +$a->strings['l F d, Y \@ g:i A'] = 'l F d, Y \@ g:i A'; +$a->strings['D g:i A'] = 'D g:i A'; +$a->strings['g:i A'] = 'g:i A'; +$a->strings['Show map'] = 'Mostra el mapa'; +$a->strings['Hide map'] = 'Amaga el mapa'; +$a->strings['%s\'s birthday'] = '%s aniversari'; +$a->strings['Happy Birthday %s'] = 'Feliç Aniversari %s'; +$a->strings['activity'] = 'activitat'; +$a->strings['post'] = 'missatge'; +$a->strings['bytes'] = 'bytes'; +$a->strings['View on separate page'] = 'Veure en un altre pàgina'; +$a->strings['[no subject]'] = '[Sense assumpte]'; +$a->strings['Wall Photos'] = 'Fotos del Mur'; $a->strings['Edit profile'] = 'Editar perfil'; -$a->strings['Manage/edit profiles'] = 'Gestiona/edita perfils'; $a->strings['Change profile photo'] = 'Canviar la foto del perfil'; -$a->strings['Create New Profile'] = 'Crear un Nou Perfil'; -$a->strings['Profile Image'] = 'Imatge del Perfil'; -$a->strings['visible to everybody'] = 'Visible per tothom'; -$a->strings['Edit visibility'] = 'Editar visibilitat'; -$a->strings['Gender:'] = 'Gènere:'; -$a->strings['Status:'] = 'Estatus:'; $a->strings['Homepage:'] = 'Pàgina web:'; $a->strings['About:'] = 'Acerca de:'; -$a->strings['g A l F d'] = 'g A l F d'; $a->strings['F d'] = 'F d'; $a->strings['[today]'] = '[avui]'; $a->strings['Birthday Reminders'] = 'Recordatori d\'Aniversaris'; $a->strings['Birthdays this week:'] = 'Aniversari aquesta setmana'; +$a->strings['g A l F d'] = 'g A l F d'; $a->strings['[No description]'] = '[sense descripció]'; $a->strings['Event Reminders'] = 'Recordatori d\'Esdeveniments'; -$a->strings['Events this week:'] = 'Esdeveniments aquesta setmana'; -$a->strings['Full Name:'] = 'Nom Complet:'; -$a->strings['j F, Y'] = 'j F, Y'; -$a->strings['j F'] = 'j F'; -$a->strings['Age:'] = 'Edat:'; -$a->strings['for %1$d %2$s'] = 'per a %1$d %2$s'; -$a->strings['Sexual Preference:'] = 'Preferència Sexual:'; $a->strings['Hometown:'] = 'Lloc de residència:'; -$a->strings['Tags:'] = 'Etiquetes:'; +$a->strings['Sexual Preference:'] = 'Preferència Sexual:'; $a->strings['Political Views:'] = 'Idees Polítiques:'; -$a->strings['Religion:'] = 'Religió:'; -$a->strings['Hobbies/Interests:'] = 'Aficiones/Intereses:'; +$a->strings['Religious Views:'] = 'Creencies Religioses:'; $a->strings['Likes:'] = 'Agrada:'; $a->strings['Dislikes:'] = 'No Agrada'; -$a->strings['Contact information and Social Networks:'] = 'Informació de contacte i Xarxes Socials:'; -$a->strings['Musical interests:'] = 'Gustos musicals:'; -$a->strings['Books, literature:'] = 'Llibres, literatura:'; -$a->strings['Television:'] = 'Televisió:'; -$a->strings['Film/dance/culture/entertainment:'] = 'Cinema/ball/cultura/entreteniments:'; -$a->strings['Love/Romance:'] = 'Amor/sentiments:'; -$a->strings['Work/employment:'] = 'Treball/ocupació:'; -$a->strings['School/education:'] = 'Escola/formació'; -$a->strings['Advanced'] = 'Avançat'; -$a->strings['Status Messages and Posts'] = 'Missatges i Enviaments d\'Estatus'; -$a->strings['Profile Details'] = 'Detalls del Perfil'; -$a->strings['Photo Albums'] = 'Àlbum de Fotos'; -$a->strings['Personal Notes'] = 'Notes Personals'; -$a->strings['Only You Can See This'] = 'Només ho pots veure tu'; -$a->strings['[Name Withheld]'] = '[Nom Amagat]'; -$a->strings['Item not found.'] = 'Article no trobat.'; -$a->strings['Do you really want to delete this item?'] = 'Realment vols esborrar aquest article?'; -$a->strings['Yes'] = 'Si'; -$a->strings['Permission denied.'] = 'Permís denegat.'; -$a->strings['Archives'] = 'Arxius'; -$a->strings['Embedded content'] = 'Contingut incrustat'; -$a->strings['Embedding disabled'] = 'Incrustacions deshabilitades'; -$a->strings['following'] = 'seguint'; -$a->strings['stopped following'] = 'Deixar de seguir'; -$a->strings['newer'] = 'Més nou'; -$a->strings['older'] = 'més vell'; -$a->strings['prev'] = 'Prev'; -$a->strings['first'] = 'Primer'; -$a->strings['last'] = 'Últim'; -$a->strings['next'] = 'següent'; -$a->strings['No contacts'] = 'Sense contactes'; -$a->strings['%d Contact'] = [ - 0 => '%d Contacte', - 1 => '%d Contactes', -]; -$a->strings['View Contacts'] = 'Veure Contactes'; -$a->strings['Save'] = 'Guardar'; -$a->strings['poke'] = 'atia'; -$a->strings['poked'] = 'atiar'; -$a->strings['ping'] = 'toc'; -$a->strings['pinged'] = 'tocat'; -$a->strings['prod'] = 'pinxat'; -$a->strings['prodded'] = 'pinxat'; -$a->strings['slap'] = 'bufetada'; -$a->strings['slapped'] = 'Abufetejat'; -$a->strings['finger'] = 'dit'; -$a->strings['fingered'] = 'Senyalat'; -$a->strings['rebuff'] = 'rebuig'; -$a->strings['rebuffed'] = 'rebutjat'; -$a->strings['happy'] = 'feliç'; -$a->strings['sad'] = 'trist'; -$a->strings['mellow'] = 'embafador'; -$a->strings['tired'] = 'cansat'; -$a->strings['perky'] = 'alegre'; -$a->strings['angry'] = 'disgustat'; -$a->strings['stupified'] = 'estupefacte'; -$a->strings['puzzled'] = 'perplexe'; -$a->strings['interested'] = 'interessat'; -$a->strings['bitter'] = 'amarg'; -$a->strings['cheerful'] = 'animat'; -$a->strings['alive'] = 'viu'; -$a->strings['annoyed'] = 'molest'; -$a->strings['anxious'] = 'ansiós'; -$a->strings['cranky'] = 'irritable'; -$a->strings['disturbed'] = 'turbat'; -$a->strings['frustrated'] = 'frustrat'; -$a->strings['motivated'] = 'motivat'; -$a->strings['relaxed'] = 'tranquil'; -$a->strings['surprised'] = 'sorprès'; -$a->strings['View Video'] = 'Veure Video'; -$a->strings['bytes'] = 'bytes'; -$a->strings['Click to open/close'] = 'Clicar per a obrir/tancar'; -$a->strings['activity'] = 'activitat'; -$a->strings['comment'] = [ - 0 => '', - 1 => 'comentari', -]; -$a->strings['post'] = 'missatge'; -$a->strings['Item filed'] = 'Element arxivat'; +$a->strings['Title/Description:'] = 'Títol/Descripció:'; +$a->strings['Summary'] = 'Sumari'; +$a->strings['Musical interests'] = 'Gustos musicals'; +$a->strings['Books, literature'] = 'Llibres, Literatura'; +$a->strings['Television'] = 'Televisió'; +$a->strings['Film/dance/culture/entertainment'] = 'Cinema/ball/cultura/entreteniments'; +$a->strings['Hobbies/Interests'] = 'Aficions/Interessos'; +$a->strings['Love/romance'] = 'Amor/sentiments'; +$a->strings['Work/employment'] = 'Treball/ocupació'; +$a->strings['School/education'] = 'Ensenyament/estudis'; +$a->strings['Contact information and Social Networks'] = 'Informació de contacte i Xarxes Socials'; +$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'ERROR IMPORTANT: La generació de claus de seguretat ha fallat.'; $a->strings['Passwords do not match. Password unchanged.'] = 'Les contrasenyes no coincideixen. Contrasenya no canviada.'; $a->strings['An invitation is required.'] = 'Es requereix invitació.'; $a->strings['Invitation could not be verified.'] = 'La invitació no ha pogut ser verificada.'; $a->strings['Invalid OpenID url'] = 'OpenID url no vàlid'; +$a->strings['We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.'] = 'Em trobat un problema quan accedies amb la OpenID que has proporcionat. Per favor, revisa la cadena del ID.'; +$a->strings['The error message was:'] = 'El missatge d\'error fou: '; $a->strings['Please enter the required information.'] = 'Per favor, introdueixi la informació requerida.'; -$a->strings['Please use a shorter name.'] = 'Per favor, empri un nom més curt.'; -$a->strings['Name too short.'] = 'Nom massa curt.'; $a->strings['That doesn\'t appear to be your full (First Last) name.'] = 'Això no sembla ser el teu nom complet.'; $a->strings['Your email domain is not among those allowed on this site.'] = 'El seu domini de correu electrònic no es troba entre els permesos en aquest lloc.'; $a->strings['Not a valid email address.'] = 'Adreça de correu no vàlida.'; $a->strings['Cannot use that email.'] = 'No es pot utilitzar aquest correu electrònic.'; $a->strings['Nickname is already registered. Please choose another.'] = 'àlies ja registrat. Tria un altre.'; -$a->strings['Nickname was once registered here and may not be re-used. Please choose another.'] = 'L\'àlies emprat ja està registrat alguna vegada i no es pot reutilitzar '; -$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'ERROR IMPORTANT: La generació de claus de seguretat ha fallat.'; $a->strings['An error occurred during registration. Please try again.'] = 'Un error ha succeït durant el registre. Intenta-ho de nou.'; -$a->strings['default'] = 'per defecte'; $a->strings['An error occurred creating your default profile. Please try again.'] = 'Un error ha succeit durant la creació del teu perfil per defecte. Intenta-ho de nou.'; +$a->strings['Friends'] = 'Amics/Amigues'; $a->strings['Profile Photos'] = 'Fotos del Perfil'; $a->strings['Registration details for %s'] = 'Detalls del registre per a %s'; -$a->strings['Post successful.'] = 'Publicat amb éxit.'; +$a->strings['Disable'] = 'Deshabilitar'; +$a->strings['Enable'] = 'Habilitar'; +$a->strings['Administration'] = 'Administració'; +$a->strings['Toggle'] = 'Canviar'; +$a->strings['Author: '] = 'Autor:'; +$a->strings['Maintainer: '] = 'Responsable:'; +$a->strings['Save Settings'] = 'Desa la configuració'; +$a->strings['Update has been marked successful'] = 'L\'actualització ha estat marcada amb èxit'; +$a->strings['Update %s was successfully applied.'] = 'L\'actualització de %s es va aplicar amb èxit.'; +$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'L\'actualització de %s no ha retornat el seu estatus. Es desconeix si ha estat amb èxit.'; +$a->strings['No failed updates.'] = 'No hi ha actualitzacions fallides.'; +$a->strings['Failed Updates'] = 'Actualitzacions Fallides'; +$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Això no inclou actualitzacions anteriors a 1139, raó per la que no ha retornat l\'estatus.'; +$a->strings['Mark success (if update was manually applied)'] = 'Marcat am èxit (si l\'actualització es va fer manualment)'; +$a->strings['Attempt to execute this update step automatically'] = 'Intentant executar aquest pas d\'actualització automàticament'; +$a->strings['Other'] = 'Altres'; +$a->strings['Logs'] = 'Registres'; +$a->strings['Clear'] = 'Netejar'; +$a->strings['Enable Debugging'] = 'Habilitar Depuració'; +$a->strings['Log file'] = 'Arxiu de registre'; +$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Ha de tenir permisos d\'escriptura pel servidor web. En relació amb el seu directori Friendica de nivell superior.'; +$a->strings['Log level'] = 'Nivell de transcripció'; +$a->strings['Event details'] = 'Detalls del esdeveniment'; +$a->strings['No special theme for mobile devices'] = 'No hi ha un tema específic per a mòbil'; +$a->strings['%s - (Experimental)'] = '%s - (Experimental)'; +$a->strings['Multi user instance'] = 'Instancia multiusuari'; +$a->strings['Closed'] = 'Tancat'; +$a->strings['Requires approval'] = 'Requereix aprovació'; +$a->strings['Open'] = 'Obert'; +$a->strings['Site'] = 'Lloc'; +$a->strings['Registration'] = 'Procés de Registre'; +$a->strings['File upload'] = 'Fitxer carregat'; +$a->strings['Policies'] = 'Polítiques'; +$a->strings['Advanced'] = 'Avançat'; +$a->strings['Performance'] = 'Rendiment'; +$a->strings['Site name'] = 'Nom del lloc'; +$a->strings['Banner/Logo'] = 'Senyera/Logo'; +$a->strings['System language'] = 'Idioma del Sistema'; +$a->strings['System theme'] = 'Tema del sistema'; +$a->strings['Mobile system theme'] = 'Tema per a mòbil'; +$a->strings['Theme for mobile devices'] = 'Tema per a aparells mòbils'; +$a->strings['Single user instance'] = 'Instancia per a un únic usuari'; +$a->strings['Make this instance multi-user or single-user for the named user'] = 'Fer aquesta instancia multi-usuari o mono-usuari per al usuari anomenat'; +$a->strings['Maximum image size'] = 'Mida màxima de les imatges'; +$a->strings['Maximum image length'] = 'Maxima longitud d\'imatge'; +$a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Longitud màxima en píxels del costat més llarg de la imatge carregada. Per defecte es -1, que significa sense límits'; +$a->strings['JPEG image quality'] = 'Qualitat per a la imatge JPEG'; +$a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = 'Els JPEGs pujats seran guardats amb la qualitat que ajustis de [0-100]. Per defecte es 100 màxima qualitat.'; +$a->strings['Register policy'] = 'Política per a registrar'; +$a->strings['Maximum Daily Registrations'] = 'Registres Màxims Diaris'; +$a->strings['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.'] = 'Si es permet el registre, això ajusta el nombre màxim de nous usuaris a acceptar diariament. Si el registre esta tancat, aquest ajust no te efectes.'; +$a->strings['Register text'] = 'Text al registrar'; +$a->strings['Will be displayed prominently on the registration page. You can use BBCode here.'] = 'Es mostrarà de manera destacada a la pàgina de registre. Podeu utilitzar BBCode aquí.'; +$a->strings['Forbidden Nicknames'] = 'Noms prohibits'; +$a->strings['Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142.'] = 'Llista de sobrenoms separats per comes que tenen prohibit el registre. Els presets són una llista de noms de rol segonsRFC 2142.'; +$a->strings['Accounts abandoned after x days'] = 'Comptes abandonats després de x dies'; +$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = 'No gastará recursos del sistema creant enquestes des de llocs externos per a comptes abandonats. Introdueixi 0 per a cap límit temporal.'; +$a->strings['Allowed friend domains'] = 'Dominis amics permesos'; +$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Llista de dominis separada per comes, de adreçes de correu que són permeses per establir amistats. S\'admeten comodins. Deixa\'l buit per a acceptar tots els dominis.'; +$a->strings['Allowed email domains'] = 'Dominis de correu permesos'; +$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Llista de dominis separada per comes, de adreçes de correu que són permeses per registrtar-se. S\'admeten comodins. Deixa\'l buit per a acceptar tots els dominis.'; +$a->strings['Block public'] = 'Bloqueig públic'; +$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Bloqueja l\'accés públic a qualsevol pàgina del lloc fins que t\'hagis identificat.'; +$a->strings['Force publish'] = 'Forçar publicació'; +$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Obliga a que tots el perfils en aquest lloc siguin mostrats en el directori del lloc.'; +$a->strings['Private posts by default for new users'] = 'Els enviaments dels nous usuaris seran privats per defecte.'; +$a->strings['Don\'t include post content in email notifications'] = 'No incloure el assumpte a les notificacions per correu electrónic'; +$a->strings['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.'] = 'No incloure assumpte d\'un enviament/comentari/missatge_privat/etc. Als correus electronics que envii fora d\'aquest lloc, com a mesura de privacitat. '; +$a->strings['Disallow public access to addons listed in the apps menu.'] = 'Deshabilita el accés públic als complements llistats al menu d\'aplicacions'; +$a->strings['Checking this box will restrict addons listed in the apps menu to members only.'] = 'Marcant això restringiras els complements llistats al menú d\'aplicacions al membres'; +$a->strings['Don\'t embed private images in posts'] = 'No incrustar imatges en missatges privats'; +$a->strings['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.'] = 'No reemplaçar les fotos privades hospedades localment en missatges amb una còpia de l\'imatge embeguda. Això vol dir que els contactes que rebin el missatge contenint fotos privades s\'ha d\'autenticar i carregar cada imatge, amb el que pot suposar bastant temps.'; +$a->strings['Enable Diaspora support'] = 'Habilitar suport per Diaspora'; +$a->strings['Verify SSL'] = 'Verificar SSL'; +$a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = 'Si ho vols, pots comprovar el certificat estrictament. Això farà que no puguis connectar (de cap manera) amb llocs amb certificats SSL autosignats.'; +$a->strings['Proxy user'] = 'proxy d\'usuari'; +$a->strings['Proxy URL'] = 'URL del proxy'; +$a->strings['Network timeout'] = 'Temps excedit a la xarxa'; +$a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Valor en segons. Canviat a 0 es sense límits (no recomenat)'; +$a->strings['Maximum Load Average'] = 'Càrrega Màxima Sostinguda'; +$a->strings['Temp path'] = 'Camí a carpeta temporal'; +$a->strings['Message queues'] = 'Cues de missatges'; +$a->strings['Version'] = 'Versió'; +$a->strings['Screenshot'] = 'Captura de pantalla'; +$a->strings['Themes'] = 'Temes'; +$a->strings['[Experimental]'] = '[Experimental]'; +$a->strings['[Unsupported]'] = '[No soportat]'; +$a->strings['No installed applications.'] = 'Aplicacions no instal·lades.'; +$a->strings['Applications'] = 'Aplicacions'; +$a->strings['Item was not found.'] = 'Element no trobat.'; +$a->strings['Please login to continue.'] = 'Per favor, accedeixi per a continuar.'; +$a->strings['Additional features'] = 'Característiques Adicionals'; +$a->strings['DB updates'] = 'Actualitzacions de BD'; +$a->strings['User registrations waiting for confirmation'] = 'Registre d\'usuari a l\'espera de confirmació'; +$a->strings['Users'] = 'Usuaris'; +$a->strings['Profile Details'] = 'Detalls del Perfil'; +$a->strings['Only You Can See This'] = 'Només ho pots veure tu'; +$a->strings['Tips for New Members'] = 'Consells per a nous membres'; +$a->strings['No matches'] = 'No hi ha coincidències'; +$a->strings['Account'] = 'Compte'; +$a->strings['Social Networks'] = 'Xarxes socials'; +$a->strings['Connected apps'] = 'App connectada'; +$a->strings['Export personal data'] = 'Exportar dades personals'; +$a->strings['Remove account'] = 'Esborrar compte'; +$a->strings['Event title and start time are required.'] = 'Títol d\'esdeveniment i hora d\'inici requerits.'; +$a->strings['Event Starts:'] = 'Inici d\'Esdeveniment:'; +$a->strings['Required'] = 'Requerit'; +$a->strings['Finish date/time is not known or not relevant'] = 'La data/hora de finalització no es coneixen o no són relevants'; +$a->strings['Event Finishes:'] = 'L\'esdeveniment Finalitza:'; +$a->strings['Share this event'] = 'Compartir aquest esdeveniment'; +$a->strings['Basic'] = 'Basic'; +$a->strings['calendar'] = 'calendari'; +$a->strings['Events'] = 'Esdeveniments'; +$a->strings['Create New Event'] = 'Crear un nou esdeveniment'; +$a->strings['list'] = 'llista'; +$a->strings['Contact not found.'] = 'Contacte no trobat'; +$a->strings['Invalid contact.'] = 'Contacte no vàlid.'; +$a->strings['Members'] = 'Membres'; +$a->strings['Click on a contact to add or remove.'] = 'Clicar sobre el contacte per afegir o esborrar.'; +$a->strings['Show all contacts'] = 'Mostrar tots els contactes'; +$a->strings['Blocked'] = 'Blocat'; +$a->strings['Only show blocked contacts'] = 'Mostrar únicament els contactes blocats'; +$a->strings['Ignored'] = 'Ignorat'; +$a->strings['Only show ignored contacts'] = 'Mostrar únicament els contactes ignorats'; +$a->strings['Archived'] = 'Arxivat'; +$a->strings['Only show archived contacts'] = 'Mostrar únicament els contactes arxivats'; +$a->strings['Hidden'] = 'Amagat'; +$a->strings['Only show hidden contacts'] = 'Mostrar únicament els contactes amagats'; +$a->strings['Search your contacts'] = 'Cercant el seus contactes'; +$a->strings['Update'] = 'Actualitzar'; +$a->strings['Unblock'] = 'Desbloquejar'; +$a->strings['Unignore'] = 'Treure d\'Ignorats'; +$a->strings['Advanced Contact Settings'] = 'Ajustos Avançats per als Contactes'; +$a->strings['Mutual Friendship'] = 'Amistat Mutua'; +$a->strings['is a fan of yours'] = 'Es un fan teu'; +$a->strings['you are a fan of'] = 'ets fan de'; +$a->strings['Visit %s\'s profile [%s]'] = 'Visitar perfil de %s [%s]'; +$a->strings['Contact update failed.'] = 'Fracassà l\'actualització de Contacte'; +$a->strings['Return to contact editor'] = 'Tornar al editor de contactes'; +$a->strings['Name'] = 'Nom'; +$a->strings['Account Nickname'] = 'Àlies del Compte'; +$a->strings['Account URL'] = 'Adreça URL del Compte'; +$a->strings['Poll/Feed URL'] = 'Adreça de Enquesta/Alimentador'; +$a->strings['New photo from this URL'] = 'Nova foto d\'aquesta URL'; $a->strings['Access denied.'] = 'Accés denegat.'; -$a->strings['Welcome to %s'] = 'Benvingut a %s'; -$a->strings['No more system notifications.'] = 'No més notificacions del sistema.'; -$a->strings['System Notifications'] = 'Notificacions del Sistema'; -$a->strings['Remove term'] = 'Traieu termini'; -$a->strings['Public access denied.'] = 'Accés públic denegat.'; +$a->strings['Submit Request'] = 'Sol·licitud Enviada'; +$a->strings['You already added this contact.'] = 'Ja heu afegit aquest contacte.'; +$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'No s\'ha pogut detectar el tipus de xarxa. El contacte no es pot afegir.'; +$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Diaspora l\'assistència no està habilitada. El contacte no es pot afegir.'; +$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus l\'assistència està desactivada. El contacte no es pot afegir.'; +$a->strings['Please answer the following:'] = 'Si us plau, contesti les següents preguntes:'; +$a->strings['Your Identity Address:'] = 'La Teva Adreça Identificativa:'; +$a->strings['Profile URL'] = 'Perfil URL'; +$a->strings['Tags:'] = 'Etiquetes:'; +$a->strings['Add a personal note:'] = 'Afegir una nota personal:'; +$a->strings['The contact could not be added.'] = 'El contacte no s\'ha pogut afegir.'; +$a->strings['Profile Match'] = 'Perfil Aconseguit'; +$a->strings['Failed to update contact record.'] = 'Error en actualitzar registre de contacte.'; +$a->strings['Contact has been unblocked'] = 'El contacte ha estat desbloquejat'; +$a->strings['Contact has been blocked'] = 'Elcontacte ha estat bloquejat'; +$a->strings['Contact has been unignored'] = 'El contacte ha estat recordat'; +$a->strings['Contact has been ignored'] = 'El contacte ha estat ignorat'; +$a->strings['You are mutual friends with %s'] = 'Ara te una amistat mutua amb %s'; +$a->strings['You are sharing with %s'] = 'Estas compartint amb %s'; +$a->strings['%s is sharing with you'] = '%s esta compartint amb tú'; +$a->strings['Private communications are not available for this contact.'] = 'Comunicacions privades no disponibles per aquest contacte.'; +$a->strings['Never'] = 'Mai'; +$a->strings['(Update was not successful)'] = '(L\'actualització fracassà)'; +$a->strings['(Update was successful)'] = '(L\'actualització fou exitosa)'; +$a->strings['Suggest friends'] = 'Suggerir amics'; +$a->strings['Network type: %s'] = 'Xarxa tipus: %s'; +$a->strings['Communications lost with this contact!'] = 'La comunicació amb aquest contacte s\'ha perdut!'; +$a->strings['Contact Information / Notes'] = 'Informació/Notes del contacte'; +$a->strings['Edit contact notes'] = 'Editar notes de contactes'; +$a->strings['Block/Unblock contact'] = 'Bloquejar/Alliberar contacte'; +$a->strings['Ignore contact'] = 'Ignore contacte'; +$a->strings['View conversations'] = 'Veient conversacions'; +$a->strings['Last update:'] = 'Última actualització:'; +$a->strings['Update public posts'] = 'Actualitzar enviament públic'; +$a->strings['Update now'] = 'Actualitza ara'; +$a->strings['Currently blocked'] = 'Bloquejat actualment'; +$a->strings['Currently ignored'] = 'Ignorat actualment'; +$a->strings['Currently archived'] = 'Actualment arxivat'; +$a->strings['Hide this contact from others'] = 'Amaga aquest contacte dels altres'; +$a->strings['Replies/likes to your public posts may still be visible'] = 'Répliques/agraiments per als teus missatges públics poden romandre visibles'; +$a->strings['Status'] = 'Estatus'; +$a->strings['Toggle Blocked status'] = 'Canvi de estatus blocat'; +$a->strings['Toggle Ignored status'] = 'Canvi de estatus ignorat'; +$a->strings['Yes'] = 'Si'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Cap suggeriment disponible. Si això és un nou lloc, si us plau torna a intentar en 24 hores.'; +$a->strings['You aren\'t following this contact.'] = 'No seguiu aquest contacte.'; +$a->strings['Unfollowing is currently not supported by your network.'] = 'Actualment, la vostra xarxa no és compatible amb el fet de seguir.'; +$a->strings['Disconnect/Unfollow'] = 'Desconnecta / Deixa de seguir'; $a->strings['No results.'] = 'Sense resultats.'; -$a->strings['This is Friendica, version'] = 'Això és Friendica, versió'; -$a->strings['running at web location'] = 'funcionant en la ubicació web'; -$a->strings['Please visit Friendica.com to learn more about the Friendica project.'] = 'Si us plau, visiteu Friendica.com per obtenir més informació sobre el projecte Friendica.'; +$a->strings['Not available.'] = 'No disponible.'; +$a->strings['Time Conversion'] = 'Temps de Conversió'; +$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica ofereix aquest servei per a compartir esdeveniments amb d\'altres xarxes i amics en zones horaries que son desconegudes'; +$a->strings['UTC time: %s'] = 'hora UTC: %s'; +$a->strings['Current timezone: %s'] = 'Zona horària actual: %s'; +$a->strings['Converted localtime: %s'] = 'Conversión de hora local: %s'; +$a->strings['Please select your timezone:'] = 'Si us plau, seleccioneu la vostra zona horària:'; +$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Alternar entre les diferents identitats o les pàgines de comunitats/grups que comparteixen les dades del seu compte o que se li ha concedit els permisos de "administrar"'; +$a->strings['Select an identity to manage: '] = 'Seleccionar identitat a administrar:'; +$a->strings['No entries (some entries may be hidden).'] = 'No hi ha entrades (algunes de les entrades poden estar amagades).'; +$a->strings['Find on this site'] = 'Trobat en aquest lloc'; +$a->strings['Site Directory'] = 'Directori Local'; +$a->strings['- select -'] = '- seleccionar -'; +$a->strings['Suggested contact not found.'] = 'No s\'ha trobat el contacte suggerit.'; +$a->strings['Friend suggestion sent.'] = 'Enviat suggeriment d\'amic.'; +$a->strings['Suggest Friends'] = 'Suggerir Amics'; +$a->strings['Suggest a friend for %s'] = 'Suggerir un amic per a %s'; $a->strings['Bug reports and issues: please visit'] = 'Pels informes d\'error i problemes: si us plau, visiteu'; -$a->strings['Suggestions, praise, donations, etc. - please email "Info" at Friendica - dot com'] = 'Suggeriments, elogis, donacions, etc si us plau escrigui a "Info" en Friendica - dot com'; -$a->strings['Installed plugins/addons/apps:'] = 'plugins/addons/apps instal·lats:'; -$a->strings['No installed plugins/addons/apps'] = 'plugins/addons/apps no instal·lats'; -$a->strings['No valid account found.'] = 'compte no vàlid trobat.'; -$a->strings['Password reset request issued. Check your email.'] = 'Sol·licitut de restabliment de contrasenya enviat. Comprovi el seu correu.'; -$a->strings['Password reset requested at %s'] = 'Contrasenya restablerta enviada a %s'; -$a->strings['Request could not be verified. (You may have previously submitted it.) Password reset failed.'] = 'La sol·licitut no pot ser verificada. (Hauries de presentar-la abans). Restabliment de contrasenya fracassat.'; -$a->strings['Password Reset'] = 'Restabliment de Contrasenya'; -$a->strings['Your password has been reset as requested.'] = 'La teva contrasenya fou restablerta com vas demanar.'; -$a->strings['Your new password is'] = 'La teva nova contrasenya es'; -$a->strings['Save or copy your new password - and then'] = 'Guarda o copia la nova contrasenya - i llavors'; -$a->strings['click here to login'] = 'clica aquí per identificarte'; -$a->strings['Your password may be changed from the Settings page after successful login.'] = 'Pots camviar la contrasenya des de la pàgina de Configuración desprès d\'accedir amb èxit.'; -$a->strings['Your password has been changed at %s'] = 'La teva contrasenya ha estat canviada a %s'; -$a->strings['Forgot your Password?'] = 'Has Oblidat la Contrasenya?'; -$a->strings['Enter your email address and submit to have your password reset. Then check your email for further instructions.'] = 'Introdueixi la seva adreça de correu i enivii-la per restablir la seva contrasenya. Llavors comprovi el seu correu per a les següents instruccións. '; -$a->strings['Nickname or Email: '] = 'Àlies o Correu:'; -$a->strings['Reset'] = 'Restablir'; $a->strings['No profile'] = 'Sense perfil'; $a->strings['Help:'] = 'Ajuda:'; -$a->strings['Not Found'] = 'No trobat'; -$a->strings['Page not found.'] = 'Pàgina no trobada.'; -$a->strings['Remote privacy information not available.'] = 'Informació de privacitat remota no disponible.'; -$a->strings['Visible to:'] = 'Visible per a:'; -$a->strings['OpenID protocol error. No ID returned.'] = 'Error al protocol OpenID. No ha retornat ID.'; -$a->strings['Account not found and OpenID registration is not permitted on this site.'] = 'Compte no trobat i el registrar-se amb OpenID no està permès en aquest lloc.'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Aquest lloc excedeix el nombre diari de registres de comptes. Per favor, provi de nou demà.'; -$a->strings['Import'] = 'Importar'; -$a->strings['Move account'] = 'Moure el compte'; -$a->strings['You can import an account from another Friendica server.'] = 'Pots importar un compte d\'un altre servidor Friendica'; -$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.'] = 'Es necessari que exportis el teu compte de l\'antic servidor i el pugis a aquest. Recrearem el teu antic compte aquí amb tots els teus contactes. Intentarem també informar als teus amics que t\'has traslladat aquí.'; -$a->strings['Account file'] = 'Arxiu del compte'; -$a->strings['Visit %s\'s profile [%s]'] = 'Visitar perfil de %s [%s]'; -$a->strings['Edit contact'] = 'Editar contacte'; -$a->strings['Contacts who are not members of a group'] = 'Contactes que no pertanyen a cap grup'; -$a->strings['Export account'] = 'Exportar compte'; -$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.'] = 'Exportar la teva informació del compte i de contactes. Empra això per fer una còpia de seguretat del teu compte i/o moure\'l cap altre servidor. '; -$a->strings['Export all'] = 'Exportar tot'; -$a->strings['Export your accout 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)'] = 'Exportar la teva informació de compte, contactes i tots els teus articles com a json. Pot ser un fitxer molt gran, i pot trigar molt temps. Empra això per fer una còpia de seguretat total del teu compte (les fotos no s\'exporten)'; -$a->strings['Export personal data'] = 'Exportar dades personals'; +$a->strings['Welcome to %s'] = 'Benvingut a %s'; +$a->strings['System check'] = 'Comprovació del Sistema'; +$a->strings['Next'] = 'Següent'; +$a->strings['Check again'] = 'Comprovi de nou'; +$a->strings['Base path to installation'] = 'Trajectoria base per a instal·lar'; +$a->strings['Database connection'] = 'Conexió a la base de dades'; +$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Per a instal·lar Friendica necessitem conèixer com connectar amb la deva base de dades.'; +$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Per favor, posi\'s en contacte amb el seu proveïdor de hosting o administrador del lloc si té alguna pregunta sobre aquestes opcions.'; +$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'La base de dades que especifiques ja hauria d\'existir. Si no és així, crea-la abans de continuar.'; +$a->strings['Database Server Name'] = 'Nom del Servidor de base de Dades'; +$a->strings['Database Login Name'] = 'Nom d\'Usuari de la base de Dades'; +$a->strings['Database Login Password'] = 'Contrasenya d\'Usuari de la base de Dades'; +$a->strings['Database Name'] = 'Nom de la base de Dades'; +$a->strings['Please select a default timezone for your website'] = 'Per favor, seleccioni una zona horària per defecte per al seu lloc web'; +$a->strings['Site settings'] = 'Configuracions del lloc'; +$a->strings['Site administrator email address'] = 'Adreça de correu del administrador del lloc'; +$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'El seu compte d\'adreça electrònica ha de coincidir per tal d\'utilitzar el panell d\'administració web.'; +$a->strings['Your Friendica site database has been installed.'] = 'La base de dades del teu lloc Friendica ha estat instal·lada.'; +$a->strings['

    What next

    '] = '

    Que es següent

    '; $a->strings['Total invitation limit exceeded.'] = 'Limit d\'invitacions excedit.'; $a->strings['%s : Not a valid email address.'] = '%s : No es una adreça de correu vàlida'; $a->strings['Please join us on Friendica'] = 'Per favor, uneixi\'s a nosaltres en Friendica'; @@ -642,37 +783,282 @@ $a->strings['Friendica sites all inter-connect to create a huge privacy-enhanced $a->strings['Our apologies. This system is not currently configured to connect with other public sites or invite members.'] = 'Nostres disculpes. Aquest sistema no està configurat actualment per connectar amb altres llocs públics o convidar als membres.'; $a->strings['Send invitations'] = 'Enviant Invitacions'; $a->strings['Enter email addresses, one per line:'] = 'Entri adreçes de correu, una per línia:'; -$a->strings['Your message:'] = 'El teu missatge:'; $a->strings['You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.'] = 'Estàs cordialment convidat a ajuntarte a mi i altres amics propers en Friendica - i ajudar-nos a crear una millor web social.'; $a->strings['You will need to supply this invitation code: $invite_code'] = 'Vostè haurà de proporcionar aquest codi d\'invitació: $invite_code'; $a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Un cop registrat, si us plau contactar amb mi a través de la meva pàgina de perfil a:'; -$a->strings['For more information about the Friendica project and why we feel it is important, please visit http://friendica.com'] = 'Per a més informació sobre el projecte Friendica i perque creiem que això es important, per favor, visita http://friendica.com'; -$a->strings['Submit'] = 'Enviar'; +$a->strings['System down for maintenance'] = 'Sistema apagat per manteniment'; $a->strings['Files'] = 'Arxius'; -$a->strings['Permission denied'] = 'Permís denegat'; -$a->strings['Invalid profile identifier.'] = 'Identificador del perfil no vàlid.'; -$a->strings['Profile Visibility Editor'] = 'Editor de Visibilitat del Perfil'; -$a->strings['Click on a contact to add or remove.'] = 'Clicar sobre el contacte per afegir o esborrar.'; -$a->strings['Visible To'] = 'Visible Per'; -$a->strings['All Contacts (with secure profile access)'] = 'Tots els Contactes (amb accés segur al perfil)'; -$a->strings['Tag removed'] = 'Etiqueta eliminada'; +$a->strings['Upload'] = 'Pujar'; +$a->strings['File upload failed.'] = 'La càrrega de fitxers ha fallat.'; +$a->strings['Unable to process image.'] = 'Incapaç de processar la imatge.'; +$a->strings['Image upload failed.'] = 'Actualització de la imatge fracassada.'; +$a->strings['Normal Account Page'] = 'Pàgina Normal del Compte '; +$a->strings['Soapbox Page'] = 'Pàgina de Soapbox'; +$a->strings['Automatic Friend Page'] = 'Compte d\'Amistat Automàtica'; +$a->strings['Organisation Page'] = 'Página de organización'; +$a->strings['News Page'] = 'Página de noticias'; +$a->strings['select all'] = 'Seleccionar tot'; +$a->strings['Item not found'] = 'Element no trobat'; +$a->strings['Normal Account'] = 'Compte Normal'; +$a->strings['Automatic Friend Account'] = 'Compte d\'Amistat Automàtic'; +$a->strings['Blog Account'] = 'Compte de Blog'; +$a->strings['Registered users'] = 'Usuaris registrats'; +$a->strings['Pending registrations'] = 'Registres d\'usuari pendents'; +$a->strings['%s user deleted'] = [ + 0 => '%s usuari esborrat', + 1 => '%s usuaris esborrats', +]; +$a->strings['Register date'] = 'Data de registre'; +$a->strings['Last login'] = 'Últim accés'; +$a->strings['Site admin'] = 'Administrador del lloc'; +$a->strings['Account expired'] = 'Compte expirat'; +$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Els usuaris seleccionats seran esborrats!\n\nqualsevol cosa que aquests usuaris hagin publicat en aquest lloc s\'esborrarà!\n\nEsteu segur?'; +$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'L\'usuari {0} s\'eliminarà!\n\nQualsevol cosa que aquest usuari hagi publicat en aquest lloc s\'esborrarà!\n\nEsteu segur?'; +$a->strings['Account approved.'] = 'Compte aprovat.'; +$a->strings['Request date'] = 'Data de sol·licitud'; +$a->strings['No registrations.'] = 'Sense registres.'; +$a->strings['Deny'] = 'Denegar'; +$a->strings['Show Ignored Requests'] = 'Mostra les Sol·licituds Ignorades'; +$a->strings['Hide Ignored Requests'] = 'Amaga les Sol·licituds Ignorades'; +$a->strings['Claims to be known to you: '] = 'Diu que et coneix:'; +$a->strings['No'] = 'No'; +$a->strings['Friend'] = 'Amic'; +$a->strings['No introductions.'] = 'Sense presentacions.'; +$a->strings['Network Notifications'] = 'Notificacions de la Xarxa'; +$a->strings['System Notifications'] = 'Notificacions del Sistema'; +$a->strings['Personal Notifications'] = 'Notificacions Personals'; +$a->strings['Home Notifications'] = 'Notificacions d\'Inici'; +$a->strings['{0} requested registration'] = '{0} solicituts de registre'; +$a->strings['Authorize application connection'] = 'Autoritzi la connexió de aplicacions'; +$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Vol autoritzar a aquesta aplicació per accedir als teus missatges i contactes, i/o crear nous enviaments per a vostè?'; +$a->strings['Resubscribing to OStatus contacts'] = 'Tornar a inscriure’s a OStatus contactes'; +$a->strings['Keep this window open until done.'] = 'Manteniu aquesta finestra oberta fins que no hàgiu acabat.'; +$a->strings['No contact provided.'] = 'No s’ha proporcionat cap contacte.'; +$a->strings['Couldn\'t fetch information for contact.'] = 'No s\'ha pogut obtenir informació per al contacte.'; +$a->strings['Couldn\'t fetch friends for contact.'] = 'No s\'ha pogut buscar amics per contactar-los.'; +$a->strings['Done'] = 'Fet'; +$a->strings['success'] = 'èxit'; +$a->strings['failed'] = 'suspendre'; +$a->strings['ignored'] = 'ignorar'; +$a->strings['Remote privacy information not available.'] = 'Informació de privacitat remota no disponible.'; +$a->strings['Visible to:'] = 'Visible per a:'; +$a->strings['Edit post'] = 'Editar Enviament'; +$a->strings['web link'] = 'enllaç de web'; +$a->strings['Insert video link'] = 'Insertar enllaç de video'; +$a->strings['video link'] = 'enllaç de video'; +$a->strings['Insert audio link'] = 'Insertar enllaç de audio'; +$a->strings['audio link'] = 'enllaç de audio'; $a->strings['Remove Item Tag'] = 'Esborrar etiqueta del element'; $a->strings['Select a tag to remove: '] = 'Selecciona etiqueta a esborrar:'; $a->strings['Remove'] = 'Esborrar'; -$a->strings['No potential page delegates located.'] = 'No es troben pàgines potencialment delegades.'; +$a->strings['No contacts.'] = 'Sense Contactes'; +$a->strings['Image file is empty.'] = 'El fitxer de imatge és buit.'; +$a->strings['View Album'] = 'Veure Àlbum'; +$a->strings['Profile not found.'] = 'Perfil no trobat.'; +$a->strings['Full Name:'] = 'Nom Complet:'; +$a->strings['j F, Y'] = 'j F, Y'; +$a->strings['j F'] = 'j F'; +$a->strings['Birthday:'] = 'Aniversari:'; +$a->strings['Age: '] = 'Edat:'; +$a->strings['Description:'] = 'Descripció:'; +$a->strings['Profile unavailable.'] = 'Perfil no disponible'; +$a->strings['Invalid locator'] = 'Localitzador no vàlid'; +$a->strings['Friend/Connection Request'] = 'Sol·licitud d\'Amistat'; +$a->strings['Unable to check your home location.'] = 'Incapaç de comprovar la localització.'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Nombre diari de missatges al mur per %s excedit. El missatge ha fallat.'; +$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'si vols respondre a %s, comprova que els ajustos de privacitat del lloc permeten correus privats de remitents desconeguts.'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Aquest lloc excedeix el nombre diari de registres de comptes. Per favor, provi de nou demà.'; +$a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking "Register".'] = 'Podeu (opcionalment) omplir aquest formulari mitjançant OpenID subministrant el vostre OpenID i fent clic a \'Registre\'.'; +$a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Si vostè no està familiaritzat amb Twitter, si us plau deixi aquest camp en blanc i completi la resta dels elements.'; +$a->strings['Your OpenID (optional): '] = 'El seu OpenID (opcional):'; +$a->strings['Include your profile in member directory?'] = 'Incloc el seu perfil al directori de membres?'; +$a->strings['Note for the admin'] = 'Nota per a l\'administrador'; +$a->strings['Leave a message for the admin, why you want to join this node'] = 'Deixa un missatge per a l\'administrador, per què vols unir-te a aquest node'; +$a->strings['Membership on this site is by invitation only.'] = 'Lloc accesible mitjançant invitació.'; +$a->strings['Your invitation code: '] = 'El vostre codi d\'invitació:'; +$a->strings['Your Full Name (e.g. Joe Smith, real or real-looking): '] = 'El vostre nom complet (per exemple, Joe Smith, amb aspecte real o real):'; +$a->strings['Your Email Address: (Initial information will be send there, so this has to be an existing address.)'] = 'La vostra adreça de correu electrònic: (la informació inicial s’enviarà allà, així que ha de ser una adreça existent.)'; +$a->strings['New Password:'] = 'Nova Contrasenya:'; +$a->strings['Leave empty for an auto generated password.'] = 'Deixeu-lo buit per obtenir una contrasenya generat automàticament.'; +$a->strings['Confirm:'] = 'Confirmar:'; +$a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be "nickname@%s".'] = 'Trieu un sobrenom de perfil. Això ha de començar amb un caràcter de text. La vostra adreça de perfil en aquest lloc serà la següent"sobrenom @%s".'; +$a->strings['Choose a nickname: '] = 'Tria un àlies:'; +$a->strings['Import'] = 'Importar'; +$a->strings['Import your profile to this friendica instance'] = 'Importeu el vostre perfil a aquesta instància de friendica'; +$a->strings['Note: This node explicitly contains adult content'] = 'Nota: Aquest node conté explícitament contingut per a adults'; +$a->strings['Parent Password:'] = 'Contrasenya principal:'; +$a->strings['Please enter the password of the parent account to legitimize your request.'] = 'Introduïu la contrasenya del compte principal per validar la vostra sol·licitud.'; +$a->strings['Registration successful. Please check your email for further instructions.'] = 'Registrat amb èxit. Per favor, comprovi el seu correu per a posteriors instruccions.'; +$a->strings['Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login.'] = 'No s\'ha pogut enviar el missatge de correu electrònic. Aquí teniu els vostres detalls
    iniciar Sessió %s
    contrasenya: %s

    Podeu canviar la vostra contrasenya després de l’inici de sessió.'; +$a->strings['Registration successful.'] = 'El registre ha tingut èxit.'; +$a->strings['Your registration can not be processed.'] = 'El seu registre no pot ser processat.'; +$a->strings['Your registration is pending approval by the site owner.'] = 'El seu registre està pendent d\'aprovació pel propietari del lloc.'; +$a->strings['Create a New Account'] = 'Crear un Nou Compte'; +$a->strings['Or login using OpenID: '] = 'O accedixi emprant OpenID:'; +$a->strings['Password: '] = 'Contrasenya:'; +$a->strings['Remember me'] = 'Recorda\'m ho'; +$a->strings['Forgot your password?'] = 'Oblidà la contrasenya?'; +$a->strings['Website Terms of Service'] = 'Termes del Servei al Llocweb'; +$a->strings['terms of service'] = 'termes del servei'; +$a->strings['Website Privacy Policy'] = 'Política de Privacitat al Llocweb'; +$a->strings['privacy policy'] = 'política de privacitat'; +$a->strings['Logged out.'] = 'Has sortit'; +$a->strings['Current Password:'] = 'Contrasenya Actual:'; +$a->strings['Your current password to confirm the changes'] = 'La teva actual contrasenya a fi de confirmar els canvis'; +$a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'Compte per a una organització que aprovi automàticament les sol·licituds de contacte com a \'seguidors\'.'; +$a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'Cuenta para un perfil público que aprueba automáticamente las solicitudes de contacto como \'Seguidores\'.'; +$a->strings['OpenID:'] = 'OpenID:'; +$a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Opcional) Permetre a aquest OpenID iniciar sessió en aquest compte.'; +$a->strings['Account Settings'] = 'Ajustos de Compte'; +$a->strings['Password Settings'] = 'Ajustos de Contrasenya'; +$a->strings['Leave password fields blank unless changing'] = 'Deixi els camps de contrasenya buits per a no fer canvis'; +$a->strings['Password:'] = 'Contrasenya:'; +$a->strings['Basic Settings'] = 'Ajustos Basics'; +$a->strings['Email Address:'] = 'Adreça de Correu:'; +$a->strings['Your Timezone:'] = 'La teva zona Horària:'; +$a->strings['Your Language:'] = 'El teu idioma:'; +$a->strings['Set the language we use to show you friendica interface and to send you emails'] = 'Definiu l’idioma que utilitzem per mostrar-vos la interfície Friendica i per enviar-vos correus electrònics'; +$a->strings['Default Post Location:'] = 'Localització per Defecte del Missatge:'; +$a->strings['Use Browser Location:'] = 'Ubicar-se amb el Navegador:'; +$a->strings['Security and Privacy Settings'] = 'Ajustos de Seguretat i Privacitat'; +$a->strings['Maximum Friend Requests/Day:'] = 'Nombre Màxim de Sol·licituds per Dia'; +$a->strings['(to prevent spam abuse)'] = '(per a prevenir abusos de spam)'; +$a->strings['Allow friends to post to your profile page?'] = 'Permet als amics publicar en la seva pàgina de perfil?'; +$a->strings['Allow friends to tag your posts?'] = 'Permet als amics d\'etiquetar els teus missatges?'; +$a->strings['Permit unknown people to send you private mail?'] = 'Permetre a desconeguts enviar missatges al teu correu privat?'; +$a->strings['Maximum private messages per day from unknown people:'] = 'Màxim nombre de missatges, per dia, de desconeguts:'; +$a->strings['Default Post Permissions'] = 'Permisos de Correu per Defecte'; +$a->strings['Automatically expire posts after this many days:'] = 'Després de aquests nombre de dies, els missatges caduquen automàticament:'; +$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Si està buit, els missatges no caducarà. Missatges caducats s\'eliminaran'; +$a->strings['Notification Settings'] = 'Ajustos de Notificació'; +$a->strings['Send a notification email when:'] = 'Envia un correu notificant quan:'; +$a->strings['You receive an introduction'] = 'Has rebut una presentació'; +$a->strings['Your introductions are confirmed'] = 'La teva presentació està confirmada'; +$a->strings['Someone writes on your profile wall'] = 'Algú ha escrit en el teu mur de perfil'; +$a->strings['Someone writes a followup comment'] = 'Algú ha escrit un comentari de seguiment'; +$a->strings['You receive a private message'] = 'Has rebut un missatge privat'; +$a->strings['You receive a friend suggestion'] = 'Has rebut una suggerencia d\'un amic'; +$a->strings['You are tagged in a post'] = 'Estàs etiquetat en un enviament'; +$a->strings['Activate desktop notifications'] = 'Activa les notificacions a l\'escriptori'; +$a->strings['Show desktop popup on new notifications'] = 'Mostra la finestra emergent a les noves notificacions'; +$a->strings['Text-only notification emails'] = 'Correu electrònic de notificació de només text'; +$a->strings['Send text only notification emails, without the html part'] = 'Envieu només missatges de correu electrònic de notificació de text, sense la part html'; +$a->strings['Show detailled notifications'] = 'Mostra les notificacions detallades'; +$a->strings['Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.'] = 'Per defecte, les notificacions es condensen a una única notificació per element. Quan està activada, es mostra tota notificació.'; +$a->strings['Advanced Account/Page Type Settings'] = 'Ajustos Avançats de Compte/ Pàgina'; +$a->strings['Change the behaviour of this account for special situations'] = 'Canviar el comportament d\'aquest compte en situacions especials'; +$a->strings['Relocate'] = 'traslladar-se'; +$a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Si heu mogut aquest perfil d\'un altre servidor i alguns dels vostres contactes no reben les vostres actualitzacions, proveu de prémer aquest botó.'; +$a->strings['Resend relocate message to contacts'] = 'Torneu a enviar el missatge a contactes'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'Connexió fracassada amb el compte de correu emprant la configuració proveïda.'; +$a->strings['Email access is disabled on this site.'] = 'L\'accés al correu està deshabilitat en aquest lloc.'; +$a->strings['None'] = 'Cap'; +$a->strings['General Social Media Settings'] = 'Configuració general de les xarxes socials'; +$a->strings['Repair OStatus subscriptions'] = 'Repara les subscripcions a OStatus'; +$a->strings['Email/Mailbox Setup'] = 'Preparació de Correu/Bústia'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Si vol comunicar-se amb els contactes de correu emprant aquest servei (opcional), Si us plau, especifiqui com connectar amb la seva bústia.'; +$a->strings['Last successful email check:'] = 'Última comprovació de correu amb èxit:'; +$a->strings['IMAP server name:'] = 'Nom del servidor IMAP:'; +$a->strings['IMAP port:'] = 'Port IMAP:'; +$a->strings['Security:'] = 'Seguretat:'; +$a->strings['Email login name:'] = 'Nom d\'usuari del correu'; +$a->strings['Email password:'] = 'Contrasenya del correu:'; +$a->strings['Reply-to address:'] = 'Adreça de resposta:'; +$a->strings['Send public posts to all email contacts:'] = 'Enviar correu públic a tots els contactes del correu:'; +$a->strings['Action after import:'] = 'Acció després d\'importar:'; +$a->strings['Move to folder'] = 'Moure a la carpeta'; +$a->strings['Move to folder:'] = 'Moure a la carpeta:'; +$a->strings['No parent user'] = 'Cap usuari principal'; +$a->strings['Parent User'] = 'Usuari Principal'; +$a->strings['Parent users have total control about this account, including the account settings. Please double check whom you give this access.'] = 'Els usuaris principals tenen un control total sobre aquest compte, inclosa la configuració del compte. Si us plau, comprova a qui dóna aquest accés.'; +$a->strings['Delegates'] = 'delegada'; $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.'] = 'Els delegats poden gestionar tots els aspectes d\'aquest compte/pàgina, excepte per als ajustaments bàsics del compte. Si us plau, no deleguin el seu compte personal a ningú que no confiïn completament.'; -$a->strings['Existing Page Managers'] = 'Actuals Administradors de Pàgina'; $a->strings['Existing Page Delegates'] = 'Actuals Delegats de Pàgina'; $a->strings['Potential Delegates'] = 'Delegats Potencials'; $a->strings['Add'] = 'Afegir'; $a->strings['No entries.'] = 'Sense entrades'; -$a->strings['- select -'] = '- seleccionar -'; -$a->strings['%1$s is following %2$s\'s %3$s'] = '%1$s esta seguint %2$s de %3$s'; -$a->strings['Item not available.'] = 'Element no disponible'; -$a->strings['Item was not found.'] = 'Element no trobat.'; -$a->strings['You must be logged in to use addons. '] = 'T\'has d\'identificar per emprar els complements'; -$a->strings['Applications'] = 'Aplicacions'; -$a->strings['No installed applications.'] = 'Aplicacions no instal·lades.'; +$a->strings['%s - (Unsupported)'] = '%s - (No és compatible)'; +$a->strings['Display Settings'] = 'Ajustos de Pantalla'; +$a->strings['Theme settings'] = 'Configuració de Temes'; +$a->strings['Display Theme:'] = 'Visualitzar el Tema:'; +$a->strings['Mobile Theme:'] = 'Tema Mobile:'; +$a->strings['Number of items to display per page:'] = 'Número d\'elements a mostrar per pàgina'; +$a->strings['Maximum of 100 items'] = 'Màxim de 100 elements'; +$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Nombre d\'elements a veure per pàgina quan es vegin des d\'un dispositiu mòbil:'; +$a->strings['Update browser every xx seconds'] = 'Actualitzar navegador cada xx segons'; +$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Mínim de 10 segons. Introduïu -1 per desactivar-lo.'; +$a->strings['Additional Features'] = 'Característiques Adicionals'; +$a->strings['Connected Apps'] = 'Aplicacions conectades'; +$a->strings['Remove authorization'] = 'retirar l\'autorització'; +$a->strings['(click to open/close)'] = '(clicar per a obrir/tancar)'; +$a->strings['Edit Profile Details'] = 'Editor de Detalls del Perfil'; +$a->strings['Change Profile Photo'] = 'Canviar la Foto del Perfil'; +$a->strings['Location'] = 'Ubicació'; +$a->strings['Miscellaneous'] = 'Miscel·lania'; +$a->strings['Upload Profile Photo'] = 'Pujar Foto del Perfil'; +$a->strings['Street Address:'] = 'Direcció:'; +$a->strings['Locality/City:'] = 'Localitat/Ciutat:'; +$a->strings['Region/State:'] = 'Regió/Estat:'; +$a->strings['Postal/Zip Code:'] = 'Codi Postal:'; +$a->strings['Country:'] = 'País'; +$a->strings['Homepage URL:'] = 'Pàgina web URL:'; +$a->strings['Public Keywords:'] = 'Paraules Clau Públiques'; +$a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Emprat per suggerir potencials amics, Altres poden veure-ho)'; +$a->strings['Private Keywords:'] = 'Paraules Clau Privades:'; +$a->strings['(Used for searching profiles, never shown to others)'] = '(Emprat durant la cerca de perfils, mai mostrat a ningú)'; +$a->strings['Image size reduction [%s] failed.'] = 'La reducció de la imatge [%s] va fracassar.'; +$a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Recarregui la pàgina o netegi la caché del navegador si la nova foto no apareix immediatament.'; +$a->strings['Unable to process image'] = 'No es pot processar la imatge'; +$a->strings['Crop Image'] = 'retallar imatge'; +$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Per favor, ajusta la retallada d\'imatge per a una optima visualització.'; +$a->strings['or'] = 'o'; +$a->strings['skip this step'] = 'saltar aquest pas'; +$a->strings['select a photo from your photo albums'] = 'tria una foto dels teus àlbums'; +$a->strings['[Friendica System Notify]'] = '[Notificació del sistema Friendica]'; +$a->strings['User deleted their account'] = 'L’usuari ha suprimit el seu compte'; +$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Al vostre node Friendica, un usuari ha suprimit el seu compte. Assegureu-vos que les seves dades siguin eliminades de les còpies de seguretat.'; +$a->strings['The user id is %d'] = 'L’identificador d’usuari és %d'; +$a->strings['Remove My Account'] = 'Eliminar el Meu Compte'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Això eliminarà per complet el seu compte. Quan s\'hagi fet això, no serà recuperable.'; +$a->strings['Please enter your password for verification:'] = 'Si us plau, introduïu la contrasenya per a la verificació:'; +$a->strings['Please enter your password to access this page.'] = 'Introduïu la vostra contrasenya per accedir a aquesta pàgina.'; +$a->strings['App-specific password generation failed: The description is empty.'] = 'Ha fallat la generació de contrasenya específica per a l’aplicació: la descripció està buida.'; +$a->strings['App-specific password generation failed: This description already exists.'] = 'Ha fallat la generació de contrasenya específica per a l\'aplicació: aquesta descripció ja existeix'; +$a->strings['New app-specific password generated.'] = 'S\'ha generat una contrasenya nova específica per a l\'aplicació.'; +$a->strings['App-specific passwords successfully revoked.'] = 'Les contrasenyes específiques de l\'aplicació s\'han revocat correctament.'; +$a->strings['App-specific password successfully revoked.'] = 'La contrasenya específica de l\'aplicació s\'ha revocat correctament.'; +$a->strings['Two-factor app-specific passwords'] = 'Contrasenyes específiques per a l\'aplicació de dos factors'; +$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.

    '] = '

    Les contrasenyes específiques de l’aplicació són contrasenyes generades aleatòriament en lloc de la contrasenya habitual per autenticar el vostre compte en aplicacions de tercers que no admeten l’autenticació de dos factors

    '; +$a->strings['Make sure to copy your new app-specific password now. You won’t be able to see it again!'] = 'Assegureu-vos de copiar la vostra nova contrasenya específica de l\'aplicació ara. No el podreu tornar a veure!'; +$a->strings['Description'] = 'Descripció'; +$a->strings['Last Used'] = 'Últim utilitzat'; +$a->strings['Revoke'] = 'Revocar'; +$a->strings['Revoke All'] = 'Revoca tot'; +$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.'] = 'Quan genereu una contrasenya nova específica de l’aplicació, l’heu d’utilitzar de seguida, us la mostrarà un cop després de generar-la.'; +$a->strings['Generate new app-specific password'] = 'Genereu una contrasenya nova específica de l\'aplicació'; +$a->strings['Friendiqa on my Fairphone 2...'] = 'Friendica al meu Fairphone 2.'; +$a->strings['Generate'] = 'generar'; +$a->strings['Two-factor authentication successfully disabled.'] = 'S\'ha desactivat correctament l\'autenticació de dos factors.'; +$a->strings['Export account'] = 'Exportar compte'; +$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.'] = 'Exportar la teva informació del compte i de contactes. Empra això per fer una còpia de seguretat del teu compte i/o moure\'l cap altre servidor. '; +$a->strings['Export all'] = 'Exportar tot'; +$a->strings['User imports on closed servers can only be done by an administrator.'] = 'Les administracions de servidors tancats només poden ser realitzades per un administrador.'; +$a->strings['Move account'] = 'Moure el compte'; +$a->strings['You can import an account from another Friendica server.'] = 'Pots importar un compte d\'un altre servidor Friendica'; +$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.'] = 'Es necessari que exportis el teu compte de l\'antic servidor i el pugis a aquest. Recrearem el teu antic compte aquí amb tots els teus contactes. Intentarem també informar als teus amics que t\'has traslladat aquí.'; +$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Aquesta característica és experimental. No podem importar contactes des de la xarxa OStatus(GNU Social/Statusnet) or from Diaspora'; +$a->strings['Account file'] = 'Arxiu del compte'; +$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Per exportar el vostre compte, aneu a \'Configuració-> Exporta les vostres dades personals\' i seleccioneu \'Exporta el compte\''; +$a->strings['Error decoding account file'] = 'Error decodificant l\'arxiu del compte'; +$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Error! No hi ha dades al arxiu! No es un arxiu de compte de Friendica?'; +$a->strings['User \'%s\' already exists on this server!'] = 'El usuari %s\' ja existeix en aquest servidor!'; +$a->strings['User creation error'] = 'Error en la creació de l\'usuari'; +$a->strings['%d contact not imported'] = [ + 0 => '%d contacte no importat', + 1 => '%d contactes no importats', +]; +$a->strings['User profile creation error'] = 'Error en la creació del perfil d\'usuari'; +$a->strings['Done. You can now login with your username and password'] = 'Fet. Ja pots identificar-te amb el teu nom d\'usuari i contrasenya'; $a->strings['Welcome to Friendica'] = 'Benvingut a Friendica'; $a->strings['New Member Checklist'] = 'Llista de Verificació dels Nous Membres'; $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.'] = 'Ens agradaria oferir alguns consells i enllaços per ajudar a fer la teva experiència agradable. Feu clic a qualsevol element per visitar la pàgina corresponent. Un enllaç a aquesta pàgina serà visible des de la pàgina d\'inici durant dues setmanes després de la teva inscripció inicial i després desapareixerà en silenci.'; @@ -682,12 +1068,10 @@ $a->strings['On your Quick Start page - find a brief introduction to yo $a->strings['Go to Your Settings'] = 'Anar als Teus Ajustos'; $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.'] = 'En la de la seva configuració de la pàgina - canviï la contrasenya inicial. També prengui nota de la Adreça d\'Identitat. Això s\'assembla a una adreça de correu electrònic - i serà útil per fer amics a la xarxa social lliure.'; $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.'] = 'Reviseu les altres configuracions, en particular la configuració de privadesa. Una llista de directoris no publicada és com tenir un número de telèfon no llistat. Normalment, hauria de publicar la seva llista - a menys que tots els seus amics i els amics potencials sàpiguen exactament com trobar-li.'; -$a->strings['Upload Profile Photo'] = 'Pujar Foto del Perfil'; $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.'] = 'Puji una foto del seu perfil si encara no ho ha fet. Els estudis han demostrat que les persones amb fotos reals de ells mateixos tenen deu vegades més probabilitats de fer amics que les persones que no ho fan.'; $a->strings['Edit Your Profile'] = 'Editar el Teu Perfil'; $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.'] = 'Editi el perfil per defecte al seu gust. Reviseu la configuració per ocultar la seva llista d\'amics i ocultar el perfil dels visitants desconeguts.'; $a->strings['Profile Keywords'] = 'Paraules clau del Perfil'; -$a->strings['Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships.'] = 'Estableix algunes paraules clau públiques al teu perfil predeterminat que descriguin els teus interessos. Podem ser capaços de trobar altres persones amb interessos similars i suggerir amistats.'; $a->strings['Connecting'] = 'Connectant'; $a->strings['Importing Emails'] = 'Important Emails'; $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'] = 'Introduïu les dades d\'accés al correu electrònic a la seva pàgina de configuració de connector, si es desitja importar i relacionar-se amb amics o llistes de correu de la seva bústia d\'email'; @@ -697,856 +1081,70 @@ $a->strings['Go to Your Site\'s Directory'] = 'Anar al Teu Directori'; $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.'] = 'La pàgina del Directori li permet trobar altres persones en aquesta xarxa o altres llocs federats. Busqui un enllaç Connectar o Seguir a la seva pàgina de perfil. Proporcioni la seva pròpia Adreça de Identitat si així ho sol·licita.'; $a->strings['Finding New People'] = 'Trobar Gent Nova'; $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.'] = 'Al tauler lateral de la pàgina de contacte Hi ha diverses eines per trobar nous amics. Podem coincidir amb les persones per interesos, buscar persones pel nom o per interès, i oferir suggeriments basats en les relacions de la xarxa. En un nou lloc, els suggeriments d\'amics, en general comencen a poblar el lloc a les 24 hores.'; -$a->strings['Group Your Contacts'] = 'Agrupar els Teus Contactes'; -$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.'] = 'Una vegada que s\'han fet alguns amics, organitzi\'ls en grups de conversa privada a la barra lateral de la seva pàgina de contactes i després pot interactuar amb cada grup de forma privada a la pàgina de la xarxa.'; $a->strings['Why Aren\'t My Posts Public?'] = 'Per que no es public el meu enviament?'; $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.'] = 'Friendica respecta la teva privacitat. Per defecte, els teus enviaments només s\'envien a gent que has afegit com a amic. Per més informació, mira la secció d\'ajuda des de l\'enllaç de dalt.'; $a->strings['Getting Help'] = 'Demanant Ajuda'; $a->strings['Go to the Help Section'] = 'Anar a la secció d\'Ajuda'; $a->strings['Our help pages may be consulted for detail on other program features and resources.'] = 'A les nostres pàgines d\'ajuda es poden consultar detalls sobre les característiques d\'altres programes i recursos.'; -$a->strings['Remove My Account'] = 'Eliminar el Meu Compte'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Això eliminarà per complet el seu compte. Quan s\'hagi fet això, no serà recuperable.'; -$a->strings['Please enter your password for verification:'] = 'Si us plau, introduïu la contrasenya per a la verificació:'; -$a->strings['Item not found'] = 'Element no trobat'; -$a->strings['Edit post'] = 'Editar Enviament'; -$a->strings['Time Conversion'] = 'Temps de Conversió'; -$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica ofereix aquest servei per a compartir esdeveniments amb d\'altres xarxes i amics en zones horaries que son desconegudes'; -$a->strings['UTC time: %s'] = 'hora UTC: %s'; -$a->strings['Current timezone: %s'] = 'Zona horària actual: %s'; -$a->strings['Converted localtime: %s'] = 'Conversión de hora local: %s'; -$a->strings['Please select your timezone:'] = 'Si us plau, seleccioneu la vostra zona horària:'; -$a->strings['Group created.'] = 'Grup creat.'; -$a->strings['Could not create group.'] = 'No puc crear grup.'; -$a->strings['Group not found.'] = 'Grup no trobat'; -$a->strings['Group name changed.'] = 'Nom de Grup canviat.'; -$a->strings['Create a group of contacts/friends.'] = 'Crear un grup de contactes/amics.'; -$a->strings['Group removed.'] = 'Grup esborrat.'; -$a->strings['Unable to remove group.'] = 'Incapaç de esborrar Grup.'; -$a->strings['Group Editor'] = 'Editor de Grup:'; -$a->strings['Members'] = 'Membres'; -$a->strings['All Contacts'] = 'Tots els Contactes'; -$a->strings['Group is empty'] = 'El Grup es buit'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Nombre diari de missatges al mur per %s excedit. El missatge ha fallat.'; -$a->strings['No recipient selected.'] = 'No s\'ha seleccionat destinatari.'; -$a->strings['Unable to check your home location.'] = 'Incapaç de comprovar la localització.'; -$a->strings['Message could not be sent.'] = 'El Missatge no ha estat enviat.'; -$a->strings['Message collection failure.'] = 'Ha fallat la recollida del missatge.'; -$a->strings['Message sent.'] = 'Missatge enviat.'; -$a->strings['No recipient.'] = 'Sense destinatari.'; -$a->strings['Send Private Message'] = 'Enviant Missatge Privat'; -$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'si vols respondre a %s, comprova que els ajustos de privacitat del lloc permeten correus privats de remitents desconeguts.'; -$a->strings['To:'] = 'Per a:'; -$a->strings['Subject:'] = 'Assumpte::'; -$a->strings['link'] = 'enllaç'; -$a->strings['Authorize application connection'] = 'Autoritzi la connexió de aplicacions'; -$a->strings['Return to your app and insert this Securty Code:'] = 'Torni a la seva aplicació i inserti aquest Codi de Seguretat:'; -$a->strings['Please login to continue.'] = 'Per favor, accedeixi per a continuar.'; -$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Vol autoritzar a aquesta aplicació per accedir als teus missatges i contactes, i/o crear nous enviaments per a vostè?'; -$a->strings['No'] = 'No'; -$a->strings['Source (bbcode) text:'] = 'Text Codi (bbcode): '; -$a->strings['Source (Diaspora) text to convert to BBcode:'] = 'Font (Diaspora) Convertir text a BBcode'; -$a->strings['Source input: '] = 'Entrada de Codi:'; -$a->strings['bb2html (raw HTML): '] = 'bb2html (raw HTML): '; -$a->strings['bb2html: '] = 'bb2html: '; -$a->strings['bb2html2bb: '] = 'bb2html2bb: '; -$a->strings['bb2md: '] = 'bb2md: '; -$a->strings['bb2md2html: '] = 'bb2md2html: '; -$a->strings['bb2dia2bb: '] = 'bb2dia2bb: '; -$a->strings['bb2md2html2bb: '] = 'bb2md2html2bb: '; -$a->strings['Source input (Diaspora format): '] = 'Font d\'entrada (format de Diaspora)'; -$a->strings['diaspora2bb: '] = 'diaspora2bb: '; -$a->strings['%1$s welcomes %2$s'] = '%1$s benvingut %2$s'; -$a->strings['Unable to locate contact information.'] = 'No es pot trobar informació de contacte.'; -$a->strings['Do you really want to delete this message?'] = 'Realment vols esborrar aquest missatge?'; -$a->strings['Message deleted.'] = 'Missatge eliminat.'; -$a->strings['Conversation removed.'] = 'Conversació esborrada.'; -$a->strings['No messages.'] = 'Sense missatges.'; -$a->strings['Message not available.'] = 'Missatge no disponible.'; -$a->strings['Delete message'] = 'Esborra missatge'; -$a->strings['Delete conversation'] = 'Esborrar conversació'; -$a->strings['No secure communications available. You may be able to respond from the sender\'s profile page.'] = 'Comunicacions degures no disponibles. Tú pots respondre des de la pàgina de perfil del remitent.'; -$a->strings['Send Reply'] = 'Enviar Resposta'; -$a->strings['Unknown sender - %s'] = 'remitent desconegut - %s'; -$a->strings['You and %s'] = 'Tu i %s'; -$a->strings['%s and You'] = '%s i Tu'; -$a->strings['D, d M Y - g:i A'] = 'D, d M Y - g:i A'; -$a->strings['%d message'] = [ - 0 => '%d missatge', - 1 => '%d missatges', -]; -$a->strings['Manage Identities and/or Pages'] = 'Administrar Identitats i/o Pàgines'; -$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Alternar entre les diferents identitats o les pàgines de comunitats/grups que comparteixen les dades del seu compte o que se li ha concedit els permisos de "administrar"'; -$a->strings['Select an identity to manage: '] = 'Seleccionar identitat a administrar:'; -$a->strings['Contact settings applied.'] = 'Ajustos de Contacte aplicats.'; -$a->strings['Contact update failed.'] = 'Fracassà l\'actualització de Contacte'; -$a->strings['Contact not found.'] = 'Contacte no trobat'; -$a->strings['WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working.'] = 'ADVERTÈNCIA: Això és molt avançat i si s\'introdueix informació incorrecta la seva comunicació amb aquest contacte pot deixar de funcionar.'; -$a->strings['Please use your browser \'Back\' button now if you are uncertain what to do on this page.'] = 'Si us plau, prem el botó \'Tornar\' ara si no saps segur que has de fer aqui.'; -$a->strings['Return to contact editor'] = 'Tornar al editor de contactes'; -$a->strings['Name'] = 'Nom'; -$a->strings['Account Nickname'] = 'Àlies del Compte'; -$a->strings['@Tagname - overrides Name/Nickname'] = '@Tagname - té prel·lació sobre Nom/Àlies'; -$a->strings['Account URL'] = 'Adreça URL del Compte'; -$a->strings['Friend Request URL'] = 'Adreça URL de sol·licitud d\'Amistat'; -$a->strings['Friend Confirm URL'] = 'Adreça URL de confirmació d\'Amic'; -$a->strings['Notification Endpoint URL'] = 'Adreça URL de Notificació'; -$a->strings['Poll/Feed URL'] = 'Adreça de Enquesta/Alimentador'; -$a->strings['New photo from this URL'] = 'Nova foto d\'aquesta URL'; -$a->strings['No such group'] = 'Cap grup com'; -$a->strings['This entry was edited'] = 'L\'entrada fou editada'; -$a->strings['%d comment'] = [ - 0 => '%d comentari', - 1 => '%d comentaris', -]; -$a->strings['Private Message'] = 'Missatge Privat'; -$a->strings['I like this (toggle)'] = 'M\'agrada això (canviar)'; -$a->strings['like'] = 'Agrada'; -$a->strings['I don\'t like this (toggle)'] = 'No m\'agrada això (canviar)'; -$a->strings['dislike'] = 'Desagrada'; -$a->strings['Share this'] = 'Compartir això'; -$a->strings['share'] = 'Compartir'; -$a->strings['This is you'] = 'Aquest ets tu'; -$a->strings['Comment'] = 'Comentari'; -$a->strings['Bold'] = 'Negreta'; -$a->strings['Italic'] = 'Itallica'; -$a->strings['Underline'] = 'Subratllat'; -$a->strings['Quote'] = 'Cometes'; -$a->strings['Code'] = 'Codi'; -$a->strings['Image'] = 'Imatge'; -$a->strings['Link'] = 'Enllaç'; -$a->strings['Video'] = 'Video'; -$a->strings['Edit'] = 'Editar'; -$a->strings['add star'] = 'Afegir a favorits'; -$a->strings['remove star'] = 'Esborrar favorit'; -$a->strings['toggle star status'] = 'Canviar estatus de favorit'; -$a->strings['starred'] = 'favorit'; -$a->strings['add tag'] = 'afegir etiqueta'; -$a->strings['save to folder'] = 'guardat a la carpeta'; -$a->strings['to'] = 'a'; -$a->strings['Wall-to-Wall'] = 'Mur-a-Mur'; -$a->strings['via Wall-To-Wall:'] = 'via Mur-a-Mur'; -$a->strings['Friend suggestion sent.'] = 'Enviat suggeriment d\'amic.'; -$a->strings['Suggest Friends'] = 'Suggerir Amics'; -$a->strings['Suggest a friend for %s'] = 'Suggerir un amic per a %s'; -$a->strings['Mood'] = 'Humor'; -$a->strings['Set your current mood and tell your friends'] = 'Ajusta el teu actual estat d\'ànim i comenta-ho als amics'; -$a->strings['Poke/Prod'] = 'Atia/Punxa'; -$a->strings['poke, prod or do other things to somebody'] = 'Atiar, punxar o fer altres coses a algú'; -$a->strings['Recipient'] = 'Recipient'; -$a->strings['Choose what you wish to do to recipient'] = 'Tria que vols fer amb el contenidor'; -$a->strings['Make this post private'] = 'Fes aquest missatge privat'; -$a->strings['Image uploaded but image cropping failed.'] = 'Imatge pujada però no es va poder retallar.'; -$a->strings['Image size reduction [%s] failed.'] = 'La reducció de la imatge [%s] va fracassar.'; -$a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Recarregui la pàgina o netegi la caché del navegador si la nova foto no apareix immediatament.'; -$a->strings['Unable to process image'] = 'No es pot processar la imatge'; -$a->strings['Unable to process image.'] = 'Incapaç de processar la imatge.'; -$a->strings['Upload File:'] = 'Pujar arxiu:'; -$a->strings['Select a profile:'] = 'Tria un perfil:'; -$a->strings['Upload'] = 'Pujar'; -$a->strings['or'] = 'o'; -$a->strings['skip this step'] = 'saltar aquest pas'; -$a->strings['select a photo from your photo albums'] = 'tria una foto dels teus àlbums'; -$a->strings['Crop Image'] = 'retallar imatge'; -$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Per favor, ajusta la retallada d\'imatge per a una optima visualització.'; -$a->strings['Done Editing'] = 'Edició Feta'; -$a->strings['Image uploaded successfully.'] = 'Carregada de la imatge amb èxit.'; -$a->strings['Image upload failed.'] = 'Actualització de la imatge fracassada.'; -$a->strings['Account approved.'] = 'Compte aprovat.'; -$a->strings['Registration revoked for %s'] = 'Procés de Registre revocat per a %s'; -$a->strings['Please login.'] = 'Si us plau, ingressa.'; -$a->strings['Invalid request identifier.'] = 'Sol·licitud d\'identificació no vàlida.'; -$a->strings['Discard'] = 'Descartar'; -$a->strings['Ignore'] = 'Ignorar'; -$a->strings['Network Notifications'] = 'Notificacions de la Xarxa'; -$a->strings['Personal Notifications'] = 'Notificacions Personals'; -$a->strings['Home Notifications'] = 'Notificacions d\'Inici'; -$a->strings['Show Ignored Requests'] = 'Mostra les Sol·licituds Ignorades'; -$a->strings['Hide Ignored Requests'] = 'Amaga les Sol·licituds Ignorades'; -$a->strings['Notification type: '] = 'Tipus de Notificació:'; -$a->strings['suggested by %s'] = 'sugerit per %s'; -$a->strings['Hide this contact from others'] = 'Amaga aquest contacte dels altres'; -$a->strings['Post a new friend activity'] = 'Publica una activitat d\'amic nova'; -$a->strings['if applicable'] = 'si es pot aplicar'; -$a->strings['Approve'] = 'Aprovar'; -$a->strings['Claims to be known to you: '] = 'Diu que et coneix:'; -$a->strings['yes'] = 'sí'; -$a->strings['no'] = 'no'; -$a->strings['Friend'] = 'Amic'; -$a->strings['Sharer'] = 'Partícip'; -$a->strings['Fan/Admirer'] = 'Fan/Admirador'; -$a->strings['No introductions.'] = 'Sense presentacions.'; -$a->strings['Profile not found.'] = 'Perfil no trobat.'; -$a->strings['Profile deleted.'] = 'Perfil esborrat.'; -$a->strings['Profile-'] = 'Perfil-'; -$a->strings['New profile created.'] = 'Nou perfil creat.'; -$a->strings['Profile unavailable to clone.'] = 'No es pot clonar el perfil.'; -$a->strings['Profile Name is required.'] = 'Nom de perfil requerit.'; -$a->strings['Marital Status'] = 'Estatus Marital'; -$a->strings['Romantic Partner'] = 'Soci Romàntic'; -$a->strings['Work/Employment'] = 'Treball/Ocupació'; -$a->strings['Religion'] = 'Religió'; -$a->strings['Political Views'] = 'Idees Polítiques'; -$a->strings['Gender'] = 'Gènere'; -$a->strings['Sexual Preference'] = 'Preferència sexual'; -$a->strings['Homepage'] = 'Inici'; -$a->strings['Interests'] = 'Interesos'; -$a->strings['Address'] = 'Adreça'; -$a->strings['Location'] = 'Ubicació'; -$a->strings['Profile updated.'] = 'Perfil actualitzat.'; -$a->strings[' and '] = ' i '; -$a->strings['public profile'] = 'perfil públic'; -$a->strings['%1$s changed %2$s to “%3$s”'] = '%1$s s\'ha canviat de %2$s a “%3$s”'; -$a->strings[' - Visit %1$s\'s %2$s'] = ' - Visita %1$s de %2$s'; -$a->strings['%1$s has an updated %2$s, changing %3$s.'] = '%1$s te una actualització %2$s, canviant %3$s.'; -$a->strings['Hide your contact/friend list from viewers of this profile?'] = 'Amaga la llista de contactes/amics en la vista d\'aquest perfil?'; -$a->strings['Edit Profile Details'] = 'Editor de Detalls del Perfil'; -$a->strings['Change Profile Photo'] = 'Canviar la Foto del Perfil'; -$a->strings['View this profile'] = 'Veure aquest perfil'; -$a->strings['Create a new profile using these settings'] = 'Crear un nou perfil amb aquests ajustos'; -$a->strings['Clone this profile'] = 'Clonar aquest perfil'; -$a->strings['Delete this profile'] = 'Esborrar aquest perfil'; -$a->strings['Your Gender:'] = 'Gènere:'; -$a->strings[' Marital Status:'] = ' Estat Civil:'; -$a->strings['Example: fishing photography software'] = 'Exemple: pesca fotografia programari'; -$a->strings['Profile Name:'] = 'Nom de Perfil:'; -$a->strings['Required'] = 'Requerit'; -$a->strings['This is your public profile.
    It may be visible to anybody using the internet.'] = 'Aquest és el teu perfil públic.
    El qual pot ser visible per qualsevol qui faci servir Internet.'; -$a->strings['Your Full Name:'] = 'El Teu Nom Complet.'; -$a->strings['Title/Description:'] = 'Títol/Descripció:'; -$a->strings['Street Address:'] = 'Direcció:'; -$a->strings['Locality/City:'] = 'Localitat/Ciutat:'; -$a->strings['Region/State:'] = 'Regió/Estat:'; -$a->strings['Postal/Zip Code:'] = 'Codi Postal:'; -$a->strings['Country:'] = 'País'; -$a->strings['Who: (if applicable)'] = 'Qui? (si és aplicable)'; -$a->strings['Examples: cathy123, Cathy Williams, cathy@example.com'] = 'Exemples: cathy123, Cathy Williams, cathy@example.com'; -$a->strings['Since [date]:'] = 'Des de [data]'; -$a->strings['Tell us about yourself...'] = 'Parla\'ns de tú.....'; -$a->strings['Homepage URL:'] = 'Pàgina web URL:'; -$a->strings['Religious Views:'] = 'Creencies Religioses:'; -$a->strings['Public Keywords:'] = 'Paraules Clau Públiques'; -$a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Emprat per suggerir potencials amics, Altres poden veure-ho)'; -$a->strings['Private Keywords:'] = 'Paraules Clau Privades:'; -$a->strings['(Used for searching profiles, never shown to others)'] = '(Emprat durant la cerca de perfils, mai mostrat a ningú)'; -$a->strings['Musical interests'] = 'Gustos musicals'; -$a->strings['Books, literature'] = 'Llibres, Literatura'; -$a->strings['Television'] = 'Televisió'; -$a->strings['Film/dance/culture/entertainment'] = 'Cinema/ball/cultura/entreteniments'; -$a->strings['Hobbies/Interests'] = 'Aficions/Interessos'; -$a->strings['Love/romance'] = 'Amor/sentiments'; -$a->strings['Work/employment'] = 'Treball/ocupació'; -$a->strings['School/education'] = 'Ensenyament/estudis'; -$a->strings['Contact information and Social Networks'] = 'Informació de contacte i Xarxes Socials'; -$a->strings['Edit/Manage Profiles'] = 'Editar/Gestionar Perfils'; -$a->strings['No friends to display.'] = 'No hi ha amics que mostrar'; -$a->strings['Access to this profile has been restricted.'] = 'L\'accés a aquest perfil ha estat restringit.'; -$a->strings['Previous'] = 'Previ'; -$a->strings['Next'] = 'Següent'; -$a->strings['No contacts in common.'] = 'Sense contactes en comú.'; -$a->strings['Common Friends'] = 'Amics Comuns'; -$a->strings['Not available.'] = 'No disponible.'; -$a->strings['Global Directory'] = 'Directori Global'; -$a->strings['Find on this site'] = 'Trobat en aquest lloc'; -$a->strings['Site Directory'] = 'Directori Local'; -$a->strings['No entries (some entries may be hidden).'] = 'No hi ha entrades (algunes de les entrades poden estar amagades).'; -$a->strings['No matches'] = 'No hi ha coincidències'; -$a->strings['Item has been removed.'] = 'El element ha estat esborrat.'; -$a->strings['Event title and start time are required.'] = 'Títol d\'esdeveniment i hora d\'inici requerits.'; -$a->strings['Create New Event'] = 'Crear un nou esdeveniment'; -$a->strings['Event details'] = 'Detalls del esdeveniment'; -$a->strings['Event Starts:'] = 'Inici d\'Esdeveniment:'; -$a->strings['Finish date/time is not known or not relevant'] = 'La data/hora de finalització no es coneixen o no són relevants'; -$a->strings['Event Finishes:'] = 'L\'esdeveniment Finalitza:'; -$a->strings['Adjust for viewer timezone'] = 'Ajustar a la zona horaria de l\'espectador'; -$a->strings['Description:'] = 'Descripció:'; -$a->strings['Title:'] = 'Títol:'; -$a->strings['Share this event'] = 'Compartir aquest esdeveniment'; -$a->strings['System down for maintenance'] = 'Sistema apagat per manteniment'; -$a->strings['No keywords to match. Please add keywords to your default profile.'] = 'No hi ha paraules clau que coincideixin. Si us plau, afegeixi paraules clau al teu perfil predeterminat.'; -$a->strings['is interested in:'] = 'està interessat en:'; -$a->strings['Profile Match'] = 'Perfil Aconseguit'; -$a->strings['Tips for New Members'] = 'Consells per a nous membres'; -$a->strings['Do you really want to delete this suggestion?'] = 'Realment vols esborrar aquest suggeriment?'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Cap suggeriment disponible. Si això és un nou lloc, si us plau torna a intentar en 24 hores.'; -$a->strings['Ignore/Hide'] = 'Ignorar/Amagar'; -$a->strings['[Embedded content - reload page to view]'] = '[Contingut embegut - recarrega la pàgina per a veure-ho]'; -$a->strings['Recent Photos'] = 'Fotos Recents'; -$a->strings['Upload New Photos'] = 'Actualitzar Noves Fotos'; -$a->strings['everybody'] = 'tothom'; -$a->strings['Contact information unavailable'] = 'Informació del Contacte no disponible'; -$a->strings['Album not found.'] = 'Àlbum no trobat.'; -$a->strings['Delete Album'] = 'Eliminar Àlbum'; -$a->strings['Do you really want to delete this photo album and all its photos?'] = 'Realment vols esborrar aquest album de fotos amb totes les fotos?'; -$a->strings['Delete Photo'] = 'Eliminar Foto'; -$a->strings['Do you really want to delete this photo?'] = 'Realment vols esborrar aquesta foto?'; -$a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s fou etiquetat a %2$s per %3$s'; -$a->strings['a photo'] = 'una foto'; -$a->strings['Image file is empty.'] = 'El fitxer de imatge és buit.'; -$a->strings['No photos selected'] = 'No s\'han seleccionat fotos'; -$a->strings['Access to this item is restricted.'] = 'L\'accés a aquest element està restringit.'; -$a->strings['You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage.'] = 'Has emprat %1$.2f Mbytes de %2$.2f Mbytes del magatzem de fotos.'; -$a->strings['Upload Photos'] = 'Carregar Fotos'; -$a->strings['New album name: '] = 'Nou nom d\'àlbum:'; -$a->strings['or existing album name: '] = 'o nom d\'àlbum existent:'; -$a->strings['Do not show a status post for this upload'] = 'No tornis a mostrar un missatge d\'estat d\'aquesta pujada'; -$a->strings['Show to Groups'] = 'Mostrar en Grups'; -$a->strings['Show to Contacts'] = 'Mostrar a Contactes'; -$a->strings['Private Photo'] = 'Foto Privada'; -$a->strings['Public Photo'] = 'Foto Pública'; -$a->strings['Edit Album'] = 'Editar Àlbum'; -$a->strings['Show Newest First'] = 'Mostrar el més Nou Primer'; -$a->strings['Show Oldest First'] = 'Mostrar el més Antic Primer'; -$a->strings['View Photo'] = 'Veure Foto'; -$a->strings['Permission denied. Access to this item may be restricted.'] = 'Permís denegat. L\'accés a aquest element pot estar restringit.'; -$a->strings['Photo not available'] = 'Foto no disponible'; -$a->strings['View photo'] = 'Veure foto'; -$a->strings['Edit photo'] = 'Editar foto'; -$a->strings['Use as profile photo'] = 'Emprar com a foto del perfil'; -$a->strings['View Full Size'] = 'Veure\'l a Mida Completa'; -$a->strings['Tags: '] = 'Etiquetes:'; -$a->strings['[Remove any tag]'] = 'Treure etiquetes'; -$a->strings['New album name'] = 'Nou nom d\'àlbum'; -$a->strings['Caption'] = 'Títol'; -$a->strings['Add a Tag'] = 'Afegir una etiqueta'; -$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Exemple: @bob, @Barbara_jensen, @jim@example.com, #California, #camping'; -$a->strings['Rotate CW (right)'] = 'Rotar CW (dreta)'; -$a->strings['Rotate CCW (left)'] = 'Rotar CCW (esquerra)'; -$a->strings['Private photo'] = 'Foto Privada'; -$a->strings['Public photo'] = 'Foto pública'; -$a->strings['View Album'] = 'Veure Àlbum'; -$a->strings['Registration successful. Please check your email for further instructions.'] = 'Registrat amb èxit. Per favor, comprovi el seu correu per a posteriors instruccions.'; -$a->strings['Your registration can not be processed.'] = 'El seu registre no pot ser processat.'; -$a->strings['Your registration is pending approval by the site owner.'] = 'El seu registre està pendent d\'aprovació pel propietari del lloc.'; -$a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \'Register\'.'] = 'Vostè pot (opcionalment), omplir aquest formulari a través de OpenID mitjançant el subministrament de la seva OpenID i fent clic a \'Registrar\'.'; -$a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Si vostè no està familiaritzat amb Twitter, si us plau deixi aquest camp en blanc i completi la resta dels elements.'; -$a->strings['Your OpenID (optional): '] = 'El seu OpenID (opcional):'; -$a->strings['Include your profile in member directory?'] = 'Incloc el seu perfil al directori de membres?'; -$a->strings['Membership on this site is by invitation only.'] = 'Lloc accesible mitjançant invitació.'; -$a->strings['Your invitation ID: '] = 'El teu ID de invitació:'; -$a->strings['Registration'] = 'Procés de Registre'; -$a->strings['Your Email Address: '] = 'La Seva Adreça de Correu:'; -$a->strings['New Password:'] = 'Nova Contrasenya:'; -$a->strings['Confirm:'] = 'Confirmar:'; -$a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'nickname@$sitename\'.'] = 'Tria un nom de perfil. Això ha de començar amb un caràcter de text. La seva adreça de perfil en aquest lloc serà \'alies@$sitename\'.'; -$a->strings['Choose a nickname: '] = 'Tria un àlies:'; -$a->strings['Account'] = 'Compte'; -$a->strings['Additional features'] = 'Característiques Adicionals'; -$a->strings['Plugins'] = 'Plugins'; -$a->strings['Connected apps'] = 'App connectada'; -$a->strings['Remove account'] = 'Esborrar compte'; -$a->strings['Missing some important data!'] = 'Perdudes algunes dades importants!'; -$a->strings['Update'] = 'Actualitzar'; -$a->strings['Failed to connect with email account using the settings provided.'] = 'Connexió fracassada amb el compte de correu emprant la configuració proveïda.'; -$a->strings['Email settings updated.'] = 'Configuració del correu electrònic actualitzada.'; -$a->strings['Features updated'] = 'Característiques actualitzades'; -$a->strings['Empty passwords are not allowed. Password unchanged.'] = 'No es permeten contasenyes buides. Contrasenya no canviada'; -$a->strings['Wrong password.'] = 'Contrasenya errònia'; -$a->strings['Password changed.'] = 'Contrasenya canviada.'; -$a->strings['Password update failed. Please try again.'] = 'Ha fallat l\'actualització de la Contrasenya. Per favor, intenti-ho de nou.'; -$a->strings[' Please use a shorter name.'] = 'Si us plau, faci servir un nom més curt.'; -$a->strings[' Name too short.'] = 'Nom massa curt.'; -$a->strings['Wrong Password'] = 'Contrasenya Errònia'; -$a->strings[' Not valid email.'] = 'Correu no vàlid.'; -$a->strings[' Cannot change to that email.'] = 'No puc canviar a aquest correu.'; -$a->strings['Private forum has no privacy permissions. Using default privacy group.'] = 'Els Fòrums privats no tenen permisos de privacitat. Empra la privacitat de grup per defecte.'; -$a->strings['Private forum has no privacy permissions and no default privacy group.'] = 'Els Fòrums privats no tenen permisos de privacitat i tampoc privacitat per defecte de grup.'; -$a->strings['Settings updated.'] = 'Ajustos actualitzats.'; -$a->strings['Add application'] = 'Afegir aplicació'; -$a->strings['Consumer Key'] = 'Consumer Key'; -$a->strings['Consumer Secret'] = 'Consumer Secret'; -$a->strings['Redirect'] = 'Redirigir'; -$a->strings['Icon url'] = 'icona de url'; -$a->strings['You can\'t edit this application.'] = 'No pots editar aquesta aplicació.'; -$a->strings['Connected Apps'] = 'Aplicacions conectades'; -$a->strings['Client key starts with'] = 'Les claus de client comançen amb'; -$a->strings['No name'] = 'Sense nom'; -$a->strings['Remove authorization'] = 'retirar l\'autorització'; -$a->strings['No Plugin settings configured'] = 'No s\'han configurat ajustos de Plugin'; -$a->strings['Plugin Settings'] = 'Ajustos de Plugin'; -$a->strings['Off'] = 'Apagat'; -$a->strings['On'] = 'Engegat'; -$a->strings['Additional Features'] = 'Característiques Adicionals'; -$a->strings['Built-in support for %s connectivity is %s'] = 'El suport integrat per a la connectivitat de %s és %s'; -$a->strings['enabled'] = 'habilitat'; -$a->strings['disabled'] = 'deshabilitat'; -$a->strings['Email access is disabled on this site.'] = 'L\'accés al correu està deshabilitat en aquest lloc.'; -$a->strings['Email/Mailbox Setup'] = 'Preparació de Correu/Bústia'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Si vol comunicar-se amb els contactes de correu emprant aquest servei (opcional), Si us plau, especifiqui com connectar amb la seva bústia.'; -$a->strings['Last successful email check:'] = 'Última comprovació de correu amb èxit:'; -$a->strings['IMAP server name:'] = 'Nom del servidor IMAP:'; -$a->strings['IMAP port:'] = 'Port IMAP:'; -$a->strings['Security:'] = 'Seguretat:'; -$a->strings['None'] = 'Cap'; -$a->strings['Email login name:'] = 'Nom d\'usuari del correu'; -$a->strings['Email password:'] = 'Contrasenya del correu:'; -$a->strings['Reply-to address:'] = 'Adreça de resposta:'; -$a->strings['Send public posts to all email contacts:'] = 'Enviar correu públic a tots els contactes del correu:'; -$a->strings['Action after import:'] = 'Acció després d\'importar:'; -$a->strings['Move to folder'] = 'Moure a la carpeta'; -$a->strings['Move to folder:'] = 'Moure a la carpeta:'; -$a->strings['No special theme for mobile devices'] = 'No hi ha un tema específic per a mòbil'; -$a->strings['Display Settings'] = 'Ajustos de Pantalla'; -$a->strings['Display Theme:'] = 'Visualitzar el Tema:'; -$a->strings['Mobile Theme:'] = 'Tema Mobile:'; -$a->strings['Update browser every xx seconds'] = 'Actualitzar navegador cada xx segons'; -$a->strings['Number of items to display per page:'] = 'Número d\'elements a mostrar per pàgina'; -$a->strings['Maximum of 100 items'] = 'Màxim de 100 elements'; -$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Nombre d\'elements a veure per pàgina quan es vegin des d\'un dispositiu mòbil:'; -$a->strings['Don\'t show emoticons'] = 'No mostrar emoticons'; -$a->strings['Theme settings'] = 'Configuració de Temes'; -$a->strings['Normal Account Page'] = 'Pàgina Normal del Compte '; -$a->strings['This account is a normal personal profile'] = 'Aques compte es un compte personal normal'; -$a->strings['Soapbox Page'] = 'Pàgina de Soapbox'; -$a->strings['Automatically approve all connection/friend requests as read-only fans'] = 'Aprova automàticament totes les sol·licituds de amistat/connexió com a fans de només lectura.'; -$a->strings['Automatic Friend Page'] = 'Compte d\'Amistat Automàtica'; -$a->strings['Automatically approve all connection/friend requests as friends'] = 'Aprova totes les sol·licituds de amistat/connexió com a amic automàticament'; -$a->strings['Private Forum [Experimental]'] = 'Fòrum Privat [Experimental]'; -$a->strings['Private forum - approved members only'] = 'Fòrum privat - Només membres aprovats'; -$a->strings['OpenID:'] = 'OpenID:'; -$a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Opcional) Permetre a aquest OpenID iniciar sessió en aquest compte.'; -$a->strings['Publish your default profile in your local site directory?'] = 'Publicar el teu perfil predeterminat en el directori del lloc local?'; -$a->strings['Publish your default profile in the global social directory?'] = 'Publicar el teu perfil predeterminat al directori social global?'; -$a->strings['Hide your contact/friend list from viewers of your default profile?'] = 'Amaga la teva llista de contactes/amics dels espectadors del seu perfil per defecte?'; -$a->strings['Allow friends to post to your profile page?'] = 'Permet als amics publicar en la seva pàgina de perfil?'; -$a->strings['Allow friends to tag your posts?'] = 'Permet als amics d\'etiquetar els teus missatges?'; -$a->strings['Allow us to suggest you as a potential friend to new members?'] = 'Permeteu-nos suggerir-li com un amic potencial dels nous membres?'; -$a->strings['Permit unknown people to send you private mail?'] = 'Permetre a desconeguts enviar missatges al teu correu privat?'; -$a->strings['Profile is not published.'] = 'El Perfil no està publicat.'; -$a->strings['Automatically expire posts after this many days:'] = 'Després de aquests nombre de dies, els missatges caduquen automàticament:'; -$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Si està buit, els missatges no caducarà. Missatges caducats s\'eliminaran'; -$a->strings['Advanced expiration settings'] = 'Configuració avançada d\'expiració'; -$a->strings['Advanced Expiration'] = 'Expiració Avançada'; -$a->strings['Expire posts:'] = 'Expiració d\'enviaments'; -$a->strings['Expire personal notes:'] = 'Expiració de notes personals'; -$a->strings['Expire starred posts:'] = 'Expiració de enviaments de favorits'; -$a->strings['Expire photos:'] = 'Expiració de fotos'; -$a->strings['Only expire posts by others:'] = 'Només expiren els enviaments dels altres:'; -$a->strings['Account Settings'] = 'Ajustos de Compte'; -$a->strings['Password Settings'] = 'Ajustos de Contrasenya'; -$a->strings['Leave password fields blank unless changing'] = 'Deixi els camps de contrasenya buits per a no fer canvis'; -$a->strings['Current Password:'] = 'Contrasenya Actual:'; -$a->strings['Your current password to confirm the changes'] = 'La teva actual contrasenya a fi de confirmar els canvis'; -$a->strings['Password:'] = 'Contrasenya:'; -$a->strings['Basic Settings'] = 'Ajustos Basics'; -$a->strings['Email Address:'] = 'Adreça de Correu:'; -$a->strings['Your Timezone:'] = 'La teva zona Horària:'; -$a->strings['Default Post Location:'] = 'Localització per Defecte del Missatge:'; -$a->strings['Use Browser Location:'] = 'Ubicar-se amb el Navegador:'; -$a->strings['Security and Privacy Settings'] = 'Ajustos de Seguretat i Privacitat'; -$a->strings['Maximum Friend Requests/Day:'] = 'Nombre Màxim de Sol·licituds per Dia'; -$a->strings['(to prevent spam abuse)'] = '(per a prevenir abusos de spam)'; -$a->strings['Default Post Permissions'] = 'Permisos de Correu per Defecte'; -$a->strings['(click to open/close)'] = '(clicar per a obrir/tancar)'; -$a->strings['Default Private Post'] = 'Missatges Privats Per Defecte'; -$a->strings['Default Public Post'] = 'Missatges Públics Per Defecte'; -$a->strings['Default Permissions for New Posts'] = 'Permisos Per Defecte per a Nous Missatges'; -$a->strings['Maximum private messages per day from unknown people:'] = 'Màxim nombre de missatges, per dia, de desconeguts:'; -$a->strings['Notification Settings'] = 'Ajustos de Notificació'; -$a->strings['By default post a status message when:'] = 'Enviar per defecte un missatge de estatus quan:'; -$a->strings['accepting a friend request'] = 'Acceptar una sol·licitud d\'amistat'; -$a->strings['joining a forum/community'] = 'Unint-se a un fòrum/comunitat'; -$a->strings['making an interesting profile change'] = 'fent un canvi al perfil'; -$a->strings['Send a notification email when:'] = 'Envia un correu notificant quan:'; -$a->strings['You receive an introduction'] = 'Has rebut una presentació'; -$a->strings['Your introductions are confirmed'] = 'La teva presentació està confirmada'; -$a->strings['Someone writes on your profile wall'] = 'Algú ha escrit en el teu mur de perfil'; -$a->strings['Someone writes a followup comment'] = 'Algú ha escrit un comentari de seguiment'; -$a->strings['You receive a private message'] = 'Has rebut un missatge privat'; -$a->strings['You receive a friend suggestion'] = 'Has rebut una suggerencia d\'un amic'; -$a->strings['You are tagged in a post'] = 'Estàs etiquetat en un enviament'; -$a->strings['You are poked/prodded/etc. in a post'] = 'Has estat Atiat/punxat/etc, en un enviament'; -$a->strings['Advanced Account/Page Type Settings'] = 'Ajustos Avançats de Compte/ Pàgina'; -$a->strings['Change the behaviour of this account for special situations'] = 'Canviar el comportament d\'aquest compte en situacions especials'; -$a->strings['No videos selected'] = 'No s\'han seleccionat vídeos '; -$a->strings['Recent Videos'] = 'Videos Recents'; -$a->strings['Upload New Videos'] = 'Carrega Nous Videos'; -$a->strings['File upload failed.'] = 'La càrrega de fitxers ha fallat.'; -$a->strings['Theme settings updated.'] = 'Ajustos de Tema actualitzats'; -$a->strings['Site'] = 'Lloc'; -$a->strings['Users'] = 'Usuaris'; -$a->strings['Themes'] = 'Temes'; -$a->strings['DB updates'] = 'Actualitzacions de BD'; -$a->strings['Logs'] = 'Registres'; -$a->strings['Plugin Features'] = 'Característiques del Plugin'; -$a->strings['User registrations waiting for confirmation'] = 'Registre d\'usuari a l\'espera de confirmació'; -$a->strings['Administration'] = 'Administració'; -$a->strings['Normal Account'] = 'Compte Normal'; -$a->strings['Soapbox Account'] = 'Compte Tribuna'; -$a->strings['Community/Celebrity Account'] = 'Compte de Comunitat/Celebritat'; -$a->strings['Automatic Friend Account'] = 'Compte d\'Amistat Automàtic'; -$a->strings['Blog Account'] = 'Compte de Blog'; -$a->strings['Private Forum'] = 'Fòrum Privat'; -$a->strings['Message queues'] = 'Cues de missatges'; -$a->strings['Summary'] = 'Sumari'; -$a->strings['Registered users'] = 'Usuaris registrats'; -$a->strings['Pending registrations'] = 'Registres d\'usuari pendents'; -$a->strings['Version'] = 'Versió'; -$a->strings['Active plugins'] = 'Plugins actius'; -$a->strings['Site settings updated.'] = 'Ajustos del lloc actualitzats.'; -$a->strings['Never'] = 'Mai'; -$a->strings['Multi user instance'] = 'Instancia multiusuari'; -$a->strings['Closed'] = 'Tancat'; -$a->strings['Requires approval'] = 'Requereix aprovació'; -$a->strings['Open'] = 'Obert'; -$a->strings['No SSL policy, links will track page SSL state'] = 'No existe una política de SSL, se hará un seguimiento de los vínculos de la página con SSL'; -$a->strings['Force all links to use SSL'] = 'Forzar a tots els enllaços a utilitzar SSL'; -$a->strings['Self-signed certificate, use SSL for local links only (discouraged)'] = 'Certificat auto-signat, utilitzar SSL només per a enllaços locals (desaconsellat)'; -$a->strings['File upload'] = 'Fitxer carregat'; -$a->strings['Policies'] = 'Polítiques'; -$a->strings['Performance'] = 'Rendiment'; -$a->strings['Site name'] = 'Nom del lloc'; -$a->strings['Banner/Logo'] = 'Senyera/Logo'; -$a->strings['System language'] = 'Idioma del Sistema'; -$a->strings['System theme'] = 'Tema del sistema'; -$a->strings['Default system theme - may be over-ridden by user profiles - change theme settings'] = 'Tema per defecte del sistema - pot ser obviat pels perfils del usuari - Canviar ajustos de tema'; -$a->strings['Mobile system theme'] = 'Tema per a mòbil'; -$a->strings['Theme for mobile devices'] = 'Tema per a aparells mòbils'; -$a->strings['SSL link policy'] = 'Política SSL per als enllaços'; -$a->strings['Determines whether generated links should be forced to use SSL'] = 'Determina si els enllaços generats han de ser forçats a utilitzar SSL'; -$a->strings['Hide help entry from navigation menu'] = 'Amaga l\'entrada d\'ajuda del menu de navegació'; -$a->strings['Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly.'] = 'Amaga l\'entrada del menú de les pàgines d\'ajuda. Pots encara accedir entrant /ajuda directament.'; -$a->strings['Single user instance'] = 'Instancia per a un únic usuari'; -$a->strings['Make this instance multi-user or single-user for the named user'] = 'Fer aquesta instancia multi-usuari o mono-usuari per al usuari anomenat'; -$a->strings['Maximum image size'] = 'Mida màxima de les imatges'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'Mida màxima en bytes de les imatges a pujar. Per defecte es 0, que vol dir sense límits.'; -$a->strings['Maximum image length'] = 'Maxima longitud d\'imatge'; -$a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Longitud màxima en píxels del costat més llarg de la imatge carregada. Per defecte es -1, que significa sense límits'; -$a->strings['JPEG image quality'] = 'Qualitat per a la imatge JPEG'; -$a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = 'Els JPEGs pujats seran guardats amb la qualitat que ajustis de [0-100]. Per defecte es 100 màxima qualitat.'; -$a->strings['Register policy'] = 'Política per a registrar'; -$a->strings['Maximum Daily Registrations'] = 'Registres Màxims Diaris'; -$a->strings['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.'] = 'Si es permet el registre, això ajusta el nombre màxim de nous usuaris a acceptar diariament. Si el registre esta tancat, aquest ajust no te efectes.'; -$a->strings['Register text'] = 'Text al registrar'; -$a->strings['Will be displayed prominently on the registration page.'] = 'Serà mostrat de forma preminent a la pàgina durant el procés de registre.'; -$a->strings['Accounts abandoned after x days'] = 'Comptes abandonats després de x dies'; -$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = 'No gastará recursos del sistema creant enquestes des de llocs externos per a comptes abandonats. Introdueixi 0 per a cap límit temporal.'; -$a->strings['Allowed friend domains'] = 'Dominis amics permesos'; -$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Llista de dominis separada per comes, de adreçes de correu que són permeses per establir amistats. S\'admeten comodins. Deixa\'l buit per a acceptar tots els dominis.'; -$a->strings['Allowed email domains'] = 'Dominis de correu permesos'; -$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Llista de dominis separada per comes, de adreçes de correu que són permeses per registrtar-se. S\'admeten comodins. Deixa\'l buit per a acceptar tots els dominis.'; -$a->strings['Block public'] = 'Bloqueig públic'; -$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Bloqueja l\'accés públic a qualsevol pàgina del lloc fins que t\'hagis identificat.'; -$a->strings['Force publish'] = 'Forçar publicació'; -$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Obliga a que tots el perfils en aquest lloc siguin mostrats en el directori del lloc.'; -$a->strings['Allow threaded items'] = 'Permetre fils als articles'; -$a->strings['Allow infinite level threading for items on this site.'] = 'Permet un nivell infinit de fils per a articles en aquest lloc.'; -$a->strings['Private posts by default for new users'] = 'Els enviaments dels nous usuaris seran privats per defecte.'; -$a->strings['Set default post permissions for all new members to the default privacy group rather than public.'] = 'Canviar els permisos d\'enviament per defecte per a tots els nous membres a grup privat en lloc de públic.'; -$a->strings['Don\'t include post content in email notifications'] = 'No incloure el assumpte a les notificacions per correu electrónic'; -$a->strings['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.'] = 'No incloure assumpte d\'un enviament/comentari/missatge_privat/etc. Als correus electronics que envii fora d\'aquest lloc, com a mesura de privacitat. '; -$a->strings['Disallow public access to addons listed in the apps menu.'] = 'Deshabilita el accés públic als complements llistats al menu d\'aplicacions'; -$a->strings['Checking this box will restrict addons listed in the apps menu to members only.'] = 'Marcant això restringiras els complements llistats al menú d\'aplicacions al membres'; -$a->strings['Don\'t embed private images in posts'] = 'No incrustar imatges en missatges privats'; -$a->strings['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.'] = 'No reemplaçar les fotos privades hospedades localment en missatges amb una còpia de l\'imatge embeguda. Això vol dir que els contactes que rebin el missatge contenint fotos privades s\'ha d\'autenticar i carregar cada imatge, amb el que pot suposar bastant temps.'; -$a->strings['Block multiple registrations'] = 'Bloquejar multiples registracions'; -$a->strings['Disallow users to register additional accounts for use as pages.'] = 'Inhabilita als usuaris el crear comptes adicionals per a usar com a pàgines.'; -$a->strings['OpenID support'] = 'Suport per a OpenID'; -$a->strings['OpenID support for registration and logins.'] = 'Suport per a registre i validació a OpenID.'; -$a->strings['Fullname check'] = 'Comprobació de nom complet'; -$a->strings['Force users to register with a space between firstname and lastname in Full name, as an antispam measure'] = 'Obliga els usuaris a col·locar un espai en blanc entre nom i cognoms, com a mesura antispam'; -$a->strings['UTF-8 Regular expressions'] = 'expresions regulars UTF-8'; -$a->strings['Use PHP UTF8 regular expressions'] = 'Empri expresions regulars de PHP amb format UTF8'; -$a->strings['Enable OStatus support'] = 'Activa el suport per a OStatus'; -$a->strings['OStatus conversation completion interval'] = 'Interval de conclusió de la conversació a OStatus'; -$a->strings['How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task.'] = 'Com de sovint el sondejador ha de comprovar les noves conversacions entrades a OStatus? Això pot implicar una gran càrrega de treball.'; -$a->strings['Enable Diaspora support'] = 'Habilitar suport per Diaspora'; -$a->strings['Provide built-in Diaspora network compatibility.'] = 'Proveeix compatibilitat integrada amb la xarxa Diaspora'; -$a->strings['Only allow Friendica contacts'] = 'Només permetre contactes de Friendica'; -$a->strings['All contacts must use Friendica protocols. All other built-in communication protocols disabled.'] = 'Tots els contactes '; -$a->strings['Verify SSL'] = 'Verificar SSL'; -$a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = 'Si ho vols, pots comprovar el certificat estrictament. Això farà que no puguis connectar (de cap manera) amb llocs amb certificats SSL autosignats.'; -$a->strings['Proxy user'] = 'proxy d\'usuari'; -$a->strings['Proxy URL'] = 'URL del proxy'; -$a->strings['Network timeout'] = 'Temps excedit a la xarxa'; -$a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Valor en segons. Canviat a 0 es sense límits (no recomenat)'; -$a->strings['Delivery interval'] = 'Interval d\'entrega'; -$a->strings['Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers.'] = 'Retardar processos d\'entrega, en segon pla, en aquesta quantitat de segons, per reduir la càrrega del sistema . Recomanem : 4-5 per als servidors compartits , 2-3 per a servidors privats virtuals . 0-1 per els grans servidors dedicats.'; -$a->strings['Poll interval'] = 'Interval entre sondejos'; -$a->strings['Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval.'] = 'Endarrerir els processos de sondeig en segon pla durant aquest període, en segons, per tal de reduir la càrrega de treball del sistema, Si s\'empra 0, s\'utilitza l\'interval d\'entregues. '; -$a->strings['Maximum Load Average'] = 'Càrrega Màxima Sostinguda'; -$a->strings['Maximum system load before delivery and poll processes are deferred - default 50.'] = 'Càrrega màxima del sistema abans d\'apaçar els processos d\'entrega i sondeig - predeterminat a 50.'; -$a->strings['Use MySQL full text engine'] = 'Emprar el motor de text complet de MySQL'; -$a->strings['Activates the full text engine. Speeds up search - but can only search for four and more characters.'] = 'Activa el motos de text complet. Accelera les cerques pero només pot cercar per quatre o més caracters.'; -$a->strings['Path to item cache'] = 'Camí cap a la caché de l\'article'; -$a->strings['Cache duration in seconds'] = 'Duració de la caché en segons'; -$a->strings['Path for lock file'] = 'Camí per a l\'arxiu bloquejat'; -$a->strings['Temp path'] = 'Camí a carpeta temporal'; -$a->strings['Base path to installation'] = 'Trajectoria base per a instal·lar'; -$a->strings['Update has been marked successful'] = 'L\'actualització ha estat marcada amb èxit'; -$a->strings['Update %s was successfully applied.'] = 'L\'actualització de %s es va aplicar amb èxit.'; -$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'L\'actualització de %s no ha retornat el seu estatus. Es desconeix si ha estat amb èxit.'; -$a->strings['No failed updates.'] = 'No hi ha actualitzacions fallides.'; -$a->strings['Failed Updates'] = 'Actualitzacions Fallides'; -$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Això no inclou actualitzacions anteriors a 1139, raó per la que no ha retornat l\'estatus.'; -$a->strings['Mark success (if update was manually applied)'] = 'Marcat am èxit (si l\'actualització es va fer manualment)'; -$a->strings['Attempt to execute this update step automatically'] = 'Intentant executar aquest pas d\'actualització automàticament'; -$a->strings['%s user blocked/unblocked'] = [ - 0 => '%s usuari bloquejar/desbloquejar', - 1 => '%s usuaris bloquejar/desbloquejar', -]; -$a->strings['%s user deleted'] = [ - 0 => '%s usuari esborrat', - 1 => '%s usuaris esborrats', -]; -$a->strings['User \'%s\' deleted'] = 'Usuari %s\' esborrat'; -$a->strings['User \'%s\' unblocked'] = 'Usuari %s\' desbloquejat'; -$a->strings['User \'%s\' blocked'] = 'L\'usuari \'%s\' és bloquejat'; -$a->strings['Register date'] = 'Data de registre'; -$a->strings['Last login'] = 'Últim accés'; -$a->strings['Last item'] = 'Últim element'; -$a->strings['select all'] = 'Seleccionar tot'; -$a->strings['User registrations waiting for confirm'] = 'Registre d\'usuari esperant confirmació'; -$a->strings['Request date'] = 'Data de sol·licitud'; -$a->strings['No registrations.'] = 'Sense registres.'; -$a->strings['Deny'] = 'Denegar'; -$a->strings['Block'] = 'Bloquejar'; -$a->strings['Unblock'] = 'Desbloquejar'; -$a->strings['Site admin'] = 'Administrador del lloc'; -$a->strings['Account expired'] = 'Compte expirat'; -$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Els usuaris seleccionats seran esborrats!\n\nqualsevol cosa que aquests usuaris hagin publicat en aquest lloc s\'esborrarà!\n\nEsteu segur?'; -$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'L\'usuari {0} s\'eliminarà!\n\nQualsevol cosa que aquest usuari hagi publicat en aquest lloc s\'esborrarà!\n\nEsteu segur?'; -$a->strings['Plugin %s disabled.'] = 'Plugin %s deshabilitat.'; -$a->strings['Plugin %s enabled.'] = 'Plugin %s habilitat.'; -$a->strings['Disable'] = 'Deshabilitar'; -$a->strings['Enable'] = 'Habilitar'; -$a->strings['Toggle'] = 'Canviar'; -$a->strings['Author: '] = 'Autor:'; -$a->strings['Maintainer: '] = 'Responsable:'; -$a->strings['No themes found.'] = 'No s\'ha trobat temes.'; -$a->strings['Screenshot'] = 'Captura de pantalla'; -$a->strings['[Experimental]'] = '[Experimental]'; -$a->strings['[Unsupported]'] = '[No soportat]'; -$a->strings['Log settings updated.'] = 'Configuració del registre actualitzada.'; -$a->strings['Clear'] = 'Netejar'; -$a->strings['Enable Debugging'] = 'Habilitar Depuració'; -$a->strings['Log file'] = 'Arxiu de registre'; -$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Ha de tenir permisos d\'escriptura pel servidor web. En relació amb el seu directori Friendica de nivell superior.'; -$a->strings['Log level'] = 'Nivell de transcripció'; -$a->strings['Could not access contact record.'] = 'No puc accedir al registre del contacte.'; -$a->strings['Could not locate selected profile.'] = 'No puc localitzar el perfil seleccionat.'; -$a->strings['Contact updated.'] = 'Contacte actualitzat.'; -$a->strings['Failed to update contact record.'] = 'Error en actualitzar registre de contacte.'; -$a->strings['Contact has been blocked'] = 'Elcontacte ha estat bloquejat'; -$a->strings['Contact has been unblocked'] = 'El contacte ha estat desbloquejat'; -$a->strings['Contact has been ignored'] = 'El contacte ha estat ignorat'; -$a->strings['Contact has been unignored'] = 'El contacte ha estat recordat'; -$a->strings['Contact has been archived'] = 'El contacte ha estat arxivat'; -$a->strings['Contact has been unarchived'] = 'El contacte ha estat desarxivat'; -$a->strings['Do you really want to delete this contact?'] = 'Realment vols esborrar aquest contacte?'; -$a->strings['Contact has been removed.'] = 'El contacte ha estat tret'; -$a->strings['You are mutual friends with %s'] = 'Ara te una amistat mutua amb %s'; -$a->strings['You are sharing with %s'] = 'Estas compartint amb %s'; -$a->strings['%s is sharing with you'] = '%s esta compartint amb tú'; -$a->strings['Private communications are not available for this contact.'] = 'Comunicacions privades no disponibles per aquest contacte.'; -$a->strings['(Update was successful)'] = '(L\'actualització fou exitosa)'; -$a->strings['(Update was not successful)'] = '(L\'actualització fracassà)'; -$a->strings['Suggest friends'] = 'Suggerir amics'; -$a->strings['Network type: %s'] = 'Xarxa tipus: %s'; -$a->strings['Communications lost with this contact!'] = 'La comunicació amb aquest contacte s\'ha perdut!'; -$a->strings['Profile Visibility'] = 'Perfil de Visibilitat'; -$a->strings['Please choose the profile you would like to display to %s when viewing your profile securely.'] = 'Si us plau triï el perfil que voleu mostrar a %s quan estigui veient el teu de forma segura.'; -$a->strings['Contact Information / Notes'] = 'Informació/Notes del contacte'; -$a->strings['Edit contact notes'] = 'Editar notes de contactes'; -$a->strings['Block/Unblock contact'] = 'Bloquejar/Alliberar contacte'; -$a->strings['Ignore contact'] = 'Ignore contacte'; -$a->strings['Repair URL settings'] = 'Restablir configuració de URL'; -$a->strings['View conversations'] = 'Veient conversacions'; -$a->strings['Last update:'] = 'Última actualització:'; -$a->strings['Update public posts'] = 'Actualitzar enviament públic'; -$a->strings['Update now'] = 'Actualitza ara'; -$a->strings['Unignore'] = 'Treure d\'Ignorats'; -$a->strings['Currently blocked'] = 'Bloquejat actualment'; -$a->strings['Currently ignored'] = 'Ignorat actualment'; -$a->strings['Currently archived'] = 'Actualment arxivat'; -$a->strings['Replies/likes to your public posts may still be visible'] = 'Répliques/agraiments per als teus missatges públics poden romandre visibles'; -$a->strings['Suggestions'] = 'Suggeriments'; -$a->strings['Suggest potential friends'] = 'Suggerir amics potencials'; -$a->strings['Show all contacts'] = 'Mostrar tots els contactes'; -$a->strings['Unblocked'] = 'Desblocat'; -$a->strings['Only show unblocked contacts'] = 'Mostrar únicament els contactes no blocats'; -$a->strings['Blocked'] = 'Blocat'; -$a->strings['Only show blocked contacts'] = 'Mostrar únicament els contactes blocats'; -$a->strings['Ignored'] = 'Ignorat'; -$a->strings['Only show ignored contacts'] = 'Mostrar únicament els contactes ignorats'; -$a->strings['Archived'] = 'Arxivat'; -$a->strings['Only show archived contacts'] = 'Mostrar únicament els contactes arxivats'; -$a->strings['Hidden'] = 'Amagat'; -$a->strings['Only show hidden contacts'] = 'Mostrar únicament els contactes amagats'; -$a->strings['Search your contacts'] = 'Cercant el seus contactes'; -$a->strings['Archive'] = 'Arxivat'; -$a->strings['Unarchive'] = 'Desarxivat'; -$a->strings['View all contacts'] = 'Veure tots els contactes'; -$a->strings['Advanced Contact Settings'] = 'Ajustos Avançats per als Contactes'; -$a->strings['Mutual Friendship'] = 'Amistat Mutua'; -$a->strings['is a fan of yours'] = 'Es un fan teu'; -$a->strings['you are a fan of'] = 'ets fan de'; -$a->strings['Toggle Blocked status'] = 'Canvi de estatus blocat'; -$a->strings['Toggle Ignored status'] = 'Canvi de estatus ignorat'; -$a->strings['Toggle Archive status'] = 'Canvi de estatus del arxiu'; -$a->strings['Delete contact'] = 'Esborrar contacte'; -$a->strings['This may occasionally happen if contact was requested by both persons and it has already been approved.'] = 'Això pot ocorre ocasionalment si el contacte fa una petició per ambdues persones i ja han estat aprovades.'; -$a->strings['Response from remote site was not understood.'] = 'La resposta des del lloc remot no s\'entenia.'; -$a->strings['Unexpected response from remote site: '] = 'Resposta inesperada de lloc remot:'; -$a->strings['Confirmation completed successfully.'] = 'La confirmació s\'ha completat correctament.'; -$a->strings['Remote site reported: '] = 'El lloc remot informa:'; -$a->strings['Temporary failure. Please wait and try again.'] = 'Fallada temporal. Si us plau, espereu i torneu a intentar.'; -$a->strings['Introduction failed or was revoked.'] = 'La presentació va fallar o va ser revocada.'; -$a->strings['Unable to set contact photo.'] = 'No es pot canviar la foto de contacte.'; -$a->strings['No user record found for \'%s\' '] = 'No es troben registres d\'usuari per a \'%s\''; -$a->strings['Our site encryption key is apparently messed up.'] = 'La nostra clau de xifrat del lloc pel que sembla en mal estat.'; -$a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'Es va proporcionar una URL del lloc buida o la URL no va poder ser desxifrada per nosaltres.'; -$a->strings['Contact record was not found for you on our site.'] = 'No s\'han trobat registres del contacte al nostre lloc.'; -$a->strings['Site public key not available in contact record for URL %s.'] = 'la clau pública del lloc no disponible en les dades del contacte per URL %s.'; -$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'La ID proporcionada pel seu sistema és un duplicat en el nostre sistema. Hauria de treballar si intenta de nou.'; -$a->strings['Unable to set your contact credentials on our system.'] = 'No es pot canviar les seves credencials de contacte en el nostre sistema.'; -$a->strings['Unable to update your contact profile details on our system'] = 'No es pot actualitzar els detalls del seu perfil de contacte en el nostre sistema'; -$a->strings['%1$s has joined %2$s'] = '%1$s s\'ha unit a %2$s'; -$a->strings['This introduction has already been accepted.'] = 'Aquesta presentació ha estat acceptada.'; -$a->strings['Profile location is not valid or does not contain profile information.'] = 'El perfil de situació no és vàlid o no contè informació de perfil'; -$a->strings['Warning: profile location has no identifiable owner name.'] = 'Atenció: El perfil de situació no te nom de propietari identificable.'; -$a->strings['Warning: profile location has no profile photo.'] = 'Atenció: El perfil de situació no te foto de perfil'; -$a->strings['%d required parameter was not found at the given location'] = [ - 0 => '%d el paràmetre requerit no es va trobar al lloc indicat', - 1 => '%d els paràmetres requerits no es van trobar allloc indicat', -]; -$a->strings['Introduction complete.'] = 'Completada la presentació.'; -$a->strings['Unrecoverable protocol error.'] = 'Error de protocol irrecuperable.'; -$a->strings['Profile unavailable.'] = 'Perfil no disponible'; -$a->strings['%s has received too many connection requests today.'] = '%s avui ha rebut excesives peticions de connexió. '; -$a->strings['Spam protection measures have been invoked.'] = 'Mesures de protecció contra spam han estat invocades.'; -$a->strings['Friends are advised to please try again in 24 hours.'] = 'S\'aconsellà els amics que probin pasades 24 hores.'; -$a->strings['Invalid locator'] = 'Localitzador no vàlid'; -$a->strings['Invalid email address.'] = 'Adreça de correu no vàlida.'; -$a->strings['This account has not been configured for email. Request failed.'] = 'Aquest compte no s\'ha configurat per al correu electrònic. Ha fallat la sol·licitud.'; -$a->strings['You have already introduced yourself here.'] = 'Has fer la teva presentació aquí.'; -$a->strings['Apparently you are already friends with %s.'] = 'Aparentment, ja tens amistat amb %s'; -$a->strings['Invalid profile URL.'] = 'Perfil URL no vàlid.'; -$a->strings['Your introduction has been sent.'] = 'La teva presentació ha estat enviada.'; -$a->strings['Please login to confirm introduction.'] = 'Si us plau, entri per confirmar la presentació.'; -$a->strings['Incorrect identity currently logged in. Please login to this profile.'] = 'Sesió iniciada amb la identificació incorrecta. Entra en aquest perfil.'; -$a->strings['Confirm'] = 'Confirmar'; -$a->strings['Hide this contact'] = 'Amaga aquest contacte'; -$a->strings['Welcome home %s.'] = 'Benvingut de nou %s'; -$a->strings['Please confirm your introduction/connection request to %s.'] = 'Si us plau, confirmi la seva sol·licitud de Presentació/Amistat a %s.'; -$a->strings['Please enter your \'Identity Address\' from one of the following supported communications networks:'] = 'Si us plau, introdueixi la seva "Adreça Identificativa" d\'una de les següents xarxes socials suportades:'; -$a->strings['Friend/Connection Request'] = 'Sol·licitud d\'Amistat'; -$a->strings['Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca'] = 'Exemples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca'; -$a->strings['Please answer the following:'] = 'Si us plau, contesti les següents preguntes:'; -$a->strings['Does %s know you?'] = '%s et coneix?'; -$a->strings['Add a personal note:'] = 'Afegir una nota personal:'; -$a->strings['StatusNet/Federated Social Web'] = 'Web Social StatusNet/Federated '; -$a->strings[' - please do not use this form. Instead, enter %s into your Diaspora search bar.'] = ' - per favor no utilitzi aquest formulari. Al contrari, entra %s en la barra de cerques de Diaspora.'; -$a->strings['Your Identity Address:'] = 'La Teva Adreça Identificativa:'; -$a->strings['Submit Request'] = 'Sol·licitud Enviada'; -$a->strings['Contact added'] = 'Contacte afegit'; -$a->strings['Friendica Communications Server - Setup'] = 'Friendica Servidor de Comunicacions - Configuració'; -$a->strings['Could not connect to database.'] = 'No puc connectar a la base de dades.'; -$a->strings['Could not create table.'] = 'No puc creat taula.'; -$a->strings['Your Friendica site database has been installed.'] = 'La base de dades del teu lloc Friendica ha estat instal·lada.'; -$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Pot ser que hagi d\'importar l\'arxiu "database.sql" manualment amb phpmyadmin o mysql.'; -$a->strings['Please see the file "INSTALL.txt".'] = 'Per favor, consulti l\'arxiu "INSTALL.txt".'; -$a->strings['System check'] = 'Comprovació del Sistema'; -$a->strings['Check again'] = 'Comprovi de nou'; -$a->strings['Database connection'] = 'Conexió a la base de dades'; -$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Per a instal·lar Friendica necessitem conèixer com connectar amb la deva base de dades.'; -$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Per favor, posi\'s en contacte amb el seu proveïdor de hosting o administrador del lloc si té alguna pregunta sobre aquestes opcions.'; -$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'La base de dades que especifiques ja hauria d\'existir. Si no és així, crea-la abans de continuar.'; -$a->strings['Database Server Name'] = 'Nom del Servidor de base de Dades'; -$a->strings['Database Login Name'] = 'Nom d\'Usuari de la base de Dades'; -$a->strings['Database Login Password'] = 'Contrasenya d\'Usuari de la base de Dades'; -$a->strings['Database Name'] = 'Nom de la base de Dades'; -$a->strings['Site administrator email address'] = 'Adreça de correu del administrador del lloc'; -$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'El seu compte d\'adreça electrònica ha de coincidir per tal d\'utilitzar el panell d\'administració web.'; -$a->strings['Please select a default timezone for your website'] = 'Per favor, seleccioni una zona horària per defecte per al seu lloc web'; -$a->strings['Site settings'] = 'Configuracions del lloc'; -$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'No es va poder trobar una versió de línia de comandos de PHP en la ruta del servidor web.'; -$a->strings['PHP executable path'] = 'Direcció del executable PHP'; -$a->strings['Enter full path to php executable. You can leave this blank to continue the installation.'] = 'Entra la ruta sencera fins l\'executable de php. Pots deixar això buit per continuar l\'instal·lació.'; -$a->strings['Command line PHP'] = 'Linia de comandos PHP'; -$a->strings['PHP executable is not the php cli binary (could be cgi-fgci version)'] = 'El programari executable PHP no es el binari php cli (hauria de ser la versió cgi-fcgi)'; -$a->strings['Found PHP version: '] = 'Trobada la versió PHP:'; -$a->strings['PHP cli binary'] = 'PHP cli binari'; -$a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'La versió de línia de comandos de PHP en el seu sistema no té "register_argc_argv" habilitat.'; -$a->strings['This is required for message delivery to work.'] = 'Això és necessari perquè funcioni el lliurament de missatges.'; -$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'] = 'Error: la funció "openssl_pkey_new" en aquest sistema no és capaç de generar claus de xifrat'; -$a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'Si s\'executa en Windows, per favor consulti la secció "http://www.php.net/manual/en/openssl.installation.php".'; -$a->strings['Generate encryption keys'] = 'Generar claus d\'encripció'; -$a->strings['libCurl PHP module'] = 'Mòdul libCurl de PHP'; -$a->strings['GD graphics PHP module'] = 'Mòdul GD de gràfics de PHP'; -$a->strings['OpenSSL PHP module'] = 'Mòdul OpenSSl de PHP'; -$a->strings['mysqli PHP module'] = 'Mòdul mysqli de PHP'; -$a->strings['mb_string PHP module'] = 'Mòdul mb_string de PHP'; -$a->strings['Apache mod_rewrite module'] = 'Apache mod_rewrite modul '; -$a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Error: el mòdul mod-rewrite del servidor web Apache és necessari però no està instal·lat.'; -$a->strings['Error: libCURL PHP module required but not installed.'] = 'Error: El mòdul libCURL de PHP és necessari però no està instal·lat.'; -$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Error: el mòdul gràfic GD de PHP amb support per JPEG és necessari però no està instal·lat.'; -$a->strings['Error: openssl PHP module required but not installed.'] = 'Error: El mòdul enssl de PHP és necessari però no està instal·lat.'; -$a->strings['Error: mysqli PHP module required but not installed.'] = 'Error: El mòdul mysqli de PHP és necessari però no està instal·lat.'; -$a->strings['Error: mb_string PHP module required but not installed.'] = 'Error: mòdul mb_string de PHP requerit però no instal·lat.'; -$a->strings['The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.'] = 'L\'instal·lador web necessita crear un arxiu anomenat ".htconfig.php" en la carpeta superior del seu servidor web però alguna cosa ho va impedir.'; -$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.'] = 'Això freqüentment és a causa d\'una configuració de permisos; el servidor web no pot escriure arxius en la carpeta - encara que sigui possible.'; -$a->strings['At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder.'] = 'Al final d\'aquest procediment, et facilitarem un text que hauràs de guardar en un arxiu que s\'anomena .htconfig.php que hi es a la carpeta principal del teu Friendica.'; -$a->strings['You can alternatively skip this procedure and perform a manual installation. Please see the file "INSTALL.txt" for instructions.'] = 'Alternativament, pots saltar-te aquest procediment i configurar-ho manualment. Per favor, mira l\'arxiu "INTALL.txt" per a instruccions.'; -$a->strings['.htconfig.php is writable'] = '.htconfig.php és escribible'; -$a->strings['Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.'] = 'Friendica empra el motor de plantilla Smarty3 per dibuixar la web. Smarty3 compila plantilles a PHP per accelerar el redibuxar.'; -$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.'] = 'Per poder guardar aquestes plantilles compilades, el servidor web necessita tenir accés d\'escriptura al directori view/smarty3/ sota la carpeta principal de Friendica.'; -$a->strings['Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder.'] = 'Per favor, asegura que l\'usuari que corre el servidor web (p.e. www-data) te accés d\'escriptura a aquesta carpeta.'; -$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.'] = 'Nota: Com a mesura de seguretat, hauries de facilitar al servidor web, accés d\'escriptura a view/smarty3/ excepte els fitxers de plantilles (.tpl) que conté.'; -$a->strings['view/smarty3 is writable'] = 'view/smarty3 es escribible'; -$a->strings['Url rewrite in .htaccess is not working. Check your server configuration.'] = 'URL rewrite en .htaccess no esta treballant. Comprova la configuració del teu servidor.'; -$a->strings['Url rewrite is working'] = 'URL rewrite està treballant'; -$a->strings['The database configuration file ".htconfig.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.'] = 'L\'arxiu per a la configuració de la base de dades ".htconfig.php" no es pot escriure. Per favor, usi el text adjunt per crear un arxiu de configuració en l\'arrel del servidor web.'; -$a->strings['

    What next

    '] = '

    Que es següent

    '; -$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the poller.'] = 'IMPORTANT: necessitarà configurar [manualment] el programar una tasca pel sondejador (poller.php)'; -$a->strings['Unable to locate original post.'] = 'No es pot localitzar post original.'; -$a->strings['Empty post discarded.'] = 'Buidat després de rebutjar.'; -$a->strings['System error. Post not saved.'] = 'Error del sistema. Publicació no guardada.'; +$a->strings['%s liked %s\'s post'] = 'A %s li agrada l\'enviament de %s'; +$a->strings['%s disliked %s\'s post'] = 'A %s no li agrada l\'enviament de %s'; +$a->strings['%s is now friends with %s'] = '%s es ara amic de %s'; +$a->strings['%s commented on %s\'s post'] = '%s va comentar en l\'enviament de %s'; +$a->strings['%s created a new post'] = '%s ha creat un enviament nou'; +$a->strings['Friend Suggestion'] = 'Amics Suggerits '; +$a->strings['Friend/Connect Request'] = 'Sol·licitud d\'Amistat/Connexió'; +$a->strings['New Follower'] = 'Nou Seguidor'; +$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s t\'ha enviat un missatge privat nou en %2$s.'; +$a->strings['a private message'] = 'un missatge privat'; +$a->strings['%1$s sent you %2$s.'] = '%1$s t\'ha enviat %2$s.'; +$a->strings['Please visit %s to view and/or reply to your private messages.'] = 'Per favor, visiteu %s per a veure i/o respondre els teus missatges privats.'; +$a->strings['%s commented on an item/conversation you have been following.'] = '%s ha comentat un element/conversació que estas seguint.'; +$a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Si us pau, visiteu %s per a veure i/o respondre la conversació.'; +$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s ha fet un enviament al teu mur de perfils en %2$s'; +$a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s enviat a [url=%2$s]teu mur[/url]'; +$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Has rebut una presentació des de \'%1$s\' en %2$s'; +$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Has rebut [url=%1$s] com a presentació[/url] des de %2$s.'; +$a->strings['You may visit their profile at %s'] = 'Pot visitar el seu perfil en %s'; +$a->strings['Please visit %s to approve or reject the introduction.'] = 'Si us plau visiteu %s per aprovar o rebutjar la presentació.'; +$a->strings['%1$s is sharing with you at %2$s'] = '%1$s està compartint amb tú a %2$s'; +$a->strings['You have a new follower at %2$s : %1$s'] = 'Tens un nou seguidor a %2$s : %1$s'; +$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = 'Has rebut una suggerencia d\'amistat des de \'%1$s\' en %2$s'; +$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = 'Has rebut [url=%1$s] com a suggerencia d\'amistat[/url] per a %2$s des de %3$s.'; +$a->strings['Name:'] = 'Nom:'; +$a->strings['Photo:'] = 'Foto:'; +$a->strings['Please visit %s to approve or reject the suggestion.'] = 'Si us plau, visiteu %s per aprovar o rebutjar la suggerencia.'; +$a->strings['\'%1$s\' has accepted your connection request at %2$s'] = '\'%1$s\' ha acceptat la teva petició de conexió a %2$s'; +$a->strings['%2$s has accepted your [url=%1$s]connection request[/url].'] = '%2$s ha acceptat el teu [url=%1$s]sol·licitud de connexió[/url].'; +$a->strings['You are now mutual friends and may exchange status updates, photos, and email without restriction.'] = 'Ara sou amics mutus i podeu intercanviar actualitzacions d\'estat, fotos i correu electrònic sense restriccions.'; +$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = ' Visiteu%ssi voleu fer canvis en aquesta relació.'; +$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\' ha decidit acceptar-vos un fan, que restringeix algunes formes de comunicació, com ara la missatgeria privada i algunes interaccions de perfils. Si es tracta d’una pàgina de celebritat o comunitat, aquestes opcions s’apliquen automàticament.'; +$a->strings['\'%1$s\' may choose to extend this into a two-way or more permissive relationship in the future.'] = '\'%1$s\' pot decidir optar per ampliar-la en una relació bidireccional o més permissiva en el futur.'; +$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'Visiteu%s si voleu fer canvis en aquesta relació.'; +$a->strings['registration request'] = 'sol·licitud de registre'; +$a->strings['You\'ve received a registration request from \'%1$s\' at %2$s'] = 'Heu rebut una sol·licitud de registre de \'%1$s\' a %2$s'; +$a->strings['You\'ve received a [url=%1$s]registration request[/url] from %2$s.'] = 'Heu rebut un [url=%1$s]sol·licitud de registre[/url] from %2$s.'; +$a->strings['Full Name: %s +Site Location: %s +Login Name: %s (%s)'] = 'Nom complet: %s +Ubicació del lloc: %s +Nom d\'usuari: %s (%s)'; +$a->strings['Please visit %s to approve or reject the request.'] = 'Visiteu %s per aprovar o rebutjar la sol·licitud.'; $a->strings['This message was sent to you by %s, a member of the Friendica social network.'] = 'Aquest missatge va ser enviat a vostè per %s, un membre de la xarxa social Friendica.'; $a->strings['You may visit them online at %s'] = 'El pot visitar en línia a %s'; $a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Si us plau, poseu-vos en contacte amb el remitent responent a aquest missatge si no voleu rebre aquests missatges.'; $a->strings['%s posted an update.'] = '%s ha publicat una actualització.'; -$a->strings['Private messages to this person are at risk of public disclosure.'] = 'Els missatges privats a aquesta persona es troben en risc de divulgació pública.'; -$a->strings['Invalid contact.'] = 'Contacte no vàlid.'; -$a->strings['Commented Order'] = 'Ordre dels Comentaris'; -$a->strings['Sort by Comment Date'] = 'Ordenar per Data de Comentari'; -$a->strings['Posted Order'] = 'Ordre dels Enviaments'; -$a->strings['Sort by Post Date'] = 'Ordenar per Data d\'Enviament'; -$a->strings['Posts that mention or involve you'] = 'Missatge que et menciona o t\'impliquen'; -$a->strings['New'] = 'Nou'; -$a->strings['Activity Stream - by date'] = 'Activitat del Flux - per data'; -$a->strings['Shared Links'] = 'Enllaços Compartits'; -$a->strings['Interesting Links'] = 'Enllaços Interesants'; -$a->strings['Starred'] = 'Favorits'; -$a->strings['Favourite Posts'] = 'Enviaments Favorits'; -$a->strings['{0} wants to be your friend'] = '{0} vol ser el teu amic'; -$a->strings['{0} sent you a message'] = '{0} t\'ha enviat un missatge de'; -$a->strings['{0} requested registration'] = '{0} solicituts de registre'; -$a->strings['No contacts.'] = 'Sense Contactes'; +$a->strings['Private Message'] = 'Missatge Privat'; +$a->strings['This entry was edited'] = 'L\'entrada fou editada'; +$a->strings['Edit'] = 'Editar'; +$a->strings['to'] = 'a'; $a->strings['via'] = 'via'; -$a->strings['Alignment'] = 'Adaptació'; -$a->strings['Left'] = 'Esquerra'; -$a->strings['Center'] = 'Centre'; -$a->strings['Color scheme'] = 'Esquema de colors'; -$a->strings['Posts font size'] = 'Mida del text en enviaments'; -$a->strings['Textareas font size'] = 'mida del text en Areas de Text'; -$a->strings['Community Profiles'] = 'Perfils de Comunitat'; -$a->strings['Last users'] = 'Últims usuaris'; -$a->strings['Find Friends'] = 'Trobar Amistats'; -$a->strings['Local Directory'] = 'Directori Local'; -$a->strings['Connect Services'] = 'Serveis Connectats'; -$a->strings['Community Pages'] = 'Pàgines de la Comunitat'; -$a->strings['Help or @NewHere ?'] = 'Ajuda o @NouAqui?'; -$a->strings['Delete this item?'] = 'Esborrar aquest element?'; -$a->strings['show fewer'] = 'Mostrar menys'; -$a->strings['Update %s failed. See error logs.'] = 'Actualització de %s fracassà. Mira el registre d\'errors.'; -$a->strings['Create a New Account'] = 'Crear un Nou Compte'; -$a->strings['Password: '] = 'Contrasenya:'; -$a->strings['Remember me'] = 'Recorda\'m ho'; -$a->strings['Or login using OpenID: '] = 'O accedixi emprant OpenID:'; -$a->strings['Forgot your password?'] = 'Oblidà la contrasenya?'; -$a->strings['Website Terms of Service'] = 'Termes del Servei al Llocweb'; -$a->strings['terms of service'] = 'termes del servei'; -$a->strings['Website Privacy Policy'] = 'Política de Privacitat al Llocweb'; -$a->strings['privacy policy'] = 'política de privacitat'; -$a->strings['toggle mobile'] = 'canviar a mòbil'; +$a->strings['Wall-to-Wall'] = 'Mur-a-Mur'; +$a->strings['via Wall-To-Wall:'] = 'via Mur-a-Mur'; +$a->strings['%d comment'] = [ + 0 => '%d comentari', + 1 => '%d comentaris', +]; +$a->strings['following'] = 'seguint'; +$a->strings['stopped following'] = 'Deixar de seguir'; +$a->strings['Login failed.'] = 'Error d\'accés.'; +$a->strings['Please upload a profile photo.'] = 'Per favor, carrega una foto per al perfil'; diff --git a/view/lang/cs/messages.po b/view/lang/cs/messages.po index 010d70d33..e232dcbe1 100644 --- a/view/lang/cs/messages.po +++ b/view/lang/cs/messages.po @@ -1,5 +1,5 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: @@ -8,2317 +8,93 @@ # Aditoo, 2018 # michal_s , 2011-2015 # michal_s , 2015 +# Petr Kučera, 2023 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-15 07:45+0200\n" -"PO-Revision-Date: 2019-10-05 16:46+0000\n" -"Last-Translator: Aditoo\n" -"Language-Team: Czech (http://www.transifex.com/Friendica/friendica/language/cs/)\n" +"POT-Creation-Date: 2023-09-18 05:30+0000\n" +"PO-Revision-Date: 2011-05-05 10:19+0000\n" +"Last-Translator: Petr Kučera, 2023\n" +"Language-Team: Czech (http://app.transifex.com/Friendica/friendica/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: include/items.php:354 src/Module/Admin/Themes/Details.php:53 -#: src/Module/Admin/Themes/Index.php:43 src/Module/Debug/ItemBody.php:27 -#: src/Module/Debug/ItemBody.php:40 +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 +msgid "Unable to locate original post." +msgstr "Nelze nalézt původní příspěvek." + +#: mod/item.php:138 +msgid "Post updated." +msgstr "" + +#: mod/item.php:203 mod/item.php:207 +msgid "Item wasn't stored." +msgstr "" + +#: mod/item.php:217 +msgid "Item couldn't be fetched." +msgstr "" + +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "Prázdný příspěvek odstraněn." + +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 +#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Položka nenalezena." -#: include/items.php:392 -msgid "Do you really want to delete this item?" -msgstr "Opravdu chcete smazat tuto položku?" - -#: include/items.php:394 mod/api.php:109 mod/profiles.php:526 -#: mod/profiles.php:529 mod/profiles.php:551 mod/dfrn_request.php:640 -#: mod/follow.php:163 mod/message.php:150 mod/suggest.php:73 -#: mod/settings.php:1089 mod/settings.php:1095 mod/settings.php:1102 -#: mod/settings.php:1106 mod/settings.php:1110 mod/settings.php:1114 -#: mod/settings.php:1118 mod/settings.php:1122 mod/settings.php:1142 -#: mod/settings.php:1143 mod/settings.php:1144 mod/settings.php:1145 -#: mod/settings.php:1146 src/Module/Register.php:97 src/Module/Contact.php:423 -msgid "Yes" -msgstr "Ano" - -#: include/items.php:397 include/conversation.php:1251 mod/tagrm.php:20 -#: mod/tagrm.php:115 mod/unfollow.php:132 mod/dfrn_request.php:650 -#: mod/editpost.php:110 mod/fbrowser.php:110 mod/fbrowser.php:139 -#: mod/follow.php:174 mod/message.php:153 mod/photos.php:1084 -#: mod/photos.php:1191 mod/suggest.php:76 mod/settings.php:678 -#: mod/settings.php:704 src/Module/Contact.php:426 -msgid "Cancel" -msgstr "Zrušit" - -#: include/items.php:444 mod/api.php:34 mod/api.php:39 mod/delegate.php:30 -#: mod/delegate.php:48 mod/delegate.php:59 mod/ostatus_subscribe.php:18 -#: mod/regmod.php:89 mod/repair_ostatus.php:16 mod/uimport.php:17 -#: mod/unfollow.php:22 mod/unfollow.php:77 mod/unfollow.php:109 -#: mod/wall_attach.php:76 mod/wall_attach.php:79 mod/wall_upload.php:107 -#: mod/wall_upload.php:110 mod/wallmessage.php:19 mod/wallmessage.php:43 -#: mod/wallmessage.php:82 mod/wallmessage.php:106 mod/profiles.php:182 -#: mod/profiles.php:499 mod/cal.php:301 mod/common.php:27 mod/crepair.php:90 -#: mod/dfrn_confirm.php:64 mod/editpost.php:21 mod/follow.php:57 -#: mod/follow.php:134 mod/fsuggest.php:63 mod/manage.php:130 -#: mod/message.php:56 mod/message.php:101 mod/network.php:37 mod/notes.php:27 -#: mod/photos.php:178 mod/photos.php:962 mod/poke.php:141 -#: mod/profile_photo.php:32 mod/profile_photo.php:177 -#: mod/profile_photo.php:197 mod/suggest.php:39 mod/events.php:208 -#: mod/item.php:170 mod/notifications.php:73 mod/settings.php:52 -#: mod/settings.php:165 mod/settings.php:667 src/Module/Attach.php:42 -#: src/Module/FollowConfirm.php:27 src/Module/Group.php:31 -#: src/Module/Group.php:77 src/Module/Invite.php:22 src/Module/Invite.php:110 -#: src/Module/Notifications/Notify.php:19 src/Module/Profile/Contacts.php:50 -#: src/Module/Register.php:192 src/Module/Search/Directory.php:18 -#: src/Module/Contact.php:340 +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:99 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:38 +#: src/Module/FriendSuggest.php:57 src/Module/Invite.php:42 +#: src/Module/Invite.php:131 src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Delegation.php:41 src/Module/Settings/Delegation.php:71 +#: src/Module/Settings/Display.php:73 src/Module/Settings/Display.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:111 +#: src/Module/Settings/RemoveMe.php:117 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Import.php:84 +#: src/Module/User/Import.php:91 msgid "Permission denied." msgstr "Přístup odmítnut." -#: include/api.php:1119 -#, 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] "Byl dosažen denní limit %d příspěvku. Příspěvek byl odmítnut." -msgstr[1] "Byl dosažen denní limit %d příspěvků. Příspěvek byl odmítnut." -msgstr[2] "Byl dosažen denní limit %d příspěvku. Příspěvek byl odmítnut." -msgstr[3] "Byl dosažen denní limit %d příspěvků. Příspěvek byl odmítnut." - -#: include/api.php:1133 -#, 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] "Byl dosažen týdenní limit %d příspěvku. Příspěvek byl odmítnut." -msgstr[1] "Byl dosažen týdenní limit %d příspěvků. Příspěvek byl odmítnut." -msgstr[2] "Byl dosažen týdenní limit %d příspěvku. Příspěvek byl odmítnut." -msgstr[3] "Byl dosažen týdenní limit %d příspěvků. Příspěvek byl odmítnut." - -#: include/api.php:1147 -#, php-format -msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "Byl dosažen měsíční limit %d příspěvků. Příspěvek byl odmítnut." - -#: include/api.php:4589 mod/photos.php:91 mod/photos.php:196 -#: mod/photos.php:640 mod/photos.php:1090 mod/photos.php:1107 -#: mod/photos.php:1610 mod/profile_photo.php:85 mod/profile_photo.php:94 -#: mod/profile_photo.php:103 mod/profile_photo.php:210 -#: mod/profile_photo.php:298 mod/profile_photo.php:308 src/Model/User.php:796 -#: src/Model/User.php:804 src/Model/User.php:812 -msgid "Profile Photos" -msgstr "Profilové fotky" - -#: include/conversation.php:161 include/conversation.php:298 -#: src/Model/Item.php:3309 -msgid "event" -msgstr "událost" - -#: include/conversation.php:164 include/conversation.php:174 -#: include/conversation.php:301 include/conversation.php:310 -#: mod/subthread.php:88 mod/tagger.php:69 -msgid "status" -msgstr "stav" - -#: include/conversation.php:169 include/conversation.php:306 -#: mod/subthread.php:88 mod/tagger.php:69 src/Model/Item.php:3311 -msgid "photo" -msgstr "fotka" - -#: include/conversation.php:182 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "Uživateli %1$s se líbí %3$s uživatele %2$s" - -#: include/conversation.php:184 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "Uživateli %1$s se nelíbí %3$s uživatele %2$s" - -#: include/conversation.php:186 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "%1$s se účastní %3$s uživatele %2$s" - -#: include/conversation.php:188 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "%1$s se neúčastní %3$s uživatele %2$s" - -#: include/conversation.php:190 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "%1$s se možná účastní %3$s uživatele %2$s" - -#: include/conversation.php:225 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s se nyní přátelí s uživatelem %2$s" - -#: include/conversation.php:266 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s šťouchnul/a uživatele %2$s" - -#: include/conversation.php:320 mod/tagger.php:102 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s označil/a %3$s uživatele %2$s štítkem %4$s" - -#: include/conversation.php:342 -msgid "post/item" -msgstr "příspěvek/položka" - -#: include/conversation.php:343 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s označil/a %3$s uživatele %2$s jako oblíbené" - -#: include/conversation.php:569 mod/profiles.php:352 mod/photos.php:1442 -msgid "Likes" -msgstr "Libí se" - -#: include/conversation.php:570 mod/profiles.php:355 mod/photos.php:1442 -msgid "Dislikes" -msgstr "Nelibí se" - -#: include/conversation.php:571 include/conversation.php:1566 -#: mod/photos.php:1443 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Účastní se" -msgstr[1] "Účastní se" -msgstr[2] "Účastní se" -msgstr[3] "Účastní se" - -#: include/conversation.php:572 mod/photos.php:1443 -msgid "Not attending" -msgstr "Neúčastní se" - -#: include/conversation.php:573 mod/photos.php:1443 -msgid "Might attend" -msgstr "Mohl/a by se zúčastnit" - -#: include/conversation.php:574 -msgid "Reshares" -msgstr "Znovusdílení" - -#: include/conversation.php:654 mod/photos.php:1499 src/Object/Post.php:209 -msgid "Select" -msgstr "Vybrat" - -#: include/conversation.php:655 mod/photos.php:1500 mod/settings.php:738 -#: src/Module/Admin/Users.php:288 src/Module/Contact.php:805 -#: src/Module/Contact.php:1086 -msgid "Delete" -msgstr "Odstranit" - -#: include/conversation.php:681 src/Object/Post.php:383 -#: src/Object/Post.php:384 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Zobrazit profil uživatele %s na %s" - -#: include/conversation.php:694 src/Object/Post.php:371 -msgid "Categories:" -msgstr "Kategorie:" - -#: include/conversation.php:695 src/Object/Post.php:372 -msgid "Filed under:" -msgstr "Vyplněn pod:" - -#: include/conversation.php:702 src/Object/Post.php:397 -#, php-format -msgid "%s from %s" -msgstr "%s z %s" - -#: include/conversation.php:717 -msgid "View in context" -msgstr "Zobrazit v kontextu" - -#: include/conversation.php:719 include/conversation.php:1232 -#: mod/wallmessage.php:141 mod/editpost.php:86 mod/message.php:260 -#: mod/message.php:442 mod/photos.php:1415 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:424 -msgid "Please wait" -msgstr "Čekejte prosím" - -#: include/conversation.php:783 -msgid "remove" -msgstr "odstranit" - -#: include/conversation.php:787 -msgid "Delete Selected Items" -msgstr "Smazat vybrané položky" - -#: include/conversation.php:942 view/theme/frio/theme.php:363 -msgid "Follow Thread" -msgstr "Sledovat vlákno" - -#: include/conversation.php:943 src/Model/Contact.php:1225 -msgid "View Status" -msgstr "Zobrazit stav" - -#: include/conversation.php:944 include/conversation.php:962 mod/match.php:87 -#: mod/suggest.php:87 src/Model/Contact.php:1165 src/Model/Contact.php:1218 -#: src/Model/Contact.php:1226 src/Module/AllFriends.php:74 -#: src/Module/BaseSearchModule.php:133 src/Module/Directory.php:150 -msgid "View Profile" -msgstr "Zobrazit profil" - -#: include/conversation.php:945 src/Model/Contact.php:1227 -msgid "View Photos" -msgstr "Zobrazit fotky" - -#: include/conversation.php:946 src/Model/Contact.php:1219 -#: src/Model/Contact.php:1228 -msgid "Network Posts" -msgstr "Síťové příspěvky" - -#: include/conversation.php:947 src/Model/Contact.php:1220 -#: src/Model/Contact.php:1229 -msgid "View Contact" -msgstr "Zobrazit kontakt" - -#: include/conversation.php:948 src/Model/Contact.php:1231 -msgid "Send PM" -msgstr "Poslat soukromou zprávu" - -#: include/conversation.php:949 src/Module/Admin/Blocklist/Contact.php:67 -#: src/Module/Admin/Users.php:289 src/Module/Contact.php:585 -#: src/Module/Contact.php:802 src/Module/Contact.php:1061 -msgid "Block" -msgstr "Blokovat" - -#: include/conversation.php:950 mod/notifications.php:63 -#: mod/notifications.php:197 mod/notifications.php:290 -#: src/Module/Contact.php:586 src/Module/Contact.php:803 -#: src/Module/Contact.php:1069 -msgid "Ignore" -msgstr "Ignorovat" - -#: include/conversation.php:954 src/Model/Contact.php:1232 -msgid "Poke" -msgstr "Šťouchnout" - -#: include/conversation.php:959 mod/match.php:88 mod/follow.php:160 -#: mod/suggest.php:88 view/theme/vier/theme.php:201 src/Content/Widget.php:66 -#: src/Model/Contact.php:1221 src/Module/AllFriends.php:75 -#: src/Module/BaseSearchModule.php:134 -msgid "Connect/Follow" -msgstr "Spojit se/sledovat" - -#: include/conversation.php:1084 -#, php-format -msgid "%s likes this." -msgstr "Uživateli %s se tohle líbí." - -#: include/conversation.php:1087 -#, php-format -msgid "%s doesn't like this." -msgstr "Uživateli %s se tohle nelíbí." - -#: include/conversation.php:1090 -#, php-format -msgid "%s attends." -msgstr "%s se účastní." - -#: include/conversation.php:1093 -#, php-format -msgid "%s doesn't attend." -msgstr "%s se neúčastní." - -#: include/conversation.php:1096 -#, php-format -msgid "%s attends maybe." -msgstr "%s se možná účastní." - -#: include/conversation.php:1099 include/conversation.php:1142 -#, php-format -msgid "%s reshared this." -msgstr "%s tohle znovusdílel/a." - -#: include/conversation.php:1107 -msgid "and" -msgstr "a" - -#: include/conversation.php:1113 -#, php-format -msgid "and %d other people" -msgstr "a dalších %d lidí" - -#: include/conversation.php:1121 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d lidem se tohle líbí" - -#: include/conversation.php:1122 -#, php-format -msgid "%s like this." -msgstr "Uživatelům %s se tohle líbí." - -#: include/conversation.php:1125 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d lidem se tohle nelíbí" - -#: include/conversation.php:1126 -#, php-format -msgid "%s don't like this." -msgstr "Uživatelům %s se tohle nelíbí." - -#: include/conversation.php:1129 -#, php-format -msgid "%2$d people attend" -msgstr "%2$d lidí se účastní" - -#: include/conversation.php:1130 -#, php-format -msgid "%s attend." -msgstr "%s se účastní." - -#: include/conversation.php:1133 -#, php-format -msgid "%2$d people don't attend" -msgstr "%2$d lidí se neúčastní" - -#: include/conversation.php:1134 -#, php-format -msgid "%s don't attend." -msgstr "%s se neúčastní" - -#: include/conversation.php:1137 -#, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d lidí se možná účastní" - -#: include/conversation.php:1138 -#, php-format -msgid "%s attend maybe." -msgstr "%s se možná účastní" - -#: include/conversation.php:1141 -#, php-format -msgid "%2$d people reshared this" -msgstr "%2$d lidí tohle znovusdílelo" - -#: include/conversation.php:1171 -msgid "Visible to everybody" -msgstr "Viditelné pro všechny" - -#: include/conversation.php:1172 src/Module/Item/Compose.php:187 -#: src/Object/Post.php:888 -msgid "Please enter a image/video/audio/webpage URL:" -msgstr "Prosím zadejte URL obrázku/videa/audia/webové stránky:" - -#: include/conversation.php:1173 -msgid "Tag term:" -msgstr "Štítek:" - -#: include/conversation.php:1174 src/Module/Filer/SaveTag.php:48 -msgid "Save to Folder:" -msgstr "Uložit do složky:" - -#: include/conversation.php:1175 -msgid "Where are you right now?" -msgstr "Kde právě jste?" - -#: include/conversation.php:1176 -msgid "Delete item(s)?" -msgstr "Smazat položku(y)?" - -#: include/conversation.php:1208 -msgid "New Post" -msgstr "Nový příspěvek" - -#: include/conversation.php:1211 -msgid "Share" -msgstr "Sdílet" - -#: include/conversation.php:1212 mod/wallmessage.php:139 mod/editpost.php:72 -#: mod/message.php:258 mod/message.php:439 -msgid "Upload photo" -msgstr "Nahrát fotku" - -#: include/conversation.php:1213 mod/editpost.php:73 -msgid "upload photo" -msgstr "nahrát fotku" - -#: include/conversation.php:1214 mod/editpost.php:74 -msgid "Attach file" -msgstr "Přiložit soubor" - -#: include/conversation.php:1215 mod/editpost.php:75 -msgid "attach file" -msgstr "přiložit soubor" - -#: include/conversation.php:1216 src/Module/Item/Compose.php:179 -#: src/Object/Post.php:880 -msgid "Bold" -msgstr "Tučné" - -#: include/conversation.php:1217 src/Module/Item/Compose.php:180 -#: src/Object/Post.php:881 -msgid "Italic" -msgstr "Kurziva" - -#: include/conversation.php:1218 src/Module/Item/Compose.php:181 -#: src/Object/Post.php:882 -msgid "Underline" -msgstr "Podtržené" - -#: include/conversation.php:1219 src/Module/Item/Compose.php:182 -#: src/Object/Post.php:883 -msgid "Quote" -msgstr "Citace" - -#: include/conversation.php:1220 src/Module/Item/Compose.php:183 -#: src/Object/Post.php:884 -msgid "Code" -msgstr "Kód" - -#: include/conversation.php:1221 src/Module/Item/Compose.php:184 -#: src/Object/Post.php:885 -msgid "Image" -msgstr "Obrázek" - -#: include/conversation.php:1222 src/Module/Item/Compose.php:185 -#: src/Object/Post.php:886 -msgid "Link" -msgstr "Odkaz" - -#: include/conversation.php:1223 src/Module/Item/Compose.php:186 -#: src/Object/Post.php:887 -msgid "Link or Media" -msgstr "Odkaz nebo média" - -#: include/conversation.php:1224 mod/editpost.php:82 -#: src/Module/Item/Compose.php:189 -msgid "Set your location" -msgstr "Nastavit vaši polohu" - -#: include/conversation.php:1225 mod/editpost.php:83 -msgid "set location" -msgstr "nastavit polohu" - -#: include/conversation.php:1226 mod/editpost.php:84 -msgid "Clear browser location" -msgstr "Vymazat polohu v prohlížeči" - -#: include/conversation.php:1227 mod/editpost.php:85 -msgid "clear location" -msgstr "vymazat polohu" - -#: include/conversation.php:1229 mod/editpost.php:99 -#: src/Module/Item/Compose.php:194 -msgid "Set title" -msgstr "Nastavit nadpis" - -#: include/conversation.php:1231 mod/editpost.php:101 -#: src/Module/Item/Compose.php:195 -msgid "Categories (comma-separated list)" -msgstr "Kategorie (seznam, oddělujte čárkou)" - -#: include/conversation.php:1233 mod/editpost.php:87 -msgid "Permission settings" -msgstr "Nastavení oprávnění" - -#: include/conversation.php:1234 mod/editpost.php:116 -msgid "permissions" -msgstr "oprávnění" - -#: include/conversation.php:1243 mod/editpost.php:96 -msgid "Public post" -msgstr "Veřejný příspěvek" - -#: include/conversation.php:1247 mod/editpost.php:107 mod/photos.php:1433 -#: mod/photos.php:1472 mod/photos.php:1532 mod/events.php:550 -#: src/Module/Item/Compose.php:188 src/Object/Post.php:889 -msgid "Preview" -msgstr "Náhled" - -#: include/conversation.php:1256 -msgid "Post to Groups" -msgstr "Zveřejnit ve skupinách" - -#: include/conversation.php:1257 -msgid "Post to Contacts" -msgstr "Zveřejnit v kontaktech" - -#: include/conversation.php:1258 -msgid "Private post" -msgstr "Soukromý příspěvek" - -#: include/conversation.php:1263 mod/editpost.php:114 -#: src/Model/Profile.php:550 src/Module/Contact.php:301 -msgid "Message" -msgstr "Zpráva" - -#: include/conversation.php:1264 mod/editpost.php:115 -msgid "Browser" -msgstr "Prohlížeč" - -#: include/conversation.php:1536 -msgid "View all" -msgstr "Zobrazit vše" - -#: include/conversation.php:1560 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Líbí se" -msgstr[1] "Líbí se" -msgstr[2] "Líbí se" -msgstr[3] "Líbí se" - -#: include/conversation.php:1563 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Nelíbí se" -msgstr[1] "Nelíbí se" -msgstr[2] "Nelíbí se" -msgstr[3] "Nelíbí se" - -#: include/conversation.php:1569 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Neúčastní se" -msgstr[1] "Neúčastní se" -msgstr[2] "Neúčastní se" -msgstr[3] "Neúčastní se" - -#: include/conversation.php:1572 src/Content/ContactSelector.php:243 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Nerozhodnut" -msgstr[1] "Nerozhodnutí" -msgstr[2] "Nerozhodnutých" -msgstr[3] "Nerozhodnuti" - -#: include/enotify.php:57 -msgid "Friendica Notification" -msgstr "Oznámení Friendica" - -#: include/enotify.php:60 -msgid "Thank You," -msgstr "Děkuji," - -#: include/enotify.php:63 -#, php-format -msgid "%1$s, %2$s Administrator" -msgstr "%1$s, administrátor %2$s" - -#: include/enotify.php:65 -#, php-format -msgid "%s Administrator" -msgstr "Administrátor %s" - -#: include/enotify.php:134 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Oznámení] Obdržena nová zpráva na %s" - -#: include/enotify.php:136 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s vám poslal/a novou soukromou zprávu na %2$s." - -#: include/enotify.php:137 -msgid "a private message" -msgstr "soukromou zprávu" - -#: include/enotify.php:137 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s vám poslal/a %2$s." - -#: include/enotify.php:139 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Pro zobrazení vašich soukromých zpráv a možnost na ně odpovědět prosím navštivte %s." - -#: include/enotify.php:172 -#, php-format -msgid "%1$s tagged you on [url=%2$s]a %3$s[/url]" -msgstr "%1$s vás označil/a na [url=%2$s]%3$s[/url]" - -#: include/enotify.php:178 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s okomentoval/a [url=%2$s]%3$s[/url]" - -#: include/enotify.php:188 -#, php-format -msgid "%1$s tagged you on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s vás označil/a na [url=%2$s]%3$s uživatele %4$s[/url]" - -#: include/enotify.php:195 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s okomentoval/a [url=%2$s]%4$s od %3$s[/url]" - -#: include/enotify.php:207 -#, php-format -msgid "%1$s tagged you on [url=%2$s]your %3$s[/url]" -msgstr "%1$s vás označil/a na [url=%2$s]vašem %3$s[/url]" - -#: include/enotify.php:213 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s okomentoval/a [url=%2$s]váš/vaši %3$s[/url]" - -#: include/enotify.php:224 -#, php-format -msgid "%1$s tagged you on [url=%2$s]their %3$s[/url]" -msgstr "%1$s vás označil/a na [url=%2$s]jeho/její %3$s[/url]" - -#: include/enotify.php:230 -#, php-format -msgid "%1$s commented on [url=%2$s]their %3$s[/url]" -msgstr "%1$s okomentoval/a [url=%2$s]svůj %3$s[/url]" - -#: include/enotify.php:243 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Oznámení] %s vás označil/a" - -#: include/enotify.php:245 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s vás označil/a na %2$s" - -#: include/enotify.php:247 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Oznámení] Komentář ke konverzaci #%1$d od %2$s" - -#: include/enotify.php:249 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s okomentoval/a vámi sledovanou položku/konverzaci." - -#: include/enotify.php:254 include/enotify.php:269 include/enotify.php:284 -#: include/enotify.php:303 include/enotify.php:319 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět." - -#: include/enotify.php:261 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Oznámení] %s přidal/a příspěvek na vaši profilovou zeď" - -#: include/enotify.php:263 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s přidal/a příspěvek na vaši profilovou zeď na %2$s" - -#: include/enotify.php:264 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s přidal/a příspěvek na [url=%2$s]vaši zeď[/url]" - -#: include/enotify.php:276 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica:Oznámení] %s sdílel/a nový příspěvek" - -#: include/enotify.php:278 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s sdílel/a nový příspěvek na %2$s" - -#: include/enotify.php:279 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]sdílel/a příspěvek[/url]." - -#: include/enotify.php:291 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Oznámení] %1$s vás šťouchnul/a" - -#: include/enotify.php:293 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s vás šťouchnul/a na %2$s" - -#: include/enotify.php:294 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]vás šťouchnul/a[/url]." - -#: include/enotify.php:311 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Oznámení] %s označil/a váš příspěvek" - -#: include/enotify.php:313 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s označil/a váš příspěvek na %2$s" - -#: include/enotify.php:314 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s označil/a [url=%2$s]váš příspěvek[/url]" - -#: include/enotify.php:326 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Oznámení] Obdrženo představení" - -#: include/enotify.php:328 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Obdržel/a jste představení od uživatele „%1$s“ na %2$s" - -#: include/enotify.php:329 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Obdržel/a jste [url=%1$s]představení[/url] od uživatele %2$s." - -#: include/enotify.php:334 include/enotify.php:380 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Můžete navštívit jeho/její profil na %s" - -#: include/enotify.php:336 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Prosím navštivte %s pro schválení či zamítnutí představení." - -#: include/enotify.php:343 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "[Friendica:Oznámení] Nový člověk s vámi sdílí" - -#: include/enotify.php:345 include/enotify.php:346 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "Uživatel %1$s s vámi sdílí na %2$s" - -#: include/enotify.php:353 -msgid "[Friendica:Notify] You have a new follower" -msgstr "[Friendica:Oznámení] Máte nového sledujícího" - -#: include/enotify.php:355 include/enotify.php:356 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "Máte nového sledujícího na %2$s: %1$s" - -#: include/enotify.php:369 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Oznámení] Obdržen návrh přátelství" - -#: include/enotify.php:371 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Obdržel/a jste návrh přátelství od uživatele „%1$s“ na %2$s" - -#: include/enotify.php:372 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Obdržel/a jste [url=%1$s]návrh přátelství[/url] s uživatelem %2$s od uživatele %3$s." - -#: include/enotify.php:378 -msgid "Name:" -msgstr "Jméno:" - -#: include/enotify.php:379 -msgid "Photo:" -msgstr "Fotka:" - -#: include/enotify.php:382 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Prosím navštivte %s pro schválení či zamítnutí návrhu." - -#: include/enotify.php:390 include/enotify.php:405 -msgid "[Friendica:Notify] Connection accepted" -msgstr "[Friendica:Oznámení] Spojení přijato" - -#: include/enotify.php:392 include/enotify.php:407 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "„%1$s“ přijal/a váš požadavek o spojení na %2$s" - -#: include/enotify.php:393 include/enotify.php:408 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "%2$s přijal/a váš [url=%1$s]požadavek o spojení[/url]." - -#: include/enotify.php:398 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and " -"email without restriction." -msgstr "Jste nyní vzájemní přátelé a můžete si vyměňovat stavové zprávy, fotky a e-maily bez omezení." - -#: include/enotify.php:400 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Pokud chcete provést změny s tímto vztahem, prosím navštivte %s." - -#: include/enotify.php:413 -#, php-format -msgid "" -"'%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." -msgstr "„%1$s“ se rozhodl/a vás přijmout jako fanouška, což omezuje některé formy komunikace - například soukoromé zprávy a některé interakce s profily. Pokud je toto stránka celebrity či komunity, byla tato nastavení aplikována automaticky." - -#: include/enotify.php:415 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future." -msgstr "„%1$s“ se může rozhodnout tento vztah v budoucnosti rozšířit do oboustranného či jiného liberálnějšího vztahu." - -#: include/enotify.php:417 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Prosím navštivte %s pokud chcete změnit tento vztah." - -#: include/enotify.php:427 mod/removeme.php:46 -msgid "[Friendica System Notify]" -msgstr "[Systémové oznámení Friendica]" - -#: include/enotify.php:427 -msgid "registration request" -msgstr "požadavek o registraci" - -#: include/enotify.php:429 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "Obdržel/a jste požadavek o registraci od uživatele „%1$s“ na %2$s" - -#: include/enotify.php:430 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "Obdržel/a jste [url=%1$s]požadavek o registraci[/url] od uživatele %2$s." - -#: include/enotify.php:435 -#, php-format -msgid "" -"Full Name:\t%s\n" -"Site Location:\t%s\n" -"Login Name:\t%s (%s)" -msgstr "Celé jméno:\t\t%s\nAdresa stránky:\t\t%s\nPřihlašovací jméno:\t%s (%s)" - -#: include/enotify.php:441 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku." - -#: mod/api.php:84 mod/api.php:106 -msgid "Authorize application connection" -msgstr "Povolit připojení aplikacím" - -#: mod/api.php:85 -msgid "Return to your app and insert this Securty Code:" -msgstr "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:" - -#: mod/api.php:94 src/Module/BaseAdminModule.php:56 -msgid "Please login to continue." -msgstr "Pro pokračování se prosím přihlaste." - -#: mod/api.php:108 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?" - -#: mod/api.php:110 mod/profiles.php:526 mod/profiles.php:530 -#: mod/profiles.php:551 mod/dfrn_request.php:640 mod/follow.php:163 -#: mod/settings.php:1089 mod/settings.php:1095 mod/settings.php:1102 -#: mod/settings.php:1106 mod/settings.php:1110 mod/settings.php:1114 -#: mod/settings.php:1118 mod/settings.php:1122 mod/settings.php:1142 -#: mod/settings.php:1143 mod/settings.php:1144 mod/settings.php:1145 -#: mod/settings.php:1146 src/Module/Register.php:98 -msgid "No" -msgstr "Ne" - -#: mod/delegate.php:42 -msgid "Parent user not found." -msgstr "Rodičovský uživatel nenalezen." - -#: mod/delegate.php:149 -msgid "No parent user" -msgstr "Žádný rodičovský uživatel" - -#: mod/delegate.php:164 -msgid "Parent Password:" -msgstr "Rodičovské heslo:" - -#: mod/delegate.php:164 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "Prosím vložte heslo rodičovského účtu k legitimizaci vašeho požadavku." - -#: mod/delegate.php:171 -msgid "Parent User" -msgstr "Rodičovský uživatel" - -#: mod/delegate.php:174 -msgid "" -"Parent users have total control about this account, including the account " -"settings. Please double check whom you give this access." -msgstr "Rodičovští uživatelé mají naprostou kontrolu nad tímto účtem, včetně nastavení účtu. Prosím překontrolujte, komu tento přístup dáváte." - -#: mod/delegate.php:175 mod/settings.php:677 mod/settings.php:784 -#: mod/settings.php:874 mod/settings.php:953 mod/settings.php:1178 -#: src/Module/Admin/Addons/Index.php:52 src/Module/Admin/Features.php:69 -#: src/Module/Admin/Logs/Settings.php:65 src/Module/Admin/Themes/Index.php:97 -#: src/Module/Admin/Tos.php:50 src/Module/Admin/Site.php:568 -msgid "Save Settings" -msgstr "Uložit nastavení" - -#: mod/delegate.php:176 src/Content/Nav.php:263 -msgid "Delegate Page Management" -msgstr "Správa delegátů stránky" - -#: mod/delegate.php:177 -msgid "Delegates" -msgstr "Delegáti" - -#: mod/delegate.php:179 -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 "Delegáti jsou schopni řídit všechny aspekty tohoto účtu/stránky, kromě základních nastavení účtu. Prosím, nedelegujte svůj osobní účet nikomu, komu zcela nedůvěřujete." - -#: mod/delegate.php:180 -msgid "Existing Page Delegates" -msgstr "Stávající delegáti stránky " - -#: mod/delegate.php:182 -msgid "Potential Delegates" -msgstr "Potenciální delegáti" - -#: mod/delegate.php:184 mod/tagrm.php:114 -msgid "Remove" -msgstr "Odstranit" - -#: mod/delegate.php:185 -msgid "Add" -msgstr "Přidat" - -#: mod/delegate.php:186 -msgid "No entries." -msgstr "Žádné záznamy." - -#: mod/oexchange.php:32 -msgid "Post successful." -msgstr "Příspěvek úspěšně odeslán" - -#: mod/ostatus_subscribe.php:23 -msgid "Subscribing to OStatus contacts" -msgstr "Registruji Vás ke kontaktům OStatus" - -#: mod/ostatus_subscribe.php:35 -msgid "No contact provided." -msgstr "Nebyl poskytnut žádný kontakt." - -#: mod/ostatus_subscribe.php:42 -msgid "Couldn't fetch information for contact." -msgstr "Nelze načíst informace pro kontakt." - -#: mod/ostatus_subscribe.php:52 -msgid "Couldn't fetch friends for contact." -msgstr "Nelze načíst přátele pro kontakt." - -#: mod/ostatus_subscribe.php:70 mod/repair_ostatus.php:52 -msgid "Done" -msgstr "Hotovo" - -#: mod/ostatus_subscribe.php:84 -msgid "success" -msgstr "úspěch" - -#: mod/ostatus_subscribe.php:86 -msgid "failed" -msgstr "selhalo" - -#: mod/ostatus_subscribe.php:89 src/Object/Post.php:285 -msgid "ignored" -msgstr "ignorován" - -#: mod/ostatus_subscribe.php:94 mod/repair_ostatus.php:58 -msgid "Keep this window open until done." -msgstr "Toto okno nechte otevřené až do konce." - -#: mod/profperm.php:30 -msgid "Permission denied" -msgstr "Nedostatečné oprávnění" - -#: mod/profperm.php:36 mod/profperm.php:69 -msgid "Invalid profile identifier." -msgstr "Neplatný identifikátor profilu." - -#: mod/profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Editor viditelnosti profilu " - -#: mod/profperm.php:117 view/theme/frio/theme.php:268 src/Content/Nav.php:161 -#: src/Model/Profile.php:889 src/Model/Profile.php:925 -#: src/Module/Welcome.php:38 src/Module/Contact.php:618 -#: src/Module/Contact.php:847 -msgid "Profile" -msgstr "Profil" - -#: mod/profperm.php:119 src/Module/Group.php:321 -msgid "Click on a contact to add or remove." -msgstr "Klikněte na kontakt pro přidání nebo odebrání" - -#: mod/profperm.php:128 -msgid "Visible To" -msgstr "Viditelný uživatelům" - -#: mod/profperm.php:144 -msgid "All Contacts (with secure profile access)" -msgstr "Všem kontaktům (se zabezpečeným přístupem k profilu)" - -#: mod/regmod.php:53 -msgid "Account approved." -msgstr "Účet schválen." - -#: mod/regmod.php:77 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrace zrušena pro %s" - -#: mod/regmod.php:84 -msgid "Please login." -msgstr "Přihlaste se, prosím." - -#: mod/removeme.php:46 -msgid "User deleted their account" -msgstr "Uživatel si smazal účet" - -#: mod/removeme.php:47 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "Uživatel na vašem serveru Friendica smazal svůj účet. Prosím ujistěte se, ře jsou jeho data odstraněna ze záloh dat." - -#: mod/removeme.php:48 -#, php-format -msgid "The user id is %d" -msgstr "Uživatelské ID je %d" - -#: mod/removeme.php:84 mod/removeme.php:87 -msgid "Remove My Account" -msgstr "Odstranit můj účet" - -#: mod/removeme.php:85 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit." - -#: mod/removeme.php:86 -msgid "Please enter your password for verification:" -msgstr "Prosím, zadejte své heslo pro ověření:" - -#: mod/repair_ostatus.php:21 -msgid "Resubscribing to OStatus contacts" -msgstr "Znovu Vás registruji ke kontaktům OStatus" - -#: mod/repair_ostatus.php:37 src/Module/TwoFactor/Verify.php:64 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Chyba" -msgstr[1] "Chyby" -msgstr[2] "Chyb" -msgstr[3] "Chyb" - -#: mod/tagrm.php:31 -msgid "Tag(s) removed" -msgstr "Štítek(ky) odstraněn(y)" - -#: mod/tagrm.php:101 -msgid "Remove Item Tag" -msgstr "Odebrat štítek položky" - -#: mod/tagrm.php:103 -msgid "Select a tag to remove: " -msgstr "Vyberte štítek k odebrání: " - -#: mod/uimport.php:30 -msgid "User imports on closed servers can only be done by an administrator." -msgstr "Importy uživatelů na uzavřených serverech může provést pouze administrátor." - -#: mod/uimport.php:39 src/Module/Register.php:59 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to zítra znovu." - -#: mod/uimport.php:54 src/Module/Register.php:141 -msgid "Import" -msgstr "Import" - -#: mod/uimport.php:56 -msgid "Move account" -msgstr "Přesunout účet" - -#: mod/uimport.php:57 -msgid "You can import an account from another Friendica server." -msgstr "Můžete importovat účet z jiného serveru Friendica." - -#: mod/uimport.php:58 -msgid "" -"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." -msgstr "Musíte exportovat svůj účet na starém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhoval/a." - -#: mod/uimport.php:59 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "Tato vlastnost je experimentální. Nemůžeme importovat kontakty za sítě OStatus (GNU social/StatusNet) nebo z Diaspory" - -#: mod/uimport.php:60 -msgid "Account file" -msgstr "Soubor s účtem" - -#: mod/uimport.php:60 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "K exportu Vašeho účtu jděte na „Nastavení->Exportovat osobní údaje“ a zvolte „Exportovat účet“" - -#: mod/unfollow.php:36 mod/unfollow.php:92 -msgid "You aren't following this contact." -msgstr "Tento kontakt nesledujete." - -#: mod/unfollow.php:46 mod/unfollow.php:98 -msgid "Unfollowing is currently not supported by your network." -msgstr "Zrušení sledování není aktuálně na Vaši síti podporováno." - -#: mod/unfollow.php:67 -msgid "Contact unfollowed" -msgstr "Zrušeno sledování kontaktu" - -#: mod/unfollow.php:118 -msgid "Disconnect/Unfollow" -msgstr "Odpojit se/Zrušit sledování" - -#: mod/unfollow.php:128 mod/dfrn_request.php:647 mod/follow.php:170 -msgid "Your Identity Address:" -msgstr "Vaše adresa identity:" - -#: mod/unfollow.php:131 mod/dfrn_request.php:649 mod/follow.php:76 -msgid "Submit Request" -msgstr "Odeslat požadavek" - -#: mod/unfollow.php:137 mod/follow.php:179 mod/notifications.php:190 -#: mod/notifications.php:282 src/Module/Admin/Blocklist/Contact.php:83 -#: src/Module/Contact.php:603 -msgid "Profile URL" -msgstr "URL profilu" - -#: mod/unfollow.php:147 mod/follow.php:195 src/Model/Profile.php:920 -#: src/Module/Contact.php:842 -msgid "Status Messages and Posts" -msgstr "Stavové zprávy a příspěvky " - -#: mod/update_community.php:23 mod/update_contact.php:23 -#: mod/update_display.php:24 mod/update_network.php:33 mod/update_notes.php:36 -#: mod/update_profile.php:34 -msgid "[Embedded content - reload page to view]" -msgstr "[Vložený obsah - pro zobrazení obnovte stránku]" - -#: mod/wall_attach.php:26 mod/wall_attach.php:33 mod/wall_attach.php:85 -#: mod/wall_upload.php:42 mod/wall_upload.php:58 mod/wall_upload.php:116 -#: mod/wall_upload.php:167 mod/wall_upload.php:170 -msgid "Invalid request." -msgstr "Neplatný požadavek." - -#: mod/wall_attach.php:103 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Omlouváme se, možná je váš soubor větší než je povolené maximum dle nastavení PHP" - -#: mod/wall_attach.php:103 -msgid "Or - did you try to upload an empty file?" -msgstr "Nebo - nenahrával/a jste prázdný soubor?" - -#: mod/wall_attach.php:114 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Velikost souboru přesáhla limit %s" - -#: mod/wall_attach.php:129 -msgid "File upload failed." -msgstr "Nahrání souboru se nezdařilo." - -#: mod/wall_upload.php:198 mod/photos.php:683 mod/photos.php:686 -#: mod/photos.php:715 mod/profile_photo.php:152 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Velikost obrázku překročila limit %s" - -#: mod/wall_upload.php:212 mod/photos.php:738 mod/profile_photo.php:161 -msgid "Unable to process image." -msgstr "Obrázek není možné zprocesovat" - -#: mod/wall_upload.php:243 -msgid "Wall Photos" -msgstr "Fotky na zdi" - -#: mod/wall_upload.php:251 mod/photos.php:767 mod/profile_photo.php:303 -msgid "Image upload failed." -msgstr "Nahrání obrázku selhalo." - -#: mod/wallmessage.php:52 mod/wallmessage.php:115 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena." - -#: mod/wallmessage.php:60 mod/message.php:70 -msgid "No recipient selected." -msgstr "Nevybrán příjemce." - -#: mod/wallmessage.php:63 -msgid "Unable to check your home location." -msgstr "Nebylo možné zjistit polohu vašeho domova." - -#: mod/wallmessage.php:66 mod/message.php:77 -msgid "Message could not be sent." -msgstr "Zprávu se nepodařilo odeslat." - -#: mod/wallmessage.php:69 mod/message.php:80 -msgid "Message collection failure." -msgstr "Sběr zpráv selhal." - -#: mod/wallmessage.php:72 mod/message.php:83 -msgid "Message sent." -msgstr "Zpráva odeslána." - -#: mod/wallmessage.php:89 mod/wallmessage.php:98 -msgid "No recipient." -msgstr "Žádný příjemce." - -#: mod/wallmessage.php:123 mod/message.php:204 mod/message.php:360 -msgid "Please enter a link URL:" -msgstr "Zadejte prosím URL odkaz:" - -#: mod/wallmessage.php:128 mod/message.php:246 -msgid "Send Private Message" -msgstr "Odeslat soukromou zprávu" - -#: mod/wallmessage.php:129 -#, 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 "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů." - -#: mod/wallmessage.php:130 mod/message.php:247 mod/message.php:430 -msgid "To:" -msgstr "Adresát:" - -#: mod/wallmessage.php:131 mod/message.php:251 mod/message.php:432 -msgid "Subject:" -msgstr "Předmět:" - -#: mod/wallmessage.php:137 mod/message.php:255 mod/message.php:435 -#: src/Module/Invite.php:150 -msgid "Your message:" -msgstr "Vaše zpráva:" - -#: mod/wallmessage.php:140 mod/editpost.php:76 mod/message.php:259 -#: mod/message.php:440 -msgid "Insert web link" -msgstr "Vložit webový odkaz" - -#: mod/match.php:49 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do vašeho výchozího profilu." - -#: mod/match.php:102 mod/suggest.php:106 src/Content/Widget.php:42 -#: src/Module/AllFriends.php:91 src/Module/BaseSearchModule.php:131 -msgid "Connect" -msgstr "Spojit se" - -#: mod/match.php:115 src/Content/Pager.php:198 -msgid "first" -msgstr "první" - -#: mod/match.php:120 src/Content/Pager.php:258 -msgid "next" -msgstr "další" - -#: mod/match.php:130 src/Module/BaseSearchModule.php:92 -msgid "No matches" -msgstr "Žádné shody" - -#: mod/match.php:135 -msgid "Profile Match" -msgstr "Shoda profilu" - -#: mod/profiles.php:43 mod/profiles.php:152 mod/profiles.php:196 -#: mod/profiles.php:511 mod/dfrn_confirm.php:70 -msgid "Profile not found." -msgstr "Profil nenalezen." - -#: mod/profiles.php:62 -msgid "Profile deleted." -msgstr "Profil smazán." - -#: mod/profiles.php:78 mod/profiles.php:114 -msgid "Profile-" -msgstr "Profil-" - -#: mod/profiles.php:97 mod/profiles.php:135 -msgid "New profile created." -msgstr "Nový profil vytvořen." - -#: mod/profiles.php:120 -msgid "Profile unavailable to clone." -msgstr "Profil není možné naklonovat." - -#: mod/profiles.php:206 -msgid "Profile Name is required." -msgstr "Jméno profilu je povinné." - -#: mod/profiles.php:346 -msgid "Marital Status" -msgstr "Rodinný stav" - -#: mod/profiles.php:349 -msgid "Romantic Partner" -msgstr "Romatický partner" - -#: mod/profiles.php:358 -msgid "Work/Employment" -msgstr "Práce/Zaměstnání" - -#: mod/profiles.php:361 -msgid "Religion" -msgstr "Náboženství" - -#: mod/profiles.php:364 -msgid "Political Views" -msgstr "Politické přesvědčení" - -#: mod/profiles.php:367 -msgid "Gender" -msgstr "Pohlaví" - -#: mod/profiles.php:370 -msgid "Sexual Preference" -msgstr "Sexuální orientace" - -#: mod/profiles.php:373 -msgid "XMPP" -msgstr "XMPP" - -#: mod/profiles.php:376 -msgid "Homepage" -msgstr "Domovská stránka" - -#: mod/profiles.php:379 mod/profiles.php:578 -msgid "Interests" -msgstr "Zájmy" - -#: mod/profiles.php:382 -msgid "Address" -msgstr "Adresa" - -#: mod/profiles.php:389 mod/profiles.php:574 -msgid "Location" -msgstr "Poloha" - -#: mod/profiles.php:469 -msgid "Profile updated." -msgstr "Profil aktualizován." - -#: mod/profiles.php:523 -msgid "Hide contacts and friends:" -msgstr "Skrýt kontakty a přátele:" - -#: mod/profiles.php:528 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Skrýt u tohoto profilu vaše kontakty/seznam přátel před před dalšími uživateli zobrazující si tento profil?" - -#: mod/profiles.php:548 -msgid "Show more profile fields:" -msgstr "Zobrazit další profilová pole" - -#: mod/profiles.php:560 -msgid "Profile Actions" -msgstr "Akce profilu" - -#: mod/profiles.php:561 -msgid "Edit Profile Details" -msgstr "Upravit podrobnosti profilu " - -#: mod/profiles.php:562 mod/crepair.php:149 mod/fsuggest.php:92 -#: mod/manage.php:183 mod/message.php:261 mod/message.php:441 -#: mod/photos.php:991 mod/photos.php:1101 mod/photos.php:1387 -#: mod/photos.php:1432 mod/photos.php:1471 mod/photos.php:1531 -#: mod/poke.php:184 mod/events.php:552 view/theme/duepuntozero/config.php:72 -#: view/theme/frio/config.php:127 view/theme/quattro/config.php:74 -#: view/theme/vier/config.php:120 src/Module/Debug/Localtime.php:45 -#: src/Module/Invite.php:157 src/Module/Item/Compose.php:178 -#: src/Module/Contact.php:560 src/Module/Install.php:212 -#: src/Module/Install.php:252 src/Module/Install.php:288 -#: src/Object/Post.php:879 -msgid "Submit" -msgstr "Odeslat" - -#: mod/profiles.php:563 -msgid "Change Profile Photo" -msgstr "Změnit profilovou fotku" - -#: mod/profiles.php:565 -msgid "View this profile" -msgstr "Zobrazit tento profil" - -#: mod/profiles.php:566 -msgid "View all profiles" -msgstr "Zobrazit všechny profily" - -#: mod/profiles.php:567 mod/profiles.php:662 src/Model/Profile.php:423 -msgid "Edit visibility" -msgstr "Upravit viditelnost" - -#: mod/profiles.php:568 -msgid "Create a new profile using these settings" -msgstr "Vytvořit nový profil pomocí tohoto nastavení" - -#: mod/profiles.php:569 -msgid "Clone this profile" -msgstr "Klonovat tento profil" - -#: mod/profiles.php:570 -msgid "Delete this profile" -msgstr "Smazat tento profil" - -#: mod/profiles.php:572 -msgid "Basic information" -msgstr "Základní informace" - -#: mod/profiles.php:573 -msgid "Profile picture" -msgstr "Profilový obrázek" - -#: mod/profiles.php:575 -msgid "Preferences" -msgstr "Nastavení" - -#: mod/profiles.php:576 -msgid "Status information" -msgstr "Informace o stavu" - -#: mod/profiles.php:577 -msgid "Additional information" -msgstr "Dodatečné informace" - -#: mod/profiles.php:579 mod/network.php:992 -#: src/Core/NotificationsManager.php:158 -msgid "Personal" -msgstr "Osobní" - -#: mod/profiles.php:580 -msgid "Relation" -msgstr "Vztah" - -#: mod/profiles.php:581 src/Util/Temporal.php:79 src/Util/Temporal.php:81 -msgid "Miscellaneous" -msgstr "Různé" - -#: mod/profiles.php:583 mod/profile_photo.php:246 src/Module/Welcome.php:39 -msgid "Upload Profile Photo" -msgstr "Nahrát profilovou fotku" - -#: mod/profiles.php:584 -msgid "Your Gender:" -msgstr "Vaše pohlaví:" - -#: mod/profiles.php:585 -msgid " Marital Status:" -msgstr " Rodinný stav:" - -#: mod/profiles.php:586 src/Model/Profile.php:808 -msgid "Sexual Preference:" -msgstr "Sexuální orientace:" - -#: mod/profiles.php:587 -msgid "Example: fishing photography software" -msgstr "Příklad: rybaření fotografování software" - -#: mod/profiles.php:592 -msgid "Profile Name:" -msgstr "Jméno profilu:" - -#: mod/profiles.php:592 mod/events.php:510 mod/events.php:542 -msgid "Required" -msgstr "Vyžadováno" - -#: mod/profiles.php:594 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "Toto je váš veřejný profil.
    Ten může být viditelný kýmkoliv na internetu." - -#: mod/profiles.php:595 -msgid "Your Full Name:" -msgstr "Vaše celé jméno:" - -#: mod/profiles.php:596 -msgid "Title/Description:" -msgstr "Název / Popis:" - -#: mod/profiles.php:599 -msgid "Street Address:" -msgstr "Ulice:" - -#: mod/profiles.php:600 -msgid "Locality/City:" -msgstr "Poloha/město:" - -#: mod/profiles.php:601 -msgid "Region/State:" -msgstr "Region / stát:" - -#: mod/profiles.php:602 -msgid "Postal/Zip Code:" -msgstr "PSČ:" - -#: mod/profiles.php:603 -msgid "Country:" -msgstr "Země:" - -#: mod/profiles.php:604 src/Util/Temporal.php:149 -msgid "Age: " -msgstr "Věk: " - -#: mod/profiles.php:607 -msgid "Who: (if applicable)" -msgstr "Kdo: (pokud je možné)" - -#: mod/profiles.php:607 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Příklady: jan123, Jan Novák, jan@priklad.cz" - -#: mod/profiles.php:608 -msgid "Since [date]:" -msgstr "Od [data]:" - -#: mod/profiles.php:610 -msgid "Tell us about yourself..." -msgstr "Řekněte nám něco o sobě..." - -#: mod/profiles.php:611 -msgid "XMPP (Jabber) address:" -msgstr "Adresa XMPP (Jabber):" - -#: mod/profiles.php:611 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." -msgstr "Adresa XMPP bude rozšířena mezi vašimi kontakty, aby vás mohly sledovat." - -#: mod/profiles.php:612 -msgid "Homepage URL:" -msgstr "Odkaz na domovskou stránku:" - -#: mod/profiles.php:613 src/Model/Profile.php:816 -msgid "Hometown:" -msgstr "Rodné město:" - -#: mod/profiles.php:614 src/Model/Profile.php:824 -msgid "Political Views:" -msgstr "Politické přesvědčení:" - -#: mod/profiles.php:615 -msgid "Religious Views:" -msgstr "Náboženské přesvědčení:" - -#: mod/profiles.php:616 -msgid "Public Keywords:" -msgstr "Veřejná klíčová slova:" - -#: mod/profiles.php:616 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)" - -#: mod/profiles.php:617 -msgid "Private Keywords:" -msgstr "Soukromá klíčová slova:" - -#: mod/profiles.php:617 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)" - -#: mod/profiles.php:618 src/Model/Profile.php:840 -msgid "Likes:" -msgstr "Líbí se:" - -#: mod/profiles.php:619 src/Model/Profile.php:844 -msgid "Dislikes:" -msgstr "Nelibí se:" - -#: mod/profiles.php:620 -msgid "Musical interests" -msgstr "Hudební vkus" - -#: mod/profiles.php:621 -msgid "Books, literature" -msgstr "Knihy, literatura" - -#: mod/profiles.php:622 -msgid "Television" -msgstr "Televize" - -#: mod/profiles.php:623 -msgid "Film/dance/culture/entertainment" -msgstr "Film/tanec/kultura/zábava" - -#: mod/profiles.php:624 -msgid "Hobbies/Interests" -msgstr "Koníčky/zájmy" - -#: mod/profiles.php:625 -msgid "Love/romance" -msgstr "Láska/romantika" - -#: mod/profiles.php:626 -msgid "Work/employment" -msgstr "Práce/zaměstnání" - -#: mod/profiles.php:627 -msgid "School/education" -msgstr "Škola/vzdělání" - -#: mod/profiles.php:628 -msgid "Contact information and Social Networks" -msgstr "Kontaktní informace a sociální sítě" - -#: mod/profiles.php:659 src/Model/Profile.php:419 -msgid "Profile Image" -msgstr "Profilový obrázek" - -#: mod/profiles.php:661 src/Model/Profile.php:422 -msgid "visible to everybody" -msgstr "viditelné pro všechny" - -#: mod/profiles.php:668 -msgid "Edit/Manage Profiles" -msgstr "Upravit/spravovat profily" - -#: mod/profiles.php:669 src/Model/Profile.php:409 src/Model/Profile.php:430 -msgid "Change profile photo" -msgstr "Změnit profilovou fotku" - -#: mod/profiles.php:670 src/Model/Profile.php:410 -msgid "Create New Profile" -msgstr "Vytvořit nový profil" - -#: mod/cal.php:34 mod/cal.php:38 mod/community.php:40 mod/follow.php:20 -#: src/Module/Debug/ItemBody.php:18 -msgid "Access denied." -msgstr "Přístup odmítnut." - -#: mod/cal.php:140 mod/display.php:303 src/Module/Profile.php:185 -msgid "Access to this profile has been restricted." -msgstr "Přístup na tento profil byl omezen." - -#: mod/cal.php:271 mod/events.php:383 view/theme/frio/theme.php:271 -#: view/theme/frio/theme.php:275 src/Content/Nav.php:164 -#: src/Content/Nav.php:228 src/Model/Profile.php:953 src/Model/Profile.php:964 -msgid "Events" -msgstr "Události" - -#: mod/cal.php:272 mod/events.php:384 -msgid "View" -msgstr "Zobrazit" - -#: mod/cal.php:273 mod/events.php:386 -msgid "Previous" -msgstr "Předchozí" - -#: mod/cal.php:274 mod/events.php:387 src/Module/Install.php:174 -msgid "Next" -msgstr "Dále" - -#: mod/cal.php:277 mod/events.php:392 src/Model/Event.php:428 -msgid "today" -msgstr "dnes" - -#: mod/cal.php:278 mod/events.php:393 src/Util/Temporal.php:314 -#: src/Model/Event.php:429 -msgid "month" -msgstr "měsíc" - -#: mod/cal.php:279 mod/events.php:394 src/Util/Temporal.php:315 -#: src/Model/Event.php:430 -msgid "week" -msgstr "týden" - -#: mod/cal.php:280 mod/events.php:395 src/Util/Temporal.php:316 -#: src/Model/Event.php:431 -msgid "day" -msgstr "den" - -#: mod/cal.php:281 mod/events.php:396 -msgid "list" -msgstr "seznam" - -#: mod/cal.php:294 src/Model/User.php:384 src/Console/NewPassword.php:88 -msgid "User not found" -msgstr "Uživatel nenalezen." - -#: mod/cal.php:310 -msgid "This calendar format is not supported" -msgstr "Tento formát kalendáře není podporován." - -#: mod/cal.php:312 -msgid "No exportable data found" -msgstr "Nenalezena žádná data pro export" - -#: mod/cal.php:329 -msgid "calendar" -msgstr "kalendář" - -#: mod/common.php:90 -msgid "No contacts in common." -msgstr "Žádné společné kontakty." - -#: mod/common.php:141 src/Module/Contact.php:870 -msgid "Common Friends" -msgstr "Společní přátelé" - -#: mod/community.php:33 mod/dfrn_request.php:597 mod/photos.php:850 -#: mod/search.php:87 mod/search.php:93 mod/videos.php:118 mod/display.php:201 -#: src/Module/Debug/Probe.php:20 src/Module/Debug/WebFinger.php:19 -#: src/Module/Directory.php:30 -msgid "Public access denied." -msgstr "Veřejný přístup odepřen." - -#: mod/community.php:76 -msgid "Community option not available." -msgstr "Možnost komunity není dostupná." - -#: mod/community.php:93 -msgid "Not available." -msgstr "Není k dispozici." - -#: mod/community.php:103 -msgid "Local Community" -msgstr "Místní komunita" - -#: mod/community.php:106 -msgid "Posts from local users on this server" -msgstr "Příspěvky od místních uživatelů na tomto serveru" - -#: mod/community.php:114 -msgid "Global Community" -msgstr "Globální komunita" - -#: mod/community.php:117 -msgid "Posts from users of the whole federated network" -msgstr "Příspěvky od uživatelů z celé federované sítě" - -#: mod/community.php:163 mod/search.php:222 -msgid "No results." -msgstr "Žádné výsledky." - -#: mod/community.php:215 -msgid "" -"This community stream shows all public posts received by this node. They may" -" not reflect the opinions of this node’s users." -msgstr "Tento komunitní proud ukazuje všechny veřejné příspěvky, které tento server přijme. Nemusí odrážet názory uživatelů serveru." - -#: mod/crepair.php:79 -msgid "Contact settings applied." -msgstr "Nastavení kontaktu změněno" - -#: mod/crepair.php:81 -msgid "Contact update failed." -msgstr "Aktualizace kontaktu selhala." - -#: mod/crepair.php:102 mod/dfrn_confirm.php:125 mod/fsuggest.php:32 -#: mod/fsuggest.php:75 mod/redir.php:32 mod/redir.php:140 -#: src/Module/FollowConfirm.php:46 src/Module/Group.php:92 -msgid "Contact not found." -msgstr "Kontakt nenalezen." - -#: mod/crepair.php:115 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "VAROVÁNÍ: Toto je velmi pokročilé a pokud zadáte nesprávné informace, vaše komunikace s tímto kontaktem může přestat fungovat." - -#: mod/crepair.php:116 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Prosím použijte ihned v prohlížeči tlačítko „zpět“ pokud si nejste jisti, co dělat na této stránce." - -#: mod/crepair.php:130 mod/crepair.php:132 -msgid "No mirroring" -msgstr "Žádné zrcadlení" - -#: mod/crepair.php:130 -msgid "Mirror as forwarded posting" -msgstr "Zrcadlit pro přeposlané příspěvky" - -#: mod/crepair.php:130 mod/crepair.php:132 -msgid "Mirror as my own posting" -msgstr "Zrcadlit jako mé vlastní příspěvky" - -#: mod/crepair.php:145 -msgid "Return to contact editor" -msgstr "Zpět k editoru kontaktu" - -#: mod/crepair.php:147 -msgid "Refetch contact data" -msgstr "Znovu načíst data kontaktu" - -#: mod/crepair.php:150 -msgid "Remote Self" -msgstr "Vzdálené zrcadlení" - -#: mod/crepair.php:153 -msgid "Mirror postings from this contact" -msgstr "Zrcadlení příspěvků od tohoto kontaktu" - -#: mod/crepair.php:155 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Označit tento kontakt jako „remote_self“, s tímto nastavením bude Friendica znovupublikovat všechny nové příspěvky od tohoto kontaktu." - -#: mod/crepair.php:159 mod/settings.php:679 mod/settings.php:705 -#: src/Module/Admin/Blocklist/Contact.php:73 src/Module/Admin/Users.php:272 -#: src/Module/Admin/Users.php:283 src/Module/Admin/Users.php:297 -#: src/Module/Admin/Users.php:313 -msgid "Name" -msgstr "Jméno" - -#: mod/crepair.php:160 -msgid "Account Nickname" -msgstr "Přezdívka účtu" - -#: mod/crepair.php:161 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@jménoštítku- upřednostněno před jménem/přezdívkou" - -#: mod/crepair.php:162 -msgid "Account URL" -msgstr "URL adresa účtu" - -#: mod/crepair.php:163 -msgid "Account URL Alias" -msgstr "Alias URL adresy účtu" - -#: mod/crepair.php:164 -msgid "Friend Request URL" -msgstr "URL požadavku o přátelství" - -#: mod/crepair.php:165 -msgid "Friend Confirm URL" -msgstr "URL adresa pro potvrzení přátelství" - -#: mod/crepair.php:166 -msgid "Notification Endpoint URL" -msgstr "URL adresa koncového bodu oznámení" - -#: mod/crepair.php:167 -msgid "Poll/Feed URL" -msgstr "URL adresa poll/feed" - -#: mod/crepair.php:168 -msgid "New photo from this URL" -msgstr "Nová fotka z této URL adresy" - -#: mod/dfrn_confirm.php:126 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "To se může občas stát, pokud bylo o kontaktování požádáno oběma osobami a již bylo schváleno." - -#: mod/dfrn_confirm.php:227 -msgid "Response from remote site was not understood." -msgstr "Odpověď ze vzdáleného serveru nebyla srozumitelná." - -#: mod/dfrn_confirm.php:234 mod/dfrn_confirm.php:240 -msgid "Unexpected response from remote site: " -msgstr "Neočekávaná odpověď od vzdáleného serveru:" - -#: mod/dfrn_confirm.php:249 -msgid "Confirmation completed successfully." -msgstr "Potvrzení úspěšně dokončena." - -#: mod/dfrn_confirm.php:261 -msgid "Temporary failure. Please wait and try again." -msgstr "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu." - -#: mod/dfrn_confirm.php:264 -msgid "Introduction failed or was revoked." -msgstr "Žádost o propojení selhala nebo byla zrušena." - -#: mod/dfrn_confirm.php:269 -msgid "Remote site reported: " -msgstr "Vzdálený server oznámil:" - -#: mod/dfrn_confirm.php:374 -#, php-format -msgid "No user record found for '%s' " -msgstr "Pro „%s“ nenalezen žádný uživatelský záznam " - -#: mod/dfrn_confirm.php:384 -msgid "Our site encryption key is apparently messed up." -msgstr "Náš šifrovací klíč zřejmě přestal správně fungovat." - -#: mod/dfrn_confirm.php:395 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat." - -#: mod/dfrn_confirm.php:411 -msgid "Contact record was not found for you on our site." -msgstr "Záznam kontaktu pro vás nebyl na našich stránkách nalezen." - -#: mod/dfrn_confirm.php:425 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "V adresáři není k dispozici veřejný klíč pro URL %s." - -#: mod/dfrn_confirm.php:441 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "ID poskytnuté vaším systémem je duplikát ID na našem systému. Mělo by fungovat, pokud to zkusíte znovu." - -#: mod/dfrn_confirm.php:452 -msgid "Unable to set your contact credentials on our system." -msgstr "Nelze nastavit vaše přihlašovací údaje v našem systému." - -#: mod/dfrn_confirm.php:508 -msgid "Unable to update your contact profile details on our system" -msgstr "Nelze aktualizovat váš profil v našem systému" - -#: mod/dfrn_confirm.php:538 mod/dfrn_request.php:560 -#: src/Model/Contact.php:2551 -msgid "[Name Withheld]" -msgstr "[Jméno odepřeno]" - -#: mod/dfrn_poll.php:125 mod/dfrn_poll.php:530 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s vítá uživatele %2$s" - -#: mod/dfrn_request.php:98 -msgid "This introduction has already been accepted." -msgstr "Toto pozvání již bylo přijato." - -#: mod/dfrn_request.php:116 mod/dfrn_request.php:354 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Adresa profilu není platná nebo neobsahuje profilové informace" - -#: mod/dfrn_request.php:120 mod/dfrn_request.php:358 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka" - -#: mod/dfrn_request.php:123 mod/dfrn_request.php:361 -msgid "Warning: profile location has no profile photo." -msgstr "Varování: umístění profilu nemá žádnou profilovou fotku." - -#: mod/dfrn_request.php:127 mod/dfrn_request.php:365 -#, 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 požadovaný parametr nebyl nalezen na daném umístění" -msgstr[1] "%d požadované parametry nebyly nalezeny na daném umístění" -msgstr[2] "%d požadovaného parametru nebylo nalezeno na daném umístění" -msgstr[3] "%d požadovaných parametrů nebylo nalezeno na daném umístění" - -#: mod/dfrn_request.php:165 -msgid "Introduction complete." -msgstr "Představení dokončeno." - -#: mod/dfrn_request.php:201 -msgid "Unrecoverable protocol error." -msgstr "Neopravitelná chyba protokolu" - -#: mod/dfrn_request.php:228 -msgid "Profile unavailable." -msgstr "Profil není k dispozici." - -#: mod/dfrn_request.php:249 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s dnes obdržel/a příliš mnoho požadavků o spojení." - -#: mod/dfrn_request.php:250 -msgid "Spam protection measures have been invoked." -msgstr "Ochrana proti spamu byla aktivována" - -#: mod/dfrn_request.php:251 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Přátelům se doporučuje to zkusit znovu za 24 hodin." - -#: mod/dfrn_request.php:275 -msgid "Invalid locator" -msgstr "Neplatný odkaz" - -#: mod/dfrn_request.php:311 -msgid "You have already introduced yourself here." -msgstr "Již jste se zde představil/a." - -#: mod/dfrn_request.php:314 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Zřejmě jste s %s již přátelé." - -#: mod/dfrn_request.php:334 -msgid "Invalid profile URL." -msgstr "Neplatné URL profilu." - -#: mod/dfrn_request.php:340 src/Model/Contact.php:2182 -msgid "Disallowed profile URL." -msgstr "Nepovolené URL profilu." - -#: mod/dfrn_request.php:346 src/Model/Contact.php:2187 -#: src/Module/Friendica.php:59 -msgid "Blocked domain" -msgstr "Zablokovaná doména" - -#: mod/dfrn_request.php:413 src/Module/Contact.php:143 -msgid "Failed to update contact record." -msgstr "Nepodařilo se aktualizovat kontakt." - -#: mod/dfrn_request.php:433 -msgid "Your introduction has been sent." -msgstr "Vaše představení bylo odesláno." - -#: mod/dfrn_request.php:471 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "Vzdálený odběr nemůže být na vaší síti proveden. Prosím, přihlaste se k odběru přímo na vašem systému." - -#: mod/dfrn_request.php:487 -msgid "Please login to confirm introduction." -msgstr "Pro potvrzení představení se prosím přihlaste." - -#: mod/dfrn_request.php:495 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Jste přihlášen/a pod nesprávnou identitou. Prosím, přihlaste se do tohoto profilu." - -#: mod/dfrn_request.php:509 mod/dfrn_request.php:524 -msgid "Confirm" -msgstr "Potvrdit" - -#: mod/dfrn_request.php:520 -msgid "Hide this contact" -msgstr "Skrýt tento kontakt" - -#: mod/dfrn_request.php:522 -#, php-format -msgid "Welcome home %s." -msgstr "Vítejte doma, %s." - -#: mod/dfrn_request.php:523 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Prosím potvrďte váš požadavek o spojení uživateli %s." - -#: mod/dfrn_request.php:632 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Prosím zadejte vaši „adresu identity“ jedné z následujících podporovaných komunikačních sítí:" - -#: mod/dfrn_request.php:634 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow " -"this link to find a public Friendica site and join us today." -msgstr "Pokud ještě nejste členem svobodného sociálního webu, klikněte na tento odkaz, najděte si veřejný server Friendica a připojte se k nám ještě dnes." - -#: mod/dfrn_request.php:637 -msgid "Friend/Connection Request" -msgstr "Požadavek o přátelství/spojení" - -#: mod/dfrn_request.php:638 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@gnusocial.de" -msgstr "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de" - -#: mod/dfrn_request.php:639 mod/follow.php:162 -msgid "Please answer the following:" -msgstr "Odpovězte, prosím, následující:" - -#: mod/dfrn_request.php:640 mod/follow.php:163 -#, php-format -msgid "Does %s know you?" -msgstr "Zná vás %s?" - -#: mod/dfrn_request.php:641 mod/follow.php:164 -msgid "Add a personal note:" -msgstr "Přidejte osobní poznámku:" - -#: mod/dfrn_request.php:643 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:644 -msgid "GNU Social (Pleroma, Mastodon)" -msgstr "GNU social (Pleroma, Mastodon)" - -#: mod/dfrn_request.php:645 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/dfrn_request.php:646 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - prosím nepoužívejte tento formulář. Místo toho zadejte do vašeho vyhledávacího pole Diaspora %s." - -#: mod/editpost.php:28 mod/editpost.php:38 -msgid "Item not found" -msgstr "Položka nenalezena" - -#: mod/editpost.php:45 -msgid "Edit post" -msgstr "Upravit příspěvek" - -#: mod/editpost.php:71 mod/notes.php:46 src/Content/Text/HTML.php:887 -#: src/Module/Filer/SaveTag.php:49 -msgid "Save" -msgstr "Uložit" - -#: mod/editpost.php:77 -msgid "web link" -msgstr "webový odkaz" - -#: mod/editpost.php:78 -msgid "Insert video link" -msgstr "Vložit odkaz na video" - -#: mod/editpost.php:79 -msgid "video link" -msgstr "odkaz na video" - -#: mod/editpost.php:80 -msgid "Insert audio link" -msgstr "Vložit odkaz na audio" - -#: mod/editpost.php:81 -msgid "audio link" -msgstr "odkaz na audio" - -#: mod/editpost.php:95 src/Core/ACL.php:308 src/Module/Item/Compose.php:200 -msgid "CC: email addresses" -msgstr "Kopie: e-mailové adresy" - -#: mod/editpost.php:102 src/Core/ACL.php:309 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Příklad: jan@priklad.cz, lucie@priklad.cz" - -#: mod/fbrowser.php:43 view/theme/frio/theme.php:269 src/Content/Nav.php:162 -#: src/Model/Profile.php:933 -msgid "Photos" -msgstr "Fotky" - -#: mod/fbrowser.php:52 mod/fbrowser.php:76 mod/photos.php:196 -#: mod/photos.php:973 mod/photos.php:1090 mod/photos.php:1107 -#: mod/photos.php:1584 mod/photos.php:1599 src/Model/Photo.php:574 -#: src/Model/Photo.php:583 -msgid "Contact Photos" -msgstr "Fotky kontaktu" - -#: mod/fbrowser.php:112 mod/fbrowser.php:141 mod/profile_photo.php:247 -msgid "Upload" -msgstr "Nahrát" - -#: mod/fbrowser.php:136 -msgid "Files" -msgstr "Soubory" - -#: mod/follow.php:46 -msgid "The contact could not be added." -msgstr "Kontakt nemohl být přidán." - -#: mod/follow.php:87 -msgid "You already added this contact." -msgstr "Již jste si tento kontakt přidal/a" - -#: mod/follow.php:99 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Podpora pro Diasporu není zapnuta. Kontakt nemůže být přidán." - -#: mod/follow.php:106 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Podpora pro OStatus je vypnnuta. Kontakt nemůže být přidán." - -#: mod/follow.php:113 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "Typ sítě nemohl být detekován. Kontakt nemůže být přidán." - -#: mod/follow.php:183 mod/notifications.php:276 src/Model/Profile.php:820 -#: src/Module/Contact.php:613 -msgid "Tags:" -msgstr "Štítky:" - -#: mod/fsuggest.php:44 -msgid "Suggested contact not found." -msgstr "Navrhovaný kontakt nenalezen." - -#: mod/fsuggest.php:57 -msgid "Friend suggestion sent." -msgstr "Návrh přátelství odeslán. " - -#: mod/fsuggest.php:79 -msgid "Suggest Friends" -msgstr "Navrhnout přátele" - -#: mod/fsuggest.php:81 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Navrhnout přítele pro uživatele %s" - -#: mod/hcard.php:20 -msgid "No profile" -msgstr "Žádný profil" - -#: mod/lockview.php:47 mod/lockview.php:58 -msgid "Remote privacy information not available." -msgstr "Vzdálené informace o soukromí nejsou k dispozici." - -#: mod/lockview.php:67 -msgid "Visible to:" -msgstr "Viditelné pro:" - -#: mod/lockview.php:73 mod/lockview.php:108 src/Content/Widget.php:192 -#: src/Module/Item/Compose.php:97 src/Module/Profile/Contacts.php:126 -#: src/Module/Contact.php:771 -msgid "Followers" -msgstr "Sledovaní" - -#: mod/lockview.php:79 mod/lockview.php:114 src/Module/Item/Compose.php:104 -msgid "Mutuals" -msgstr "Vzájemní" - -#: mod/lostpass.php:26 +#: mod/lostpass.php:40 msgid "No valid account found." msgstr "Nenalezen žádný platný účet." -#: mod/lostpass.php:38 +#: mod/lostpass.php:52 msgid "Password reset request issued. Check your email." msgstr "Požadavek o obnovení hesla vyřízen. Zkontrolujte Vaši e-mailovou schránku." -#: mod/lostpass.php:44 +#: mod/lostpass.php:58 #, php-format msgid "" "\n" @@ -2334,7 +110,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tVážený/á %1$s,\n\t\t\tPřed nedávnem jsme obdrželi na „%2$s“ požadavek o obnovení\n\t\thesla k vašemu účtu. Pro potvrzení tohoto požadavku, prosím klikněte na odkaz\n\t\tpro ověření dole, nebo ho zkopírujte do adresního řádku vašeho prohlížeče.\n\n\t\tPokud jste o tuto změnu NEPOŽÁDAL/A, prosím NEKLIKEJTE na tento odkaz\n\t\ta ignorujte a/nebo smažte tento e-mail. Platnost požadavku brzy vyprší.\n\n\t\tVaše heslo nebude změněno, dokud nedokážeme ověřit, že jste tento\n\t\tpožadavek nevydal/a vy." -#: mod/lostpass.php:55 +#: mod/lostpass.php:69 #, php-format msgid "" "\n" @@ -2351,66 +127,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tKlikněte na tento odkaz brzy pro ověření vaší identity:\n\n\t\t%1$s\n\n\t\tObdržíte poté následnou zprávu obsahující nové heslo.\n\t\tPo přihlášení můžete toto heslo změnit na stránce nastavení vašeho účtu.\n\n\t\tZde jsou vaše přihlašovací detaily:\n\n\t\tAdresa stránky:\t\t%2$s\n\t\tPřihlašovací jméno:\t%3$s" -#: mod/lostpass.php:74 +#: mod/lostpass.php:84 #, php-format msgid "Password reset requested at %s" msgstr "Na %s bylo požádáno o obnovení hesla" -#: mod/lostpass.php:89 +#: mod/lostpass.php:100 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Požadavek nemohl být ověřen. (Možná jste jej odeslal/a již dříve.) Obnovení hesla se nezdařilo." -#: mod/lostpass.php:102 +#: mod/lostpass.php:113 msgid "Request has expired, please make a new one." msgstr "Platnost požadavku vypršela, prosím vytvořte nový." -#: mod/lostpass.php:117 +#: mod/lostpass.php:128 msgid "Forgot your Password?" msgstr "Zapomněl/a jste heslo?" -#: mod/lostpass.php:118 +#: mod/lostpass.php:129 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Zadejte svůj e-mailovou adresu a odešlete pro obnovení vašeho hesla. Poté zkontrolujte svůj e-mail pro další instrukce." -#: mod/lostpass.php:119 src/Module/Login.php:318 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " msgstr "Přezdívka nebo e-mail: " -#: mod/lostpass.php:120 +#: mod/lostpass.php:131 msgid "Reset" msgstr "Obnovit" -#: mod/lostpass.php:135 src/Module/Login.php:330 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 msgid "Password Reset" msgstr "Obnovit heslo" -#: mod/lostpass.php:136 +#: mod/lostpass.php:147 msgid "Your password has been reset as requested." msgstr "Vaše heslo bylo na vaše přání obnoveno." -#: mod/lostpass.php:137 +#: mod/lostpass.php:148 msgid "Your new password is" msgstr "Někdo vám napsal na vaši profilovou stránku" -#: mod/lostpass.php:138 +#: mod/lostpass.php:149 msgid "Save or copy your new password - and then" msgstr "Uložte si nebo zkopírujte nové heslo - a pak" -#: mod/lostpass.php:139 +#: mod/lostpass.php:150 msgid "click here to login" msgstr "klikněte zde pro přihlášení" -#: mod/lostpass.php:140 +#: mod/lostpass.php:151 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)." -#: mod/lostpass.php:147 +#: mod/lostpass.php:155 +msgid "Your password has been reset." +msgstr "" + +#: mod/lostpass.php:158 #, php-format msgid "" "\n" @@ -2421,7 +201,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tVážený/á %1$s,\n\t\t\t\tVaše heslo bylo změněno, jak jste požádal/a. Prosím uchovejte\n\t\t\ttyto informace pro vaše záznamy (nebo si ihned změňte heslo na něco,\n\t\t\tco si zapamatujete).\n\t\t" -#: mod/lostpass.php:153 +#: mod/lostpass.php:164 #, php-format msgid "" "\n" @@ -2435,104 +215,160 @@ msgid "" "\t\t" msgstr "\n\t\t\tZde jsou vaše přihlašovací detaily:\n\n\t\t\tAdresa stránky:\t\t%1$s\n\t\t\tPřihlašovací jméno:\t%2$s\n\t\t\tHeslo:\t\t\t%3$s\n\n\t\t\tToto heslo si po přihlášení můžete změnit na stránce nastavení Vašeho účtu.\n\t\t" -#: mod/lostpass.php:169 +#: mod/lostpass.php:176 #, php-format msgid "Your password has been changed at %s" msgstr "Vaše heslo bylo změněno na %s" -#: mod/manage.php:179 -msgid "Manage Identities and/or Pages" -msgstr "Správa identit a/nebo stránek" - -#: mod/manage.php:180 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Přepínání mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí vaše detaily účtu, nebo kterým jste přidělil/a oprávnění nastavovat přístupová práva." - -#: mod/manage.php:181 -msgid "Select an identity to manage: " -msgstr "Vyberte identitu ke spravování: " - -#: mod/message.php:33 mod/message.php:116 src/Content/Nav.php:257 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 msgid "New Message" msgstr "Nová zpráva" -#: mod/message.php:74 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 +msgid "No recipient selected." +msgstr "Nevybrán příjemce." + +#: mod/message.php:87 msgid "Unable to locate contact information." msgstr "Nepodařilo se najít kontaktní informace." -#: mod/message.php:110 mod/notifications.php:49 mod/notifications.php:198 -#: mod/notifications.php:254 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 +msgid "Message could not be sent." +msgstr "Zprávu se nepodařilo odeslat." + +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 +msgid "Message collection failure." +msgstr "Sběr zpráv selhal." + +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 msgid "Discard" msgstr "Odstranit" -#: mod/message.php:123 view/theme/frio/theme.php:276 src/Content/Nav.php:254 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" msgstr "Zprávy" #: mod/message.php:148 -msgid "Do you really want to delete this message?" -msgstr "Opravdu chcete smazat tuto zprávu?" - -#: mod/message.php:166 msgid "Conversation not found." msgstr "Konverzace nenalezena." -#: mod/message.php:171 -msgid "Message deleted." -msgstr "Zpráva odstraněna." +#: mod/message.php:153 +msgid "Message was not deleted." +msgstr "" -#: mod/message.php:176 mod/message.php:190 -msgid "Conversation removed." -msgstr "Konverzace odstraněna." +#: mod/message.php:168 +msgid "Conversation was not removed." +msgstr "" -#: mod/message.php:289 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 +msgid "Please enter a link URL:" +msgstr "Zadejte prosím URL odkaz:" + +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 +msgid "Send Private Message" +msgstr "Odeslat soukromou zprávu" + +#: mod/message.php:191 mod/message.php:346 +msgid "To:" +msgstr "Adresát:" + +#: mod/message.php:192 mod/message.php:347 +msgid "Subject:" +msgstr "Předmět:" + +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 +msgid "Your message:" +msgstr "Vaše zpráva:" + +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "Nahrát fotku" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "Vložit webový odkaz" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:578 +msgid "Please wait" +msgstr "Čekejte prosím" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:145 +#: src/Module/Install.php:234 src/Module/Install.php:274 +#: src/Module/Install.php:309 src/Module/Invite.php:178 +#: src/Module/Item/Compose.php:189 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Object/Post.php:1095 +#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171 +#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Odeslat" + +#: mod/message.php:223 msgid "No messages." msgstr "Žádné zprávy." -#: mod/message.php:352 +#: mod/message.php:279 msgid "Message not available." msgstr "Zpráva není k dispozici." -#: mod/message.php:406 +#: mod/message.php:323 msgid "Delete message" msgstr "Smazat zprávu" -#: mod/message.php:408 mod/message.php:540 +#: mod/message.php:325 mod/message.php:456 msgid "D, d M Y - g:i A" msgstr "D d. M Y - g:i A" -#: mod/message.php:423 mod/message.php:537 +#: mod/message.php:340 mod/message.php:453 msgid "Delete conversation" msgstr "Odstranit konverzaci" -#: mod/message.php:425 +#: mod/message.php:342 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Není k dispozici zabezpečená komunikace. Možná budete schopen/na reagovat z odesílatelovy profilové stránky." -#: mod/message.php:429 +#: mod/message.php:345 msgid "Send Reply" msgstr "Poslat odpověď" -#: mod/message.php:512 +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "Neznámý odesilatel - %s" -#: mod/message.php:514 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "Vy a %s" -#: mod/message.php:516 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "%s a vy" -#: mod/message.php:543 +#: mod/message.php:459 #, php-format msgid "%d message" msgid_plural "%d messages" @@ -2541,2226 +377,2713 @@ msgstr[1] "%d zprávy" msgstr[2] "%d zprávy" msgstr[3] "%d zpráv" -#: mod/network.php:183 mod/search.php:35 -msgid "Remove term" -msgstr "Odstranit termín" - -#: mod/network.php:190 mod/search.php:44 -msgid "Saved Searches" -msgstr "Uložená hledání" - -#: mod/network.php:191 src/Model/Group.php:483 -msgid "add" -msgstr "přidat" - -#: mod/network.php:571 -#, php-format -msgid "" -"Warning: This group contains %s member from a network that doesn't allow non" -" public messages." -msgid_plural "" -"Warning: This group contains %s members from a network that doesn't allow " -"non public messages." -msgstr[0] "Varování: Tato skupina obsahuje %s člena ze sítě, která nepovoluje posílání soukromých zpráv." -msgstr[1] "Varování: Tato skupina obsahuje %s členy ze sítě, která nepovoluje posílání soukromých zpráv." -msgstr[2] "Varování: Tato skupina obsahuje %s člena ze sítě, která nepovoluje posílání soukromých zpráv." -msgstr[3] "Varování: Tato skupina obsahuje %s členů ze sítě, která nepovoluje posílání soukromých zpráv." - -#: mod/network.php:574 -msgid "Messages in this group won't be send to these receivers." -msgstr "Zprávy v této skupině nebudou těmto příjemcům doručeny." - -#: mod/network.php:641 -msgid "No such group" -msgstr "Žádná taková skupina" - -#: mod/network.php:662 src/Module/Group.php:288 -msgid "Group is empty" -msgstr "Skupina je prázdná" - -#: mod/network.php:666 -#, php-format -msgid "Group: %s" -msgstr "Skupina: %s" - -#: mod/network.php:692 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení." - -#: mod/network.php:695 src/Module/AllFriends.php:35 -#: src/Module/AllFriends.php:43 -msgid "Invalid contact." -msgstr "Neplatný kontakt." - -#: mod/network.php:974 -msgid "Commented Order" -msgstr "Dle komentářů" - -#: mod/network.php:977 -msgid "Sort by Comment Date" -msgstr "Řadit podle data komentáře" - -#: mod/network.php:982 -msgid "Posted Order" -msgstr "Dle data" - -#: mod/network.php:985 -msgid "Sort by Post Date" -msgstr "Řadit podle data příspěvku" - -#: mod/network.php:995 -msgid "Posts that mention or involve you" -msgstr "Příspěvky, které vás zmiňují nebo zahrnují" - -#: mod/network.php:1002 -msgid "New" -msgstr "Nové" - -#: mod/network.php:1005 -msgid "Activity Stream - by date" -msgstr "Proud aktivit - dle data" - -#: mod/network.php:1013 -msgid "Shared Links" -msgstr "Sdílené odkazy" - -#: mod/network.php:1016 -msgid "Interesting Links" -msgstr "Zajímavé odkazy" - -#: mod/network.php:1023 -msgid "Starred" -msgstr "S hvězdou" - -#: mod/network.php:1026 -msgid "Favourite Posts" -msgstr "Oblíbené přízpěvky" - -#: mod/notes.php:34 src/Model/Profile.php:975 +#: mod/notes.php:52 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "Osobní poznámky" -#: mod/photos.php:113 src/Model/Profile.php:936 +#: mod/notes.php:56 +msgid "Personal notes are visible only by yourself." +msgstr "" + +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 +msgid "Save" +msgstr "Uložit" + +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "Uživatel nenalezen." + +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 msgid "Photo Albums" msgstr "Fotoalba" -#: mod/photos.php:114 mod/photos.php:1639 +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 msgid "Recent Photos" msgstr "Nedávné fotky" -#: mod/photos.php:116 mod/photos.php:1152 mod/photos.php:1641 +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 msgid "Upload New Photos" msgstr "Nahrát nové fotky" -#: mod/photos.php:134 mod/settings.php:60 src/Module/BaseSettingsModule.php:18 +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 msgid "everybody" msgstr "Žádost o připojení selhala nebo byla zrušena." -#: mod/photos.php:185 +#: mod/photos.php:159 msgid "Contact information unavailable" msgstr "Kontakt byl zablokován" -#: mod/photos.php:207 +#: mod/photos.php:188 msgid "Album not found." msgstr "Album nenalezeno." -#: mod/photos.php:265 +#: mod/photos.php:244 msgid "Album successfully deleted" msgstr "Album úspěšně smazáno" -#: mod/photos.php:267 +#: mod/photos.php:246 msgid "Album was empty." msgstr "Album bylo prázdné." -#: mod/photos.php:590 +#: mod/photos.php:277 +msgid "Failed to delete the photo." +msgstr "" + +#: mod/photos.php:545 msgid "a photo" msgstr "fotce" -#: mod/photos.php:590 +#: mod/photos.php:545 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s byl označen ve %2$s uživatelem %3$s" -#: mod/photos.php:689 -msgid "Image upload didn't complete, please try again" -msgstr "Nahrávání obrázku nebylo dokončeno, zkuste to prosím znovu" +#: mod/photos.php:582 src/Module/Conversation/Community.php:159 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Veřejný přístup odepřen." -#: mod/photos.php:692 -msgid "Image file is missing" -msgstr "Chybí soubor obrázku" - -#: mod/photos.php:697 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "Server v tuto chvíli nemůže akceptovat nové nahrané soubory, prosím kontaktujte vašeho administrátora" - -#: mod/photos.php:723 -msgid "Image file is empty." -msgstr "Soubor obrázku je prázdný." - -#: mod/photos.php:855 +#: mod/photos.php:587 msgid "No photos selected" msgstr "Není vybrána žádná fotka" -#: mod/photos.php:947 mod/videos.php:210 -msgid "Access to this item is restricted." -msgstr "Přístup k této položce je omezen." +#: mod/photos.php:721 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "" -#: mod/photos.php:1001 +#: mod/photos.php:728 msgid "Upload Photos" msgstr "Nahrát fotky" -#: mod/photos.php:1005 mod/photos.php:1097 +#: mod/photos.php:732 mod/photos.php:820 msgid "New album name: " msgstr "Název nového alba: " -#: mod/photos.php:1006 +#: mod/photos.php:733 msgid "or select existing album:" msgstr "nebo si vyberte existující album:" -#: mod/photos.php:1007 +#: mod/photos.php:734 msgid "Do not show a status post for this upload" msgstr "Nezobrazovat pro toto nahrání stavovou zprávu" -#: mod/photos.php:1009 mod/photos.php:1383 mod/events.php:555 -#: src/Core/ACL.php:314 +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 msgid "Permissions" msgstr "Oprávnění" -#: mod/photos.php:1023 mod/photos.php:1391 mod/settings.php:1213 -msgid "Show to Groups" -msgstr "Zobrazit ve Skupinách" - -#: mod/photos.php:1024 mod/photos.php:1392 mod/settings.php:1214 -msgid "Show to Contacts" -msgstr "Zobrazit v Kontaktech" - -#: mod/photos.php:1079 +#: mod/photos.php:801 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Opravdu chcete smazat toto fotoalbum a všechny jeho fotky?" -#: mod/photos.php:1081 mod/photos.php:1102 +#: mod/photos.php:802 mod/photos.php:825 msgid "Delete Album" msgstr "Smazat album" -#: mod/photos.php:1108 +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Zrušit" + +#: mod/photos.php:829 msgid "Edit Album" msgstr "Upravit album" -#: mod/photos.php:1109 +#: mod/photos.php:830 msgid "Drop Album" msgstr "Smazat album" -#: mod/photos.php:1114 +#: mod/photos.php:834 msgid "Show Newest First" msgstr "Zobrazit nejprve nejnovější" -#: mod/photos.php:1116 +#: mod/photos.php:836 msgid "Show Oldest First" msgstr "Zobrazit nejprve nejstarší" -#: mod/photos.php:1137 mod/photos.php:1624 +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 msgid "View Photo" msgstr "Zobrazit fotku" -#: mod/photos.php:1174 +#: mod/photos.php:889 msgid "Permission denied. Access to this item may be restricted." msgstr "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen." -#: mod/photos.php:1176 +#: mod/photos.php:891 msgid "Photo not available" msgstr "Fotka není k dispozici" -#: mod/photos.php:1186 +#: mod/photos.php:901 msgid "Do you really want to delete this photo?" msgstr "Opravdu chcete smazat tuto fotku?" -#: mod/photos.php:1188 mod/photos.php:1388 +#: mod/photos.php:902 mod/photos.php:1102 msgid "Delete Photo" msgstr "Smazat fotku" -#: mod/photos.php:1279 +#: mod/photos.php:1000 msgid "View photo" msgstr "Zobrazit fotku" -#: mod/photos.php:1281 +#: mod/photos.php:1002 msgid "Edit photo" msgstr "Upravit fotku" -#: mod/photos.php:1282 +#: mod/photos.php:1003 msgid "Delete photo" msgstr "Smazat fotku" -#: mod/photos.php:1283 +#: mod/photos.php:1004 msgid "Use as profile photo" msgstr "Použít jako profilovou fotku" -#: mod/photos.php:1290 +#: mod/photos.php:1011 msgid "Private Photo" msgstr "Soukromá fotka" -#: mod/photos.php:1296 +#: mod/photos.php:1017 msgid "View Full Size" msgstr "Zobrazit v plné velikosti" -#: mod/photos.php:1356 +#: mod/photos.php:1070 msgid "Tags: " msgstr "Štítky: " -#: mod/photos.php:1359 +#: mod/photos.php:1073 msgid "[Select tags to remove]" msgstr "[Vyberte štítky pro odstranění]" -#: mod/photos.php:1374 +#: mod/photos.php:1088 msgid "New album name" msgstr "Nové jméno alba" -#: mod/photos.php:1375 +#: mod/photos.php:1089 msgid "Caption" msgstr "Titulek" -#: mod/photos.php:1376 +#: mod/photos.php:1090 msgid "Add a Tag" msgstr "Přidat štítek" -#: mod/photos.php:1376 +#: mod/photos.php:1090 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Příklad: @jan, @Lucie_Nováková, @jakub@priklad.cz, #Morava, #taboreni" -#: mod/photos.php:1377 +#: mod/photos.php:1091 msgid "Do not rotate" msgstr "Neotáčet" -#: mod/photos.php:1378 +#: mod/photos.php:1092 msgid "Rotate CW (right)" msgstr "Otáčet po směru hodinových ručiček (doprava)" -#: mod/photos.php:1379 +#: mod/photos.php:1093 msgid "Rotate CCW (left)" msgstr "Otáčet proti směru hodinových ručiček (doleva)" -#: mod/photos.php:1413 src/Object/Post.php:313 -msgid "I like this (toggle)" -msgstr "To se mi líbí (přepínat)" - -#: mod/photos.php:1414 src/Object/Post.php:314 -msgid "I don't like this (toggle)" -msgstr "To se mi nelíbí (přepínat)" - -#: mod/photos.php:1429 mod/photos.php:1468 mod/photos.php:1528 -#: src/Module/Item/Compose.php:176 src/Module/Contact.php:1002 -#: src/Object/Post.php:876 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1092 msgid "This is you" msgstr "Tohle jste vy" -#: mod/photos.php:1431 mod/photos.php:1470 mod/photos.php:1530 -#: src/Object/Post.php:420 src/Object/Post.php:878 +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:572 +#: src/Object/Post.php:1094 msgid "Comment" msgstr "Okomentovat" -#: mod/photos.php:1559 +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1108 +msgid "Preview" +msgstr "Náhled" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1096 +msgid "Loading..." +msgstr "" + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:260 +msgid "Select" +msgstr "Vybrat" + +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 +msgid "Delete" +msgstr "Odstranit" + +#: mod/photos.php:1298 src/Object/Post.php:408 +msgid "Like" +msgstr "" + +#: mod/photos.php:1299 src/Object/Post.php:408 +msgid "I like this (toggle)" +msgstr "To se mi líbí (přepínat)" + +#: mod/photos.php:1300 src/Object/Post.php:409 +msgid "Dislike" +msgstr "" + +#: mod/photos.php:1302 src/Object/Post.php:409 +msgid "I don't like this (toggle)" +msgstr "To se mi nelíbí (přepínat)" + +#: mod/photos.php:1324 msgid "Map" msgstr "Mapa" -#: mod/photos.php:1630 mod/videos.php:287 -msgid "View Album" -msgstr "Zobrazit album" +#: src/App.php:473 +msgid "No system theme config value set." +msgstr "Není nastavena konfigurační hodnota systémového motivu." -#: mod/ping.php:272 -msgid "{0} wants to be your friend" -msgstr "{0} chce být vaším přítelem" +#: src/App.php:580 +msgid "Apologies but the website is unavailable at the moment." +msgstr "" -#: mod/ping.php:288 -msgid "{0} requested registration" -msgstr "{0} požaduje registraci" +#: src/App/Page.php:248 +msgid "Delete this item?" +msgstr "Odstranit tuto položku?" -#: mod/poke.php:177 -msgid "Poke/Prod" -msgstr "Šťouchnout/dloubnout" - -#: mod/poke.php:178 -msgid "poke, prod or do other things to somebody" -msgstr "někoho šťouchnout, dloubnout, nebo mu provést jinou věc" - -#: mod/poke.php:179 -msgid "Recipient" -msgstr "Příjemce" - -#: mod/poke.php:180 -msgid "Choose what you wish to do to recipient" -msgstr "Vyberte, co si přejete příjemci udělat" - -#: mod/poke.php:183 -msgid "Make this post private" -msgstr "Změnit tento příspěvek na soukromý" - -#: mod/profile_photo.php:58 -msgid "Image uploaded but image cropping failed." -msgstr "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo." - -#: mod/profile_photo.php:88 mod/profile_photo.php:97 mod/profile_photo.php:106 -#: mod/profile_photo.php:311 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Nepodařilo se snížit velikost obrázku [%s]." - -#: mod/profile_photo.php:125 +#: src/App/Page.php:249 msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nová fotka nezobrazí okamžitě." +"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 "" -#: mod/profile_photo.php:133 -msgid "Unable to process image" -msgstr "Obrázek nelze zpracovat " - -#: mod/profile_photo.php:244 -msgid "Upload File:" -msgstr "Nahrát soubor:" - -#: mod/profile_photo.php:245 -msgid "Select a profile:" -msgstr "Vybrat profil:" - -#: mod/profile_photo.php:250 -msgid "or" -msgstr "nebo" - -#: mod/profile_photo.php:251 -msgid "skip this step" -msgstr "tento krok přeskočte" - -#: mod/profile_photo.php:251 -msgid "select a photo from your photo albums" -msgstr "si vyberte fotku z vašich fotoalb" - -#: mod/profile_photo.php:264 -msgid "Crop Image" -msgstr "Oříznout obrázek" - -#: mod/profile_photo.php:265 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Prosím, ořízněte tento obrázek pro optimální zobrazení." - -#: mod/profile_photo.php:267 -msgid "Done Editing" -msgstr "Upravování dokončeno" - -#: mod/profile_photo.php:301 -msgid "Image uploaded successfully." -msgstr "Obrázek byl úspěšně nahrán." - -#: mod/search.php:92 -msgid "Only logged in users are permitted to perform a search." -msgstr "Pouze přihlášení uživatelé mohou prohledávat tento server." - -#: mod/search.php:114 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "Nepřihlášení uživatelé mohou vyhledávat pouze jednou za minutu." - -#: mod/search.php:134 src/Content/Text/HTML.php:893 src/Content/Nav.php:200 -msgid "Search" -msgstr "Hledat" - -#: mod/search.php:228 -#, php-format -msgid "Items tagged with: %s" -msgstr "Položky označené štítkem: %s" - -#: mod/search.php:230 src/Module/Contact.php:794 -#, php-format -msgid "Results for: %s" -msgstr "Výsledky pro: %s" - -#: mod/subthread.php:104 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sleduje %3$s uživatele %2$s" - -#: mod/suggest.php:28 -msgid "Contact suggestion successfully ignored." -msgstr "Návrh kontaktu úspěšně ignorován." - -#: mod/suggest.php:52 +#: src/App/Page.php:250 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin." +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "" -#: mod/suggest.php:71 -msgid "Do you really want to delete this suggestion?" -msgstr "Opravdu chcete smazat tento návrh?" +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "" -#: mod/suggest.php:89 mod/suggest.php:109 -msgid "Ignore/Hide" -msgstr "Ignorovat/skrýt" +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "" -#: mod/suggest.php:119 view/theme/vier/theme.php:204 src/Content/Widget.php:69 -msgid "Friend Suggestions" -msgstr "Návrhy přátel" - -#: mod/uexport.php:52 -msgid "Export account" -msgstr "Exportovat účet" - -#: mod/uexport.php:52 +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 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 "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server." +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "" -#: mod/uexport.php:53 -msgid "Export all" -msgstr "Exportovat vše" +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "" -#: mod/uexport.php:53 +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "" + +#: src/App/Page.php:265 msgid "" -"Export your accout 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 "Exportujte své informace o účtu, kontakty a všechny své položky jako JSON. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu (fotky se neexportují)" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "" -#: mod/uexport.php:59 mod/settings.php:131 -#: src/Module/BaseSettingsModule.php:89 -msgid "Export personal data" -msgstr "Exportovat osobní údaje" +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "" -#: mod/videos.php:123 -msgid "No videos selected" -msgstr "Není vybráno žádné video" +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "" -#: mod/videos.php:280 src/Model/Item.php:3477 -msgid "View Video" -msgstr "Zobrazit video" +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "" -#: mod/videos.php:295 -msgid "Recent Videos" -msgstr "Nedávná videa" +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "" -#: mod/videos.php:297 -msgid "Upload New Videos" -msgstr "Nahrát nová videa" +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "" -#: mod/display.php:254 mod/display.php:339 -msgid "The requested item doesn't exist or has been deleted." -msgstr "Požadovaná položka neexistuje nebo byla smazána." +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "" -#: mod/display.php:417 -msgid "The feed for this item is unavailable." -msgstr "Proud pro tuto položku je nedostupný." +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "" -#: mod/events.php:118 mod/events.php:120 -msgid "Event can not end before it has started." -msgstr "Událost nemůže končit dříve, než začala." +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "" -#: mod/events.php:127 mod/events.php:129 -msgid "Event title and start time are required." -msgstr "Název události a datum začátku jsou vyžadovány." +#: src/App/Page.php:351 +msgid "toggle mobile" +msgstr "přepínat mobilní zobrazení" -#: mod/events.php:385 -msgid "Create New Event" -msgstr "Vytvořit novou událost" - -#: mod/events.php:508 -msgid "Event details" -msgstr "Detaily události" - -#: mod/events.php:509 -msgid "Starting date and Title are required." -msgstr "Počáteční datum a Název jsou vyžadovány." - -#: mod/events.php:510 mod/events.php:515 -msgid "Event Starts:" -msgstr "Událost začíná:" - -#: mod/events.php:523 mod/events.php:548 -msgid "Finish date/time is not known or not relevant" -msgstr "Datum/čas konce není zadán nebo není relevantní" - -#: mod/events.php:525 mod/events.php:530 -msgid "Event Finishes:" -msgstr "Akce končí:" - -#: mod/events.php:536 mod/events.php:549 -msgid "Adjust for viewer timezone" -msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení" - -#: mod/events.php:538 -msgid "Description:" -msgstr "Popis:" - -#: mod/events.php:540 mod/notifications.php:272 src/Model/Event.php:68 -#: src/Model/Event.php:95 src/Model/Event.php:437 src/Model/Event.php:933 -#: src/Model/Profile.php:447 src/Module/Directory.php:137 -#: src/Module/Contact.php:607 -msgid "Location:" -msgstr "Poloha:" - -#: mod/events.php:542 mod/events.php:544 -msgid "Title:" -msgstr "Název:" - -#: mod/events.php:545 mod/events.php:546 -msgid "Share this event" -msgstr "Sdílet tuto událost" - -#: mod/events.php:553 src/Model/Profile.php:890 -msgid "Basic" -msgstr "Základní" - -#: mod/events.php:554 src/Model/Profile.php:891 src/Module/Admin/Site.php:573 -#: src/Module/Contact.php:880 -msgid "Advanced" -msgstr "Pokročilé" - -#: mod/events.php:571 -msgid "Failed to remove event" -msgstr "Odstranění události selhalo" - -#: mod/events.php:573 -msgid "Event removed" -msgstr "Událost odstraněna" - -#: mod/item.php:123 -msgid "Unable to locate original post." -msgstr "Nelze nalézt původní příspěvek." - -#: mod/item.php:323 -msgid "Empty post discarded." -msgstr "Prázdný příspěvek odstraněn." - -#: mod/item.php:803 +#: src/App/Router.php:309 #, php-format +msgid "Method not allowed for this module. Allowed method(s): %s" +msgstr "" + +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +msgid "Page not found." +msgstr "Stránka nenalezena" + +#: src/App/Router.php:323 +msgid "You must be logged in to use addons. " +msgstr "Pro použití doplňků musíte být přihlášen/a." + +#: src/BaseModule.php:401 msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Tuto zprávu vám poslal/a %s, člen sociální sítě Friendica." +"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 "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním." -#: mod/item.php:805 +#: src/BaseModule.php:428 +msgid "All contacts" +msgstr "Všechny kontakty" + +#: src/BaseModule.php:433 src/Content/Conversation/Factory/Timeline.php:62 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 +msgid "Followers" +msgstr "Sledující" + +#: src/BaseModule.php:438 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 +msgid "Following" +msgstr "Sleduji" + +#: src/BaseModule.php:443 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 +msgid "Mutual friends" +msgstr "Vzájemní přátelé" + +#: src/BaseModule.php:451 +msgid "Common" +msgstr "" + +#: src/Console/Addon.php:175 src/Console/Addon.php:199 +msgid "Addon not found" +msgstr "" + +#: src/Console/Addon.php:179 +msgid "Addon already enabled" +msgstr "" + +#: src/Console/Addon.php:203 +msgid "Addon already disabled" +msgstr "" + +#: src/Console/ArchiveContact.php:106 #, php-format -msgid "You may visit them online at %s" -msgstr "Můžete jej/ji navštívit online na adrese %s" +msgid "Could not find any unarchived contact entry for this URL (%s)" +msgstr "Nelze najít žádný nearchivovaný záznam kontaktu pro tuto URL adresu (%s)" -#: mod/item.php:806 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesílatele odpovědí na tuto zprávu." +#: src/Console/ArchiveContact.php:109 +msgid "The contact entries have been archived" +msgstr "Záznamy kontaktů byly archivovány" -#: mod/item.php:810 +#: src/Console/GlobalCommunityBlock.php:96 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format -msgid "%s posted an update." -msgstr "%s poslal/a aktualizaci." +msgid "Could not find any contact entry for this URL (%s)" +msgstr "Nelze nalézt žádnou položku v kontaktech pro tuto URL adresu (%s)" -#: mod/notifications.php:40 -msgid "Invalid request identifier." -msgstr "Neplatný identifikátor požadavku." +#: src/Console/GlobalCommunityBlock.php:101 +#: src/Module/Moderation/Blocklist/Contact.php:82 +msgid "The contact has been blocked from the node" +msgstr "Kontakt byl na serveru zablokován" -#: mod/notifications.php:96 src/Content/Nav.php:249 -msgid "Notifications" -msgstr "Oznámení" - -#: mod/notifications.php:115 -msgid "Network Notifications" -msgstr "Síťová oznámení" - -#: mod/notifications.php:120 -msgid "System Notifications" -msgstr "Systémová oznámení" - -#: mod/notifications.php:125 -msgid "Personal Notifications" -msgstr "Osobní oznámení" - -#: mod/notifications.php:130 -msgid "Home Notifications" -msgstr "Oznámení na domovské stránce" - -#: mod/notifications.php:153 -msgid "Show unread" -msgstr "Zobrazit nepřečtené" - -#: mod/notifications.php:153 -msgid "Show all" -msgstr "Zobrazit vše" - -#: mod/notifications.php:164 -msgid "Show Ignored Requests" -msgstr "Zobrazit ignorované požadavky" - -#: mod/notifications.php:164 -msgid "Hide Ignored Requests" -msgstr "Skrýt ignorované požadavky" - -#: mod/notifications.php:177 mod/notifications.php:262 -msgid "Notification type:" -msgstr "Typ oznámení:" - -#: mod/notifications.php:180 -msgid "Suggested by:" -msgstr "Navrhl/a:" - -#: mod/notifications.php:192 mod/notifications.php:279 -#: src/Module/Contact.php:594 -msgid "Hide this contact from others" -msgstr "Skrýt tento kontakt před ostatními" - -#: mod/notifications.php:194 mod/notifications.php:288 -#: src/Model/Contact.php:1238 src/Module/Admin/Users.php:286 -msgid "Approve" -msgstr "Schválit" - -#: mod/notifications.php:214 -msgid "Claims to be known to you: " -msgstr "Vaši údajní známí: " - -#: mod/notifications.php:215 -msgid "yes" -msgstr "ano" - -#: mod/notifications.php:215 -msgid "no" -msgstr "ne" - -#: mod/notifications.php:216 mod/notifications.php:220 -msgid "Shall your connection be bidirectional or not?" -msgstr "Má vaše spojení být obousměrné, nebo ne?" - -#: mod/notifications.php:217 mod/notifications.php:221 +#: src/Console/MergeContacts.php:75 #, 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 "Přijetí uživatele %s jako přítele dovolí uživateli %s odebírat Vaše příspěvky a Vy budete také přijímat aktualizace od něj ve Vašem kanále." +msgid "%d %s, %d duplicates." +msgstr "" -#: mod/notifications.php:218 +#: src/Console/MergeContacts.php:78 #, 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 "Přijetí uživatele %s jako odběratele mu dovolí odebírat Vaše příspěvky, ale nebudete od něj přijímat aktualizace ve Vašem kanále." +msgid "uri-id is empty for contact %s." +msgstr "" -#: mod/notifications.php:222 +#: src/Console/MergeContacts.php:91 #, php-format -msgid "" -"Accepting %s as a sharer allows them to subscribe to your posts, but you " -"will not receive updates from them in your news feed." -msgstr "Přijetí uživatele %s jako sdílejícího mu dovolí odebírat Vaše příspěvky, ale nebudete od něj přijímat aktualizace ve Vašem kanále." +msgid "No valid first contact found for uri-id %d." +msgstr "" -#: mod/notifications.php:233 -msgid "Friend" -msgstr "Přítel" - -#: mod/notifications.php:234 -msgid "Sharer" -msgstr "Sdílející" - -#: mod/notifications.php:234 -msgid "Subscriber" -msgstr "Odběratel" - -#: mod/notifications.php:274 src/Model/Profile.php:453 -#: src/Model/Profile.php:832 src/Module/Directory.php:145 -#: src/Module/Contact.php:611 -msgid "About:" -msgstr "O mně:" - -#: mod/notifications.php:278 src/Model/Profile.php:450 -#: src/Model/Profile.php:771 src/Module/Directory.php:142 -msgid "Gender:" -msgstr "Pohlaví:" - -#: mod/notifications.php:285 src/Model/Profile.php:558 -#: src/Module/Contact.php:295 -msgid "Network:" -msgstr "Síť:" - -#: mod/notifications.php:299 -msgid "No introductions." -msgstr "Žádné představení." - -#: mod/notifications.php:333 +#: src/Console/MergeContacts.php:102 #, php-format -msgid "No more %s notifications." -msgstr "Žádná další %s oznámení" +msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." +msgstr "" -#: mod/openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Chyba OpenID protokolu. Nebylo navráceno žádné ID." +#: src/Console/MergeContacts.php:106 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." +msgstr "" -#: mod/openid.php:60 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Nenalezen účet a OpenID registrace na tomto serveru není dovolena." +#: src/Console/MergeContacts.php:142 +#, php-format +msgid "Deletion of id %d failed" +msgstr "" -#: mod/openid.php:108 src/Module/Login.php:88 src/Module/Login.php:139 -msgid "Login failed." -msgstr "Přihlášení se nezdařilo." +#: src/Console/MergeContacts.php:144 +#, php-format +msgid "Deletion of id %d was successful" +msgstr "" -#: mod/settings.php:65 src/Module/BaseSettingsModule.php:24 -msgid "Account" -msgstr "Účet" +#: src/Console/MergeContacts.php:150 +#, php-format +msgid "Updating \"%s\" in \"%s\" from %d to %d" +msgstr "" -#: mod/settings.php:73 src/Module/BaseSettingsModule.php:31 -#: src/Module/Settings/TwoFactor/Index.php:89 -#: src/Module/TwoFactor/Verify.php:62 -msgid "Two-factor authentication" -msgstr "Dvoufázové ověřování" +#: src/Console/MergeContacts.php:152 +msgid " - found" +msgstr "" -#: mod/settings.php:80 src/Content/Nav.php:268 src/Model/Profile.php:402 -#: src/Module/BaseSettingsModule.php:38 -msgid "Profiles" -msgstr "Profily" +#: src/Console/MergeContacts.php:159 +msgid " - failed" +msgstr "" -#: mod/settings.php:88 src/Module/BaseAdminModule.php:84 -#: src/Module/BaseSettingsModule.php:46 -msgid "Additional features" -msgstr "Dodatečné vlastnosti" +#: src/Console/MergeContacts.php:161 +msgid " - success" +msgstr "" -#: mod/settings.php:96 src/Module/BaseSettingsModule.php:54 -msgid "Display" -msgstr "Zobrazení" +#: src/Console/MergeContacts.php:165 +msgid " - deleted" +msgstr "" -#: mod/settings.php:103 mod/settings.php:843 -#: src/Module/BaseSettingsModule.php:61 -msgid "Social Networks" -msgstr "Sociální sítě" +#: src/Console/MergeContacts.php:168 +msgid " - done" +msgstr "" -#: mod/settings.php:110 src/Module/Admin/Addons/Details.php:100 -#: src/Module/Admin/Addons/Index.php:51 src/Module/BaseAdminModule.php:82 -#: src/Module/BaseSettingsModule.php:68 -msgid "Addons" -msgstr "Doplňky" +#: src/Console/MoveToAvatarCache.php:91 +msgid "The avatar cache needs to be enabled to use this command." +msgstr "" -#: mod/settings.php:117 src/Content/Nav.php:263 -#: src/Module/BaseSettingsModule.php:75 -msgid "Delegations" -msgstr "Delegace" +#: src/Console/MoveToAvatarCache.php:109 +#, php-format +msgid "no resource in photo %s" +msgstr "" -#: mod/settings.php:124 src/Module/BaseSettingsModule.php:82 -msgid "Connected apps" -msgstr "Připojené aplikace" +#: src/Console/MoveToAvatarCache.php:137 +#, php-format +msgid "no photo with id %s" +msgstr "" -#: mod/settings.php:138 src/Module/BaseSettingsModule.php:96 -msgid "Remove account" -msgstr "Odstranit účet" +#: src/Console/MoveToAvatarCache.php:146 +#, php-format +msgid "no image data for photo with id %s" +msgstr "" -#: mod/settings.php:147 view/theme/frio/theme.php:277 src/Content/Nav.php:265 -#: src/Module/Admin/Addons/Details.php:102 -#: src/Module/Admin/Themes/Details.php:107 -#: src/Module/BaseSettingsModule.php:105 src/Module/Welcome.php:33 -msgid "Settings" -msgstr "Nastavení" +#: src/Console/MoveToAvatarCache.php:155 +#, php-format +msgid "invalid image for id %s" +msgstr "" -#: mod/settings.php:190 -msgid "Missing some important data!" -msgstr "Chybí některé důležité údaje!" +#: src/Console/MoveToAvatarCache.php:168 +#, php-format +msgid "Quit on invalid photo %s" +msgstr "" -#: mod/settings.php:192 mod/settings.php:703 src/Module/Contact.php:801 -msgid "Update" -msgstr "Aktualizace" +#: src/Console/PostUpdate.php:87 +#, php-format +msgid "Post update version number has been set to %s." +msgstr "Číslo verze post update bylo nastaveno na %s." -#: mod/settings.php:302 -msgid "Failed to connect with email account using the settings provided." -msgstr "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení." +#: src/Console/PostUpdate.php:95 +msgid "Check for pending update actions." +msgstr "Zkontrolovat čekající akce po aktualizaci." -#: mod/settings.php:307 -msgid "Email settings updated." -msgstr "Nastavení e-mailu aktualizována." +#: src/Console/PostUpdate.php:97 +msgid "Done." +msgstr "Hotovo." -#: mod/settings.php:323 -msgid "Features updated" -msgstr "Vlastnosti aktualizovány" +#: src/Console/PostUpdate.php:99 +msgid "Execute pending post updates." +msgstr "Provést čekající aktualizace příspěvků." -#: mod/settings.php:384 -msgid "The theme you chose isn't available." -msgstr "Motiv, který jste si vybral/a, není dostupný." +#: src/Console/PostUpdate.php:105 +msgid "All pending post updates are done." +msgstr "Všechny čekající aktualizace příspěvků jsou hotové." -#: mod/settings.php:396 -msgid "Relocate message has been send to your contacts" -msgstr "Správa o změně umístění byla odeslána vašim kontaktům" +#: src/Console/User.php:158 src/Console/User.php:245 +msgid "Enter user nickname: " +msgstr "" -#: mod/settings.php:408 -msgid "Passwords do not match." -msgstr "Hasla se neshodují." +#: src/Console/User.php:182 src/Model/User.php:711 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "Uživatel nenalezen." -#: mod/settings.php:416 src/Console/NewPassword.php:101 +#: src/Console/User.php:202 +msgid "Enter new password: " +msgstr "Zadejte nové heslo" + +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 msgid "Password update failed. Please try again." msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu." -#: mod/settings.php:419 src/Console/NewPassword.php:104 +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 msgid "Password changed." msgstr "Heslo bylo změněno." -#: mod/settings.php:422 -msgid "Password unchanged." -msgstr "Heslo nezměněno." +#: src/Console/User.php:237 +msgid "Enter user name: " +msgstr "" -#: mod/settings.php:503 -msgid " Please use a shorter name." -msgstr "Prosím použijte kratší jméno." +#: src/Console/User.php:253 +msgid "Enter user email address: " +msgstr "" -#: mod/settings.php:506 -msgid " Name too short." -msgstr "Jméno je příliš krátké." +#: src/Console/User.php:261 +msgid "Enter a language (optional): " +msgstr "" -#: mod/settings.php:513 src/Module/Settings/TwoFactor/Index.php:72 -msgid "Wrong Password" -msgstr "Špatné heslo" +#: src/Console/User.php:286 +msgid "User is not pending." +msgstr "" -#: mod/settings.php:518 -msgid "Invalid email." -msgstr "Neplatný e-mail." +#: src/Console/User.php:318 +msgid "User has already been marked for deletion." +msgstr "" -#: mod/settings.php:524 -msgid "Cannot change to that email." -msgstr "Nelze změnit na tento e-mail." +#: src/Console/User.php:323 +#, php-format +msgid "Type \"yes\" to delete %s" +msgstr "" -#: mod/settings.php:574 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Soukromé fórum nemá nastaveno zabezpečení. Používá se výchozí skupina soukromí." +#: src/Console/User.php:325 +msgid "Deletion aborted." +msgstr "" -#: mod/settings.php:577 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou výchozí skupinu soukromí." +#: src/Console/User.php:450 +msgid "Enter category: " +msgstr "" -#: mod/settings.php:617 -msgid "Settings updated." -msgstr "Nastavení aktualizováno." +#: src/Console/User.php:460 +msgid "Enter key: " +msgstr "" -#: mod/settings.php:676 mod/settings.php:702 mod/settings.php:736 -msgid "Add application" -msgstr "Přidat aplikaci" +#: src/Console/User.php:494 +msgid "Enter value: " +msgstr "" -#: mod/settings.php:680 mod/settings.php:706 -msgid "Consumer Key" -msgstr "Consumer Key" +#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +msgid "newer" +msgstr "novější" -#: mod/settings.php:681 mod/settings.php:707 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +msgid "older" +msgstr "starší" -#: mod/settings.php:682 mod/settings.php:708 -msgid "Redirect" -msgstr "Přesměrování" +#: src/Content/ContactSelector.php:51 +msgid "Frequently" +msgstr "Často" -#: mod/settings.php:683 mod/settings.php:709 -msgid "Icon url" -msgstr "URL ikony" +#: src/Content/ContactSelector.php:52 +msgid "Hourly" +msgstr "Hodinově" -#: mod/settings.php:694 -msgid "You can't edit this application." -msgstr "Nemůžete upravit tuto aplikaci." +#: src/Content/ContactSelector.php:53 +msgid "Twice daily" +msgstr "Dvakrát denně" -#: mod/settings.php:735 -msgid "Connected Apps" -msgstr "Připojené aplikace" +#: src/Content/ContactSelector.php:54 +msgid "Daily" +msgstr "Denně" -#: mod/settings.php:737 src/Object/Post.php:168 src/Object/Post.php:170 -msgid "Edit" -msgstr "Upravit" +#: src/Content/ContactSelector.php:55 +msgid "Weekly" +msgstr "Týdně" -#: mod/settings.php:739 -msgid "Client key starts with" -msgstr "Klienský klíč začíná" +#: src/Content/ContactSelector.php:56 +msgid "Monthly" +msgstr "Měsíčně" -#: mod/settings.php:740 -msgid "No name" -msgstr "Bez názvu" +#: src/Content/ContactSelector.php:126 +msgid "DFRN" +msgstr "DFRN" -#: mod/settings.php:741 -msgid "Remove authorization" -msgstr "Odstranit oprávnění" +#: src/Content/ContactSelector.php:127 +msgid "OStatus" +msgstr "OStatus" -#: mod/settings.php:752 -msgid "No Addon settings configured" -msgstr "Žádná nastavení doplňků nenakonfigurována" +#: src/Content/ContactSelector.php:128 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: mod/settings.php:761 -msgid "Addon Settings" -msgstr "Nastavení doplňků" +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Email" +msgstr "E-mail" -#: mod/settings.php:775 src/Module/Admin/Features.php:58 -#: src/Module/Admin/Features.php:59 -msgid "Off" -msgstr "Vyp" - -#: mod/settings.php:775 src/Module/Admin/Features.php:58 -#: src/Module/Admin/Features.php:59 -msgid "On" -msgstr "Zap" - -#: mod/settings.php:782 -msgid "Additional Features" -msgstr "Dodatečné vlastnosti" - -#: mod/settings.php:806 src/Content/ContactSelector.php:120 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 msgid "Diaspora" msgstr "Diaspora" -#: mod/settings.php:806 mod/settings.php:807 -msgid "enabled" -msgstr "povoleno" +#: src/Content/ContactSelector.php:131 +msgid "Zot!" +msgstr "Zot!" -#: mod/settings.php:806 mod/settings.php:807 -msgid "disabled" -msgstr "zakázáno" +#: src/Content/ContactSelector.php:132 +msgid "LinkedIn" +msgstr "LinkedIn" -#: mod/settings.php:806 mod/settings.php:807 +#: src/Content/ContactSelector.php:133 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: src/Content/ContactSelector.php:134 +msgid "MySpace" +msgstr "MySpace" + +#: src/Content/ContactSelector.php:135 +msgid "Google+" +msgstr "Google+" + +#: src/Content/ContactSelector.php:136 +msgid "pump.io" +msgstr "pump.io" + +#: src/Content/ContactSelector.php:137 +msgid "Twitter" +msgstr "Twitter" + +#: src/Content/ContactSelector.php:138 +msgid "Discourse" +msgstr "" + +#: src/Content/ContactSelector.php:139 +msgid "Diaspora Connector" +msgstr "Diaspora Connector" + +#: src/Content/ContactSelector.php:140 +msgid "GNU Social Connector" +msgstr "GNU social Connector" + +#: src/Content/ContactSelector.php:141 +msgid "ActivityPub" +msgstr "ActivityPub" + +#: src/Content/ContactSelector.php:142 +msgid "pnut" +msgstr "pnut" + +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "" + +#: src/Content/ContactSelector.php:180 #, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Vestavěná podpora pro připojení s %s je %s" +msgid "%s (via %s)" +msgstr "" -#: mod/settings.php:807 -msgid "GNU Social (OStatus)" -msgstr "GNU social (OStatus)" +#: src/Content/Conversation.php:226 +msgid "and" +msgstr "a" -#: mod/settings.php:838 -msgid "Email access is disabled on this site." -msgstr "Přístup k e-mailu je na tomto serveru zakázán." - -#: mod/settings.php:848 -msgid "General Social Media Settings" -msgstr "Obecná nastavení sociálních sítí" - -#: mod/settings.php:849 -msgid "Accept only top level posts by contacts you follow" -msgstr "Přijímat pouze příspěvky nejvyšší úrovně od kontaktů, které sledujete" - -#: mod/settings.php:849 -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 " -"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." -msgstr "Když přijde komentář, provede systém automatické doplňení vláken. Vedlejším účinkem je, že můžete obdržet příspěvky započaté někým, kdo vás nesleduje, ale okomentované někým, kdo vás sleduje. Toto nastavení toto chování vypne. Je-li aktivováno, obdržíte pouze příspěvky od lidí, které opravdu sledujete." - -#: mod/settings.php:850 -msgid "Disable Content Warning" -msgstr "Vypnout varování o obsahu" - -#: mod/settings.php:850 -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 " -"collapsing and sets the content warning as the post title. Doesn't affect " -"any other content filtering you eventually set up." -msgstr "Uživatelé na sítích, jako je Mastodon nebo Pleroma, si mohou nastavit pole s varováním o obsahu, která ve výchozím nastavení skryje jejich příspěvek. Tato možnost vypíná automatické skrývání a nastavuje varování o obsahu jako titulek příspěvku. Toto se netýká žádného dalšího filtrování obsahu, které se rozhodnete nastavit." - -#: mod/settings.php:851 -msgid "Disable intelligent shortening" -msgstr "Vypnout inteligentní zkracování" - -#: mod/settings.php:851 -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 "Normálně se systém snaží nalézt nejlepší odkaz pro přidání zkrácených příspěvků. Pokud je tato možnost aktivní, pak každý zkrácený příspěvek bude vždy ukazovat na originální příspěvek Friendica." - -#: mod/settings.php:852 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Automaticky sledovat jakékoliv sledující/zmiňující na GNU social (OStatus) " - -#: mod/settings.php:852 -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 "Pokud obdržíte zprávu od neznámého uživatele z OStatus, tato možnost rozhoduje o tom, co dělat. Pokud je zaškrtnuta, bude pro každého neznámého uživatele vytvořen nový kontakt." - -#: mod/settings.php:853 -msgid "Default group for OStatus contacts" -msgstr "Výchozí skupina pro kontakty z OStatus" - -#: mod/settings.php:854 -msgid "Your legacy GNU Social account" -msgstr "Váš starý účet na GNU social" - -#: mod/settings.php:854 -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 "Pokud zde zadáte vaše staré jméno účtu na GNU social/StatusNet (ve formátu uživatel@doména.tld), budou vaše kontakty přidány automaticky. Toto pole bude po dokončení vyprázdněno." - -#: mod/settings.php:857 -msgid "Repair OStatus subscriptions" -msgstr "Opravit odběry z OStatus" - -#: mod/settings.php:861 -msgid "Email/Mailbox Setup" -msgstr "Nastavení e-mailu" - -#: mod/settings.php:862 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Pokud chcete komunikovat pomocí této služby s vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce." - -#: mod/settings.php:863 -msgid "Last successful email check:" -msgstr "Poslední úspěšná kontrola e-mailu:" - -#: mod/settings.php:865 -msgid "IMAP server name:" -msgstr "Jméno IMAP serveru:" - -#: mod/settings.php:866 -msgid "IMAP port:" -msgstr "IMAP port:" - -#: mod/settings.php:867 -msgid "Security:" -msgstr "Zabezpečení:" - -#: mod/settings.php:867 mod/settings.php:872 -msgid "None" -msgstr "Žádné" - -#: mod/settings.php:868 -msgid "Email login name:" -msgstr "Přihlašovací jméno k e-mailu:" - -#: mod/settings.php:869 -msgid "Email password:" -msgstr "Heslo k e-mailu:" - -#: mod/settings.php:870 -msgid "Reply-to address:" -msgstr "Odpovědět na adresu:" - -#: mod/settings.php:871 -msgid "Send public posts to all email contacts:" -msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:" - -#: mod/settings.php:872 -msgid "Action after import:" -msgstr "Akce po importu:" - -#: mod/settings.php:872 src/Content/Nav.php:251 -msgid "Mark as seen" -msgstr "Označit jako přečtené" - -#: mod/settings.php:872 -msgid "Move to folder" -msgstr "Přesunout do složky" - -#: mod/settings.php:873 -msgid "Move to folder:" -msgstr "Přesunout do složky:" - -#: mod/settings.php:897 src/Module/Admin/Site.php:433 -msgid "No special theme for mobile devices" -msgstr "Žádný speciální motiv pro mobilní zařízení" - -#: mod/settings.php:905 +#: src/Content/Conversation.php:229 #, php-format -msgid "%s - (Unsupported)" -msgstr "%s - (Nepodporováno)" +msgid "and %d other people" +msgstr "a dalších %d lidí" -#: mod/settings.php:907 src/Module/Admin/Site.php:450 +#: src/Content/Conversation.php:235 #, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Experimentální)" +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: mod/settings.php:935 src/Core/L10n/L10n.php:370 src/Model/Event.php:395 -msgid "Sunday" -msgstr "neděle" - -#: mod/settings.php:935 src/Core/L10n/L10n.php:370 src/Model/Event.php:396 -msgid "Monday" -msgstr "pondělí" - -#: mod/settings.php:951 -msgid "Display Settings" -msgstr "Nastavení zobrazení" - -#: mod/settings.php:957 -msgid "Display Theme:" -msgstr "Motiv zobrazení:" - -#: mod/settings.php:958 -msgid "Mobile Theme:" -msgstr "Mobilní motiv:" - -#: mod/settings.php:959 -msgid "Suppress warning of insecure networks" -msgstr "Potlačit varování o nezabezpečených sítích" - -#: mod/settings.php:959 -msgid "" -"Should the system suppress the warning that the current group contains " -"members of networks that can't receive non public postings." -msgstr "Zvolte, zda má systém potlačit zobrazování varování, že aktuální skupina obsahuje členy sítí, které nemohou přijímat soukromé příspěvky." - -#: mod/settings.php:960 -msgid "Update browser every xx seconds" -msgstr "Aktualizovat prohlížeč každých xx sekund" - -#: mod/settings.php:960 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "Minimum je 10 sekund. Zadáním hodnoty -1 funkci vypnete." - -#: mod/settings.php:961 -msgid "Number of items to display per page:" -msgstr "Počet položek zobrazených na stránce:" - -#: mod/settings.php:961 mod/settings.php:962 -msgid "Maximum of 100 items" -msgstr "Maximum 100 položek" - -#: mod/settings.php:962 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:" - -#: mod/settings.php:963 -msgid "Don't show emoticons" -msgstr "Nezobrazovat emotikony" - -#: mod/settings.php:964 -msgid "Calendar" -msgstr "Kalendář" - -#: mod/settings.php:965 -msgid "Beginning of week:" -msgstr "Začátek týdne:" - -#: mod/settings.php:966 -msgid "Don't show notices" -msgstr "Nezobrazovat oznámění" - -#: mod/settings.php:967 -msgid "Infinite scroll" -msgstr "Nekonečné posouvání" - -#: mod/settings.php:968 -msgid "Automatic updates only at the top of the network page" -msgstr "Automatické aktualizace pouze na horní straně stránky Síť." - -#: mod/settings.php:968 -msgid "" -"When disabled, the network page is updated all the time, which could be " -"confusing while reading." -msgstr "Pokud je tato funkce vypnuta, stránka Síť bude neustále aktualizována, což může být při čtení matoucí." - -#: mod/settings.php:969 -msgid "Bandwidth Saver Mode" -msgstr "Režim šetření dat" - -#: mod/settings.php:969 -msgid "" -"When enabled, embedded content is not displayed on automatic updates, they " -"only show on page reload." -msgstr "Pokud je toto zapnuto, nebude při automatických aktualizacích zobrazován vložený obsah, zobrazí se pouze při obnovení stránky." - -#: mod/settings.php:970 -msgid "Smart Threading" -msgstr "Chytrá vlákna" - -#: mod/settings.php:970 -msgid "" -"When enabled, suppress extraneous thread indentation while keeping it where " -"it matters. Only works if threading is available and enabled." -msgstr "Pokud je toto povoleno, bude potlačeno vnější odsazení vláken, která zároveň zůstanou tam, kde mají význam. Funguje pouze pokud je povoleno vláknování." - -#: mod/settings.php:972 -msgid "General Theme Settings" -msgstr "Obecná nastavení motivu" - -#: mod/settings.php:973 -msgid "Custom Theme Settings" -msgstr "Vlastní nastavení motivu" - -#: mod/settings.php:974 -msgid "Content Settings" -msgstr "Nastavení obsahu" - -#: mod/settings.php:975 view/theme/duepuntozero/config.php:73 -#: view/theme/frio/config.php:128 view/theme/quattro/config.php:75 -#: view/theme/vier/config.php:121 -msgid "Theme settings" -msgstr "Nastavení motivu" - -#: mod/settings.php:989 -msgid "Unable to find your profile. Please contact your admin." -msgstr "Nelze najít Váš účet. Prosím kontaktujte vašeho administrátora." - -#: mod/settings.php:1028 -msgid "Account Types" -msgstr "Typy účtů" - -#: mod/settings.php:1029 -msgid "Personal Page Subtypes" -msgstr "Podtypy osobních stránek" - -#: mod/settings.php:1030 -msgid "Community Forum Subtypes" -msgstr "Podtypy komunitních fór" - -#: mod/settings.php:1037 src/Module/Admin/Users.php:229 -msgid "Personal Page" -msgstr "Osobní stránka" - -#: mod/settings.php:1038 -msgid "Account for a personal profile." -msgstr "Účet pro osobní profil." - -#: mod/settings.php:1041 src/Module/Admin/Users.php:230 -msgid "Organisation Page" -msgstr "Stránka organizace" - -#: mod/settings.php:1042 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "Účet pro organizaci, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“." - -#: mod/settings.php:1045 src/Module/Admin/Users.php:231 -msgid "News Page" -msgstr "Zpravodajská stránka" - -#: mod/settings.php:1046 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "Účet pro zpravodaje, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“." - -#: mod/settings.php:1049 src/Module/Admin/Users.php:232 -msgid "Community Forum" -msgstr "Komunitní fórum" - -#: mod/settings.php:1050 -msgid "Account for community discussions." -msgstr "Účet pro komunitní diskuze." - -#: mod/settings.php:1053 src/Module/Admin/Users.php:222 -msgid "Normal Account Page" -msgstr "Normální stránka účtu" - -#: mod/settings.php:1054 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "Účet pro běžný osobní profil, který vyžaduje manuální potvrzení „Přátel“ a „Sledujících“." - -#: mod/settings.php:1057 src/Module/Admin/Users.php:223 -msgid "Soapbox Page" -msgstr "Propagační stránka" - -#: mod/settings.php:1058 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "Účet pro veřejný profil, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“." - -#: mod/settings.php:1061 src/Module/Admin/Users.php:224 -msgid "Public Forum" -msgstr "Veřejné fórum" - -#: mod/settings.php:1062 -msgid "Automatically approves all contact requests." -msgstr "Automaticky potvrzuje všechny žádosti o přidání kontaktu." - -#: mod/settings.php:1065 src/Module/Admin/Users.php:225 -msgid "Automatic Friend Page" -msgstr "Stránka s automatickými přátely" - -#: mod/settings.php:1066 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "Účet pro populární profil, který automaticky potvrzuje požadavky o přidání kontaktu jako „Přátele“." - -#: mod/settings.php:1069 -msgid "Private Forum [Experimental]" -msgstr "Soukromé fórum [Experimentální]" - -#: mod/settings.php:1070 -msgid "Requires manual approval of contact requests." -msgstr "Vyžaduje manuální potvrzení požadavků o přidání kontaktu." - -#: mod/settings.php:1081 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1081 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Volitelné) Povolit tomuto OpenID přihlášení k tomuto účtu." - -#: mod/settings.php:1089 -msgid "Publish your default profile in your local site directory?" -msgstr "Publikovat váš výchozí profil v místním adresáři webu?" - -#: mod/settings.php:1089 +#: src/Content/Conversation.php:237 #, php-format -msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "Váš profil bude publikován v místním adresáři tohoto serveru. Vaše detaily o profilu mohou být veřejně viditelné v závislosti na systémových nastaveních." +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: mod/settings.php:1095 -msgid "Publish your default profile in the global social directory?" -msgstr "Publikovat váš výchozí profil v globální sociálním adresáři?" - -#: mod/settings.php:1095 +#: src/Content/Conversation.php:239 #, php-format -msgid "" -"Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public." -msgstr "Váš profil bude publikován v globálních adresářích Friendica (např. %s). Váš profil bude veřejně viditelný." +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: mod/settings.php:1095 -msgid "" -"This setting also determines whether Friendica will inform search engines " -"that your profile should be indexed or not. Third-party search engines may " -"or may not respect this setting." -msgstr "Toto nastavení také určuje, bude-li Friendica informovat vyhledávače, že může být váš profil indexován. Vyhledávače třetích stran mohou, ale nemusejí toto nastavení respektovat." - -#: mod/settings.php:1102 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Skrýt váš seznam kontaktů/přátel před návštěvníky vašeho výchozího profilu?" - -#: mod/settings.php:1102 -msgid "" -"Your contact list won't be shown in your default profile page. You can " -"decide to show your contact list separately for each additional profile you " -"create" -msgstr "Váš seznam kontaktů nebude zobrazen na vaší výchozí profilové stránce. Můžete se rozhodnout, jestli chcete zobrazit váš seznam kontaktů zvlášť pro každý další profil, který si vytvoříte." - -#: mod/settings.php:1106 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Skrýt vaše profilové detaily před anonymními návštěvníky?" - -#: mod/settings.php:1106 -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 "Anonymní návštěvníci mohou pouze vidět váš profilový obrázek, zobrazované jméno a přezdívku, kterou používáte na vaší profilové stránce. vaše veřejné příspěvky a odpovědi budou stále dostupné jinými způsoby." - -#: mod/settings.php:1110 -msgid "Allow friends to post to your profile page?" -msgstr "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?" - -#: mod/settings.php:1110 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "Vaše kontakty mohou psát příspěvky na vaši profilovou zeď. Tyto příspěvky budou přeposílány vašim kontaktům." - -#: mod/settings.php:1114 -msgid "Allow friends to tag your posts?" -msgstr "Povolit přátelům označovat vaše příspěvky?" - -#: mod/settings.php:1114 -msgid "Your contacts can add additional tags to your posts." -msgstr "Vaše kontakty mohou přidávat k vašim příspěvkům dodatečné štítky." - -#: mod/settings.php:1118 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Povolit, abychom vás navrhovali jako přátelé pro nové členy?" - -#: mod/settings.php:1118 -msgid "" -"If you like, Friendica may suggest new members to add you as a contact." -msgstr "Pokud budete chtít, může Friendica nabízet novým členům, aby si vás přidali jako kontakt." - -#: mod/settings.php:1122 -msgid "Permit unknown people to send you private mail?" -msgstr "Povolit neznámým lidem vám zasílat soukromé zprávy?" - -#: mod/settings.php:1122 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "Uživatelé sítě Friendica vám mohou posílat soukromé zprávy, i pokud nejsou ve vašich kontaktech." - -#: mod/settings.php:1126 -msgid "Profile is not published." -msgstr "Profil není zveřejněn." - -#: mod/settings.php:1132 +#: src/Content/Conversation.php:241 #, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "Vaše adresa identity je „%s“ nebo „%s“." - -#: mod/settings.php:1139 -msgid "Automatically expire posts after this many days:" -msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:" - -#: mod/settings.php:1139 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány" - -#: mod/settings.php:1140 -msgid "Advanced expiration settings" -msgstr "Pokročilé nastavení expirací" - -#: mod/settings.php:1141 -msgid "Advanced Expiration" -msgstr "Nastavení expirací" - -#: mod/settings.php:1142 -msgid "Expire posts:" -msgstr "Expirovat příspěvky:" - -#: mod/settings.php:1143 -msgid "Expire personal notes:" -msgstr "Expirovat osobní poznámky:" - -#: mod/settings.php:1144 -msgid "Expire starred posts:" -msgstr "Expirovat příspěvky s hvězdou:" - -#: mod/settings.php:1145 -msgid "Expire photos:" -msgstr "Expirovat fotky:" - -#: mod/settings.php:1146 -msgid "Only expire posts by others:" -msgstr "Příspěvky expirovat pouze ostatními:" - -#: mod/settings.php:1176 -msgid "Account Settings" -msgstr "Nastavení účtu" - -#: mod/settings.php:1184 -msgid "Password Settings" -msgstr "Nastavení hesla" - -#: mod/settings.php:1185 src/Module/Register.php:130 -msgid "New Password:" -msgstr "Nové heslo:" - -#: mod/settings.php:1185 -msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "Povolené znaky jsou a-z, A-Z, 0-9 a zvláštní znaky kromě mezer, znaků s diakritikou a dvojtečky (:)." - -#: mod/settings.php:1186 src/Module/Register.php:131 -msgid "Confirm:" -msgstr "Potvrďte:" - -#: mod/settings.php:1186 -msgid "Leave password fields blank unless changing" -msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte" - -#: mod/settings.php:1187 -msgid "Current Password:" -msgstr "Stávající heslo:" - -#: mod/settings.php:1187 mod/settings.php:1188 -msgid "Your current password to confirm the changes" -msgstr "Vaše stávající heslo k potvrzení změn" - -#: mod/settings.php:1188 -msgid "Password:" -msgstr "Heslo: " - -#: mod/settings.php:1192 -msgid "Basic Settings" -msgstr "Základní nastavení" - -#: mod/settings.php:1193 src/Model/Profile.php:764 -msgid "Full Name:" -msgstr "Celé jméno:" - -#: mod/settings.php:1194 -msgid "Email Address:" -msgstr "E-mailová adresa:" - -#: mod/settings.php:1195 -msgid "Your Timezone:" -msgstr "Vaše časové pásmo:" - -#: mod/settings.php:1196 -msgid "Your Language:" -msgstr "Váš jazyk:" - -#: mod/settings.php:1196 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Nastavte jazyk, který máme používat pro rozhraní Friendica a pro posílání e-mailů" - -#: mod/settings.php:1197 -msgid "Default Post Location:" -msgstr "Výchozí poloha příspěvků:" - -#: mod/settings.php:1198 -msgid "Use Browser Location:" -msgstr "Používat polohu dle prohlížeče:" - -#: mod/settings.php:1201 -msgid "Security and Privacy Settings" -msgstr "Nastavení zabezpečení a soukromí" - -#: mod/settings.php:1203 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximální počet požadavků o přátelství za den:" - -#: mod/settings.php:1203 mod/settings.php:1232 -msgid "(to prevent spam abuse)" -msgstr "(ay se zabránilo spamu)" - -#: mod/settings.php:1204 -msgid "Default Post Permissions" -msgstr "Výchozí oprávnění pro příspěvek" - -#: mod/settings.php:1205 -msgid "(click to open/close)" -msgstr "(klikněte pro otevření/zavření)" - -#: mod/settings.php:1215 -msgid "Default Private Post" -msgstr "Výchozí soukromý příspěvek" - -#: mod/settings.php:1216 -msgid "Default Public Post" -msgstr "Výchozí veřejný příspěvek" - -#: mod/settings.php:1220 -msgid "Default Permissions for New Posts" -msgstr "Výchozí oprávnění pro nové příspěvky" - -#: mod/settings.php:1232 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum soukromých zpráv od neznámých lidí za den:" - -#: mod/settings.php:1235 -msgid "Notification Settings" -msgstr "Nastavení oznámení" - -#: mod/settings.php:1236 -msgid "Send a notification email when:" -msgstr "Poslat oznámení e-mailem, když:" - -#: mod/settings.php:1237 -msgid "You receive an introduction" -msgstr "obdržíte představení" - -#: mod/settings.php:1238 -msgid "Your introductions are confirmed" -msgstr "jsou vaše představení potvrzena" - -#: mod/settings.php:1239 -msgid "Someone writes on your profile wall" -msgstr "vám někdo napíše na vaši profilovou stránku" - -#: mod/settings.php:1240 -msgid "Someone writes a followup comment" -msgstr "Vám někdo napíše následný komentář" - -#: mod/settings.php:1241 -msgid "You receive a private message" -msgstr "obdržíte soukromou zprávu" - -#: mod/settings.php:1242 -msgid "You receive a friend suggestion" -msgstr "obdržíte návrh přátelství" - -#: mod/settings.php:1243 -msgid "You are tagged in a post" -msgstr "jste označen v příspěvku" - -#: mod/settings.php:1244 -msgid "You are poked/prodded/etc. in a post" -msgstr "vás věkdo šťouchne/dloubne/apod. v příspěvku" - -#: mod/settings.php:1246 -msgid "Activate desktop notifications" -msgstr "Aktivovat desktopová oznámení" - -#: mod/settings.php:1246 -msgid "Show desktop popup on new notifications" -msgstr "Zobrazit desktopové zprávy při nových oznámeních." - -#: mod/settings.php:1248 -msgid "Text-only notification emails" -msgstr "Pouze textové oznamovací e-maily" - -#: mod/settings.php:1250 -msgid "Send text only notification emails, without the html part" -msgstr "Posílat pouze textové oznamovací e-maily, bez HTML části." - -#: mod/settings.php:1252 -msgid "Show detailled notifications" -msgstr "Zobrazit detailní oznámení" - -#: mod/settings.php:1254 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "Ve výchozím nastavení jsou oznámení zhuštěné na jediné oznámení pro každou položku. Pokud je toto povolené, budou zobrazována všechna oznámení." - -#: mod/settings.php:1256 -msgid "Advanced Account/Page Type Settings" -msgstr "Pokročilé nastavení účtu/stránky" - -#: mod/settings.php:1257 -msgid "Change the behaviour of this account for special situations" -msgstr "Změnit chování tohoto účtu ve speciálních situacích" - -#: mod/settings.php:1260 -msgid "Relocate" -msgstr "Přemístit" - -#: mod/settings.php:1261 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "Pokud jste přemístil/a tento profil z jiného serveru a nějaký z vašich kontaktů nedostává vaše aktualizace, zkuste stisknout toto tlačítko." - -#: mod/settings.php:1262 -msgid "Resend relocate message to contacts" -msgstr "Znovu odeslat správu o přemístění Vašim kontaktům" - -#: view/theme/duepuntozero/config.php:55 src/Model/User.php:745 -msgid "default" -msgstr "výchozí" - -#: view/theme/duepuntozero/config.php:56 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:57 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:58 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:59 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:60 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:61 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:74 -msgid "Variations" -msgstr "Variace" - -#: view/theme/frio/php/Image.php:24 -msgid "Top Banner" -msgstr "Vrchní banner" - -#: view/theme/frio/php/Image.php:24 -msgid "" -"Resize image to the width of the screen and show background color below on " -"long pages." -msgstr "Změnit velikost obrázku na šířku obrazovky a ukázat pod ním barvu pozadí na dlouhých stránkách." - -#: view/theme/frio/php/Image.php:25 -msgid "Full screen" -msgstr "Celá obrazovka" - -#: view/theme/frio/php/Image.php:25 -msgid "" -"Resize image to fill entire screen, clipping either the right or the bottom." -msgstr "Změnit velikost obrázku, aby zaplnil celou obrazovku, a odštěpit buď pravou, nebo dolní část" - -#: view/theme/frio/php/Image.php:26 -msgid "Single row mosaic" -msgstr "Mozaika s jedinou řadou" - -#: view/theme/frio/php/Image.php:26 -msgid "" -"Resize image to repeat it on a single row, either vertical or horizontal." -msgstr "Změnit velikost obrázku a opakovat jej v jediné řadě, buď svislé, nebo vodorovné" - -#: view/theme/frio/php/Image.php:27 -msgid "Mosaic" -msgstr "Mozaika" - -#: view/theme/frio/php/Image.php:27 -msgid "Repeat image to fill the screen." -msgstr "Opakovat obrázek, aby zaplnil obrazovku" - -#: view/theme/frio/config.php:111 -msgid "Custom" -msgstr "Vlastní" - -#: view/theme/frio/config.php:123 -msgid "Note" -msgstr "Poznámka" - -#: view/theme/frio/config.php:123 -msgid "Check image permissions if all users are allowed to see the image" -msgstr "Zkontrolujte povolení u obrázku, jestli mají všichni uživatelé povolení obrázek vidět" - -#: view/theme/frio/config.php:129 -msgid "Select color scheme" -msgstr "Vybrat barevné schéma" - -#: view/theme/frio/config.php:130 -msgid "Copy or paste schemestring" -msgstr "Kopírovat a vložit řetězec schématu" - -#: view/theme/frio/config.php:130 -msgid "" -"You can copy this string to share your theme with others. Pasting here " -"applies the schemestring" -msgstr "Tento řetězec můžete zkopírovat a sdílet tak svůj motiv s jinými lidmi. Vložením sem aplikujete řetězec schématu" - -#: view/theme/frio/config.php:131 -msgid "Navigation bar background color" -msgstr "Barva pozadí navigační lišty" - -#: view/theme/frio/config.php:132 -msgid "Navigation bar icon color " -msgstr "Barva ikon navigační lišty" - -#: view/theme/frio/config.php:133 -msgid "Link color" -msgstr "Barva odkazů" - -#: view/theme/frio/config.php:134 -msgid "Set the background color" -msgstr "Nastavit barvu pozadí" - -#: view/theme/frio/config.php:135 -msgid "Content background opacity" -msgstr "Průhlednost pozadí obsahu" - -#: view/theme/frio/config.php:136 -msgid "Set the background image" -msgstr "Nastavit obrázek na pozadí" - -#: view/theme/frio/config.php:137 -msgid "Background image style" -msgstr "Styl obrázku na pozadí" - -#: view/theme/frio/config.php:139 -msgid "Enable Compose page" -msgstr "Povolit stránku komponování" - -#: view/theme/frio/config.php:139 -msgid "" -"This replaces the jot modal window for writing new posts with a link to the new Compose page." -msgstr "Tohle nahradí modální okno pro psaní nových příspěvků odkazem na novou stránku komponování." - -#: view/theme/frio/config.php:143 -msgid "Login page background image" -msgstr "Obrázek na pozadí přihlašovací stránky" - -#: view/theme/frio/config.php:147 -msgid "Login page background color" -msgstr "Barva pozadí přihlašovací stránky" - -#: view/theme/frio/config.php:147 -msgid "Leave background image and color empty for theme defaults" -msgstr "Nechejte obrázek a barvu pozadí prázdnou pro výchozí nastavení motivů" - -#: view/theme/frio/theme.php:246 -msgid "Guest" -msgstr "Host" - -#: view/theme/frio/theme.php:251 -msgid "Visitor" -msgstr "Návštěvník" - -#: view/theme/frio/theme.php:267 src/Content/Nav.php:160 -#: src/Model/Profile.php:917 src/Module/Settings/TwoFactor/Index.php:91 -#: src/Module/Contact.php:616 src/Module/Contact.php:831 -msgid "Status" -msgstr "Stav" - -#: view/theme/frio/theme.php:267 src/Content/Nav.php:160 -#: src/Content/Nav.php:244 -msgid "Your posts and conversations" -msgstr "Vaše příspěvky a konverzace" - -#: view/theme/frio/theme.php:268 src/Content/Nav.php:161 -msgid "Your profile page" -msgstr "Vaše profilová stránka" - -#: view/theme/frio/theme.php:269 src/Content/Nav.php:162 -msgid "Your photos" -msgstr "Vaše fotky" - -#: view/theme/frio/theme.php:270 src/Content/Nav.php:163 -#: src/Model/Profile.php:941 src/Model/Profile.php:944 +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Content/Conversation.php:243 +#, php-format +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Content/Conversation.php:245 +#, php-format +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Content/Conversation.php:274 +#, php-format +msgid " likes this" +msgid_plural " like this" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Content/Conversation.php:277 +#, php-format +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Content/Conversation.php:280 +#, php-format +msgid " attends" +msgid_plural " attend" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Content/Conversation.php:283 +#, php-format +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Content/Conversation.php:286 +#, php-format +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Content/Conversation.php:289 +#, php-format +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Content/Conversation.php:336 +msgid "Visible to everybody" +msgstr "Viditelné pro všechny" + +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1107 +msgid "Please enter a image/video/audio/webpage URL:" +msgstr "Prosím zadejte URL obrázku/videa/audia/webové stránky:" + +#: src/Content/Conversation.php:338 +msgid "Tag term:" +msgstr "Štítek:" + +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 +msgid "Save to Folder:" +msgstr "Uložit do složky:" + +#: src/Content/Conversation.php:340 +msgid "Where are you right now?" +msgstr "Kde právě jste?" + +#: src/Content/Conversation.php:341 +msgid "Delete item(s)?" +msgstr "Smazat položku(y)?" + +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 +msgid "Created at" +msgstr "" + +#: src/Content/Conversation.php:363 +msgid "New Post" +msgstr "Nový příspěvek" + +#: src/Content/Conversation.php:366 +msgid "Share" +msgstr "Sdílet" + +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "nahrát fotku" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Přiložit soubor" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "přiložit soubor" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1097 +msgid "Bold" +msgstr "Tučné" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1098 +msgid "Italic" +msgstr "Kurziva" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1099 +msgid "Underline" +msgstr "Podtržené" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1101 +msgid "Quote" +msgstr "Citace" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1102 +msgid "Add emojis" +msgstr "" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1100 +msgid "Content Warning" +msgstr "" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1103 +msgid "Code" +msgstr "Kód" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1104 +msgid "Image" +msgstr "Obrázek" + +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1105 +msgid "Link" +msgstr "Odkaz" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1106 +msgid "Link or Media" +msgstr "Odkaz nebo média" + +#: src/Content/Conversation.php:382 +msgid "Video" +msgstr "" + +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "Nastavit vaši polohu" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "nastavit polohu" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "Vymazat polohu v prohlížeči" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "vymazat polohu" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Nastavit nadpis" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Kategorie (seznam, oddělujte čárkou)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 +msgid "Scheduled at" +msgstr "" + +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Nastavení oprávnění" + +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Veřejný příspěvek" + +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:120 +#: src/Model/Profile.php:467 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "Zpráva" + +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Prohlížeč" + +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "" + +#: src/Content/Conversation.php:595 +msgid "remove" +msgstr "odstranit" + +#: src/Content/Conversation.php:599 +msgid "Delete Selected Items" +msgstr "Smazat vybrané položky" + +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 +#, php-format +msgid "You had been addressed (%s)." +msgstr "" + +#: src/Content/Conversation.php:769 +#, php-format +msgid "You are following %s." +msgstr "" + +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "" + +#: src/Content/Conversation.php:776 +msgid "You subscribed to one or more tags in this post." +msgstr "" + +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "%s tohle znovusdílel/a." + +#: src/Content/Conversation.php:798 +msgid "Reshared" +msgstr "" + +#: src/Content/Conversation.php:798 +#, php-format +msgid "Reshared by %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:801 +#, php-format +msgid "%s is participating in this thread." +msgstr "" + +#: src/Content/Conversation.php:804 +msgid "Stored for general reasons" +msgstr "" + +#: src/Content/Conversation.php:807 +msgid "Global post" +msgstr "" + +#: src/Content/Conversation.php:810 +msgid "Sent via an relay server" +msgstr "" + +#: src/Content/Conversation.php:810 +#, php-format +msgid "Sent via the relay server %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:813 +msgid "Fetched" +msgstr "" + +#: src/Content/Conversation.php:813 +#, php-format +msgid "Fetched because of %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:816 +msgid "Stored because of a child post to complete this thread." +msgstr "" + +#: src/Content/Conversation.php:819 +msgid "Local delivery" +msgstr "" + +#: src/Content/Conversation.php:822 +msgid "Stored because of your activity (like, comment, star, ...)" +msgstr "" + +#: src/Content/Conversation.php:825 +msgid "Distributed" +msgstr "" + +#: src/Content/Conversation.php:828 +msgid "Pushed to us" +msgstr "" + +#: src/Content/Conversation.php:1492 src/Object/Post.php:247 +msgid "Pinned item" +msgstr "" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:521 +#: src/Object/Post.php:522 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Zobrazit profil uživatele %s na %s" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:509 +msgid "Categories:" +msgstr "Kategorie:" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:510 +msgid "Filed under:" +msgstr "Vyplněn pod:" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:535 +#, php-format +msgid "%s from %s" +msgstr "%s z %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "Zobrazit v kontextu" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "For you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "What's Hot" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "Posts with a lot of interactions" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:61 +#, php-format +msgid "Posts in %s" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:62 +msgid "Posts from your followers that you don't follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Sharers of sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Posts with images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Posts with audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 msgid "Videos" -msgstr "Videa" +msgstr "" -#: view/theme/frio/theme.php:270 src/Content/Nav.php:163 -msgid "Your videos" -msgstr "Vaše videa" +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Posts with videos" +msgstr "" -#: view/theme/frio/theme.php:271 src/Content/Nav.php:164 -msgid "Your events" -msgstr "Vaše události" +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Local Community" +msgstr "Místní komunita" -#: view/theme/frio/theme.php:274 src/Core/NotificationsManager.php:151 -#: src/Content/Nav.php:241 -msgid "Network" -msgstr "Síť" +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Posts from local users on this server" +msgstr "Příspěvky od místních uživatelů na tomto serveru" -#: view/theme/frio/theme.php:274 src/Content/Nav.php:241 -msgid "Conversations from your friends" -msgstr "Konverzace od vašich přátel" +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Global Community" +msgstr "Globální komunita" -#: view/theme/frio/theme.php:275 src/Content/Nav.php:228 -#: src/Model/Profile.php:956 src/Model/Profile.php:967 -msgid "Events and Calendar" -msgstr "Události a kalendář" +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Posts from users of the whole federated network" +msgstr "Příspěvky od uživatelů z celé federované sítě" -#: view/theme/frio/theme.php:276 src/Content/Nav.php:254 -msgid "Private mail" -msgstr "Soukromá pošta" +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Latest Activity" +msgstr "" -#: view/theme/frio/theme.php:277 src/Content/Nav.php:265 -msgid "Account settings" -msgstr "Nastavení účtu" +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Sort by latest activity" +msgstr "" -#: view/theme/frio/theme.php:278 src/Content/Text/HTML.php:904 -#: src/Content/Nav.php:205 src/Content/Nav.php:271 src/Model/Profile.php:996 -#: src/Model/Profile.php:999 src/Module/Contact.php:774 -#: src/Module/Contact.php:859 -msgid "Contacts" -msgstr "Kontakty" +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Latest Posts" +msgstr "" -#: view/theme/frio/theme.php:278 src/Content/Nav.php:271 -msgid "Manage/edit friends and contacts" -msgstr "Spravovat/upravit přátelé a kontakty" +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Sort by post received date" +msgstr "" -#: view/theme/quattro/config.php:76 -msgid "Alignment" -msgstr "Zarovnání" +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Latest Creation" +msgstr "" -#: view/theme/quattro/config.php:76 -msgid "Left" -msgstr "Vlevo" +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Sort by post creation date" +msgstr "" -#: view/theme/quattro/config.php:76 -msgid "Center" -msgstr "Uprostřed" +#: src/Content/Conversation/Factory/Timeline.php:106 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "Osobní" -#: view/theme/quattro/config.php:77 -msgid "Color scheme" -msgstr "Barevné schéma" +#: src/Content/Conversation/Factory/Timeline.php:106 +msgid "Posts that mention or involve you" +msgstr "Příspěvky, které vás zmiňují nebo zahrnují" -#: view/theme/quattro/config.php:78 -msgid "Posts font size" -msgstr "Velikost písma u příspěvků" +#: src/Content/Conversation/Factory/Timeline.php:107 src/Object/Post.php:380 +msgid "Starred" +msgstr "S hvězdou" -#: view/theme/quattro/config.php:79 -msgid "Textareas font size" -msgstr "Velikost písma textů" +#: src/Content/Conversation/Factory/Timeline.php:107 +msgid "Favourite Posts" +msgstr "Oblíbené přízpěvky" -#: view/theme/vier/config.php:76 -msgid "Comma separated list of helper forums" -msgstr "Seznam fór s pomocníky, oddělených čárkami" +#: src/Content/Feature.php:96 +msgid "General Features" +msgstr "Obecné vlastnosti" -#: view/theme/vier/config.php:116 src/Core/ACL.php:302 -msgid "don't show" -msgstr "nezobrazit" +#: src/Content/Feature.php:98 +msgid "Photo Location" +msgstr "Poloha fotky" -#: view/theme/vier/config.php:116 src/Core/ACL.php:301 -msgid "show" -msgstr "zobrazit" +#: 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 "Metadata fotek jsou normálně odebrána. Tato funkce před odebrání metadat extrahuje polohu (pokud je k dispozici) a propojí ji s mapou." -#: view/theme/vier/config.php:122 -msgid "Set style" -msgstr "Nastavit styl" +#: src/Content/Feature.php:99 +msgid "Trending Tags" +msgstr "Populární štítky" -#: view/theme/vier/config.php:123 -msgid "Community Pages" -msgstr "Komunitní stránky" +#: src/Content/Feature.php:99 +msgid "" +"Show a community page widget with a list of the most popular tags in recent " +"public posts." +msgstr "Zobrazit widget komunitní stránky se seznamem nejpopulárnějších štítků v nedávných veřejných příspěvcích." -#: view/theme/vier/config.php:124 view/theme/vier/theme.php:151 -msgid "Community Profiles" -msgstr "Komunitní profily" +#: src/Content/Feature.php:104 +msgid "Post Composition Features" +msgstr "Nastavení vytváření příspěvků" -#: view/theme/vier/config.php:125 -msgid "Help or @NewHere ?" -msgstr "Pomoc nebo @ProNováčky ?" +#: src/Content/Feature.php:105 +msgid "Auto-mention Groups" +msgstr "" -#: view/theme/vier/config.php:126 view/theme/vier/theme.php:373 -msgid "Connect Services" -msgstr "Připojit služby" +#: src/Content/Feature.php:105 +msgid "" +"Add/remove mention when a group page is selected/deselected in ACL window." +msgstr "" -#: view/theme/vier/config.php:127 -msgid "Find Friends" -msgstr "Najít přátele" +#: src/Content/Feature.php:106 +msgid "Explicit Mentions" +msgstr "Výslovné zmínky" -#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181 -msgid "Last users" -msgstr "Poslední uživatelé" +#: src/Content/Feature.php:106 +msgid "" +"Add explicit mentions to comment box for manual control over who gets " +"mentioned in replies." +msgstr "Přidá do pole pro komentování výslovné zmínky pro ruční kontrolu nad tím, koho zmíníte v odpovědích." -#: view/theme/vier/theme.php:199 src/Content/Widget.php:64 -msgid "Find People" -msgstr "Najít lidi" +#: src/Content/Feature.php:107 +msgid "Add an abstract from ActivityPub content warnings" +msgstr "" -#: view/theme/vier/theme.php:200 src/Content/Widget.php:65 -msgid "Enter name or interest" -msgstr "Zadejte jméno nebo zájmy" +#: src/Content/Feature.php:107 +msgid "" +"Add an abstract when commenting on ActivityPub posts with a content warning." +" Abstracts are displayed as content warning on systems like Mastodon or " +"Pleroma." +msgstr "" -#: view/theme/vier/theme.php:202 src/Content/Widget.php:67 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Příklady: Josef Dvořák, rybaření" +#: src/Content/Feature.php:112 +msgid "Post/Comment Tools" +msgstr "Nástroje příspěvků/komentářů" -#: view/theme/vier/theme.php:203 src/Content/Widget.php:68 -#: src/Module/Directory.php:86 src/Module/Contact.php:795 -msgid "Find" -msgstr "Najít" +#: src/Content/Feature.php:113 +msgid "Post Categories" +msgstr "Kategorie příspěvků" -#: view/theme/vier/theme.php:205 src/Content/Widget.php:70 -msgid "Similar Interests" -msgstr "Podobné zájmy" +#: src/Content/Feature.php:113 +msgid "Add categories to your posts" +msgstr "Přidat kategorie k vašim příspěvkům" -#: view/theme/vier/theme.php:206 src/Content/Widget.php:71 -msgid "Random Profile" -msgstr "Náhodný profil" +#: src/Content/Feature.php:118 +msgid "Advanced Profile Settings" +msgstr "Pokročilá nastavení profilu" -#: view/theme/vier/theme.php:207 src/Content/Widget.php:72 -msgid "Invite Friends" -msgstr "Pozvat přátele" +#: src/Content/Feature.php:119 +msgid "List Groups" +msgstr "" -#: view/theme/vier/theme.php:208 src/Content/Widget.php:73 -#: src/Module/Directory.php:78 -msgid "Global Directory" -msgstr "Globální adresář" +#: src/Content/Feature.php:119 +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "" -#: view/theme/vier/theme.php:210 src/Content/Widget.php:75 -msgid "Local Directory" -msgstr "Místní adresář" +#: src/Content/Feature.php:120 +msgid "Tag Cloud" +msgstr "Štítkový oblak" -#: view/theme/vier/theme.php:250 src/Content/Text/HTML.php:907 -#: src/Content/Nav.php:209 src/Content/ForumManager.php:130 -msgid "Forums" -msgstr "Fóra" +#: src/Content/Feature.php:120 +msgid "Provide a personal tag cloud on your profile page" +msgstr "Poskytne na vaší profilové stránce osobní „štítkový oblak“" -#: view/theme/vier/theme.php:252 src/Content/ForumManager.php:132 -msgid "External link to forum" -msgstr "Externí odkaz na fórum" +#: src/Content/Feature.php:121 +msgid "Display Membership Date" +msgstr "Zobrazit datum členství" -#: view/theme/vier/theme.php:255 src/Content/Widget.php:407 -#: src/Content/Widget.php:507 src/Content/ForumManager.php:135 +#: src/Content/Feature.php:121 +msgid "Display membership date in profile" +msgstr "Zobrazit v profilu datum připojení" + +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "" + +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "" + +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "" + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1273 +msgid "Groups" +msgstr "" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 +msgid "show less" +msgstr "" + +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 msgid "show more" msgstr "zobrazit více" -#: view/theme/vier/theme.php:288 -msgid "Quick Start" -msgstr "Rychlý začátek" +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "" -#: view/theme/vier/theme.php:294 src/Content/Nav.php:192 -#: src/Module/Help.php:50 src/Module/Settings/TwoFactor/AppSpecific.php:99 -#: src/Module/Settings/TwoFactor/Index.php:90 -#: src/Module/Settings/TwoFactor/Recovery.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:117 +#: src/Content/Item.php:331 src/Model/Item.php:3003 +msgid "event" +msgstr "událost" + +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "stav" + +#: src/Content/Item.php:340 src/Model/Item.php:3005 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "fotka" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s označil/a %3$s uživatele %2$s štítkem %4$s" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 +msgid "Follow Thread" +msgstr "Sledovat vlákno" + +#: src/Content/Item.php:429 src/Model/Contact.php:1227 +msgid "View Status" +msgstr "Zobrazit stav" + +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1219 +#: src/Model/Contact.php:1228 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 +msgid "View Profile" +msgstr "Zobrazit profil" + +#: src/Content/Item.php:431 src/Model/Contact.php:1229 +msgid "View Photos" +msgstr "Zobrazit fotky" + +#: src/Content/Item.php:432 src/Model/Contact.php:1220 +#: src/Model/Contact.php:1230 +msgid "Network Posts" +msgstr "Síťové příspěvky" + +#: src/Content/Item.php:433 src/Model/Contact.php:1221 +#: src/Model/Contact.php:1231 +msgid "View Contact" +msgstr "Zobrazit kontakt" + +#: src/Content/Item.php:434 src/Model/Contact.php:1232 +msgid "Send PM" +msgstr "Poslat soukromou zprávu" + +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 +msgid "Block" +msgstr "Blokovat" + +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 +msgid "Ignore" +msgstr "Ignorovat" + +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "" + +#: src/Content/Item.php:438 src/Object/Post.php:288 +#, php-format +msgid "Ignore %s server" +msgstr "" + +#: src/Content/Item.php:442 src/Object/Post.php:490 +msgid "Languages" +msgstr "" + +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1222 src/Model/Contact.php:1233 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Spojit se/sledovat" + +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "" + +#: src/Content/Nav.php:121 +msgid "Nothing new here" +msgstr "Zde není nic nového" + +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +msgid "Go back" +msgstr "Přejít zpět" + +#: src/Content/Nav.php:126 +msgid "Clear notifications" +msgstr "Vymazat oznámení" + +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" +msgstr "" + +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 +msgid "Logout" +msgstr "Odhlásit se" + +#: src/Content/Nav.php:222 +msgid "End this session" +msgstr "Konec této relace" + +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 +msgid "Login" +msgstr "Přihlásit se" + +#: src/Content/Nav.php:224 +msgid "Sign in" +msgstr "Přihlásit se" + +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "" + +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "" + +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +msgid "Profile" +msgstr "Profil" + +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +msgid "Your profile page" +msgstr "Vaše profilová stránka" + +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Fotky" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +msgid "Your photos" +msgstr "Vaše fotky" + +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 +msgid "Media" +msgstr "" + +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +msgid "Your postings with media" +msgstr "" + +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "Kalendář" + +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "" + +#: src/Content/Nav.php:234 +msgid "Personal notes" +msgstr "Osobní poznámky" + +#: src/Content/Nav.php:234 +msgid "Your personal notes" +msgstr "Vaše osobní poznámky" + +#: src/Content/Nav.php:251 src/Content/Nav.php:308 +msgid "Home" +msgstr "Domů" + +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "Domovská stránka" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 +#: src/Module/Security/Login.php:124 +msgid "Register" +msgstr "Registrovat" + +#: src/Content/Nav.php:255 +msgid "Create an account" +msgstr "Vytvořit účet" + +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 msgid "Help" msgstr "Nápověda" -#: src/Core/L10n/L10n.php:370 src/Model/Event.php:397 +#: src/Content/Nav.php:261 +msgid "Help and documentation" +msgstr "Nápověda a dokumentace" + +#: src/Content/Nav.php:265 +msgid "Apps" +msgstr "Aplikace" + +#: src/Content/Nav.php:265 +msgid "Addon applications, utilities, games" +msgstr "Doplňkové aplikace, nástroje, hry" + +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 +msgid "Search" +msgstr "Hledat" + +#: src/Content/Nav.php:269 +msgid "Search site content" +msgstr "Hledání na stránkách tohoto webu" + +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 +msgid "Full Text" +msgstr "Celý text" + +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 +#: src/Content/Widget/TagCloud.php:68 +msgid "Tags" +msgstr "Štítky" + +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 +msgid "Contacts" +msgstr "Kontakty" + +#: src/Content/Nav.php:289 +msgid "Community" +msgstr "Komunita" + +#: src/Content/Nav.php:289 +msgid "Conversations on this and other servers" +msgstr "Konverzace na tomto a jiných serverech" + +#: src/Content/Nav.php:296 +msgid "Directory" +msgstr "Adresář" + +#: src/Content/Nav.php:296 +msgid "People directory" +msgstr "Adresář" + +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 +msgid "Information" +msgstr "Informace" + +#: src/Content/Nav.php:298 +msgid "Information about this friendica instance" +msgstr "Informace o této instanci Friendica" + +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 +msgid "Terms of Service" +msgstr "Podmínky používání" + +#: src/Content/Nav.php:301 +msgid "Terms of Service of this Friendica instance" +msgstr "Podmínky používání této instance Friendica" + +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +msgid "Network" +msgstr "Síť" + +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +msgid "Conversations from your friends" +msgstr "Konverzace od vašich přátel" + +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "Vaše příspěvky a konverzace" + +#: src/Content/Nav.php:312 +msgid "Introductions" +msgstr "Představení" + +#: src/Content/Nav.php:312 +msgid "Friend Requests" +msgstr "Požadavky o přátelství" + +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 +msgid "Notifications" +msgstr "Oznámení" + +#: src/Content/Nav.php:314 +msgid "See all notifications" +msgstr "Zobrazit všechna oznámení" + +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Označit jako přečtené" + +#: src/Content/Nav.php:315 +msgid "Mark all system notifications as seen" +msgstr "" + +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +msgid "Private mail" +msgstr "Soukromá pošta" + +#: src/Content/Nav.php:319 +msgid "Inbox" +msgstr "Doručená pošta" + +#: src/Content/Nav.php:320 +msgid "Outbox" +msgstr "Odeslaná pošta" + +#: src/Content/Nav.php:324 +msgid "Accounts" +msgstr "" + +#: src/Content/Nav.php:324 +msgid "Manage other pages" +msgstr "Spravovat jiné stránky" + +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:175 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +msgid "Settings" +msgstr "Nastavení" + +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +msgid "Account settings" +msgstr "Nastavení účtu" + +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +msgid "Manage/edit friends and contacts" +msgstr "Spravovat/upravit přátelé a kontakty" + +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +msgid "Admin" +msgstr "Administrátor" + +#: src/Content/Nav.php:334 +msgid "Site setup and configuration" +msgstr "Nastavení webu a konfigurace" + +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "" + +#: src/Content/Nav.php:338 +msgid "Navigation" +msgstr "Navigace" + +#: src/Content/Nav.php:338 +msgid "Site map" +msgstr "Mapa webu" + +#: src/Content/OEmbed.php:316 +msgid "Embedding disabled" +msgstr "Vkládání zakázáno" + +#: src/Content/OEmbed.php:440 +msgid "Embedded content" +msgstr "Vložený obsah" + +#: src/Content/Pager.php:216 +msgid "first" +msgstr "první" + +#: src/Content/Pager.php:221 +msgid "prev" +msgstr "předchozí" + +#: src/Content/Pager.php:276 +msgid "next" +msgstr "další" + +#: src/Content/Pager.php:281 +msgid "last" +msgstr "poslední" + +#: src/Content/Text/BBCode.php:696 src/Content/Text/BBCode.php:1636 +#: src/Content/Text/BBCode.php:1637 +msgid "Image/photo" +msgstr "Obrázek/fotka" + +#: src/Content/Text/BBCode.php:914 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: src/Content/Text/BBCode.php:939 src/Model/Item.php:3745 +#: src/Model/Item.php:3751 src/Model/Item.php:3752 +msgid "Link to source" +msgstr "" + +#: src/Content/Text/BBCode.php:1543 src/Content/Text/HTML.php:904 +msgid "Click to open/close" +msgstr "Kliknutím otevřete/zavřete" + +#: src/Content/Text/BBCode.php:1576 +msgid "$1 wrote:" +msgstr "$1 napsal/a:" + +#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642 +msgid "Encrypted content" +msgstr "Šifrovaný obsah" + +#: src/Content/Text/BBCode.php:1901 +msgid "Invalid source protocol" +msgstr "Neplatný protokol zdroje" + +#: src/Content/Text/BBCode.php:1920 +msgid "Invalid link protocol" +msgstr "Neplatný protokol odkazu" + +#: src/Content/Text/HTML.php:782 +msgid "Loading more entries..." +msgstr "Načítám více záznamů..." + +#: src/Content/Text/HTML.php:783 +msgid "The end" +msgstr "Konec" + +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:116 +#: src/Model/Profile.php:461 src/Module/Contact/Profile.php:471 +msgid "Follow" +msgstr "Sledovat" + +#: src/Content/Widget.php:51 +msgid "Add New Contact" +msgstr "Přidat nový kontakt" + +#: src/Content/Widget.php:52 +msgid "Enter address or web location" +msgstr "Zadejte adresu nebo umístění webu" + +#: src/Content/Widget.php:53 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Příklad: jan@priklad.cz, http://priklad.cz/lucie" + +#: src/Content/Widget.php:55 +msgid "Connect" +msgstr "Spojit se" + +#: src/Content/Widget.php:72 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d pozvánka k dispozici" +msgstr[1] "%d pozvánky k dispozici" +msgstr[2] "%d pozvánky k dispozici" +msgstr[3] "%d pozvánek k dispozici" + +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +msgid "Find People" +msgstr "Najít lidi" + +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +msgid "Enter name or interest" +msgstr "Zadejte jméno nebo zájmy" + +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Příklady: Josef Dvořák, rybaření" + +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 +msgid "Find" +msgstr "Najít" + +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "Návrhy přátel" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +msgid "Similar Interests" +msgstr "Podobné zájmy" + +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +msgid "Random Profile" +msgstr "Náhodný profil" + +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +msgid "Invite Friends" +msgstr "Pozvat přátele" + +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 +msgid "Global Directory" +msgstr "Globální adresář" + +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +msgid "Local Directory" +msgstr "Místní adresář" + +#: src/Content/Widget.php:215 src/Model/Circle.php:600 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "" + +#: src/Content/Widget.php:217 +msgid "Everyone" +msgstr "" + +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "" + +#: src/Content/Widget.php:247 +msgid "Relationships" +msgstr "Vztahy" + +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 +msgid "All Contacts" +msgstr "Všechny kontakty" + +#: src/Content/Widget.php:288 +msgid "Protocols" +msgstr "Protokoly" + +#: src/Content/Widget.php:290 +msgid "All Protocols" +msgstr "Všechny protokoly" + +#: src/Content/Widget.php:318 +msgid "Saved Folders" +msgstr "Uložené složky" + +#: src/Content/Widget.php:320 src/Content/Widget.php:351 +msgid "Everything" +msgstr "Všechno" + +#: src/Content/Widget.php:349 +msgid "Categories" +msgstr "Kategorie" + +#: src/Content/Widget.php:406 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d společný kontakt" +msgstr[1] "%d společné kontakty" +msgstr[2] "%d společného kontaktu" +msgstr[3] "%d společných kontaktů" + +#: src/Content/Widget.php:506 +msgid "Archives" +msgstr "Archivy" + +#: src/Content/Widget.php:514 +msgid "On this date" +msgstr "" + +#: src/Content/Widget.php:534 +msgid "Persons" +msgstr "" + +#: src/Content/Widget.php:535 +msgid "Organisations" +msgstr "" + +#: src/Content/Widget.php:536 src/Model/Contact.php:1698 +msgid "News" +msgstr "Zprávy" + +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 +msgid "Account Types" +msgstr "Typy účtů" + +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 +msgid "All" +msgstr "" + +#: src/Content/Widget.php:573 src/Module/Settings/Display.php:266 +msgid "Channels" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:56 +msgid "Export" +msgstr "Exportovat" + +#: src/Content/Widget/CalendarExport.php:57 +msgid "Export calendar as ical" +msgstr "Exportovat kalendář jako ical" + +#: src/Content/Widget/CalendarExport.php:58 +msgid "Export calendar as csv" +msgstr "Exportovat kalendář jako csv" + +#: src/Content/Widget/ContactBlock.php:79 +msgid "No contacts" +msgstr "Žádné kontakty" + +#: src/Content/Widget/ContactBlock.php:110 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d kontakt" +msgstr[1] "%d kontakty" +msgstr[2] "%d kontaktu" +msgstr[3] "%d kontaktů" + +#: src/Content/Widget/ContactBlock.php:127 +msgid "View Contacts" +msgstr "Zobrazit kontakty" + +#: src/Content/Widget/SavedSearches.php:47 +msgid "Remove term" +msgstr "Odstranit termín" + +#: src/Content/Widget/SavedSearches.php:60 +msgid "Saved Searches" +msgstr "Uložená hledání" + +#: src/Content/Widget/TrendingTags.php:52 +#, php-format +msgid "Trending Tags (last %d hour)" +msgid_plural "Trending Tags (last %d hours)" +msgstr[0] "Populární štítky (poslední %d hodina)" +msgstr[1] "Populární štítky (poslední %d hodiny)" +msgstr[2] "Populární štítky (posledních %d hodin)" +msgstr[3] "Populární štítky (posledních %d hodin)" + +#: src/Content/Widget/TrendingTags.php:53 +msgid "More Trending Tags" +msgstr "Další populární štítky" + +#: src/Content/Widget/VCard.php:109 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 +msgid "XMPP:" +msgstr "XMPP:" + +#: src/Content/Widget/VCard.php:110 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 +msgid "Matrix:" +msgstr "" + +#: src/Content/Widget/VCard.php:111 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Poloha:" + +#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:474 +#: src/Module/Notifications/Introductions.php:201 +msgid "Network:" +msgstr "Síť:" + +#: src/Content/Widget/VCard.php:118 src/Model/Contact.php:1223 +#: src/Model/Contact.php:1234 src/Model/Profile.php:463 +#: src/Module/Contact/Profile.php:463 +msgid "Unfollow" +msgstr "Přestat sledovat" + +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +msgid "Yourself" +msgstr "" + +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 +msgid "Mutuals" +msgstr "Vzájemní" + +#: src/Core/ACL.php:294 +msgid "Post to Email" +msgstr "Poslat příspěvek na e-mail" + +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 +msgid "Public" +msgstr "" + +#: src/Core/ACL.php:322 +msgid "" +"This content will be shown to all your followers and can be seen in the " +"community pages and by anyone with its link." +msgstr "" + +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 +msgid "Limited/Private" +msgstr "" + +#: src/Core/ACL.php:324 +msgid "" +"This content will be shown only to the people in the first box, to the " +"exception of the people mentioned in the second box. It won't appear " +"anywhere public." +msgstr "" + +#: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." +msgstr "" + +#: src/Core/ACL.php:325 +msgid "Show to:" +msgstr "" + +#: src/Core/ACL.php:326 +msgid "Except to:" +msgstr "" + +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "Kopie: e-mailové adresy" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Příklad: jan@priklad.cz, lucie@priklad.cz" + +#: src/Core/ACL.php:329 +msgid "Connectors" +msgstr "Konektory" + +#: src/Core/Installer.php:180 +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 "Databázový konfigurační soubor „config/local.config.php“ nemohl být zapsán. Prosím, použijte přiložený text k vytvoření konfiguračního souboru v kořenovém adresáři vašeho webového serveru." + +#: src/Core/Installer.php:197 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Nejspíše budete muset manuálně importovat soubor „database.sql“ pomocí phpMyAdmin či MySQL." + +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 +msgid "Please see the file \"doc/INSTALL.md\"." +msgstr "" + +#: src/Core/Installer.php:259 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru." + +#: src/Core/Installer.php:260 +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 "" + +#: src/Core/Installer.php:265 +msgid "PHP executable path" +msgstr "Cesta ke spustitelnému souboru PHP" + +#: src/Core/Installer.php:265 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Zadejte plnou cestu ke spustitelnému souboru PHP. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci." + +#: src/Core/Installer.php:270 +msgid "Command line PHP" +msgstr "Příkazový řádek PHP" + +#: src/Core/Installer.php:279 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "PHP executable není php cli binary (může být verze cgi-fgci)" + +#: src/Core/Installer.php:280 +msgid "Found PHP version: " +msgstr "Nalezena verze PHP:" + +#: src/Core/Installer.php:282 +msgid "PHP cli binary" +msgstr "PHP cli binary" + +#: src/Core/Installer.php:295 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Verze PHP pro příkazový řádek na vašem systému nemá povoleno nastavení „register_argc_argv“." + +#: src/Core/Installer.php:296 +msgid "This is required for message delivery to work." +msgstr "Toto je nutné pro fungování doručování zpráv." + +#: src/Core/Installer.php:301 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: src/Core/Installer.php:333 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Chyba: funkce „openssl_pkey_new“ na tomto systému není schopna generovat šifrovací klíče" + +#: src/Core/Installer.php:334 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Pokud systém běží na Windows, prosím přečtěte si „http://www.php.net/manual/en/openssl.installation.php“." + +#: src/Core/Installer.php:337 +msgid "Generate encryption keys" +msgstr "Generovat šifrovací klíče" + +#: src/Core/Installer.php:389 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Chyba: Modul mod_rewrite webového serveru Apache je vyadován, ale není nainstalován." + +#: src/Core/Installer.php:394 +msgid "Apache mod_rewrite module" +msgstr "Modul Apache mod_rewrite" + +#: src/Core/Installer.php:400 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "Chyba: PHP modul PDO nebo MySQLi je vyžadován, ale není nainstalován." + +#: src/Core/Installer.php:405 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "Chyba: Ovladač MySQL pro PDO není nainstalován" + +#: src/Core/Installer.php:409 +msgid "PDO or MySQLi PHP module" +msgstr "PHP modul PDO nebo MySQLi" + +#: src/Core/Installer.php:417 +msgid "Error, XML PHP module required but not installed." +msgstr "Chyba: PHP modul XML je vyžadován, ale není nainstalován" + +#: src/Core/Installer.php:421 +msgid "XML PHP module" +msgstr "PHP modul XML" + +#: src/Core/Installer.php:424 +msgid "libCurl PHP module" +msgstr "PHP modul libCurl" + +#: src/Core/Installer.php:425 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Chyba: PHP modul libcurl je vyžadován, ale není nainstalován." + +#: src/Core/Installer.php:431 +msgid "GD graphics PHP module" +msgstr "PHP modul GD graphics" + +#: src/Core/Installer.php:432 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Chyba: PHP modul GD graphics je vyžadován, ale není nainstalován." + +#: src/Core/Installer.php:438 +msgid "OpenSSL PHP module" +msgstr "PHP modul OpenSSL" + +#: src/Core/Installer.php:439 +msgid "Error: openssl PHP module required but not installed." +msgstr "Chyba: PHP modul openssl je vyžadován, ale není nainstalován." + +#: src/Core/Installer.php:445 +msgid "mb_string PHP module" +msgstr "PHP modul mb_string" + +#: src/Core/Installer.php:446 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Chyba: PHP modul mb_string je vyžadován, ale není nainstalován." + +#: src/Core/Installer.php:452 +msgid "iconv PHP module" +msgstr "PHP modul iconv" + +#: src/Core/Installer.php:453 +msgid "Error: iconv PHP module required but not installed." +msgstr "Chyba: PHP modul iconv je vyžadován, ale není nainstalován" + +#: src/Core/Installer.php:459 +msgid "POSIX PHP module" +msgstr "PHP modul POSIX" + +#: src/Core/Installer.php:460 +msgid "Error: POSIX PHP module required but not installed." +msgstr "Chyba: PHP modul POSIX je vyžadován, ale není nainstalován." + +#: src/Core/Installer.php:466 +msgid "Program execution functions" +msgstr "" + +#: src/Core/Installer.php:467 +msgid "" +"Error: Program execution functions (proc_open) required but not enabled." +msgstr "" + +#: src/Core/Installer.php:473 +msgid "JSON PHP module" +msgstr "PHP modul JSON" + +#: src/Core/Installer.php:474 +msgid "Error: JSON PHP module required but not installed." +msgstr "Chyba: PHP modul JSON je vyžadován, ale není nainstalován" + +#: src/Core/Installer.php:480 +msgid "File Information PHP module" +msgstr "PHP modul File Information" + +#: src/Core/Installer.php:481 +msgid "Error: File Information PHP module required but not installed." +msgstr "Chyba: PHP modul File Information je vyžadován, ale není nainstalován." + +#: src/Core/Installer.php:487 +msgid "GNU Multiple Precision PHP module" +msgstr "" + +#: src/Core/Installer.php:488 +msgid "Error: GNU Multiple Precision PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:511 +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 "Webový instalátor musí být schopen vytvořit soubor s názvem „local.config.php“ v adresáři „config“ Vašeho webového serveru a není mu to umožněno. " + +#: src/Core/Installer.php:512 +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 "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když vy můžete." + +#: src/Core/Installer.php:513 +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 "Na konci této procedury od nás obdržíte text k uložení v souboru pojmenovaném local.config.php v adresáři „config“ na Vaší instalaci Friendica." + +#: src/Core/Installer.php:514 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"doc/INSTALL.md\" for instructions." +msgstr "" + +#: src/Core/Installer.php:517 +msgid "config/local.config.php is writable" +msgstr "Soubor config/local.config.php je zapisovatelný" + +#: src/Core/Installer.php:537 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica používá k zobrazení svých webových stránek šablonovací nástroj Smarty3. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování." + +#: src/Core/Installer.php:538 +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 "Pro uložení kompilovaných šablon potřebuje webový server mít přístup k zápisu do adresáře view/smarty3/ pod kořenovým adresářem Friendica." + +#: src/Core/Installer.php:539 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Prosím ujistěte se, že má uživatel webového serveru (jako například www-data) právo zápisu do tohoto adresáře" + +#: src/Core/Installer.php:540 +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 "Poznámka: jako bezpečnostní opatření byste měl/a přidělit webovém serveru právo zápisu pouze do adresáře /view/smarty3/ -- a nikoliv už do souborů s šablonami (.tpl), které obsahuje." + +#: src/Core/Installer.php:543 +msgid "view/smarty3 is writable" +msgstr "Adresář view/smarty3 je zapisovatelný" + +#: src/Core/Installer.php:571 +msgid "" +"Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" +"dist to .htaccess." +msgstr "" + +#: src/Core/Installer.php:572 +msgid "" +"In some circumstances (like running inside containers), you can skip this " +"error." +msgstr "" + +#: src/Core/Installer.php:574 +msgid "Error message from Curl when fetching" +msgstr "Chybová zpráva od Curl při načítání" + +#: src/Core/Installer.php:580 +msgid "Url rewrite is working" +msgstr "Url rewrite je funkční." + +#: src/Core/Installer.php:609 +msgid "" +"The detection of TLS to secure the communication between the browser and the" +" new Friendica server failed." +msgstr "" + +#: src/Core/Installer.php:610 +msgid "" +"It is highly encouraged to use Friendica only over a secure connection as " +"sensitive information like passwords will be transmitted." +msgstr "" + +#: src/Core/Installer.php:611 +msgid "Please ensure that the connection to the server is secure." +msgstr "" + +#: src/Core/Installer.php:612 +msgid "No TLS detected" +msgstr "" + +#: src/Core/Installer.php:614 +msgid "TLS detected" +msgstr "" + +#: src/Core/Installer.php:641 +msgid "ImageMagick PHP extension is not installed" +msgstr "PHP rozšíření ImageMagick není nainstalováno" + +#: src/Core/Installer.php:643 +msgid "ImageMagick PHP extension is installed" +msgstr "PHP rozšíření ImageMagick je nainstalováno" + +#: src/Core/Installer.php:645 +msgid "ImageMagick supports GIF" +msgstr "ImageMagick podporuje GIF" + +#: src/Core/Installer.php:667 +msgid "Database already in use." +msgstr "Databáze se již používá." + +#: src/Core/Installer.php:672 +msgid "Could not connect to database." +msgstr "Nelze se připojit k databázi." + +#: src/Core/L10n.php:476 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:235 +msgid "Monday" +msgstr "pondělí" + +#: src/Core/L10n.php:476 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:236 msgid "Tuesday" msgstr "úterý" -#: src/Core/L10n/L10n.php:370 src/Model/Event.php:398 +#: src/Core/L10n.php:476 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:237 msgid "Wednesday" msgstr "středa" -#: src/Core/L10n/L10n.php:370 src/Model/Event.php:399 +#: src/Core/L10n.php:476 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:238 msgid "Thursday" msgstr "čtvrtek" -#: src/Core/L10n/L10n.php:370 src/Model/Event.php:400 +#: src/Core/L10n.php:476 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:239 msgid "Friday" msgstr "pátek" -#: src/Core/L10n/L10n.php:370 src/Model/Event.php:401 +#: src/Core/L10n.php:476 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:240 msgid "Saturday" msgstr "sobota" -#: src/Core/L10n/L10n.php:374 src/Model/Event.php:416 +#: src/Core/L10n.php:476 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:234 +msgid "Sunday" +msgstr "neděle" + +#: src/Core/L10n.php:480 src/Model/Event.php:450 msgid "January" msgstr "leden" -#: src/Core/L10n/L10n.php:374 src/Model/Event.php:417 +#: src/Core/L10n.php:480 src/Model/Event.php:451 msgid "February" msgstr "únor" -#: src/Core/L10n/L10n.php:374 src/Model/Event.php:418 +#: src/Core/L10n.php:480 src/Model/Event.php:452 msgid "March" msgstr "březen" -#: src/Core/L10n/L10n.php:374 src/Model/Event.php:419 +#: src/Core/L10n.php:480 src/Model/Event.php:453 msgid "April" msgstr "duben" -#: src/Core/L10n/L10n.php:374 src/Core/L10n/L10n.php:394 -#: src/Model/Event.php:407 +#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441 msgid "May" msgstr "květen" -#: src/Core/L10n/L10n.php:374 src/Model/Event.php:420 +#: src/Core/L10n.php:480 src/Model/Event.php:454 msgid "June" msgstr "červen" -#: src/Core/L10n/L10n.php:374 src/Model/Event.php:421 +#: src/Core/L10n.php:480 src/Model/Event.php:455 msgid "July" msgstr "červenec" -#: src/Core/L10n/L10n.php:374 src/Model/Event.php:422 +#: src/Core/L10n.php:480 src/Model/Event.php:456 msgid "August" msgstr "srpen" -#: src/Core/L10n/L10n.php:374 src/Model/Event.php:423 +#: src/Core/L10n.php:480 src/Model/Event.php:457 msgid "September" msgstr "září" -#: src/Core/L10n/L10n.php:374 src/Model/Event.php:424 +#: src/Core/L10n.php:480 src/Model/Event.php:458 msgid "October" msgstr "říjen" -#: src/Core/L10n/L10n.php:374 src/Model/Event.php:425 +#: src/Core/L10n.php:480 src/Model/Event.php:459 msgid "November" msgstr "listopad" -#: src/Core/L10n/L10n.php:374 src/Model/Event.php:426 +#: src/Core/L10n.php:480 src/Model/Event.php:460 msgid "December" msgstr "prosinec" -#: src/Core/L10n/L10n.php:390 src/Model/Event.php:388 +#: src/Core/L10n.php:495 src/Model/Event.php:422 msgid "Mon" msgstr "pon" -#: src/Core/L10n/L10n.php:390 src/Model/Event.php:389 +#: src/Core/L10n.php:495 src/Model/Event.php:423 msgid "Tue" msgstr "úte" -#: src/Core/L10n/L10n.php:390 src/Model/Event.php:390 +#: src/Core/L10n.php:495 src/Model/Event.php:424 msgid "Wed" msgstr "stř" -#: src/Core/L10n/L10n.php:390 src/Model/Event.php:391 +#: src/Core/L10n.php:495 src/Model/Event.php:425 msgid "Thu" msgstr "čtv" -#: src/Core/L10n/L10n.php:390 src/Model/Event.php:392 +#: src/Core/L10n.php:495 src/Model/Event.php:426 msgid "Fri" msgstr "pát" -#: src/Core/L10n/L10n.php:390 src/Model/Event.php:393 +#: src/Core/L10n.php:495 src/Model/Event.php:427 msgid "Sat" msgstr "sob" -#: src/Core/L10n/L10n.php:390 src/Model/Event.php:387 +#: src/Core/L10n.php:495 src/Model/Event.php:421 msgid "Sun" msgstr "ned" -#: src/Core/L10n/L10n.php:394 src/Model/Event.php:403 +#: src/Core/L10n.php:499 src/Model/Event.php:437 msgid "Jan" msgstr "led" -#: src/Core/L10n/L10n.php:394 src/Model/Event.php:404 +#: src/Core/L10n.php:499 src/Model/Event.php:438 msgid "Feb" msgstr "úno" -#: src/Core/L10n/L10n.php:394 src/Model/Event.php:405 +#: src/Core/L10n.php:499 src/Model/Event.php:439 msgid "Mar" msgstr "bře" -#: src/Core/L10n/L10n.php:394 src/Model/Event.php:406 +#: src/Core/L10n.php:499 src/Model/Event.php:440 msgid "Apr" msgstr "dub" -#: src/Core/L10n/L10n.php:394 src/Model/Event.php:408 +#: src/Core/L10n.php:499 src/Model/Event.php:442 msgid "Jun" msgstr "čvn" -#: src/Core/L10n/L10n.php:394 src/Model/Event.php:409 +#: src/Core/L10n.php:499 src/Model/Event.php:443 msgid "Jul" msgstr "čvc" -#: src/Core/L10n/L10n.php:394 src/Model/Event.php:410 +#: src/Core/L10n.php:499 src/Model/Event.php:444 msgid "Aug" msgstr "srp" -#: src/Core/L10n/L10n.php:394 +#: src/Core/L10n.php:499 msgid "Sep" msgstr "zář" -#: src/Core/L10n/L10n.php:394 src/Model/Event.php:412 +#: src/Core/L10n.php:499 src/Model/Event.php:446 msgid "Oct" msgstr "říj" -#: src/Core/L10n/L10n.php:394 src/Model/Event.php:413 +#: src/Core/L10n.php:499 src/Model/Event.php:447 msgid "Nov" msgstr "lis" -#: src/Core/L10n/L10n.php:394 src/Model/Event.php:414 +#: src/Core/L10n.php:499 src/Model/Event.php:448 msgid "Dec" msgstr "pro" -#: src/Core/L10n/L10n.php:413 -msgid "poke" -msgstr "šťouchnout" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" -#: src/Core/L10n/L10n.php:413 -msgid "poked" -msgstr "šťouchnul/a" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" -#: src/Core/L10n/L10n.php:414 -msgid "ping" -msgstr "cinknout" +#: src/Core/Renderer.php:89 src/Core/Renderer.php:118 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 +msgid "" +"Friendica can't display this page at the moment, please contact the " +"administrator." +msgstr "" -#: src/Core/L10n/L10n.php:414 -msgid "pinged" -msgstr "cinknul/a" +#: src/Core/Renderer.php:143 +msgid "template engine cannot be registered without a name." +msgstr "" -#: src/Core/L10n/L10n.php:415 -msgid "prod" -msgstr "dloubnout" +#: src/Core/Renderer.php:177 +msgid "template engine is not registered!" +msgstr "" -#: src/Core/L10n/L10n.php:415 -msgid "prodded" -msgstr "dloubnul/a" +#: src/Core/Storage/Type/FilesystemConfig.php:78 +msgid "Storage base path" +msgstr "Cesta ke kořenové složce úložiště" -#: src/Core/L10n/L10n.php:416 -msgid "slap" -msgstr "uhodit" +#: src/Core/Storage/Type/FilesystemConfig.php:80 +msgid "" +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "Složka, do které jsou ukládány nahrané soubory. Pro maximální bezpečnost to musí být cesta mimo složku webového serveru" -#: src/Core/L10n/L10n.php:416 -msgid "slapped" -msgstr "uhodil/a" +#: src/Core/Storage/Type/FilesystemConfig.php:93 +msgid "Enter a valid existing folder" +msgstr "Zadejte platnou existující složku" -#: src/Core/L10n/L10n.php:417 -msgid "finger" -msgstr "osahat" +#: src/Core/Update.php:80 +#, php-format +msgid "" +"Updates from version %s are not supported. Please update at least to version" +" 2021.01 and wait until the postupdate finished version 1383." +msgstr "" -#: src/Core/L10n/L10n.php:417 -msgid "fingered" -msgstr "osahal/a" +#: src/Core/Update.php:91 +#, php-format +msgid "" +"Updates from postupdate version %s are not supported. Please update at least" +" to version 2021.01 and wait until the postupdate finished version 1383." +msgstr "" -#: src/Core/L10n/L10n.php:418 -msgid "rebuff" -msgstr "odmítnout" +#: src/Core/Update.php:183 +#, php-format +msgid "%s: executing pre update %d" +msgstr "" -#: src/Core/L10n/L10n.php:418 -msgid "rebuffed" -msgstr "odmítnul/a" +#: src/Core/Update.php:225 +#, php-format +msgid "%s: executing post update %d" +msgstr "" -#: src/Core/Update.php:193 +#: src/Core/Update.php:299 #, php-format msgid "Update %s failed. See error logs." msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb." -#: src/Core/Update.php:257 +#: src/Core/Update.php:339 #, php-format msgid "" "\n" @@ -4770,1314 +3093,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\tVývojáři Friendica nedávno vydali aktualizaci %s,\n\t\t\t\tale když jsem ji zkusil instalovat, něco se strašně pokazilo.\n\t\t\t\tToto se musí ihned opravit a nemůžu to udělat sám. Prosím, kontaktujte\n\t\t\t\tvývojáře Friendica, pokud to nedokážete sám. Moje databáze může být neplatná." -#: src/Core/Update.php:263 +#: src/Core/Update.php:345 #, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Chybová zpráva je\n[pre]%s[/pre]" +msgid "The error message is\\n[pre]%s[/pre]" +msgstr "" -#: src/Core/Update.php:269 src/Core/Update.php:308 +#: src/Core/Update.php:349 src/Core/Update.php:377 msgid "[Friendica Notify] Database update" msgstr "[Friendica:Oznámení] Aktualizace databáze" -#: src/Core/Update.php:300 +#: src/Core/Update.php:371 #, php-format msgid "" "\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n\t\t\t\t\tDatabáze Friendica byla úspěšně aktualizována z verze %s na %s." +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "" -#: src/Core/UserImport.php:107 -msgid "Error decoding account file" -msgstr "Chyba dekódování uživatelského účtu" - -#: src/Core/UserImport.php:113 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Chyba! V souboru nejsou data o verzi! Je to opravdu soubor s účtem Friendica?" - -#: src/Core/UserImport.php:121 +#: src/Database/DBStructure.php:57 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "Uživatel „%s“ již na tomto serveru existuje!" +msgid "The database version had been set to %s." +msgstr "" -#: src/Core/UserImport.php:157 -msgid "User creation error" -msgstr "Chyba při vytváření uživatele" - -#: src/Core/UserImport.php:175 -msgid "User profile creation error" -msgstr "Chyba vytváření uživatelského profilu" - -#: src/Core/UserImport.php:219 +#: src/Database/DBStructure.php:82 #, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d kontakt nenaimportován" -msgstr[1] "%d kontakty nenaimportovány" -msgstr[2] "%d kontaktu nenaimportováno" -msgstr[3] "%d kontaktů nenaimportováno" - -#: src/Core/UserImport.php:284 -msgid "Done. You can now login with your username and password" -msgstr "Hotovo. Nyní se můžete přihlásit se svým uživatelským jménem a heslem" - -#: src/Core/Installer.php:162 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 "Databázový konfigurační soubor „config/local.config.php“ nemohl být zapsán. Prosím, použijte přiložený text k vytvoření konfiguračního souboru v kořenovém adresáři vašeho webového serveru." +"The post update is at version %d, it has to be at %d to safely drop the " +"tables." +msgstr "" -#: src/Core/Installer.php:181 +#: src/Database/DBStructure.php:95 +msgid "No unused tables found." +msgstr "" + +#: src/Database/DBStructure.php:100 msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Nejspíše budete muset manuálně importovat soubor „database.sql“ pomocí phpMyAdmin či MySQL." +"These tables are not used for friendica and will be deleted when you execute" +" \"dbstructure drop -e\":" +msgstr "" -#: src/Core/Installer.php:182 src/Module/Install.php:173 -#: src/Module/Install.php:329 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Přečtěte si prosím informace v souboru „INSTALL.txt“." +#: src/Database/DBStructure.php:137 +msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." +msgstr "" -#: src/Core/Installer.php:243 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru." - -#: src/Core/Installer.php:244 -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 "Pokud nemáte na vašem serveru nainstalovanou verzi PHP pro příkazový řádek, nebudete moci spouštět procesy v pozadí. Více na „Nastavte pracovníka“" - -#: src/Core/Installer.php:249 -msgid "PHP executable path" -msgstr "Cesta ke spustitelnému souboru PHP" - -#: src/Core/Installer.php:249 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Zadejte plnou cestu ke spustitelnému souboru PHP. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci." - -#: src/Core/Installer.php:254 -msgid "Command line PHP" -msgstr "Příkazový řádek PHP" - -#: src/Core/Installer.php:263 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "PHP executable není php cli binary (může být verze cgi-fgci)" - -#: src/Core/Installer.php:264 -msgid "Found PHP version: " -msgstr "Nalezena verze PHP:" - -#: src/Core/Installer.php:266 -msgid "PHP cli binary" -msgstr "PHP cli binary" - -#: src/Core/Installer.php:279 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Verze PHP pro příkazový řádek na vašem systému nemá povoleno nastavení „register_argc_argv“." - -#: src/Core/Installer.php:280 -msgid "This is required for message delivery to work." -msgstr "Toto je nutné pro fungování doručování zpráv." - -#: src/Core/Installer.php:285 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: src/Core/Installer.php:317 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Chyba: funkce „openssl_pkey_new“ na tomto systému není schopna generovat šifrovací klíče" - -#: src/Core/Installer.php:318 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Pokud systém běží na Windows, prosím přečtěte si „http://www.php.net/manual/en/openssl.installation.php“." - -#: src/Core/Installer.php:321 -msgid "Generate encryption keys" -msgstr "Generovat šifrovací klíče" - -#: src/Core/Installer.php:373 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Chyba: Modul mod_rewrite webového serveru Apache je vyadován, ale není nainstalován." - -#: src/Core/Installer.php:378 -msgid "Apache mod_rewrite module" -msgstr "Modul Apache mod_rewrite" - -#: src/Core/Installer.php:384 -msgid "Error: PDO or MySQLi PHP module required but not installed." -msgstr "Chyba: PHP modul PDO nebo MySQLi je vyžadován, ale není nainstalován." - -#: src/Core/Installer.php:389 -msgid "Error: The MySQL driver for PDO is not installed." -msgstr "Chyba: Ovladač MySQL pro PDO není nainstalován" - -#: src/Core/Installer.php:393 -msgid "PDO or MySQLi PHP module" -msgstr "PHP modul PDO nebo MySQLi" - -#: src/Core/Installer.php:401 -msgid "Error, XML PHP module required but not installed." -msgstr "Chyba: PHP modul XML je vyžadován, ale není nainstalován" - -#: src/Core/Installer.php:405 -msgid "XML PHP module" -msgstr "PHP modul XML" - -#: src/Core/Installer.php:408 -msgid "libCurl PHP module" -msgstr "PHP modul libCurl" - -#: src/Core/Installer.php:409 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Chyba: PHP modul libcurl je vyžadován, ale není nainstalován." - -#: src/Core/Installer.php:415 -msgid "GD graphics PHP module" -msgstr "PHP modul GD graphics" - -#: src/Core/Installer.php:416 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Chyba: PHP modul GD graphics je vyžadován, ale není nainstalován." - -#: src/Core/Installer.php:422 -msgid "OpenSSL PHP module" -msgstr "PHP modul OpenSSL" - -#: src/Core/Installer.php:423 -msgid "Error: openssl PHP module required but not installed." -msgstr "Chyba: PHP modul openssl je vyžadován, ale není nainstalován." - -#: src/Core/Installer.php:429 -msgid "mb_string PHP module" -msgstr "PHP modul mb_string" - -#: src/Core/Installer.php:430 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Chyba: PHP modul mb_string je vyžadován, ale není nainstalován." - -#: src/Core/Installer.php:436 -msgid "iconv PHP module" -msgstr "PHP modul iconv" - -#: src/Core/Installer.php:437 -msgid "Error: iconv PHP module required but not installed." -msgstr "Chyba: PHP modul iconv je vyžadován, ale není nainstalován" - -#: src/Core/Installer.php:443 -msgid "POSIX PHP module" -msgstr "PHP modul POSIX" - -#: src/Core/Installer.php:444 -msgid "Error: POSIX PHP module required but not installed." -msgstr "Chyba: PHP modul POSIX je vyžadován, ale není nainstalován." - -#: src/Core/Installer.php:450 -msgid "JSON PHP module" -msgstr "PHP modul JSON" - -#: src/Core/Installer.php:451 -msgid "Error: JSON PHP module required but not installed." -msgstr "Chyba: PHP modul JSON je vyžadován, ale není nainstalován" - -#: src/Core/Installer.php:457 -msgid "File Information PHP module" -msgstr "PHP modul File Information" - -#: src/Core/Installer.php:458 -msgid "Error: File Information PHP module required but not installed." -msgstr "Chyba: PHP modul File Information je vyžadován, ale není nainstalován." - -#: src/Core/Installer.php:481 -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 "Webový instalátor musí být schopen vytvořit soubor s názvem „local.config.php“ v adresáři „config“ Vašeho webového serveru a není mu to umožněno. " - -#: src/Core/Installer.php:482 -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 "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když vy můžete." - -#: src/Core/Installer.php:483 -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 "Na konci této procedury od nás obdržíte text k uložení v souboru pojmenovaném local.config.php v adresáři „config“ na Vaší instalaci Friendica." - -#: src/Core/Installer.php:484 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor „INSTALL.txt“ pro další instrukce." - -#: src/Core/Installer.php:487 -msgid "config/local.config.php is writable" -msgstr "Soubor config/local.config.php je zapisovatelný" - -#: src/Core/Installer.php:507 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica používá k zobrazení svých webových stránek šablonovací nástroj Smarty3. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování." - -#: src/Core/Installer.php:508 -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 "Pro uložení kompilovaných šablon potřebuje webový server mít přístup k zápisu do adresáře view/smarty3/ pod kořenovým adresářem Friendica." - -#: src/Core/Installer.php:509 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Prosím ujistěte se, že má uživatel webového serveru (jako například www-data) právo zápisu do tohoto adresáře" - -#: src/Core/Installer.php:510 -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 "Poznámka: jako bezpečnostní opatření byste měl/a přidělit webovém serveru právo zápisu pouze do adresáře /view/smarty3/ -- a nikoliv už do souborů s šablonami (.tpl), které obsahuje." - -#: src/Core/Installer.php:513 -msgid "view/smarty3 is writable" -msgstr "Adresář view/smarty3 je zapisovatelný" - -#: src/Core/Installer.php:542 -msgid "" -"Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist" -" to .htaccess." -msgstr "URL rewrite v souboru .htacess nefunguje. Ujistěte se, že jste zkopíroval/a soubor .htaccess-dist jako .htaccess" - -#: src/Core/Installer.php:544 -msgid "Error message from Curl when fetching" -msgstr "Chybová zpráva od Curl při načítání" - -#: src/Core/Installer.php:549 -msgid "Url rewrite is working" -msgstr "Url rewrite je funkční." - -#: src/Core/Installer.php:578 -msgid "ImageMagick PHP extension is not installed" -msgstr "PHP rozšíření ImageMagick není nainstalováno" - -#: src/Core/Installer.php:580 -msgid "ImageMagick PHP extension is installed" -msgstr "PHP rozšíření ImageMagick je nainstalováno" - -#: src/Core/Installer.php:582 tests/src/Core/InstallerTest.php:372 -#: tests/src/Core/InstallerTest.php:400 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick podporuje GIF" - -#: src/Core/Installer.php:604 -msgid "Database already in use." -msgstr "Databáze se již používá." - -#: src/Core/Installer.php:609 -msgid "Could not connect to database." -msgstr "Nelze se připojit k databázi." - -#: src/Core/NotificationsManager.php:144 -msgid "System" -msgstr "Systém" - -#: src/Core/NotificationsManager.php:165 src/Content/Nav.php:182 -#: src/Content/Nav.php:244 -msgid "Home" -msgstr "Domů" - -#: src/Core/NotificationsManager.php:172 src/Content/Nav.php:248 -msgid "Introductions" -msgstr "Představení" - -#: src/Core/NotificationsManager.php:234 src/Core/NotificationsManager.php:246 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s okomentoval/a příspěvek uživatele %s" - -#: src/Core/NotificationsManager.php:245 -#, php-format -msgid "%s created a new post" -msgstr "%s vytvořil nový příspěvek" - -#: src/Core/NotificationsManager.php:259 -#, php-format -msgid "%s liked %s's post" -msgstr "Uživateli %s se líbí příspěvek uživatele %s" - -#: src/Core/NotificationsManager.php:272 -#, php-format -msgid "%s disliked %s's post" -msgstr "Uživateli %s se nelíbí příspěvek uživatele %s" - -#: src/Core/NotificationsManager.php:285 -#, php-format -msgid "%s is attending %s's event" -msgstr "%s se zúčastní události %s" - -#: src/Core/NotificationsManager.php:298 -#, php-format -msgid "%s is not attending %s's event" -msgstr "%s se nezúčastní události %s" - -#: src/Core/NotificationsManager.php:311 -#, php-format -msgid "%s may attend %s's event" -msgstr "%s by se mohl/a zúčastnit události %s" - -#: src/Core/NotificationsManager.php:344 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s se nyní přátelí s uživatelem %s" - -#: src/Core/NotificationsManager.php:629 -msgid "Friend Suggestion" -msgstr "Návrh přátelství" - -#: src/Core/NotificationsManager.php:663 -msgid "Friend/Connect Request" -msgstr "Požadavek o přátelství/spojení" - -#: src/Core/NotificationsManager.php:663 -msgid "New Follower" -msgstr "Nový sledující" - -#: src/Core/Session.php:186 -#, php-format -msgid "Welcome %s" -msgstr "Vítejte, %s" - -#: src/Core/Session.php:187 -msgid "Please upload a profile photo." -msgstr "Prosím nahrajte profilovou fotku." - -#: src/Core/Session.php:190 -#, php-format -msgid "Welcome back %s" -msgstr "Vítejte zpět, %s" - -#: src/Core/ACL.php:288 src/Module/Item/Compose.php:139 -msgid "Post to Email" -msgstr "Poslat příspěvek na e-mail" - -#: src/Core/ACL.php:300 -msgid "Visible to everybody" -msgstr "Viditelné pro všechny" - -#: src/Core/ACL.php:311 -msgid "Connectors" -msgstr "Konektory" - -#: src/Core/ACL.php:313 -msgid "Hide your profile details from unknown viewers?" -msgstr "Skrýt vaše profilové detaily před neznámými návštěvníky?" - -#: src/Core/ACL.php:313 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Konektory deaktivovány, neboť je aktivován „%s“." - -#: src/Core/ACL.php:315 -msgid "Close" -msgstr "Zavřít" - -#: src/Util/Temporal.php:147 src/Model/Profile.php:784 -msgid "Birthday:" -msgstr "Narozeniny:" - -#: src/Util/Temporal.php:151 -msgid "YYYY-MM-DD or MM-DD" -msgstr "RRRR-MM-DD nebo MM-DD" - -#: src/Util/Temporal.php:298 -msgid "never" -msgstr "nikdy" - -#: src/Util/Temporal.php:305 -msgid "less than a second ago" -msgstr "méně než před sekundou" - -#: src/Util/Temporal.php:313 -msgid "year" -msgstr "rok" - -#: src/Util/Temporal.php:313 -msgid "years" -msgstr "let" - -#: src/Util/Temporal.php:314 -msgid "months" -msgstr "měsíců" - -#: src/Util/Temporal.php:315 -msgid "weeks" -msgstr "týdnů" - -#: src/Util/Temporal.php:316 -msgid "days" -msgstr "dní" - -#: src/Util/Temporal.php:317 -msgid "hour" -msgstr "hodina" - -#: src/Util/Temporal.php:317 -msgid "hours" -msgstr "hodin" - -#: src/Util/Temporal.php:318 -msgid "minute" -msgstr "minuta" - -#: src/Util/Temporal.php:318 -msgid "minutes" -msgstr "minut" - -#: src/Util/Temporal.php:319 -msgid "second" -msgstr "sekunda" - -#: src/Util/Temporal.php:319 -msgid "seconds" -msgstr "sekund" - -#: src/Util/Temporal.php:329 -#, php-format -msgid "in %1$d %2$s" -msgstr "za %1$d %2$s" - -#: src/Util/Temporal.php:332 -#, php-format -msgid "%1$d %2$s ago" -msgstr "před %1$d %2$s" - -#: src/Content/Text/HTML.php:793 -msgid "Loading more entries..." -msgstr "Načítám více záznamů..." - -#: src/Content/Text/HTML.php:794 -msgid "The end" -msgstr "Konec" - -#: src/Content/Text/HTML.php:887 src/Model/Profile.php:544 -#: src/Module/Contact.php:297 -msgid "Follow" -msgstr "Sledovat" - -#: src/Content/Text/HTML.php:896 src/Content/Nav.php:79 -msgid "@name, !forum, #tags, content" -msgstr "@jméno, !fórum, #štítky, obsah" - -#: src/Content/Text/HTML.php:902 src/Content/Nav.php:203 -msgid "Full Text" -msgstr "Celý text" - -#: src/Content/Text/HTML.php:903 src/Content/Widget/TagCloud.php:54 -#: src/Content/Nav.php:204 -msgid "Tags" -msgstr "Štítky" - -#: src/Content/Text/HTML.php:944 src/Content/Text/BBCode.php:1478 -msgid "Click to open/close" -msgstr "Kliknutím otevřete/zavřete" - -#: src/Content/Text/BBCode.php:465 -msgid "view full size" -msgstr "zobrazit v plné velikosti" - -#: src/Content/Text/BBCode.php:899 src/Content/Text/BBCode.php:1560 -#: src/Content/Text/BBCode.php:1561 -msgid "Image/photo" -msgstr "Obrázek/fotka" - -#: src/Content/Text/BBCode.php:1017 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: src/Content/Text/BBCode.php:1509 -msgid "$1 wrote:" -msgstr "$1 napsal/a:" - -#: src/Content/Text/BBCode.php:1563 src/Content/Text/BBCode.php:1564 -msgid "Encrypted content" -msgstr "Šifrovaný obsah" - -#: src/Content/Text/BBCode.php:1788 -msgid "Invalid source protocol" -msgstr "Neplatný protokol zdroje" - -#: src/Content/Text/BBCode.php:1803 -msgid "Invalid link protocol" -msgstr "Neplatný protokol odkazu" - -#: src/Content/Widget/CalendarExport.php:64 -msgid "Export" -msgstr "Exportovat" - -#: src/Content/Widget/CalendarExport.php:65 -msgid "Export calendar as ical" -msgstr "Exportovat kalendář jako ical" - -#: src/Content/Widget/CalendarExport.php:66 -msgid "Export calendar as csv" -msgstr "Exportovat kalendář jako csv" - -#: src/Content/Widget/ContactBlock.php:58 -msgid "No contacts" -msgstr "Žádné kontakty" - -#: src/Content/Widget/ContactBlock.php:90 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d kontakt" -msgstr[1] "%d kontakty" -msgstr[2] "%d kontaktu" -msgstr[3] "%d kontaktů" - -#: src/Content/Widget/ContactBlock.php:109 -msgid "View Contacts" -msgstr "Zobrazit kontakty" - -#: src/Content/Widget/TrendingTags.php:34 -#, php-format -msgid "Trending Tags (last %d hour)" -msgid_plural "Trending Tags (last %d hours)" -msgstr[0] "Populární štítky (poslední %d hodina)" -msgstr[1] "Populární štítky (poslední %d hodiny)" -msgstr[2] "Populární štítky (posledních %d hodin)" -msgstr[3] "Populární štítky (posledních %d hodin)" - -#: src/Content/Widget/TrendingTags.php:35 -msgid "More Trending Tags" -msgstr "Další populární štítky" - -#: src/Content/Pager.php:153 -msgid "newer" -msgstr "novější" - -#: src/Content/Pager.php:158 -msgid "older" -msgstr "starší" - -#: src/Content/Pager.php:203 -msgid "prev" -msgstr "předchozí" - -#: src/Content/Pager.php:263 -msgid "last" -msgstr "poslední" - -#: src/Content/Feature.php:82 -msgid "General Features" -msgstr "Obecné vlastnosti" - -#: src/Content/Feature.php:84 -msgid "Multiple Profiles" -msgstr "Více profilů" - -#: src/Content/Feature.php:84 -msgid "Ability to create multiple profiles" -msgstr "Schopnost vytvořit více profilů" - -#: src/Content/Feature.php:85 -msgid "Photo Location" -msgstr "Poloha fotky" - -#: src/Content/Feature.php:85 -msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "Metadata fotek jsou normálně odebrána. Tato funkce před odebrání metadat extrahuje polohu (pokud je k dispozici) a propojí ji s mapou." - -#: src/Content/Feature.php:86 -msgid "Export Public Calendar" -msgstr "Exportovat veřejný kalendář" - -#: src/Content/Feature.php:86 -msgid "Ability for visitors to download the public calendar" -msgstr "Umožnit návštěvníkům stáhnout si veřejný kalendář" - -#: src/Content/Feature.php:87 -msgid "Trending Tags" -msgstr "Populární štítky" - -#: src/Content/Feature.php:87 -msgid "" -"Show a community page widget with a list of the most popular tags in recent " -"public posts." -msgstr "Zobrazit widget komunitní stránky se seznamem nejpopulárnějších štítků v nedávných veřejných příspěvcích." - -#: src/Content/Feature.php:92 -msgid "Post Composition Features" -msgstr "Nastavení vytváření příspěvků" - -#: src/Content/Feature.php:93 -msgid "Auto-mention Forums" -msgstr "Automaticky zmiňovat fóra" - -#: src/Content/Feature.php:93 -msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Přidat/odstranit zmínku, když je stránka na fóru označena/odznačena v okně ACL." - -#: src/Content/Feature.php:94 -msgid "Explicit Mentions" -msgstr "Výslovné zmínky" - -#: src/Content/Feature.php:94 -msgid "" -"Add explicit mentions to comment box for manual control over who gets " -"mentioned in replies." -msgstr "Přidá do pole pro komentování výslovné zmínky pro ruční kontrolu nad tím, koho zmíníte v odpovědích." - -#: src/Content/Feature.php:99 -msgid "Network Sidebar" -msgstr "Síťová postranní lišta" - -#: src/Content/Feature.php:100 src/Content/Widget.php:501 -msgid "Archives" -msgstr "Archivy" - -#: src/Content/Feature.php:100 -msgid "Ability to select posts by date ranges" -msgstr "Možnost označit příspěvky dle časového intervalu" - -#: src/Content/Feature.php:101 -msgid "Protocol Filter" -msgstr "Filtr protokolů" - -#: src/Content/Feature.php:101 -msgid "Enable widget to display Network posts only from selected protocols" -msgstr "Povolením widgetu se budou zobrazovat síťové příspěvky pouze z vybraných protokolů" - -#: src/Content/Feature.php:106 -msgid "Network Tabs" -msgstr "Síťové záložky" - -#: src/Content/Feature.php:107 -msgid "Network New Tab" -msgstr "Síťová záložka Nové" - -#: src/Content/Feature.php:107 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)" - -#: src/Content/Feature.php:108 -msgid "Network Shared Links Tab" -msgstr "Síťová záložka Sdílené odkazy " - -#: src/Content/Feature.php:108 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně" - -#: src/Content/Feature.php:113 -msgid "Post/Comment Tools" -msgstr "Nástroje příspěvků/komentářů" - -#: src/Content/Feature.php:114 -msgid "Post Categories" -msgstr "Kategorie příspěvků" - -#: src/Content/Feature.php:114 -msgid "Add categories to your posts" -msgstr "Přidat kategorie k vašim příspěvkům" - -#: src/Content/Feature.php:119 -msgid "Advanced Profile Settings" -msgstr "Pokročilá nastavení profilu" - -#: src/Content/Feature.php:120 -msgid "List Forums" -msgstr "Vypsat fóra" - -#: src/Content/Feature.php:120 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Zobrazit návštěvníkům veřejná komunitní fóra na stránce pokročilého profilu" - -#: src/Content/Feature.php:121 -msgid "Tag Cloud" -msgstr "Štítkový oblak" - -#: src/Content/Feature.php:121 -msgid "Provide a personal tag cloud on your profile page" -msgstr "Poskytne na vaší profilové stránce osobní „štítkový oblak“" - -#: src/Content/Feature.php:122 -msgid "Display Membership Date" -msgstr "Zobrazit datum členství" - -#: src/Content/Feature.php:122 -msgid "Display membership date in profile" -msgstr "Zobrazit v profilu datum připojení" - -#: src/Content/Nav.php:74 -msgid "Nothing new here" -msgstr "Zde není nic nového" - -#: src/Content/Nav.php:78 -msgid "Clear notifications" -msgstr "Vymazat oznámení" - -#: src/Content/Nav.php:153 src/Module/Login.php:315 -msgid "Logout" -msgstr "Odhlásit se" - -#: src/Content/Nav.php:153 -msgid "End this session" -msgstr "Konec této relace" - -#: src/Content/Nav.php:155 src/Module/Login.php:316 -#: src/Module/Bookmarklet.php:25 -msgid "Login" -msgstr "Přihlásit se" - -#: src/Content/Nav.php:155 -msgid "Sign in" -msgstr "Přihlásit se" - -#: src/Content/Nav.php:165 -msgid "Personal notes" -msgstr "Osobní poznámky" - -#: src/Content/Nav.php:165 -msgid "Your personal notes" -msgstr "Vaše osobní poznámky" - -#: src/Content/Nav.php:182 -msgid "Home Page" -msgstr "Domovská stránka" - -#: src/Content/Nav.php:186 src/Module/Login.php:287 -#: src/Module/Register.php:136 -msgid "Register" -msgstr "Registrovat" - -#: src/Content/Nav.php:186 -msgid "Create an account" -msgstr "Vytvořit účet" - -#: src/Content/Nav.php:192 -msgid "Help and documentation" -msgstr "Nápověda a dokumentace" - -#: src/Content/Nav.php:196 -msgid "Apps" -msgstr "Aplikace" - -#: src/Content/Nav.php:196 -msgid "Addon applications, utilities, games" -msgstr "Doplňkové aplikace, nástroje, hry" - -#: src/Content/Nav.php:200 -msgid "Search site content" -msgstr "Hledání na stránkách tohoto webu" - -#: src/Content/Nav.php:224 -msgid "Community" -msgstr "Komunita" - -#: src/Content/Nav.php:224 -msgid "Conversations on this and other servers" -msgstr "Konverzace na tomto a jiných serverech" - -#: src/Content/Nav.php:231 -msgid "Directory" -msgstr "Adresář" - -#: src/Content/Nav.php:231 -msgid "People directory" -msgstr "Adresář" - -#: src/Content/Nav.php:233 src/Module/BaseAdminModule.php:75 -msgid "Information" -msgstr "Informace" - -#: src/Content/Nav.php:233 -msgid "Information about this friendica instance" -msgstr "Informace o této instanci Friendica" - -#: src/Content/Nav.php:236 src/Module/Tos.php:73 src/Module/Admin/Tos.php:43 -#: src/Module/BaseAdminModule.php:85 src/Module/Register.php:144 -msgid "Terms of Service" -msgstr "Podmínky používání" - -#: src/Content/Nav.php:236 -msgid "Terms of Service of this Friendica instance" -msgstr "Podmínky používání této instance Friendica" - -#: src/Content/Nav.php:242 -msgid "Network Reset" -msgstr "Reset sítě" - -#: src/Content/Nav.php:242 -msgid "Load Network page with no filters" -msgstr "Načíst stránku Síť bez filtrů" - -#: src/Content/Nav.php:248 -msgid "Friend Requests" -msgstr "Požadavky o přátelství" - -#: src/Content/Nav.php:250 -msgid "See all notifications" -msgstr "Zobrazit všechna oznámení" - -#: src/Content/Nav.php:251 -msgid "Mark all system notifications seen" -msgstr "Označit všechna systémová oznámení jako přečtené" - -#: src/Content/Nav.php:255 -msgid "Inbox" -msgstr "Doručená pošta" - -#: src/Content/Nav.php:256 -msgid "Outbox" -msgstr "Odeslaná pošta" - -#: src/Content/Nav.php:260 -msgid "Manage" -msgstr "Spravovat" - -#: src/Content/Nav.php:260 -msgid "Manage other pages" -msgstr "Spravovat jiné stránky" - -#: src/Content/Nav.php:268 -msgid "Manage/Edit Profiles" -msgstr "Spravovat/Editovat Profily" - -#: src/Content/Nav.php:276 src/Module/BaseAdminModule.php:114 -msgid "Admin" -msgstr "Administrátor" - -#: src/Content/Nav.php:276 -msgid "Site setup and configuration" -msgstr "Nastavení webu a konfigurace" - -#: src/Content/Nav.php:279 -msgid "Navigation" -msgstr "Navigace" - -#: src/Content/Nav.php:279 -msgid "Site map" -msgstr "Mapa webu" - -#: src/Content/OEmbed.php:254 -msgid "Embedding disabled" -msgstr "Vkládání zakázáno" - -#: src/Content/OEmbed.php:377 -msgid "Embedded content" -msgstr "Vložený obsah" - -#: src/Content/Widget.php:38 -msgid "Add New Contact" -msgstr "Přidat nový kontakt" - -#: src/Content/Widget.php:39 -msgid "Enter address or web location" -msgstr "Zadejte adresu nebo umístění webu" - -#: src/Content/Widget.php:40 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Příklad: jan@priklad.cz, http://priklad.cz/lucie" - -#: src/Content/Widget.php:58 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d pozvánka k dispozici" -msgstr[1] "%d pozvánky k dispozici" -msgstr[2] "%d pozvánky k dispozici" -msgstr[3] "%d pozvánek k dispozici" - -#: src/Content/Widget.php:193 src/Module/Profile/Contacts.php:127 -#: src/Module/Contact.php:772 -msgid "Following" -msgstr "Sledující" - -#: src/Content/Widget.php:194 src/Module/Profile/Contacts.php:128 -#: src/Module/Contact.php:773 -msgid "Mutual friends" -msgstr "Vzájemní přátelé" - -#: src/Content/Widget.php:199 -msgid "Relationships" -msgstr "Vztahy" - -#: src/Content/Widget.php:201 src/Module/Group.php:287 -#: src/Module/Contact.php:660 -msgid "All Contacts" -msgstr "Všechny kontakty" - -#: src/Content/Widget.php:244 -msgid "Protocols" -msgstr "Protokoly" - -#: src/Content/Widget.php:246 -msgid "All Protocols" -msgstr "Všechny protokoly" - -#: src/Content/Widget.php:279 -msgid "Saved Folders" -msgstr "Uložené složky" - -#: src/Content/Widget.php:281 src/Content/Widget.php:320 -msgid "Everything" -msgstr "Všechno" - -#: src/Content/Widget.php:318 -msgid "Categories" -msgstr "Kategorie" - -#: src/Content/Widget.php:402 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d společný kontakt" -msgstr[1] "%d společné kontakty" -msgstr[2] "%d společného kontaktu" -msgstr[3] "%d společných kontaktů" - -#: src/Content/ContactSelector.php:58 -msgid "Frequently" -msgstr "Často" - -#: src/Content/ContactSelector.php:59 -msgid "Hourly" -msgstr "Hodinově" - -#: src/Content/ContactSelector.php:60 -msgid "Twice daily" -msgstr "Dvakrát denně" - -#: src/Content/ContactSelector.php:61 -msgid "Daily" -msgstr "Denně" - -#: src/Content/ContactSelector.php:62 -msgid "Weekly" -msgstr "Týdně" - -#: src/Content/ContactSelector.php:63 -msgid "Monthly" -msgstr "Měsíčně" - -#: src/Content/ContactSelector.php:116 -msgid "DFRN" -msgstr "DFRN" - -#: src/Content/ContactSelector.php:117 -msgid "OStatus" -msgstr "OStatus" - -#: src/Content/ContactSelector.php:118 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: src/Content/ContactSelector.php:119 src/Module/Admin/Users.php:272 -#: src/Module/Admin/Users.php:283 src/Module/Admin/Users.php:297 -#: src/Module/Admin/Users.php:315 -msgid "Email" -msgstr "E-mail" - -#: src/Content/ContactSelector.php:121 -msgid "Zot!" -msgstr "Zot!" - -#: src/Content/ContactSelector.php:122 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: src/Content/ContactSelector.php:123 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: src/Content/ContactSelector.php:124 -msgid "MySpace" -msgstr "MySpace" - -#: src/Content/ContactSelector.php:125 -msgid "Google+" -msgstr "Google+" - -#: src/Content/ContactSelector.php:126 -msgid "pump.io" -msgstr "pump.io" - -#: src/Content/ContactSelector.php:127 -msgid "Twitter" -msgstr "Twitter" - -#: src/Content/ContactSelector.php:128 -msgid "Diaspora Connector" -msgstr "Diaspora Connector" - -#: src/Content/ContactSelector.php:129 -msgid "GNU Social Connector" -msgstr "GNU social Connector" - -#: src/Content/ContactSelector.php:130 -msgid "ActivityPub" -msgstr "ActivityPub" - -#: src/Content/ContactSelector.php:131 -msgid "pnut" -msgstr "pnut" - -#: src/Content/ContactSelector.php:229 src/Content/ContactSelector.php:269 -#: src/Content/ContactSelector.php:307 -msgid "No answer" -msgstr "Žádná odpověď" - -#: src/Content/ContactSelector.php:230 -msgid "Male" -msgstr "Muž" - -#: src/Content/ContactSelector.php:231 -msgid "Female" -msgstr "Žena" - -#: src/Content/ContactSelector.php:232 -msgid "Currently Male" -msgstr "V současnosti muž" - -#: src/Content/ContactSelector.php:233 -msgid "Currently Female" -msgstr "V současnosti žena" - -#: src/Content/ContactSelector.php:234 -msgid "Mostly Male" -msgstr "Z větší části muž" - -#: src/Content/ContactSelector.php:235 -msgid "Mostly Female" -msgstr "Z větší části žena" - -#: src/Content/ContactSelector.php:236 -msgid "Transgender" -msgstr "Transgender" - -#: src/Content/ContactSelector.php:237 -msgid "Intersex" -msgstr "Intersexuál" - -#: src/Content/ContactSelector.php:238 -msgid "Transsexual" -msgstr "Transsexuál" - -#: src/Content/ContactSelector.php:239 -msgid "Hermaphrodite" -msgstr "Hermafrodit" - -#: src/Content/ContactSelector.php:240 -msgid "Neuter" -msgstr "Střední rod" - -#: src/Content/ContactSelector.php:241 -msgid "Non-specific" -msgstr "Nespecifikováno" - -#: src/Content/ContactSelector.php:242 -msgid "Other" -msgstr "Jiné" - -#: src/Content/ContactSelector.php:270 -msgid "Males" -msgstr "Muži" - -#: src/Content/ContactSelector.php:271 -msgid "Females" -msgstr "Ženy" - -#: src/Content/ContactSelector.php:272 -msgid "Gay" -msgstr "Gay" - -#: src/Content/ContactSelector.php:273 -msgid "Lesbian" -msgstr "Lesba" - -#: src/Content/ContactSelector.php:274 -msgid "No Preference" -msgstr "Bez preferencí" - -#: src/Content/ContactSelector.php:275 -msgid "Bisexual" -msgstr "Bisexuál" - -#: src/Content/ContactSelector.php:276 -msgid "Autosexual" -msgstr "Autosexuál" - -#: src/Content/ContactSelector.php:277 -msgid "Abstinent" -msgstr "Abstinent" - -#: src/Content/ContactSelector.php:278 -msgid "Virgin" -msgstr "Panic/panna" - -#: src/Content/ContactSelector.php:279 -msgid "Deviant" -msgstr "Deviant" - -#: src/Content/ContactSelector.php:280 -msgid "Fetish" -msgstr "Fetišista" - -#: src/Content/ContactSelector.php:281 -msgid "Oodles" -msgstr "Hodně" - -#: src/Content/ContactSelector.php:282 -msgid "Nonsexual" -msgstr "Nesexuální" - -#: src/Content/ContactSelector.php:308 -msgid "Single" -msgstr "Svobodný/á" - -#: src/Content/ContactSelector.php:309 -msgid "Lonely" -msgstr "Osamělý/á" - -#: src/Content/ContactSelector.php:310 -msgid "In a relation" -msgstr "Ve vztahu" - -#: src/Content/ContactSelector.php:311 -msgid "Has crush" -msgstr "Zamilovaný/á" - -#: src/Content/ContactSelector.php:312 -msgid "Infatuated" -msgstr "Zabouchnutý/á" - -#: src/Content/ContactSelector.php:313 -msgid "Dating" -msgstr "Chodím s někým" - -#: src/Content/ContactSelector.php:314 -msgid "Unfaithful" -msgstr "Nevěrný/á" - -#: src/Content/ContactSelector.php:315 -msgid "Sex Addict" -msgstr "Posedlý/á sexem" - -#: src/Content/ContactSelector.php:316 src/Model/User.php:762 -msgid "Friends" -msgstr "Přátelé" - -#: src/Content/ContactSelector.php:317 -msgid "Friends/Benefits" -msgstr "Přátelé/výhody" - -#: src/Content/ContactSelector.php:318 -msgid "Casual" -msgstr "Ležérní" - -#: src/Content/ContactSelector.php:319 -msgid "Engaged" -msgstr "Zadaný/á" - -#: src/Content/ContactSelector.php:320 -msgid "Married" -msgstr "Ženatý/vdaná" - -#: src/Content/ContactSelector.php:321 -msgid "Imaginarily married" -msgstr "Pomyslně ženatý/vdaná" - -#: src/Content/ContactSelector.php:322 -msgid "Partners" -msgstr "Partneři" - -#: src/Content/ContactSelector.php:323 -msgid "Cohabiting" -msgstr "Žiji ve společné domácnosti" - -#: src/Content/ContactSelector.php:324 -msgid "Common law" -msgstr "Zvykové právo" - -#: src/Content/ContactSelector.php:325 -msgid "Happy" -msgstr "Šťastný/á" - -#: src/Content/ContactSelector.php:326 -msgid "Not looking" -msgstr "Nehledající" - -#: src/Content/ContactSelector.php:327 -msgid "Swinger" -msgstr "Swinger" - -#: src/Content/ContactSelector.php:328 -msgid "Betrayed" -msgstr "Zrazen/a" - -#: src/Content/ContactSelector.php:329 -msgid "Separated" -msgstr "Odloučený/á" - -#: src/Content/ContactSelector.php:330 -msgid "Unstable" -msgstr "Nestálý/á" - -#: src/Content/ContactSelector.php:331 -msgid "Divorced" -msgstr "Rozvedený/á" - -#: src/Content/ContactSelector.php:332 -msgid "Imaginarily divorced" -msgstr "Pomyslně rozvedený/á" - -#: src/Content/ContactSelector.php:333 -msgid "Widowed" -msgstr "Ovdovělý/á" - -#: src/Content/ContactSelector.php:334 -msgid "Uncertain" -msgstr "Nejistý/á" - -#: src/Content/ContactSelector.php:335 -msgid "It's complicated" -msgstr "Je to složité" - -#: src/Content/ContactSelector.php:336 -msgid "Don't care" -msgstr "Nezájem" - -#: src/Content/ContactSelector.php:337 -msgid "Ask me" -msgstr "Zeptej se mě" - -#: src/Database/DBStructure.php:50 -msgid "There are no tables on MyISAM." -msgstr "V MyISAM nejsou žádné tabulky." - -#: src/Database/DBStructure.php:74 +#: src/Database/DBStructure.php:161 #, php-format msgid "" "\n" @@ -6085,197 +3143,582 @@ msgid "" "%s\n" msgstr "\nPři aktualizaci databáze se vyskytla chyba %d:\n%s\n" -#: src/Database/DBStructure.php:77 +#: src/Database/DBStructure.php:164 msgid "Errors encountered performing database changes: " msgstr "Při vykonávání změn v databázi se vyskytly chyby: " -#: src/Database/DBStructure.php:266 +#: src/Database/DBStructure.php:232 +msgid "Another database update is currently running." +msgstr "" + +#: src/Database/DBStructure.php:236 #, php-format msgid "%s: Database update" msgstr "%s: Aktualizace databáze" -#: src/Database/DBStructure.php:527 +#: src/Database/DBStructure.php:493 #, php-format msgid "%s: updating %s table." msgstr "%s: aktualizuji tabulku %s" -#: src/Model/Storage/Filesystem.php:63 -#, php-format -msgid "Filesystem storage failed to create \"%s\". Check you write permissions." -msgstr "Vytvoření „%s“ v úložišti souborového systému neuspělo. Zkontrolujte vaše povolení zapisovat." +#: src/Factory/Api/Mastodon/Error.php:55 +msgid "Record not found" +msgstr "" -#: src/Model/Storage/Filesystem.php:105 -#, php-format +#: src/Factory/Api/Mastodon/Error.php:65 +msgid "Unprocessable Entity" +msgstr "" + +#: src/Factory/Api/Mastodon/Error.php:75 +msgid "Unauthorized" +msgstr "Neautorizováno" + +#: src/Factory/Api/Mastodon/Error.php:84 msgid "" -"Filesystem storage failed to save data to \"%s\". Check your write " -"permissions" -msgstr "Uložení dat do „%s“ v úložišti souborového systému neuspělo. Zkontrolujte vaše povolení zapisovat" +"Token is not authorized with a valid user or is missing a required scope" +msgstr "" -#: src/Model/Storage/Filesystem.php:126 -msgid "Storage base path" -msgstr "Cesta ke kořenové složce úložiště" +#: src/Factory/Api/Mastodon/Error.php:94 +msgid "Internal Server Error" +msgstr "Vnitřní chyba serveru" -#: src/Model/Storage/Filesystem.php:128 -msgid "" -"Folder where uploaded files are saved. For maximum security, This should be " -"a path outside web server folder tree" -msgstr "Složka, do které jsou ukládány nahrané soubory. Pro maximální bezpečnost to musí být cesta mimo složku webového serveru" - -#: src/Model/Storage/Filesystem.php:138 -msgid "Enter a valid existing folder" -msgstr "Zadejte platnou existující složku" - -#: src/Model/Storage/Database.php:36 +#: src/LegacyModule.php:63 #, php-format -msgid "Database storage failed to update %s" -msgstr "Aktualizace %s v úložišti databáze neuspěla" +msgid "Legacy module file not found: %s" +msgstr "Soubor legacy modulu nenalezen: %s" -#: src/Model/Storage/Database.php:43 -msgid "Database storage failed to insert data" -msgstr "Vklad dat do databázového úložiště neuspěl" +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." +msgstr "" -#: src/Model/Event.php:34 src/Model/Event.php:847 -#: src/Module/Debug/Localtime.php:17 -msgid "l F d, Y \\@ g:i A" -msgstr "l d. F, Y v g:i A" +#: src/Model/Circle.php:543 +msgid "Everybody" +msgstr "Všichni" -#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:435 -#: src/Model/Event.php:915 +#: src/Model/Circle.php:562 +msgid "edit" +msgstr "upravit" + +#: src/Model/Circle.php:599 +msgid "add" +msgstr "přidat" + +#: src/Model/Circle.php:604 +msgid "Edit circle" +msgstr "" + +#: src/Model/Circle.php:605 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "" + +#: src/Model/Circle.php:607 +msgid "Create a new circle" +msgstr "" + +#: src/Model/Circle.php:608 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "" + +#: src/Model/Circle.php:609 +msgid "Edit circles" +msgstr "" + +#: src/Model/Contact.php:1240 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 +msgid "Approve" +msgstr "Schválit" + +#: src/Model/Contact.php:1694 +msgid "Organisation" +msgstr "Organizace" + +#: src/Model/Contact.php:1702 +msgid "Group" +msgstr "" + +#: src/Model/Contact.php:3005 +msgid "Disallowed profile URL." +msgstr "Nepovolené URL profilu." + +#: src/Model/Contact.php:3010 src/Module/Friendica.php:101 +msgid "Blocked domain" +msgstr "Zablokovaná doména" + +#: src/Model/Contact.php:3015 +msgid "Connect URL missing." +msgstr "Chybí URL adresa pro připojení." + +#: src/Model/Contact.php:3024 +msgid "" +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "Kontakt nemohl být přidán. Prosím zkontrolujte relevantní přihlašovací údaje sítě na stránce Nastavení -> Sociální sítě." + +#: src/Model/Contact.php:3042 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "" + +#: src/Model/Contact.php:3059 +msgid "The profile address specified does not provide adequate information." +msgstr "Uvedená adresa profilu neposkytuje dostatečné informace." + +#: src/Model/Contact.php:3061 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál." + +#: src/Model/Contact.php:3064 +msgid "An author or name was not found." +msgstr "Autor nebo jméno nenalezeno" + +#: src/Model/Contact.php:3067 +msgid "No browser URL could be matched to this address." +msgstr "Této adrese neodpovídá žádné URL prohlížeče." + +#: src/Model/Contact.php:3070 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem." + +#: src/Model/Contact.php:3071 +msgid "Use mailto: in front of address to force email check." +msgstr "Použite mailo: před adresou k vynucení emailové kontroly." + +#: src/Model/Contact.php:3077 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána." + +#: src/Model/Contact.php:3082 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Omezený profil. Tato osoba nebude schopna od vás přijímat přímá/osobní oznámení." + +#: src/Model/Contact.php:3148 +msgid "Unable to retrieve contact information." +msgstr "Nepodařilo se získat kontaktní informace." + +#: src/Model/Event.php:54 +msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" +msgstr "" + +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 msgid "Starts:" msgstr "Začíná:" -#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:436 -#: src/Model/Event.php:919 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 msgid "Finishes:" msgstr "Končí:" -#: src/Model/Event.php:385 +#: src/Model/Event.php:419 msgid "all-day" msgstr "celodenní" -#: src/Model/Event.php:411 +#: src/Model/Event.php:445 msgid "Sept" msgstr "září" -#: src/Model/Event.php:433 +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "dnes" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:245 src/Util/Temporal.php:353 +msgid "month" +msgstr "měsíc" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:246 src/Util/Temporal.php:354 +msgid "week" +msgstr "týden" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:247 src/Util/Temporal.php:355 +msgid "day" +msgstr "den" + +#: src/Model/Event.php:467 msgid "No events to display" msgstr "Žádné události k zobrazení" -#: src/Model/Event.php:561 +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "Přístup na tento profil byl omezen." + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "" + +#: src/Model/Event.php:637 msgid "l, F j" msgstr "l, j. F" -#: src/Model/Event.php:592 +#: src/Model/Event.php:664 msgid "Edit event" msgstr "Upravit událost" -#: src/Model/Event.php:593 +#: src/Model/Event.php:665 msgid "Duplicate event" msgstr "Duplikovat událost" -#: src/Model/Event.php:594 +#: src/Model/Event.php:666 msgid "Delete event" msgstr "Smazat událost" -#: src/Model/Event.php:626 src/Model/Item.php:3547 src/Model/Item.php:3554 -msgid "link to source" -msgstr "odkaz na zdroj" +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +msgid "l F d, Y \\@ g:i A" +msgstr "l d. F, Y v g:i A" -#: src/Model/Event.php:848 +#: src/Model/Event.php:897 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:849 +#: src/Model/Event.php:898 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:934 src/Model/Event.php:936 +#: src/Model/Event.php:964 src/Model/Event.php:966 msgid "Show map" msgstr "Zobrazit mapu" -#: src/Model/Event.php:935 +#: src/Model/Event.php:965 msgid "Hide map" msgstr "Skrýt mapu" -#: src/Model/Event.php:1027 +#: src/Model/Event.php:1058 #, php-format msgid "%s's birthday" msgstr "%s má narozeniny" -#: src/Model/Event.php:1028 +#: src/Model/Event.php:1059 #, php-format msgid "Happy Birthday %s" msgstr "Veselé narozeniny, %s" -#: src/Model/FileTag.php:265 -msgid "Item filed" -msgstr "Položka vyplněna" +#: src/Model/Item.php:2062 +#, php-format +msgid "Detected languages in this post:\\n%s" +msgstr "" -#: src/Model/User.php:331 +#: src/Model/Item.php:3007 +msgid "activity" +msgstr "aktivita" + +#: src/Model/Item.php:3009 +msgid "comment" +msgstr "" + +#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123 +msgid "post" +msgstr "příspěvek" + +#: src/Model/Item.php:3182 +#, php-format +msgid "%s is blocked" +msgstr "" + +#: src/Model/Item.php:3184 +#, php-format +msgid "%s is ignored" +msgstr "" + +#: src/Model/Item.php:3186 +#, php-format +msgid "Content from %s is collapsed" +msgstr "" + +#: src/Model/Item.php:3190 +#, php-format +msgid "Content warning: %s" +msgstr "Varování o obsahu: %s" + +#: src/Model/Item.php:3652 +msgid "bytes" +msgstr "bytů" + +#: src/Model/Item.php:3683 +#, php-format +msgid "%2$s (%3$d%%, %1$d vote)" +msgid_plural "%2$s (%3$d%%, %1$d votes)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Model/Item.php:3685 +#, php-format +msgid "%2$s (%1$d vote)" +msgid_plural "%2$s (%1$d votes)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Model/Item.php:3690 +#, php-format +msgid "%d voter. Poll end: %s" +msgid_plural "%d voters. Poll end: %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Model/Item.php:3692 +#, php-format +msgid "%d voter." +msgid_plural "%d voters." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Model/Item.php:3694 +#, php-format +msgid "Poll end: %s" +msgstr "" + +#: src/Model/Item.php:3728 src/Model/Item.php:3729 +msgid "View on separate page" +msgstr "Zobrazit na separátní stránce" + +#: src/Model/Mail.php:137 src/Model/Mail.php:266 +msgid "[no subject]" +msgstr "[bez předmětu]" + +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Fotky na zdi" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 +msgid "Edit profile" +msgstr "Upravit profil" + +#: src/Model/Profile.php:361 +msgid "Change profile photo" +msgstr "Změnit profilovou fotku" + +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 +msgid "Homepage:" +msgstr "Domovská stránka:" + +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 +msgid "About:" +msgstr "O mně:" + +#: src/Model/Profile.php:465 +msgid "Atom feed" +msgstr "Kanál Atom" + +#: src/Model/Profile.php:472 +msgid "This website has been verified to belong to the same person." +msgstr "" + +#: src/Model/Profile.php:509 +msgid "F d" +msgstr "d. F" + +#: src/Model/Profile.php:573 src/Model/Profile.php:662 +msgid "[today]" +msgstr "[dnes]" + +#: src/Model/Profile.php:582 +msgid "Birthday Reminders" +msgstr "Připomínka narozenin" + +#: src/Model/Profile.php:583 +msgid "Birthdays this week:" +msgstr "Narozeniny tento týden:" + +#: src/Model/Profile.php:611 +msgid "g A l F d" +msgstr "g A, l d. F" + +#: src/Model/Profile.php:649 +msgid "[No description]" +msgstr "[Žádný popis]" + +#: src/Model/Profile.php:675 +msgid "Event Reminders" +msgstr "Připomenutí událostí" + +#: src/Model/Profile.php:676 +msgid "Upcoming events the next 7 days:" +msgstr "Nadcházející události v příštích 7 dnech:" + +#: src/Model/Profile.php:873 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s vítá uživatele %2$s" + +#: src/Model/Profile.php:1013 +msgid "Hometown:" +msgstr "Rodné město:" + +#: src/Model/Profile.php:1014 +msgid "Marital Status:" +msgstr "" + +#: src/Model/Profile.php:1015 +msgid "With:" +msgstr "" + +#: src/Model/Profile.php:1016 +msgid "Since:" +msgstr "" + +#: src/Model/Profile.php:1017 +msgid "Sexual Preference:" +msgstr "Sexuální orientace:" + +#: src/Model/Profile.php:1018 +msgid "Political Views:" +msgstr "Politické přesvědčení:" + +#: src/Model/Profile.php:1019 +msgid "Religious Views:" +msgstr "Náboženské přesvědčení:" + +#: src/Model/Profile.php:1020 +msgid "Likes:" +msgstr "Líbí se:" + +#: src/Model/Profile.php:1021 +msgid "Dislikes:" +msgstr "Nelibí se:" + +#: src/Model/Profile.php:1022 +msgid "Title/Description:" +msgstr "Název / Popis:" + +#: src/Model/Profile.php:1023 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 +msgid "Summary" +msgstr "Shrnutí" + +#: src/Model/Profile.php:1024 +msgid "Musical interests" +msgstr "Hudební vkus" + +#: src/Model/Profile.php:1025 +msgid "Books, literature" +msgstr "Knihy, literatura" + +#: src/Model/Profile.php:1026 +msgid "Television" +msgstr "Televize" + +#: src/Model/Profile.php:1027 +msgid "Film/dance/culture/entertainment" +msgstr "Film/tanec/kultura/zábava" + +#: src/Model/Profile.php:1028 +msgid "Hobbies/Interests" +msgstr "Koníčky/zájmy" + +#: src/Model/Profile.php:1029 +msgid "Love/romance" +msgstr "Láska/romantika" + +#: src/Model/Profile.php:1030 +msgid "Work/employment" +msgstr "Práce/zaměstnání" + +#: src/Model/Profile.php:1031 +msgid "School/education" +msgstr "Škola/vzdělání" + +#: src/Model/Profile.php:1032 +msgid "Contact information and Social Networks" +msgstr "Kontaktní informace a sociální sítě" + +#: src/Model/User.php:227 src/Model/User.php:1186 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ZÁVAŽNÁ CHYBA: Generování bezpečnostních klíčů se nezdařilo." + +#: src/Model/User.php:620 src/Model/User.php:653 msgid "Login failed" msgstr "Přihlášení selhalo" -#: src/Model/User.php:362 +#: src/Model/User.php:685 msgid "Not enough information to authenticate" msgstr "Není dost informací pro autentikaci" -#: src/Model/User.php:440 +#: src/Model/User.php:806 msgid "Password can't be empty" msgstr "Heslo nemůže být prázdné" -#: src/Model/User.php:459 +#: src/Model/User.php:848 msgid "Empty passwords are not allowed." msgstr "Prázdná hesla nejsou povolena." -#: src/Model/User.php:463 +#: src/Model/User.php:852 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Nové heslo bylo zveřejněno ve veřejném výpisu dat, prosím zvolte si jiné." -#: src/Model/User.php:469 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "Heslo nesmí obsahovat mezery, znaky s diakritikou a dvojtečky (:)" +#: src/Model/User.php:856 +msgid "The password length is limited to 72 characters." +msgstr "" -#: src/Model/User.php:569 +#: src/Model/User.php:860 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "" + +#: src/Model/User.php:1069 msgid "Passwords do not match. Password unchanged." msgstr "Hesla se neshodují. Heslo nebylo změněno." -#: src/Model/User.php:576 +#: src/Model/User.php:1076 msgid "An invitation is required." msgstr "Je vyžadována pozvánka." -#: src/Model/User.php:580 +#: src/Model/User.php:1080 msgid "Invitation could not be verified." msgstr "Pozvánka nemohla být ověřena." -#: src/Model/User.php:587 +#: src/Model/User.php:1088 msgid "Invalid OpenID url" msgstr "Neplatný odkaz OpenID" -#: src/Model/User.php:600 src/Module/Login.php:102 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Zaznamenali jsme problém s vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. " -#: src/Model/User.php:600 src/Module/Login.php:102 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "Chybová zpráva byla:" -#: src/Model/User.php:606 +#: src/Model/User.php:1107 msgid "Please enter the required information." msgstr "Zadejte prosím požadované informace." -#: src/Model/User.php:620 +#: src/Model/User.php:1121 #, 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) a system.username_max_length (%s) se vzájemně vylučují, čímž se vyměňují hodnoty." -#: src/Model/User.php:627 +#: src/Model/User.php:1128 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." @@ -6284,7 +3727,7 @@ msgstr[1] "Uživateleké jméno musí mít alespoň %s znaky." msgstr[2] "Uživateleké jméno musí mít alespoň %s znaku." msgstr[3] "Uživateleké jméno musí mít alespoň %s znaků." -#: src/Model/User.php:631 +#: src/Model/User.php:1132 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." @@ -6293,56 +3736,105 @@ msgstr[1] "Uživateleké jméno musí mít nanejvýš %s znaky." msgstr[2] "Uživateleké jméno musí mít nanejvýš %s znaku." msgstr[3] "Uživateleké jméno musí mít nanejvýš %s znaků." -#: src/Model/User.php:639 +#: src/Model/User.php:1140 msgid "That doesn't appear to be your full (First Last) name." msgstr "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)." -#: src/Model/User.php:644 +#: src/Model/User.php:1145 msgid "Your email domain is not among those allowed on this site." msgstr "Vaše e-mailová doména není na tomto serveru mezi povolenými." -#: src/Model/User.php:648 +#: src/Model/User.php:1149 msgid "Not a valid email address." msgstr "Neplatná e-mailová adresa." -#: src/Model/User.php:651 +#: src/Model/User.php:1152 msgid "The nickname was blocked from registration by the nodes admin." msgstr "Administrátor serveru zablokoval registraci této přezdívky." -#: src/Model/User.php:655 src/Model/User.php:663 +#: src/Model/User.php:1156 src/Model/User.php:1162 msgid "Cannot use that email." msgstr "Tento e-mail nelze použít." -#: src/Model/User.php:670 +#: src/Model/User.php:1168 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Uživatelské jméno může obsahovat pouze znaky a-z, 0-9 a _." -#: src/Model/User.php:677 src/Model/User.php:734 +#: src/Model/User.php:1176 src/Model/User.php:1233 msgid "Nickname is already registered. Please choose another." msgstr "Přezdívka je již registrována. Prosím vyberte jinou." -#: src/Model/User.php:687 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ZÁVAŽNÁ CHYBA: Generování bezpečnostních klíčů se nezdařilo." - -#: src/Model/User.php:721 src/Model/User.php:725 +#: src/Model/User.php:1220 src/Model/User.php:1224 msgid "An error occurred during registration. Please try again." msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu." -#: src/Model/User.php:750 +#: src/Model/User.php:1247 msgid "An error occurred creating your default profile. Please try again." msgstr "Při vytváření vašeho výchozího profilu došlo k chybě. Zkuste to prosím znovu." -#: src/Model/User.php:757 +#: src/Model/User.php:1254 msgid "An error occurred creating your self contact. Please try again." msgstr "Při vytváření vašeho kontaktu na sebe došlo k chybě. Zkuste to prosím znovu." -#: src/Model/User.php:766 -msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "Při vytváření vaší výchozí skupiny kontaktů došlo k chybě. Zkuste to prosím znovu." +#: src/Model/User.php:1259 +msgid "Friends" +msgstr "Přátelé" -#: src/Model/User.php:842 +#: src/Model/User.php:1263 +msgid "" +"An error occurred creating your default contact circle. Please try again." +msgstr "" + +#: src/Model/User.php:1307 +msgid "Profile Photos" +msgstr "Profilové fotky" + +#: src/Model/User.php:1487 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: src/Model/User.php:1490 +#, 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/settings/removeme\n" +"\n" +"\t\tThank you and welcome to %4$s." +msgstr "" + +#: src/Model/User.php:1523 src/Model/User.php:1630 +#, php-format +msgid "Registration details for %s" +msgstr "Registrační údaje pro uživatele %s" + +#: src/Model/User.php:1543 #, php-format msgid "" "\n" @@ -6357,21 +3849,21 @@ msgid "" "\t\t" msgstr "\n\t\t\tVážený/á %1$s,\n\t\t\t\tDěkujeme, že jste se registroval/a na %2$s. Váš účet čeká na schválení administrátora.\n\n\t\t\tZde jsou vaše přihlašovací detaily:\n\n\t\t\tAdresa stránky:\t\t%3$s\n\t\t\tPřihlašovací jméno:\t%4$s\n\t\t\tHeslo:\t\t\t%5$s\n\t\t" -#: src/Model/User.php:859 +#: src/Model/User.php:1562 #, php-format msgid "Registration at %s" msgstr "Registrace na %s" -#: src/Model/User.php:878 +#: src/Model/User.php:1586 #, php-format msgid "" "\n" -"\t\t\tDear %1$s,\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" -msgstr "\n\t\t\tVážený/á %1$s,\n\t\t\t\tDěkujeme, že jste se registroval/a na %2$s. Váš účet byl vytvořen.\n\t\t" +"\t\t\t" +msgstr "" -#: src/Model/User.php:884 +#: src/Model/User.php:1594 #, php-format msgid "" "\n" @@ -6398,477 +3890,93 @@ msgid "" "\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" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." -msgstr "\n\t\t\tZde jsou vaše přihlašovací detaily:\n\n\t\t\tAdresa stránky:\t\t%3$s\n\t\t\tPřihlašovací jméno:\t%1$s\n\t\t\tHeslo:\t\t\t%5$s\n\n\t\t\tSvé heslo si po přihlášení můžete změnit na stránce „Nastavení“ vašeho\n\t\t\túčtu.\n\n\t\t\tProsím, prohlédněte si na chvilku ostatní nastavení účtu na této stránce.\n\n\t\t\tMožná byste si také přál/a přidat pár základních informací na svůj výchozí\n\t\t\tprofil (na stránce „Profily“) aby vás další lidé mohli snadno najít.\n\t\t\tDoporučujeme nastavit si vaše celé jméno, přidat profilovou fotku,\n\t\t\tpřidat pár „klíčových slov“ k profilu (velmi užitečné při získávání nových\n\t\t\tpřátel) - a možná v jaké zemi žijete; pokud nechcete být konkrétnější.\n\n\t\t\tZcela respektujeme vaše právo na soukromí a žádnou z těchto položek\n\t\t\tnení potřeba vyplňovat. Pokud jste zde nový/á a nikoho zde neznáte, mohou vám\n\t\t\tpomoci si získat nové a zajímavé přátele.\n\t\t\tPokud byste si někdy přál/a smazat účet, můžete tak učinit na stránce\n\t\t\t%3$s/removeme.\n\n\t\t\tDěkujeme vám a vítáme vás na %2$s." +msgstr "" -#: src/Model/User.php:919 src/Module/Admin/Users.php:88 -#, php-format -msgid "Registration details for %s" -msgstr "Registrační údaje pro uživatele %s" - -#: src/Model/Contact.php:1230 -msgid "Drop Contact" -msgstr "Odstranit kontakt" - -#: src/Model/Contact.php:1783 -msgid "Organisation" -msgstr "Organizace" - -#: src/Model/Contact.php:1787 -msgid "News" -msgstr "Zprávy" - -#: src/Model/Contact.php:1791 -msgid "Forum" -msgstr "Fórum" - -#: src/Model/Contact.php:2192 -msgid "Connect URL missing." -msgstr "Chybí URL adresa pro připojení." - -#: src/Model/Contact.php:2201 -msgid "" -"The contact could not be added. Please check the relevant network " -"credentials in your Settings -> Social Networks page." -msgstr "Kontakt nemohl být přidán. Prosím zkontrolujte relevantní přihlašovací údaje sítě na stránce Nastavení -> Sociální sítě." - -#: src/Model/Contact.php:2242 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi." - -#: src/Model/Contact.php:2243 src/Model/Contact.php:2256 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál." - -#: src/Model/Contact.php:2254 -msgid "The profile address specified does not provide adequate information." -msgstr "Uvedená adresa profilu neposkytuje dostatečné informace." - -#: src/Model/Contact.php:2259 -msgid "An author or name was not found." -msgstr "Autor nebo jméno nenalezeno" - -#: src/Model/Contact.php:2262 -msgid "No browser URL could be matched to this address." -msgstr "Této adrese neodpovídá žádné URL prohlížeče." - -#: src/Model/Contact.php:2265 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem." - -#: src/Model/Contact.php:2266 -msgid "Use mailto: in front of address to force email check." -msgstr "Použite mailo: před adresou k vynucení emailové kontroly." - -#: src/Model/Contact.php:2272 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána." - -#: src/Model/Contact.php:2277 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Omezený profil. Tato osoba nebude schopna od vás přijímat přímá/osobní oznámení." - -#: src/Model/Contact.php:2332 -msgid "Unable to retrieve contact information." -msgstr "Nepodařilo se získat kontaktní informace." - -#: src/Model/Group.php:77 -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 "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění může ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěl/a, vytvořte, prosím, další skupinu s jiným názvem." - -#: src/Model/Group.php:407 -msgid "Default privacy group for new contacts" -msgstr "Výchozí soukromá skupina pro nové kontakty." - -#: src/Model/Group.php:439 -msgid "Everybody" -msgstr "Všichni" - -#: src/Model/Group.php:458 -msgid "edit" -msgstr "upravit" - -#: src/Model/Group.php:484 src/Module/Welcome.php:57 -#: src/Module/Contact.php:708 -msgid "Groups" -msgstr "Skupiny" - -#: src/Model/Group.php:488 -msgid "Edit group" -msgstr "Upravit skupinu" - -#: src/Model/Group.php:489 src/Module/Group.php:186 -msgid "Contacts not in any group" -msgstr "Kontakty, které nejsou v žádné skupině" - -#: src/Model/Group.php:491 -msgid "Create a new group" -msgstr "Vytvořit novou skupinu" - -#: src/Model/Group.php:492 src/Module/Group.php:171 src/Module/Group.php:194 -#: src/Module/Group.php:271 -msgid "Group Name: " -msgstr "Název skupiny: " - -#: src/Model/Group.php:493 -msgid "Edit groups" -msgstr "Upravit skupiny" - -#: src/Model/Mail.php:113 src/Model/Mail.php:250 -msgid "[no subject]" -msgstr "[bez předmětu]" - -#: src/Model/Profile.php:212 src/Model/Profile.php:428 -#: src/Model/Profile.php:885 -msgid "Edit profile" -msgstr "Upravit profil" - -#: src/Model/Profile.php:402 -msgid "Manage/edit profiles" -msgstr "Spravovat/upravit profily" - -#: src/Model/Profile.php:451 src/Model/Profile.php:795 -#: src/Module/Directory.php:143 -msgid "Status:" -msgstr "Stav:" - -#: src/Model/Profile.php:452 src/Model/Profile.php:812 -#: src/Module/Directory.php:144 -msgid "Homepage:" -msgstr "Domovská stránka:" - -#: src/Model/Profile.php:454 src/Module/Contact.php:609 -msgid "XMPP:" -msgstr "XMPP:" - -#: src/Model/Profile.php:546 src/Module/Contact.php:299 -msgid "Unfollow" -msgstr "Přestat sledovat" - -#: src/Model/Profile.php:548 -msgid "Atom feed" -msgstr "Kanál Atom" - -#: src/Model/Profile.php:588 src/Model/Profile.php:685 -msgid "g A l F d" -msgstr "g A, l d. F" - -#: src/Model/Profile.php:589 -msgid "F d" -msgstr "d. F" - -#: src/Model/Profile.php:651 src/Model/Profile.php:736 -msgid "[today]" -msgstr "[dnes]" - -#: src/Model/Profile.php:661 -msgid "Birthday Reminders" -msgstr "Připomínka narozenin" - -#: src/Model/Profile.php:662 -msgid "Birthdays this week:" -msgstr "Narozeniny tento týden:" - -#: src/Model/Profile.php:723 -msgid "[No description]" -msgstr "[Žádný popis]" - -#: src/Model/Profile.php:749 -msgid "Event Reminders" -msgstr "Připomenutí událostí" - -#: src/Model/Profile.php:750 -msgid "Upcoming events the next 7 days:" -msgstr "Nadcházející události v příštích 7 dnech:" - -#: src/Model/Profile.php:767 -msgid "Member since:" -msgstr "Členem od:" - -#: src/Model/Profile.php:775 -msgid "j F, Y" -msgstr "j F, Y" - -#: src/Model/Profile.php:776 -msgid "j F" -msgstr "j F" - -#: src/Model/Profile.php:791 -msgid "Age:" -msgstr "Věk:" - -#: src/Model/Profile.php:804 -#, php-format -msgid "for %1$d %2$s" -msgstr "%1$d %2$s" - -#: src/Model/Profile.php:828 -msgid "Religion:" -msgstr "Náboženství:" - -#: src/Model/Profile.php:836 -msgid "Hobbies/Interests:" -msgstr "Koníčky/zájmy:" - -#: src/Model/Profile.php:848 -msgid "Contact information and Social Networks:" -msgstr "Kontaktní informace a sociální sítě:" - -#: src/Model/Profile.php:852 -msgid "Musical interests:" -msgstr "Hudební vkus:" - -#: src/Model/Profile.php:856 -msgid "Books, literature:" -msgstr "Knihy, literatura:" - -#: src/Model/Profile.php:860 -msgid "Television:" -msgstr "Televize:" - -#: src/Model/Profile.php:864 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/tanec/kultura/zábava:" - -#: src/Model/Profile.php:868 -msgid "Love/Romance:" -msgstr "Láska/romantika" - -#: src/Model/Profile.php:872 -msgid "Work/employment:" -msgstr "Práce/zaměstnání:" - -#: src/Model/Profile.php:876 -msgid "School/education:" -msgstr "Škola/vzdělávání:" - -#: src/Model/Profile.php:881 -msgid "Forums:" -msgstr "Fóra" - -#: src/Model/Profile.php:928 src/Module/Contact.php:850 -msgid "Profile Details" -msgstr "Detaily profilu" - -#: src/Model/Profile.php:978 -msgid "Only You Can See This" -msgstr "Toto můžete vidět jen vy" - -#: src/Model/Profile.php:986 src/Model/Profile.php:989 -msgid "Tips for New Members" -msgstr "Tipy pro nové členy" - -#: src/Model/Profile.php:1186 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s vítá uživatele %2$s" - -#: src/Model/Item.php:3313 -msgid "activity" -msgstr "aktivita" - -#: src/Model/Item.php:3315 src/Object/Post.php:474 -msgid "comment" -msgid_plural "comments" -msgstr[0] "komentář" -msgstr[1] "komentáře" -msgstr[2] "komentáře" -msgstr[3] "komentářů" - -#: src/Model/Item.php:3318 -msgid "post" -msgstr "příspěvek" - -#: src/Model/Item.php:3417 -#, php-format -msgid "Content warning: %s" -msgstr "Varování o obsahu: %s" - -#: src/Model/Item.php:3494 -msgid "bytes" -msgstr "bytů" - -#: src/Model/Item.php:3541 -msgid "View on separate page" -msgstr "Zobrazit na separátní stránce" - -#: src/Model/Item.php:3542 -msgid "view on separate page" -msgstr "zobrazit na separátní stránce" - -#: src/Protocol/OStatus.php:1300 src/Module/Profile.php:119 -#: src/Module/Profile.php:122 -#, php-format -msgid "%s's timeline" -msgstr "Časová osa uživatele %s" - -#: src/Protocol/OStatus.php:1304 src/Module/Profile.php:120 -#, php-format -msgid "%s's posts" -msgstr "Příspěvky uživatele %s" - -#: src/Protocol/OStatus.php:1307 src/Module/Profile.php:121 -#, php-format -msgid "%s's comments" -msgstr "Komentáře uživatele %s" - -#: src/Protocol/OStatus.php:1861 -#, php-format -msgid "%s is now following %s." -msgstr "%s nyní sleduje %s." - -#: src/Protocol/OStatus.php:1862 -msgid "following" -msgstr "sleduje" - -#: src/Protocol/OStatus.php:1865 -#, php-format -msgid "%s stopped following %s." -msgstr "%s přestal/a sledovat uživatele %s." - -#: src/Protocol/OStatus.php:1866 -msgid "stopped following" -msgstr "přestal/a sledovat" - -#: src/Protocol/Diaspora.php:2527 -msgid "Sharing notification from Diaspora network" -msgstr "Oznámení o sdílení ze sítě Diaspora" - -#: src/Protocol/Diaspora.php:3674 -msgid "Attachments:" -msgstr "Přílohy:" - -#: src/Worker/Delivery.php:508 -msgid "(no subject)" -msgstr "(bez předmětu)" - -#: src/Module/Tos.php:35 src/Module/Tos.php:77 -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 "Ve chvíli registrace, a pro poskytování komunikace mezi uživatelským účtem a jeho kontakty, musí uživatel poskytnout zobrazované jméno (pseudonym), uživatelské jméno (přezdívku) a funkční e-mailovou adresu. Jména budou dostupná na profilové stránce účtu pro kteréhokoliv návštěvníka, i kdyby ostatní detaily nebyly zobrazeny. E-mailová adresa bude použita pouze pro zasílání oznámení o interakcích, nebude ale viditelně zobrazována. Zápis účtu do adresáře účtů serveru nebo globálního adresáře účtů je nepovinný a může být ovládán v nastavení uživatele, není potřebný pro komunikaci." - -#: src/Module/Tos.php:36 src/Module/Tos.php:78 -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 "Tato data jsou vyžadována ke komunikaci a jsou předávána serverům komunikačních partnerů a jsou tam ukládána. Uživatelé mohou zadávat dodatečná soukromá data, která mohou být odeslána na účty komunikačních partnerů." - -#: src/Module/Tos.php:37 src/Module/Tos.php:79 -#, 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 "Přihlášený uživatel si kdykoliv může exportovat svoje data účtu z nastavení účtu. Pokud by chtěl uživatel svůj účet smazat, může tak učinit na stránce %1$s/removeme. Smazání účtu bude trvalé. Na serverech komunikačních partnerů bude zároveň vyžádáno smazání dat." - -#: src/Module/Tos.php:40 src/Module/Tos.php:76 -msgid "Privacy Statement" -msgstr "Prohlášení o soukromí" - -#: src/Module/Apps.php:29 -msgid "No installed applications." -msgstr "Žádné nainstalované aplikace." - -#: src/Module/Apps.php:34 -msgid "Applications" -msgstr "Aplikace" - -#: src/Module/Credits.php:25 -msgid "Credits" -msgstr "Poděkování" - -#: src/Module/Credits.php:26 -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 "Friendica je komunitní projekt, který by nebyl možný bez pomoci mnoha lidí. Zde je seznam těch, kteří přispěli ke kódu nebo k překladu Friendica. Děkujeme všem!" - -#: src/Module/Admin/Addons/Details.php:51 +#: src/Module/Admin/Addons/Details.php:65 msgid "Addon not found." msgstr "Doplněk nenalezen." -#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:32 +#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 #, php-format msgid "Addon %s disabled." msgstr "Doplněk %s zakázán." -#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:34 +#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 #, php-format msgid "Addon %s enabled." msgstr "Doplněk %s povolen." -#: src/Module/Admin/Addons/Details.php:76 -#: src/Module/Admin/Themes/Details.php:60 +#: src/Module/Admin/Addons/Details.php:88 +#: src/Module/Admin/Themes/Details.php:46 msgid "Disable" msgstr "Zakázat" -#: src/Module/Admin/Addons/Details.php:79 -#: src/Module/Admin/Themes/Details.php:63 +#: src/Module/Admin/Addons/Details.php:91 +#: src/Module/Admin/Themes/Details.php:49 msgid "Enable" msgstr "Povolit" -#: src/Module/Admin/Addons/Details.php:99 src/Module/Admin/Addons/Index.php:50 -#: src/Module/Admin/Blocklist/Contact.php:61 -#: src/Module/Admin/Blocklist/Server.php:73 -#: src/Module/Admin/Federation.php:187 src/Module/Admin/Item/Delete.php:46 -#: src/Module/Admin/Logs/Settings.php:63 src/Module/Admin/Logs/View.php:46 -#: src/Module/Admin/Themes/Details.php:104 -#: src/Module/Admin/Themes/Index.php:95 src/Module/Admin/Tos.php:42 -#: src/Module/Admin/Users.php:277 src/Module/Admin/Queue.php:56 -#: src/Module/Admin/Site.php:566 src/Module/Admin/Summary.php:173 +#: src/Module/Admin/Addons/Details.php:111 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 +#: src/Module/Admin/Themes/Details.php:90 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 msgid "Administration" msgstr "Administrace" -#: src/Module/Admin/Addons/Details.php:101 -#: src/Module/Admin/Themes/Details.php:106 +#: src/Module/Admin/Addons/Details.php:112 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:132 +msgid "Addons" +msgstr "Doplňky" + +#: src/Module/Admin/Addons/Details.php:113 +#: src/Module/Admin/Themes/Details.php:92 msgid "Toggle" msgstr "Přepnout" -#: src/Module/Admin/Addons/Details.php:109 -#: src/Module/Admin/Themes/Details.php:115 +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 msgid "Author: " msgstr "Autor: " -#: src/Module/Admin/Addons/Details.php:110 -#: src/Module/Admin/Themes/Details.php:116 +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 msgid "Maintainer: " msgstr "Správce: " -#: src/Module/Admin/Addons/Index.php:36 +#: src/Module/Admin/Addons/Index.php:42 +msgid "Addons reloaded" +msgstr "" + +#: src/Module/Admin/Addons/Index.php:53 #, php-format msgid "Addon %s failed to install." msgstr "Instalace doplňku %s selhala." -#: src/Module/Admin/Addons/Index.php:53 +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Uložit nastavení" + +#: src/Module/Admin/Addons/Index.php:70 msgid "Reload active addons" msgstr "Znovu načíst aktivní doplňky" -#: src/Module/Admin/Addons/Index.php:58 +#: src/Module/Admin/Addons/Index.php:74 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -6876,370 +3984,225 @@ msgid "" " the open addon registry at %2$s" msgstr "Aktuálně nejsou na Vašem serveru k dispozici žádné doplňky. Oficiální repozitář doplňků najdete na %1$s a další zajímavé doplňky můžete najít v otevřeném registru doplňků na %2$s" -#: src/Module/Admin/Blocklist/Contact.php:28 -#: src/Console/GlobalCommunityBlock.php:87 -msgid "The contact has been blocked from the node" -msgstr "Kontakt byl na serveru zablokován" - -#: src/Module/Admin/Blocklist/Contact.php:30 -#: src/Console/GlobalCommunityBlock.php:82 -#, php-format -msgid "Could not find any contact entry for this URL (%s)" -msgstr "Nelze nalézt žádnou položku v kontaktech pro tuto URL adresu (%s)" - -#: src/Module/Admin/Blocklist/Contact.php:38 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s kontakt odblokován" -msgstr[1] "%s kontakty odblokovány" -msgstr[2] "%s kontaktu odblokováno" -msgstr[3] "%s kontaktů odblokováno" - -#: src/Module/Admin/Blocklist/Contact.php:62 -msgid "Remote Contact Blocklist" -msgstr "Blokované vzdálené kontakty" - -#: src/Module/Admin/Blocklist/Contact.php:63 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "Tato stránka vám umožňuje zabránit jakýmkoliv zprávám ze vzdáleného kontaktu, aby se k vašemu serveru dostaly." - -#: src/Module/Admin/Blocklist/Contact.php:64 -msgid "Block Remote Contact" -msgstr "Zablokovat vzdálený kontakt" - -#: src/Module/Admin/Blocklist/Contact.php:65 src/Module/Admin/Users.php:280 -msgid "select all" -msgstr "Vybrat vše" - -#: src/Module/Admin/Blocklist/Contact.php:66 -msgid "select none" -msgstr "nevybrat žádný" - -#: src/Module/Admin/Blocklist/Contact.php:68 src/Module/Admin/Users.php:291 -#: src/Module/Contact.php:585 src/Module/Contact.php:802 -#: src/Module/Contact.php:1061 -msgid "Unblock" -msgstr "Odblokovat" - -#: src/Module/Admin/Blocklist/Contact.php:69 -msgid "No remote contact is blocked from this node." -msgstr "Žádný vzdálený kontakt není na tomto serveru zablokován." - -#: src/Module/Admin/Blocklist/Contact.php:71 -msgid "Blocked Remote Contacts" -msgstr "Zablokované vzdálené kontakty" - -#: src/Module/Admin/Blocklist/Contact.php:72 -msgid "Block New Remote Contact" -msgstr "Zablokovat nový vzdálený kontakt" - -#: src/Module/Admin/Blocklist/Contact.php:73 -msgid "Photo" -msgstr "Fotka" - -#: src/Module/Admin/Blocklist/Contact.php:73 -msgid "Reason" -msgstr "Důvod" - -#: src/Module/Admin/Blocklist/Contact.php:81 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "Celkem %s zablokovaný kontakt" -msgstr[1] "Celkem %s zablokované kontakty" -msgstr[2] "Celkem %s zablokovaného kontaktu" -msgstr[3] "Celkem %s zablokovaných kontaktů" - -#: src/Module/Admin/Blocklist/Contact.php:83 -msgid "URL of the remote contact to block." -msgstr "Adresa URL vzdáleného kontaktu k zablokování." - -#: src/Module/Admin/Blocklist/Contact.php:84 -msgid "Block Reason" -msgstr "Důvod blokace" - -#: src/Module/Admin/Blocklist/Server.php:31 -msgid "Server domain pattern added to blocklist." -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:47 -msgid "Site blocklist updated." -msgstr "Blokovací seznam stránky aktualizován" - -#: src/Module/Admin/Blocklist/Server.php:64 -#: src/Module/Admin/Blocklist/Server.php:89 -msgid "Blocked server domain pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:65 -#: src/Module/Admin/Blocklist/Server.php:90 src/Module/Friendica.php:60 -msgid "Reason for the block" -msgstr "Důvody pro zablokování" - -#: src/Module/Admin/Blocklist/Server.php:66 -msgid "Delete server domain pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:66 -msgid "Check to delete this entry from the blocklist" -msgstr "Zaškrtnutím odstraníte tuto položku z blokovacího seznamu" - -#: src/Module/Admin/Blocklist/Server.php:74 -msgid "Server Domain Pattern Blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:75 -msgid "" -"This page can be used to define a blacklist of server domain patterns from " -"the federated network that are not allowed to interact with your node. For " -"each domain pattern you should also provide the reason why you block it." -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:76 -msgid "" -"The list of blocked server domain patterns will be made publically available" -" on the /friendica page so that your users and " -"people investigating communication problems can find the reason easily." -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:77 -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 "" - -#: src/Module/Admin/Blocklist/Server.php:83 -msgid "Add new entry to block list" -msgstr "Přidat na blokovací seznam novou položku" - -#: src/Module/Admin/Blocklist/Server.php:84 -msgid "Server Domain Pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:84 -msgid "" -"The domain pattern of the new server to add to the block list. Do not " -"include the protocol." -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:85 -msgid "Block reason" -msgstr "Důvod zablokování" - -#: src/Module/Admin/Blocklist/Server.php:85 -msgid "The reason why you blocked this server domain pattern." -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:86 -msgid "Add Entry" -msgstr "Přidat položku" - -#: src/Module/Admin/Blocklist/Server.php:87 -msgid "Save changes to the blocklist" -msgstr "Uložit změny do blokovacího seznamu" - -#: src/Module/Admin/Blocklist/Server.php:88 -msgid "Current Entries in the Blocklist" -msgstr "Aktuální položky v bokovacím seznamu" - -#: src/Module/Admin/Blocklist/Server.php:91 -msgid "Delete entry from blocklist" -msgstr "Odstranit položku z blokovacího seznamu" - -#: src/Module/Admin/Blocklist/Server.php:94 -msgid "Delete entry from blocklist?" -msgstr "Odstranit položku z blokovacího seznamu?" - -#: src/Module/Admin/DBSync.php:32 +#: src/Module/Admin/DBSync.php:51 msgid "Update has been marked successful" msgstr "Aktualizace byla označena jako úspěšná." -#: src/Module/Admin/DBSync.php:42 +#: src/Module/Admin/DBSync.php:59 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Aktualizace struktury databáze %s byla úspěšně aplikována." -#: src/Module/Admin/DBSync.php:46 +#: src/Module/Admin/DBSync.php:61 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "Provádění aktualizace databáze %s selhalo s chybou: %s" -#: src/Module/Admin/DBSync.php:63 +#: src/Module/Admin/DBSync.php:76 #, php-format msgid "Executing %s failed with error: %s" msgstr "Vykonávání %s selhalo s chybou: %s" -#: src/Module/Admin/DBSync.php:65 +#: src/Module/Admin/DBSync.php:78 #, php-format msgid "Update %s was successfully applied." msgstr "Aktualizace %s byla úspěšně aplikována." -#: src/Module/Admin/DBSync.php:68 +#: src/Module/Admin/DBSync.php:81 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Aktualizace %s nevrátila žádný stav. Není zřejmé, jestli byla úspěšná." -#: src/Module/Admin/DBSync.php:71 +#: src/Module/Admin/DBSync.php:84 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Nebyla nalezena žádná další aktualizační funkce %s která by měla být volána." -#: src/Module/Admin/DBSync.php:91 +#: src/Module/Admin/DBSync.php:105 msgid "No failed updates." msgstr "Žádné neúspěšné aktualizace." -#: src/Module/Admin/DBSync.php:92 +#: src/Module/Admin/DBSync.php:106 msgid "Check database structure" msgstr "Ověřit strukturu databáze" -#: src/Module/Admin/DBSync.php:97 +#: src/Module/Admin/DBSync.php:110 msgid "Failed Updates" msgstr "Neúspěšné aktualizace" -#: src/Module/Admin/DBSync.php:98 +#: src/Module/Admin/DBSync.php:111 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status." -#: src/Module/Admin/DBSync.php:99 +#: src/Module/Admin/DBSync.php:112 msgid "Mark success (if update was manually applied)" msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)" -#: src/Module/Admin/DBSync.php:100 +#: src/Module/Admin/DBSync.php:113 msgid "Attempt to execute this update step automatically" msgstr "Pokusit se provést tuto aktualizaci automaticky." -#: src/Module/Admin/Features.php:59 +#: src/Module/Admin/Features.php:76 #, php-format msgid "Lock feature %s" msgstr "Uzamknout vlastnost %s" -#: src/Module/Admin/Features.php:67 +#: src/Module/Admin/Features.php:84 msgid "Manage Additional Features" msgstr "Spravovat další funkce" #: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 +msgid "Other" +msgstr "Jiné" + +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 msgid "unknown" msgstr "neznámé" -#: src/Module/Admin/Federation.php:181 +#: src/Module/Admin/Federation.php:187 +#, php-format +msgid "%2$s total system" +msgid_plural "%2$s total systems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Admin/Federation.php:188 +#, php-format +msgid "%2$s active user last month" +msgid_plural "%2$s active users last month" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Admin/Federation.php:189 +#, php-format +msgid "%2$s active user last six months" +msgid_plural "%2$s active users last six months" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Admin/Federation.php:190 +#, php-format +msgid "%2$s registered user" +msgid_plural "%2$s registered users" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Admin/Federation.php:191 +#, php-format +msgid "%2$s locally created post or comment" +msgid_plural "%2$s locally created posts and comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Admin/Federation.php:194 +#, php-format +msgid "%2$s post per user" +msgid_plural "%2$s posts per user" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Admin/Federation.php:199 +#, php-format +msgid "%2$s user per system" +msgid_plural "%2$s users per system" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Admin/Federation.php:209 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 "Tato stránka vám nabízí pár čísel pro známou část federované sociální sítě, které je váš server Friendica součástí. Tato čísla nejsou kompletní, ale pouze odrážejí část sítě, které si je Váš server vědom." -#: src/Module/Admin/Federation.php:182 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "Funkce Adresář automaticky objevených kontaktů není zapnuta, zlepší zde zobrazená data." - -#: src/Module/Admin/Federation.php:188 src/Module/BaseAdminModule.php:77 +#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "Statistiky Federation" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:219 #, php-format msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " +"Currently this node is aware of %2$s node (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " "following platforms:" -msgstr "Aktuálně si je tento server vědom %d serverů s %d registrovanými uživateli z těchto platforem:" +msgid_plural "" +"Currently this node is aware of %2$s nodes (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Module/Admin/Item/Delete.php:35 -msgid "Item marked for deletion." -msgstr "Položka označená ke smazání" - -#: src/Module/Admin/Item/Delete.php:47 src/Module/BaseAdminModule.php:95 -msgid "Delete Item" -msgstr "Smazat položku" - -#: src/Module/Admin/Item/Delete.php:48 -msgid "Delete this Item" -msgstr "Smazat tuto položku" - -#: src/Module/Admin/Item/Delete.php:49 -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 "Na této stránce můžete smazat položku z vašeho serveru. Pokud je položkou příspěvek nejvyššího stupně, bude smazáno celé vlákno." - -#: src/Module/Admin/Item/Delete.php:50 -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 "Budete muset znát číslo GUID položky. Můžete jej najít např. v adrese URL. Poslední část adresy http://priklad.cz/display/123456 je GUID, v tomto případě 123456" - -#: src/Module/Admin/Item/Delete.php:51 -msgid "GUID" -msgstr "GUID" - -#: src/Module/Admin/Item/Delete.php:51 -msgid "The GUID of the item you want to delete." -msgstr "Číslo GUID položky, kterou chcete smazat" - -#: src/Module/Admin/Item/Source.php:47 -msgid "Item Guid" -msgstr "Číslo GUID položky" - -#: src/Module/Admin/Logs/Settings.php:27 src/Module/Admin/Summary.php:83 -#: src/Module/Admin/Summary.php:90 +#: src/Module/Admin/Logs/Settings.php:47 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "Záznamový soubor „%s“ není zapisovatelný. Zaznamenávání není možno." -#: src/Module/Admin/Logs/Settings.php:36 -msgid "Log settings updated." -msgstr "Nastavení záznamů aktualizována." - -#: src/Module/Admin/Logs/Settings.php:55 +#: src/Module/Admin/Logs/Settings.php:77 msgid "PHP log currently enabled." msgstr "PHP záznamy jsou aktuálně povolené." -#: src/Module/Admin/Logs/Settings.php:57 +#: src/Module/Admin/Logs/Settings.php:79 msgid "PHP log currently disabled." msgstr "PHP záznamy jsou aktuálně zakázané." -#: src/Module/Admin/Logs/Settings.php:64 src/Module/BaseAdminModule.php:97 -#: src/Module/BaseAdminModule.php:98 +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 msgid "Logs" msgstr "Záznamy" -#: src/Module/Admin/Logs/Settings.php:66 +#: src/Module/Admin/Logs/Settings.php:88 msgid "Clear" msgstr "Vyčistit" -#: src/Module/Admin/Logs/Settings.php:70 +#: src/Module/Admin/Logs/Settings.php:91 msgid "Enable Debugging" msgstr "Povolit ladění" -#: src/Module/Admin/Logs/Settings.php:71 +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:92 msgid "Log file" msgstr "Soubor se záznamem" -#: src/Module/Admin/Logs/Settings.php:71 +#: src/Module/Admin/Logs/Settings.php:92 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Musí být zapisovatelný webovým serverem. Cesta relativní k vašemu kořenovému adresáři Friendica." -#: src/Module/Admin/Logs/Settings.php:72 +#: src/Module/Admin/Logs/Settings.php:93 msgid "Log level" msgstr "Úroveň auditu" -#: src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/Settings.php:95 msgid "PHP logging" msgstr "Záznamování PHP" -#: src/Module/Admin/Logs/Settings.php:75 +#: src/Module/Admin/Logs/Settings.php:96 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 " @@ -7248,788 +4211,592 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "Pro dočasné umožnění zaznamenávání PHP chyb a varování, můžete přidat do souboru index.php na vaší instalaci následující: Název souboru nastavený v řádku „error_log“ je relativní ke kořenovému adresáři Friendica a webový server musí mít povolení na něj zapisovat. Možnost „1“ pro „log_errors“ a „display_errors“ tyto funkce povoluje, nastavením hodnoty na „0“ je zakážete. " -#: src/Module/Admin/Logs/View.php:22 +#: src/Module/Admin/Logs/View.php:70 #, 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 "Chyba při otevírání záznamu %1$s.\\r\\n
    Zkontrolujte, jestli soubor %1$s existuje a může se číst." +"Error trying to open %1$s log file.
    Check to see if " +"file %1$s exist and is readable." +msgstr "" -#: src/Module/Admin/Logs/View.php:26 +#: src/Module/Admin/Logs/View.php:79 #, php-format msgid "" -"Couldn't open %1$s log file.\\r\\n
    Check to see if file" -" %1$s is readable." -msgstr "Nelze otevřít záznam %1$s.\\r\\n
    Zkontrolujte, jestli se soubor %1$s může číst." +"Couldn't open %1$s log file.
    Check to see if file %1$s " +"is readable." +msgstr "" -#: src/Module/Admin/Logs/View.php:47 src/Module/BaseAdminModule.php:99 +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 msgid "View Logs" msgstr "Zobrazit záznamy" -#: src/Module/Admin/Themes/Details.php:32 src/Module/Admin/Themes/Embed.php:46 -msgid "Theme settings updated." -msgstr "Nastavení motivu bylo aktualizováno." +#: src/Module/Admin/Logs/View.php:87 +msgid "Search in logs" +msgstr "" -#: src/Module/Admin/Themes/Details.php:71 src/Module/Admin/Themes/Index.php:49 -#, php-format -msgid "Theme %s disabled." -msgstr "Motiv %s zakázán." +#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Notifications/Notifications.php:140 +msgid "Show all" +msgstr "Zobrazit vše" -#: src/Module/Admin/Themes/Details.php:73 src/Module/Admin/Themes/Index.php:51 -#, php-format -msgid "Theme %s successfully enabled." -msgstr "Motiv %s úspěšně povolen." +#: src/Module/Admin/Logs/View.php:89 +msgid "Date" +msgstr "" -#: src/Module/Admin/Themes/Details.php:75 src/Module/Admin/Themes/Index.php:53 -#, php-format -msgid "Theme %s failed to install." -msgstr "Instalace motivu %s selhala." +#: src/Module/Admin/Logs/View.php:90 +msgid "Level" +msgstr "" -#: src/Module/Admin/Themes/Details.php:97 -msgid "Screenshot" -msgstr "Snímek obrazovky" +#: src/Module/Admin/Logs/View.php:91 +msgid "Context" +msgstr "" -#: src/Module/Admin/Themes/Details.php:105 -#: src/Module/Admin/Themes/Index.php:96 src/Module/BaseAdminModule.php:83 -msgid "Themes" -msgstr "Motivy" +#: src/Module/Admin/Logs/View.php:93 +msgid "ALL" +msgstr "" -#: src/Module/Admin/Themes/Embed.php:67 -msgid "Unknown theme." -msgstr "Neznámý motiv." +#: src/Module/Admin/Logs/View.php:94 +msgid "View details" +msgstr "" -#: src/Module/Admin/Themes/Index.php:98 -msgid "Reload active themes" -msgstr "Znovu načíst aktivní motivy" +#: src/Module/Admin/Logs/View.php:95 +msgid "Click to view details" +msgstr "" -#: src/Module/Admin/Themes/Index.php:103 -#, php-format -msgid "No themes found on the system. They should be placed in %1$s" -msgstr "V systému nebyly nalezeny žádné motivy. Měly by být uloženy v %1$s" +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Detaily události" -#: src/Module/Admin/Themes/Index.php:104 -msgid "[Experimental]" -msgstr "[Experimentální]" +#: src/Module/Admin/Logs/View.php:97 +msgid "Data" +msgstr "" -#: src/Module/Admin/Themes/Index.php:105 -msgid "[Unsupported]" -msgstr "[Nepodporováno]" +#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Debug/ActivityPubConversion.php:57 +msgid "Source" +msgstr "" -#: src/Module/Admin/Tos.php:30 -msgid "The Terms of Service settings have been updated." -msgstr "Nastavení Podmínek používání byla aktualizována." +#: src/Module/Admin/Logs/View.php:99 +msgid "File" +msgstr "" -#: src/Module/Admin/Tos.php:44 -msgid "Display Terms of Service" -msgstr "Zobrazit Podmínky používání" +#: src/Module/Admin/Logs/View.php:100 +msgid "Line" +msgstr "" -#: src/Module/Admin/Tos.php:44 -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 "Povolí stránku Podmínky používání. Pokud je toto povoleno, bude na formulář pro registrací a stránku s obecnými informacemi přidán odkaz k podmínkám." +#: src/Module/Admin/Logs/View.php:101 +msgid "Function" +msgstr "" -#: src/Module/Admin/Tos.php:45 -msgid "Display Privacy Statement" -msgstr "Zobrazit Prohlášení o soukromí" +#: src/Module/Admin/Logs/View.php:102 +msgid "UID" +msgstr "" -#: src/Module/Admin/Tos.php:45 -#, php-format -msgid "" -"Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." -msgstr "Ukázat některé informace ohledně potřebných informací k provozování serveru podle například Obecného nařízení o ochraně osobních údajů EU (GDPR)" +#: src/Module/Admin/Logs/View.php:103 +msgid "Process ID" +msgstr "" -#: src/Module/Admin/Tos.php:46 -msgid "Privacy Statement Preview" -msgstr "Náhled Prohlášení o soukromí" +#: src/Module/Admin/Logs/View.php:104 +msgid "Close" +msgstr "" -#: src/Module/Admin/Tos.php:48 -msgid "The Terms of Service" -msgstr "Podmínky používání" - -#: src/Module/Admin/Tos.php:48 -msgid "" -"Enter the Terms of Service for your node here. You can use BBCode. Headers " -"of sections should be [h2] and below." -msgstr "Zde zadejte podmínky používání vašeho serveru. Můžete používat BBCode. Záhlaví sekcí by měly být označeny [h2] a níže." - -#: src/Module/Admin/Users.php:48 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "\n\t\t\tVážený/á %1$s,\n\t\t\t\tadministrátor %2$s pro Vás vytvořil uživatelský účet." - -#: src/Module/Admin/Users.php:51 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$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 %1$s/removeme\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "\n\t\t\tZde jsou vaše přihlašovací detaily:\n\n\t\t\tAdresa stránky:\t\t%1$s\n\t\t\tPřihlašovací jméno:\t%2$s\n\t\t\tHeslo:\t\t\t%3$s\n\n\t\t\tSvé heslo si po přihlášení můžete změnit na stránce „Nastavení“ vašeho\n\t\t\túčtu.\n\n\t\t\tProsím, prohlédněte si na chvilku ostatní nastavení účtu na této stránce.\n\n\t\t\tMožná byste si také přál/a přidat pár základních informací na svůj výchozí\n\t\t\tprofil (na stránce „Profily“) aby vás další lidé mohli snadno najít.\n\t\t\tDoporučujeme nastavit si Vaše celé jméno, přidat profilovou fotku,\n\t\t\tpřidat pár „klíčových slov“ k profilu (velmi užitečné při získávání nových\n\t\t\tpřátel) - a možná v jaké zemi žijete; pokud nechcete být konkrétnější.\n\n\t\t\tZcela respektujeme vaše právo na soukromí a žádnou z těchto položek\n\t\t\tnení potřeba vyplňovat. Pokud jste zde nový/á a nikoho zde neznáte, mohou vám\n\t\t\tpomoci si získat nové a zajímavé přátele.\n\t\t\tPokud byste si někdy přál/a smazat účet, můžete tak učinit na stránce\n\t\t\t%1$s/removeme.\n\n\t\t\tDěkujeme vám a vítáme vás na %4$s." - -#: src/Module/Admin/Users.php:96 -#, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "%s uživatel blokován" -msgstr[1] "%s uživatelé blokování" -msgstr[2] "%s uživatele blokováno" -msgstr[3] "%s uživatelů blokováno" - -#: src/Module/Admin/Users.php:102 -#, php-format -msgid "%s user unblocked" -msgid_plural "%s users unblocked" -msgstr[0] "%s uživatel odblokován" -msgstr[1] "%s uživatelé odblokováni" -msgstr[2] "%s uživatele odblokováno" -msgstr[3] "%s uživatelů odblokováno" - -#: src/Module/Admin/Users.php:110 src/Module/Admin/Users.php:160 -msgid "You can't remove yourself" -msgstr "Nemůžete odstranit sebe sama" - -#: src/Module/Admin/Users.php:114 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s uživatel smazán" -msgstr[1] "%s uživatelů smazáno" -msgstr[2] "%s uživatele smazáno" -msgstr[3] "%s uživatelů smazáno" - -#: src/Module/Admin/Users.php:158 -#, php-format -msgid "User \"%s\" deleted" -msgstr "Uživatel „%s“ smazán" - -#: src/Module/Admin/Users.php:167 -#, php-format -msgid "User \"%s\" blocked" -msgstr "Uživatel „%s“ zablokován" - -#: src/Module/Admin/Users.php:173 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "Uživatel „%s“ odblokován" - -#: src/Module/Admin/Users.php:226 -msgid "Private Forum" -msgstr "Soukromé fórum" - -#: src/Module/Admin/Users.php:233 -msgid "Relay" -msgstr "Přeposílací server" - -#: src/Module/Admin/Users.php:272 src/Module/Admin/Users.php:297 -msgid "Register date" -msgstr "Datum registrace" - -#: src/Module/Admin/Users.php:272 src/Module/Admin/Users.php:297 -msgid "Last login" -msgstr "Datum posledního přihlášení" - -#: src/Module/Admin/Users.php:272 src/Module/Admin/Users.php:297 -msgid "Last item" -msgstr "Poslední položka" - -#: src/Module/Admin/Users.php:272 -msgid "Type" -msgstr "Typ" - -#: src/Module/Admin/Users.php:278 src/Module/Admin/Users.php:295 -#: src/Module/Admin/Site.php:471 src/Module/BaseAdminModule.php:81 -msgid "Users" -msgstr "Uživatelé" - -#: src/Module/Admin/Users.php:279 -msgid "Add User" -msgstr "Přidat uživatele" - -#: src/Module/Admin/Users.php:281 -msgid "User registrations waiting for confirm" -msgstr "Registrace uživatelů čekající na potvrzení" - -#: src/Module/Admin/Users.php:282 -msgid "User waiting for permanent deletion" -msgstr "Uživatel čekající na trvalé smazání" - -#: src/Module/Admin/Users.php:283 -msgid "Request date" -msgstr "Datum požadavku" - -#: src/Module/Admin/Users.php:284 -msgid "No registrations." -msgstr "Žádné registrace." - -#: src/Module/Admin/Users.php:285 -msgid "Note from the user" -msgstr "Poznámka od uživatele" - -#: src/Module/Admin/Users.php:287 -msgid "Deny" -msgstr "Odmítnout" - -#: src/Module/Admin/Users.php:290 -msgid "User blocked" -msgstr "Uživatel zablokován" - -#: src/Module/Admin/Users.php:292 -msgid "Site admin" -msgstr "Administrátor webu" - -#: src/Module/Admin/Users.php:293 -msgid "Account expired" -msgstr "Účtu vypršela platnost" - -#: src/Module/Admin/Users.php:296 -msgid "New User" -msgstr "Nový uživatel" - -#: src/Module/Admin/Users.php:297 -msgid "Permanent deletion" -msgstr "Trvalé smazání" - -#: src/Module/Admin/Users.php:302 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\nOpravdu chcete pokračovat?" - -#: src/Module/Admin/Users.php:303 -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 "Uživatel {0} bude smazán!\\n\\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu chcete pokračovat?" - -#: src/Module/Admin/Users.php:313 -msgid "Name of the new user." -msgstr "Jméno nového uživatele." - -#: src/Module/Admin/Users.php:314 -msgid "Nickname" -msgstr "Přezdívka" - -#: src/Module/Admin/Users.php:314 -msgid "Nickname of the new user." -msgstr "Přezdívka nového uživatele." - -#: src/Module/Admin/Users.php:315 -msgid "Email address of the new user." -msgstr "Emailová adresa nového uživatele." - -#: src/Module/Admin/Queue.php:34 +#: src/Module/Admin/Queue.php:50 msgid "Inspect Deferred Worker Queue" msgstr "Prozkoumat frontu odložených pracovníků" -#: src/Module/Admin/Queue.php:35 +#: 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 "Na této stránce jsou vypsány odložené úlohy pracovníků. To jsou úlohy, které nemohly být napoprvé provedeny." -#: src/Module/Admin/Queue.php:38 +#: src/Module/Admin/Queue.php:54 msgid "Inspect Worker Queue" msgstr "Prozkoumat frontu pro pracovníka" -#: src/Module/Admin/Queue.php:39 +#: 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 "Na této stránce jsou vypsány aktuálně čekající úlohy pro pracovníka . Tyto úlohy vykonává úloha cron pracovníka, kterou jste nastavil/a při instalaci." -#: src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Queue.php:75 msgid "ID" msgstr "Identifikátor" -#: src/Module/Admin/Queue.php:60 +#: src/Module/Admin/Queue.php:76 +msgid "Command" +msgstr "" + +#: src/Module/Admin/Queue.php:77 msgid "Job Parameters" msgstr "Parametry úlohy" -#: src/Module/Admin/Queue.php:61 +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 msgid "Created" msgstr "Vytvořeno" -#: src/Module/Admin/Queue.php:62 +#: src/Module/Admin/Queue.php:79 msgid "Priority" msgstr "Priorita" -#: src/Module/Admin/Site.php:49 -msgid "Can not parse base url. Must have at least ://" -msgstr "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň ://" +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" +msgstr "" -#: src/Module/Admin/Site.php:234 -msgid "Invalid storage backend setting value." -msgstr "Neplatná hodnota nastavení backendu úložiště." +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:178 +msgid "No special theme for mobile devices" +msgstr "Žádný speciální motiv pro mobilní zařízení" -#: src/Module/Admin/Site.php:410 -msgid "Site settings updated." -msgstr "Nastavení webu aktualizováno." +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Experimentální)" -#: src/Module/Admin/Site.php:462 -msgid "No community page for local users" -msgstr "Žádná komunitní stránka pro místní uživatele" - -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:342 msgid "No community page" msgstr "Žádná komunitní stránka" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:343 +msgid "No community page for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:344 msgid "Public postings from users of this site" msgstr "Veřejné příspěvky od místních uživatelů" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:345 msgid "Public postings from the federated network" msgstr "Veřejné příspěvky z federované sítě" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:346 msgid "Public postings from local users and the federated network" msgstr "Veřejné příspěvky od místních uživatelů a z federované sítě" -#: src/Module/Admin/Site.php:470 src/Module/Admin/Site.php:665 -#: src/Module/Admin/Site.php:675 src/Module/Settings/TwoFactor/Index.php:97 -#: src/Module/Contact.php:525 -msgid "Disabled" -msgstr "Zakázáno" - -#: src/Module/Admin/Site.php:472 -msgid "Users, Global Contacts" -msgstr "Uživatelé, globální kontakty" - -#: src/Module/Admin/Site.php:473 -msgid "Users, Global Contacts/fallback" -msgstr "Uživatelé, globální kontakty/fallback" - -#: src/Module/Admin/Site.php:477 -msgid "One month" -msgstr "Jeden měsíc" - -#: src/Module/Admin/Site.php:478 -msgid "Three months" -msgstr "Tři měsíce" - -#: src/Module/Admin/Site.php:479 -msgid "Half a year" -msgstr "Půl roku" - -#: src/Module/Admin/Site.php:480 -msgid "One year" -msgstr "Jeden rok" - -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:352 msgid "Multi user instance" msgstr "Víceuživatelská instance" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:375 msgid "Closed" msgstr "Uzavřeno" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:376 msgid "Requires approval" msgstr "Vyžaduje schválení" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:377 msgid "Open" msgstr "Otevřeno" -#: src/Module/Admin/Site.php:514 src/Module/Install.php:182 -msgid "No SSL policy, links will track page SSL state" -msgstr "Žádná SSL politika, odkazy budou následovat SSL stav stránky" - -#: src/Module/Admin/Site.php:515 src/Module/Install.php:183 -msgid "Force all links to use SSL" -msgstr "Vyžadovat u všech odkazů použití SSL" - -#: src/Module/Admin/Site.php:516 src/Module/Install.php:184 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certifikát podepsaný sám sebou, použít SSL pouze pro místní odkazy (nedoporučeno)" - -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:381 msgid "Don't check" msgstr "Nekontrolovat" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:382 msgid "check the stable version" msgstr "kontrolovat stabilní verzi" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:383 msgid "check the development version" msgstr "kontrolovat vývojovou verzi" -#: src/Module/Admin/Site.php:542 -msgid "Database (legacy)" -msgstr "Databáze (legacy)" +#: src/Module/Admin/Site.php:387 +msgid "none" +msgstr "" -#: src/Module/Admin/Site.php:567 src/Module/BaseAdminModule.php:80 +#: src/Module/Admin/Site.php:388 +msgid "Local contacts" +msgstr "" + +#: src/Module/Admin/Site.php:389 +msgid "Interactors" +msgstr "" + +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Web" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:400 +msgid "General Information" +msgstr "" + +#: src/Module/Admin/Site.php:402 msgid "Republish users to directory" msgstr "Znovu publikovat uživatele do adresáře" -#: src/Module/Admin/Site.php:570 src/Module/Register.php:121 +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 msgid "Registration" msgstr "Registrace" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:404 msgid "File upload" msgstr "Nahrání souborů" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:405 msgid "Policies" msgstr "Politika" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "Pokročilé" + +#: src/Module/Admin/Site.php:407 msgid "Auto Discovered Contact Directory" msgstr "Adresář automaticky objevených kontaktů" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:408 msgid "Performance" msgstr "Výkon" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:409 msgid "Worker" msgstr "Pracovník (worker)" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:410 msgid "Message Relay" msgstr "Přeposílání zpráv" -#: src/Module/Admin/Site.php:578 -msgid "Relocate Instance" -msgstr "Přemístit instanci" +#: src/Module/Admin/Site.php:411 +msgid "" +"Use the command \"console relay\" in the command line to add or remove " +"relays." +msgstr "" -#: src/Module/Admin/Site.php:579 -msgid "Warning! Advanced function. Could make this server unreachable." -msgstr "Varování! Pokročilá funkce. Tímto můžete znepřístupnit server." +#: src/Module/Admin/Site.php:412 +msgid "The system is not subscribed to any relays at the moment." +msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:413 +msgid "The system is currently subscribed to the following relays:" +msgstr "" + +#: src/Module/Admin/Site.php:415 +msgid "Relocate Node" +msgstr "" + +#: src/Module/Admin/Site.php:416 +msgid "" +"Relocating your node enables you to change the DNS domain of this node and " +"keep all the existing users and posts. This process takes a while and can " +"only be started from the relocate console command like this:" +msgstr "" + +#: src/Module/Admin/Site.php:417 +msgid "(Friendica directory)# bin/console relocate https://newdomain.com" +msgstr "" + +#: src/Module/Admin/Site.php:420 msgid "Site name" msgstr "Název webu" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:421 msgid "Sender Email" msgstr "E-mail odesílatele" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:421 msgid "" "The email address your server shall use to send notification emails from." msgstr "E-mailová adresa, kterou bude Váš server používat pro posílání e-mailů s oznámeními." -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:422 +msgid "Name of the system actor" +msgstr "" + +#: src/Module/Admin/Site.php:422 +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:423 msgid "Banner/Logo" msgstr "Banner/logo" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:424 +msgid "Email Banner/Logo" +msgstr "" + +#: src/Module/Admin/Site.php:425 msgid "Shortcut icon" msgstr "Favikona" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:425 msgid "Link to an icon that will be used for browsers." msgstr "Odkaz k ikoně, která bude použita pro prohlížeče." -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:426 msgid "Touch icon" msgstr "Dotyková ikona" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:426 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Odkaz k ikoně, která bude použita pro tablety a mobilní zařízení." -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:427 msgid "Additional Info" msgstr "Dodatečné informace" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:427 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "Pro veřejné servery: zde můžete přidat dodatečné informace, které budou vypsané na stránce %s/servers." -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:428 msgid "System language" msgstr "Systémový jazyk" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:429 msgid "System theme" msgstr "Systémový motiv" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:429 +#, php-format msgid "" -"Default system theme - may be over-ridden by user profiles - Change default theme settings" -msgstr "Výchozí systémový motiv - může být změněn v uživatelských profilech - Změnit výchozí nastavení motivu" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:430 msgid "Mobile system theme" msgstr "Mobilní systémový motiv" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:430 msgid "Theme for mobile devices" msgstr "Motiv pro mobilní zařízení" -#: src/Module/Admin/Site.php:592 src/Module/Install.php:192 -msgid "SSL link policy" -msgstr "Politika SSL odkazů" - -#: src/Module/Admin/Site.php:592 src/Module/Install.php:194 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Určuje, zda-li budou generované odkazy používat SSL" - -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:431 msgid "Force SSL" msgstr "Vynutit SSL" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:431 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Vynutit SSL pro všechny ne-SSL žádosti - Upozornění: na některých systémech může dojít k nekonečnému zacyklení." -#: src/Module/Admin/Site.php:594 -msgid "Hide help entry from navigation menu" -msgstr "Skrýt nápovědu z navigačního menu" +#: src/Module/Admin/Site.php:432 +msgid "Show help entry from navigation menu" +msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:432 msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Skryje z navigačního menu položku pro stránky nápovědy. Nápovědu můžete stále zobrazit přímo zadáním /help." +"Displays the menu entry for the Help pages from the navigation menu. It is " +"always accessible by calling /help directly." +msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:433 msgid "Single user instance" msgstr "Jednouživatelská instance" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:433 msgid "Make this instance multi-user or single-user for the named user" msgstr "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele" -#: src/Module/Admin/Site.php:597 -msgid "File storage backend" -msgstr "Backend souborového úložiště" - -#: src/Module/Admin/Site.php:597 -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 "Backend použitý pro ukládání nahraných dat. Pokud změníte backend úložiště, můžete manuálně přesunout existující soubory. Pokud tak neučiníte, budou soubory nahrané před změnou stále dostupné ve starém backendu. Pro více informací o možnostech a proceduře pro přesun si prosím přečtěte dokumentaci nastavení." - -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:435 msgid "Maximum image size" msgstr "Maximální velikost obrázků" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:435 +#, php-format msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximální velikost nahraných obrázků v bajtech. Výchozí hodnota je 0, což znamená bez omezení." +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:439 msgid "Maximum image length" msgstr "Maximální velikost obrázků" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:439 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Maximální délka delší stránky nahrávaných obrázků v pixelech. Výchozí hodnota je -1, což znamená bez omezení." -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:440 msgid "JPEG image quality" msgstr "Kvalita obrázků JPEG" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:440 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Nahrávané obrázky JPEG budou uloženy se zadanou kvalitou v rozmezí [0-100]. Výchozí hodnota je 100, což znamená plnou kvalitu." -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:442 msgid "Register policy" msgstr "Politika registrace" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "" + +#: src/Module/Admin/Site.php:444 msgid "Maximum Daily Registrations" msgstr "Maximální počet denních registrací" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:444 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 "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den. Pokud je registrace zakázána, toto nastavení nemá žádný efekt." -#: src/Module/Admin/Site.php:605 +#: src/Module/Admin/Site.php:445 msgid "Register text" msgstr "Text při registraci" -#: src/Module/Admin/Site.php:605 +#: src/Module/Admin/Site.php:445 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Bude zobrazen viditelně na stránce registrace. Zde můžete používat BBCode." -#: src/Module/Admin/Site.php:606 +#: src/Module/Admin/Site.php:446 msgid "Forbidden Nicknames" msgstr "Zakázané přezdívky" -#: src/Module/Admin/Site.php:606 +#: src/Module/Admin/Site.php:446 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "Seznam přezdívek, které nelze registrovat, oddělených čárkami. Přednastaven je seznam častých přezdívek dle RFC 2142." -#: src/Module/Admin/Site.php:607 +#: src/Module/Admin/Site.php:447 msgid "Accounts abandoned after x days" msgstr "Účty jsou opuštěny po x dnech" -#: src/Module/Admin/Site.php:607 +#: src/Module/Admin/Site.php:447 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Nebude se plýtvat systémovými zdroji kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit." -#: src/Module/Admin/Site.php:608 +#: src/Module/Admin/Site.php:448 msgid "Allowed friend domains" msgstr "Povolené domény přátel" -#: src/Module/Admin/Site.php:608 +#: src/Module/Admin/Site.php:448 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Seznam domén, kterým je povoleno navazovat přátelství s tímto webem, oddělených čárkami. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolné domény." -#: src/Module/Admin/Site.php:609 +#: src/Module/Admin/Site.php:449 msgid "Allowed email domains" msgstr "Povolené e-mailové domény" -#: src/Module/Admin/Site.php:609 +#: src/Module/Admin/Site.php:449 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 "Seznam domén e-mailových adres, kterým je povoleno provádět registraci na tomto webu, oddělených čárkami. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolné domény." -#: src/Module/Admin/Site.php:610 +#: src/Module/Admin/Site.php:450 msgid "No OEmbed rich content" msgstr "Žádný obohacený obsah oEmbed" -#: src/Module/Admin/Site.php:610 +#: src/Module/Admin/Site.php:450 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "Neukazovat obohacený obsah (např. vložené PDF dokumenty), kromě toho z domén vypsaných níže." -#: src/Module/Admin/Site.php:611 -msgid "Allowed OEmbed domains" -msgstr "Povolené domény pro oEmbed" +#: src/Module/Admin/Site.php:451 +msgid "Trusted third-party domains" +msgstr "" -#: src/Module/Admin/Site.php:611 +#: src/Module/Admin/Site.php:451 msgid "" -"Comma separated list of domains which oembed content is allowed to be " -"displayed. Wildcards are accepted." -msgstr "Seznam domén, u nichž je povoleno zobrazit obsah oEmbed, oddělených čárkami. Zástupné znaky jsou povoleny." +"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:612 +#: src/Module/Admin/Site.php:452 msgid "Block public" msgstr "Blokovat veřejný přístup" -#: src/Module/Admin/Site.php:612 +#: src/Module/Admin/Site.php:452 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Označením zablokujete veřejný přístup ke všem jinak veřejně přístupným osobním stránkám nepřihlášeným uživatelům." -#: src/Module/Admin/Site.php:613 +#: src/Module/Admin/Site.php:453 msgid "Force publish" msgstr "Vynutit publikaci" -#: src/Module/Admin/Site.php:613 +#: src/Module/Admin/Site.php:453 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Označením budou všechny profily na tomto serveru uvedeny v adresáři stránky." -#: src/Module/Admin/Site.php:613 +#: src/Module/Admin/Site.php:453 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Povolení této funkce může porušit zákony o ochraně soukromí, jako je Obecné nařízení o ochraně osobních údajů (GDPR)" -#: src/Module/Admin/Site.php:614 +#: src/Module/Admin/Site.php:454 msgid "Global directory URL" msgstr "Adresa URL globálního adresáře" -#: src/Module/Admin/Site.php:614 +#: src/Module/Admin/Site.php:454 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "Adresa URL globálního adresáře. Pokud toto není nastaveno, globální adresář bude aplikaci naprosto nedostupný." -#: src/Module/Admin/Site.php:615 +#: src/Module/Admin/Site.php:455 msgid "Private posts by default for new users" msgstr "Nastavit pro nové uživatele příspěvky jako soukromé" -#: src/Module/Admin/Site.php:615 +#: src/Module/Admin/Site.php:455 msgid "" "Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Nastavit výchozí práva pro příspěvky od všech nových členů na výchozí soukromou skupinu místo veřejné." +"circle rather than public." +msgstr "" -#: src/Module/Admin/Site.php:616 +#: src/Module/Admin/Site.php:456 msgid "Don't include post content in email notifications" msgstr "Nezahrnovat v e-mailových oznámeních obsah příspěvků" -#: src/Module/Admin/Site.php:616 +#: src/Module/Admin/Site.php:456 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 " V e-mailových oznámeních, které jsou odesílány z tohoto webu, nebudou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. " -#: src/Module/Admin/Site.php:617 +#: src/Module/Admin/Site.php:457 msgid "Disallow public access to addons listed in the apps menu." msgstr "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace." -#: src/Module/Admin/Site.php:617 +#: src/Module/Admin/Site.php:457 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy." -#: src/Module/Admin/Site.php:618 +#: src/Module/Admin/Site.php:458 msgid "Don't embed private images in posts" msgstr "Nepovolit přidávání soukromých obrázků do příspěvků" -#: src/Module/Admin/Site.php:618 +#: src/Module/Admin/Site.php:458 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 " @@ -8037,11 +4804,11 @@ msgid "" "while." msgstr "Nenahrazovat místní soukromé fotky v příspěvcích vloženou kopií obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotky, budou muset autentikovat a načíst každý obrázek, což může zabrat nějaký čas." -#: src/Module/Admin/Site.php:619 +#: src/Module/Admin/Site.php:459 msgid "Explicit Content" msgstr "Explicitní obsah" -#: src/Module/Admin/Site.php:619 +#: src/Module/Admin/Site.php:459 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 " @@ -8050,235 +4817,267 @@ msgid "" "will be shown at the user registration page." msgstr "Touto funkcí oznámíte, že je Váš server používán hlavně pro explicitní obsah, který nemusí být vhodný pro mladistvé. Tato informace bude publikována na stránce informací o serveru a může být využita např. globálním adresářem pro odfiltrování Vašeho serveru ze seznamu serverů pro spojení. Poznámka o tom bude navíc zobrazena na stránce registrace." -#: src/Module/Admin/Site.php:620 +#: src/Module/Admin/Site.php:460 +msgid "Proxify external content" +msgstr "" + +#: src/Module/Admin/Site.php:460 +msgid "" +"Route external content via the proxy functionality. This is used for example" +" for some OEmbed accesses and in some other rare cases." +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "Cache contact avatars" +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "" +"Locally store the avatar pictures of the contacts. This uses a lot of " +"storage space but it increases the performance." +msgstr "" + +#: src/Module/Admin/Site.php:462 msgid "Allow Users to set remote_self" msgstr "Umožnit uživatelům nastavit remote_self" -#: src/Module/Admin/Site.php:620 +#: src/Module/Admin/Site.php:462 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 "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako „remote_self“ v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu." -#: src/Module/Admin/Site.php:621 -msgid "Block multiple registrations" -msgstr "Blokovat více registrací" +#: src/Module/Admin/Site.php:463 +msgid "Enable multiple registrations" +msgstr "" -#: src/Module/Admin/Site.php:621 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky." +#: src/Module/Admin/Site.php:463 +msgid "Enable users to register additional accounts for use as pages." +msgstr "" -#: src/Module/Admin/Site.php:622 -msgid "Disable OpenID" -msgstr "Zakázat OpenID" +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID" +msgstr "" -#: src/Module/Admin/Site.php:622 -msgid "Disable OpenID support for registration and logins." -msgstr "Zakázat podporu OpenID pro registrace a přihlášení." +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID support for registration and logins." +msgstr "" -#: src/Module/Admin/Site.php:623 -msgid "No Fullname check" -msgstr "Bez kontroly celého jména" +#: src/Module/Admin/Site.php:465 +msgid "Enable Fullname check" +msgstr "" -#: src/Module/Admin/Site.php:623 +#: src/Module/Admin/Site.php:465 msgid "" -"Allow users to register without a space between the first name and the last " -"name in their full name." -msgstr "Dovolit uživatelům se registrovat bez mezery mezi křestním jménem a příjmením ve svém celém jméně." +"Enable check to only allow users to register with a space between the first " +"name and the last name in their full name." +msgstr "" -#: src/Module/Admin/Site.php:624 +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "" + +#: src/Module/Admin/Site.php:467 msgid "Community pages for visitors" msgstr "Komunitní stránky pro návštěvníky" -#: src/Module/Admin/Site.php:624 +#: src/Module/Admin/Site.php:467 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Které komunitní stránky by měly být viditelné pro návštěvníky. Místní uživatelé vždy vidí obě stránky." -#: src/Module/Admin/Site.php:625 +#: src/Module/Admin/Site.php:468 msgid "Posts per user on community page" msgstr "Počet příspěvků na komunitní stránce" -#: src/Module/Admin/Site.php:625 +#: src/Module/Admin/Site.php:468 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "\"Global Community\")" msgstr "Maximální počet příspěvků na uživatele na komunitní stránce. (neplatí pro „Globální komunitu“)" -#: src/Module/Admin/Site.php:626 -msgid "Disable OStatus support" -msgstr "Zakázat podporu pro OStatus" +#: src/Module/Admin/Site.php:470 +msgid "Enable Mail support" +msgstr "" -#: src/Module/Admin/Site.php:626 +#: src/Module/Admin/Site.php:470 msgid "" -"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Zakázat zabudouvanou kompatibilitu s OStatus (StatusNet, GNU social apod.). Veškerá komunikace pomocí OStatus je veřejná, proto budou občas zobrazena varování o soukromí." +"Enable built-in mail support to poll IMAP folders and to reply via mail." +msgstr "" -#: src/Module/Admin/Site.php:627 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "Podpora pro OStatus může být zapnuta pouze, je-li povolen threading." +#: src/Module/Admin/Site.php:471 +msgid "" +"Mail support can't be enabled because the PHP IMAP module is not installed." +msgstr "" -#: src/Module/Admin/Site.php:629 +#: src/Module/Admin/Site.php:472 +msgid "Enable OStatus support" +msgstr "" + +#: src/Module/Admin/Site.php:472 +msgid "" +"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public." +msgstr "" + +#: src/Module/Admin/Site.php:474 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Podpora pro Diasporu nemůže být zapnuta, protože Friendica byla nainstalována do podadresáře." -#: src/Module/Admin/Site.php:630 +#: src/Module/Admin/Site.php:475 msgid "Enable Diaspora support" msgstr "Zapnout podporu pro Diaspora" -#: src/Module/Admin/Site.php:630 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora." - -#: src/Module/Admin/Site.php:631 -msgid "Only allow Friendica contacts" -msgstr "Povolit pouze kontakty z Friendica" - -#: src/Module/Admin/Site.php:631 +#: src/Module/Admin/Site.php:475 msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Všechny kontakty musí používat protokol Friendica. Všchny ostatní zabudované komunikační protokoly budou zablokované." +"Enable built-in Diaspora network compatibility for communicating with " +"diaspora servers." +msgstr "" -#: src/Module/Admin/Site.php:632 +#: src/Module/Admin/Site.php:476 msgid "Verify SSL" msgstr "Ověřit SSL" -#: src/Module/Admin/Site.php:632 +#: src/Module/Admin/Site.php:476 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 "Pokud si přejete, můžete vynutit striktní ověřování certifikátů. To znamená že se nebudete moci připojit k žádnému serveru s vlastním SSL certifikátem." -#: src/Module/Admin/Site.php:633 +#: src/Module/Admin/Site.php:477 msgid "Proxy user" msgstr "Proxy uživatel" -#: src/Module/Admin/Site.php:634 +#: src/Module/Admin/Site.php:477 +msgid "User name for the proxy server." +msgstr "" + +#: src/Module/Admin/Site.php:478 msgid "Proxy URL" msgstr "Proxy URL adresa" -#: src/Module/Admin/Site.php:635 +#: src/Module/Admin/Site.php:478 +msgid "" +"If you want to use a proxy server that Friendica should use to connect to " +"the network, put the URL of the proxy here." +msgstr "" + +#: src/Module/Admin/Site.php:479 msgid "Network timeout" msgstr "Čas vypršení síťového spojení (timeout)" -#: src/Module/Admin/Site.php:635 +#: src/Module/Admin/Site.php:479 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno)." -#: src/Module/Admin/Site.php:636 +#: src/Module/Admin/Site.php:480 msgid "Maximum Load Average" msgstr "Maximální průměrné zatížení" -#: src/Module/Admin/Site.php:636 +#: src/Module/Admin/Site.php:480 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "Maximální systémová zátěž, než budou procesy pro doručení a dotazování odloženy - výchozí hodnota %d." -#: src/Module/Admin/Site.php:637 -msgid "Maximum Load Average (Frontend)" -msgstr "Maximální průměrné zatížení (Frontend)" - -#: src/Module/Admin/Site.php:637 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Maximální zatížení systému předtím, než frontend ukončí službu - výchozí hodnota 50" - -#: src/Module/Admin/Site.php:638 +#: src/Module/Admin/Site.php:481 msgid "Minimal Memory" msgstr "Minimální paměť" -#: src/Module/Admin/Site.php:638 +#: src/Module/Admin/Site.php:481 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "Minimální volná paměť v MB pro pracovníka. Potřebuje přístup do /proc/meminfo - výchozí hodnota 0 (deaktivováno)" -#: src/Module/Admin/Site.php:639 -msgid "Maximum table size for optimization" -msgstr "Maximální velikost tabulky pro optimalizaci" +#: src/Module/Admin/Site.php:482 +msgid "Periodically optimize tables" +msgstr "" -#: src/Module/Admin/Site.php:639 +#: src/Module/Admin/Site.php:482 +msgid "Periodically optimize tables like the cache and the workerqueue" +msgstr "" + +#: src/Module/Admin/Site.php:484 +msgid "Discover followers/followings from contacts" +msgstr "" + +#: src/Module/Admin/Site.php:484 msgid "" -"Maximum table size (in MB) for the automatic optimization. Enter -1 to " -"disable it." -msgstr "Maximální velikost tabulky (v MB) pro automatickou optimalizaci. Zadáním -1 ji vypnete." +"If enabled, contacts are checked for their followers and following contacts." +msgstr "" -#: src/Module/Admin/Site.php:640 -msgid "Minimum level of fragmentation" -msgstr "Minimální úroveň fragmentace" +#: src/Module/Admin/Site.php:485 +msgid "None - deactivated" +msgstr "" -#: src/Module/Admin/Site.php:640 +#: src/Module/Admin/Site.php:486 msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "Minimální úroveň fragmentace pro spuštění automatické optimalizace - výchozí hodnota je 30%." +"Local contacts - contacts of our local contacts are discovered for their " +"followers/followings." +msgstr "" -#: src/Module/Admin/Site.php:642 -msgid "Periodical check of global contacts" -msgstr "Pravidelně ověřování globálních kontaktů" - -#: src/Module/Admin/Site.php:642 +#: src/Module/Admin/Site.php:487 msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "Pokud je toto povoleno, budou globální kontakty pravidelně kontrolovány pro zastaralá data a životnost kontaktů a serverů." +"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:643 +#: src/Module/Admin/Site.php:489 +msgid "Synchronize the contacts with the directory server" +msgstr "" + +#: src/Module/Admin/Site.php:489 +msgid "" +"if enabled, the system will check periodically for new contacts on the " +"defined directory server." +msgstr "" + +#: src/Module/Admin/Site.php:491 msgid "Days between requery" msgstr "Dny mezi dotazy" -#: src/Module/Admin/Site.php:643 +#: src/Module/Admin/Site.php:491 msgid "Number of days after which a server is requeried for his contacts." msgstr "Počet dnů, po kterých je server znovu dotázán na své kontakty" -#: src/Module/Admin/Site.php:644 +#: src/Module/Admin/Site.php:492 msgid "Discover contacts from other servers" msgstr "Objevit kontakty z ostatních serverů" -#: src/Module/Admin/Site.php:644 +#: src/Module/Admin/Site.php:492 msgid "" -"Periodically query other servers for contacts. You can choose between " -"\"Users\": the users on the remote system, \"Global Contacts\": active " -"contacts that are known on the system. The fallback is meant for Redmatrix " -"servers and older friendica servers, where global contacts weren't " -"available. The fallback increases the server load, so the recommended " -"setting is \"Users, Global Contacts\"." -msgstr "Periodicky dotazovat ostatní servery pro kontakty. Můžete si vybrat mezi možnostmi: „Uživatelé“: uživatelé na vzdáleném systému, a „Globální kontakty“: aktivní kontakty, které jsou známy na systému. Funkce fallback je určena pro servery Redmatrix a starší servery Friendica, kde globální kontakty nejsou dostupné. Fallback zvyšuje serverovou zátěž, doporučené nastavení je proto „Uživatelé, globální kontakty“. " +"Periodically query other servers for contacts. The system queries Friendica," +" Mastodon and Hubzilla servers." +msgstr "" -#: src/Module/Admin/Site.php:645 -msgid "Timeframe for fetching global contacts" -msgstr "Časový rámec pro načítání globálních kontaktů" - -#: src/Module/Admin/Site.php:645 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "Pokud je aktivováno objevování, tato hodnota definuje časový rámec pro aktivitu globálních kontaktů, které jsou načteny z jiných serverů." - -#: src/Module/Admin/Site.php:646 +#: src/Module/Admin/Site.php:493 msgid "Search the local directory" msgstr "Hledat v místním adresáři" -#: src/Module/Admin/Site.php:646 +#: src/Module/Admin/Site.php:493 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 "Prohledat místní adresář místo globálního adresáře. Při místním prohledávání bude každé hledání provedeno v globálním adresáři na pozadí. To vylepšuje výsledky při zopakování hledání." -#: src/Module/Admin/Site.php:648 +#: src/Module/Admin/Site.php:495 msgid "Publish server information" msgstr "Zveřejnit informace o serveru" -#: src/Module/Admin/Site.php:648 +#: src/Module/Admin/Site.php:495 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 " @@ -8286,50 +5085,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "Pokud je tohle povoleno, budou zveřejněna obecná data o serveru a jeho používání. Data obsahují jméno a verzi serveru, počet uživatelů s veřejnými profily, počet příspěvků a aktivované protokoly a konektory. Pro více informací navštivte the-federation.info." -#: src/Module/Admin/Site.php:650 +#: src/Module/Admin/Site.php:497 msgid "Check upstream version" msgstr "Zkontrolovat upstreamovou verzi" -#: src/Module/Admin/Site.php:650 +#: src/Module/Admin/Site.php:497 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 "Umožní kontrolovat nové verze Friendica na GitHubu. Pokud existuje nová verze, budete informován/a na přehledu administračního panelu." -#: src/Module/Admin/Site.php:651 +#: src/Module/Admin/Site.php:498 msgid "Suppress Tags" msgstr "Potlačit štítky" -#: src/Module/Admin/Site.php:651 +#: src/Module/Admin/Site.php:498 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Potlačit zobrazení seznamu hastagů na konci příspěvků." -#: src/Module/Admin/Site.php:652 +#: src/Module/Admin/Site.php:499 msgid "Clean database" msgstr "Vyčistit databázi" -#: src/Module/Admin/Site.php:652 +#: src/Module/Admin/Site.php:499 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Odstranit staré vzdálené položky, osiřelé záznamy v databázi a starý obsah z některých dalších pomocných tabulek." -#: src/Module/Admin/Site.php:653 +#: src/Module/Admin/Site.php:500 msgid "Lifespan of remote items" msgstr "Životnost vzdálených položek" -#: src/Module/Admin/Site.php:653 +#: src/Module/Admin/Site.php:500 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 "Pokud je zapnuto čištění databáze, tato funkce definuje počet dnů, po kterých budou smazány vzdálené položky. Vlastní položky a označené či vyplněné položky jsou vždy ponechány. Hodnota 0 tuto funkci vypíná." -#: src/Module/Admin/Site.php:654 +#: src/Module/Admin/Site.php:501 msgid "Lifespan of unclaimed items" msgstr "Životnost nevyžádaných položek" -#: src/Module/Admin/Site.php:654 +#: src/Module/Admin/Site.php:501 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -8337,210 +5136,205 @@ msgid "" "items if set to 0." msgstr "Pokud je zapnuto čištění databáze, tato funkce definuje počet dnů, po kterých budou smazány nevyžádané vzdálené položky (většinou obsah z přeposílacího serveru). Výchozí hodnota je 90 dní. Pokud je zadaná hodnota 0, výchozí hodnotou bude obecná hodnota životnosti vzdálených položek." -#: src/Module/Admin/Site.php:655 +#: src/Module/Admin/Site.php:502 msgid "Lifespan of raw conversation data" msgstr "Životnost hrubých dat konverzací" -#: src/Module/Admin/Site.php:655 +#: src/Module/Admin/Site.php:502 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 "Data konverzací jsou použita pro ActivityPub a OStatus a pro účely ladění. Mělo by být bezpečné je odstranit po 14 dnech, výchozí hodnota je 90 dní." -#: src/Module/Admin/Site.php:656 -msgid "Path to item cache" -msgstr "Cesta k položkám v mezipaměti" - -#: src/Module/Admin/Site.php:656 -msgid "The item caches buffers generated bbcode and external images." -msgstr "V mezipaměti je uložen vygenerovaný BBCode a externí obrázky." - -#: src/Module/Admin/Site.php:657 -msgid "Cache duration in seconds" -msgstr "Doba platnosti vyrovnávací paměti v sekundách" - -#: src/Module/Admin/Site.php:657 -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 "Jak dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den). Pro vypnutí funkce vyrovnávací paměti nastavte hodnotu na -1." - -#: src/Module/Admin/Site.php:658 +#: src/Module/Admin/Site.php:503 msgid "Maximum numbers of comments per post" msgstr "Maximální počet komentářů k příspěvku" -#: src/Module/Admin/Site.php:658 +#: src/Module/Admin/Site.php:503 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Kolik komentářů by mělo být zobrazeno k každému příspěvku? Výchozí hodnotou je 100." -#: src/Module/Admin/Site.php:659 +#: src/Module/Admin/Site.php:504 +msgid "Maximum numbers of comments per post on the display page" +msgstr "" + +#: src/Module/Admin/Site.php:504 +msgid "" +"How many comments should be shown on the single view for each post? Default " +"value is 1000." +msgstr "" + +#: src/Module/Admin/Site.php:505 msgid "Temp path" msgstr "Cesta k dočasným souborům" -#: src/Module/Admin/Site.php:659 +#: src/Module/Admin/Site.php:505 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Pokud máte omezený systém, kde webový server nemá přístup k systémové složce temp, zde zadejte jinou cestu." -#: src/Module/Admin/Site.php:660 -msgid "Disable picture proxy" -msgstr "Vypnutí obrázkové proxy" - -#: src/Module/Admin/Site.php:660 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwidth." -msgstr "Obrázková proxy zvyšuje výkon a soukromí. Neměla by však být používána na systémech s velmi malou rychlostí připojení." - -#: src/Module/Admin/Site.php:661 +#: src/Module/Admin/Site.php:506 msgid "Only search in tags" msgstr "Hledat pouze ve štítcích" -#: src/Module/Admin/Site.php:661 +#: src/Module/Admin/Site.php:506 msgid "On large systems the text search can slow down the system extremely." msgstr "Textové vyhledávání může u rozsáhlých systémů znamenat velmi citelné zpomalení systému." -#: src/Module/Admin/Site.php:663 -msgid "New base url" -msgstr "Nová výchozí url adresa" +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "" -#: src/Module/Admin/Site.php:663 +#: src/Module/Admin/Site.php:507 msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." -msgstr "Změnit výchozí URL adresu pro tento server. Toto odešle zprávu o přemístění všem kontaktům na Friendica a Diaspora* všech uživatelů." +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "" -#: src/Module/Admin/Site.php:665 -msgid "RINO Encryption" -msgstr "RINO Šifrování" - -#: src/Module/Admin/Site.php:665 -msgid "Encryption layer between nodes." -msgstr "Šifrovací vrstva mezi servery." - -#: src/Module/Admin/Site.php:665 -msgid "Enabled" -msgstr "Povoleno" - -#: src/Module/Admin/Site.php:667 +#: src/Module/Admin/Site.php:509 msgid "Maximum number of parallel workers" msgstr "Maximální počet paralelních pracovníků" -#: src/Module/Admin/Site.php:667 +#: src/Module/Admin/Site.php:509 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "Na sdílených hostinzích toto nastavte na hodnotu %d. Na větších systémech se hodí hodnoty kolem %d. Výchozí hodnotou je %d." -#: src/Module/Admin/Site.php:668 -msgid "Don't use \"proc_open\" with the worker" -msgstr "Nepoužívat „proc_open“ s pracovníkem" - -#: src/Module/Admin/Site.php:668 -msgid "" -"Enable this if your system doesn't allow the use of \"proc_open\". This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of worker calls in your crontab." -msgstr "Tohle zapněte, pokud Váš systém nedovoluje používání „proc_open“. To se může stát na sdíleném hostingu. Pokud je toto povoleno, bude zvýšena častost vyvolávání pracovníka v crontabu." - -#: src/Module/Admin/Site.php:669 +#: src/Module/Admin/Site.php:510 msgid "Enable fastlane" msgstr "Povolit fastlane" -#: src/Module/Admin/Site.php:669 +#: src/Module/Admin/Site.php:510 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "Pokud je toto povoleno, mechanismus fastlane spustí dodatečného pracovníka, pokud jsou procesy vyšší priority zablokované procesy nižší priority." -#: src/Module/Admin/Site.php:670 -msgid "Enable frontend worker" -msgstr "Povolit frontendového pracovníka" - -#: src/Module/Admin/Site.php:670 -#, php-format -msgid "" -"When enabled the Worker process is triggered when backend access is " -"performed (e.g. messages being delivered). On smaller sites you might want " -"to call %s/worker on a regular basis via an external cron job. You should " -"only enable this option if you cannot utilize cron/scheduled jobs on your " -"server." -msgstr "Pokud je toto povoleno, bude proces pracovníka vyvolán, pokud je proveden backendový přístup (např. když jsou doručovány zprávy). Na menších stránkách možná budete chtít pravidelně vyvolávat %s/worker přes externí úlohu cron. Tuto možnost byste měl/a zapnout pouze, pokud nemůžete na vašem serveru používat cron/plánované úlohy." - -#: src/Module/Admin/Site.php:672 -msgid "Subscribe to relay" -msgstr "Odebírat ze serveru pro přeposílání" - -#: src/Module/Admin/Site.php:672 -msgid "" -"Enables the receiving of public posts from the relay. They will be included " -"in the search, subscribed tags and on the global community page." -msgstr "Umožňuje přijímat veřejné příspěvky z přeposílacího serveru. Budou zahrnuty ve vyhledávání, odebíraných štítcích a na globální komunitní stránce." - -#: src/Module/Admin/Site.php:673 -msgid "Relay server" -msgstr "Server pro přeposílání (relay)" - -#: src/Module/Admin/Site.php:673 -msgid "" -"Address of the relay server where public posts should be send to. For " -"example https://relay.diasp.org" -msgstr "Adresa přeposílacího serveru, kam budou posílány veřejné příspěvky. Příklad: https://relay.diasp.org" - -#: src/Module/Admin/Site.php:674 +#: src/Module/Admin/Site.php:512 msgid "Direct relay transfer" msgstr "Přímý přenos na server pro přeposílání" -#: src/Module/Admin/Site.php:674 +#: src/Module/Admin/Site.php:512 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Umožňuje přímý přenos na ostatní servery bez použití přeposílacích serverů" -#: src/Module/Admin/Site.php:675 +#: src/Module/Admin/Site.php:513 msgid "Relay scope" msgstr "Rozsah příspěvků z přeposílacího serveru" -#: src/Module/Admin/Site.php:675 +#: src/Module/Admin/Site.php:513 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 "Může být buď „vše“ nebo „štítky“. „vše“ znamená, že budou přijaty všechny veřejné příspěvky. „štítky“ znamená, že budou přijaty pouze příspěvky s vybranými štítky." -#: src/Module/Admin/Site.php:675 +#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Disabled" +msgstr "Zakázáno" + +#: src/Module/Admin/Site.php:513 msgid "all" msgstr "vše" -#: src/Module/Admin/Site.php:675 +#: src/Module/Admin/Site.php:513 msgid "tags" msgstr "štítky" -#: src/Module/Admin/Site.php:676 +#: src/Module/Admin/Site.php:514 msgid "Server tags" msgstr "Serverové štítky" -#: src/Module/Admin/Site.php:676 +#: src/Module/Admin/Site.php:514 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Seznam štítků pro odběr „tags“, oddělených čárkami." -#: src/Module/Admin/Site.php:677 +#: src/Module/Admin/Site.php:515 +msgid "Deny Server tags" +msgstr "" + +#: src/Module/Admin/Site.php:515 +msgid "Comma separated list of tags that are rejected." +msgstr "" + +#: src/Module/Admin/Site.php:516 msgid "Allow user tags" msgstr "Povolit uživatelské štítky" -#: src/Module/Admin/Site.php:677 +#: src/Module/Admin/Site.php:516 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "Pokud je toto povoleno, budou štítky z uložených hledání vedle odběru „relay_server_tags“ použity i pro odběr „tags“." -#: src/Module/Admin/Site.php:680 +#: src/Module/Admin/Site.php:519 msgid "Start Relocation" msgstr "Začít přemístění" -#: src/Module/Admin/Summary.php:30 +#: src/Module/Admin/Storage.php:46 +#, php-format +msgid "Storage backend, %s is invalid." +msgstr "" + +#: src/Module/Admin/Storage.php:73 +#, php-format +msgid "Storage backend %s error: %s" +msgstr "" + +#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +msgid "Invalid storage backend setting value." +msgstr "Neplatná hodnota nastavení backendu úložiště." + +#: src/Module/Admin/Storage.php:139 +msgid "Current Storage Backend" +msgstr "" + +#: src/Module/Admin/Storage.php:140 +msgid "Storage Configuration" +msgstr "" + +#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +msgid "Storage" +msgstr "" + +#: src/Module/Admin/Storage.php:143 +msgid "Save & Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:144 +msgid "Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:145 +msgid "Save & Reload" +msgstr "" + +#: src/Module/Admin/Storage.php:146 +msgid "This backend doesn't have custom settings" +msgstr "" + +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "" + +#: src/Module/Admin/Storage.php:150 +msgid "Database (legacy)" +msgstr "Databáze (legacy)" + +#: src/Module/Admin/Summary.php:55 +#, php-format +msgid "Template engine (%s) error: %s" +msgstr "" + +#: src/Module/Admin/Summary.php:59 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -8551,39 +5345,65 @@ msgid "" " an automatic conversion.
    " msgstr "Vaše databáze stále běží s tabulkami MyISAM. Měl/a byste změnit typ datového úložiště na InnoDB. Protože Friendica bude v budoucnu používat pouze funkce pro InnoDB, měl/a byste to změnit! Zde naleznete návod, který by pro vás mohl být užitečný při konverzi úložišť. Můžete také použít příkaz php bin/console.php dbstructure toinnodb na Vaší instalaci Friendica pro automatickou konverzi.
    " -#: src/Module/Admin/Summary.php:38 +#: src/Module/Admin/Summary.php:64 +#, php-format +msgid "" +"Your DB still runs with InnoDB tables in the Antelope file format. You " +"should change the file format to Barracuda. Friendica is using features that" +" are not provided by the Antelope format. See here for a " +"guide that may be helpful converting the table engines. You may also use the" +" command php bin/console.php dbstructure toinnodb of your Friendica" +" installation for an automatic conversion.
    " +msgstr "" + +#: src/Module/Admin/Summary.php:74 +#, php-format +msgid "" +"Your table_definition_cache is too low (%d). This can lead to the database " +"error \"Prepared statement needs to be re-prepared\". Please set it at least" +" to %d. See here for more information.
    " +msgstr "" + +#: src/Module/Admin/Summary.php:85 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "Je dostupná ke stažení nová verze Friendica. Vaše aktuální verze je %1$s, upstreamová verze je %2$s" -#: src/Module/Admin/Summary.php:47 +#: src/Module/Admin/Summary.php:94 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "Aktualizace databáze selhala. Prosím, spusťte příkaz „php bin/console.php dbstructure update“ z příkazového řádku a podívejte se na chyby, které by se mohly vyskytnout." -#: src/Module/Admin/Summary.php:51 +#: src/Module/Admin/Summary.php:98 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "Polslední aktualizace selhala. Prosím spusťte příkaz „php bin/console.php dbstructure update“ z příkazového řádku a podívejte se na chyby, které se mohou stát. (Některé chyby mohou být v záznamvém souboru)" -#: src/Module/Admin/Summary.php:56 +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "" + +#: src/Module/Admin/Summary.php:107 msgid "The worker was never executed. Please check your database structure!" msgstr "Pracovník nebyl nikdy spuštěn. Prosím zkontrolujte strukturu Vaší databáze!" -#: src/Module/Admin/Summary.php:58 +#: src/Module/Admin/Summary.php:109 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "Pracovník byl naposledy spuštěn v %s UTC. Toto je více než jedna hodina. Prosím zkontrolujte si nastavení crontab." -#: src/Module/Admin/Summary.php:63 +#: src/Module/Admin/Summary.php:114 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -8592,7 +5412,7 @@ msgid "" "help with the transition." msgstr "Konfigurace Friendica je nyní uložena v souboru config/local.config.php, prosím zkopírujte soubor config/local-sample.config.php a přesuňte svou konfiguraci ze souboru .htconfig.php. Pro pomoc při přechodu navštivte stránku Config v sekci nápovědy." -#: src/Module/Admin/Summary.php:67 +#: src/Module/Admin/Summary.php:118 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -8601,7 +5421,7 @@ msgid "" "page for help with the transition." msgstr "Konfigurace Friendica je nyní uložena v souboru config/local.config.php, prosím zkopírujte soubor config/local-sample.config.php a přesuňte svou konfiguraci ze souboru local.config.php. Pro pomoc při přechodu navštivte stránku Config v sekci nápovědy." -#: src/Module/Admin/Summary.php:73 +#: src/Module/Admin/Summary.php:124 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -8609,728 +5429,843 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s není na Vašem systému dosažitelné. Tohle je závažná chyba konfigurace, která brání komunikaci mezi servery. Pro pomoc navštivte stránku instalace." -#: src/Module/Admin/Summary.php:106 +#: src/Module/Admin/Summary.php:148 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "system.basepath Friendica bylo aktualizováno z „%s“ na „%s“. Pro vyhnutí se rozdílům prosím odstraňte z vaší databáze system.basepath." -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:156 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "Aktuální system.basepath Friendica „%s“ je špatné a konfigurační soubor „%s“ se nepoužívá." -#: src/Module/Admin/Summary.php:122 +#: src/Module/Admin/Summary.php:164 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "Aktuální system.basepath „%s“ není rovno konfguračnímu souboru „%s“. Prosím opravte si svou konfiguraci." -#: src/Module/Admin/Summary.php:129 -msgid "Normal Account" -msgstr "Normální účet" - -#: src/Module/Admin/Summary.php:130 -msgid "Automatic Follower Account" -msgstr "Účet s automatickými sledujícími" - -#: src/Module/Admin/Summary.php:131 -msgid "Public Forum Account" -msgstr "Účet veřejného fóra" - -#: src/Module/Admin/Summary.php:132 -msgid "Automatic Friend Account" -msgstr "Účet s automatickými přáteli" - -#: src/Module/Admin/Summary.php:133 -msgid "Blog Account" -msgstr "Blogovací účet" - -#: src/Module/Admin/Summary.php:134 -msgid "Private Forum Account" -msgstr "Účet soukromého fóra" - -#: src/Module/Admin/Summary.php:154 +#: src/Module/Admin/Summary.php:175 msgid "Message queues" msgstr "Fronty zpráv" -#: src/Module/Admin/Summary.php:160 +#: src/Module/Admin/Summary.php:181 msgid "Server Settings" msgstr "Nastavení serveru" -#: src/Module/Admin/Summary.php:174 -msgid "Summary" -msgstr "Shrnutí" - -#: src/Module/Admin/Summary.php:176 -msgid "Registered users" -msgstr "Registrovaní uživatelé" - -#: src/Module/Admin/Summary.php:178 -msgid "Pending registrations" -msgstr "Čekající registrace" - -#: src/Module/Admin/Summary.php:179 +#: src/Module/Admin/Summary.php:199 msgid "Version" msgstr "Verze" -#: src/Module/Admin/Summary.php:183 +#: src/Module/Admin/Summary.php:203 msgid "Active addons" msgstr "Aktivní doplňky" -#: src/Module/AllFriends.php:55 -msgid "No friends to display." -msgstr "Žádní přátelé k zobrazení" +#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 +#, php-format +msgid "Theme %s disabled." +msgstr "Motiv %s zakázán." -#: src/Module/Attach.php:36 src/Module/Attach.php:48 +#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 +#, php-format +msgid "Theme %s successfully enabled." +msgstr "Motiv %s úspěšně povolen." + +#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 +#, php-format +msgid "Theme %s failed to install." +msgstr "Instalace motivu %s selhala." + +#: src/Module/Admin/Themes/Details.php:83 +msgid "Screenshot" +msgstr "Snímek obrazovky" + +#: src/Module/Admin/Themes/Details.php:91 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 +msgid "Themes" +msgstr "Motivy" + +#: src/Module/Admin/Themes/Embed.php:80 +msgid "Unknown theme." +msgstr "Neznámý motiv." + +#: src/Module/Admin/Themes/Index.php:51 +msgid "Themes reloaded" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:114 +msgid "Reload active themes" +msgstr "Znovu načíst aktivní motivy" + +#: src/Module/Admin/Themes/Index.php:118 +#, php-format +msgid "No themes found on the system. They should be placed in %1$s" +msgstr "V systému nebyly nalezeny žádné motivy. Měly by být uloženy v %1$s" + +#: src/Module/Admin/Themes/Index.php:119 +msgid "[Experimental]" +msgstr "[Experimentální]" + +#: src/Module/Admin/Themes/Index.php:120 +msgid "[Unsupported]" +msgstr "[Nepodporováno]" + +#: src/Module/Admin/Tos.php:79 +msgid "Display Terms of Service" +msgstr "Zobrazit Podmínky používání" + +#: src/Module/Admin/Tos.php:79 +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 "Povolí stránku Podmínky používání. Pokud je toto povoleno, bude na formulář pro registrací a stránku s obecnými informacemi přidán odkaz k podmínkám." + +#: src/Module/Admin/Tos.php:80 +msgid "Display Privacy Statement" +msgstr "Zobrazit Prohlášení o soukromí" + +#: src/Module/Admin/Tos.php:80 +#, php-format +msgid "" +"Show some informations regarding the needed information to operate the node " +"according e.g. to EU-GDPR." +msgstr "" + +#: src/Module/Admin/Tos.php:81 +msgid "Privacy Statement Preview" +msgstr "Náhled Prohlášení o soukromí" + +#: src/Module/Admin/Tos.php:83 +msgid "The Terms of Service" +msgstr "Podmínky používání" + +#: src/Module/Admin/Tos.php:83 +msgid "" +"Enter the Terms of Service for your node here. You can use BBCode. Headers " +"of sections should be [h2] and below." +msgstr "Zde zadejte podmínky používání vašeho serveru. Můžete používat BBCode. Záhlaví sekcí by měly být označeny [h2] a níže." + +#: src/Module/Admin/Tos.php:84 +msgid "The rules" +msgstr "" + +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." +msgstr "" + +#: src/Module/Api/ApiResponse.php:279 +#, php-format +msgid "API endpoint %s %s is not implemented but might be in the future." +msgstr "" + +#: src/Module/Api/Mastodon/Apps.php:73 +msgid "Missing parameters" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:51 +msgid "Only starting posts can be bookmarked" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +msgid "Only starting posts can be muted" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Reblog.php:56 +#, php-format +msgid "Posts from %s can't be shared" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +msgid "Only starting posts can be unbookmarked" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +msgid "Only starting posts can be unmuted" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:62 +#, php-format +msgid "Posts from %s can't be unshared" +msgstr "" + +#: src/Module/Api/Twitter/ContactEndpoint.php:66 +msgid "Contact not found" +msgstr "Kontakt nenalezen." + +#: src/Module/Apps.php:62 +msgid "No installed applications." +msgstr "Žádné nainstalované aplikace." + +#: src/Module/Apps.php:67 +msgid "Applications" +msgstr "Aplikace" + +#: src/Module/Attach.php:49 src/Module/Attach.php:61 msgid "Item was not found." msgstr "Položka nebyla nalezena." -#: src/Module/BaseAdminModule.php:62 -msgid "" -"Submanaged account can't access the administation pages. Please log back in " -"as the master account." -msgstr "Účet spravovaný jiným nemá přístup k administračním stránkám. Prosím přihlaste se znovu jako nejvyšší účet." +#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +msgid "Please login to continue." +msgstr "Pro pokračování se prosím přihlaste." -#: src/Module/BaseAdminModule.php:76 +#: src/Module/BaseAdmin.php:63 +msgid "You don't have access to administration pages." +msgstr "" + +#: src/Module/BaseAdmin.php:67 +msgid "" +"Submanaged account can't access the administration pages. Please log back in" +" as the main account." +msgstr "" + +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 msgid "Overview" msgstr "Přehled" -#: src/Module/BaseAdminModule.php:79 +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 msgid "Configuration" msgstr "Konfigurace" -#: src/Module/BaseAdminModule.php:87 +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +msgid "Additional features" +msgstr "Dodatečné vlastnosti" + +#: src/Module/BaseAdmin.php:97 msgid "Database" msgstr "Databáze" -#: src/Module/BaseAdminModule.php:88 +#: src/Module/BaseAdmin.php:98 msgid "DB updates" msgstr "Aktualizace databáze" -#: src/Module/BaseAdminModule.php:89 +#: src/Module/BaseAdmin.php:99 msgid "Inspect Deferred Workers" msgstr "Prozkoumat odložené pracovníky" -#: src/Module/BaseAdminModule.php:90 +#: src/Module/BaseAdmin.php:100 msgid "Inspect worker Queue" msgstr "Prozkoumat frontu pro pracovníka" -#: src/Module/BaseAdminModule.php:92 -msgid "Tools" -msgstr "Nástroje" - -#: src/Module/BaseAdminModule.php:93 -msgid "Contact Blocklist" -msgstr "Blokované kontakty" - -#: src/Module/BaseAdminModule.php:94 -msgid "Server Blocklist" -msgstr "Blokované servery" - -#: src/Module/BaseAdminModule.php:101 +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 msgid "Diagnostics" msgstr "Diagnostika" -#: src/Module/BaseAdminModule.php:102 +#: src/Module/BaseAdmin.php:107 msgid "PHP Info" msgstr "Info o PHP" -#: src/Module/BaseAdminModule.php:103 +#: src/Module/BaseAdmin.php:108 msgid "probe address" msgstr "vyzkoušet adresu" -#: src/Module/BaseAdminModule.php:104 +#: src/Module/BaseAdmin.php:109 msgid "check webfinger" msgstr "vyzkoušet webfinger" -#: src/Module/BaseAdminModule.php:105 -msgid "Item Source" -msgstr "Zdroj položky" - -#: src/Module/BaseAdminModule.php:106 +#: src/Module/BaseAdmin.php:110 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdminModule.php:115 +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 +msgid "ActivityPub Conversion" +msgstr "" + +#: src/Module/BaseAdmin.php:120 msgid "Addon Features" msgstr "Vlastnosti doplňků" -#: src/Module/BaseAdminModule.php:116 +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 msgid "User registrations waiting for confirmation" msgstr "Registrace uživatelů čekající na potvrzení" -#: src/Module/BaseSearchModule.php:52 +#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467 +#: src/Module/BaseApi.php:483 +msgid "Too Many Requests" +msgstr "" + +#: src/Module/BaseApi.php:452 +#, 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] "Byl dosažen denní limit %d příspěvku. Příspěvek byl odmítnut." +msgstr[1] "Byl dosažen denní limit %d příspěvků. Příspěvek byl odmítnut." +msgstr[2] "Byl dosažen denní limit %d příspěvku. Příspěvek byl odmítnut." +msgstr[3] "Byl dosažen denní limit %d příspěvků. Příspěvek byl odmítnut." + +#: src/Module/BaseApi.php:468 +#, 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] "Byl dosažen týdenní limit %d příspěvku. Příspěvek byl odmítnut." +msgstr[1] "Byl dosažen týdenní limit %d příspěvků. Příspěvek byl odmítnut." +msgstr[2] "Byl dosažen týdenní limit %d příspěvku. Příspěvek byl odmítnut." +msgstr[3] "Byl dosažen týdenní limit %d příspěvků. Příspěvek byl odmítnut." + +#: src/Module/BaseApi.php:484 +#, php-format +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Monthly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "" + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "" + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Uživatelé" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "Nástroje" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "Blokované kontakty" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "Blokované servery" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "Smazat položku" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "Zdroj položky" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 +msgid "Profile Details" +msgstr "Detaily profilu" + +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "" + +#: src/Module/BaseProfile.php:111 +msgid "Only You Can See This" +msgstr "Toto můžete vidět jen vy" + +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +msgid "Scheduled Posts" +msgstr "" + +#: src/Module/BaseProfile.php:119 +msgid "Posts that are scheduled for publishing" +msgstr "" + +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +msgid "Tips for New Members" +msgstr "Tipy pro nové členy" + +#: src/Module/BaseSearch.php:71 #, php-format msgid "People Search - %s" msgstr "Vyhledávání lidí - %s" -#: src/Module/BaseSearchModule.php:62 +#: src/Module/BaseSearch.php:75 #, php-format -msgid "Forum Search - %s" -msgstr "Vyhledávání fór - %s" +msgid "Group Search - %s" +msgstr "" -#: src/Module/Debug/Feed.php:20 src/Module/Filer/SaveTag.php:20 -msgid "You must be logged in to use this module" -msgstr "Pro používání tohoto modulu musíte být přihlášen/a" +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "Žádné shody" -#: src/Module/Debug/Feed.php:49 -msgid "Source URL" -msgstr "Zdrojová adresa URL" - -#: src/Module/Debug/Localtime.php:30 -msgid "Time Conversion" -msgstr "Časový převod" - -#: src/Module/Debug/Localtime.php:31 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica poskytuje tuto službu ke sdílení událostí s ostatními sítěmi a přáteli v neznámých časových pásmech" - -#: src/Module/Debug/Localtime.php:32 -#, php-format -msgid "UTC time: %s" -msgstr "UTC čas: %s" - -#: src/Module/Debug/Localtime.php:35 -#, php-format -msgid "Current timezone: %s" -msgstr "Aktuální časové pásmo: %s" - -#: src/Module/Debug/Localtime.php:39 -#, php-format -msgid "Converted localtime: %s" -msgstr "Převedený místní čas : %s" - -#: src/Module/Debug/Localtime.php:43 -msgid "Please select your timezone:" -msgstr "Prosím, vyberte své časové pásmo:" - -#: src/Module/Debug/Probe.php:19 src/Module/Debug/WebFinger.php:18 -msgid "Only logged in users are permitted to perform a probing." -msgstr "Pouze přihlášení uživatelé mohou zkoušet adresy." - -#: src/Module/Debug/Probe.php:35 -msgid "Lookup address" -msgstr "Najít adresu" - -#: src/Module/Debug/Babel.php:32 -msgid "Source input" -msgstr "Zdrojový vstup" - -#: src/Module/Debug/Babel.php:38 -msgid "BBCode::toPlaintext" -msgstr "BBCode::toPlaintext" - -#: src/Module/Debug/Babel.php:44 -msgid "BBCode::convert (raw HTML)" -msgstr "BBCode::convert (hrubé HTML)" - -#: src/Module/Debug/Babel.php:49 -msgid "BBCode::convert" -msgstr "BBCode::convert" - -#: src/Module/Debug/Babel.php:55 -msgid "BBCode::convert => HTML::toBBCode" -msgstr "BBCode::convert => HTML::toBBCode" - -#: src/Module/Debug/Babel.php:61 -msgid "BBCode::toMarkdown" -msgstr "BBCode::toMarkdown" - -#: src/Module/Debug/Babel.php:67 -msgid "BBCode::toMarkdown => Markdown::convert" -msgstr "BBCode::toMarkdown => Markdown::convert" - -#: src/Module/Debug/Babel.php:73 -msgid "BBCode::toMarkdown => Markdown::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::toBBCode" - -#: src/Module/Debug/Babel.php:79 -msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" - -#: src/Module/Debug/Babel.php:90 -msgid "Item Body" -msgstr "Tělo položky" - -#: src/Module/Debug/Babel.php:94 -msgid "Item Tags" -msgstr "Štítky položky" - -#: src/Module/Debug/Babel.php:101 -msgid "Source input (Diaspora format)" -msgstr "Zdrojový vstup (formát Diaspora)" - -#: src/Module/Debug/Babel.php:107 -msgid "Markdown::convert (raw HTML)" -msgstr "Markdown::convert (hrubé HTML)" - -#: src/Module/Debug/Babel.php:112 -msgid "Markdown::convert" -msgstr "Markdown::convert" - -#: src/Module/Debug/Babel.php:118 -msgid "Markdown::toBBCode" -msgstr "Markdown::toBBCode" - -#: src/Module/Debug/Babel.php:125 -msgid "Raw HTML input" -msgstr "Hrubý HTML vstup" - -#: src/Module/Debug/Babel.php:130 -msgid "HTML Input" -msgstr "HTML vstup" - -#: src/Module/Debug/Babel.php:136 -msgid "HTML::toBBCode" -msgstr "HTML::toBBCode" - -#: src/Module/Debug/Babel.php:142 -msgid "HTML::toBBCode => BBCode::convert" -msgstr "HTML::toBBCode => BBCode::convert" - -#: src/Module/Debug/Babel.php:147 -msgid "HTML::toBBCode => BBCode::convert (raw HTML)" -msgstr "HTML::toBBCode => BBCode::convert (hrubé HTML)" - -#: src/Module/Debug/Babel.php:153 -msgid "HTML::toBBCode => BBCode::toPlaintext" -msgstr "HTML::toBBCode => BBCode::toPlaintext" - -#: src/Module/Debug/Babel.php:159 -msgid "HTML::toMarkdown" -msgstr "HTML::toMarkdown" - -#: src/Module/Debug/Babel.php:165 -msgid "HTML::toPlaintext" -msgstr "HTML::toPlaintext" - -#: src/Module/Debug/Babel.php:171 -msgid "HTML::toPlaintext (compact)" -msgstr "HTML::toPlaintext (kompaktní)" - -#: src/Module/Debug/Babel.php:179 -msgid "Source text" -msgstr "Zdrojový text" - -#: src/Module/Debug/Babel.php:180 -msgid "BBCode" -msgstr "BBCode" - -#: src/Module/Debug/Babel.php:181 -msgid "Markdown" -msgstr "Markdown" - -#: src/Module/Debug/Babel.php:182 -msgid "HTML" -msgstr "HTML" - -#: src/Module/Directory.php:61 -msgid "No entries (some entries may be hidden)." -msgstr "Žádné záznamy (některé položky mohou být skryty)." - -#: src/Module/Directory.php:80 -msgid "Find on this site" -msgstr "Najít na tomto webu" - -#: src/Module/Directory.php:82 -msgid "Results for:" -msgstr "Výsledky pro:" - -#: src/Module/Directory.php:84 -msgid "Site Directory" -msgstr "Adresář serveru" - -#: src/Module/Filer/SaveTag.php:39 -#, php-format -msgid "Filetag %s saved to item" -msgstr "Filetag %s uložen k předmětu" - -#: src/Module/Filer/SaveTag.php:48 -msgid "- select -" -msgstr "- vyberte -" - -#: src/Module/FollowConfirm.php:37 -msgid "No given contact." -msgstr "Žádný daný kontakt." - -#: src/Module/Friendica.php:40 -msgid "Installed addons/apps:" -msgstr "Nainstalované doplňky/aplikace:" - -#: src/Module/Friendica.php:45 -msgid "No installed addons/apps" -msgstr "Žádne nainstalované doplňky/aplikace" - -#: src/Module/Friendica.php:50 -#, php-format -msgid "Read about the Terms of Service of this node." -msgstr "Přečtěte si o Podmínkách používání tohoto serveru." - -#: src/Module/Friendica.php:57 -msgid "On this server the following remote servers are blocked." -msgstr "Na tomto serveru jsou zablokovány následující vzdálené servery." - -#: src/Module/Friendica.php:75 +#: src/Module/BaseSearch.php:147 #, 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 "Tohle je Friendica, verze %s, běžící na webové adrese %s. Verze databáze je %s, verze post update je %s." +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Module/Friendica.php:80 -msgid "" -"Please visit Friendi.ca to learn more " -"about the Friendica project." -msgstr "Pro více informací o projektu Friendica, prosím, navštivte stránku Friendi.ca" +#: src/Module/BaseSettings.php:78 +msgid "Account" +msgstr "Účet" -#: src/Module/Friendica.php:81 -msgid "Bug reports and issues: please visit" -msgstr "Pro hlášení chyb a námětů na změny prosím navštivte" +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 +msgid "Two-factor authentication" +msgstr "Dvoufázové ověřování" -#: src/Module/Friendica.php:81 -msgid "the bugtracker at github" -msgstr "sledování chyb na GitHubu" +#: src/Module/BaseSettings.php:118 +msgid "Display" +msgstr "Zobrazení" -#: src/Module/Friendica.php:82 -msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -msgstr "Návrhy, pochvaly atd. prosím posílejte na adresu „info“ zavináč „friendi“-tečka-„ca“" +#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "Sociální sítě" -#: src/Module/Group.php:42 -msgid "Group created." -msgstr "Skupina vytvořena." +#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172 +msgid "Manage Accounts" +msgstr "" -#: src/Module/Group.php:48 -msgid "Could not create group." -msgstr "Nelze vytvořit skupinu." +#: src/Module/BaseSettings.php:146 +msgid "Connected apps" +msgstr "Připojené aplikace" -#: src/Module/Group.php:59 src/Module/Group.php:207 src/Module/Group.php:233 -msgid "Group not found." -msgstr "Skupina nenalezena." +#: src/Module/BaseSettings.php:153 +msgid "Remote servers" +msgstr "" -#: src/Module/Group.php:65 -msgid "Group name changed." -msgstr "Název skupiny byl změněn." +#: src/Module/BaseSettings.php:160 src/Module/Settings/UserExport.php:98 +msgid "Export personal data" +msgstr "Exportovat osobní údaje" -#: src/Module/Group.php:87 -msgid "Unknown group." -msgstr "Neznámá skupina." +#: src/Module/BaseSettings.php:167 +msgid "Remove account" +msgstr "Odstranit účet" -#: src/Module/Group.php:96 -msgid "Contact is unavailable." -msgstr "Kontakt je nedostupný." +#: src/Module/Bookmarklet.php:54 +msgid "This page is missing a url parameter." +msgstr "Této stránce chybí parametr url." -#: src/Module/Group.php:100 +#: src/Module/Bookmarklet.php:66 +msgid "The post was created" +msgstr "Příspěvek byl vytvořen" + +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "" + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "Odstranění události selhalo" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "Událost nemůže končit dříve, než začala." + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "Název události a datum začátku jsou vyžadovány." + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "Počáteční datum a Název jsou vyžadovány." + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "Událost začíná:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Vyžadováno" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "Datum/čas konce není zadán nebo není relevantní" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "Akce končí:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Sdílet tuto událost" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "Základní" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "Tento formát kalendáře není podporován." + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "Nenalezena žádná data pro export" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "kalendář" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Události" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "Zobrazit" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Vytvořit novou událost" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:248 +msgid "list" +msgstr "seznam" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "" + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "" + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "" + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "" + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "Kontakt nenalezen." + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "Neplatný kontakt." + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 msgid "Contact is deleted." msgstr "Knotakt je smazán." -#: src/Module/Group.php:106 -msgid "Contact is blocked, unable to add it to a group." -msgstr "Kontakt je blokován, nelze jej přidat ke skupině." +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "" -#: src/Module/Group.php:110 -msgid "Unable to add the contact to the group." -msgstr "Nelze přidat kontakt ke skupině." +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "" -#: src/Module/Group.php:112 -msgid "Contact successfully added to group." -msgstr "Kontakt úspěšně přidán ke skupině." +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "" -#: src/Module/Group.php:116 -msgid "Unable to remove the contact from the group." -msgstr "Nelze odstranit kontakt ze skupiny." +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "" -#: src/Module/Group.php:118 -msgid "Contact successfully removed from group." -msgstr "Kontakt úspěšně odstraněn ze skupiny." - -#: src/Module/Group.php:121 -msgid "Unknown group command." -msgstr "Neznámý skupinový příkaz." - -#: src/Module/Group.php:124 +#: src/Module/Circle.php:131 msgid "Bad request." msgstr "Špatný požadavek." -#: src/Module/Group.php:163 -msgid "Save Group" -msgstr "Uložit skupinu" +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "" -#: src/Module/Group.php:164 +#: src/Module/Circle.php:171 msgid "Filter" msgstr "Filtr" -#: src/Module/Group.php:170 -msgid "Create a group of contacts/friends." -msgstr "Vytvořit skupinu kontaktů/přátel." +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "" -#: src/Module/Group.php:212 -msgid "Group removed." -msgstr "Skupina odstraněna. " +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "" -#: src/Module/Group.php:214 -msgid "Unable to remove group." -msgstr "Nelze odstranit skupinu." +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "" -#: src/Module/Group.php:265 -msgid "Delete Group" -msgstr "Odstranit skupinu" +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "" -#: src/Module/Group.php:275 -msgid "Edit Group Name" -msgstr "Upravit název skupiny" - -#: src/Module/Group.php:285 +#: src/Module/Circle.php:290 msgid "Members" msgstr "Členové" -#: src/Module/Group.php:301 -msgid "Remove contact from group" -msgstr "Odebrat kontakt ze skupiny" - -#: src/Module/Group.php:335 -msgid "Add contact to group" -msgstr "Přidat kontakt ke skupině" - -#: src/Module/Help.php:43 -msgid "Help:" -msgstr "Nápověda:" - -#: src/Module/Home.php:42 -#, php-format -msgid "Welcome to %s" -msgstr "Vítejte na %s" - -#: src/Module/Invite.php:37 -msgid "Total invitation limit exceeded." -msgstr "Celkový limit pozvánek byl překročen" - -#: src/Module/Invite.php:60 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : není platná e-mailová adresa." - -#: src/Module/Invite.php:87 -msgid "Please join us on Friendica" -msgstr "Prosím přidejte se k nám na Friendica" - -#: src/Module/Invite.php:96 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limit pozvánek byl překročen. Prosím kontaktujte administrátora vaší stránky." - -#: src/Module/Invite.php:100 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Doručení zprávy se nezdařilo." - -#: src/Module/Invite.php:104 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d zpráva odeslána." -msgstr[1] "%d zprávy odeslány." -msgstr[2] "%d zprávy odesláno." -msgstr[3] "%d zpráv odesláno." - -#: src/Module/Invite.php:122 -msgid "You have no more invitations available" -msgstr "Nemáte k dispozici žádné další pozvánky" - -#: src/Module/Invite.php:129 -#, 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 "Navštiv %s pro seznam veřejných serverů, na kterých se můžeš přidat. Členové Friendica na jiných serverech se mohou spojit mezi sebou, jakožto i se členy mnoha dalších sociálních sítí." - -#: src/Module/Invite.php:131 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "K přijetí této pozvánky prosím navštivte a registrujte se na %s nebo na kterémkoliv jiném veřejném serveru Friendica." - -#: src/Module/Invite.php:132 -#, 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 "Stránky Friendica jsou navzájem propojené a vytváří tak obrovský sociální web s dúrazem na soukromí, kterou vlastní a kontrojují její členové, Mohou se také připojit k mnoha tradičním socilním sítím. Navštivte %s pro seznam alternativních serverů Friendica, ke kterým se můžete přidat." - -#: src/Module/Invite.php:136 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy." - -#: src/Module/Invite.php:139 -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks." -msgstr "Stránky Friendica jsou navzájem propojené a vytváří tak obrovský sociální web s dúrazem na soukromí, kterou vlastní a kontrolují její členové. Mohou se také připojit k mnoha tradičním sociálním sítím." - -#: src/Module/Invite.php:138 -#, php-format -msgid "To accept this invitation, please visit and register at %s." -msgstr "Pokud chcete tuto pozvánku přijmout, prosím navštivte %s a registrujte se tam." - -#: src/Module/Invite.php:146 -msgid "Send invitations" -msgstr "Poslat pozvánky" - -#: src/Module/Invite.php:147 -msgid "Enter email addresses, one per line:" -msgstr "Zadejte e-mailové adresy, jednu na řádek:" - -#: src/Module/Invite.php:151 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Jsi srdečně pozván/a se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální web." - -#: src/Module/Invite.php:153 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Budeš muset zadat tento pozvánkový kód: $invite_code" - -#: src/Module/Invite.php:153 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Jakmile se zaregistruješ, prosím spoj se se mnou přes mou profilovu stránku na:" - -#: src/Module/Invite.php:155 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendi.ca" -msgstr "Pro více informací o projektu Friendica a proč si myslím, že je důležitý, prosím navštiv http://friendi.ca" - -#: src/Module/Item/Compose.php:30 -msgid "Please enter a post body." +#: src/Module/Circle.php:293 +msgid "Circle is empty" msgstr "" -#: src/Module/Item/Compose.php:43 -msgid "This feature is only available with the frio theme." +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" msgstr "" -#: src/Module/Item/Compose.php:63 -msgid "Compose new personal note" -msgstr "Napsat novou osobní poznámku" +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "Klikněte na kontakt pro přidání nebo odebrání" -#: src/Module/Item/Compose.php:70 -msgid "Compose new post" -msgstr "Napsat nový příspěvek" - -#: src/Module/Item/Compose.php:190 -msgid "Clear the location" +#: src/Module/Circle.php:343 +msgid "Add contact to circle" msgstr "" -#: src/Module/Item/Compose.php:191 -msgid "Location services are unavailable on your device" -msgstr "" - -#: src/Module/Item/Compose.php:192 -msgid "" -"Location services are disabled. Please check the website's permissions on " -"your device" -msgstr "" - -#: src/Module/Item/Compose.php:196 -msgid "Public" -msgstr "" - -#: src/Module/Item/Compose.php:197 -msgid "" -"This post will be sent to all your followers and can be seen in the " -"community pages and by anyone with its link." -msgstr "" - -#: src/Module/Item/Compose.php:198 -msgid "Limited/Private" -msgstr "" - -#: src/Module/Item/Compose.php:199 -msgid "" -"This post will be sent only to the people in the first box, to the exception" -" of the people mentioned in the second box. It won't appear anywhere public." -msgstr "" - -#: src/Module/Login.php:286 -msgid "Create a New Account" -msgstr "Vytvořit nový účet" - -#: src/Module/Login.php:319 -msgid "Password: " -msgstr "Heslo: " - -#: src/Module/Login.php:320 -msgid "Remember me" -msgstr "Pamatovat si mě" - -#: src/Module/Login.php:323 -msgid "Or login using OpenID: " -msgstr "Nebo se přihlaste pomocí OpenID: " - -#: src/Module/Login.php:329 -msgid "Forgot your password?" -msgstr "Zapomněl/a jste heslo?" - -#: src/Module/Login.php:332 -msgid "Website Terms of Service" -msgstr "Podmínky používání stránky" - -#: src/Module/Login.php:333 -msgid "terms of service" -msgstr "podmínky používání" - -#: src/Module/Login.php:335 -msgid "Website Privacy Policy" -msgstr "Zásady soukromí serveru" - -#: src/Module/Login.php:336 -msgid "privacy policy" -msgstr "zásady soukromí" - -#: src/Module/Logout.php:38 -msgid "Logged out." -msgstr "Odhlášen." - -#: src/Module/Maintenance.php:29 -msgid "System down for maintenance" -msgstr "Systém vypnut z důvodů údržby" - -#: src/Module/PageNotFound.php:13 -msgid "Page not found." -msgstr "Stránka nenalezena" - -#: src/Module/Photo.php:87 +#: src/Module/Contact.php:97 #, php-format -msgid "Invalid photo with id %s." -msgstr "Neplatná fotka s ID %s." +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "%d kontakt upraven" +msgstr[1] "%d kontakty upraveny" +msgstr[2] "%d kontaktu upraveno" +msgstr[3] "%d kontaktů upraveno" -#: src/Module/Profile/Contacts.php:23 src/Module/Profile/Contacts.php:36 -msgid "User not found." -msgstr "Uživatel nenalezen." +#: src/Module/Contact.php:348 +msgid "Show all contacts" +msgstr "Zobrazit všechny kontakty" -#: src/Module/Profile/Contacts.php:78 -msgid "No contacts." -msgstr "Žádné kontakty." +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "Čekající" -#: src/Module/Profile/Contacts.php:93 src/Module/Contact.php:569 -#: src/Module/Contact.php:1008 +#: src/Module/Contact.php:356 +msgid "Only show pending contacts" +msgstr "" + +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Blokované" + +#: src/Module/Contact.php:364 +msgid "Only show blocked contacts" +msgstr "Zobrazit pouze blokované kontakty" + +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:368 +msgid "Ignored" +msgstr "Ignorované" + +#: src/Module/Contact.php:372 +msgid "Only show ignored contacts" +msgstr "Zobrazit pouze ignorované kontakty" + +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 +msgid "Archived" +msgstr "Archivované" + +#: src/Module/Contact.php:388 +msgid "Only show archived contacts" +msgstr "Zobrazit pouze archivované kontakty" + +#: src/Module/Contact.php:393 src/Module/Contact.php:438 +msgid "Hidden" +msgstr "Skryté" + +#: src/Module/Contact.php:396 +msgid "Only show hidden contacts" +msgstr "Zobrazit pouze skryté kontakty" + +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "" + +#: src/Module/Contact.php:459 +msgid "Search your contacts" +msgstr "Prohledat vaše kontakty" + +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 +#, php-format +msgid "Results for: %s" +msgstr "Výsledky pro: %s" + +#: src/Module/Contact.php:467 +msgid "Update" +msgstr "Aktualizace" + +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Odblokovat" + +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 +msgid "Unignore" +msgstr "Přestat ignorovat" + +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "" + +#: src/Module/Contact.php:472 +msgid "Batch Actions" +msgstr "Souhrnné akce" + +#: src/Module/Contact.php:515 +msgid "Conversations started by this contact" +msgstr "Konverzace, které tento kontakt začal" + +#: src/Module/Contact.php:520 +msgid "Posts and Comments" +msgstr "Příspěvky a komentáře" + +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "" + +#: src/Module/Contact.php:531 +msgid "Posts containing media objects" +msgstr "" + +#: src/Module/Contact.php:539 +msgid "View all known contacts" +msgstr "" + +#: src/Module/Contact.php:550 +msgid "Advanced Contact Settings" +msgstr "Pokročilé nastavení kontaktu" + +#: src/Module/Contact.php:586 +msgid "Mutual Friendship" +msgstr "Vzájemné přátelství" + +#: src/Module/Contact.php:590 +msgid "is a fan of yours" +msgstr "je váš fanoušek" + +#: src/Module/Contact.php:594 +msgid "you are a fan of" +msgstr "jste fanouškem" + +#: src/Module/Contact.php:612 +msgid "Pending outgoing contact request" +msgstr "" + +#: src/Module/Contact.php:614 +msgid "Pending incoming contact request" +msgstr "" + +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 #, php-format msgid "Visit %s's profile [%s]" msgstr "Navštivte profil uživatele %s [%s]" -#: src/Module/Profile/Contacts.php:112 +#: src/Module/Contact/Advanced.php:99 +msgid "Contact update failed." +msgstr "Aktualizace kontaktu selhala." + +#: src/Module/Contact/Advanced.php:130 +msgid "Return to contact editor" +msgstr "Zpět k editoru kontaktu" + +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Jméno" + +#: src/Module/Contact/Advanced.php:135 +msgid "Account Nickname" +msgstr "Přezdívka účtu" + +#: src/Module/Contact/Advanced.php:136 +msgid "Account URL" +msgstr "URL adresa účtu" + +#: src/Module/Contact/Advanced.php:137 +msgid "Poll/Feed URL" +msgstr "URL adresa poll/feed" + +#: src/Module/Contact/Advanced.php:138 +msgid "New photo from this URL" +msgstr "Nová fotka z této URL adresy" + +#: src/Module/Contact/Contacts.php:89 +msgid "No known contacts." +msgstr "" + +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +msgid "No common contacts." +msgstr "" + +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" @@ -9339,16 +6274,16 @@ msgstr[1] "Sledující (%s)" msgstr[2] "Sledující (%s)" msgstr[3] "Sledující (%s)" -#: src/Module/Profile/Contacts.php:113 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" msgstr[0] "Sledovaný (%s)" msgstr[1] "Sledovaní (%s)" msgstr[2] "Sledovaní (%s)" -msgstr[3] "Sledovaní (%s)" +msgstr[3] "Sleduji (%s)" -#: src/Module/Profile/Contacts.php:114 +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" @@ -9357,7 +6292,28 @@ msgstr[1] "Vzájemní přátelé (%s)" msgstr[2] "Vzájemní přátelé (%s)" msgstr[3] "Vzájemní přátelé (%s)" -#: src/Module/Profile/Contacts.php:116 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#, php-format +msgid "These contacts both follow and are followed by %s." +msgstr "" + +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#, php-format +msgid "Common contact (%s)" +msgid_plural "Common contacts (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#, php-format +msgid "" +"Both %s and yourself have publicly interacted with these " +"contacts (follow, comment or likes on public posts)." +msgstr "" + +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" @@ -9366,282 +6322,4616 @@ msgstr[1] "Kontakty (%s)" msgstr[2] "Kontakty (%s)" msgstr[3] "Kontakty (%s)" -#: src/Module/Profile/Contacts.php:125 -msgid "All contacts" -msgstr "Všechny kontakty" +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:165 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Přístup odmítnut." -#: src/Module/Register.php:83 +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Odeslat požadavek" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "Již jste si tento kontakt přidal/a" + +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Typ sítě nemohl být detekován. Kontakt nemůže být přidán." + +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Podpora pro Diasporu není zapnuta. Kontakt nemůže být přidán." + +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "Podpora pro OStatus je vypnnuta. Kontakt nemůže být přidán." + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Odpovězte, prosím, následující:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "Vaše adresa identity:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "URL profilu" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Štítky:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Přidejte osobní poznámku:" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" +msgstr "" + +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "Kontakt nemohl být přidán." + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "Neplatný požadavek." + +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "" + +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "Shoda profilu" + +#: src/Module/Contact/Profile.php:140 +msgid "Failed to update contact record." +msgstr "Nepodařilo se aktualizovat kontakt." + +#: src/Module/Contact/Profile.php:190 +msgid "Contact has been unblocked" +msgstr "Kontakt byl odblokován" + +#: src/Module/Contact/Profile.php:194 +msgid "Contact has been blocked" +msgstr "Kontakt byl zablokován" + +#: src/Module/Contact/Profile.php:206 +msgid "Contact has been unignored" +msgstr "Kontakt přestal být ignorován" + +#: src/Module/Contact/Profile.php:210 +msgid "Contact has been ignored" +msgstr "Kontakt bude ignorován" + +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:254 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Jste vzájemní přátelé s uživatelem %s" + +#: src/Module/Contact/Profile.php:255 +#, php-format +msgid "You are sharing with %s" +msgstr "Sdílíte s uživatelem %s" + +#: src/Module/Contact/Profile.php:256 +#, php-format +msgid "%s is sharing with you" +msgstr "%s s vámi sdílí" + +#: src/Module/Contact/Profile.php:272 +msgid "Private communications are not available for this contact." +msgstr "Soukromá komunikace není dostupná pro tento kontakt." + +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "" + +#: src/Module/Contact/Profile.php:285 +msgid "Never" +msgstr "Nikdy" + +#: src/Module/Contact/Profile.php:288 +msgid "(Update was not successful)" +msgstr "(Aktualizace nebyla úspěšná)" + +#: src/Module/Contact/Profile.php:288 +msgid "(Update was successful)" +msgstr "(Aktualizace byla úspěšná)" + +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 +msgid "Suggest friends" +msgstr "Navrhnout přátele" + +#: src/Module/Contact/Profile.php:294 +#, php-format +msgid "Network type: %s" +msgstr "Typ sítě: %s" + +#: src/Module/Contact/Profile.php:299 +msgid "Communications lost with this contact!" +msgstr "Komunikace s tímto kontaktem byla ztracena!" + +#: src/Module/Contact/Profile.php:305 +msgid "Fetch further information for feeds" +msgstr "Načíst další informace pro kanál" + +#: src/Module/Contact/Profile.php:307 +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 "Načíst informace jako obrázky náhledu, nadpis a popisek z položky kanálu. Toto můžete aktivovat, pokud kanál neobsahuje moc textu. Klíčová slova jsou vzata z hlavičky meta v položce kanálu a jsou zveřejněna jako hashtagy." + +#: src/Module/Contact/Profile.php:310 +msgid "Fetch information" +msgstr "Načíst informace" + +#: src/Module/Contact/Profile.php:311 +msgid "Fetch keywords" +msgstr "Načíst klíčová slova" + +#: src/Module/Contact/Profile.php:312 +msgid "Fetch information and keywords" +msgstr "Načíst informace a klíčová slova" + +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 +msgid "No mirroring" +msgstr "Žádné zrcadlení" + +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 +msgid "Mirror as my own posting" +msgstr "Zrcadlit jako mé vlastní příspěvky" + +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 +msgid "Native reshare" +msgstr "" + +#: src/Module/Contact/Profile.php:353 +msgid "Contact Information / Notes" +msgstr "Kontaktní informace / poznámky" + +#: src/Module/Contact/Profile.php:354 +msgid "Contact Settings" +msgstr "Nastavení kontaktů" + +#: src/Module/Contact/Profile.php:362 +msgid "Contact" +msgstr "Kontakt" + +#: src/Module/Contact/Profile.php:366 +msgid "Their personal note" +msgstr "Jejich osobní poznámka" + +#: src/Module/Contact/Profile.php:368 +msgid "Edit contact notes" +msgstr "Upravit poznámky kontaktu" + +#: src/Module/Contact/Profile.php:372 +msgid "Block/Unblock contact" +msgstr "Blokovat / Odblokovat kontakt" + +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 +msgid "Ignore contact" +msgstr "Ignorovat kontakt" + +#: src/Module/Contact/Profile.php:374 +msgid "View conversations" +msgstr "Zobrazit konverzace" + +#: src/Module/Contact/Profile.php:379 +msgid "Last update:" +msgstr "Poslední aktualizace:" + +#: src/Module/Contact/Profile.php:381 +msgid "Update public posts" +msgstr "Aktualizovat veřejné příspěvky" + +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 +msgid "Update now" +msgstr "Aktualizovat" + +#: src/Module/Contact/Profile.php:385 +msgid "Awaiting connection acknowledge" +msgstr "Čekám na potrvzení spojení" + +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "V současnosti zablokováno" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "V současnosti ignorováno" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "Aktuálně archivován" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "" + +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 +msgid "Hide this contact from others" +msgstr "Skrýt tento kontakt před ostatními" + +#: src/Module/Contact/Profile.php:394 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Odpovědi/oblíbení na vaše veřejné příspěvky mohou být stále viditelné" + +#: src/Module/Contact/Profile.php:395 +msgid "Notification for new posts" +msgstr "Oznámení o nových příspěvcích" + +#: src/Module/Contact/Profile.php:395 +msgid "Send a notification of every new post of this contact" +msgstr "Posílat oznámení o každém novém příspěvku tohoto kontaktu" + +#: src/Module/Contact/Profile.php:397 +msgid "Keyword Deny List" +msgstr "" + +#: src/Module/Contact/Profile.php:397 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno „Načíst informace a klíčová slova“. Oddělujte čárkami" + +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:139 +msgid "Actions" +msgstr "Akce" + +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "Stav" + +#: src/Module/Contact/Profile.php:423 +msgid "Mirror postings from this contact" +msgstr "Zrcadlení příspěvků od tohoto kontaktu" + +#: src/Module/Contact/Profile.php:425 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Označit tento kontakt jako „remote_self“, s tímto nastavením bude Friendica znovupublikovat všechny nové příspěvky od tohoto kontaktu." + +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" +msgstr "" + +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "" + +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "" + +#: src/Module/Contact/Profile.php:502 +msgid "Refetch contact data" +msgstr "Znovu načíst data kontaktu" + +#: src/Module/Contact/Profile.php:513 +msgid "Toggle Blocked status" +msgstr "Přepínat stav Blokováno" + +#: src/Module/Contact/Profile.php:521 +msgid "Toggle Ignored status" +msgstr "Přepínat stav Ignorováno" + +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" +msgstr "" + +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 +msgid "Revoke Follow" +msgstr "" + +#: src/Module/Contact/Profile.php:538 +msgid "Revoke the follow from this contact" +msgstr "" + +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "" + +#: src/Module/Contact/Revoke.php:63 +msgid "Unknown contact." +msgstr "" + +#: src/Module/Contact/Revoke.php:77 +msgid "Contact is being deleted." +msgstr "" + +#: src/Module/Contact/Revoke.php:91 +msgid "Follow was successfully revoked." +msgstr "" + +#: src/Module/Contact/Revoke.php:107 +msgid "" +"Do you really want to revoke this contact's follow? This cannot be undone " +"and they will have to manually follow you back again." +msgstr "" + +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "Yes" +msgstr "Ano" + +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin." + +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "Tento kontakt nesledujete." + +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "Zrušení sledování není aktuálně na Vaši síti podporováno." + +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "Odpojit se/Zrušit sledování" + +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "" + +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "" + +#: src/Module/Conversation/Channel.php:121 +#: src/Module/Conversation/Community.php:125 src/Module/Search/Index.php:152 +#: src/Module/Search/Index.php:194 +msgid "No results." +msgstr "Žádné výsledky." + +#: src/Module/Conversation/Channel.php:159 +msgid "Channel not available." +msgstr "" + +#: src/Module/Conversation/Community.php:91 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "Tento komunitní proud ukazuje všechny veřejné příspěvky, které tento server přijme. Nemusí odrážet názory uživatelů serveru." + +#: src/Module/Conversation/Community.php:179 +msgid "Community option not available." +msgstr "Možnost komunity není dostupná." + +#: src/Module/Conversation/Community.php:195 +msgid "Not available." +msgstr "Není k dispozici." + +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "" + +#: src/Module/Conversation/Network.php:222 +#, php-format +msgid "Circle: %s" +msgstr "" + +#: src/Module/Conversation/Network.php:317 +msgid "Network feed not available." +msgstr "" + +#: src/Module/Conversation/Timeline.php:158 +msgid "Own Contacts" +msgstr "" + +#: src/Module/Conversation/Timeline.php:162 +msgid "Include" +msgstr "" + +#: src/Module/Conversation/Timeline.php:163 +msgid "Hide" +msgstr "" + +#: src/Module/Credits.php:44 +msgid "Credits" +msgstr "Poděkování" + +#: 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 "Friendica je komunitní projekt, který by nebyl možný bez pomoci mnoha lidí. Zde je seznam těch, kteří přispěli ke kódu nebo k překladu Friendica. Děkujeme všem!" + +#: src/Module/Debug/ActivityPubConversion.php:53 +msgid "Formatted" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:65 +msgid "Activity" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:117 +msgid "Object data" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:124 +msgid "Result Item" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Chyba" +msgstr[1] "Chyby" +msgstr[2] "Chyb" +msgstr[3] "Chyb" + +#: src/Module/Debug/ActivityPubConversion.php:138 +msgid "Source activity" +msgstr "" + +#: src/Module/Debug/Babel.php:51 +msgid "Source input" +msgstr "Zdrojový vstup" + +#: 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 (hrubé HTML)" + +#: src/Module/Debug/Babel.php:68 +msgid "BBCode::convert (hex)" +msgstr "" + +#: 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 "" + +#: 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 "Tělo položky" + +#: src/Module/Debug/Babel.php:119 +msgid "Item Tags" +msgstr "Štítky položky" + +#: src/Module/Debug/Babel.php:125 +msgid "PageInfo::appendToBody" +msgstr "" + +#: src/Module/Debug/Babel.php:130 +msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:134 +msgid "PageInfo::appendToBody => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:141 +msgid "Source input (Diaspora format)" +msgstr "Zdrojový vstup (formát Diaspora)" + +#: src/Module/Debug/Babel.php:150 +msgid "Source input (Markdown)" +msgstr "" + +#: src/Module/Debug/Babel.php:156 +msgid "Markdown::convert (raw HTML)" +msgstr "Markdown::convert (hrubé 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 "Hrubý HTML vstup" + +#: src/Module/Debug/Babel.php:179 +msgid "HTML Input" +msgstr "HTML vstup" + +#: src/Module/Debug/Babel.php:186 +msgid "HTML Purified (raw)" +msgstr "" + +#: src/Module/Debug/Babel.php:191 +msgid "HTML Purified (hex)" +msgstr "" + +#: src/Module/Debug/Babel.php:196 +msgid "HTML Purified" +msgstr "" + +#: 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 (hrubé 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 (kompaktní)" + +#: src/Module/Debug/Babel.php:255 +msgid "Decoded post" +msgstr "" + +#: src/Module/Debug/Babel.php:276 +msgid "Post array before expand entities" +msgstr "" + +#: src/Module/Debug/Babel.php:283 +msgid "Post converted" +msgstr "" + +#: src/Module/Debug/Babel.php:288 +msgid "Converted body" +msgstr "" + +#: src/Module/Debug/Babel.php:294 +msgid "Twitter addon is absent from the addon/ folder." +msgstr "" + +#: src/Module/Debug/Babel.php:304 +msgid "Babel Diagnostic" +msgstr "" + +#: src/Module/Debug/Babel.php:305 +msgid "Source text" +msgstr "Zdrojový text" + +#: 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 "" + +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:177 +msgid "You must be logged in to use this module" +msgstr "Pro používání tohoto modulu musíte být přihlášen/a" + +#: src/Module/Debug/Feed.php:77 +msgid "Source URL" +msgstr "Zdrojová adresa URL" + +#: src/Module/Debug/Localtime.php:49 +msgid "Time Conversion" +msgstr "Časový převod" + +#: src/Module/Debug/Localtime.php:50 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica poskytuje tuto službu ke sdílení událostí s ostatními sítěmi a přáteli v neznámých časových pásmech" + +#: src/Module/Debug/Localtime.php:51 +#, php-format +msgid "UTC time: %s" +msgstr "UTC čas: %s" + +#: src/Module/Debug/Localtime.php:54 +#, php-format +msgid "Current timezone: %s" +msgstr "Aktuální časové pásmo: %s" + +#: src/Module/Debug/Localtime.php:58 +#, php-format +msgid "Converted localtime: %s" +msgstr "Převedený místní čas : %s" + +#: src/Module/Debug/Localtime.php:62 +msgid "Please select your timezone:" +msgstr "Prosím, vyberte své časové pásmo:" + +#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +msgid "Only logged in users are permitted to perform a probing." +msgstr "Pouze přihlášení uživatelé mohou zkoušet adresy." + +#: src/Module/Debug/Probe.php:52 +msgid "Probe Diagnostic" +msgstr "" + +#: src/Module/Debug/Probe.php:53 +msgid "Output" +msgstr "" + +#: src/Module/Debug/Probe.php:56 +msgid "Lookup address" +msgstr "Najít adresu" + +#: src/Module/Debug/WebFinger.php:50 +msgid "Webfinger Diagnostic" +msgstr "" + +#: src/Module/Debug/WebFinger.php:52 +msgid "Lookup address:" +msgstr "" + +#: src/Module/Delegation.php:110 +#, php-format +msgid "You are now logged in as %s" +msgstr "" + +#: src/Module/Delegation.php:142 +msgid "Switch between your accounts" +msgstr "" + +#: src/Module/Delegation.php:143 +msgid "Manage your accounts" +msgstr "" + +#: src/Module/Delegation.php:144 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Přepínání mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí vaše detaily účtu, nebo kterým jste přidělil/a oprávnění nastavovat přístupová práva." + +#: src/Module/Delegation.php:145 +msgid "Select an identity to manage: " +msgstr "Vyberte identitu ke spravování: " + +#: src/Module/Directory.php:74 +msgid "No entries (some entries may be hidden)." +msgstr "Žádné záznamy (některé položky mohou být skryty)." + +#: src/Module/Directory.php:90 +msgid "Find on this site" +msgstr "Najít na tomto webu" + +#: src/Module/Directory.php:92 +msgid "Results for:" +msgstr "Výsledky pro:" + +#: src/Module/Directory.php:94 +msgid "Site Directory" +msgstr "Adresář serveru" + +#: src/Module/Filer/RemoveTag.php:105 +msgid "Item was not deleted" +msgstr "" + +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "" + +#: src/Module/Filer/SaveTag.php:73 +msgid "- select -" +msgstr "- vyberte -" + +#: src/Module/FriendSuggest.php:82 +msgid "Suggested contact not found." +msgstr "Navrhovaný kontakt nenalezen." + +#: src/Module/FriendSuggest.php:100 +msgid "Friend suggestion sent." +msgstr "Návrh přátelství odeslán. " + +#: src/Module/FriendSuggest.php:137 +msgid "Suggest Friends" +msgstr "Navrhnout přátele" + +#: src/Module/FriendSuggest.php:140 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Navrhnout přítele pro uživatele %s" + +#: src/Module/Friendica.php:82 +msgid "Installed addons/apps:" +msgstr "Nainstalované doplňky/aplikace:" + +#: src/Module/Friendica.php:87 +msgid "No installed addons/apps" +msgstr "Žádne nainstalované doplňky/aplikace" + +#: src/Module/Friendica.php:92 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "Přečtěte si o Podmínkách používání tohoto serveru." + +#: src/Module/Friendica.php:99 +msgid "On this server the following remote servers are blocked." +msgstr "Na tomto serveru jsou zablokovány následující vzdálené servery." + +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +msgid "Reason for the block" +msgstr "Důvody pro zablokování" + +#: src/Module/Friendica.php:104 +msgid "Download this list in CSV format" +msgstr "" + +#: src/Module/Friendica.php:118 +#, 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 "Tohle je Friendica, verze %s, běžící na webové adrese %s. Verze databáze je %s, verze post update je %s." + +#: src/Module/Friendica.php:123 +msgid "" +"Please visit Friendi.ca to learn more " +"about the Friendica project." +msgstr "Pro více informací o projektu Friendica, prosím, navštivte stránku Friendi.ca" + +#: src/Module/Friendica.php:124 +msgid "Bug reports and issues: please visit" +msgstr "Pro hlášení chyb a námětů na změny prosím navštivte" + +#: src/Module/Friendica.php:124 +msgid "the bugtracker at github" +msgstr "sledování chyb na GitHubu" + +#: src/Module/Friendica.php:125 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +msgstr "Návrhy, pochvaly atd. prosím posílejte na adresu „info“ zavináč „friendi“-tečka-„ca“" + +#: src/Module/HCard.php:45 +msgid "No profile" +msgstr "Žádný profil" + +#: src/Module/HTTPException/MethodNotAllowed.php:31 +msgid "Method Not Allowed." +msgstr "" + +#: src/Module/Help.php:60 +msgid "Help:" +msgstr "Nápověda:" + +#: src/Module/Home.php:63 +#, php-format +msgid "Welcome to %s" +msgstr "Vítejte na %s" + +#: src/Module/Install.php:189 +msgid "Friendica Communications Server - Setup" +msgstr "Komunikační server Friendica - Nastavení" + +#: src/Module/Install.php:200 +msgid "System check" +msgstr "Zkouška systému" + +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 +msgid "Requirement not satisfied" +msgstr "" + +#: src/Module/Install.php:203 +msgid "Optional requirement not satisfied" +msgstr "" + +#: src/Module/Install.php:204 +msgid "OK" +msgstr "" + +#: src/Module/Install.php:208 +msgid "Next" +msgstr "Dále" + +#: src/Module/Install.php:209 +msgid "Check again" +msgstr "Vyzkoušet znovu" + +#: src/Module/Install.php:222 +msgid "Base settings" +msgstr "Základní nastavení" + +#: src/Module/Install.php:224 +msgid "Base path to installation" +msgstr "Základní cesta k instalaci" + +#: src/Module/Install.php:226 +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 "Pokud systém nemůže detekovat správnou cestu k Vaší instalaci, zde zadejte jinou cestu. Toto nastavení by mělo být nastaveno pouze, pokud používáte omezený systém a symbolické odkazy ke kořenové složce webu." + +#: src/Module/Install.php:229 +msgid "The Friendica system URL" +msgstr "" + +#: src/Module/Install.php:231 +msgid "" +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." +msgstr "" + +#: src/Module/Install.php:242 +msgid "Database connection" +msgstr "Databázové spojení" + +#: src/Module/Install.php:243 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Pro instalaci Friendica potřebujeme znát připojení k vaší databázi." + +#: src/Module/Install.php:244 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru." + +#: src/Module/Install.php:245 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním." + +#: src/Module/Install.php:252 +msgid "Database Server Name" +msgstr "Jméno databázového serveru" + +#: src/Module/Install.php:257 +msgid "Database Login Name" +msgstr "Přihlašovací jméno k databázi" + +#: src/Module/Install.php:263 +msgid "Database Login Password" +msgstr "Heslo k databázovému účtu " + +#: src/Module/Install.php:265 +msgid "For security reasons the password must not be empty" +msgstr "Z bezpečnostních důvodů nesmí být heslo prázdné." + +#: src/Module/Install.php:268 +msgid "Database Name" +msgstr "Jméno databáze" + +#: src/Module/Install.php:272 src/Module/Install.php:300 +msgid "Please select a default timezone for your website" +msgstr "Prosím, vyberte výchozí časové pásmo pro váš server" + +#: src/Module/Install.php:287 +msgid "Site settings" +msgstr "Nastavení webu" + +#: src/Module/Install.php:295 +msgid "Site administrator email address" +msgstr "E-mailová adresa administrátora webu" + +#: src/Module/Install.php:297 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Vaše e-mailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní." + +#: src/Module/Install.php:304 +msgid "System Language:" +msgstr "Systémový jazyk" + +#: src/Module/Install.php:306 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "Nastavte si výchozí jazyk pro vaše instalační rozhraní Friendica a pro odesílání e-mailů." + +#: src/Module/Install.php:318 +msgid "Your Friendica site database has been installed." +msgstr "Databáze vašeho serveru Friendica byla nainstalována." + +#: src/Module/Install.php:328 +msgid "Installation finished" +msgstr "Instalace dokončena" + +#: src/Module/Install.php:348 +msgid "

    What next

    " +msgstr "

    Co dál

    " + +#: src/Module/Install.php:349 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"worker." +msgstr "DŮLEŽITÉ: Budete si muset [manuálně] nastavit naplánovaný úkol pro pracovníka." + +#: src/Module/Install.php:352 +#, 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 "Přejděte k registrační stránce vašeho nového serveru Friendica a zaregistrujte se jako nový uživatel. Nezapomeňte použít stejný e-mail, který jste zadal/a jako administrátorský e-mail. To vám umožní navštívit panel pro administraci stránky." + +#: src/Module/Invite.php:57 +msgid "Total invitation limit exceeded." +msgstr "Celkový limit pozvánek byl překročen" + +#: src/Module/Invite.php:82 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : není platná e-mailová adresa." + +#: src/Module/Invite.php:108 +msgid "Please join us on Friendica" +msgstr "Prosím přidejte se k nám na Friendica" + +#: src/Module/Invite.php:117 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limit pozvánek byl překročen. Prosím kontaktujte administrátora vaší stránky." + +#: src/Module/Invite.php:121 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Doručení zprávy se nezdařilo." + +#: src/Module/Invite.php:125 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d zpráva odeslána." +msgstr[1] "%d zprávy odeslány." +msgstr[2] "%d zprávy odesláno." +msgstr[3] "%d zpráv odesláno." + +#: src/Module/Invite.php:143 +msgid "You have no more invitations available" +msgstr "Nemáte k dispozici žádné další pozvánky" + +#: src/Module/Invite.php:150 +#, 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 "Navštiv %s pro seznam veřejných serverů, na kterých se můžeš přidat. Členové Friendica na jiných serverech se mohou spojit mezi sebou, jakožto i se členy mnoha dalších sociálních sítí." + +#: src/Module/Invite.php:152 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "K přijetí této pozvánky prosím navštivte a registrujte se na %s nebo na kterémkoliv jiném veřejném serveru Friendica." + +#: src/Module/Invite.php:153 +#, 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 "Stránky Friendica jsou navzájem propojené a vytváří tak obrovský sociální web s dúrazem na soukromí, kterou vlastní a kontrojují její členové, Mohou se také připojit k mnoha tradičním socilním sítím. Navštivte %s pro seznam alternativních serverů Friendica, ke kterým se můžete přidat." + +#: src/Module/Invite.php:157 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy." + +#: src/Module/Invite.php:160 +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks." +msgstr "Stránky Friendica jsou navzájem propojené a vytváří tak obrovský sociální web s dúrazem na soukromí, kterou vlastní a kontrolují její členové. Mohou se také připojit k mnoha tradičním sociálním sítím." + +#: src/Module/Invite.php:159 +#, php-format +msgid "To accept this invitation, please visit and register at %s." +msgstr "Pokud chcete tuto pozvánku přijmout, prosím navštivte %s a registrujte se tam." + +#: src/Module/Invite.php:167 +msgid "Send invitations" +msgstr "Poslat pozvánky" + +#: src/Module/Invite.php:168 +msgid "Enter email addresses, one per line:" +msgstr "Zadejte e-mailové adresy, jednu na řádek:" + +#: src/Module/Invite.php:172 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Jsi srdečně pozván/a se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální web." + +#: src/Module/Invite.php:174 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Budeš muset zadat tento pozvánkový kód: $invite_code" + +#: src/Module/Invite.php:174 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Jakmile se zaregistruješ, prosím spoj se se mnou přes mou profilovu stránku na:" + +#: src/Module/Invite.php:176 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendi.ca" +msgstr "Pro více informací o projektu Friendica a proč si myslím, že je důležitý, prosím navštiv http://friendi.ca" + +#: src/Module/Item/Compose.php:85 +msgid "Please enter a post body." +msgstr "" + +#: src/Module/Item/Compose.php:98 +msgid "This feature is only available with the frio theme." +msgstr "" + +#: src/Module/Item/Compose.php:122 +msgid "Compose new personal note" +msgstr "Napsat novou osobní poznámku" + +#: src/Module/Item/Compose.php:131 +msgid "Compose new post" +msgstr "Napsat nový příspěvek" + +#: src/Module/Item/Compose.php:187 +msgid "Visibility" +msgstr "" + +#: src/Module/Item/Compose.php:203 +msgid "Clear the location" +msgstr "" + +#: src/Module/Item/Compose.php:204 +msgid "Location services are unavailable on your device" +msgstr "" + +#: src/Module/Item/Compose.php:205 +msgid "" +"Location services are disabled. Please check the website's permissions on " +"your device" +msgstr "" + +#: src/Module/Item/Compose.php:211 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "" + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "Proud pro tuto položku je nedostupný." + +#: src/Module/Item/Follow.php:51 +msgid "Unable to follow this item." +msgstr "" + +#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +msgid "System down for maintenance" +msgstr "Systém vypnut z důvodů údržby" + +#: 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 "" + +#: src/Module/Manifest.php:40 +msgid "A Decentralized Social Network" +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Soubory" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload" +msgstr "Nahrát" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Omlouváme se, možná je váš soubor větší než je povolené maximum dle nastavení PHP" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "Nebo - nenahrával/a jste prázdný soubor?" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Velikost souboru přesáhla limit %s" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "Nahrání souboru se nezdařilo." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:68 +msgid "Unable to process image." +msgstr "Obrázek není možné zprocesovat" + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:95 +msgid "Image upload failed." +msgstr "Nahrání obrázku selhalo." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "Normální stránka účtu" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "Propagační stránka" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "Stránka s automatickými přátely" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "Osobní stránka" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "Stránka organizace" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "Zpravodajská stránka" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "Přeposílací server" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s kontakt odblokován" +msgstr[1] "%s kontakty odblokovány" +msgstr[2] "%s kontaktu odblokováno" +msgstr[3] "%s kontaktů odblokováno" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "Blokované vzdálené kontakty" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "Tato stránka vám umožňuje zabránit jakýmkoliv zprávám ze vzdáleného kontaktu, aby se k vašemu serveru dostaly." + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "Zablokovat vzdálený kontakt" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "Vybrat vše" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "nevybrat žádný" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "Žádný vzdálený kontakt není na tomto serveru zablokován." + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "Zablokované vzdálené kontakty" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "Zablokovat nový vzdálený kontakt" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "Fotka" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "Důvod" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "Celkem %s zablokovaný kontakt" +msgstr[1] "Celkem %s zablokované kontakty" +msgstr[2] "Celkem %s zablokovaného kontaktu" +msgstr[3] "Celkem %s zablokovaných kontaktů" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "Adresa URL vzdáleného kontaktu k zablokování." + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "Důvod blokace" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "Důvod zablokování" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +msgid "Blocked server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "Zaškrtnutím odstraníte tuto položku z blokovacího seznamu" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "Uložit změny do blokovacího seznamu" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "Aktuální položky v bokovacím seznamu" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "Položka označená ke smazání" + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "Smazat tuto položku" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "Na této stránce můžete smazat položku z vašeho serveru. Pokud je položkou příspěvek nejvyššího stupně, bude smazáno celé vlákno." + +#: src/Module/Moderation/Item/Delete.php:65 +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 "Budete muset znát číslo GUID položky. Můžete jej najít např. v adrese URL. Poslední část adresy http://priklad.cz/display/123456 je GUID, v tomto případě 123456" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "Číslo GUID položky, kterou chcete smazat" + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "Typ" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Položka nenalezena" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "Číslo GUID položky" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "" + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "" + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Normální účet" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "Účet s automatickými sledujícími" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Účet s automatickými přáteli" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Blogovací účet" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Registrovaní uživatelé" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Čekající registrace" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "%s uživatel blokován" +msgstr[1] "%s uživatelé blokování" +msgstr[2] "%s uživatele blokováno" +msgstr[3] "%s uživatelů blokováno" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "Nemůžete odstranit sebe sama" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s uživatel smazán" +msgstr[1] "%s uživatelů smazáno" +msgstr[2] "%s uživatele smazáno" +msgstr[3] "%s uživatelů smazáno" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "Uživatel „%s“ smazán" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "Uživatel „%s“ zablokován" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Datum registrace" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "Datum posledního přihlášení" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "Uživatel zablokován" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "Administrátor webu" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "Účtu vypršela platnost" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\nOpravdu chcete pokračovat?" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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 "Uživatel {0} bude smazán!\\n\\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu chcete pokračovat?" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "%s uživatel odblokován" +msgstr[1] "%s uživatelé odblokováni" +msgstr[2] "%s uživatele odblokováno" +msgstr[3] "%s uživatelů odblokováno" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "Uživatel „%s“ odblokován" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "Nový uživatel" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "Přidat uživatele" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "Jméno nového uživatele." + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "Přezdívka" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "Přezdívka nového uživatele." + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "Emailová adresa nového uživatele." + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "Trvalé smazání" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "Uživatel čekající na trvalé smazání" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Účet schválen." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Datum požadavku" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "Žádné registrace." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "Poznámka od uživatele" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Odmítnout" + +#: src/Module/Notifications/Introductions.php:99 +msgid "Show Ignored Requests" +msgstr "Zobrazit ignorované požadavky" + +#: src/Module/Notifications/Introductions.php:99 +msgid "Hide Ignored Requests" +msgstr "Skrýt ignorované požadavky" + +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 +msgid "Notification type:" +msgstr "Typ oznámení:" + +#: src/Module/Notifications/Introductions.php:118 +msgid "Suggested by:" +msgstr "Navrhl/a:" + +#: src/Module/Notifications/Introductions.php:143 +msgid "Claims to be known to you: " +msgstr "Vaši údajní známí: " + +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "No" +msgstr "Ne" + +#: src/Module/Notifications/Introductions.php:152 +msgid "Shall your connection be bidirectional or not?" +msgstr "Má vaše spojení být obousměrné, nebo ne?" + +#: src/Module/Notifications/Introductions.php:153 +#, 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 "Přijetí uživatele %s jako přítele dovolí uživateli %s odebírat Vaše příspěvky a Vy budete také přijímat aktualizace od něj ve Vašem kanále." + +#: src/Module/Notifications/Introductions.php:154 +#, 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 "Přijetí uživatele %s jako odběratele mu dovolí odebírat Vaše příspěvky, ale nebudete od něj přijímat aktualizace ve Vašem kanále." + +#: src/Module/Notifications/Introductions.php:156 +msgid "Friend" +msgstr "Přítel" + +#: src/Module/Notifications/Introductions.php:157 +msgid "Subscriber" +msgstr "Odběratel" + +#: src/Module/Notifications/Introductions.php:216 +msgid "No introductions." +msgstr "Žádné představení." + +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 +#, php-format +msgid "No more %s notifications." +msgstr "Žádná další %s oznámení" + +#: src/Module/Notifications/Notification.php:135 +msgid "You must be logged in to show this page." +msgstr "" + +#: src/Module/Notifications/Notifications.php:66 +msgid "Network Notifications" +msgstr "Síťová oznámení" + +#: src/Module/Notifications/Notifications.php:72 +msgid "System Notifications" +msgstr "Systémová oznámení" + +#: src/Module/Notifications/Notifications.php:78 +msgid "Personal Notifications" +msgstr "Osobní oznámení" + +#: src/Module/Notifications/Notifications.php:84 +msgid "Home Notifications" +msgstr "Oznámení na domovské stránce" + +#: src/Module/Notifications/Notifications.php:140 +msgid "Show unread" +msgstr "Zobrazit nepřečtené" + +#: src/Module/Notifications/Ping.php:246 +msgid "{0} requested registration" +msgstr "{0} požaduje registraci" + +#: src/Module/Notifications/Ping.php:255 +#, php-format +msgid "{0} and %d others requested registration" +msgstr "" + +#: src/Module/OAuth/Acknowledge.php:51 +msgid "Authorize application connection" +msgstr "Povolit připojení aplikacím" + +#: src/Module/OAuth/Acknowledge.php:53 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?" + +#: src/Module/OAuth/Authorize.php:54 +msgid "Unsupported or missing response type" +msgstr "" + +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +msgid "Incomplete request data" +msgstr "" + +#: 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:83 +msgid "Invalid data or unknown client" +msgstr "" + +#: src/Module/OAuth/Token.php:108 +msgid "Unsupported or missing grant type" +msgstr "" + +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "Znovu Vás registruji ke kontaktům OStatus" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "Toto okno nechte otevřené až do konce." + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "Nebyl poskytnut žádný kontakt." + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "Nelze načíst informace pro kontakt." + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "Nelze načíst přátele pro kontakt." + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Hotovo" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "úspěch" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "selhalo" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "ignorován" + +#: src/Module/PermissionTooltip.php:49 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "" + +#: src/Module/PermissionTooltip.php:79 +msgid "Model not found" +msgstr "" + +#: src/Module/PermissionTooltip.php:94 +msgid "Unlisted" +msgstr "" + +#: src/Module/PermissionTooltip.php:112 +msgid "Remote privacy information not available." +msgstr "Vzdálené informace o soukromí nejsou k dispozici." + +#: src/Module/PermissionTooltip.php:121 +msgid "Visible to:" +msgstr "Viditelné pro:" + +#: src/Module/PermissionTooltip.php:204 +#, php-format +msgid "Collection (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:208 +#, php-format +msgid "Followers (%s)" +msgstr "Sledující (%s)" + +#: src/Module/PermissionTooltip.php:227 +#, php-format +msgid "%d more" +msgstr "" + +#: src/Module/PermissionTooltip.php:231 +#, php-format +msgid "To: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:234 +#, php-format +msgid "CC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:237 +#, php-format +msgid "BCC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "" + +#: src/Module/Photo.php:130 +msgid "The Photo is not available." +msgstr "" + +#: src/Module/Photo.php:155 +#, php-format +msgid "The Photo with id %s is not available." +msgstr "" + +#: src/Module/Photo.php:192 +#, php-format +msgid "Invalid external resource with url %s." +msgstr "" + +#: src/Module/Photo.php:194 +#, php-format +msgid "Invalid photo with id %s." +msgstr "Neplatná fotka s ID %s." + +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "" + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Upravit příspěvek" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "webový odkaz" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Vložit odkaz na video" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "odkaz na video" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Vložit odkaz na audio" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "odkaz na audio" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Odebrat štítek položky" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Vyberte štítek k odebrání: " + +#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Odstranit" + +#: src/Module/Profile/Contacts.php:159 +msgid "No contacts." +msgstr "Žádné kontakty." + +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "Časová osa uživatele %s" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "Příspěvky uživatele %s" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "Komentáře uživatele %s" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:59 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Velikost obrázku překročila limit %s" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "Nahrávání obrázku nebylo dokončeno, zkuste to prosím znovu" + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "Chybí soubor obrázku" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "Server v tuto chvíli nemůže akceptovat nové nahrané soubory, prosím kontaktujte vašeho administrátora" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "Soubor obrázku je prázdný." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "Zobrazit album" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +msgid "Profile not found." +msgstr "Profil nenalezen." + +#: src/Module/Profile/Profile.php:158 +#, php-format +msgid "" +"You're currently viewing your profile as %s Cancel" +msgstr "" + +#: src/Module/Profile/Profile.php:167 +msgid "Full Name:" +msgstr "Celé jméno:" + +#: src/Module/Profile/Profile.php:172 +msgid "Member since:" +msgstr "Členem od:" + +#: src/Module/Profile/Profile.php:178 +msgid "j F, Y" +msgstr "j F, Y" + +#: src/Module/Profile/Profile.php:179 +msgid "j F" +msgstr "j F" + +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 +msgid "Birthday:" +msgstr "Narozeniny:" + +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +msgid "Age: " +msgstr "Věk: " + +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#, php-format +msgid "%d year old" +msgid_plural "%d years old" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "Popis:" + +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "" + +#: src/Module/Profile/Profile.php:273 +msgid "View profile as:" +msgstr "" + +#: src/Module/Profile/Profile.php:290 +msgid "View as" +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "Profil není k dispozici." + +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "Neplatný odkaz" + +#: src/Module/Profile/RemoteFollow.php:95 +msgid "The provided profile link doesn't seem to be valid" +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:100 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "Vzdálený odběr nemůže být na vaší síti proveden. Prosím, přihlaste se k odběru přímo na vašem systému." + +#: src/Module/Profile/RemoteFollow.php:128 +msgid "Friend/Connection Request" +msgstr "Požadavek o přátelství/spojení" + +#: src/Module/Profile/RemoteFollow.php:129 +#, 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 "" + +#: src/Module/Profile/RemoteFollow.php:130 +#, 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 "" + +#: src/Module/Profile/RemoteFollow.php:131 +msgid "Your Webfinger address or profile URL:" +msgstr "" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "" + +#: src/Module/Profile/Schedule.php:83 +msgid "Scheduled" +msgstr "" + +#: src/Module/Profile/Schedule.php:84 +msgid "Content" +msgstr "" + +#: src/Module/Profile/Schedule.php:85 +msgid "Remove post" +msgstr "" + +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "" + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Nebylo možné zjistit polohu vašeho domova." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "" + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena." + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů." + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "" + +#: src/Module/Register.php:84 +msgid "Only parent users can create additional accounts." +msgstr "" + +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to zítra znovu." + +#: src/Module/Register.php:116 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." msgstr "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknete na tlačítko „Zaregistrovat“." -#: src/Module/Register.php:84 +#: src/Module/Register.php:117 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky." -#: src/Module/Register.php:85 +#: src/Module/Register.php:118 msgid "Your OpenID (optional): " msgstr "Vaše OpenID (nepovinné): " -#: src/Module/Register.php:94 +#: src/Module/Register.php:127 msgid "Include your profile in member directory?" msgstr "Chcete zahrnout váš profil v adresáři členů?" -#: src/Module/Register.php:117 +#: src/Module/Register.php:148 msgid "Note for the admin" msgstr "Poznámka pro administrátora" -#: src/Module/Register.php:117 +#: src/Module/Register.php:148 msgid "Leave a message for the admin, why you want to join this node" msgstr "Zanechejte administrátorovi zprávu, proč se k tomuto serveru chcete připojit" -#: src/Module/Register.php:118 +#: src/Module/Register.php:149 msgid "Membership on this site is by invitation only." msgstr "Členství na tomto webu je pouze na pozvání." -#: src/Module/Register.php:119 +#: src/Module/Register.php:150 msgid "Your invitation code: " msgstr "Váš kód pozvánky: " -#: src/Module/Register.php:127 +#: src/Module/Register.php:158 msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " msgstr "Celé jméno (např. Jan Novák, skutečné či skutečně vypadající):" -#: src/Module/Register.php:128 +#: src/Module/Register.php:159 msgid "" "Your Email Address: (Initial information will be send there, so this has to " "be an existing address.)" msgstr "Vaše e-mailová adresa: (Budou sem poslány počáteční informace, musí to proto být existující adresa.)" -#: src/Module/Register.php:130 +#: src/Module/Register.php:160 +msgid "Please repeat your e-mail address:" +msgstr "" + +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 +msgid "New Password:" +msgstr "Nové heslo:" + +#: src/Module/Register.php:162 msgid "Leave empty for an auto generated password." msgstr "Ponechte prázdné pro automatické vygenerovaní hesla." -#: src/Module/Register.php:132 +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 +msgid "Confirm:" +msgstr "Potvrďte:" + +#: src/Module/Register.php:164 #, 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 "Vyberte si přezdívku pro váš profil. Musí začínat textovým znakem. Vaše profilová adresa na této stránce bude mít tvar „přezdívka@%s“." -#: src/Module/Register.php:133 +#: src/Module/Register.php:165 msgid "Choose a nickname: " msgstr "Vyberte přezdívku:" -#: src/Module/Register.php:142 +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Import" + +#: src/Module/Register.php:174 msgid "Import your profile to this friendica instance" msgstr "Importovat váš profil do této instance Friendica" -#: src/Module/Register.php:149 +#: src/Module/Register.php:181 msgid "Note: This node explicitly contains adult content" msgstr "Poznámka: Tento server explicitně obsahuje obsah pro dospělé" -#: src/Module/Register.php:242 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "Parent Password:" +msgstr "Rodičovské heslo:" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "Prosím vložte heslo rodičovského účtu k legitimizaci vašeho požadavku." + +#: src/Module/Register.php:212 +msgid "Password doesn't match." +msgstr "" + +#: src/Module/Register.php:218 +msgid "Please enter your password." +msgstr "" + +#: src/Module/Register.php:260 +msgid "You have entered too much information." +msgstr "" + +#: src/Module/Register.php:283 +msgid "Please enter the identical mail address in the second field." +msgstr "" + +#: src/Module/Register.php:310 +msgid "The additional account was created." +msgstr "" + +#: src/Module/Register.php:335 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Registrace byla úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce." -#: src/Module/Register.php:246 +#: src/Module/Register.php:342 #, php-format msgid "" "Failed to send email message. Here your accout details:
    login: %s
    " "password: %s

    You can change your password after login." msgstr "Nepovedlo se odeslat e-mailovou zprávu. Zde jsou detaily vašeho účtu:
    přihlašovací jméno: %s
    heslo: %s

    Své heslo si můžete změnit po přihlášení." -#: src/Module/Register.php:253 +#: src/Module/Register.php:348 msgid "Registration successful." msgstr "Registrace byla úspěšná." -#: src/Module/Register.php:258 +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 msgid "Your registration can not be processed." msgstr "Vaši registraci nelze zpracovat." -#: src/Module/Register.php:304 +#: src/Module/Register.php:363 +msgid "You have to leave a request note for the admin." +msgstr "" + +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "" + +#: src/Module/Register.php:395 msgid "Your registration is pending approval by the site owner." msgstr "Vaše registrace čeká na schválení vlastníkem serveru." -#: src/Module/Settings/TwoFactor/AppSpecific.php:36 -#: src/Module/Settings/TwoFactor/Recovery.php:34 -#: src/Module/Settings/TwoFactor/Verify.php:41 +#: src/Module/Search/Acl.php:73 +msgid "You must be logged in to use this module." +msgstr "" + +#: src/Module/Search/Index.php:69 +msgid "Only logged in users are permitted to perform a search." +msgstr "Pouze přihlášení uživatelé mohou prohledávat tento server." + +#: src/Module/Search/Index.php:89 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "Nepřihlášení uživatelé mohou vyhledávat pouze jednou za minutu." + +#: src/Module/Search/Index.php:205 +#, php-format +msgid "Items tagged with: %s" +msgstr "Položky označené štítkem: %s" + +#: src/Module/Search/Saved.php:59 +msgid "Search term was not saved." +msgstr "" + +#: src/Module/Search/Saved.php:62 +msgid "Search term already saved." +msgstr "" + +#: src/Module/Search/Saved.php:68 +msgid "Search term was not removed." +msgstr "" + +#: src/Module/Security/Login.php:123 +msgid "Create a New Account" +msgstr "Vytvořit nový účet" + +#: src/Module/Security/Login.php:142 +msgid "Your OpenID: " +msgstr "" + +#: src/Module/Security/Login.php:145 +msgid "" +"Please enter your username and password to add the OpenID to your existing " +"account." +msgstr "" + +#: src/Module/Security/Login.php:147 +msgid "Or login using OpenID: " +msgstr "Nebo se přihlaste pomocí OpenID: " + +#: src/Module/Security/Login.php:161 +msgid "Password: " +msgstr "Heslo: " + +#: src/Module/Security/Login.php:162 +msgid "Remember me" +msgstr "Pamatovat si mě" + +#: src/Module/Security/Login.php:171 +msgid "Forgot your password?" +msgstr "Zapomněl/a jste heslo?" + +#: src/Module/Security/Login.php:174 +msgid "Website Terms of Service" +msgstr "Podmínky používání stránky" + +#: src/Module/Security/Login.php:175 +msgid "terms of service" +msgstr "podmínky používání" + +#: src/Module/Security/Login.php:177 +msgid "Website Privacy Policy" +msgstr "Zásady soukromí serveru" + +#: src/Module/Security/Login.php:178 +msgid "privacy policy" +msgstr "zásady soukromí" + +#: src/Module/Security/Logout.php:84 +#: src/Module/Security/TwoFactor/SignOut.php:78 +#: src/Module/Security/TwoFactor/SignOut.php:86 +#: src/Module/Security/TwoFactor/SignOut.php:108 +#: src/Module/Security/TwoFactor/SignOut.php:115 +msgid "Logged out." +msgstr "Odhlášen." + +#: src/Module/Security/OpenID.php:54 +msgid "OpenID protocol error. No ID returned" +msgstr "" + +#: src/Module/Security/OpenID.php:90 +msgid "" +"Account not found. Please login to your existing account to add the OpenID " +"to it." +msgstr "" + +#: src/Module/Security/OpenID.php:92 +msgid "" +"Account not found. Please register a new account or login to your existing " +"account to add the OpenID to it." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 +msgid "Passwords do not match." +msgstr "Hasla se neshodují." + +#: src/Module/Security/PasswordTooLong.php:64 +msgid "Password does not need changing." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 +msgid "Password unchanged." +msgstr "Heslo nezměněno." + +#: src/Module/Security/PasswordTooLong.php:91 +msgid "Password Too Long" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:92 +msgid "" +"Since version 2022.09, we've realized that any password longer than 72 " +"characters is truncated during hashing. To prevent any confusion about this " +"behavior, please update your password to be fewer or equal to 72 characters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:93 +msgid "Update Password" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Current Password:" +msgstr "Stávající heslo:" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Your current password to confirm the changes" +msgstr "Vaše stávající heslo k potvrzení změn" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces and accentuated letters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 +msgid "Password length is limited to 72 characters." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:74 +#, php-format +msgid "Remaining recovery codes: %d" +msgstr "Zbývající záložní kódy: %d" + +#: src/Module/Security/TwoFactor/Recovery.php:80 +#: src/Module/Security/TwoFactor/Verify.php:77 +#: src/Module/Settings/TwoFactor/Verify.php:95 +msgid "Invalid code, please retry." +msgstr "Neplatný kód, prosím zkuste to znovu." + +#: src/Module/Security/TwoFactor/Recovery.php:99 +msgid "Two-factor recovery" +msgstr "Dvoufázové záložní kódy" + +#: src/Module/Security/TwoFactor/Recovery.php:100 +msgid "" +"

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

    " +msgstr "

    Pokud jste ztratil/a přístup k vašemu mobilnímu zařízení , můžete zadat jeden z vašich jednorázových záložních kódů.

    " + +#: src/Module/Security/TwoFactor/Recovery.php:101 +#, php-format +msgid "Don’t have your phone? Enter a two-factor recovery code" +msgstr "Nemáte svůj mobil? Zadejte dvoufázový záložní kód" + +#: src/Module/Security/TwoFactor/Recovery.php:102 +msgid "Please enter a recovery code" +msgstr "Prosím zadejte záložní kód" + +#: src/Module/Security/TwoFactor/Recovery.php:103 +msgid "Submit recovery code and complete login" +msgstr "Odeslat záložní kód a dokončit přihlášení" + +#: src/Module/Security/TwoFactor/SignOut.php:122 +msgid "Sign out of this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:123 +msgid "" +"

    If you trust this browser, you will not be asked for verification code " +"the next time you sign in.

    " +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:124 +msgid "Sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:126 +msgid "Trust and sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:96 +msgid "Couldn't save browser to Cookie." +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:141 +msgid "Trust this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:142 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:143 +msgid "Not now" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:144 +msgid "Don't trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:145 +msgid "Trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:97 +msgid "" +"

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

    " +msgstr "

    Otevřete na vašem zařízení aplikaci pro dvoufázové ověřování, získejte autentizační kód a ověřte svou identitu.

    " + +#: src/Module/Security/TwoFactor/Verify.php:100 +#, php-format +msgid "" +"If you do not have access to your authentication code you can use a two-factor recovery code." +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Please enter a code from your authentication app" +msgstr "Prosím zadejte kód z vaší autentizační aplikace" + +#: src/Module/Security/TwoFactor/Verify.php:102 +msgid "Verify code and complete login" +msgstr "Ověřit kód a dokončit přihlášení" + +#: src/Module/Settings/Account.php:96 +msgid "Please use a shorter name." +msgstr "" + +#: src/Module/Settings/Account.php:99 +msgid "Name too short." +msgstr "" + +#: src/Module/Settings/Account.php:108 +msgid "Wrong Password." +msgstr "" + +#: src/Module/Settings/Account.php:113 +msgid "Invalid email." +msgstr "Neplatný e-mail." + +#: src/Module/Settings/Account.php:117 +msgid "Cannot change to that email." +msgstr "Nelze změnit na tento e-mail." + +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 +msgid "Settings were not updated." +msgstr "" + +#: src/Module/Settings/Account.php:364 +msgid "Contact CSV file upload error" +msgstr "" + +#: src/Module/Settings/Account.php:383 +msgid "Importing Contacts done" +msgstr "" + +#: src/Module/Settings/Account.php:396 +msgid "Relocate message has been send to your contacts" +msgstr "Správa o změně umístění byla odeslána vašim kontaktům" + +#: src/Module/Settings/Account.php:413 +msgid "Unable to find your profile. Please contact your admin." +msgstr "Nelze najít Váš účet. Prosím kontaktujte vašeho administrátora." + +#: src/Module/Settings/Account.php:455 +msgid "Personal Page Subtypes" +msgstr "Podtypy osobních stránek" + +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" +msgstr "" + +#: src/Module/Settings/Account.php:466 +msgid "Account for a personal profile." +msgstr "Účet pro osobní profil." + +#: src/Module/Settings/Account.php:473 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "Účet pro organizaci, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“." + +#: src/Module/Settings/Account.php:480 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "Účet pro zpravodaje, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“." + +#: src/Module/Settings/Account.php:487 +msgid "Account for community discussions." +msgstr "Účet pro komunitní diskuze." + +#: src/Module/Settings/Account.php:494 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "Účet pro běžný osobní profil, který vyžaduje manuální potvrzení „Přátel“ a „Sledujících“." + +#: src/Module/Settings/Account.php:501 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "Účet pro veřejný profil, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“." + +#: src/Module/Settings/Account.php:508 +msgid "Automatically approves all contact requests." +msgstr "Automaticky potvrzuje všechny žádosti o přidání kontaktu." + +#: src/Module/Settings/Account.php:515 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "Účet pro populární profil, který automaticky potvrzuje požadavky o přidání kontaktu jako „Přátele“." + +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "" + +#: src/Module/Settings/Account.php:522 +msgid "Requires manual approval of contact requests." +msgstr "Vyžaduje manuální potvrzení požadavků o přidání kontaktu." + +#: src/Module/Settings/Account.php:531 +msgid "OpenID:" +msgstr "OpenID:" + +#: src/Module/Settings/Account.php:531 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Volitelné) Povolit tomuto OpenID přihlášení k tomuto účtu." + +#: src/Module/Settings/Account.php:539 +msgid "Publish your profile in your local site directory?" +msgstr "" + +#: src/Module/Settings/Account.php:539 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "Váš profil bude publikován v místním adresáři tohoto serveru. Vaše detaily o profilu mohou být veřejně viditelné v závislosti na systémových nastaveních." + +#: src/Module/Settings/Account.php:545 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "" + +#: src/Module/Settings/Account.php:558 +msgid "Account Settings" +msgstr "Nastavení účtu" + +#: src/Module/Settings/Account.php:559 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "Vaše adresa identity je „%s“ nebo „%s“." + +#: src/Module/Settings/Account.php:566 +msgid "Password Settings" +msgstr "Nastavení hesla" + +#: src/Module/Settings/Account.php:568 +msgid "Leave password fields blank unless changing" +msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte" + +#: src/Module/Settings/Account.php:570 +msgid "Password:" +msgstr "Heslo: " + +#: src/Module/Settings/Account.php:570 +msgid "Your current password to confirm the changes of the email address" +msgstr "" + +#: src/Module/Settings/Account.php:573 +msgid "Delete OpenID URL" +msgstr "" + +#: src/Module/Settings/Account.php:575 +msgid "Basic Settings" +msgstr "Základní nastavení" + +#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "" + +#: src/Module/Settings/Account.php:577 +msgid "Email Address:" +msgstr "E-mailová adresa:" + +#: src/Module/Settings/Account.php:578 +msgid "Your Timezone:" +msgstr "Vaše časové pásmo:" + +#: src/Module/Settings/Account.php:579 +msgid "Your Language:" +msgstr "Váš jazyk:" + +#: src/Module/Settings/Account.php:579 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Nastavte jazyk, který máme používat pro rozhraní Friendica a pro posílání e-mailů" + +#: src/Module/Settings/Account.php:580 +msgid "Default Post Location:" +msgstr "Výchozí poloha příspěvků:" + +#: src/Module/Settings/Account.php:581 +msgid "Use Browser Location:" +msgstr "Používat polohu dle prohlížeče:" + +#: src/Module/Settings/Account.php:583 +msgid "Security and Privacy Settings" +msgstr "Nastavení zabezpečení a soukromí" + +#: src/Module/Settings/Account.php:585 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximální počet požadavků o přátelství za den:" + +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 +msgid "(to prevent spam abuse)" +msgstr "(ay se zabránilo spamu)" + +#: src/Module/Settings/Account.php:587 +msgid "Allow your profile to be searchable globally?" +msgstr "" + +#: src/Module/Settings/Account.php:587 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "" + +#: src/Module/Settings/Account.php:588 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "" + +#: src/Module/Settings/Account.php:588 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "" +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "Make public posts unlisted" +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "" + +#: src/Module/Settings/Account.php:591 +msgid "Make all posted pictures accessible" +msgstr "" + +#: src/Module/Settings/Account.php:591 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "" + +#: src/Module/Settings/Account.php:592 +msgid "Allow friends to post to your profile page?" +msgstr "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?" + +#: src/Module/Settings/Account.php:592 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "Vaše kontakty mohou psát příspěvky na vaši profilovou zeď. Tyto příspěvky budou přeposílány vašim kontaktům." + +#: src/Module/Settings/Account.php:593 +msgid "Allow friends to tag your posts?" +msgstr "Povolit přátelům označovat vaše příspěvky?" + +#: src/Module/Settings/Account.php:593 +msgid "Your contacts can add additional tags to your posts." +msgstr "Vaše kontakty mohou přidávat k vašim příspěvkům dodatečné štítky." + +#: src/Module/Settings/Account.php:594 +msgid "Permit unknown people to send you private mail?" +msgstr "Povolit neznámým lidem vám zasílat soukromé zprávy?" + +#: src/Module/Settings/Account.php:594 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "Uživatelé sítě Friendica vám mohou posílat soukromé zprávy, i pokud nejsou ve vašich kontaktech." + +#: src/Module/Settings/Account.php:595 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum soukromých zpráv od neznámých lidí za den:" + +#: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "" + +#: src/Module/Settings/Account.php:598 +msgid "Default Post Permissions" +msgstr "Výchozí oprávnění pro příspěvek" + +#: src/Module/Settings/Account.php:602 +msgid "Expiration settings" +msgstr "" + +#: src/Module/Settings/Account.php:603 +msgid "Automatically expire posts after this many days:" +msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:" + +#: src/Module/Settings/Account.php:603 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány" + +#: src/Module/Settings/Account.php:604 +msgid "Expire posts" +msgstr "" + +#: src/Module/Settings/Account.php:604 +msgid "When activated, posts and comments will be expired." +msgstr "" + +#: src/Module/Settings/Account.php:605 +msgid "Expire personal notes" +msgstr "" + +#: src/Module/Settings/Account.php:605 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "" + +#: src/Module/Settings/Account.php:606 +msgid "Expire starred posts" +msgstr "" + +#: src/Module/Settings/Account.php:606 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "" + +#: src/Module/Settings/Account.php:607 +msgid "Only expire posts by others" +msgstr "" + +#: src/Module/Settings/Account.php:607 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "" + +#: src/Module/Settings/Account.php:610 +msgid "Notification Settings" +msgstr "Nastavení oznámení" + +#: src/Module/Settings/Account.php:611 +msgid "Send a notification email when:" +msgstr "Poslat oznámení e-mailem, když:" + +#: src/Module/Settings/Account.php:612 +msgid "You receive an introduction" +msgstr "obdržíte představení" + +#: src/Module/Settings/Account.php:613 +msgid "Your introductions are confirmed" +msgstr "jsou vaše představení potvrzena" + +#: src/Module/Settings/Account.php:614 +msgid "Someone writes on your profile wall" +msgstr "vám někdo napíše na vaši profilovou stránku" + +#: src/Module/Settings/Account.php:615 +msgid "Someone writes a followup comment" +msgstr "Vám někdo napíše následný komentář" + +#: src/Module/Settings/Account.php:616 +msgid "You receive a private message" +msgstr "obdržíte soukromou zprávu" + +#: src/Module/Settings/Account.php:617 +msgid "You receive a friend suggestion" +msgstr "obdržíte návrh přátelství" + +#: src/Module/Settings/Account.php:618 +msgid "You are tagged in a post" +msgstr "jste označen v příspěvku" + +#: src/Module/Settings/Account.php:620 +msgid "Create a desktop notification when:" +msgstr "" + +#: src/Module/Settings/Account.php:621 +msgid "Someone tagged you" +msgstr "" + +#: src/Module/Settings/Account.php:622 +msgid "Someone directly commented on your post" +msgstr "" + +#: src/Module/Settings/Account.php:623 +msgid "Someone liked your content" +msgstr "" + +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +msgid "Can only be enabled, when the direct comment notification is enabled." +msgstr "" + +#: src/Module/Settings/Account.php:624 +msgid "Someone shared your content" +msgstr "" + +#: src/Module/Settings/Account.php:625 +msgid "Someone commented in your thread" +msgstr "" + +#: src/Module/Settings/Account.php:626 +msgid "Someone commented in a thread where you commented" +msgstr "" + +#: src/Module/Settings/Account.php:627 +msgid "Someone commented in a thread where you interacted" +msgstr "" + +#: src/Module/Settings/Account.php:629 +msgid "Activate desktop notifications" +msgstr "Aktivovat desktopová oznámení" + +#: src/Module/Settings/Account.php:629 +msgid "Show desktop popup on new notifications" +msgstr "Zobrazit desktopové zprávy při nových oznámeních." + +#: src/Module/Settings/Account.php:633 +msgid "Text-only notification emails" +msgstr "Pouze textové oznamovací e-maily" + +#: src/Module/Settings/Account.php:635 +msgid "Send text only notification emails, without the html part" +msgstr "Posílat pouze textové oznamovací e-maily, bez HTML části." + +#: src/Module/Settings/Account.php:639 +msgid "Show detailled notifications" +msgstr "Zobrazit detailní oznámení" + +#: src/Module/Settings/Account.php:641 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "Ve výchozím nastavení jsou oznámení zhuštěné na jediné oznámení pro každou položku. Pokud je toto povolené, budou zobrazována všechna oznámení." + +#: src/Module/Settings/Account.php:645 +msgid "Show notifications of ignored contacts" +msgstr "" + +#: src/Module/Settings/Account.php:647 +msgid "" +"You don't see posts from ignored contacts. But you still see their comments." +" This setting controls if you want to still receive regular notifications " +"that are caused by ignored contacts or not." +msgstr "" + +#: src/Module/Settings/Account.php:650 +msgid "Advanced Account/Page Type Settings" +msgstr "Pokročilé nastavení účtu/stránky" + +#: src/Module/Settings/Account.php:651 +msgid "Change the behaviour of this account for special situations" +msgstr "Změnit chování tohoto účtu ve speciálních situacích" + +#: src/Module/Settings/Account.php:654 +msgid "Import Contacts" +msgstr "" + +#: src/Module/Settings/Account.php:655 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "" + +#: src/Module/Settings/Account.php:656 +msgid "Upload File" +msgstr "" + +#: src/Module/Settings/Account.php:659 +msgid "Relocate" +msgstr "Přemístit" + +#: src/Module/Settings/Account.php:660 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "Pokud jste přemístil/a tento profil z jiného serveru a nějaký z vašich kontaktů nedostává vaše aktualizace, zkuste stisknout toto tlačítko." + +#: src/Module/Settings/Account.php:661 +msgid "Resend relocate message to contacts" +msgstr "Znovu odeslat správu o přemístění Vašim kontaktům" + +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "Nastavení doplňků" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "Žádná nastavení doplňků nenakonfigurována" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení." + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "Přístup k e-mailu je na tomto serveru zakázán." + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "Žádné" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "Obecná nastavení sociálních sítí" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "" + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "Opravit odběry z OStatus" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "Nastavení e-mailu" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Pokud chcete komunikovat pomocí této služby s vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce." + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "Poslední úspěšná kontrola e-mailu:" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "Jméno IMAP serveru:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "IMAP port:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "Zabezpečení:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "Přihlašovací jméno k e-mailu:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "Heslo k e-mailu:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "Odpovědět na adresu:" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "Akce po importu:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "Přesunout do složky" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "Přesunout do složky:" + +#: src/Module/Settings/Delegation.php:54 +msgid "Delegation successfully granted." +msgstr "" + +#: src/Module/Settings/Delegation.php:56 +msgid "Parent user not found, unavailable or password doesn't match." +msgstr "" + +#: src/Module/Settings/Delegation.php:60 +msgid "Delegation successfully revoked." +msgstr "" + +#: src/Module/Settings/Delegation.php:82 +#: src/Module/Settings/Delegation.php:104 +msgid "" +"Delegated administrators can view but not change delegation permissions." +msgstr "" + +#: src/Module/Settings/Delegation.php:96 +msgid "Delegate user not found." +msgstr "" + +#: src/Module/Settings/Delegation.php:144 +msgid "No parent user" +msgstr "Žádný rodičovský uživatel" + +#: src/Module/Settings/Delegation.php:155 +#: src/Module/Settings/Delegation.php:166 +msgid "Parent User" +msgstr "Rodičovský uživatel" + +#: src/Module/Settings/Delegation.php:163 +msgid "Additional Accounts" +msgstr "" + +#: src/Module/Settings/Delegation.php:164 +msgid "" +"Register additional accounts that are automatically connected to your " +"existing account so you can manage them from this account." +msgstr "" + +#: src/Module/Settings/Delegation.php:165 +msgid "Register an additional account" +msgstr "" + +#: src/Module/Settings/Delegation.php:169 +msgid "" +"Parent users have total control about this account, including the account " +"settings. Please double check whom you give this access." +msgstr "Rodičovští uživatelé mají naprostou kontrolu nad tímto účtem, včetně nastavení účtu. Prosím překontrolujte, komu tento přístup dáváte." + +#: src/Module/Settings/Delegation.php:173 +msgid "Delegates" +msgstr "Delegáti" + +#: src/Module/Settings/Delegation.php:175 +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 "Delegáti jsou schopni řídit všechny aspekty tohoto účtu/stránky, kromě základních nastavení účtu. Prosím, nedelegujte svůj osobní účet nikomu, komu zcela nedůvěřujete." + +#: src/Module/Settings/Delegation.php:176 +msgid "Existing Page Delegates" +msgstr "Stávající delegáti stránky " + +#: src/Module/Settings/Delegation.php:178 +msgid "Potential Delegates" +msgstr "Potenciální delegáti" + +#: src/Module/Settings/Delegation.php:181 +msgid "Add" +msgstr "Přidat" + +#: src/Module/Settings/Delegation.php:182 +msgid "No entries." +msgstr "Žádné záznamy." + +#: src/Module/Settings/Display.php:146 +msgid "The theme you chose isn't available." +msgstr "Motiv, který jste si vybral/a, není dostupný." + +#: src/Module/Settings/Display.php:186 +#, php-format +msgid "%s - (Unsupported)" +msgstr "%s - (Nepodporováno)" + +#: src/Module/Settings/Display.php:221 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:222 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:223 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:224 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:259 +msgid "Display Settings" +msgstr "Nastavení zobrazení" + +#: src/Module/Settings/Display.php:261 +msgid "General Theme Settings" +msgstr "Obecná nastavení motivu" + +#: src/Module/Settings/Display.php:262 +msgid "Custom Theme Settings" +msgstr "Vlastní nastavení motivu" + +#: src/Module/Settings/Display.php:263 +msgid "Content Settings" +msgstr "Nastavení obsahu" + +#: src/Module/Settings/Display.php:264 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 +msgid "Theme settings" +msgstr "Nastavení motivu" + +#: src/Module/Settings/Display.php:265 +msgid "Timelines" +msgstr "" + +#: src/Module/Settings/Display.php:272 +msgid "Display Theme:" +msgstr "Motiv zobrazení:" + +#: src/Module/Settings/Display.php:273 +msgid "Mobile Theme:" +msgstr "Mobilní motiv:" + +#: src/Module/Settings/Display.php:276 +msgid "Number of items to display per page:" +msgstr "Počet položek zobrazených na stránce:" + +#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277 +msgid "Maximum of 100 items" +msgstr "Maximum 100 položek" + +#: src/Module/Settings/Display.php:277 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:" + +#: src/Module/Settings/Display.php:278 +msgid "Update browser every xx seconds" +msgstr "Aktualizovat prohlížeč každých xx sekund" + +#: src/Module/Settings/Display.php:278 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Minimum je 10 sekund. Zadáním hodnoty -1 funkci vypnete." + +#: src/Module/Settings/Display.php:279 +msgid "Display emoticons" +msgstr "" + +#: src/Module/Settings/Display.php:279 +msgid "When enabled, emoticons are replaced with matching symbols." +msgstr "" + +#: src/Module/Settings/Display.php:280 +msgid "Infinite scroll" +msgstr "Nekonečné posouvání" + +#: src/Module/Settings/Display.php:280 +msgid "Automatic fetch new items when reaching the page end." +msgstr "" + +#: src/Module/Settings/Display.php:281 +msgid "Enable Smart Threading" +msgstr "" + +#: src/Module/Settings/Display.php:281 +msgid "Enable the automatic suppression of extraneous thread indentation." +msgstr "" + +#: src/Module/Settings/Display.php:282 +msgid "Display the Dislike feature" +msgstr "" + +#: src/Module/Settings/Display.php:282 +msgid "" +"Display the Dislike button and dislike reactions on posts and comments." +msgstr "" + +#: src/Module/Settings/Display.php:283 +msgid "Display the resharer" +msgstr "" + +#: src/Module/Settings/Display.php:283 +msgid "Display the first resharer as icon and text on a reshared item." +msgstr "" + +#: src/Module/Settings/Display.php:284 +msgid "Stay local" +msgstr "" + +#: src/Module/Settings/Display.php:284 +msgid "Don't go to a remote system when following a contact link." +msgstr "" + +#: src/Module/Settings/Display.php:285 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:285 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Timelines for the network page:" +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Select all the timelines that you want to see on your network page." +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Channel languages:" +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Select all languages that you want to see in your channels." +msgstr "" + +#: src/Module/Settings/Display.php:290 +msgid "Beginning of week:" +msgstr "Začátek týdne:" + +#: src/Module/Settings/Display.php:291 +msgid "Default calendar view:" +msgstr "" + +#: src/Module/Settings/Display.php:300 src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:312 +#, php-format +msgid "%s: %s" +msgstr "" + +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "Dodatečné vlastnosti" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Připojené aplikace" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "Odstranit oprávnění" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:167 +msgid "Profile couldn't be updated." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 +msgid "Label:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 +msgid "Value:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 +msgid "Field Permissions" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 +msgid "(click to open/close)" +msgstr "(klikněte pro otevření/zavření)" + +#: src/Module/Settings/Profile/Index.php:224 +msgid "Add a new profile field" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:247 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:249 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:255 +msgid "Profile Actions" +msgstr "Akce profilu" + +#: src/Module/Settings/Profile/Index.php:256 +msgid "Edit Profile Details" +msgstr "Upravit podrobnosti profilu " + +#: src/Module/Settings/Profile/Index.php:258 +msgid "Change Profile Photo" +msgstr "Změnit profilovou fotku" + +#: src/Module/Settings/Profile/Index.php:261 +msgid "Profile picture" +msgstr "Profilový obrázek" + +#: src/Module/Settings/Profile/Index.php:262 +msgid "Location" +msgstr "Poloha" + +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 +msgid "Miscellaneous" +msgstr "Různé" + +#: src/Module/Settings/Profile/Index.php:264 +msgid "Custom Profile Fields" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +msgid "Upload Profile Photo" +msgstr "Nahrát profilovou fotku" + +#: src/Module/Settings/Profile/Index.php:266 +#, 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 circles.

    " +msgstr "" + +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "Ulice:" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "Poloha/město:" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "Region / stát:" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "PSČ:" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "Země:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "Adresa XMPP (Jabber):" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "Odkaz na domovskou stránku:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "Veřejná klíčová slova:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "Soukromá klíčová slova:" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)" + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 +#: src/Module/Settings/Profile/Photo/Index.php:101 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Nepodařilo se snížit velikost obrázku [%s]." + +#: src/Module/Settings/Profile/Photo/Crop.php:150 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nová fotka nezobrazí okamžitě." + +#: src/Module/Settings/Profile/Photo/Crop.php:155 +msgid "Unable to process image" +msgstr "Obrázek nelze zpracovat " + +#: src/Module/Settings/Profile/Photo/Crop.php:174 +msgid "Photo not found." +msgstr "" + +#: src/Module/Settings/Profile/Photo/Crop.php:196 +msgid "Profile picture successfully updated." +msgstr "" + +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 +msgid "Crop Image" +msgstr "Oříznout obrázek" + +#: src/Module/Settings/Profile/Photo/Crop.php:223 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Prosím, ořízněte tento obrázek pro optimální zobrazení." + +#: src/Module/Settings/Profile/Photo/Crop.php:225 +msgid "Use Image As Is" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:45 +msgid "Missing uploaded image." +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:124 +msgid "Profile Picture Settings" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:125 +msgid "Current Profile Picture" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:126 +msgid "Upload Profile Picture" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:127 +msgid "Upload Picture:" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:132 +msgid "or" +msgstr "nebo" + +#: src/Module/Settings/Profile/Photo/Index.php:134 +msgid "skip this step" +msgstr "tento krok přeskočte" + +#: src/Module/Settings/Profile/Photo/Index.php:136 +msgid "select a photo from your photo albums" +msgstr "si vyberte fotku z vašich fotoalb" + +#: src/Module/Settings/RemoveMe.php:94 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[Systémové oznámení Friendica]" + +#: src/Module/Settings/RemoveMe.php:94 +msgid "User deleted their account" +msgstr "Uživatel si smazal účet" + +#: src/Module/Settings/RemoveMe.php:95 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "Uživatel na vašem serveru Friendica smazal svůj účet. Prosím ujistěte se, ře jsou jeho data odstraněna ze záloh dat." + +#: src/Module/Settings/RemoveMe.php:96 +#, php-format +msgid "The user id is %d" +msgstr "Uživatelské ID je %d" + +#: src/Module/Settings/RemoveMe.php:108 +msgid "Your user account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:128 +msgid "Remove My Account" +msgstr "Odstranit můj účet" + +#: src/Module/Settings/RemoveMe.php:129 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit." + +#: src/Module/Settings/RemoveMe.php:131 +msgid "Please enter your password for verification:" +msgstr "Prosím, zadejte své heslo pro ověření:" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "" + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 msgid "Please enter your password to access this page." msgstr "Pro přístup k této stránce prosím zadejte své heslo." -#: src/Module/Settings/TwoFactor/AppSpecific.php:54 +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:57 +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:61 +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:77 +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:98 +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 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 "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:101 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:104 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 msgid "Description" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:105 +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:106 +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:107 +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 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 "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:111 +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:112 +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa na mém Fairphone 2..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:113 +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 msgid "Generate" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:51 +#: src/Module/Settings/TwoFactor/Index.php:68 msgid "Two-factor authentication successfully disabled." msgstr "Dvoufázové ověřování úspěšně zakázáno." -#: src/Module/Settings/TwoFactor/Index.php:92 +#: src/Module/Settings/TwoFactor/Index.php:120 msgid "" "

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

    " msgstr "

    Pomocí aplikace na mobilním zařízení získejte při přihlášení kódy pro dvoufázové ověřování.

    " -#: src/Module/Settings/TwoFactor/Index.php:96 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Authenticator app" msgstr "Autentizační aplikace" -#: src/Module/Settings/TwoFactor/Index.php:97 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Configured" msgstr "Nakonfigurováno" -#: src/Module/Settings/TwoFactor/Index.php:97 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Not Configured" msgstr "Nenakonfigurováno" -#: src/Module/Settings/TwoFactor/Index.php:98 +#: src/Module/Settings/TwoFactor/Index.php:126 msgid "

    You haven't finished configuring your authenticator app.

    " msgstr "

    Nedokončil/a jste konfiguraci vaší autentizační aplikace.

    " -#: src/Module/Settings/TwoFactor/Index.php:99 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "

    Your authenticator app is correctly configured.

    " msgstr "

    Vaše autentizační aplikace je správně nakonfigurována.

    " -#: src/Module/Settings/TwoFactor/Index.php:101 +#: src/Module/Settings/TwoFactor/Index.php:129 msgid "Recovery codes" msgstr "Záložní kódy" -#: src/Module/Settings/TwoFactor/Index.php:102 +#: src/Module/Settings/TwoFactor/Index.php:130 msgid "Remaining valid codes" msgstr "Zbývající platné kódy" -#: src/Module/Settings/TwoFactor/Index.php:104 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "" "

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

    " msgstr "

    Tyto jednorázové kódy mohou nahradit kód autentizační aplikace, pokud k ní ztratíte přístup.

    " -#: src/Module/Settings/TwoFactor/Index.php:106 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:107 +#: src/Module/Settings/TwoFactor/Index.php:135 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:109 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "" "

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

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:111 src/Module/Contact.php:614 -msgid "Actions" -msgstr "Akce" - -#: src/Module/Settings/TwoFactor/Index.php:112 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "Current password:" msgstr "Aktuální heslo:" -#: src/Module/Settings/TwoFactor/Index.php:112 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "Pro změnu nastavení dvoufázového ověřování musíte poskytnout vaše aktuální heslo." -#: src/Module/Settings/TwoFactor/Index.php:113 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "Enable two-factor authentication" msgstr "Povolit dvoufázové ověřování" -#: src/Module/Settings/TwoFactor/Index.php:114 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Disable two-factor authentication" msgstr "Zakázat dvoufázové ověřování" -#: src/Module/Settings/TwoFactor/Index.php:115 +#: src/Module/Settings/TwoFactor/Index.php:143 msgid "Show recovery codes" msgstr "Zobrazit záložní kódy" -#: src/Module/Settings/TwoFactor/Index.php:116 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:117 +#: src/Module/Settings/TwoFactor/Index.php:145 +msgid "Manage trusted browsers" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Finish app configuration" msgstr "Dokončit konfiguraci aplikace" -#: src/Module/Settings/TwoFactor/Recovery.php:50 +#: src/Module/Settings/TwoFactor/Recovery.php:80 msgid "New recovery codes successfully generated." msgstr "Nové záložní kódy byly úspěšně vygenerovány." -#: src/Module/Settings/TwoFactor/Recovery.php:76 +#: src/Module/Settings/TwoFactor/Recovery.php:106 msgid "Two-factor recovery codes" msgstr "Dvoufázové záložní kódy" -#: src/Module/Settings/TwoFactor/Recovery.php:78 +#: src/Module/Settings/TwoFactor/Recovery.php:108 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 " @@ -9650,30 +10940,68 @@ msgid "" "account.

    " msgstr "

    Záložní kódy mohou být použity pro přístup k vašemu účtu, pokud ztratíte přístup k vašemu zařízení a nemůžete obdržet dvoufázové autentizační kódy.

    Uložte je na bezpečné místo! Pokud zratíte vaše zařízení a nemáte Záložní kódy, ztratíte přístup ke svému účtu.

    " -#: src/Module/Settings/TwoFactor/Recovery.php:80 +#: src/Module/Settings/TwoFactor/Recovery.php:110 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Když vygenerujete nové záložní kódy, musíte si zkopírovat nové kódy. Vaše staré kódy již nebudou fungovat." -#: src/Module/Settings/TwoFactor/Recovery.php:81 +#: src/Module/Settings/TwoFactor/Recovery.php:111 msgid "Generate new recovery codes" msgstr "Vygenerovat nové záložní kódy" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "Next: Verification" msgstr "Další: Ověření" -#: src/Module/Settings/TwoFactor/Verify.php:63 +#: src/Module/Settings/TwoFactor/Trusted.php:84 +msgid "Trusted browsers successfully removed." +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:94 +msgid "Trusted browser successfully removed." +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:136 +msgid "Two-factor Trusted Browsers" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:137 +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 "" + +#: src/Module/Settings/TwoFactor/Trusted.php:138 +msgid "Device" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:139 +msgid "OS" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:141 +msgid "Trusted" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:142 +msgid "Created At" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:143 +msgid "Last Use" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:145 +msgid "Remove All" +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:91 msgid "Two-factor authentication successfully activated." msgstr "Dvoufázové ověření úspěšně aktivováno." -#: src/Module/Settings/TwoFactor/Verify.php:67 -#: src/Module/TwoFactor/Recovery.php:46 src/Module/TwoFactor/Verify.php:43 -msgid "Invalid code, please retry." -msgstr "Neplatný kód, prosím zkuste to znovu." - -#: src/Module/Settings/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:125 #, php-format msgid "" "

    Or you can submit the authentication settings manually:

    \n" @@ -9693,142 +11021,229 @@ msgid "" "" msgstr "

    Nebo můžete zadat autentizační nastavení manuálně:

    \n
    \n\t
    Vydavatel
    \n\t
    %s
    \n\t
    Jméno účtu
    \n\t
    %s
    \n\t
    Tajný klíč
    \n\t
    %s
    \n\t
    Typ
    \n\t
    Založený na čase
    \n\t
    Počet číslic
    \n\t
    6
    \n\t
    Hashovací algoritmus
    \n\t
    SHA-1
    \n
    " -#: src/Module/Settings/TwoFactor/Verify.php:116 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Two-factor code verification" msgstr "Ověření dvoufázového kódu" -#: src/Module/Settings/TwoFactor/Verify.php:118 +#: src/Module/Settings/TwoFactor/Verify.php:147 msgid "" "

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

    " msgstr "

    Prosím naskenujte tento QR kód vaší autentizační aplikací a zadejte poskytnutý kód.

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

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

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

    %s

    " -msgstr "

    Nebo můžete otevřít na vašem mobilním zařízení následující URL:

    %s

    " +msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:126 -#: src/Module/TwoFactor/Verify.php:67 -msgid "Please enter a code from your authentication app" -msgstr "Prosím zadejte kód z vaší autentizační aplikace" - -#: src/Module/Settings/TwoFactor/Verify.php:127 +#: src/Module/Settings/TwoFactor/Verify.php:156 msgid "Verify code and enable two-factor authentication" msgstr "Ověřit kód a povolit dvoufázové ověřování" -#: src/Module/Special/HTTPException.php:32 -msgid "Bad Request" -msgstr "Špatný požadavek" +#: src/Module/Settings/UserExport.php:90 +msgid "Export account" +msgstr "Exportovat účet" -#: src/Module/Special/HTTPException.php:33 -msgid "Unauthorized" -msgstr "Neautorizováno" - -#: src/Module/Special/HTTPException.php:34 -msgid "Forbidden" -msgstr "Zakázáno" - -#: src/Module/Special/HTTPException.php:35 -msgid "Not Found" -msgstr "Nenalezeno" - -#: src/Module/Special/HTTPException.php:36 -msgid "Internal Server Error" -msgstr "Vnitřní chyba serveru" - -#: src/Module/Special/HTTPException.php:37 -msgid "Service Unavailable" -msgstr "Služba nedostupná" - -#: src/Module/Special/HTTPException.php:44 +#: src/Module/Settings/UserExport.php:90 msgid "" -"The server cannot or will not process the request due to an apparent client " -"error." -msgstr "Server nemůže nebo nechce zpracovat požadavek kvůli patrné chybě na straně klienta." +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server." -#: src/Module/Special/HTTPException.php:45 +#: src/Module/Settings/UserExport.php:91 +msgid "Export all" +msgstr "Exportovat vše" + +#: src/Module/Settings/UserExport.php:91 msgid "" -"Authentication is required and has failed or has not yet been provided." -msgstr "Je vyžadována autentikace, která neuspěla nebo ještě nebyla poskytnuta." +"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 "" -#: src/Module/Special/HTTPException.php:46 +#: src/Module/Settings/UserExport.php:92 +msgid "Export Contacts to CSV" +msgstr "" + +#: src/Module/Settings/UserExport.php:92 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 "Požadavek byl platný, ale server odmítá akci. Uživatel možná nemá nezbytná oprávnění pro zdroj, nebo potřebuje účet.." +"Export the list of the accounts you are following as CSV file. Compatible to" +" e.g. Mastodon." +msgstr "" -#: src/Module/Special/HTTPException.php:47 +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:37 msgid "" -"The requested resource could not be found but may be available in the " -"future." -msgstr "Požadovaný zdroj nemohl být nalezen, ale může být dostupný v budoucnu." +"This node has blocked the top-level author or the author of the shared post." +msgstr "" -#: src/Module/Special/HTTPException.php:48 +#: src/Module/Special/DisplayNotFound.php:38 msgid "" -"An unexpected condition was encountered and no more specific message is " -"suitable." -msgstr "Došlo k neočekávané chybě a není vhodná žádná specifičtější zpráva." +"You have ignored or blocked the top-level author or the author of the shared" +" post." +msgstr "" -#: src/Module/Special/HTTPException.php:49 +#: src/Module/Special/DisplayNotFound.php:39 msgid "" -"The server is currently unavailable (because it is overloaded or down for " -"maintenance). Please try again later." -msgstr "Server je aktuálně nedostupný (protože je přetížen nebo probíhá údržba). Prosím zkuste to znovu později." +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "" -#: src/Module/Special/HTTPException.php:55 -msgid "Go back" -msgstr "Přejít zpět" +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "" -#: src/Module/TwoFactor/Recovery.php:41 +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "" + +#: src/Module/Special/HTTPException.php:78 +msgid "Stack trace:" +msgstr "" + +#: src/Module/Special/HTTPException.php:83 #, php-format -msgid "Remaining recovery codes: %d" -msgstr "Zbývající záložní kódy: %d" +msgid "Exception thrown in %s:%d" +msgstr "" -#: src/Module/TwoFactor/Recovery.php:65 -msgid "Two-factor recovery" -msgstr "Dvoufázové záložní kódy" - -#: src/Module/TwoFactor/Recovery.php:66 +#: src/Module/Tos.php:58 src/Module/Tos.php:107 msgid "" -"

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

    " -msgstr "

    Pokud jste ztratil/a přístup k vašemu mobilnímu zařízení , můžete zadat jeden z vašich jednorázových záložních kódů.

    " +"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 "Ve chvíli registrace, a pro poskytování komunikace mezi uživatelským účtem a jeho kontakty, musí uživatel poskytnout zobrazované jméno (pseudonym), uživatelské jméno (přezdívku) a funkční e-mailovou adresu. Jména budou dostupná na profilové stránce účtu pro kteréhokoliv návštěvníka, i kdyby ostatní detaily nebyly zobrazeny. E-mailová adresa bude použita pouze pro zasílání oznámení o interakcích, nebude ale viditelně zobrazována. Zápis účtu do adresáře účtů serveru nebo globálního adresáře účtů je nepovinný a může být ovládán v nastavení uživatele, není potřebný pro komunikaci." -#: src/Module/TwoFactor/Recovery.php:67 src/Module/TwoFactor/Verify.php:66 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 +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 "Tato data jsou vyžadována ke komunikaci a jsou předávána serverům komunikačních partnerů a jsou tam ukládána. Uživatelé mohou zadávat dodatečná soukromá data, která mohou být odeslána na účty komunikačních partnerů." + +#: src/Module/Tos.php:60 src/Module/Tos.php:109 #, php-format -msgid "Don’t have your phone? Enter a two-factor recovery code" -msgstr "Nemáte svůj mobil? Zadejte dvoufázový záložní kód" - -#: src/Module/TwoFactor/Recovery.php:68 -msgid "Please enter a recovery code" -msgstr "Prosím zadejte záložní kód" - -#: src/Module/TwoFactor/Recovery.php:69 -msgid "Submit recovery code and complete login" -msgstr "Odeslat záložní kód a dokončit přihlášení" - -#: src/Module/TwoFactor/Verify.php:63 msgid "" -"

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

    " -msgstr "

    Otevřete na vašem zařízení aplikaci pro dvoufázové ověřování, získejte autentizační kód a ověřte svou identitu.

    " +"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/settings/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 "" -#: src/Module/TwoFactor/Verify.php:68 -msgid "Verify code and complete login" -msgstr "Ověřit kód a dokončit přihlášení" +#: src/Module/Tos.php:63 src/Module/Tos.php:106 +msgid "Privacy Statement" +msgstr "Prohlášení o soukromí" -#: src/Module/Welcome.php:25 +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "" + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "Požadovaná položka neexistuje nebo byla smazána." + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "Importy uživatelů na uzavřených serverech může provést pouze administrátor." + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "Přesunout účet" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "Můžete importovat účet z jiného serveru Friendica." + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "Musíte exportovat svůj účet na starém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhoval/a." + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "Tato vlastnost je experimentální. Nemůžeme importovat kontakty za sítě OStatus (GNU social/StatusNet) nebo z Diaspory" + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "Soubor s účtem" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "K exportu Vašeho účtu jděte na „Nastavení->Exportovat osobní údaje“ a zvolte „Exportovat účet“" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "Chyba dekódování uživatelského účtu" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Chyba! V souboru nejsou data o verzi! Je to opravdu soubor s účtem Friendica?" + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Uživatel „%s“ již na tomto serveru existuje!" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "Chyba při vytváření uživatele" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d kontakt nenaimportován" +msgstr[1] "%d kontakty nenaimportovány" +msgstr[2] "%d kontaktu nenaimportováno" +msgstr[3] "%d kontaktů nenaimportováno" + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "Chyba vytváření uživatelského profilu" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "Hotovo. Nyní se můžete přihlásit se svým uživatelským jménem a heslem" + +#: src/Module/Welcome.php:44 msgid "Welcome to Friendica" msgstr "Vítejte na Friendica" -#: src/Module/Welcome.php:26 +#: src/Module/Welcome.php:45 msgid "New Member Checklist" msgstr "Seznam doporučení pro nového člena" -#: src/Module/Welcome.php:27 +#: 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 " @@ -9836,33 +11251,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Rádi bychom vám nabídli několik tipů a odkazů, abychom vám zpříjemnili zážitek. Kliknutím na jakoukoliv položku zobrazíte relevantní stránku. Odkaz na tuto stránku bude viditelný z vaší domovské stránky po dobu dvou týdnů od vaší první registrace a poté tiše zmizí." -#: src/Module/Welcome.php:29 +#: src/Module/Welcome.php:48 msgid "Getting Started" msgstr "Začínáme" -#: src/Module/Welcome.php:30 +#: src/Module/Welcome.php:49 msgid "Friendica Walk-Through" msgstr "Prohlídka Friendica " -#: src/Module/Welcome.php:31 +#: 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 "Na vaší stránce Rychlý začátek najděte stručný úvod k vašemu profilu a síťovým záložkám, spojte se s novými kontakty a najděte skupiny, ke kterým se můžete připojit." -#: src/Module/Welcome.php:34 +#: src/Module/Welcome.php:53 msgid "Go to Your Settings" msgstr "Navštivte své nastavení" -#: src/Module/Welcome.php:35 +#: 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 "Na vaší stránce Nastavení si změňte vaše první heslo. Věnujte také svou pozornost vaší adrese identity. Vypadá jako e-mailová adresa a bude vám užitečná pro navazování přátelství na svobodném sociálním webu." -#: src/Module/Welcome.php:36 +#: 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 " @@ -9870,77 +11285,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný - ledaže by všichni vaši přátelé a potenciální přátelé přesně věděli, jak vás najít." -#: src/Module/Welcome.php:40 +#: 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 "Nahrajte si svou profilovou fotku, pokud jste tak již neučinil/a. Studie ukázaly, že lidé se skutečnými fotkami mají desetkrát častěji přátele než lidé, kteří nemají." -#: src/Module/Welcome.php:41 +#: src/Module/Welcome.php:60 msgid "Edit Your Profile" msgstr "Upravte si svůj profil" -#: src/Module/Welcome.php:42 +#: 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 "Upravte si výchozí profil podle vašich představ. Prověřte nastavení pro skrytí vašeho seznamu přátel a skrytí profilu před neznámými návštěvníky." -#: src/Module/Welcome.php:43 +#: src/Module/Welcome.php:62 msgid "Profile Keywords" msgstr "Profilová klíčová slova" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:63 msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Nastavte si nějaká veřejná klíčová slova pro výchozí profil, která popisují vaše zájmy. Můžeme vám najít další lidi s podobnými zájmy a navrhnout přátelství." +"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 "" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:65 msgid "Connecting" msgstr "Připojuji se" -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:67 msgid "Importing Emails" msgstr "Importuji e-maily" -#: src/Module/Welcome.php:49 +#: 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 "Pokud chcete importovat své přátele nebo mailové skupiny z INBOX vašeho e-mailu a komunikovat s nimi, zadejte na vaší stránce Nastavení kontektoru své přístupové údaje do svého e-mailového účtu" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:69 msgid "Go to Your Contacts Page" msgstr "Navštivte vaši stránku Kontakty" -#: src/Module/Welcome.php:51 +#: 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 "Vaše stránka Kontakty je vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu Přidat nový kontakt." -#: src/Module/Welcome.php:52 +#: src/Module/Welcome.php:71 msgid "Go to Your Site's Directory" msgstr "Navštivte adresář vaší stránky" -#: src/Module/Welcome.php:53 +#: 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 "Stránka Adresář vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Najděte na jejich stránce odkaz Spojit se nebo Sledovat. Uveďte svou vlastní adresu identity, je-li požadována." -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:73 msgid "Finding New People" msgstr "Nalezení nových lidí" -#: src/Module/Welcome.php:55 +#: 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 " @@ -9949,675 +11364,724 @@ msgid "" "hours." msgstr "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin." -#: src/Module/Welcome.php:58 -msgid "Group Your Contacts" -msgstr "Seskupte si své kontakty" +#: src/Module/Welcome.php:77 +msgid "Add Your Contacts To Circle" +msgstr "" -#: src/Module/Welcome.php:59 +#: 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 "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť." +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:80 msgid "Why Aren't My Posts Public?" msgstr "Proč nejsou mé příspěvky veřejné?" -#: src/Module/Welcome.php:62 +#: 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 "Friendica respektuje vaše soukromí. Ve výchozím stavu jsou vaše příspěvky viditelné pouze lidem, které označíte jako vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu" -#: src/Module/Welcome.php:64 +#: src/Module/Welcome.php:83 msgid "Getting Help" msgstr "Získání nápovědy" -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:84 msgid "Go to the Help Section" msgstr "Navštivte sekci nápovědy" -#: src/Module/Welcome.php:66 +#: src/Module/Welcome.php:85 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Na stránkách Nápověda naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací." -#: src/Module/Bookmarklet.php:35 -msgid "This page is missing a url parameter." -msgstr "Této stránce chybí parametr url." - -#: src/Module/Bookmarklet.php:57 -msgid "The post was created" -msgstr "Příspěvek byl vytvořen" - -#: src/Module/Contact.php:72 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "%d kontakt upraven" -msgstr[1] "%d kontakty upraveny" -msgstr[2] "%d kontaktu upraveno" -msgstr[3] "%d kontaktů upraveno" - -#: src/Module/Contact.php:99 -msgid "Could not access contact record." -msgstr "Nelze získat přístup k záznamu kontaktu." - -#: src/Module/Contact.php:109 -msgid "Could not locate selected profile." -msgstr "Nelze nalézt vybraný profil." - -#: src/Module/Contact.php:141 -msgid "Contact updated." -msgstr "Kontakt aktualizován." - -#: src/Module/Contact.php:355 -msgid "Contact not found" -msgstr "Kontakt nenalezen." - -#: src/Module/Contact.php:374 -msgid "Contact has been blocked" -msgstr "Kontakt byl zablokován" - -#: src/Module/Contact.php:374 -msgid "Contact has been unblocked" -msgstr "Kontakt byl odblokován" - -#: src/Module/Contact.php:384 -msgid "Contact has been ignored" -msgstr "Kontakt bude ignorován" - -#: src/Module/Contact.php:384 -msgid "Contact has been unignored" -msgstr "Kontakt přestal být ignorován" - -#: src/Module/Contact.php:394 -msgid "Contact has been archived" -msgstr "Kontakt byl archivován" - -#: src/Module/Contact.php:394 -msgid "Contact has been unarchived" -msgstr "Kontakt byl vrácen z archivu." - -#: src/Module/Contact.php:418 -msgid "Drop contact" -msgstr "Zrušit kontakt" - -#: src/Module/Contact.php:421 src/Module/Contact.php:798 -msgid "Do you really want to delete this contact?" -msgstr "Opravdu chcete smazat tento kontakt?" - -#: src/Module/Contact.php:435 -msgid "Contact has been removed." -msgstr "Kontakt byl odstraněn." - -#: src/Module/Contact.php:465 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Jste vzájemní přátelé s uživatelem %s" - -#: src/Module/Contact.php:470 -#, php-format -msgid "You are sharing with %s" -msgstr "Sdílíte s uživatelem %s" - -#: src/Module/Contact.php:475 -#, php-format -msgid "%s is sharing with you" -msgstr "%s s vámi sdílí" - -#: src/Module/Contact.php:499 -msgid "Private communications are not available for this contact." -msgstr "Soukromá komunikace není dostupná pro tento kontakt." - -#: src/Module/Contact.php:501 -msgid "Never" -msgstr "Nikdy" - -#: src/Module/Contact.php:504 -msgid "(Update was successful)" -msgstr "(Aktualizace byla úspěšná)" - -#: src/Module/Contact.php:504 -msgid "(Update was not successful)" -msgstr "(Aktualizace nebyla úspěšná)" - -#: src/Module/Contact.php:506 src/Module/Contact.php:1042 -msgid "Suggest friends" -msgstr "Navrhnout přátele" - -#: src/Module/Contact.php:510 -#, php-format -msgid "Network type: %s" -msgstr "Typ sítě: %s" - -#: src/Module/Contact.php:515 -msgid "Communications lost with this contact!" -msgstr "Komunikace s tímto kontaktem byla ztracena!" - -#: src/Module/Contact.php:521 -msgid "Fetch further information for feeds" -msgstr "Načíst další informace pro kanál" - -#: src/Module/Contact.php:523 -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 "Načíst informace jako obrázky náhledu, nadpis a popisek z položky kanálu. Toto můžete aktivovat, pokud kanál neobsahuje moc textu. Klíčová slova jsou vzata z hlavičky meta v položce kanálu a jsou zveřejněna jako hashtagy." - -#: src/Module/Contact.php:526 -msgid "Fetch information" -msgstr "Načíst informace" - -#: src/Module/Contact.php:527 -msgid "Fetch keywords" -msgstr "Načíst klíčová slova" - -#: src/Module/Contact.php:528 -msgid "Fetch information and keywords" -msgstr "Načíst informace a klíčová slova" - -#: src/Module/Contact.php:547 -msgid "Profile Visibility" -msgstr "Viditelnost profilu" - -#: src/Module/Contact.php:548 -msgid "Contact Information / Notes" -msgstr "Kontaktní informace / poznámky" - -#: src/Module/Contact.php:549 -msgid "Contact Settings" -msgstr "Nastavení kontaktů" - -#: src/Module/Contact.php:558 -msgid "Contact" -msgstr "Kontakt" - -#: src/Module/Contact.php:562 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu." - -#: src/Module/Contact.php:564 -msgid "Their personal note" -msgstr "Jejich osobní poznámka" - -#: src/Module/Contact.php:566 -msgid "Edit contact notes" -msgstr "Upravit poznámky kontaktu" - -#: src/Module/Contact.php:570 -msgid "Block/Unblock contact" -msgstr "Blokovat / Odblokovat kontakt" - -#: src/Module/Contact.php:571 -msgid "Ignore contact" -msgstr "Ignorovat kontakt" - -#: src/Module/Contact.php:572 -msgid "Repair URL settings" -msgstr "Opravit nastavení adresy URL " - -#: src/Module/Contact.php:573 -msgid "View conversations" -msgstr "Zobrazit konverzace" - -#: src/Module/Contact.php:578 -msgid "Last update:" -msgstr "Poslední aktualizace:" - -#: src/Module/Contact.php:580 -msgid "Update public posts" -msgstr "Aktualizovat veřejné příspěvky" - -#: src/Module/Contact.php:582 src/Module/Contact.php:1052 -msgid "Update now" -msgstr "Aktualizovat" - -#: src/Module/Contact.php:586 src/Module/Contact.php:803 -#: src/Module/Contact.php:1069 -msgid "Unignore" -msgstr "Přestat ignorovat" - -#: src/Module/Contact.php:590 -msgid "Currently blocked" -msgstr "V současnosti zablokováno" - -#: src/Module/Contact.php:591 -msgid "Currently ignored" -msgstr "V současnosti ignorováno" - -#: src/Module/Contact.php:592 -msgid "Currently archived" -msgstr "Aktuálně archivován" - -#: src/Module/Contact.php:593 -msgid "Awaiting connection acknowledge" -msgstr "Čekám na potrvzení spojení" - -#: src/Module/Contact.php:594 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Odpovědi/oblíbení na vaše veřejné příspěvky mohou být stále viditelné" - -#: src/Module/Contact.php:595 -msgid "Notification for new posts" -msgstr "Oznámení o nových příspěvcích" - -#: src/Module/Contact.php:595 -msgid "Send a notification of every new post of this contact" -msgstr "Posílat oznámení o každém novém příspěvku tohoto kontaktu" - -#: src/Module/Contact.php:597 -msgid "Blacklisted keywords" -msgstr "Zakázaná klíčová slova" - -#: src/Module/Contact.php:597 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno „Načíst informace a klíčová slova“. Oddělujte čárkami" - -#: src/Module/Contact.php:663 -msgid "Show all contacts" -msgstr "Zobrazit všechny kontakty" - -#: src/Module/Contact.php:668 src/Module/Contact.php:778 -msgid "Pending" -msgstr "Čekající" - -#: src/Module/Contact.php:671 -msgid "Only show pending contacts" +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +msgid "{0} wants to follow you" msgstr "" -#: src/Module/Contact.php:676 src/Module/Contact.php:779 -msgid "Blocked" -msgstr "Blokované" - -#: src/Module/Contact.php:679 -msgid "Only show blocked contacts" -msgstr "Zobrazit pouze blokované kontakty" - -#: src/Module/Contact.php:684 src/Module/Contact.php:781 -msgid "Ignored" -msgstr "Ignorované" - -#: src/Module/Contact.php:687 -msgid "Only show ignored contacts" -msgstr "Zobrazit pouze ignorované kontakty" - -#: src/Module/Contact.php:692 src/Module/Contact.php:782 -msgid "Archived" -msgstr "Archivované" - -#: src/Module/Contact.php:695 -msgid "Only show archived contacts" -msgstr "Zobrazit pouze archivované kontakty" - -#: src/Module/Contact.php:700 src/Module/Contact.php:780 -msgid "Hidden" -msgstr "Skryté" - -#: src/Module/Contact.php:703 -msgid "Only show hidden contacts" -msgstr "Zobrazit pouze skryté kontakty" - -#: src/Module/Contact.php:711 -msgid "Organize your contact groups" -msgstr "Organizovat vaše skupiny kontaktů" - -#: src/Module/Contact.php:793 -msgid "Search your contacts" -msgstr "Prohledat vaše kontakty" - -#: src/Module/Contact.php:804 src/Module/Contact.php:1078 -msgid "Archive" -msgstr "Archivovat" - -#: src/Module/Contact.php:804 src/Module/Contact.php:1078 -msgid "Unarchive" -msgstr "Vrátit z archivu" - -#: src/Module/Contact.php:807 -msgid "Batch Actions" -msgstr "Souhrnné akce" - -#: src/Module/Contact.php:834 -msgid "Conversations started by this contact" -msgstr "Konverzace, které tento kontakt začal" - -#: src/Module/Contact.php:839 -msgid "Posts and Comments" -msgstr "Příspěvky a komentáře" - -#: src/Module/Contact.php:862 -msgid "View all contacts" -msgstr "Zobrazit všechny kontakty" - -#: src/Module/Contact.php:873 -msgid "View all common friends" -msgstr "Zobrazit všechny společné přátele" - -#: src/Module/Contact.php:883 -msgid "Advanced Contact Settings" -msgstr "Pokročilé nastavení kontaktu" - -#: src/Module/Contact.php:966 -msgid "Mutual Friendship" -msgstr "Vzájemné přátelství" - -#: src/Module/Contact.php:971 -msgid "is a fan of yours" -msgstr "je váš fanoušek" - -#: src/Module/Contact.php:976 -msgid "you are a fan of" -msgstr "jste fanouškem" - -#: src/Module/Contact.php:994 -msgid "Pending outgoing contact request" +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +msgid "{0} has started following you" msgstr "" -#: src/Module/Contact.php:996 -msgid "Pending incoming contact request" +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#, php-format +msgid "%s liked %s's post" +msgstr "Uživateli %s se líbí příspěvek uživatele %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#, php-format +msgid "%s disliked %s's post" +msgstr "Uživateli %s se nelíbí příspěvek uživatele %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#, php-format +msgid "%s is attending %s's event" +msgstr "%s se zúčastní události %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#, php-format +msgid "%s is not attending %s's event" +msgstr "%s se nezúčastní události %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#, php-format +msgid "%s may attending %s's event" msgstr "" -#: src/Module/Contact.php:1009 -msgid "Edit contact" -msgstr "Upravit kontakt" +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s se nyní přátelí s uživatelem %s" -#: src/Module/Contact.php:1063 -msgid "Toggle Blocked status" -msgstr "Přepínat stav Blokováno" +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s okomentoval/a příspěvek uživatele %s" -#: src/Module/Contact.php:1071 -msgid "Toggle Ignored status" -msgstr "Přepínat stav Ignorováno" +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#, php-format +msgid "%s created a new post" +msgstr "%s vytvořil nový příspěvek" -#: src/Module/Contact.php:1080 -msgid "Toggle Archive status" -msgstr "Přepínat stav Archivováno" +#: src/Navigation/Notifications/Factory/Introduction.php:133 +msgid "Friend Suggestion" +msgstr "Návrh přátelství" -#: src/Module/Contact.php:1088 -msgid "Delete contact" -msgstr "Odstranit kontakt" +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "Friend/Connect Request" +msgstr "Požadavek o přátelství/spojení" -#: src/Module/Install.php:159 -msgid "Friendica Communications Server - Setup" -msgstr "Komunikační server Friendica - Nastavení" +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "New Follower" +msgstr "Nový sledující" -#: src/Module/Install.php:170 -msgid "System check" -msgstr "Zkouška systému" +#: src/Navigation/Notifications/Factory/Notification.php:134 +#, php-format +msgid "%1$s wants to follow you" +msgstr "" -#: src/Module/Install.php:175 -msgid "Check again" -msgstr "Vyzkoušet znovu" +#: src/Navigation/Notifications/Factory/Notification.php:136 +#, php-format +msgid "%1$s has started following you" +msgstr "" -#: src/Module/Install.php:190 -msgid "Base settings" -msgstr "Základní nastavení" +#: src/Navigation/Notifications/Factory/Notification.php:208 +#, php-format +msgid "%1$s liked your comment on %2$s" +msgstr "" -#: src/Module/Install.php:197 -msgid "Host name" -msgstr "Jméno hostitele (host name)" +#: src/Navigation/Notifications/Factory/Notification.php:211 +#, php-format +msgid "%1$s liked your post %2$s" +msgstr "" -#: src/Module/Install.php:199 -msgid "" -"Overwrite this field in case the determinated hostname isn't right, " -"otherweise leave it as is." -msgstr "Toto pole přepište, pokud určený název hostitele není správný, jinak to nechte tak, jak to je." +#: src/Navigation/Notifications/Factory/Notification.php:218 +#, php-format +msgid "%1$s disliked your comment on %2$s" +msgstr "" -#: src/Module/Install.php:202 -msgid "Base path to installation" -msgstr "Základní cesta k instalaci" +#: src/Navigation/Notifications/Factory/Notification.php:221 +#, php-format +msgid "%1$s disliked your post %2$s" +msgstr "" -#: src/Module/Install.php:204 -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 "Pokud systém nemůže detekovat správnou cestu k Vaší instalaci, zde zadejte jinou cestu. Toto nastavení by mělo být nastaveno pouze, pokud používáte omezený systém a symbolické odkazy ke kořenové složce webu." +#: src/Navigation/Notifications/Factory/Notification.php:228 +#, php-format +msgid "%1$s shared your comment %2$s" +msgstr "" -#: src/Module/Install.php:207 -msgid "Sub path of the URL" -msgstr "Podcesta URL" +#: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 +#, php-format +msgid "%1$s shared your post %2$s" +msgstr "" -#: src/Module/Install.php:209 -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 "Toto pole přepište, pokud určení podcesty není správné, jinak to nechte tak, jak to je. Pokud tohle necháte prázdné, znamená to, že se instalace nachází v základním URL bez podcesty." +#: src/Navigation/Notifications/Factory/Notification.php:235 +#: src/Navigation/Notifications/Factory/Notification.php:305 +#, php-format +msgid "%1$s shared the post %2$s from %3$s" +msgstr "" -#: src/Module/Install.php:220 -msgid "Database connection" -msgstr "Databázové spojení" +#: src/Navigation/Notifications/Factory/Notification.php:237 +#: src/Navigation/Notifications/Factory/Notification.php:307 +#, php-format +msgid "%1$s shared a post from %3$s" +msgstr "" -#: src/Module/Install.php:221 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Pro instalaci Friendica potřebujeme znát připojení k vaší databázi." +#: src/Navigation/Notifications/Factory/Notification.php:239 +#: src/Navigation/Notifications/Factory/Notification.php:309 +#, php-format +msgid "%1$s shared the post %2$s" +msgstr "" -#: src/Module/Install.php:222 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru." +#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:311 +#, php-format +msgid "%1$s shared a post" +msgstr "" -#: src/Module/Install.php:223 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním." +#: src/Navigation/Notifications/Factory/Notification.php:249 +#, php-format +msgid "%1$s wants to attend your event %2$s" +msgstr "" -#: src/Module/Install.php:230 -msgid "Database Server Name" -msgstr "Jméno databázového serveru" +#: src/Navigation/Notifications/Factory/Notification.php:256 +#, php-format +msgid "%1$s does not want to attend your event %2$s" +msgstr "" -#: src/Module/Install.php:235 -msgid "Database Login Name" -msgstr "Přihlašovací jméno k databázi" +#: src/Navigation/Notifications/Factory/Notification.php:263 +#, php-format +msgid "%1$s maybe wants to attend your event %2$s" +msgstr "" -#: src/Module/Install.php:241 -msgid "Database Login Password" -msgstr "Heslo k databázovému účtu " +#: src/Navigation/Notifications/Factory/Notification.php:270 +#, php-format +msgid "%1$s tagged you on %2$s" +msgstr "" -#: src/Module/Install.php:243 -msgid "For security reasons the password must not be empty" -msgstr "Z bezpečnostních důvodů nesmí být heslo prázdné." +#: src/Navigation/Notifications/Factory/Notification.php:274 +#, php-format +msgid "%1$s replied to you on %2$s" +msgstr "" -#: src/Module/Install.php:246 -msgid "Database Name" -msgstr "Jméno databáze" +#: src/Navigation/Notifications/Factory/Notification.php:278 +#, php-format +msgid "%1$s commented in your thread %2$s" +msgstr "" -#: src/Module/Install.php:250 src/Module/Install.php:279 -msgid "Please select a default timezone for your website" -msgstr "Prosím, vyberte výchozí časové pásmo pro váš server" +#: src/Navigation/Notifications/Factory/Notification.php:282 +#, php-format +msgid "%1$s commented on your comment %2$s" +msgstr "" -#: src/Module/Install.php:264 -msgid "Site settings" -msgstr "Nastavení webu" +#: src/Navigation/Notifications/Factory/Notification.php:289 +#, php-format +msgid "%1$s commented in their thread %2$s" +msgstr "" -#: src/Module/Install.php:274 -msgid "Site administrator email address" -msgstr "E-mailová adresa administrátora webu" +#: src/Navigation/Notifications/Factory/Notification.php:291 +#, php-format +msgid "%1$s commented in their thread" +msgstr "" -#: src/Module/Install.php:276 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Vaše e-mailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní." +#: src/Navigation/Notifications/Factory/Notification.php:293 +#, php-format +msgid "%1$s commented in the thread %2$s from %3$s" +msgstr "" -#: src/Module/Install.php:283 -msgid "System Language:" -msgstr "Systémový jazyk" +#: src/Navigation/Notifications/Factory/Notification.php:295 +#, php-format +msgid "%1$s commented in the thread from %3$s" +msgstr "" -#: src/Module/Install.php:285 -msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." -msgstr "Nastavte si výchozí jazyk pro vaše instalační rozhraní Friendica a pro odesílání e-mailů." +#: src/Navigation/Notifications/Factory/Notification.php:300 +#, php-format +msgid "%1$s commented on your thread %2$s" +msgstr "" -#: src/Module/Install.php:297 -msgid "Your Friendica site database has been installed." -msgstr "Databáze vašeho serveru Friendica byla nainstalována." +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 +msgid "[Friendica:Notify]" +msgstr "" -#: src/Module/Install.php:305 -msgid "Installation finished" -msgstr "Instalace dokončena" +#: src/Navigation/Notifications/Repository/Notify.php:293 +#, php-format +msgid "%s New mail received at %s" +msgstr "" -#: src/Module/Install.php:327 -msgid "

    What next

    " -msgstr "

    Co dál

    " +#: src/Navigation/Notifications/Repository/Notify.php:295 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s vám poslal/a novou soukromou zprávu na %2$s." -#: src/Module/Install.php:328 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"worker." -msgstr "DŮLEŽITÉ: Budete si muset [manuálně] nastavit naplánovaný úkol pro pracovníka." +#: src/Navigation/Notifications/Repository/Notify.php:296 +msgid "a private message" +msgstr "soukromou zprávu" -#: src/Module/Install.php:331 +#: src/Navigation/Notifications/Repository/Notify.php:296 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s vám poslal/a %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:298 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Pro zobrazení vašich soukromých zpráv a možnost na ně odpovědět prosím navštivte %s." + +#: src/Navigation/Notifications/Repository/Notify.php:328 +#, php-format +msgid "%1$s commented on %2$s's %3$s %4$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:333 +#, php-format +msgid "%1$s commented on your %2$s %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:337 +#, php-format +msgid "%1$s commented on their %2$s %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 +#, php-format +msgid "%1$s Comment to conversation #%2$d by %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:343 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s okomentoval/a vámi sledovanou položku/konverzaci." + +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět." + +#: src/Navigation/Notifications/Repository/Notify.php:354 +#, php-format +msgid "%s %s posted to your profile wall" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:356 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s přidal/a příspěvek na vaši profilovou zeď na %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:357 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s přidal/a příspěvek na [url=%2$s]vaši zeď[/url]" + +#: src/Navigation/Notifications/Repository/Notify.php:370 +#, php-format +msgid "%s Introduction received" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:372 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Obdržel/a jste představení od uživatele „%1$s“ na %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:373 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Obdržel/a jste [url=%1$s]představení[/url] od uživatele %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Můžete navštívit jeho/její profil na %s" + +#: src/Navigation/Notifications/Repository/Notify.php:380 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Prosím navštivte %s pro schválení či zamítnutí představení." + +#: src/Navigation/Notifications/Repository/Notify.php:387 +#, php-format +msgid "%s A new person is sharing with you" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "Uživatel %1$s s vámi sdílí na %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:397 +#, php-format +msgid "%s You have a new follower" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "Máte nového sledujícího na %2$s: %1$s" + +#: src/Navigation/Notifications/Repository/Notify.php:413 +#, php-format +msgid "%s Friend suggestion received" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:415 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Obdržel/a jste návrh přátelství od uživatele „%1$s“ na %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:416 #, 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 "Přejděte k registrační stránce vašeho nového serveru Friendica a zaregistrujte se jako nový uživatel. Nezapomeňte použít stejný e-mail, který jste zadal/a jako administrátorský e-mail. To vám umožní navštívit panel pro administraci stránky." +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Obdržel/a jste [url=%1$s]návrh přátelství[/url] s uživatelem %2$s od uživatele %3$s." + +#: src/Navigation/Notifications/Repository/Notify.php:422 +msgid "Name:" +msgstr "Jméno:" + +#: src/Navigation/Notifications/Repository/Notify.php:423 +msgid "Photo:" +msgstr "Fotka:" + +#: src/Navigation/Notifications/Repository/Notify.php:426 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Prosím navštivte %s pro schválení či zamítnutí návrhu." + +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 +#, php-format +msgid "%s Connection accepted" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "„%1$s“ přijal/a váš požadavek o spojení na %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s přijal/a váš [url=%1$s]požadavek o spojení[/url]." + +#: src/Navigation/Notifications/Repository/Notify.php:442 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "Jste nyní vzájemní přátelé a můžete si vyměňovat stavové zprávy, fotky a e-maily bez omezení." + +#: src/Navigation/Notifications/Repository/Notify.php:444 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Pokud chcete provést změny s tímto vztahem, prosím navštivte %s." + +#: src/Navigation/Notifications/Repository/Notify.php:457 +#, php-format +msgid "" +"'%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." +msgstr "„%1$s“ se rozhodl/a vás přijmout jako fanouška, což omezuje některé formy komunikace - například soukoromé zprávy a některé interakce s profily. Pokud je toto stránka celebrity či komunity, byla tato nastavení aplikována automaticky." + +#: src/Navigation/Notifications/Repository/Notify.php:459 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future." +msgstr "„%1$s“ se může rozhodnout tento vztah v budoucnosti rozšířit do oboustranného či jiného liberálnějšího vztahu." + +#: src/Navigation/Notifications/Repository/Notify.php:461 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Prosím navštivte %s pokud chcete změnit tento vztah." + +#: src/Navigation/Notifications/Repository/Notify.php:471 +msgid "registration request" +msgstr "požadavek o registraci" + +#: src/Navigation/Notifications/Repository/Notify.php:473 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "Obdržel/a jste požadavek o registraci od uživatele „%1$s“ na %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:474 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "Obdržel/a jste [url=%1$s]požadavek o registraci[/url] od uživatele %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 +#, php-format +msgid "" +"Full Name:\t%s\n" +"Site Location:\t%s\n" +"Login Name:\t%s (%s)" +msgstr "Celé jméno:\t\t%s\nAdresa stránky:\t\t%s\nPřihlašovací jméno:\t%s (%s)" + +#: src/Navigation/Notifications/Repository/Notify.php:485 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku." + +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:780 +#, php-format +msgid "%s %s tagged you" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:783 +#, php-format +msgid "%s %s shared a new post" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "" + +#: src/Object/EMail/ItemCCEMail.php:42 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Tuto zprávu vám poslal/a %s, člen sociální sítě Friendica." + +#: src/Object/EMail/ItemCCEMail.php:44 +#, php-format +msgid "You may visit them online at %s" +msgstr "Můžete jej/ji navštívit online na adrese %s" + +#: src/Object/EMail/ItemCCEMail.php:45 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesílatele odpovědí na tuto zprávu." + +#: src/Object/EMail/ItemCCEMail.php:49 +#, php-format +msgid "%s posted an update." +msgstr "%s poslal/a aktualizaci." #: src/Object/Post.php:138 -msgid "This entry was edited" -msgstr "Tato položka byla upravena" - -#: src/Object/Post.php:158 msgid "Private Message" msgstr "Soukromá zpráva" -#: src/Object/Post.php:200 -msgid "Delete locally" -msgstr "Smazat lokálně" +#: src/Object/Post.php:142 +msgid "Public Message" +msgstr "" -#: src/Object/Post.php:203 +#: src/Object/Post.php:146 +msgid "Unlisted Message" +msgstr "" + +#: src/Object/Post.php:181 +msgid "This entry was edited" +msgstr "Tato položka byla upravena" + +#: src/Object/Post.php:209 +msgid "Connector Message" +msgstr "" + +#: src/Object/Post.php:225 src/Object/Post.php:227 +msgid "Edit" +msgstr "Upravit" + +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Smazat globálně" -#: src/Object/Post.php:203 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Odstranit lokálně" -#: src/Object/Post.php:217 -msgid "save to folder" -msgstr "uložit do složky" +#: src/Object/Post.php:268 +#, php-format +msgid "Block %s" +msgstr "" -#: src/Object/Post.php:252 +#: src/Object/Post.php:273 +#, php-format +msgid "Ignore %s" +msgstr "" + +#: src/Object/Post.php:278 +#, php-format +msgid "Collapse %s" +msgstr "" + +#: src/Object/Post.php:282 +msgid "Report post" +msgstr "" + +#: src/Object/Post.php:293 +msgid "Save to folder" +msgstr "" + +#: src/Object/Post.php:333 msgid "I will attend" msgstr "zúčastním se" -#: src/Object/Post.php:252 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "nezúčastním se" -#: src/Object/Post.php:252 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "mohl bych se zúčastnit" -#: src/Object/Post.php:280 -msgid "ignore thread" -msgstr "ignorovat vlákno" +#: src/Object/Post.php:363 +msgid "Ignore thread" +msgstr "" -#: src/Object/Post.php:281 -msgid "unignore thread" -msgstr "přestat ignorovat vlákno" +#: src/Object/Post.php:364 +msgid "Unignore thread" +msgstr "" -#: src/Object/Post.php:282 -msgid "toggle ignore status" -msgstr "přepínat stav ignorování" +#: src/Object/Post.php:365 +msgid "Toggle ignore status" +msgstr "" -#: src/Object/Post.php:293 -msgid "add star" -msgstr "přidat hvězdu" +#: src/Object/Post.php:375 +msgid "Add star" +msgstr "" -#: src/Object/Post.php:294 -msgid "remove star" -msgstr "odebrat hvězdu" +#: src/Object/Post.php:376 +msgid "Remove star" +msgstr "" -#: src/Object/Post.php:295 -msgid "toggle star status" -msgstr "přepínat hvězdu" +#: src/Object/Post.php:377 +msgid "Toggle star status" +msgstr "" -#: src/Object/Post.php:298 -msgid "starred" -msgstr "s hvězdou" +#: src/Object/Post.php:388 +msgid "Pin" +msgstr "" -#: src/Object/Post.php:302 -msgid "add tag" -msgstr "přidat štítek" +#: src/Object/Post.php:389 +msgid "Unpin" +msgstr "" -#: src/Object/Post.php:313 -msgid "like" -msgstr "líbí se mi" +#: src/Object/Post.php:390 +msgid "Toggle pin status" +msgstr "" -#: src/Object/Post.php:314 -msgid "dislike" -msgstr "nelíbí se mi" +#: src/Object/Post.php:393 +msgid "Pinned" +msgstr "" -#: src/Object/Post.php:317 -msgid "Share this" -msgstr "Sdílet toto" +#: src/Object/Post.php:398 +msgid "Add tag" +msgstr "" -#: src/Object/Post.php:317 -msgid "share" -msgstr "sdílet" +#: src/Object/Post.php:411 +msgid "Quote share this" +msgstr "" -#: src/Object/Post.php:385 +#: src/Object/Post.php:411 +msgid "Quote Share" +msgstr "" + +#: src/Object/Post.php:414 +msgid "Reshare this" +msgstr "" + +#: src/Object/Post.php:414 +msgid "Reshare" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Cancel your Reshare" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Unshare" +msgstr "" + +#: src/Object/Post.php:466 +#, php-format +msgid "%s (Received %s)" +msgstr "" + +#: src/Object/Post.php:472 +msgid "Comment this item on your system" +msgstr "" + +#: src/Object/Post.php:472 +msgid "Remote comment" +msgstr "" + +#: src/Object/Post.php:494 +msgid "Share via ..." +msgstr "" + +#: src/Object/Post.php:494 +msgid "Share via external services" +msgstr "" + +#: src/Object/Post.php:523 msgid "to" msgstr "na" -#: src/Object/Post.php:386 +#: src/Object/Post.php:524 msgid "via" msgstr "přes" -#: src/Object/Post.php:387 +#: src/Object/Post.php:525 msgid "Wall-to-Wall" msgstr "Ze zdi na zeď" -#: src/Object/Post.php:388 +#: src/Object/Post.php:526 msgid "via Wall-To-Wall:" msgstr "ze zdi na zeď" -#: src/Object/Post.php:421 +#: src/Object/Post.php:573 #, php-format msgid "Reply to %s" msgstr "Odpovědět uživateli %s" -#: src/Object/Post.php:437 +#: src/Object/Post.php:576 +msgid "More" +msgstr "" + +#: src/Object/Post.php:595 msgid "Notifier task is pending" msgstr "Úloha pro notifiera čeká" -#: src/Object/Post.php:438 +#: src/Object/Post.php:596 msgid "Delivery to remote servers is pending" msgstr "Doručení vzdáleným serverům čeká" -#: src/Object/Post.php:439 +#: src/Object/Post.php:597 msgid "Delivery to remote servers is underway" msgstr "Doručení vzdáleným serverům je v plném proudu" -#: src/Object/Post.php:440 +#: src/Object/Post.php:598 msgid "Delivery to remote servers is mostly done" msgstr "Doručení vzdáleným serverům je téměř hotovo" -#: src/Object/Post.php:441 +#: src/Object/Post.php:599 msgid "Delivery to remote servers is done" msgstr "Doručení vzdáleným serverům je hotovo" -#: src/Object/Post.php:461 +#: src/Object/Post.php:619 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -10626,81 +12090,469 @@ msgstr[1] "%d komentáře" msgstr[2] "%d komentáře" msgstr[3] "%d komentářů" -#: src/Object/Post.php:462 +#: src/Object/Post.php:620 msgid "Show more" msgstr "Zobrazit více" -#: src/Object/Post.php:463 +#: src/Object/Post.php:621 msgid "Show fewer" msgstr "Zobrazit méně" -#: src/App/Module.php:205 -msgid "You must be logged in to use addons. " -msgstr "Pro použití doplňků musíte být přihlášen/a." - -#: src/App/Page.php:229 -msgid "Delete this item?" -msgstr "Odstranit tuto položku?" - -#: src/App/Page.php:277 -msgid "toggle mobile" -msgstr "přepínat mobilní zobrazení" - -#: src/LegacyModule.php:30 +#: src/Object/Post.php:657 #, php-format -msgid "Legacy module file not found: %s" -msgstr "Soubor legacy modulu nenalezen: %s" +msgid "Reshared by: %s" +msgstr "" -#: src/BaseModule.php:135 +#: src/Object/Post.php:662 +#, php-format +msgid "Viewed by: %s" +msgstr "" + +#: src/Object/Post.php:667 +#, php-format +msgid "Liked by: %s" +msgstr "" + +#: src/Object/Post.php:672 +#, php-format +msgid "Disliked by: %s" +msgstr "" + +#: src/Object/Post.php:677 +#, php-format +msgid "Attended by: %s" +msgstr "" + +#: src/Object/Post.php:682 +#, php-format +msgid "Maybe attended by: %s" +msgstr "" + +#: src/Object/Post.php:687 +#, php-format +msgid "Not attended by: %s" +msgstr "" + +#: src/Object/Post.php:692 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "" + +#: src/Protocol/OStatus.php:1390 +#, php-format +msgid "%s is now following %s." +msgstr "%s nyní sleduje %s." + +#: src/Protocol/OStatus.php:1391 +msgid "following" +msgstr "sleduji" + +#: src/Protocol/OStatus.php:1394 +#, php-format +msgid "%s stopped following %s." +msgstr "%s přestal/a sledovat uživatele %s." + +#: src/Protocol/OStatus.php:1395 +msgid "stopped following" +msgstr "přestal/a sledovat" + +#: src/Render/FriendicaSmartyEngine.php:56 +#, php-format +msgid "The folder %s must be writable by webserver." +msgstr "" + +#: src/Security/Authentication.php:227 +msgid "Login failed." +msgstr "Přihlášení se nezdařilo." + +#: src/Security/Authentication.php:272 +msgid "Login failed. Please check your credentials." +msgstr "" + +#: src/Security/Authentication.php:391 +#, php-format +msgid "Welcome %s" +msgstr "Vítejte, %s" + +#: src/Security/Authentication.php:392 +msgid "Please upload a profile photo." +msgstr "Prosím nahrajte profilovou fotku." + +#: src/Util/EMailer/MailBuilder.php:260 +msgid "Friendica Notification" +msgstr "" + +#: src/Util/EMailer/NotifyMailBuilder.php:78 +#: src/Util/EMailer/SystemMailBuilder.php:54 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "" + +#: src/Util/EMailer/NotifyMailBuilder.php:80 +#: src/Util/EMailer/SystemMailBuilder.php:56 +#, php-format +msgid "%s Administrator" +msgstr "" + +#: 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 "" + +#: src/Util/Temporal.php:172 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: src/Util/Temporal.php:280 +#, php-format +msgid "Time zone: %s Change in Settings" +msgstr "" + +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +msgid "never" +msgstr "" + +#: src/Util/Temporal.php:343 +msgid "less than a second ago" +msgstr "" + +#: src/Util/Temporal.php:352 +msgid "year" +msgstr "" + +#: src/Util/Temporal.php:352 +msgid "years" +msgstr "" + +#: src/Util/Temporal.php:353 +msgid "months" +msgstr "" + +#: src/Util/Temporal.php:354 +msgid "weeks" +msgstr "" + +#: src/Util/Temporal.php:355 +msgid "days" +msgstr "" + +#: src/Util/Temporal.php:356 +msgid "hour" +msgstr "" + +#: src/Util/Temporal.php:356 +msgid "hours" +msgstr "" + +#: src/Util/Temporal.php:357 +msgid "minute" +msgstr "" + +#: src/Util/Temporal.php:357 +msgid "minutes" +msgstr "" + +#: src/Util/Temporal.php:358 +msgid "second" +msgstr "" + +#: src/Util/Temporal.php:358 +msgid "seconds" +msgstr "" + +#: src/Util/Temporal.php:367 +#, php-format +msgid "in %1$d %2$s" +msgstr "" + +#: src/Util/Temporal.php:370 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: src/Worker/PushSubscription.php:110 +msgid "Notification from Friendica" +msgstr "" + +#: src/Worker/PushSubscription.php:111 +msgid "Empty Post" +msgstr "" + +#: view/theme/duepuntozero/config.php:68 +msgid "default" +msgstr "" + +#: view/theme/duepuntozero/config.php:69 +msgid "greenzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:70 +msgid "purplezero" +msgstr "" + +#: view/theme/duepuntozero/config.php:71 +msgid "easterbunny" +msgstr "" + +#: view/theme/duepuntozero/config.php:72 +msgid "darkzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:73 +msgid "comix" +msgstr "" + +#: view/theme/duepuntozero/config.php:74 +msgid "slackr" +msgstr "" + +#: view/theme/duepuntozero/config.php:87 +msgid "Variations" +msgstr "" + +#: view/theme/frio/config.php:153 +msgid "Light (Accented)" +msgstr "" + +#: view/theme/frio/config.php:154 +msgid "Dark (Accented)" +msgstr "" + +#: view/theme/frio/config.php:155 +msgid "Black (Accented)" +msgstr "" + +#: view/theme/frio/config.php:167 +msgid "Note" +msgstr "" + +#: view/theme/frio/config.php:167 +msgid "Check image permissions if all users are allowed to see the image" +msgstr "" + +#: view/theme/frio/config.php:173 +msgid "Custom" +msgstr "" + +#: view/theme/frio/config.php:174 +msgid "Legacy" +msgstr "" + +#: view/theme/frio/config.php:175 +msgid "Accented" +msgstr "" + +#: view/theme/frio/config.php:176 +msgid "Select color scheme" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Select scheme accent" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Blue" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Red" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Purple" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Green" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Pink" +msgstr "" + +#: view/theme/frio/config.php:178 +msgid "Copy or paste schemestring" +msgstr "" + +#: view/theme/frio/config.php:178 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 "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním." +"You can copy this string to share your theme with others. Pasting here " +"applies the schemestring" +msgstr "" -#: src/Console/ArchiveContact.php:86 -#, php-format -msgid "Could not find any unarchived contact entry for this URL (%s)" -msgstr "Nelze najít žádný nearchivovaný záznam kontaktu pro tuto URL adresu (%s)" +#: view/theme/frio/config.php:179 +msgid "Navigation bar background color" +msgstr "" -#: src/Console/ArchiveContact.php:89 -msgid "The contact entries have been archived" -msgstr "Záznamy kontaktů byly archivovány" +#: view/theme/frio/config.php:180 +msgid "Navigation bar icon color " +msgstr "" -#: src/Console/NewPassword.php:93 -msgid "Enter new password: " -msgstr "Zadejte nové heslo" +#: view/theme/frio/config.php:181 +msgid "Link color" +msgstr "" -#: src/Console/PostUpdate.php:73 -#, php-format -msgid "Post update version number has been set to %s." -msgstr "Číslo verze post update bylo nastaveno na %s." +#: view/theme/frio/config.php:182 +msgid "Set the background color" +msgstr "" -#: src/Console/PostUpdate.php:81 -msgid "Check for pending update actions." -msgstr "Zkontrolovat čekající akce po aktualizaci." +#: view/theme/frio/config.php:183 +msgid "Content background opacity" +msgstr "" -#: src/Console/PostUpdate.php:83 -msgid "Done." -msgstr "Hotovo." +#: view/theme/frio/config.php:184 +msgid "Set the background image" +msgstr "" -#: src/Console/PostUpdate.php:85 -msgid "Execute pending post updates." -msgstr "Provést čekající aktualizace příspěvků." +#: view/theme/frio/config.php:185 +msgid "Background image style" +msgstr "" -#: src/Console/PostUpdate.php:91 -msgid "All pending post updates are done." -msgstr "Všechny čekající aktualizace příspěvků jsou hotové." +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "" -#: src/App.php:485 -msgid "No system theme config value set." -msgstr "Není nastavena konfigurační hodnota systémového motivu." +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "" -#: update.php:218 -#, php-format -msgid "%s: Updating author-id and owner-id in item and thread table. " -msgstr "%s: Aktualizuji author-id a owner-id v tabulce položek a vláken." +#: view/theme/frio/config.php:192 +msgid "Login page background image" +msgstr "" -#: update.php:273 -#, php-format -msgid "%s: Updating post-type." -msgstr "%s: Aktualizuji post-type." +#: view/theme/frio/config.php:196 +msgid "Login page background color" +msgstr "" + +#: view/theme/frio/config.php:196 +msgid "Leave background image and color empty for theme defaults" +msgstr "" + +#: view/theme/frio/php/Image.php:39 +msgid "Top Banner" +msgstr "" + +#: view/theme/frio/php/Image.php:39 +msgid "" +"Resize image to the width of the screen and show background color below on " +"long pages." +msgstr "" + +#: view/theme/frio/php/Image.php:40 +msgid "Full screen" +msgstr "" + +#: view/theme/frio/php/Image.php:40 +msgid "" +"Resize image to fill entire screen, clipping either the right or the bottom." +msgstr "" + +#: view/theme/frio/php/Image.php:41 +msgid "Single row mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:41 +msgid "" +"Resize image to repeat it on a single row, either vertical or horizontal." +msgstr "" + +#: view/theme/frio/php/Image.php:42 +msgid "Mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:42 +msgid "Repeat image to fill the screen." +msgstr "" + +#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +msgid "Skip to main content" +msgstr "" + +#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +msgid "Back to top" +msgstr "" + +#: view/theme/frio/theme.php:211 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:214 +msgid "Visitor" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Alignment" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Left" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Center" +msgstr "" + +#: view/theme/quattro/config.php:90 +msgid "Color scheme" +msgstr "" + +#: view/theme/quattro/config.php:91 +msgid "Posts font size" +msgstr "" + +#: view/theme/quattro/config.php:92 +msgid "Textareas font size" +msgstr "" + +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" +msgstr "" + +#: view/theme/vier/config.php:131 +msgid "don't show" +msgstr "" + +#: view/theme/vier/config.php:131 +msgid "show" +msgstr "" + +#: view/theme/vier/config.php:137 +msgid "Set style" +msgstr "" + +#: view/theme/vier/config.php:138 +msgid "Community Pages" +msgstr "" + +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +msgid "Community Profiles" +msgstr "" + +#: view/theme/vier/config.php:140 +msgid "Help or @NewHere ?" +msgstr "" + +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +msgid "Connect Services" +msgstr "" + +#: view/theme/vier/config.php:142 +msgid "Find Friends" +msgstr "" + +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +msgid "Last users" +msgstr "" + +#: view/theme/vier/theme.php:234 +msgid "Quick Start" +msgstr "" diff --git a/view/lang/cs/strings.php b/view/lang/cs/strings.php index d86dac704..1f66aafc5 100644 --- a/view/lang/cs/strings.php +++ b/view/lang/cs/strings.php @@ -5,542 +5,10 @@ function string_plural_select_cs($n){ $n = intval($n); if (($n == 1 && $n % 1 == 0)) { return 0; } else if (($n >= 2 && $n <= 4 && $n % 1 == 0)) { return 1; } else if (($n % 1 != 0 )) { return 2; } else { return 3; } }} +$a->strings['Unable to locate original post.'] = 'Nelze nalézt původní příspěvek.'; +$a->strings['Empty post discarded.'] = 'Prázdný příspěvek odstraněn.'; $a->strings['Item not found.'] = 'Položka nenalezena.'; -$a->strings['Do you really want to delete this item?'] = 'Opravdu chcete smazat tuto položku?'; -$a->strings['Yes'] = 'Ano'; -$a->strings['Cancel'] = 'Zrušit'; $a->strings['Permission denied.'] = 'Přístup odmítnut.'; -$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Byl dosažen denní limit %d příspěvku. Příspěvek byl odmítnut.', - 1 => 'Byl dosažen denní limit %d příspěvků. Příspěvek byl odmítnut.', - 2 => 'Byl dosažen denní limit %d příspěvku. Příspěvek byl odmítnut.', - 3 => 'Byl dosažen denní limit %d příspěvků. Příspěvek byl odmítnut.', -]; -$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Byl dosažen týdenní limit %d příspěvku. Příspěvek byl odmítnut.', - 1 => 'Byl dosažen týdenní limit %d příspěvků. Příspěvek byl odmítnut.', - 2 => 'Byl dosažen týdenní limit %d příspěvku. Příspěvek byl odmítnut.', - 3 => 'Byl dosažen týdenní limit %d příspěvků. Příspěvek byl odmítnut.', -]; -$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = 'Byl dosažen měsíční limit %d příspěvků. Příspěvek byl odmítnut.'; -$a->strings['Profile Photos'] = 'Profilové fotky'; -$a->strings['event'] = 'událost'; -$a->strings['status'] = 'stav'; -$a->strings['photo'] = 'fotka'; -$a->strings['%1$s likes %2$s\'s %3$s'] = 'Uživateli %1$s se líbí %3$s uživatele %2$s'; -$a->strings['%1$s doesn\'t like %2$s\'s %3$s'] = 'Uživateli %1$s se nelíbí %3$s uživatele %2$s'; -$a->strings['%1$s attends %2$s\'s %3$s'] = '%1$s se účastní %3$s uživatele %2$s'; -$a->strings['%1$s doesn\'t attend %2$s\'s %3$s'] = '%1$s se neúčastní %3$s uživatele %2$s'; -$a->strings['%1$s attends maybe %2$s\'s %3$s'] = '%1$s se možná účastní %3$s uživatele %2$s'; -$a->strings['%1$s is now friends with %2$s'] = '%1$s se nyní přátelí s uživatelem %2$s'; -$a->strings['%1$s poked %2$s'] = '%1$s šťouchnul/a uživatele %2$s'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s označil/a %3$s uživatele %2$s štítkem %4$s'; -$a->strings['post/item'] = 'příspěvek/položka'; -$a->strings['%1$s marked %2$s\'s %3$s as favorite'] = '%1$s označil/a %3$s uživatele %2$s jako oblíbené'; -$a->strings['Likes'] = 'Libí se'; -$a->strings['Dislikes'] = 'Nelibí se'; -$a->strings['Attending'] = [ - 0 => 'Účastní se', - 1 => 'Účastní se', - 2 => 'Účastní se', - 3 => 'Účastní se', -]; -$a->strings['Not attending'] = 'Neúčastní se'; -$a->strings['Might attend'] = 'Mohl/a by se zúčastnit'; -$a->strings['Reshares'] = 'Znovusdílení'; -$a->strings['Select'] = 'Vybrat'; -$a->strings['Delete'] = 'Odstranit'; -$a->strings['View %s\'s profile @ %s'] = 'Zobrazit profil uživatele %s na %s'; -$a->strings['Categories:'] = 'Kategorie:'; -$a->strings['Filed under:'] = 'Vyplněn pod:'; -$a->strings['%s from %s'] = '%s z %s'; -$a->strings['View in context'] = 'Zobrazit v kontextu'; -$a->strings['Please wait'] = 'Čekejte prosím'; -$a->strings['remove'] = 'odstranit'; -$a->strings['Delete Selected Items'] = 'Smazat vybrané položky'; -$a->strings['Follow Thread'] = 'Sledovat vlákno'; -$a->strings['View Status'] = 'Zobrazit stav'; -$a->strings['View Profile'] = 'Zobrazit profil'; -$a->strings['View Photos'] = 'Zobrazit fotky'; -$a->strings['Network Posts'] = 'Síťové příspěvky'; -$a->strings['View Contact'] = 'Zobrazit kontakt'; -$a->strings['Send PM'] = 'Poslat soukromou zprávu'; -$a->strings['Block'] = 'Blokovat'; -$a->strings['Ignore'] = 'Ignorovat'; -$a->strings['Poke'] = 'Šťouchnout'; -$a->strings['Connect/Follow'] = 'Spojit se/sledovat'; -$a->strings['%s likes this.'] = 'Uživateli %s se tohle líbí.'; -$a->strings['%s doesn\'t like this.'] = 'Uživateli %s se tohle nelíbí.'; -$a->strings['%s attends.'] = '%s se účastní.'; -$a->strings['%s doesn\'t attend.'] = '%s se neúčastní.'; -$a->strings['%s attends maybe.'] = '%s se možná účastní.'; -$a->strings['%s reshared this.'] = '%s tohle znovusdílel/a.'; -$a->strings['and'] = 'a'; -$a->strings['and %d other people'] = 'a dalších %d lidí'; -$a->strings['%2$d people like this'] = '%2$d lidem se tohle líbí'; -$a->strings['%s like this.'] = 'Uživatelům %s se tohle líbí.'; -$a->strings['%2$d people don\'t like this'] = '%2$d lidem se tohle nelíbí'; -$a->strings['%s don\'t like this.'] = 'Uživatelům %s se tohle nelíbí.'; -$a->strings['%2$d people attend'] = '%2$d lidí se účastní'; -$a->strings['%s attend.'] = '%s se účastní.'; -$a->strings['%2$d people don\'t attend'] = '%2$d lidí se neúčastní'; -$a->strings['%s don\'t attend.'] = '%s se neúčastní'; -$a->strings['%2$d people attend maybe'] = '%2$d lidí se možná účastní'; -$a->strings['%s attend maybe.'] = '%s se možná účastní'; -$a->strings['%2$d people reshared this'] = '%2$d lidí tohle znovusdílelo'; -$a->strings['Visible to everybody'] = 'Viditelné pro všechny'; -$a->strings['Please enter a image/video/audio/webpage URL:'] = 'Prosím zadejte URL obrázku/videa/audia/webové stránky:'; -$a->strings['Tag term:'] = 'Štítek:'; -$a->strings['Save to Folder:'] = 'Uložit do složky:'; -$a->strings['Where are you right now?'] = 'Kde právě jste?'; -$a->strings['Delete item(s)?'] = 'Smazat položku(y)?'; -$a->strings['New Post'] = 'Nový příspěvek'; -$a->strings['Share'] = 'Sdílet'; -$a->strings['Upload photo'] = 'Nahrát fotku'; -$a->strings['upload photo'] = 'nahrát fotku'; -$a->strings['Attach file'] = 'Přiložit soubor'; -$a->strings['attach file'] = 'přiložit soubor'; -$a->strings['Bold'] = 'Tučné'; -$a->strings['Italic'] = 'Kurziva'; -$a->strings['Underline'] = 'Podtržené'; -$a->strings['Quote'] = 'Citace'; -$a->strings['Code'] = 'Kód'; -$a->strings['Image'] = 'Obrázek'; -$a->strings['Link'] = 'Odkaz'; -$a->strings['Link or Media'] = 'Odkaz nebo média'; -$a->strings['Set your location'] = 'Nastavit vaši polohu'; -$a->strings['set location'] = 'nastavit polohu'; -$a->strings['Clear browser location'] = 'Vymazat polohu v prohlížeči'; -$a->strings['clear location'] = 'vymazat polohu'; -$a->strings['Set title'] = 'Nastavit nadpis'; -$a->strings['Categories (comma-separated list)'] = 'Kategorie (seznam, oddělujte čárkou)'; -$a->strings['Permission settings'] = 'Nastavení oprávnění'; -$a->strings['permissions'] = 'oprávnění'; -$a->strings['Public post'] = 'Veřejný příspěvek'; -$a->strings['Preview'] = 'Náhled'; -$a->strings['Post to Groups'] = 'Zveřejnit ve skupinách'; -$a->strings['Post to Contacts'] = 'Zveřejnit v kontaktech'; -$a->strings['Private post'] = 'Soukromý příspěvek'; -$a->strings['Message'] = 'Zpráva'; -$a->strings['Browser'] = 'Prohlížeč'; -$a->strings['View all'] = 'Zobrazit vše'; -$a->strings['Like'] = [ - 0 => 'Líbí se', - 1 => 'Líbí se', - 2 => 'Líbí se', - 3 => 'Líbí se', -]; -$a->strings['Dislike'] = [ - 0 => 'Nelíbí se', - 1 => 'Nelíbí se', - 2 => 'Nelíbí se', - 3 => 'Nelíbí se', -]; -$a->strings['Not Attending'] = [ - 0 => 'Neúčastní se', - 1 => 'Neúčastní se', - 2 => 'Neúčastní se', - 3 => 'Neúčastní se', -]; -$a->strings['Undecided'] = [ - 0 => 'Nerozhodnut', - 1 => 'Nerozhodnutí', - 2 => 'Nerozhodnutých', - 3 => 'Nerozhodnuti', -]; -$a->strings['Friendica Notification'] = 'Oznámení Friendica'; -$a->strings['Thank You,'] = 'Děkuji,'; -$a->strings['%1$s, %2$s Administrator'] = '%1$s, administrátor %2$s'; -$a->strings['%s Administrator'] = 'Administrátor %s'; -$a->strings['[Friendica:Notify] New mail received at %s'] = '[Friendica:Oznámení] Obdržena nová zpráva na %s'; -$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s vám poslal/a novou soukromou zprávu na %2$s.'; -$a->strings['a private message'] = 'soukromou zprávu'; -$a->strings['%1$s sent you %2$s.'] = '%1$s vám poslal/a %2$s.'; -$a->strings['Please visit %s to view and/or reply to your private messages.'] = 'Pro zobrazení vašich soukromých zpráv a možnost na ně odpovědět prosím navštivte %s.'; -$a->strings['%1$s tagged you on [url=%2$s]a %3$s[/url]'] = '%1$s vás označil/a na [url=%2$s]%3$s[/url]'; -$a->strings['%1$s commented on [url=%2$s]a %3$s[/url]'] = '%1$s okomentoval/a [url=%2$s]%3$s[/url]'; -$a->strings['%1$s tagged you on [url=%2$s]%3$s\'s %4$s[/url]'] = '%1$s vás označil/a na [url=%2$s]%3$s uživatele %4$s[/url]'; -$a->strings['%1$s commented on [url=%2$s]%3$s\'s %4$s[/url]'] = '%1$s okomentoval/a [url=%2$s]%4$s od %3$s[/url]'; -$a->strings['%1$s tagged you on [url=%2$s]your %3$s[/url]'] = '%1$s vás označil/a na [url=%2$s]vašem %3$s[/url]'; -$a->strings['%1$s commented on [url=%2$s]your %3$s[/url]'] = '%1$s okomentoval/a [url=%2$s]váš/vaši %3$s[/url]'; -$a->strings['%1$s tagged you on [url=%2$s]their %3$s[/url]'] = '%1$s vás označil/a na [url=%2$s]jeho/její %3$s[/url]'; -$a->strings['%1$s commented on [url=%2$s]their %3$s[/url]'] = '%1$s okomentoval/a [url=%2$s]svůj %3$s[/url]'; -$a->strings['[Friendica:Notify] %s tagged you'] = '[Friendica:Oznámení] %s vás označil/a'; -$a->strings['%1$s tagged you at %2$s'] = '%1$s vás označil/a na %2$s'; -$a->strings['[Friendica:Notify] Comment to conversation #%1$d by %2$s'] = '[Friendica:Oznámení] Komentář ke konverzaci #%1$d od %2$s'; -$a->strings['%s commented on an item/conversation you have been following.'] = '%s okomentoval/a vámi sledovanou položku/konverzaci.'; -$a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět.'; -$a->strings['[Friendica:Notify] %s posted to your profile wall'] = '[Friendica:Oznámení] %s přidal/a příspěvek na vaši profilovou zeď'; -$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s přidal/a příspěvek na vaši profilovou zeď na %2$s'; -$a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s přidal/a příspěvek na [url=%2$s]vaši zeď[/url]'; -$a->strings['[Friendica:Notify] %s shared a new post'] = '[Friendica:Oznámení] %s sdílel/a nový příspěvek'; -$a->strings['%1$s shared a new post at %2$s'] = '%1$s sdílel/a nový příspěvek na %2$s'; -$a->strings['%1$s [url=%2$s]shared a post[/url].'] = '%1$s [url=%2$s]sdílel/a příspěvek[/url].'; -$a->strings['[Friendica:Notify] %1$s poked you'] = '[Friendica:Oznámení] %1$s vás šťouchnul/a'; -$a->strings['%1$s poked you at %2$s'] = '%1$s vás šťouchnul/a na %2$s'; -$a->strings['%1$s [url=%2$s]poked you[/url].'] = '%1$s [url=%2$s]vás šťouchnul/a[/url].'; -$a->strings['[Friendica:Notify] %s tagged your post'] = '[Friendica:Oznámení] %s označil/a váš příspěvek'; -$a->strings['%1$s tagged your post at %2$s'] = '%1$s označil/a váš příspěvek na %2$s'; -$a->strings['%1$s tagged [url=%2$s]your post[/url]'] = '%1$s označil/a [url=%2$s]váš příspěvek[/url]'; -$a->strings['[Friendica:Notify] Introduction received'] = '[Friendica:Oznámení] Obdrženo představení'; -$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Obdržel/a jste představení od uživatele „%1$s“ na %2$s'; -$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Obdržel/a jste [url=%1$s]představení[/url] od uživatele %2$s.'; -$a->strings['You may visit their profile at %s'] = 'Můžete navštívit jeho/její profil na %s'; -$a->strings['Please visit %s to approve or reject the introduction.'] = 'Prosím navštivte %s pro schválení či zamítnutí představení.'; -$a->strings['[Friendica:Notify] A new person is sharing with you'] = '[Friendica:Oznámení] Nový člověk s vámi sdílí'; -$a->strings['%1$s is sharing with you at %2$s'] = 'Uživatel %1$s s vámi sdílí na %2$s'; -$a->strings['[Friendica:Notify] You have a new follower'] = '[Friendica:Oznámení] Máte nového sledujícího'; -$a->strings['You have a new follower at %2$s : %1$s'] = 'Máte nového sledujícího na %2$s: %1$s'; -$a->strings['[Friendica:Notify] Friend suggestion received'] = '[Friendica:Oznámení] Obdržen návrh přátelství'; -$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = 'Obdržel/a jste návrh přátelství od uživatele „%1$s“ na %2$s'; -$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = 'Obdržel/a jste [url=%1$s]návrh přátelství[/url] s uživatelem %2$s od uživatele %3$s.'; -$a->strings['Name:'] = 'Jméno:'; -$a->strings['Photo:'] = 'Fotka:'; -$a->strings['Please visit %s to approve or reject the suggestion.'] = 'Prosím navštivte %s pro schválení či zamítnutí návrhu.'; -$a->strings['[Friendica:Notify] Connection accepted'] = '[Friendica:Oznámení] Spojení přijato'; -$a->strings['\'%1$s\' has accepted your connection request at %2$s'] = '„%1$s“ přijal/a váš požadavek o spojení na %2$s'; -$a->strings['%2$s has accepted your [url=%1$s]connection request[/url].'] = '%2$s přijal/a váš [url=%1$s]požadavek o spojení[/url].'; -$a->strings['You are now mutual friends and may exchange status updates, photos, and email without restriction.'] = 'Jste nyní vzájemní přátelé a můžete si vyměňovat stavové zprávy, fotky a e-maily bez omezení.'; -$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'Pokud chcete provést změny s tímto vztahem, prosím navštivte %s.'; -$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“ se rozhodl/a vás přijmout jako fanouška, což omezuje některé formy komunikace - například soukoromé zprávy a některé interakce s profily. Pokud je toto stránka celebrity či komunity, byla tato nastavení aplikována automaticky.'; -$a->strings['\'%1$s\' may choose to extend this into a two-way or more permissive relationship in the future.'] = '„%1$s“ se může rozhodnout tento vztah v budoucnosti rozšířit do oboustranného či jiného liberálnějšího vztahu.'; -$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'Prosím navštivte %s pokud chcete změnit tento vztah.'; -$a->strings['[Friendica System Notify]'] = '[Systémové oznámení Friendica]'; -$a->strings['registration request'] = 'požadavek o registraci'; -$a->strings['You\'ve received a registration request from \'%1$s\' at %2$s'] = 'Obdržel/a jste požadavek o registraci od uživatele „%1$s“ na %2$s'; -$a->strings['You\'ve received a [url=%1$s]registration request[/url] from %2$s.'] = 'Obdržel/a jste [url=%1$s]požadavek o registraci[/url] od uživatele %2$s.'; -$a->strings['Full Name: %s -Site Location: %s -Login Name: %s (%s)'] = 'Celé jméno: %s -Adresa stránky: %s -Přihlašovací jméno: %s (%s)'; -$a->strings['Please visit %s to approve or reject the request.'] = 'Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku.'; -$a->strings['Authorize application connection'] = 'Povolit připojení aplikacím'; -$a->strings['Return to your app and insert this Securty Code:'] = 'Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:'; -$a->strings['Please login to continue.'] = 'Pro pokračování se prosím přihlaste.'; -$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?'; -$a->strings['No'] = 'Ne'; -$a->strings['Parent user not found.'] = 'Rodičovský uživatel nenalezen.'; -$a->strings['No parent user'] = 'Žádný rodičovský uživatel'; -$a->strings['Parent Password:'] = 'Rodičovské heslo:'; -$a->strings['Please enter the password of the parent account to legitimize your request.'] = 'Prosím vložte heslo rodičovského účtu k legitimizaci vašeho požadavku.'; -$a->strings['Parent User'] = 'Rodičovský uživatel'; -$a->strings['Parent users have total control about this account, including the account settings. Please double check whom you give this access.'] = 'Rodičovští uživatelé mají naprostou kontrolu nad tímto účtem, včetně nastavení účtu. Prosím překontrolujte, komu tento přístup dáváte.'; -$a->strings['Save Settings'] = 'Uložit nastavení'; -$a->strings['Delegate Page Management'] = 'Správa delegátů stránky'; -$a->strings['Delegates'] = 'Delegáti'; -$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.'] = 'Delegáti jsou schopni řídit všechny aspekty tohoto účtu/stránky, kromě základních nastavení účtu. Prosím, nedelegujte svůj osobní účet nikomu, komu zcela nedůvěřujete.'; -$a->strings['Existing Page Delegates'] = 'Stávající delegáti stránky '; -$a->strings['Potential Delegates'] = 'Potenciální delegáti'; -$a->strings['Remove'] = 'Odstranit'; -$a->strings['Add'] = 'Přidat'; -$a->strings['No entries.'] = 'Žádné záznamy.'; -$a->strings['Post successful.'] = 'Příspěvek úspěšně odeslán'; -$a->strings['Subscribing to OStatus contacts'] = 'Registruji Vás ke kontaktům OStatus'; -$a->strings['No contact provided.'] = 'Nebyl poskytnut žádný kontakt.'; -$a->strings['Couldn\'t fetch information for contact.'] = 'Nelze načíst informace pro kontakt.'; -$a->strings['Couldn\'t fetch friends for contact.'] = 'Nelze načíst přátele pro kontakt.'; -$a->strings['Done'] = 'Hotovo'; -$a->strings['success'] = 'úspěch'; -$a->strings['failed'] = 'selhalo'; -$a->strings['ignored'] = 'ignorován'; -$a->strings['Keep this window open until done.'] = 'Toto okno nechte otevřené až do konce.'; -$a->strings['Permission denied'] = 'Nedostatečné oprávnění'; -$a->strings['Invalid profile identifier.'] = 'Neplatný identifikátor profilu.'; -$a->strings['Profile Visibility Editor'] = 'Editor viditelnosti profilu '; -$a->strings['Profile'] = 'Profil'; -$a->strings['Click on a contact to add or remove.'] = 'Klikněte na kontakt pro přidání nebo odebrání'; -$a->strings['Visible To'] = 'Viditelný uživatelům'; -$a->strings['All Contacts (with secure profile access)'] = 'Všem kontaktům (se zabezpečeným přístupem k profilu)'; -$a->strings['Account approved.'] = 'Účet schválen.'; -$a->strings['Registration revoked for %s'] = 'Registrace zrušena pro %s'; -$a->strings['Please login.'] = 'Přihlaste se, prosím.'; -$a->strings['User deleted their account'] = 'Uživatel si smazal účet'; -$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Uživatel na vašem serveru Friendica smazal svůj účet. Prosím ujistěte se, ře jsou jeho data odstraněna ze záloh dat.'; -$a->strings['The user id is %d'] = 'Uživatelské ID je %d'; -$a->strings['Remove My Account'] = 'Odstranit můj účet'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit.'; -$a->strings['Please enter your password for verification:'] = 'Prosím, zadejte své heslo pro ověření:'; -$a->strings['Resubscribing to OStatus contacts'] = 'Znovu Vás registruji ke kontaktům OStatus'; -$a->strings['Error'] = [ - 0 => 'Chyba', - 1 => 'Chyby', - 2 => 'Chyb', - 3 => 'Chyb', -]; -$a->strings['Tag(s) removed'] = 'Štítek(ky) odstraněn(y)'; -$a->strings['Remove Item Tag'] = 'Odebrat štítek položky'; -$a->strings['Select a tag to remove: '] = 'Vyberte štítek k odebrání: '; -$a->strings['User imports on closed servers can only be done by an administrator.'] = 'Importy uživatelů na uzavřených serverech může provést pouze administrátor.'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to zítra znovu.'; -$a->strings['Import'] = 'Import'; -$a->strings['Move account'] = 'Přesunout účet'; -$a->strings['You can import an account from another Friendica server.'] = 'Můžete importovat účet z jiného serveru Friendica.'; -$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.'] = 'Musíte exportovat svůj účet na starém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhoval/a.'; -$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Tato vlastnost je experimentální. Nemůžeme importovat kontakty za sítě OStatus (GNU social/StatusNet) nebo z Diaspory'; -$a->strings['Account file'] = 'Soubor s účtem'; -$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'K exportu Vašeho účtu jděte na „Nastavení->Exportovat osobní údaje“ a zvolte „Exportovat účet“'; -$a->strings['You aren\'t following this contact.'] = 'Tento kontakt nesledujete.'; -$a->strings['Unfollowing is currently not supported by your network.'] = 'Zrušení sledování není aktuálně na Vaši síti podporováno.'; -$a->strings['Contact unfollowed'] = 'Zrušeno sledování kontaktu'; -$a->strings['Disconnect/Unfollow'] = 'Odpojit se/Zrušit sledování'; -$a->strings['Your Identity Address:'] = 'Vaše adresa identity:'; -$a->strings['Submit Request'] = 'Odeslat požadavek'; -$a->strings['Profile URL'] = 'URL profilu'; -$a->strings['Status Messages and Posts'] = 'Stavové zprávy a příspěvky '; -$a->strings['[Embedded content - reload page to view]'] = '[Vložený obsah - pro zobrazení obnovte stránku]'; -$a->strings['Invalid request.'] = 'Neplatný požadavek.'; -$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Omlouváme se, možná je váš soubor větší než je povolené maximum dle nastavení PHP'; -$a->strings['Or - did you try to upload an empty file?'] = 'Nebo - nenahrával/a jste prázdný soubor?'; -$a->strings['File exceeds size limit of %s'] = 'Velikost souboru přesáhla limit %s'; -$a->strings['File upload failed.'] = 'Nahrání souboru se nezdařilo.'; -$a->strings['Image exceeds size limit of %s'] = 'Velikost obrázku překročila limit %s'; -$a->strings['Unable to process image.'] = 'Obrázek není možné zprocesovat'; -$a->strings['Wall Photos'] = 'Fotky na zdi'; -$a->strings['Image upload failed.'] = 'Nahrání obrázku selhalo.'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena.'; -$a->strings['No recipient selected.'] = 'Nevybrán příjemce.'; -$a->strings['Unable to check your home location.'] = 'Nebylo možné zjistit polohu vašeho domova.'; -$a->strings['Message could not be sent.'] = 'Zprávu se nepodařilo odeslat.'; -$a->strings['Message collection failure.'] = 'Sběr zpráv selhal.'; -$a->strings['Message sent.'] = 'Zpráva odeslána.'; -$a->strings['No recipient.'] = 'Žádný příjemce.'; -$a->strings['Please enter a link URL:'] = 'Zadejte prosím URL odkaz:'; -$a->strings['Send Private Message'] = 'Odeslat soukromou zprávu'; -$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů.'; -$a->strings['To:'] = 'Adresát:'; -$a->strings['Subject:'] = 'Předmět:'; -$a->strings['Your message:'] = 'Vaše zpráva:'; -$a->strings['Insert web link'] = 'Vložit webový odkaz'; -$a->strings['No keywords to match. Please add keywords to your default profile.'] = 'Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do vašeho výchozího profilu.'; -$a->strings['Connect'] = 'Spojit se'; -$a->strings['first'] = 'první'; -$a->strings['next'] = 'další'; -$a->strings['No matches'] = 'Žádné shody'; -$a->strings['Profile Match'] = 'Shoda profilu'; -$a->strings['Profile not found.'] = 'Profil nenalezen.'; -$a->strings['Profile deleted.'] = 'Profil smazán.'; -$a->strings['Profile-'] = 'Profil-'; -$a->strings['New profile created.'] = 'Nový profil vytvořen.'; -$a->strings['Profile unavailable to clone.'] = 'Profil není možné naklonovat.'; -$a->strings['Profile Name is required.'] = 'Jméno profilu je povinné.'; -$a->strings['Marital Status'] = 'Rodinný stav'; -$a->strings['Romantic Partner'] = 'Romatický partner'; -$a->strings['Work/Employment'] = 'Práce/Zaměstnání'; -$a->strings['Religion'] = 'Náboženství'; -$a->strings['Political Views'] = 'Politické přesvědčení'; -$a->strings['Gender'] = 'Pohlaví'; -$a->strings['Sexual Preference'] = 'Sexuální orientace'; -$a->strings['XMPP'] = 'XMPP'; -$a->strings['Homepage'] = 'Domovská stránka'; -$a->strings['Interests'] = 'Zájmy'; -$a->strings['Address'] = 'Adresa'; -$a->strings['Location'] = 'Poloha'; -$a->strings['Profile updated.'] = 'Profil aktualizován.'; -$a->strings['Hide contacts and friends:'] = 'Skrýt kontakty a přátele:'; -$a->strings['Hide your contact/friend list from viewers of this profile?'] = 'Skrýt u tohoto profilu vaše kontakty/seznam přátel před před dalšími uživateli zobrazující si tento profil?'; -$a->strings['Show more profile fields:'] = 'Zobrazit další profilová pole'; -$a->strings['Profile Actions'] = 'Akce profilu'; -$a->strings['Edit Profile Details'] = 'Upravit podrobnosti profilu '; -$a->strings['Submit'] = 'Odeslat'; -$a->strings['Change Profile Photo'] = 'Změnit profilovou fotku'; -$a->strings['View this profile'] = 'Zobrazit tento profil'; -$a->strings['View all profiles'] = 'Zobrazit všechny profily'; -$a->strings['Edit visibility'] = 'Upravit viditelnost'; -$a->strings['Create a new profile using these settings'] = 'Vytvořit nový profil pomocí tohoto nastavení'; -$a->strings['Clone this profile'] = 'Klonovat tento profil'; -$a->strings['Delete this profile'] = 'Smazat tento profil'; -$a->strings['Basic information'] = 'Základní informace'; -$a->strings['Profile picture'] = 'Profilový obrázek'; -$a->strings['Preferences'] = 'Nastavení'; -$a->strings['Status information'] = 'Informace o stavu'; -$a->strings['Additional information'] = 'Dodatečné informace'; -$a->strings['Personal'] = 'Osobní'; -$a->strings['Relation'] = 'Vztah'; -$a->strings['Miscellaneous'] = 'Různé'; -$a->strings['Upload Profile Photo'] = 'Nahrát profilovou fotku'; -$a->strings['Your Gender:'] = 'Vaše pohlaví:'; -$a->strings[' Marital Status:'] = ' Rodinný stav:'; -$a->strings['Sexual Preference:'] = 'Sexuální orientace:'; -$a->strings['Example: fishing photography software'] = 'Příklad: rybaření fotografování software'; -$a->strings['Profile Name:'] = 'Jméno profilu:'; -$a->strings['Required'] = 'Vyžadováno'; -$a->strings['This is your public profile.
    It may be visible to anybody using the internet.'] = 'Toto je váš veřejný profil.
    Ten může být viditelný kýmkoliv na internetu.'; -$a->strings['Your Full Name:'] = 'Vaše celé jméno:'; -$a->strings['Title/Description:'] = 'Název / Popis:'; -$a->strings['Street Address:'] = 'Ulice:'; -$a->strings['Locality/City:'] = 'Poloha/město:'; -$a->strings['Region/State:'] = 'Region / stát:'; -$a->strings['Postal/Zip Code:'] = 'PSČ:'; -$a->strings['Country:'] = 'Země:'; -$a->strings['Age: '] = 'Věk: '; -$a->strings['Who: (if applicable)'] = 'Kdo: (pokud je možné)'; -$a->strings['Examples: cathy123, Cathy Williams, cathy@example.com'] = 'Příklady: jan123, Jan Novák, jan@priklad.cz'; -$a->strings['Since [date]:'] = 'Od [data]:'; -$a->strings['Tell us about yourself...'] = 'Řekněte nám něco o sobě...'; -$a->strings['XMPP (Jabber) address:'] = 'Adresa XMPP (Jabber):'; -$a->strings['The XMPP address will be propagated to your contacts so that they can follow you.'] = 'Adresa XMPP bude rozšířena mezi vašimi kontakty, aby vás mohly sledovat.'; -$a->strings['Homepage URL:'] = 'Odkaz na domovskou stránku:'; -$a->strings['Hometown:'] = 'Rodné město:'; -$a->strings['Political Views:'] = 'Politické přesvědčení:'; -$a->strings['Religious Views:'] = 'Náboženské přesvědčení:'; -$a->strings['Public Keywords:'] = 'Veřejná klíčová slova:'; -$a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)'; -$a->strings['Private Keywords:'] = 'Soukromá klíčová slova:'; -$a->strings['(Used for searching profiles, never shown to others)'] = '(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)'; -$a->strings['Likes:'] = 'Líbí se:'; -$a->strings['Dislikes:'] = 'Nelibí se:'; -$a->strings['Musical interests'] = 'Hudební vkus'; -$a->strings['Books, literature'] = 'Knihy, literatura'; -$a->strings['Television'] = 'Televize'; -$a->strings['Film/dance/culture/entertainment'] = 'Film/tanec/kultura/zábava'; -$a->strings['Hobbies/Interests'] = 'Koníčky/zájmy'; -$a->strings['Love/romance'] = 'Láska/romantika'; -$a->strings['Work/employment'] = 'Práce/zaměstnání'; -$a->strings['School/education'] = 'Škola/vzdělání'; -$a->strings['Contact information and Social Networks'] = 'Kontaktní informace a sociální sítě'; -$a->strings['Profile Image'] = 'Profilový obrázek'; -$a->strings['visible to everybody'] = 'viditelné pro všechny'; -$a->strings['Edit/Manage Profiles'] = 'Upravit/spravovat profily'; -$a->strings['Change profile photo'] = 'Změnit profilovou fotku'; -$a->strings['Create New Profile'] = 'Vytvořit nový profil'; -$a->strings['Access denied.'] = 'Přístup odmítnut.'; -$a->strings['Access to this profile has been restricted.'] = 'Přístup na tento profil byl omezen.'; -$a->strings['Events'] = 'Události'; -$a->strings['View'] = 'Zobrazit'; -$a->strings['Previous'] = 'Předchozí'; -$a->strings['Next'] = 'Dále'; -$a->strings['today'] = 'dnes'; -$a->strings['month'] = 'měsíc'; -$a->strings['week'] = 'týden'; -$a->strings['day'] = 'den'; -$a->strings['list'] = 'seznam'; -$a->strings['User not found'] = 'Uživatel nenalezen.'; -$a->strings['This calendar format is not supported'] = 'Tento formát kalendáře není podporován.'; -$a->strings['No exportable data found'] = 'Nenalezena žádná data pro export'; -$a->strings['calendar'] = 'kalendář'; -$a->strings['No contacts in common.'] = 'Žádné společné kontakty.'; -$a->strings['Common Friends'] = 'Společní přátelé'; -$a->strings['Public access denied.'] = 'Veřejný přístup odepřen.'; -$a->strings['Community option not available.'] = 'Možnost komunity není dostupná.'; -$a->strings['Not available.'] = 'Není k dispozici.'; -$a->strings['Local Community'] = 'Místní komunita'; -$a->strings['Posts from local users on this server'] = 'Příspěvky od místních uživatelů na tomto serveru'; -$a->strings['Global Community'] = 'Globální komunita'; -$a->strings['Posts from users of the whole federated network'] = 'Příspěvky od uživatelů z celé federované sítě'; -$a->strings['No results.'] = 'Žádné výsledky.'; -$a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'Tento komunitní proud ukazuje všechny veřejné příspěvky, které tento server přijme. Nemusí odrážet názory uživatelů serveru.'; -$a->strings['Contact settings applied.'] = 'Nastavení kontaktu změněno'; -$a->strings['Contact update failed.'] = 'Aktualizace kontaktu selhala.'; -$a->strings['Contact not found.'] = 'Kontakt nenalezen.'; -$a->strings['WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working.'] = 'VAROVÁNÍ: Toto je velmi pokročilé a pokud zadáte nesprávné informace, vaše komunikace s tímto kontaktem může přestat fungovat.'; -$a->strings['Please use your browser \'Back\' button now if you are uncertain what to do on this page.'] = 'Prosím použijte ihned v prohlížeči tlačítko „zpět“ pokud si nejste jisti, co dělat na této stránce.'; -$a->strings['No mirroring'] = 'Žádné zrcadlení'; -$a->strings['Mirror as forwarded posting'] = 'Zrcadlit pro přeposlané příspěvky'; -$a->strings['Mirror as my own posting'] = 'Zrcadlit jako mé vlastní příspěvky'; -$a->strings['Return to contact editor'] = 'Zpět k editoru kontaktu'; -$a->strings['Refetch contact data'] = 'Znovu načíst data kontaktu'; -$a->strings['Remote Self'] = 'Vzdálené zrcadlení'; -$a->strings['Mirror postings from this contact'] = 'Zrcadlení příspěvků od tohoto kontaktu'; -$a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'Označit tento kontakt jako „remote_self“, s tímto nastavením bude Friendica znovupublikovat všechny nové příspěvky od tohoto kontaktu.'; -$a->strings['Name'] = 'Jméno'; -$a->strings['Account Nickname'] = 'Přezdívka účtu'; -$a->strings['@Tagname - overrides Name/Nickname'] = '@jménoštítku- upřednostněno před jménem/přezdívkou'; -$a->strings['Account URL'] = 'URL adresa účtu'; -$a->strings['Account URL Alias'] = 'Alias URL adresy účtu'; -$a->strings['Friend Request URL'] = 'URL požadavku o přátelství'; -$a->strings['Friend Confirm URL'] = 'URL adresa pro potvrzení přátelství'; -$a->strings['Notification Endpoint URL'] = 'URL adresa koncového bodu oznámení'; -$a->strings['Poll/Feed URL'] = 'URL adresa poll/feed'; -$a->strings['New photo from this URL'] = 'Nová fotka z této URL adresy'; -$a->strings['This may occasionally happen if contact was requested by both persons and it has already been approved.'] = 'To se může občas stát, pokud bylo o kontaktování požádáno oběma osobami a již bylo schváleno.'; -$a->strings['Response from remote site was not understood.'] = 'Odpověď ze vzdáleného serveru nebyla srozumitelná.'; -$a->strings['Unexpected response from remote site: '] = 'Neočekávaná odpověď od vzdáleného serveru:'; -$a->strings['Confirmation completed successfully.'] = 'Potvrzení úspěšně dokončena.'; -$a->strings['Temporary failure. Please wait and try again.'] = 'Dočasné selhání. Prosím, vyčkejte a zkuste to znovu.'; -$a->strings['Introduction failed or was revoked.'] = 'Žádost o propojení selhala nebo byla zrušena.'; -$a->strings['Remote site reported: '] = 'Vzdálený server oznámil:'; -$a->strings['No user record found for \'%s\' '] = 'Pro „%s“ nenalezen žádný uživatelský záznam '; -$a->strings['Our site encryption key is apparently messed up.'] = 'Náš šifrovací klíč zřejmě přestal správně fungovat.'; -$a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat.'; -$a->strings['Contact record was not found for you on our site.'] = 'Záznam kontaktu pro vás nebyl na našich stránkách nalezen.'; -$a->strings['Site public key not available in contact record for URL %s.'] = 'V adresáři není k dispozici veřejný klíč pro URL %s.'; -$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'ID poskytnuté vaším systémem je duplikát ID na našem systému. Mělo by fungovat, pokud to zkusíte znovu.'; -$a->strings['Unable to set your contact credentials on our system.'] = 'Nelze nastavit vaše přihlašovací údaje v našem systému.'; -$a->strings['Unable to update your contact profile details on our system'] = 'Nelze aktualizovat váš profil v našem systému'; -$a->strings['[Name Withheld]'] = '[Jméno odepřeno]'; -$a->strings['%1$s welcomes %2$s'] = '%1$s vítá uživatele %2$s'; -$a->strings['This introduction has already been accepted.'] = 'Toto pozvání již bylo přijato.'; -$a->strings['Profile location is not valid or does not contain profile information.'] = 'Adresa profilu není platná nebo neobsahuje profilové informace'; -$a->strings['Warning: profile location has no identifiable owner name.'] = 'Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka'; -$a->strings['Warning: profile location has no profile photo.'] = 'Varování: umístění profilu nemá žádnou profilovou fotku.'; -$a->strings['%d required parameter was not found at the given location'] = [ - 0 => '%d požadovaný parametr nebyl nalezen na daném umístění', - 1 => '%d požadované parametry nebyly nalezeny na daném umístění', - 2 => '%d požadovaného parametru nebylo nalezeno na daném umístění', - 3 => '%d požadovaných parametrů nebylo nalezeno na daném umístění', -]; -$a->strings['Introduction complete.'] = 'Představení dokončeno.'; -$a->strings['Unrecoverable protocol error.'] = 'Neopravitelná chyba protokolu'; -$a->strings['Profile unavailable.'] = 'Profil není k dispozici.'; -$a->strings['%s has received too many connection requests today.'] = '%s dnes obdržel/a příliš mnoho požadavků o spojení.'; -$a->strings['Spam protection measures have been invoked.'] = 'Ochrana proti spamu byla aktivována'; -$a->strings['Friends are advised to please try again in 24 hours.'] = 'Přátelům se doporučuje to zkusit znovu za 24 hodin.'; -$a->strings['Invalid locator'] = 'Neplatný odkaz'; -$a->strings['You have already introduced yourself here.'] = 'Již jste se zde představil/a.'; -$a->strings['Apparently you are already friends with %s.'] = 'Zřejmě jste s %s již přátelé.'; -$a->strings['Invalid profile URL.'] = 'Neplatné URL profilu.'; -$a->strings['Disallowed profile URL.'] = 'Nepovolené URL profilu.'; -$a->strings['Blocked domain'] = 'Zablokovaná doména'; -$a->strings['Failed to update contact record.'] = 'Nepodařilo se aktualizovat kontakt.'; -$a->strings['Your introduction has been sent.'] = 'Vaše představení bylo odesláno.'; -$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'Vzdálený odběr nemůže být na vaší síti proveden. Prosím, přihlaste se k odběru přímo na vašem systému.'; -$a->strings['Please login to confirm introduction.'] = 'Pro potvrzení představení se prosím přihlaste.'; -$a->strings['Incorrect identity currently logged in. Please login to this profile.'] = 'Jste přihlášen/a pod nesprávnou identitou. Prosím, přihlaste se do tohoto profilu.'; -$a->strings['Confirm'] = 'Potvrdit'; -$a->strings['Hide this contact'] = 'Skrýt tento kontakt'; -$a->strings['Welcome home %s.'] = 'Vítejte doma, %s.'; -$a->strings['Please confirm your introduction/connection request to %s.'] = 'Prosím potvrďte váš požadavek o spojení uživateli %s.'; -$a->strings['Please enter your \'Identity Address\' from one of the following supported communications networks:'] = 'Prosím zadejte vaši „adresu identity“ jedné z následujících podporovaných komunikačních sítí:'; -$a->strings['If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today.'] = 'Pokud ještě nejste členem svobodného sociálního webu, klikněte na tento odkaz, najděte si veřejný server Friendica a připojte se k nám ještě dnes.'; -$a->strings['Friend/Connection Request'] = 'Požadavek o přátelství/spojení'; -$a->strings['Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de'] = 'Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de'; -$a->strings['Please answer the following:'] = 'Odpovězte, prosím, následující:'; -$a->strings['Does %s know you?'] = 'Zná vás %s?'; -$a->strings['Add a personal note:'] = 'Přidejte osobní poznámku:'; -$a->strings['Friendica'] = 'Friendica'; -$a->strings['GNU Social (Pleroma, Mastodon)'] = 'GNU social (Pleroma, Mastodon)'; -$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings[' - please do not use this form. Instead, enter %s into your Diaspora search bar.'] = ' - prosím nepoužívejte tento formulář. Místo toho zadejte do vašeho vyhledávacího pole Diaspora %s.'; -$a->strings['Item not found'] = 'Položka nenalezena'; -$a->strings['Edit post'] = 'Upravit příspěvek'; -$a->strings['Save'] = 'Uložit'; -$a->strings['web link'] = 'webový odkaz'; -$a->strings['Insert video link'] = 'Vložit odkaz na video'; -$a->strings['video link'] = 'odkaz na video'; -$a->strings['Insert audio link'] = 'Vložit odkaz na audio'; -$a->strings['audio link'] = 'odkaz na audio'; -$a->strings['CC: email addresses'] = 'Kopie: e-mailové adresy'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Příklad: jan@priklad.cz, lucie@priklad.cz'; -$a->strings['Photos'] = 'Fotky'; -$a->strings['Contact Photos'] = 'Fotky kontaktu'; -$a->strings['Upload'] = 'Nahrát'; -$a->strings['Files'] = 'Soubory'; -$a->strings['The contact could not be added.'] = 'Kontakt nemohl být přidán.'; -$a->strings['You already added this contact.'] = 'Již jste si tento kontakt přidal/a'; -$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Podpora pro Diasporu není zapnuta. Kontakt nemůže být přidán.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Podpora pro OStatus je vypnnuta. Kontakt nemůže být přidán.'; -$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Typ sítě nemohl být detekován. Kontakt nemůže být přidán.'; -$a->strings['Tags:'] = 'Štítky:'; -$a->strings['Suggested contact not found.'] = 'Navrhovaný kontakt nenalezen.'; -$a->strings['Friend suggestion sent.'] = 'Návrh přátelství odeslán. '; -$a->strings['Suggest Friends'] = 'Navrhnout přátele'; -$a->strings['Suggest a friend for %s'] = 'Navrhnout přítele pro uživatele %s'; -$a->strings['No profile'] = 'Žádný profil'; -$a->strings['Remote privacy information not available.'] = 'Vzdálené informace o soukromí nejsou k dispozici.'; -$a->strings['Visible to:'] = 'Viditelné pro:'; -$a->strings['Followers'] = 'Sledovaní'; -$a->strings['Mutuals'] = 'Vzájemní'; $a->strings['No valid account found.'] = 'Nenalezen žádný platný účet.'; $a->strings['Password reset request issued. Check your email.'] = 'Požadavek o obnovení hesla vyřízen. Zkontrolujte Vaši e-mailovou schránku.'; $a->strings[' @@ -629,17 +97,23 @@ $a->strings[' Toto heslo si po přihlášení můžete změnit na stránce nastavení Vašeho účtu. '; $a->strings['Your password has been changed at %s'] = 'Vaše heslo bylo změněno na %s'; -$a->strings['Manage Identities and/or Pages'] = 'Správa identit a/nebo stránek'; -$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Přepínání mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí vaše detaily účtu, nebo kterým jste přidělil/a oprávnění nastavovat přístupová práva.'; -$a->strings['Select an identity to manage: '] = 'Vyberte identitu ke spravování: '; $a->strings['New Message'] = 'Nová zpráva'; +$a->strings['No recipient selected.'] = 'Nevybrán příjemce.'; $a->strings['Unable to locate contact information.'] = 'Nepodařilo se najít kontaktní informace.'; +$a->strings['Message could not be sent.'] = 'Zprávu se nepodařilo odeslat.'; +$a->strings['Message collection failure.'] = 'Sběr zpráv selhal.'; $a->strings['Discard'] = 'Odstranit'; $a->strings['Messages'] = 'Zprávy'; -$a->strings['Do you really want to delete this message?'] = 'Opravdu chcete smazat tuto zprávu?'; $a->strings['Conversation not found.'] = 'Konverzace nenalezena.'; -$a->strings['Message deleted.'] = 'Zpráva odstraněna.'; -$a->strings['Conversation removed.'] = 'Konverzace odstraněna.'; +$a->strings['Please enter a link URL:'] = 'Zadejte prosím URL odkaz:'; +$a->strings['Send Private Message'] = 'Odeslat soukromou zprávu'; +$a->strings['To:'] = 'Adresát:'; +$a->strings['Subject:'] = 'Předmět:'; +$a->strings['Your message:'] = 'Vaše zpráva:'; +$a->strings['Upload photo'] = 'Nahrát fotku'; +$a->strings['Insert web link'] = 'Vložit webový odkaz'; +$a->strings['Please wait'] = 'Čekejte prosím'; +$a->strings['Submit'] = 'Odeslat'; $a->strings['No messages.'] = 'Žádné zprávy.'; $a->strings['Message not available.'] = 'Zpráva není k dispozici.'; $a->strings['Delete message'] = 'Smazat zprávu'; @@ -656,33 +130,9 @@ $a->strings['%d message'] = [ 2 => '%d zprávy', 3 => '%d zpráv', ]; -$a->strings['Remove term'] = 'Odstranit termín'; -$a->strings['Saved Searches'] = 'Uložená hledání'; -$a->strings['add'] = 'přidat'; -$a->strings['Warning: This group contains %s member from a network that doesn\'t allow non public messages.'] = [ - 0 => 'Varování: Tato skupina obsahuje %s člena ze sítě, která nepovoluje posílání soukromých zpráv.', - 1 => 'Varování: Tato skupina obsahuje %s členy ze sítě, která nepovoluje posílání soukromých zpráv.', - 2 => 'Varování: Tato skupina obsahuje %s člena ze sítě, která nepovoluje posílání soukromých zpráv.', - 3 => 'Varování: Tato skupina obsahuje %s členů ze sítě, která nepovoluje posílání soukromých zpráv.', -]; -$a->strings['Messages in this group won\'t be send to these receivers.'] = 'Zprávy v této skupině nebudou těmto příjemcům doručeny.'; -$a->strings['No such group'] = 'Žádná taková skupina'; -$a->strings['Group is empty'] = 'Skupina je prázdná'; -$a->strings['Group: %s'] = 'Skupina: %s'; -$a->strings['Private messages to this person are at risk of public disclosure.'] = 'Soukromé zprávy této osobě jsou vystaveny riziku prozrazení.'; -$a->strings['Invalid contact.'] = 'Neplatný kontakt.'; -$a->strings['Commented Order'] = 'Dle komentářů'; -$a->strings['Sort by Comment Date'] = 'Řadit podle data komentáře'; -$a->strings['Posted Order'] = 'Dle data'; -$a->strings['Sort by Post Date'] = 'Řadit podle data příspěvku'; -$a->strings['Posts that mention or involve you'] = 'Příspěvky, které vás zmiňují nebo zahrnují'; -$a->strings['New'] = 'Nové'; -$a->strings['Activity Stream - by date'] = 'Proud aktivit - dle data'; -$a->strings['Shared Links'] = 'Sdílené odkazy'; -$a->strings['Interesting Links'] = 'Zajímavé odkazy'; -$a->strings['Starred'] = 'S hvězdou'; -$a->strings['Favourite Posts'] = 'Oblíbené přízpěvky'; $a->strings['Personal Notes'] = 'Osobní poznámky'; +$a->strings['Save'] = 'Uložit'; +$a->strings['User not found.'] = 'Uživatel nenalezen.'; $a->strings['Photo Albums'] = 'Fotoalba'; $a->strings['Recent Photos'] = 'Nedávné fotky'; $a->strings['Upload New Photos'] = 'Nahrát nové fotky'; @@ -693,21 +143,16 @@ $a->strings['Album successfully deleted'] = 'Album úspěšně smazáno'; $a->strings['Album was empty.'] = 'Album bylo prázdné.'; $a->strings['a photo'] = 'fotce'; $a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s byl označen ve %2$s uživatelem %3$s'; -$a->strings['Image upload didn\'t complete, please try again'] = 'Nahrávání obrázku nebylo dokončeno, zkuste to prosím znovu'; -$a->strings['Image file is missing'] = 'Chybí soubor obrázku'; -$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Server v tuto chvíli nemůže akceptovat nové nahrané soubory, prosím kontaktujte vašeho administrátora'; -$a->strings['Image file is empty.'] = 'Soubor obrázku je prázdný.'; +$a->strings['Public access denied.'] = 'Veřejný přístup odepřen.'; $a->strings['No photos selected'] = 'Není vybrána žádná fotka'; -$a->strings['Access to this item is restricted.'] = 'Přístup k této položce je omezen.'; $a->strings['Upload Photos'] = 'Nahrát fotky'; $a->strings['New album name: '] = 'Název nového alba: '; $a->strings['or select existing album:'] = 'nebo si vyberte existující album:'; $a->strings['Do not show a status post for this upload'] = 'Nezobrazovat pro toto nahrání stavovou zprávu'; $a->strings['Permissions'] = 'Oprávnění'; -$a->strings['Show to Groups'] = 'Zobrazit ve Skupinách'; -$a->strings['Show to Contacts'] = 'Zobrazit v Kontaktech'; $a->strings['Do you really want to delete this photo album and all its photos?'] = 'Opravdu chcete smazat toto fotoalbum a všechny jeho fotky?'; $a->strings['Delete Album'] = 'Smazat album'; +$a->strings['Cancel'] = 'Zrušit'; $a->strings['Edit Album'] = 'Upravit album'; $a->strings['Drop Album'] = 'Smazat album'; $a->strings['Show Newest First'] = 'Zobrazit nejprve nejnovější'; @@ -732,479 +177,276 @@ $a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #cam $a->strings['Do not rotate'] = 'Neotáčet'; $a->strings['Rotate CW (right)'] = 'Otáčet po směru hodinových ručiček (doprava)'; $a->strings['Rotate CCW (left)'] = 'Otáčet proti směru hodinových ručiček (doleva)'; -$a->strings['I like this (toggle)'] = 'To se mi líbí (přepínat)'; -$a->strings['I don\'t like this (toggle)'] = 'To se mi nelíbí (přepínat)'; $a->strings['This is you'] = 'Tohle jste vy'; $a->strings['Comment'] = 'Okomentovat'; +$a->strings['Preview'] = 'Náhled'; +$a->strings['Select'] = 'Vybrat'; +$a->strings['Delete'] = 'Odstranit'; +$a->strings['I like this (toggle)'] = 'To se mi líbí (přepínat)'; +$a->strings['I don\'t like this (toggle)'] = 'To se mi nelíbí (přepínat)'; $a->strings['Map'] = 'Mapa'; -$a->strings['View Album'] = 'Zobrazit album'; -$a->strings['{0} wants to be your friend'] = '{0} chce být vaším přítelem'; -$a->strings['{0} requested registration'] = '{0} požaduje registraci'; -$a->strings['Poke/Prod'] = 'Šťouchnout/dloubnout'; -$a->strings['poke, prod or do other things to somebody'] = 'někoho šťouchnout, dloubnout, nebo mu provést jinou věc'; -$a->strings['Recipient'] = 'Příjemce'; -$a->strings['Choose what you wish to do to recipient'] = 'Vyberte, co si přejete příjemci udělat'; -$a->strings['Make this post private'] = 'Změnit tento příspěvek na soukromý'; -$a->strings['Image uploaded but image cropping failed.'] = 'Obrázek byl odeslán, ale jeho oříznutí se nesdařilo.'; -$a->strings['Image size reduction [%s] failed.'] = 'Nepodařilo se snížit velikost obrázku [%s].'; -$a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nová fotka nezobrazí okamžitě.'; -$a->strings['Unable to process image'] = 'Obrázek nelze zpracovat '; -$a->strings['Upload File:'] = 'Nahrát soubor:'; -$a->strings['Select a profile:'] = 'Vybrat profil:'; -$a->strings['or'] = 'nebo'; -$a->strings['skip this step'] = 'tento krok přeskočte'; -$a->strings['select a photo from your photo albums'] = 'si vyberte fotku z vašich fotoalb'; -$a->strings['Crop Image'] = 'Oříznout obrázek'; -$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Prosím, ořízněte tento obrázek pro optimální zobrazení.'; -$a->strings['Done Editing'] = 'Upravování dokončeno'; -$a->strings['Image uploaded successfully.'] = 'Obrázek byl úspěšně nahrán.'; -$a->strings['Only logged in users are permitted to perform a search.'] = 'Pouze přihlášení uživatelé mohou prohledávat tento server.'; -$a->strings['Only one search per minute is permitted for not logged in users.'] = 'Nepřihlášení uživatelé mohou vyhledávat pouze jednou za minutu.'; -$a->strings['Search'] = 'Hledat'; -$a->strings['Items tagged with: %s'] = 'Položky označené štítkem: %s'; -$a->strings['Results for: %s'] = 'Výsledky pro: %s'; -$a->strings['%1$s is following %2$s\'s %3$s'] = '%1$s sleduje %3$s uživatele %2$s'; -$a->strings['Contact suggestion successfully ignored.'] = 'Návrh kontaktu úspěšně ignorován.'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin.'; -$a->strings['Do you really want to delete this suggestion?'] = 'Opravdu chcete smazat tento návrh?'; -$a->strings['Ignore/Hide'] = 'Ignorovat/skrýt'; -$a->strings['Friend Suggestions'] = 'Návrhy přátel'; -$a->strings['Export account'] = 'Exportovat účet'; -$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.'] = 'Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server.'; -$a->strings['Export all'] = 'Exportovat vše'; -$a->strings['Export your accout 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)'] = 'Exportujte své informace o účtu, kontakty a všechny své položky jako JSON. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu (fotky se neexportují)'; -$a->strings['Export personal data'] = 'Exportovat osobní údaje'; -$a->strings['No videos selected'] = 'Není vybráno žádné video'; -$a->strings['View Video'] = 'Zobrazit video'; -$a->strings['Recent Videos'] = 'Nedávná videa'; -$a->strings['Upload New Videos'] = 'Nahrát nová videa'; -$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'Požadovaná položka neexistuje nebo byla smazána.'; -$a->strings['The feed for this item is unavailable.'] = 'Proud pro tuto položku je nedostupný.'; -$a->strings['Event can not end before it has started.'] = 'Událost nemůže končit dříve, než začala.'; -$a->strings['Event title and start time are required.'] = 'Název události a datum začátku jsou vyžadovány.'; -$a->strings['Create New Event'] = 'Vytvořit novou událost'; -$a->strings['Event details'] = 'Detaily události'; -$a->strings['Starting date and Title are required.'] = 'Počáteční datum a Název jsou vyžadovány.'; -$a->strings['Event Starts:'] = 'Událost začíná:'; -$a->strings['Finish date/time is not known or not relevant'] = 'Datum/čas konce není zadán nebo není relevantní'; -$a->strings['Event Finishes:'] = 'Akce končí:'; -$a->strings['Adjust for viewer timezone'] = 'Nastavit časové pásmo pro uživatele s právem pro čtení'; -$a->strings['Description:'] = 'Popis:'; -$a->strings['Location:'] = 'Poloha:'; -$a->strings['Title:'] = 'Název:'; -$a->strings['Share this event'] = 'Sdílet tuto událost'; -$a->strings['Basic'] = 'Základní'; -$a->strings['Advanced'] = 'Pokročilé'; -$a->strings['Failed to remove event'] = 'Odstranění události selhalo'; -$a->strings['Event removed'] = 'Událost odstraněna'; -$a->strings['Unable to locate original post.'] = 'Nelze nalézt původní příspěvek.'; -$a->strings['Empty post discarded.'] = 'Prázdný příspěvek odstraněn.'; -$a->strings['This message was sent to you by %s, a member of the Friendica social network.'] = 'Tuto zprávu vám poslal/a %s, člen sociální sítě Friendica.'; -$a->strings['You may visit them online at %s'] = 'Můžete jej/ji navštívit online na adrese %s'; -$a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesílatele odpovědí na tuto zprávu.'; -$a->strings['%s posted an update.'] = '%s poslal/a aktualizaci.'; -$a->strings['Invalid request identifier.'] = 'Neplatný identifikátor požadavku.'; -$a->strings['Notifications'] = 'Oznámení'; -$a->strings['Network Notifications'] = 'Síťová oznámení'; -$a->strings['System Notifications'] = 'Systémová oznámení'; -$a->strings['Personal Notifications'] = 'Osobní oznámení'; -$a->strings['Home Notifications'] = 'Oznámení na domovské stránce'; -$a->strings['Show unread'] = 'Zobrazit nepřečtené'; -$a->strings['Show all'] = 'Zobrazit vše'; -$a->strings['Show Ignored Requests'] = 'Zobrazit ignorované požadavky'; -$a->strings['Hide Ignored Requests'] = 'Skrýt ignorované požadavky'; -$a->strings['Notification type:'] = 'Typ oznámení:'; -$a->strings['Suggested by:'] = 'Navrhl/a:'; -$a->strings['Hide this contact from others'] = 'Skrýt tento kontakt před ostatními'; -$a->strings['Approve'] = 'Schválit'; -$a->strings['Claims to be known to you: '] = 'Vaši údajní známí: '; -$a->strings['yes'] = 'ano'; -$a->strings['no'] = 'ne'; -$a->strings['Shall your connection be bidirectional or not?'] = 'Má vaše spojení být obousměrné, nebo ne?'; -$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.'] = 'Přijetí uživatele %s jako přítele dovolí uživateli %s odebírat Vaše příspěvky a Vy budete také přijímat aktualizace od něj ve Vašem kanále.'; -$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.'] = 'Přijetí uživatele %s jako odběratele mu dovolí odebírat Vaše příspěvky, ale nebudete od něj přijímat aktualizace ve Vašem kanále.'; -$a->strings['Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed.'] = 'Přijetí uživatele %s jako sdílejícího mu dovolí odebírat Vaše příspěvky, ale nebudete od něj přijímat aktualizace ve Vašem kanále.'; -$a->strings['Friend'] = 'Přítel'; -$a->strings['Sharer'] = 'Sdílející'; -$a->strings['Subscriber'] = 'Odběratel'; -$a->strings['About:'] = 'O mně:'; -$a->strings['Gender:'] = 'Pohlaví:'; -$a->strings['Network:'] = 'Síť:'; -$a->strings['No introductions.'] = 'Žádné představení.'; -$a->strings['No more %s notifications.'] = 'Žádná další %s oznámení'; -$a->strings['OpenID protocol error. No ID returned.'] = 'Chyba OpenID protokolu. Nebylo navráceno žádné ID.'; -$a->strings['Account not found and OpenID registration is not permitted on this site.'] = 'Nenalezen účet a OpenID registrace na tomto serveru není dovolena.'; -$a->strings['Login failed.'] = 'Přihlášení se nezdařilo.'; -$a->strings['Account'] = 'Účet'; -$a->strings['Two-factor authentication'] = 'Dvoufázové ověřování'; -$a->strings['Profiles'] = 'Profily'; -$a->strings['Additional features'] = 'Dodatečné vlastnosti'; -$a->strings['Display'] = 'Zobrazení'; -$a->strings['Social Networks'] = 'Sociální sítě'; -$a->strings['Addons'] = 'Doplňky'; -$a->strings['Delegations'] = 'Delegace'; -$a->strings['Connected apps'] = 'Připojené aplikace'; -$a->strings['Remove account'] = 'Odstranit účet'; -$a->strings['Settings'] = 'Nastavení'; -$a->strings['Missing some important data!'] = 'Chybí některé důležité údaje!'; -$a->strings['Update'] = 'Aktualizace'; -$a->strings['Failed to connect with email account using the settings provided.'] = 'Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení.'; -$a->strings['Email settings updated.'] = 'Nastavení e-mailu aktualizována.'; -$a->strings['Features updated'] = 'Vlastnosti aktualizovány'; -$a->strings['The theme you chose isn\'t available.'] = 'Motiv, který jste si vybral/a, není dostupný.'; -$a->strings['Relocate message has been send to your contacts'] = 'Správa o změně umístění byla odeslána vašim kontaktům'; -$a->strings['Passwords do not match.'] = 'Hasla se neshodují.'; +$a->strings['No system theme config value set.'] = 'Není nastavena konfigurační hodnota systémového motivu.'; +$a->strings['Delete this item?'] = 'Odstranit tuto položku?'; +$a->strings['toggle mobile'] = 'přepínat mobilní zobrazení'; +$a->strings['Page not found.'] = 'Stránka nenalezena'; +$a->strings['You must be logged in to use addons. '] = 'Pro použití doplňků musíte být přihlášen/a.'; +$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.'] = 'Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním.'; +$a->strings['All contacts'] = 'Všechny kontakty'; +$a->strings['Followers'] = 'Sledující'; +$a->strings['Following'] = 'Sleduji'; +$a->strings['Mutual friends'] = 'Vzájemní přátelé'; +$a->strings['Could not find any unarchived contact entry for this URL (%s)'] = 'Nelze najít žádný nearchivovaný záznam kontaktu pro tuto URL adresu (%s)'; +$a->strings['The contact entries have been archived'] = 'Záznamy kontaktů byly archivovány'; +$a->strings['Could not find any contact entry for this URL (%s)'] = 'Nelze nalézt žádnou položku v kontaktech pro tuto URL adresu (%s)'; +$a->strings['The contact has been blocked from the node'] = 'Kontakt byl na serveru zablokován'; +$a->strings['Post update version number has been set to %s.'] = 'Číslo verze post update bylo nastaveno na %s.'; +$a->strings['Check for pending update actions.'] = 'Zkontrolovat čekající akce po aktualizaci.'; +$a->strings['Done.'] = 'Hotovo.'; +$a->strings['Execute pending post updates.'] = 'Provést čekající aktualizace příspěvků.'; +$a->strings['All pending post updates are done.'] = 'Všechny čekající aktualizace příspěvků jsou hotové.'; +$a->strings['User not found'] = 'Uživatel nenalezen.'; +$a->strings['Enter new password: '] = 'Zadejte nové heslo'; $a->strings['Password update failed. Please try again.'] = 'Aktualizace hesla se nezdařila. Zkuste to prosím znovu.'; $a->strings['Password changed.'] = 'Heslo bylo změněno.'; -$a->strings['Password unchanged.'] = 'Heslo nezměněno.'; -$a->strings[' Please use a shorter name.'] = 'Prosím použijte kratší jméno.'; -$a->strings[' Name too short.'] = 'Jméno je příliš krátké.'; -$a->strings['Wrong Password'] = 'Špatné heslo'; -$a->strings['Invalid email.'] = 'Neplatný e-mail.'; -$a->strings['Cannot change to that email.'] = 'Nelze změnit na tento e-mail.'; -$a->strings['Private forum has no privacy permissions. Using default privacy group.'] = 'Soukromé fórum nemá nastaveno zabezpečení. Používá se výchozí skupina soukromí.'; -$a->strings['Private forum has no privacy permissions and no default privacy group.'] = 'Soukromé fórum nemá nastaveno zabezpečení a ani žádnou výchozí skupinu soukromí.'; -$a->strings['Settings updated.'] = 'Nastavení aktualizováno.'; -$a->strings['Add application'] = 'Přidat aplikaci'; -$a->strings['Consumer Key'] = 'Consumer Key'; -$a->strings['Consumer Secret'] = 'Consumer Secret'; -$a->strings['Redirect'] = 'Přesměrování'; -$a->strings['Icon url'] = 'URL ikony'; -$a->strings['You can\'t edit this application.'] = 'Nemůžete upravit tuto aplikaci.'; -$a->strings['Connected Apps'] = 'Připojené aplikace'; -$a->strings['Edit'] = 'Upravit'; -$a->strings['Client key starts with'] = 'Klienský klíč začíná'; -$a->strings['No name'] = 'Bez názvu'; -$a->strings['Remove authorization'] = 'Odstranit oprávnění'; -$a->strings['No Addon settings configured'] = 'Žádná nastavení doplňků nenakonfigurována'; -$a->strings['Addon Settings'] = 'Nastavení doplňků'; -$a->strings['Off'] = 'Vyp'; -$a->strings['On'] = 'Zap'; -$a->strings['Additional Features'] = 'Dodatečné vlastnosti'; +$a->strings['newer'] = 'novější'; +$a->strings['older'] = 'starší'; +$a->strings['Frequently'] = 'Často'; +$a->strings['Hourly'] = 'Hodinově'; +$a->strings['Twice daily'] = 'Dvakrát denně'; +$a->strings['Daily'] = 'Denně'; +$a->strings['Weekly'] = 'Týdně'; +$a->strings['Monthly'] = 'Měsíčně'; +$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['enabled'] = 'povoleno'; -$a->strings['disabled'] = 'zakázáno'; -$a->strings['Built-in support for %s connectivity is %s'] = 'Vestavěná podpora pro připojení s %s je %s'; -$a->strings['GNU Social (OStatus)'] = 'GNU social (OStatus)'; -$a->strings['Email access is disabled on this site.'] = 'Přístup k e-mailu je na tomto serveru zakázán.'; -$a->strings['General Social Media Settings'] = 'Obecná nastavení sociálních sítí'; -$a->strings['Accept only top level posts by contacts you follow'] = 'Přijímat pouze příspěvky nejvyšší úrovně od kontaktů, které sledujete'; -$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.'] = 'Když přijde komentář, provede systém automatické doplňení vláken. Vedlejším účinkem je, že můžete obdržet příspěvky započaté někým, kdo vás nesleduje, ale okomentované někým, kdo vás sleduje. Toto nastavení toto chování vypne. Je-li aktivováno, obdržíte pouze příspěvky od lidí, které opravdu sledujete.'; -$a->strings['Disable Content Warning'] = 'Vypnout varování o obsahu'; -$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.'] = 'Uživatelé na sítích, jako je Mastodon nebo Pleroma, si mohou nastavit pole s varováním o obsahu, která ve výchozím nastavení skryje jejich příspěvek. Tato možnost vypíná automatické skrývání a nastavuje varování o obsahu jako titulek příspěvku. Toto se netýká žádného dalšího filtrování obsahu, které se rozhodnete nastavit.'; -$a->strings['Disable intelligent shortening'] = 'Vypnout inteligentní zkracování'; -$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.'] = 'Normálně se systém snaží nalézt nejlepší odkaz pro přidání zkrácených příspěvků. Pokud je tato možnost aktivní, pak každý zkrácený příspěvek bude vždy ukazovat na originální příspěvek Friendica.'; -$a->strings['Automatically follow any GNU Social (OStatus) followers/mentioners'] = 'Automaticky sledovat jakékoliv sledující/zmiňující na GNU social (OStatus) '; -$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.'] = 'Pokud obdržíte zprávu od neznámého uživatele z OStatus, tato možnost rozhoduje o tom, co dělat. Pokud je zaškrtnuta, bude pro každého neznámého uživatele vytvořen nový kontakt.'; -$a->strings['Default group for OStatus contacts'] = 'Výchozí skupina pro kontakty z OStatus'; -$a->strings['Your legacy GNU Social account'] = 'Váš starý účet na GNU social'; -$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.'] = 'Pokud zde zadáte vaše staré jméno účtu na GNU social/StatusNet (ve formátu uživatel@doména.tld), budou vaše kontakty přidány automaticky. Toto pole bude po dokončení vyprázdněno.'; -$a->strings['Repair OStatus subscriptions'] = 'Opravit odběry z OStatus'; -$a->strings['Email/Mailbox Setup'] = 'Nastavení e-mailu'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Pokud chcete komunikovat pomocí této služby s vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce.'; -$a->strings['Last successful email check:'] = 'Poslední úspěšná kontrola e-mailu:'; -$a->strings['IMAP server name:'] = 'Jméno IMAP serveru:'; -$a->strings['IMAP port:'] = 'IMAP port:'; -$a->strings['Security:'] = 'Zabezpečení:'; -$a->strings['None'] = 'Žádné'; -$a->strings['Email login name:'] = 'Přihlašovací jméno k e-mailu:'; -$a->strings['Email password:'] = 'Heslo k e-mailu:'; -$a->strings['Reply-to address:'] = 'Odpovědět na adresu:'; -$a->strings['Send public posts to all email contacts:'] = 'Poslat veřejné příspěvky na všechny e-mailové kontakty:'; -$a->strings['Action after import:'] = 'Akce po importu:'; -$a->strings['Mark as seen'] = 'Označit jako přečtené'; -$a->strings['Move to folder'] = 'Přesunout do složky'; -$a->strings['Move to folder:'] = 'Přesunout do složky:'; -$a->strings['No special theme for mobile devices'] = 'Žádný speciální motiv pro mobilní zařízení'; -$a->strings['%s - (Unsupported)'] = '%s - (Nepodporováno)'; -$a->strings['%s - (Experimental)'] = '%s - (Experimentální)'; -$a->strings['Sunday'] = 'neděle'; -$a->strings['Monday'] = 'pondělí'; -$a->strings['Display Settings'] = 'Nastavení zobrazení'; -$a->strings['Display Theme:'] = 'Motiv zobrazení:'; -$a->strings['Mobile Theme:'] = 'Mobilní motiv:'; -$a->strings['Suppress warning of insecure networks'] = 'Potlačit varování o nezabezpečených sítích'; -$a->strings['Should the system suppress the warning that the current group contains members of networks that can\'t receive non public postings.'] = 'Zvolte, zda má systém potlačit zobrazování varování, že aktuální skupina obsahuje členy sítí, které nemohou přijímat soukromé příspěvky.'; -$a->strings['Update browser every xx seconds'] = 'Aktualizovat prohlížeč každých xx sekund'; -$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Minimum je 10 sekund. Zadáním hodnoty -1 funkci vypnete.'; -$a->strings['Number of items to display per page:'] = 'Počet položek zobrazených na stránce:'; -$a->strings['Maximum of 100 items'] = 'Maximum 100 položek'; -$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:'; -$a->strings['Don\'t show emoticons'] = 'Nezobrazovat emotikony'; -$a->strings['Calendar'] = 'Kalendář'; -$a->strings['Beginning of week:'] = 'Začátek týdne:'; -$a->strings['Don\'t show notices'] = 'Nezobrazovat oznámění'; -$a->strings['Infinite scroll'] = 'Nekonečné posouvání'; -$a->strings['Automatic updates only at the top of the network page'] = 'Automatické aktualizace pouze na horní straně stránky Síť.'; -$a->strings['When disabled, the network page is updated all the time, which could be confusing while reading.'] = 'Pokud je tato funkce vypnuta, stránka Síť bude neustále aktualizována, což může být při čtení matoucí.'; -$a->strings['Bandwidth Saver Mode'] = 'Režim šetření dat'; -$a->strings['When enabled, embedded content is not displayed on automatic updates, they only show on page reload.'] = 'Pokud je toto zapnuto, nebude při automatických aktualizacích zobrazován vložený obsah, zobrazí se pouze při obnovení stránky.'; -$a->strings['Smart Threading'] = 'Chytrá vlákna'; -$a->strings['When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled.'] = 'Pokud je toto povoleno, bude potlačeno vnější odsazení vláken, která zároveň zůstanou tam, kde mají význam. Funguje pouze pokud je povoleno vláknování.'; -$a->strings['General Theme Settings'] = 'Obecná nastavení motivu'; -$a->strings['Custom Theme Settings'] = 'Vlastní nastavení motivu'; -$a->strings['Content Settings'] = 'Nastavení obsahu'; -$a->strings['Theme settings'] = 'Nastavení motivu'; -$a->strings['Unable to find your profile. Please contact your admin.'] = 'Nelze najít Váš účet. Prosím kontaktujte vašeho administrátora.'; -$a->strings['Account Types'] = 'Typy účtů'; -$a->strings['Personal Page Subtypes'] = 'Podtypy osobních stránek'; -$a->strings['Community Forum Subtypes'] = 'Podtypy komunitních fór'; -$a->strings['Personal Page'] = 'Osobní stránka'; -$a->strings['Account for a personal profile.'] = 'Účet pro osobní profil.'; -$a->strings['Organisation Page'] = 'Stránka organizace'; -$a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'Účet pro organizaci, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“.'; -$a->strings['News Page'] = 'Zpravodajská stránka'; -$a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'Účet pro zpravodaje, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“.'; -$a->strings['Community Forum'] = 'Komunitní fórum'; -$a->strings['Account for community discussions.'] = 'Účet pro komunitní diskuze.'; -$a->strings['Normal Account Page'] = 'Normální stránka účtu'; -$a->strings['Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'] = 'Účet pro běžný osobní profil, který vyžaduje manuální potvrzení „Přátel“ a „Sledujících“.'; -$a->strings['Soapbox Page'] = 'Propagační stránka'; -$a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'Účet pro veřejný profil, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“.'; -$a->strings['Public Forum'] = 'Veřejné fórum'; -$a->strings['Automatically approves all contact requests.'] = 'Automaticky potvrzuje všechny žádosti o přidání kontaktu.'; -$a->strings['Automatic Friend Page'] = 'Stránka s automatickými přátely'; -$a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'Účet pro populární profil, který automaticky potvrzuje požadavky o přidání kontaktu jako „Přátele“.'; -$a->strings['Private Forum [Experimental]'] = 'Soukromé fórum [Experimentální]'; -$a->strings['Requires manual approval of contact requests.'] = 'Vyžaduje manuální potvrzení požadavků o přidání kontaktu.'; -$a->strings['OpenID:'] = 'OpenID:'; -$a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Volitelné) Povolit tomuto OpenID přihlášení k tomuto účtu.'; -$a->strings['Publish your default profile in your local site directory?'] = 'Publikovat váš výchozí profil v místním adresáři webu?'; -$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.'] = 'Váš profil bude publikován v místním adresáři tohoto serveru. Vaše detaily o profilu mohou být veřejně viditelné v závislosti na systémových nastaveních.'; -$a->strings['Publish your default profile in the global social directory?'] = 'Publikovat váš výchozí profil v globální sociálním adresáři?'; -$a->strings['Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public.'] = 'Váš profil bude publikován v globálních adresářích Friendica (např. %s). Váš profil bude veřejně viditelný.'; -$a->strings['This setting also determines whether Friendica will inform search engines that your profile should be indexed or not. Third-party search engines may or may not respect this setting.'] = 'Toto nastavení také určuje, bude-li Friendica informovat vyhledávače, že může být váš profil indexován. Vyhledávače třetích stran mohou, ale nemusejí toto nastavení respektovat.'; -$a->strings['Hide your contact/friend list from viewers of your default profile?'] = 'Skrýt váš seznam kontaktů/přátel před návštěvníky vašeho výchozího profilu?'; -$a->strings['Your contact list won\'t be shown in your default profile page. You can decide to show your contact list separately for each additional profile you create'] = 'Váš seznam kontaktů nebude zobrazen na vaší výchozí profilové stránce. Můžete se rozhodnout, jestli chcete zobrazit váš seznam kontaktů zvlášť pro každý další profil, který si vytvoříte.'; -$a->strings['Hide your profile details from anonymous viewers?'] = 'Skrýt vaše profilové detaily před anonymními návštěvníky?'; -$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.'] = 'Anonymní návštěvníci mohou pouze vidět váš profilový obrázek, zobrazované jméno a přezdívku, kterou používáte na vaší profilové stránce. vaše veřejné příspěvky a odpovědi budou stále dostupné jinými způsoby.'; -$a->strings['Allow friends to post to your profile page?'] = 'Povolit přátelům umisťování příspěvků na vaši profilovou stránku?'; -$a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'Vaše kontakty mohou psát příspěvky na vaši profilovou zeď. Tyto příspěvky budou přeposílány vašim kontaktům.'; -$a->strings['Allow friends to tag your posts?'] = 'Povolit přátelům označovat vaše příspěvky?'; -$a->strings['Your contacts can add additional tags to your posts.'] = 'Vaše kontakty mohou přidávat k vašim příspěvkům dodatečné štítky.'; -$a->strings['Allow us to suggest you as a potential friend to new members?'] = 'Povolit, abychom vás navrhovali jako přátelé pro nové členy?'; -$a->strings['If you like, Friendica may suggest new members to add you as a contact.'] = 'Pokud budete chtít, může Friendica nabízet novým členům, aby si vás přidali jako kontakt.'; -$a->strings['Permit unknown people to send you private mail?'] = 'Povolit neznámým lidem vám zasílat soukromé zprávy?'; -$a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Uživatelé sítě Friendica vám mohou posílat soukromé zprávy, i pokud nejsou ve vašich kontaktech.'; -$a->strings['Profile is not published.'] = 'Profil není zveřejněn.'; -$a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'Vaše adresa identity je „%s“ nebo „%s“.'; -$a->strings['Automatically expire posts after this many days:'] = 'Automaticky expirovat příspěvky po zadaném počtu dní:'; -$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány'; -$a->strings['Advanced expiration settings'] = 'Pokročilé nastavení expirací'; -$a->strings['Advanced Expiration'] = 'Nastavení expirací'; -$a->strings['Expire posts:'] = 'Expirovat příspěvky:'; -$a->strings['Expire personal notes:'] = 'Expirovat osobní poznámky:'; -$a->strings['Expire starred posts:'] = 'Expirovat příspěvky s hvězdou:'; -$a->strings['Expire photos:'] = 'Expirovat fotky:'; -$a->strings['Only expire posts by others:'] = 'Příspěvky expirovat pouze ostatními:'; -$a->strings['Account Settings'] = 'Nastavení účtu'; -$a->strings['Password Settings'] = 'Nastavení hesla'; -$a->strings['New Password:'] = 'Nové heslo:'; -$a->strings['Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).'] = 'Povolené znaky jsou a-z, A-Z, 0-9 a zvláštní znaky kromě mezer, znaků s diakritikou a dvojtečky (:).'; -$a->strings['Confirm:'] = 'Potvrďte:'; -$a->strings['Leave password fields blank unless changing'] = 'Pokud nechcete změnit heslo, položku hesla nevyplňujte'; -$a->strings['Current Password:'] = 'Stávající heslo:'; -$a->strings['Your current password to confirm the changes'] = 'Vaše stávající heslo k potvrzení změn'; -$a->strings['Password:'] = 'Heslo: '; -$a->strings['Basic Settings'] = 'Základní nastavení'; -$a->strings['Full Name:'] = 'Celé jméno:'; -$a->strings['Email Address:'] = 'E-mailová adresa:'; -$a->strings['Your Timezone:'] = 'Vaše časové pásmo:'; -$a->strings['Your Language:'] = 'Váš jazyk:'; -$a->strings['Set the language we use to show you friendica interface and to send you emails'] = 'Nastavte jazyk, který máme používat pro rozhraní Friendica a pro posílání e-mailů'; -$a->strings['Default Post Location:'] = 'Výchozí poloha příspěvků:'; -$a->strings['Use Browser Location:'] = 'Používat polohu dle prohlížeče:'; -$a->strings['Security and Privacy Settings'] = 'Nastavení zabezpečení a soukromí'; -$a->strings['Maximum Friend Requests/Day:'] = 'Maximální počet požadavků o přátelství za den:'; -$a->strings['(to prevent spam abuse)'] = '(ay se zabránilo spamu)'; -$a->strings['Default Post Permissions'] = 'Výchozí oprávnění pro příspěvek'; -$a->strings['(click to open/close)'] = '(klikněte pro otevření/zavření)'; -$a->strings['Default Private Post'] = 'Výchozí soukromý příspěvek'; -$a->strings['Default Public Post'] = 'Výchozí veřejný příspěvek'; -$a->strings['Default Permissions for New Posts'] = 'Výchozí oprávnění pro nové příspěvky'; -$a->strings['Maximum private messages per day from unknown people:'] = 'Maximum soukromých zpráv od neznámých lidí za den:'; -$a->strings['Notification Settings'] = 'Nastavení oznámení'; -$a->strings['Send a notification email when:'] = 'Poslat oznámení e-mailem, když:'; -$a->strings['You receive an introduction'] = 'obdržíte představení'; -$a->strings['Your introductions are confirmed'] = 'jsou vaše představení potvrzena'; -$a->strings['Someone writes on your profile wall'] = 'vám někdo napíše na vaši profilovou stránku'; -$a->strings['Someone writes a followup comment'] = 'Vám někdo napíše následný komentář'; -$a->strings['You receive a private message'] = 'obdržíte soukromou zprávu'; -$a->strings['You receive a friend suggestion'] = 'obdržíte návrh přátelství'; -$a->strings['You are tagged in a post'] = 'jste označen v příspěvku'; -$a->strings['You are poked/prodded/etc. in a post'] = 'vás věkdo šťouchne/dloubne/apod. v příspěvku'; -$a->strings['Activate desktop notifications'] = 'Aktivovat desktopová oznámení'; -$a->strings['Show desktop popup on new notifications'] = 'Zobrazit desktopové zprávy při nových oznámeních.'; -$a->strings['Text-only notification emails'] = 'Pouze textové oznamovací e-maily'; -$a->strings['Send text only notification emails, without the html part'] = 'Posílat pouze textové oznamovací e-maily, bez HTML části.'; -$a->strings['Show detailled notifications'] = 'Zobrazit detailní oznámení'; -$a->strings['Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.'] = 'Ve výchozím nastavení jsou oznámení zhuštěné na jediné oznámení pro každou položku. Pokud je toto povolené, budou zobrazována všechna oznámení.'; -$a->strings['Advanced Account/Page Type Settings'] = 'Pokročilé nastavení účtu/stránky'; -$a->strings['Change the behaviour of this account for special situations'] = 'Změnit chování tohoto účtu ve speciálních situacích'; -$a->strings['Relocate'] = 'Přemístit'; -$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.'] = 'Pokud jste přemístil/a tento profil z jiného serveru a nějaký z vašich kontaktů nedostává vaše aktualizace, zkuste stisknout toto tlačítko.'; -$a->strings['Resend relocate message to contacts'] = 'Znovu odeslat správu o přemístění Vašim kontaktům'; -$a->strings['default'] = 'výchozí'; -$a->strings['greenzero'] = 'greenzero'; -$a->strings['purplezero'] = 'purplezero'; -$a->strings['easterbunny'] = 'easterbunny'; -$a->strings['darkzero'] = 'darkzero'; -$a->strings['comix'] = 'comix'; -$a->strings['slackr'] = 'slackr'; -$a->strings['Variations'] = 'Variace'; -$a->strings['Top Banner'] = 'Vrchní banner'; -$a->strings['Resize image to the width of the screen and show background color below on long pages.'] = 'Změnit velikost obrázku na šířku obrazovky a ukázat pod ním barvu pozadí na dlouhých stránkách.'; -$a->strings['Full screen'] = 'Celá obrazovka'; -$a->strings['Resize image to fill entire screen, clipping either the right or the bottom.'] = 'Změnit velikost obrázku, aby zaplnil celou obrazovku, a odštěpit buď pravou, nebo dolní část'; -$a->strings['Single row mosaic'] = 'Mozaika s jedinou řadou'; -$a->strings['Resize image to repeat it on a single row, either vertical or horizontal.'] = 'Změnit velikost obrázku a opakovat jej v jediné řadě, buď svislé, nebo vodorovné'; -$a->strings['Mosaic'] = 'Mozaika'; -$a->strings['Repeat image to fill the screen.'] = 'Opakovat obrázek, aby zaplnil obrazovku'; -$a->strings['Custom'] = 'Vlastní'; -$a->strings['Note'] = 'Poznámka'; -$a->strings['Check image permissions if all users are allowed to see the image'] = 'Zkontrolujte povolení u obrázku, jestli mají všichni uživatelé povolení obrázek vidět'; -$a->strings['Select color scheme'] = 'Vybrat barevné schéma'; -$a->strings['Copy or paste schemestring'] = 'Kopírovat a vložit řetězec schématu'; -$a->strings['You can copy this string to share your theme with others. Pasting here applies the schemestring'] = 'Tento řetězec můžete zkopírovat a sdílet tak svůj motiv s jinými lidmi. Vložením sem aplikujete řetězec schématu'; -$a->strings['Navigation bar background color'] = 'Barva pozadí navigační lišty'; -$a->strings['Navigation bar icon color '] = 'Barva ikon navigační lišty'; -$a->strings['Link color'] = 'Barva odkazů'; -$a->strings['Set the background color'] = 'Nastavit barvu pozadí'; -$a->strings['Content background opacity'] = 'Průhlednost pozadí obsahu'; -$a->strings['Set the background image'] = 'Nastavit obrázek na pozadí'; -$a->strings['Background image style'] = 'Styl obrázku na pozadí'; -$a->strings['Enable Compose page'] = 'Povolit stránku komponování'; -$a->strings['This replaces the jot modal window for writing new posts with a link to the new Compose page.'] = 'Tohle nahradí modální okno pro psaní nových příspěvků odkazem na novou stránku komponování.'; -$a->strings['Login page background image'] = 'Obrázek na pozadí přihlašovací stránky'; -$a->strings['Login page background color'] = 'Barva pozadí přihlašovací stránky'; -$a->strings['Leave background image and color empty for theme defaults'] = 'Nechejte obrázek a barvu pozadí prázdnou pro výchozí nastavení motivů'; -$a->strings['Guest'] = 'Host'; -$a->strings['Visitor'] = 'Návštěvník'; -$a->strings['Status'] = 'Stav'; -$a->strings['Your posts and conversations'] = 'Vaše příspěvky a konverzace'; +$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['Diaspora Connector'] = 'Diaspora Connector'; +$a->strings['GNU Social Connector'] = 'GNU social Connector'; +$a->strings['ActivityPub'] = 'ActivityPub'; +$a->strings['pnut'] = 'pnut'; +$a->strings['and'] = 'a'; +$a->strings['and %d other people'] = 'a dalších %d lidí'; +$a->strings['Visible to everybody'] = 'Viditelné pro všechny'; +$a->strings['Please enter a image/video/audio/webpage URL:'] = 'Prosím zadejte URL obrázku/videa/audia/webové stránky:'; +$a->strings['Tag term:'] = 'Štítek:'; +$a->strings['Save to Folder:'] = 'Uložit do složky:'; +$a->strings['Where are you right now?'] = 'Kde právě jste?'; +$a->strings['Delete item(s)?'] = 'Smazat položku(y)?'; +$a->strings['New Post'] = 'Nový příspěvek'; +$a->strings['Share'] = 'Sdílet'; +$a->strings['upload photo'] = 'nahrát fotku'; +$a->strings['Attach file'] = 'Přiložit soubor'; +$a->strings['attach file'] = 'přiložit soubor'; +$a->strings['Bold'] = 'Tučné'; +$a->strings['Italic'] = 'Kurziva'; +$a->strings['Underline'] = 'Podtržené'; +$a->strings['Quote'] = 'Citace'; +$a->strings['Code'] = 'Kód'; +$a->strings['Image'] = 'Obrázek'; +$a->strings['Link'] = 'Odkaz'; +$a->strings['Link or Media'] = 'Odkaz nebo média'; +$a->strings['Set your location'] = 'Nastavit vaši polohu'; +$a->strings['set location'] = 'nastavit polohu'; +$a->strings['Clear browser location'] = 'Vymazat polohu v prohlížeči'; +$a->strings['clear location'] = 'vymazat polohu'; +$a->strings['Set title'] = 'Nastavit nadpis'; +$a->strings['Categories (comma-separated list)'] = 'Kategorie (seznam, oddělujte čárkou)'; +$a->strings['Permission settings'] = 'Nastavení oprávnění'; +$a->strings['Public post'] = 'Veřejný příspěvek'; +$a->strings['Message'] = 'Zpráva'; +$a->strings['Browser'] = 'Prohlížeč'; +$a->strings['remove'] = 'odstranit'; +$a->strings['Delete Selected Items'] = 'Smazat vybrané položky'; +$a->strings['%s reshared this.'] = '%s tohle znovusdílel/a.'; +$a->strings['View %s\'s profile @ %s'] = 'Zobrazit profil uživatele %s na %s'; +$a->strings['Categories:'] = 'Kategorie:'; +$a->strings['Filed under:'] = 'Vyplněn pod:'; +$a->strings['%s from %s'] = '%s z %s'; +$a->strings['View in context'] = 'Zobrazit v kontextu'; +$a->strings['Local Community'] = 'Místní komunita'; +$a->strings['Posts from local users on this server'] = 'Příspěvky od místních uživatelů na tomto serveru'; +$a->strings['Global Community'] = 'Globální komunita'; +$a->strings['Posts from users of the whole federated network'] = 'Příspěvky od uživatelů z celé federované sítě'; +$a->strings['Personal'] = 'Osobní'; +$a->strings['Posts that mention or involve you'] = 'Příspěvky, které vás zmiňují nebo zahrnují'; +$a->strings['Starred'] = 'S hvězdou'; +$a->strings['Favourite Posts'] = 'Oblíbené přízpěvky'; +$a->strings['General Features'] = 'Obecné vlastnosti'; +$a->strings['Photo Location'] = 'Poloha fotky'; +$a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'Metadata fotek jsou normálně odebrána. Tato funkce před odebrání metadat extrahuje polohu (pokud je k dispozici) a propojí ji s mapou.'; +$a->strings['Trending Tags'] = 'Populární štítky'; +$a->strings['Show a community page widget with a list of the most popular tags in recent public posts.'] = 'Zobrazit widget komunitní stránky se seznamem nejpopulárnějších štítků v nedávných veřejných příspěvcích.'; +$a->strings['Post Composition Features'] = 'Nastavení vytváření příspěvků'; +$a->strings['Explicit Mentions'] = 'Výslovné zmínky'; +$a->strings['Add explicit mentions to comment box for manual control over who gets mentioned in replies.'] = 'Přidá do pole pro komentování výslovné zmínky pro ruční kontrolu nad tím, koho zmíníte v odpovědích.'; +$a->strings['Post/Comment Tools'] = 'Nástroje příspěvků/komentářů'; +$a->strings['Post Categories'] = 'Kategorie příspěvků'; +$a->strings['Add categories to your posts'] = 'Přidat kategorie k vašim příspěvkům'; +$a->strings['Advanced Profile Settings'] = 'Pokročilá nastavení profilu'; +$a->strings['Tag Cloud'] = 'Štítkový oblak'; +$a->strings['Provide a personal tag cloud on your profile page'] = 'Poskytne na vaší profilové stránce osobní „štítkový oblak“'; +$a->strings['Display Membership Date'] = 'Zobrazit datum členství'; +$a->strings['Display membership date in profile'] = 'Zobrazit v profilu datum připojení'; +$a->strings['show more'] = 'zobrazit více'; +$a->strings['event'] = 'událost'; +$a->strings['status'] = 'stav'; +$a->strings['photo'] = 'fotka'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s označil/a %3$s uživatele %2$s štítkem %4$s'; +$a->strings['Follow Thread'] = 'Sledovat vlákno'; +$a->strings['View Status'] = 'Zobrazit stav'; +$a->strings['View Profile'] = 'Zobrazit profil'; +$a->strings['View Photos'] = 'Zobrazit fotky'; +$a->strings['Network Posts'] = 'Síťové příspěvky'; +$a->strings['View Contact'] = 'Zobrazit kontakt'; +$a->strings['Send PM'] = 'Poslat soukromou zprávu'; +$a->strings['Block'] = 'Blokovat'; +$a->strings['Ignore'] = 'Ignorovat'; +$a->strings['Connect/Follow'] = 'Spojit se/sledovat'; +$a->strings['Nothing new here'] = 'Zde není nic nového'; +$a->strings['Go back'] = 'Přejít zpět'; +$a->strings['Clear notifications'] = 'Vymazat oznámení'; +$a->strings['Logout'] = 'Odhlásit se'; +$a->strings['End this session'] = 'Konec této relace'; +$a->strings['Login'] = 'Přihlásit se'; +$a->strings['Sign in'] = 'Přihlásit se'; +$a->strings['Profile'] = 'Profil'; $a->strings['Your profile page'] = 'Vaše profilová stránka'; +$a->strings['Photos'] = 'Fotky'; $a->strings['Your photos'] = 'Vaše fotky'; -$a->strings['Videos'] = 'Videa'; -$a->strings['Your videos'] = 'Vaše videa'; -$a->strings['Your events'] = 'Vaše události'; +$a->strings['Calendar'] = 'Kalendář'; +$a->strings['Personal notes'] = 'Osobní poznámky'; +$a->strings['Your personal notes'] = 'Vaše osobní poznámky'; +$a->strings['Home'] = 'Domů'; +$a->strings['Home Page'] = 'Domovská stránka'; +$a->strings['Register'] = 'Registrovat'; +$a->strings['Create an account'] = 'Vytvořit účet'; +$a->strings['Help'] = 'Nápověda'; +$a->strings['Help and documentation'] = 'Nápověda a dokumentace'; +$a->strings['Apps'] = 'Aplikace'; +$a->strings['Addon applications, utilities, games'] = 'Doplňkové aplikace, nástroje, hry'; +$a->strings['Search'] = 'Hledat'; +$a->strings['Search site content'] = 'Hledání na stránkách tohoto webu'; +$a->strings['Full Text'] = 'Celý text'; +$a->strings['Tags'] = 'Štítky'; +$a->strings['Contacts'] = 'Kontakty'; +$a->strings['Community'] = 'Komunita'; +$a->strings['Conversations on this and other servers'] = 'Konverzace na tomto a jiných serverech'; +$a->strings['Directory'] = 'Adresář'; +$a->strings['People directory'] = 'Adresář'; +$a->strings['Information'] = 'Informace'; +$a->strings['Information about this friendica instance'] = 'Informace o této instanci Friendica'; +$a->strings['Terms of Service'] = 'Podmínky používání'; +$a->strings['Terms of Service of this Friendica instance'] = 'Podmínky používání této instance Friendica'; $a->strings['Network'] = 'Síť'; $a->strings['Conversations from your friends'] = 'Konverzace od vašich přátel'; -$a->strings['Events and Calendar'] = 'Události a kalendář'; +$a->strings['Your posts and conversations'] = 'Vaše příspěvky a konverzace'; +$a->strings['Introductions'] = 'Představení'; +$a->strings['Friend Requests'] = 'Požadavky o přátelství'; +$a->strings['Notifications'] = 'Oznámení'; +$a->strings['See all notifications'] = 'Zobrazit všechna oznámení'; +$a->strings['Mark as seen'] = 'Označit jako přečtené'; $a->strings['Private mail'] = 'Soukromá pošta'; +$a->strings['Inbox'] = 'Doručená pošta'; +$a->strings['Outbox'] = 'Odeslaná pošta'; +$a->strings['Manage other pages'] = 'Spravovat jiné stránky'; +$a->strings['Settings'] = 'Nastavení'; $a->strings['Account settings'] = 'Nastavení účtu'; -$a->strings['Contacts'] = 'Kontakty'; $a->strings['Manage/edit friends and contacts'] = 'Spravovat/upravit přátelé a kontakty'; -$a->strings['Alignment'] = 'Zarovnání'; -$a->strings['Left'] = 'Vlevo'; -$a->strings['Center'] = 'Uprostřed'; -$a->strings['Color scheme'] = 'Barevné schéma'; -$a->strings['Posts font size'] = 'Velikost písma u příspěvků'; -$a->strings['Textareas font size'] = 'Velikost písma textů'; -$a->strings['Comma separated list of helper forums'] = 'Seznam fór s pomocníky, oddělených čárkami'; -$a->strings['don\'t show'] = 'nezobrazit'; -$a->strings['show'] = 'zobrazit'; -$a->strings['Set style'] = 'Nastavit styl'; -$a->strings['Community Pages'] = 'Komunitní stránky'; -$a->strings['Community Profiles'] = 'Komunitní profily'; -$a->strings['Help or @NewHere ?'] = 'Pomoc nebo @ProNováčky ?'; -$a->strings['Connect Services'] = 'Připojit služby'; -$a->strings['Find Friends'] = 'Najít přátele'; -$a->strings['Last users'] = 'Poslední uživatelé'; +$a->strings['Admin'] = 'Administrátor'; +$a->strings['Site setup and configuration'] = 'Nastavení webu a konfigurace'; +$a->strings['Navigation'] = 'Navigace'; +$a->strings['Site map'] = 'Mapa webu'; +$a->strings['Embedding disabled'] = 'Vkládání zakázáno'; +$a->strings['Embedded content'] = 'Vložený obsah'; +$a->strings['first'] = 'první'; +$a->strings['prev'] = 'předchozí'; +$a->strings['next'] = 'další'; +$a->strings['last'] = 'poslední'; +$a->strings['Image/photo'] = 'Obrázek/fotka'; +$a->strings['Click to open/close'] = 'Kliknutím otevřete/zavřete'; +$a->strings['$1 wrote:'] = '$1 napsal/a:'; +$a->strings['Encrypted content'] = 'Šifrovaný obsah'; +$a->strings['Invalid source protocol'] = 'Neplatný protokol zdroje'; +$a->strings['Invalid link protocol'] = 'Neplatný protokol odkazu'; +$a->strings['Loading more entries...'] = 'Načítám více záznamů...'; +$a->strings['The end'] = 'Konec'; +$a->strings['Follow'] = 'Sledovat'; +$a->strings['Add New Contact'] = 'Přidat nový kontakt'; +$a->strings['Enter address or web location'] = 'Zadejte adresu nebo umístění webu'; +$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Příklad: jan@priklad.cz, http://priklad.cz/lucie'; +$a->strings['Connect'] = 'Spojit se'; +$a->strings['%d invitation available'] = [ + 0 => '%d pozvánka k dispozici', + 1 => '%d pozvánky k dispozici', + 2 => '%d pozvánky k dispozici', + 3 => '%d pozvánek k dispozici', +]; $a->strings['Find People'] = 'Najít lidi'; $a->strings['Enter name or interest'] = 'Zadejte jméno nebo zájmy'; $a->strings['Examples: Robert Morgenstein, Fishing'] = 'Příklady: Josef Dvořák, rybaření'; $a->strings['Find'] = 'Najít'; +$a->strings['Friend Suggestions'] = 'Návrhy přátel'; $a->strings['Similar Interests'] = 'Podobné zájmy'; $a->strings['Random Profile'] = 'Náhodný profil'; $a->strings['Invite Friends'] = 'Pozvat přátele'; $a->strings['Global Directory'] = 'Globální adresář'; $a->strings['Local Directory'] = 'Místní adresář'; -$a->strings['Forums'] = 'Fóra'; -$a->strings['External link to forum'] = 'Externí odkaz na fórum'; -$a->strings['show more'] = 'zobrazit více'; -$a->strings['Quick Start'] = 'Rychlý začátek'; -$a->strings['Help'] = 'Nápověda'; -$a->strings['Tuesday'] = 'úterý'; -$a->strings['Wednesday'] = 'středa'; -$a->strings['Thursday'] = 'čtvrtek'; -$a->strings['Friday'] = 'pátek'; -$a->strings['Saturday'] = 'sobota'; -$a->strings['January'] = 'leden'; -$a->strings['February'] = 'únor'; -$a->strings['March'] = 'březen'; -$a->strings['April'] = 'duben'; -$a->strings['May'] = 'květen'; -$a->strings['June'] = 'červen'; -$a->strings['July'] = 'červenec'; -$a->strings['August'] = 'srpen'; -$a->strings['September'] = 'září'; -$a->strings['October'] = 'říjen'; -$a->strings['November'] = 'listopad'; -$a->strings['December'] = 'prosinec'; -$a->strings['Mon'] = 'pon'; -$a->strings['Tue'] = 'úte'; -$a->strings['Wed'] = 'stř'; -$a->strings['Thu'] = 'čtv'; -$a->strings['Fri'] = 'pát'; -$a->strings['Sat'] = 'sob'; -$a->strings['Sun'] = 'ned'; -$a->strings['Jan'] = 'led'; -$a->strings['Feb'] = 'úno'; -$a->strings['Mar'] = 'bře'; -$a->strings['Apr'] = 'dub'; -$a->strings['Jun'] = 'čvn'; -$a->strings['Jul'] = 'čvc'; -$a->strings['Aug'] = 'srp'; -$a->strings['Sep'] = 'zář'; -$a->strings['Oct'] = 'říj'; -$a->strings['Nov'] = 'lis'; -$a->strings['Dec'] = 'pro'; -$a->strings['poke'] = 'šťouchnout'; -$a->strings['poked'] = 'šťouchnul/a'; -$a->strings['ping'] = 'cinknout'; -$a->strings['pinged'] = 'cinknul/a'; -$a->strings['prod'] = 'dloubnout'; -$a->strings['prodded'] = 'dloubnul/a'; -$a->strings['slap'] = 'uhodit'; -$a->strings['slapped'] = 'uhodil/a'; -$a->strings['finger'] = 'osahat'; -$a->strings['fingered'] = 'osahal/a'; -$a->strings['rebuff'] = 'odmítnout'; -$a->strings['rebuffed'] = 'odmítnul/a'; -$a->strings['Update %s failed. See error logs.'] = 'Aktualizace %s selhala. Zkontrolujte protokol chyb.'; -$a->strings[' - The friendica developers released update %s recently, - but when I tried to install it, something went terribly wrong. - This needs to be fixed soon and I can\'t do it alone. Please contact a - friendica developer if you can not help me on your own. My database might be invalid.'] = ' - Vývojáři Friendica nedávno vydali aktualizaci %s, - ale když jsem ji zkusil instalovat, něco se strašně pokazilo. - Toto se musí ihned opravit a nemůžu to udělat sám. Prosím, kontaktujte - vývojáře Friendica, pokud to nedokážete sám. Moje databáze může být neplatná.'; -$a->strings['The error message is -[pre]%s[/pre]'] = 'Chybová zpráva je -[pre]%s[/pre]'; -$a->strings['[Friendica Notify] Database update'] = '[Friendica:Oznámení] Aktualizace databáze'; -$a->strings[' - The friendica database was successfully updated from %s to %s.'] = ' - Databáze Friendica byla úspěšně aktualizována z verze %s na %s.'; -$a->strings['Error decoding account file'] = 'Chyba dekódování uživatelského účtu'; -$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Chyba! V souboru nejsou data o verzi! Je to opravdu soubor s účtem Friendica?'; -$a->strings['User \'%s\' already exists on this server!'] = 'Uživatel „%s“ již na tomto serveru existuje!'; -$a->strings['User creation error'] = 'Chyba při vytváření uživatele'; -$a->strings['User profile creation error'] = 'Chyba vytváření uživatelského profilu'; -$a->strings['%d contact not imported'] = [ - 0 => '%d kontakt nenaimportován', - 1 => '%d kontakty nenaimportovány', - 2 => '%d kontaktu nenaimportováno', - 3 => '%d kontaktů nenaimportováno', +$a->strings['Relationships'] = 'Vztahy'; +$a->strings['All Contacts'] = 'Všechny kontakty'; +$a->strings['Protocols'] = 'Protokoly'; +$a->strings['All Protocols'] = 'Všechny protokoly'; +$a->strings['Saved Folders'] = 'Uložené složky'; +$a->strings['Everything'] = 'Všechno'; +$a->strings['Categories'] = 'Kategorie'; +$a->strings['%d contact in common'] = [ + 0 => '%d společný kontakt', + 1 => '%d společné kontakty', + 2 => '%d společného kontaktu', + 3 => '%d společných kontaktů', ]; -$a->strings['Done. You can now login with your username and password'] = 'Hotovo. Nyní se můžete přihlásit se svým uživatelským jménem a heslem'; +$a->strings['Archives'] = 'Archivy'; +$a->strings['News'] = 'Zprávy'; +$a->strings['Account Types'] = 'Typy účtů'; +$a->strings['Export'] = 'Exportovat'; +$a->strings['Export calendar as ical'] = 'Exportovat kalendář jako ical'; +$a->strings['Export calendar as csv'] = 'Exportovat kalendář jako csv'; +$a->strings['No contacts'] = 'Žádné kontakty'; +$a->strings['%d Contact'] = [ + 0 => '%d kontakt', + 1 => '%d kontakty', + 2 => '%d kontaktu', + 3 => '%d kontaktů', +]; +$a->strings['View Contacts'] = 'Zobrazit kontakty'; +$a->strings['Remove term'] = 'Odstranit termín'; +$a->strings['Saved Searches'] = 'Uložená hledání'; +$a->strings['Trending Tags (last %d hour)'] = [ + 0 => 'Populární štítky (poslední %d hodina)', + 1 => 'Populární štítky (poslední %d hodiny)', + 2 => 'Populární štítky (posledních %d hodin)', + 3 => 'Populární štítky (posledních %d hodin)', +]; +$a->strings['More Trending Tags'] = 'Další populární štítky'; +$a->strings['XMPP:'] = 'XMPP:'; +$a->strings['Location:'] = 'Poloha:'; +$a->strings['Network:'] = 'Síť:'; +$a->strings['Unfollow'] = 'Přestat sledovat'; +$a->strings['Mutuals'] = 'Vzájemní'; +$a->strings['Post to Email'] = 'Poslat příspěvek na e-mail'; +$a->strings['CC: email addresses'] = 'Kopie: e-mailové adresy'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Příklad: jan@priklad.cz, lucie@priklad.cz'; +$a->strings['Connectors'] = 'Konektory'; $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.'] = 'Databázový konfigurační soubor „config/local.config.php“ nemohl být zapsán. Prosím, použijte přiložený text k vytvoření konfiguračního souboru v kořenovém adresáři vašeho webového serveru.'; $a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Nejspíše budete muset manuálně importovat soubor „database.sql“ pomocí phpMyAdmin či MySQL.'; -$a->strings['Please see the file "INSTALL.txt".'] = 'Přečtěte si prosím informace v souboru „INSTALL.txt“.'; $a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru.'; -$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\''] = 'Pokud nemáte na vašem serveru nainstalovanou verzi PHP pro příkazový řádek, nebudete moci spouštět procesy v pozadí. Více na „Nastavte pracovníka“'; $a->strings['PHP executable path'] = 'Cesta ke spustitelnému souboru PHP'; $a->strings['Enter full path to php executable. You can leave this blank to continue the installation.'] = 'Zadejte plnou cestu ke spustitelnému souboru PHP. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci.'; $a->strings['Command line PHP'] = 'Příkazový řádek PHP'; @@ -1243,14 +485,12 @@ $a->strings['Error: File Information PHP module required but not installed.'] = $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.'] = 'Webový instalátor musí být schopen vytvořit soubor s názvem „local.config.php“ v adresáři „config“ Vašeho webového serveru a není mu to umožněno. '; $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.'] = 'Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když vy můžete.'; $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.'] = 'Na konci této procedury od nás obdržíte text k uložení v souboru pojmenovaném local.config.php v adresáři „config“ na Vaší instalaci Friendica.'; -$a->strings['You can alternatively skip this procedure and perform a manual installation. Please see the file "INSTALL.txt" for instructions.'] = 'Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor „INSTALL.txt“ pro další instrukce.'; $a->strings['config/local.config.php is writable'] = 'Soubor config/local.config.php je zapisovatelný'; $a->strings['Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.'] = 'Friendica používá k zobrazení svých webových stránek šablonovací nástroj Smarty3. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování.'; $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.'] = 'Pro uložení kompilovaných šablon potřebuje webový server mít přístup k zápisu do adresáře view/smarty3/ pod kořenovým adresářem Friendica.'; $a->strings['Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder.'] = 'Prosím ujistěte se, že má uživatel webového serveru (jako například www-data) právo zápisu do tohoto adresáře'; $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.'] = 'Poznámka: jako bezpečnostní opatření byste měl/a přidělit webovém serveru právo zápisu pouze do adresáře /view/smarty3/ -- a nikoliv už do souborů s šablonami (.tpl), které obsahuje.'; $a->strings['view/smarty3 is writable'] = 'Adresář view/smarty3 je zapisovatelný'; -$a->strings['Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist to .htaccess.'] = 'URL rewrite v souboru .htacess nefunguje. Ujistěte se, že jste zkopíroval/a soubor .htaccess-dist jako .htaccess'; $a->strings['Error message from Curl when fetching'] = 'Chybová zpráva od Curl při načítání'; $a->strings['Url rewrite is working'] = 'Url rewrite je funkční.'; $a->strings['ImageMagick PHP extension is not installed'] = 'PHP rozšíření ImageMagick není nainstalováno'; @@ -1258,258 +498,57 @@ $a->strings['ImageMagick PHP extension is installed'] = 'PHP rozšíření Image $a->strings['ImageMagick supports GIF'] = 'ImageMagick podporuje GIF'; $a->strings['Database already in use.'] = 'Databáze se již používá.'; $a->strings['Could not connect to database.'] = 'Nelze se připojit k databázi.'; -$a->strings['System'] = 'Systém'; -$a->strings['Home'] = 'Domů'; -$a->strings['Introductions'] = 'Představení'; -$a->strings['%s commented on %s\'s post'] = '%s okomentoval/a příspěvek uživatele %s'; -$a->strings['%s created a new post'] = '%s vytvořil nový příspěvek'; -$a->strings['%s liked %s\'s post'] = 'Uživateli %s se líbí příspěvek uživatele %s'; -$a->strings['%s disliked %s\'s post'] = 'Uživateli %s se nelíbí příspěvek uživatele %s'; -$a->strings['%s is attending %s\'s event'] = '%s se zúčastní události %s'; -$a->strings['%s is not attending %s\'s event'] = '%s se nezúčastní události %s'; -$a->strings['%s may attend %s\'s event'] = '%s by se mohl/a zúčastnit události %s'; -$a->strings['%s is now friends with %s'] = '%s se nyní přátelí s uživatelem %s'; -$a->strings['Friend Suggestion'] = 'Návrh přátelství'; -$a->strings['Friend/Connect Request'] = 'Požadavek o přátelství/spojení'; -$a->strings['New Follower'] = 'Nový sledující'; -$a->strings['Welcome %s'] = 'Vítejte, %s'; -$a->strings['Please upload a profile photo.'] = 'Prosím nahrajte profilovou fotku.'; -$a->strings['Welcome back %s'] = 'Vítejte zpět, %s'; -$a->strings['Post to Email'] = 'Poslat příspěvek na e-mail'; -$a->strings['Visible to everybody'] = 'Viditelné pro všechny'; -$a->strings['Connectors'] = 'Konektory'; -$a->strings['Hide your profile details from unknown viewers?'] = 'Skrýt vaše profilové detaily před neznámými návštěvníky?'; -$a->strings['Connectors disabled, since "%s" is enabled.'] = 'Konektory deaktivovány, neboť je aktivován „%s“.'; -$a->strings['Close'] = 'Zavřít'; -$a->strings['Birthday:'] = 'Narozeniny:'; -$a->strings['YYYY-MM-DD or MM-DD'] = 'RRRR-MM-DD nebo MM-DD'; -$a->strings['never'] = 'nikdy'; -$a->strings['less than a second ago'] = 'méně než před sekundou'; -$a->strings['year'] = 'rok'; -$a->strings['years'] = 'let'; -$a->strings['months'] = 'měsíců'; -$a->strings['weeks'] = 'týdnů'; -$a->strings['days'] = 'dní'; -$a->strings['hour'] = 'hodina'; -$a->strings['hours'] = 'hodin'; -$a->strings['minute'] = 'minuta'; -$a->strings['minutes'] = 'minut'; -$a->strings['second'] = 'sekunda'; -$a->strings['seconds'] = 'sekund'; -$a->strings['in %1$d %2$s'] = 'za %1$d %2$s'; -$a->strings['%1$d %2$s ago'] = 'před %1$d %2$s'; -$a->strings['Loading more entries...'] = 'Načítám více záznamů...'; -$a->strings['The end'] = 'Konec'; -$a->strings['Follow'] = 'Sledovat'; -$a->strings['@name, !forum, #tags, content'] = '@jméno, !fórum, #štítky, obsah'; -$a->strings['Full Text'] = 'Celý text'; -$a->strings['Tags'] = 'Štítky'; -$a->strings['Click to open/close'] = 'Kliknutím otevřete/zavřete'; -$a->strings['view full size'] = 'zobrazit v plné velikosti'; -$a->strings['Image/photo'] = 'Obrázek/fotka'; -$a->strings['%2$s %3$s'] = '%2$s %3$s'; -$a->strings['$1 wrote:'] = '$1 napsal/a:'; -$a->strings['Encrypted content'] = 'Šifrovaný obsah'; -$a->strings['Invalid source protocol'] = 'Neplatný protokol zdroje'; -$a->strings['Invalid link protocol'] = 'Neplatný protokol odkazu'; -$a->strings['Export'] = 'Exportovat'; -$a->strings['Export calendar as ical'] = 'Exportovat kalendář jako ical'; -$a->strings['Export calendar as csv'] = 'Exportovat kalendář jako csv'; -$a->strings['No contacts'] = 'Žádné kontakty'; -$a->strings['%d Contact'] = [ - 0 => '%d kontakt', - 1 => '%d kontakty', - 2 => '%d kontaktu', - 3 => '%d kontaktů', -]; -$a->strings['View Contacts'] = 'Zobrazit kontakty'; -$a->strings['Trending Tags (last %d hour)'] = [ - 0 => 'Populární štítky (poslední %d hodina)', - 1 => 'Populární štítky (poslední %d hodiny)', - 2 => 'Populární štítky (posledních %d hodin)', - 3 => 'Populární štítky (posledních %d hodin)', -]; -$a->strings['More Trending Tags'] = 'Další populární štítky'; -$a->strings['newer'] = 'novější'; -$a->strings['older'] = 'starší'; -$a->strings['prev'] = 'předchozí'; -$a->strings['last'] = 'poslední'; -$a->strings['General Features'] = 'Obecné vlastnosti'; -$a->strings['Multiple Profiles'] = 'Více profilů'; -$a->strings['Ability to create multiple profiles'] = 'Schopnost vytvořit více profilů'; -$a->strings['Photo Location'] = 'Poloha fotky'; -$a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'Metadata fotek jsou normálně odebrána. Tato funkce před odebrání metadat extrahuje polohu (pokud je k dispozici) a propojí ji s mapou.'; -$a->strings['Export Public Calendar'] = 'Exportovat veřejný kalendář'; -$a->strings['Ability for visitors to download the public calendar'] = 'Umožnit návštěvníkům stáhnout si veřejný kalendář'; -$a->strings['Trending Tags'] = 'Populární štítky'; -$a->strings['Show a community page widget with a list of the most popular tags in recent public posts.'] = 'Zobrazit widget komunitní stránky se seznamem nejpopulárnějších štítků v nedávných veřejných příspěvcích.'; -$a->strings['Post Composition Features'] = 'Nastavení vytváření příspěvků'; -$a->strings['Auto-mention Forums'] = 'Automaticky zmiňovat fóra'; -$a->strings['Add/remove mention when a forum page is selected/deselected in ACL window.'] = 'Přidat/odstranit zmínku, když je stránka na fóru označena/odznačena v okně ACL.'; -$a->strings['Explicit Mentions'] = 'Výslovné zmínky'; -$a->strings['Add explicit mentions to comment box for manual control over who gets mentioned in replies.'] = 'Přidá do pole pro komentování výslovné zmínky pro ruční kontrolu nad tím, koho zmíníte v odpovědích.'; -$a->strings['Network Sidebar'] = 'Síťová postranní lišta'; -$a->strings['Archives'] = 'Archivy'; -$a->strings['Ability to select posts by date ranges'] = 'Možnost označit příspěvky dle časového intervalu'; -$a->strings['Protocol Filter'] = 'Filtr protokolů'; -$a->strings['Enable widget to display Network posts only from selected protocols'] = 'Povolením widgetu se budou zobrazovat síťové příspěvky pouze z vybraných protokolů'; -$a->strings['Network Tabs'] = 'Síťové záložky'; -$a->strings['Network New Tab'] = 'Síťová záložka Nové'; -$a->strings['Enable tab to display only new Network posts (from the last 12 hours)'] = 'Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)'; -$a->strings['Network Shared Links Tab'] = 'Síťová záložka Sdílené odkazy '; -$a->strings['Enable tab to display only Network posts with links in them'] = 'Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně'; -$a->strings['Post/Comment Tools'] = 'Nástroje příspěvků/komentářů'; -$a->strings['Post Categories'] = 'Kategorie příspěvků'; -$a->strings['Add categories to your posts'] = 'Přidat kategorie k vašim příspěvkům'; -$a->strings['Advanced Profile Settings'] = 'Pokročilá nastavení profilu'; -$a->strings['List Forums'] = 'Vypsat fóra'; -$a->strings['Show visitors public community forums at the Advanced Profile Page'] = 'Zobrazit návštěvníkům veřejná komunitní fóra na stránce pokročilého profilu'; -$a->strings['Tag Cloud'] = 'Štítkový oblak'; -$a->strings['Provide a personal tag cloud on your profile page'] = 'Poskytne na vaší profilové stránce osobní „štítkový oblak“'; -$a->strings['Display Membership Date'] = 'Zobrazit datum členství'; -$a->strings['Display membership date in profile'] = 'Zobrazit v profilu datum připojení'; -$a->strings['Nothing new here'] = 'Zde není nic nového'; -$a->strings['Clear notifications'] = 'Vymazat oznámení'; -$a->strings['Logout'] = 'Odhlásit se'; -$a->strings['End this session'] = 'Konec této relace'; -$a->strings['Login'] = 'Přihlásit se'; -$a->strings['Sign in'] = 'Přihlásit se'; -$a->strings['Personal notes'] = 'Osobní poznámky'; -$a->strings['Your personal notes'] = 'Vaše osobní poznámky'; -$a->strings['Home Page'] = 'Domovská stránka'; -$a->strings['Register'] = 'Registrovat'; -$a->strings['Create an account'] = 'Vytvořit účet'; -$a->strings['Help and documentation'] = 'Nápověda a dokumentace'; -$a->strings['Apps'] = 'Aplikace'; -$a->strings['Addon applications, utilities, games'] = 'Doplňkové aplikace, nástroje, hry'; -$a->strings['Search site content'] = 'Hledání na stránkách tohoto webu'; -$a->strings['Community'] = 'Komunita'; -$a->strings['Conversations on this and other servers'] = 'Konverzace na tomto a jiných serverech'; -$a->strings['Directory'] = 'Adresář'; -$a->strings['People directory'] = 'Adresář'; -$a->strings['Information'] = 'Informace'; -$a->strings['Information about this friendica instance'] = 'Informace o této instanci Friendica'; -$a->strings['Terms of Service'] = 'Podmínky používání'; -$a->strings['Terms of Service of this Friendica instance'] = 'Podmínky používání této instance Friendica'; -$a->strings['Network Reset'] = 'Reset sítě'; -$a->strings['Load Network page with no filters'] = 'Načíst stránku Síť bez filtrů'; -$a->strings['Friend Requests'] = 'Požadavky o přátelství'; -$a->strings['See all notifications'] = 'Zobrazit všechna oznámení'; -$a->strings['Mark all system notifications seen'] = 'Označit všechna systémová oznámení jako přečtené'; -$a->strings['Inbox'] = 'Doručená pošta'; -$a->strings['Outbox'] = 'Odeslaná pošta'; -$a->strings['Manage'] = 'Spravovat'; -$a->strings['Manage other pages'] = 'Spravovat jiné stránky'; -$a->strings['Manage/Edit Profiles'] = 'Spravovat/Editovat Profily'; -$a->strings['Admin'] = 'Administrátor'; -$a->strings['Site setup and configuration'] = 'Nastavení webu a konfigurace'; -$a->strings['Navigation'] = 'Navigace'; -$a->strings['Site map'] = 'Mapa webu'; -$a->strings['Embedding disabled'] = 'Vkládání zakázáno'; -$a->strings['Embedded content'] = 'Vložený obsah'; -$a->strings['Add New Contact'] = 'Přidat nový kontakt'; -$a->strings['Enter address or web location'] = 'Zadejte adresu nebo umístění webu'; -$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Příklad: jan@priklad.cz, http://priklad.cz/lucie'; -$a->strings['%d invitation available'] = [ - 0 => '%d pozvánka k dispozici', - 1 => '%d pozvánky k dispozici', - 2 => '%d pozvánky k dispozici', - 3 => '%d pozvánek k dispozici', -]; -$a->strings['Following'] = 'Sledující'; -$a->strings['Mutual friends'] = 'Vzájemní přátelé'; -$a->strings['Relationships'] = 'Vztahy'; -$a->strings['All Contacts'] = 'Všechny kontakty'; -$a->strings['Protocols'] = 'Protokoly'; -$a->strings['All Protocols'] = 'Všechny protokoly'; -$a->strings['Saved Folders'] = 'Uložené složky'; -$a->strings['Everything'] = 'Všechno'; -$a->strings['Categories'] = 'Kategorie'; -$a->strings['%d contact in common'] = [ - 0 => '%d společný kontakt', - 1 => '%d společné kontakty', - 2 => '%d společného kontaktu', - 3 => '%d společných kontaktů', -]; -$a->strings['Frequently'] = 'Často'; -$a->strings['Hourly'] = 'Hodinově'; -$a->strings['Twice daily'] = 'Dvakrát denně'; -$a->strings['Daily'] = 'Denně'; -$a->strings['Weekly'] = 'Týdně'; -$a->strings['Monthly'] = 'Měsíčně'; -$a->strings['DFRN'] = 'DFRN'; -$a->strings['OStatus'] = 'OStatus'; -$a->strings['RSS/Atom'] = 'RSS/Atom'; -$a->strings['Email'] = 'E-mail'; -$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['Diaspora Connector'] = 'Diaspora Connector'; -$a->strings['GNU Social Connector'] = 'GNU social Connector'; -$a->strings['ActivityPub'] = 'ActivityPub'; -$a->strings['pnut'] = 'pnut'; -$a->strings['No answer'] = 'Žádná odpověď'; -$a->strings['Male'] = 'Muž'; -$a->strings['Female'] = 'Žena'; -$a->strings['Currently Male'] = 'V současnosti muž'; -$a->strings['Currently Female'] = 'V současnosti žena'; -$a->strings['Mostly Male'] = 'Z větší části muž'; -$a->strings['Mostly Female'] = 'Z větší části žena'; -$a->strings['Transgender'] = 'Transgender'; -$a->strings['Intersex'] = 'Intersexuál'; -$a->strings['Transsexual'] = 'Transsexuál'; -$a->strings['Hermaphrodite'] = 'Hermafrodit'; -$a->strings['Neuter'] = 'Střední rod'; -$a->strings['Non-specific'] = 'Nespecifikováno'; -$a->strings['Other'] = 'Jiné'; -$a->strings['Males'] = 'Muži'; -$a->strings['Females'] = 'Ženy'; -$a->strings['Gay'] = 'Gay'; -$a->strings['Lesbian'] = 'Lesba'; -$a->strings['No Preference'] = 'Bez preferencí'; -$a->strings['Bisexual'] = 'Bisexuál'; -$a->strings['Autosexual'] = 'Autosexuál'; -$a->strings['Abstinent'] = 'Abstinent'; -$a->strings['Virgin'] = 'Panic/panna'; -$a->strings['Deviant'] = 'Deviant'; -$a->strings['Fetish'] = 'Fetišista'; -$a->strings['Oodles'] = 'Hodně'; -$a->strings['Nonsexual'] = 'Nesexuální'; -$a->strings['Single'] = 'Svobodný/á'; -$a->strings['Lonely'] = 'Osamělý/á'; -$a->strings['In a relation'] = 'Ve vztahu'; -$a->strings['Has crush'] = 'Zamilovaný/á'; -$a->strings['Infatuated'] = 'Zabouchnutý/á'; -$a->strings['Dating'] = 'Chodím s někým'; -$a->strings['Unfaithful'] = 'Nevěrný/á'; -$a->strings['Sex Addict'] = 'Posedlý/á sexem'; -$a->strings['Friends'] = 'Přátelé'; -$a->strings['Friends/Benefits'] = 'Přátelé/výhody'; -$a->strings['Casual'] = 'Ležérní'; -$a->strings['Engaged'] = 'Zadaný/á'; -$a->strings['Married'] = 'Ženatý/vdaná'; -$a->strings['Imaginarily married'] = 'Pomyslně ženatý/vdaná'; -$a->strings['Partners'] = 'Partneři'; -$a->strings['Cohabiting'] = 'Žiji ve společné domácnosti'; -$a->strings['Common law'] = 'Zvykové právo'; -$a->strings['Happy'] = 'Šťastný/á'; -$a->strings['Not looking'] = 'Nehledající'; -$a->strings['Swinger'] = 'Swinger'; -$a->strings['Betrayed'] = 'Zrazen/a'; -$a->strings['Separated'] = 'Odloučený/á'; -$a->strings['Unstable'] = 'Nestálý/á'; -$a->strings['Divorced'] = 'Rozvedený/á'; -$a->strings['Imaginarily divorced'] = 'Pomyslně rozvedený/á'; -$a->strings['Widowed'] = 'Ovdovělý/á'; -$a->strings['Uncertain'] = 'Nejistý/á'; -$a->strings['It\'s complicated'] = 'Je to složité'; -$a->strings['Don\'t care'] = 'Nezájem'; -$a->strings['Ask me'] = 'Zeptej se mě'; -$a->strings['There are no tables on MyISAM.'] = 'V MyISAM nejsou žádné tabulky.'; +$a->strings['Monday'] = 'pondělí'; +$a->strings['Tuesday'] = 'úterý'; +$a->strings['Wednesday'] = 'středa'; +$a->strings['Thursday'] = 'čtvrtek'; +$a->strings['Friday'] = 'pátek'; +$a->strings['Saturday'] = 'sobota'; +$a->strings['Sunday'] = 'neděle'; +$a->strings['January'] = 'leden'; +$a->strings['February'] = 'únor'; +$a->strings['March'] = 'březen'; +$a->strings['April'] = 'duben'; +$a->strings['May'] = 'květen'; +$a->strings['June'] = 'červen'; +$a->strings['July'] = 'červenec'; +$a->strings['August'] = 'srpen'; +$a->strings['September'] = 'září'; +$a->strings['October'] = 'říjen'; +$a->strings['November'] = 'listopad'; +$a->strings['December'] = 'prosinec'; +$a->strings['Mon'] = 'pon'; +$a->strings['Tue'] = 'úte'; +$a->strings['Wed'] = 'stř'; +$a->strings['Thu'] = 'čtv'; +$a->strings['Fri'] = 'pát'; +$a->strings['Sat'] = 'sob'; +$a->strings['Sun'] = 'ned'; +$a->strings['Jan'] = 'led'; +$a->strings['Feb'] = 'úno'; +$a->strings['Mar'] = 'bře'; +$a->strings['Apr'] = 'dub'; +$a->strings['Jun'] = 'čvn'; +$a->strings['Jul'] = 'čvc'; +$a->strings['Aug'] = 'srp'; +$a->strings['Sep'] = 'zář'; +$a->strings['Oct'] = 'říj'; +$a->strings['Nov'] = 'lis'; +$a->strings['Dec'] = 'pro'; +$a->strings['Storage base path'] = 'Cesta ke kořenové složce úložiště'; +$a->strings['Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree'] = 'Složka, do které jsou ukládány nahrané soubory. Pro maximální bezpečnost to musí být cesta mimo složku webového serveru'; +$a->strings['Enter a valid existing folder'] = 'Zadejte platnou existující složku'; +$a->strings['Update %s failed. See error logs.'] = 'Aktualizace %s selhala. Zkontrolujte protokol chyb.'; +$a->strings[' + The friendica developers released update %s recently, + but when I tried to install it, something went terribly wrong. + This needs to be fixed soon and I can\'t do it alone. Please contact a + friendica developer if you can not help me on your own. My database might be invalid.'] = ' + Vývojáři Friendica nedávno vydali aktualizaci %s, + ale když jsem ji zkusil instalovat, něco se strašně pokazilo. + Toto se musí ihned opravit a nemůžu to udělat sám. Prosím, kontaktujte + vývojáře Friendica, pokud to nedokážete sám. Moje databáze může být neplatná.'; +$a->strings['[Friendica Notify] Database update'] = '[Friendica:Oznámení] Aktualizace databáze'; $a->strings[' Error %d occurred during database update: %s @@ -1520,37 +559,92 @@ Při aktualizaci databáze se vyskytla chyba %d: $a->strings['Errors encountered performing database changes: '] = 'Při vykonávání změn v databázi se vyskytly chyby: '; $a->strings['%s: Database update'] = '%s: Aktualizace databáze'; $a->strings['%s: updating %s table.'] = '%s: aktualizuji tabulku %s'; -$a->strings['Filesystem storage failed to create "%s". Check you write permissions.'] = 'Vytvoření „%s“ v úložišti souborového systému neuspělo. Zkontrolujte vaše povolení zapisovat.'; -$a->strings['Filesystem storage failed to save data to "%s". Check your write permissions'] = 'Uložení dat do „%s“ v úložišti souborového systému neuspělo. Zkontrolujte vaše povolení zapisovat'; -$a->strings['Storage base path'] = 'Cesta ke kořenové složce úložiště'; -$a->strings['Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree'] = 'Složka, do které jsou ukládány nahrané soubory. Pro maximální bezpečnost to musí být cesta mimo složku webového serveru'; -$a->strings['Enter a valid existing folder'] = 'Zadejte platnou existující složku'; -$a->strings['Database storage failed to update %s'] = 'Aktualizace %s v úložišti databáze neuspěla'; -$a->strings['Database storage failed to insert data'] = 'Vklad dat do databázového úložiště neuspěl'; -$a->strings['l F d, Y \@ g:i A'] = 'l d. F, Y v g:i A'; +$a->strings['Unauthorized'] = 'Neautorizováno'; +$a->strings['Internal Server Error'] = 'Vnitřní chyba serveru'; +$a->strings['Legacy module file not found: %s'] = 'Soubor legacy modulu nenalezen: %s'; +$a->strings['Everybody'] = 'Všichni'; +$a->strings['edit'] = 'upravit'; +$a->strings['add'] = 'přidat'; +$a->strings['Approve'] = 'Schválit'; +$a->strings['Organisation'] = 'Organizace'; +$a->strings['Disallowed profile URL.'] = 'Nepovolené URL profilu.'; +$a->strings['Blocked domain'] = 'Zablokovaná doména'; +$a->strings['Connect URL missing.'] = 'Chybí URL adresa pro připojení.'; +$a->strings['The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.'] = 'Kontakt nemohl být přidán. Prosím zkontrolujte relevantní přihlašovací údaje sítě na stránce Nastavení -> Sociální sítě.'; +$a->strings['The profile address specified does not provide adequate information.'] = 'Uvedená adresa profilu neposkytuje dostatečné informace.'; +$a->strings['No compatible communication protocols or feeds were discovered.'] = 'Nenalezen žádný kompatibilní komunikační protokol nebo kanál.'; +$a->strings['An author or name was not found.'] = 'Autor nebo jméno nenalezeno'; +$a->strings['No browser URL could be matched to this address.'] = 'Této adrese neodpovídá žádné URL prohlížeče.'; +$a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem.'; +$a->strings['Use mailto: in front of address to force email check.'] = 'Použite mailo: před adresou k vynucení emailové kontroly.'; +$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána.'; +$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Omezený profil. Tato osoba nebude schopna od vás přijímat přímá/osobní oznámení.'; +$a->strings['Unable to retrieve contact information.'] = 'Nepodařilo se získat kontaktní informace.'; $a->strings['Starts:'] = 'Začíná:'; $a->strings['Finishes:'] = 'Končí:'; $a->strings['all-day'] = 'celodenní'; $a->strings['Sept'] = 'září'; +$a->strings['today'] = 'dnes'; +$a->strings['month'] = 'měsíc'; +$a->strings['week'] = 'týden'; +$a->strings['day'] = 'den'; $a->strings['No events to display'] = 'Žádné události k zobrazení'; +$a->strings['Access to this profile has been restricted.'] = 'Přístup na tento profil byl omezen.'; $a->strings['l, F j'] = 'l, j. F'; $a->strings['Edit event'] = 'Upravit událost'; $a->strings['Duplicate event'] = 'Duplikovat událost'; $a->strings['Delete event'] = 'Smazat událost'; -$a->strings['link to source'] = 'odkaz na zdroj'; +$a->strings['l F d, Y \@ g:i A'] = 'l d. F, Y v g:i A'; $a->strings['D g:i A'] = 'D g:i A'; $a->strings['g:i A'] = 'g:i A'; $a->strings['Show map'] = 'Zobrazit mapu'; $a->strings['Hide map'] = 'Skrýt mapu'; $a->strings['%s\'s birthday'] = '%s má narozeniny'; $a->strings['Happy Birthday %s'] = 'Veselé narozeniny, %s'; -$a->strings['Item filed'] = 'Položka vyplněna'; +$a->strings['activity'] = 'aktivita'; +$a->strings['post'] = 'příspěvek'; +$a->strings['Content warning: %s'] = 'Varování o obsahu: %s'; +$a->strings['bytes'] = 'bytů'; +$a->strings['View on separate page'] = 'Zobrazit na separátní stránce'; +$a->strings['[no subject]'] = '[bez předmětu]'; +$a->strings['Wall Photos'] = 'Fotky na zdi'; +$a->strings['Edit profile'] = 'Upravit profil'; +$a->strings['Change profile photo'] = 'Změnit profilovou fotku'; +$a->strings['Homepage:'] = 'Domovská stránka:'; +$a->strings['About:'] = 'O mně:'; +$a->strings['Atom feed'] = 'Kanál Atom'; +$a->strings['F d'] = 'd. F'; +$a->strings['[today]'] = '[dnes]'; +$a->strings['Birthday Reminders'] = 'Připomínka narozenin'; +$a->strings['Birthdays this week:'] = 'Narozeniny tento týden:'; +$a->strings['g A l F d'] = 'g A, l d. F'; +$a->strings['[No description]'] = '[Žádný popis]'; +$a->strings['Event Reminders'] = 'Připomenutí událostí'; +$a->strings['Upcoming events the next 7 days:'] = 'Nadcházející události v příštích 7 dnech:'; +$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s vítá uživatele %2$s'; +$a->strings['Hometown:'] = 'Rodné město:'; +$a->strings['Sexual Preference:'] = 'Sexuální orientace:'; +$a->strings['Political Views:'] = 'Politické přesvědčení:'; +$a->strings['Religious Views:'] = 'Náboženské přesvědčení:'; +$a->strings['Likes:'] = 'Líbí se:'; +$a->strings['Dislikes:'] = 'Nelibí se:'; +$a->strings['Title/Description:'] = 'Název / Popis:'; +$a->strings['Summary'] = 'Shrnutí'; +$a->strings['Musical interests'] = 'Hudební vkus'; +$a->strings['Books, literature'] = 'Knihy, literatura'; +$a->strings['Television'] = 'Televize'; +$a->strings['Film/dance/culture/entertainment'] = 'Film/tanec/kultura/zábava'; +$a->strings['Hobbies/Interests'] = 'Koníčky/zájmy'; +$a->strings['Love/romance'] = 'Láska/romantika'; +$a->strings['Work/employment'] = 'Práce/zaměstnání'; +$a->strings['School/education'] = 'Škola/vzdělání'; +$a->strings['Contact information and Social Networks'] = 'Kontaktní informace a sociální sítě'; +$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'ZÁVAŽNÁ CHYBA: Generování bezpečnostních klíčů se nezdařilo.'; $a->strings['Login failed'] = 'Přihlášení selhalo'; $a->strings['Not enough information to authenticate'] = 'Není dost informací pro autentikaci'; $a->strings['Password can\'t be empty'] = 'Heslo nemůže být prázdné'; $a->strings['Empty passwords are not allowed.'] = 'Prázdná hesla nejsou povolena.'; $a->strings['The new password has been exposed in a public data dump, please choose another.'] = 'Nové heslo bylo zveřejněno ve veřejném výpisu dat, prosím zvolte si jiné.'; -$a->strings['The password can\'t contain accentuated letters, white spaces or colons (:)'] = 'Heslo nesmí obsahovat mezery, znaky s diakritikou a dvojtečky (:)'; $a->strings['Passwords do not match. Password unchanged.'] = 'Hesla se neshodují. Heslo nebylo změněno.'; $a->strings['An invitation is required.'] = 'Je vyžadována pozvánka.'; $a->strings['Invitation could not be verified.'] = 'Pozvánka nemohla být ověřena.'; @@ -1578,11 +672,12 @@ $a->strings['The nickname was blocked from registration by the nodes admin.'] = $a->strings['Cannot use that email.'] = 'Tento e-mail nelze použít.'; $a->strings['Your nickname can only contain a-z, 0-9 and _.'] = 'Uživatelské jméno může obsahovat pouze znaky a-z, 0-9 a _.'; $a->strings['Nickname is already registered. Please choose another.'] = 'Přezdívka je již registrována. Prosím vyberte jinou.'; -$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'ZÁVAŽNÁ CHYBA: Generování bezpečnostních klíčů se nezdařilo.'; $a->strings['An error occurred during registration. Please try again.'] = 'Došlo k chybě při registraci. Zkuste to prosím znovu.'; $a->strings['An error occurred creating your default profile. Please try again.'] = 'Při vytváření vašeho výchozího profilu došlo k chybě. Zkuste to prosím znovu.'; $a->strings['An error occurred creating your self contact. Please try again.'] = 'Při vytváření vašeho kontaktu na sebe došlo k chybě. Zkuste to prosím znovu.'; -$a->strings['An error occurred creating your default contact group. Please try again.'] = 'Při vytváření vaší výchozí skupiny kontaktů došlo k chybě. Zkuste to prosím znovu.'; +$a->strings['Friends'] = 'Přátelé'; +$a->strings['Profile Photos'] = 'Profilové fotky'; +$a->strings['Registration details for %s'] = 'Registrační údaje pro uživatele %s'; $a->strings[' Dear %1$s, Thank you for registering at %2$s. Your account is pending for approval by the administrator. @@ -1603,206 +698,20 @@ $a->strings[' Heslo: %5$s '; $a->strings['Registration at %s'] = 'Registrace na %s'; -$a->strings[' - Dear %1$s, - Thank you for registering at %2$s. Your account has been created. - '] = ' - Vážený/á %1$s, - Děkujeme, že jste se registroval/a na %2$s. Váš účet byl vytvořen. - '; -$a->strings[' - The login details are as follows: - - Site Location: %3$s - Login Name: %1$s - Password: %5$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %3$s/removeme - - Thank you and welcome to %2$s.'] = ' - Zde jsou vaše přihlašovací detaily: - - Adresa stránky: %3$s - Přihlašovací jméno: %1$s - Heslo: %5$s - - Své heslo si po přihlášení můžete změnit na stránce „Nastavení“ vašeho - účtu. - - Prosím, prohlédněte si na chvilku ostatní nastavení účtu na této stránce. - - Možná byste si také přál/a přidat pár základních informací na svůj výchozí - profil (na stránce „Profily“) aby vás další lidé mohli snadno najít. - Doporučujeme nastavit si vaše celé jméno, přidat profilovou fotku, - přidat pár „klíčových slov“ k profilu (velmi užitečné při získávání nových - přátel) - a možná v jaké zemi žijete; pokud nechcete být konkrétnější. - - Zcela respektujeme vaše právo na soukromí a žádnou z těchto položek - není potřeba vyplňovat. Pokud jste zde nový/á a nikoho zde neznáte, mohou vám - pomoci si získat nové a zajímavé přátele. - Pokud byste si někdy přál/a smazat účet, můžete tak učinit na stránce - %3$s/removeme. - - Děkujeme vám a vítáme vás na %2$s.'; -$a->strings['Registration details for %s'] = 'Registrační údaje pro uživatele %s'; -$a->strings['Drop Contact'] = 'Odstranit kontakt'; -$a->strings['Organisation'] = 'Organizace'; -$a->strings['News'] = 'Zprávy'; -$a->strings['Forum'] = 'Fórum'; -$a->strings['Connect URL missing.'] = 'Chybí URL adresa pro připojení.'; -$a->strings['The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.'] = 'Kontakt nemohl být přidán. Prosím zkontrolujte relevantní přihlašovací údaje sítě na stránce Nastavení -> Sociální sítě.'; -$a->strings['This site is not configured to allow communications with other networks.'] = 'Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi.'; -$a->strings['No compatible communication protocols or feeds were discovered.'] = 'Nenalezen žádný kompatibilní komunikační protokol nebo kanál.'; -$a->strings['The profile address specified does not provide adequate information.'] = 'Uvedená adresa profilu neposkytuje dostatečné informace.'; -$a->strings['An author or name was not found.'] = 'Autor nebo jméno nenalezeno'; -$a->strings['No browser URL could be matched to this address.'] = 'Této adrese neodpovídá žádné URL prohlížeče.'; -$a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem.'; -$a->strings['Use mailto: in front of address to force email check.'] = 'Použite mailo: před adresou k vynucení emailové kontroly.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána.'; -$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Omezený profil. Tato osoba nebude schopna od vás přijímat přímá/osobní oznámení.'; -$a->strings['Unable to retrieve contact information.'] = 'Nepodařilo se získat kontaktní informace.'; -$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.'] = 'Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění může ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěl/a, vytvořte, prosím, další skupinu s jiným názvem.'; -$a->strings['Default privacy group for new contacts'] = 'Výchozí soukromá skupina pro nové kontakty.'; -$a->strings['Everybody'] = 'Všichni'; -$a->strings['edit'] = 'upravit'; -$a->strings['Groups'] = 'Skupiny'; -$a->strings['Edit group'] = 'Upravit skupinu'; -$a->strings['Contacts not in any group'] = 'Kontakty, které nejsou v žádné skupině'; -$a->strings['Create a new group'] = 'Vytvořit novou skupinu'; -$a->strings['Group Name: '] = 'Název skupiny: '; -$a->strings['Edit groups'] = 'Upravit skupiny'; -$a->strings['[no subject]'] = '[bez předmětu]'; -$a->strings['Edit profile'] = 'Upravit profil'; -$a->strings['Manage/edit profiles'] = 'Spravovat/upravit profily'; -$a->strings['Status:'] = 'Stav:'; -$a->strings['Homepage:'] = 'Domovská stránka:'; -$a->strings['XMPP:'] = 'XMPP:'; -$a->strings['Unfollow'] = 'Přestat sledovat'; -$a->strings['Atom feed'] = 'Kanál Atom'; -$a->strings['g A l F d'] = 'g A, l d. F'; -$a->strings['F d'] = 'd. F'; -$a->strings['[today]'] = '[dnes]'; -$a->strings['Birthday Reminders'] = 'Připomínka narozenin'; -$a->strings['Birthdays this week:'] = 'Narozeniny tento týden:'; -$a->strings['[No description]'] = '[Žádný popis]'; -$a->strings['Event Reminders'] = 'Připomenutí událostí'; -$a->strings['Upcoming events the next 7 days:'] = 'Nadcházející události v příštích 7 dnech:'; -$a->strings['Member since:'] = 'Členem od:'; -$a->strings['j F, Y'] = 'j F, Y'; -$a->strings['j F'] = 'j F'; -$a->strings['Age:'] = 'Věk:'; -$a->strings['for %1$d %2$s'] = '%1$d %2$s'; -$a->strings['Religion:'] = 'Náboženství:'; -$a->strings['Hobbies/Interests:'] = 'Koníčky/zájmy:'; -$a->strings['Contact information and Social Networks:'] = 'Kontaktní informace a sociální sítě:'; -$a->strings['Musical interests:'] = 'Hudební vkus:'; -$a->strings['Books, literature:'] = 'Knihy, literatura:'; -$a->strings['Television:'] = 'Televize:'; -$a->strings['Film/dance/culture/entertainment:'] = 'Film/tanec/kultura/zábava:'; -$a->strings['Love/Romance:'] = 'Láska/romantika'; -$a->strings['Work/employment:'] = 'Práce/zaměstnání:'; -$a->strings['School/education:'] = 'Škola/vzdělávání:'; -$a->strings['Forums:'] = 'Fóra'; -$a->strings['Profile Details'] = 'Detaily profilu'; -$a->strings['Only You Can See This'] = 'Toto můžete vidět jen vy'; -$a->strings['Tips for New Members'] = 'Tipy pro nové členy'; -$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s vítá uživatele %2$s'; -$a->strings['activity'] = 'aktivita'; -$a->strings['comment'] = [ - 0 => 'komentář', - 1 => 'komentáře', - 2 => 'komentáře', - 3 => 'komentářů', -]; -$a->strings['post'] = 'příspěvek'; -$a->strings['Content warning: %s'] = 'Varování o obsahu: %s'; -$a->strings['bytes'] = 'bytů'; -$a->strings['View on separate page'] = 'Zobrazit na separátní stránce'; -$a->strings['view on separate page'] = 'zobrazit na separátní stránce'; -$a->strings['%s\'s timeline'] = 'Časová osa uživatele %s'; -$a->strings['%s\'s posts'] = 'Příspěvky uživatele %s'; -$a->strings['%s\'s comments'] = 'Komentáře uživatele %s'; -$a->strings['%s is now following %s.'] = '%s nyní sleduje %s.'; -$a->strings['following'] = 'sleduje'; -$a->strings['%s stopped following %s.'] = '%s přestal/a sledovat uživatele %s.'; -$a->strings['stopped following'] = 'přestal/a sledovat'; -$a->strings['Sharing notification from Diaspora network'] = 'Oznámení o sdílení ze sítě Diaspora'; -$a->strings['Attachments:'] = 'Přílohy:'; -$a->strings['(no subject)'] = '(bez předmětu)'; -$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.'] = 'Ve chvíli registrace, a pro poskytování komunikace mezi uživatelským účtem a jeho kontakty, musí uživatel poskytnout zobrazované jméno (pseudonym), uživatelské jméno (přezdívku) a funkční e-mailovou adresu. Jména budou dostupná na profilové stránce účtu pro kteréhokoliv návštěvníka, i kdyby ostatní detaily nebyly zobrazeny. E-mailová adresa bude použita pouze pro zasílání oznámení o interakcích, nebude ale viditelně zobrazována. Zápis účtu do adresáře účtů serveru nebo globálního adresáře účtů je nepovinný a může být ovládán v nastavení uživatele, není potřebný pro komunikaci.'; -$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.'] = 'Tato data jsou vyžadována ke komunikaci a jsou předávána serverům komunikačních partnerů a jsou tam ukládána. Uživatelé mohou zadávat dodatečná soukromá data, která mohou být odeslána na účty komunikačních partnerů.'; -$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.'] = 'Přihlášený uživatel si kdykoliv může exportovat svoje data účtu z nastavení účtu. Pokud by chtěl uživatel svůj účet smazat, může tak učinit na stránce %1$s/removeme. Smazání účtu bude trvalé. Na serverech komunikačních partnerů bude zároveň vyžádáno smazání dat.'; -$a->strings['Privacy Statement'] = 'Prohlášení o soukromí'; -$a->strings['No installed applications.'] = 'Žádné nainstalované aplikace.'; -$a->strings['Applications'] = 'Aplikace'; -$a->strings['Credits'] = 'Poděkování'; -$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!'] = 'Friendica je komunitní projekt, který by nebyl možný bez pomoci mnoha lidí. Zde je seznam těch, kteří přispěli ke kódu nebo k překladu Friendica. Děkujeme všem!'; $a->strings['Addon not found.'] = 'Doplněk nenalezen.'; $a->strings['Addon %s disabled.'] = 'Doplněk %s zakázán.'; $a->strings['Addon %s enabled.'] = 'Doplněk %s povolen.'; $a->strings['Disable'] = 'Zakázat'; $a->strings['Enable'] = 'Povolit'; $a->strings['Administration'] = 'Administrace'; +$a->strings['Addons'] = 'Doplňky'; $a->strings['Toggle'] = 'Přepnout'; $a->strings['Author: '] = 'Autor: '; $a->strings['Maintainer: '] = 'Správce: '; $a->strings['Addon %s failed to install.'] = 'Instalace doplňku %s selhala.'; +$a->strings['Save Settings'] = 'Uložit nastavení'; $a->strings['Reload active addons'] = 'Znovu načíst aktivní doplňky'; $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'] = 'Aktuálně nejsou na Vašem serveru k dispozici žádné doplňky. Oficiální repozitář doplňků najdete na %1$s a další zajímavé doplňky můžete najít v otevřeném registru doplňků na %2$s'; -$a->strings['The contact has been blocked from the node'] = 'Kontakt byl na serveru zablokován'; -$a->strings['Could not find any contact entry for this URL (%s)'] = 'Nelze nalézt žádnou položku v kontaktech pro tuto URL adresu (%s)'; -$a->strings['%s contact unblocked'] = [ - 0 => '%s kontakt odblokován', - 1 => '%s kontakty odblokovány', - 2 => '%s kontaktu odblokováno', - 3 => '%s kontaktů odblokováno', -]; -$a->strings['Remote Contact Blocklist'] = 'Blokované vzdálené kontakty'; -$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'Tato stránka vám umožňuje zabránit jakýmkoliv zprávám ze vzdáleného kontaktu, aby se k vašemu serveru dostaly.'; -$a->strings['Block Remote Contact'] = 'Zablokovat vzdálený kontakt'; -$a->strings['select all'] = 'Vybrat vše'; -$a->strings['select none'] = 'nevybrat žádný'; -$a->strings['Unblock'] = 'Odblokovat'; -$a->strings['No remote contact is blocked from this node.'] = 'Žádný vzdálený kontakt není na tomto serveru zablokován.'; -$a->strings['Blocked Remote Contacts'] = 'Zablokované vzdálené kontakty'; -$a->strings['Block New Remote Contact'] = 'Zablokovat nový vzdálený kontakt'; -$a->strings['Photo'] = 'Fotka'; -$a->strings['Reason'] = 'Důvod'; -$a->strings['%s total blocked contact'] = [ - 0 => 'Celkem %s zablokovaný kontakt', - 1 => 'Celkem %s zablokované kontakty', - 2 => 'Celkem %s zablokovaného kontaktu', - 3 => 'Celkem %s zablokovaných kontaktů', -]; -$a->strings['URL of the remote contact to block.'] = 'Adresa URL vzdáleného kontaktu k zablokování.'; -$a->strings['Block Reason'] = 'Důvod blokace'; -$a->strings['Site blocklist updated.'] = 'Blokovací seznam stránky aktualizován'; -$a->strings['Reason for the block'] = 'Důvody pro zablokování'; -$a->strings['Check to delete this entry from the blocklist'] = 'Zaškrtnutím odstraníte tuto položku z blokovacího seznamu'; -$a->strings['Add new entry to block list'] = 'Přidat na blokovací seznam novou položku'; -$a->strings['Block reason'] = 'Důvod zablokování'; -$a->strings['Add Entry'] = 'Přidat položku'; -$a->strings['Save changes to the blocklist'] = 'Uložit změny do blokovacího seznamu'; -$a->strings['Current Entries in the Blocklist'] = 'Aktuální položky v bokovacím seznamu'; -$a->strings['Delete entry from blocklist'] = 'Odstranit položku z blokovacího seznamu'; -$a->strings['Delete entry from blocklist?'] = 'Odstranit položku z blokovacího seznamu?'; $a->strings['Update has been marked successful'] = 'Aktualizace byla označena jako úspěšná.'; $a->strings['Database structure update %s was successfully applied.'] = 'Aktualizace struktury databáze %s byla úspěšně aplikována.'; $a->strings['Executing of database structure update %s failed with error: %s'] = 'Provádění aktualizace databáze %s selhalo s chybou: %s'; @@ -1818,21 +727,11 @@ $a->strings['Mark success (if update was manually applied)'] = 'Označit za úsp $a->strings['Attempt to execute this update step automatically'] = 'Pokusit se provést tuto aktualizaci automaticky.'; $a->strings['Lock feature %s'] = 'Uzamknout vlastnost %s'; $a->strings['Manage Additional Features'] = 'Spravovat další funkce'; +$a->strings['Other'] = 'Jiné'; $a->strings['unknown'] = 'neznámé'; $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.'] = 'Tato stránka vám nabízí pár čísel pro známou část federované sociální sítě, které je váš server Friendica součástí. Tato čísla nejsou kompletní, ale pouze odrážejí část sítě, které si je Váš server vědom.'; -$a->strings['The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here.'] = 'Funkce Adresář automaticky objevených kontaktů není zapnuta, zlepší zde zobrazená data.'; $a->strings['Federation Statistics'] = 'Statistiky Federation'; -$a->strings['Currently this node is aware of %d nodes with %d registered users from the following platforms:'] = 'Aktuálně si je tento server vědom %d serverů s %d registrovanými uživateli z těchto platforem:'; -$a->strings['Item marked for deletion.'] = 'Položka označená ke smazání'; -$a->strings['Delete Item'] = 'Smazat položku'; -$a->strings['Delete this Item'] = 'Smazat tuto položku'; -$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.'] = 'Na této stránce můžete smazat položku z vašeho serveru. Pokud je položkou příspěvek nejvyššího stupně, bude smazáno celé vlákno.'; -$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.'] = 'Budete muset znát číslo GUID položky. Můžete jej najít např. v adrese URL. Poslední část adresy http://priklad.cz/display/123456 je GUID, v tomto případě 123456'; -$a->strings['GUID'] = 'GUID'; -$a->strings['The GUID of the item you want to delete.'] = 'Číslo GUID položky, kterou chcete smazat'; -$a->strings['Item Guid'] = 'Číslo GUID položky'; $a->strings['The logfile \'%s\' is not writable. No logging possible'] = 'Záznamový soubor „%s“ není zapisovatelný. Zaznamenávání není možno.'; -$a->strings['Log settings updated.'] = 'Nastavení záznamů aktualizována.'; $a->strings['PHP log currently enabled.'] = 'PHP záznamy jsou aktuálně povolené.'; $a->strings['PHP log currently disabled.'] = 'PHP záznamy jsou aktuálně zakázané.'; $a->strings['Logs'] = 'Záznamy'; @@ -1843,131 +742,9 @@ $a->strings['Must be writable by web server. Relative to your Friendica top-leve $a->strings['Log level'] = 'Úroveň auditu'; $a->strings['PHP logging'] = 'Záznamování PHP'; $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.'] = 'Pro dočasné umožnění zaznamenávání PHP chyb a varování, můžete přidat do souboru index.php na vaší instalaci následující: Název souboru nastavený v řádku „error_log“ je relativní ke kořenovému adresáři Friendica a webový server musí mít povolení na něj zapisovat. Možnost „1“ pro „log_errors“ a „display_errors“ tyto funkce povoluje, nastavením hodnoty na „0“ je zakážete. '; -$a->strings['Error trying to open %1$s log file.\r\n
    Check to see if file %1$s exist and is readable.'] = 'Chyba při otevírání záznamu %1$s.\r\n
    Zkontrolujte, jestli soubor %1$s existuje a může se číst.'; -$a->strings['Couldn\'t open %1$s log file.\r\n
    Check to see if file %1$s is readable.'] = 'Nelze otevřít záznam %1$s.\r\n
    Zkontrolujte, jestli se soubor %1$s může číst.'; $a->strings['View Logs'] = 'Zobrazit záznamy'; -$a->strings['Theme settings updated.'] = 'Nastavení motivu bylo aktualizováno.'; -$a->strings['Theme %s disabled.'] = 'Motiv %s zakázán.'; -$a->strings['Theme %s successfully enabled.'] = 'Motiv %s úspěšně povolen.'; -$a->strings['Theme %s failed to install.'] = 'Instalace motivu %s selhala.'; -$a->strings['Screenshot'] = 'Snímek obrazovky'; -$a->strings['Themes'] = 'Motivy'; -$a->strings['Unknown theme.'] = 'Neznámý motiv.'; -$a->strings['Reload active themes'] = 'Znovu načíst aktivní motivy'; -$a->strings['No themes found on the system. They should be placed in %1$s'] = 'V systému nebyly nalezeny žádné motivy. Měly by být uloženy v %1$s'; -$a->strings['[Experimental]'] = '[Experimentální]'; -$a->strings['[Unsupported]'] = '[Nepodporováno]'; -$a->strings['The Terms of Service settings have been updated.'] = 'Nastavení Podmínek používání byla aktualizována.'; -$a->strings['Display Terms of Service'] = 'Zobrazit Podmínky používání'; -$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.'] = 'Povolí stránku Podmínky používání. Pokud je toto povoleno, bude na formulář pro registrací a stránku s obecnými informacemi přidán odkaz k podmínkám.'; -$a->strings['Display Privacy Statement'] = 'Zobrazit Prohlášení o soukromí'; -$a->strings['Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR.'] = 'Ukázat některé informace ohledně potřebných informací k provozování serveru podle například Obecného nařízení o ochraně osobních údajů EU (GDPR)'; -$a->strings['Privacy Statement Preview'] = 'Náhled Prohlášení o soukromí'; -$a->strings['The Terms of Service'] = 'Podmínky používání'; -$a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = 'Zde zadejte podmínky používání vašeho serveru. Můžete používat BBCode. Záhlaví sekcí by měly být označeny [h2] a níže.'; -$a->strings[' - Dear %1$s, - the administrator of %2$s has set up an account for you.'] = ' - Vážený/á %1$s, - administrátor %2$s pro Vás vytvořil uživatelský účet.'; -$a->strings[' - The login details are as follows: - - Site Location: %1$s - Login Name: %2$s - Password: %3$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %1$s/removeme - - Thank you and welcome to %4$s.'] = ' - Zde jsou vaše přihlašovací detaily: - - Adresa stránky: %1$s - Přihlašovací jméno: %2$s - Heslo: %3$s - - Své heslo si po přihlášení můžete změnit na stránce „Nastavení“ vašeho - účtu. - - Prosím, prohlédněte si na chvilku ostatní nastavení účtu na této stránce. - - Možná byste si také přál/a přidat pár základních informací na svůj výchozí - profil (na stránce „Profily“) aby vás další lidé mohli snadno najít. - Doporučujeme nastavit si Vaše celé jméno, přidat profilovou fotku, - přidat pár „klíčových slov“ k profilu (velmi užitečné při získávání nových - přátel) - a možná v jaké zemi žijete; pokud nechcete být konkrétnější. - - Zcela respektujeme vaše právo na soukromí a žádnou z těchto položek - není potřeba vyplňovat. Pokud jste zde nový/á a nikoho zde neznáte, mohou vám - pomoci si získat nové a zajímavé přátele. - Pokud byste si někdy přál/a smazat účet, můžete tak učinit na stránce - %1$s/removeme. - - Děkujeme vám a vítáme vás na %4$s.'; -$a->strings['%s user blocked'] = [ - 0 => '%s uživatel blokován', - 1 => '%s uživatelé blokování', - 2 => '%s uživatele blokováno', - 3 => '%s uživatelů blokováno', -]; -$a->strings['%s user unblocked'] = [ - 0 => '%s uživatel odblokován', - 1 => '%s uživatelé odblokováni', - 2 => '%s uživatele odblokováno', - 3 => '%s uživatelů odblokováno', -]; -$a->strings['You can\'t remove yourself'] = 'Nemůžete odstranit sebe sama'; -$a->strings['%s user deleted'] = [ - 0 => '%s uživatel smazán', - 1 => '%s uživatelů smazáno', - 2 => '%s uživatele smazáno', - 3 => '%s uživatelů smazáno', -]; -$a->strings['User "%s" deleted'] = 'Uživatel „%s“ smazán'; -$a->strings['User "%s" blocked'] = 'Uživatel „%s“ zablokován'; -$a->strings['User "%s" unblocked'] = 'Uživatel „%s“ odblokován'; -$a->strings['Private Forum'] = 'Soukromé fórum'; -$a->strings['Relay'] = 'Přeposílací server'; -$a->strings['Register date'] = 'Datum registrace'; -$a->strings['Last login'] = 'Datum posledního přihlášení'; -$a->strings['Last item'] = 'Poslední položka'; -$a->strings['Type'] = 'Typ'; -$a->strings['Users'] = 'Uživatelé'; -$a->strings['Add User'] = 'Přidat uživatele'; -$a->strings['User registrations waiting for confirm'] = 'Registrace uživatelů čekající na potvrzení'; -$a->strings['User waiting for permanent deletion'] = 'Uživatel čekající na trvalé smazání'; -$a->strings['Request date'] = 'Datum požadavku'; -$a->strings['No registrations.'] = 'Žádné registrace.'; -$a->strings['Note from the user'] = 'Poznámka od uživatele'; -$a->strings['Deny'] = 'Odmítnout'; -$a->strings['User blocked'] = 'Uživatel zablokován'; -$a->strings['Site admin'] = 'Administrátor webu'; -$a->strings['Account expired'] = 'Účtu vypršela platnost'; -$a->strings['New User'] = 'Nový uživatel'; -$a->strings['Permanent deletion'] = 'Trvalé smazání'; -$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Vybraní uživatelé budou smazáni!\n\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\n\nOpravdu chcete pokračovat?'; -$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Uživatel {0} bude smazán!\n\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\n\n Opravdu chcete pokračovat?'; -$a->strings['Name of the new user.'] = 'Jméno nového uživatele.'; -$a->strings['Nickname'] = 'Přezdívka'; -$a->strings['Nickname of the new user.'] = 'Přezdívka nového uživatele.'; -$a->strings['Email address of the new user.'] = 'Emailová adresa nového uživatele.'; +$a->strings['Show all'] = 'Zobrazit vše'; +$a->strings['Event details'] = 'Detaily události'; $a->strings['Inspect Deferred Worker Queue'] = 'Prozkoumat frontu odložených pracovníků'; $a->strings['This page lists the deferred worker jobs. This are jobs that couldn\'t be executed at the first time.'] = 'Na této stránce jsou vypsány odložené úlohy pracovníků. To jsou úlohy, které nemohly být napoprvé provedeny.'; $a->strings['Inspect Worker Queue'] = 'Prozkoumat frontu pro pracovníka'; @@ -1976,43 +753,29 @@ $a->strings['ID'] = 'Identifikátor'; $a->strings['Job Parameters'] = 'Parametry úlohy'; $a->strings['Created'] = 'Vytvořeno'; $a->strings['Priority'] = 'Priorita'; -$a->strings['Can not parse base url. Must have at least ://'] = 'Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň ://'; -$a->strings['Invalid storage backend setting value.'] = 'Neplatná hodnota nastavení backendu úložiště.'; -$a->strings['Site settings updated.'] = 'Nastavení webu aktualizováno.'; -$a->strings['No community page for local users'] = 'Žádná komunitní stránka pro místní uživatele'; +$a->strings['No special theme for mobile devices'] = 'Žádný speciální motiv pro mobilní zařízení'; +$a->strings['%s - (Experimental)'] = '%s - (Experimentální)'; $a->strings['No community page'] = 'Žádná komunitní stránka'; $a->strings['Public postings from users of this site'] = 'Veřejné příspěvky od místních uživatelů'; $a->strings['Public postings from the federated network'] = 'Veřejné příspěvky z federované sítě'; $a->strings['Public postings from local users and the federated network'] = 'Veřejné příspěvky od místních uživatelů a z federované sítě'; -$a->strings['Disabled'] = 'Zakázáno'; -$a->strings['Users, Global Contacts'] = 'Uživatelé, globální kontakty'; -$a->strings['Users, Global Contacts/fallback'] = 'Uživatelé, globální kontakty/fallback'; -$a->strings['One month'] = 'Jeden měsíc'; -$a->strings['Three months'] = 'Tři měsíce'; -$a->strings['Half a year'] = 'Půl roku'; -$a->strings['One year'] = 'Jeden rok'; $a->strings['Multi user instance'] = 'Víceuživatelská instance'; $a->strings['Closed'] = 'Uzavřeno'; $a->strings['Requires approval'] = 'Vyžaduje schválení'; $a->strings['Open'] = 'Otevřeno'; -$a->strings['No SSL policy, links will track page SSL state'] = 'Žádná SSL politika, odkazy budou následovat SSL stav stránky'; -$a->strings['Force all links to use SSL'] = 'Vyžadovat u všech odkazů použití SSL'; -$a->strings['Self-signed certificate, use SSL for local links only (discouraged)'] = 'Certifikát podepsaný sám sebou, použít SSL pouze pro místní odkazy (nedoporučeno)'; $a->strings['Don\'t check'] = 'Nekontrolovat'; $a->strings['check the stable version'] = 'kontrolovat stabilní verzi'; $a->strings['check the development version'] = 'kontrolovat vývojovou verzi'; -$a->strings['Database (legacy)'] = 'Databáze (legacy)'; $a->strings['Site'] = 'Web'; $a->strings['Republish users to directory'] = 'Znovu publikovat uživatele do adresáře'; $a->strings['Registration'] = 'Registrace'; $a->strings['File upload'] = 'Nahrání souborů'; $a->strings['Policies'] = 'Politika'; +$a->strings['Advanced'] = 'Pokročilé'; $a->strings['Auto Discovered Contact Directory'] = 'Adresář automaticky objevených kontaktů'; $a->strings['Performance'] = 'Výkon'; $a->strings['Worker'] = 'Pracovník (worker)'; $a->strings['Message Relay'] = 'Přeposílání zpráv'; -$a->strings['Relocate Instance'] = 'Přemístit instanci'; -$a->strings['Warning! Advanced function. Could make this server unreachable.'] = 'Varování! Pokročilá funkce. Tímto můžete znepřístupnit server.'; $a->strings['Site name'] = 'Název webu'; $a->strings['Sender Email'] = 'E-mail odesílatele'; $a->strings['The email address your server shall use to send notification emails from.'] = 'E-mailová adresa, kterou bude Váš server používat pro posílání e-mailů s oznámeními.'; @@ -2025,21 +788,13 @@ $a->strings['Additional Info'] = 'Dodatečné informace'; $a->strings['For public servers: you can add additional information here that will be listed at %s/servers.'] = 'Pro veřejné servery: zde můžete přidat dodatečné informace, které budou vypsané na stránce %s/servers.'; $a->strings['System language'] = 'Systémový jazyk'; $a->strings['System theme'] = 'Systémový motiv'; -$a->strings['Default system theme - may be over-ridden by user profiles - Change default theme settings'] = 'Výchozí systémový motiv - může být změněn v uživatelských profilech - Změnit výchozí nastavení motivu'; $a->strings['Mobile system theme'] = 'Mobilní systémový motiv'; $a->strings['Theme for mobile devices'] = 'Motiv pro mobilní zařízení'; -$a->strings['SSL link policy'] = 'Politika SSL odkazů'; -$a->strings['Determines whether generated links should be forced to use SSL'] = 'Určuje, zda-li budou generované odkazy používat SSL'; $a->strings['Force SSL'] = 'Vynutit SSL'; $a->strings['Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'] = 'Vynutit SSL pro všechny ne-SSL žádosti - Upozornění: na některých systémech může dojít k nekonečnému zacyklení.'; -$a->strings['Hide help entry from navigation menu'] = 'Skrýt nápovědu z navigačního menu'; -$a->strings['Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly.'] = 'Skryje z navigačního menu položku pro stránky nápovědy. Nápovědu můžete stále zobrazit přímo zadáním /help.'; $a->strings['Single user instance'] = 'Jednouživatelská instance'; $a->strings['Make this instance multi-user or single-user for the named user'] = 'Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele'; -$a->strings['File storage backend'] = 'Backend souborového úložiště'; -$a->strings['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.'] = 'Backend použitý pro ukládání nahraných dat. Pokud změníte backend úložiště, můžete manuálně přesunout existující soubory. Pokud tak neučiníte, budou soubory nahrané před změnou stále dostupné ve starém backendu. Pro více informací o možnostech a proceduře pro přesun si prosím přečtěte dokumentaci nastavení.'; $a->strings['Maximum image size'] = 'Maximální velikost obrázků'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'Maximální velikost nahraných obrázků v bajtech. Výchozí hodnota je 0, což znamená bez omezení.'; $a->strings['Maximum image length'] = 'Maximální velikost obrázků'; $a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Maximální délka delší stránky nahrávaných obrázků v pixelech. Výchozí hodnota je -1, což znamená bez omezení.'; $a->strings['JPEG image quality'] = 'Kvalita obrázků JPEG'; @@ -2059,8 +814,6 @@ $a->strings['Allowed email domains'] = 'Povolené e-mailové domény'; $a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Seznam domén e-mailových adres, kterým je povoleno provádět registraci na tomto webu, oddělených čárkami. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolné domény.'; $a->strings['No OEmbed rich content'] = 'Žádný obohacený obsah oEmbed'; $a->strings['Don\'t show the rich content (e.g. embedded PDF), except from the domains listed below.'] = 'Neukazovat obohacený obsah (např. vložené PDF dokumenty), kromě toho z domén vypsaných níže.'; -$a->strings['Allowed OEmbed domains'] = 'Povolené domény pro oEmbed'; -$a->strings['Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted.'] = 'Seznam domén, u nichž je povoleno zobrazit obsah oEmbed, oddělených čárkami. Zástupné znaky jsou povoleny.'; $a->strings['Block public'] = 'Blokovat veřejný přístup'; $a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Označením zablokujete veřejný přístup ke všem jinak veřejně přístupným osobním stránkám nepřihlášeným uživatelům.'; $a->strings['Force publish'] = 'Vynutit publikaci'; @@ -2069,7 +822,6 @@ $a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Povolení $a->strings['Global directory URL'] = 'Adresa URL globálního adresáře'; $a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'Adresa URL globálního adresáře. Pokud toto není nastaveno, globální adresář bude aplikaci naprosto nedostupný.'; $a->strings['Private posts by default for new users'] = 'Nastavit pro nové uživatele příspěvky jako soukromé'; -$a->strings['Set default post permissions for all new members to the default privacy group rather than public.'] = 'Nastavit výchozí práva pro příspěvky od všech nových členů na výchozí soukromou skupinu místo veřejné.'; $a->strings['Don\'t include post content in email notifications'] = 'Nezahrnovat v e-mailových oznámeních obsah příspěvků'; $a->strings['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.'] = ' V e-mailových oznámeních, které jsou odesílány z tohoto webu, nebudou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. '; $a->strings['Disallow public access to addons listed in the apps menu.'] = 'Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace.'; @@ -2080,24 +832,12 @@ $a->strings['Explicit Content'] = 'Explicitní obsah'; $a->strings['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.'] = 'Touto funkcí oznámíte, že je Váš server používán hlavně pro explicitní obsah, který nemusí být vhodný pro mladistvé. Tato informace bude publikována na stránce informací o serveru a může být využita např. globálním adresářem pro odfiltrování Vašeho serveru ze seznamu serverů pro spojení. Poznámka o tom bude navíc zobrazena na stránce registrace.'; $a->strings['Allow Users to set remote_self'] = 'Umožnit uživatelům nastavit remote_self'; $a->strings['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.'] = 'S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako „remote_self“ v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu.'; -$a->strings['Block multiple registrations'] = 'Blokovat více registrací'; -$a->strings['Disallow users to register additional accounts for use as pages.'] = 'Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky.'; -$a->strings['Disable OpenID'] = 'Zakázat OpenID'; -$a->strings['Disable OpenID support for registration and logins.'] = 'Zakázat podporu OpenID pro registrace a přihlášení.'; -$a->strings['No Fullname check'] = 'Bez kontroly celého jména'; -$a->strings['Allow users to register without a space between the first name and the last name in their full name.'] = 'Dovolit uživatelům se registrovat bez mezery mezi křestním jménem a příjmením ve svém celém jméně.'; $a->strings['Community pages for visitors'] = 'Komunitní stránky pro návštěvníky'; $a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = 'Které komunitní stránky by měly být viditelné pro návštěvníky. Místní uživatelé vždy vidí obě stránky.'; $a->strings['Posts per user on community page'] = 'Počet příspěvků na komunitní stránce'; $a->strings['The maximum number of posts per user on the community page. (Not valid for "Global Community")'] = 'Maximální počet příspěvků na uživatele na komunitní stránce. (neplatí pro „Globální komunitu“)'; -$a->strings['Disable OStatus support'] = 'Zakázat podporu pro OStatus'; -$a->strings['Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed.'] = 'Zakázat zabudouvanou kompatibilitu s OStatus (StatusNet, GNU social apod.). Veškerá komunikace pomocí OStatus je veřejná, proto budou občas zobrazena varování o soukromí.'; -$a->strings['OStatus support can only be enabled if threading is enabled.'] = 'Podpora pro OStatus může být zapnuta pouze, je-li povolen threading.'; $a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Podpora pro Diasporu nemůže být zapnuta, protože Friendica byla nainstalována do podadresáře.'; $a->strings['Enable Diaspora support'] = 'Zapnout podporu pro Diaspora'; -$a->strings['Provide built-in Diaspora network compatibility.'] = 'Poskytnout zabudovanou kompatibilitu sitě Diaspora.'; -$a->strings['Only allow Friendica contacts'] = 'Povolit pouze kontakty z Friendica'; -$a->strings['All contacts must use Friendica protocols. All other built-in communication protocols disabled.'] = 'Všechny kontakty musí používat protokol Friendica. Všchny ostatní zabudované komunikační protokoly budou zablokované.'; $a->strings['Verify SSL'] = 'Ověřit SSL'; $a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = 'Pokud si přejete, můžete vynutit striktní ověřování certifikátů. To znamená že se nebudete moci připojit k žádnému serveru s vlastním SSL certifikátem.'; $a->strings['Proxy user'] = 'Proxy uživatel'; @@ -2106,22 +846,11 @@ $a->strings['Network timeout'] = 'Čas vypršení síťového spojení (timeout) $a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno).'; $a->strings['Maximum Load Average'] = 'Maximální průměrné zatížení'; $a->strings['Maximum system load before delivery and poll processes are deferred - default %d.'] = 'Maximální systémová zátěž, než budou procesy pro doručení a dotazování odloženy - výchozí hodnota %d.'; -$a->strings['Maximum Load Average (Frontend)'] = 'Maximální průměrné zatížení (Frontend)'; -$a->strings['Maximum system load before the frontend quits service - default 50.'] = 'Maximální zatížení systému předtím, než frontend ukončí službu - výchozí hodnota 50'; $a->strings['Minimal Memory'] = 'Minimální paměť'; $a->strings['Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).'] = 'Minimální volná paměť v MB pro pracovníka. Potřebuje přístup do /proc/meminfo - výchozí hodnota 0 (deaktivováno)'; -$a->strings['Maximum table size for optimization'] = 'Maximální velikost tabulky pro optimalizaci'; -$a->strings['Maximum table size (in MB) for the automatic optimization. Enter -1 to disable it.'] = 'Maximální velikost tabulky (v MB) pro automatickou optimalizaci. Zadáním -1 ji vypnete.'; -$a->strings['Minimum level of fragmentation'] = 'Minimální úroveň fragmentace'; -$a->strings['Minimum fragmenation level to start the automatic optimization - default value is 30%.'] = 'Minimální úroveň fragmentace pro spuštění automatické optimalizace - výchozí hodnota je 30%.'; -$a->strings['Periodical check of global contacts'] = 'Pravidelně ověřování globálních kontaktů'; -$a->strings['If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers.'] = 'Pokud je toto povoleno, budou globální kontakty pravidelně kontrolovány pro zastaralá data a životnost kontaktů a serverů.'; $a->strings['Days between requery'] = 'Dny mezi dotazy'; $a->strings['Number of days after which a server is requeried for his contacts.'] = 'Počet dnů, po kterých je server znovu dotázán na své kontakty'; $a->strings['Discover contacts from other servers'] = 'Objevit kontakty z ostatních serverů'; -$a->strings['Periodically query other servers for contacts. You can choose between "Users": the users on the remote system, "Global Contacts": active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren\'t available. The fallback increases the server load, so the recommended setting is "Users, Global Contacts".'] = 'Periodicky dotazovat ostatní servery pro kontakty. Můžete si vybrat mezi možnostmi: „Uživatelé“: uživatelé na vzdáleném systému, a „Globální kontakty“: aktivní kontakty, které jsou známy na systému. Funkce fallback je určena pro servery Redmatrix a starší servery Friendica, kde globální kontakty nejsou dostupné. Fallback zvyšuje serverovou zátěž, doporučené nastavení je proto „Uživatelé, globální kontakty“. '; -$a->strings['Timeframe for fetching global contacts'] = 'Časový rámec pro načítání globálních kontaktů'; -$a->strings['When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers.'] = 'Pokud je aktivováno objevování, tato hodnota definuje časový rámec pro aktivitu globálních kontaktů, které jsou načteny z jiných serverů.'; $a->strings['Search the local directory'] = 'Hledat v místním adresáři'; $a->strings['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.'] = 'Prohledat místní adresář místo globálního adresáře. Při místním prohledávání bude každé hledání provedeno v globálním adresáři na pozadí. To vylepšuje výsledky při zopakování hledání.'; $a->strings['Publish server information'] = 'Zveřejnit informace o serveru'; @@ -2138,39 +867,21 @@ $a->strings['Lifespan of unclaimed items'] = 'Životnost nevyžádaných polože $a->strings['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.'] = 'Pokud je zapnuto čištění databáze, tato funkce definuje počet dnů, po kterých budou smazány nevyžádané vzdálené položky (většinou obsah z přeposílacího serveru). Výchozí hodnota je 90 dní. Pokud je zadaná hodnota 0, výchozí hodnotou bude obecná hodnota životnosti vzdálených položek.'; $a->strings['Lifespan of raw conversation data'] = 'Životnost hrubých dat konverzací'; $a->strings['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.'] = 'Data konverzací jsou použita pro ActivityPub a OStatus a pro účely ladění. Mělo by být bezpečné je odstranit po 14 dnech, výchozí hodnota je 90 dní.'; -$a->strings['Path to item cache'] = 'Cesta k položkám v mezipaměti'; -$a->strings['The item caches buffers generated bbcode and external images.'] = 'V mezipaměti je uložen vygenerovaný BBCode a externí obrázky.'; -$a->strings['Cache duration in seconds'] = 'Doba platnosti vyrovnávací paměti v sekundách'; -$a->strings['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.'] = 'Jak dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den). Pro vypnutí funkce vyrovnávací paměti nastavte hodnotu na -1.'; $a->strings['Maximum numbers of comments per post'] = 'Maximální počet komentářů k příspěvku'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Kolik komentářů by mělo být zobrazeno k každému příspěvku? Výchozí hodnotou je 100.'; $a->strings['Temp path'] = 'Cesta k dočasným souborům'; $a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Pokud máte omezený systém, kde webový server nemá přístup k systémové složce temp, zde zadejte jinou cestu.'; -$a->strings['Disable picture proxy'] = 'Vypnutí obrázkové proxy'; -$a->strings['The picture proxy increases performance and privacy. It shouldn\'t be used on systems with very low bandwidth.'] = 'Obrázková proxy zvyšuje výkon a soukromí. Neměla by však být používána na systémech s velmi malou rychlostí připojení.'; $a->strings['Only search in tags'] = 'Hledat pouze ve štítcích'; $a->strings['On large systems the text search can slow down the system extremely.'] = 'Textové vyhledávání může u rozsáhlých systémů znamenat velmi citelné zpomalení systému.'; -$a->strings['New base url'] = 'Nová výchozí url adresa'; -$a->strings['Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users.'] = 'Změnit výchozí URL adresu pro tento server. Toto odešle zprávu o přemístění všem kontaktům na Friendica a Diaspora* všech uživatelů.'; -$a->strings['RINO Encryption'] = 'RINO Šifrování'; -$a->strings['Encryption layer between nodes.'] = 'Šifrovací vrstva mezi servery.'; -$a->strings['Enabled'] = 'Povoleno'; $a->strings['Maximum number of parallel workers'] = 'Maximální počet paralelních pracovníků'; $a->strings['On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d.'] = 'Na sdílených hostinzích toto nastavte na hodnotu %d. Na větších systémech se hodí hodnoty kolem %d. Výchozí hodnotou je %d.'; -$a->strings['Don\'t use "proc_open" with the worker'] = 'Nepoužívat „proc_open“ s pracovníkem'; -$a->strings['Enable this if your system doesn\'t allow the use of "proc_open". This can happen on shared hosters. If this is enabled you should increase the frequency of worker calls in your crontab.'] = 'Tohle zapněte, pokud Váš systém nedovoluje používání „proc_open“. To se může stát na sdíleném hostingu. Pokud je toto povoleno, bude zvýšena častost vyvolávání pracovníka v crontabu.'; $a->strings['Enable fastlane'] = 'Povolit fastlane'; $a->strings['When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.'] = 'Pokud je toto povoleno, mechanismus fastlane spustí dodatečného pracovníka, pokud jsou procesy vyšší priority zablokované procesy nižší priority.'; -$a->strings['Enable frontend worker'] = 'Povolit frontendového pracovníka'; -$a->strings['When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server.'] = 'Pokud je toto povoleno, bude proces pracovníka vyvolán, pokud je proveden backendový přístup (např. když jsou doručovány zprávy). Na menších stránkách možná budete chtít pravidelně vyvolávat %s/worker přes externí úlohu cron. Tuto možnost byste měl/a zapnout pouze, pokud nemůžete na vašem serveru používat cron/plánované úlohy.'; -$a->strings['Subscribe to relay'] = 'Odebírat ze serveru pro přeposílání'; -$a->strings['Enables the receiving of public posts from the relay. They will be included in the search, subscribed tags and on the global community page.'] = 'Umožňuje přijímat veřejné příspěvky z přeposílacího serveru. Budou zahrnuty ve vyhledávání, odebíraných štítcích a na globální komunitní stránce.'; -$a->strings['Relay server'] = 'Server pro přeposílání (relay)'; -$a->strings['Address of the relay server where public posts should be send to. For example https://relay.diasp.org'] = 'Adresa přeposílacího serveru, kam budou posílány veřejné příspěvky. Příklad: https://relay.diasp.org'; $a->strings['Direct relay transfer'] = 'Přímý přenos na server pro přeposílání'; $a->strings['Enables the direct transfer to other servers without using the relay servers'] = 'Umožňuje přímý přenos na ostatní servery bez použití přeposílacích serverů'; $a->strings['Relay scope'] = 'Rozsah příspěvků z přeposílacího serveru'; $a->strings['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.'] = 'Může být buď „vše“ nebo „štítky“. „vše“ znamená, že budou přijaty všechny veřejné příspěvky. „štítky“ znamená, že budou přijaty pouze příspěvky s vybranými štítky.'; +$a->strings['Disabled'] = 'Zakázáno'; $a->strings['all'] = 'vše'; $a->strings['tags'] = 'štítky'; $a->strings['Server tags'] = 'Serverové štítky'; @@ -2178,6 +889,8 @@ $a->strings['Comma separated list of tags for the "tags" subscription.'] = 'Sezn $a->strings['Allow user tags'] = 'Povolit uživatelské štítky'; $a->strings['If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".'] = 'Pokud je toto povoleno, budou štítky z uložených hledání vedle odběru „relay_server_tags“ použity i pro odběr „tags“.'; $a->strings['Start Relocation'] = 'Začít přemístění'; +$a->strings['Invalid storage backend setting value.'] = 'Neplatná hodnota nastavení backendu úložiště.'; +$a->strings['Database (legacy)'] = 'Databáze (legacy)'; $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.
    '] = 'Vaše databáze stále běží s tabulkami MyISAM. Měl/a byste změnit typ datového úložiště na InnoDB. Protože Friendica bude v budoucnu používat pouze funkce pro InnoDB, měl/a byste to změnit! Zde naleznete návod, který by pro vás mohl být užitečný při konverzi úložišť. Můžete také použít příkaz php bin/console.php dbstructure toinnodb na Vaší instalaci Friendica pro automatickou konverzi.
    '; $a->strings['There is a new version of Friendica available for download. Your current version is %1$s, upstream version is %2$s'] = 'Je dostupná ke stažení nová verze Friendica. Vaše aktuální verze je %1$s, upstreamová verze je %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.'] = 'Aktualizace databáze selhala. Prosím, spusťte příkaz „php bin/console.php dbstructure update“ z příkazového řádku a podívejte se na chyby, které by se mohly vyskytnout.'; @@ -2190,51 +903,241 @@ $a->strings['%s is not reachable on your system. This is a seve $a->strings['Friendica\'s system.basepath was updated from \'%s\' to \'%s\'. Please remove the system.basepath from your db to avoid differences.'] = 'system.basepath Friendica bylo aktualizováno z „%s“ na „%s“. Pro vyhnutí se rozdílům prosím odstraňte z vaší databáze system.basepath.'; $a->strings['Friendica\'s current system.basepath \'%s\' is wrong and the config file \'%s\' isn\'t used.'] = 'Aktuální system.basepath Friendica „%s“ je špatné a konfigurační soubor „%s“ se nepoužívá.'; $a->strings['Friendica\'s current system.basepath \'%s\' is not equal to the config file \'%s\'. Please fix your configuration.'] = 'Aktuální system.basepath „%s“ není rovno konfguračnímu souboru „%s“. Prosím opravte si svou konfiguraci.'; -$a->strings['Normal Account'] = 'Normální účet'; -$a->strings['Automatic Follower Account'] = 'Účet s automatickými sledujícími'; -$a->strings['Public Forum Account'] = 'Účet veřejného fóra'; -$a->strings['Automatic Friend Account'] = 'Účet s automatickými přáteli'; -$a->strings['Blog Account'] = 'Blogovací účet'; -$a->strings['Private Forum Account'] = 'Účet soukromého fóra'; $a->strings['Message queues'] = 'Fronty zpráv'; $a->strings['Server Settings'] = 'Nastavení serveru'; -$a->strings['Summary'] = 'Shrnutí'; -$a->strings['Registered users'] = 'Registrovaní uživatelé'; -$a->strings['Pending registrations'] = 'Čekající registrace'; $a->strings['Version'] = 'Verze'; $a->strings['Active addons'] = 'Aktivní doplňky'; -$a->strings['No friends to display.'] = 'Žádní přátelé k zobrazení'; +$a->strings['Theme %s disabled.'] = 'Motiv %s zakázán.'; +$a->strings['Theme %s successfully enabled.'] = 'Motiv %s úspěšně povolen.'; +$a->strings['Theme %s failed to install.'] = 'Instalace motivu %s selhala.'; +$a->strings['Screenshot'] = 'Snímek obrazovky'; +$a->strings['Themes'] = 'Motivy'; +$a->strings['Unknown theme.'] = 'Neznámý motiv.'; +$a->strings['Reload active themes'] = 'Znovu načíst aktivní motivy'; +$a->strings['No themes found on the system. They should be placed in %1$s'] = 'V systému nebyly nalezeny žádné motivy. Měly by být uloženy v %1$s'; +$a->strings['[Experimental]'] = '[Experimentální]'; +$a->strings['[Unsupported]'] = '[Nepodporováno]'; +$a->strings['Display Terms of Service'] = 'Zobrazit Podmínky používání'; +$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.'] = 'Povolí stránku Podmínky používání. Pokud je toto povoleno, bude na formulář pro registrací a stránku s obecnými informacemi přidán odkaz k podmínkám.'; +$a->strings['Display Privacy Statement'] = 'Zobrazit Prohlášení o soukromí'; +$a->strings['Privacy Statement Preview'] = 'Náhled Prohlášení o soukromí'; +$a->strings['The Terms of Service'] = 'Podmínky používání'; +$a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = 'Zde zadejte podmínky používání vašeho serveru. Můžete používat BBCode. Záhlaví sekcí by měly být označeny [h2] a níže.'; +$a->strings['Contact not found'] = 'Kontakt nenalezen.'; +$a->strings['No installed applications.'] = 'Žádné nainstalované aplikace.'; +$a->strings['Applications'] = 'Aplikace'; $a->strings['Item was not found.'] = 'Položka nebyla nalezena.'; -$a->strings['Submanaged account can\'t access the administation pages. Please log back in as the master account.'] = 'Účet spravovaný jiným nemá přístup k administračním stránkám. Prosím přihlaste se znovu jako nejvyšší účet.'; +$a->strings['Please login to continue.'] = 'Pro pokračování se prosím přihlaste.'; $a->strings['Overview'] = 'Přehled'; $a->strings['Configuration'] = 'Konfigurace'; +$a->strings['Additional features'] = 'Dodatečné vlastnosti'; $a->strings['Database'] = 'Databáze'; $a->strings['DB updates'] = 'Aktualizace databáze'; $a->strings['Inspect Deferred Workers'] = 'Prozkoumat odložené pracovníky'; $a->strings['Inspect worker Queue'] = 'Prozkoumat frontu pro pracovníka'; -$a->strings['Tools'] = 'Nástroje'; -$a->strings['Contact Blocklist'] = 'Blokované kontakty'; -$a->strings['Server Blocklist'] = 'Blokované servery'; $a->strings['Diagnostics'] = 'Diagnostika'; $a->strings['PHP Info'] = 'Info o PHP'; $a->strings['probe address'] = 'vyzkoušet adresu'; $a->strings['check webfinger'] = 'vyzkoušet webfinger'; -$a->strings['Item Source'] = 'Zdroj položky'; $a->strings['Babel'] = 'Babel'; $a->strings['Addon Features'] = 'Vlastnosti doplňků'; $a->strings['User registrations waiting for confirmation'] = 'Registrace uživatelů čekající na potvrzení'; +$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Byl dosažen denní limit %d příspěvku. Příspěvek byl odmítnut.', + 1 => 'Byl dosažen denní limit %d příspěvků. Příspěvek byl odmítnut.', + 2 => 'Byl dosažen denní limit %d příspěvku. Příspěvek byl odmítnut.', + 3 => 'Byl dosažen denní limit %d příspěvků. Příspěvek byl odmítnut.', +]; +$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Byl dosažen týdenní limit %d příspěvku. Příspěvek byl odmítnut.', + 1 => 'Byl dosažen týdenní limit %d příspěvků. Příspěvek byl odmítnut.', + 2 => 'Byl dosažen týdenní limit %d příspěvku. Příspěvek byl odmítnut.', + 3 => 'Byl dosažen týdenní limit %d příspěvků. Příspěvek byl odmítnut.', +]; +$a->strings['Users'] = 'Uživatelé'; +$a->strings['Tools'] = 'Nástroje'; +$a->strings['Contact Blocklist'] = 'Blokované kontakty'; +$a->strings['Server Blocklist'] = 'Blokované servery'; +$a->strings['Delete Item'] = 'Smazat položku'; +$a->strings['Item Source'] = 'Zdroj položky'; +$a->strings['Profile Details'] = 'Detaily profilu'; +$a->strings['Only You Can See This'] = 'Toto můžete vidět jen vy'; +$a->strings['Tips for New Members'] = 'Tipy pro nové členy'; $a->strings['People Search - %s'] = 'Vyhledávání lidí - %s'; -$a->strings['Forum Search - %s'] = 'Vyhledávání fór - %s'; -$a->strings['You must be logged in to use this module'] = 'Pro používání tohoto modulu musíte být přihlášen/a'; -$a->strings['Source URL'] = 'Zdrojová adresa URL'; -$a->strings['Time Conversion'] = 'Časový převod'; -$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica poskytuje tuto službu ke sdílení událostí s ostatními sítěmi a přáteli v neznámých časových pásmech'; -$a->strings['UTC time: %s'] = 'UTC čas: %s'; -$a->strings['Current timezone: %s'] = 'Aktuální časové pásmo: %s'; -$a->strings['Converted localtime: %s'] = 'Převedený místní čas : %s'; -$a->strings['Please select your timezone:'] = 'Prosím, vyberte své časové pásmo:'; -$a->strings['Only logged in users are permitted to perform a probing.'] = 'Pouze přihlášení uživatelé mohou zkoušet adresy.'; -$a->strings['Lookup address'] = 'Najít adresu'; +$a->strings['No matches'] = 'Žádné shody'; +$a->strings['Account'] = 'Účet'; +$a->strings['Two-factor authentication'] = 'Dvoufázové ověřování'; +$a->strings['Display'] = 'Zobrazení'; +$a->strings['Social Networks'] = 'Sociální sítě'; +$a->strings['Connected apps'] = 'Připojené aplikace'; +$a->strings['Export personal data'] = 'Exportovat osobní údaje'; +$a->strings['Remove account'] = 'Odstranit účet'; +$a->strings['This page is missing a url parameter.'] = 'Této stránce chybí parametr url.'; +$a->strings['The post was created'] = 'Příspěvek byl vytvořen'; +$a->strings['Failed to remove event'] = 'Odstranění události selhalo'; +$a->strings['Event can not end before it has started.'] = 'Událost nemůže končit dříve, než začala.'; +$a->strings['Event title and start time are required.'] = 'Název události a datum začátku jsou vyžadovány.'; +$a->strings['Starting date and Title are required.'] = 'Počáteční datum a Název jsou vyžadovány.'; +$a->strings['Event Starts:'] = 'Událost začíná:'; +$a->strings['Required'] = 'Vyžadováno'; +$a->strings['Finish date/time is not known or not relevant'] = 'Datum/čas konce není zadán nebo není relevantní'; +$a->strings['Event Finishes:'] = 'Akce končí:'; +$a->strings['Share this event'] = 'Sdílet tuto událost'; +$a->strings['Basic'] = 'Základní'; +$a->strings['This calendar format is not supported'] = 'Tento formát kalendáře není podporován.'; +$a->strings['No exportable data found'] = 'Nenalezena žádná data pro export'; +$a->strings['calendar'] = 'kalendář'; +$a->strings['Events'] = 'Události'; +$a->strings['View'] = 'Zobrazit'; +$a->strings['Create New Event'] = 'Vytvořit novou událost'; +$a->strings['list'] = 'seznam'; +$a->strings['Contact not found.'] = 'Kontakt nenalezen.'; +$a->strings['Invalid contact.'] = 'Neplatný kontakt.'; +$a->strings['Contact is deleted.'] = 'Knotakt je smazán.'; +$a->strings['Bad request.'] = 'Špatný požadavek.'; +$a->strings['Filter'] = 'Filtr'; +$a->strings['Members'] = 'Členové'; +$a->strings['Click on a contact to add or remove.'] = 'Klikněte na kontakt pro přidání nebo odebrání'; +$a->strings['%d contact edited.'] = [ + 0 => '%d kontakt upraven', + 1 => '%d kontakty upraveny', + 2 => '%d kontaktu upraveno', + 3 => '%d kontaktů upraveno', +]; +$a->strings['Show all contacts'] = 'Zobrazit všechny kontakty'; +$a->strings['Pending'] = 'Čekající'; +$a->strings['Blocked'] = 'Blokované'; +$a->strings['Only show blocked contacts'] = 'Zobrazit pouze blokované kontakty'; +$a->strings['Ignored'] = 'Ignorované'; +$a->strings['Only show ignored contacts'] = 'Zobrazit pouze ignorované kontakty'; +$a->strings['Archived'] = 'Archivované'; +$a->strings['Only show archived contacts'] = 'Zobrazit pouze archivované kontakty'; +$a->strings['Hidden'] = 'Skryté'; +$a->strings['Only show hidden contacts'] = 'Zobrazit pouze skryté kontakty'; +$a->strings['Search your contacts'] = 'Prohledat vaše kontakty'; +$a->strings['Results for: %s'] = 'Výsledky pro: %s'; +$a->strings['Update'] = 'Aktualizace'; +$a->strings['Unblock'] = 'Odblokovat'; +$a->strings['Unignore'] = 'Přestat ignorovat'; +$a->strings['Batch Actions'] = 'Souhrnné akce'; +$a->strings['Conversations started by this contact'] = 'Konverzace, které tento kontakt začal'; +$a->strings['Posts and Comments'] = 'Příspěvky a komentáře'; +$a->strings['Advanced Contact Settings'] = 'Pokročilé nastavení kontaktu'; +$a->strings['Mutual Friendship'] = 'Vzájemné přátelství'; +$a->strings['is a fan of yours'] = 'je váš fanoušek'; +$a->strings['you are a fan of'] = 'jste fanouškem'; +$a->strings['Visit %s\'s profile [%s]'] = 'Navštivte profil uživatele %s [%s]'; +$a->strings['Contact update failed.'] = 'Aktualizace kontaktu selhala.'; +$a->strings['Return to contact editor'] = 'Zpět k editoru kontaktu'; +$a->strings['Name'] = 'Jméno'; +$a->strings['Account Nickname'] = 'Přezdívka účtu'; +$a->strings['Account URL'] = 'URL adresa účtu'; +$a->strings['Poll/Feed URL'] = 'URL adresa poll/feed'; +$a->strings['New photo from this URL'] = 'Nová fotka z této URL adresy'; +$a->strings['Follower (%s)'] = [ + 0 => 'Sledující (%s)', + 1 => 'Sledující (%s)', + 2 => 'Sledující (%s)', + 3 => 'Sledující (%s)', +]; +$a->strings['Following (%s)'] = [ + 0 => 'Sledovaný (%s)', + 1 => 'Sledovaní (%s)', + 2 => 'Sledovaní (%s)', + 3 => 'Sleduji (%s)', +]; +$a->strings['Mutual friend (%s)'] = [ + 0 => 'Vzájemný přítel (%s)', + 1 => 'Vzájemní přátelé (%s)', + 2 => 'Vzájemní přátelé (%s)', + 3 => 'Vzájemní přátelé (%s)', +]; +$a->strings['Contact (%s)'] = [ + 0 => 'Kontakt (%s)', + 1 => 'Kontakty (%s)', + 2 => 'Kontakty (%s)', + 3 => 'Kontakty (%s)', +]; +$a->strings['Access denied.'] = 'Přístup odmítnut.'; +$a->strings['Submit Request'] = 'Odeslat požadavek'; +$a->strings['You already added this contact.'] = 'Již jste si tento kontakt přidal/a'; +$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Typ sítě nemohl být detekován. Kontakt nemůže být přidán.'; +$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Podpora pro Diasporu není zapnuta. Kontakt nemůže být přidán.'; +$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Podpora pro OStatus je vypnnuta. Kontakt nemůže být přidán.'; +$a->strings['Please answer the following:'] = 'Odpovězte, prosím, následující:'; +$a->strings['Your Identity Address:'] = 'Vaše adresa identity:'; +$a->strings['Profile URL'] = 'URL profilu'; +$a->strings['Tags:'] = 'Štítky:'; +$a->strings['Add a personal note:'] = 'Přidejte osobní poznámku:'; +$a->strings['The contact could not be added.'] = 'Kontakt nemohl být přidán.'; +$a->strings['Invalid request.'] = 'Neplatný požadavek.'; +$a->strings['Profile Match'] = 'Shoda profilu'; +$a->strings['Failed to update contact record.'] = 'Nepodařilo se aktualizovat kontakt.'; +$a->strings['Contact has been unblocked'] = 'Kontakt byl odblokován'; +$a->strings['Contact has been blocked'] = 'Kontakt byl zablokován'; +$a->strings['Contact has been unignored'] = 'Kontakt přestal být ignorován'; +$a->strings['Contact has been ignored'] = 'Kontakt bude ignorován'; +$a->strings['You are mutual friends with %s'] = 'Jste vzájemní přátelé s uživatelem %s'; +$a->strings['You are sharing with %s'] = 'Sdílíte s uživatelem %s'; +$a->strings['%s is sharing with you'] = '%s s vámi sdílí'; +$a->strings['Private communications are not available for this contact.'] = 'Soukromá komunikace není dostupná pro tento kontakt.'; +$a->strings['Never'] = 'Nikdy'; +$a->strings['(Update was not successful)'] = '(Aktualizace nebyla úspěšná)'; +$a->strings['(Update was successful)'] = '(Aktualizace byla úspěšná)'; +$a->strings['Suggest friends'] = 'Navrhnout přátele'; +$a->strings['Network type: %s'] = 'Typ sítě: %s'; +$a->strings['Communications lost with this contact!'] = 'Komunikace s tímto kontaktem byla ztracena!'; +$a->strings['Fetch further information for feeds'] = 'Načíst další informace pro kanál'; +$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.'] = 'Načíst informace jako obrázky náhledu, nadpis a popisek z položky kanálu. Toto můžete aktivovat, pokud kanál neobsahuje moc textu. Klíčová slova jsou vzata z hlavičky meta v položce kanálu a jsou zveřejněna jako hashtagy.'; +$a->strings['Fetch information'] = 'Načíst informace'; +$a->strings['Fetch keywords'] = 'Načíst klíčová slova'; +$a->strings['Fetch information and keywords'] = 'Načíst informace a klíčová slova'; +$a->strings['No mirroring'] = 'Žádné zrcadlení'; +$a->strings['Mirror as my own posting'] = 'Zrcadlit jako mé vlastní příspěvky'; +$a->strings['Contact Information / Notes'] = 'Kontaktní informace / poznámky'; +$a->strings['Contact Settings'] = 'Nastavení kontaktů'; +$a->strings['Contact'] = 'Kontakt'; +$a->strings['Their personal note'] = 'Jejich osobní poznámka'; +$a->strings['Edit contact notes'] = 'Upravit poznámky kontaktu'; +$a->strings['Block/Unblock contact'] = 'Blokovat / Odblokovat kontakt'; +$a->strings['Ignore contact'] = 'Ignorovat kontakt'; +$a->strings['View conversations'] = 'Zobrazit konverzace'; +$a->strings['Last update:'] = 'Poslední aktualizace:'; +$a->strings['Update public posts'] = 'Aktualizovat veřejné příspěvky'; +$a->strings['Update now'] = 'Aktualizovat'; +$a->strings['Awaiting connection acknowledge'] = 'Čekám na potrvzení spojení'; +$a->strings['Currently blocked'] = 'V současnosti zablokováno'; +$a->strings['Currently ignored'] = 'V současnosti ignorováno'; +$a->strings['Currently archived'] = 'Aktuálně archivován'; +$a->strings['Hide this contact from others'] = 'Skrýt tento kontakt před ostatními'; +$a->strings['Replies/likes to your public posts may still be visible'] = 'Odpovědi/oblíbení na vaše veřejné příspěvky mohou být stále viditelné'; +$a->strings['Notification for new posts'] = 'Oznámení o nových příspěvcích'; +$a->strings['Send a notification of every new post of this contact'] = 'Posílat oznámení o každém novém příspěvku tohoto kontaktu'; +$a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno „Načíst informace a klíčová slova“. Oddělujte čárkami'; +$a->strings['Actions'] = 'Akce'; +$a->strings['Status'] = 'Stav'; +$a->strings['Mirror postings from this contact'] = 'Zrcadlení příspěvků od tohoto kontaktu'; +$a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'Označit tento kontakt jako „remote_self“, s tímto nastavením bude Friendica znovupublikovat všechny nové příspěvky od tohoto kontaktu.'; +$a->strings['Refetch contact data'] = 'Znovu načíst data kontaktu'; +$a->strings['Toggle Blocked status'] = 'Přepínat stav Blokováno'; +$a->strings['Toggle Ignored status'] = 'Přepínat stav Ignorováno'; +$a->strings['Yes'] = 'Ano'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin.'; +$a->strings['You aren\'t following this contact.'] = 'Tento kontakt nesledujete.'; +$a->strings['Unfollowing is currently not supported by your network.'] = 'Zrušení sledování není aktuálně na Vaši síti podporováno.'; +$a->strings['Disconnect/Unfollow'] = 'Odpojit se/Zrušit sledování'; +$a->strings['No results.'] = 'Žádné výsledky.'; +$a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'Tento komunitní proud ukazuje všechny veřejné příspěvky, které tento server přijme. Nemusí odrážet názory uživatelů serveru.'; +$a->strings['Community option not available.'] = 'Možnost komunity není dostupná.'; +$a->strings['Not available.'] = 'Není k dispozici.'; +$a->strings['Credits'] = 'Poděkování'; +$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!'] = 'Friendica je komunitní projekt, který by nebyl možný bez pomoci mnoha lidí. Zde je seznam těch, kteří přispěli ke kódu nebo k překladu Friendica. Děkujeme všem!'; +$a->strings['Error'] = [ + 0 => 'Chyba', + 1 => 'Chyby', + 2 => 'Chyb', + 3 => 'Chyb', +]; $a->strings['Source input'] = 'Zdrojový vstup'; $a->strings['BBCode::toPlaintext'] = 'BBCode::toPlaintext'; $a->strings['BBCode::convert (raw HTML)'] = 'BBCode::convert (hrubé HTML)'; @@ -2263,48 +1166,67 @@ $a->strings['Source text'] = 'Zdrojový text'; $a->strings['BBCode'] = 'BBCode'; $a->strings['Markdown'] = 'Markdown'; $a->strings['HTML'] = 'HTML'; +$a->strings['You must be logged in to use this module'] = 'Pro používání tohoto modulu musíte být přihlášen/a'; +$a->strings['Source URL'] = 'Zdrojová adresa URL'; +$a->strings['Time Conversion'] = 'Časový převod'; +$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica poskytuje tuto službu ke sdílení událostí s ostatními sítěmi a přáteli v neznámých časových pásmech'; +$a->strings['UTC time: %s'] = 'UTC čas: %s'; +$a->strings['Current timezone: %s'] = 'Aktuální časové pásmo: %s'; +$a->strings['Converted localtime: %s'] = 'Převedený místní čas : %s'; +$a->strings['Please select your timezone:'] = 'Prosím, vyberte své časové pásmo:'; +$a->strings['Only logged in users are permitted to perform a probing.'] = 'Pouze přihlášení uživatelé mohou zkoušet adresy.'; +$a->strings['Lookup address'] = 'Najít adresu'; +$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Přepínání mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí vaše detaily účtu, nebo kterým jste přidělil/a oprávnění nastavovat přístupová práva.'; +$a->strings['Select an identity to manage: '] = 'Vyberte identitu ke spravování: '; $a->strings['No entries (some entries may be hidden).'] = 'Žádné záznamy (některé položky mohou být skryty).'; $a->strings['Find on this site'] = 'Najít na tomto webu'; $a->strings['Results for:'] = 'Výsledky pro:'; $a->strings['Site Directory'] = 'Adresář serveru'; -$a->strings['Filetag %s saved to item'] = 'Filetag %s uložen k předmětu'; $a->strings['- select -'] = '- vyberte -'; -$a->strings['No given contact.'] = 'Žádný daný kontakt.'; +$a->strings['Suggested contact not found.'] = 'Navrhovaný kontakt nenalezen.'; +$a->strings['Friend suggestion sent.'] = 'Návrh přátelství odeslán. '; +$a->strings['Suggest Friends'] = 'Navrhnout přátele'; +$a->strings['Suggest a friend for %s'] = 'Navrhnout přítele pro uživatele %s'; $a->strings['Installed addons/apps:'] = 'Nainstalované doplňky/aplikace:'; $a->strings['No installed addons/apps'] = 'Žádne nainstalované doplňky/aplikace'; $a->strings['Read about the Terms of Service of this node.'] = 'Přečtěte si o Podmínkách používání tohoto serveru.'; $a->strings['On this server the following remote servers are blocked.'] = 'Na tomto serveru jsou zablokovány následující vzdálené servery.'; +$a->strings['Reason for the block'] = 'Důvody pro zablokování'; $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.'] = 'Tohle je Friendica, verze %s, běžící na webové adrese %s. Verze databáze je %s, verze post update je %s.'; $a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Pro více informací o projektu Friendica, prosím, navštivte stránku Friendi.ca'; $a->strings['Bug reports and issues: please visit'] = 'Pro hlášení chyb a námětů na změny prosím navštivte'; $a->strings['the bugtracker at github'] = 'sledování chyb na GitHubu'; $a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = 'Návrhy, pochvaly atd. prosím posílejte na adresu „info“ zavináč „friendi“-tečka-„ca“'; -$a->strings['Group created.'] = 'Skupina vytvořena.'; -$a->strings['Could not create group.'] = 'Nelze vytvořit skupinu.'; -$a->strings['Group not found.'] = 'Skupina nenalezena.'; -$a->strings['Group name changed.'] = 'Název skupiny byl změněn.'; -$a->strings['Unknown group.'] = 'Neznámá skupina.'; -$a->strings['Contact is unavailable.'] = 'Kontakt je nedostupný.'; -$a->strings['Contact is deleted.'] = 'Knotakt je smazán.'; -$a->strings['Contact is blocked, unable to add it to a group.'] = 'Kontakt je blokován, nelze jej přidat ke skupině.'; -$a->strings['Unable to add the contact to the group.'] = 'Nelze přidat kontakt ke skupině.'; -$a->strings['Contact successfully added to group.'] = 'Kontakt úspěšně přidán ke skupině.'; -$a->strings['Unable to remove the contact from the group.'] = 'Nelze odstranit kontakt ze skupiny.'; -$a->strings['Contact successfully removed from group.'] = 'Kontakt úspěšně odstraněn ze skupiny.'; -$a->strings['Unknown group command.'] = 'Neznámý skupinový příkaz.'; -$a->strings['Bad request.'] = 'Špatný požadavek.'; -$a->strings['Save Group'] = 'Uložit skupinu'; -$a->strings['Filter'] = 'Filtr'; -$a->strings['Create a group of contacts/friends.'] = 'Vytvořit skupinu kontaktů/přátel.'; -$a->strings['Group removed.'] = 'Skupina odstraněna. '; -$a->strings['Unable to remove group.'] = 'Nelze odstranit skupinu.'; -$a->strings['Delete Group'] = 'Odstranit skupinu'; -$a->strings['Edit Group Name'] = 'Upravit název skupiny'; -$a->strings['Members'] = 'Členové'; -$a->strings['Remove contact from group'] = 'Odebrat kontakt ze skupiny'; -$a->strings['Add contact to group'] = 'Přidat kontakt ke skupině'; +$a->strings['No profile'] = 'Žádný profil'; $a->strings['Help:'] = 'Nápověda:'; $a->strings['Welcome to %s'] = 'Vítejte na %s'; +$a->strings['Friendica Communications Server - Setup'] = 'Komunikační server Friendica - Nastavení'; +$a->strings['System check'] = 'Zkouška systému'; +$a->strings['Next'] = 'Dále'; +$a->strings['Check again'] = 'Vyzkoušet znovu'; +$a->strings['Base settings'] = 'Základní nastavení'; +$a->strings['Base path to installation'] = 'Základní cesta k instalaci'; +$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.'] = 'Pokud systém nemůže detekovat správnou cestu k Vaší instalaci, zde zadejte jinou cestu. Toto nastavení by mělo být nastaveno pouze, pokud používáte omezený systém a symbolické odkazy ke kořenové složce webu.'; +$a->strings['Database connection'] = 'Databázové spojení'; +$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Pro instalaci Friendica potřebujeme znát připojení k vaší databázi.'; +$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru.'; +$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním.'; +$a->strings['Database Server Name'] = 'Jméno databázového serveru'; +$a->strings['Database Login Name'] = 'Přihlašovací jméno k databázi'; +$a->strings['Database Login Password'] = 'Heslo k databázovému účtu '; +$a->strings['For security reasons the password must not be empty'] = 'Z bezpečnostních důvodů nesmí být heslo prázdné.'; +$a->strings['Database Name'] = 'Jméno databáze'; +$a->strings['Please select a default timezone for your website'] = 'Prosím, vyberte výchozí časové pásmo pro váš server'; +$a->strings['Site settings'] = 'Nastavení webu'; +$a->strings['Site administrator email address'] = 'E-mailová adresa administrátora webu'; +$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'Vaše e-mailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní.'; +$a->strings['System Language:'] = 'Systémový jazyk'; +$a->strings['Set the default language for your Friendica installation interface and to send emails.'] = 'Nastavte si výchozí jazyk pro vaše instalační rozhraní Friendica a pro odesílání e-mailů.'; +$a->strings['Your Friendica site database has been installed.'] = 'Databáze vašeho serveru Friendica byla nainstalována.'; +$a->strings['Installation finished'] = 'Instalace dokončena'; +$a->strings['

    What next

    '] = '

    Co dál

    '; +$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the worker.'] = 'DŮLEŽITÉ: Budete si muset [manuálně] nastavit naplánovaný úkol pro pracovníka.'; +$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.'] = 'Přejděte k registrační stránce vašeho nového serveru Friendica a zaregistrujte se jako nový uživatel. Nezapomeňte použít stejný e-mail, který jste zadal/a jako administrátorský e-mail. To vám umožní navštívit panel pro administraci stránky.'; $a->strings['Total invitation limit exceeded.'] = 'Celkový limit pozvánek byl překročen'; $a->strings['%s : Not a valid email address.'] = '%s : není platná e-mailová adresa.'; $a->strings['Please join us on Friendica'] = 'Prosím přidejte se k nám na Friendica'; @@ -2331,47 +1253,177 @@ $a->strings['Once you have registered, please connect with me via my profile pag $a->strings['For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca'] = 'Pro více informací o projektu Friendica a proč si myslím, že je důležitý, prosím navštiv http://friendi.ca'; $a->strings['Compose new personal note'] = 'Napsat novou osobní poznámku'; $a->strings['Compose new post'] = 'Napsat nový příspěvek'; -$a->strings['Create a New Account'] = 'Vytvořit nový účet'; -$a->strings['Password: '] = 'Heslo: '; -$a->strings['Remember me'] = 'Pamatovat si mě'; -$a->strings['Or login using OpenID: '] = 'Nebo se přihlaste pomocí OpenID: '; -$a->strings['Forgot your password?'] = 'Zapomněl/a jste heslo?'; -$a->strings['Website Terms of Service'] = 'Podmínky používání stránky'; -$a->strings['terms of service'] = 'podmínky používání'; -$a->strings['Website Privacy Policy'] = 'Zásady soukromí serveru'; -$a->strings['privacy policy'] = 'zásady soukromí'; -$a->strings['Logged out.'] = 'Odhlášen.'; +$a->strings['The feed for this item is unavailable.'] = 'Proud pro tuto položku je nedostupný.'; $a->strings['System down for maintenance'] = 'Systém vypnut z důvodů údržby'; -$a->strings['Page not found.'] = 'Stránka nenalezena'; +$a->strings['Files'] = 'Soubory'; +$a->strings['Upload'] = 'Nahrát'; +$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Omlouváme se, možná je váš soubor větší než je povolené maximum dle nastavení PHP'; +$a->strings['Or - did you try to upload an empty file?'] = 'Nebo - nenahrával/a jste prázdný soubor?'; +$a->strings['File exceeds size limit of %s'] = 'Velikost souboru přesáhla limit %s'; +$a->strings['File upload failed.'] = 'Nahrání souboru se nezdařilo.'; +$a->strings['Unable to process image.'] = 'Obrázek není možné zprocesovat'; +$a->strings['Image upload failed.'] = 'Nahrání obrázku selhalo.'; +$a->strings['Normal Account Page'] = 'Normální stránka účtu'; +$a->strings['Soapbox Page'] = 'Propagační stránka'; +$a->strings['Automatic Friend Page'] = 'Stránka s automatickými přátely'; +$a->strings['Personal Page'] = 'Osobní stránka'; +$a->strings['Organisation Page'] = 'Stránka organizace'; +$a->strings['News Page'] = 'Zpravodajská stránka'; +$a->strings['Relay'] = 'Přeposílací server'; +$a->strings['%s contact unblocked'] = [ + 0 => '%s kontakt odblokován', + 1 => '%s kontakty odblokovány', + 2 => '%s kontaktu odblokováno', + 3 => '%s kontaktů odblokováno', +]; +$a->strings['Remote Contact Blocklist'] = 'Blokované vzdálené kontakty'; +$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'Tato stránka vám umožňuje zabránit jakýmkoliv zprávám ze vzdáleného kontaktu, aby se k vašemu serveru dostaly.'; +$a->strings['Block Remote Contact'] = 'Zablokovat vzdálený kontakt'; +$a->strings['select all'] = 'Vybrat vše'; +$a->strings['select none'] = 'nevybrat žádný'; +$a->strings['No remote contact is blocked from this node.'] = 'Žádný vzdálený kontakt není na tomto serveru zablokován.'; +$a->strings['Blocked Remote Contacts'] = 'Zablokované vzdálené kontakty'; +$a->strings['Block New Remote Contact'] = 'Zablokovat nový vzdálený kontakt'; +$a->strings['Photo'] = 'Fotka'; +$a->strings['Reason'] = 'Důvod'; +$a->strings['%s total blocked contact'] = [ + 0 => 'Celkem %s zablokovaný kontakt', + 1 => 'Celkem %s zablokované kontakty', + 2 => 'Celkem %s zablokovaného kontaktu', + 3 => 'Celkem %s zablokovaných kontaktů', +]; +$a->strings['URL of the remote contact to block.'] = 'Adresa URL vzdáleného kontaktu k zablokování.'; +$a->strings['Block Reason'] = 'Důvod blokace'; +$a->strings['Block reason'] = 'Důvod zablokování'; +$a->strings['Check to delete this entry from the blocklist'] = 'Zaškrtnutím odstraníte tuto položku z blokovacího seznamu'; +$a->strings['Save changes to the blocklist'] = 'Uložit změny do blokovacího seznamu'; +$a->strings['Current Entries in the Blocklist'] = 'Aktuální položky v bokovacím seznamu'; +$a->strings['Item marked for deletion.'] = 'Položka označená ke smazání'; +$a->strings['Delete this Item'] = 'Smazat tuto položku'; +$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.'] = 'Na této stránce můžete smazat položku z vašeho serveru. Pokud je položkou příspěvek nejvyššího stupně, bude smazáno celé vlákno.'; +$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.'] = 'Budete muset znát číslo GUID položky. Můžete jej najít např. v adrese URL. Poslední část adresy http://priklad.cz/display/123456 je GUID, v tomto případě 123456'; +$a->strings['GUID'] = 'GUID'; +$a->strings['The GUID of the item you want to delete.'] = 'Číslo GUID položky, kterou chcete smazat'; +$a->strings['Type'] = 'Typ'; +$a->strings['Item not found'] = 'Položka nenalezena'; +$a->strings['Item Guid'] = 'Číslo GUID položky'; +$a->strings['Normal Account'] = 'Normální účet'; +$a->strings['Automatic Follower Account'] = 'Účet s automatickými sledujícími'; +$a->strings['Automatic Friend Account'] = 'Účet s automatickými přáteli'; +$a->strings['Blog Account'] = 'Blogovací účet'; +$a->strings['Registered users'] = 'Registrovaní uživatelé'; +$a->strings['Pending registrations'] = 'Čekající registrace'; +$a->strings['%s user blocked'] = [ + 0 => '%s uživatel blokován', + 1 => '%s uživatelé blokování', + 2 => '%s uživatele blokováno', + 3 => '%s uživatelů blokováno', +]; +$a->strings['You can\'t remove yourself'] = 'Nemůžete odstranit sebe sama'; +$a->strings['%s user deleted'] = [ + 0 => '%s uživatel smazán', + 1 => '%s uživatelů smazáno', + 2 => '%s uživatele smazáno', + 3 => '%s uživatelů smazáno', +]; +$a->strings['User "%s" deleted'] = 'Uživatel „%s“ smazán'; +$a->strings['User "%s" blocked'] = 'Uživatel „%s“ zablokován'; +$a->strings['Register date'] = 'Datum registrace'; +$a->strings['Last login'] = 'Datum posledního přihlášení'; +$a->strings['User blocked'] = 'Uživatel zablokován'; +$a->strings['Site admin'] = 'Administrátor webu'; +$a->strings['Account expired'] = 'Účtu vypršela platnost'; +$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Vybraní uživatelé budou smazáni!\n\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\n\nOpravdu chcete pokračovat?'; +$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Uživatel {0} bude smazán!\n\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\n\n Opravdu chcete pokračovat?'; +$a->strings['%s user unblocked'] = [ + 0 => '%s uživatel odblokován', + 1 => '%s uživatelé odblokováni', + 2 => '%s uživatele odblokováno', + 3 => '%s uživatelů odblokováno', +]; +$a->strings['User "%s" unblocked'] = 'Uživatel „%s“ odblokován'; +$a->strings['New User'] = 'Nový uživatel'; +$a->strings['Add User'] = 'Přidat uživatele'; +$a->strings['Name of the new user.'] = 'Jméno nového uživatele.'; +$a->strings['Nickname'] = 'Přezdívka'; +$a->strings['Nickname of the new user.'] = 'Přezdívka nového uživatele.'; +$a->strings['Email address of the new user.'] = 'Emailová adresa nového uživatele.'; +$a->strings['Permanent deletion'] = 'Trvalé smazání'; +$a->strings['User waiting for permanent deletion'] = 'Uživatel čekající na trvalé smazání'; +$a->strings['Account approved.'] = 'Účet schválen.'; +$a->strings['Request date'] = 'Datum požadavku'; +$a->strings['No registrations.'] = 'Žádné registrace.'; +$a->strings['Note from the user'] = 'Poznámka od uživatele'; +$a->strings['Deny'] = 'Odmítnout'; +$a->strings['Show Ignored Requests'] = 'Zobrazit ignorované požadavky'; +$a->strings['Hide Ignored Requests'] = 'Skrýt ignorované požadavky'; +$a->strings['Notification type:'] = 'Typ oznámení:'; +$a->strings['Suggested by:'] = 'Navrhl/a:'; +$a->strings['Claims to be known to you: '] = 'Vaši údajní známí: '; +$a->strings['No'] = 'Ne'; +$a->strings['Shall your connection be bidirectional or not?'] = 'Má vaše spojení být obousměrné, nebo ne?'; +$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.'] = 'Přijetí uživatele %s jako přítele dovolí uživateli %s odebírat Vaše příspěvky a Vy budete také přijímat aktualizace od něj ve Vašem kanále.'; +$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.'] = 'Přijetí uživatele %s jako odběratele mu dovolí odebírat Vaše příspěvky, ale nebudete od něj přijímat aktualizace ve Vašem kanále.'; +$a->strings['Friend'] = 'Přítel'; +$a->strings['Subscriber'] = 'Odběratel'; +$a->strings['No introductions.'] = 'Žádné představení.'; +$a->strings['No more %s notifications.'] = 'Žádná další %s oznámení'; +$a->strings['Network Notifications'] = 'Síťová oznámení'; +$a->strings['System Notifications'] = 'Systémová oznámení'; +$a->strings['Personal Notifications'] = 'Osobní oznámení'; +$a->strings['Home Notifications'] = 'Oznámení na domovské stránce'; +$a->strings['Show unread'] = 'Zobrazit nepřečtené'; +$a->strings['{0} requested registration'] = '{0} požaduje registraci'; +$a->strings['Authorize application connection'] = 'Povolit připojení aplikacím'; +$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?'; +$a->strings['Resubscribing to OStatus contacts'] = 'Znovu Vás registruji ke kontaktům OStatus'; +$a->strings['Keep this window open until done.'] = 'Toto okno nechte otevřené až do konce.'; +$a->strings['No contact provided.'] = 'Nebyl poskytnut žádný kontakt.'; +$a->strings['Couldn\'t fetch information for contact.'] = 'Nelze načíst informace pro kontakt.'; +$a->strings['Couldn\'t fetch friends for contact.'] = 'Nelze načíst přátele pro kontakt.'; +$a->strings['Done'] = 'Hotovo'; +$a->strings['success'] = 'úspěch'; +$a->strings['failed'] = 'selhalo'; +$a->strings['ignored'] = 'ignorován'; +$a->strings['Remote privacy information not available.'] = 'Vzdálené informace o soukromí nejsou k dispozici.'; +$a->strings['Visible to:'] = 'Viditelné pro:'; +$a->strings['Followers (%s)'] = 'Sledující (%s)'; $a->strings['Invalid photo with id %s.'] = 'Neplatná fotka s ID %s.'; -$a->strings['User not found.'] = 'Uživatel nenalezen.'; +$a->strings['Edit post'] = 'Upravit příspěvek'; +$a->strings['web link'] = 'webový odkaz'; +$a->strings['Insert video link'] = 'Vložit odkaz na video'; +$a->strings['video link'] = 'odkaz na video'; +$a->strings['Insert audio link'] = 'Vložit odkaz na audio'; +$a->strings['audio link'] = 'odkaz na audio'; +$a->strings['Remove Item Tag'] = 'Odebrat štítek položky'; +$a->strings['Select a tag to remove: '] = 'Vyberte štítek k odebrání: '; +$a->strings['Remove'] = 'Odstranit'; $a->strings['No contacts.'] = 'Žádné kontakty.'; -$a->strings['Visit %s\'s profile [%s]'] = 'Navštivte profil uživatele %s [%s]'; -$a->strings['Follower (%s)'] = [ - 0 => 'Sledující (%s)', - 1 => 'Sledující (%s)', - 2 => 'Sledující (%s)', - 3 => 'Sledující (%s)', -]; -$a->strings['Following (%s)'] = [ - 0 => 'Sledovaný (%s)', - 1 => 'Sledovaní (%s)', - 2 => 'Sledovaní (%s)', - 3 => 'Sledovaní (%s)', -]; -$a->strings['Mutual friend (%s)'] = [ - 0 => 'Vzájemný přítel (%s)', - 1 => 'Vzájemní přátelé (%s)', - 2 => 'Vzájemní přátelé (%s)', - 3 => 'Vzájemní přátelé (%s)', -]; -$a->strings['Contact (%s)'] = [ - 0 => 'Kontakt (%s)', - 1 => 'Kontakty (%s)', - 2 => 'Kontakty (%s)', - 3 => 'Kontakty (%s)', -]; -$a->strings['All contacts'] = 'Všechny kontakty'; +$a->strings['%s\'s timeline'] = 'Časová osa uživatele %s'; +$a->strings['%s\'s posts'] = 'Příspěvky uživatele %s'; +$a->strings['%s\'s comments'] = 'Komentáře uživatele %s'; +$a->strings['Image exceeds size limit of %s'] = 'Velikost obrázku překročila limit %s'; +$a->strings['Image upload didn\'t complete, please try again'] = 'Nahrávání obrázku nebylo dokončeno, zkuste to prosím znovu'; +$a->strings['Image file is missing'] = 'Chybí soubor obrázku'; +$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Server v tuto chvíli nemůže akceptovat nové nahrané soubory, prosím kontaktujte vašeho administrátora'; +$a->strings['Image file is empty.'] = 'Soubor obrázku je prázdný.'; +$a->strings['View Album'] = 'Zobrazit album'; +$a->strings['Profile not found.'] = 'Profil nenalezen.'; +$a->strings['Full Name:'] = 'Celé jméno:'; +$a->strings['Member since:'] = 'Členem od:'; +$a->strings['j F, Y'] = 'j F, Y'; +$a->strings['j F'] = 'j F'; +$a->strings['Birthday:'] = 'Narozeniny:'; +$a->strings['Age: '] = 'Věk: '; +$a->strings['Description:'] = 'Popis:'; +$a->strings['Profile unavailable.'] = 'Profil není k dispozici.'; +$a->strings['Invalid locator'] = 'Neplatný odkaz'; +$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'Vzdálený odběr nemůže být na vaší síti proveden. Prosím, přihlaste se k odběru přímo na vašem systému.'; +$a->strings['Friend/Connection Request'] = 'Požadavek o přátelství/spojení'; +$a->strings['Unable to check your home location.'] = 'Nebylo možné zjistit polohu vašeho domova.'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena.'; +$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů.'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to zítra znovu.'; $a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking "Register".'] = 'Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknete na tlačítko „Zaregistrovat“.'; $a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky.'; $a->strings['Your OpenID (optional): '] = 'Vaše OpenID (nepovinné): '; @@ -2382,16 +1434,193 @@ $a->strings['Membership on this site is by invitation only.'] = 'Členství na t $a->strings['Your invitation code: '] = 'Váš kód pozvánky: '; $a->strings['Your Full Name (e.g. Joe Smith, real or real-looking): '] = 'Celé jméno (např. Jan Novák, skutečné či skutečně vypadající):'; $a->strings['Your Email Address: (Initial information will be send there, so this has to be an existing address.)'] = 'Vaše e-mailová adresa: (Budou sem poslány počáteční informace, musí to proto být existující adresa.)'; +$a->strings['New Password:'] = 'Nové heslo:'; $a->strings['Leave empty for an auto generated password.'] = 'Ponechte prázdné pro automatické vygenerovaní hesla.'; +$a->strings['Confirm:'] = 'Potvrďte:'; $a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be "nickname@%s".'] = 'Vyberte si přezdívku pro váš profil. Musí začínat textovým znakem. Vaše profilová adresa na této stránce bude mít tvar „přezdívka@%s“.'; $a->strings['Choose a nickname: '] = 'Vyberte přezdívku:'; +$a->strings['Import'] = 'Import'; $a->strings['Import your profile to this friendica instance'] = 'Importovat váš profil do této instance Friendica'; $a->strings['Note: This node explicitly contains adult content'] = 'Poznámka: Tento server explicitně obsahuje obsah pro dospělé'; +$a->strings['Parent Password:'] = 'Rodičovské heslo:'; +$a->strings['Please enter the password of the parent account to legitimize your request.'] = 'Prosím vložte heslo rodičovského účtu k legitimizaci vašeho požadavku.'; $a->strings['Registration successful. Please check your email for further instructions.'] = 'Registrace byla úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce.'; $a->strings['Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login.'] = 'Nepovedlo se odeslat e-mailovou zprávu. Zde jsou detaily vašeho účtu:
    přihlašovací jméno: %s
    heslo: %s

    Své heslo si můžete změnit po přihlášení.'; $a->strings['Registration successful.'] = 'Registrace byla úspěšná.'; $a->strings['Your registration can not be processed.'] = 'Vaši registraci nelze zpracovat.'; $a->strings['Your registration is pending approval by the site owner.'] = 'Vaše registrace čeká na schválení vlastníkem serveru.'; +$a->strings['Only logged in users are permitted to perform a search.'] = 'Pouze přihlášení uživatelé mohou prohledávat tento server.'; +$a->strings['Only one search per minute is permitted for not logged in users.'] = 'Nepřihlášení uživatelé mohou vyhledávat pouze jednou za minutu.'; +$a->strings['Items tagged with: %s'] = 'Položky označené štítkem: %s'; +$a->strings['Create a New Account'] = 'Vytvořit nový účet'; +$a->strings['Or login using OpenID: '] = 'Nebo se přihlaste pomocí OpenID: '; +$a->strings['Password: '] = 'Heslo: '; +$a->strings['Remember me'] = 'Pamatovat si mě'; +$a->strings['Forgot your password?'] = 'Zapomněl/a jste heslo?'; +$a->strings['Website Terms of Service'] = 'Podmínky používání stránky'; +$a->strings['terms of service'] = 'podmínky používání'; +$a->strings['Website Privacy Policy'] = 'Zásady soukromí serveru'; +$a->strings['privacy policy'] = 'zásady soukromí'; +$a->strings['Logged out.'] = 'Odhlášen.'; +$a->strings['Passwords do not match.'] = 'Hasla se neshodují.'; +$a->strings['Password unchanged.'] = 'Heslo nezměněno.'; +$a->strings['Current Password:'] = 'Stávající heslo:'; +$a->strings['Your current password to confirm the changes'] = 'Vaše stávající heslo k potvrzení změn'; +$a->strings['Remaining recovery codes: %d'] = 'Zbývající záložní kódy: %d'; +$a->strings['Invalid code, please retry.'] = 'Neplatný kód, prosím zkuste to znovu.'; +$a->strings['Two-factor recovery'] = 'Dvoufázové záložní kódy'; +$a->strings['

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

    '] = '

    Pokud jste ztratil/a přístup k vašemu mobilnímu zařízení , můžete zadat jeden z vašich jednorázových záložních kódů.

    '; +$a->strings['Don’t have your phone? Enter a two-factor recovery code'] = 'Nemáte svůj mobil? Zadejte dvoufázový záložní kód'; +$a->strings['Please enter a recovery code'] = 'Prosím zadejte záložní kód'; +$a->strings['Submit recovery code and complete login'] = 'Odeslat záložní kód a dokončit přihlášení'; +$a->strings['

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

    '] = '

    Otevřete na vašem zařízení aplikaci pro dvoufázové ověřování, získejte autentizační kód a ověřte svou identitu.

    '; +$a->strings['Please enter a code from your authentication app'] = 'Prosím zadejte kód z vaší autentizační aplikace'; +$a->strings['Verify code and complete login'] = 'Ověřit kód a dokončit přihlášení'; +$a->strings['Invalid email.'] = 'Neplatný e-mail.'; +$a->strings['Cannot change to that email.'] = 'Nelze změnit na tento e-mail.'; +$a->strings['Relocate message has been send to your contacts'] = 'Správa o změně umístění byla odeslána vašim kontaktům'; +$a->strings['Unable to find your profile. Please contact your admin.'] = 'Nelze najít Váš účet. Prosím kontaktujte vašeho administrátora.'; +$a->strings['Personal Page Subtypes'] = 'Podtypy osobních stránek'; +$a->strings['Account for a personal profile.'] = 'Účet pro osobní profil.'; +$a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'Účet pro organizaci, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“.'; +$a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'Účet pro zpravodaje, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“.'; +$a->strings['Account for community discussions.'] = 'Účet pro komunitní diskuze.'; +$a->strings['Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'] = 'Účet pro běžný osobní profil, který vyžaduje manuální potvrzení „Přátel“ a „Sledujících“.'; +$a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'Účet pro veřejný profil, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“.'; +$a->strings['Automatically approves all contact requests.'] = 'Automaticky potvrzuje všechny žádosti o přidání kontaktu.'; +$a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'Účet pro populární profil, který automaticky potvrzuje požadavky o přidání kontaktu jako „Přátele“.'; +$a->strings['Requires manual approval of contact requests.'] = 'Vyžaduje manuální potvrzení požadavků o přidání kontaktu.'; +$a->strings['OpenID:'] = 'OpenID:'; +$a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Volitelné) Povolit tomuto OpenID přihlášení k tomuto účtu.'; +$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.'] = 'Váš profil bude publikován v místním adresáři tohoto serveru. Vaše detaily o profilu mohou být veřejně viditelné v závislosti na systémových nastaveních.'; +$a->strings['Account Settings'] = 'Nastavení účtu'; +$a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'Vaše adresa identity je „%s“ nebo „%s“.'; +$a->strings['Password Settings'] = 'Nastavení hesla'; +$a->strings['Leave password fields blank unless changing'] = 'Pokud nechcete změnit heslo, položku hesla nevyplňujte'; +$a->strings['Password:'] = 'Heslo: '; +$a->strings['Basic Settings'] = 'Základní nastavení'; +$a->strings['Email Address:'] = 'E-mailová adresa:'; +$a->strings['Your Timezone:'] = 'Vaše časové pásmo:'; +$a->strings['Your Language:'] = 'Váš jazyk:'; +$a->strings['Set the language we use to show you friendica interface and to send you emails'] = 'Nastavte jazyk, který máme používat pro rozhraní Friendica a pro posílání e-mailů'; +$a->strings['Default Post Location:'] = 'Výchozí poloha příspěvků:'; +$a->strings['Use Browser Location:'] = 'Používat polohu dle prohlížeče:'; +$a->strings['Security and Privacy Settings'] = 'Nastavení zabezpečení a soukromí'; +$a->strings['Maximum Friend Requests/Day:'] = 'Maximální počet požadavků o přátelství za den:'; +$a->strings['(to prevent spam abuse)'] = '(ay se zabránilo spamu)'; +$a->strings['Allow friends to post to your profile page?'] = 'Povolit přátelům umisťování příspěvků na vaši profilovou stránku?'; +$a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'Vaše kontakty mohou psát příspěvky na vaši profilovou zeď. Tyto příspěvky budou přeposílány vašim kontaktům.'; +$a->strings['Allow friends to tag your posts?'] = 'Povolit přátelům označovat vaše příspěvky?'; +$a->strings['Your contacts can add additional tags to your posts.'] = 'Vaše kontakty mohou přidávat k vašim příspěvkům dodatečné štítky.'; +$a->strings['Permit unknown people to send you private mail?'] = 'Povolit neznámým lidem vám zasílat soukromé zprávy?'; +$a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Uživatelé sítě Friendica vám mohou posílat soukromé zprávy, i pokud nejsou ve vašich kontaktech.'; +$a->strings['Maximum private messages per day from unknown people:'] = 'Maximum soukromých zpráv od neznámých lidí za den:'; +$a->strings['Default Post Permissions'] = 'Výchozí oprávnění pro příspěvek'; +$a->strings['Automatically expire posts after this many days:'] = 'Automaticky expirovat příspěvky po zadaném počtu dní:'; +$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány'; +$a->strings['Notification Settings'] = 'Nastavení oznámení'; +$a->strings['Send a notification email when:'] = 'Poslat oznámení e-mailem, když:'; +$a->strings['You receive an introduction'] = 'obdržíte představení'; +$a->strings['Your introductions are confirmed'] = 'jsou vaše představení potvrzena'; +$a->strings['Someone writes on your profile wall'] = 'vám někdo napíše na vaši profilovou stránku'; +$a->strings['Someone writes a followup comment'] = 'Vám někdo napíše následný komentář'; +$a->strings['You receive a private message'] = 'obdržíte soukromou zprávu'; +$a->strings['You receive a friend suggestion'] = 'obdržíte návrh přátelství'; +$a->strings['You are tagged in a post'] = 'jste označen v příspěvku'; +$a->strings['Activate desktop notifications'] = 'Aktivovat desktopová oznámení'; +$a->strings['Show desktop popup on new notifications'] = 'Zobrazit desktopové zprávy při nových oznámeních.'; +$a->strings['Text-only notification emails'] = 'Pouze textové oznamovací e-maily'; +$a->strings['Send text only notification emails, without the html part'] = 'Posílat pouze textové oznamovací e-maily, bez HTML části.'; +$a->strings['Show detailled notifications'] = 'Zobrazit detailní oznámení'; +$a->strings['Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.'] = 'Ve výchozím nastavení jsou oznámení zhuštěné na jediné oznámení pro každou položku. Pokud je toto povolené, budou zobrazována všechna oznámení.'; +$a->strings['Advanced Account/Page Type Settings'] = 'Pokročilé nastavení účtu/stránky'; +$a->strings['Change the behaviour of this account for special situations'] = 'Změnit chování tohoto účtu ve speciálních situacích'; +$a->strings['Relocate'] = 'Přemístit'; +$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.'] = 'Pokud jste přemístil/a tento profil z jiného serveru a nějaký z vašich kontaktů nedostává vaše aktualizace, zkuste stisknout toto tlačítko.'; +$a->strings['Resend relocate message to contacts'] = 'Znovu odeslat správu o přemístění Vašim kontaktům'; +$a->strings['Addon Settings'] = 'Nastavení doplňků'; +$a->strings['No Addon settings configured'] = 'Žádná nastavení doplňků nenakonfigurována'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení.'; +$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; +$a->strings['Email access is disabled on this site.'] = 'Přístup k e-mailu je na tomto serveru zakázán.'; +$a->strings['None'] = 'Žádné'; +$a->strings['General Social Media Settings'] = 'Obecná nastavení sociálních sítí'; +$a->strings['Repair OStatus subscriptions'] = 'Opravit odběry z OStatus'; +$a->strings['Email/Mailbox Setup'] = 'Nastavení e-mailu'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Pokud chcete komunikovat pomocí této služby s vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce.'; +$a->strings['Last successful email check:'] = 'Poslední úspěšná kontrola e-mailu:'; +$a->strings['IMAP server name:'] = 'Jméno IMAP serveru:'; +$a->strings['IMAP port:'] = 'IMAP port:'; +$a->strings['Security:'] = 'Zabezpečení:'; +$a->strings['Email login name:'] = 'Přihlašovací jméno k e-mailu:'; +$a->strings['Email password:'] = 'Heslo k e-mailu:'; +$a->strings['Reply-to address:'] = 'Odpovědět na adresu:'; +$a->strings['Send public posts to all email contacts:'] = 'Poslat veřejné příspěvky na všechny e-mailové kontakty:'; +$a->strings['Action after import:'] = 'Akce po importu:'; +$a->strings['Move to folder'] = 'Přesunout do složky'; +$a->strings['Move to folder:'] = 'Přesunout do složky:'; +$a->strings['No parent user'] = 'Žádný rodičovský uživatel'; +$a->strings['Parent User'] = 'Rodičovský uživatel'; +$a->strings['Parent users have total control about this account, including the account settings. Please double check whom you give this access.'] = 'Rodičovští uživatelé mají naprostou kontrolu nad tímto účtem, včetně nastavení účtu. Prosím překontrolujte, komu tento přístup dáváte.'; +$a->strings['Delegates'] = 'Delegáti'; +$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.'] = 'Delegáti jsou schopni řídit všechny aspekty tohoto účtu/stránky, kromě základních nastavení účtu. Prosím, nedelegujte svůj osobní účet nikomu, komu zcela nedůvěřujete.'; +$a->strings['Existing Page Delegates'] = 'Stávající delegáti stránky '; +$a->strings['Potential Delegates'] = 'Potenciální delegáti'; +$a->strings['Add'] = 'Přidat'; +$a->strings['No entries.'] = 'Žádné záznamy.'; +$a->strings['The theme you chose isn\'t available.'] = 'Motiv, který jste si vybral/a, není dostupný.'; +$a->strings['%s - (Unsupported)'] = '%s - (Nepodporováno)'; +$a->strings['Display Settings'] = 'Nastavení zobrazení'; +$a->strings['General Theme Settings'] = 'Obecná nastavení motivu'; +$a->strings['Custom Theme Settings'] = 'Vlastní nastavení motivu'; +$a->strings['Content Settings'] = 'Nastavení obsahu'; +$a->strings['Theme settings'] = 'Nastavení motivu'; +$a->strings['Display Theme:'] = 'Motiv zobrazení:'; +$a->strings['Mobile Theme:'] = 'Mobilní motiv:'; +$a->strings['Number of items to display per page:'] = 'Počet položek zobrazených na stránce:'; +$a->strings['Maximum of 100 items'] = 'Maximum 100 položek'; +$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:'; +$a->strings['Update browser every xx seconds'] = 'Aktualizovat prohlížeč každých xx sekund'; +$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Minimum je 10 sekund. Zadáním hodnoty -1 funkci vypnete.'; +$a->strings['Infinite scroll'] = 'Nekonečné posouvání'; +$a->strings['Beginning of week:'] = 'Začátek týdne:'; +$a->strings['Additional Features'] = 'Dodatečné vlastnosti'; +$a->strings['Connected Apps'] = 'Připojené aplikace'; +$a->strings['Remove authorization'] = 'Odstranit oprávnění'; +$a->strings['(click to open/close)'] = '(klikněte pro otevření/zavření)'; +$a->strings['Profile Actions'] = 'Akce profilu'; +$a->strings['Edit Profile Details'] = 'Upravit podrobnosti profilu '; +$a->strings['Change Profile Photo'] = 'Změnit profilovou fotku'; +$a->strings['Profile picture'] = 'Profilový obrázek'; +$a->strings['Location'] = 'Poloha'; +$a->strings['Miscellaneous'] = 'Různé'; +$a->strings['Upload Profile Photo'] = 'Nahrát profilovou fotku'; +$a->strings['Street Address:'] = 'Ulice:'; +$a->strings['Locality/City:'] = 'Poloha/město:'; +$a->strings['Region/State:'] = 'Region / stát:'; +$a->strings['Postal/Zip Code:'] = 'PSČ:'; +$a->strings['Country:'] = 'Země:'; +$a->strings['XMPP (Jabber) address:'] = 'Adresa XMPP (Jabber):'; +$a->strings['Homepage URL:'] = 'Odkaz na domovskou stránku:'; +$a->strings['Public Keywords:'] = 'Veřejná klíčová slova:'; +$a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)'; +$a->strings['Private Keywords:'] = 'Soukromá klíčová slova:'; +$a->strings['(Used for searching profiles, never shown to others)'] = '(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)'; +$a->strings['Image size reduction [%s] failed.'] = 'Nepodařilo se snížit velikost obrázku [%s].'; +$a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nová fotka nezobrazí okamžitě.'; +$a->strings['Unable to process image'] = 'Obrázek nelze zpracovat '; +$a->strings['Crop Image'] = 'Oříznout obrázek'; +$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Prosím, ořízněte tento obrázek pro optimální zobrazení.'; +$a->strings['or'] = 'nebo'; +$a->strings['skip this step'] = 'tento krok přeskočte'; +$a->strings['select a photo from your photo albums'] = 'si vyberte fotku z vašich fotoalb'; +$a->strings['[Friendica System Notify]'] = '[Systémové oznámení Friendica]'; +$a->strings['User deleted their account'] = 'Uživatel si smazal účet'; +$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Uživatel na vašem serveru Friendica smazal svůj účet. Prosím ujistěte se, ře jsou jeho data odstraněna ze záloh dat.'; +$a->strings['The user id is %d'] = 'Uživatelské ID je %d'; +$a->strings['Remove My Account'] = 'Odstranit můj účet'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit.'; +$a->strings['Please enter your password for verification:'] = 'Prosím, zadejte své heslo pro ověření:'; $a->strings['Please enter your password to access this page.'] = 'Pro přístup k této stránce prosím zadejte své heslo.'; $a->strings['Friendiqa on my Fairphone 2...'] = 'Friendiqa na mém Fairphone 2...'; $a->strings['Two-factor authentication successfully disabled.'] = 'Dvoufázové ověřování úspěšně zakázáno.'; @@ -2404,7 +1633,6 @@ $a->strings['

    Your authenticator app is correctly configured.

    '] = '

    Vaš $a->strings['Recovery codes'] = 'Záložní kódy'; $a->strings['Remaining valid codes'] = 'Zbývající platné kódy'; $a->strings['

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

    '] = '

    Tyto jednorázové kódy mohou nahradit kód autentizační aplikace, pokud k ní ztratíte přístup.

    '; -$a->strings['Actions'] = 'Akce'; $a->strings['Current password:'] = 'Aktuální heslo:'; $a->strings['You need to provide your current password to change two-factor authentication settings.'] = 'Pro změnu nastavení dvoufázového ověřování musíte poskytnout vaše aktuální heslo.'; $a->strings['Enable two-factor authentication'] = 'Povolit dvoufázové ověřování'; @@ -2418,7 +1646,6 @@ $a->strings['When you generate new recovery codes, you must copy the new codes. $a->strings['Generate new recovery codes'] = 'Vygenerovat nové záložní kódy'; $a->strings['Next: Verification'] = 'Další: Ověření'; $a->strings['Two-factor authentication successfully activated.'] = 'Dvoufázové ověření úspěšně aktivováno.'; -$a->strings['Invalid code, please retry.'] = 'Neplatný kód, prosím zkuste to znovu.'; $a->strings['

    Or you can submit the authentication settings manually:

    Issuer
    @@ -2450,30 +1677,33 @@ $a->strings['

    Or you can submit the authentication settings manually:

    '; $a->strings['Two-factor code verification'] = 'Ověření dvoufázového kódu'; $a->strings['

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

    '] = '

    Prosím naskenujte tento QR kód vaší autentizační aplikací a zadejte poskytnutý kód.

    '; -$a->strings['

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

    %s

    '] = '

    Nebo můžete otevřít na vašem mobilním zařízení následující URL:

    %s

    '; -$a->strings['Please enter a code from your authentication app'] = 'Prosím zadejte kód z vaší autentizační aplikace'; $a->strings['Verify code and enable two-factor authentication'] = 'Ověřit kód a povolit dvoufázové ověřování'; -$a->strings['Bad Request'] = 'Špatný požadavek'; -$a->strings['Unauthorized'] = 'Neautorizováno'; -$a->strings['Forbidden'] = 'Zakázáno'; -$a->strings['Not Found'] = 'Nenalezeno'; -$a->strings['Internal Server Error'] = 'Vnitřní chyba serveru'; -$a->strings['Service Unavailable'] = 'Služba nedostupná'; -$a->strings['The server cannot or will not process the request due to an apparent client error.'] = 'Server nemůže nebo nechce zpracovat požadavek kvůli patrné chybě na straně klienta.'; -$a->strings['Authentication is required and has failed or has not yet been provided.'] = 'Je vyžadována autentikace, která neuspěla nebo ještě nebyla poskytnuta.'; -$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.'] = 'Požadavek byl platný, ale server odmítá akci. Uživatel možná nemá nezbytná oprávnění pro zdroj, nebo potřebuje účet..'; -$a->strings['The requested resource could not be found but may be available in the future.'] = 'Požadovaný zdroj nemohl být nalezen, ale může být dostupný v budoucnu.'; -$a->strings['An unexpected condition was encountered and no more specific message is suitable.'] = 'Došlo k neočekávané chybě a není vhodná žádná specifičtější zpráva.'; -$a->strings['The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later.'] = 'Server je aktuálně nedostupný (protože je přetížen nebo probíhá údržba). Prosím zkuste to znovu později.'; -$a->strings['Go back'] = 'Přejít zpět'; -$a->strings['Remaining recovery codes: %d'] = 'Zbývající záložní kódy: %d'; -$a->strings['Two-factor recovery'] = 'Dvoufázové záložní kódy'; -$a->strings['

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

    '] = '

    Pokud jste ztratil/a přístup k vašemu mobilnímu zařízení , můžete zadat jeden z vašich jednorázových záložních kódů.

    '; -$a->strings['Don’t have your phone? Enter a two-factor recovery code'] = 'Nemáte svůj mobil? Zadejte dvoufázový záložní kód'; -$a->strings['Please enter a recovery code'] = 'Prosím zadejte záložní kód'; -$a->strings['Submit recovery code and complete login'] = 'Odeslat záložní kód a dokončit přihlášení'; -$a->strings['

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

    '] = '

    Otevřete na vašem zařízení aplikaci pro dvoufázové ověřování, získejte autentizační kód a ověřte svou identitu.

    '; -$a->strings['Verify code and complete login'] = 'Ověřit kód a dokončit přihlášení'; +$a->strings['Export account'] = 'Exportovat účet'; +$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.'] = 'Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server.'; +$a->strings['Export all'] = 'Exportovat vše'; +$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.'] = 'Ve chvíli registrace, a pro poskytování komunikace mezi uživatelským účtem a jeho kontakty, musí uživatel poskytnout zobrazované jméno (pseudonym), uživatelské jméno (přezdívku) a funkční e-mailovou adresu. Jména budou dostupná na profilové stránce účtu pro kteréhokoliv návštěvníka, i kdyby ostatní detaily nebyly zobrazeny. E-mailová adresa bude použita pouze pro zasílání oznámení o interakcích, nebude ale viditelně zobrazována. Zápis účtu do adresáře účtů serveru nebo globálního adresáře účtů je nepovinný a může být ovládán v nastavení uživatele, není potřebný pro komunikaci.'; +$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.'] = 'Tato data jsou vyžadována ke komunikaci a jsou předávána serverům komunikačních partnerů a jsou tam ukládána. Uživatelé mohou zadávat dodatečná soukromá data, která mohou být odeslána na účty komunikačních partnerů.'; +$a->strings['Privacy Statement'] = 'Prohlášení o soukromí'; +$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'Požadovaná položka neexistuje nebo byla smazána.'; +$a->strings['User imports on closed servers can only be done by an administrator.'] = 'Importy uživatelů na uzavřených serverech může provést pouze administrátor.'; +$a->strings['Move account'] = 'Přesunout účet'; +$a->strings['You can import an account from another Friendica server.'] = 'Můžete importovat účet z jiného serveru Friendica.'; +$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.'] = 'Musíte exportovat svůj účet na starém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhoval/a.'; +$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Tato vlastnost je experimentální. Nemůžeme importovat kontakty za sítě OStatus (GNU social/StatusNet) nebo z Diaspory'; +$a->strings['Account file'] = 'Soubor s účtem'; +$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'K exportu Vašeho účtu jděte na „Nastavení->Exportovat osobní údaje“ a zvolte „Exportovat účet“'; +$a->strings['Error decoding account file'] = 'Chyba dekódování uživatelského účtu'; +$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Chyba! V souboru nejsou data o verzi! Je to opravdu soubor s účtem Friendica?'; +$a->strings['User \'%s\' already exists on this server!'] = 'Uživatel „%s“ již na tomto serveru existuje!'; +$a->strings['User creation error'] = 'Chyba při vytváření uživatele'; +$a->strings['%d contact not imported'] = [ + 0 => '%d kontakt nenaimportován', + 1 => '%d kontakty nenaimportovány', + 2 => '%d kontaktu nenaimportováno', + 3 => '%d kontaktů nenaimportováno', +]; +$a->strings['User profile creation error'] = 'Chyba vytváření uživatelského profilu'; +$a->strings['Done. You can now login with your username and password'] = 'Hotovo. Nyní se můžete přihlásit se svým uživatelským jménem a heslem'; $a->strings['Welcome to Friendica'] = 'Vítejte na Friendica'; $a->strings['New Member Checklist'] = 'Seznam doporučení pro nového člena'; $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.'] = 'Rádi bychom vám nabídli několik tipů a odkazů, abychom vám zpříjemnili zážitek. Kliknutím na jakoukoliv položku zobrazíte relevantní stránku. Odkaz na tuto stránku bude viditelný z vaší domovské stránky po dobu dvou týdnů od vaší první registrace a poté tiše zmizí.'; @@ -2487,7 +1717,6 @@ $a->strings['Upload a profile photo if you have not done so already. Studies hav $a->strings['Edit Your Profile'] = 'Upravte si svůj profil'; $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.'] = 'Upravte si výchozí profil podle vašich představ. Prověřte nastavení pro skrytí vašeho seznamu přátel a skrytí profilu před neznámými návštěvníky.'; $a->strings['Profile Keywords'] = 'Profilová klíčová slova'; -$a->strings['Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships.'] = 'Nastavte si nějaká veřejná klíčová slova pro výchozí profil, která popisují vaše zájmy. Můžeme vám najít další lidi s podobnými zájmy a navrhnout přátelství.'; $a->strings['Connecting'] = 'Připojuji se'; $a->strings['Importing Emails'] = 'Importuji e-maily'; $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'] = 'Pokud chcete importovat své přátele nebo mailové skupiny z INBOX vašeho e-mailu a komunikovat s nimi, zadejte na vaší stránce Nastavení kontektoru své přístupové údaje do svého e-mailového účtu'; @@ -2497,152 +1726,68 @@ $a->strings['Go to Your Site\'s Directory'] = 'Navštivte adresář vaší strá $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.'] = 'Stránka Adresář vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Najděte na jejich stránce odkaz Spojit se nebo Sledovat. Uveďte svou vlastní adresu identity, je-li požadována.'; $a->strings['Finding New People'] = 'Nalezení nových lidí'; $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.'] = 'Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin.'; -$a->strings['Group Your Contacts'] = 'Seskupte si své kontakty'; -$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.'] = 'Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť.'; $a->strings['Why Aren\'t My Posts Public?'] = 'Proč nejsou mé příspěvky veřejné?'; $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.'] = 'Friendica respektuje vaše soukromí. Ve výchozím stavu jsou vaše příspěvky viditelné pouze lidem, které označíte jako vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu'; $a->strings['Getting Help'] = 'Získání nápovědy'; $a->strings['Go to the Help Section'] = 'Navštivte sekci nápovědy'; $a->strings['Our help pages may be consulted for detail on other program features and resources.'] = 'Na stránkách Nápověda naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací.'; -$a->strings['This page is missing a url parameter.'] = 'Této stránce chybí parametr url.'; -$a->strings['The post was created'] = 'Příspěvek byl vytvořen'; -$a->strings['%d contact edited.'] = [ - 0 => '%d kontakt upraven', - 1 => '%d kontakty upraveny', - 2 => '%d kontaktu upraveno', - 3 => '%d kontaktů upraveno', -]; -$a->strings['Could not access contact record.'] = 'Nelze získat přístup k záznamu kontaktu.'; -$a->strings['Could not locate selected profile.'] = 'Nelze nalézt vybraný profil.'; -$a->strings['Contact updated.'] = 'Kontakt aktualizován.'; -$a->strings['Contact not found'] = 'Kontakt nenalezen.'; -$a->strings['Contact has been blocked'] = 'Kontakt byl zablokován'; -$a->strings['Contact has been unblocked'] = 'Kontakt byl odblokován'; -$a->strings['Contact has been ignored'] = 'Kontakt bude ignorován'; -$a->strings['Contact has been unignored'] = 'Kontakt přestal být ignorován'; -$a->strings['Contact has been archived'] = 'Kontakt byl archivován'; -$a->strings['Contact has been unarchived'] = 'Kontakt byl vrácen z archivu.'; -$a->strings['Drop contact'] = 'Zrušit kontakt'; -$a->strings['Do you really want to delete this contact?'] = 'Opravdu chcete smazat tento kontakt?'; -$a->strings['Contact has been removed.'] = 'Kontakt byl odstraněn.'; -$a->strings['You are mutual friends with %s'] = 'Jste vzájemní přátelé s uživatelem %s'; -$a->strings['You are sharing with %s'] = 'Sdílíte s uživatelem %s'; -$a->strings['%s is sharing with you'] = '%s s vámi sdílí'; -$a->strings['Private communications are not available for this contact.'] = 'Soukromá komunikace není dostupná pro tento kontakt.'; -$a->strings['Never'] = 'Nikdy'; -$a->strings['(Update was successful)'] = '(Aktualizace byla úspěšná)'; -$a->strings['(Update was not successful)'] = '(Aktualizace nebyla úspěšná)'; -$a->strings['Suggest friends'] = 'Navrhnout přátele'; -$a->strings['Network type: %s'] = 'Typ sítě: %s'; -$a->strings['Communications lost with this contact!'] = 'Komunikace s tímto kontaktem byla ztracena!'; -$a->strings['Fetch further information for feeds'] = 'Načíst další informace pro kanál'; -$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.'] = 'Načíst informace jako obrázky náhledu, nadpis a popisek z položky kanálu. Toto můžete aktivovat, pokud kanál neobsahuje moc textu. Klíčová slova jsou vzata z hlavičky meta v položce kanálu a jsou zveřejněna jako hashtagy.'; -$a->strings['Fetch information'] = 'Načíst informace'; -$a->strings['Fetch keywords'] = 'Načíst klíčová slova'; -$a->strings['Fetch information and keywords'] = 'Načíst informace a klíčová slova'; -$a->strings['Profile Visibility'] = 'Viditelnost profilu'; -$a->strings['Contact Information / Notes'] = 'Kontaktní informace / poznámky'; -$a->strings['Contact Settings'] = 'Nastavení kontaktů'; -$a->strings['Contact'] = 'Kontakt'; -$a->strings['Please choose the profile you would like to display to %s when viewing your profile securely.'] = 'Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu.'; -$a->strings['Their personal note'] = 'Jejich osobní poznámka'; -$a->strings['Edit contact notes'] = 'Upravit poznámky kontaktu'; -$a->strings['Block/Unblock contact'] = 'Blokovat / Odblokovat kontakt'; -$a->strings['Ignore contact'] = 'Ignorovat kontakt'; -$a->strings['Repair URL settings'] = 'Opravit nastavení adresy URL '; -$a->strings['View conversations'] = 'Zobrazit konverzace'; -$a->strings['Last update:'] = 'Poslední aktualizace:'; -$a->strings['Update public posts'] = 'Aktualizovat veřejné příspěvky'; -$a->strings['Update now'] = 'Aktualizovat'; -$a->strings['Unignore'] = 'Přestat ignorovat'; -$a->strings['Currently blocked'] = 'V současnosti zablokováno'; -$a->strings['Currently ignored'] = 'V současnosti ignorováno'; -$a->strings['Currently archived'] = 'Aktuálně archivován'; -$a->strings['Awaiting connection acknowledge'] = 'Čekám na potrvzení spojení'; -$a->strings['Replies/likes to your public posts may still be visible'] = 'Odpovědi/oblíbení na vaše veřejné příspěvky mohou být stále viditelné'; -$a->strings['Notification for new posts'] = 'Oznámení o nových příspěvcích'; -$a->strings['Send a notification of every new post of this contact'] = 'Posílat oznámení o každém novém příspěvku tohoto kontaktu'; -$a->strings['Blacklisted keywords'] = 'Zakázaná klíčová slova'; -$a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno „Načíst informace a klíčová slova“. Oddělujte čárkami'; -$a->strings['Show all contacts'] = 'Zobrazit všechny kontakty'; -$a->strings['Pending'] = 'Čekající'; -$a->strings['Blocked'] = 'Blokované'; -$a->strings['Only show blocked contacts'] = 'Zobrazit pouze blokované kontakty'; -$a->strings['Ignored'] = 'Ignorované'; -$a->strings['Only show ignored contacts'] = 'Zobrazit pouze ignorované kontakty'; -$a->strings['Archived'] = 'Archivované'; -$a->strings['Only show archived contacts'] = 'Zobrazit pouze archivované kontakty'; -$a->strings['Hidden'] = 'Skryté'; -$a->strings['Only show hidden contacts'] = 'Zobrazit pouze skryté kontakty'; -$a->strings['Organize your contact groups'] = 'Organizovat vaše skupiny kontaktů'; -$a->strings['Search your contacts'] = 'Prohledat vaše kontakty'; -$a->strings['Archive'] = 'Archivovat'; -$a->strings['Unarchive'] = 'Vrátit z archivu'; -$a->strings['Batch Actions'] = 'Souhrnné akce'; -$a->strings['Conversations started by this contact'] = 'Konverzace, které tento kontakt začal'; -$a->strings['Posts and Comments'] = 'Příspěvky a komentáře'; -$a->strings['View all contacts'] = 'Zobrazit všechny kontakty'; -$a->strings['View all common friends'] = 'Zobrazit všechny společné přátele'; -$a->strings['Advanced Contact Settings'] = 'Pokročilé nastavení kontaktu'; -$a->strings['Mutual Friendship'] = 'Vzájemné přátelství'; -$a->strings['is a fan of yours'] = 'je váš fanoušek'; -$a->strings['you are a fan of'] = 'jste fanouškem'; -$a->strings['Edit contact'] = 'Upravit kontakt'; -$a->strings['Toggle Blocked status'] = 'Přepínat stav Blokováno'; -$a->strings['Toggle Ignored status'] = 'Přepínat stav Ignorováno'; -$a->strings['Toggle Archive status'] = 'Přepínat stav Archivováno'; -$a->strings['Delete contact'] = 'Odstranit kontakt'; -$a->strings['Friendica Communications Server - Setup'] = 'Komunikační server Friendica - Nastavení'; -$a->strings['System check'] = 'Zkouška systému'; -$a->strings['Check again'] = 'Vyzkoušet znovu'; -$a->strings['Base settings'] = 'Základní nastavení'; -$a->strings['Host name'] = 'Jméno hostitele (host name)'; -$a->strings['Overwrite this field in case the determinated hostname isn\'t right, otherweise leave it as is.'] = 'Toto pole přepište, pokud určený název hostitele není správný, jinak to nechte tak, jak to je.'; -$a->strings['Base path to installation'] = 'Základní cesta k instalaci'; -$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.'] = 'Pokud systém nemůže detekovat správnou cestu k Vaší instalaci, zde zadejte jinou cestu. Toto nastavení by mělo být nastaveno pouze, pokud používáte omezený systém a symbolické odkazy ke kořenové složce webu.'; -$a->strings['Sub path of the URL'] = 'Podcesta URL'; -$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.'] = 'Toto pole přepište, pokud určení podcesty není správné, jinak to nechte tak, jak to je. Pokud tohle necháte prázdné, znamená to, že se instalace nachází v základním URL bez podcesty.'; -$a->strings['Database connection'] = 'Databázové spojení'; -$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Pro instalaci Friendica potřebujeme znát připojení k vaší databázi.'; -$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru.'; -$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním.'; -$a->strings['Database Server Name'] = 'Jméno databázového serveru'; -$a->strings['Database Login Name'] = 'Přihlašovací jméno k databázi'; -$a->strings['Database Login Password'] = 'Heslo k databázovému účtu '; -$a->strings['For security reasons the password must not be empty'] = 'Z bezpečnostních důvodů nesmí být heslo prázdné.'; -$a->strings['Database Name'] = 'Jméno databáze'; -$a->strings['Please select a default timezone for your website'] = 'Prosím, vyberte výchozí časové pásmo pro váš server'; -$a->strings['Site settings'] = 'Nastavení webu'; -$a->strings['Site administrator email address'] = 'E-mailová adresa administrátora webu'; -$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'Vaše e-mailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní.'; -$a->strings['System Language:'] = 'Systémový jazyk'; -$a->strings['Set the default language for your Friendica installation interface and to send emails.'] = 'Nastavte si výchozí jazyk pro vaše instalační rozhraní Friendica a pro odesílání e-mailů.'; -$a->strings['Your Friendica site database has been installed.'] = 'Databáze vašeho serveru Friendica byla nainstalována.'; -$a->strings['Installation finished'] = 'Instalace dokončena'; -$a->strings['

    What next

    '] = '

    Co dál

    '; -$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the worker.'] = 'DŮLEŽITÉ: Budete si muset [manuálně] nastavit naplánovaný úkol pro pracovníka.'; -$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.'] = 'Přejděte k registrační stránce vašeho nového serveru Friendica a zaregistrujte se jako nový uživatel. Nezapomeňte použít stejný e-mail, který jste zadal/a jako administrátorský e-mail. To vám umožní navštívit panel pro administraci stránky.'; -$a->strings['This entry was edited'] = 'Tato položka byla upravena'; +$a->strings['%s liked %s\'s post'] = 'Uživateli %s se líbí příspěvek uživatele %s'; +$a->strings['%s disliked %s\'s post'] = 'Uživateli %s se nelíbí příspěvek uživatele %s'; +$a->strings['%s is attending %s\'s event'] = '%s se zúčastní události %s'; +$a->strings['%s is not attending %s\'s event'] = '%s se nezúčastní události %s'; +$a->strings['%s is now friends with %s'] = '%s se nyní přátelí s uživatelem %s'; +$a->strings['%s commented on %s\'s post'] = '%s okomentoval/a příspěvek uživatele %s'; +$a->strings['%s created a new post'] = '%s vytvořil nový příspěvek'; +$a->strings['Friend Suggestion'] = 'Návrh přátelství'; +$a->strings['Friend/Connect Request'] = 'Požadavek o přátelství/spojení'; +$a->strings['New Follower'] = 'Nový sledující'; +$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s vám poslal/a novou soukromou zprávu na %2$s.'; +$a->strings['a private message'] = 'soukromou zprávu'; +$a->strings['%1$s sent you %2$s.'] = '%1$s vám poslal/a %2$s.'; +$a->strings['Please visit %s to view and/or reply to your private messages.'] = 'Pro zobrazení vašich soukromých zpráv a možnost na ně odpovědět prosím navštivte %s.'; +$a->strings['%s commented on an item/conversation you have been following.'] = '%s okomentoval/a vámi sledovanou položku/konverzaci.'; +$a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět.'; +$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s přidal/a příspěvek na vaši profilovou zeď na %2$s'; +$a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s přidal/a příspěvek na [url=%2$s]vaši zeď[/url]'; +$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Obdržel/a jste představení od uživatele „%1$s“ na %2$s'; +$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Obdržel/a jste [url=%1$s]představení[/url] od uživatele %2$s.'; +$a->strings['You may visit their profile at %s'] = 'Můžete navštívit jeho/její profil na %s'; +$a->strings['Please visit %s to approve or reject the introduction.'] = 'Prosím navštivte %s pro schválení či zamítnutí představení.'; +$a->strings['%1$s is sharing with you at %2$s'] = 'Uživatel %1$s s vámi sdílí na %2$s'; +$a->strings['You have a new follower at %2$s : %1$s'] = 'Máte nového sledujícího na %2$s: %1$s'; +$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = 'Obdržel/a jste návrh přátelství od uživatele „%1$s“ na %2$s'; +$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = 'Obdržel/a jste [url=%1$s]návrh přátelství[/url] s uživatelem %2$s od uživatele %3$s.'; +$a->strings['Name:'] = 'Jméno:'; +$a->strings['Photo:'] = 'Fotka:'; +$a->strings['Please visit %s to approve or reject the suggestion.'] = 'Prosím navštivte %s pro schválení či zamítnutí návrhu.'; +$a->strings['\'%1$s\' has accepted your connection request at %2$s'] = '„%1$s“ přijal/a váš požadavek o spojení na %2$s'; +$a->strings['%2$s has accepted your [url=%1$s]connection request[/url].'] = '%2$s přijal/a váš [url=%1$s]požadavek o spojení[/url].'; +$a->strings['You are now mutual friends and may exchange status updates, photos, and email without restriction.'] = 'Jste nyní vzájemní přátelé a můžete si vyměňovat stavové zprávy, fotky a e-maily bez omezení.'; +$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'Pokud chcete provést změny s tímto vztahem, prosím navštivte %s.'; +$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“ se rozhodl/a vás přijmout jako fanouška, což omezuje některé formy komunikace - například soukoromé zprávy a některé interakce s profily. Pokud je toto stránka celebrity či komunity, byla tato nastavení aplikována automaticky.'; +$a->strings['\'%1$s\' may choose to extend this into a two-way or more permissive relationship in the future.'] = '„%1$s“ se může rozhodnout tento vztah v budoucnosti rozšířit do oboustranného či jiného liberálnějšího vztahu.'; +$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'Prosím navštivte %s pokud chcete změnit tento vztah.'; +$a->strings['registration request'] = 'požadavek o registraci'; +$a->strings['You\'ve received a registration request from \'%1$s\' at %2$s'] = 'Obdržel/a jste požadavek o registraci od uživatele „%1$s“ na %2$s'; +$a->strings['You\'ve received a [url=%1$s]registration request[/url] from %2$s.'] = 'Obdržel/a jste [url=%1$s]požadavek o registraci[/url] od uživatele %2$s.'; +$a->strings['Full Name: %s +Site Location: %s +Login Name: %s (%s)'] = 'Celé jméno: %s +Adresa stránky: %s +Přihlašovací jméno: %s (%s)'; +$a->strings['Please visit %s to approve or reject the request.'] = 'Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku.'; +$a->strings['This message was sent to you by %s, a member of the Friendica social network.'] = 'Tuto zprávu vám poslal/a %s, člen sociální sítě Friendica.'; +$a->strings['You may visit them online at %s'] = 'Můžete jej/ji navštívit online na adrese %s'; +$a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesílatele odpovědí na tuto zprávu.'; +$a->strings['%s posted an update.'] = '%s poslal/a aktualizaci.'; $a->strings['Private Message'] = 'Soukromá zpráva'; -$a->strings['Delete locally'] = 'Smazat lokálně'; +$a->strings['This entry was edited'] = 'Tato položka byla upravena'; +$a->strings['Edit'] = 'Upravit'; $a->strings['Delete globally'] = 'Smazat globálně'; $a->strings['Remove locally'] = 'Odstranit lokálně'; -$a->strings['save to folder'] = 'uložit do složky'; $a->strings['I will attend'] = 'zúčastním se'; $a->strings['I will not attend'] = 'nezúčastním se'; $a->strings['I might attend'] = 'mohl bych se zúčastnit'; -$a->strings['ignore thread'] = 'ignorovat vlákno'; -$a->strings['unignore thread'] = 'přestat ignorovat vlákno'; -$a->strings['toggle ignore status'] = 'přepínat stav ignorování'; -$a->strings['add star'] = 'přidat hvězdu'; -$a->strings['remove star'] = 'odebrat hvězdu'; -$a->strings['toggle star status'] = 'přepínat hvězdu'; -$a->strings['starred'] = 's hvězdou'; -$a->strings['add tag'] = 'přidat štítek'; -$a->strings['like'] = 'líbí se mi'; -$a->strings['dislike'] = 'nelíbí se mi'; -$a->strings['Share this'] = 'Sdílet toto'; -$a->strings['share'] = 'sdílet'; $a->strings['to'] = 'na'; $a->strings['via'] = 'přes'; $a->strings['Wall-to-Wall'] = 'Ze zdi na zeď'; @@ -2661,19 +1806,10 @@ $a->strings['%d comment'] = [ ]; $a->strings['Show more'] = 'Zobrazit více'; $a->strings['Show fewer'] = 'Zobrazit méně'; -$a->strings['You must be logged in to use addons. '] = 'Pro použití doplňků musíte být přihlášen/a.'; -$a->strings['Delete this item?'] = 'Odstranit tuto položku?'; -$a->strings['toggle mobile'] = 'přepínat mobilní zobrazení'; -$a->strings['Legacy module file not found: %s'] = 'Soubor legacy modulu nenalezen: %s'; -$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.'] = 'Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním.'; -$a->strings['Could not find any unarchived contact entry for this URL (%s)'] = 'Nelze najít žádný nearchivovaný záznam kontaktu pro tuto URL adresu (%s)'; -$a->strings['The contact entries have been archived'] = 'Záznamy kontaktů byly archivovány'; -$a->strings['Enter new password: '] = 'Zadejte nové heslo'; -$a->strings['Post update version number has been set to %s.'] = 'Číslo verze post update bylo nastaveno na %s.'; -$a->strings['Check for pending update actions.'] = 'Zkontrolovat čekající akce po aktualizaci.'; -$a->strings['Done.'] = 'Hotovo.'; -$a->strings['Execute pending post updates.'] = 'Provést čekající aktualizace příspěvků.'; -$a->strings['All pending post updates are done.'] = 'Všechny čekající aktualizace příspěvků jsou hotové.'; -$a->strings['No system theme config value set.'] = 'Není nastavena konfigurační hodnota systémového motivu.'; -$a->strings['%s: Updating author-id and owner-id in item and thread table. '] = '%s: Aktualizuji author-id a owner-id v tabulce položek a vláken.'; -$a->strings['%s: Updating post-type.'] = '%s: Aktualizuji post-type.'; +$a->strings['%s is now following %s.'] = '%s nyní sleduje %s.'; +$a->strings['following'] = 'sleduji'; +$a->strings['%s stopped following %s.'] = '%s přestal/a sledovat uživatele %s.'; +$a->strings['stopped following'] = 'přestal/a sledovat'; +$a->strings['Login failed.'] = 'Přihlášení se nezdařilo.'; +$a->strings['Welcome %s'] = 'Vítejte, %s'; +$a->strings['Please upload a profile photo.'] = 'Prosím nahrajte profilovou fotku.'; diff --git a/view/lang/da-dk/strings.php b/view/lang/da-dk/strings.php index e876312cb..ce1c7c4a0 100644 --- a/view/lang/da-dk/strings.php +++ b/view/lang/da-dk/strings.php @@ -1,7 +1,7 @@ , 2017 # Tobias Diekershoff , 2011 # Ben , 2018 -# Copiis Praeesse , 2018-2020 +# 5556951c8fe4eaeb21d9d8982db64bf3_fcb23ea , 2018-2020,2023 # David Rabel , 2016 # Erkan Yilmaz , 2011 +# Raroun, 2023 # Fabian Dost , 2012 # foss , 2014,2016-2017,2020,2022 # Frank Dieckmann , 2015 # Fabian Dost , 2012 # greeneyedred , 2012 +# haheute , 2023 # Hauke , 2012,2018 # Herbert Thielen , 2017 # hoergen , 2018-2019 @@ -24,14 +26,18 @@ # joe slam , 2020 # Johannes Schwab , 2015 # leberwurscht , 2012 +# Marek Bachmann, 2022 # marmor , 2012 # Martin Schmitt , 2012 # Matthias Moritz , 2012 +# loma1 , 2023 # loma1 , 2019 # Oliver , 2015 # Oliver , 2012 +# foss , 2022 # rabuzarus , 2016-2019 # Ralf Thees , 2019 +# Raroun, 2023 # René Wagner , 2019-2020 # a4e12f943b784a073d5fd49662354257_daaba5c , 2013 # a4e12f943b784a073d5fd49662354257_daaba5c , 2012-2013 @@ -40,7 +46,8 @@ # Steffen K9, 2019 # Tobias Diekershoff , 2013-2016 # Tobias Diekershoff , 2011-2013 -# Tobias Diekershoff , 2016-2022 +# Tobias Diekershoff , 2016-2023 +# Tobias Quathamer, 2023 # zottel , 2011-2012 # tschlotfeldt , 2011 # Ulf Rompe , 2019 @@ -49,540 +56,80 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-24 18:18-0400\n" +"POT-Creation-Date: 2023-10-15 13:49+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" -"Last-Translator: Tobias Diekershoff , 2016-2022\n" -"Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" +"Last-Translator: Tobias Diekershoff , 2016-2023\n" +"Language-Team: German (http://app.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mod/cal.php:45 mod/cal.php:49 mod/follow.php:39 mod/redir.php:35 -#: mod/redir.php:176 src/Module/Conversation/Community.php:193 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 -#: src/Module/Item/Star.php:42 -msgid "Access denied." -msgstr "Zugriff verweigert." - -#: mod/cal.php:62 mod/cal.php:79 mod/photos.php:68 mod/photos.php:139 -#: mod/photos.php:793 src/Model/Profile.php:234 src/Module/Feed.php:72 -#: src/Module/HCard.php:51 src/Module/Profile/Common.php:40 -#: src/Module/Profile/Common.php:51 src/Module/Profile/Contacts.php:39 -#: src/Module/Profile/Contacts.php:49 src/Module/Profile/Media.php:38 -#: src/Module/Profile/Status.php:58 src/Module/Register.php:267 -#: src/Module/RemoteFollow.php:59 -msgid "User not found." -msgstr "Benutzer nicht gefunden." - -#: mod/cal.php:121 mod/display.php:261 src/Module/Profile/Profile.php:93 -#: src/Module/Profile/Profile.php:108 src/Module/Profile/Status.php:109 -#: src/Module/Update/Profile.php:55 -msgid "Access to this profile has been restricted." -msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." - -#: mod/cal.php:242 mod/events.php:375 src/Content/Nav.php:196 -#: src/Content/Nav.php:260 src/Module/BaseProfile.php:84 -#: src/Module/BaseProfile.php:95 view/theme/frio/theme.php:241 -#: view/theme/frio/theme.php:245 -msgid "Events" -msgstr "Veranstaltungen" - -#: mod/cal.php:243 mod/events.php:376 -msgid "View" -msgstr "Ansehen" - -#: mod/cal.php:244 mod/events.php:378 -msgid "Previous" -msgstr "Vorherige" - -#: mod/cal.php:245 mod/events.php:379 src/Module/Install.php:214 -msgid "Next" -msgstr "Nächste" - -#: mod/cal.php:248 mod/events.php:384 src/Model/Event.php:460 -msgid "today" -msgstr "Heute" - -#: mod/cal.php:249 mod/events.php:385 src/Model/Event.php:461 -#: src/Util/Temporal.php:341 -msgid "month" -msgstr "Monat" - -#: mod/cal.php:250 mod/events.php:386 src/Model/Event.php:462 -#: src/Util/Temporal.php:342 -msgid "week" -msgstr "Woche" - -#: mod/cal.php:251 mod/events.php:387 src/Model/Event.php:463 -#: src/Util/Temporal.php:343 -msgid "day" -msgstr "Tag" - -#: mod/cal.php:252 mod/events.php:388 -msgid "list" -msgstr "Liste" - -#: mod/cal.php:264 src/Console/User.php:182 src/Model/User.php:663 -#: 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:74 -msgid "User not found" -msgstr "Nutzer nicht gefunden" - -#: mod/cal.php:273 -msgid "This calendar format is not supported" -msgstr "Dieses Kalenderformat wird nicht unterstützt." - -#: mod/cal.php:275 -msgid "No exportable data found" -msgstr "Keine exportierbaren Daten gefunden" - -#: mod/cal.php:291 -msgid "calendar" -msgstr "Kalender" - -#: mod/display.php:142 mod/photos.php:797 -#: src/Module/Conversation/Community.php:187 src/Module/Directory.php:48 -#: src/Module/Search/Index.php:64 -msgid "Public access denied." -msgstr "Öffentlicher Zugriff verweigert." - -#: mod/display.php:212 mod/display.php:286 -msgid "The requested item doesn't exist or has been deleted." -msgstr "Der angeforderte Beitrag existiert nicht oder wurde gelöscht." - -#: mod/display.php:366 -msgid "The feed for this item is unavailable." -msgstr "Der Feed für diesen Beitrag ist nicht verfügbar." - -#: mod/editpost.php:38 mod/events.php:218 mod/follow.php:56 mod/follow.php:130 -#: mod/item.php:181 mod/item.php:186 mod/item.php:864 mod/message.php:69 -#: mod/message.php:114 mod/notes.php:44 mod/ostatus_subscribe.php:33 -#: mod/photos.php:159 mod/photos.php:886 mod/repair_ostatus.php:31 -#: mod/settings.php:40 mod/settings.php:50 mod/settings.php:156 -#: mod/suggest.php:34 mod/uimport.php:33 mod/unfollow.php:35 -#: mod/unfollow.php:50 mod/unfollow.php:82 mod/wall_attach.php:66 -#: mod/wall_attach.php:68 mod/wall_upload.php:88 mod/wall_upload.php:90 -#: mod/wallmessage.php:37 mod/wallmessage.php:56 mod/wallmessage.php:90 -#: mod/wallmessage.php:110 src/Module/Attach.php:56 src/Module/BaseApi.php:94 -#: src/Module/BaseNotifications.php:98 src/Module/Contact/Advanced.php:60 -#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:38 -#: src/Module/FriendSuggest.php:57 src/Module/Group.php:40 -#: src/Module/Group.php:83 src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/Profile/Common.php:55 src/Module/Profile/Contacts.php:55 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:77 src/Module/Register.php:90 -#: src/Module/Register.php:206 src/Module/Register.php:245 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 -#: src/Module/Settings/Account.php:410 src/Module/Settings/Delegation.php:41 -#: src/Module/Settings/Delegation.php:69 src/Module/Settings/Display.php:41 -#: src/Module/Settings/Display.php:119 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:111 -#: src/Module/Settings/UserExport.php:84 -#: src/Module/Settings/UserExport.php:118 -#: src/Module/Settings/UserExport.php:219 -#: src/Module/Settings/UserExport.php:239 -#: src/Module/Settings/UserExport.php:304 -msgid "Permission denied." -msgstr "Zugriff verweigert." - -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Beitrag nicht gefunden" - -#: mod/editpost.php:64 -msgid "Edit post" -msgstr "Beitrag bearbeiten" - -#: mod/editpost.php:91 mod/notes.php:56 src/Content/Text/HTML.php:882 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -msgid "Save" -msgstr "Speichern" - -#: mod/editpost.php:92 mod/photos.php:1333 src/Content/Conversation.php:345 -#: src/Object/Post.php:992 -msgid "Loading..." -msgstr "lädt..." - -#: mod/editpost.php:93 mod/message.php:201 mod/message.php:357 -#: mod/wallmessage.php:140 src/Content/Conversation.php:346 -msgid "Upload photo" -msgstr "Foto hochladen" - -#: mod/editpost.php:94 src/Content/Conversation.php:347 -msgid "upload photo" -msgstr "Bild hochladen" - -#: mod/editpost.php:95 src/Content/Conversation.php:348 -msgid "Attach file" -msgstr "Datei anhängen" - -#: mod/editpost.php:96 src/Content/Conversation.php:349 -msgid "attach file" -msgstr "Datei anhängen" - -#: mod/editpost.php:97 mod/message.php:202 mod/message.php:358 -#: mod/wallmessage.php:141 -msgid "Insert web link" -msgstr "Einen Link einfügen" - -#: mod/editpost.php:98 -msgid "web link" -msgstr "Weblink" - -#: mod/editpost.php:99 -msgid "Insert video link" -msgstr "Video-Adresse einfügen" - -#: mod/editpost.php:100 -msgid "video link" -msgstr "Video-Link" - -#: mod/editpost.php:101 -msgid "Insert audio link" -msgstr "Audio-Adresse einfügen" - -#: mod/editpost.php:102 -msgid "audio link" -msgstr "Audio-Link" - -#: mod/editpost.php:103 src/Content/Conversation.php:359 -#: src/Module/Item/Compose.php:200 -msgid "Set your location" -msgstr "Deinen Standort festlegen" - -#: mod/editpost.php:104 src/Content/Conversation.php:360 -msgid "set location" -msgstr "Ort setzen" - -#: mod/editpost.php:105 src/Content/Conversation.php:361 -msgid "Clear browser location" -msgstr "Browser-Standort leeren" - -#: mod/editpost.php:106 src/Content/Conversation.php:362 -msgid "clear location" -msgstr "Ort löschen" - -#: mod/editpost.php:107 mod/message.php:203 mod/message.php:360 -#: mod/photos.php:1484 mod/wallmessage.php:142 -#: src/Content/Conversation.php:375 src/Content/Conversation.php:721 -#: src/Module/Item/Compose.php:204 src/Object/Post.php:537 -msgid "Please wait" -msgstr "Bitte warten" - -#: mod/editpost.php:108 src/Content/Conversation.php:376 -msgid "Permission settings" -msgstr "Berechtigungseinstellungen" - -#: mod/editpost.php:116 src/Core/ACL.php:326 -msgid "CC: email addresses" -msgstr "Cc: E-Mail-Addressen" - -#: mod/editpost.php:117 src/Content/Conversation.php:386 -msgid "Public post" -msgstr "Öffentlicher Beitrag" - -#: mod/editpost.php:120 src/Content/Conversation.php:364 -#: src/Module/Item/Compose.php:205 -msgid "Set title" -msgstr "Titel setzen" - -#: mod/editpost.php:122 src/Content/Conversation.php:366 -#: src/Module/Item/Compose.php:206 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (kommasepariert)" - -#: mod/editpost.php:123 src/Core/ACL.php:327 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Z.B.: bob@example.com, mary@example.com" - -#: mod/editpost.php:128 mod/events.php:514 mod/photos.php:1332 -#: mod/photos.php:1388 mod/photos.php:1462 src/Content/Conversation.php:390 -#: src/Module/Item/Compose.php:199 src/Object/Post.php:1002 -msgid "Preview" -msgstr "Vorschau" - -#: mod/editpost.php:130 mod/fbrowser.php:119 mod/fbrowser.php:146 -#: mod/follow.php:144 mod/photos.php:999 mod/photos.php:1100 mod/tagrm.php:35 -#: mod/tagrm.php:127 mod/unfollow.php:97 src/Content/Conversation.php:393 -#: src/Module/Contact/Revoke.php:109 src/Module/RemoteFollow.php:128 -#: src/Module/Security/TwoFactor/SignOut.php:126 -msgid "Cancel" -msgstr "Abbrechen" - -#: mod/editpost.php:134 src/Content/Conversation.php:350 -#: src/Module/Item/Compose.php:190 src/Object/Post.php:993 -msgid "Bold" -msgstr "Fett" - -#: mod/editpost.php:135 src/Content/Conversation.php:351 -#: src/Module/Item/Compose.php:191 src/Object/Post.php:994 -msgid "Italic" -msgstr "Kursiv" - -#: mod/editpost.php:136 src/Content/Conversation.php:352 -#: src/Module/Item/Compose.php:192 src/Object/Post.php:995 -msgid "Underline" -msgstr "Unterstrichen" - -#: mod/editpost.php:137 src/Content/Conversation.php:353 -#: src/Module/Item/Compose.php:193 src/Object/Post.php:996 -msgid "Quote" -msgstr "Zitat" - -#: mod/editpost.php:138 src/Content/Conversation.php:354 -#: src/Module/Item/Compose.php:194 src/Object/Post.php:997 -msgid "Code" -msgstr "Code" - -#: mod/editpost.php:139 src/Content/Conversation.php:356 -#: src/Module/Item/Compose.php:196 src/Object/Post.php:999 -msgid "Link" -msgstr "Link" - -#: mod/editpost.php:140 src/Content/Conversation.php:357 -#: src/Module/Item/Compose.php:197 src/Object/Post.php:1000 -msgid "Link or Media" -msgstr "Link oder Mediendatei" - -#: mod/editpost.php:143 src/Content/Conversation.php:400 -#: src/Content/Widget/VCard.php:113 src/Model/Profile.php:465 -#: src/Module/Admin/Logs/View.php:93 -msgid "Message" -msgstr "Nachricht" - -#: mod/editpost.php:144 src/Content/Conversation.php:401 -#: src/Module/Settings/TwoFactor/Trusted.php:139 -msgid "Browser" -msgstr "Browser" - -#: mod/editpost.php:145 mod/events.php:519 mod/photos.php:934 -#: mod/photos.php:1286 src/Content/Conversation.php:377 -msgid "Permissions" -msgstr "Berechtigungen" - -#: mod/editpost.php:147 src/Content/Conversation.php:403 -msgid "Open Compose page" -msgstr "Composer Seite öffnen" - -#: mod/events.php:124 mod/events.php:126 -msgid "Event can not end before it has started." -msgstr "Die Veranstaltung kann nicht enden, bevor sie beginnt." - -#: mod/events.php:132 mod/events.php:134 -msgid "Event title and start time are required." -msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." - -#: mod/events.php:377 -msgid "Create New Event" -msgstr "Neue Veranstaltung erstellen" - -#: mod/events.php:475 src/Module/Admin/Logs/View.php:97 -msgid "Event details" -msgstr "Veranstaltungsdetails" - -#: mod/events.php:476 -msgid "Starting date and Title are required." -msgstr "Anfangszeitpunkt und Titel werden benötigt" - -#: mod/events.php:477 mod/events.php:482 -msgid "Event Starts:" -msgstr "Veranstaltungsbeginn:" - -#: mod/events.php:477 mod/events.php:507 -#: src/Module/Admin/Blocklist/Server/Add.php:136 -#: src/Module/Admin/Blocklist/Server/Add.php:138 -#: src/Module/Admin/Blocklist/Server/Import.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:82 -#: src/Module/Admin/Blocklist/Server/Index.php:83 -#: src/Module/Admin/Blocklist/Server/Index.php:111 -#: src/Module/Admin/Blocklist/Server/Index.php:112 -#: src/Module/Admin/Item/Delete.php:69 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:207 src/Module/Install.php:240 -#: src/Module/Install.php:245 src/Module/Install.php:264 -#: src/Module/Install.php:275 src/Module/Install.php:280 -#: src/Module/Install.php:286 src/Module/Install.php:291 -#: src/Module/Install.php:305 src/Module/Install.php:320 -#: src/Module/Install.php:347 src/Module/Register.php:148 -#: src/Module/Security/TwoFactor/Verify.php:105 -#: src/Module/Settings/TwoFactor/Index.php:140 -#: src/Module/Settings/TwoFactor/Verify.php:154 -msgid "Required" -msgstr "Benötigt" - -#: mod/events.php:490 mod/events.php:513 -msgid "Finish date/time is not known or not relevant" -msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" - -#: mod/events.php:492 mod/events.php:497 -msgid "Event Finishes:" -msgstr "Veranstaltungsende:" - -#: mod/events.php:503 src/Module/Profile/Profile.php:171 -#: src/Module/Settings/Profile/Index.php:238 -msgid "Description:" -msgstr "Beschreibung" - -#: mod/events.php:505 src/Content/Widget/VCard.php:104 src/Model/Event.php:80 -#: src/Model/Event.php:107 src/Model/Event.php:469 src/Model/Event.php:919 -#: src/Model/Profile.php:373 src/Module/Contact/Profile.php:370 -#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 -#: src/Module/Profile/Profile.php:193 -msgid "Location:" -msgstr "Ort:" - -#: mod/events.php:507 mod/events.php:509 -msgid "Title:" -msgstr "Titel:" - -#: mod/events.php:510 mod/events.php:511 -msgid "Share this event" -msgstr "Veranstaltung teilen" - -#: mod/events.php:516 mod/message.php:204 mod/message.php:359 -#: mod/photos.php:916 mod/photos.php:1020 mod/photos.php:1290 -#: mod/photos.php:1331 mod/photos.php:1387 mod/photos.php:1461 -#: src/Module/Admin/Item/Source.php:60 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Profile.php:328 -#: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:145 -#: src/Module/Install.php:252 src/Module/Install.php:294 -#: src/Module/Install.php:331 src/Module/Invite.php:178 -#: src/Module/Item/Compose.php:189 src/Module/Profile/Profile.php:246 -#: src/Module/Settings/Profile/Index.php:222 src/Object/Post.php:991 -#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171 -#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135 -msgid "Submit" -msgstr "Senden" - -#: mod/events.php:517 src/Module/Profile/Profile.php:247 -msgid "Basic" -msgstr "Allgemein" - -#: mod/events.php:518 src/Module/Admin/Site.php:437 src/Module/Contact.php:477 -#: src/Module/Profile/Profile.php:248 -msgid "Advanced" -msgstr "Erweitert" - -#: mod/events.php:535 -msgid "Failed to remove event" -msgstr "Entfernen der Veranstaltung fehlgeschlagen" - -#: mod/fbrowser.php:61 src/Content/Nav.php:194 src/Module/BaseProfile.php:64 -#: view/theme/frio/theme.php:239 -msgid "Photos" -msgstr "Bilder" - -#: mod/fbrowser.php:121 mod/fbrowser.php:148 -#: src/Module/Settings/Profile/Photo/Index.php:128 -msgid "Upload" -msgstr "Hochladen" - -#: mod/fbrowser.php:143 -msgid "Files" -msgstr "Dateien" - -#: mod/follow.php:74 mod/unfollow.php:96 src/Module/RemoteFollow.php:127 -msgid "Submit Request" -msgstr "Anfrage abschicken" - -#: mod/follow.php:84 -msgid "You already added this contact." -msgstr "Du hast den Kontakt bereits hinzugefügt." - -#: mod/follow.php:100 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "Der Netzwerktyp wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden." - -#: mod/follow.php:108 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Diaspora-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden." - -#: mod/follow.php:113 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatus-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden." - -#: mod/follow.php:138 src/Content/Item.php:404 src/Content/Widget.php:80 -#: src/Model/Contact.php:1194 src/Model/Contact.php:1205 -#: view/theme/vier/theme.php:198 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" - -#: mod/follow.php:139 src/Module/RemoteFollow.php:126 -msgid "Please answer the following:" -msgstr "Bitte beantworte folgendes:" - -#: mod/follow.php:140 mod/unfollow.php:94 -msgid "Your Identity Address:" -msgstr "Adresse Deines Profils:" - -#: mod/follow.php:141 mod/unfollow.php:100 -#: src/Module/Admin/Blocklist/Contact.php:116 -#: src/Module/Contact/Profile.php:366 -#: src/Module/Notifications/Introductions.php:129 -#: src/Module/Notifications/Introductions.php:198 -msgid "Profile URL" -msgstr "Profil URL" - -#: mod/follow.php:142 src/Module/Contact/Profile.php:378 -#: src/Module/Notifications/Introductions.php:191 -#: src/Module/Profile/Profile.php:206 -msgid "Tags:" -msgstr "Tags:" - -#: mod/follow.php:153 -#, php-format -msgid "%s knows you" -msgstr "%skennt dich" - -#: mod/follow.php:154 -msgid "Add a personal note:" -msgstr "Eine persönliche Notiz beifügen:" - -#: mod/follow.php:163 mod/unfollow.php:109 src/Module/BaseProfile.php:59 -#: src/Module/Contact.php:447 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" - -#: mod/follow.php:191 -msgid "The contact could not be added." -msgstr "Der Kontakt konnte nicht hinzugefügt werden." - -#: mod/item.php:131 mod/item.php:135 +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 msgid "Unable to locate original post." msgstr "Konnte den Originalbeitrag nicht finden." -#: mod/item.php:337 mod/item.php:342 -msgid "Empty post discarded." -msgstr "Leerer Beitrag wurde verworfen." - -#: mod/item.php:674 +#: mod/item.php:138 msgid "Post updated." msgstr "Beitrag aktualisiert." -#: mod/item.php:684 mod/item.php:689 +#: mod/item.php:203 mod/item.php:207 msgid "Item wasn't stored." msgstr "Eintrag wurde nicht gespeichert" -#: mod/item.php:700 +#: mod/item.php:217 msgid "Item couldn't be fetched." msgstr "Eintrag konnte nicht geholt werden." -#: mod/item.php:840 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "Leerer Beitrag wurde verworfen." + +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 -#: src/Module/Debug/ItemBody.php:57 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Beitrag nicht gefunden." +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 +#: src/Module/Invite.php:42 src/Module/Invite.php:131 +#: src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Channels.php:56 src/Module/Settings/Channels.php:114 +#: src/Module/Settings/Delegation.php:90 src/Module/Settings/Display.php:90 +#: src/Module/Settings/Display.php:193 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:112 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/User/Import.php:84 src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "Zugriff verweigert." + #: mod/lostpass.php:40 msgid "No valid account found." msgstr "Kein gültiges Konto gefunden." @@ -649,7 +196,7 @@ msgid "" "your email for further instructions." msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet." -#: mod/lostpass.php:130 src/Module/Security/Login.php:161 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " msgstr "Spitzname oder E-Mail:" @@ -657,7 +204,7 @@ msgstr "Spitzname oder E-Mail:" msgid "Reset" msgstr "Zurücksetzen" -#: mod/lostpass.php:146 src/Module/Security/Login.php:173 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 msgid "Password Reset" msgstr "Passwort zurücksetzen" @@ -717,942 +264,600 @@ msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin msgid "Your password has been changed at %s" msgstr "Auf %s wurde dein Passwort geändert" -#: mod/match.php:62 -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:93 src/Module/BaseSearch.php:119 -msgid "No matches" -msgstr "Keine Übereinstimmungen" - -#: mod/match.php:98 -msgid "Profile Match" -msgstr "Profilübereinstimmungen" - -#: mod/message.php:46 mod/message.php:129 src/Content/Nav.php:288 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 msgid "New Message" msgstr "Neue Nachricht" -#: mod/message.php:83 mod/wallmessage.php:70 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 msgid "No recipient selected." msgstr "Kein Empfänger gewählt." -#: mod/message.php:88 +#: mod/message.php:87 msgid "Unable to locate contact information." msgstr "Konnte die Kontaktinformationen nicht finden." -#: mod/message.php:92 mod/wallmessage.php:76 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 msgid "Message could not be sent." msgstr "Nachricht konnte nicht gesendet werden." -#: mod/message.php:96 mod/wallmessage.php:79 +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 msgid "Message collection failure." msgstr "Konnte Nachrichten nicht abrufen." -#: mod/message.php:123 src/Module/Notifications/Introductions.php:135 +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 #: src/Module/Notifications/Introductions.php:170 #: src/Module/Notifications/Notification.php:85 msgid "Discard" msgstr "Verwerfen" -#: mod/message.php:136 src/Content/Nav.php:285 view/theme/frio/theme.php:246 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" msgstr "Nachrichten" -#: mod/message.php:149 +#: mod/message.php:148 msgid "Conversation not found." msgstr "Unterhaltung nicht gefunden." -#: mod/message.php:154 +#: mod/message.php:153 msgid "Message was not deleted." msgstr "Nachricht wurde nicht gelöscht" -#: mod/message.php:169 +#: mod/message.php:168 msgid "Conversation was not removed." msgstr "Unterhaltung wurde nicht entfernt" -#: mod/message.php:183 mod/message.php:289 mod/wallmessage.php:124 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 msgid "Please enter a link URL:" msgstr "Bitte gib die URL des Links ein:" -#: mod/message.php:192 mod/wallmessage.php:129 +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 msgid "Send Private Message" msgstr "Private Nachricht senden" -#: mod/message.php:193 mod/message.php:349 mod/wallmessage.php:131 +#: mod/message.php:191 mod/message.php:346 msgid "To:" msgstr "An:" -#: mod/message.php:194 mod/message.php:350 mod/wallmessage.php:132 +#: mod/message.php:192 mod/message.php:347 msgid "Subject:" msgstr "Betreff:" -#: mod/message.php:198 mod/message.php:353 mod/wallmessage.php:138 -#: src/Module/Invite.php:171 +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 msgid "Your message:" msgstr "Deine Nachricht:" -#: mod/message.php:225 +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "Foto hochladen" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "Einen Link einfügen" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:587 +msgid "Please wait" +msgstr "Bitte warten" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 +#: src/Module/Install.php:274 src/Module/Install.php:309 +#: src/Module/Invite.php:178 src/Module/Item/Compose.php:189 +#: src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 +#: src/Object/Post.php:1106 view/theme/duepuntozero/config.php:85 +#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Senden" + +#: mod/message.php:223 msgid "No messages." msgstr "Keine Nachrichten." -#: mod/message.php:281 +#: mod/message.php:279 msgid "Message not available." msgstr "Nachricht nicht verfügbar." -#: mod/message.php:326 +#: mod/message.php:323 msgid "Delete message" msgstr "Nachricht löschen" -#: mod/message.php:328 mod/message.php:459 +#: mod/message.php:325 mod/message.php:456 msgid "D, d M Y - g:i A" msgstr "D, d. M Y - H:i" -#: mod/message.php:343 mod/message.php:456 +#: mod/message.php:340 mod/message.php:453 msgid "Delete conversation" msgstr "Unterhaltung löschen" -#: mod/message.php:345 +#: mod/message.php:342 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst du auf der Profilseite des Absenders antworten." -#: mod/message.php:348 +#: mod/message.php:345 msgid "Send Reply" msgstr "Antwort senden" -#: mod/message.php:430 +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "Unbekannter Absender - %s" -#: mod/message.php:432 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "Du und %s" -#: mod/message.php:434 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "%s und du" -#: mod/message.php:462 +#: mod/message.php:459 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d Nachricht" msgstr[1] "%d Nachrichten" -#: mod/notes.php:51 src/Module/BaseProfile.php:106 +#: mod/notes.php:52 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "Persönliche Notizen" -#: mod/notes.php:55 +#: mod/notes.php:56 msgid "Personal notes are visible only by yourself." msgstr "Persönliche Notizen sind nur für dich sichtbar." -#: mod/ostatus_subscribe.php:38 -msgid "Subscribing to contacts" -msgstr "Kontakten folgen" +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:161 +msgid "Save" +msgstr "Speichern" -#: mod/ostatus_subscribe.php:47 -msgid "No contact provided." -msgstr "Keine Kontakte gefunden." +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "Benutzer nicht gefunden." -#: mod/ostatus_subscribe.php:53 -msgid "Couldn't fetch information for contact." -msgstr "Konnte die Kontaktinformationen nicht einholen." - -#: mod/ostatus_subscribe.php:64 -msgid "Couldn't fetch friends for contact." -msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen." - -#: mod/ostatus_subscribe.php:70 mod/ostatus_subscribe.php:81 -msgid "Couldn't fetch following contacts." -msgstr "Konnte Liste der gefolgten Kontakte nicht einholen." - -#: mod/ostatus_subscribe.php:76 -msgid "Couldn't fetch remote profile." -msgstr "Konnte das entfernte Profil nicht laden." - -#: mod/ostatus_subscribe.php:86 -msgid "Unsupported network" -msgstr "Netzwerk wird nicht unterstützt" - -#: mod/ostatus_subscribe.php:102 mod/repair_ostatus.php:51 -msgid "Done" -msgstr "Erledigt" - -#: mod/ostatus_subscribe.php:116 -msgid "success" -msgstr "Erfolg" - -#: mod/ostatus_subscribe.php:118 -msgid "failed" -msgstr "Fehlgeschlagen" - -#: mod/ostatus_subscribe.php:121 -msgid "ignored" -msgstr "Ignoriert" - -#: mod/ostatus_subscribe.php:126 mod/repair_ostatus.php:57 -msgid "Keep this window open until done." -msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist." - -#: mod/photos.php:107 src/Module/BaseProfile.php:67 +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 msgid "Photo Albums" msgstr "Fotoalben" -#: mod/photos.php:108 mod/photos.php:1579 +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 msgid "Recent Photos" msgstr "Neueste Fotos" -#: mod/photos.php:110 mod/photos.php:1068 mod/photos.php:1581 +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 msgid "Upload New Photos" msgstr "Neue Fotos hochladen" -#: mod/photos.php:128 src/Module/BaseSettings.php:35 +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 msgid "everybody" msgstr "jeder" -#: mod/photos.php:166 +#: mod/photos.php:159 msgid "Contact information unavailable" msgstr "Kontaktinformationen nicht verfügbar" -#: mod/photos.php:195 +#: mod/photos.php:188 msgid "Album not found." msgstr "Album nicht gefunden." -#: mod/photos.php:249 +#: mod/photos.php:244 msgid "Album successfully deleted" msgstr "Album wurde erfolgreich gelöscht." -#: mod/photos.php:251 +#: mod/photos.php:246 msgid "Album was empty." msgstr "Album ist leer." -#: mod/photos.php:283 +#: mod/photos.php:277 msgid "Failed to delete the photo." msgstr "Das Foto konnte nicht gelöscht werden." -#: mod/photos.php:552 +#: mod/photos.php:545 msgid "a photo" msgstr "einem Foto" -#: mod/photos.php:552 +#: mod/photos.php:545 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s wurde von %3$s in %2$s getaggt" -#: mod/photos.php:631 mod/photos.php:634 mod/photos.php:661 -#: mod/wall_upload.php:200 src/Module/Settings/Profile/Photo/Index.php:59 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Bildgröße überschreitet das Limit von %s" +#: mod/photos.php:582 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Öffentlicher Zugriff verweigert." -#: mod/photos.php:637 -msgid "Image upload didn't complete, please try again" -msgstr "Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut." - -#: mod/photos.php:640 -msgid "Image file is missing" -msgstr "Bilddatei konnte nicht gefunden werden." - -#: mod/photos.php:645 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "Der Server kann derzeit keine neuen Datei-Uploads akzeptieren. Bitte kontaktiere deinen Administrator." - -#: mod/photos.php:669 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." - -#: mod/photos.php:684 mod/wall_upload.php:162 -#: src/Module/Settings/Profile/Photo/Index.php:68 -msgid "Unable to process image." -msgstr "Konnte das Bild nicht bearbeiten." - -#: mod/photos.php:710 mod/wall_upload.php:225 -#: src/Module/Settings/Profile/Photo/Index.php:95 -msgid "Image upload failed." -msgstr "Hochladen des Bildes gescheitert." - -#: mod/photos.php:802 +#: mod/photos.php:587 msgid "No photos selected" msgstr "Keine Bilder ausgewählt" -#: mod/photos.php:871 -msgid "Access to this item is restricted." -msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." +#: mod/photos.php:721 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "Die maximale erlaubte Größe von Bildern beträgt %s" -#: mod/photos.php:926 +#: mod/photos.php:728 msgid "Upload Photos" msgstr "Bilder hochladen" -#: mod/photos.php:930 mod/photos.php:1016 +#: mod/photos.php:732 mod/photos.php:820 msgid "New album name: " msgstr "Name des neuen Albums: " -#: mod/photos.php:931 +#: mod/photos.php:733 msgid "or select existing album:" msgstr "oder wähle ein bestehendes Album:" -#: mod/photos.php:932 +#: mod/photos.php:734 msgid "Do not show a status post for this upload" msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" -#: mod/photos.php:997 +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "Berechtigungen" + +#: mod/photos.php:801 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?" -#: mod/photos.php:998 mod/photos.php:1021 +#: mod/photos.php:802 mod/photos.php:825 msgid "Delete Album" msgstr "Album löschen" -#: mod/photos.php:1025 +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Abbrechen" + +#: mod/photos.php:829 msgid "Edit Album" msgstr "Album bearbeiten" -#: mod/photos.php:1026 +#: mod/photos.php:830 msgid "Drop Album" msgstr "Album löschen" -#: mod/photos.php:1030 +#: mod/photos.php:834 msgid "Show Newest First" msgstr "Zeige neueste zuerst" -#: mod/photos.php:1032 +#: mod/photos.php:836 msgid "Show Oldest First" msgstr "Zeige älteste zuerst" -#: mod/photos.php:1053 mod/photos.php:1564 +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 msgid "View Photo" msgstr "Foto betrachten" -#: mod/photos.php:1086 +#: mod/photos.php:889 msgid "Permission denied. Access to this item may be restricted." msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." -#: mod/photos.php:1088 +#: mod/photos.php:891 msgid "Photo not available" msgstr "Foto nicht verfügbar" -#: mod/photos.php:1098 +#: mod/photos.php:901 msgid "Do you really want to delete this photo?" msgstr "Möchtest du wirklich dieses Foto löschen?" -#: mod/photos.php:1099 mod/photos.php:1291 +#: mod/photos.php:902 mod/photos.php:1102 msgid "Delete Photo" msgstr "Foto löschen" -#: mod/photos.php:1191 +#: mod/photos.php:1000 msgid "View photo" msgstr "Fotos ansehen" -#: mod/photos.php:1193 +#: mod/photos.php:1002 msgid "Edit photo" msgstr "Foto bearbeiten" -#: mod/photos.php:1194 +#: mod/photos.php:1003 msgid "Delete photo" msgstr "Foto löschen" -#: mod/photos.php:1195 +#: mod/photos.php:1004 msgid "Use as profile photo" msgstr "Als Profilbild verwenden" -#: mod/photos.php:1202 +#: mod/photos.php:1011 msgid "Private Photo" msgstr "Privates Foto" -#: mod/photos.php:1208 +#: mod/photos.php:1017 msgid "View Full Size" msgstr "Betrachte Originalgröße" -#: mod/photos.php:1259 +#: mod/photos.php:1070 msgid "Tags: " msgstr "Tags: " -#: mod/photos.php:1262 +#: mod/photos.php:1073 msgid "[Select tags to remove]" msgstr "[Zu entfernende Tags auswählen]" -#: mod/photos.php:1277 +#: mod/photos.php:1088 msgid "New album name" msgstr "Name des neuen Albums" -#: mod/photos.php:1278 +#: mod/photos.php:1089 msgid "Caption" msgstr "Bildunterschrift" -#: mod/photos.php:1279 +#: mod/photos.php:1090 msgid "Add a Tag" msgstr "Tag hinzufügen" -#: mod/photos.php:1279 +#: mod/photos.php:1090 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1280 +#: mod/photos.php:1091 msgid "Do not rotate" msgstr "Nicht rotieren" -#: mod/photos.php:1281 +#: mod/photos.php:1092 msgid "Rotate CW (right)" msgstr "Drehen US (rechts)" -#: mod/photos.php:1282 +#: mod/photos.php:1093 msgid "Rotate CCW (left)" msgstr "Drehen EUS (links)" -#: mod/photos.php:1328 mod/photos.php:1384 mod/photos.php:1458 -#: src/Module/Contact.php:547 src/Module/Item/Compose.php:188 -#: src/Object/Post.php:988 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1103 msgid "This is you" msgstr "Das bist du" -#: mod/photos.php:1330 mod/photos.php:1386 mod/photos.php:1460 -#: src/Object/Post.php:531 src/Object/Post.php:990 +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:581 +#: src/Object/Post.php:1105 msgid "Comment" msgstr "Kommentar" -#: mod/photos.php:1419 src/Content/Conversation.php:637 -#: src/Object/Post.php:255 +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1119 +msgid "Preview" +msgstr "Vorschau" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1107 +msgid "Loading..." +msgstr "lädt..." + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:261 msgid "Select" msgstr "Auswählen" -#: mod/photos.php:1420 mod/settings.php:350 src/Content/Conversation.php:638 -#: src/Module/Admin/Users/Active.php:139 -#: src/Module/Admin/Users/Blocked.php:140 src/Module/Admin/Users/Index.php:153 +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 msgid "Delete" msgstr "Löschen" -#: mod/photos.php:1481 src/Object/Post.php:378 +#: mod/photos.php:1298 src/Object/Post.php:409 msgid "Like" msgstr "Mag ich" -#: mod/photos.php:1482 src/Object/Post.php:378 +#: mod/photos.php:1299 src/Object/Post.php:409 msgid "I like this (toggle)" msgstr "Ich mag das (toggle)" -#: mod/photos.php:1483 src/Object/Post.php:379 +#: mod/photos.php:1300 src/Object/Post.php:410 msgid "Dislike" msgstr "Mag ich nicht" -#: mod/photos.php:1485 src/Object/Post.php:379 +#: mod/photos.php:1302 src/Object/Post.php:410 msgid "I don't like this (toggle)" msgstr "Ich mag das nicht (toggle)" -#: mod/photos.php:1507 +#: mod/photos.php:1324 msgid "Map" msgstr "Karte" -#: mod/photos.php:1570 -msgid "View Album" -msgstr "Album betrachten" - -#: mod/redir.php:50 mod/redir.php:103 -msgid "Bad Request." -msgstr "Ungültige Anfrage." - -#: mod/redir.php:56 mod/redir.php:130 src/Module/Contact/Advanced.php:70 -#: src/Module/Contact/Advanced.php:109 src/Module/Contact/Contacts.php:53 -#: src/Module/Contact/Conversations.php:84 -#: src/Module/Contact/Conversations.php:89 -#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:142 -#: src/Module/Contact/Profile.php:147 src/Module/Contact/Profile.php:152 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 -#: src/Module/Group.php:97 src/Module/Group.php:106 -msgid "Contact not found." -msgstr "Kontakt nicht gefunden." - -#: mod/removeme.php:65 src/Navigation/Notifications/Repository/Notify.php:467 -msgid "[Friendica System Notify]" -msgstr "[Friendica-Systembenachrichtigung]" - -#: mod/removeme.php:65 -msgid "User deleted their account" -msgstr "Gelöschter Nutzeraccount" - -#: mod/removeme.php:66 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "Ein Nutzer deiner Friendica-Instanz hat seinen Account gelöscht. Bitte stelle sicher, dass dessen Daten aus deinen Backups entfernt werden." - -#: mod/removeme.php:67 -#, php-format -msgid "The user id is %d" -msgstr "Die ID des Users lautet %d" - -#: mod/removeme.php:101 mod/removeme.php:104 -msgid "Remove My Account" -msgstr "Konto löschen" - -#: mod/removeme.php:102 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen." - -#: mod/removeme.php:103 -msgid "Please enter your password for verification:" -msgstr "Bitte gib dein Passwort zur Verifikation ein:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Erneuern der OStatus-Abonements" - -#: mod/repair_ostatus.php:46 src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Security/TwoFactor/Verify.php:102 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Fehler" -msgstr[1] "Fehler" - -#: mod/settings.php:122 -msgid "Failed to connect with email account using the settings provided." -msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich." - -#: mod/settings.php:175 -msgid "Connected Apps" -msgstr "Verbundene Programme" - -#: mod/settings.php:176 src/Module/Admin/Blocklist/Contact.php:106 -#: 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 "Name" - -#: mod/settings.php:177 src/Content/Nav.php:214 -msgid "Home Page" -msgstr "Homepage" - -#: mod/settings.php:178 src/Module/Admin/Queue.php:78 -msgid "Created" -msgstr "Erstellt" - -#: mod/settings.php:179 -msgid "Remove authorization" -msgstr "Autorisierung entziehen" - -#: mod/settings.php:205 mod/settings.php:237 mod/settings.php:268 -#: mod/settings.php:352 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81 -#: src/Module/Admin/Site.php:432 src/Module/Admin/Themes/Index.php:113 -#: src/Module/Admin/Tos.php:83 src/Module/Settings/Account.php:563 -#: src/Module/Settings/Delegation.php:169 src/Module/Settings/Display.php:200 -msgid "Save Settings" -msgstr "Einstellungen speichern" - -#: mod/settings.php:213 -msgid "Addon Settings" -msgstr "Addon Einstellungen" - -#: mod/settings.php:214 -msgid "No Addon settings configured" -msgstr "Keine Addon-Einstellungen konfiguriert" - -#: mod/settings.php:235 -msgid "Additional Features" -msgstr "Zusätzliche Features" - -#: mod/settings.php:273 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "enabled" -msgstr "eingeschaltet" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "disabled" -msgstr "ausgeschaltet" - -#: mod/settings.php:273 mod/settings.php:274 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s" - -#: mod/settings.php:274 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: mod/settings.php:300 -msgid "Email access is disabled on this site." -msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." - -#: mod/settings.php:305 mod/settings.php:350 -msgid "None" -msgstr "Keine" - -#: mod/settings.php:311 src/Module/BaseSettings.php:78 -msgid "Social Networks" -msgstr "Soziale Netzwerke" - -#: mod/settings.php:316 -msgid "General Social Media Settings" -msgstr "Allgemeine Einstellungen zu Sozialen Medien" - -#: mod/settings.php:319 -msgid "Followed content scope" -msgstr "Umfang zu folgender Inhalte" - -#: mod/settings.php:321 -msgid "" -"By default, conversations in which your follows participated but didn't " -"start will be shown in your timeline. You can turn this behavior off, or " -"expand it to the conversations in which your follows liked a post." -msgstr "Normalerweise werden Unterhaltungen an denen deine Kontakte beteiligt sind, sie aber nicht begonnen haben, in deiner Timeline angezeigt. Mit dieser Einstellung kann dieses Vorgehen kontrolliert werden. Es kann entweder dahin erweitert werden, dass auch Unterhaltungen angezeigt werden in denen deine Kontakte einen Kommentar mögen, oder komplett ausgeschaltet werden, so dass nur noch die Unterhaltungen angezeigt werden, die von deinen Kontakten gestartet wurden." - -#: mod/settings.php:323 -msgid "Only conversations my follows started" -msgstr "Nur Unterhaltungen, die meine Kontakte gestartet haben" - -#: mod/settings.php:324 -msgid "Conversations my follows started or commented on (default)" -msgstr "Unterhaltungen an denen meine Kontakte beteiligt sind (Grundeinstellung)" - -#: mod/settings.php:325 -msgid "Any conversation my follows interacted with, including likes" -msgstr "Unterhaltungen mit denen meine Kontakte interagiert haben, inklusive likes" - -#: mod/settings.php:328 -msgid "Enable Content Warning" -msgstr "Inhaltswarnungen einschalten" - -#: mod/settings.php:328 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect any other content filtering you eventually set up." -msgstr "Benutzer in Netzwerken wie Mastodon oder Pleroma können eine Warnung für sensitive Inhalte ihrer Beiträge erstellen. Mit dieser Option werden derart markierte Beiträge automatisch zusammengeklappt und die Inhaltswarnung wird als Titel des Beitrags angezeigt. Diese Option hat keinen Einfluss auf andere Inhaltsfilterungen, die du eventuell eingerichtet hast." - -#: mod/settings.php:329 -msgid "Enable intelligent shortening" -msgstr "Intelligentes kürzen einschalten" - -#: mod/settings.php:329 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If disabled, every shortened post will always point to the original " -"friendica post." -msgstr "Normalerweise versucht das System, den besten Link zu finden, um ihn zum gekürzten Postings hinzuzufügen. Wird diese Option ausgewählt, wird stets ein Link auf die originale Friendica-Nachricht beigefügt." - -#: mod/settings.php:330 -msgid "Enable simple text shortening" -msgstr "Einfache Textkürzung aktivieren" - -#: mod/settings.php:330 -msgid "" -"Normally the system shortens posts at the next line feed. If this option is " -"enabled then the system will shorten the text at the maximum character " -"limit." -msgstr "Normalerweise kürzt das System Beiträge bei Zeilenumbrüchen. Ist diese Option aktiv, wird das System die Kürzung beim Erreichen der maximalen Zeichenzahl vornehmen." - -#: mod/settings.php:331 -msgid "Attach the link title" -msgstr "Link Titel hinzufügen" - -#: mod/settings.php:331 -msgid "" -"When activated, the title of the attached link will be added as a title on " -"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" -" share feed content." -msgstr "Ist dies aktiviert, wird der Titel von angehangenen Links bei Beiträgen nach Diaspora* angefügt. Dies ist vorallem bei Entfernten Konten nützlich die Beiträge von Feeds weiterleiten." - -#: mod/settings.php:332 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "Dein alter ActivityPub/GNU Social-Account" - -#: mod/settings.php:332 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "Wenn du deinen alten ActivityPub oder GNU Social/Statusnet-Account-Namen hier angibst (Format name@domain.tld), werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden." - -#: mod/settings.php:335 -msgid "Repair OStatus subscriptions" -msgstr "OStatus-Abonnements reparieren" - -#: mod/settings.php:339 -msgid "Email/Mailbox Setup" -msgstr "E-Mail/Postfach-Einstellungen" - -#: mod/settings.php:340 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an." - -#: mod/settings.php:341 -msgid "Last successful email check:" -msgstr "Letzter erfolgreicher E-Mail-Check" - -#: mod/settings.php:343 -msgid "IMAP server name:" -msgstr "IMAP-Server-Name:" - -#: mod/settings.php:344 -msgid "IMAP port:" -msgstr "IMAP-Port:" - -#: mod/settings.php:345 -msgid "Security:" -msgstr "Sicherheit:" - -#: mod/settings.php:346 -msgid "Email login name:" -msgstr "E-Mail-Login-Name:" - -#: mod/settings.php:347 -msgid "Email password:" -msgstr "E-Mail-Passwort:" - -#: mod/settings.php:348 -msgid "Reply-to address:" -msgstr "Reply-to Adresse:" - -#: mod/settings.php:349 -msgid "Send public posts to all email contacts:" -msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" - -#: mod/settings.php:350 -msgid "Action after import:" -msgstr "Aktion nach Import:" - -#: mod/settings.php:350 src/Content/Nav.php:282 -msgid "Mark as seen" -msgstr "Als gelesen markieren" - -#: mod/settings.php:350 -msgid "Move to folder" -msgstr "In einen Ordner verschieben" - -#: mod/settings.php:351 -msgid "Move to folder:" -msgstr "In diesen Ordner verschieben:" - -#: mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal." - -#: mod/suggest.php:55 src/Content/Widget.php:83 view/theme/vier/theme.php:201 -msgid "Friend Suggestions" -msgstr "Kontaktvorschläge" - -#: mod/tagger.php:77 src/Content/Item.php:304 src/Model/Item.php:2860 -msgid "photo" -msgstr "Foto" - -#: mod/tagger.php:77 src/Content/Item.php:298 src/Content/Item.php:308 -msgid "status" -msgstr "Status" - -#: mod/tagger.php:110 src/Content/Item.php:318 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" - -#: mod/tagrm.php:113 -msgid "Remove Item Tag" -msgstr "Gegenstands-Tag entfernen" - -#: mod/tagrm.php:115 -msgid "Select a tag to remove: " -msgstr "Wähle ein Tag zum Entfernen aus: " - -#: mod/tagrm.php:126 src/Module/Settings/Delegation.php:178 -#: src/Module/Settings/TwoFactor/Trusted.php:143 -msgid "Remove" -msgstr "Entfernen" - -#: mod/uimport.php:46 -msgid "User imports on closed servers can only be done by an administrator." -msgstr "Auf geschlossenen Servern können ausschließlich die Administratoren Benutzerkonten importieren." - -#: mod/uimport.php:55 src/Module/Register.php:99 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal." - -#: mod/uimport.php:62 src/Module/Register.php:173 -msgid "Import" -msgstr "Import" - -#: mod/uimport.php:64 -msgid "Move account" -msgstr "Account umziehen" - -#: mod/uimport.php:65 -msgid "You can import an account from another Friendica server." -msgstr "Du kannst einen Account von einem anderen Friendica Server importieren." - -#: mod/uimport.php:66 -msgid "" -"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." -msgstr "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen, deine Kontakte darüber zu informieren, dass du hierher umgezogen bist." - -#: mod/uimport.php:67 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus-Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren" - -#: mod/uimport.php:68 -msgid "Account file" -msgstr "Account-Datei" - -#: mod/uimport.php:68 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"" - -#: mod/unfollow.php:65 mod/unfollow.php:134 -msgid "You aren't following this contact." -msgstr "Du folgst diesem Kontakt." - -#: mod/unfollow.php:71 -msgid "Unfollowing is currently not supported by your network." -msgstr "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt." - -#: mod/unfollow.php:92 -msgid "Disconnect/Unfollow" -msgstr "Verbindung lösen/Nicht mehr folgen" - -#: mod/unfollow.php:143 -msgid "Contact was successfully unfollowed" -msgstr "Kontakt wurde erfolgreich entfolgt." - -#: mod/unfollow.php:146 -msgid "Unable to unfollow this contact, please contact your administrator" -msgstr "Konnte dem Kontakt nicht entfolgen. Bitte kontaktiere deinen Administrator." - -#: mod/wall_attach.php:39 mod/wall_attach.php:45 mod/wall_attach.php:74 -#: mod/wall_upload.php:53 mod/wall_upload.php:62 mod/wall_upload.php:96 -#: mod/wall_upload.php:147 mod/wall_upload.php:149 -msgid "Invalid request." -msgstr "Ungültige Anfrage" - -#: mod/wall_attach.php:92 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Entschuldige, die Datei scheint größer zu sein, als es die PHP-Konfiguration erlaubt." - -#: mod/wall_attach.php:92 -msgid "Or - did you try to upload an empty file?" -msgstr "Oder - hast du versucht, eine leere Datei hochzuladen?" - -#: mod/wall_attach.php:103 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Die Datei ist größer als das erlaubte Limit von %s" - -#: mod/wall_attach.php:118 -msgid "File upload failed." -msgstr "Hochladen der Datei fehlgeschlagen." - -#: mod/wall_upload.php:217 src/Model/Photo.php:1086 -msgid "Wall Photos" -msgstr "Pinnwand-Bilder" - -#: mod/wallmessage.php:62 mod/wallmessage.php:116 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Maximale Anzahl der täglichen Pinnwand-Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen." - -#: mod/wallmessage.php:73 -msgid "Unable to check your home location." -msgstr "Konnte Deinen Heimatort nicht bestimmen." - -#: mod/wallmessage.php:97 mod/wallmessage.php:104 -msgid "No recipient." -msgstr "Kein Empfänger." - -#: mod/wallmessage.php:130 -#, 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 "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:497 +#: src/App.php:473 msgid "No system theme config value set." msgstr "Es wurde kein Konfigurationswert für das systemweite Theme gesetzt." -#: src/App.php:618 +#: src/App.php:580 msgid "Apologies but the website is unavailable at the moment." msgstr "Entschuldigung, aber die Webseite ist derzeit nicht erreichbar." -#: src/App/Page.php:282 +#: src/App/Page.php:248 msgid "Delete this item?" msgstr "Diesen Beitrag löschen?" -#: src/App/Page.php:283 +#: src/App/Page.php:249 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "Soll dieser Autor geblockt werden? Sie werden nicht in der Lage sein, dir zu folgen oder deine öffentlichen Beiträge zu sehen. Außerdem wirst du nicht in der Lage sein ihre Beiträge und Benachrichtigungen zu lesen." -#: src/App/Page.php:353 +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "Diesen Autor ignorieren? Du wirst seine Beiträge und Benachrichtigungen nicht mehr sehen können." + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "Beiträge dieses Autors zusammenklappen?" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "Den Server dieses Autors ignorieren?" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "Du wirst keine Inhalte von dieser Instanz sehen, auch nicht das erneute Teilen auf Ihrer Netzwerkseite, den Gemeinschaftsseiten und einzelnen Unterhaltungen." + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "Das \"Mag ich\" war nicht erfolgreich" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "Das \"Mag ich nicht\" war nicht erfolgreich" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "Das Teilen war nicht erfolgreich" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "Die Teilnahme war nicht erfolgreich" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "Fehler im Backend" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "Netzwerkfehler" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "Ziehe Dateien hierher, um sie hochzuladen" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "Dein Browser unterstützt das Hochladen von Dateien per Drag & Drop nicht." + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "Bitte verwende das unten stehende Formular, um Ihre Dateien wie früher hochzuladen." + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "Datei ist zu groß ({{filesize}}MiB). Maximale Dateigröße: {{maxFilesize}}MiB." + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "Du kannst keine Dateien dieses Typs hochladen." + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "Der Server antwortete mit Status-Code {{statusCode}} " + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "Hochladen abbrechen" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "Hochladen abgebrochen" + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "Bist du sicher, dass du diesen Upload abbrechen möchten?" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "Datei entfernen" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "Du kannst keine weiteren Dateien hochladen." + +#: src/App/Page.php:351 msgid "toggle mobile" msgstr "mobile Ansicht umschalten" -#: src/App/Router.php:288 +#: src/App/Router.php:309 #, 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:290 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 msgid "Page not found." msgstr "Seite nicht gefunden." -#: src/App/Router.php:318 +#: src/App/Router.php:323 msgid "You must be logged in to use addons. " msgstr "Du musst angemeldet sein, um Addons benutzen zu können." -#: src/BaseModule.php:392 +#: src/BaseModule.php:403 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 "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens, wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)." -#: src/BaseModule.php:419 +#: src/BaseModule.php:430 msgid "All contacts" msgstr "Alle Kontakte" -#: src/BaseModule.php:424 src/Content/Widget.php:235 src/Core/ACL.php:194 -#: src/Module/Contact.php:370 src/Module/PermissionTooltip.php:122 -#: src/Module/PermissionTooltip.php:144 +#: src/BaseModule.php:435 src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 +#: src/Module/Settings/Channels.php:120 msgid "Followers" msgstr "Folgende" -#: src/BaseModule.php:429 src/Content/Widget.php:236 -#: src/Module/Contact.php:371 +#: src/BaseModule.php:440 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 src/Module/Settings/Channels.php:119 msgid "Following" msgstr "Gefolgte" -#: src/BaseModule.php:434 src/Content/Widget.php:237 -#: src/Module/Contact.php:372 +#: src/BaseModule.php:445 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 msgid "Mutual friends" msgstr "Beidseitige Freundschaft" -#: src/BaseModule.php:442 +#: src/BaseModule.php:453 msgid "Common" msgstr "Gemeinsam" @@ -1678,13 +883,13 @@ msgid "The contact entries have been archived" msgstr "Die Kontakteinträge wurden archiviert." #: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Für die URL (%s) konnte kein Kontakt gefunden werden" #: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:66 +#: src/Module/Moderation/Blocklist/Contact.php:82 msgid "The contact has been blocked from the node" msgstr "Der Kontakt wurde von diesem Knoten geblockt" @@ -1802,6 +1007,15 @@ msgstr "Alle ausstehenden Post-Updates wurden ausgeführt." msgid "Enter user nickname: " msgstr "Spitzname angeben:" +#: src/Console/User.php:182 src/Model/User.php:710 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "Nutzer nicht gefunden" + #: src/Console/User.php:202 msgid "Enter new password: " msgstr "Neues Passwort eingeben:" @@ -1901,10 +1115,14 @@ msgstr "OStatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 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 +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 msgid "Email" msgstr "E-Mail" @@ -1960,266 +1178,508 @@ msgstr "ActivityPub" msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:178 +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "Tumblr" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "Bluesky" + +#: src/Content/ContactSelector.php:180 #, php-format msgid "%s (via %s)" msgstr "%s (via %s)" -#: src/Content/Conversation.php:214 -#, php-format -msgid "%s likes this." -msgstr "%s mag das." - -#: src/Content/Conversation.php:217 -#, php-format -msgid "%s doesn't like this." -msgstr "%s mag das nicht." - -#: src/Content/Conversation.php:220 -#, php-format -msgid "%s attends." -msgstr "%s nimmt teil." - -#: src/Content/Conversation.php:223 -#, php-format -msgid "%s doesn't attend." -msgstr "%s nimmt nicht teil." - #: src/Content/Conversation.php:226 -#, php-format -msgid "%s attends maybe." -msgstr "%s nimmt eventuell teil." - -#: src/Content/Conversation.php:229 src/Content/Conversation.php:267 -#: src/Content/Conversation.php:881 -#, php-format -msgid "%s reshared this." -msgstr "%s hat dies geteilt" - -#: src/Content/Conversation.php:235 msgid "and" msgstr "und" -#: src/Content/Conversation.php:238 +#: src/Content/Conversation.php:229 #, php-format msgid "and %d other people" msgstr "und %dandere" -#: src/Content/Conversation.php:246 +#: src/Content/Conversation.php:235 #, php-format -msgid "%2$d people like this" -msgstr "%2$d Personen mögen das" +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "%2$s mag das." +msgstr[1] "%2$s mögen das." -#: src/Content/Conversation.php:247 +#: src/Content/Conversation.php:237 #, php-format -msgid "%s like this." -msgstr "%s mögen das." +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "%2$s mag das nicht." +msgstr[1] "%2$s mögen das nicht." -#: src/Content/Conversation.php:250 +#: src/Content/Conversation.php:239 #, php-format -msgid "%2$d people don't like this" -msgstr "%2$d Personen mögen das nicht" +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "%2$s nimmt teil." +msgstr[1] "%2$s nehmen teil." -#: src/Content/Conversation.php:251 +#: src/Content/Conversation.php:241 #, php-format -msgid "%s don't like this." -msgstr "%s mögen dies nicht." +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "%2$s nimmt nicht teil." +msgstr[1] "%2$s nehmen nicht teil." -#: src/Content/Conversation.php:254 +#: src/Content/Conversation.php:243 #, php-format -msgid "%2$d people attend" -msgstr "%2$d Personen nehmen teil" +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "%2$s nimmt eventuell teil." +msgstr[1] "%2$s nehmen eventuell teil." -#: src/Content/Conversation.php:255 +#: src/Content/Conversation.php:245 #, php-format -msgid "%s attend." -msgstr "%s nehmen teil." +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "%2$s hat dies geteilt." +msgstr[1] "%2$s haben dies geteilt." -#: src/Content/Conversation.php:258 +#: src/Content/Conversation.php:274 #, php-format -msgid "%2$d people don't attend" -msgstr "%2$d Personen nehmen nicht teil" +msgid " likes this" +msgid_plural " like this" +msgstr[0] " mag das" +msgstr[1] " mögen das" -#: src/Content/Conversation.php:259 +#: src/Content/Conversation.php:277 #, php-format -msgid "%s don't attend." -msgstr "%s nehmen nicht teil." +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] " mag das nicht" +msgstr[1] " mögen das nicht" -#: src/Content/Conversation.php:262 +#: src/Content/Conversation.php:280 #, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d Personen nehmen eventuell teil" +msgid " attends" +msgid_plural " attend" +msgstr[0] " besucht" +msgstr[1] " besuchen" -#: src/Content/Conversation.php:263 +#: src/Content/Conversation.php:283 #, php-format -msgid "%s attend maybe." -msgstr "%s nimmt eventuell teil." +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] " besucht nicht" +msgstr[1] " besuchen nicht" -#: src/Content/Conversation.php:266 +#: src/Content/Conversation.php:286 #, php-format -msgid "%2$d people reshared this" -msgstr "%2$d Personen haben dies geteilt" +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] " besucht vielleicht" +msgstr[1] " besuchen vielleicht" -#: src/Content/Conversation.php:314 +#: src/Content/Conversation.php:289 +#, php-format +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] " teilte dies erneut" +msgstr[1] " teilten dies erneut" + +#: src/Content/Conversation.php:336 msgid "Visible to everybody" msgstr "Für jedermann sichtbar" -#: src/Content/Conversation.php:315 src/Module/Item/Compose.php:198 -#: src/Object/Post.php:1001 +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1118 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Bitte gib eine Bild/Video/Audio/Webseiten-URL ein:" -#: src/Content/Conversation.php:316 +#: src/Content/Conversation.php:338 msgid "Tag term:" msgstr "Tag:" -#: src/Content/Conversation.php:317 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 msgid "Save to Folder:" msgstr "In diesem Ordner speichern:" -#: src/Content/Conversation.php:318 +#: src/Content/Conversation.php:340 msgid "Where are you right now?" msgstr "Wo hältst du dich jetzt gerade auf?" -#: src/Content/Conversation.php:319 +#: src/Content/Conversation.php:341 msgid "Delete item(s)?" msgstr "Einträge löschen?" -#: src/Content/Conversation.php:331 src/Module/Item/Compose.php:175 +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 msgid "Created at" msgstr "Erstellt am" -#: src/Content/Conversation.php:341 +#: src/Content/Conversation.php:363 msgid "New Post" msgstr "Neuer Beitrag" -#: src/Content/Conversation.php:344 +#: src/Content/Conversation.php:366 msgid "Share" msgstr "Teilen" -#: src/Content/Conversation.php:355 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:998 +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "Bild hochladen" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Datei anhängen" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "Datei anhängen" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1108 +msgid "Bold" +msgstr "Fett" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1109 +msgid "Italic" +msgstr "Kursiv" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1110 +msgid "Underline" +msgstr "Unterstrichen" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1112 +msgid "Quote" +msgstr "Zitat" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1113 +msgid "Add emojis" +msgstr "Emojis hinzufügen" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1111 +msgid "Content Warning" +msgstr "Inhaltswarnung" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1114 +msgid "Code" +msgstr "Code" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1115 msgid "Image" msgstr "Bild" -#: src/Content/Conversation.php:358 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1116 +msgid "Link" +msgstr "Link" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1117 +msgid "Link or Media" +msgstr "Link oder Mediendatei" + +#: src/Content/Conversation.php:382 msgid "Video" msgstr "Video" -#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:222 +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "Deinen Standort festlegen" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "Ort setzen" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "Browser-Standort leeren" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "Ort löschen" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Titel setzen" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (kommasepariert)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 msgid "Scheduled at" msgstr "Geplant für" -#: src/Content/Conversation.php:665 src/Object/Post.php:243 -msgid "Pinned item" -msgstr "Angehefteter Beitrag" +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Berechtigungseinstellungen" -#: src/Content/Conversation.php:681 src/Object/Post.php:485 -#: src/Object/Post.php:486 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Das Profil von %s auf %s betrachten." +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Öffentlicher Beitrag" -#: src/Content/Conversation.php:694 src/Object/Post.php:473 -msgid "Categories:" -msgstr "Kategorien:" +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:132 +#: src/Model/Profile.php:479 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "Nachricht" -#: src/Content/Conversation.php:695 src/Object/Post.php:474 -msgid "Filed under:" -msgstr "Abgelegt unter:" +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Browser" -#: src/Content/Conversation.php:703 src/Object/Post.php:499 -#, php-format -msgid "%s from %s" -msgstr "%s von %s" +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "Composer Seite öffnen" -#: src/Content/Conversation.php:719 -msgid "View in context" -msgstr "Im Zusammenhang betrachten" - -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:595 msgid "remove" msgstr "löschen" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:599 msgid "Delete Selected Items" msgstr "Lösche die markierten Beiträge" -#: src/Content/Conversation.php:853 src/Content/Conversation.php:856 -#: src/Content/Conversation.php:859 src/Content/Conversation.php:862 +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 #, php-format msgid "You had been addressed (%s)." msgstr "Du wurdest angeschrieben (%s)." -#: src/Content/Conversation.php:865 +#: src/Content/Conversation.php:769 #, php-format msgid "You are following %s." msgstr "Du folgst %s." -#: src/Content/Conversation.php:868 +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "Du hast %s abonniert." + +#: src/Content/Conversation.php:776 msgid "You subscribed to one or more tags in this post." msgstr "Du folgst einem oder mehreren Hashtags dieses Beitrags." -#: src/Content/Conversation.php:883 +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "%s hat dies geteilt" + +#: src/Content/Conversation.php:798 msgid "Reshared" msgstr "Geteilt" -#: src/Content/Conversation.php:883 +#: src/Content/Conversation.php:798 #, php-format msgid "Reshared by %s <%s>" msgstr "Geteilt von %s <%s>" -#: src/Content/Conversation.php:886 +#: src/Content/Conversation.php:801 #, php-format msgid "%s is participating in this thread." msgstr "%s ist an der Unterhaltung beteiligt." -#: src/Content/Conversation.php:889 +#: src/Content/Conversation.php:804 msgid "Stored for general reasons" msgstr "Aus allgemeinen Gründen aufbewahrt" -#: src/Content/Conversation.php:892 +#: src/Content/Conversation.php:807 msgid "Global post" msgstr "Globaler Beitrag" -#: src/Content/Conversation.php:895 +#: src/Content/Conversation.php:810 msgid "Sent via an relay server" msgstr "Über einen Relay-Server gesendet" -#: src/Content/Conversation.php:895 +#: src/Content/Conversation.php:810 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "Über den Relay-Server %s <%s> gesendet" -#: src/Content/Conversation.php:898 +#: src/Content/Conversation.php:813 msgid "Fetched" msgstr "Abgerufen" -#: src/Content/Conversation.php:898 +#: src/Content/Conversation.php:813 #, php-format msgid "Fetched because of %s <%s>" msgstr "Wegen %s <%s> abgerufen" -#: src/Content/Conversation.php:901 +#: src/Content/Conversation.php:816 msgid "Stored because of a child post to complete this thread." msgstr "Gespeichert wegen eines untergeordneten Beitrags zur Vervollständigung dieses Themas." -#: src/Content/Conversation.php:904 +#: src/Content/Conversation.php:819 msgid "Local delivery" msgstr "Lokale Zustellung" -#: src/Content/Conversation.php:907 +#: src/Content/Conversation.php:822 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Gespeichert aufgrund Ihrer Aktivität (Like, Kommentar, Stern, ...)" -#: src/Content/Conversation.php:910 +#: src/Content/Conversation.php:825 msgid "Distributed" msgstr "Verteilt" -#: src/Content/Conversation.php:913 +#: src/Content/Conversation.php:828 msgid "Pushed to us" msgstr "Zu uns gepusht" +#: src/Content/Conversation.php:1492 src/Object/Post.php:248 +msgid "Pinned item" +msgstr "Angehefteter Beitrag" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:530 +#: src/Object/Post.php:531 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Das Profil von %s auf %s betrachten." + +#: src/Content/Conversation.php:1522 src/Object/Post.php:518 +msgid "Categories:" +msgstr "Kategorien:" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:519 +msgid "Filed under:" +msgstr "Abgelegt unter:" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:544 +#, php-format +msgid "%s from %s" +msgstr "%s von %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "Im Zusammenhang betrachten" + +#: src/Content/Conversation/Factory/Channel.php:42 +msgid "For you" +msgstr "Für Dich" + +#: src/Content/Conversation/Factory/Channel.php:42 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "Beiträge von Kontakten, mit denen du interagierst und die mit dir interagieren" + +#: src/Content/Conversation/Factory/Channel.php:43 +msgid "What's Hot" +msgstr "Angesagt" + +#: src/Content/Conversation/Factory/Channel.php:43 +msgid "Posts with a lot of interactions" +msgstr "Beiträge mit vielen Interaktionen" + +#: src/Content/Conversation/Factory/Channel.php:44 +#, php-format +msgid "Posts in %s" +msgstr "Beiträge in %s" + +#: src/Content/Conversation/Factory/Channel.php:45 +msgid "Posts from your followers that you don't follow" +msgstr "Beiträge von deinen Followern, denen du nicht folgst" + +#: src/Content/Conversation/Factory/Channel.php:46 +msgid "Sharers of sharers" +msgstr "Geteilt von teilenden " + +#: src/Content/Conversation/Factory/Channel.php:46 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "Beiträge von Accounts, welche von von Accounts gefolgt werden, denen du folgst " + +#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Module/Settings/Channels.php:137 src/Module/Settings/Channels.php:153 +msgid "Images" +msgstr "Bilder" + +#: src/Content/Conversation/Factory/Channel.php:47 +msgid "Posts with images" +msgstr "Beiträge mit Bildern" + +#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:155 +msgid "Audio" +msgstr "Audio" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts with audio" +msgstr "Beiträge mit Audio" + +#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Module/Settings/Channels.php:138 src/Module/Settings/Channels.php:154 +msgid "Videos" +msgstr "Videos" + +#: src/Content/Conversation/Factory/Channel.php:49 +msgid "Posts with videos" +msgstr "Beiträge mit Videos" + +#: src/Content/Conversation/Factory/Community.php:43 +msgid "Local Community" +msgstr "Lokale Gemeinschaft" + +#: src/Content/Conversation/Factory/Community.php:43 +msgid "Posts from local users on this server" +msgstr "Beiträge von Nutzern dieses Servers" + +#: src/Content/Conversation/Factory/Community.php:47 +#: src/Module/Settings/Channels.php:118 +msgid "Global Community" +msgstr "Globale Gemeinschaft" + +#: src/Content/Conversation/Factory/Community.php:47 +msgid "Posts from users of the whole federated network" +msgstr "Beiträge von Nutzern des gesamten föderalen Netzwerks" + +#: src/Content/Conversation/Factory/Network.php:38 +msgid "Latest Activity" +msgstr "Neu - Aktivität" + +#: src/Content/Conversation/Factory/Network.php:38 +msgid "Sort by latest activity" +msgstr "Sortiere nach neueste Aktivität" + +#: src/Content/Conversation/Factory/Network.php:39 +msgid "Latest Posts" +msgstr "Neu - Empfangen" + +#: src/Content/Conversation/Factory/Network.php:39 +msgid "Sort by post received date" +msgstr "Nach Empfangsdatum der Beiträge sortiert" + +#: src/Content/Conversation/Factory/Network.php:40 +msgid "Latest Creation" +msgstr "Neu - Erstellung" + +#: src/Content/Conversation/Factory/Network.php:40 +msgid "Sort by post creation date" +msgstr "Sortiert nach dem Erstellungsdatum" + +#: src/Content/Conversation/Factory/Network.php:41 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "Persönlich" + +#: src/Content/Conversation/Factory/Network.php:41 +msgid "Posts that mention or involve you" +msgstr "Beiträge, in denen es um dich geht" + +#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:381 +msgid "Starred" +msgstr "Markierte" + +#: src/Content/Conversation/Factory/Network.php:42 +msgid "Favourite Posts" +msgstr "Favorisierte Beiträge" + #: src/Content/Feature.php:96 msgid "General Features" msgstr "Allgemeine Features" @@ -2249,13 +1709,13 @@ msgid "Post Composition Features" msgstr "Beitragserstellung-Features" #: src/Content/Feature.php:105 -msgid "Auto-mention Forums" -msgstr "Foren automatisch erwähnen" +msgid "Auto-mention Groups" +msgstr "Gruppen automatisch erwähnen" #: src/Content/Feature.php:105 msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde." +"Add/remove mention when a group page is selected/deselected in ACL window." +msgstr "Automatisch eine @-Erwähnung einer Gruppe einfügen/entfernen, wenn dieses im ACL Fenster de-/markiert wurde." #: src/Content/Feature.php:106 msgid "Explicit Mentions" @@ -2295,12 +1755,12 @@ msgid "Advanced Profile Settings" msgstr "Erweiterte Profil-Einstellungen" #: src/Content/Feature.php:119 -msgid "List Forums" -msgstr "Zeige Foren" +msgid "List Groups" +msgstr "Zeige Gruppen" #: src/Content/Feature.php:119 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite" +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "Zeige Besuchern öffentliche Gruppen auf der Erweiterten Profil-Seite" #: src/Content/Feature.php:120 msgid "Tag Cloud" @@ -2318,342 +1778,433 @@ msgstr "Mitgliedschaftsdatum anzeigen" msgid "Display membership date in profile" msgstr "Das Datum der Registrierung deines Accounts im Profil anzeigen" -#: src/Content/ForumManager.php:151 src/Content/Nav.php:241 -#: src/Content/Text/HTML.php:903 src/Content/Widget.php:524 -msgid "Forums" -msgstr "Foren" +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "Erweiterte Kalender Einstellungen" -#: src/Content/ForumManager.php:153 -msgid "External link to forum" -msgstr "Externer Link zum Forum" +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "Erlaube anonymen Zugriff auf deinen Kalender" -#: src/Content/ForumManager.php:156 src/Content/Widget.php:503 +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "Anonyme Besucher können deinen Kalender öffnen und dort deine öffentliche Ereignisse einsehen. Geburtstage deiner Kontakte sind nicht öffentlich." + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1272 +msgid "Groups" +msgstr "Gruppen" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "Externer Link zur Gruppe" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 msgid "show less" msgstr "weniger anzeigen" -#: src/Content/ForumManager.php:157 src/Content/Widget.php:405 -#: src/Content/Widget.php:504 +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 msgid "show more" msgstr "mehr anzeigen" -#: src/Content/Item.php:295 src/Model/Item.php:2858 +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "Neue Gruppe erstellen" + +#: src/Content/Item.php:331 src/Model/Item.php:3080 msgid "event" msgstr "Veranstaltung" -#: src/Content/Item.php:387 view/theme/frio/theme.php:267 +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "Status" + +#: src/Content/Item.php:340 src/Model/Item.php:3082 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "Foto" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 msgid "Follow Thread" msgstr "Folge der Unterhaltung" -#: src/Content/Item.php:388 src/Model/Contact.php:1199 +#: src/Content/Item.php:429 src/Model/Contact.php:1242 msgid "View Status" msgstr "Status anschauen" -#: src/Content/Item.php:389 src/Content/Item.php:407 -#: src/Model/Contact.php:1137 src/Model/Contact.php:1191 -#: src/Model/Contact.php:1200 src/Module/Directory.php:157 -#: src/Module/Settings/Profile/Index.php:225 +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1233 +#: src/Model/Contact.php:1243 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Profil anschauen" -#: src/Content/Item.php:390 src/Model/Contact.php:1201 +#: src/Content/Item.php:431 src/Model/Contact.php:1244 msgid "View Photos" msgstr "Bilder anschauen" -#: src/Content/Item.php:391 src/Model/Contact.php:1192 -#: src/Model/Contact.php:1202 +#: src/Content/Item.php:432 src/Model/Contact.php:1211 +#: src/Model/Profile.php:464 msgid "Network Posts" msgstr "Netzwerkbeiträge" -#: src/Content/Item.php:392 src/Model/Contact.php:1193 -#: src/Model/Contact.php:1203 +#: src/Content/Item.php:433 src/Model/Contact.php:1235 +#: src/Model/Contact.php:1246 msgid "View Contact" msgstr "Kontakt anzeigen" -#: src/Content/Item.php:393 src/Model/Contact.php:1204 +#: src/Content/Item.php:434 src/Model/Contact.php:1247 msgid "Send PM" msgstr "Private Nachricht senden" -#: src/Content/Item.php:394 src/Module/Admin/Blocklist/Contact.php:100 -#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 -#: src/Module/Contact.php:401 src/Module/Contact/Profile.php:349 -#: src/Module/Contact/Profile.php:450 +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 msgid "Block" msgstr "Sperren" -#: src/Content/Item.php:395 src/Module/Contact.php:402 -#: src/Module/Contact/Profile.php:350 src/Module/Contact/Profile.php:458 +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 #: src/Module/Notifications/Introductions.php:134 #: src/Module/Notifications/Introductions.php:206 #: src/Module/Notifications/Notification.php:89 msgid "Ignore" msgstr "Ignorieren" -#: src/Content/Item.php:399 src/Object/Post.php:454 +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "Zuklappen" + +#: src/Content/Item.php:438 src/Object/Post.php:289 +#, php-format +msgid "Ignore %s server" +msgstr "Ignoriere %s Server" + +#: src/Content/Item.php:442 src/Object/Post.php:491 msgid "Languages" msgstr "Sprachen" -#: src/Content/Nav.php:90 +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1236 src/Model/Contact.php:1248 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" + +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "Benutzer kann nicht abgerufen werden." + +#: src/Content/Nav.php:121 msgid "Nothing new here" msgstr "Keine Neuigkeiten" -#: src/Content/Nav.php:94 src/Module/Special/HTTPException.php:50 +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 msgid "Go back" msgstr "Geh zurück" -#: src/Content/Nav.php:95 +#: src/Content/Nav.php:126 msgid "Clear notifications" msgstr "Bereinige Benachrichtigungen" -#: src/Content/Nav.php:96 src/Content/Text/HTML.php:890 -msgid "@name, !forum, #tags, content" -msgstr "@name, !forum, #tags, content" +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" +msgstr "@name, !gruppe, #tags, content" -#: src/Content/Nav.php:185 src/Module/Security/Login.php:158 +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 msgid "Logout" msgstr "Abmelden" -#: src/Content/Nav.php:185 +#: src/Content/Nav.php:222 msgid "End this session" msgstr "Diese Sitzung beenden" -#: src/Content/Nav.php:187 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:159 +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 msgid "Login" msgstr "Anmeldung" -#: src/Content/Nav.php:187 +#: src/Content/Nav.php:224 msgid "Sign in" msgstr "Anmelden" -#: src/Content/Nav.php:192 src/Module/BaseProfile.php:56 -#: src/Module/Contact.php:436 src/Module/Contact/Profile.php:381 -#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:237 -msgid "Status" -msgstr "Status" +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "Unterhaltungen" -#: src/Content/Nav.php:192 src/Content/Nav.php:275 -#: view/theme/frio/theme.php:237 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "Unterhaltungen die du begonnen hast" -#: src/Content/Nav.php:193 src/Module/BaseProfile.php:48 -#: src/Module/BaseSettings.php:55 src/Module/Contact.php:460 -#: src/Module/Contact/Profile.php:383 src/Module/Profile/Profile.php:240 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 msgid "Profile" msgstr "Profil" -#: src/Content/Nav.php:193 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 msgid "Your profile page" msgstr "Deine Profilseite" -#: src/Content/Nav.php:194 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Bilder" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 msgid "Your photos" msgstr "Deine Fotos" -#: src/Content/Nav.php:195 src/Module/BaseProfile.php:72 -#: src/Module/BaseProfile.php:75 src/Module/Contact.php:452 -#: view/theme/frio/theme.php:240 +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 msgid "Media" msgstr "Medien" -#: src/Content/Nav.php:195 view/theme/frio/theme.php:240 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 msgid "Your postings with media" msgstr "Deine Beiträge die Medien beinhalten" -#: src/Content/Nav.php:196 view/theme/frio/theme.php:241 -msgid "Your events" -msgstr "Deine Ereignisse" +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:310 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "Kalender" -#: src/Content/Nav.php:197 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "Dein Kalender" + +#: src/Content/Nav.php:234 msgid "Personal notes" msgstr "Persönliche Notizen" -#: src/Content/Nav.php:197 +#: src/Content/Nav.php:234 msgid "Your personal notes" msgstr "Deine persönlichen Notizen" -#: src/Content/Nav.php:214 src/Content/Nav.php:275 +#: src/Content/Nav.php:251 src/Content/Nav.php:308 msgid "Home" msgstr "Pinnwand" -#: src/Content/Nav.php:218 src/Module/Register.php:168 +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "Homepage" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 #: src/Module/Security/Login.php:124 msgid "Register" msgstr "Registrieren" -#: src/Content/Nav.php:218 +#: src/Content/Nav.php:255 msgid "Create an account" msgstr "Nutzerkonto erstellen" -#: src/Content/Nav.php:224 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 #: src/Module/Settings/TwoFactor/Index.php:118 -#: src/Module/Settings/TwoFactor/Recovery.php:106 -#: src/Module/Settings/TwoFactor/Verify.php:145 view/theme/vier/theme.php:243 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 msgid "Help" msgstr "Hilfe" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:261 msgid "Help and documentation" msgstr "Hilfe und Dokumentation" -#: src/Content/Nav.php:228 +#: src/Content/Nav.php:265 msgid "Apps" msgstr "Apps" -#: src/Content/Nav.php:228 +#: src/Content/Nav.php:265 msgid "Addon applications, utilities, games" msgstr "Zusätzliche Anwendungen, Dienstprogramme, Spiele" -#: src/Content/Nav.php:232 src/Content/Text/HTML.php:888 -#: src/Module/Admin/Logs/View.php:87 src/Module/Search/Index.php:111 +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 msgid "Search" msgstr "Suche" -#: src/Content/Nav.php:232 +#: src/Content/Nav.php:269 msgid "Search site content" msgstr "Inhalt der Seite durchsuchen" -#: src/Content/Nav.php:235 src/Content/Text/HTML.php:897 +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 msgid "Full Text" msgstr "Volltext" -#: src/Content/Nav.php:236 src/Content/Text/HTML.php:898 +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 #: src/Content/Widget/TagCloud.php:68 msgid "Tags" msgstr "Tags" -#: src/Content/Nav.php:237 src/Content/Nav.php:296 -#: src/Content/Text/HTML.php:899 src/Module/BaseProfile.php:125 -#: src/Module/BaseProfile.php:128 src/Module/Contact.php:373 -#: src/Module/Contact.php:467 view/theme/frio/theme.php:248 +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 msgid "Contacts" msgstr "Kontakte" -#: src/Content/Nav.php:256 +#: src/Content/Nav.php:289 msgid "Community" msgstr "Gemeinschaft" -#: src/Content/Nav.php:256 +#: src/Content/Nav.php:289 msgid "Conversations on this and other servers" msgstr "Unterhaltungen auf diesem und anderen Servern" -#: src/Content/Nav.php:260 src/Module/BaseProfile.php:87 -#: src/Module/BaseProfile.php:98 view/theme/frio/theme.php:245 -msgid "Events and Calendar" -msgstr "Ereignisse und Kalender" - -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:296 msgid "Directory" msgstr "Verzeichnis" -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:296 msgid "People directory" msgstr "Nutzerverzeichnis" -#: src/Content/Nav.php:265 src/Module/BaseAdmin.php:85 +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 msgid "Information" msgstr "Information" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:298 msgid "Information about this friendica instance" msgstr "Informationen zu dieser Friendica-Instanz" -#: src/Content/Nav.php:268 src/Module/Admin/Tos.php:76 -#: src/Module/BaseAdmin.php:96 src/Module/Register.php:176 -#: src/Module/Tos.php:87 +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 msgid "Terms of Service" msgstr "Nutzungsbedingungen" -#: src/Content/Nav.php:268 +#: src/Content/Nav.php:301 msgid "Terms of Service of this Friendica instance" msgstr "Die Nutzungsbedingungen dieser Friendica-Instanz" -#: src/Content/Nav.php:273 view/theme/frio/theme.php:244 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Network" msgstr "Netzwerk" -#: src/Content/Nav.php:273 view/theme/frio/theme.php:244 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Conversations from your friends" msgstr "Unterhaltungen Deiner Kontakte" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" + +#: src/Content/Nav.php:312 msgid "Introductions" msgstr "Kontaktanfragen" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:312 msgid "Friend Requests" msgstr "Kontaktanfragen" -#: src/Content/Nav.php:280 src/Module/BaseNotifications.php:149 +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 #: src/Module/Notifications/Introductions.php:75 msgid "Notifications" msgstr "Benachrichtigungen" -#: src/Content/Nav.php:281 +#: src/Content/Nav.php:314 msgid "See all notifications" msgstr "Alle Benachrichtigungen anzeigen" -#: src/Content/Nav.php:282 +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Als gelesen markieren" + +#: src/Content/Nav.php:315 msgid "Mark all system notifications as seen" msgstr "Markiere alle Systembenachrichtigungen als gelesen" -#: src/Content/Nav.php:285 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Private mail" msgstr "Private E-Mail" -#: src/Content/Nav.php:286 +#: src/Content/Nav.php:319 msgid "Inbox" msgstr "Eingang" -#: src/Content/Nav.php:287 +#: src/Content/Nav.php:320 msgid "Outbox" msgstr "Ausgang" -#: src/Content/Nav.php:291 +#: src/Content/Nav.php:324 msgid "Accounts" msgstr "Nutzerkonten" -#: src/Content/Nav.php:291 +#: src/Content/Nav.php:324 msgid "Manage other pages" msgstr "Andere Seiten verwalten" -#: src/Content/Nav.php:294 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:122 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:247 +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 msgid "Settings" msgstr "Einstellungen" -#: src/Content/Nav.php:294 view/theme/frio/theme.php:247 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 msgid "Account settings" msgstr "Kontoeinstellungen" -#: src/Content/Nav.php:296 view/theme/frio/theme.php:248 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 msgid "Manage/edit friends and contacts" msgstr "Freunde und Kontakte verwalten/bearbeiten" -#: src/Content/Nav.php:301 src/Module/BaseAdmin.php:126 +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 msgid "Admin" msgstr "Administration" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:334 msgid "Site setup and configuration" msgstr "Einstellungen der Seite und Konfiguration" -#: src/Content/Nav.php:304 +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "Moderation" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "Moderation von Nutzern und Inhalten" + +#: src/Content/Nav.php:338 msgid "Navigation" msgstr "Navigation" -#: src/Content/Nav.php:304 +#: src/Content/Nav.php:338 msgid "Site map" msgstr "Sitemap" -#: src/Content/OEmbed.php:317 +#: src/Content/OEmbed.php:316 msgid "Embedding disabled" msgstr "Einbettungen deaktiviert" -#: src/Content/OEmbed.php:441 +#: src/Content/OEmbed.php:440 msgid "Embedded content" msgstr "Eingebetteter Inhalt" @@ -2673,51 +2224,51 @@ msgstr "nächste" msgid "last" msgstr "letzte" -#: src/Content/Text/BBCode.php:1002 src/Content/Text/BBCode.php:1883 -#: src/Content/Text/BBCode.php:1884 +#: src/Content/Text/BBCode.php:751 src/Content/Text/BBCode.php:1692 +#: src/Content/Text/BBCode.php:1693 msgid "Image/photo" msgstr "Bild/Foto" -#: src/Content/Text/BBCode.php:1238 +#: src/Content/Text/BBCode.php:969 #, php-format msgid "%2$s %3$s" msgstr "%2$s%3$s" -#: src/Content/Text/BBCode.php:1263 src/Model/Item.php:3461 -#: src/Model/Item.php:3467 src/Model/Item.php:3468 +#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3813 +#: src/Model/Item.php:3819 src/Model/Item.php:3820 msgid "Link to source" msgstr "Link zum Originalbeitrag" -#: src/Content/Text/BBCode.php:1801 src/Content/Text/HTML.php:940 +#: src/Content/Text/BBCode.php:1599 src/Content/Text/HTML.php:904 msgid "Click to open/close" msgstr "Zum Öffnen/Schließen klicken" -#: src/Content/Text/BBCode.php:1832 +#: src/Content/Text/BBCode.php:1632 msgid "$1 wrote:" msgstr "$1 hat geschrieben:" -#: src/Content/Text/BBCode.php:1888 src/Content/Text/BBCode.php:1889 +#: src/Content/Text/BBCode.php:1697 src/Content/Text/BBCode.php:1698 msgid "Encrypted content" msgstr "Verschlüsselter Inhalt" -#: src/Content/Text/BBCode.php:2109 +#: src/Content/Text/BBCode.php:1953 msgid "Invalid source protocol" msgstr "Ungültiges Quell-Protokoll" -#: src/Content/Text/BBCode.php:2124 +#: src/Content/Text/BBCode.php:1972 msgid "Invalid link protocol" msgstr "Ungültiges Link-Protokoll" -#: src/Content/Text/HTML.php:805 +#: src/Content/Text/HTML.php:782 msgid "Loading more entries..." msgstr "lade weitere Einträge..." -#: src/Content/Text/HTML.php:806 +#: src/Content/Text/HTML.php:783 msgid "The end" msgstr "Das Ende" -#: src/Content/Text/HTML.php:882 src/Content/Widget/VCard.php:109 -#: src/Model/Profile.php:459 +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:128 +#: src/Model/Profile.php:473 src/Module/Contact/Profile.php:471 msgid "Follow" msgstr "Folge" @@ -2744,113 +2295,131 @@ msgid_plural "%d invitations available" msgstr[0] "%d Einladung verfügbar" msgstr[1] "%d Einladungen verfügbar" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 msgid "Find People" msgstr "Leute finden" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 msgid "Enter name or interest" msgstr "Name oder Interessen eingeben" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Beispiel: Robert Morgenstein, Angeln" -#: src/Content/Widget.php:82 src/Module/Contact.php:394 -#: src/Module/Directory.php:96 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 msgid "Find" msgstr "Finde" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:202 +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "Kontaktvorschläge" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 msgid "Similar Interests" msgstr "Ähnliche Interessen" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:203 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 msgid "Random Profile" msgstr "Zufälliges Profil" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 msgid "Invite Friends" msgstr "Freunde einladen" #: src/Content/Widget.php:87 src/Module/Directory.php:88 -#: view/theme/vier/theme.php:205 +#: view/theme/vier/theme.php:202 msgid "Global Directory" msgstr "Weltweites Verzeichnis" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:207 +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 msgid "Local Directory" msgstr "Lokales Verzeichnis" -#: src/Content/Widget.php:211 src/Model/Group.php:587 -#: src/Module/Contact.php:357 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "Gruppen" +#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "Circles" -#: src/Content/Widget.php:213 +#: src/Content/Widget.php:217 msgid "Everyone" msgstr "Jeder" -#: src/Content/Widget.php:242 +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "Keine Beziehung" + +#: src/Content/Widget.php:247 msgid "Relationships" msgstr "Beziehungen" -#: src/Content/Widget.php:244 src/Module/Contact.php:309 -#: src/Module/Group.php:291 +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 msgid "All Contacts" msgstr "Alle Kontakte" -#: src/Content/Widget.php:283 +#: src/Content/Widget.php:288 msgid "Protocols" msgstr "Protokolle" -#: src/Content/Widget.php:285 +#: src/Content/Widget.php:290 msgid "All Protocols" msgstr "Alle Protokolle" -#: src/Content/Widget.php:313 +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "Gespeicherte Ordner" -#: src/Content/Widget.php:315 src/Content/Widget.php:346 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "Alles" -#: src/Content/Widget.php:344 +#: src/Content/Widget.php:349 msgid "Categories" msgstr "Kategorien" -#: src/Content/Widget.php:401 +#: src/Content/Widget.php:406 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d gemeinsamer Kontakt" msgstr[1] "%d gemeinsame Kontakte" -#: src/Content/Widget.php:497 +#: src/Content/Widget.php:506 msgid "Archives" msgstr "Archiv" -#: src/Content/Widget.php:521 +#: src/Content/Widget.php:514 +msgid "On this date" +msgstr "An diesem Datum" + +#: src/Content/Widget.php:534 msgid "Persons" msgstr "Personen" -#: src/Content/Widget.php:522 +#: src/Content/Widget.php:535 msgid "Organisations" msgstr "Organisationen" -#: src/Content/Widget.php:523 src/Model/Contact.php:1630 +#: src/Content/Widget.php:536 src/Model/Contact.php:1714 msgid "News" msgstr "Nachrichten" -#: src/Content/Widget.php:527 src/Module/Settings/Account.php:456 +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 msgid "Account Types" msgstr "Kontenarten" -#: src/Content/Widget.php:528 src/Module/Admin/BaseUsers.php:51 +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "Alle" +#: src/Content/Widget.php:591 src/Module/BaseSettings.php:125 +#: src/Module/Settings/Channels.php:157 src/Module/Settings/Display.php:309 +msgid "Channels" +msgstr "Kanäle" + #: src/Content/Widget/CalendarExport.php:56 msgid "Export" msgstr "Exportieren" @@ -2897,54 +2466,79 @@ msgstr[1] "Trending Tags (%d Stunden)" msgid "More Trending Tags" msgstr "mehr Trending Tags" -#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:378 -#: src/Module/Contact/Profile.php:372 src/Module/Profile/Profile.php:175 +#: src/Content/Widget/VCard.php:107 src/Model/Contact.php:1204 +#: src/Model/Profile.php:457 +msgid "Post to group" +msgstr "Beitrag an Gruppe" + +#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1209 +#: src/Model/Profile.php:462 src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "Mention" + +#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:103 src/Model/Profile.php:379 -#: src/Module/Contact/Profile.php:374 src/Module/Profile/Profile.php:179 +#: src/Content/Widget/VCard.php:122 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:471 +#: src/Content/Widget/VCard.php:123 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Ort:" + +#: src/Content/Widget/VCard.php:126 src/Model/Profile.php:486 #: src/Module/Notifications/Introductions.php:201 msgid "Network:" msgstr "Netzwerk:" -#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:461 +#: src/Content/Widget/VCard.php:130 src/Model/Contact.php:1237 +#: src/Model/Contact.php:1249 src/Model/Profile.php:475 +#: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Entfolgen" -#: src/Core/ACL.php:165 src/Module/Profile/Profile.php:241 +#: src/Content/Widget/VCard.php:136 src/Model/Contact.php:1206 +#: src/Model/Profile.php:459 +msgid "View group" +msgstr "Gruppe betrachten" + +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 msgid "Yourself" msgstr "Du selbst" -#: src/Core/ACL.php:201 src/Module/PermissionTooltip.php:128 -#: src/Module/PermissionTooltip.php:150 +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 msgid "Mutuals" msgstr "Beidseitige Freundschaft" -#: src/Core/ACL.php:293 +#: src/Core/ACL.php:294 msgid "Post to Email" msgstr "An E-Mail senden" -#: src/Core/ACL.php:320 src/Module/PermissionTooltip.php:85 -#: src/Module/PermissionTooltip.php:197 +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 msgid "Public" msgstr "Öffentlich" -#: src/Core/ACL.php:321 +#: src/Core/ACL.php:322 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "Dieser Inhalt wird all deine Abonenten sowie auf der Gemeinschaftsseite angezeigt. Außerdem kann ihn jeder sehen, der den Link kennt." -#: src/Core/ACL.php:322 src/Module/PermissionTooltip.php:93 +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 msgid "Limited/Private" msgstr "Begrenzt/Privat" -#: src/Core/ACL.php:323 +#: src/Core/ACL.php:324 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 " @@ -2952,40 +2546,54 @@ msgid "" msgstr "Dieser Inhalt wird außschließlich den Kontakten gezeigt, die du in der ersten Box ausgewählt hast, mit den Ausnahmen derer die du in der zweiten Box auflistest. Er wird nicht öffentlich zugänglich sein." #: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." +msgstr "Gebe den Namen eines Kontakts oder eines Circles ein, um eine gefilterte Liste anzuzeigen. Du kannst auch die speziellen Kreise \"Folgende\" und \"beidseitige Freundschaft\" erwähnen." + +#: src/Core/ACL.php:325 msgid "Show to:" msgstr "Sichtbar für:" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:326 msgid "Except to:" msgstr "Ausgenommen:" -#: src/Core/ACL.php:328 +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "Cc: E-Mail-Addressen" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Z.B.: bob@example.com, mary@example.com" + +#: src/Core/ACL.php:329 msgid "Connectors" msgstr "Connectoren" -#: src/Core/Installer.php:183 +#: src/Core/Installer.php:180 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 "Die Datenbankkonfigurationsdatei \"config/local.config.php\" konnte nicht erstellt werden. Um eine Konfigurationsdatei in Ihrem Webserver-Verzeichnis zu erstellen, gehe wie folgt vor." -#: src/Core/Installer.php:200 +#: src/Core/Installer.php:197 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren." -#: src/Core/Installer.php:201 src/Module/Install.php:213 -#: src/Module/Install.php:372 +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "Lies bitte die \"doc/INSTALL.md\"." -#: src/Core/Installer.php:262 +#: src/Core/Installer.php:259 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden." -#: src/Core/Installer.php:263 +#: src/Core/Installer.php:260 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 "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten'für das Worker-Setup'" -#: src/Core/Installer.php:268 +#: src/Core/Installer.php:265 msgid "PHP executable path" msgstr "Pfad zu PHP" -#: src/Core/Installer.php:268 +#: src/Core/Installer.php:265 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren." -#: src/Core/Installer.php:273 +#: src/Core/Installer.php:270 msgid "Command line PHP" msgstr "Kommandozeilen-PHP" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:279 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)" -#: src/Core/Installer.php:283 +#: src/Core/Installer.php:280 msgid "Found PHP version: " msgstr "Gefundene PHP Version:" -#: src/Core/Installer.php:285 +#: src/Core/Installer.php:282 msgid "PHP cli binary" msgstr "PHP CLI Binary" -#: src/Core/Installer.php:298 +#: src/Core/Installer.php:295 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert." -#: src/Core/Installer.php:299 +#: src/Core/Installer.php:296 msgid "This is required for message delivery to work." msgstr "Dies wird für die Auslieferung von Nachrichten benötigt." -#: src/Core/Installer.php:304 +#: src/Core/Installer.php:301 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:336 +#: src/Core/Installer.php:333 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen" -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:334 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an." -#: src/Core/Installer.php:340 +#: src/Core/Installer.php:337 msgid "Generate encryption keys" msgstr "Schlüssel erzeugen" -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:388 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert." -#: src/Core/Installer.php:397 +#: src/Core/Installer.php:392 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite module" -#: src/Core/Installer.php:403 +#: src/Core/Installer.php:398 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert." -#: src/Core/Installer.php:408 +#: src/Core/Installer.php:402 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Fehler: der MySQL Treiber für PDO ist nicht installiert" -#: src/Core/Installer.php:412 +#: src/Core/Installer.php:405 msgid "PDO or MySQLi PHP module" msgstr "PDO oder MySQLi PHP Modul" -#: src/Core/Installer.php:420 +#: src/Core/Installer.php:411 +msgid "Error: The IntlChar module is not installed." +msgstr "Fehler: Das IntlChar-Modul von PHP ist nicht installiert." + +#: src/Core/Installer.php:414 +msgid "IntlChar PHP module" +msgstr "PHP: IntlChar-Modul" + +#: src/Core/Installer.php:422 msgid "Error, XML PHP module required but not installed." msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert." -#: src/Core/Installer.php:424 +#: src/Core/Installer.php:426 msgid "XML PHP module" msgstr "XML PHP Modul" -#: src/Core/Installer.php:427 +#: src/Core/Installer.php:429 msgid "libCurl PHP module" msgstr "PHP: libCurl-Modul" -#: src/Core/Installer.php:428 +#: src/Core/Installer.php:430 msgid "Error: libCURL PHP module required but not installed." msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert." -#: src/Core/Installer.php:434 +#: src/Core/Installer.php:436 msgid "GD graphics PHP module" msgstr "PHP: GD-Grafikmodul" -#: src/Core/Installer.php:435 +#: src/Core/Installer.php:437 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert." -#: src/Core/Installer.php:441 +#: src/Core/Installer.php:443 msgid "OpenSSL PHP module" msgstr "PHP: OpenSSL-Modul" -#: src/Core/Installer.php:442 +#: src/Core/Installer.php:444 msgid "Error: openssl PHP module required but not installed." msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert." -#: src/Core/Installer.php:448 +#: src/Core/Installer.php:450 msgid "mb_string PHP module" msgstr "PHP: mb_string-Modul" -#: src/Core/Installer.php:449 +#: src/Core/Installer.php:451 msgid "Error: mb_string PHP module required but not installed." msgstr "Fehler: mb_string PHP Module wird benötigt, ist aber nicht installiert." -#: src/Core/Installer.php:455 +#: src/Core/Installer.php:457 msgid "iconv PHP module" msgstr "PHP iconv Modul" -#: src/Core/Installer.php:456 +#: src/Core/Installer.php:458 msgid "Error: iconv PHP module required but not installed." msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert." -#: src/Core/Installer.php:462 +#: src/Core/Installer.php:464 msgid "POSIX PHP module" msgstr "PHP POSIX Modul" -#: src/Core/Installer.php:463 +#: src/Core/Installer.php:465 msgid "Error: POSIX PHP module required but not installed." msgstr "Fehler POSIX PHP Modul erforderlich, aber nicht installiert." -#: src/Core/Installer.php:469 +#: src/Core/Installer.php:471 msgid "Program execution functions" msgstr "Funktionen zur Programmausführung" -#: src/Core/Installer.php:470 +#: src/Core/Installer.php:472 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:476 +#: src/Core/Installer.php:478 msgid "JSON PHP module" msgstr "PHP JSON Modul" -#: src/Core/Installer.php:477 +#: src/Core/Installer.php:479 msgid "Error: JSON PHP module required but not installed." msgstr "Fehler: Das JSON PHP Modul wird benötigt, ist aber nicht installiert." -#: src/Core/Installer.php:483 +#: src/Core/Installer.php:485 msgid "File Information PHP module" msgstr "PHP Datei Informations-Modul" -#: src/Core/Installer.php:484 +#: src/Core/Installer.php:486 msgid "Error: File Information PHP module required but not installed." msgstr "Fehler: Das Datei Informations PHP Modul ist nicht installiert." -#: src/Core/Installer.php:490 +#: src/Core/Installer.php:492 msgid "GNU Multiple Precision PHP module" msgstr "GNU Multiple Precision PHP Modul" -#: src/Core/Installer.php:491 +#: src/Core/Installer.php:493 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "Fehler: GNU Multiple Precision PHP Modul wird benötigt, ist aber nicht installiert." -#: src/Core/Installer.php:514 +#: src/Core/Installer.php:516 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 "Das Installationsprogramm muss in der Lage sein, eine Datei namens \"local.config.php\" im Ordner \"config\" Ihres Webservers zu erstellen, ist aber nicht in der Lage dazu." -#: src/Core/Installer.php:515 +#: src/Core/Installer.php:517 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 "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast." -#: src/Core/Installer.php:516 +#: src/Core/Installer.php:518 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 "Am Ende dieser Prozedur bekommst du einen Text, der in der local.config.php im Friendica \"config\" Ordner gespeichert werden muss." -#: src/Core/Installer.php:517 +#: src/Core/Installer.php:519 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei \"doc/INSTALL.md\"." -#: src/Core/Installer.php:520 +#: src/Core/Installer.php:522 msgid "config/local.config.php is writable" msgstr "config/local.config.php ist schreibbar" -#: src/Core/Installer.php:540 +#: src/Core/Installer.php:542 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica nutzt die Smarty3-Template-Engine, um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP, um das Rendern zu beschleunigen." -#: src/Core/Installer.php:541 +#: src/Core/Installer.php:543 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 "Um diese kompilierten Templates zu speichern, benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica." -#: src/Core/Installer.php:542 +#: src/Core/Installer.php:544 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Webserver läuft (z.B. www-data), Schreibrechte zu diesem Verzeichnis hat." -#: src/Core/Installer.php:543 +#: src/Core/Installer.php:545 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 "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht für die darin enthaltenen Template-Dateien (.tpl)." -#: src/Core/Installer.php:546 +#: src/Core/Installer.php:548 msgid "view/smarty3 is writable" msgstr "view/smarty3 ist schreibbar" -#: src/Core/Installer.php:574 +#: src/Core/Installer.php:576 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Vergewissere dich, dass du .htaccess-dist nach.htaccess kopiert hast." -#: src/Core/Installer.php:575 +#: src/Core/Installer.php:577 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "Unter bestimmten Umständen (z.B. Installationen in Containern) kannst du diesen Fehler übergehen." -#: src/Core/Installer.php:577 +#: src/Core/Installer.php:579 msgid "Error message from Curl when fetching" msgstr "Fehlermeldung von Curl während des Ladens" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:585 msgid "Url rewrite is working" msgstr "URL rewrite funktioniert" -#: src/Core/Installer.php:612 +#: src/Core/Installer.php:614 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "Die Erkennung von TLS, um die Kommunikation zwischen dem Browser und dem neuen Friendica-Server zu sichern, scheiterte." -#: src/Core/Installer.php:613 +#: src/Core/Installer.php:615 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "Friendica sollte nur über eine sichere Verbindung verwendet werden da sensible Informationen wie Passwörter übertragen werden." -#: src/Core/Installer.php:614 +#: src/Core/Installer.php:616 msgid "Please ensure that the connection to the server is secure." msgstr "Bitte vergewissere dich, dass die Verbindung zum Server sicher ist." -#: src/Core/Installer.php:615 +#: src/Core/Installer.php:617 msgid "No TLS detected" msgstr "Kein TLS gefunden" -#: src/Core/Installer.php:617 +#: src/Core/Installer.php:619 msgid "TLS detected" msgstr "TLS gefunden" -#: src/Core/Installer.php:644 +#: src/Core/Installer.php:646 msgid "ImageMagick PHP extension is not installed" msgstr "ImageMagicx PHP Erweiterung ist nicht installiert." -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:648 msgid "ImageMagick PHP extension is installed" msgstr "ImageMagick PHP Erweiterung ist installiert" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:650 msgid "ImageMagick supports GIF" msgstr "ImageMagick unterstützt GIF" -#: src/Core/Installer.php:670 +#: src/Core/Installer.php:672 msgid "Database already in use." msgstr "Die Datenbank wird bereits verwendet." -#: src/Core/Installer.php:675 +#: src/Core/Installer.php:677 msgid "Could not connect to database." msgstr "Verbindung zur Datenbank gescheitert." -#: src/Core/L10n.php:403 src/Model/Event.php:428 -#: src/Module/Settings/Display.php:183 +#: src/Core/L10n.php:507 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:278 msgid "Monday" msgstr "Montag" -#: src/Core/L10n.php:403 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:184 +#: src/Core/L10n.php:507 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:279 msgid "Tuesday" msgstr "Dienstag" -#: src/Core/L10n.php:403 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:185 +#: src/Core/L10n.php:507 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:280 msgid "Wednesday" msgstr "Mittwoch" -#: src/Core/L10n.php:403 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:186 +#: src/Core/L10n.php:507 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:281 msgid "Thursday" msgstr "Donnerstag" -#: src/Core/L10n.php:403 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:187 +#: src/Core/L10n.php:507 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:282 msgid "Friday" msgstr "Freitag" -#: src/Core/L10n.php:403 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:188 +#: src/Core/L10n.php:507 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:283 msgid "Saturday" msgstr "Samstag" -#: src/Core/L10n.php:403 src/Model/Event.php:427 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:507 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:277 msgid "Sunday" msgstr "Sonntag" -#: src/Core/L10n.php:407 src/Model/Event.php:448 +#: src/Core/L10n.php:511 src/Model/Event.php:450 msgid "January" msgstr "Januar" -#: src/Core/L10n.php:407 src/Model/Event.php:449 +#: src/Core/L10n.php:511 src/Model/Event.php:451 msgid "February" msgstr "Februar" -#: src/Core/L10n.php:407 src/Model/Event.php:450 +#: src/Core/L10n.php:511 src/Model/Event.php:452 msgid "March" msgstr "März" -#: src/Core/L10n.php:407 src/Model/Event.php:451 +#: src/Core/L10n.php:511 src/Model/Event.php:453 msgid "April" msgstr "April" -#: src/Core/L10n.php:407 src/Core/L10n.php:426 src/Model/Event.php:439 +#: src/Core/L10n.php:511 src/Core/L10n.php:530 src/Model/Event.php:441 msgid "May" msgstr "Mai" -#: src/Core/L10n.php:407 src/Model/Event.php:452 +#: src/Core/L10n.php:511 src/Model/Event.php:454 msgid "June" msgstr "Juni" -#: src/Core/L10n.php:407 src/Model/Event.php:453 +#: src/Core/L10n.php:511 src/Model/Event.php:455 msgid "July" msgstr "Juli" -#: src/Core/L10n.php:407 src/Model/Event.php:454 +#: src/Core/L10n.php:511 src/Model/Event.php:456 msgid "August" msgstr "August" -#: src/Core/L10n.php:407 src/Model/Event.php:455 +#: src/Core/L10n.php:511 src/Model/Event.php:457 msgid "September" msgstr "September" -#: src/Core/L10n.php:407 src/Model/Event.php:456 +#: src/Core/L10n.php:511 src/Model/Event.php:458 msgid "October" msgstr "Oktober" -#: src/Core/L10n.php:407 src/Model/Event.php:457 +#: src/Core/L10n.php:511 src/Model/Event.php:459 msgid "November" msgstr "November" -#: src/Core/L10n.php:407 src/Model/Event.php:458 +#: src/Core/L10n.php:511 src/Model/Event.php:460 msgid "December" msgstr "Dezember" -#: src/Core/L10n.php:422 src/Model/Event.php:420 +#: src/Core/L10n.php:526 src/Model/Event.php:422 msgid "Mon" msgstr "Mo" -#: src/Core/L10n.php:422 src/Model/Event.php:421 +#: src/Core/L10n.php:526 src/Model/Event.php:423 msgid "Tue" msgstr "Di" -#: src/Core/L10n.php:422 src/Model/Event.php:422 +#: src/Core/L10n.php:526 src/Model/Event.php:424 msgid "Wed" msgstr "Mi" -#: src/Core/L10n.php:422 src/Model/Event.php:423 +#: src/Core/L10n.php:526 src/Model/Event.php:425 msgid "Thu" msgstr "Do" -#: src/Core/L10n.php:422 src/Model/Event.php:424 +#: src/Core/L10n.php:526 src/Model/Event.php:426 msgid "Fri" msgstr "Fr" -#: src/Core/L10n.php:422 src/Model/Event.php:425 +#: src/Core/L10n.php:526 src/Model/Event.php:427 msgid "Sat" msgstr "Sa" -#: src/Core/L10n.php:422 src/Model/Event.php:419 +#: src/Core/L10n.php:526 src/Model/Event.php:421 msgid "Sun" msgstr "So" -#: src/Core/L10n.php:426 src/Model/Event.php:435 +#: src/Core/L10n.php:530 src/Model/Event.php:437 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:426 src/Model/Event.php:436 +#: src/Core/L10n.php:530 src/Model/Event.php:438 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:426 src/Model/Event.php:437 +#: src/Core/L10n.php:530 src/Model/Event.php:439 msgid "Mar" msgstr "März" -#: src/Core/L10n.php:426 src/Model/Event.php:438 +#: src/Core/L10n.php:530 src/Model/Event.php:440 msgid "Apr" msgstr "Apr" -#: src/Core/L10n.php:426 src/Model/Event.php:440 +#: src/Core/L10n.php:530 src/Model/Event.php:442 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:426 src/Model/Event.php:441 +#: src/Core/L10n.php:530 src/Model/Event.php:443 msgid "Jul" msgstr "Juli" -#: src/Core/L10n.php:426 src/Model/Event.php:442 +#: src/Core/L10n.php:530 src/Model/Event.php:444 msgid "Aug" msgstr "Aug" -#: src/Core/L10n.php:426 +#: src/Core/L10n.php:530 msgid "Sep" msgstr "Sep" -#: src/Core/L10n.php:426 src/Model/Event.php:444 +#: src/Core/L10n.php:530 src/Model/Event.php:446 msgid "Oct" msgstr "Okt" -#: src/Core/L10n.php:426 src/Model/Event.php:445 +#: src/Core/L10n.php:530 src/Model/Event.php:447 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:426 src/Model/Event.php:446 +#: src/Core/L10n.php:530 src/Model/Event.php:448 msgid "Dec" msgstr "Dez" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich (Fehler: '%s')" + +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich (Fehler: '%s')" + #: src/Core/Renderer.php:89 src/Core/Renderer.php:118 #: src/Core/Renderer.php:147 src/Core/Renderer.php:181 #: src/Render/FriendicaSmartyEngine.php:60 @@ -3467,36 +3094,36 @@ 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/Core/Update.php:69 +#: src/Core/Update.php:80 #, 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 "Aktualisierungen von der Version %s werden nicht unterstützt. Bitte aktualisiere vorher auf die Version 2021.01 von Friendica und warte bis das Postupdate auf die Version 1383 abgeschlossen ist." -#: src/Core/Update.php:80 +#: src/Core/Update.php:91 #, 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 "Aktualisierungen von der Postupdate Version %s werden nicht unterstützt. Bitte aktualisiere zunächst auf die Friendica Version 2021.01 und warte bis das Postupdate 1383 abgeschlossen ist." -#: src/Core/Update.php:155 +#: src/Core/Update.php:183 #, php-format msgid "%s: executing pre update %d" msgstr "%s: Pre-Update %d wird ausgeführt" -#: src/Core/Update.php:193 +#: src/Core/Update.php:225 #, php-format msgid "%s: executing post update %d" msgstr "%s: Post-Update %d wird ausgeführt" -#: src/Core/Update.php:263 +#: src/Core/Update.php:299 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." -#: src/Core/Update.php:317 +#: src/Core/Update.php:339 #, php-format msgid "" "\n" @@ -3506,81 +3133,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler, falls du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein." -#: src/Core/Update.php:323 +#: src/Core/Update.php:345 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "Die Fehlermeldung lautet [pre]%s[/pre]" -#: src/Core/Update.php:327 src/Core/Update.php:369 +#: src/Core/Update.php:349 src/Core/Update.php:377 msgid "[Friendica Notify] Database update" msgstr "[Friendica-Benachrichtigung]: Datenbank Update" -#: src/Core/Update.php:363 +#: src/Core/Update.php:371 #, php-format msgid "" "\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n \t\t\t\t\tDie Friendica Datenbank wurde erfolgreich von %s auf %s aktualisiert." - -#: src/Core/UserImport.php:126 -msgid "Error decoding account file" -msgstr "Fehler beim Verarbeiten der Account-Datei" - -#: src/Core/UserImport.php:132 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica-Account-Datei?" - -#: src/Core/UserImport.php:140 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "Nutzer '%s' existiert bereits auf diesem Server!" - -#: src/Core/UserImport.php:176 -msgid "User creation error" -msgstr "Fehler beim Anlegen des Nutzer-Accounts aufgetreten" - -#: src/Core/UserImport.php:221 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d Kontakt nicht importiert" -msgstr[1] "%d Kontakte nicht importiert" - -#: src/Core/UserImport.php:274 -msgid "User profile creation error" -msgstr "Fehler beim Anlegen des Nutzer-Profils" - -#: src/Core/UserImport.php:327 -msgid "Done. You can now login with your username and password" -msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden" +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "\n\t\t\t\tDie Friendica Datenbank wurde erfolgreich von %s auf %s aktualisiert." #: src/Database/DBStructure.php:57 #, php-format msgid "The database version had been set to %s." msgstr "Die Datenbank Version wurde auf %s gesetzt." -#: src/Database/DBStructure.php:70 +#: src/Database/DBStructure.php:82 #, 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:83 +#: src/Database/DBStructure.php:95 msgid "No unused tables found." msgstr "Keine Tabellen gefunden die nicht verwendet werden." -#: src/Database/DBStructure.php:88 +#: src/Database/DBStructure.php:100 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:126 +#: src/Database/DBStructure.php:137 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:150 +#: src/Database/DBStructure.php:161 #, php-format msgid "" "\n" @@ -3588,42 +3183,42 @@ msgid "" "%s\n" msgstr "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n" -#: src/Database/DBStructure.php:153 +#: src/Database/DBStructure.php:164 msgid "Errors encountered performing database changes: " msgstr "Fehler beim Ändern der Datenbank aufgetreten" -#: src/Database/DBStructure.php:219 +#: src/Database/DBStructure.php:232 msgid "Another database update is currently running." msgstr "Es läuft bereits ein anderes Datenbank Update" -#: src/Database/DBStructure.php:223 +#: src/Database/DBStructure.php:236 #, php-format msgid "%s: Database update" msgstr "%s: Datenbank Aktualisierung" -#: src/Database/DBStructure.php:479 +#: src/Database/DBStructure.php:493 #, php-format msgid "%s: updating %s table." msgstr "%s: aktualisiere Tabelle %s" -#: src/Factory/Api/Mastodon/Error.php:55 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Record not found" msgstr "Eintrag nicht gefunden" -#: src/Factory/Api/Mastodon/Error.php:65 +#: src/Factory/Api/Mastodon/Error.php:49 msgid "Unprocessable Entity" msgstr "Entität konnte nicht verarbeitet werden" -#: src/Factory/Api/Mastodon/Error.php:75 +#: src/Factory/Api/Mastodon/Error.php:56 msgid "Unauthorized" msgstr "Nicht autorisiert" -#: src/Factory/Api/Mastodon/Error.php:85 +#: src/Factory/Api/Mastodon/Error.php:62 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:95 +#: src/Factory/Api/Mastodon/Error.php:69 msgid "Internal Server Error" msgstr "Interner Serverfehler" @@ -3632,547 +3227,597 @@ msgstr "Interner Serverfehler" msgid "Legacy module file not found: %s" msgstr "Legacy-Moduldatei nicht gefunden: %s" -#: src/Model/Contact.php:1195 src/Model/Contact.php:1206 -msgid "UnFollow" -msgstr "Entfolgen" +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." +msgstr "Ein gelöschter Circle mit diesem Namen wurde wiederhergestellt. Bestehende Objektberechtigungen können für diesen Circle und alle zukünftigen Mitglieder gelten. Wenn dies nicht das ist, was du beabsichtigst, erstelle bitte einen neuen Circle mit einem anderen Namen." -#: src/Model/Contact.php:1212 src/Module/Admin/Users/Pending.php:107 +#: src/Model/Circle.php:544 +msgid "Everybody" +msgstr "Alle Kontakte" + +#: src/Model/Circle.php:563 +msgid "edit" +msgstr "bearbeiten" + +#: src/Model/Circle.php:600 +msgid "add" +msgstr "hinzufügen" + +#: src/Model/Circle.php:605 +msgid "Edit circle" +msgstr "Circle ändern" + +#: src/Model/Circle.php:606 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "Kontakte, die keinem Circle zugeordnet sind" + +#: src/Model/Circle.php:608 +msgid "Create a new circle" +msgstr "Erstelle neuen Circle" + +#: src/Model/Circle.php:609 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "Circle Name: " + +#: src/Model/Circle.php:610 +msgid "Edit circles" +msgstr "Circles bearbeiten" + +#: src/Model/Contact.php:1256 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Genehmigen" -#: src/Model/Contact.php:1626 +#: src/Model/Contact.php:1710 msgid "Organisation" msgstr "Organisation" -#: src/Model/Contact.php:1634 -msgid "Forum" -msgstr "Forum" +#: src/Model/Contact.php:1718 +msgid "Group" +msgstr "Gruppe" -#: src/Model/Contact.php:2820 +#: src/Model/Contact.php:3021 msgid "Disallowed profile URL." msgstr "Nicht erlaubte Profil-URL." -#: src/Model/Contact.php:2825 src/Module/Friendica.php:82 +#: src/Model/Contact.php:3026 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Blockierte Domain" -#: src/Model/Contact.php:2830 +#: src/Model/Contact.php:3031 msgid "Connect URL missing." msgstr "Connect-URL fehlt" -#: src/Model/Contact.php:2839 +#: src/Model/Contact.php:3040 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:2881 +#: src/Model/Contact.php:3058 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "Erwartetes Netzwerk %s stimmt nicht mit dem tatsächlichen Netzwerk überein %s" + +#: src/Model/Contact.php:3075 msgid "The profile address specified does not provide adequate information." msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." -#: src/Model/Contact.php:2883 +#: src/Model/Contact.php:3077 msgid "No compatible communication protocols or feeds were discovered." msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." -#: src/Model/Contact.php:2886 +#: src/Model/Contact.php:3080 msgid "An author or name was not found." msgstr "Es wurde kein Autor oder Name gefunden." -#: src/Model/Contact.php:2889 +#: src/Model/Contact.php:3083 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:2892 +#: src/Model/Contact.php:3086 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:2893 +#: src/Model/Contact.php:3087 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:2899 +#: src/Model/Contact.php:3093 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:2904 +#: src/Model/Contact.php:3098 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:2963 +#: src/Model/Contact.php:3164 msgid "Unable to retrieve contact information." msgstr "Konnte die Kontaktinformationen nicht empfangen." -#: src/Model/Event.php:52 +#: src/Model/Event.php:54 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "l F d, Y \\@ g:i A \\G\\M\\TP (e)" -#: src/Model/Event.php:73 src/Model/Event.php:90 src/Model/Event.php:467 -#: src/Model/Event.php:901 +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 msgid "Starts:" msgstr "Beginnt:" -#: src/Model/Event.php:76 src/Model/Event.php:96 src/Model/Event.php:468 -#: src/Model/Event.php:905 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 msgid "Finishes:" msgstr "Endet:" -#: src/Model/Event.php:417 +#: src/Model/Event.php:419 msgid "all-day" msgstr "ganztägig" -#: src/Model/Event.php:443 +#: src/Model/Event.php:445 msgid "Sept" msgstr "Sep" -#: src/Model/Event.php:465 +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "Heute" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:288 src/Util/Temporal.php:353 +msgid "month" +msgstr "Monat" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:289 src/Util/Temporal.php:354 +msgid "week" +msgstr "Woche" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:290 src/Util/Temporal.php:355 +msgid "day" +msgstr "Tag" + +#: src/Model/Event.php:467 msgid "No events to display" msgstr "Keine Veranstaltung zum Anzeigen" -#: src/Model/Event.php:581 +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "Veranstaltung nicht gefunden." + +#: src/Model/Event.php:637 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:612 +#: src/Model/Event.php:664 msgid "Edit event" msgstr "Veranstaltung bearbeiten" -#: src/Model/Event.php:613 +#: src/Model/Event.php:665 msgid "Duplicate event" msgstr "Veranstaltung kopieren" -#: src/Model/Event.php:614 +#: src/Model/Event.php:666 msgid "Delete event" msgstr "Veranstaltung löschen" -#: src/Model/Event.php:857 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 msgid "l F d, Y \\@ g:i A" msgstr "l, d. F Y\\, H:i" -#: src/Model/Event.php:858 +#: src/Model/Event.php:897 msgid "D g:i A" msgstr "D H:i" -#: src/Model/Event.php:859 +#: src/Model/Event.php:898 msgid "g:i A" msgstr "H:i" -#: src/Model/Event.php:920 src/Model/Event.php:922 +#: src/Model/Event.php:964 src/Model/Event.php:966 msgid "Show map" msgstr "Karte anzeigen" -#: src/Model/Event.php:921 +#: src/Model/Event.php:965 msgid "Hide map" msgstr "Karte verbergen" -#: src/Model/Event.php:1014 +#: src/Model/Event.php:1058 #, php-format msgid "%s's birthday" msgstr "%ss Geburtstag" -#: src/Model/Event.php:1015 +#: src/Model/Event.php:1059 #, php-format msgid "Happy Birthday %s" msgstr "Herzlichen Glückwunsch, %s" -#: src/Model/Group.php:105 -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 "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen." - -#: src/Model/Group.php:503 -msgid "Default privacy group for new contacts" -msgstr "Voreingestellte Gruppe für neue Kontakte" - -#: src/Model/Group.php:535 -msgid "Everybody" -msgstr "Alle Kontakte" - -#: src/Model/Group.php:554 -msgid "edit" -msgstr "bearbeiten" - -#: src/Model/Group.php:586 -msgid "add" -msgstr "hinzufügen" - -#: src/Model/Group.php:591 -msgid "Edit group" -msgstr "Gruppe bearbeiten" - -#: src/Model/Group.php:592 src/Module/Group.php:192 -msgid "Contacts not in any group" -msgstr "Kontakte in keiner Gruppe" - -#: src/Model/Group.php:594 -msgid "Create a new group" -msgstr "Neue Gruppe erstellen" - -#: src/Model/Group.php:595 src/Module/Group.php:177 src/Module/Group.php:200 -#: src/Module/Group.php:275 -msgid "Group Name: " -msgstr "Gruppenname:" - -#: src/Model/Group.php:596 -msgid "Edit groups" -msgstr "Gruppen bearbeiten" - -#: src/Model/Item.php:1970 +#: src/Model/Item.php:2139 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Erkannte Sprachen in diesem Beitrag:\\n%s" -#: src/Model/Item.php:2862 +#: src/Model/Item.php:3084 msgid "activity" msgstr "Aktivität" -#: src/Model/Item.php:2864 +#: src/Model/Item.php:3086 msgid "comment" msgstr "Kommentar" -#: src/Model/Item.php:2867 +#: src/Model/Item.php:3089 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "Beitrag" -#: src/Model/Item.php:3010 +#: src/Model/Item.php:3259 +#, php-format +msgid "%s is blocked" +msgstr "%s ist blockiert" + +#: src/Model/Item.php:3261 +#, php-format +msgid "%s is ignored" +msgstr "%s ist ignoriert" + +#: src/Model/Item.php:3263 +#, php-format +msgid "Content from %s is collapsed" +msgstr "Inhalt vom %s ist zugeklappt" + +#: src/Model/Item.php:3267 #, php-format msgid "Content warning: %s" msgstr "Inhaltswarnung: %s" -#: src/Model/Item.php:3373 +#: src/Model/Item.php:3720 msgid "bytes" msgstr "Byte" -#: src/Model/Item.php:3404 +#: src/Model/Item.php:3751 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "%2$s (%3$d%%, %1$d Stimme)" msgstr[1] "%2$s (%3$d%%, %1$d Stimmen)" -#: src/Model/Item.php:3406 +#: src/Model/Item.php:3753 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "%2$s (%1$d Stimme)" msgstr[1] "%2$s (%1$d Stimmen)" -#: src/Model/Item.php:3411 +#: src/Model/Item.php:3758 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "%d Stimme, Abstimmung endet: %s" msgstr[1] "%d Stimmen, Abstimmung endet: %s" -#: src/Model/Item.php:3413 +#: src/Model/Item.php:3760 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "%d Stimme." msgstr[1] "%d Stimmen." -#: src/Model/Item.php:3415 +#: src/Model/Item.php:3762 #, php-format msgid "Poll end: %s" msgstr "Abstimmung endet: %s" -#: src/Model/Item.php:3449 src/Model/Item.php:3450 +#: src/Model/Item.php:3796 src/Model/Item.php:3797 msgid "View on separate page" msgstr "Auf separater Seite ansehen" -#: src/Model/Mail.php:137 src/Model/Mail.php:265 +#: src/Model/Mail.php:137 src/Model/Mail.php:266 msgid "[no subject]" msgstr "[kein Betreff]" -#: src/Model/Profile.php:361 src/Module/Profile/Profile.php:255 -#: src/Module/Profile/Profile.php:257 +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Pinnwand-Bilder" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 msgid "Edit profile" msgstr "Profil bearbeiten" -#: src/Model/Profile.php:363 +#: src/Model/Profile.php:361 msgid "Change profile photo" msgstr "Profilbild ändern" -#: src/Model/Profile.php:376 src/Module/Directory.php:152 -#: src/Module/Profile/Profile.php:183 +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 msgid "Homepage:" msgstr "Homepage:" -#: src/Model/Profile.php:377 src/Module/Contact/Profile.php:376 +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 #: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "Über:" -#: src/Model/Profile.php:463 +#: src/Model/Profile.php:477 msgid "Atom feed" msgstr "Atom-Feed" -#: src/Model/Profile.php:506 +#: src/Model/Profile.php:484 +msgid "This website has been verified to belong to the same person." +msgstr "Die Webseite wurde verifiziert und gehört der gleichen Person." + +#: src/Model/Profile.php:525 msgid "F d" msgstr "d. F" -#: src/Model/Profile.php:570 src/Model/Profile.php:659 +#: src/Model/Profile.php:589 src/Model/Profile.php:678 msgid "[today]" msgstr "[heute]" -#: src/Model/Profile.php:579 +#: src/Model/Profile.php:598 msgid "Birthday Reminders" msgstr "Geburtstagserinnerungen" -#: src/Model/Profile.php:580 +#: src/Model/Profile.php:599 msgid "Birthdays this week:" msgstr "Geburtstage diese Woche:" -#: src/Model/Profile.php:608 +#: src/Model/Profile.php:627 msgid "g A l F d" msgstr "l, d. F G \\U\\h\\r" -#: src/Model/Profile.php:646 +#: src/Model/Profile.php:665 msgid "[No description]" msgstr "[keine Beschreibung]" -#: src/Model/Profile.php:672 +#: src/Model/Profile.php:691 msgid "Event Reminders" msgstr "Veranstaltungserinnerungen" -#: src/Model/Profile.php:673 +#: src/Model/Profile.php:692 msgid "Upcoming events the next 7 days:" msgstr "Veranstaltungen der nächsten 7 Tage:" -#: src/Model/Profile.php:867 +#: src/Model/Profile.php:891 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s heißt %2$s herzlich willkommen" -#: src/Model/Profile.php:1007 +#: src/Model/Profile.php:1031 msgid "Hometown:" msgstr "Heimatort:" -#: src/Model/Profile.php:1008 +#: src/Model/Profile.php:1032 msgid "Marital Status:" msgstr "Familienstand:" -#: src/Model/Profile.php:1009 +#: src/Model/Profile.php:1033 msgid "With:" msgstr "Mit:" -#: src/Model/Profile.php:1010 +#: src/Model/Profile.php:1034 msgid "Since:" msgstr "Seit:" -#: src/Model/Profile.php:1011 +#: src/Model/Profile.php:1035 msgid "Sexual Preference:" msgstr "Sexuelle Vorlieben:" -#: src/Model/Profile.php:1012 +#: src/Model/Profile.php:1036 msgid "Political Views:" msgstr "Politische Ansichten:" -#: src/Model/Profile.php:1013 +#: src/Model/Profile.php:1037 msgid "Religious Views:" msgstr "Religiöse Ansichten:" -#: src/Model/Profile.php:1014 +#: src/Model/Profile.php:1038 msgid "Likes:" msgstr "Likes:" -#: src/Model/Profile.php:1015 +#: src/Model/Profile.php:1039 msgid "Dislikes:" msgstr "Dislikes:" -#: src/Model/Profile.php:1016 +#: src/Model/Profile.php:1040 msgid "Title/Description:" msgstr "Titel/Beschreibung:" -#: src/Model/Profile.php:1017 src/Module/Admin/Summary.php:235 +#: src/Model/Profile.php:1041 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 msgid "Summary" msgstr "Zusammenfassung" -#: src/Model/Profile.php:1018 +#: src/Model/Profile.php:1042 msgid "Musical interests" msgstr "Musikalische Interessen" -#: src/Model/Profile.php:1019 +#: src/Model/Profile.php:1043 msgid "Books, literature" msgstr "Bücher, Literatur" -#: src/Model/Profile.php:1020 +#: src/Model/Profile.php:1044 msgid "Television" msgstr "Fernsehen" -#: src/Model/Profile.php:1021 +#: src/Model/Profile.php:1045 msgid "Film/dance/culture/entertainment" msgstr "Filme/Tänze/Kultur/Unterhaltung" -#: src/Model/Profile.php:1022 +#: src/Model/Profile.php:1046 msgid "Hobbies/Interests" msgstr "Hobbies/Interessen" -#: src/Model/Profile.php:1023 +#: src/Model/Profile.php:1047 msgid "Love/romance" msgstr "Liebe/Romantik" -#: src/Model/Profile.php:1024 +#: src/Model/Profile.php:1048 msgid "Work/employment" msgstr "Arbeit/Anstellung" -#: src/Model/Profile.php:1025 +#: src/Model/Profile.php:1049 msgid "School/education" msgstr "Schule/Ausbildung" -#: src/Model/Profile.php:1026 +#: src/Model/Profile.php:1050 msgid "Contact information and Social Networks" msgstr "Kontaktinformationen und Soziale Netzwerke" -#: src/Model/User.php:212 src/Model/User.php:1085 +#: src/Model/User.php:226 src/Model/User.php:1185 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." -#: src/Model/User.php:572 src/Model/User.php:605 +#: src/Model/User.php:619 src/Model/User.php:652 msgid "Login failed" msgstr "Anmeldung fehlgeschlagen" -#: src/Model/User.php:637 +#: src/Model/User.php:684 msgid "Not enough information to authenticate" msgstr "Nicht genügend Informationen für die Authentifizierung" -#: src/Model/User.php:732 +#: src/Model/User.php:805 msgid "Password can't be empty" msgstr "Das Passwort kann nicht leer sein" -#: src/Model/User.php:774 +#: src/Model/User.php:847 msgid "Empty passwords are not allowed." msgstr "Leere Passwörter sind nicht erlaubt." -#: src/Model/User.php:778 +#: src/Model/User.php:851 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:782 +#: src/Model/User.php:855 msgid "The password length is limited to 72 characters." msgstr "Die Länge des Passworts ist auf 72 Zeichen begrenzt." -#: src/Model/User.php:786 -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:859 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "Das Passwort kann weder Leerzeichen noch akzentuierte Zeichen beinhalten." -#: src/Model/User.php:965 +#: src/Model/User.php:1068 msgid "Passwords do not match. Password unchanged." msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." -#: src/Model/User.php:972 +#: src/Model/User.php:1075 msgid "An invitation is required." msgstr "Du benötigst eine Einladung." -#: src/Model/User.php:976 +#: src/Model/User.php:1079 msgid "Invitation could not be verified." msgstr "Die Einladung konnte nicht überprüft werden." -#: src/Model/User.php:984 +#: src/Model/User.php:1087 msgid "Invalid OpenID url" msgstr "Ungültige OpenID URL" -#: src/Model/User.php:997 src/Security/Authentication.php:239 +#: src/Model/User.php:1100 src/Security/Authentication.php:241 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:997 src/Security/Authentication.php:239 +#: src/Model/User.php:1100 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "Die Fehlermeldung lautete:" -#: src/Model/User.php:1003 +#: src/Model/User.php:1106 msgid "Please enter the required information." msgstr "Bitte trage die erforderlichen Informationen ein." -#: src/Model/User.php:1017 +#: src/Model/User.php:1120 #, 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:1024 +#: src/Model/User.php:1127 #, 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:1028 +#: src/Model/User.php:1131 #, 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:1036 +#: src/Model/User.php:1139 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:1041 +#: src/Model/User.php:1144 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:1045 +#: src/Model/User.php:1148 msgid "Not a valid email address." msgstr "Keine gültige E-Mail-Adresse." -#: src/Model/User.php:1048 +#: src/Model/User.php:1151 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:1052 src/Model/User.php:1060 +#: src/Model/User.php:1155 src/Model/User.php:1161 msgid "Cannot use that email." msgstr "Konnte diese E-Mail-Adresse nicht verwenden." -#: src/Model/User.php:1067 +#: src/Model/User.php:1167 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:1075 src/Model/User.php:1132 +#: src/Model/User.php:1175 src/Model/User.php:1232 msgid "Nickname is already registered. Please choose another." msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." -#: src/Model/User.php:1119 src/Model/User.php:1123 +#: src/Model/User.php:1219 src/Model/User.php:1223 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:1146 +#: src/Model/User.php:1246 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:1153 +#: src/Model/User.php:1253 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:1158 +#: src/Model/User.php:1258 msgid "Friends" msgstr "Kontakte" -#: src/Model/User.php:1162 +#: src/Model/User.php:1262 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." +"An error occurred creating your default contact circle. Please try again." +msgstr "Beim Erstellen Ihres Circles ist ein Fehler aufgetreten. Bitte versuche es erneut." -#: src/Model/User.php:1201 +#: src/Model/User.php:1306 msgid "Profile Photos" msgstr "Profilbilder" -#: src/Model/User.php:1394 +#: src/Model/User.php:1486 #, php-format msgid "" "\n" @@ -4180,7 +3825,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:1397 +#: src/Model/User.php:1489 #, php-format msgid "" "\n" @@ -4207,17 +3852,17 @@ msgid "" "\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" +"\t\tIf you ever want to delete your account, you can do so at %1$s/settings/removeme\n" "\n" "\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." +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/settings/removeme wieder löschen.\n\nDanke und willkommen auf %4$s." -#: src/Model/User.php:1430 src/Model/User.php:1537 +#: src/Model/User.php:1522 src/Model/User.php:1629 #, php-format msgid "Registration details for %s" msgstr "Details der Registration von %s" -#: src/Model/User.php:1450 +#: src/Model/User.php:1542 #, php-format msgid "" "\n" @@ -4232,12 +3877,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:1469 +#: src/Model/User.php:1561 #, php-format msgid "Registration at %s" msgstr "Registrierung als %s" -#: src/Model/User.php:1493 +#: src/Model/User.php:1585 #, php-format msgid "" "\n" @@ -4246,7 +3891,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:1501 +#: src/Model/User.php:1593 #, php-format msgid "" "\n" @@ -4273,25 +3918,15 @@ msgid "" "\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" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." -msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten, um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wiederfinden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %3$s/removeme jederzeit tun.\n\nDanke für deine Aufmerksamkeit und willkommen auf %2$s." +msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten, um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wiederfinden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %3$s/settings/removeme jederzeit tun.\n\nDanke für deine Aufmerksamkeit und willkommen auf %2$s." -#: src/Moderation/DomainPatternBlocklist.php:228 -#, php-format -msgid "[%s] Notice of remote server domain pattern block list update" -msgstr "[%s] Die Liste der blockierten Domain Muster wurde aktualisiert" - -#: src/Moderation/DomainPatternBlocklist.php:230 -#, php-format +#: src/Model/User.php:1656 msgid "" -"Dear %s,\n" -"\n" -"You are receiving this email because the Friendica node at %s where you are registered as a user updated their remote server domain pattern block list.\n" -"\n" -"Please review the updated list at %s at your earliest convenience." -msgstr "Hallo %s,\n\ndu erhällst diese EMail, da du auf dem Friendica Knoten %s einen Account besitzt. Die Blockliste für gesperrte Knoten wurde aktualisiert.\n\nDie Änderungen an der Blockliste kannst du unter %s einsehen." +"User with delegates can't be removed, please remove delegate users first" +msgstr "Benutzer mit Delegaten können nicht entfernt werden, bitte entferne zuerst die delegierten Benutzer" #: src/Module/Admin/Addons/Details.php:65 msgid "Addon not found." @@ -4305,7 +3940,7 @@ msgstr "Addon %s ausgeschaltet." #: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 #, php-format msgid "Addon %s enabled." -msgstr "Addon %s eingeschaltet." +msgstr "Addon %s aktiviert." #: src/Module/Admin/Addons/Details.php:88 #: src/Module/Admin/Themes/Details.php:46 @@ -4313,32 +3948,25 @@ msgid "Disable" msgstr "Ausschalten" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:332 msgid "Enable" msgstr "Einschalten" #: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:94 -#: src/Module/Admin/Blocklist/Server/Add.php:121 -#: src/Module/Admin/Blocklist/Server/Import.php:117 -#: src/Module/Admin/Blocklist/Server/Index.php:91 -#: src/Module/Admin/Federation.php:202 src/Module/Admin/Item/Delete.php:64 -#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:84 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:429 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:234 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:75 -#: 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 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 msgid "Administration" msgstr "Administration" #: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:93 -#: src/Module/BaseSettings.php:85 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:139 msgid "Addons" msgstr "Addons" @@ -4347,13 +3975,13 @@ msgstr "Addons" msgid "Toggle" msgstr "Umschalten" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 msgid "Author: " msgstr "Autor:" -#: src/Module/Admin/Addons/Details.php:122 -#: src/Module/Admin/Themes/Details.php:102 +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 msgid "Maintainer: " msgstr "Betreuer:" @@ -4366,11 +3994,22 @@ msgstr "Addons neu geladen" msgid "Addon %s failed to install." msgstr "Addon %s konnte nicht installiert werden" +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:303 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Einstellungen speichern" + #: src/Module/Admin/Addons/Index.php:70 msgid "Reload active addons" msgstr "Aktivierte Addons neu laden" -#: src/Module/Admin/Addons/Index.php:75 +#: src/Module/Admin/Addons/Index.php:74 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4378,414 +4017,6 @@ msgid "" " the open addon registry at %2$s" msgstr "Es sind derzeit keine Addons auf diesem Knoten verfügbar. Du findest das offizielle Addon-Repository unter %1$s und weitere eventuell interessante Addons im offenen Addon-Verzeichnis auf %2$s." -#: src/Module/Admin/BaseUsers.php:54 -msgid "List of all users" -msgstr "Liste aller Benutzerkonten" - -#: src/Module/Admin/BaseUsers.php:59 -msgid "Active" -msgstr "Aktive" - -#: src/Module/Admin/BaseUsers.php:62 -msgid "List of active accounts" -msgstr "Liste der aktiven Benutzerkonten" - -#: src/Module/Admin/BaseUsers.php:67 src/Module/Contact.php:317 -#: src/Module/Contact.php:377 -msgid "Pending" -msgstr "Ausstehend" - -#: src/Module/Admin/BaseUsers.php:70 -msgid "List of pending registrations" -msgstr "Liste der anstehenden Benutzerkonten" - -#: src/Module/Admin/BaseUsers.php:75 src/Module/Contact.php:325 -#: src/Module/Contact.php:378 -msgid "Blocked" -msgstr "Geblockt" - -#: src/Module/Admin/BaseUsers.php:78 -msgid "List of blocked users" -msgstr "Liste der geblockten Benutzer" - -#: src/Module/Admin/BaseUsers.php:83 -msgid "Deleted" -msgstr "Gelöscht" - -#: src/Module/Admin/BaseUsers.php:86 -msgid "List of pending user deletions" -msgstr "Liste der auf Löschung wartenden Benutzer" - -#: src/Module/Admin/BaseUsers.php:100 src/Module/Settings/Account.php:494 -msgid "Normal Account Page" -msgstr "Normales Konto" - -#: src/Module/Admin/BaseUsers.php:101 src/Module/Settings/Account.php:501 -msgid "Soapbox Page" -msgstr "Marktschreier-Konto" - -#: src/Module/Admin/BaseUsers.php:102 src/Module/Settings/Account.php:508 -msgid "Public Forum" -msgstr "Öffentliches Forum" - -#: src/Module/Admin/BaseUsers.php:103 src/Module/Settings/Account.php:515 -msgid "Automatic Friend Page" -msgstr "Automatische Freunde-Seite" - -#: src/Module/Admin/BaseUsers.php:104 -msgid "Private Forum" -msgstr "Privates Forum" - -#: src/Module/Admin/BaseUsers.php:107 src/Module/Settings/Account.php:466 -msgid "Personal Page" -msgstr "Persönliche Seite" - -#: src/Module/Admin/BaseUsers.php:108 src/Module/Settings/Account.php:473 -msgid "Organisation Page" -msgstr "Organisationsseite" - -#: src/Module/Admin/BaseUsers.php:109 src/Module/Settings/Account.php:480 -msgid "News Page" -msgstr "Nachrichtenseite" - -#: src/Module/Admin/BaseUsers.php:110 src/Module/Settings/Account.php:487 -msgid "Community Forum" -msgstr "Gemeinschaftsforum" - -#: src/Module/Admin/BaseUsers.php:111 -msgid "Relay" -msgstr "Relais" - -#: src/Module/Admin/Blocklist/Contact.php:54 -msgid "You can't block a local contact, please block the user instead" -msgstr "Lokale Kontakte können nicht geblockt werden. Bitte blocke den Nutzer stattdessen." - -#: src/Module/Admin/Blocklist/Contact.php:73 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%sKontakt wieder freigegeben" -msgstr[1] "%sKontakte wieder freigegeben" - -#: src/Module/Admin/Blocklist/Contact.php:95 -msgid "Remote Contact Blocklist" -msgstr "Blockliste entfernter Kontakte" - -#: src/Module/Admin/Blocklist/Contact.php:96 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "Auf dieser Seite kannst du Accounts von anderen Knoten blockieren und damit verhindern, dass ihre Beiträge von deinem Knoten angenommen werden." - -#: src/Module/Admin/Blocklist/Contact.php:97 -msgid "Block Remote Contact" -msgstr "Blockiere entfernten Kontakt" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#: 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 "Alle auswählen" - -#: src/Module/Admin/Blocklist/Contact.php:99 -msgid "select none" -msgstr "Auswahl aufheben" - -#: src/Module/Admin/Blocklist/Contact.php:101 -#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156 -#: src/Module/Contact.php:401 src/Module/Contact/Profile.php:349 -#: src/Module/Contact/Profile.php:450 -msgid "Unblock" -msgstr "Entsperren" - -#: src/Module/Admin/Blocklist/Contact.php:102 -msgid "No remote contact is blocked from this node." -msgstr "Derzeit werden keine Kontakte auf diesem Knoten blockiert." - -#: src/Module/Admin/Blocklist/Contact.php:104 -msgid "Blocked Remote Contacts" -msgstr "Blockierte Kontakte von anderen Knoten" - -#: src/Module/Admin/Blocklist/Contact.php:105 -msgid "Block New Remote Contact" -msgstr "Blockieren von weiteren Kontakten" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Photo" -msgstr "Foto:" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Reason" -msgstr "Grund" - -#: src/Module/Admin/Blocklist/Contact.php:114 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "Insgesamt %s blockierter Kontakt" -msgstr[1] "Insgesamt %s blockierte Kontakte" - -#: src/Module/Admin/Blocklist/Contact.php:116 -msgid "URL of the remote contact to block." -msgstr "Die URL des entfernten Kontakts, der blockiert werden soll." - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "Also purge contact" -msgstr "Kontakt auch löschen" - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "" -"Removes all content related to this contact from the node. Keeps the contact" -" record. This action cannot be undone." -msgstr "Entfernt alle Inhalte von diesem Knoten, die in Verbindung zu dem Kontakt stehen. Der Kontakt-Eintrag bleibt erhalten. Dieser Vorgang kann nicht rückgängig gemacht werden." - -#: src/Module/Admin/Blocklist/Contact.php:118 -#: src/Module/Admin/Blocklist/Server/Import.php:123 -msgid "Block Reason" -msgstr "Sperrgrund" - -#: src/Module/Admin/Blocklist/Server/Add.php:80 -msgid "Server domain pattern added to the blocklist." -msgstr "Server Domain Muster zur Blockliste hinzugefügt" - -#: src/Module/Admin/Blocklist/Server/Add.php:88 -#, php-format -msgid "%s server scheduled to be purged." -msgid_plural "%s servers scheduled to be purged." -msgstr[0] "%s Server für die Löschung eingeplant." -msgstr[1] "%s Server für die Löschung eingeplant." - -#: src/Module/Admin/Blocklist/Server/Add.php:120 -#: src/Module/Admin/Blocklist/Server/Import.php:116 -msgid "← Return to the list" -msgstr "← zurück zur Liste" - -#: src/Module/Admin/Blocklist/Server/Add.php:122 -msgid "Block A New Server Domain Pattern" -msgstr "Neues Domainmuster blockieren" - -#: src/Module/Admin/Blocklist/Server/Add.php:123 -#: src/Module/Admin/Blocklist/Server/Index.php:95 -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" -"
    " -msgstr "

    Die Syntax für das Domainmuster ist unabhängig von der Groß-/Kleinschreibung. Shell Willdcards bestehen aus den folgenden Zeichen:

    \n
      \n
    • *: Eine beliebige Anzahl von Zeichen
    • \n
    • ?: Ein einzelnes Zeichen
    • \n
    " - -#: src/Module/Admin/Blocklist/Server/Add.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:103 -msgid "Check pattern" -msgstr "Muster überprüfen" - -#: src/Module/Admin/Blocklist/Server/Add.php:129 -msgid "Matching known servers" -msgstr "Passende bekannte Server" - -#: src/Module/Admin/Blocklist/Server/Add.php:130 -msgid "Server Name" -msgstr "Server Name" - -#: src/Module/Admin/Blocklist/Server/Add.php:131 -msgid "Server Domain" -msgstr "Server Domain" - -#: src/Module/Admin/Blocklist/Server/Add.php:132 -msgid "Known Contacts" -msgstr "Bekannte Kontakte" - -#: src/Module/Admin/Blocklist/Server/Add.php:133 -#, php-format -msgid "%d known server" -msgid_plural "%d known servers" -msgstr[0] "%d bekannter Server" -msgstr[1] "%d bekannte Server" - -#: src/Module/Admin/Blocklist/Server/Add.php:134 -msgid "Add pattern to the blocklist" -msgstr "Muster zur Blockliste hinzufügen" - -#: src/Module/Admin/Blocklist/Server/Add.php:136 -#: src/Module/Admin/Blocklist/Server/Index.php:112 -msgid "Server Domain Pattern" -msgstr "Server Domain Muster" - -#: src/Module/Admin/Blocklist/Server/Add.php:136 -#: src/Module/Admin/Blocklist/Server/Index.php:112 -msgid "" -"The domain pattern of the new server to add to the blocklist. Do not include" -" the protocol." -msgstr "Das Muster zur Erkennung der Domain, das zur Blockliste hinzugefügt werden soll. Das Protokoll nicht mir angeben." - -#: src/Module/Admin/Blocklist/Server/Add.php:137 -msgid "Purge server" -msgstr "Server entfernen" - -#: src/Module/Admin/Blocklist/Server/Add.php:137 -msgid "" -"Also purges all the locally stored content authored by the known contacts " -"registered on that server. Keeps the contacts and the server records. This " -"action cannot be undone." -msgid_plural "" -"Also purges all the locally stored content authored by the known contacts " -"registered on these servers. Keeps the contacts and the servers records. " -"This action cannot be undone." -msgstr[0] "Sollen die Inhalte der bekannten Kontakte die auf diesem Server registriert sind, auch lokal gelöscht werden. Die Kontakt- und Server-Einträge verbleiben in der Datenbank deines Servers. Diese Aktion kann nicht rückgängig gemacht werden." -msgstr[1] "Sollen die Inhalte der bekannten Kontakte die auf diesen Servern registriert sind, auch lokal gelöscht werden. Die Kontakt- und Server-Einträge verbleiben in der Datenbank deines Servers. Diese Aktion kann nicht rückgängig gemacht werden." - -#: src/Module/Admin/Blocklist/Server/Add.php:138 -msgid "Block reason" -msgstr "Begründung der Blockierung" - -#: src/Module/Admin/Blocklist/Server/Add.php:138 -msgid "" -"The reason why you blocked this server domain pattern. This reason will be " -"shown publicly in the server information page." -msgstr "Warum werden Server die diesem Domainmuster entsprechen geblockt? Die Begründung wird öffentlich auf der Server-Informationsseite sichtbar sein." - -#: src/Module/Admin/Blocklist/Server/Import.php:75 -#: src/Module/Admin/Blocklist/Server/Import.php:84 -msgid "Error importing pattern file" -msgstr "Fehler beim Import der Muster Datei" - -#: src/Module/Admin/Blocklist/Server/Import.php:90 -msgid "Local blocklist replaced with the provided file." -msgstr "Lokale Blockliste wurde durch die bereitgestellte Datei ersetzt." - -#: src/Module/Admin/Blocklist/Server/Import.php:94 -#, php-format -msgid "%d pattern was added to the local blocklist." -msgid_plural "%d patterns were added to the local blocklist." -msgstr[0] "%d Muster wurde zur lokalen Blockliste hinzugefügt." -msgstr[1] "%d Muster wurden zur lokalen Blockliste hinzugefügt." - -#: src/Module/Admin/Blocklist/Server/Import.php:96 -msgid "No pattern was added to the local blocklist." -msgstr "Kein Muster wurde zur lokalen Blockliste hinzugefügt." - -#: src/Module/Admin/Blocklist/Server/Import.php:118 -msgid "Import a Server Domain Pattern Blocklist" -msgstr "Server Domain Muster Blockliste importieren" - -#: src/Module/Admin/Blocklist/Server/Import.php:119 -msgid "" -"

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

    " -msgstr "

    Diese Datei kann vom /friendica Pfad auf jedem Friendica Server heruntergeladen werden.

    " - -#: src/Module/Admin/Blocklist/Server/Import.php:120 -#: src/Module/Admin/Blocklist/Server/Index.php:102 -msgid "Upload file" -msgstr "Datei hochladen" - -#: src/Module/Admin/Blocklist/Server/Import.php:121 -msgid "Patterns to import" -msgstr "Zu importierende Muster" - -#: src/Module/Admin/Blocklist/Server/Import.php:122 -msgid "Domain Pattern" -msgstr "Domain Muster" - -#: src/Module/Admin/Blocklist/Server/Import.php:124 -msgid "Import Mode" -msgstr "Importmodus" - -#: src/Module/Admin/Blocklist/Server/Import.php:125 -msgid "Import Patterns" -msgstr "Muster importieren" - -#: src/Module/Admin/Blocklist/Server/Import.php:126 -#, php-format -msgid "%d total pattern" -msgid_plural "%d total patterns" -msgstr[0] "%dMuster gesamt" -msgstr[1] "%dMuster gesamt" - -#: src/Module/Admin/Blocklist/Server/Import.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:111 -msgid "Server domain pattern blocklist CSV file" -msgstr "Server Domain Muster Blockliste CSV-Datei" - -#: src/Module/Admin/Blocklist/Server/Import.php:129 -msgid "Append" -msgstr "Anhängen" - -#: src/Module/Admin/Blocklist/Server/Import.php:129 -msgid "" -"Imports patterns from the file that weren't already existing in the current " -"blocklist." -msgstr "Importiert Muster aus der Datei, die nicht bereits in der aktuellen Blockliste vorhanden waren." - -#: src/Module/Admin/Blocklist/Server/Import.php:130 -msgid "Replace" -msgstr "Ersetzen" - -#: src/Module/Admin/Blocklist/Server/Import.php:130 -msgid "Replaces the current blocklist by the imported patterns." -msgstr "Ersetzt die aktuelle Blockliste durch die importierten Muster." - -#: src/Module/Admin/Blocklist/Server/Index.php:82 -#: src/Module/Admin/Blocklist/Server/Index.php:106 -msgid "Blocked server domain pattern" -msgstr "Blockierte Server Domain Muster" - -#: src/Module/Admin/Blocklist/Server/Index.php:83 -#: src/Module/Admin/Blocklist/Server/Index.php:107 src/Module/Friendica.php:83 -msgid "Reason for the block" -msgstr "Begründung für die Blockierung" - -#: src/Module/Admin/Blocklist/Server/Index.php:84 -msgid "Delete server domain pattern" -msgstr "Server Domain Muster löschen" - -#: src/Module/Admin/Blocklist/Server/Index.php:84 -msgid "Check to delete this entry from the blocklist" -msgstr "Markieren, um diesen Eintrag von der Blocklist zu entfernen" - -#: src/Module/Admin/Blocklist/Server/Index.php:92 -msgid "Server Domain Pattern Blocklist" -msgstr "Server Domain Muster Blockliste" - -#: src/Module/Admin/Blocklist/Server/Index.php:93 -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 "Auf dieser Seite kannst du Muster definieren mit denen Server Domains aus dem föderierten Netzwerk daran gehindert werden mit deiner Instanz zu interagieren. Es ist ratsam für jedes Muster anzugeben, warum du es zur Blockliste hinzugefügt hast." - -#: src/Module/Admin/Blocklist/Server/Index.php:94 -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 "Die Liste der blockierten Domain Muster wird auf der Seite /friendica öffentlich einsehbar gemacht, damit deine Nutzer und Personen, die Kommunikationsprobleme erkunden, die Ursachen einfach finden können." - -#: src/Module/Admin/Blocklist/Server/Index.php:100 -msgid "Import server domain pattern blocklist" -msgstr "Server Domain Muster Blockliste importieren" - -#: src/Module/Admin/Blocklist/Server/Index.php:101 -msgid "Add new entry to the blocklist" -msgstr "Neuen Eintrag in die Blockliste" - -#: src/Module/Admin/Blocklist/Server/Index.php:104 -msgid "Save changes to the blocklist" -msgstr "Änderungen der Blockliste speichern" - -#: src/Module/Admin/Blocklist/Server/Index.php:105 -msgid "Current Entries in the Blocklist" -msgstr "Aktuelle Einträge der Blockliste" - -#: src/Module/Admin/Blocklist/Server/Index.php:108 -msgid "Delete entry from the blocklist" -msgstr "Eintrag von der Blockliste entfernen" - -#: src/Module/Admin/Blocklist/Server/Index.php:109 -msgid "Delete entry from the blocklist?" -msgstr "Eintrag von der Blockliste entfernen?" - #: src/Module/Admin/DBSync.php:51 msgid "Update has been marked successful" msgstr "Update wurde als erfolgreich markiert" @@ -4820,28 +4051,28 @@ msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status." msgid "There was no additional update function %s that needed to be called." msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:105 msgid "No failed updates." msgstr "Keine fehlgeschlagenen Updates." -#: src/Module/Admin/DBSync.php:107 +#: src/Module/Admin/DBSync.php:106 msgid "Check database structure" msgstr "Datenbankstruktur überprüfen" -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:110 msgid "Failed Updates" msgstr "Fehlgeschlagene Updates" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:111 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben." -#: src/Module/Admin/DBSync.php:114 +#: src/Module/Admin/DBSync.php:112 msgid "Mark success (if update was manually applied)" msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" -#: src/Module/Admin/DBSync.php:115 +#: src/Module/Admin/DBSync.php:113 msgid "Attempt to execute this update step automatically" msgstr "Versuchen, diesen Schritt automatisch auszuführen" @@ -4850,79 +4081,81 @@ msgstr "Versuchen, diesen Schritt automatisch auszuführen" msgid "Lock feature %s" msgstr "Feature festlegen: %s" -#: src/Module/Admin/Features.php:85 +#: src/Module/Admin/Features.php:84 msgid "Manage Additional Features" msgstr "Zusätzliche Features Verwalten" -#: src/Module/Admin/Federation.php:70 +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 msgid "Other" msgstr "Andere" -#: src/Module/Admin/Federation.php:142 src/Module/Admin/Federation.php:391 +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 msgid "unknown" msgstr "Unbekannt" -#: src/Module/Admin/Federation.php:175 +#: src/Module/Admin/Federation.php:187 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" msgstr[0] "%2$sServer gesamt" msgstr[1] "%2$s Server gesamt" -#: src/Module/Admin/Federation.php:176 +#: src/Module/Admin/Federation.php:188 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" msgstr[0] "%2$s aktiver Nutzer im letzten Monat" msgstr[1] "%2$s aktive Nutzer im letzten Monat" -#: src/Module/Admin/Federation.php:177 +#: src/Module/Admin/Federation.php:189 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" msgstr[0] "%2$s aktive Nutzer im letzten halben Jahr" msgstr[1] "%2$s aktive Nutzer im letzten halben Jahr" -#: src/Module/Admin/Federation.php:178 +#: src/Module/Admin/Federation.php:190 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" msgstr[0] "%2$sregistrierter Nutzer" msgstr[1] "%2$s registrierte Nutzer" -#: src/Module/Admin/Federation.php:179 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" msgstr[0] "%2$slokal erstellter Beitrag oder Kommentar" msgstr[1] "%2$slokal erstellte Beiträge und Kommentare" -#: src/Module/Admin/Federation.php:182 +#: src/Module/Admin/Federation.php:194 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" msgstr[0] "%2$sBeitrag pro Nutzer" msgstr[1] "%2$sBeiträge pro Nutzer" -#: src/Module/Admin/Federation.php:187 +#: src/Module/Admin/Federation.php:199 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" msgstr[0] "%2$sNutzer pro System" msgstr[1] "%2$sNutzer pro System" -#: src/Module/Admin/Federation.php:197 +#: src/Module/Admin/Federation.php:209 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:203 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "Föderation Statistik" -#: src/Module/Admin/Federation.php:207 +#: src/Module/Admin/Federation.php:219 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4935,129 +4168,58 @@ msgid_plural "" msgstr[0] "Derzeit kennt dieser Knoten %2$s andere Knoten (mit %3$s aktiven Nutzern im letzten Monat, %4$s aktiven Nutzern im letzten halben Jahr, %5$s registrierten Nutzern insgesamt) von den folgenden Plattformen:" msgstr[1] "Derzeit kennt dieser Knoten %2$s andere Knoten (mit %3$s aktiven Nutzern im letzten Monat, %4$s aktiven Nutzern im letzten halben Jahr, %5$s registrierten Nutzern insgesamt) von den folgenden Plattformen:" -#: src/Module/Admin/Item/Delete.php:53 -msgid "Item marked for deletion." -msgstr "Eintrag wurden zur Löschung markiert" - -#: src/Module/Admin/Item/Delete.php:65 src/Module/BaseAdmin.php:106 -msgid "Delete Item" -msgstr "Eintrag löschen" - -#: src/Module/Admin/Item/Delete.php:66 -msgid "Delete this Item" -msgstr "Diesen Eintrag löschen" - -#: src/Module/Admin/Item/Delete.php:67 -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 "Auf dieser Seite kannst du Einträge von deinem Knoten löschen. Wenn der Eintrag der Anfang einer Diskussion ist, wird der gesamte Diskussionsverlauf gelöscht." - -#: src/Module/Admin/Item/Delete.php:68 -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 "Zur Löschung musst du die GUID des Eintrags kennen. Diese findest du z.B. durch die /display URL des Eintrags. Der letzte Teil der URL ist die GUID. Lautet die URL beispielsweise http://example.com/display/123456, ist die GUID 123456." - -#: src/Module/Admin/Item/Delete.php:69 -msgid "GUID" -msgstr "GUID" - -#: src/Module/Admin/Item/Delete.php:69 -msgid "The GUID of the item you want to delete." -msgstr "Die GUID des zu löschenden Eintrags" - -#: src/Module/Admin/Item/Source.php:53 src/Module/BaseAdmin.php:116 -msgid "Item Source" -msgstr "Beitrags Quelle" - -#: src/Module/Admin/Item/Source.php:54 -msgid "Item Guid" -msgstr "Beitrags-Guid" - -#: src/Module/Admin/Item/Source.php:58 -msgid "Item Id" -msgstr "Item Id" - -#: src/Module/Admin/Item/Source.php:59 -msgid "Item URI" -msgstr "Item URI" - -#: src/Module/Admin/Item/Source.php:61 -msgid "Terms" -msgstr "Terms" - -#: src/Module/Admin/Item/Source.php:62 -msgid "Tag" -msgstr "Tag" - -#: src/Module/Admin/Item/Source.php:63 src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:130 src/Module/Admin/Users/Index.php:142 -msgid "Type" -msgstr "Typ" - -#: src/Module/Admin/Item/Source.php:64 -msgid "Term" -msgstr "Term" - -#: src/Module/Admin/Item/Source.php:65 -msgid "URL" -msgstr "URL" - -#: src/Module/Admin/Item/Source.php:66 -msgid "Mention" -msgstr "Mention" - -#: src/Module/Admin/Item/Source.php:67 -msgid "Implicit Mention" -msgstr "Implicit Mention" - #: src/Module/Admin/Logs/Settings.php:47 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich." -#: src/Module/Admin/Logs/Settings.php:71 +#: src/Module/Admin/Logs/Settings.php:77 msgid "PHP log currently enabled." msgstr "PHP Protokollierung ist derzeit aktiviert." -#: src/Module/Admin/Logs/Settings.php:73 +#: src/Module/Admin/Logs/Settings.php:79 msgid "PHP log currently disabled." msgstr "PHP Protokollierung ist derzeit nicht aktiviert." -#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:108 -#: src/Module/BaseAdmin.php:109 +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 msgid "Logs" msgstr "Protokolle" -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:88 msgid "Clear" msgstr "löschen" -#: src/Module/Admin/Logs/Settings.php:86 +#: src/Module/Admin/Logs/Settings.php:91 msgid "Enable Debugging" msgstr "Protokoll führen" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "Schreibgeschützt, weil es durch eine Umgebungsvariable festgelegt ist" + +#: src/Module/Admin/Logs/Settings.php:92 msgid "Log file" msgstr "Protokolldatei" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:92 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis." -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:93 msgid "Log level" msgstr "Protokoll-Level" -#: src/Module/Admin/Logs/Settings.php:90 +#: src/Module/Admin/Logs/Settings.php:95 msgid "PHP logging" msgstr "PHP Protokollieren" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:96 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 " @@ -5080,73 +4242,77 @@ msgid "" "is readable." msgstr "Konnte die Logdatei %1$s nicht öffnen.
    Bitte stelle sicher, dass die Datei %1$s lesbar ist." -#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:110 +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 msgid "View Logs" msgstr "Protokolle anzeigen" -#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Admin/Logs/View.php:87 msgid "Search in logs" msgstr "Logs durchsuchen" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:88 #: src/Module/Notifications/Notifications.php:140 msgid "Show all" msgstr "Alle anzeigen" -#: src/Module/Admin/Logs/View.php:90 +#: src/Module/Admin/Logs/View.php:89 msgid "Date" msgstr "Datum" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:90 msgid "Level" msgstr "Level" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:91 msgid "Context" msgstr "Zusammenhang" -#: src/Module/Admin/Logs/View.php:94 +#: src/Module/Admin/Logs/View.php:93 msgid "ALL" msgstr "ALLE" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:94 msgid "View details" msgstr "Details anzeigen" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:95 msgid "Click to view details" msgstr "Anklicken zum Anzeigen der Details" -#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Veranstaltungsdetails" + +#: src/Module/Admin/Logs/View.php:97 msgid "Data" msgstr "Daten" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:98 #: src/Module/Debug/ActivityPubConversion.php:57 msgid "Source" msgstr "Quelle" -#: src/Module/Admin/Logs/View.php:100 +#: src/Module/Admin/Logs/View.php:99 msgid "File" msgstr "Datei" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:100 msgid "Line" msgstr "Zeile" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:101 msgid "Function" msgstr "Funktion" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:102 msgid "UID" msgstr "UID" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:103 msgid "Process ID" msgstr "Prozess ID" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:104 msgid "Close" msgstr "Schließen" @@ -5182,463 +4348,472 @@ msgstr "Befehl" msgid "Job Parameters" msgstr "Parameter der Aufgabe" +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "Erstellt" + #: src/Module/Admin/Queue.php:79 msgid "Priority" msgstr "Priorität" -#: src/Module/Admin/Site.php:334 src/Module/Settings/Display.php:137 +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" +msgstr "%s ist keine gültige Angabe der maximalen Größe von Bildern" + +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:211 msgid "No special theme for mobile devices" msgstr "Kein spezielles Theme für mobile Geräte verwenden." -#: src/Module/Admin/Site.php:351 src/Module/Settings/Display.php:147 +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:221 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimentell)" -#: src/Module/Admin/Site.php:363 +#: src/Module/Admin/Site.php:342 msgid "No community page" msgstr "Keine Gemeinschaftsseite" -#: src/Module/Admin/Site.php:364 +#: src/Module/Admin/Site.php:343 msgid "No community page for visitors" msgstr "Keine Gemeinschaftsseite für Besucher" -#: src/Module/Admin/Site.php:365 +#: src/Module/Admin/Site.php:344 msgid "Public postings from users of this site" msgstr "Öffentliche Beiträge von NutzerInnen dieser Seite" -#: src/Module/Admin/Site.php:366 +#: src/Module/Admin/Site.php:345 msgid "Public postings from the federated network" msgstr "Öffentliche Beiträge aus dem föderalen Netzwerk" -#: src/Module/Admin/Site.php:367 +#: src/Module/Admin/Site.php:346 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:373 +#: src/Module/Admin/Site.php:352 msgid "Multi user instance" msgstr "Mehrbenutzer-Instanz" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:375 msgid "Closed" msgstr "Geschlossen" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:376 msgid "Requires approval" msgstr "Bedarf der Zustimmung" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:377 msgid "Open" msgstr "Offen" -#: src/Module/Admin/Site.php:406 src/Module/Install.php:222 -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:407 src/Module/Install.php:223 -msgid "Force all links to use SSL" -msgstr "SSL für alle Links erzwingen" - -#: src/Module/Admin/Site.php:408 src/Module/Install.php:224 -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:412 +#: src/Module/Admin/Site.php:381 msgid "Don't check" msgstr "Nicht überprüfen" -#: src/Module/Admin/Site.php:413 +#: src/Module/Admin/Site.php:382 msgid "check the stable version" msgstr "überprüfe die stabile Version" -#: src/Module/Admin/Site.php:414 +#: src/Module/Admin/Site.php:383 msgid "check the development version" msgstr "überprüfe die Entwicklungsversion" -#: src/Module/Admin/Site.php:418 +#: src/Module/Admin/Site.php:387 msgid "none" msgstr "keine" -#: src/Module/Admin/Site.php:419 +#: src/Module/Admin/Site.php:388 msgid "Local contacts" msgstr "Lokale Kontakte" -#: src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:389 msgid "Interactors" msgstr "Interaktionen" -#: src/Module/Admin/Site.php:430 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Seite" -#: src/Module/Admin/Site.php:431 +#: src/Module/Admin/Site.php:400 msgid "General Information" msgstr "Allgemeine Informationen" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:402 msgid "Republish users to directory" msgstr "Nutzer erneut im globalen Verzeichnis veröffentlichen." -#: src/Module/Admin/Site.php:434 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 msgid "Registration" msgstr "Registrierung" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:404 msgid "File upload" msgstr "Datei hochladen" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:405 msgid "Policies" msgstr "Regeln" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "Erweitert" + +#: src/Module/Admin/Site.php:407 msgid "Auto Discovered Contact Directory" msgstr "Automatisch ein Kontaktverzeichnis erstellen" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:408 msgid "Performance" msgstr "Performance" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:409 msgid "Worker" msgstr "Worker" -#: src/Module/Admin/Site.php:441 +#: src/Module/Admin/Site.php:410 msgid "Message Relay" msgstr "Nachrichten-Relais" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:411 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:443 +#: src/Module/Admin/Site.php:412 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:444 +#: src/Module/Admin/Site.php:413 msgid "The system is currently subscribed to the following relays:" msgstr "Das System hat derzeit Abonnements bei folgenden Releays:" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:415 msgid "Relocate Node" msgstr "Knoten umziehen" -#: src/Module/Admin/Site.php:447 +#: src/Module/Admin/Site.php:416 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "Um deinen Friendica Knoten auf einen andere Domainnamen umzuziehen, und dabei alle existierenden Accounts und Beiträge zu behalten, kannst du dazu einen Konsolenbefehl verwenden. Die nötigen Aktualisierungen wird einige Zeit dauern und können nur auf der Konsole gestartet werden. Hierzu verwendest du einen Befehl wie den folgenden:" -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:417 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(Friendica Verzeichnis)# bin/console relocate https://newdomain.com" -#: src/Module/Admin/Site.php:452 +#: src/Module/Admin/Site.php:420 msgid "Site name" msgstr "Seitenname" -#: src/Module/Admin/Site.php:453 +#: src/Module/Admin/Site.php:421 msgid "Sender Email" msgstr "Absender für Emails" -#: src/Module/Admin/Site.php:453 +#: src/Module/Admin/Site.php:421 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:454 +#: src/Module/Admin/Site.php:422 msgid "Name of the system actor" msgstr "Name des System-Actors" -#: src/Module/Admin/Site.php:454 +#: src/Module/Admin/Site.php:422 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:455 +#: src/Module/Admin/Site.php:423 msgid "Banner/Logo" msgstr "Banner/Logo" -#: src/Module/Admin/Site.php:456 +#: src/Module/Admin/Site.php:424 msgid "Email Banner/Logo" msgstr "E-Mail Banner / Logo" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:425 msgid "Shortcut icon" msgstr "Shortcut Icon" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:425 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:458 +#: src/Module/Admin/Site.php:426 msgid "Touch icon" msgstr "Touch Icon" -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:426 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:459 +#: src/Module/Admin/Site.php:427 msgid "Additional Info" msgstr "Zusätzliche Informationen" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:427 #, 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:460 +#: src/Module/Admin/Site.php:428 msgid "System language" msgstr "Systemsprache" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:429 msgid "System theme" msgstr "Systemweites Theme" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:429 #, php-format 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 - Einstellungen des Standard-Themes ändern" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:430 msgid "Mobile system theme" msgstr "Systemweites mobiles Theme" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:430 msgid "Theme for mobile devices" msgstr "Theme für mobile Geräte" -#: src/Module/Admin/Site.php:463 src/Module/Install.php:232 -msgid "SSL link policy" -msgstr "Regeln für SSL Links" - -#: src/Module/Admin/Site.php:463 src/Module/Install.php:234 -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:464 +#: src/Module/Admin/Site.php:431 msgid "Force SSL" msgstr "Erzwinge SSL" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:431 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:465 +#: src/Module/Admin/Site.php:432 msgid "Show help entry from navigation menu" msgstr "Zeige den Hilfe-Eintrag im Navigationsmenü an" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:432 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "Zeigt im Navigationsmenü den Eintrag für die Hilfe-Seiten an. Es ist immer möglich diese Seiten direkt über /help in der Adresseingabe des Browsers aufzurufen." -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:433 msgid "Single user instance" msgstr "Ein-Nutzer Instanz" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:433 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:468 +#: src/Module/Admin/Site.php:435 msgid "Maximum image size" msgstr "Maximale Bildgröße" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:435 +#, php-format 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." +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "Die maximale Größe von Bildern in Bytes. Grundeinstellung ist 0, welches keine Limitierung durch die Bildgröße bedeutet. Du kannst k, m oder g als Abkürzung hinter der Zahl angeben um KiB, MIB oder GiB zu definieren.\n\t\t\t\t\t\t\t\t\t\t\t\t\tDer Wert der 1upload_max_filesize1 Variable in der php.ini Datei muss diesem Limit mindestens entsprechen.\n\t\t\t\t\t\t\t\t\t\t\t\t\tDerzeit ist 3upload_max_filesize3 auf %s (%sByte) gesetzt." -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:439 msgid "Maximum image length" msgstr "Maximale Bildlänge" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:439 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:470 +#: src/Module/Admin/Site.php:440 msgid "JPEG image quality" msgstr "Qualität des JPEG Bildes" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:440 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:472 +#: src/Module/Admin/Site.php:442 msgid "Register policy" msgstr "Registrierungsmethode" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "Maximale Benutzeranzahl" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "Falls definiert, wird die Registrierungsrichtlinie automatisch geschlossen, wenn die angegebene Anzahl von Benutzern erreicht ist, und die Registrierung wieder geöffnet, wenn die Anzahl unter den Grenzwert fällt. Dies funktioniert nur, wenn die Richtlinie auf \"Öffnen\" oder \"Schließen\" eingestellt ist, nicht aber, wenn die Richtlinie auf \"Genehmigung\" eingestellt ist." + +#: src/Module/Admin/Site.php:444 msgid "Maximum Daily Registrations" msgstr "Maximum täglicher Registrierungen" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:444 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:474 +#: src/Module/Admin/Site.php:445 msgid "Register text" msgstr "Registrierungstext" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:445 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:475 +#: src/Module/Admin/Site.php:446 msgid "Forbidden Nicknames" msgstr "Verbotene Spitznamen" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:446 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:476 +#: src/Module/Admin/Site.php:447 msgid "Accounts abandoned after x days" msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:447 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:477 +#: src/Module/Admin/Site.php:448 msgid "Allowed friend domains" msgstr "Erlaubte Domains für Kontakte" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:448 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:478 +#: src/Module/Admin/Site.php:449 msgid "Allowed email domains" msgstr "Erlaubte Domains für E-Mails" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:449 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:479 +#: src/Module/Admin/Site.php:450 msgid "No OEmbed rich content" msgstr "OEmbed nicht verwenden" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:450 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:480 +#: src/Module/Admin/Site.php:451 msgid "Trusted third-party domains" msgstr "Vertrauenswürdige Drittanbieter-Domains" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:451 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:481 +#: src/Module/Admin/Site.php:452 msgid "Block public" msgstr "Öffentlichen Zugriff blockieren" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:452 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:482 +#: src/Module/Admin/Site.php:453 msgid "Force publish" msgstr "Erzwinge Veröffentlichung" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:453 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:482 +#: src/Module/Admin/Site.php:453 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:483 +#: src/Module/Admin/Site.php:454 msgid "Global directory URL" msgstr "URL des weltweiten Verzeichnisses" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:454 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:484 +#: src/Module/Admin/Site.php:455 msgid "Private posts by default for new users" msgstr "Private Beiträge als Standard für neue Nutzer" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:455 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." +"circle rather than public." +msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in den privaten Circle gepostet wird anstelle von öffentlichen." -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:456 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:485 +#: src/Module/Admin/Site.php:456 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:486 +#: src/Module/Admin/Site.php:457 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:486 +#: src/Module/Admin/Site.php:457 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:487 +#: src/Module/Admin/Site.php:458 msgid "Don't embed private images in posts" msgstr "Private Bilder nicht in Beiträgen einbetten." -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:458 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 " @@ -5646,11 +4821,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:488 +#: src/Module/Admin/Site.php:459 msgid "Explicit Content" msgstr "Sensibler Inhalt" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:459 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 " @@ -5659,257 +4834,267 @@ 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:489 +#: src/Module/Admin/Site.php:460 msgid "Proxify external content" msgstr "Proxy für externe Inhalte" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:460 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "Externe Inhalte werden durch einen Proxy geleitet. Die wird z.B. für das aufrufen von OEmbed Inhalten verwendet und einigen anderen seltenen Fällen." -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:461 msgid "Cache contact avatars" msgstr "Kontaktprofilbilder zwischenspeichern" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:461 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "Die Profilbilder der Kontakte zwischenspeichern. Der Zwischenspeicher verbraucht viel Platz im Speicherplatz, verbessert aber die Performance." -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:462 msgid "Allow Users to set remote_self" msgstr "Nutzern erlauben, das remote_self Flag zu setzen" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:462 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:492 +#: src/Module/Admin/Site.php:463 msgid "Enable multiple registrations" msgstr "Erlaube Mehrfachregistrierung" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:463 msgid "Enable users to register additional accounts for use as pages." msgstr "Erlaube es Benutzern weitere Konten für Organisationen o.ä. mit der gleichen E-Mail Adresse anzulegen." -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID" msgstr "OpenID aktivieren" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID support for registration and logins." msgstr "OpenID Unterstützung bei der Registrierung und dem Login aktivieren." -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:465 msgid "Enable Fullname check" msgstr "Namen auf Vollständigkeit überprüfen" -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:465 msgid "" "Enable check to only allow users to register with a space between the first " "name and the last name in their full name." msgstr "Erlaubt Nutzern Konten nur dann zu registrieren, bei denen im Namensfeld ein Leerzeichen zur Trennung von Vor- und Nachnamen verwendet wird." -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "Email den Administratoren bei neuen Registrierungen" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "Wenn diese Option aktiviert ist und die Registrierung auf offen eingestellt ist, wird den Administratoren bei jeder neuen Registierung eine Email geschickt." + +#: src/Module/Admin/Site.php:467 msgid "Community pages for visitors" msgstr "Für Besucher verfügbare Gemeinschaftsseite" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:467 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:496 +#: src/Module/Admin/Site.php:468 msgid "Posts per user on community page" msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite" -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:468 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:498 +#: src/Module/Admin/Site.php:470 msgid "Enable Mail support" msgstr "E-Mail Unterstützung aktivieren" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:470 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "Aktiviert die Unterstützung IMAP Ordner abzurufen und ermöglicht es auch auf E-Mails zu antworten." -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:471 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "E-Mail Unterstützung kann nicht aktiviert werden, da das PHP IMAP Modul nicht installiert ist." -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:472 msgid "Enable OStatus support" msgstr "OStatus Unterstützung aktivieren" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:472 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "Aktiviere die OStatus (StatusNet, GNU Social usw.) Unterstützung. Die Kommunikation über das OStatus Protokoll ist grundsätzlich öffentlich." -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:474 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:503 +#: src/Module/Admin/Site.php:475 msgid "Enable Diaspora support" msgstr "Diaspora-Unterstützung aktivieren" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:475 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "Aktiviere die Unterstützung des Diaspora Protokolls zur Kommunikation mit Diaspora Servern." -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:476 msgid "Verify SSL" msgstr "SSL Überprüfen" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:476 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:505 +#: src/Module/Admin/Site.php:477 msgid "Proxy user" msgstr "Proxy-Nutzer" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:477 msgid "User name for the proxy server." msgstr "Nutzername für den Proxy-Server" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:478 msgid "Proxy URL" msgstr "Proxy-URL" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:478 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "Wenn Friendica einen Proxy-Server verwenden soll um das Netzwerk zu erreichen, füge hier die URL des Proxys ein." -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:479 msgid "Network timeout" msgstr "Netzwerk-Wartezeit" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:479 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:508 +#: src/Module/Admin/Site.php:480 msgid "Maximum Load Average" msgstr "Maximum Load Average" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:480 #, 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:509 +#: src/Module/Admin/Site.php:481 msgid "Minimal Memory" msgstr "Minimaler Speicher" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:481 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:510 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables" msgstr "Optimiere die Tabellen regelmäßig" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:482 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:512 +#: src/Module/Admin/Site.php:484 msgid "Discover followers/followings from contacts" msgstr "Endecke folgende und gefolgte Kontakte von Kontakten" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:484 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:513 +#: src/Module/Admin/Site.php:485 msgid "None - deactivated" msgstr "Keine - deaktiviert" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:486 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:515 +#: src/Module/Admin/Site.php:487 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:517 +#: src/Module/Admin/Site.php:489 msgid "Synchronize the contacts with the directory server" msgstr "Gleiche die Kontakte mit dem Directory-Server ab" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:489 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:519 +#: src/Module/Admin/Site.php:491 msgid "Days between requery" msgstr "Tage zwischen erneuten Abfragen" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:491 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:520 +#: src/Module/Admin/Site.php:492 msgid "Discover contacts from other servers" msgstr "Neue Kontakte auf anderen Servern entdecken" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:492 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:521 +#: src/Module/Admin/Site.php:493 msgid "Search the local directory" msgstr "Lokales Verzeichnis durchsuchen" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:493 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:523 +#: src/Module/Admin/Site.php:495 msgid "Publish server information" msgstr "Server-Informationen veröffentlichen" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:495 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 " @@ -5917,50 +5102,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:525 +#: src/Module/Admin/Site.php:497 msgid "Check upstream version" msgstr "Suche nach Updates" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:497 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:526 +#: src/Module/Admin/Site.php:498 msgid "Suppress Tags" msgstr "Tags unterdrücken" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:498 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:527 +#: src/Module/Admin/Site.php:499 msgid "Clean database" msgstr "Datenbank aufräumen" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:499 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:528 +#: src/Module/Admin/Site.php:500 msgid "Lifespan of remote items" msgstr "Lebensdauer von Beiträgen anderer Knoten" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:500 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:529 +#: src/Module/Admin/Site.php:501 msgid "Lifespan of unclaimed items" msgstr "Lebensdauer nicht angeforderter Beiträge" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:501 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5968,144 +5153,144 @@ 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:530 +#: src/Module/Admin/Site.php:502 msgid "Lifespan of raw conversation data" msgstr "Lebensdauer der Beiträge" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:502 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:531 +#: src/Module/Admin/Site.php:503 msgid "Maximum numbers of comments per post" msgstr "Maximale Anzahl von Kommentaren pro Beitrag" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:503 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:532 +#: src/Module/Admin/Site.php:504 msgid "Maximum numbers of comments per post on the display page" msgstr "Maximale Anzahl von Kommentaren in der Einzelansicht" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:504 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:533 +#: src/Module/Admin/Site.php:505 msgid "Temp path" msgstr "Temp-Pfad" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:505 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:534 +#: src/Module/Admin/Site.php:506 msgid "Only search in tags" msgstr "Nur in Tags suchen" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:506 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:535 -msgid "Generate counts per contact group when calculating network count" -msgstr "Erstelle Zählungen je Kontaktgruppe bei der Berechnung der Netzwerkanzahl" +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "Erstelle Zählungen je Circle bei der Berechnung der Netzwerkanzahl" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:507 msgid "" -"On systems with users that heavily use contact groups the query can be very " -"expensive." -msgstr "Auf Systemen mit Benutzern, die häufig Kontaktgruppen verwenden, kann die Abfrage sehr aufwändig sein." +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "Auf Systemen mit Benutzern, die häufig Circles verwenden, kann die Abfrage sehr aufwändig sein." -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:509 msgid "Maximum number of parallel workers" msgstr "Maximale Anzahl parallel laufender Worker" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:509 #, 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:538 +#: src/Module/Admin/Site.php:510 msgid "Enable fastlane" msgstr "Aktiviere Fastlane" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:510 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:540 +#: src/Module/Admin/Site.php:512 msgid "Direct relay transfer" msgstr "Direkte Relais-Übertragung" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:512 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:541 +#: src/Module/Admin/Site.php:513 msgid "Relay scope" msgstr "Geltungsbereich des Relais" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:513 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:541 src/Module/Contact/Profile.php:274 +#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:125 msgid "Disabled" msgstr "Deaktiviert" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:513 msgid "all" msgstr "Alle" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:513 msgid "tags" msgstr "Schlagwörter" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:514 msgid "Server tags" msgstr "Server-Schlagworte" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:514 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:543 +#: src/Module/Admin/Site.php:515 msgid "Deny Server tags" msgstr "Server Tags ablehnen" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:515 msgid "Comma separated list of tags that are rejected." msgstr "Durch Kommas getrennte Liste der Tags, die abgelehnt werden" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:516 msgid "Allow user tags" msgstr "Verwende Schlagworte der Nutzer" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:516 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:547 +#: src/Module/Admin/Site.php:519 msgid "Start Relocation" msgstr "Umsiedlung starten" @@ -6151,7 +5336,13 @@ msgstr "Speichern & Neu Laden" msgid "This backend doesn't have custom settings" msgstr "Dieses Backend hat keine zusätzlichen Einstellungen" -#: src/Module/Admin/Storage.php:149 +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "Das Ändern des aktuellen Backends ist nicht möglich, da es durch eine Umgebungsvariable festgelegt ist" + +#: src/Module/Admin/Storage.php:150 msgid "Database (legacy)" msgstr "Datenbank (legacy)" @@ -6190,21 +5381,21 @@ msgid "" " to %d. See here for more information.
    " msgstr "Der Wert table_definition_cache ist zu niedrig (%d). Dadurch können Datenbank Fehler \"Prepared statement needs to be re-prepared\" hervor gerufen werden. Bitte setze den Wert auf mindestens %d. Weiterführende Informationen findest du hier." -#: src/Module/Admin/Summary.php:84 +#: src/Module/Admin/Summary.php:85 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "Es gibt eine neue Version von Friendica. Du verwendest derzeit die Version %1$s, die aktuelle Version ist %2$s." -#: src/Module/Admin/Summary.php:93 +#: src/Module/Admin/Summary.php:94 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "Das Update der Datenbank ist fehlgeschlagen. Bitte führe 'php bin/console.php dbstructure update' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen." -#: src/Module/Admin/Summary.php:97 +#: src/Module/Admin/Summary.php:98 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 " @@ -6212,17 +5403,24 @@ msgid "" msgstr "Das letzte Update ist fehlgeschlagen. Bitte führe \"php bin/console.php dbstructure update\" auf der Kommandozeile aus und werfe einen Blick auf eventuell auftretende Fehler. (Zusätzliche Informationen zu Fehlern könnten in den Logdateien stehen.)" #: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "Der Eintrag system.url fehlt. Dies ist eine Einstellung auf niedriger Ebene und kann zu unerwartetem Verhalten führen. Bitt füge so bald wie möglich einen gültigen Eintrag in der Konfigurationsdatei oder per Konsolenbefehl hinzu!" + +#: src/Module/Admin/Summary.php:107 msgid "The worker was never executed. Please check your database structure!" msgstr "Der Hintergrundprozess (worker) wurde noch nie gestartet. Bitte überprüfe deine Datenbankstruktur." -#: src/Module/Admin/Summary.php:104 +#: src/Module/Admin/Summary.php:109 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "Der Hintergrundprozess (worker) wurde zuletzt um %s UTC ausgeführt. Das war vor mehr als einer Stunde. Bitte überprüfe deine crontab-Einstellungen." -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:114 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6231,7 +5429,7 @@ msgid "" "help with the transition." msgstr "Die Konfiguration von Friendica befindet sich ab jetzt in der 'config/local.config.php' Datei. Kopiere bitte die Datei 'config/local-sample.config.php' nach 'config/local.config.php' und setze die Konfigurationvariablen so wie in der alten .htconfig.php. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen." -#: src/Module/Admin/Summary.php:113 +#: src/Module/Admin/Summary.php:118 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6240,7 +5438,7 @@ msgid "" "page for help with the transition." msgstr "Die Konfiguration von Friendica befindet sich ab jetzt in der 'config/local.config.php' Datei. Kopiere bitte die Datei 'config/local-sample.config.php' nach 'config/local.config.php' und setze die Konfigurationvariablen so wie in der alten config/local.ini.php. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen." -#: src/Module/Admin/Summary.php:119 +#: src/Module/Admin/Summary.php:124 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -6248,83 +5446,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s konnte von deinem System nicht aufgerufen werden. Dies deutet auf ein schwerwiegendes Problem deiner Konfiguration hin. Bitte konsultiere die Installations-Dokumentation zum Beheben des Problems." -#: src/Module/Admin/Summary.php:137 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich (Fehler: '%s')" - -#: src/Module/Admin/Summary.php:151 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich (Fehler: '%s')" - -#: src/Module/Admin/Summary.php:167 +#: src/Module/Admin/Summary.php:148 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "Friendica's system.basepath wurde aktualisiert '%s' von '%s'. Bitte entferne system.basepath aus der Datenbank um Unterschiede zu vermeiden." -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:156 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "Friendica's aktueller system.basepath '%s' ist verkehrt und die config file '%s' wird nicht benutzt." -#: src/Module/Admin/Summary.php:183 +#: src/Module/Admin/Summary.php:164 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "Friendica's aktueller system.basepath '%s' ist nicht gleich wie die config file '%s'. Bitte korrigiere deine Konfiguration." -#: src/Module/Admin/Summary.php:190 -msgid "Normal Account" -msgstr "Normales Konto" - -#: src/Module/Admin/Summary.php:191 -msgid "Automatic Follower Account" -msgstr "Automatisch folgendes Konto (Marktschreier)" - -#: src/Module/Admin/Summary.php:192 -msgid "Public Forum Account" -msgstr "Öffentliches Forum-Konto" - -#: src/Module/Admin/Summary.php:193 -msgid "Automatic Friend Account" -msgstr "Automatische Freunde-Seite" - -#: src/Module/Admin/Summary.php:194 -msgid "Blog Account" -msgstr "Blog-Konto" - -#: src/Module/Admin/Summary.php:195 -msgid "Private Forum Account" -msgstr "Privates Forum-Konto" - -#: src/Module/Admin/Summary.php:215 +#: src/Module/Admin/Summary.php:175 msgid "Message queues" msgstr "Nachrichten-Warteschlangen" -#: src/Module/Admin/Summary.php:221 +#: src/Module/Admin/Summary.php:181 msgid "Server Settings" msgstr "Servereinstellungen" -#: src/Module/Admin/Summary.php:237 -msgid "Registered users" -msgstr "Registrierte Personen" - -#: src/Module/Admin/Summary.php:239 -msgid "Pending registrations" -msgstr "Anstehende Anmeldungen" - -#: src/Module/Admin/Summary.php:240 +#: src/Module/Admin/Summary.php:199 msgid "Version" msgstr "Version" -#: src/Module/Admin/Summary.php:244 +#: src/Module/Admin/Summary.php:203 msgid "Active addons" msgstr "Aktivierte Addons" @@ -6348,7 +5503,7 @@ msgid "Screenshot" msgstr "Bildschirmfoto" #: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:94 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 msgid "Themes" msgstr "Themen" @@ -6364,34 +5519,34 @@ msgstr "Themes wurden neu geladen" msgid "Reload active themes" msgstr "Aktives Theme neu laden" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:118 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s platziert werden." -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:119 msgid "[Experimental]" msgstr "[Experimentell]" -#: src/Module/Admin/Themes/Index.php:121 +#: src/Module/Admin/Themes/Index.php:120 msgid "[Unsupported]" msgstr "[Nicht unterstützt]" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 msgid "Display Terms of Service" msgstr "Nutzungsbedingungen anzeigen" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 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 "Aktiviert die Seite für die Nutzungsbedingungen. Ist dies der Fall, werden sie auch von der Registrierungsseite und der allgemeinen Informationsseite verlinkt." -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 msgid "Display Privacy Statement" msgstr "Datenschutzerklärung anzeigen" -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -6399,220 +5554,34 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "Zeige Informationen über die zum Betrieb der Seite notwendigen, personenbezogenen Daten an, wie es z.B. die EU.-DSGVO verlangt." -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:81 msgid "Privacy Statement Preview" msgstr "Vorschau: Datenschutzerklärung" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "The Terms of Service" msgstr "Die Nutzungsbedingungen" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "Füge hier die Nutzungsbedingungen deines Knotens ein. Du kannst BBCode zur Formatierung verwenden. Überschriften sollten [h2] oder darunter sein." -#: src/Module/Admin/Users/Active.php:45 src/Module/Admin/Users/Index.php:45 +#: src/Module/Admin/Tos.php:84 +msgid "The rules" +msgstr "Die Regeln" + +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." +msgstr "Gib die Regeln deines Server hier ein. Jede Zeile steht für eine Regel." + +#: src/Module/Api/ApiResponse.php:293 #, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "%s Nutzer blockiert" -msgstr[1] "%s Nutzer blockiert" +msgid "API endpoint %s %s is not implemented but might be in the future." +msgstr "API Endpunkt %s %s ist noch nicht implementiert, vielleicht in der Zukunft." -#: 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 "Du kannst dich nicht selbst löschen!" - -#: 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 Nutzer gelöscht" -msgstr[1] "%s Nutzer gelöscht" - -#: 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 "Nutzer \"%s\" gelöscht" - -#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103 -#, php-format -msgid "User \"%s\" blocked" -msgstr "Nutzer \"%s\" blockiert" - -#: 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 "Anmeldedatum" - -#: 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 "Letzte Anmeldung" - -#: 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 "Letzter öffentliche Beitrag" - -#: src/Module/Admin/Users/Active.php:137 -msgid "Active Accounts" -msgstr "Aktive Benutzerkonten" - -#: 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 "Nutzer blockiert." - -#: 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 "Seitenadministrator" - -#: 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 "Account ist abgelaufen" - -#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161 -msgid "Create a new user" -msgstr "Neues Benutzerkonto anlegen" - -#: 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 "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?" - -#: src/Module/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 "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?" - -#: 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 Nutzer freigeschaltet" -msgstr[1] "%s Nutzer freigeschaltet" - -#: src/Module/Admin/Users/Blocked.php:96 src/Module/Admin/Users/Index.php:109 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "Nutzer \"%s\" frei geschaltet" - -#: src/Module/Admin/Users/Blocked.php:138 -msgid "Blocked Users" -msgstr "Blockierte Benutzer" - -#: src/Module/Admin/Users/Create.php:62 -msgid "New User" -msgstr "Neuer Nutzer" - -#: src/Module/Admin/Users/Create.php:63 -msgid "Add User" -msgstr "Nutzer hinzufügen" - -#: src/Module/Admin/Users/Create.php:71 -msgid "Name of the new user." -msgstr "Name des neuen Nutzers" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname" -msgstr "Spitzname" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname of the new user." -msgstr "Spitznamen für den neuen Nutzer" - -#: src/Module/Admin/Users/Create.php:73 -msgid "Email address of the new user." -msgstr "Email Adresse des neuen Nutzers" - -#: src/Module/Admin/Users/Deleted.php:86 -msgid "Users awaiting permanent deletion" -msgstr "Nutzer wartet auf permanente Löschung" - -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:162 -msgid "Permanent deletion" -msgstr "Permanent löschen" - -#: src/Module/Admin/Users/Index.php:150 src/Module/Admin/Users/Index.php:160 -#: src/Module/BaseAdmin.php:92 -msgid "Users" -msgstr "Nutzer" - -#: src/Module/Admin/Users/Index.php:152 -msgid "User waiting for permanent deletion" -msgstr "Nutzer wartet auf permanente Löschung" - -#: src/Module/Admin/Users/Pending.php:48 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "%sNutzer zugelassen" -msgstr[1] "%sNutzer zugelassen" - -#: src/Module/Admin/Users/Pending.php:55 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "%sRegistration zurückgezogen" -msgstr[1] "%sRegistrierungen zurückgezogen" - -#: src/Module/Admin/Users/Pending.php:81 -msgid "Account approved." -msgstr "Konto freigegeben." - -#: src/Module/Admin/Users/Pending.php:87 -msgid "Registration revoked" -msgstr "Registrierung zurückgezogen" - -#: src/Module/Admin/Users/Pending.php:102 -msgid "User registrations awaiting review" -msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" - -#: src/Module/Admin/Users/Pending.php:104 -msgid "Request date" -msgstr "Anfragedatum" - -#: src/Module/Admin/Users/Pending.php:105 -msgid "No registrations." -msgstr "Keine Neuanmeldungen." - -#: src/Module/Admin/Users/Pending.php:106 -msgid "Note from the user" -msgstr "Hinweis vom Nutzer" - -#: src/Module/Admin/Users/Pending.php:108 -msgid "Deny" -msgstr "Verwehren" - -#: src/Module/Api/ApiResponse.php:279 -#, php-format -msgid "API endpoint %s %s is not implemented" -msgstr "API Endpunkt %s %s ist nicht implementiert" - -#: src/Module/Api/ApiResponse.php:280 -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." - -#: src/Module/Api/Mastodon/Apps.php:63 +#: src/Module/Api/Mastodon/Apps.php:73 msgid "Missing parameters" msgstr "Fehlende Parameter" @@ -6624,7 +5593,7 @@ msgstr "Lesezeichen können nur für den ersten Beitrag einer Unterhaltung angel msgid "Only starting posts can be muted" msgstr "Nur die ersten Beiträge von Unterhaltungen können stumm geschaltet werden" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 #, php-format msgid "Posts from %s can't be shared" msgstr "Beiträge von %s können nicht geteilt werden" @@ -6637,7 +5606,7 @@ msgstr "Lesezeichen können nur für die ersten Beiträge einer Unterhaltung ent msgid "Only starting posts can be unmuted" msgstr "Nur die ersten Beiträge einer Unterhaltung können wieder auf laut gestellt werden" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 #, php-format msgid "Posts from %s can't be unshared" msgstr "Beiträge von %s können nicht ungeteilt werden" @@ -6646,19 +5615,20 @@ msgstr "Beiträge von %s können nicht ungeteilt werden" msgid "Contact not found" msgstr "Kontakt nicht gefunden" -#: src/Module/Apps.php:55 +#: src/Module/Apps.php:62 msgid "No installed applications." msgstr "Keine Applikationen installiert." -#: src/Module/Apps.php:60 +#: src/Module/Apps.php:67 msgid "Applications" msgstr "Anwendungen" -#: src/Module/Attach.php:50 src/Module/Attach.php:62 +#: src/Module/Attach.php:49 src/Module/Attach.php:61 msgid "Item was not found." msgstr "Beitrag konnte nicht gefunden werden." #: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 msgid "Please login to continue." msgstr "Bitte melde dich an, um fortzufahren." @@ -6672,91 +5642,79 @@ msgid "" " as the main account." msgstr "Verwaltete Benutzerkonten haben keinen Zugriff auf die Administrationsseiten. Bitte wechsle wieder zurück auf das Administrator Konto." -#: src/Module/BaseAdmin.php:86 +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 msgid "Overview" msgstr "Übersicht" -#: src/Module/BaseAdmin.php:89 +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 msgid "Configuration" msgstr "Konfiguration" -#: src/Module/BaseAdmin.php:95 src/Module/BaseSettings.php:63 +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 msgid "Additional features" msgstr "Zusätzliche Features" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:97 msgid "Database" msgstr "Datenbank" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:98 msgid "DB updates" msgstr "DB Updates" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:99 msgid "Inspect Deferred Workers" msgstr "Verzögerte Worker inspizieren" -#: src/Module/BaseAdmin.php:101 +#: src/Module/BaseAdmin.php:100 msgid "Inspect worker Queue" msgstr "Worker Warteschlange inspizieren" -#: src/Module/BaseAdmin.php:103 -msgid "Tools" -msgstr "Werkzeuge" - -#: src/Module/BaseAdmin.php:104 -msgid "Contact Blocklist" -msgstr "Kontakt Blockliste" - -#: src/Module/BaseAdmin.php:105 -msgid "Server Blocklist" -msgstr "Server Blockliste" - -#: src/Module/BaseAdmin.php:112 +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 msgid "Diagnostics" msgstr "Diagnostik" -#: src/Module/BaseAdmin.php:113 +#: src/Module/BaseAdmin.php:107 msgid "PHP Info" msgstr "PHP-Info" -#: src/Module/BaseAdmin.php:114 +#: src/Module/BaseAdmin.php:108 msgid "probe address" msgstr "Adresse untersuchen" -#: src/Module/BaseAdmin.php:115 +#: src/Module/BaseAdmin.php:109 msgid "check webfinger" msgstr "Webfinger überprüfen" -#: src/Module/BaseAdmin.php:117 +#: src/Module/BaseAdmin.php:110 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:118 src/Module/Debug/ActivityPubConversion.php:137 +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 msgid "ActivityPub Conversion" msgstr "Umwandlung nach ActivityPub" -#: src/Module/BaseAdmin.php:127 +#: src/Module/BaseAdmin.php:120 msgid "Addon Features" msgstr "Addon Features" -#: src/Module/BaseAdmin.php:128 +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 msgid "User registrations waiting for confirmation" msgstr "Nutzeranmeldungen, die auf Bestätigung warten" -#: src/Module/BaseApi.php:242 src/Module/BaseApi.php:258 -#: src/Module/BaseApi.php:274 +#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 +#: src/Module/BaseApi.php:487 msgid "Too Many Requests" msgstr "Zu viele Abfragen" -#: src/Module/BaseApi.php:243 +#: src/Module/BaseApi.php:456 #, 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." -#: src/Module/BaseApi.php:259 +#: src/Module/BaseApi.php:472 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6764,7 +5722,7 @@ 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." -#: src/Module/BaseApi.php:275 +#: src/Module/BaseApi.php:488 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6772,62 +5730,130 @@ msgid_plural "" msgstr[0] "Das monatliche Limit von %d Beitrag wurde erreicht. Der Beitrag wurde verworfen." msgstr[1] "Das monatliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen." -#: src/Module/BaseProfile.php:51 src/Module/Contact.php:463 +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "Du hast keinen Zugriff zu den Moderationsseiten." + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "Das verwaltete Konto kann nicht auf die Moderationsseiten zugreifen. Bitte melde dich wieder mit dem Hauptkonto an." + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "Reports" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Nutzer" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "Werkzeuge" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "Kontakt Blockliste" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "Server Blockliste" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "Eintrag löschen" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "Beitrags Quelle" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 msgid "Profile Details" msgstr "Profildetails" -#: src/Module/BaseProfile.php:109 +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "Begonnene Unterhaltungen" + +#: src/Module/BaseProfile.php:111 msgid "Only You Can See This" msgstr "Nur du kannst das sehen" -#: src/Module/BaseProfile.php:114 src/Module/Profile/Schedule.php:82 +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 msgid "Scheduled Posts" msgstr "Geplante Beiträge" -#: src/Module/BaseProfile.php:117 +#: src/Module/BaseProfile.php:119 msgid "Posts that are scheduled for publishing" msgstr "Beiträge die für einen späteren Zeitpunkt für die Veröffentlichung geplant sind" -#: src/Module/BaseProfile.php:136 src/Module/BaseProfile.php:139 +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 msgid "Tips for New Members" msgstr "Tipps für neue Nutzer" -#: src/Module/BaseSearch.php:69 +#: src/Module/BaseSearch.php:71 #, php-format msgid "People Search - %s" msgstr "Personensuche - %s" -#: src/Module/BaseSearch.php:79 +#: src/Module/BaseSearch.php:75 #, php-format -msgid "Forum Search - %s" -msgstr "Forensuche - %s" +msgid "Group Search - %s" +msgstr "Gruppensuche - %s" -#: src/Module/BaseSettings.php:41 +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "Keine Übereinstimmungen" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "%d Ergebnis wurde herausgefiltert, weil Ihr Knoten die Domäne blockiert, auf der das Ergebnis registriert ist. Sie können die Liste aller Domänen, die Ihr Knoten derzeit blockiert, auf der Info-Seite einsehen." +msgstr[1] "%d Ergebnisse wurden herausgefiltert, weil Ihr Knoten die Domäne blockiert, auf der die Ergebnisse registriert sind. Du kannst die Liste aller Domänen, die Ihr Knoten derzeit blockiert, auf derInfo-Seite einsehen." + +#: src/Module/BaseSettings.php:78 msgid "Account" msgstr "Nutzerkonto" -#: src/Module/BaseSettings.php:48 src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 #: src/Module/Settings/TwoFactor/Index.php:117 msgid "Two-factor authentication" msgstr "Zwei-Faktor Authentifizierung" -#: src/Module/BaseSettings.php:71 +#: src/Module/BaseSettings.php:118 msgid "Display" msgstr "Anzeige" -#: src/Module/BaseSettings.php:92 src/Module/Settings/Delegation.php:170 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "Soziale Netzwerke" + +#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 msgid "Manage Accounts" msgstr "Accounts Verwalten" -#: src/Module/BaseSettings.php:99 +#: src/Module/BaseSettings.php:153 msgid "Connected apps" msgstr "Verbundene Programme" -#: src/Module/BaseSettings.php:106 src/Module/Settings/UserExport.php:102 +#: src/Module/BaseSettings.php:160 +msgid "Remote servers" +msgstr "Remote Instanzen" + +#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 msgid "Export personal data" msgstr "Persönliche Daten exportieren" -#: src/Module/BaseSettings.php:113 +#: src/Module/BaseSettings.php:174 msgid "Remove account" msgstr "Konto löschen" @@ -6839,117 +5865,365 @@ msgstr "Der Seite fehlt ein URL Parameter." msgid "The post was created" msgstr "Der Beitrag wurde angelegt" -#: src/Module/Contact.php:88 +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "Ungültige Anfrage" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "Die Veranstaltung fehlt." + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "Entfernen der Veranstaltung fehlgeschlagen" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "Die Veranstaltung kann nicht enden, bevor sie beginnt." + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "Anfangszeitpunkt und Titel werden benötigt" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "Veranstaltungsbeginn:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/Channels.php:130 src/Module/Settings/Channels.php:146 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Benötigt" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "Veranstaltungsende:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "Titel (BBCode nicht erlaubt)" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "Beschreibung (BBCode erlaubt)" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "Ort (BBCode nicht erlaubt)" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Veranstaltung teilen" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "Allgemein" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "Dieses Kalenderformat wird nicht unterstützt." + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "Keine exportierbaren Daten gefunden" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "Kalender" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Veranstaltungen" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "Ansehen" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Neue Veranstaltung erstellen" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:291 +msgid "list" +msgstr "Liste" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "Der Circle konnte nicht erstellt werden." + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "Circle nicht gefunden." + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "Der Name des Circles wurde nicht geändert." + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "Unbekannter Circle." + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "Kontakt nicht gefunden." + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "Ungültiger Kontakt." + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "Kontakt wurde gelöscht" + +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "Es ist nicht möglich, den Kontakt zum Circle hinzuzufügen." + +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "Der Kontakt wurde erfolgreich dem Circle hinzugefügt." + +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "Es ist nicht möglich, den Kontakt aus dem Circle zu entfernen." + +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "Kontakt erfolgreich aus dem Circle entfernt." + +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "Ungültige Anfrage." + +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "Circle speichern" + +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "Filter" + +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "Erstelle einen Circle aus Kontakten/Freunden" + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "Der Circle kann nicht entfernt werden." + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "Circle löschen" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "Name des Circles ändern" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "Mitglieder" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "Dieser Circle ist leer" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "Kontakt aus Circle entfernen" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "Kontakt zu Circle hinzufügen" + +#: src/Module/Contact.php:97 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "%d Kontakt bearbeitet." msgstr[1] "%d Kontakte bearbeitet." -#: src/Module/Contact.php:312 +#: src/Module/Contact.php:348 msgid "Show all contacts" msgstr "Alle Kontakte anzeigen" -#: src/Module/Contact.php:320 +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "Ausstehend" + +#: src/Module/Contact.php:356 msgid "Only show pending contacts" msgstr "Zeige nur noch ausstehende Kontakte." -#: src/Module/Contact.php:328 +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Geblockt" + +#: src/Module/Contact.php:364 msgid "Only show blocked contacts" msgstr "Nur blockierte Kontakte anzeigen" -#: src/Module/Contact.php:333 src/Module/Contact.php:380 -#: src/Object/Post.php:338 +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:369 msgid "Ignored" msgstr "Ignoriert" -#: src/Module/Contact.php:336 +#: src/Module/Contact.php:372 msgid "Only show ignored contacts" msgstr "Nur ignorierte Kontakte anzeigen" -#: src/Module/Contact.php:341 src/Module/Contact.php:381 +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "Zugeklappt" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "Zeige nur zugeklappte Kontakte" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 msgid "Archived" msgstr "Archiviert" -#: src/Module/Contact.php:344 +#: src/Module/Contact.php:388 msgid "Only show archived contacts" msgstr "Nur archivierte Kontakte anzeigen" -#: src/Module/Contact.php:349 src/Module/Contact.php:379 +#: src/Module/Contact.php:393 src/Module/Contact.php:438 msgid "Hidden" msgstr "Verborgen" -#: src/Module/Contact.php:352 +#: src/Module/Contact.php:396 msgid "Only show hidden contacts" msgstr "Nur verborgene Kontakte anzeigen" -#: src/Module/Contact.php:360 -msgid "Organize your contact groups" -msgstr "Verwalte deine Kontaktgruppen" +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "Verwalte Deine Circles" -#: src/Module/Contact.php:392 +#: src/Module/Contact.php:459 msgid "Search your contacts" msgstr "Suche in deinen Kontakten" -#: src/Module/Contact.php:393 src/Module/Search/Index.php:206 +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 #, php-format msgid "Results for: %s" msgstr "Ergebnisse für: %s" -#: src/Module/Contact.php:400 +#: src/Module/Contact.php:467 msgid "Update" msgstr "Aktualisierungen" -#: src/Module/Contact.php:402 src/Module/Contact/Profile.php:350 -#: src/Module/Contact/Profile.php:458 +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Entsperren" + +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 msgid "Unignore" msgstr "Ignorieren aufheben" -#: src/Module/Contact.php:404 +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "Aufklappen" + +#: src/Module/Contact.php:472 msgid "Batch Actions" msgstr "Stapelverarbeitung" -#: src/Module/Contact.php:439 +#: src/Module/Contact.php:515 msgid "Conversations started by this contact" msgstr "Unterhaltungen, die von diesem Kontakt begonnen wurden" -#: src/Module/Contact.php:444 +#: src/Module/Contact.php:520 msgid "Posts and Comments" msgstr "Statusnachrichten und Kommentare" -#: src/Module/Contact.php:455 +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "Individuelle Beiträge und Antworten" + +#: src/Module/Contact.php:531 msgid "Posts containing media objects" msgstr "Beiträge die Medien Objekte beinhalten" -#: src/Module/Contact.php:470 +#: src/Module/Contact.php:539 msgid "View all known contacts" msgstr "Alle bekannten Kontakte anzeigen" -#: src/Module/Contact.php:480 +#: src/Module/Contact.php:550 msgid "Advanced Contact Settings" msgstr "Fortgeschrittene Kontakteinstellungen" -#: src/Module/Contact.php:514 +#: src/Module/Contact.php:586 msgid "Mutual Friendship" msgstr "Beidseitige Freundschaft" -#: src/Module/Contact.php:518 +#: src/Module/Contact.php:590 msgid "is a fan of yours" msgstr "ist ein Fan von dir" -#: src/Module/Contact.php:522 +#: src/Module/Contact.php:594 msgid "you are a fan of" msgstr "Du bist Fan von" -#: src/Module/Contact.php:540 +#: src/Module/Contact.php:612 msgid "Pending outgoing contact request" msgstr "Ausstehende ausgehende Kontaktanfrage" -#: src/Module/Contact.php:542 +#: src/Module/Contact.php:614 msgid "Pending incoming contact request" msgstr "Ausstehende eingehende Kontaktanfrage" -#: src/Module/Contact.php:555 src/Module/Contact/Profile.php:335 +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 #, php-format msgid "Visit %s's profile [%s]" msgstr "Besuche %ss Profil [%s]" @@ -6962,6 +6236,19 @@ msgstr "Konnte den Kontakt nicht aktualisieren." msgid "Return to contact editor" msgstr "Zurück zum Kontakteditor" +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Name" + #: src/Module/Contact/Advanced.php:135 msgid "Account Nickname" msgstr "Konto-Spitzname" @@ -6978,302 +6265,465 @@ msgstr "Pull/Feed-URL" msgid "New photo from this URL" msgstr "Neues Foto von dieser URL" -#: src/Module/Contact/Contacts.php:48 src/Module/Conversation/Network.php:186 -#: src/Module/Group.php:101 -msgid "Invalid contact." -msgstr "Ungültiger Kontakt." - -#: src/Module/Contact/Contacts.php:71 +#: src/Module/Contact/Contacts.php:89 msgid "No known contacts." msgstr "Keine bekannten Kontakte." -#: src/Module/Contact/Contacts.php:85 src/Module/Profile/Common.php:97 +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 msgid "No common contacts." msgstr "Keine gemeinsamen Kontakte." -#: src/Module/Contact/Contacts.php:97 src/Module/Profile/Contacts.php:95 +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" msgstr[0] "Folgende (%s)" msgstr[1] "Folgende (%s)" -#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:98 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" msgstr[0] "Gefolgte (%s)" msgstr[1] "Gefolgte (%s)" -#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:101 +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" msgstr[0] "Beidseitige Freundschafte (%s)" msgstr[1] "Beidseitige Freundschaften (%s)" -#: src/Module/Contact/Contacts.php:107 src/Module/Profile/Contacts.php:103 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "Diese Kontakte sind sowohl Folgende als auch Gefolgte von %s." -#: src/Module/Contact/Contacts.php:113 src/Module/Profile/Common.php:85 +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" msgstr[0] "Gemeinsamer Kontakt (%s)" msgstr[1] "Gemeinsame Kontakte (%s)" -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Common.php:87 +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "Du und %s haben mit diesen Kontakten öffentlich interagiert (Folgen, Kommentare und Likes in öffentlichen Beiträgen)" -#: src/Module/Contact/Contacts.php:121 src/Module/Profile/Contacts.php:109 +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "Kontakt (%s)" msgstr[1] "Kontakte (%s)" -#: src/Module/Contact/Profile.php:128 +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:166 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Zugriff verweigert." + +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Anfrage abschicken" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "Du hast den Kontakt bereits hinzugefügt." + +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Der Netzwerktyp wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden." + +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Diaspora-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden." + +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "OStatus-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden." + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Bitte beantworte folgendes:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "Adresse Deines Profils:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "Profil URL" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Tags:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "%skennt dich" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Eine persönliche Notiz beifügen:" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" +msgstr "Beiträge und Antworten" + +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "Der Kontakt konnte nicht hinzugefügt werden." + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "Ungültige Anfrage" + +#: src/Module/Contact/MatchInterests.php:101 +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." + +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "Profilübereinstimmungen" + +#: src/Module/Contact/Profile.php:140 msgid "Failed to update contact record." msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." -#: src/Module/Contact/Profile.php:178 +#: src/Module/Contact/Profile.php:190 msgid "Contact has been unblocked" msgstr "Kontakt wurde wieder freigegeben" -#: src/Module/Contact/Profile.php:182 +#: src/Module/Contact/Profile.php:194 msgid "Contact has been blocked" msgstr "Kontakt wurde blockiert" -#: src/Module/Contact/Profile.php:194 +#: src/Module/Contact/Profile.php:206 msgid "Contact has been unignored" msgstr "Kontakt wird nicht mehr ignoriert" -#: src/Module/Contact/Profile.php:198 +#: src/Module/Contact/Profile.php:210 msgid "Contact has been ignored" msgstr "Kontakt wurde ignoriert" -#: src/Module/Contact/Profile.php:230 +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" +msgstr "Kontakt wurde aufgeklappt" + +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "Kontakt wurde zugeklappt" + +#: src/Module/Contact/Profile.php:254 #, php-format msgid "You are mutual friends with %s" msgstr "Du hast mit %s eine beidseitige Freundschaft" -#: src/Module/Contact/Profile.php:231 +#: src/Module/Contact/Profile.php:255 #, php-format msgid "You are sharing with %s" msgstr "Du teilst mit %s" -#: src/Module/Contact/Profile.php:232 +#: src/Module/Contact/Profile.php:256 #, php-format msgid "%s is sharing with you" msgstr "%s teilt mit dir" -#: src/Module/Contact/Profile.php:248 +#: src/Module/Contact/Profile.php:272 msgid "Private communications are not available for this contact." msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." -#: src/Module/Contact/Profile.php:250 +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "Dieser Kontakt befindet sich auf einem Server, den du ignoriert hast." + +#: src/Module/Contact/Profile.php:285 msgid "Never" msgstr "Niemals" -#: src/Module/Contact/Profile.php:253 +#: src/Module/Contact/Profile.php:288 msgid "(Update was not successful)" msgstr "(Aktualisierung war nicht erfolgreich)" -#: src/Module/Contact/Profile.php:253 +#: src/Module/Contact/Profile.php:288 msgid "(Update was successful)" msgstr "(Aktualisierung war erfolgreich)" -#: src/Module/Contact/Profile.php:255 src/Module/Contact/Profile.php:421 +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 msgid "Suggest friends" msgstr "Kontakte vorschlagen" -#: src/Module/Contact/Profile.php:259 +#: src/Module/Contact/Profile.php:294 #, php-format msgid "Network type: %s" msgstr "Netzwerktyp: %s" -#: src/Module/Contact/Profile.php:264 +#: src/Module/Contact/Profile.php:299 msgid "Communications lost with this contact!" msgstr "Verbindungen mit diesem Kontakt verloren!" -#: src/Module/Contact/Profile.php:270 +#: src/Module/Contact/Profile.php:305 msgid "Fetch further information for feeds" msgstr "Weitere Informationen zu Feeds holen" -#: src/Module/Contact/Profile.php:272 +#: src/Module/Contact/Profile.php:307 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 "Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht allzu viel Text beinhaltet. Schlagwörter werden aus den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet." -#: src/Module/Contact/Profile.php:275 +#: src/Module/Contact/Profile.php:310 msgid "Fetch information" msgstr "Beziehe Information" -#: src/Module/Contact/Profile.php:276 +#: src/Module/Contact/Profile.php:311 msgid "Fetch keywords" msgstr "Schlüsselwörter abrufen" -#: src/Module/Contact/Profile.php:277 +#: src/Module/Contact/Profile.php:312 msgid "Fetch information and keywords" msgstr "Beziehe Information und Schlüsselworte" -#: src/Module/Contact/Profile.php:287 src/Module/Contact/Profile.php:293 -#: src/Module/Contact/Profile.php:298 src/Module/Contact/Profile.php:304 +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 msgid "No mirroring" msgstr "Kein Spiegeln" -#: src/Module/Contact/Profile.php:288 -msgid "Mirror as forwarded posting" -msgstr "Spiegeln als weitergeleitete Beiträge" - -#: src/Module/Contact/Profile.php:289 src/Module/Contact/Profile.php:299 -#: src/Module/Contact/Profile.php:305 +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 msgid "Mirror as my own posting" msgstr "Spiegeln als meine eigenen Beiträge" -#: src/Module/Contact/Profile.php:294 src/Module/Contact/Profile.php:300 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 msgid "Native reshare" msgstr "Natives Teilen" -#: src/Module/Contact/Profile.php:317 +#: src/Module/Contact/Profile.php:353 msgid "Contact Information / Notes" msgstr "Kontakt-Informationen / -Notizen" -#: src/Module/Contact/Profile.php:318 +#: src/Module/Contact/Profile.php:354 msgid "Contact Settings" msgstr "Kontakteinstellungen" -#: src/Module/Contact/Profile.php:326 +#: src/Module/Contact/Profile.php:362 msgid "Contact" msgstr "Kontakt" -#: src/Module/Contact/Profile.php:330 +#: src/Module/Contact/Profile.php:366 msgid "Their personal note" msgstr "Die persönliche Mitteilung" -#: src/Module/Contact/Profile.php:332 +#: src/Module/Contact/Profile.php:368 msgid "Edit contact notes" msgstr "Notizen zum Kontakt bearbeiten" -#: src/Module/Contact/Profile.php:336 +#: src/Module/Contact/Profile.php:372 msgid "Block/Unblock contact" msgstr "Kontakt blockieren/freischalten" -#: src/Module/Contact/Profile.php:337 +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 msgid "Ignore contact" msgstr "Ignoriere den Kontakt" -#: src/Module/Contact/Profile.php:338 +#: src/Module/Contact/Profile.php:374 msgid "View conversations" msgstr "Unterhaltungen anzeigen" -#: src/Module/Contact/Profile.php:343 +#: src/Module/Contact/Profile.php:379 msgid "Last update:" msgstr "Letzte Aktualisierung: " -#: src/Module/Contact/Profile.php:345 +#: src/Module/Contact/Profile.php:381 msgid "Update public posts" msgstr "Öffentliche Beiträge aktualisieren" -#: src/Module/Contact/Profile.php:347 src/Module/Contact/Profile.php:431 +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 msgid "Update now" msgstr "Jetzt aktualisieren" -#: src/Module/Contact/Profile.php:354 -msgid "Currently blocked" -msgstr "Derzeit geblockt" - -#: src/Module/Contact/Profile.php:355 -msgid "Currently ignored" -msgstr "Derzeit ignoriert" - -#: src/Module/Contact/Profile.php:356 -msgid "Currently archived" -msgstr "Momentan archiviert" - -#: src/Module/Contact/Profile.php:357 +#: src/Module/Contact/Profile.php:385 msgid "Awaiting connection acknowledge" msgstr "Bedarf der Bestätigung des Kontakts" -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "Derzeit geblockt" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "Derzeit ignoriert" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "Derzeit zugeklappt" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "Momentan archiviert" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "Verwaltung entfernter Instanzen" + +#: src/Module/Contact/Profile.php:394 #: src/Module/Notifications/Introductions.php:192 msgid "Hide this contact from others" msgstr "Verbirg diesen Kontakt vor Anderen" -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:394 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" -#: src/Module/Contact/Profile.php:359 +#: src/Module/Contact/Profile.php:395 msgid "Notification for new posts" msgstr "Benachrichtigung bei neuen Beiträgen" -#: src/Module/Contact/Profile.php:359 +#: src/Module/Contact/Profile.php:395 msgid "Send a notification of every new post of this contact" msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt." -#: src/Module/Contact/Profile.php:361 +#: src/Module/Contact/Profile.php:397 msgid "Keyword Deny List" msgstr "Liste der gesperrten Schlüsselwörter" -#: src/Module/Contact/Profile.php:361 +#: src/Module/Contact/Profile.php:397 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde" -#: src/Module/Contact/Profile.php:379 +#: src/Module/Contact/Profile.php:415 #: src/Module/Settings/TwoFactor/Index.php:139 msgid "Actions" msgstr "Aktionen" -#: src/Module/Contact/Profile.php:387 +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "Status" + +#: src/Module/Contact/Profile.php:423 msgid "Mirror postings from this contact" msgstr "Spiegle Beiträge dieses Kontakts" -#: src/Module/Contact/Profile.php:389 +#: src/Module/Contact/Profile.php:425 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica, alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden (spiegeln)." -#: src/Module/Contact/Profile.php:441 +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" +msgstr "Kanal Einstellungen" + +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "Häufigkeit dieses Kontakts in relevanten Kanälen" + +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "Je nach Art des Kanals werden nicht alle Beiträge dieses Kontakts angezeigt. Standardmäßig müssen Beiträge eine Mindestanzahl an Interaktionen (Kommentare, Gefällt mir Angaben) aufweisen, um in Ihren Kanälen angezeigt zu werden. Andererseits kann es Kontakte geben, die den Kanal überfluten, so dass du vielleicht nur einige ihrer Beiträge sehen möchtest. Oder du willst deren Inhalte überhaupt nicht sehen, aber du willst den Kontakt nicht komplett blockieren oder ausblenden." + +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "Standardhäufigkeit" + +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "Beiträge dieses Kontakts werden im \"Für Dich\"-Kanal angezeigt, wenn du häufig mit diesem Kontakt interagieren oder wenn ein Beitrag ein gewisses Maß an Interaktion erreicht hat." + +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "Alle Beiträge dieses Kontakts anzeigen" + +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "Alle Beiträge dieses Kontakts werden auf dem Kanal \"Für Dich\" erscheinen" + +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "Zeige nur einige Beiträge an" + +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "Wenn ein Kontakt viele Beiträge in einem kurzen Zeitraum erstellt, reduziert diese Einstellung die Anzahl der angezeigten Beiträge in jedem Kanal." + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "Zeige keine Beiträge an" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "Beiträge von diesem Kontakt werden in keinem Kanal angezeigt" + +#: src/Module/Contact/Profile.php:502 msgid "Refetch contact data" msgstr "Kontaktdaten neu laden" -#: src/Module/Contact/Profile.php:452 +#: src/Module/Contact/Profile.php:513 msgid "Toggle Blocked status" msgstr "Geblockt-Status ein-/ausschalten" -#: src/Module/Contact/Profile.php:460 +#: src/Module/Contact/Profile.php:521 msgid "Toggle Ignored status" msgstr "Ignoriert-Status ein-/ausschalten" -#: src/Module/Contact/Profile.php:467 src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" +msgstr "Status auf \"Zusammengeklappt\" umschalten" + +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 msgid "Revoke Follow" msgstr "Folgen widerrufen" -#: src/Module/Contact/Profile.php:469 +#: src/Module/Contact/Profile.php:538 msgid "Revoke the follow from this contact" msgstr "Widerruft das Folgen dieses Kontaktes" +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "Ungültige Anfrage." + #: src/Module/Contact/Revoke.php:63 msgid "Unknown contact." msgstr "Unbekannter Kontakt." -#: src/Module/Contact/Revoke.php:73 src/Module/Group.php:110 -msgid "Contact is deleted." -msgstr "Kontakt wurde gelöscht" - #: src/Module/Contact/Revoke.php:77 msgid "Contact is being deleted." msgstr "Kontakt wurde gelöscht." @@ -7290,107 +6740,90 @@ msgstr "Willst du das Folgen dieses Kontakt wirklich widerrufen? Dies kann nicht #: src/Module/Contact/Revoke.php:108 #: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:53 src/Module/Register.php:130 -#: src/Module/Settings/TwoFactor/Trusted.php:125 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "Yes" msgstr "Ja" -#: src/Module/Conversation/Community.php:73 +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal." + +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "Du folgst diesem Kontakt." + +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt." + +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "Verbindung lösen/Nicht mehr folgen" + +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "Kontakt wurde erfolgreich entfolgt." + +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "Konnte dem Kontakt nicht entfolgen. Bitte kontaktiere deinen Administrator." + +#: src/Module/Conversation/Channel.php:139 +#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 +#: src/Module/Search/Index.php:194 +msgid "No results." +msgstr "Keine Ergebnisse." + +#: src/Module/Conversation/Channel.php:177 +msgid "Channel not available." +msgstr "Channel nicht verüfgbar" + +#: src/Module/Conversation/Community.php:92 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "Diese Gemeinschaftsseite zeigt alle öffentlichen Beiträge, die auf diesem Knoten eingegangen sind. Der Inhalt entspricht nicht zwingend der Meinung der Nutzer dieses Servers." -#: src/Module/Conversation/Community.php:86 -msgid "Local Community" -msgstr "Lokale Gemeinschaft" - -#: src/Module/Conversation/Community.php:89 -msgid "Posts from local users on this server" -msgstr "Beiträge von Nutzern dieses Servers" - -#: src/Module/Conversation/Community.php:97 -msgid "Global Community" -msgstr "Globale Gemeinschaft" - -#: src/Module/Conversation/Community.php:100 -msgid "Posts from users of the whole federated network" -msgstr "Beiträge von Nutzern des gesamten föderalen Netzwerks" - -#: src/Module/Conversation/Community.php:133 -msgid "Own Contacts" -msgstr "Eigene Kontakte" - -#: src/Module/Conversation/Community.php:137 -msgid "Include" -msgstr "Einschließen" - -#: src/Module/Conversation/Community.php:138 -msgid "Hide" -msgstr "Verbergen" - -#: src/Module/Conversation/Community.php:155 src/Module/Search/Index.php:151 -#: src/Module/Search/Index.php:193 -msgid "No results." -msgstr "Keine Ergebnisse." - -#: src/Module/Conversation/Community.php:211 +#: src/Module/Conversation/Community.php:180 msgid "Community option not available." msgstr "Optionen für die Gemeinschaftsseite nicht verfügbar." -#: src/Module/Conversation/Community.php:227 +#: src/Module/Conversation/Community.php:196 msgid "Not available." msgstr "Nicht verfügbar." -#: src/Module/Conversation/Network.php:172 -msgid "No such group" -msgstr "Es gibt keine solche Gruppe" +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "Circle ist nicht vorhanden" -#: src/Module/Conversation/Network.php:176 +#: src/Module/Conversation/Network.php:222 #, php-format -msgid "Group: %s" -msgstr "Gruppe: %s" +msgid "Circle: %s" +msgstr "Circle: %s" -#: src/Module/Conversation/Network.php:254 -msgid "Latest Activity" -msgstr "Neu - Aktivität" +#: src/Module/Conversation/Network.php:250 +#, php-format +msgid "Error %d (%s) while fetching the timeline." +msgstr "Fehler %d (%s) beim Abruf der Timeline." -#: src/Module/Conversation/Network.php:257 -msgid "Sort by latest activity" -msgstr "Sortiere nach neueste Aktivität" +#: src/Module/Conversation/Network.php:329 +msgid "Network feed not available." +msgstr "Netzwerkfeed nicht verfügbar." -#: src/Module/Conversation/Network.php:262 -msgid "Latest Posts" -msgstr "Neu - Empfangen" +#: src/Module/Conversation/Timeline.php:162 +msgid "Own Contacts" +msgstr "Eigene Kontakte" -#: src/Module/Conversation/Network.php:265 -msgid "Sort by post received date" -msgstr "Nach Empfangsdatum der Beiträge sortiert" +#: src/Module/Conversation/Timeline.php:166 +msgid "Include" +msgstr "Einschließen" -#: src/Module/Conversation/Network.php:270 -msgid "Latest Creation" -msgstr "Neu - Erstellung" - -#: src/Module/Conversation/Network.php:273 -msgid "Sort by post creation date" -msgstr "Sortiert nach dem Erstellungsdatum" - -#: src/Module/Conversation/Network.php:278 -#: src/Module/Settings/Profile/Index.php:227 -msgid "Personal" -msgstr "Persönlich" - -#: src/Module/Conversation/Network.php:281 -msgid "Posts that mention or involve you" -msgstr "Beiträge, in denen es um dich geht" - -#: src/Module/Conversation/Network.php:286 src/Object/Post.php:350 -msgid "Starred" -msgstr "Markierte" - -#: src/Module/Conversation/Network.php:289 -msgid "Favourite Posts" -msgstr "Favorisierte Beiträge" +#: src/Module/Conversation/Timeline.php:167 +msgid "Hide" +msgstr "Verbergen" #: src/Module/Credits.php:44 msgid "Credits" @@ -7419,6 +6852,14 @@ msgstr "Objekt Daten" msgid "Result Item" msgstr "Resultierender Eintrag" +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Fehler" +msgstr[1] "Fehler" + #: src/Module/Debug/ActivityPubConversion.php:138 msgid "Source activity" msgstr "Quelle der Aktivität" @@ -7600,7 +7041,7 @@ msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Twitter Quelle / Tweet URL (benötigt API Schlüssel)" #: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:141 +#: src/Module/Settings/Profile/Index.php:177 msgid "You must be logged in to use this module" msgstr "Du musst eingeloggt sein, um dieses Modul benutzen zu können." @@ -7661,29 +7102,6 @@ msgstr "Webfinger Diagnostik" msgid "Lookup address:" msgstr "Adresse nachschlagen:" -#: src/Module/Delegation.php:110 -#, php-format -msgid "You are now logged in as %s" -msgstr "Du bist jetzt als %s angemeldet" - -#: src/Module/Delegation.php:142 -msgid "Switch between your accounts" -msgstr "Wechsle deine Konten" - -#: src/Module/Delegation.php:143 -msgid "Manage your accounts" -msgstr "Verwalte deine Konten" - -#: src/Module/Delegation.php:144 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast." - -#: src/Module/Delegation.php:145 -msgid "Select an identity to manage: " -msgstr "Wähle eine Identität zum Verwalten aus: " - #: src/Module/Directory.php:74 msgid "No entries (some entries may be hidden)." msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." @@ -7729,137 +7147,64 @@ msgstr "Kontakte vorschlagen" msgid "Suggest a friend for %s" msgstr "Schlage %s einen Kontakt vor" -#: src/Module/Friendica.php:63 +#: src/Module/Friendica.php:82 msgid "Installed addons/apps:" msgstr "Installierte Apps und Addons" -#: src/Module/Friendica.php:68 +#: src/Module/Friendica.php:87 msgid "No installed addons/apps" msgstr "Es sind keine Addons oder Apps installiert" -#: src/Module/Friendica.php:73 +#: src/Module/Friendica.php:92 #, php-format msgid "Read about the Terms of Service of this node." msgstr "Erfahre mehr über die Nutzungsbedingungen dieses Knotens." -#: src/Module/Friendica.php:80 +#: src/Module/Friendica.php:99 msgid "On this server the following remote servers are blocked." msgstr "Auf diesem Server werden die folgenden, entfernten Server blockiert." -#: src/Module/Friendica.php:85 +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +#: src/Module/Settings/Channels.php:164 +msgid "Reason for the block" +msgstr "Begründung für die Blockierung" + +#: src/Module/Friendica.php:104 msgid "Download this list in CSV format" msgstr "Liste im CSV-Format herunterladen" -#: src/Module/Friendica.php:99 +#: src/Module/Friendica.php:118 #, 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 "Diese Friendica-Instanz verwendet die Version %s, sie ist unter der folgenden Adresse im Web zu finden %s. Die Datenbankversion ist %s und die Post-Update-Version %s." -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:123 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "Bitte besuche Friendi.ca, um mehr über das Friendica-Projekt zu erfahren." -#: src/Module/Friendica.php:105 +#: src/Module/Friendica.php:124 msgid "Bug reports and issues: please visit" msgstr "Probleme oder Fehler gefunden? Bitte besuche" -#: src/Module/Friendica.php:105 +#: src/Module/Friendica.php:124 msgid "the bugtracker at github" msgstr "den Bugtracker auf github" -#: src/Module/Friendica.php:106 +#: src/Module/Friendica.php:125 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "Vorschläge, Lob usw.: E-Mail an \"Info\" at \"Friendi - dot ca\"" -#: src/Module/Group.php:56 -msgid "Could not create group." -msgstr "Konnte die Gruppe nicht erstellen." - -#: src/Module/Group.php:67 src/Module/Group.php:213 src/Module/Group.php:237 -msgid "Group not found." -msgstr "Gruppe nicht gefunden." - -#: src/Module/Group.php:73 -msgid "Group name was not changed." -msgstr "Der Name der Gruppe wurde nicht verändert." - -#: src/Module/Group.php:91 -msgid "Unknown group." -msgstr "Unbekannte Gruppe" - -#: src/Module/Group.php:116 -msgid "Unable to add the contact to the group." -msgstr "Konnte den Kontakt nicht zur Gruppe hinzufügen" - -#: src/Module/Group.php:119 -msgid "Contact successfully added to group." -msgstr "Kontakt zur Gruppe hinzugefügt" - -#: src/Module/Group.php:123 -msgid "Unable to remove the contact from the group." -msgstr "Konnte den Kontakt nicht aus der Gruppe entfernen" - -#: src/Module/Group.php:126 -msgid "Contact successfully removed from group." -msgstr "Kontakt aus Gruppe entfernt" - -#: src/Module/Group.php:130 -msgid "Bad request." -msgstr "Ungültige Anfrage." - -#: src/Module/Group.php:169 -msgid "Save Group" -msgstr "Gruppe speichern" - -#: src/Module/Group.php:170 -msgid "Filter" -msgstr "Filter" - -#: src/Module/Group.php:176 -msgid "Create a group of contacts/friends." -msgstr "Eine Kontaktgruppe anlegen." - -#: src/Module/Group.php:218 -msgid "Unable to remove group." -msgstr "Konnte die Gruppe nicht entfernen." - -#: src/Module/Group.php:269 -msgid "Delete Group" -msgstr "Gruppe löschen" - -#: src/Module/Group.php:279 -msgid "Edit Group Name" -msgstr "Gruppen Name bearbeiten" - -#: src/Module/Group.php:289 -msgid "Members" -msgstr "Mitglieder" - -#: src/Module/Group.php:292 -msgid "Group is empty" -msgstr "Gruppe ist leer" - -#: src/Module/Group.php:305 -msgid "Remove contact from group" -msgstr "Entferne den Kontakt aus der Gruppe" - -#: src/Module/Group.php:326 -msgid "Click on a contact to add or remove." -msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" - -#: src/Module/Group.php:340 -msgid "Add contact to group" -msgstr "Füge den Kontakt zur Gruppe hinzu" - #: src/Module/HCard.php:45 msgid "No profile" msgstr "Kein Profil" -#: src/Module/HTTPException/MethodNotAllowed.php:32 +#: src/Module/HTTPException/MethodNotAllowed.php:31 msgid "Method Not Allowed." msgstr "Methode nicht erlaubt." @@ -7867,161 +7212,154 @@ msgstr "Methode nicht erlaubt." msgid "Help:" msgstr "Hilfe:" -#: src/Module/Home.php:54 +#: src/Module/Home.php:63 #, php-format msgid "Welcome to %s" msgstr "Willkommen zu %s" -#: src/Module/Install.php:195 +#: src/Module/Install.php:189 msgid "Friendica Communications Server - Setup" msgstr "Friendica Komunikationsserver - Installation" -#: src/Module/Install.php:206 +#: src/Module/Install.php:200 msgid "System check" msgstr "Systemtest" -#: src/Module/Install.php:208 src/Module/Install.php:265 -#: src/Module/Install.php:348 +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 msgid "Requirement not satisfied" msgstr "Anforderung ist nicht erfüllt" -#: src/Module/Install.php:209 +#: src/Module/Install.php:203 msgid "Optional requirement not satisfied" msgstr "Optionale Anforderung ist nicht erfüllt" -#: src/Module/Install.php:210 +#: src/Module/Install.php:204 msgid "OK" msgstr "Ok" -#: src/Module/Install.php:215 +#: src/Module/Install.php:208 +msgid "Next" +msgstr "Nächste" + +#: src/Module/Install.php:209 msgid "Check again" msgstr "Noch einmal testen" -#: src/Module/Install.php:230 +#: src/Module/Install.php:222 msgid "Base settings" msgstr "Grundeinstellungen" -#: src/Module/Install.php:237 -msgid "Host name" -msgstr "Host Name" - -#: src/Module/Install.php:239 -msgid "" -"Overwrite this field in case the determinated hostname isn't right, " -"otherweise leave it as is." -msgstr "Sollte der ermittelte Hostname nicht stimmen, korrigiere bitte den Eintrag." - -#: src/Module/Install.php:242 +#: src/Module/Install.php:224 msgid "Base path to installation" msgstr "Basis-Pfad zur Installation" -#: src/Module/Install.php:244 +#: src/Module/Install.php:226 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 "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist." -#: src/Module/Install.php:247 -msgid "Sub path of the URL" -msgstr "Unterverzeichnis (Pfad) der URL" +#: src/Module/Install.php:229 +msgid "The Friendica system URL" +msgstr "Die Friendica System URL" -#: src/Module/Install.php:249 +#: src/Module/Install.php:231 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 "Sollte das ermittelte Unterverzeichnis der Friendica Installation nicht stimmen, korrigiere es bitte. Wenn dieses Feld leer ist, bedeutet dies, dass die Installation direkt unter der Basis-URL installiert wird." +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." +msgstr "Überschreibe dieses Feld, falls die System-URL-Erkennung nicht korrekt ist, ansonsten lasse es unverändert." -#: src/Module/Install.php:260 +#: src/Module/Install.php:242 msgid "Database connection" msgstr "Datenbankverbindung" -#: src/Module/Install.php:261 +#: src/Module/Install.php:243 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können." -#: src/Module/Install.php:262 +#: src/Module/Install.php:244 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Bitte kontaktiere den Hosting-Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest." -#: src/Module/Install.php:263 +#: src/Module/Install.php:245 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte, bevor du mit der Installation fortfährst." -#: src/Module/Install.php:272 +#: src/Module/Install.php:252 msgid "Database Server Name" msgstr "Datenbank-Server" -#: src/Module/Install.php:277 +#: src/Module/Install.php:257 msgid "Database Login Name" msgstr "Datenbank-Nutzer" -#: src/Module/Install.php:283 +#: src/Module/Install.php:263 msgid "Database Login Password" msgstr "Datenbank-Passwort" -#: src/Module/Install.php:285 +#: src/Module/Install.php:265 msgid "For security reasons the password must not be empty" msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein." -#: src/Module/Install.php:288 +#: src/Module/Install.php:268 msgid "Database Name" msgstr "Datenbank-Name" -#: src/Module/Install.php:292 src/Module/Install.php:322 +#: src/Module/Install.php:272 src/Module/Install.php:300 msgid "Please select a default timezone for your website" msgstr "Bitte wähle die Standardzeitzone Deiner Webseite" -#: src/Module/Install.php:307 +#: src/Module/Install.php:287 msgid "Site settings" msgstr "Server-Einstellungen" -#: src/Module/Install.php:317 +#: src/Module/Install.php:295 msgid "Site administrator email address" msgstr "E-Mail-Adresse des Administrators" -#: src/Module/Install.php:319 +#: src/Module/Install.php:297 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst." -#: src/Module/Install.php:326 +#: src/Module/Install.php:304 msgid "System Language:" msgstr "Systemsprache:" -#: src/Module/Install.php:328 +#: src/Module/Install.php:306 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand" -#: src/Module/Install.php:340 +#: src/Module/Install.php:318 msgid "Your Friendica site database has been installed." msgstr "Die Datenbank Deiner Friendica-Seite wurde installiert." -#: src/Module/Install.php:350 +#: src/Module/Install.php:328 msgid "Installation finished" msgstr "Installation abgeschlossen" -#: src/Module/Install.php:370 +#: src/Module/Install.php:348 msgid "

    What next

    " msgstr "

    Wie geht es weiter?

    " -#: src/Module/Install.php:371 +#: src/Module/Install.php:349 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "Wichtig: du musst [manuell] einen Cronjob (o.ä.) für den Worker einrichten." -#: src/Module/Install.php:374 +#: src/Module/Install.php:352 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -8084,7 +7422,7 @@ msgid "" "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 "Friendica Server verbinden sich alle untereinander, um ein großes, datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica-Server, denen du beitreten kannst." +msgstr "Friendica Server verbinden sich alle untereinander, um ein großes, datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Du kannst dich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica-Server, denen du beitreten kannst." #: src/Module/Invite.php:157 msgid "" @@ -8097,7 +7435,7 @@ msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." -msgstr "Friendica Server verbinden sich alle untereinander, um ein großes, datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden." +msgstr "Friendica Server verbinden sich alle untereinander, um ein großes, datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Du kannst dich auch mit vielen üblichen Sozialen Netzwerken verbinden." #: src/Module/Invite.php:159 #, php-format @@ -8153,26 +7491,30 @@ msgstr "Neuen Beitrag verfassen" msgid "Visibility" msgstr "Sichtbarkeit" -#: src/Module/Item/Compose.php:201 +#: src/Module/Item/Compose.php:203 msgid "Clear the location" msgstr "Ort löschen" -#: src/Module/Item/Compose.php:202 +#: src/Module/Item/Compose.php:204 msgid "Location services are unavailable on your device" msgstr "Ortungsdienste sind auf Ihrem Gerät nicht verfügbar" -#: src/Module/Item/Compose.php:203 +#: src/Module/Item/Compose.php:205 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "Ortungsdienste sind deaktiviert. Bitte überprüfe die Berechtigungen der Website auf deinem Gerät" -#: src/Module/Item/Compose.php:209 +#: src/Module/Item/Compose.php:211 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "Wenn du magst, kannst du unter den Benutzerdefinierte Theme-Einstellungen einstellen, dass diese Seite immer geöffnet wird, wenn du den \"Neuer Beitrag\" Button verwendest." +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "Der Feed für diesen Beitrag ist nicht verfügbar." + #: src/Module/Item/Follow.php:51 msgid "Unable to follow this item." msgstr "Konnte dem Beitrag nicht folgen." @@ -8192,6 +7534,988 @@ msgstr "Diese Friendica Instanz befindet sich derzeit im Wartungsmodus, entweder msgid "A Decentralized Social Network" msgstr "Ein dezentrales Soziales Netzwerk" +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "Du musst angemeldet sein, um auf diese Seite zuzugreifen. " + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Dateien" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:129 +msgid "Upload" +msgstr "Hochladen" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Entschuldige, die Datei scheint größer zu sein, als es die PHP-Konfiguration erlaubt." + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "Oder - hast du versucht, eine leere Datei hochzuladen?" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Die Datei ist größer als das erlaubte Limit von %s" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "Hochladen der Datei fehlgeschlagen." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:69 +msgid "Unable to process image." +msgstr "Konnte das Bild nicht bearbeiten." + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:96 +msgid "Image upload failed." +msgstr "Hochladen des Bildes gescheitert." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "Liste aller Benutzerkonten" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "Aktive" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "Liste der aktiven Benutzerkonten" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "Liste der anstehenden Benutzerkonten" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "Liste der geblockten Benutzer" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "Gelöscht" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "Liste der auf Löschung wartenden Benutzer" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "Normales Konto" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "Marktschreier-Konto" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "Öffentliche Gruppe" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "Automatische Freunde-Seite" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "Private Gruppe" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "Persönliche Seite" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "Organisationsseite" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "Nachrichtenseite" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "Gemeinschaftsgruppe" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "Relais" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "Lokale Kontakte können nicht geblockt werden. Bitte blocke den Nutzer stattdessen." + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%sKontakt wieder freigegeben" +msgstr[1] "%sKontakte wieder freigegeben" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "Blockliste entfernter Kontakte" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "Auf dieser Seite kannst du Accounts von anderen Knoten blockieren und damit verhindern, dass ihre Beiträge von deinem Knoten angenommen werden." + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "Blockiere entfernten Kontakt" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "Alle auswählen" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "Auswahl aufheben" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "Derzeit werden keine Kontakte auf diesem Knoten blockiert." + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "Blockierte Kontakte von anderen Knoten" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "Blockieren von weiteren Kontakten" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "Foto:" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "Grund" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "Insgesamt %s blockierter Kontakt" +msgstr[1] "Insgesamt %s blockierte Kontakte" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "Die URL des entfernten Kontakts, der blockiert werden soll." + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "Kontakt auch löschen" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "Entfernt alle Inhalte von diesem Knoten, die in Verbindung zu dem Kontakt stehen. Der Kontakt-Eintrag bleibt erhalten. Dieser Vorgang kann nicht rückgängig gemacht werden." + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "Sperrgrund" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "Server Domain Muster zur Blockliste hinzugefügt" + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "%s Server für die Löschung eingeplant." +msgstr[1] "%s Server für die Löschung eingeplant." + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "← zurück zur Liste" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "Neues Domainmuster blockieren" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "

    Die Syntax für das Domainmuster ist unabhängig von der Groß-/Kleinschreibung. Shell Willdcards bestehen aus den folgenden Zeichen:

    \n
      \n
    • *: Eine beliebige Anzahl von Zeichen
    • \n
    • ?: Ein einzelnes Zeichen
    • \n
    " + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "Muster überprüfen" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "Passende bekannte Server" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "Server Name" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "Server Domain" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "Bekannte Kontakte" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "%d bekannter Server" +msgstr[1] "%d bekannte Server" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "Muster zur Blockliste hinzufügen" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "Server Domain Muster" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "Das Muster zur Erkennung der Domain, das zur Blockliste hinzugefügt werden soll. Das Protokoll nicht mir angeben." + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "Server entfernen" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "Sollen die Inhalte der bekannten Kontakte die auf diesem Server registriert sind, auch lokal gelöscht werden. Die Kontakt- und Server-Einträge verbleiben in der Datenbank deines Servers. Diese Aktion kann nicht rückgängig gemacht werden." +msgstr[1] "Sollen die Inhalte der bekannten Kontakte die auf diesen Servern registriert sind, auch lokal gelöscht werden. Die Kontakt- und Server-Einträge verbleiben in der Datenbank deines Servers. Diese Aktion kann nicht rückgängig gemacht werden." + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "Begründung der Blockierung" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "Warum werden Server die diesem Domainmuster entsprechen geblockt? Die Begründung wird öffentlich auf der Server-Informationsseite sichtbar sein." + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "Fehler beim Import der Muster Datei" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "Lokale Blockliste wurde durch die bereitgestellte Datei ersetzt." + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "%d Muster wurde zur lokalen Blockliste hinzugefügt." +msgstr[1] "%d Muster wurden zur lokalen Blockliste hinzugefügt." + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "Kein Muster wurde zur lokalen Blockliste hinzugefügt." + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "Server Domain Muster Blockliste importieren" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "

    Diese Datei kann vom /friendica Pfad auf jedem Friendica Server heruntergeladen werden.

    " + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "Datei hochladen" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "Zu importierende Muster" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "Domain Muster" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "Importmodus" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "Muster importieren" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "%dMuster gesamt" +msgstr[1] "%dMuster gesamt" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "Server Domain Muster Blockliste CSV-Datei" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "Anhängen" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "Importiert Muster aus der Datei, die nicht bereits in der aktuellen Blockliste vorhanden waren." + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "Ersetzen" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "Ersetzt die aktuelle Blockliste durch die importierten Muster." + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +#: src/Module/Settings/Channels.php:163 +msgid "Blocked server domain pattern" +msgstr "Blockierte Server Domain Muster" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "Server Domain Muster löschen" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "Markieren, um diesen Eintrag von der Blocklist zu entfernen" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "Server Domain Muster Blockliste" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +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 "Auf dieser Seite kannst du Muster definieren mit denen Server Domains aus dem föderierten Netzwerk daran gehindert werden mit deiner Instanz zu interagieren. Es ist ratsam für jedes Muster anzugeben, warum du es zur Blockliste hinzugefügt hast." + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +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 "Die Liste der blockierten Domain Muster wird auf der Seite /friendica öffentlich einsehbar gemacht, damit deine Nutzer und Personen, die Kommunikationsprobleme erkunden, die Ursachen einfach finden können." + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "Server Domain Muster Blockliste importieren" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "Neuen Eintrag in die Blockliste" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "Änderungen der Blockliste speichern" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "Aktuelle Einträge der Blockliste" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "Eintrag von der Blockliste entfernen" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "Eintrag von der Blockliste entfernen?" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "Eintrag wurden zur Löschung markiert" + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "Diesen Eintrag löschen" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "Auf dieser Seite kannst du Einträge von deinem Knoten löschen. Wenn der Eintrag der Anfang einer Diskussion ist, wird der gesamte Diskussionsverlauf gelöscht." + +#: src/Module/Moderation/Item/Delete.php:65 +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 "Zur Löschung musst du die GUID des Eintrags kennen. Diese findest du z.B. durch die /display URL des Eintrags. Der letzte Teil der URL ist die GUID. Lautet die URL beispielsweise http://example.com/display/123456, ist die GUID 123456." + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "Die GUID des zu löschenden Eintrags" + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "Item Id" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "Item URI" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "Terms" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "Tag" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "Typ" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "Term" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "URL" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "Implicit Mention" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Beitrag nicht gefunden" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "Keine Quelle aufgezeichnet" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "Bitte stelle sicher, dass der Config-Schlüssel debug.store_source in der config/local.config.php gesetzt ist um in Zukunft Quellen zu haben." + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "Beitrags-Guid" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "Kontakt nicht gefunden oder seine Instanz ist bereits auf dieser Instanz blockiert." + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "Bitte melde dich an, um auf diese Seite zuzugreifen." + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "Moderationsbericht erstellen" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "Kontakt wählen" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "Bitte gib unten die Kontaktadresse oder Profil-URL ein, über die du einen Moderationsbericht erstellen möchten." + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "Kontaktadresse/URL" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "Kategorie auswählen" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "Bitte wähle unten die Kategorie für deinen Bericht." + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "Spam" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "Dieser Kontakt veröffentlicht viele wiederholte/überlange Beiträge/Antworten oder wirbt für sein Produkt/seine Website in ansonsten belanglosen Gesprächen." + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "Illegaler Inhalt" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "Dieser Kontakt veröffentlicht Inhalte, die in dem Land, in dem diese Instanz gehostet wird, als illegal gelten." + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "Sicherheit in der Gemeinschaft" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "Dieser Kontakt hat dich oder andere Personen verärgert, indem er absichtlich oder unabsichtlich provokativ oder unsensibel war. Dazu gehören die Offenlegung privater Informationen (Doxxing), das Posten von Drohungen oder anstößigen Bildern in Beiträgen oder Antworten." + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "Unerwünschte Inhalte/Verhaltensweisen" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "Dieser Kontakt hat wiederholt Inhalte veröffentlicht, die für das Thema der Instanz irrelevant sind, oder er kritisiert offen die Verwaltung/Moderation der Instanz, ohne sich direkt mit den betreffenden Personen auseinanderzusetzen, oder er ist wiederholt erbsenzählerisch bei einem heiklen Thema." + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "Verstoß gegen die Regeln" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "Dieser Kontakt hat gegen eine oder mehrere Regeln dieser Instanz verstoßen. Du kannst im nächsten Schritt auswählen, welche." + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "Bitte gib im Folgenden an, warum du diese Meldung eingereicht hast. Je mehr Details du angibst, desto besser kann Ihre Meldung bearbeitet werden." + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "Zusätzliche Informationen" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "Bitte gib alle zusätzlichen Informationen an, die für diesen Bericht relevant sind. Du kannst im nächsten Schritt Beiträge dieser Kontaktperson anhängen, aber jeder Kontext ist willkommen." + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "Regeln auswählen" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "Bitte wähle unten die Instanzregeln aus, gegen die dieser Kontakt deiner Meinung nach verstoßen hat." + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "Beiträge auswählen" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "Bitte wähle optional Beiträge aus, die du an diesen Bericht anhängen möchtest." + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "Bericht senden" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "Weiteres Vorgehen" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "Du kannst auch eine der folgenden Aktionen für den gemeldeten Kontakt durchführen:" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "Nichts" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "Kontakt verbergen" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "Ihre Beiträge und Antworten werden weiterhin auf Ihrer Netzwerkseite angezeigt, aber ihr Inhalt wird standardmäßig ausgeblendet." + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "Ihre Beiträge werden nicht mehr auf deiner Netzwerkseite angezeigt, aber ihre Antworten können in Forenbeiträgen erscheinen. Sie können dir immer noch folgen." + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "Kontakt blockieren" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "Ihre Beiträge erscheinen nicht mehr auf deiner Netzwerkseite, aber ihre Antworten können in Forumsthemen erscheinen, wobei ihr Inhalt standardmäßig eingeklappt ist. Sie können dir nicht folgen, haben aber auf anderem Wege weiterhin Zugang zu deinen öffentlichen Beiträgen." + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "Bericht weiterleiten" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "Möchtest du diesen Bericht an den Entfernten-Server weiterleiten?" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "1. Wähle einen Kontakt" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "2. Wähle eine Kategorie" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "2a. Regeln wählen" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "2b. Kommentar hinzufügen" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "3. Beiträge auswählen" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "Liste der Reports" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "Auf dieser Seite werden Reports angezeigt, die von unseren oder entfernten Benutzern erstellt wurden." + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "Auf dieser Instanz ist kein Report vorhanden." + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "Kategorie" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "%s Report" +msgstr[1] "%s Reports insgesamt" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "URL des gemeldeten Kontakts." + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Normales Konto" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "Automatisch folgendes Konto (Marktschreier)" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "Öffentliches Gruppen-Konto" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Automatische Freunde-Seite" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Blog-Konto" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "Privates Gruppen-Konto" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Registrierte Personen" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Anstehende Anmeldungen" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "%s Nutzer blockiert" +msgstr[1] "%s Nutzer blockiert" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "Du kannst dich nicht selbst löschen!" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s Nutzer gelöscht" +msgstr[1] "%s Nutzer gelöscht" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "Nutzer \"%s\" gelöscht" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "Nutzer \"%s\" blockiert" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Anmeldedatum" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "Letzte Anmeldung" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "Letzter öffentliche Beitrag" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "Aktive Benutzerkonten" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "Nutzer blockiert." + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "Seitenadministrator" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "Account ist abgelaufen" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "Neues Benutzerkonto anlegen" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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 "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "%s Nutzer freigeschaltet" +msgstr[1] "%s Nutzer freigeschaltet" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "Nutzer \"%s\" frei geschaltet" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "Blockierte Benutzer" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "Neuer Nutzer" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "Nutzer hinzufügen" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "Name des neuen Nutzers" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "Spitzname" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "Spitznamen für den neuen Nutzer" + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "Email Adresse des neuen Nutzers" + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "Nutzer wartet auf permanente Löschung" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "Permanent löschen" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "Nutzer wartet auf permanente Löschung" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "%sNutzer zugelassen" +msgstr[1] "%sNutzer zugelassen" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "%sRegistration zurückgezogen" +msgstr[1] "%sRegistrierungen zurückgezogen" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Konto freigegeben." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "Registrierung zurückgezogen" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Anfragedatum" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "Keine Neuanmeldungen." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "Hinweis vom Nutzer" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Verwehren" + #: src/Module/Notifications/Introductions.php:99 msgid "Show Ignored Requests" msgstr "Zeige ignorierte Anfragen" @@ -8214,8 +8538,8 @@ msgid "Claims to be known to you: " msgstr "Behauptet, dich zu kennen: " #: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:125 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "No" msgstr "Nein" @@ -8279,20 +8603,20 @@ msgstr "Pinnwandbenachrichtigungen" msgid "Show unread" msgstr "Ungelesene anzeigen" -#: src/Module/Notifications/Ping.php:224 +#: src/Module/Notifications/Ping.php:246 msgid "{0} requested registration" msgstr "{0} möchte sich registrieren" -#: src/Module/Notifications/Ping.php:235 +#: src/Module/Notifications/Ping.php:255 #, php-format msgid "{0} and %d others requested registration" msgstr "{0} und %d weitere möchten sich registrieren" -#: src/Module/OAuth/Acknowledge.php:50 +#: src/Module/OAuth/Acknowledge.php:51 msgid "Authorize application connection" msgstr "Verbindung der Applikation autorisieren" -#: src/Module/OAuth/Acknowledge.php:52 +#: src/Module/OAuth/Acknowledge.php:53 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" @@ -8302,7 +8626,7 @@ msgstr "Möchtest du dieser Anwendung den Zugriff auf Deine Beiträge und Kontak msgid "Unsupported or missing response type" msgstr "Der Typ der Antwort fehlt oder wird nicht unterstützt" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:72 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 msgid "Incomplete request data" msgstr "Daten der Anfrage sind nicht vollständig" @@ -8313,175 +8637,418 @@ msgid "" "close this window: %s" msgstr "Bitte kopiere den folgenden Authentifizierungscode in deine App und schließe dieses Fenster: %s" -#: src/Module/OAuth/Token.php:96 +#: src/Module/OAuth/Token.php:83 +msgid "Invalid data or unknown client" +msgstr "Ungültige Daten oder unbekannter Client" + +#: src/Module/OAuth/Token.php:108 msgid "Unsupported or missing grant type" msgstr "Der Grant-Typ fehlt oder wird nicht unterstützt" +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "Erneuern der OStatus-Abonements" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist." + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "✔ Erledigt" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "Keine OStatus Kontakte zum Neufolgen vorhanden." + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "Kontakten folgen" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "Keine Kontakte gefunden." + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "Konnte die Kontaktinformationen nicht einholen." + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen." + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "Konnte Liste der gefolgten Kontakte nicht einholen." + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "Konnte das entfernte Profil nicht laden." + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "Netzwerk wird nicht unterstützt" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Erledigt" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "Erfolg" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "Fehlgeschlagen" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "Ignoriert" + #: src/Module/PermissionTooltip.php:49 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "Falscher Typ \"%s\", hatte einen der Folgenden erwartet: %s" -#: src/Module/PermissionTooltip.php:66 +#: src/Module/PermissionTooltip.php:79 msgid "Model not found" msgstr "Model nicht gefunden" -#: src/Module/PermissionTooltip.php:89 +#: src/Module/PermissionTooltip.php:94 msgid "Unlisted" msgstr "Ungelistet" -#: src/Module/PermissionTooltip.php:107 +#: src/Module/PermissionTooltip.php:112 msgid "Remote privacy information not available." msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." -#: src/Module/PermissionTooltip.php:116 +#: src/Module/PermissionTooltip.php:121 msgid "Visible to:" msgstr "Sichtbar für:" -#: src/Module/PermissionTooltip.php:200 +#: src/Module/PermissionTooltip.php:204 #, php-format msgid "Collection (%s)" msgstr "Sammlung (%s)" -#: src/Module/PermissionTooltip.php:204 +#: src/Module/PermissionTooltip.php:208 #, php-format msgid "Followers (%s)" msgstr "Folgende (%s)" -#: src/Module/PermissionTooltip.php:223 +#: src/Module/PermissionTooltip.php:227 #, php-format msgid "%d more" msgstr "%d weitere" -#: src/Module/PermissionTooltip.php:227 +#: src/Module/PermissionTooltip.php:231 #, php-format msgid "To: %s
    " msgstr "To: %s
    " -#: src/Module/PermissionTooltip.php:230 +#: src/Module/PermissionTooltip.php:234 #, php-format msgid "CC: %s
    " msgstr "CC: %s
    " -#: src/Module/PermissionTooltip.php:233 +#: src/Module/PermissionTooltip.php:237 #, php-format msgid "BCC: %s
    " msgstr "BCC: %s
    " -#: src/Module/Photo.php:128 +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "Addressaten: %s
    " + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "Zurückzuführen auf: %s
    " + +#: src/Module/Photo.php:130 msgid "The Photo is not available." msgstr "Das Foto ist nicht verfügbar." -#: src/Module/Photo.php:141 +#: src/Module/Photo.php:155 #, php-format msgid "The Photo with id %s is not available." msgstr "Das Bild mit ID %s ist nicht verfügbar." -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:192 #, php-format msgid "Invalid external resource with url %s." msgstr "Ungültige externe Ressource mit der URL %s" -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:194 #, php-format msgid "Invalid photo with id %s." msgstr "Fehlerhaftes Foto mit der ID %s." -#: src/Module/Profile/Contacts.php:119 +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "Beitrag nicht gefunden." + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Beitrag bearbeiten" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "Weblink" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Video-Adresse einfügen" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "Video-Link" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Audio-Adresse einfügen" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "Audio-Link" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Gegenstands-Tag entfernen" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Wähle ein Tag zum Entfernen aus: " + +#: src/Module/Post/Tag/Remove.php:108 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Entfernen" + +#: src/Module/Profile/Contacts.php:159 msgid "No contacts." msgstr "Keine Kontakte." -#: src/Module/Profile/Profile.php:81 +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "Timeline von %s" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "Beiträge von %s" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "Kommentare von %s" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:60 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Bildgröße überschreitet das Limit von %s" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut." + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "Bilddatei konnte nicht gefunden werden." + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "Der Server kann derzeit keine neuen Datei-Uploads akzeptieren. Bitte kontaktiere deinen Administrator." + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "Album betrachten" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 msgid "Profile not found." msgstr "Profil nicht gefunden." -#: src/Module/Profile/Profile.php:134 +#: src/Module/Profile/Profile.php:158 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "Du betrachtest dein Profil gerade als %s Abbrechen" -#: src/Module/Profile/Profile.php:143 src/Module/Settings/Account.php:579 +#: src/Module/Profile/Profile.php:167 msgid "Full Name:" msgstr "Kompletter Name:" -#: src/Module/Profile/Profile.php:148 +#: src/Module/Profile/Profile.php:172 msgid "Member since:" msgstr "Mitglied seit:" -#: src/Module/Profile/Profile.php:154 +#: src/Module/Profile/Profile.php:178 msgid "j F, Y" msgstr "j F, Y" -#: src/Module/Profile/Profile.php:155 +#: src/Module/Profile/Profile.php:179 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:163 src/Util/Temporal.php:166 +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 msgid "Birthday:" msgstr "Geburtstag:" -#: src/Module/Profile/Profile.php:166 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 msgid "Age: " msgstr "Alter: " -#: src/Module/Profile/Profile.php:166 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "%d Jahr alt" msgstr[1] "%d Jahre alt" -#: src/Module/Profile/Profile.php:233 -msgid "Forums:" -msgstr "Foren:" +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "Beschreibung" -#: src/Module/Profile/Profile.php:245 +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "Gruppen:" + +#: src/Module/Profile/Profile.php:273 msgid "View profile as:" msgstr "Das Profil aus der Sicht von jemandem anderen betrachten:" -#: src/Module/Profile/Profile.php:262 +#: src/Module/Profile/Profile.php:290 msgid "View as" msgstr "Betrachten als" -#: src/Module/Profile/Profile.php:325 src/Module/Profile/Profile.php:328 -#: src/Module/Profile/Status.php:65 src/Module/Profile/Status.php:68 -#: src/Protocol/Feed.php:1028 src/Protocol/OStatus.php:1047 -#, php-format -msgid "%s's timeline" -msgstr "Timeline von %s" +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "Profil nicht verfügbar." -#: src/Module/Profile/Profile.php:326 src/Module/Profile/Status.php:66 -#: src/Protocol/Feed.php:1032 src/Protocol/OStatus.php:1052 -#, php-format -msgid "%s's posts" -msgstr "Beiträge von %s" +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "Ungültiger Locator" -#: src/Module/Profile/Profile.php:327 src/Module/Profile/Status.php:67 -#: src/Protocol/Feed.php:1035 src/Protocol/OStatus.php:1056 -#, php-format -msgid "%s's comments" -msgstr "Kommentare von %s" +#: src/Module/Profile/RemoteFollow.php:95 +msgid "The provided profile link doesn't seem to be valid" +msgstr "Der angegebene Profil-Link scheint nicht gültig zu sein." -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/RemoteFollow.php:100 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "Entferntes Abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. " + +#: src/Module/Profile/RemoteFollow.php:128 +msgid "Friend/Connection Request" +msgstr "Kontaktanfrage" + +#: src/Module/Profile/RemoteFollow.php:129 +#, 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 "Gib entweder deine Webfinger- (user@domain.tld) oder die Profil-Adresse an. Wenn dies von deinem System nicht unterstützt wird, folge bitte %s oder %s direkt von deinem System. " + +#: src/Module/Profile/RemoteFollow.php:130 +#, 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 "Solltest du das freie Soziale Netzwerk noch nicht benutzen, kannst du diesem Link folgen um eine öffentliche Friendica Instanz zu finden um noch heute dem Netzwerk beizutreten." + +#: src/Module/Profile/RemoteFollow.php:131 +msgid "Your Webfinger address or profile URL:" +msgstr "Deine Webfinger Adresse oder Profil-URL" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "Eingeschränktes Profil" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "Das Profil wurde eingeschränkt, dies verhindert den Zugriff auf öffentliche Beiträge durch anonyme Besucher des Profils." + +#: src/Module/Profile/Schedule.php:83 msgid "Scheduled" msgstr "Zeitplan" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:84 msgid "Content" msgstr "Inhalt" -#: src/Module/Profile/Schedule.php:86 +#: src/Module/Profile/Schedule.php:85 msgid "Remove post" msgstr "Beitrag entfernen" +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "Leerer Nachrichtenkörper." + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Konnte Deinen Heimatort nicht bestimmen." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "Empfänger nicht gefunden." + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Maximale Anzahl der täglichen Pinnwand-Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen." + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern." + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "An" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "Betreff" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "Deine Nachricht" + #: src/Module/Register.php:84 msgid "Only parent users can create additional accounts." msgstr "Zusätzliche Nutzerkonten können nur von Verwaltern angelegt werden." +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal." + #: src/Module/Register.php:116 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " @@ -8532,8 +9099,8 @@ msgstr "Deine E-Mail Adresse (Informationen zur Registrierung werden an diese Ad msgid "Please repeat your e-mail address:" msgstr "Bitte wiederhole deine E-Mail Adresse" -#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:570 +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 msgid "New Password:" msgstr "Neues Passwort:" @@ -8541,8 +9108,8 @@ msgstr "Neues Passwort:" msgid "Leave empty for an auto generated password." msgstr "Leer lassen, um das Passwort automatisch zu generieren." -#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:102 -#: src/Module/Settings/Account.php:571 +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 msgid "Confirm:" msgstr "Bestätigen:" @@ -8557,6 +9124,10 @@ msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstab msgid "Choose a nickname: " msgstr "Spitznamen wählen: " +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Import" + #: src/Module/Register.php:174 msgid "Import your profile to this friendica instance" msgstr "Importiere dein Profil auf diese Friendica-Instanz" @@ -8565,11 +9136,11 @@ msgstr "Importiere dein Profil auf diese Friendica-Instanz" msgid "Note: This node explicitly contains adult content" msgstr "Hinweis: Dieser Knoten enthält explizit Inhalte für Erwachsene" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:154 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 msgid "Parent Password:" msgstr "Passwort des Verwalters" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:154 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "Bitte gib das Passwort des Verwalters ein, um deine Anfrage zu bestätigen." @@ -8599,83 +9170,47 @@ msgid "" "Registration successful. Please check your email for further instructions." msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet." -#: src/Module/Register.php:339 +#: src/Module/Register.php:342 #, php-format msgid "" "Failed to send email message. Here your accout details:
    login: %s
    " "password: %s

    You can change your password after login." msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account-Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern." -#: src/Module/Register.php:345 +#: src/Module/Register.php:348 msgid "Registration successful." msgstr "Registrierung erfolgreich." -#: src/Module/Register.php:350 src/Module/Register.php:357 +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 msgid "Your registration can not be processed." msgstr "Deine Registrierung konnte nicht verarbeitet werden." -#: src/Module/Register.php:356 +#: src/Module/Register.php:363 msgid "You have to leave a request note for the admin." msgstr "Du musst eine Nachricht für den Administrator als Begründung deiner Anfrage hinterlegen." -#: src/Module/Register.php:402 +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "Ein interner Fehler ist aufgetreten. " + +#: src/Module/Register.php:395 msgid "Your registration is pending approval by the site owner." msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." -#: src/Module/RemoteFollow.php:72 -msgid "Profile unavailable." -msgstr "Profil nicht verfügbar." - -#: src/Module/RemoteFollow.php:78 -msgid "Invalid locator" -msgstr "Ungültiger Locator" - -#: src/Module/RemoteFollow.php:85 -msgid "The provided profile link doesn't seem to be valid" -msgstr "Der angegebene Profil-Link scheint nicht gültig zu sein." - -#: src/Module/RemoteFollow.php:90 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "Entferntes Abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. " - -#: src/Module/RemoteFollow.php:122 -msgid "Friend/Connection Request" -msgstr "Kontaktanfrage" - -#: src/Module/RemoteFollow.php:123 -#, 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 "Gib entweder deine Webfinger- (user@domain.tld) oder die Profil-Adresse an. Wenn dies von deinem System nicht unterstützt wird, folge bitte %s oder %s direkt von deinem System. " - -#: src/Module/RemoteFollow.php:124 -#, 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 "Solltest du das freie Soziale Netzwerk noch nicht benutzen, kannst du diesem Link folgen um eine öffentliche Friendica Instanz zu finden um noch heute dem Netzwerk beizutreten." - -#: src/Module/RemoteFollow.php:125 -msgid "Your Webfinger address or profile URL:" -msgstr "Deine Webfinger Adresse oder Profil-URL" - -#: src/Module/Search/Acl.php:55 +#: src/Module/Search/Acl.php:73 msgid "You must be logged in to use this module." msgstr "Du musst eingeloggt sein, um dieses Modul benutzen zu können." -#: src/Module/Search/Index.php:68 +#: src/Module/Search/Index.php:69 msgid "Only logged in users are permitted to perform a search." msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet." -#: src/Module/Search/Index.php:88 +#: src/Module/Search/Index.php:89 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:204 +#: src/Module/Search/Index.php:205 #, php-format msgid "Items tagged with: %s" msgstr "Beiträge, die mit %s getaggt sind" @@ -8696,53 +9231,53 @@ msgstr "Der Suchbegriff wurde nicht entfernt." msgid "Create a New Account" msgstr "Neues Konto erstellen" -#: src/Module/Security/Login.php:143 +#: src/Module/Security/Login.php:142 msgid "Your OpenID: " msgstr "Deine OpenID:" -#: src/Module/Security/Login.php:146 +#: src/Module/Security/Login.php:145 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "Bitte gib seinen Nutzernamen und das Passwort ein um die OpenID zu deinem bestehenden Nutzerkonto hinzufügen zu können." -#: src/Module/Security/Login.php:148 +#: src/Module/Security/Login.php:147 msgid "Or login using OpenID: " msgstr "Oder melde dich mit deiner OpenID an: " -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:161 msgid "Password: " msgstr "Passwort: " -#: src/Module/Security/Login.php:163 +#: src/Module/Security/Login.php:162 msgid "Remember me" msgstr "Anmeldedaten merken" -#: src/Module/Security/Login.php:172 +#: src/Module/Security/Login.php:171 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:174 msgid "Website Terms of Service" msgstr "Website-Nutzungsbedingungen" -#: src/Module/Security/Login.php:176 +#: src/Module/Security/Login.php:175 msgid "terms of service" msgstr "Nutzungsbedingungen" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:177 msgid "Website Privacy Policy" msgstr "Website-Datenschutzerklärung" -#: src/Module/Security/Login.php:179 +#: src/Module/Security/Login.php:178 msgid "privacy policy" msgstr "Datenschutzerklärung" #: src/Module/Security/Logout.php:84 -#: src/Module/Security/TwoFactor/SignOut.php:79 -#: src/Module/Security/TwoFactor/SignOut.php:87 -#: src/Module/Security/TwoFactor/SignOut.php:109 -#: src/Module/Security/TwoFactor/SignOut.php:116 +#: src/Module/Security/TwoFactor/SignOut.php:78 +#: src/Module/Security/TwoFactor/SignOut.php:86 +#: src/Module/Security/TwoFactor/SignOut.php:108 +#: src/Module/Security/TwoFactor/SignOut.php:115 msgid "Logged out." msgstr "Abgemeldet." @@ -8785,31 +9320,31 @@ msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." -msgstr "Mit der Version 2022.09 haben wir festgestellt, dass jedes Passwort, das länger als 72 Zeichen ist, beim Hashing abgeschnitten wird. Um Verwirrung über dieses Verhalten zu vermeiden, aktualisieren Sie Ihr Passwort bitte so, dass es höchstens 72 Zeichen hat." +msgstr "Mit der Version 2022.09 haben wir festgestellt, dass jedes Passwort, das länger als 72 Zeichen ist, beim Hashing abgeschnitten wird. Um Verwirrung über dieses Verhalten zu vermeiden, aktualisiere dein Passwort bitte so, dass es höchstens 72 Zeichen hat." #: src/Module/Security/PasswordTooLong.php:93 msgid "Update Password" msgstr "Passwort aktualisieren" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:572 +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 msgid "Current Password:" msgstr "Aktuelles Passwort:" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:572 +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 msgid "Your current password to confirm the changes" msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" -#: src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:555 +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "Erlaubte Zeichen sind a-z, A-Z, 0-9 und Sonderzeichen, abgesehen von Leerzeichen, Doppelpunkten (:) und akzentuierten Buchstaben." +"spaces and accentuated letters." +msgstr "Erlaube Zeichen sind a-z, A-Z, 0-9 und Sonderzeichen, abgesehen von Leerzeichen und akzentuierten Buchstaben." -#: src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:556 +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 msgid "Password length is limited to 72 characters." msgstr "Die Länge des Passworts ist auf 72 Zeichen begrenzt." @@ -8819,8 +9354,8 @@ msgid "Remaining recovery codes: %d" msgstr "Verbleibende Wiederherstellungscodes: %d" #: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:81 -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Security/TwoFactor/Verify.php:77 +#: src/Module/Settings/TwoFactor/Verify.php:95 msgid "Invalid code, please retry." msgstr "Ungültiger Code, bitte erneut versuchen." @@ -8847,21 +9382,21 @@ msgstr "Bitte gib einen Wiederherstellungscode ein" msgid "Submit recovery code and complete login" msgstr "Sende den Wiederherstellungscode und schließe die Anmeldung ab" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:122 msgid "Sign out of this browser?" msgstr "Von diesem Browser abmelden?" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:123 msgid "" "

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

    " msgstr "

    Wenn du diesem Browser vertraust, wirst du bei zukünftigen Anmeldungen nicht nach dem Verifikationscode gefragt.

    " -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: src/Module/Security/TwoFactor/SignOut.php:124 msgid "Sign out" msgstr "Abmelden" -#: src/Module/Security/TwoFactor/SignOut.php:127 +#: src/Module/Security/TwoFactor/SignOut.php:126 msgid "Trust and sign out" msgstr "Vertrauen und Abmelden" @@ -8891,25 +9426,25 @@ msgstr "Nicht vertrauen" msgid "Trust" msgstr "Vertrauen" -#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Security/TwoFactor/Verify.php:97 msgid "" "

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

    " msgstr "

    Öffne die Zwei-Faktor-Authentifizierungs-App auf deinem Gerät, um einen Authentifizierungscode abzurufen und deine Identität zu überprüfen.

    " -#: src/Module/Security/TwoFactor/Verify.php:104 +#: src/Module/Security/TwoFactor/Verify.php:100 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "Wenn du keinen Zugriff auf deinen Authentifikationscode hast, kannst du einen Zwei-Faktor Wiederherstellungsschlüssel verwenden." -#: src/Module/Security/TwoFactor/Verify.php:105 -#: src/Module/Settings/TwoFactor/Verify.php:154 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Verify.php:155 msgid "Please enter a code from your authentication app" msgstr "Bitte gebe einen Code aus Ihrer Authentifizierungs-App ein" -#: src/Module/Security/TwoFactor/Verify.php:106 +#: src/Module/Security/TwoFactor/Verify.php:102 msgid "Verify code and complete login" msgstr "Code überprüfen und Anmeldung abschließen" @@ -8929,103 +9464,103 @@ msgstr "Falsches Passwort" msgid "Invalid email." msgstr "Ungültige E-Mail-Adresse." -#: src/Module/Settings/Account.php:119 +#: src/Module/Settings/Account.php:117 msgid "Cannot change to that email." msgstr "Ändern der E-Mail nicht möglich. " -#: src/Module/Settings/Account.php:149 src/Module/Settings/Account.php:201 -#: src/Module/Settings/Account.php:221 src/Module/Settings/Account.php:305 -#: src/Module/Settings/Account.php:354 +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 msgid "Settings were not updated." msgstr "Einstellungen nicht aktualisiert" -#: src/Module/Settings/Account.php:366 +#: src/Module/Settings/Account.php:364 msgid "Contact CSV file upload error" msgstr "Fehler beim Hochladen der Kontakt CSV Datei" -#: src/Module/Settings/Account.php:385 +#: src/Module/Settings/Account.php:383 msgid "Importing Contacts done" msgstr "Kontakte wurden importiert." -#: src/Module/Settings/Account.php:398 +#: src/Module/Settings/Account.php:396 msgid "Relocate message has been send to your contacts" msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." -#: src/Module/Settings/Account.php:415 +#: src/Module/Settings/Account.php:413 msgid "Unable to find your profile. Please contact your admin." msgstr "Konnte dein Profil nicht finden. Bitte kontaktiere den Admin." -#: src/Module/Settings/Account.php:457 +#: src/Module/Settings/Account.php:455 msgid "Personal Page Subtypes" msgstr "Unterarten der persönlichen Seite" -#: src/Module/Settings/Account.php:458 -msgid "Community Forum Subtypes" -msgstr "Unterarten des Gemeinschaftsforums" +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" +msgstr "Unterarten der Gemeinschaftsgruppen" -#: src/Module/Settings/Account.php:468 +#: src/Module/Settings/Account.php:466 msgid "Account for a personal profile." msgstr "Konto für ein persönliches Profil." -#: src/Module/Settings/Account.php:475 +#: src/Module/Settings/Account.php:473 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Konto für eine Organisation, das Kontaktanfragen automatisch als \"Follower\" annimmt." -#: src/Module/Settings/Account.php:482 +#: src/Module/Settings/Account.php:480 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Konto für einen Feedspiegel, das Kontaktanfragen automatisch als \"Follower\" annimmt." -#: src/Module/Settings/Account.php:489 +#: src/Module/Settings/Account.php:487 msgid "Account for community discussions." msgstr "Konto für Diskussionsforen. " -#: src/Module/Settings/Account.php:496 +#: src/Module/Settings/Account.php:494 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Konto für ein normales, persönliches Profil. Kontaktanfragen müssen manuell als \"Friend\" oder \"Follower\" bestätigt werden." -#: src/Module/Settings/Account.php:503 +#: src/Module/Settings/Account.php:501 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Konto für ein öffentliches Profil, das Kontaktanfragen automatisch als \"Follower\" annimmt." -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:508 msgid "Automatically approves all contact requests." msgstr "Bestätigt alle Kontaktanfragen automatisch." -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:515 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Konto für ein gefragtes Profil, das Kontaktanfragen automatisch als \"Friend\" annimmt." -#: src/Module/Settings/Account.php:522 -msgid "Private Forum [Experimental]" -msgstr "Privates Forum [Versuchsstadium]" +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "Private Gruppe [experimentell]" -#: src/Module/Settings/Account.php:524 +#: src/Module/Settings/Account.php:522 msgid "Requires manual approval of contact requests." msgstr "Kontaktanfragen müssen manuell bestätigt werden." -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:531 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:531 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID." -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:539 msgid "Publish your profile in your local site directory?" msgstr "Darf dein Profil im lokalen Verzeichnis dieses Servers veröffentlicht werden?" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:539 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9033,133 +9568,138 @@ msgid "" " system settings." msgstr "Dein Profil wird im lokalen Verzeichnis dieses Knotens veröffentlicht. Je nach Systemeinstellungen kann es öffentlich auffindbar sein." -#: src/Module/Settings/Account.php:547 +#: src/Module/Settings/Account.php:545 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Dein Profil wird auch in den globalen Friendica Verzeichnissen (z.B. %s) veröffentlicht werden." -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 msgid "Account Settings" msgstr "Kontoeinstellungen" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:559 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Die Adresse deines Profils lautet '%s' oder '%s'." -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:566 msgid "Password Settings" msgstr "Passwort-Einstellungen" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:568 msgid "Leave password fields blank unless changing" msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:570 msgid "Password:" msgstr "Passwort:" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:570 msgid "Your current password to confirm the changes of the email address" msgstr "Dein aktuelles Passwort um die Änderungen deiner E-Mail Adresse zu bestätigen" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:573 msgid "Delete OpenID URL" msgstr "OpenID URL löschen" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:575 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "Anzeigename:" + +#: src/Module/Settings/Account.php:577 msgid "Email Address:" msgstr "E-Mail-Adresse:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:578 msgid "Your Timezone:" msgstr "Deine Zeitzone:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:579 msgid "Your Language:" msgstr "Deine Sprache:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:579 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Wähle die Sprache, in der wir dir die Friendica-Oberfläche präsentieren sollen und dir E-Mail schicken" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:580 msgid "Default Post Location:" msgstr "Standardstandort:" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:581 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:583 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Privatsphäre-Einstellungen" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:585 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Anzahl von Kontaktanfragen/Tag:" -#: src/Module/Settings/Account.php:588 src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 msgid "(to prevent spam abuse)" msgstr "(um SPAM zu vermeiden)" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:587 msgid "Allow your profile to be searchable globally?" msgstr "Darf dein Profil bei Suchanfragen gefunden werden?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:587 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " "whether Friendica will inform search engines that your profile should be " "indexed or not." -msgstr "Aktiviere diese Einstellung, wenn du von anderen einfach gefunden und gefolgt werden möchtest. Dei Profil wird dann auf anderen Systemen leicht durchsuchbar. Außerdem regelt diese Einstellung ob Friendica Suchmaschinen mitteilen soll, ob dein Profil indiziert werden soll oder nicht." +msgstr "Aktiviere diese Einstellung, wenn du von anderen einfach gefunden und gefolgt werden möchtest. Dein Profil wird dann auf anderen Systemen leicht durchsuchbar. Außerdem regelt diese Einstellung ob Friendica Suchmaschinen mitteilen soll, ob dein Profil indiziert werden soll oder nicht." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:588 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Liste der Kontakte vor Betrachtern des Profil verbergen?" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:588 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "Auf deiner Profilseite wird eine Liste deiner Kontakte angezeigt. Aktiviere diese Option wenn du das nicht möchtest." -#: src/Module/Settings/Account.php:592 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "Verbirg die öffentliche Inhalte vor anonymen Besuchern" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:589 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 "Anonyme Besucher deines Profils werden ausschließlich dein Profilbild, deinen Namen sowie deinen Spitznamen sehen. Deine öffentlichen Beiträge und Kommentare werden weiterhin sichtbar sein." +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "Anonyme Besucher deines Profils werden nur grundlegende Informationen angezeigt bekommen. Deine öffentlichen Beiträge und Kommentare werden weiterhin frei zugänglich auf den Servern deiner Kontakte und über Relays sein." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:590 msgid "Make public posts unlisted" msgstr "Öffentliche Beiträge nicht listen" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:590 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "Deine öffentlichen Beiträge werden nicht auf der Gemeinschaftsseite oder in den Suchergebnissen erscheinen, außerdem werden sie nicht an Relay-Server geschickt. Sie werden aber weiterhin in allen öffentlichen Feeds, auch auf entfernten Servern, erscheinen." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:591 msgid "Make all posted pictures accessible" msgstr "Alle geposteten Bilder zugreifbar machen" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:591 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 " @@ -9167,582 +9707,960 @@ msgid "" "public on your photo albums though." msgstr "Diese Option macht jedes veröffentlichte Bild über den direkten Link zugänglich. Dies ist eine Problemumgehung für das Problem, dass die meisten anderen Netzwerke keine Berechtigungen für Bilder verarbeiten können. Nicht öffentliche Bilder sind in Ihren Fotoalben jedoch immer noch nicht für die Öffentlichkeit sichtbar." -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:592 msgid "Allow friends to post to your profile page?" msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:592 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Deine Kontakte können Beiträge auf deiner Pinnwand hinterlassen. Diese werden an deine Kontakte verteilt." -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:593 msgid "Allow friends to tag your posts?" msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:593 msgid "Your contacts can add additional tags to your posts." msgstr "Deine Kontakte dürfen deine Beiträge mit zusätzlichen Schlagworten versehen." -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:594 msgid "Permit unknown people to send you private mail?" msgstr "Dürfen dir Unbekannte private Nachrichten schicken?" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:594 msgid "" "Friendica network users may send you private messages even if they are not " "in your contact list." msgstr "Nutzer des Friendica Netzwerks können dir private Nachrichten senden, selbst wenn sie nicht in deine Kontaktliste sind." -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:595 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "Voreingestellter Circle für neue Kontakte" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "Voreingestellter Circle für neue Gruppenkontakte" + +#: src/Module/Settings/Account.php:598 msgid "Default Post Permissions" msgstr "Standard-Zugriffsrechte für Beiträge" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:602 msgid "Expiration settings" msgstr "Verfalls-Einstellungen" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:603 msgid "Automatically expire posts after this many days:" msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:603 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Wenn leer, verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht." -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:604 msgid "Expire posts" msgstr "Beiträge verfallen lassen" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:604 msgid "When activated, posts and comments will be expired." msgstr "Ist dies aktiviert, werden Beiträge und Kommentare verfallen." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:605 msgid "Expire personal notes" msgstr "Persönliche Notizen verfallen lassen" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:605 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Ist dies aktiviert, werden persönliche Notizen auf deiner Pinnwand verfallen." -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:606 msgid "Expire starred posts" msgstr "Markierte Beiträge verfallen lassen" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:606 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Markierte Beiträge verfallen eigentlich nicht. Mit dieser Option kannst du sie verfallen lassen." -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:607 msgid "Only expire posts by others" msgstr "Nur Beiträge anderer verfallen lassen." -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:607 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Wenn aktiviert werden deine eigenen Beiträge niemals verfallen. Die obigen Einstellungen betreffen dann ausschließlich die Beiträge von anderen Accounts." -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:610 msgid "Notification Settings" msgstr "Benachrichtigungseinstellungen" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:611 msgid "Send a notification email when:" msgstr "Benachrichtigungs-E-Mail senden, wenn:" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:612 msgid "You receive an introduction" msgstr "– du eine Kontaktanfrage erhältst" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:613 msgid "Your introductions are confirmed" msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:614 msgid "Someone writes on your profile wall" msgstr "– jemand etwas auf Deine Pinnwand schreibt" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "Someone writes a followup comment" msgstr "– jemand auch einen Kommentar verfasst" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:616 msgid "You receive a private message" msgstr "– du eine private Nachricht erhältst" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:617 msgid "You receive a friend suggestion" msgstr "– du eine Empfehlung erhältst" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:618 msgid "You are tagged in a post" msgstr "– du in einem Beitrag erwähnt wirst" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:620 msgid "Create a desktop notification when:" msgstr "Benachrichtigungen anzeigen wenn:" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:621 msgid "Someone tagged you" msgstr "Dich jemand erwähnt" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:622 msgid "Someone directly commented on your post" msgstr "Jemand einen Beitrag von dir kommentiert hat" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:623 msgid "Someone liked your content" msgstr "Einer deiner Beiträge gemocht wurde" -#: src/Module/Settings/Account.php:625 src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Kann nur aktiviert werden, wenn die \"Jemand einen Beitrag von dir kommentiert hat  \" Option eingeschaltet ist." -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:624 msgid "Someone shared your content" msgstr "Einer deiner Beiträge geteilt wurde" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:625 msgid "Someone commented in your thread" msgstr "Jemand hat in deiner Unterhaltung kommentiert" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:626 msgid "Someone commented in a thread where you commented" msgstr "Jemand in einer Unterhaltung kommentiert hat, in der du auch kommentiert hast" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:627 msgid "Someone commented in a thread where you interacted" msgstr "Jemand kommentierte in einer Unterhaltung mit der du interagiert hast" -#: src/Module/Settings/Account.php:631 +#: src/Module/Settings/Account.php:629 msgid "Activate desktop notifications" msgstr "Desktop-Benachrichtigungen einschalten" -#: src/Module/Settings/Account.php:631 +#: src/Module/Settings/Account.php:629 msgid "Show desktop popup on new notifications" msgstr "Desktop-Benachrichtigungen einschalten" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:633 msgid "Text-only notification emails" msgstr "Benachrichtigungs-E-Mail als Rein-Text." -#: src/Module/Settings/Account.php:637 +#: src/Module/Settings/Account.php:635 msgid "Send text only notification emails, without the html part" msgstr "Sende Benachrichtigungs-E-Mail als Rein-Text - ohne HTML-Teil" -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:639 msgid "Show detailled notifications" msgstr "Detaillierte Benachrichtigungen anzeigen" -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:641 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Normalerweise werden alle Benachrichtigungen zu einem Thema in einer einzigen Benachrichtigung zusammengefasst. Wenn diese Option aktiviert ist, wird jede Benachrichtigung einzeln angezeigt." -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:645 msgid "Show notifications of ignored contacts" msgstr "Zeige Benachrichtigungen von ignorierten Kontakten" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:647 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "Beiträge von ignorierten Kontakten werden dir nicht angezeigt. Aber du siehst immer noch ihre Kommentare. Diese Einstellung legt fest, ob du dazu weiterhin Benachrichtigungen erhalten willst oder ob diese einfach verworfen werden sollen." -#: src/Module/Settings/Account.php:652 +#: src/Module/Settings/Account.php:650 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" -#: src/Module/Settings/Account.php:653 +#: src/Module/Settings/Account.php:651 msgid "Change the behaviour of this account for special situations" msgstr "Verhalten dieses Kontos in bestimmten Situationen:" -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:654 msgid "Import Contacts" msgstr "Kontakte Importieren" -#: src/Module/Settings/Account.php:657 +#: src/Module/Settings/Account.php:655 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Lade eine CSV Datei hoch, die das Handle der Kontakte deines alten Nutzerkontos in der ersten Spalte enthält." -#: src/Module/Settings/Account.php:658 +#: src/Module/Settings/Account.php:656 msgid "Upload File" msgstr "Datei hochladen" -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:659 msgid "Relocate" msgstr "Umziehen" -#: src/Module/Settings/Account.php:662 +#: src/Module/Settings/Account.php:660 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Wenn du dein Profil von einem anderen Server umgezogen hast und einige deiner Kontakte deine Beiträge nicht erhalten, verwende diesen Button." -#: src/Module/Settings/Account.php:663 +#: src/Module/Settings/Account.php:661 msgid "Resend relocate message to contacts" msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" -#: src/Module/Settings/Delegation.php:52 +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "Addon Einstellungen" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "Keine Addon-Einstellungen konfiguriert" + +#: src/Module/Settings/Channels.php:130 src/Module/Settings/Channels.php:146 +#: src/Module/Settings/Display.php:330 +msgid "Label" +msgstr "Bezeichnung" + +#: src/Module/Settings/Channels.php:131 src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +msgid "Description" +msgstr "Beschreibung" + +#: src/Module/Settings/Channels.php:132 src/Module/Settings/Channels.php:148 +msgid "Access Key" +msgstr "Zugriffsschlüssel" + +#: src/Module/Settings/Channels.php:133 src/Module/Settings/Channels.php:149 +msgid "Circle/Channel" +msgstr "Circle/Kanal" + +#: src/Module/Settings/Channels.php:134 src/Module/Settings/Channels.php:150 +msgid "Include Tags" +msgstr "Tags einschließen" + +#: src/Module/Settings/Channels.php:135 src/Module/Settings/Channels.php:151 +msgid "Exclude Tags" +msgstr "Tags ausschließen" + +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:152 +msgid "Full Text Search" +msgstr "Volltextsuche" + +#: src/Module/Settings/Channels.php:140 +msgid "Delete channel" +msgstr "Lösche Kanal" + +#: src/Module/Settings/Channels.php:140 +msgid "Check to delete this entry from the channel list" +msgstr "Haken setzen, um diesen Eintrag aus der Kanalliste zu löschen" + +#: src/Module/Settings/Channels.php:146 +msgid "Short name for the channel. It is displayed on the channels widget." +msgstr "Kurzname für den Kanal. Er wird im Widget für die Kanäle angezeigt." + +#: src/Module/Settings/Channels.php:147 +msgid "This should describe the content of the channel in a few word." +msgstr "Dies sollte den Inhalt des Kanals in wenigen Worten beschreiben." + +#: src/Module/Settings/Channels.php:148 +msgid "" +"When you want to access this channel via an access key, you can define it " +"here. Pay attention to not use an already used one." +msgstr "Wenn du auf diesen Kanal über einen Zugangsschlüssel zugreifen willst, kannst du ihn hier festlegen. Achte darauf, dass du nicht einen bereits verwendeten Schlüssel benutzt." + +#: src/Module/Settings/Channels.php:149 +msgid "Select a circle or channel, that your channel should be based on." +msgstr "Wähle einen Circle oder Kanal, auf dem Ihr Kanal basieren soll." + +#: src/Module/Settings/Channels.php:150 +msgid "" +"Comma separated list of tags. A post will be used when it contains any of " +"the listed tags." +msgstr "Durch Kommata getrennte Liste von Tags. Ein Beitrag wird verwendet, wenn er eines der aufgeführten Tags enthält." + +#: src/Module/Settings/Channels.php:151 +msgid "" +"Comma separated list of tags. If a post contain any of these tags, then it " +"will not be part of nthis channel." +msgstr "Durch Kommata getrennte Liste von Tags. Wenn ein Beitrag eines dieser Tags enthält, wird er nicht Teil dieses Kanals sein." + +#: src/Module/Settings/Channels.php:152 +#, php-format +msgid "" +"Search terms for the body, supports the \"boolean mode\" operators from " +"MariaDB. See the help for a complete list of operators and additional " +"keywords: %s" +msgstr "Suchbegriffe für den Body, unterstützt die \"boolean mode\"-Operatoren von MariaDB. In der Hilfe findest du eine vollständige Liste der Operatoren und zusätzliche Schlüsselwörter: %s" + +#: src/Module/Settings/Channels.php:153 +msgid "Check to display images in the channel." +msgstr "Aktiviere diese Option, um Bilder im Kanal anzuzeigen." + +#: src/Module/Settings/Channels.php:154 +msgid "Check to display videos in the channel." +msgstr "Aktiviere diese Option, um Videos im Kanal anzuzeigen." + +#: src/Module/Settings/Channels.php:155 +msgid "Check to display audio in the channel." +msgstr "Aktiviere diese Option, um Audio im Kanal anzuzeigen." + +#: src/Module/Settings/Channels.php:158 +msgid "This page can be used to define your own channels." +msgstr "Auf dieser Seite kannst du deine eigenen Kanäle definieren." + +#: src/Module/Settings/Channels.php:159 +msgid "Add new entry to the channel list" +msgstr "Neuen Eintrag zur Kanalliste hinzufügen" + +#: src/Module/Settings/Channels.php:160 +msgid "Add" +msgstr "Hinzufügen" + +#: src/Module/Settings/Channels.php:162 +msgid "Current Entries in the channel list" +msgstr "Aktuelle Einträge in der Kanalliste" + +#: src/Module/Settings/Channels.php:165 +msgid "Delete entry from the channel list" +msgstr "Eintrag aus der Kanalliste löschen" + +#: src/Module/Settings/Channels.php:166 +msgid "Delete entry from the channel list?" +msgstr "Eintrag aus der Kanalliste löschen?" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich." + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "Eingebaute Unterstützung für die Verbindung zu %s ist aktiviert." + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "Eingebaute Unterstützung für die Verbindung zu %s ist nicht aktiviert." + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "OStatus (GNU Social)" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "Keine" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "Allgemeine Einstellungen zu Sozialen Medien" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "Umfang zu folgender Inhalte" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "Normalerweise werden Unterhaltungen an denen deine Kontakte beteiligt sind, sie aber nicht begonnen haben, in deiner Timeline angezeigt. Mit dieser Einstellung kann dieses Vorgehen kontrolliert werden. Es kann entweder dahin erweitert werden, dass auch Unterhaltungen angezeigt werden in denen deine Kontakte einen Kommentar mögen, oder komplett ausgeschaltet werden, so dass nur noch die Unterhaltungen angezeigt werden, die von deinen Kontakten gestartet wurden." + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "Nur Unterhaltungen, die meine Kontakte gestartet haben" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "Unterhaltungen an denen meine Kontakte beteiligt sind (Grundeinstellung)" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "Unterhaltungen mit denen meine Kontakte interagiert haben, inklusive likes" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "Inhaltswarnungen einschalten" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "Benutzer in Netzwerken wie Mastodon oder Pleroma können eine Warnung für sensitive Inhalte ihrer Beiträge erstellen. Mit dieser Option werden derart markierte Beiträge automatisch zusammengeklappt und die Inhaltswarnung wird als Titel des Beitrags angezeigt. Diese Option hat keinen Einfluss auf andere Inhaltsfilterungen, die du eventuell eingerichtet hast." + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "Intelligentes kürzen einschalten" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "Normalerweise versucht das System, den besten Link zu finden, um ihn zum gekürzten Postings hinzuzufügen. Wird diese Option ausgewählt, wird stets ein Link auf die originale Friendica-Nachricht beigefügt." + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "Einfache Textkürzung aktivieren" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "Normalerweise kürzt das System Beiträge bei Zeilenumbrüchen. Ist diese Option aktiv, wird das System die Kürzung beim Erreichen der maximalen Zeichenzahl vornehmen." + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "Link Titel hinzufügen" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "Ist dies aktiviert, wird der Titel von angehangenen Links bei Beiträgen nach Diaspora* angefügt. Dies ist vorallem bei Entfernten Konten nützlich die Beiträge von Feeds weiterleiten." + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "API: Verwende den Spoiler Text als Titel" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "Ist dies aktiviert, wird das \"spoiler_text\" der API als Titel von neuen Beiträgen verwendet. Ist es deaktiviert wird der Text als Spoiler-Text verwendet. Bei Kommentaren wird der Inhalt immer als Spoiler-Text verwendet." + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "API: Automatische Links am Ende des Beitrags als angehängte Beiträge" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "Wenn dies aktiviert ist, reagieren hinzugefügte Links am Ende des Beitrags genauso wie hinzugefügte Links in der Weboberfläche." + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "Dein alter ActivityPub/GNU Social-Account" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "Wenn du deinen alten ActivityPub oder GNU Social/Statusnet-Account-Namen hier angibst (Format name@domain.tld), werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden." + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "OStatus-Abonnements reparieren" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "E-Mail/Postfach-Einstellungen" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an." + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "Letzter erfolgreicher E-Mail-Check" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "IMAP-Server-Name:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "IMAP-Port:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "Sicherheit:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "E-Mail-Login-Name:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "E-Mail-Passwort:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "Reply-to Adresse:" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "Aktion nach Import:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "In einen Ordner verschieben" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "In diesen Ordner verschieben:" + +#: src/Module/Settings/Delegation.php:73 msgid "Delegation successfully granted." msgstr "Delegierung erfolgreich eingerichtet." -#: src/Module/Settings/Delegation.php:54 +#: src/Module/Settings/Delegation.php:75 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Der angegebene Nutzer konnte nicht gefunden werden, ist nicht verfügbar oder das angegebene Passwort ist nicht richtig." -#: src/Module/Settings/Delegation.php:58 +#: src/Module/Settings/Delegation.php:79 msgid "Delegation successfully revoked." msgstr "Delegation erfolgreich aufgehoben." -#: src/Module/Settings/Delegation.php:80 -#: src/Module/Settings/Delegation.php:102 +#: src/Module/Settings/Delegation.php:98 +#: src/Module/Settings/Delegation.php:120 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Verwalter können die Berechtigungen der Delegationen einsehen, sie aber nicht ändern." -#: src/Module/Settings/Delegation.php:94 +#: src/Module/Settings/Delegation.php:112 msgid "Delegate user not found." msgstr "Delegierter Nutzer nicht gefunden" -#: src/Module/Settings/Delegation.php:142 +#: src/Module/Settings/Delegation.php:169 msgid "No parent user" msgstr "Kein Verwalter" -#: src/Module/Settings/Delegation.php:153 -#: src/Module/Settings/Delegation.php:164 +#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:191 msgid "Parent User" msgstr "Verwalter" -#: src/Module/Settings/Delegation.php:161 +#: src/Module/Settings/Delegation.php:188 msgid "Additional Accounts" msgstr "Zusätzliche Accounts" -#: src/Module/Settings/Delegation.php:162 +#: src/Module/Settings/Delegation.php:189 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Zusätzliche Accounts registrieren, die automatisch mit deinem bestehenden Account verknüpft werden, damit du sie anschließend verwalten kannst." -#: src/Module/Settings/Delegation.php:163 +#: src/Module/Settings/Delegation.php:190 msgid "Register an additional account" msgstr "Einen zusätzlichen Account registrieren" -#: src/Module/Settings/Delegation.php:167 +#: src/Module/Settings/Delegation.php:192 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Verwalter haben Zugriff auf alle Funktionen dieses Benutzerkontos und können dessen Einstellungen ändern." -#: src/Module/Settings/Delegation.php:171 +#: src/Module/Settings/Delegation.php:195 msgid "Delegates" msgstr "Bevollmächtigte" -#: src/Module/Settings/Delegation.php:173 +#: src/Module/Settings/Delegation.php:196 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 "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem du nicht absolut vertraust!" -#: src/Module/Settings/Delegation.php:174 +#: src/Module/Settings/Delegation.php:197 msgid "Existing Page Delegates" msgstr "Vorhandene Bevollmächtigte für die Seite" -#: src/Module/Settings/Delegation.php:176 +#: src/Module/Settings/Delegation.php:198 msgid "Potential Delegates" msgstr "Potentielle Bevollmächtigte" -#: src/Module/Settings/Delegation.php:179 -msgid "Add" -msgstr "Hinzufügen" - -#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:199 msgid "No entries." msgstr "Keine Einträge." -#: src/Module/Settings/Display.php:106 +#: src/Module/Settings/Display.php:179 msgid "The theme you chose isn't available." msgstr "Das gewählte Theme ist nicht verfügbar" -#: src/Module/Settings/Display.php:145 +#: src/Module/Settings/Display.php:219 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Nicht unterstützt)" -#: src/Module/Settings/Display.php:199 +#: src/Module/Settings/Display.php:254 +msgid "No preview" +msgstr "Keine Vorschau" + +#: src/Module/Settings/Display.php:255 +msgid "No image" +msgstr "Kein Bild" + +#: src/Module/Settings/Display.php:256 +msgid "Small Image" +msgstr "Kleines Bild" + +#: src/Module/Settings/Display.php:257 +msgid "Large Image" +msgstr "Große Bilder" + +#: src/Module/Settings/Display.php:302 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: src/Module/Settings/Display.php:201 +#: src/Module/Settings/Display.php:304 msgid "General Theme Settings" msgstr "Allgemeine Theme-Einstellungen" -#: src/Module/Settings/Display.php:202 +#: src/Module/Settings/Display.php:305 msgid "Custom Theme Settings" msgstr "Benutzerdefinierte Theme-Einstellungen" -#: src/Module/Settings/Display.php:203 +#: src/Module/Settings/Display.php:306 msgid "Content Settings" msgstr "Einstellungen zum Inhalt" -#: src/Module/Settings/Display.php:204 view/theme/duepuntozero/config.php:86 +#: src/Module/Settings/Display.php:307 view/theme/duepuntozero/config.php:86 #: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Theme-Einstellungen" -#: src/Module/Settings/Display.php:205 -msgid "Calendar" -msgstr "Kalender" +#: src/Module/Settings/Display.php:308 +msgid "Timelines" +msgstr "Timelines" -#: src/Module/Settings/Display.php:211 +#: src/Module/Settings/Display.php:315 msgid "Display Theme:" msgstr "Theme:" -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:316 msgid "Mobile Theme:" msgstr "Mobiles Theme" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:319 msgid "Number of items to display per page:" msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " -#: src/Module/Settings/Display.php:215 src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:319 src/Module/Settings/Display.php:320 msgid "Maximum of 100 items" msgstr "Maximal 100 Beiträge" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:320 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:321 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:321 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimum sind 10 Sekunden. Gib -1 ein, um abzuschalten." -#: src/Module/Settings/Display.php:218 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "Automatische Updates nur, wenn du oben auf den Beitragsstream-Seiten bist." - -#: src/Module/Settings/Display.php:218 -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 "Das automatische Aktualisieren des Streams kann neue Beiträge am Anfang des Stream einfügen. Dies kann die angezeigte Position im Stream beeinflussen, wenn du gerade nicht den Anfang des Streams betrachtest." - -#: src/Module/Settings/Display.php:219 +#: src/Module/Settings/Display.php:322 msgid "Display emoticons" msgstr "Zeige Emoticons" -#: src/Module/Settings/Display.php:219 +#: src/Module/Settings/Display.php:322 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "Wenn dies aktiviert ist, werden Text-Emoticons in Beiträgen durch Symbole ersetzt." -#: src/Module/Settings/Display.php:220 +#: src/Module/Settings/Display.php:323 msgid "Infinite scroll" msgstr "Endloses Scrollen" -#: src/Module/Settings/Display.php:220 +#: src/Module/Settings/Display.php:323 msgid "Automatic fetch new items when reaching the page end." msgstr "Automatisch neue Beiträge laden, wenn das Ende der Seite erreicht ist." -#: src/Module/Settings/Display.php:221 +#: src/Module/Settings/Display.php:324 msgid "Enable Smart Threading" msgstr "Intelligentes Threading aktivieren" -#: src/Module/Settings/Display.php:221 +#: src/Module/Settings/Display.php:324 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "Schaltet das automatische Unterdrücken von überflüssigen Thread-Einrückungen ein." -#: src/Module/Settings/Display.php:222 +#: src/Module/Settings/Display.php:325 msgid "Display the Dislike feature" msgstr "Das \"Nicht-mögen\" Feature anzeigen" -#: src/Module/Settings/Display.php:222 +#: src/Module/Settings/Display.php:325 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "Einen \"Ich mag das nicht\" Button und die dislike Reaktion auf Beiträge und Kommentare anzeigen." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:326 msgid "Display the resharer" msgstr "Teilenden anzeigen" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:326 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Zeige das Profilbild des ersten Kontakts von dem ein Beitrag geteilt wurde." -#: src/Module/Settings/Display.php:224 +#: src/Module/Settings/Display.php:327 msgid "Stay local" msgstr "Bleib lokal" -#: src/Module/Settings/Display.php:224 +#: src/Module/Settings/Display.php:327 msgid "Don't go to a remote system when following a contact link." msgstr "Gehe nicht zu einem Remote-System, wenn einem Kontaktlink gefolgt wird" -#: src/Module/Settings/Display.php:226 +#: src/Module/Settings/Display.php:328 +msgid "Link preview mode" +msgstr "Vorschau Modus für Links" + +#: src/Module/Settings/Display.php:328 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "Aussehen der Linkvorschau, die zu jedem Beitrag mit einem Link hinzugefügt wird." + +#: src/Module/Settings/Display.php:333 +msgid "Bookmark" +msgstr "Lesezeichen" + +#: src/Module/Settings/Display.php:335 +msgid "" +"Enable timelines that you want to see in the channels widget. Bookmark " +"timelines that you want to see in the top menu." +msgstr "Aktiviere die Timelines, die Sie im Kanäle-Widget sehen möchten. Setze ein Lesezeichen für Timelines, die du im oberen Menü sehen willst." + +#: src/Module/Settings/Display.php:337 +msgid "Channel languages:" +msgstr "Channel Spachen:" + +#: src/Module/Settings/Display.php:337 +msgid "Select all languages that you want to see in your channels." +msgstr "Wähle alle Sprachen aus, die du in deinen Kanälen sehen willst." + +#: src/Module/Settings/Display.php:339 msgid "Beginning of week:" msgstr "Wochenbeginn:" -#: src/Module/Settings/Profile/Index.php:83 -msgid "Profile Name is required." -msgstr "Profilname ist erforderlich." +#: src/Module/Settings/Display.php:340 +msgid "Default calendar view:" +msgstr "Standard-Kalenderansicht:" -#: src/Module/Settings/Profile/Index.php:131 +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "Zusätzliche Features" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Verbundene Programme" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "Autorisierung entziehen" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "Der Anzeigename ist erforderlich." + +#: src/Module/Settings/Profile/Index.php:167 msgid "Profile couldn't be updated." msgstr "Das Profil konnte nicht aktualisiert werden." -#: src/Module/Settings/Profile/Index.php:172 -#: src/Module/Settings/Profile/Index.php:192 +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 msgid "Label:" msgstr "Bezeichnung:" -#: src/Module/Settings/Profile/Index.php:173 -#: src/Module/Settings/Profile/Index.php:193 +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 msgid "Value:" msgstr "Wert:" -#: src/Module/Settings/Profile/Index.php:183 -#: src/Module/Settings/Profile/Index.php:203 +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 msgid "Field Permissions" msgstr "Berechtigungen des Felds" -#: src/Module/Settings/Profile/Index.php:184 -#: src/Module/Settings/Profile/Index.php:204 +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 msgid "(click to open/close)" msgstr "(klicke zum Öffnen/Schließen)" -#: src/Module/Settings/Profile/Index.php:190 +#: src/Module/Settings/Profile/Index.php:224 msgid "Add a new profile field" msgstr "Neues Profilfeld hinzufügen" -#: src/Module/Settings/Profile/Index.php:220 +#: src/Module/Settings/Profile/Index.php:247 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." +msgstr "Die Homepage ist verifiziert. Ein rel=\"me\" Link zurück auf dein Friendica Profil wurde gefunden." + +#: src/Module/Settings/Profile/Index.php:249 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "Um deine Homepage zu verifizieren, füge einen rel=\"me\" Link auf der Seite hinzu, der auf dein Profil mit der URL (%s) verweist." + +#: src/Module/Settings/Profile/Index.php:255 msgid "Profile Actions" msgstr "Profilaktionen" -#: src/Module/Settings/Profile/Index.php:221 +#: src/Module/Settings/Profile/Index.php:256 msgid "Edit Profile Details" msgstr "Profil bearbeiten" -#: src/Module/Settings/Profile/Index.php:223 +#: src/Module/Settings/Profile/Index.php:258 msgid "Change Profile Photo" msgstr "Profilbild ändern" -#: src/Module/Settings/Profile/Index.php:228 +#: src/Module/Settings/Profile/Index.php:261 msgid "Profile picture" msgstr "Profilbild" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:262 msgid "Location" msgstr "Wohnort" -#: src/Module/Settings/Profile/Index.php:230 src/Util/Temporal.php:95 -#: src/Util/Temporal.php:97 +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 msgid "Miscellaneous" msgstr "Verschiedenes" -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:264 msgid "Custom Profile Fields" msgstr "Benutzerdefinierte Profilfelder" -#: src/Module/Settings/Profile/Index.php:233 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 msgid "Upload Profile Photo" msgstr "Profilbild hochladen" -#: src/Module/Settings/Profile/Index.php:237 -msgid "Display name:" -msgstr "Anzeigename:" - -#: src/Module/Settings/Profile/Index.php:240 -msgid "Street Address:" -msgstr "Adresse:" - -#: src/Module/Settings/Profile/Index.php:241 -msgid "Locality/City:" -msgstr "Wohnort:" - -#: src/Module/Settings/Profile/Index.php:242 -msgid "Region/State:" -msgstr "Region/Bundesstaat:" - -#: src/Module/Settings/Profile/Index.php:243 -msgid "Postal/Zip Code:" -msgstr "Postleitzahl:" - -#: src/Module/Settings/Profile/Index.php:244 -msgid "Country:" -msgstr "Land:" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "XMPP (Jabber) address:" -msgstr "XMPP (Jabber) Adresse" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "" -"The XMPP address will be published so that people can follow you there." -msgstr "Die XMPP Adresse wird veröffentlicht, damit man dort mit dir kommunizieren kann." - -#: src/Module/Settings/Profile/Index.php:247 -msgid "Matrix (Element) address:" -msgstr "Matrix (Element) Adresse:" - -#: src/Module/Settings/Profile/Index.php:247 -msgid "" -"The Matrix address will be published so that people can follow you there." -msgstr "Die Matrix Adresse wird veröffentlicht, damit man dort mit dir kommunizieren kann." - -#: src/Module/Settings/Profile/Index.php:248 -msgid "Homepage URL:" -msgstr "Adresse der Homepage:" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "Public Keywords:" -msgstr "Öffentliche Schlüsselwörter:" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "Private Keywords:" -msgstr "Private Schlüsselwörter:" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)" - -#: src/Module/Settings/Profile/Index.php:251 +#: src/Module/Settings/Profile/Index.php:266 #, 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 "

    Die benutzerdefinierten Felder erscheinen auf deiner Profil-Seite

    .\n\n

    BBCode kann verwendet werden

    \n

    Die Reihenfolge der Felder kann durch Ziehen des Feld-Titels mit der Maus angepasst werden.

    \n

    Wird die Bezeichnung des Felds geleert, wird das Feld beim Speichern aus dem Profil entfernt.

    \n

    Nicht öffentliche Felder können nur von den ausgewählten Friendica Kontakte gesehen werden.

    " +"\t\t\t\t

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

    " +msgstr "

    Die benutzerdefinierten Felder erscheinen auf deiner Profil-Seite

    .\n\n

    BBCode kann verwendet werden

    \n

    Die Reihenfolge der Felder kann durch Ziehen des Feld-Titels mit der Maus angepasst werden.

    \n

    Wird die Bezeichnung des Felds geleert, wird das Feld beim Speichern aus dem Profil entfernt.

    \n

    Nicht öffentliche Felder können nur von den ausgewählten Friendica Circles gesehen werden.

    " + +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "Adresse:" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "Wohnort:" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "Region/Bundesstaat:" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "Postleitzahl:" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "Land:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "XMPP (Jabber) Adresse" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "Die XMPP Adresse wird veröffentlicht, damit man dort mit dir kommunizieren kann." + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "Matrix (Element) Adresse:" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "Die Matrix Adresse wird veröffentlicht, damit man dort mit dir kommunizieren kann." + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "Adresse der Homepage:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "Öffentliche Schlüsselwörter:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "Private Schlüsselwörter:" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)" #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:101 +#: src/Module/Settings/Profile/Photo/Index.php:102 #, php-format msgid "Image size reduction [%s] failed." msgstr "Verkleinern der Bildgröße von [%s] scheiterte." @@ -9778,114 +10696,195 @@ msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt we msgid "Use Image As Is" msgstr "Bild wie es ist verwenden" -#: src/Module/Settings/Profile/Photo/Index.php:45 +#: src/Module/Settings/Profile/Photo/Index.php:46 msgid "Missing uploaded image." msgstr "Hochgeladenes Bild nicht gefunden." -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Profile Picture Settings" msgstr "Einstellungen zum Profilbild" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Current Profile Picture" msgstr "Aktuelles Profilbild" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload Profile Picture" msgstr "Profilbild aktualisieren" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:128 msgid "Upload Picture:" msgstr "Bild hochladen" -#: src/Module/Settings/Profile/Photo/Index.php:132 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "or" msgstr "oder" -#: src/Module/Settings/Profile/Photo/Index.php:134 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "skip this step" msgstr "diesen Schritt überspringen" -#: src/Module/Settings/Profile/Photo/Index.php:136 +#: src/Module/Settings/Profile/Photo/Index.php:137 msgid "select a photo from your photo albums" msgstr "wähle ein Foto aus deinen Fotoalben" -#: src/Module/Settings/TwoFactor/AppSpecific.php:65 -#: src/Module/Settings/TwoFactor/Recovery.php:63 -#: src/Module/Settings/TwoFactor/Trusted.php:66 -#: src/Module/Settings/TwoFactor/Verify.php:68 +#: src/Module/Settings/RemoveMe.php:76 +msgid "" +"There was a validation error, please make sure you're logged in with the " +"account you want to remove and try again." +msgstr "Es gab einen Überprüfungsfehler. Bitte vergewisser dich, dass du mit dem Konto, das du entfernen möchtest angemeldet bist, und versuche es erneut." + +#: src/Module/Settings/RemoveMe.php:76 +msgid "If this error persists, please contact your administrator." +msgstr "Wenn dieser Fehler weiterhin besteht, wende dich bitte an den Administrator deiner Instanz." + +#: src/Module/Settings/RemoveMe.php:90 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[Friendica-Systembenachrichtigung]" + +#: src/Module/Settings/RemoveMe.php:90 +msgid "User deleted their account" +msgstr "Gelöschter Nutzeraccount" + +#: src/Module/Settings/RemoveMe.php:91 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "Ein Nutzer deiner Friendica-Instanz hat seinen Account gelöscht. Bitte stelle sicher, dass dessen Daten aus deinen Backups entfernt werden." + +#: src/Module/Settings/RemoveMe.php:92 +#, php-format +msgid "The user id is %d" +msgstr "Die ID des Users lautet %d" + +#: src/Module/Settings/RemoveMe.php:105 +msgid "Your account has been successfully removed. Bye bye!" +msgstr "Ihr Konto wurde erfolgreich gelöscht. Auf Wiedersehen!" + +#: src/Module/Settings/RemoveMe.php:130 +msgid "Remove My Account" +msgstr "Konto löschen" + +#: src/Module/Settings/RemoveMe.php:131 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen." + +#: src/Module/Settings/RemoveMe.php:136 +msgid "Please enter your password for verification:" +msgstr "Bitte gib dein Passwort zur Verifikation ein:" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "Möchtest du diese Instanz ignorieren?" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "Möchtest du diese Instanz nicht mehr ignorieren?" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "Einstellungen der Remote-Instanz" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "Server URL" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "Einstellungen gespeichert" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "Hier findest du alle Entfernten-Server, gegen die du individuelle Moderationsmaßnahmen ergriffen hast. Eine Liste der Server, die deine Instanz blockiert hat, findest du auf der Informationseite ." + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "Lösche alle deine Einstellungen für die Entfernte-Instanz" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "Einstellungen speichern" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 msgid "Please enter your password to access this page." msgstr "Bitte gib dein Passwort ein, um auf diese Seite zuzugreifen." -#: src/Module/Settings/TwoFactor/AppSpecific.php:83 +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 msgid "App-specific password generation failed: The description is empty." msgstr "Die Erzeugung des App spezifischen Passworts ist fehlgeschlagen. Die Beschreibung ist leer." -#: src/Module/Settings/TwoFactor/AppSpecific.php:86 +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 msgid "" "App-specific password generation failed: This description already exists." msgstr "Die Erzeugung des App spezifischen Passworts ist fehlgeschlagen. Die Beschreibung existiert bereits." -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 msgid "New app-specific password generated." msgstr "Neues App spezifisches Passwort erzeugt." -#: src/Module/Settings/TwoFactor/AppSpecific.php:96 +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 msgid "App-specific passwords successfully revoked." msgstr "App spezifische Passwörter erfolgreich widerrufen." -#: src/Module/Settings/TwoFactor/AppSpecific.php:106 +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 msgid "App-specific password successfully revoked." msgstr "App spezifisches Passwort erfolgreich widerrufen." -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 msgid "Two-factor app-specific passwords" msgstr "Zwei-Faktor App spezifische Passwörter." -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 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 "

    App spezifische Passwörter sind zufällig generierte Passwörter die anstelle des regulären Passworts zur Anmeldung mit Client Anwendungen verwendet werden, wenn diese Anwendungen die Zwei-Faktor-Authentifizierung nicht unterstützen.

    " -#: src/Module/Settings/TwoFactor/AppSpecific.php:130 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Das neue App spezifische Passwort muss jetzt übertragen werden. Später wirst du es nicht mehr einsehen können!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 -msgid "Description" -msgstr "Beschreibung" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 msgid "Last Used" msgstr "Zuletzt verwendet" -#: src/Module/Settings/TwoFactor/AppSpecific.php:135 +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 msgid "Revoke" msgstr "Widerrufen" -#: src/Module/Settings/TwoFactor/AppSpecific.php:136 +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Revoke All" msgstr "Alle widerrufen" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 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 "Wenn du eine neues App spezifisches Passwort erstellst, musst du es sofort verwenden. Es wird dir nur ein einziges Mal nach der Erstellung angezeigt." -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 msgid "Generate new app-specific password" msgstr "Neues App spezifisches Passwort erstellen" -#: src/Module/Settings/TwoFactor/AppSpecific.php:141 +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa auf meinem Fairphone 2" -#: src/Module/Settings/TwoFactor/AppSpecific.php:142 +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 msgid "Generate" msgstr "Erstellen" @@ -9981,15 +10980,15 @@ msgstr "Vertrauenswürdige Browser verwalten" msgid "Finish app configuration" msgstr "Beende die App-Konfiguration" -#: src/Module/Settings/TwoFactor/Recovery.php:79 +#: src/Module/Settings/TwoFactor/Recovery.php:80 msgid "New recovery codes successfully generated." msgstr "Neue Wiederherstellungscodes erfolgreich generiert." -#: src/Module/Settings/TwoFactor/Recovery.php:105 +#: src/Module/Settings/TwoFactor/Recovery.php:106 msgid "Two-factor recovery codes" msgstr "Zwei-Faktor-Wiederherstellungscodes" -#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Recovery.php:108 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 " @@ -9998,68 +10997,68 @@ msgid "" "account.

    " msgstr "

    Wiederherstellungscodes können verwendet werden, um auf dein Konto zuzugreifen, falls du den Zugriff auf dein Gerät verlieren und keine Zwei-Faktor-Authentifizierungscodes erhalten kannst.

    Bewahre diese an einem sicheren Ort auf! Wenn du dein Gerät verlierst und nicht über die Wiederherstellungscodes verfügst, verlierst du den Zugriff auf dein Konto.

    " -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:110 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Wenn du neue Wiederherstellungscodes generierst, mußt du die neuen Codes kopieren. Deine alten Codes funktionieren nicht mehr." -#: src/Module/Settings/TwoFactor/Recovery.php:110 +#: src/Module/Settings/TwoFactor/Recovery.php:111 msgid "Generate new recovery codes" msgstr "Generiere neue Wiederherstellungscodes" -#: src/Module/Settings/TwoFactor/Recovery.php:112 +#: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "Next: Verification" msgstr "Weiter: Überprüfung" -#: src/Module/Settings/TwoFactor/Trusted.php:83 +#: src/Module/Settings/TwoFactor/Trusted.php:84 msgid "Trusted browsers successfully removed." msgstr "Die vertrauenswürdigen Browser wurden erfolgreich entfernt." -#: src/Module/Settings/TwoFactor/Trusted.php:93 +#: src/Module/Settings/TwoFactor/Trusted.php:94 msgid "Trusted browser successfully removed." msgstr "Der vertrauenswürdige Browser erfolgreich entfernt." -#: src/Module/Settings/TwoFactor/Trusted.php:135 +#: src/Module/Settings/TwoFactor/Trusted.php:136 msgid "Two-factor Trusted Browsers" msgstr "Zwei-Faktor vertrauenswürdige Browser" -#: src/Module/Settings/TwoFactor/Trusted.php:136 +#: src/Module/Settings/TwoFactor/Trusted.php:137 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 "Vertrauenswürdige Browser sind spezielle Browser für die du entscheidest, dass die Zwei-Faktor Authentifikation übersprungen werden soll. Bitte verwende diese Option sparsam, da sie die Vorteile der 2FA aufhebt." -#: src/Module/Settings/TwoFactor/Trusted.php:137 +#: src/Module/Settings/TwoFactor/Trusted.php:138 msgid "Device" msgstr "Gerät" -#: src/Module/Settings/TwoFactor/Trusted.php:138 +#: src/Module/Settings/TwoFactor/Trusted.php:139 msgid "OS" msgstr "OS" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:141 msgid "Trusted" msgstr "Vertrauenswürdig" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:142 msgid "Created At" msgstr "Erstellt am" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:143 msgid "Last Use" msgstr "Zuletzt verwendet" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:145 msgid "Remove All" msgstr "Alle entfernen" -#: src/Module/Settings/TwoFactor/Verify.php:90 +#: src/Module/Settings/TwoFactor/Verify.php:91 msgid "Two-factor authentication successfully activated." msgstr "Zwei-Faktor-Authentifizierung erfolgreich aktiviert." -#: src/Module/Settings/TwoFactor/Verify.php:124 +#: src/Module/Settings/TwoFactor/Verify.php:125 #, php-format msgid "" "

    Or you can submit the authentication settings manually:

    \n" @@ -10079,68 +11078,105 @@ msgid "" "" msgstr "

    Oder du kannst die Authentifizierungseinstellungen manuell übermitteln:

    \n
    \n\tVerursacher\n\t
    %s
    \n\t
    Kontoname
    \n\t
    %s
    \n\t
    Geheimer Schlüssel
    \n\t
    %s
    \n\t
    Typ
    \n\t
    Zeitbasiert
    \n\t
    Anzahl an Ziffern
    \n\t
    6
    \n\t
    Hashing-Algorithmus
    \n\t
    SHA-1
    \n
    " -#: src/Module/Settings/TwoFactor/Verify.php:144 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Two-factor code verification" msgstr "Überprüfung des Zwei-Faktor-Codes" -#: src/Module/Settings/TwoFactor/Verify.php:146 +#: src/Module/Settings/TwoFactor/Verify.php:147 msgid "" "

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

    " msgstr "

    Bitte scanne diesen QR-Code mit deiner Authentifikator-App und übermittele den bereitgestellten Code.

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

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

    %s

    " msgstr "

    Oder du kannst die folgende URL in deinem Mobilgerät öffnen:

    %s

    " -#: src/Module/Settings/TwoFactor/Verify.php:155 +#: src/Module/Settings/TwoFactor/Verify.php:156 msgid "Verify code and enable two-factor authentication" msgstr "Überprüfe den Code und aktiviere die Zwei-Faktor-Authentifizierung" -#: src/Module/Settings/UserExport.php:94 +#: src/Module/Settings/UserExport.php:90 msgid "Export account" msgstr "Account exportieren" -#: src/Module/Settings/UserExport.php:94 +#: src/Module/Settings/UserExport.php:90 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 "Exportiere Deine Account-Informationen und Kontakte. Verwende dies, um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen." -#: src/Module/Settings/UserExport.php:95 +#: src/Module/Settings/UserExport.php:91 msgid "Export all" msgstr "Alles exportieren" -#: src/Module/Settings/UserExport.php:95 +#: src/Module/Settings/UserExport.php:91 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 "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Photos werden nicht exportiert)." -#: src/Module/Settings/UserExport.php:96 +#: src/Module/Settings/UserExport.php:92 msgid "Export Contacts to CSV" msgstr "Kontakte nach CSV exportieren" -#: src/Module/Settings/UserExport.php:96 +#: src/Module/Settings/UserExport.php:92 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Exportiert die Liste der Nutzerkonten denen du folgst in eine CSV Datei. Das Format ist z.B. zu Mastodon kompatibel." -#: src/Module/Special/HTTPException.php:51 +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "Der Beitrag der obersten Ebene ist nicht sichtbar." + +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "Der Beitrag auf der obersten Ebene wurde gelöscht." + +#: src/Module/Special/DisplayNotFound.php:37 +msgid "" +"This node has blocked the top-level author or the author of the shared post." +msgstr "Diese Instanz hat den Top-Level-Autor oder den Autor des freigegebenen Beitrags gesperrt." + +#: src/Module/Special/DisplayNotFound.php:38 +msgid "" +"You have ignored or blocked the top-level author or the author of the shared" +" post." +msgstr "Du hast den Autor der obersten Ebene oder den Autor des freigegebenen Beitrags ignoriert oder blockiert." + +#: src/Module/Special/DisplayNotFound.php:39 +msgid "" +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "Du hast die Instanz des übergeordneten Autors oder die Instanz des Autors des freigegebenen Beitrags ignoriert." + +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "Konversation nicht gefunden" + +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "Leider ist die gewünschte Konversation für dich nicht verfügbar." + +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "Mögliche Gründe sind:" + +#: src/Module/Special/HTTPException.php:78 msgid "Stack trace:" msgstr "Stack trace:" -#: src/Module/Special/HTTPException.php:55 +#: src/Module/Special/HTTPException.php:83 #, php-format msgid "Exception thrown in %s:%d" msgstr "Exception thrown in %s:%d" -#: src/Module/Tos.php:57 src/Module/Tos.php:91 +#: src/Module/Tos.php:58 src/Module/Tos.php:107 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" @@ -10153,28 +11189,130 @@ msgid "" "settings, it is not necessary for communication." msgstr "Zum Zwecke der Registrierung und um die Kommunikation zwischen dem Nutzer und seinen Kontakten zu gewährleisten, muß der Nutzer einen Namen (auch Pseudonym) und einen Nutzernamen (Spitzname) sowie eine funktionierende E-Mail-Adresse angeben. Der Name ist auf der Profilseite für alle Nutzer sichtbar, auch wenn die Profildetails nicht angezeigt werden.\nDie E-Mail-Adresse wird nur zur Benachrichtigung des Nutzers verwendet, sie wird nirgends angezeigt. Die Anzeige des Nutzerkontos im Server-Verzeichnis bzw. dem weltweiten Verzeichnis erfolgt gemäß den Einstellungen des Nutzers, sie ist zur Kommunikation nicht zwingend notwendig." -#: src/Module/Tos.php:58 src/Module/Tos.php:92 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 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 "Diese Daten sind für die Kommunikation notwendig und werden an die Knoten der Kommunikationspartner übermittelt und dort gespeichert. Nutzer können weitere, private Angaben machen, die ebenfalls an die verwendeten Server der Kommunikationspartner übermittelt werden können." -#: src/Module/Tos.php:59 src/Module/Tos.php:93 +#: src/Module/Tos.php:60 src/Module/Tos.php:109 #, 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 "Angemeldete Nutzer können ihre Nutzerdaten jederzeit von den Kontoeinstellungen aus exportieren. Wenn ein Nutzer wünscht das Nutzerkonto zu löschen, so ist dies jederzeit unter %1$s/removeme möglich. Die Löschung des Nutzerkontos ist permanent. Die Löschung der Daten wird auch von den Knoten der Kommunikationspartner angefordert." +"href=\"%1$s/settings/removeme\">%1$s/settings/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 "Angemeldete Nutzer können ihre Nutzerdaten jederzeit von den Kontoeinstellungen aus exportieren. Wenn ein Nutzer wünscht das Nutzerkonto zu löschen, so ist dies jederzeit unter %1$s/settings/removeme möglich. Die Löschung des Nutzerkontos ist permanent. Die Löschung der Daten wird auch von den Knoten der Kommunikationspartner angefordert." -#: src/Module/Tos.php:62 src/Module/Tos.php:90 +#: src/Module/Tos.php:63 src/Module/Tos.php:106 msgid "Privacy Statement" msgstr "Datenschutzerklärung" +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "Regeln" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "Der Parameter uri_id fehlt." + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "Der angeforderte Beitrag existiert nicht oder wurde gelöscht." + +#: src/Module/User/Delegation.php:146 +#, php-format +msgid "You are now logged in as %s" +msgstr "Du bist jetzt als %s angemeldet" + +#: src/Module/User/Delegation.php:185 +msgid "Switch between your accounts" +msgstr "Wechsle deine Konten" + +#: src/Module/User/Delegation.php:186 +msgid "Manage your accounts" +msgstr "Verwalte deine Konten" + +#: src/Module/User/Delegation.php:187 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast." + +#: src/Module/User/Delegation.php:188 +msgid "Select an identity to manage: " +msgstr "Wähle eine Identität zum Verwalten aus: " + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "Auf geschlossenen Servern können ausschließlich die Administratoren Benutzerkonten importieren." + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "Account umziehen" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "Du kannst einen Account von einem anderen Friendica Server importieren." + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen, deine Kontakte darüber zu informieren, dass du hierher umgezogen bist." + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus-Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren" + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "Account-Datei" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "Fehler beim Verarbeiten der Account-Datei" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica-Account-Datei?" + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Nutzer '%s' existiert bereits auf diesem Server!" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "Fehler beim Anlegen des Nutzer-Accounts aufgetreten" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d Kontakt nicht importiert" +msgstr[1] "%d Kontakte nicht importiert" + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "Fehler beim Anlegen des Nutzer-Profils" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden" + #: src/Module/Welcome.php:44 msgid "Welcome to Friendica" msgstr "Willkommen bei Friendica" @@ -10305,15 +11443,15 @@ msgid "" msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden." #: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "Gruppiere deine Kontakte" +msgid "Add Your Contacts To Circle" +msgstr "Kontakte zum Circle hinzufügen" #: 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 "Sobald du einige Kontakte gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren." +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "Sobald du einige Freunde gefunden hast, kannst du diese in der Seitenleiste deiner Kontaktseite in private Circles einteilen und dann mit jedem Circle auf deiner Netzwerkseite privat interagieren." #: src/Module/Welcome.php:80 msgid "Why Aren't My Posts Public?" @@ -10340,11 +11478,11 @@ msgid "" " features and resources." msgstr "Unsere Hilfe-Seiten können herangezogen werden, um weitere Einzelheiten zu anderen Programm-Features zu erhalten." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:138 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 msgid "{0} wants to follow you" msgstr "{0} möchte dir folgen" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:140 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 msgid "{0} has started following you" msgstr "{0} folgt dir jetzt" @@ -10389,15 +11527,15 @@ msgstr "%s hat %ss Beitrag kommentiert" msgid "%s created a new post" msgstr "%s hat einen neuen Beitrag erstellt" -#: src/Navigation/Notifications/Factory/Introduction.php:137 +#: src/Navigation/Notifications/Factory/Introduction.php:133 msgid "Friend Suggestion" msgstr "Kontaktvorschlag" -#: src/Navigation/Notifications/Factory/Introduction.php:163 +#: src/Navigation/Notifications/Factory/Introduction.php:159 msgid "Friend/Connect Request" msgstr "Kontakt-/Freundschaftsanfrage" -#: src/Navigation/Notifications/Factory/Introduction.php:163 +#: src/Navigation/Notifications/Factory/Introduction.php:159 msgid "New Follower" msgstr "Neuer Bewunderer" @@ -10437,6 +11575,7 @@ msgid "%1$s shared your comment %2$s" msgstr "%1$s hat deinen Kommentar %2$s geteilt" #: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 #, php-format msgid "%1$s shared your post %2$s" msgstr "%1$s hat deinen Beitrag %2$s geteilt" @@ -10526,189 +11665,189 @@ msgid "%1$s commented on your thread %2$s" msgstr "%1$s hat in deiner Unterhaltung %2$s kommentiert" #: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:721 +#: src/Navigation/Notifications/Repository/Notify.php:752 msgid "[Friendica:Notify]" msgstr "[Friendica Meldung]" -#: src/Navigation/Notifications/Repository/Notify.php:289 +#: src/Navigation/Notifications/Repository/Notify.php:293 #, php-format msgid "%s New mail received at %s" msgstr "%sNeue Nachricht auf %s empfangen" -#: src/Navigation/Notifications/Repository/Notify.php:291 +#: src/Navigation/Notifications/Repository/Notify.php:295 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s hat dir eine neue, private Nachricht auf %2$s geschickt." -#: src/Navigation/Notifications/Repository/Notify.php:292 +#: src/Navigation/Notifications/Repository/Notify.php:296 msgid "a private message" msgstr "eine private Nachricht" -#: src/Navigation/Notifications/Repository/Notify.php:292 +#: src/Navigation/Notifications/Repository/Notify.php:296 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s schickte dir %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:294 +#: src/Navigation/Notifications/Repository/Notify.php:298 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten." -#: src/Navigation/Notifications/Repository/Notify.php:324 +#: src/Navigation/Notifications/Repository/Notify.php:328 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s kommentierte %2$s's %3$s%4$s" -#: src/Navigation/Notifications/Repository/Notify.php:329 +#: src/Navigation/Notifications/Repository/Notify.php:333 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s kommentierte auf (%2$s) %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:337 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s hat den eigenen %2$s %3$s kommentiert" -#: src/Navigation/Notifications/Repository/Notify.php:337 -#: src/Navigation/Notifications/Repository/Notify.php:755 +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$sKommentar von %3$s auf Unterhaltung %2$d" -#: src/Navigation/Notifications/Repository/Notify.php:339 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s hat einen Beitrag kommentiert, dem du folgst." -#: src/Navigation/Notifications/Repository/Notify.php:343 -#: src/Navigation/Notifications/Repository/Notify.php:358 -#: src/Navigation/Notifications/Repository/Notify.php:770 +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren." -#: src/Navigation/Notifications/Repository/Notify.php:350 +#: src/Navigation/Notifications/Repository/Notify.php:354 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s%s hat auf deine Pinnwand gepostet" -#: src/Navigation/Notifications/Repository/Notify.php:352 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s schrieb um %2$s auf Deine Pinnwand" -#: src/Navigation/Notifications/Repository/Notify.php:353 +#: src/Navigation/Notifications/Repository/Notify.php:357 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet" -#: src/Navigation/Notifications/Repository/Notify.php:366 +#: src/Navigation/Notifications/Repository/Notify.php:370 #, php-format msgid "%s Introduction received" msgstr "%sVorstellung erhalten" -#: src/Navigation/Notifications/Repository/Notify.php:368 +#: src/Navigation/Notifications/Repository/Notify.php:372 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten" -#: src/Navigation/Notifications/Repository/Notify.php:369 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten." -#: src/Navigation/Notifications/Repository/Notify.php:374 -#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 #, php-format msgid "You may visit their profile at %s" msgstr "Hier kannst du das Profil betrachten: %s" -#: src/Navigation/Notifications/Repository/Notify.php:376 +#: src/Navigation/Notifications/Repository/Notify.php:380 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen." -#: src/Navigation/Notifications/Repository/Notify.php:383 +#: src/Navigation/Notifications/Repository/Notify.php:387 #, php-format msgid "%s A new person is sharing with you" msgstr "%sEine neue Person teilt nun mit dir" -#: src/Navigation/Notifications/Repository/Notify.php:385 -#: src/Navigation/Notifications/Repository/Notify.php:386 +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s teilt mit dir auf %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:393 +#: src/Navigation/Notifications/Repository/Notify.php:397 #, php-format msgid "%s You have a new follower" msgstr "%sDu hast einen neuen Kontakt" -#: src/Navigation/Notifications/Repository/Notify.php:395 -#: src/Navigation/Notifications/Repository/Notify.php:396 +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:409 +#: src/Navigation/Notifications/Repository/Notify.php:413 #, php-format msgid "%s Friend suggestion received" msgstr "%sKontaktvorschlag erhalten" -#: src/Navigation/Notifications/Repository/Notify.php:411 +#: src/Navigation/Notifications/Repository/Notify.php:415 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Du hast einen Kontakt-Vorschlag von '%1$s' auf %2$s erhalten" -#: src/Navigation/Notifications/Repository/Notify.php:412 +#: src/Navigation/Notifications/Repository/Notify.php:416 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Du hast einen [url=%1$s]Kontakt-Vorschlag[/url] %2$s von %3$s erhalten." -#: src/Navigation/Notifications/Repository/Notify.php:418 +#: src/Navigation/Notifications/Repository/Notify.php:422 msgid "Name:" msgstr "Name:" -#: src/Navigation/Notifications/Repository/Notify.php:419 +#: src/Navigation/Notifications/Repository/Notify.php:423 msgid "Photo:" msgstr "Foto:" -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:426 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen." -#: src/Navigation/Notifications/Repository/Notify.php:430 -#: src/Navigation/Notifications/Repository/Notify.php:445 +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 #, php-format msgid "%s Connection accepted" msgstr "%sKontaktanfrage bestätigt" -#: src/Navigation/Notifications/Repository/Notify.php:432 -#: src/Navigation/Notifications/Repository/Notify.php:447 +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' hat Deine Kontaktanfrage auf %2$s bestätigt" -#: src/Navigation/Notifications/Repository/Notify.php:433 -#: src/Navigation/Notifications/Repository/Notify.php:448 +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert." -#: src/Navigation/Notifications/Repository/Notify.php:438 +#: src/Navigation/Notifications/Repository/Notify.php:442 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und E-Mails ohne Einschränkungen austauschen." -#: src/Navigation/Notifications/Repository/Notify.php:440 +#: src/Navigation/Notifications/Repository/Notify.php:444 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst." -#: src/Navigation/Notifications/Repository/Notify.php:453 +#: src/Navigation/Notifications/Repository/Notify.php:457 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -10717,33 +11856,34 @@ msgid "" "automatically." msgstr "'%1$s' hat sich entschieden dich als Fan zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen." -#: src/Navigation/Notifications/Repository/Notify.php:455 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. " -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:461 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst." -#: src/Navigation/Notifications/Repository/Notify.php:467 +#: src/Navigation/Notifications/Repository/Notify.php:471 msgid "registration request" msgstr "Registrierungsanfrage" -#: src/Navigation/Notifications/Repository/Notify.php:469 +#: src/Navigation/Notifications/Repository/Notify.php:473 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten" -#: src/Navigation/Notifications/Repository/Notify.php:470 +#: src/Navigation/Notifications/Repository/Notify.php:474 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten." -#: src/Navigation/Notifications/Repository/Notify.php:475 +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 #, php-format msgid "" "Full Name:\t%s\n" @@ -10751,21 +11891,50 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Kompletter Name: %s\nURL der Seite: %s\nLogin Name: %s(%s)" -#: src/Navigation/Notifications/Repository/Notify.php:481 +#: src/Navigation/Notifications/Repository/Notify.php:485 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Bitte besuche %s, um die Anfrage zu bearbeiten." -#: src/Navigation/Notifications/Repository/Notify.php:749 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "Neue Registrierung" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "Du hast eine neue Registrierung von %1$s auf %2$s erhalten." + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "Du hast eine [url=%1$s]neue Registrierung[/url] von %2$s erhalten." + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "Bitte rufe %s auf, um dir die Registrierung zu sichten." + +#: src/Navigation/Notifications/Repository/Notify.php:780 #, php-format msgid "%s %s tagged you" msgstr "%s %s hat dich erwähnt" -#: src/Navigation/Notifications/Repository/Notify.php:752 +#: src/Navigation/Notifications/Repository/Notify.php:783 #, php-format msgid "%s %s shared a new post" msgstr "%s%shat einen Beitrag geteilt" +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "%1$s%2$s mag deinen Beitrag #%3$d" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "%1$s%2$s mag deinen Kommentar zu #%3$d" + #: src/Object/EMail/ItemCCEMail.php:42 #, php-format msgid "" @@ -10789,223 +11958,298 @@ msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den msgid "%s posted an update." msgstr "%s hat ein Update veröffentlicht." -#: src/Object/Post.php:135 +#: src/Object/Post.php:138 msgid "Private Message" msgstr "Private Nachricht" -#: src/Object/Post.php:139 +#: src/Object/Post.php:142 msgid "Public Message" msgstr "Öffentlicher Beitrag" -#: src/Object/Post.php:143 +#: src/Object/Post.php:146 msgid "Unlisted Message" msgstr "Nicht gelisteter Beitrag" -#: src/Object/Post.php:178 +#: src/Object/Post.php:182 msgid "This entry was edited" msgstr "Dieser Beitrag wurde bearbeitet." -#: src/Object/Post.php:206 +#: src/Object/Post.php:210 msgid "Connector Message" msgstr "Connector Nachricht" -#: src/Object/Post.php:221 src/Object/Post.php:223 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Bearbeiten" -#: src/Object/Post.php:247 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "Global löschen" -#: src/Object/Post.php:247 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "Lokal entfernen" -#: src/Object/Post.php:263 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "Blockiere %s" -#: src/Object/Post.php:268 +#: src/Object/Post.php:274 +#, php-format +msgid "Ignore %s" +msgstr "Ignoriere %s" + +#: src/Object/Post.php:279 +#, php-format +msgid "Collapse %s" +msgstr "Verberge %s" + +#: src/Object/Post.php:283 +msgid "Report post" +msgstr "Beitrag melden" + +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "In Ordner speichern" -#: src/Object/Post.php:303 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "Ich werde teilnehmen" -#: src/Object/Post.php:303 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "Ich werde nicht teilnehmen" -#: src/Object/Post.php:303 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "Ich werde eventuell teilnehmen" -#: src/Object/Post.php:333 +#: src/Object/Post.php:364 msgid "Ignore thread" msgstr "Thread ignorieren" -#: src/Object/Post.php:334 +#: src/Object/Post.php:365 msgid "Unignore thread" msgstr "Thread nicht mehr ignorieren" -#: src/Object/Post.php:335 +#: src/Object/Post.php:366 msgid "Toggle ignore status" msgstr "Ignoriert-Status ein-/ausschalten" -#: src/Object/Post.php:345 +#: src/Object/Post.php:376 msgid "Add star" msgstr "Markieren" -#: src/Object/Post.php:346 +#: src/Object/Post.php:377 msgid "Remove star" msgstr "Markierung entfernen" -#: src/Object/Post.php:347 +#: src/Object/Post.php:378 msgid "Toggle star status" msgstr "Markierung umschalten" -#: src/Object/Post.php:358 +#: src/Object/Post.php:389 msgid "Pin" msgstr "Anheften" -#: src/Object/Post.php:359 +#: src/Object/Post.php:390 msgid "Unpin" msgstr "Losmachen" -#: src/Object/Post.php:360 +#: src/Object/Post.php:391 msgid "Toggle pin status" msgstr "Angeheftet Status ändern" -#: src/Object/Post.php:363 +#: src/Object/Post.php:394 msgid "Pinned" msgstr "Angeheftet" -#: src/Object/Post.php:368 +#: src/Object/Post.php:399 msgid "Add tag" msgstr "Tag hinzufügen" -#: src/Object/Post.php:381 +#: src/Object/Post.php:412 msgid "Quote share this" msgstr "Teile und zitiere dies" -#: src/Object/Post.php:381 +#: src/Object/Post.php:412 msgid "Quote Share" msgstr "Zitat teilen" -#: src/Object/Post.php:384 +#: src/Object/Post.php:415 msgid "Reshare this" msgstr "Teile dies" -#: src/Object/Post.php:384 +#: src/Object/Post.php:415 msgid "Reshare" msgstr "Teilen" -#: src/Object/Post.php:385 +#: src/Object/Post.php:416 msgid "Cancel your Reshare" msgstr "Teilen aufheben" -#: src/Object/Post.php:385 +#: src/Object/Post.php:416 msgid "Unshare" msgstr "Nicht mehr teilen" -#: src/Object/Post.php:432 +#: src/Object/Post.php:467 #, php-format msgid "%s (Received %s)" msgstr "%s (Empfangen %s)" -#: src/Object/Post.php:437 +#: src/Object/Post.php:473 msgid "Comment this item on your system" msgstr "Kommentiere diesen Beitrag von deinem System aus" -#: src/Object/Post.php:437 +#: src/Object/Post.php:473 msgid "Remote comment" msgstr "Entfernter Kommentar" -#: src/Object/Post.php:458 +#: src/Object/Post.php:495 msgid "Share via ..." msgstr "Teile mit..." -#: src/Object/Post.php:458 +#: src/Object/Post.php:495 msgid "Share via external services" msgstr "Teile mit einem externen Dienst" -#: src/Object/Post.php:487 +#: src/Object/Post.php:502 +msgid "Unknown parent" +msgstr "Unbekannter Ursprungsbeitrag" + +#: src/Object/Post.php:506 +#, php-format +msgid "in reply to %s" +msgstr "Als Antwort auf %s" + +#: src/Object/Post.php:508 +msgid "Parent is probably private or not federated." +msgstr "Der Urspungsbeitrag ist wahrscheinlich privat oder nicht föderiert." + +#: src/Object/Post.php:532 msgid "to" msgstr "zu" -#: src/Object/Post.php:488 +#: src/Object/Post.php:533 msgid "via" msgstr "via" -#: src/Object/Post.php:489 +#: src/Object/Post.php:534 msgid "Wall-to-Wall" msgstr "Wall-to-Wall" -#: src/Object/Post.php:490 +#: src/Object/Post.php:535 msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: src/Object/Post.php:532 +#: src/Object/Post.php:582 #, php-format msgid "Reply to %s" msgstr "Antworte %s" -#: src/Object/Post.php:535 +#: src/Object/Post.php:585 msgid "More" msgstr "Mehr" -#: src/Object/Post.php:553 +#: src/Object/Post.php:604 msgid "Notifier task is pending" msgstr "Die Benachrichtigungsaufgabe ist ausstehend" -#: src/Object/Post.php:554 +#: src/Object/Post.php:605 msgid "Delivery to remote servers is pending" msgstr "Die Auslieferung an Remote-Server steht noch aus" -#: src/Object/Post.php:555 +#: src/Object/Post.php:606 msgid "Delivery to remote servers is underway" msgstr "Die Auslieferung an Remote-Server ist unterwegs" -#: src/Object/Post.php:556 +#: src/Object/Post.php:607 msgid "Delivery to remote servers is mostly done" msgstr "Die Zustellung an Remote-Server ist fast erledigt" -#: src/Object/Post.php:557 +#: src/Object/Post.php:608 msgid "Delivery to remote servers is done" msgstr "Die Zustellung an die Remote-Server ist erledigt" -#: src/Object/Post.php:577 +#: src/Object/Post.php:630 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" -#: src/Object/Post.php:578 +#: src/Object/Post.php:631 msgid "Show more" msgstr "Zeige mehr" -#: src/Object/Post.php:579 +#: src/Object/Post.php:632 msgid "Show fewer" msgstr "Zeige weniger" -#: src/Protocol/OStatus.php:1472 +#: src/Object/Post.php:668 +#, php-format +msgid "Reshared by: %s" +msgstr "Geteilt von: %s" + +#: src/Object/Post.php:673 +#, php-format +msgid "Viewed by: %s" +msgstr "Gesehen von: %s" + +#: src/Object/Post.php:678 +#, php-format +msgid "Liked by: %s" +msgstr "Diese Menschen mögen das: %s" + +#: src/Object/Post.php:683 +#, php-format +msgid "Disliked by: %s" +msgstr "Unbeliebt bei: %s" + +#: src/Object/Post.php:688 +#, php-format +msgid "Attended by: %s" +msgstr "Besucht von: %s" + +#: src/Object/Post.php:693 +#, php-format +msgid "Maybe attended by: %s" +msgstr "Vielleicht besucht von: %s" + +#: src/Object/Post.php:698 +#, php-format +msgid "Not attended by: %s" +msgstr "Nicht besucht von: %s" + +#: src/Object/Post.php:703 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "Reagierte mit %s von: %s" + +#: src/Protocol/ActivityPub/Receiver.php:522 +msgid "Chat" +msgstr "Chat" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "(kein Betreff)" + +#: src/Protocol/OStatus.php:1390 #, php-format msgid "%s is now following %s." msgstr "%s folgt nun %s" -#: src/Protocol/OStatus.php:1473 +#: src/Protocol/OStatus.php:1391 msgid "following" msgstr "folgen" -#: src/Protocol/OStatus.php:1476 +#: src/Protocol/OStatus.php:1394 #, php-format msgid "%s stopped following %s." msgstr "%s hat aufgehört %s, zu folgen" -#: src/Protocol/OStatus.php:1477 +#: src/Protocol/OStatus.php:1395 msgid "stopped following" msgstr "wird nicht mehr gefolgt" @@ -11014,20 +12258,20 @@ msgstr "wird nicht mehr gefolgt" msgid "The folder %s must be writable by webserver." msgstr "Das Verzeichnis %s muss für den Web-Server beschreibbar sein." -#: src/Security/Authentication.php:225 +#: src/Security/Authentication.php:227 msgid "Login failed." msgstr "Anmeldung fehlgeschlagen." -#: src/Security/Authentication.php:270 +#: src/Security/Authentication.php:272 msgid "Login failed. Please check your credentials." msgstr "Anmeldung fehlgeschlagen. Bitte überprüfe deine Angaben." -#: src/Security/Authentication.php:381 +#: src/Security/Authentication.php:391 #, php-format msgid "Welcome %s" msgstr "Willkommen %s" -#: src/Security/Authentication.php:382 +#: src/Security/Authentication.php:392 msgid "Please upload a profile photo." msgstr "Bitte lade ein Profilbild hoch." @@ -11054,81 +12298,77 @@ msgstr "der Administrator von %s" msgid "thanks" msgstr "danke" -#: src/Util/Temporal.php:170 +#: src/Util/Temporal.php:172 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD oder MM-DD" -#: src/Util/Temporal.php:278 +#: src/Util/Temporal.php:280 #, php-format msgid "Time zone: %s Change in Settings" msgstr "Zeitzone: %s Änderbar in den Einstellungen" -#: src/Util/Temporal.php:317 src/Util/Temporal.php:324 +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 msgid "never" msgstr "nie" -#: src/Util/Temporal.php:331 +#: src/Util/Temporal.php:343 msgid "less than a second ago" msgstr "vor weniger als einer Sekunde" -#: src/Util/Temporal.php:340 +#: src/Util/Temporal.php:352 msgid "year" msgstr "Jahr" -#: src/Util/Temporal.php:340 +#: src/Util/Temporal.php:352 msgid "years" msgstr "Jahre" -#: src/Util/Temporal.php:341 +#: src/Util/Temporal.php:353 msgid "months" msgstr "Monate" -#: src/Util/Temporal.php:342 +#: src/Util/Temporal.php:354 msgid "weeks" msgstr "Wochen" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:355 msgid "days" msgstr "Tage" -#: src/Util/Temporal.php:344 +#: src/Util/Temporal.php:356 msgid "hour" msgstr "Stunde" -#: src/Util/Temporal.php:344 +#: src/Util/Temporal.php:356 msgid "hours" msgstr "Stunden" -#: src/Util/Temporal.php:345 +#: src/Util/Temporal.php:357 msgid "minute" msgstr "Minute" -#: src/Util/Temporal.php:345 +#: src/Util/Temporal.php:357 msgid "minutes" msgstr "Minuten" -#: src/Util/Temporal.php:346 +#: src/Util/Temporal.php:358 msgid "second" msgstr "Sekunde" -#: src/Util/Temporal.php:346 +#: src/Util/Temporal.php:358 msgid "seconds" msgstr "Sekunden" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:367 #, php-format msgid "in %1$d %2$s" msgstr "in %1$d %2$s" -#: src/Util/Temporal.php:359 +#: src/Util/Temporal.php:370 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s her" -#: src/Worker/Delivery.php:527 -msgid "(no subject)" -msgstr "(kein Betreff)" - #: src/Worker/PushSubscription.php:110 msgid "Notification from Friendica" msgstr "Benachrichtigung von Friendica" @@ -11334,11 +12574,11 @@ msgstr "Zum Inhalt der Seite gehen" msgid "Back to top" msgstr "Zurück nach Oben" -#: view/theme/frio/theme.php:219 +#: view/theme/frio/theme.php:211 msgid "Guest" msgstr "Gast" -#: view/theme/frio/theme.php:222 +#: view/theme/frio/theme.php:214 msgid "Visitor" msgstr "Besucher" @@ -11367,8 +12607,8 @@ msgid "Textareas font size" msgstr "Schriftgröße in Eingabefeldern" #: view/theme/vier/config.php:91 -msgid "Comma separated list of helper forums" -msgstr "Komma-separierte Liste der Helfer-Foren" +msgid "Comma separated list of helper groups" +msgstr "Komma-separierte Liste der Helfer-Gruppen" #: view/theme/vier/config.php:131 msgid "don't show" @@ -11386,7 +12626,7 @@ msgstr "Stil auswählen" msgid "Community Pages" msgstr "Gemeinschaftsseiten" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:151 +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 msgid "Community Profiles" msgstr "Gemeinschaftsprofile" @@ -11394,7 +12634,7 @@ msgstr "Gemeinschaftsprofile" msgid "Help or @NewHere ?" msgstr "Hilfe oder @NewHere" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:322 +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 msgid "Connect Services" msgstr "Verbinde Dienste" @@ -11402,10 +12642,10 @@ msgstr "Verbinde Dienste" msgid "Find Friends" msgstr "Kontakte finden" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:178 +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 msgid "Last users" msgstr "Letzte Nutzer" -#: view/theme/vier/theme.php:237 +#: view/theme/vier/theme.php:234 msgid "Quick Start" msgstr "Schnell-Start" diff --git a/view/lang/de/strings.php b/view/lang/de/strings.php index 817cc0fc4..2037e5aa1 100644 --- a/view/lang/de/strings.php +++ b/view/lang/de/strings.php @@ -5,104 +5,13 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Access denied.'] = 'Zugriff verweigert.'; -$a->strings['User not found.'] = 'Benutzer nicht gefunden.'; -$a->strings['Access to this profile has been restricted.'] = 'Der Zugriff zu diesem Profil wurde eingeschränkt.'; -$a->strings['Events'] = 'Veranstaltungen'; -$a->strings['View'] = 'Ansehen'; -$a->strings['Previous'] = 'Vorherige'; -$a->strings['Next'] = 'Nächste'; -$a->strings['today'] = 'Heute'; -$a->strings['month'] = 'Monat'; -$a->strings['week'] = 'Woche'; -$a->strings['day'] = 'Tag'; -$a->strings['list'] = 'Liste'; -$a->strings['User not found'] = 'Nutzer nicht gefunden'; -$a->strings['This calendar format is not supported'] = 'Dieses Kalenderformat wird nicht unterstützt.'; -$a->strings['No exportable data found'] = 'Keine exportierbaren Daten gefunden'; -$a->strings['calendar'] = 'Kalender'; -$a->strings['Public access denied.'] = 'Öffentlicher Zugriff verweigert.'; -$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'Der angeforderte Beitrag existiert nicht oder wurde gelöscht.'; -$a->strings['The feed for this item is unavailable.'] = 'Der Feed für diesen Beitrag ist nicht verfügbar.'; -$a->strings['Permission denied.'] = 'Zugriff verweigert.'; -$a->strings['Item not found'] = 'Beitrag nicht gefunden'; -$a->strings['Edit post'] = 'Beitrag bearbeiten'; -$a->strings['Save'] = 'Speichern'; -$a->strings['Loading...'] = 'lädt...'; -$a->strings['Upload photo'] = 'Foto hochladen'; -$a->strings['upload photo'] = 'Bild hochladen'; -$a->strings['Attach file'] = 'Datei anhängen'; -$a->strings['attach file'] = 'Datei anhängen'; -$a->strings['Insert web link'] = 'Einen Link einfügen'; -$a->strings['web link'] = 'Weblink'; -$a->strings['Insert video link'] = 'Video-Adresse einfügen'; -$a->strings['video link'] = 'Video-Link'; -$a->strings['Insert audio link'] = 'Audio-Adresse einfügen'; -$a->strings['audio link'] = 'Audio-Link'; -$a->strings['Set your location'] = 'Deinen Standort festlegen'; -$a->strings['set location'] = 'Ort setzen'; -$a->strings['Clear browser location'] = 'Browser-Standort leeren'; -$a->strings['clear location'] = 'Ort löschen'; -$a->strings['Please wait'] = 'Bitte warten'; -$a->strings['Permission settings'] = 'Berechtigungseinstellungen'; -$a->strings['CC: email addresses'] = 'Cc: E-Mail-Addressen'; -$a->strings['Public post'] = 'Öffentlicher Beitrag'; -$a->strings['Set title'] = 'Titel setzen'; -$a->strings['Categories (comma-separated list)'] = 'Kategorien (kommasepariert)'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Z.B.: bob@example.com, mary@example.com'; -$a->strings['Preview'] = 'Vorschau'; -$a->strings['Cancel'] = 'Abbrechen'; -$a->strings['Bold'] = 'Fett'; -$a->strings['Italic'] = 'Kursiv'; -$a->strings['Underline'] = 'Unterstrichen'; -$a->strings['Quote'] = 'Zitat'; -$a->strings['Code'] = 'Code'; -$a->strings['Link'] = 'Link'; -$a->strings['Link or Media'] = 'Link oder Mediendatei'; -$a->strings['Message'] = 'Nachricht'; -$a->strings['Browser'] = 'Browser'; -$a->strings['Permissions'] = 'Berechtigungen'; -$a->strings['Open Compose page'] = 'Composer Seite öffnen'; -$a->strings['Event can not end before it has started.'] = 'Die Veranstaltung kann nicht enden, bevor sie beginnt.'; -$a->strings['Event title and start time are required.'] = 'Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.'; -$a->strings['Create New Event'] = 'Neue Veranstaltung erstellen'; -$a->strings['Event details'] = 'Veranstaltungsdetails'; -$a->strings['Starting date and Title are required.'] = 'Anfangszeitpunkt und Titel werden benötigt'; -$a->strings['Event Starts:'] = 'Veranstaltungsbeginn:'; -$a->strings['Required'] = 'Benötigt'; -$a->strings['Finish date/time is not known or not relevant'] = 'Enddatum/-zeit ist nicht bekannt oder nicht relevant'; -$a->strings['Event Finishes:'] = 'Veranstaltungsende:'; -$a->strings['Description:'] = 'Beschreibung'; -$a->strings['Location:'] = 'Ort:'; -$a->strings['Title:'] = 'Titel:'; -$a->strings['Share this event'] = 'Veranstaltung teilen'; -$a->strings['Submit'] = 'Senden'; -$a->strings['Basic'] = 'Allgemein'; -$a->strings['Advanced'] = 'Erweitert'; -$a->strings['Failed to remove event'] = 'Entfernen der Veranstaltung fehlgeschlagen'; -$a->strings['Photos'] = 'Bilder'; -$a->strings['Upload'] = 'Hochladen'; -$a->strings['Files'] = 'Dateien'; -$a->strings['Submit Request'] = 'Anfrage abschicken'; -$a->strings['You already added this contact.'] = 'Du hast den Kontakt bereits hinzugefügt.'; -$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Der Netzwerktyp wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden.'; -$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Diaspora-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.'; -$a->strings['Connect/Follow'] = 'Verbinden/Folgen'; -$a->strings['Please answer the following:'] = 'Bitte beantworte folgendes:'; -$a->strings['Your Identity Address:'] = 'Adresse Deines Profils:'; -$a->strings['Profile URL'] = 'Profil URL'; -$a->strings['Tags:'] = 'Tags:'; -$a->strings['%s knows you'] = '%skennt dich'; -$a->strings['Add a personal note:'] = 'Eine persönliche Notiz beifügen:'; -$a->strings['Status Messages and Posts'] = 'Statusnachrichten und Beiträge'; -$a->strings['The contact could not be added.'] = 'Der Kontakt konnte nicht hinzugefügt werden.'; $a->strings['Unable to locate original post.'] = 'Konnte den Originalbeitrag nicht finden.'; -$a->strings['Empty post discarded.'] = 'Leerer Beitrag wurde verworfen.'; $a->strings['Post updated.'] = 'Beitrag aktualisiert.'; $a->strings['Item wasn\'t stored.'] = 'Eintrag wurde nicht gespeichert'; $a->strings['Item couldn\'t be fetched.'] = 'Eintrag konnte nicht geholt werden.'; +$a->strings['Empty post discarded.'] = 'Leerer Beitrag wurde verworfen.'; $a->strings['Item not found.'] = 'Beitrag nicht gefunden.'; +$a->strings['Permission denied.'] = 'Zugriff verweigert.'; $a->strings['No valid account found.'] = 'Kein gültiges Konto gefunden.'; $a->strings['Password reset request issued. Check your email.'] = 'Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail.'; $a->strings[' @@ -190,9 +99,6 @@ Passwort: %3$s Das 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['No matches'] = 'Keine Übereinstimmungen'; -$a->strings['Profile Match'] = 'Profilübereinstimmungen'; $a->strings['New Message'] = 'Neue Nachricht'; $a->strings['No recipient selected.'] = 'Kein Empfänger gewählt.'; $a->strings['Unable to locate contact information.'] = 'Konnte die Kontaktinformationen nicht finden.'; @@ -208,6 +114,10 @@ $a->strings['Send Private Message'] = 'Private Nachricht senden'; $a->strings['To:'] = 'An:'; $a->strings['Subject:'] = 'Betreff:'; $a->strings['Your message:'] = 'Deine Nachricht:'; +$a->strings['Upload photo'] = 'Foto hochladen'; +$a->strings['Insert web link'] = 'Einen Link einfügen'; +$a->strings['Please wait'] = 'Bitte warten'; +$a->strings['Submit'] = 'Senden'; $a->strings['No messages.'] = 'Keine Nachrichten.'; $a->strings['Message not available.'] = 'Nachricht nicht verfügbar.'; $a->strings['Delete message'] = 'Nachricht löschen'; @@ -224,18 +134,8 @@ $a->strings['%d message'] = [ ]; $a->strings['Personal Notes'] = 'Persönliche Notizen'; $a->strings['Personal notes are visible only by yourself.'] = 'Persönliche Notizen sind nur für dich sichtbar.'; -$a->strings['Subscribing to contacts'] = 'Kontakten folgen'; -$a->strings['No contact provided.'] = 'Keine Kontakte gefunden.'; -$a->strings['Couldn\'t fetch information for contact.'] = 'Konnte die Kontaktinformationen nicht einholen.'; -$a->strings['Couldn\'t fetch friends for contact.'] = 'Konnte die Kontaktliste des Kontakts nicht abfragen.'; -$a->strings['Couldn\'t fetch following contacts.'] = 'Konnte Liste der gefolgten Kontakte nicht einholen.'; -$a->strings['Couldn\'t fetch remote profile.'] = 'Konnte das entfernte Profil nicht laden.'; -$a->strings['Unsupported network'] = 'Netzwerk wird nicht unterstützt'; -$a->strings['Done'] = 'Erledigt'; -$a->strings['success'] = 'Erfolg'; -$a->strings['failed'] = 'Fehlgeschlagen'; -$a->strings['ignored'] = 'Ignoriert'; -$a->strings['Keep this window open until done.'] = 'Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.'; +$a->strings['Save'] = 'Speichern'; +$a->strings['User not found.'] = 'Benutzer nicht gefunden.'; $a->strings['Photo Albums'] = 'Fotoalben'; $a->strings['Recent Photos'] = 'Neueste Fotos'; $a->strings['Upload New Photos'] = 'Neue Fotos hochladen'; @@ -247,21 +147,17 @@ $a->strings['Album was empty.'] = 'Album ist leer.'; $a->strings['Failed to delete the photo.'] = 'Das Foto konnte nicht gelöscht werden.'; $a->strings['a photo'] = 'einem Foto'; $a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s wurde von %3$s in %2$s getaggt'; -$a->strings['Image exceeds size limit of %s'] = 'Bildgröße überschreitet das Limit von %s'; -$a->strings['Image upload didn\'t complete, please try again'] = 'Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut.'; -$a->strings['Image file is missing'] = 'Bilddatei konnte nicht gefunden werden.'; -$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Der Server kann derzeit keine neuen Datei-Uploads akzeptieren. Bitte kontaktiere deinen Administrator.'; -$a->strings['Image file is empty.'] = 'Bilddatei ist leer.'; -$a->strings['Unable to process image.'] = 'Konnte das Bild nicht bearbeiten.'; -$a->strings['Image upload failed.'] = 'Hochladen des Bildes gescheitert.'; +$a->strings['Public access denied.'] = 'Öffentlicher Zugriff verweigert.'; $a->strings['No photos selected'] = 'Keine Bilder ausgewählt'; -$a->strings['Access to this item is restricted.'] = 'Zugriff zu diesem Eintrag wurde eingeschränkt.'; +$a->strings['The maximum accepted image size is %s'] = 'Die maximale erlaubte Größe von Bildern beträgt %s'; $a->strings['Upload Photos'] = 'Bilder hochladen'; $a->strings['New album name: '] = 'Name des neuen Albums: '; $a->strings['or select existing album:'] = 'oder wähle ein bestehendes Album:'; $a->strings['Do not show a status post for this upload'] = 'Keine Status-Mitteilung für diesen Beitrag anzeigen'; +$a->strings['Permissions'] = 'Berechtigungen'; $a->strings['Do you really want to delete this photo album and all its photos?'] = 'Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?'; $a->strings['Delete Album'] = 'Album löschen'; +$a->strings['Cancel'] = 'Abbrechen'; $a->strings['Edit Album'] = 'Album bearbeiten'; $a->strings['Drop Album'] = 'Album löschen'; $a->strings['Show Newest First'] = 'Zeige neueste zuerst'; @@ -288,6 +184,8 @@ $a->strings['Rotate CW (right)'] = 'Drehen US (rechts)'; $a->strings['Rotate CCW (left)'] = 'Drehen EUS (links)'; $a->strings['This is you'] = 'Das bist du'; $a->strings['Comment'] = 'Kommentar'; +$a->strings['Preview'] = 'Vorschau'; +$a->strings['Loading...'] = 'lädt...'; $a->strings['Select'] = 'Auswählen'; $a->strings['Delete'] = 'Löschen'; $a->strings['Like'] = 'Mag ich'; @@ -295,106 +193,31 @@ $a->strings['I like this (toggle)'] = 'Ich mag das (toggle)'; $a->strings['Dislike'] = 'Mag ich nicht'; $a->strings['I don\'t like this (toggle)'] = 'Ich mag das nicht (toggle)'; $a->strings['Map'] = 'Karte'; -$a->strings['View Album'] = 'Album betrachten'; -$a->strings['Bad Request.'] = 'Ungültige Anfrage.'; -$a->strings['Contact not found.'] = 'Kontakt nicht gefunden.'; -$a->strings['[Friendica System Notify]'] = '[Friendica-Systembenachrichtigung]'; -$a->strings['User deleted their account'] = 'Gelöschter Nutzeraccount'; -$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Ein Nutzer deiner Friendica-Instanz hat seinen Account gelöscht. Bitte stelle sicher, dass dessen Daten aus deinen Backups entfernt werden.'; -$a->strings['The user id is %d'] = 'Die ID des Users lautet %d'; -$a->strings['Remove My Account'] = 'Konto löschen'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.'; -$a->strings['Please enter your password for verification:'] = 'Bitte gib dein Passwort zur Verifikation ein:'; -$a->strings['Resubscribing to OStatus contacts'] = 'Erneuern der OStatus-Abonements'; -$a->strings['Error'] = [ - 0 => 'Fehler', - 1 => 'Fehler', -]; -$a->strings['Failed to connect with email account using the settings provided.'] = 'Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.'; -$a->strings['Connected Apps'] = 'Verbundene Programme'; -$a->strings['Name'] = 'Name'; -$a->strings['Home Page'] = 'Homepage'; -$a->strings['Created'] = 'Erstellt'; -$a->strings['Remove authorization'] = 'Autorisierung entziehen'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; -$a->strings['Addon Settings'] = 'Addon Einstellungen'; -$a->strings['No Addon settings configured'] = 'Keine Addon-Einstellungen konfiguriert'; -$a->strings['Additional Features'] = 'Zusätzliche Features'; -$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings['enabled'] = 'eingeschaltet'; -$a->strings['disabled'] = 'ausgeschaltet'; -$a->strings['Built-in support for %s connectivity is %s'] = 'Eingebaute Unterstützung für Verbindungen zu %s ist %s'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; -$a->strings['Email access is disabled on this site.'] = 'Zugriff auf E-Mails für diese Seite deaktiviert.'; -$a->strings['None'] = 'Keine'; -$a->strings['Social Networks'] = 'Soziale Netzwerke'; -$a->strings['General Social Media Settings'] = 'Allgemeine Einstellungen zu Sozialen Medien'; -$a->strings['Followed content scope'] = 'Umfang zu folgender Inhalte'; -$a->strings['By default, conversations in which your follows participated but didn\'t start will be shown in your timeline. You can turn this behavior off, or expand it to the conversations in which your follows liked a post.'] = 'Normalerweise werden Unterhaltungen an denen deine Kontakte beteiligt sind, sie aber nicht begonnen haben, in deiner Timeline angezeigt. Mit dieser Einstellung kann dieses Vorgehen kontrolliert werden. Es kann entweder dahin erweitert werden, dass auch Unterhaltungen angezeigt werden in denen deine Kontakte einen Kommentar mögen, oder komplett ausgeschaltet werden, so dass nur noch die Unterhaltungen angezeigt werden, die von deinen Kontakten gestartet wurden.'; -$a->strings['Only conversations my follows started'] = 'Nur Unterhaltungen, die meine Kontakte gestartet haben'; -$a->strings['Conversations my follows started or commented on (default)'] = 'Unterhaltungen an denen meine Kontakte beteiligt sind (Grundeinstellung)'; -$a->strings['Any conversation my follows interacted with, including likes'] = 'Unterhaltungen mit denen meine Kontakte interagiert haben, inklusive likes'; -$a->strings['Enable Content Warning'] = 'Inhaltswarnungen einschalten'; -$a->strings['Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.'] = 'Benutzer in Netzwerken wie Mastodon oder Pleroma können eine Warnung für sensitive Inhalte ihrer Beiträge erstellen. Mit dieser Option werden derart markierte Beiträge automatisch zusammengeklappt und die Inhaltswarnung wird als Titel des Beitrags angezeigt. Diese Option hat keinen Einfluss auf andere Inhaltsfilterungen, die du eventuell eingerichtet hast.'; -$a->strings['Enable intelligent shortening'] = 'Intelligentes kürzen einschalten'; -$a->strings['Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.'] = 'Normalerweise versucht das System, den besten Link zu finden, um ihn zum gekürzten Postings hinzuzufügen. Wird diese Option ausgewählt, wird stets ein Link auf die originale Friendica-Nachricht beigefügt.'; -$a->strings['Enable simple text shortening'] = 'Einfache Textkürzung aktivieren'; -$a->strings['Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'] = 'Normalerweise kürzt das System Beiträge bei Zeilenumbrüchen. Ist diese Option aktiv, wird das System die Kürzung beim Erreichen der maximalen Zeichenzahl vornehmen.'; -$a->strings['Attach the link title'] = 'Link Titel hinzufügen'; -$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.'] = 'Ist dies aktiviert, wird der Titel von angehangenen Links bei Beiträgen nach Diaspora* angefügt. Dies ist vorallem bei Entfernten Konten nützlich die Beiträge von Feeds weiterleiten.'; -$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Dein alter ActivityPub/GNU Social-Account'; -$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Wenn du deinen alten ActivityPub oder GNU Social/Statusnet-Account-Namen hier angibst (Format name@domain.tld), werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden.'; -$a->strings['Repair OStatus subscriptions'] = 'OStatus-Abonnements reparieren'; -$a->strings['Email/Mailbox Setup'] = 'E-Mail/Postfach-Einstellungen'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an.'; -$a->strings['Last successful email check:'] = 'Letzter erfolgreicher E-Mail-Check'; -$a->strings['IMAP server name:'] = 'IMAP-Server-Name:'; -$a->strings['IMAP port:'] = 'IMAP-Port:'; -$a->strings['Security:'] = 'Sicherheit:'; -$a->strings['Email login name:'] = 'E-Mail-Login-Name:'; -$a->strings['Email password:'] = 'E-Mail-Passwort:'; -$a->strings['Reply-to address:'] = 'Reply-to Adresse:'; -$a->strings['Send public posts to all email contacts:'] = 'Sende öffentliche Beiträge an alle E-Mail-Kontakte:'; -$a->strings['Action after import:'] = 'Aktion nach Import:'; -$a->strings['Mark as seen'] = 'Als gelesen markieren'; -$a->strings['Move to folder'] = 'In einen Ordner verschieben'; -$a->strings['Move to folder:'] = 'In diesen Ordner verschieben:'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.'; -$a->strings['Friend Suggestions'] = 'Kontaktvorschläge'; -$a->strings['photo'] = 'Foto'; -$a->strings['status'] = 'Status'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s hat %2$ss %3$s mit %4$s getaggt'; -$a->strings['Remove Item Tag'] = 'Gegenstands-Tag entfernen'; -$a->strings['Select a tag to remove: '] = 'Wähle ein Tag zum Entfernen aus: '; -$a->strings['Remove'] = 'Entfernen'; -$a->strings['User imports on closed servers can only be done by an administrator.'] = 'Auf geschlossenen Servern können ausschließlich die Administratoren Benutzerkonten importieren.'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.'; -$a->strings['Import'] = 'Import'; -$a->strings['Move account'] = 'Account umziehen'; -$a->strings['You can import an account from another Friendica server.'] = 'Du kannst einen Account von einem anderen Friendica Server importieren.'; -$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.'] = 'Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen, deine Kontakte darüber zu informieren, dass du hierher umgezogen bist.'; -$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus-Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren'; -$a->strings['Account file'] = 'Account-Datei'; -$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Um Deinen Account zu exportieren, rufe "Einstellungen -> Persönliche Daten exportieren" auf und wähle "Account exportieren"'; -$a->strings['You aren\'t following this contact.'] = 'Du folgst diesem Kontakt.'; -$a->strings['Unfollowing is currently not supported by your network.'] = 'Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt.'; -$a->strings['Disconnect/Unfollow'] = 'Verbindung lösen/Nicht mehr folgen'; -$a->strings['Contact was successfully unfollowed'] = 'Kontakt wurde erfolgreich entfolgt.'; -$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Konnte dem Kontakt nicht entfolgen. Bitte kontaktiere deinen Administrator.'; -$a->strings['Invalid request.'] = 'Ungültige Anfrage'; -$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Entschuldige, die Datei scheint größer zu sein, als es die PHP-Konfiguration erlaubt.'; -$a->strings['Or - did you try to upload an empty file?'] = 'Oder - hast du versucht, eine leere Datei hochzuladen?'; -$a->strings['File exceeds size limit of %s'] = 'Die Datei ist größer als das erlaubte Limit von %s'; -$a->strings['File upload failed.'] = 'Hochladen der Datei fehlgeschlagen.'; -$a->strings['Wall Photos'] = 'Pinnwand-Bilder'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Maximale Anzahl der täglichen Pinnwand-Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.'; -$a->strings['Unable to check your home location.'] = 'Konnte Deinen Heimatort nicht bestimmen.'; -$a->strings['No recipient.'] = 'Kein Empfänger.'; -$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.'; $a->strings['No system theme config value set.'] = 'Es wurde kein Konfigurationswert für das systemweite Theme gesetzt.'; $a->strings['Apologies but the website is unavailable at the moment.'] = 'Entschuldigung, aber die Webseite ist derzeit nicht erreichbar.'; $a->strings['Delete this item?'] = 'Diesen Beitrag löschen?'; $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.'] = 'Soll dieser Autor geblockt werden? Sie werden nicht in der Lage sein, dir zu folgen oder deine öffentlichen Beiträge zu sehen. Außerdem wirst du nicht in der Lage sein ihre Beiträge und Benachrichtigungen zu lesen.'; +$a->strings['Ignore this author? You won\'t be able to see their posts and their notifications.'] = 'Diesen Autor ignorieren? Du wirst seine Beiträge und Benachrichtigungen nicht mehr sehen können.'; +$a->strings['Collapse this author\'s posts?'] = 'Beiträge dieses Autors zusammenklappen?'; +$a->strings['Ignore this author\'s server?'] = 'Den Server dieses Autors ignorieren?'; +$a->strings['You won\'t see any content from this server including reshares in your Network page, the community pages and individual conversations.'] = 'Du wirst keine Inhalte von dieser Instanz sehen, auch nicht das erneute Teilen auf Ihrer Netzwerkseite, den Gemeinschaftsseiten und einzelnen Unterhaltungen.'; +$a->strings['Like not successful'] = 'Das "Mag ich" war nicht erfolgreich'; +$a->strings['Dislike not successful'] = 'Das "Mag ich nicht" war nicht erfolgreich'; +$a->strings['Sharing not successful'] = 'Das Teilen war nicht erfolgreich'; +$a->strings['Attendance unsuccessful'] = 'Die Teilnahme war nicht erfolgreich'; +$a->strings['Backend error'] = 'Fehler im Backend'; +$a->strings['Network error'] = 'Netzwerkfehler'; +$a->strings['Drop files here to upload'] = 'Ziehe Dateien hierher, um sie hochzuladen'; +$a->strings['Your browser does not support drag and drop file uploads.'] = 'Dein Browser unterstützt das Hochladen von Dateien per Drag & Drop nicht.'; +$a->strings['Please use the fallback form below to upload your files like in the olden days.'] = 'Bitte verwende das unten stehende Formular, um Ihre Dateien wie früher hochzuladen.'; +$a->strings['File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.'] = 'Datei ist zu groß ({{filesize}}MiB). Maximale Dateigröße: {{maxFilesize}}MiB.'; +$a->strings['You can\'t upload files of this type.'] = 'Du kannst keine Dateien dieses Typs hochladen.'; +$a->strings['Server responded with {{statusCode}} code.'] = 'Der Server antwortete mit Status-Code {{statusCode}} '; +$a->strings['Cancel upload'] = 'Hochladen abbrechen'; +$a->strings['Upload canceled.'] = 'Hochladen abgebrochen'; +$a->strings['Are you sure you want to cancel this upload?'] = 'Bist du sicher, dass du diesen Upload abbrechen möchten?'; +$a->strings['Remove file'] = 'Datei entfernen'; +$a->strings['You can\'t upload any more files.'] = 'Du kannst keine weiteren Dateien hochladen.'; $a->strings['toggle mobile'] = 'mobile Ansicht umschalten'; $a->strings['Method not allowed for this module. Allowed method(s): %s'] = 'Diese Methode ist in diesem Modul nicht erlaubt. Erlaubte Methoden sind: %s'; $a->strings['Page not found.'] = 'Seite nicht gefunden.'; @@ -437,6 +260,7 @@ $a->strings['Done.'] = 'Erledigt.'; $a->strings['Execute pending post updates.'] = 'Ausstehende Post-Updates ausführen'; $a->strings['All pending post updates are done.'] = 'Alle ausstehenden Post-Updates wurden ausgeführt.'; $a->strings['Enter user nickname: '] = 'Spitzname angeben:'; +$a->strings['User not found'] = 'Nutzer nicht gefunden'; $a->strings['Enter new password: '] = 'Neues Passwort eingeben:'; $a->strings['Password update failed. Please try again.'] = 'Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal.'; $a->strings['Password changed.'] = 'Passwort geändert.'; @@ -475,26 +299,59 @@ $a->strings['Diaspora Connector'] = 'Diaspora Connector'; $a->strings['GNU Social Connector'] = 'GNU Social Connector'; $a->strings['ActivityPub'] = 'ActivityPub'; $a->strings['pnut'] = 'pnut'; +$a->strings['Tumblr'] = 'Tumblr'; +$a->strings['Bluesky'] = 'Bluesky'; $a->strings['%s (via %s)'] = '%s (via %s)'; -$a->strings['%s likes this.'] = '%s mag das.'; -$a->strings['%s doesn\'t like this.'] = '%s mag das nicht.'; -$a->strings['%s attends.'] = '%s nimmt teil.'; -$a->strings['%s doesn\'t attend.'] = '%s nimmt nicht teil.'; -$a->strings['%s attends maybe.'] = '%s nimmt eventuell teil.'; -$a->strings['%s reshared this.'] = '%s hat dies geteilt'; $a->strings['and'] = 'und'; $a->strings['and %d other people'] = 'und %dandere'; -$a->strings['%2$d people like this'] = '%2$d Personen mögen das'; -$a->strings['%s like this.'] = '%s mögen das.'; -$a->strings['%2$d people don\'t like this'] = '%2$d Personen mögen das nicht'; -$a->strings['%s don\'t like this.'] = '%s mögen dies nicht.'; -$a->strings['%2$d people attend'] = '%2$d Personen nehmen teil'; -$a->strings['%s attend.'] = '%s nehmen teil.'; -$a->strings['%2$d people don\'t attend'] = '%2$d Personen nehmen nicht teil'; -$a->strings['%s don\'t attend.'] = '%s nehmen nicht teil.'; -$a->strings['%2$d people attend maybe'] = '%2$d Personen nehmen eventuell teil'; -$a->strings['%s attend maybe.'] = '%s nimmt eventuell teil.'; -$a->strings['%2$d people reshared this'] = '%2$d Personen haben dies geteilt'; +$a->strings['%2$s likes this.'] = [ + 0 => '%2$s mag das.', + 1 => '%2$s mögen das.', +]; +$a->strings['%2$s doesn\'t like this.'] = [ + 0 => '%2$s mag das nicht.', + 1 => '%2$s mögen das nicht.', +]; +$a->strings['%2$s attends.'] = [ + 0 => '%2$s nimmt teil.', + 1 => '%2$s nehmen teil.', +]; +$a->strings['%2$s doesn\'t attend.'] = [ + 0 => '%2$s nimmt nicht teil.', + 1 => '%2$s nehmen nicht teil.', +]; +$a->strings['%2$s attends maybe.'] = [ + 0 => '%2$s nimmt eventuell teil.', + 1 => '%2$s nehmen eventuell teil.', +]; +$a->strings['%2$s reshared this.'] = [ + 0 => '%2$s hat dies geteilt.', + 1 => '%2$s haben dies geteilt.', +]; +$a->strings[' likes this'] = [ + 0 => ' mag das', + 1 => ' mögen das', +]; +$a->strings[' doesn\'t like this'] = [ + 0 => ' mag das nicht', + 1 => ' mögen das nicht', +]; +$a->strings[' attends'] = [ + 0 => ' besucht', + 1 => ' besuchen', +]; +$a->strings[' doesn\'t attend'] = [ + 0 => ' besucht nicht', + 1 => ' besuchen nicht', +]; +$a->strings[' attends maybe'] = [ + 0 => ' besucht vielleicht', + 1 => ' besuchen vielleicht', +]; +$a->strings[' reshared this'] = [ + 0 => ' teilte dies erneut', + 1 => ' teilten dies erneut', +]; $a->strings['Visible to everybody'] = 'Für jedermann sichtbar'; $a->strings['Please enter a image/video/audio/webpage URL:'] = 'Bitte gib eine Bild/Video/Audio/Webseiten-URL ein:'; $a->strings['Tag term:'] = 'Tag:'; @@ -504,20 +361,39 @@ $a->strings['Delete item(s)?'] = 'Einträge löschen?'; $a->strings['Created at'] = 'Erstellt am'; $a->strings['New Post'] = 'Neuer Beitrag'; $a->strings['Share'] = 'Teilen'; +$a->strings['upload photo'] = 'Bild hochladen'; +$a->strings['Attach file'] = 'Datei anhängen'; +$a->strings['attach file'] = 'Datei anhängen'; +$a->strings['Bold'] = 'Fett'; +$a->strings['Italic'] = 'Kursiv'; +$a->strings['Underline'] = 'Unterstrichen'; +$a->strings['Quote'] = 'Zitat'; +$a->strings['Add emojis'] = 'Emojis hinzufügen'; +$a->strings['Content Warning'] = 'Inhaltswarnung'; +$a->strings['Code'] = 'Code'; $a->strings['Image'] = 'Bild'; +$a->strings['Link'] = 'Link'; +$a->strings['Link or Media'] = 'Link oder Mediendatei'; $a->strings['Video'] = 'Video'; +$a->strings['Set your location'] = 'Deinen Standort festlegen'; +$a->strings['set location'] = 'Ort setzen'; +$a->strings['Clear browser location'] = 'Browser-Standort leeren'; +$a->strings['clear location'] = 'Ort löschen'; +$a->strings['Set title'] = 'Titel setzen'; +$a->strings['Categories (comma-separated list)'] = 'Kategorien (kommasepariert)'; $a->strings['Scheduled at'] = 'Geplant für'; -$a->strings['Pinned item'] = 'Angehefteter Beitrag'; -$a->strings['View %s\'s profile @ %s'] = 'Das Profil von %s auf %s betrachten.'; -$a->strings['Categories:'] = 'Kategorien:'; -$a->strings['Filed under:'] = 'Abgelegt unter:'; -$a->strings['%s from %s'] = '%s von %s'; -$a->strings['View in context'] = 'Im Zusammenhang betrachten'; +$a->strings['Permission settings'] = 'Berechtigungseinstellungen'; +$a->strings['Public post'] = 'Öffentlicher Beitrag'; +$a->strings['Message'] = 'Nachricht'; +$a->strings['Browser'] = 'Browser'; +$a->strings['Open Compose page'] = 'Composer Seite öffnen'; $a->strings['remove'] = 'löschen'; $a->strings['Delete Selected Items'] = 'Lösche die markierten Beiträge'; $a->strings['You had been addressed (%s).'] = 'Du wurdest angeschrieben (%s).'; $a->strings['You are following %s.'] = 'Du folgst %s.'; +$a->strings['You subscribed to %s.'] = 'Du hast %s abonniert.'; $a->strings['You subscribed to one or more tags in this post.'] = 'Du folgst einem oder mehreren Hashtags dieses Beitrags.'; +$a->strings['%s reshared this.'] = '%s hat dies geteilt'; $a->strings['Reshared'] = '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.'; @@ -532,14 +408,48 @@ $a->strings['Local delivery'] = 'Lokale Zustellung'; $a->strings['Stored because of your activity (like, comment, star, ...)'] = 'Gespeichert aufgrund Ihrer Aktivität (Like, Kommentar, Stern, ...)'; $a->strings['Distributed'] = 'Verteilt'; $a->strings['Pushed to us'] = 'Zu uns gepusht'; +$a->strings['Pinned item'] = 'Angehefteter Beitrag'; +$a->strings['View %s\'s profile @ %s'] = 'Das Profil von %s auf %s betrachten.'; +$a->strings['Categories:'] = 'Kategorien:'; +$a->strings['Filed under:'] = 'Abgelegt unter:'; +$a->strings['%s from %s'] = '%s von %s'; +$a->strings['View in context'] = 'Im Zusammenhang betrachten'; +$a->strings['For you'] = 'Für Dich'; +$a->strings['Posts from contacts you interact with and who interact with you'] = 'Beiträge von Kontakten, mit denen du interagierst und die mit dir interagieren'; +$a->strings['What\'s Hot'] = 'Angesagt'; +$a->strings['Posts with a lot of interactions'] = 'Beiträge mit vielen Interaktionen'; +$a->strings['Posts in %s'] = 'Beiträge in %s'; +$a->strings['Posts from your followers that you don\'t follow'] = 'Beiträge von deinen Followern, denen du nicht folgst'; +$a->strings['Sharers of sharers'] = 'Geteilt von teilenden '; +$a->strings['Posts from accounts that are followed by accounts that you follow'] = 'Beiträge von Accounts, welche von von Accounts gefolgt werden, denen du folgst '; +$a->strings['Images'] = 'Bilder'; +$a->strings['Posts with images'] = 'Beiträge mit Bildern'; +$a->strings['Audio'] = 'Audio'; +$a->strings['Posts with audio'] = 'Beiträge mit Audio'; +$a->strings['Videos'] = 'Videos'; +$a->strings['Posts with videos'] = 'Beiträge mit Videos'; +$a->strings['Local Community'] = 'Lokale Gemeinschaft'; +$a->strings['Posts from local users on this server'] = 'Beiträge von Nutzern dieses Servers'; +$a->strings['Global Community'] = 'Globale Gemeinschaft'; +$a->strings['Posts from users of the whole federated network'] = 'Beiträge von Nutzern des gesamten föderalen Netzwerks'; +$a->strings['Latest Activity'] = 'Neu - Aktivität'; +$a->strings['Sort by latest activity'] = 'Sortiere nach neueste Aktivität'; +$a->strings['Latest Posts'] = 'Neu - Empfangen'; +$a->strings['Sort by post received date'] = 'Nach Empfangsdatum der Beiträge sortiert'; +$a->strings['Latest Creation'] = 'Neu - Erstellung'; +$a->strings['Sort by post creation date'] = 'Sortiert nach dem Erstellungsdatum'; +$a->strings['Personal'] = 'Persönlich'; +$a->strings['Posts that mention or involve you'] = 'Beiträge, in denen es um dich geht'; +$a->strings['Starred'] = 'Markierte'; +$a->strings['Favourite Posts'] = 'Favorisierte Beiträge'; $a->strings['General Features'] = 'Allgemeine Features'; $a->strings['Photo Location'] = 'Aufnahmeort'; $a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden.'; $a->strings['Trending Tags'] = 'Trending Tags'; $a->strings['Show a community page widget with a list of the most popular tags in recent public posts.'] = 'Auf der Gemeinschaftsseite ein Widget mit den meist benutzten Tags in öffentlichen Beiträgen anzeigen.'; $a->strings['Post Composition Features'] = 'Beitragserstellung-Features'; -$a->strings['Auto-mention Forums'] = 'Foren automatisch erwähnen'; -$a->strings['Add/remove mention when a forum page is selected/deselected in ACL window.'] = 'Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde.'; +$a->strings['Auto-mention Groups'] = 'Gruppen automatisch erwähnen'; +$a->strings['Add/remove mention when a group page is selected/deselected in ACL window.'] = 'Automatisch eine @-Erwähnung einer Gruppe einfügen/entfernen, wenn dieses im ACL Fenster de-/markiert wurde.'; $a->strings['Explicit Mentions'] = 'Explizite Erwähnungen'; $a->strings['Add explicit mentions to comment box for manual control over who gets mentioned in replies.'] = 'Füge Erwähnungen zum Kommentarfeld hinzu, um manuell über die explizite Erwähnung von Gesprächsteilnehmern zu entscheiden.'; $a->strings['Add an abstract from ActivityPub content warnings'] = 'Abstract aus Inhaltswarnungen von ActivityPub zu Beiträgen hinzufügen'; @@ -548,17 +458,24 @@ $a->strings['Post/Comment Tools'] = 'Werkzeuge für Beiträge und Kommentare'; $a->strings['Post Categories'] = 'Beitragskategorien'; $a->strings['Add categories to your posts'] = 'Eigene Beiträge mit Kategorien versehen'; $a->strings['Advanced Profile Settings'] = 'Erweiterte Profil-Einstellungen'; -$a->strings['List Forums'] = 'Zeige Foren'; -$a->strings['Show visitors public community forums at the Advanced Profile Page'] = 'Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite'; +$a->strings['List Groups'] = 'Zeige Gruppen'; +$a->strings['Show visitors public groups at the Advanced Profile Page'] = 'Zeige Besuchern öffentliche Gruppen auf der Erweiterten Profil-Seite'; $a->strings['Tag Cloud'] = 'Schlagwortwolke'; $a->strings['Provide a personal tag cloud on your profile page'] = 'Wortwolke aus den von dir verwendeten Schlagwörtern im Profil anzeigen'; $a->strings['Display Membership Date'] = 'Mitgliedschaftsdatum anzeigen'; $a->strings['Display membership date in profile'] = 'Das Datum der Registrierung deines Accounts im Profil anzeigen'; -$a->strings['Forums'] = 'Foren'; -$a->strings['External link to forum'] = 'Externer Link zum Forum'; +$a->strings['Advanced Calendar Settings'] = 'Erweiterte Kalender Einstellungen'; +$a->strings['Allow anonymous access to your calendar'] = 'Erlaube anonymen Zugriff auf deinen Kalender'; +$a->strings['Allows anonymous visitors to consult your calendar and your public events. Contact birthday events are private to you.'] = 'Anonyme Besucher können deinen Kalender öffnen und dort deine öffentliche Ereignisse einsehen. Geburtstage deiner Kontakte sind nicht öffentlich.'; +$a->strings['Groups'] = 'Gruppen'; +$a->strings['External link to group'] = 'Externer Link zur Gruppe'; $a->strings['show less'] = 'weniger anzeigen'; $a->strings['show more'] = 'mehr anzeigen'; +$a->strings['Create new group'] = 'Neue Gruppe erstellen'; $a->strings['event'] = 'Veranstaltung'; +$a->strings['status'] = 'Status'; +$a->strings['photo'] = 'Foto'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s hat %2$ss %3$s mit %4$s getaggt'; $a->strings['Follow Thread'] = 'Folge der Unterhaltung'; $a->strings['View Status'] = 'Status anschauen'; $a->strings['View Profile'] = 'Profil anschauen'; @@ -568,26 +485,33 @@ $a->strings['View Contact'] = 'Kontakt anzeigen'; $a->strings['Send PM'] = 'Private Nachricht senden'; $a->strings['Block'] = 'Sperren'; $a->strings['Ignore'] = 'Ignorieren'; +$a->strings['Collapse'] = 'Zuklappen'; +$a->strings['Ignore %s server'] = 'Ignoriere %s Server'; $a->strings['Languages'] = 'Sprachen'; +$a->strings['Connect/Follow'] = 'Verbinden/Folgen'; +$a->strings['Unable to fetch user.'] = 'Benutzer kann nicht abgerufen werden.'; $a->strings['Nothing new here'] = 'Keine Neuigkeiten'; $a->strings['Go back'] = 'Geh zurück'; $a->strings['Clear notifications'] = 'Bereinige Benachrichtigungen'; -$a->strings['@name, !forum, #tags, content'] = '@name, !forum, #tags, content'; +$a->strings['@name, !group, #tags, content'] = '@name, !gruppe, #tags, content'; $a->strings['Logout'] = 'Abmelden'; $a->strings['End this session'] = 'Diese Sitzung beenden'; $a->strings['Login'] = 'Anmeldung'; $a->strings['Sign in'] = 'Anmelden'; -$a->strings['Status'] = 'Status'; -$a->strings['Your posts and conversations'] = 'Deine Beiträge und Unterhaltungen'; +$a->strings['Conversations'] = 'Unterhaltungen'; +$a->strings['Conversations you started'] = 'Unterhaltungen die du begonnen hast'; $a->strings['Profile'] = 'Profil'; $a->strings['Your profile page'] = 'Deine Profilseite'; +$a->strings['Photos'] = 'Bilder'; $a->strings['Your photos'] = 'Deine Fotos'; $a->strings['Media'] = 'Medien'; $a->strings['Your postings with media'] = 'Deine Beiträge die Medien beinhalten'; -$a->strings['Your events'] = 'Deine Ereignisse'; +$a->strings['Calendar'] = 'Kalender'; +$a->strings['Your calendar'] = 'Dein Kalender'; $a->strings['Personal notes'] = 'Persönliche Notizen'; $a->strings['Your personal notes'] = 'Deine persönlichen Notizen'; $a->strings['Home'] = 'Pinnwand'; +$a->strings['Home Page'] = 'Homepage'; $a->strings['Register'] = 'Registrieren'; $a->strings['Create an account'] = 'Nutzerkonto erstellen'; $a->strings['Help'] = 'Hilfe'; @@ -601,7 +525,6 @@ $a->strings['Tags'] = 'Tags'; $a->strings['Contacts'] = 'Kontakte'; $a->strings['Community'] = 'Gemeinschaft'; $a->strings['Conversations on this and other servers'] = 'Unterhaltungen auf diesem und anderen Servern'; -$a->strings['Events and Calendar'] = 'Ereignisse und Kalender'; $a->strings['Directory'] = 'Verzeichnis'; $a->strings['People directory'] = 'Nutzerverzeichnis'; $a->strings['Information'] = 'Information'; @@ -610,10 +533,12 @@ $a->strings['Terms of Service'] = 'Nutzungsbedingungen'; $a->strings['Terms of Service of this Friendica instance'] = 'Die Nutzungsbedingungen dieser Friendica-Instanz'; $a->strings['Network'] = 'Netzwerk'; $a->strings['Conversations from your friends'] = 'Unterhaltungen Deiner Kontakte'; +$a->strings['Your posts and conversations'] = 'Deine Beiträge und Unterhaltungen'; $a->strings['Introductions'] = 'Kontaktanfragen'; $a->strings['Friend Requests'] = 'Kontaktanfragen'; $a->strings['Notifications'] = 'Benachrichtigungen'; $a->strings['See all notifications'] = 'Alle Benachrichtigungen anzeigen'; +$a->strings['Mark as seen'] = 'Als gelesen markieren'; $a->strings['Mark all system notifications as seen'] = 'Markiere alle Systembenachrichtigungen als gelesen'; $a->strings['Private mail'] = 'Private E-Mail'; $a->strings['Inbox'] = 'Eingang'; @@ -625,6 +550,8 @@ $a->strings['Account settings'] = 'Kontoeinstellungen'; $a->strings['Manage/edit friends and contacts'] = 'Freunde und Kontakte verwalten/bearbeiten'; $a->strings['Admin'] = 'Administration'; $a->strings['Site setup and configuration'] = 'Einstellungen der Seite und Konfiguration'; +$a->strings['Moderation'] = 'Moderation'; +$a->strings['Content and user moderation'] = 'Moderation von Nutzern und Inhalten'; $a->strings['Navigation'] = 'Navigation'; $a->strings['Site map'] = 'Sitemap'; $a->strings['Embedding disabled'] = 'Einbettungen deaktiviert'; @@ -656,13 +583,15 @@ $a->strings['Find People'] = 'Leute finden'; $a->strings['Enter name or interest'] = 'Name oder Interessen eingeben'; $a->strings['Examples: Robert Morgenstein, Fishing'] = 'Beispiel: Robert Morgenstein, Angeln'; $a->strings['Find'] = 'Finde'; +$a->strings['Friend Suggestions'] = 'Kontaktvorschläge'; $a->strings['Similar Interests'] = 'Ähnliche Interessen'; $a->strings['Random Profile'] = 'Zufälliges Profil'; $a->strings['Invite Friends'] = 'Freunde einladen'; $a->strings['Global Directory'] = 'Weltweites Verzeichnis'; $a->strings['Local Directory'] = 'Lokales Verzeichnis'; -$a->strings['Groups'] = 'Gruppen'; +$a->strings['Circles'] = 'Circles'; $a->strings['Everyone'] = 'Jeder'; +$a->strings['No relationship'] = 'Keine Beziehung'; $a->strings['Relationships'] = 'Beziehungen'; $a->strings['All Contacts'] = 'Alle Kontakte'; $a->strings['Protocols'] = 'Protokolle'; @@ -675,11 +604,13 @@ $a->strings['%d contact in common'] = [ 1 => '%d gemeinsame Kontakte', ]; $a->strings['Archives'] = 'Archiv'; +$a->strings['On this date'] = 'An diesem Datum'; $a->strings['Persons'] = 'Personen'; $a->strings['Organisations'] = 'Organisationen'; $a->strings['News'] = 'Nachrichten'; $a->strings['Account Types'] = 'Kontenarten'; $a->strings['All'] = 'Alle'; +$a->strings['Channels'] = 'Kanäle'; $a->strings['Export'] = 'Exportieren'; $a->strings['Export calendar as ical'] = 'Kalender als ical exportieren'; $a->strings['Export calendar as csv'] = 'Kalender als csv exportieren'; @@ -696,10 +627,14 @@ $a->strings['Trending Tags (last %d hour)'] = [ 1 => 'Trending Tags (%d Stunden)', ]; $a->strings['More Trending Tags'] = 'mehr Trending Tags'; +$a->strings['Post to group'] = 'Beitrag an Gruppe'; +$a->strings['Mention'] = 'Mention'; $a->strings['XMPP:'] = 'XMPP:'; $a->strings['Matrix:'] = 'Matrix:'; +$a->strings['Location:'] = 'Ort:'; $a->strings['Network:'] = 'Netzwerk:'; $a->strings['Unfollow'] = 'Entfolgen'; +$a->strings['View group'] = 'Gruppe betrachten'; $a->strings['Yourself'] = 'Du selbst'; $a->strings['Mutuals'] = 'Beidseitige Freundschaft'; $a->strings['Post to Email'] = 'An E-Mail senden'; @@ -707,8 +642,11 @@ $a->strings['Public'] = 'Öffentlich'; $a->strings['This content will be shown to all your followers and can be seen in the community pages and by anyone with its link.'] = 'Dieser Inhalt wird all deine Abonenten sowie auf der Gemeinschaftsseite angezeigt. Außerdem kann ihn jeder sehen, der den Link kennt.'; $a->strings['Limited/Private'] = 'Begrenzt/Privat'; $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.'] = 'Dieser Inhalt wird außschließlich den Kontakten gezeigt, die du in der ersten Box ausgewählt hast, mit den Ausnahmen derer die du in der zweiten Box auflistest. Er wird nicht öffentlich zugänglich sein.'; +$a->strings['Start typing the name of a contact or a circle to show a filtered list. You can also mention the special circles "Followers" and "Mutuals".'] = 'Gebe den Namen eines Kontakts oder eines Circles ein, um eine gefilterte Liste anzuzeigen. Du kannst auch die speziellen Kreise "Folgende" und "beidseitige Freundschaft" erwähnen.'; $a->strings['Show to:'] = 'Sichtbar für:'; $a->strings['Except to:'] = 'Ausgenommen:'; +$a->strings['CC: email addresses'] = 'Cc: E-Mail-Addressen'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Z.B.: bob@example.com, mary@example.com'; $a->strings['Connectors'] = 'Connectoren'; $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.'] = 'Die Datenbankkonfigurationsdatei "config/local.config.php" konnte nicht erstellt werden. Um eine Konfigurationsdatei in Ihrem Webserver-Verzeichnis zu erstellen, gehe wie folgt vor.'; $a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Möglicherweise musst du die Datei "database.sql" manuell mit phpmyadmin oder mysql importieren.'; @@ -732,6 +670,8 @@ $a->strings['Apache mod_rewrite module'] = 'Apache mod_rewrite module'; $a->strings['Error: PDO or MySQLi PHP module required but not installed.'] = 'Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert.'; $a->strings['Error: The MySQL driver for PDO is not installed.'] = 'Fehler: der MySQL Treiber für PDO ist nicht installiert'; $a->strings['PDO or MySQLi PHP module'] = 'PDO oder MySQLi PHP Modul'; +$a->strings['Error: The IntlChar module is not installed.'] = 'Fehler: Das IntlChar-Modul von PHP ist nicht installiert.'; +$a->strings['IntlChar PHP module'] = 'PHP: IntlChar-Modul'; $a->strings['Error, XML PHP module required but not installed.'] = 'Fehler: XML PHP Modul erforderlich aber nicht installiert.'; $a->strings['XML PHP module'] = 'XML PHP Modul'; $a->strings['libCurl PHP module'] = 'PHP: libCurl-Modul'; @@ -815,6 +755,8 @@ $a->strings['Sep'] = 'Sep'; $a->strings['Oct'] = 'Okt'; $a->strings['Nov'] = 'Nov'; $a->strings['Dec'] = 'Dez'; +$a->strings['The logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Die Logdatei \'%s\' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich (Fehler: \'%s\')'; +$a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Die Logdatei \'%s\' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich (Fehler: \'%s\')'; $a->strings['Friendica can\'t display this page at the moment, please contact the administrator.'] = 'Friendica kann die Seite im Moment nicht darstellen. Bitte kontaktiere das Administratoren Team.'; $a->strings['template engine cannot be registered without a name.'] = 'Die Template Engine kann nicht ohne einen Namen registriert werden.'; $a->strings['template engine is not registered!'] = 'Template Engine wurde nicht registriert!'; @@ -837,18 +779,8 @@ Das Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es n $a->strings['The error message is\n[pre]%s[/pre]'] = 'Die Fehlermeldung lautet [pre]%s[/pre]'; $a->strings['[Friendica Notify] Database update'] = '[Friendica-Benachrichtigung]: Datenbank Update'; $a->strings[' - The friendica database was successfully updated from %s to %s.'] = ' - Die Friendica Datenbank wurde erfolgreich von %s auf %s aktualisiert.'; -$a->strings['Error decoding account file'] = 'Fehler beim Verarbeiten der Account-Datei'; -$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica-Account-Datei?'; -$a->strings['User \'%s\' already exists on this server!'] = 'Nutzer \'%s\' existiert bereits auf diesem Server!'; -$a->strings['User creation error'] = 'Fehler beim Anlegen des Nutzer-Accounts aufgetreten'; -$a->strings['%d contact not imported'] = [ - 0 => '%d Kontakt nicht importiert', - 1 => '%d Kontakte nicht importiert', -]; -$a->strings['User profile creation error'] = 'Fehler beim Anlegen des Nutzer-Profils'; -$a->strings['Done. You can now login with your username and password'] = 'Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden'; + The friendica database was successfully updated from %s to %s.'] = ' + Die Friendica Datenbank wurde erfolgreich von %s auf %s aktualisiert.'; $a->strings['The database version had been set to %s.'] = 'Die Datenbank Version wurde auf %s gesetzt.'; $a->strings['The post update is at version %d, it has to be at %d to safely drop the tables.'] = 'Das post-update ist auf der Version %d. Damit die Tabellen sicher entfernt werden können muss es die Version %d haben.'; $a->strings['No unused tables found.'] = 'Keine Tabellen gefunden die nicht verwendet werden.'; @@ -871,14 +803,23 @@ $a->strings['Unauthorized'] = 'Nicht autorisiert'; $a->strings['Token is not authorized with a valid user or is missing a required scope'] = 'Token ist nicht durch einen gültigen Benutzer autorisiert oder es fehlt ein erforderlicher Geltungsbereich'; $a->strings['Internal Server Error'] = 'Interner Serverfehler'; $a->strings['Legacy module file not found: %s'] = 'Legacy-Moduldatei nicht gefunden: %s'; -$a->strings['UnFollow'] = 'Entfolgen'; +$a->strings['A deleted circle with this name was revived. Existing item permissions may apply to this circle and any future members. If this is not what you intended, please create another circle with a different name.'] = 'Ein gelöschter Circle mit diesem Namen wurde wiederhergestellt. Bestehende Objektberechtigungen können für diesen Circle und alle zukünftigen Mitglieder gelten. Wenn dies nicht das ist, was du beabsichtigst, erstelle bitte einen neuen Circle mit einem anderen Namen.'; +$a->strings['Everybody'] = 'Alle Kontakte'; +$a->strings['edit'] = 'bearbeiten'; +$a->strings['add'] = 'hinzufügen'; +$a->strings['Edit circle'] = 'Circle ändern'; +$a->strings['Contacts not in any circle'] = 'Kontakte, die keinem Circle zugeordnet sind'; +$a->strings['Create a new circle'] = 'Erstelle neuen Circle'; +$a->strings['Circle Name: '] = 'Circle Name: '; +$a->strings['Edit circles'] = 'Circles bearbeiten'; $a->strings['Approve'] = 'Genehmigen'; $a->strings['Organisation'] = 'Organisation'; -$a->strings['Forum'] = 'Forum'; +$a->strings['Group'] = 'Gruppe'; $a->strings['Disallowed profile URL.'] = 'Nicht erlaubte Profil-URL.'; $a->strings['Blocked domain'] = 'Blockierte Domain'; $a->strings['Connect URL missing.'] = 'Connect-URL fehlt'; $a->strings['The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.'] = 'Der Kontakt konnte nicht hinzugefügt werden. Bitte überprüfe die Einstellungen unter Einstellungen -> Soziale Netzwerke'; +$a->strings['Expected network %s does not match actual network %s'] = 'Erwartetes Netzwerk %s stimmt nicht mit dem tatsächlichen Netzwerk überein %s'; $a->strings['The profile address specified does not provide adequate information.'] = 'Die angegebene Profiladresse liefert unzureichende Informationen.'; $a->strings['No compatible communication protocols or feeds were discovered.'] = 'Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.'; $a->strings['An author or name was not found.'] = 'Es wurde kein Autor oder Name gefunden.'; @@ -893,7 +834,13 @@ $a->strings['Starts:'] = 'Beginnt:'; $a->strings['Finishes:'] = 'Endet:'; $a->strings['all-day'] = 'ganztägig'; $a->strings['Sept'] = 'Sep'; +$a->strings['today'] = 'Heute'; +$a->strings['month'] = 'Monat'; +$a->strings['week'] = 'Woche'; +$a->strings['day'] = 'Tag'; $a->strings['No events to display'] = 'Keine Veranstaltung zum Anzeigen'; +$a->strings['Access to this profile has been restricted.'] = 'Der Zugriff zu diesem Profil wurde eingeschränkt.'; +$a->strings['Event not found.'] = 'Veranstaltung nicht gefunden.'; $a->strings['l, F j'] = 'l, F j'; $a->strings['Edit event'] = 'Veranstaltung bearbeiten'; $a->strings['Duplicate event'] = 'Veranstaltung kopieren'; @@ -905,20 +852,13 @@ $a->strings['Show map'] = 'Karte anzeigen'; $a->strings['Hide map'] = 'Karte verbergen'; $a->strings['%s\'s birthday'] = '%ss Geburtstag'; $a->strings['Happy Birthday %s'] = 'Herzlichen Glückwunsch, %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.'] = 'Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.'; -$a->strings['Default privacy group for new contacts'] = 'Voreingestellte Gruppe für neue Kontakte'; -$a->strings['Everybody'] = 'Alle Kontakte'; -$a->strings['edit'] = 'bearbeiten'; -$a->strings['add'] = 'hinzufügen'; -$a->strings['Edit group'] = 'Gruppe bearbeiten'; -$a->strings['Contacts not in any group'] = 'Kontakte in keiner Gruppe'; -$a->strings['Create a new group'] = 'Neue Gruppe erstellen'; -$a->strings['Group Name: '] = 'Gruppenname:'; -$a->strings['Edit groups'] = 'Gruppen bearbeiten'; $a->strings['Detected languages in this post:\n%s'] = 'Erkannte Sprachen in diesem Beitrag:\n%s'; $a->strings['activity'] = 'Aktivität'; $a->strings['comment'] = 'Kommentar'; $a->strings['post'] = 'Beitrag'; +$a->strings['%s is blocked'] = '%s ist blockiert'; +$a->strings['%s is ignored'] = '%s ist ignoriert'; +$a->strings['Content from %s is collapsed'] = 'Inhalt vom %s ist zugeklappt'; $a->strings['Content warning: %s'] = 'Inhaltswarnung: %s'; $a->strings['bytes'] = 'Byte'; $a->strings['%2$s (%3$d%%, %1$d vote)'] = [ @@ -940,11 +880,13 @@ $a->strings['%d voter.'] = [ $a->strings['Poll end: %s'] = 'Abstimmung endet: %s'; $a->strings['View on separate page'] = 'Auf separater Seite ansehen'; $a->strings['[no subject]'] = '[kein Betreff]'; +$a->strings['Wall Photos'] = 'Pinnwand-Bilder'; $a->strings['Edit profile'] = 'Profil bearbeiten'; $a->strings['Change profile photo'] = 'Profilbild ändern'; $a->strings['Homepage:'] = 'Homepage:'; $a->strings['About:'] = 'Über:'; $a->strings['Atom feed'] = 'Atom-Feed'; +$a->strings['This website has been verified to belong to the same person.'] = 'Die Webseite wurde verifiziert und gehört der gleichen Person.'; $a->strings['F d'] = 'd. F'; $a->strings['[today]'] = '[heute]'; $a->strings['Birthday Reminders'] = 'Geburtstagserinnerungen'; @@ -981,7 +923,7 @@ $a->strings['Password can\'t be empty'] = 'Das Passwort kann nicht leer sein'; $a->strings['Empty passwords are not allowed.'] = 'Leere Passwörter sind nicht erlaubt.'; $a->strings['The new password has been exposed in a public data dump, please choose another.'] = 'Das neue Passwort wurde in einem öffentlichen Daten-Dump veröffentlicht. Bitte verwende ein anderes Passwort.'; $a->strings['The password length is limited to 72 characters.'] = 'Die Länge des Passworts ist auf 72 Zeichen begrenzt.'; -$a->strings['The password can\'t contain accentuated letters, white spaces or colons (:)'] = 'Das Passwort darf keine akzentuierten Buchstaben, Leerzeichen oder Doppelpunkte (:) beinhalten'; +$a->strings['The password can\'t contain white spaces nor accentuated letters'] = 'Das Passwort kann weder Leerzeichen noch akzentuierte Zeichen beinhalten.'; $a->strings['Passwords do not match. Password unchanged.'] = 'Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.'; $a->strings['An invitation is required.'] = 'Du benötigst eine Einladung.'; $a->strings['Invitation could not be verified.'] = 'Die Einladung konnte nicht überprüft werden.'; @@ -1009,7 +951,7 @@ $a->strings['An error occurred during registration. Please try again.'] = 'Währ $a->strings['An error occurred creating your default profile. Please try again.'] = 'Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.'; $a->strings['An error occurred creating your self contact. Please try again.'] = 'Bei der Erstellung deines self-Kontakts ist ein Fehler aufgetreten. Bitte versuche es erneut.'; $a->strings['Friends'] = 'Kontakte'; -$a->strings['An error occurred creating your default contact group. Please try again.'] = 'Bei der Erstellung deiner Standardgruppe für Kontakte ist ein Fehler aufgetreten. Bitte versuche es erneut.'; +$a->strings['An error occurred creating your default contact circle. Please try again.'] = 'Beim Erstellen Ihres Circles ist ein Fehler aufgetreten. Bitte versuche es erneut.'; $a->strings['Profile Photos'] = 'Profilbilder'; $a->strings[' Dear %1$s, @@ -1040,7 +982,7 @@ $a->strings[' If you are new and do not know anybody here, they may help you to make some new and interesting friends. - If you ever want to delete your account, you can do so at %1$s/removeme + If you ever want to delete your account, you can do so at %1$s/settings/removeme Thank you and welcome to %4$s.'] = ' Nachfolgend die Anmeldedetails: @@ -1049,9 +991,9 @@ Adresse der Seite: %1$s Benutzername: %2$s Passwort: %3$s -Du 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. +Du 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. -Du kannst dein Nutzerkonto jederzeit unter %1$s/removeme wieder löschen. +Du kannst dein Nutzerkonto jederzeit unter %1$s/settings/removeme wieder löschen. Danke und willkommen auf %4$s.'; $a->strings['Registration details for %s'] = 'Details der Registration von %s'; @@ -1106,7 +1048,7 @@ $a->strings[' If you are new and do not know anybody here, they may help you to make some new and interesting friends. - If you ever want to delete your account, you can do so at %3$s/removeme + If you ever want to delete your account, you can do so at %3$s/settings/removeme Thank you and welcome to %2$s.'] = ' Die Anmelde-Details sind die folgenden: @@ -1133,22 +1075,13 @@ 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. -Solltest du dein Nutzerkonto löschen wollen, kannst du dies unter %3$s/removeme jederzeit tun. +Solltest du dein Nutzerkonto löschen wollen, kannst du dies unter %3$s/settings/removeme jederzeit tun. Danke für deine Aufmerksamkeit und willkommen auf %2$s.'; -$a->strings['[%s] Notice of remote server domain pattern block list update'] = '[%s] Die Liste der blockierten Domain Muster wurde aktualisiert'; -$a->strings['Dear %s, - -You are receiving this email because the Friendica node at %s where you are registered as a user updated their remote server domain pattern block list. - -Please review the updated list at %s at your earliest convenience.'] = 'Hallo %s, - -du erhällst diese EMail, da du auf dem Friendica Knoten %s einen Account besitzt. Die Blockliste für gesperrte Knoten wurde aktualisiert. - -Die Änderungen an der Blockliste kannst du unter %s einsehen.'; +$a->strings['User with delegates can\'t be removed, please remove delegate users first'] = 'Benutzer mit Delegaten können nicht entfernt werden, bitte entferne zuerst die delegierten Benutzer'; $a->strings['Addon not found.'] = 'Addon nicht gefunden.'; $a->strings['Addon %s disabled.'] = 'Addon %s ausgeschaltet.'; -$a->strings['Addon %s enabled.'] = 'Addon %s eingeschaltet.'; +$a->strings['Addon %s enabled.'] = 'Addon %s aktiviert.'; $a->strings['Disable'] = 'Ausschalten'; $a->strings['Enable'] = 'Einschalten'; $a->strings['Administration'] = 'Administration'; @@ -1158,26 +1091,841 @@ $a->strings['Author: '] = 'Autor:'; $a->strings['Maintainer: '] = 'Betreuer:'; $a->strings['Addons reloaded'] = 'Addons neu geladen'; $a->strings['Addon %s failed to install.'] = 'Addon %s konnte nicht installiert werden'; +$a->strings['Save Settings'] = 'Einstellungen speichern'; $a->strings['Reload active addons'] = 'Aktivierte Addons neu laden'; $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'] = 'Es sind derzeit keine Addons auf diesem Knoten verfügbar. Du findest das offizielle Addon-Repository unter %1$s und weitere eventuell interessante Addons im offenen Addon-Verzeichnis auf %2$s.'; +$a->strings['Update has been marked successful'] = 'Update wurde als erfolgreich markiert'; +$a->strings['Database structure update %s was successfully applied.'] = 'Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt.'; +$a->strings['Executing of database structure update %s failed with error: %s'] = 'Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s'; +$a->strings['Executing %s failed with error: %s'] = 'Die Ausführung von %s schlug fehl. Fehlermeldung: %s'; +$a->strings['Update %s was successfully applied.'] = 'Update %s war erfolgreich.'; +$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'Update %s hat keinen Status zurückgegeben. Unbekannter Status.'; +$a->strings['There was no additional update function %s that needed to be called.'] = 'Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste.'; +$a->strings['No failed updates.'] = 'Keine fehlgeschlagenen Updates.'; +$a->strings['Check database structure'] = 'Datenbankstruktur überprüfen'; +$a->strings['Failed Updates'] = 'Fehlgeschlagene Updates'; +$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben.'; +$a->strings['Mark success (if update was manually applied)'] = 'Als erfolgreich markieren (falls das Update manuell installiert wurde)'; +$a->strings['Attempt to execute this update step automatically'] = 'Versuchen, diesen Schritt automatisch auszuführen'; +$a->strings['Lock feature %s'] = 'Feature festlegen: %s'; +$a->strings['Manage Additional Features'] = 'Zusätzliche Features Verwalten'; +$a->strings['Other'] = 'Andere'; +$a->strings['unknown'] = 'Unbekannt'; +$a->strings['%2$s total system'] = [ + 0 => '%2$sServer gesamt', + 1 => '%2$s Server gesamt', +]; +$a->strings['%2$s active user last month'] = [ + 0 => '%2$s aktiver Nutzer im letzten Monat', + 1 => '%2$s aktive Nutzer im letzten Monat', +]; +$a->strings['%2$s active user last six months'] = [ + 0 => '%2$s aktive Nutzer im letzten halben Jahr', + 1 => '%2$s aktive Nutzer im letzten halben Jahr', +]; +$a->strings['%2$s registered user'] = [ + 0 => '%2$sregistrierter Nutzer', + 1 => '%2$s registrierte Nutzer', +]; +$a->strings['%2$s locally created post or comment'] = [ + 0 => '%2$slokal erstellter Beitrag oder Kommentar', + 1 => '%2$slokal erstellte Beiträge und Kommentare', +]; +$a->strings['%2$s post per user'] = [ + 0 => '%2$sBeitrag pro Nutzer', + 1 => '%2$sBeiträge pro Nutzer', +]; +$a->strings['%2$s user per system'] = [ + 0 => '%2$sNutzer pro System', + 1 => '%2$sNutzer pro System', +]; +$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.'] = '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.'; +$a->strings['Federation Statistics'] = 'Föderation Statistik'; +$a->strings['Currently this node is aware of %2$s node (%3$s active users last month, %4$s active users last six months, %5$s registered users in total) from the following platforms:'] = [ + 0 => 'Derzeit kennt dieser Knoten %2$s andere Knoten (mit %3$s aktiven Nutzern im letzten Monat, %4$s aktiven Nutzern im letzten halben Jahr, %5$s registrierten Nutzern insgesamt) von den folgenden Plattformen:', + 1 => 'Derzeit kennt dieser Knoten %2$s andere Knoten (mit %3$s aktiven Nutzern im letzten Monat, %4$s aktiven Nutzern im letzten halben Jahr, %5$s registrierten Nutzern insgesamt) von den folgenden Plattformen:', +]; +$a->strings['The logfile \'%s\' is not writable. No logging possible'] = 'Die Logdatei \'%s\' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich.'; +$a->strings['PHP log currently enabled.'] = 'PHP Protokollierung ist derzeit aktiviert.'; +$a->strings['PHP log currently disabled.'] = 'PHP Protokollierung ist derzeit nicht aktiviert.'; +$a->strings['Logs'] = 'Protokolle'; +$a->strings['Clear'] = 'löschen'; +$a->strings['Enable Debugging'] = 'Protokoll führen'; +$a->strings['Read-only because it is set by an environment variable'] = 'Schreibgeschützt, weil es durch eine Umgebungsvariable festgelegt ist'; +$a->strings['Log file'] = 'Protokolldatei'; +$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis.'; +$a->strings['Log level'] = 'Protokoll-Level'; +$a->strings['PHP logging'] = 'PHP Protokollieren'; +$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.'] = 'Um die Protokollierung von PHP-Fehlern und Warnungen vorübergehend zu aktivieren, kannst du der Datei index.php deiner Installation Folgendes voranstellen. Der in der Datei \'error_log\' angegebene Dateiname ist relativ zum obersten Verzeichnis von Friendica und muss vom Webserver beschreibbar sein. Die Option \'1\' für \'log_errors\' und \'display_errors\' aktiviert diese Optionen, ersetze die \'1\' durch eine \'0\', um sie zu deaktivieren.'; +$a->strings['Error trying to open %1$s log file.
    Check to see if file %1$s exist and is readable.'] = 'Fehler beim Öffnen der Logdatei %1$s.
    Bitte überprüfe ob die Datei %1$s existiert und gelesen werden kann.'; +$a->strings['Couldn\'t open %1$s log file.
    Check to see if file %1$s is readable.'] = 'Konnte die Logdatei %1$s nicht öffnen.
    Bitte stelle sicher, dass die Datei %1$s lesbar ist.'; +$a->strings['View Logs'] = 'Protokolle anzeigen'; +$a->strings['Search in logs'] = 'Logs durchsuchen'; +$a->strings['Show all'] = 'Alle anzeigen'; +$a->strings['Date'] = 'Datum'; +$a->strings['Level'] = 'Level'; +$a->strings['Context'] = 'Zusammenhang'; +$a->strings['ALL'] = 'ALLE'; +$a->strings['View details'] = 'Details anzeigen'; +$a->strings['Click to view details'] = 'Anklicken zum Anzeigen der Details'; +$a->strings['Event details'] = 'Veranstaltungsdetails'; +$a->strings['Data'] = 'Daten'; +$a->strings['Source'] = 'Quelle'; +$a->strings['File'] = 'Datei'; +$a->strings['Line'] = 'Zeile'; +$a->strings['Function'] = 'Funktion'; +$a->strings['UID'] = 'UID'; +$a->strings['Process ID'] = 'Prozess ID'; +$a->strings['Close'] = 'Schließen'; +$a->strings['Inspect Deferred Worker Queue'] = 'Verzögerte Worker-Warteschlange inspizieren'; +$a->strings['This page lists the deferred worker jobs. This are jobs that couldn\'t be executed at the first time.'] = 'Auf dieser Seite werden die aufgeschobenen Worker-Jobs aufgelistet. Dies sind Jobs, die beim ersten Mal nicht ausgeführt werden konnten.'; +$a->strings['Inspect Worker Queue'] = 'Worker-Warteschlange inspizieren'; +$a->strings['This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you\'ve set up during install.'] = 'Auf dieser Seite werden die derzeit in der Warteschlange befindlichen Worker-Jobs aufgelistet. Diese Jobs werden vom Cronjob verarbeitet, den du während der Installation eingerichtet hast.'; +$a->strings['ID'] = 'ID'; +$a->strings['Command'] = 'Befehl'; +$a->strings['Job Parameters'] = 'Parameter der Aufgabe'; +$a->strings['Created'] = 'Erstellt'; +$a->strings['Priority'] = 'Priorität'; +$a->strings['%s is no valid input for maximum image size'] = '%s ist keine gültige Angabe der maximalen Größe von Bildern'; +$a->strings['No special theme for mobile devices'] = 'Kein spezielles Theme für mobile Geräte verwenden.'; +$a->strings['%s - (Experimental)'] = '%s - (Experimentell)'; +$a->strings['No community page'] = 'Keine Gemeinschaftsseite'; +$a->strings['No community page for visitors'] = 'Keine Gemeinschaftsseite für Besucher'; +$a->strings['Public postings from users of this site'] = 'Öffentliche Beiträge von NutzerInnen dieser Seite'; +$a->strings['Public postings from the federated network'] = 'Öffentliche Beiträge aus dem föderalen Netzwerk'; +$a->strings['Public postings from local users and the federated network'] = 'Öffentliche Beiträge von lokalen Nutzern und aus dem föderalen Netzwerk'; +$a->strings['Multi user instance'] = 'Mehrbenutzer-Instanz'; +$a->strings['Closed'] = 'Geschlossen'; +$a->strings['Requires approval'] = 'Bedarf der Zustimmung'; +$a->strings['Open'] = 'Offen'; +$a->strings['Don\'t check'] = 'Nicht überprüfen'; +$a->strings['check the stable version'] = 'überprüfe die stabile Version'; +$a->strings['check the development version'] = 'überprüfe die Entwicklungsversion'; +$a->strings['none'] = 'keine'; +$a->strings['Local contacts'] = 'Lokale Kontakte'; +$a->strings['Interactors'] = 'Interaktionen'; +$a->strings['Site'] = 'Seite'; +$a->strings['General Information'] = 'Allgemeine Informationen'; +$a->strings['Republish users to directory'] = 'Nutzer erneut im globalen Verzeichnis veröffentlichen.'; +$a->strings['Registration'] = 'Registrierung'; +$a->strings['File upload'] = 'Datei hochladen'; +$a->strings['Policies'] = 'Regeln'; +$a->strings['Advanced'] = 'Erweitert'; +$a->strings['Auto Discovered Contact Directory'] = 'Automatisch ein Kontaktverzeichnis erstellen'; +$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 Node'] = 'Knoten umziehen'; +$a->strings['Relocating your node enables you to change the DNS domain of this node and keep all the existing users and posts. This process takes a while and can only be started from the relocate console command like this:'] = 'Um deinen Friendica Knoten auf einen andere Domainnamen umzuziehen, und dabei alle existierenden Accounts und Beiträge zu behalten, kannst du dazu einen Konsolenbefehl verwenden. Die nötigen Aktualisierungen wird einige Zeit dauern und können nur auf der Konsole gestartet werden. Hierzu verwendest du einen Befehl wie den folgenden:'; +$a->strings['(Friendica directory)# bin/console relocate https://newdomain.com'] = '(Friendica Verzeichnis)# bin/console relocate https://newdomain.com'; +$a->strings['Site name'] = 'Seitenname'; +$a->strings['Sender Email'] = 'Absender für Emails'; +$a->strings['The email address your server shall use to send notification emails from.'] = 'Die E-Mail Adresse, die dein Server zum Versenden von Benachrichtigungen verwenden soll.'; +$a->strings['Name of the system actor'] = 'Name des System-Actors'; +$a->strings['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.'] = '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.'; +$a->strings['Banner/Logo'] = 'Banner/Logo'; +$a->strings['Email Banner/Logo'] = 'E-Mail Banner / Logo'; +$a->strings['Shortcut icon'] = 'Shortcut Icon'; +$a->strings['Link to an icon that will be used for browsers.'] = 'Link zu einem Icon, das Browser verwenden werden.'; +$a->strings['Touch icon'] = 'Touch Icon'; +$a->strings['Link to an icon that will be used for tablets and mobiles.'] = 'Link zu einem Icon, das Tablets und Mobiltelefone verwenden sollen.'; +$a->strings['Additional Info'] = 'Zusätzliche Informationen'; +$a->strings['For public servers: you can add additional information here that will be listed at %s/servers.'] = 'Für öffentliche Server kannst du hier zusätzliche Informationen angeben, die dann auf %s/servers angezeigt werden.'; +$a->strings['System language'] = 'Systemsprache'; +$a->strings['System theme'] = 'Systemweites Theme'; +$a->strings['Default system theme - may be over-ridden by user profiles - Change default theme settings'] = 'Standard-Theme des Systems - kann von Benutzerprofilen überschrieben werden - Einstellungen des Standard-Themes ändern'; +$a->strings['Mobile system theme'] = 'Systemweites mobiles Theme'; +$a->strings['Theme for mobile devices'] = 'Theme für mobile Geräte'; +$a->strings['Force SSL'] = 'Erzwinge SSL'; +$a->strings['Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'] = 'Erzwinge SSL für alle Nicht-SSL-Anfragen - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife.'; +$a->strings['Show help entry from navigation menu'] = 'Zeige den Hilfe-Eintrag im Navigationsmenü an'; +$a->strings['Displays the menu entry for the Help pages from the navigation menu. It is always accessible by calling /help directly.'] = 'Zeigt im Navigationsmenü den Eintrag für die Hilfe-Seiten an. Es ist immer möglich diese Seiten direkt über /help in der Adresseingabe des Browsers aufzurufen.'; +$a->strings['Single user instance'] = 'Ein-Nutzer Instanz'; +$a->strings['Make this instance multi-user or single-user for the named user'] = 'Bestimmt, ob es sich bei dieser Instanz um eine Installation mit nur einen Nutzer oder mit mehreren Nutzern handelt.'; +$a->strings['Maximum image size'] = 'Maximale Bildgröße'; +$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively. + The value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit. + Currently upload_max_filesize is set to %s (%s byte)'] = 'Die maximale Größe von Bildern in Bytes. Grundeinstellung ist 0, welches keine Limitierung durch die Bildgröße bedeutet. Du kannst k, m oder g als Abkürzung hinter der Zahl angeben um KiB, MIB oder GiB zu definieren. + Der Wert der 1upload_max_filesize1 Variable in der php.ini Datei muss diesem Limit mindestens entsprechen. + Derzeit ist 3upload_max_filesize3 auf %s (%sByte) gesetzt.'; +$a->strings['Maximum image length'] = 'Maximale Bildlänge'; +$a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Maximale Länge in Pixeln der längsten Seite eines hochgeladenen Bildes. Grundeinstellung ist -1, was keine Einschränkung bedeutet.'; +$a->strings['JPEG image quality'] = 'Qualität des JPEG Bildes'; +$a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = 'Hochgeladene JPEG-Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust.'; +$a->strings['Register policy'] = 'Registrierungsmethode'; +$a->strings['Maximum Users'] = 'Maximale Benutzeranzahl'; +$a->strings['If defined, the register policy is automatically closed when the given number of users is reached and reopens the registry when the number drops below the limit. It only works when the policy is set to open or close, but not when the policy is set to approval.'] = 'Falls definiert, wird die Registrierungsrichtlinie automatisch geschlossen, wenn die angegebene Anzahl von Benutzern erreicht ist, und die Registrierung wieder geöffnet, wenn die Anzahl unter den Grenzwert fällt. Dies funktioniert nur, wenn die Richtlinie auf "Öffnen" oder "Schließen" eingestellt ist, nicht aber, wenn die Richtlinie auf "Genehmigung" eingestellt ist.'; +$a->strings['Maximum Daily Registrations'] = 'Maximum täglicher Registrierungen'; +$a->strings['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.'] = '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.'; +$a->strings['Register text'] = 'Registrierungstext'; +$a->strings['Will be displayed prominently on the registration page. You can use BBCode here.'] = 'Wird gut sichtbar auf der Registrierungsseite angezeigt. BBCode kann verwendet werden.'; +$a->strings['Forbidden Nicknames'] = 'Verbotene Spitznamen'; +$a->strings['Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142.'] = 'Durch Kommas getrennte Liste von Spitznamen, die von der Registrierung ausgeschlossen sind. Die Vorgabe ist eine Liste von Rollennamen nach RFC 2142.'; +$a->strings['Accounts abandoned after x days'] = 'Nutzerkonten gelten nach x Tagen als unbenutzt'; +$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = 'Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit.'; +$a->strings['Allowed friend domains'] = 'Erlaubte Domains für Kontakte'; +$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Liste der Domains, die für Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben.'; +$a->strings['Allowed email domains'] = 'Erlaubte Domains für E-Mails'; +$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = '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.'; +$a->strings['No OEmbed rich content'] = 'OEmbed nicht verwenden'; +$a->strings['Don\'t show the rich content (e.g. embedded PDF), except from the domains listed below.'] = 'Verhindert das Einbetten von reichhaltigen Inhalten (z.B. eingebettete PDF Dateien). Ausgenommen von dieser Regel werden Domänen, die unten aufgeführt werden.'; +$a->strings['Trusted third-party domains'] = 'Vertrauenswürdige Drittanbieter-Domains'; +$a->strings['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.'] = 'Komma separierte Liste von Domains von denen Inhalte in Beiträgen eingebettet werden dürfen. Alle Subdomains werden ebenfalls akzeptiert.'; +$a->strings['Block public'] = 'Öffentlichen Zugriff blockieren'; +$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist.'; +$a->strings['Force publish'] = 'Erzwinge Veröffentlichung'; +$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen.'; +$a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Wenn du diese Option aktivierst, verstößt das unter Umständen gegen Gesetze wie die EU-DSGVO.'; +$a->strings['Global directory URL'] = 'URL des weltweiten Verzeichnisses'; +$a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar.'; +$a->strings['Private posts by default for new users'] = 'Private Beiträge als Standard für neue Nutzer'; +$a->strings['Set default post permissions for all new members to the default privacy circle rather than public.'] = 'Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in den privaten Circle gepostet wird anstelle von öffentlichen.'; +$a->strings['Don\'t include post content in email notifications'] = 'Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden'; +$a->strings['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.'] = 'Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw. zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden.'; +$a->strings['Disallow public access to addons listed in the apps menu.'] = 'Öffentlichen Zugriff auf Addons im Apps Menü verbieten.'; +$a->strings['Checking this box will restrict addons listed in the apps menu to members only.'] = 'Wenn ausgewählt, werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt.'; +$a->strings['Don\'t embed private images in posts'] = 'Private Bilder nicht in Beiträgen einbetten.'; +$a->strings['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.'] = '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.'; +$a->strings['Explicit Content'] = 'Sensibler Inhalt'; +$a->strings['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.'] = '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.'; +$a->strings['Proxify external content'] = 'Proxy für externe Inhalte'; +$a->strings['Route external content via the proxy functionality. This is used for example for some OEmbed accesses and in some other rare cases.'] = 'Externe Inhalte werden durch einen Proxy geleitet. Die wird z.B. für das aufrufen von OEmbed Inhalten verwendet und einigen anderen seltenen Fällen.'; +$a->strings['Cache contact avatars'] = 'Kontaktprofilbilder zwischenspeichern'; +$a->strings['Locally store the avatar pictures of the contacts. This uses a lot of storage space but it increases the performance.'] = 'Die Profilbilder der Kontakte zwischenspeichern. Der Zwischenspeicher verbraucht viel Platz im Speicherplatz, verbessert aber die Performance.'; +$a->strings['Allow Users to set remote_self'] = 'Nutzern erlauben, das remote_self Flag zu setzen'; +$a->strings['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.'] = '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).'; +$a->strings['Enable multiple registrations'] = 'Erlaube Mehrfachregistrierung'; +$a->strings['Enable users to register additional accounts for use as pages.'] = 'Erlaube es Benutzern weitere Konten für Organisationen o.ä. mit der gleichen E-Mail Adresse anzulegen.'; +$a->strings['Enable OpenID'] = 'OpenID aktivieren'; +$a->strings['Enable OpenID support for registration and logins.'] = 'OpenID Unterstützung bei der Registrierung und dem Login aktivieren.'; +$a->strings['Enable Fullname check'] = 'Namen auf Vollständigkeit überprüfen'; +$a->strings['Enable check to only allow users to register with a space between the first name and the last name in their full name.'] = 'Erlaubt Nutzern Konten nur dann zu registrieren, bei denen im Namensfeld ein Leerzeichen zur Trennung von Vor- und Nachnamen verwendet wird.'; +$a->strings['Email administrators on new registration'] = 'Email den Administratoren bei neuen Registrierungen'; +$a->strings['If enabled and the system is set to an open registration, an email for each new registration is sent to the administrators.'] = 'Wenn diese Option aktiviert ist und die Registrierung auf offen eingestellt ist, wird den Administratoren bei jeder neuen Registierung eine Email geschickt.'; +$a->strings['Community pages for visitors'] = 'Für Besucher verfügbare Gemeinschaftsseite'; +$a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = 'Welche Gemeinschaftsseiten sollen für Besucher dieses Knotens verfügbar sein? Lokale Nutzer können grundsätzlich beide Seiten verwenden.'; +$a->strings['Posts per user on community page'] = 'Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite'; +$a->strings['The maximum number of posts per user on the community page. (Not valid for "Global Community")'] = 'Maximale Anzahl der Beiträge, die von jedem Nutzer auf der Gemeinschaftsseite angezeigt werden. (Gilt nicht für die \'Globale Gemeinschaftsseite\')'; +$a->strings['Enable Mail support'] = 'E-Mail Unterstützung aktivieren'; +$a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'Aktiviert die Unterstützung IMAP Ordner abzurufen und ermöglicht es auch auf E-Mails zu antworten.'; +$a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'E-Mail Unterstützung kann nicht aktiviert werden, da das PHP IMAP Modul nicht installiert ist.'; +$a->strings['Enable OStatus support'] = 'OStatus Unterstützung aktivieren'; +$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'Aktiviere die OStatus (StatusNet, GNU Social usw.) Unterstützung. Die Kommunikation über das OStatus Protokoll ist grundsätzlich öffentlich.'; +$a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Diaspora Unterstützung kann nicht aktiviert werden, da Friendica in ein Unterverzeichnis installiert ist.'; +$a->strings['Enable Diaspora support'] = 'Diaspora-Unterstützung aktivieren'; +$a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'Aktiviere die Unterstützung des Diaspora Protokolls zur Kommunikation mit Diaspora Servern.'; +$a->strings['Verify SSL'] = 'SSL Überprüfen'; +$a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = '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.'; +$a->strings['Proxy user'] = 'Proxy-Nutzer'; +$a->strings['User name for the proxy server.'] = 'Nutzername für den Proxy-Server'; +$a->strings['Proxy URL'] = 'Proxy-URL'; +$a->strings['If you want to use a proxy server that Friendica should use to connect to the network, put the URL of the proxy here.'] = 'Wenn Friendica einen Proxy-Server verwenden soll um das Netzwerk zu erreichen, füge hier die URL des Proxys ein.'; +$a->strings['Network timeout'] = 'Netzwerk-Wartezeit'; +$a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen).'; +$a->strings['Maximum Load Average'] = 'Maximum Load Average'; +$a->strings['Maximum system load before delivery and poll processes are deferred - default %d.'] = 'Maximale System-LOAD bevor Verteil- und Empfangsprozesse verschoben werden - Standard %d'; +$a->strings['Minimal Memory'] = 'Minimaler Speicher'; +$a->strings['Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).'] = 'Minimal freier Speicher in MB für den Worker Prozess. Benötigt Zugriff auf /proc/meminfo - Standardwert ist 0 (deaktiviert)'; +$a->strings['Periodically optimize tables'] = 'Optimiere die Tabellen regelmäßig'; +$a->strings['Periodically optimize tables like the cache and the workerqueue'] = 'Optimiert Tabellen wie den Cache oder die Worker-Warteschlage regelmäßig.'; +$a->strings['Discover followers/followings from contacts'] = 'Endecke folgende und gefolgte Kontakte von Kontakten'; +$a->strings['If enabled, contacts are checked for their followers and following contacts.'] = 'Ist dies aktiv, werden die Kontakte auf deren folgenden und gefolgten Kontakte überprüft.'; +$a->strings['None - deactivated'] = 'Keine - deaktiviert'; +$a->strings['Local contacts - contacts of our local contacts are discovered for their followers/followings.'] = 'Lokale Kontakte - Die Beziehungen der lokalen Kontakte werden analysiert.'; +$a->strings['Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings.'] = 'Interaktionen - Kontakte der lokalen Kontakte sowie die Profile die mit öffentlichen lokalen Beiträgen interagiert haben, werden bzgl. ihrer Beziehungen analysiert.'; +$a->strings['Synchronize the contacts with the directory server'] = 'Gleiche die Kontakte mit dem Directory-Server ab'; +$a->strings['if enabled, the system will check periodically for new contacts on the defined directory server.'] = 'Ist dies aktiv, wird das System regelmäßig auf dem Verzeichnis-Server nach neuen potentiellen Kontakten nachsehen.'; +$a->strings['Days between requery'] = 'Tage zwischen erneuten Abfragen'; +$a->strings['Number of days after which a server is requeried for his contacts.'] = 'Legt das Abfrageintervall fest, nach dem ein Server erneut nach Kontakten abgefragt werden soll.'; +$a->strings['Discover contacts from other servers'] = 'Neue Kontakte auf anderen Servern entdecken'; +$a->strings['Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers.'] = 'Frage regelmäßig bei anderen Servern nach neuen potentiellen Kontakten an. Diese Anfragen werden an Friendica, Mastodon und Hubzilla Server gesandt.'; +$a->strings['Search the local directory'] = 'Lokales Verzeichnis durchsuchen'; +$a->strings['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.'] = '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.'; +$a->strings['Publish server information'] = 'Server-Informationen veröffentlichen'; +$a->strings['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.'] = '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.'; +$a->strings['Check upstream version'] = 'Suche nach Updates'; +$a->strings['Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview.'] = '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.'; +$a->strings['Suppress Tags'] = 'Tags unterdrücken'; +$a->strings['Suppress showing a list of hashtags at the end of the posting.'] = 'Unterdrückt die Anzeige von Tags am Ende eines Beitrags.'; +$a->strings['Clean database'] = 'Datenbank aufräumen'; +$a->strings['Remove old remote items, orphaned database records and old content from some other helper tables.'] = 'Entferne alte Beiträge von anderen Knoten, verwaiste Einträge und alten Inhalt einiger Hilfstabellen.'; +$a->strings['Lifespan of remote items'] = 'Lebensdauer von Beiträgen anderer Knoten'; +$a->strings['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.'] = '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.'; +$a->strings['Lifespan of unclaimed items'] = 'Lebensdauer nicht angeforderter Beiträge'; +$a->strings['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.'] = '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.'; +$a->strings['Lifespan of raw conversation data'] = 'Lebensdauer der Beiträge'; +$a->strings['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.'] = '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.'; +$a->strings['Maximum numbers of comments per post'] = 'Maximale Anzahl von Kommentaren pro Beitrag'; +$a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100.'; +$a->strings['Maximum numbers of comments per post on the display page'] = 'Maximale Anzahl von Kommentaren in der Einzelansicht'; +$a->strings['How many comments should be shown on the single view for each post? Default value is 1000.'] = 'Wie viele Kommentare sollen auf der Einzelansicht eines Beitrags angezeigt werden? Grundeinstellung sind 1000.'; +$a->strings['Temp path'] = 'Temp-Pfad'; +$a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = '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.'; +$a->strings['Only search in tags'] = 'Nur in Tags suchen'; +$a->strings['On large systems the text search can slow down the system extremely.'] = 'Auf großen Knoten kann die Volltext-Suche das System ausbremsen.'; +$a->strings['Generate counts per contact circle when calculating network count'] = 'Erstelle Zählungen je Circle bei der Berechnung der Netzwerkanzahl'; +$a->strings['On systems with users that heavily use contact circles the query can be very expensive.'] = 'Auf Systemen mit Benutzern, die häufig Circles verwenden, kann die Abfrage sehr aufwändig sein.'; +$a->strings['Maximum number of parallel workers'] = 'Maximale Anzahl parallel laufender Worker'; +$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['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'; +$a->strings['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.'] = '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.'; +$a->strings['Disabled'] = 'Deaktiviert'; +$a->strings['all'] = 'Alle'; +$a->strings['tags'] = 'Schlagwörter'; +$a->strings['Server tags'] = 'Server-Schlagworte'; +$a->strings['Comma separated list of tags for the "tags" subscription.'] = 'Liste von Schlagworten, die abonniert werden sollen, mit Komma getrennt.'; +$a->strings['Deny Server tags'] = 'Server Tags ablehnen'; +$a->strings['Comma separated list of tags that are rejected.'] = 'Durch Kommas getrennte Liste der Tags, die abgelehnt werden'; +$a->strings['Allow user tags'] = 'Verwende Schlagworte der Nutzer'; +$a->strings['If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".'] = 'Ist dies aktiviert, werden die Schlagwörter der gespeicherten Suchen zusätzlich zu den oben definierten Server-Schlagworten abonniert.'; +$a->strings['Start Relocation'] = 'Umsiedlung starten'; +$a->strings['Storage backend, %s is invalid.'] = 'Speicher-Backend, %s ist ungültig.'; +$a->strings['Storage backend %s error: %s'] = 'Speicher-Backend %s Fehler %s'; +$a->strings['Invalid storage backend setting value.'] = 'Ungültige Einstellung für das Datenspeicher-Backend'; +$a->strings['Current Storage Backend'] = 'Aktuelles Speicher-Backend'; +$a->strings['Storage Configuration'] = 'Speicher Konfiguration'; +$a->strings['Storage'] = 'Speicher'; +$a->strings['Save & Use storage backend'] = 'Speichern & Dieses Speicher-Backend verwenden'; +$a->strings['Use storage backend'] = 'Dieses Speicher-Backend verwenden'; +$a->strings['Save & Reload'] = 'Speichern & Neu Laden'; +$a->strings['This backend doesn\'t have custom settings'] = 'Dieses Backend hat keine zusätzlichen Einstellungen'; +$a->strings['Changing the current backend is prohibited because it is set by an environment variable'] = 'Das Ändern des aktuellen Backends ist nicht möglich, da es durch eine Umgebungsvariable festgelegt ist'; +$a->strings['Database (legacy)'] = 'Datenbank (legacy)'; +$a->strings['Template engine (%s) error: %s'] = 'Template engine (%s) Fehler: %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.
    '] = 'Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB-Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du hier finden. Du kannst außerdem mit dem Befehl php bin/console.php dbstructure toinnodb auf der Kommandozeile die Umstellung automatisch vornehmen lassen.'; +$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.
    '] = 'Deine DB verwendet derzeit noch InnoDB Tabellen im Antelope Dateiformat. Du solltest diese auf das Barracuda Format ändern. Friendica verwendet einige Features, die nicht vom Antelope Format unterstützt werden. Hier findest du eine Anleitung für die Umstellung. Alternativ kannst du auch den Befehl php bin/console.php dbstructure toinnodb In der Kommandozeile deiner Friendica Instanz verwenden um die Formate automatisch anzupassen.
    '; +$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.
    '] = 'Der Wert table_definition_cache ist zu niedrig (%d). Dadurch können Datenbank Fehler "Prepared statement needs to be re-prepared" hervor gerufen werden. Bitte setze den Wert auf mindestens %d. Weiterführende Informationen findest du hier.'; +$a->strings['There is a new version of Friendica available for download. Your current version is %1$s, upstream version is %2$s'] = 'Es gibt eine neue Version von Friendica. Du verwendest derzeit die Version %1$s, die aktuelle Version ist %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.'] = 'Das Update der Datenbank ist fehlgeschlagen. Bitte führe \'php bin/console.php dbstructure update\' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen.'; +$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.)'] = 'Das letzte Update ist fehlgeschlagen. Bitte führe "php bin/console.php dbstructure update" auf der Kommandozeile aus und werfe einen Blick auf eventuell auftretende Fehler. (Zusätzliche Informationen zu Fehlern könnten in den Logdateien stehen.)'; +$a->strings['The system.url entry is missing. This is a low level setting and can lead to unexpected behavior. Please add a valid entry as soon as possible in the config file or per console command!'] = 'Der Eintrag system.url fehlt. Dies ist eine Einstellung auf niedriger Ebene und kann zu unerwartetem Verhalten führen. Bitt füge so bald wie möglich einen gültigen Eintrag in der Konfigurationsdatei oder per Konsolenbefehl hinzu!'; +$a->strings['The worker was never executed. Please check your database structure!'] = 'Der Hintergrundprozess (worker) wurde noch nie gestartet. Bitte überprüfe deine Datenbankstruktur.'; +$a->strings['The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings.'] = 'Der Hintergrundprozess (worker) wurde zuletzt um %s UTC ausgeführt. Das war vor mehr als einer Stunde. Bitte überprüfe deine crontab-Einstellungen.'; +$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.'] = 'Die Konfiguration von Friendica befindet sich ab jetzt in der \'config/local.config.php\' Datei. Kopiere bitte die Datei \'config/local-sample.config.php\' nach \'config/local.config.php\' und setze die Konfigurationvariablen so wie in der alten .htconfig.php. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen.'; +$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.'] = 'Die Konfiguration von Friendica befindet sich ab jetzt in der \'config/local.config.php\' Datei. Kopiere bitte die Datei \'config/local-sample.config.php\' nach \'config/local.config.php\' und setze die Konfigurationvariablen so wie in der alten config/local.ini.php. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen.'; +$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.'] = '%s konnte von deinem System nicht aufgerufen werden. Dies deutet auf ein schwerwiegendes Problem deiner Konfiguration hin. Bitte konsultiere die Installations-Dokumentation zum Beheben des Problems.'; +$a->strings['Friendica\'s system.basepath was updated from \'%s\' to \'%s\'. Please remove the system.basepath from your db to avoid differences.'] = 'Friendica\'s system.basepath wurde aktualisiert \'%s\' von \'%s\'. Bitte entferne system.basepath aus der Datenbank um Unterschiede zu vermeiden.'; +$a->strings['Friendica\'s current system.basepath \'%s\' is wrong and the config file \'%s\' isn\'t used.'] = 'Friendica\'s aktueller system.basepath \'%s\' ist verkehrt und die config file \'%s\' wird nicht benutzt.'; +$a->strings['Friendica\'s current system.basepath \'%s\' is not equal to the config file \'%s\'. Please fix your configuration.'] = 'Friendica\'s aktueller system.basepath \'%s\' ist nicht gleich wie die config file \'%s\'. Bitte korrigiere deine Konfiguration.'; +$a->strings['Message queues'] = 'Nachrichten-Warteschlangen'; +$a->strings['Server Settings'] = 'Servereinstellungen'; +$a->strings['Version'] = 'Version'; +$a->strings['Active addons'] = 'Aktivierte Addons'; +$a->strings['Theme %s disabled.'] = 'Theme %s deaktiviert.'; +$a->strings['Theme %s successfully enabled.'] = 'Theme %s erfolgreich aktiviert.'; +$a->strings['Theme %s failed to install.'] = 'Theme %s konnte nicht aktiviert werden.'; +$a->strings['Screenshot'] = 'Bildschirmfoto'; +$a->strings['Themes'] = 'Themen'; +$a->strings['Unknown theme.'] = 'Unbekanntes Theme'; +$a->strings['Themes reloaded'] = 'Themes wurden neu geladen'; +$a->strings['Reload active themes'] = 'Aktives Theme neu laden'; +$a->strings['No themes found on the system. They should be placed in %1$s'] = 'Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s platziert werden.'; +$a->strings['[Experimental]'] = '[Experimentell]'; +$a->strings['[Unsupported]'] = '[Nicht unterstützt]'; +$a->strings['Display Terms of Service'] = 'Nutzungsbedingungen anzeigen'; +$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.'] = 'Aktiviert die Seite für die Nutzungsbedingungen. Ist dies der Fall, werden sie auch von der Registrierungsseite und der allgemeinen Informationsseite verlinkt.'; +$a->strings['Display Privacy Statement'] = 'Datenschutzerklärung anzeigen'; +$a->strings['Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR.'] = 'Zeige Informationen über die zum Betrieb der Seite notwendigen, personenbezogenen Daten an, wie es z.B. die EU.-DSGVO verlangt.'; +$a->strings['Privacy Statement Preview'] = 'Vorschau: Datenschutzerklärung'; +$a->strings['The Terms of Service'] = 'Die Nutzungsbedingungen'; +$a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = 'Füge hier die Nutzungsbedingungen deines Knotens ein. Du kannst BBCode zur Formatierung verwenden. Überschriften sollten [h2] oder darunter sein.'; +$a->strings['The rules'] = 'Die Regeln'; +$a->strings['Enter your system rules here. Each line represents one rule.'] = 'Gib die Regeln deines Server hier ein. Jede Zeile steht für eine Regel.'; +$a->strings['API endpoint %s %s is not implemented but might be in the future.'] = 'API Endpunkt %s %s ist noch nicht implementiert, vielleicht in der Zukunft.'; +$a->strings['Missing parameters'] = 'Fehlende Parameter'; +$a->strings['Only starting posts can be bookmarked'] = 'Lesezeichen können nur für den ersten Beitrag einer Unterhaltung angelegt werden'; +$a->strings['Only starting posts can be muted'] = 'Nur die ersten Beiträge von Unterhaltungen können stumm geschaltet werden'; +$a->strings['Posts from %s can\'t be shared'] = 'Beiträge von %s können nicht geteilt werden'; +$a->strings['Only starting posts can be unbookmarked'] = 'Lesezeichen können nur für die ersten Beiträge einer Unterhaltung entfernt werden'; +$a->strings['Only starting posts can be unmuted'] = 'Nur die ersten Beiträge einer Unterhaltung können wieder auf laut gestellt werden'; +$a->strings['Posts from %s can\'t be unshared'] = 'Beiträge von %s können nicht ungeteilt werden'; +$a->strings['Contact not found'] = 'Kontakt nicht gefunden'; +$a->strings['No installed applications.'] = 'Keine Applikationen installiert.'; +$a->strings['Applications'] = 'Anwendungen'; +$a->strings['Item was not found.'] = 'Beitrag konnte nicht gefunden werden.'; +$a->strings['Please login to continue.'] = 'Bitte melde dich an, um fortzufahren.'; +$a->strings['You don\'t have access to administration pages.'] = 'Du hast keinen Zugriff auf die Administrationsseiten.'; +$a->strings['Submanaged account can\'t access the administration pages. Please log back in as the main account.'] = 'Verwaltete Benutzerkonten haben keinen Zugriff auf die Administrationsseiten. Bitte wechsle wieder zurück auf das Administrator Konto.'; +$a->strings['Overview'] = 'Übersicht'; +$a->strings['Configuration'] = 'Konfiguration'; +$a->strings['Additional features'] = 'Zusätzliche Features'; +$a->strings['Database'] = 'Datenbank'; +$a->strings['DB updates'] = 'DB Updates'; +$a->strings['Inspect Deferred Workers'] = 'Verzögerte Worker inspizieren'; +$a->strings['Inspect worker Queue'] = 'Worker Warteschlange inspizieren'; +$a->strings['Diagnostics'] = 'Diagnostik'; +$a->strings['PHP Info'] = 'PHP-Info'; +$a->strings['probe address'] = 'Adresse untersuchen'; +$a->strings['check webfinger'] = 'Webfinger überprüfen'; +$a->strings['Babel'] = 'Babel'; +$a->strings['ActivityPub Conversion'] = 'Umwandlung nach ActivityPub'; +$a->strings['Addon Features'] = 'Addon Features'; +$a->strings['User registrations waiting for confirmation'] = 'Nutzeranmeldungen, die auf Bestätigung warten'; +$a->strings['Too Many Requests'] = 'Zu viele Abfragen'; +$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Das tägliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen.', + 1 => 'Das tägliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen.', +]; +$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Das wöchentliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen.', + 1 => 'Das wöchentliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen.', +]; +$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Das monatliche Limit von %d Beitrag wurde erreicht. Der Beitrag wurde verworfen.', + 1 => 'Das monatliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen.', +]; +$a->strings['You don\'t have access to moderation pages.'] = 'Du hast keinen Zugriff zu den Moderationsseiten.'; +$a->strings['Submanaged account can\'t access the moderation pages. Please log back in as the main account.'] = 'Das verwaltete Konto kann nicht auf die Moderationsseiten zugreifen. Bitte melde dich wieder mit dem Hauptkonto an.'; +$a->strings['Reports'] = 'Reports'; +$a->strings['Users'] = 'Nutzer'; +$a->strings['Tools'] = 'Werkzeuge'; +$a->strings['Contact Blocklist'] = 'Kontakt Blockliste'; +$a->strings['Server Blocklist'] = 'Server Blockliste'; +$a->strings['Delete Item'] = 'Eintrag löschen'; +$a->strings['Item Source'] = 'Beitrags Quelle'; +$a->strings['Profile Details'] = 'Profildetails'; +$a->strings['Conversations started'] = 'Begonnene Unterhaltungen'; +$a->strings['Only You Can See This'] = 'Nur du kannst das sehen'; +$a->strings['Scheduled Posts'] = 'Geplante Beiträge'; +$a->strings['Posts that are scheduled for publishing'] = 'Beiträge die für einen späteren Zeitpunkt für die Veröffentlichung geplant sind'; +$a->strings['Tips for New Members'] = 'Tipps für neue Nutzer'; +$a->strings['People Search - %s'] = 'Personensuche - %s'; +$a->strings['Group Search - %s'] = 'Gruppensuche - %s'; +$a->strings['No matches'] = 'Keine Übereinstimmungen'; +$a->strings['%d result was filtered out because your node blocks the domain it is registered on. You can review the list of domains your node is currently blocking in the About page.'] = [ + 0 => '%d Ergebnis wurde herausgefiltert, weil Ihr Knoten die Domäne blockiert, auf der das Ergebnis registriert ist. Sie können die Liste aller Domänen, die Ihr Knoten derzeit blockiert, auf der Info-Seite einsehen.', + 1 => '%d Ergebnisse wurden herausgefiltert, weil Ihr Knoten die Domäne blockiert, auf der die Ergebnisse registriert sind. Du kannst die Liste aller Domänen, die Ihr Knoten derzeit blockiert, auf derInfo-Seite einsehen.', +]; +$a->strings['Account'] = 'Nutzerkonto'; +$a->strings['Two-factor authentication'] = 'Zwei-Faktor Authentifizierung'; +$a->strings['Display'] = 'Anzeige'; +$a->strings['Social Networks'] = 'Soziale Netzwerke'; +$a->strings['Manage Accounts'] = 'Accounts Verwalten'; +$a->strings['Connected apps'] = 'Verbundene Programme'; +$a->strings['Remote servers'] = 'Remote Instanzen'; +$a->strings['Export personal data'] = 'Persönliche Daten exportieren'; +$a->strings['Remove account'] = 'Konto löschen'; +$a->strings['This page is missing a url parameter.'] = 'Der Seite fehlt ein URL Parameter.'; +$a->strings['The post was created'] = 'Der Beitrag wurde angelegt'; +$a->strings['Invalid Request'] = 'Ungültige Anfrage'; +$a->strings['Event id is missing.'] = 'Die Veranstaltung fehlt.'; +$a->strings['Failed to remove event'] = 'Entfernen der Veranstaltung fehlgeschlagen'; +$a->strings['Event can not end before it has started.'] = 'Die Veranstaltung kann nicht enden, bevor sie beginnt.'; +$a->strings['Event title and start time are required.'] = 'Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.'; +$a->strings['Starting date and Title are required.'] = 'Anfangszeitpunkt und Titel werden benötigt'; +$a->strings['Event Starts:'] = 'Veranstaltungsbeginn:'; +$a->strings['Required'] = 'Benötigt'; +$a->strings['Finish date/time is not known or not relevant'] = 'Enddatum/-zeit ist nicht bekannt oder nicht relevant'; +$a->strings['Event Finishes:'] = 'Veranstaltungsende:'; +$a->strings['Title (BBCode not allowed)'] = 'Titel (BBCode nicht erlaubt)'; +$a->strings['Description (BBCode allowed)'] = 'Beschreibung (BBCode erlaubt)'; +$a->strings['Location (BBCode not allowed)'] = 'Ort (BBCode nicht erlaubt)'; +$a->strings['Share this event'] = 'Veranstaltung teilen'; +$a->strings['Basic'] = 'Allgemein'; +$a->strings['This calendar format is not supported'] = 'Dieses Kalenderformat wird nicht unterstützt.'; +$a->strings['No exportable data found'] = 'Keine exportierbaren Daten gefunden'; +$a->strings['calendar'] = 'Kalender'; +$a->strings['Events'] = 'Veranstaltungen'; +$a->strings['View'] = 'Ansehen'; +$a->strings['Create New Event'] = 'Neue Veranstaltung erstellen'; +$a->strings['list'] = 'Liste'; +$a->strings['Could not create circle.'] = 'Der Circle konnte nicht erstellt werden.'; +$a->strings['Circle not found.'] = 'Circle nicht gefunden.'; +$a->strings['Circle name was not changed.'] = 'Der Name des Circles wurde nicht geändert.'; +$a->strings['Unknown circle.'] = 'Unbekannter Circle.'; +$a->strings['Contact not found.'] = 'Kontakt nicht gefunden.'; +$a->strings['Invalid contact.'] = 'Ungültiger Kontakt.'; +$a->strings['Contact is deleted.'] = 'Kontakt wurde gelöscht'; +$a->strings['Unable to add the contact to the circle.'] = 'Es ist nicht möglich, den Kontakt zum Circle hinzuzufügen.'; +$a->strings['Contact successfully added to circle.'] = 'Der Kontakt wurde erfolgreich dem Circle hinzugefügt.'; +$a->strings['Unable to remove the contact from the circle.'] = 'Es ist nicht möglich, den Kontakt aus dem Circle zu entfernen.'; +$a->strings['Contact successfully removed from circle.'] = 'Kontakt erfolgreich aus dem Circle entfernt.'; +$a->strings['Bad request.'] = 'Ungültige Anfrage.'; +$a->strings['Save Circle'] = 'Circle speichern'; +$a->strings['Filter'] = 'Filter'; +$a->strings['Create a circle of contacts/friends.'] = 'Erstelle einen Circle aus Kontakten/Freunden'; +$a->strings['Unable to remove circle.'] = 'Der Circle kann nicht entfernt werden.'; +$a->strings['Delete Circle'] = 'Circle löschen'; +$a->strings['Edit Circle Name'] = 'Name des Circles ändern'; +$a->strings['Members'] = 'Mitglieder'; +$a->strings['Circle is empty'] = 'Dieser Circle ist leer'; +$a->strings['Remove contact from circle'] = 'Kontakt aus Circle entfernen'; +$a->strings['Click on a contact to add or remove.'] = 'Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen'; +$a->strings['Add contact to circle'] = 'Kontakt zu Circle hinzufügen'; +$a->strings['%d contact edited.'] = [ + 0 => '%d Kontakt bearbeitet.', + 1 => '%d Kontakte bearbeitet.', +]; +$a->strings['Show all contacts'] = 'Alle Kontakte anzeigen'; +$a->strings['Pending'] = 'Ausstehend'; +$a->strings['Only show pending contacts'] = 'Zeige nur noch ausstehende Kontakte.'; +$a->strings['Blocked'] = 'Geblockt'; +$a->strings['Only show blocked contacts'] = 'Nur blockierte Kontakte anzeigen'; +$a->strings['Ignored'] = 'Ignoriert'; +$a->strings['Only show ignored contacts'] = 'Nur ignorierte Kontakte anzeigen'; +$a->strings['Collapsed'] = 'Zugeklappt'; +$a->strings['Only show collapsed contacts'] = 'Zeige nur zugeklappte Kontakte'; +$a->strings['Archived'] = 'Archiviert'; +$a->strings['Only show archived contacts'] = 'Nur archivierte Kontakte anzeigen'; +$a->strings['Hidden'] = 'Verborgen'; +$a->strings['Only show hidden contacts'] = 'Nur verborgene Kontakte anzeigen'; +$a->strings['Organize your contact circles'] = 'Verwalte Deine Circles'; +$a->strings['Search your contacts'] = 'Suche in deinen Kontakten'; +$a->strings['Results for: %s'] = 'Ergebnisse für: %s'; +$a->strings['Update'] = 'Aktualisierungen'; +$a->strings['Unblock'] = 'Entsperren'; +$a->strings['Unignore'] = 'Ignorieren aufheben'; +$a->strings['Uncollapse'] = 'Aufklappen'; +$a->strings['Batch Actions'] = 'Stapelverarbeitung'; +$a->strings['Conversations started by this contact'] = 'Unterhaltungen, die von diesem Kontakt begonnen wurden'; +$a->strings['Posts and Comments'] = 'Statusnachrichten und Kommentare'; +$a->strings['Individual Posts and Replies'] = 'Individuelle Beiträge und Antworten'; +$a->strings['Posts containing media objects'] = 'Beiträge die Medien Objekte beinhalten'; +$a->strings['View all known contacts'] = 'Alle bekannten Kontakte anzeigen'; +$a->strings['Advanced Contact Settings'] = 'Fortgeschrittene Kontakteinstellungen'; +$a->strings['Mutual Friendship'] = 'Beidseitige Freundschaft'; +$a->strings['is a fan of yours'] = 'ist ein Fan von dir'; +$a->strings['you are a fan of'] = 'Du bist Fan von'; +$a->strings['Pending outgoing contact request'] = 'Ausstehende ausgehende Kontaktanfrage'; +$a->strings['Pending incoming contact request'] = 'Ausstehende eingehende Kontaktanfrage'; +$a->strings['Visit %s\'s profile [%s]'] = 'Besuche %ss Profil [%s]'; +$a->strings['Contact update failed.'] = 'Konnte den Kontakt nicht aktualisieren.'; +$a->strings['Return to contact editor'] = 'Zurück zum Kontakteditor'; +$a->strings['Name'] = 'Name'; +$a->strings['Account Nickname'] = 'Konto-Spitzname'; +$a->strings['Account URL'] = 'Konto-URL'; +$a->strings['Poll/Feed URL'] = 'Pull/Feed-URL'; +$a->strings['New photo from this URL'] = 'Neues Foto von dieser URL'; +$a->strings['No known contacts.'] = 'Keine bekannten Kontakte.'; +$a->strings['No common contacts.'] = 'Keine gemeinsamen Kontakte.'; +$a->strings['Follower (%s)'] = [ + 0 => 'Folgende (%s)', + 1 => 'Folgende (%s)', +]; +$a->strings['Following (%s)'] = [ + 0 => 'Gefolgte (%s)', + 1 => 'Gefolgte (%s)', +]; +$a->strings['Mutual friend (%s)'] = [ + 0 => 'Beidseitige Freundschafte (%s)', + 1 => 'Beidseitige Freundschaften (%s)', +]; +$a->strings['These contacts both follow and are followed by %s.'] = 'Diese Kontakte sind sowohl Folgende als auch Gefolgte von %s.'; +$a->strings['Common contact (%s)'] = [ + 0 => 'Gemeinsamer Kontakt (%s)', + 1 => 'Gemeinsame Kontakte (%s)', +]; +$a->strings['Both %s and yourself have publicly interacted with these contacts (follow, comment or likes on public posts).'] = 'Du und %s haben mit diesen Kontakten öffentlich interagiert (Folgen, Kommentare und Likes in öffentlichen Beiträgen)'; +$a->strings['Contact (%s)'] = [ + 0 => 'Kontakt (%s)', + 1 => 'Kontakte (%s)', +]; +$a->strings['Access denied.'] = 'Zugriff verweigert.'; +$a->strings['Submit Request'] = 'Anfrage abschicken'; +$a->strings['You already added this contact.'] = 'Du hast den Kontakt bereits hinzugefügt.'; +$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Der Netzwerktyp wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden.'; +$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Diaspora-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.'; +$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.'; +$a->strings['Please answer the following:'] = 'Bitte beantworte folgendes:'; +$a->strings['Your Identity Address:'] = 'Adresse Deines Profils:'; +$a->strings['Profile URL'] = 'Profil URL'; +$a->strings['Tags:'] = 'Tags:'; +$a->strings['%s knows you'] = '%skennt dich'; +$a->strings['Add a personal note:'] = 'Eine persönliche Notiz beifügen:'; +$a->strings['Posts and Replies'] = 'Beiträge und Antworten'; +$a->strings['The contact could not be added.'] = 'Der Kontakt konnte nicht hinzugefügt werden.'; +$a->strings['Invalid request.'] = 'Ungültige Anfrage'; +$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['Profile Match'] = 'Profilübereinstimmungen'; +$a->strings['Failed to update contact record.'] = 'Aktualisierung der Kontaktdaten fehlgeschlagen.'; +$a->strings['Contact has been unblocked'] = 'Kontakt wurde wieder freigegeben'; +$a->strings['Contact has been blocked'] = 'Kontakt wurde blockiert'; +$a->strings['Contact has been unignored'] = 'Kontakt wird nicht mehr ignoriert'; +$a->strings['Contact has been ignored'] = 'Kontakt wurde ignoriert'; +$a->strings['Contact has been uncollapsed'] = 'Kontakt wurde aufgeklappt'; +$a->strings['Contact has been collapsed'] = 'Kontakt wurde zugeklappt'; +$a->strings['You are mutual friends with %s'] = 'Du hast mit %s eine beidseitige Freundschaft'; +$a->strings['You are sharing with %s'] = 'Du teilst mit %s'; +$a->strings['%s is sharing with you'] = '%s teilt mit dir'; +$a->strings['Private communications are not available for this contact.'] = 'Private Kommunikation ist für diesen Kontakt nicht verfügbar.'; +$a->strings['This contact is on a server you ignored.'] = 'Dieser Kontakt befindet sich auf einem Server, den du ignoriert hast.'; +$a->strings['Never'] = 'Niemals'; +$a->strings['(Update was not successful)'] = '(Aktualisierung war nicht erfolgreich)'; +$a->strings['(Update was successful)'] = '(Aktualisierung war erfolgreich)'; +$a->strings['Suggest friends'] = 'Kontakte vorschlagen'; +$a->strings['Network type: %s'] = 'Netzwerktyp: %s'; +$a->strings['Communications lost with this contact!'] = 'Verbindungen mit diesem Kontakt verloren!'; +$a->strings['Fetch further information for feeds'] = 'Weitere Informationen zu Feeds holen'; +$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.'] = 'Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht allzu viel Text beinhaltet. Schlagwörter werden aus den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet.'; +$a->strings['Fetch information'] = 'Beziehe Information'; +$a->strings['Fetch keywords'] = 'Schlüsselwörter abrufen'; +$a->strings['Fetch information and keywords'] = 'Beziehe Information und Schlüsselworte'; +$a->strings['No mirroring'] = 'Kein Spiegeln'; +$a->strings['Mirror as my own posting'] = 'Spiegeln als meine eigenen Beiträge'; +$a->strings['Native reshare'] = 'Natives Teilen'; +$a->strings['Contact Information / Notes'] = 'Kontakt-Informationen / -Notizen'; +$a->strings['Contact Settings'] = 'Kontakteinstellungen'; +$a->strings['Contact'] = 'Kontakt'; +$a->strings['Their personal note'] = 'Die persönliche Mitteilung'; +$a->strings['Edit contact notes'] = 'Notizen zum Kontakt bearbeiten'; +$a->strings['Block/Unblock contact'] = 'Kontakt blockieren/freischalten'; +$a->strings['Ignore contact'] = 'Ignoriere den Kontakt'; +$a->strings['View conversations'] = 'Unterhaltungen anzeigen'; +$a->strings['Last update:'] = 'Letzte Aktualisierung: '; +$a->strings['Update public posts'] = 'Öffentliche Beiträge aktualisieren'; +$a->strings['Update now'] = 'Jetzt aktualisieren'; +$a->strings['Awaiting connection acknowledge'] = 'Bedarf der Bestätigung des Kontakts'; +$a->strings['Currently blocked'] = 'Derzeit geblockt'; +$a->strings['Currently ignored'] = 'Derzeit ignoriert'; +$a->strings['Currently collapsed'] = 'Derzeit zugeklappt'; +$a->strings['Currently archived'] = 'Momentan archiviert'; +$a->strings['Manage remote servers'] = 'Verwaltung entfernter Instanzen'; +$a->strings['Hide this contact from others'] = 'Verbirg diesen Kontakt vor Anderen'; +$a->strings['Replies/likes to your public posts may still be visible'] = 'Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein'; +$a->strings['Notification for new posts'] = 'Benachrichtigung bei neuen Beiträgen'; +$a->strings['Send a notification of every new post of this contact'] = 'Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt.'; +$a->strings['Keyword Deny List'] = 'Liste der gesperrten Schlüsselwörter'; +$a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn "Beziehe Information und Schlüsselworte" aktiviert wurde'; +$a->strings['Actions'] = 'Aktionen'; +$a->strings['Status'] = 'Status'; +$a->strings['Mirror postings from this contact'] = 'Spiegle Beiträge dieses Kontakts'; +$a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica, alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden (spiegeln).'; +$a->strings['Channel Settings'] = 'Kanal Einstellungen'; +$a->strings['Frequency of this contact in relevant channels'] = 'Häufigkeit dieses Kontakts in relevanten Kanälen'; +$a->strings['Depending on the type of the channel not all posts from this contact are displayed. By default, posts need to have a minimum amount of interactions (comments, likes) to show in your channels. On the other hand there can be contacts who flood the channel, so you might want to see only some of their posts. Or you don\'t want to see their content at all, but you don\'t want to block or hide the contact completely.'] = 'Je nach Art des Kanals werden nicht alle Beiträge dieses Kontakts angezeigt. Standardmäßig müssen Beiträge eine Mindestanzahl an Interaktionen (Kommentare, Gefällt mir Angaben) aufweisen, um in Ihren Kanälen angezeigt zu werden. Andererseits kann es Kontakte geben, die den Kanal überfluten, so dass du vielleicht nur einige ihrer Beiträge sehen möchtest. Oder du willst deren Inhalte überhaupt nicht sehen, aber du willst den Kontakt nicht komplett blockieren oder ausblenden.'; +$a->strings['Default frequency'] = 'Standardhäufigkeit'; +$a->strings['Posts by this contact are displayed in the "for you" channel if you interact often with this contact or if a post reached some level of interaction.'] = 'Beiträge dieses Kontakts werden im "Für Dich"-Kanal angezeigt, wenn du häufig mit diesem Kontakt interagieren oder wenn ein Beitrag ein gewisses Maß an Interaktion erreicht hat.'; +$a->strings['Display all posts of this contact'] = 'Alle Beiträge dieses Kontakts anzeigen'; +$a->strings['All posts from this contact will appear on the "for you" channel'] = 'Alle Beiträge dieses Kontakts werden auf dem Kanal "Für Dich" erscheinen'; +$a->strings['Display only few posts'] = 'Zeige nur einige Beiträge an'; +$a->strings['When a contact creates a lot of posts in a short period, this setting reduces the number of displayed posts in every channel.'] = 'Wenn ein Kontakt viele Beiträge in einem kurzen Zeitraum erstellt, reduziert diese Einstellung die Anzahl der angezeigten Beiträge in jedem Kanal.'; +$a->strings['Never display posts'] = 'Zeige keine Beiträge an'; +$a->strings['Posts from this contact will never be displayed in any channel'] = 'Beiträge von diesem Kontakt werden in keinem Kanal angezeigt'; +$a->strings['Refetch contact data'] = 'Kontaktdaten neu laden'; +$a->strings['Toggle Blocked status'] = 'Geblockt-Status ein-/ausschalten'; +$a->strings['Toggle Ignored status'] = 'Ignoriert-Status ein-/ausschalten'; +$a->strings['Toggle Collapsed status'] = 'Status auf "Zusammengeklappt" umschalten'; +$a->strings['Revoke Follow'] = 'Folgen widerrufen'; +$a->strings['Revoke the follow from this contact'] = 'Widerruft das Folgen dieses Kontaktes'; +$a->strings['Bad Request.'] = 'Ungültige Anfrage.'; +$a->strings['Unknown contact.'] = 'Unbekannter Kontakt.'; +$a->strings['Contact is being deleted.'] = 'Kontakt wurde gelöscht.'; +$a->strings['Follow was successfully revoked.'] = 'Folgen wurde erfolgreich widerrufen.'; +$a->strings['Do you really want to revoke this contact\'s follow? This cannot be undone and they will have to manually follow you back again.'] = 'Willst du das Folgen dieses Kontakt wirklich widerrufen? Dies kann nicht rückgängig gemacht werden und der Kontakt muss Ihnen manuell wieder folgen.'; +$a->strings['Yes'] = 'Ja'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.'; +$a->strings['You aren\'t following this contact.'] = 'Du folgst diesem Kontakt.'; +$a->strings['Unfollowing is currently not supported by your network.'] = 'Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt.'; +$a->strings['Disconnect/Unfollow'] = 'Verbindung lösen/Nicht mehr folgen'; +$a->strings['Contact was successfully unfollowed'] = 'Kontakt wurde erfolgreich entfolgt.'; +$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Konnte dem Kontakt nicht entfolgen. Bitte kontaktiere deinen Administrator.'; +$a->strings['No results.'] = 'Keine Ergebnisse.'; +$a->strings['Channel not available.'] = 'Channel nicht verüfgbar'; +$a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'Diese Gemeinschaftsseite zeigt alle öffentlichen Beiträge, die auf diesem Knoten eingegangen sind. Der Inhalt entspricht nicht zwingend der Meinung der Nutzer dieses Servers.'; +$a->strings['Community option not available.'] = 'Optionen für die Gemeinschaftsseite nicht verfügbar.'; +$a->strings['Not available.'] = 'Nicht verfügbar.'; +$a->strings['No such circle'] = 'Circle ist nicht vorhanden'; +$a->strings['Circle: %s'] = 'Circle: %s'; +$a->strings['Error %d (%s) while fetching the timeline.'] = 'Fehler %d (%s) beim Abruf der Timeline.'; +$a->strings['Network feed not available.'] = 'Netzwerkfeed nicht verfügbar.'; +$a->strings['Own Contacts'] = 'Eigene Kontakte'; +$a->strings['Include'] = 'Einschließen'; +$a->strings['Hide'] = 'Verbergen'; +$a->strings['Credits'] = 'Credits'; +$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!'] = 'Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !'; +$a->strings['Formatted'] = 'Formatiert'; +$a->strings['Activity'] = 'Aktivität'; +$a->strings['Object data'] = 'Objekt Daten'; +$a->strings['Result Item'] = 'Resultierender Eintrag'; +$a->strings['Error'] = [ + 0 => 'Fehler', + 1 => 'Fehler', +]; +$a->strings['Source activity'] = 'Quelle der Aktivität'; +$a->strings['Source input'] = 'Originaltext:'; +$a->strings['BBCode::toPlaintext'] = 'BBCode::toPlaintext'; +$a->strings['BBCode::convert (raw HTML)'] = 'BBCode::convert (pures HTML)'; +$a->strings['BBCode::convert (hex)'] = 'BBCode::convert (hex)'; +$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 (rohes 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'] = 'Beitragskörper'; +$a->strings['Item Tags'] = 'Tags des Beitrags'; +$a->strings['PageInfo::appendToBody'] = 'PageInfo::appendToBody'; +$a->strings['PageInfo::appendToBody => BBCode::convert (raw HTML)'] = 'PageInfo::appendToBody => BBCode::convert (pures HTML)'; +$a->strings['PageInfo::appendToBody => BBCode::convert'] = 'PageInfo::appendToBody => BBCode::convert'; +$a->strings['Source input (Diaspora format)'] = 'Originaltext (Diaspora Format): '; +$a->strings['Source input (Markdown)'] = 'Originaltext (Markdown)'; +$a->strings['Markdown::convert (raw HTML)'] = 'Markdown::convert (pures HTML)'; +$a->strings['Markdown::convert'] = 'Markdown::convert'; +$a->strings['Markdown::toBBCode'] = 'Markdown::toBBCode'; +$a->strings['Raw HTML input'] = 'Reine HTML Eingabe'; +$a->strings['HTML Input'] = 'HTML Eingabe'; +$a->strings['HTML Purified (raw)'] = 'HTML Purified (raw)'; +$a->strings['HTML Purified (hex)'] = 'HTML Purified (hex)'; +$a->strings['HTML Purified'] = 'HTML Purified'; +$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 (pures 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 (kompakt)'; +$a->strings['Decoded post'] = 'Dekodierter Beitrag'; +$a->strings['Post array before expand entities'] = 'Beiträgs Array bevor die Entitäten erweitert wurden.'; +$a->strings['Post converted'] = 'Konvertierter Beitrag'; +$a->strings['Converted body'] = 'Konvertierter Beitragskörper'; +$a->strings['Twitter addon is absent from the addon/ folder.'] = 'Das Twitter-Addon konnte nicht im addpn/ Verzeichnis gefunden werden.'; +$a->strings['Babel Diagnostic'] = 'Babel Diagnostik'; +$a->strings['Source text'] = 'Quelltext'; +$a->strings['BBCode'] = 'BBCode'; +$a->strings['Markdown'] = 'Markdown'; +$a->strings['HTML'] = 'HTML'; +$a->strings['Twitter Source / Tweet URL (requires API key)'] = 'Twitter Quelle / Tweet URL (benötigt API Schlüssel)'; +$a->strings['You must be logged in to use this module'] = 'Du musst eingeloggt sein, um dieses Modul benutzen zu können.'; +$a->strings['Source URL'] = 'URL der Quelle'; +$a->strings['Time Conversion'] = 'Zeitumrechnung'; +$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.'; +$a->strings['UTC time: %s'] = 'UTC Zeit: %s'; +$a->strings['Current timezone: %s'] = 'Aktuelle Zeitzone: %s'; +$a->strings['Converted localtime: %s'] = 'Umgerechnete lokale Zeit: %s'; +$a->strings['Please select your timezone:'] = 'Bitte wähle Deine Zeitzone:'; +$a->strings['Only logged in users are permitted to perform a probing.'] = 'Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet.'; +$a->strings['Probe Diagnostic'] = 'Probe Diagnostik'; +$a->strings['Output'] = 'Ergebnis'; +$a->strings['Lookup address'] = 'Adresse nachschlagen'; +$a->strings['Webfinger Diagnostic'] = 'Webfinger Diagnostik'; +$a->strings['Lookup address:'] = 'Adresse nachschlagen:'; +$a->strings['No entries (some entries may be hidden).'] = 'Keine Einträge (einige Einträge könnten versteckt sein).'; +$a->strings['Find on this site'] = 'Auf diesem Server suchen'; +$a->strings['Results for:'] = 'Ergebnisse für:'; +$a->strings['Site Directory'] = 'Verzeichnis'; +$a->strings['Item was not deleted'] = 'Item wurde nicht gelöscht'; +$a->strings['Item was not removed'] = 'Item wurde nicht entfernt'; +$a->strings['- select -'] = '- auswählen -'; +$a->strings['Suggested contact not found.'] = 'Vorgeschlagener Kontakt wurde nicht gefunden.'; +$a->strings['Friend suggestion sent.'] = 'Kontaktvorschlag gesendet.'; +$a->strings['Suggest Friends'] = 'Kontakte vorschlagen'; +$a->strings['Suggest a friend for %s'] = 'Schlage %s einen Kontakt vor'; +$a->strings['Installed addons/apps:'] = 'Installierte Apps und Addons'; +$a->strings['No installed addons/apps'] = 'Es sind keine Addons oder Apps installiert'; +$a->strings['Read about the Terms of Service of this node.'] = 'Erfahre mehr über die Nutzungsbedingungen dieses Knotens.'; +$a->strings['On this server the following remote servers are blocked.'] = 'Auf diesem Server werden die folgenden, entfernten Server blockiert.'; +$a->strings['Reason for the block'] = 'Begründung für die Blockierung'; +$a->strings['Download this list in CSV format'] = 'Liste im CSV-Format herunterladen'; +$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.'] = 'Diese Friendica-Instanz verwendet die Version %s, sie ist unter der folgenden Adresse im Web zu finden %s. Die Datenbankversion ist %s und die Post-Update-Version %s.'; +$a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Bitte besuche Friendi.ca, um mehr über das Friendica-Projekt zu erfahren.'; +$a->strings['Bug reports and issues: please visit'] = 'Probleme oder Fehler gefunden? Bitte besuche'; +$a->strings['the bugtracker at github'] = 'den Bugtracker auf github'; +$a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = 'Vorschläge, Lob usw.: E-Mail an "Info" at "Friendi - dot ca"'; +$a->strings['No profile'] = 'Kein Profil'; +$a->strings['Method Not Allowed.'] = 'Methode nicht erlaubt.'; +$a->strings['Help:'] = 'Hilfe:'; +$a->strings['Welcome to %s'] = 'Willkommen zu %s'; +$a->strings['Friendica Communications Server - Setup'] = 'Friendica Komunikationsserver - Installation'; +$a->strings['System check'] = 'Systemtest'; +$a->strings['Requirement not satisfied'] = 'Anforderung ist nicht erfüllt'; +$a->strings['Optional requirement not satisfied'] = 'Optionale Anforderung ist nicht erfüllt'; +$a->strings['OK'] = 'Ok'; +$a->strings['Next'] = 'Nächste'; +$a->strings['Check again'] = 'Noch einmal testen'; +$a->strings['Base settings'] = 'Grundeinstellungen'; +$a->strings['Base path to installation'] = 'Basis-Pfad zur Installation'; +$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.'] = 'Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist.'; +$a->strings['The Friendica system URL'] = 'Die Friendica System URL'; +$a->strings['Overwrite this field in case the system URL determination isn\'t right, otherwise leave it as is.'] = 'Überschreibe dieses Feld, falls die System-URL-Erkennung nicht korrekt ist, ansonsten lasse es unverändert.'; +$a->strings['Database connection'] = 'Datenbankverbindung'; +$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können.'; +$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Bitte kontaktiere den Hosting-Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest.'; +$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte, bevor du mit der Installation fortfährst.'; +$a->strings['Database Server Name'] = 'Datenbank-Server'; +$a->strings['Database Login Name'] = 'Datenbank-Nutzer'; +$a->strings['Database Login Password'] = 'Datenbank-Passwort'; +$a->strings['For security reasons the password must not be empty'] = 'Aus Sicherheitsgründen darf das Passwort nicht leer sein.'; +$a->strings['Database Name'] = 'Datenbank-Name'; +$a->strings['Please select a default timezone for your website'] = 'Bitte wähle die Standardzeitzone Deiner Webseite'; +$a->strings['Site settings'] = 'Server-Einstellungen'; +$a->strings['Site administrator email address'] = 'E-Mail-Adresse des Administrators'; +$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst.'; +$a->strings['System Language:'] = 'Systemsprache:'; +$a->strings['Set the default language for your Friendica installation interface and to send emails.'] = 'Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand'; +$a->strings['Your Friendica site database has been installed.'] = 'Die Datenbank Deiner Friendica-Seite wurde installiert.'; +$a->strings['Installation finished'] = 'Installation abgeschlossen'; +$a->strings['

    What next

    '] = '

    Wie geht es weiter?

    '; +$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the worker.'] = 'Wichtig: du musst [manuell] einen Cronjob (o.ä.) für den Worker einrichten.'; +$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.'] = 'Du solltest nun die Seite zur Nutzerregistrierung deiner neuen Friendica Instanz besuchen und einen neuen Nutzer einrichten. Bitte denke daran, dieselbe E-Mail Adresse anzugeben, die du auch als Administrator-E-Mail angegeben hast, damit du das Admin-Panel verwenden kannst.'; +$a->strings['Total invitation limit exceeded.'] = 'Limit für Einladungen erreicht.'; +$a->strings['%s : Not a valid email address.'] = '%s: Keine gültige Email Adresse.'; +$a->strings['Please join us on Friendica'] = 'Ich lade dich zu unserem sozialen Netzwerk Friendica ein'; +$a->strings['Invitation limit exceeded. Please contact your site administrator.'] = 'Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.'; +$a->strings['%s : Message delivery failed.'] = '%s: Zustellung der Nachricht fehlgeschlagen.'; +$a->strings['%d message sent.'] = [ + 0 => '%d Nachricht gesendet.', + 1 => '%d Nachrichten gesendet.', +]; +$a->strings['You have no more invitations available'] = 'Du hast keine weiteren Einladungen'; +$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.'] = 'Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica-Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer sozialer Netzwerke.'; +$a->strings['To accept this invitation, please visit and register at %s or any other public Friendica website.'] = 'Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica-Website.'; +$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.'] = 'Friendica Server verbinden sich alle untereinander, um ein großes, datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Du kannst dich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica-Server, denen du beitreten kannst.'; +$a->strings['Our apologies. This system is not currently configured to connect with other public sites or invite members.'] = 'Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.'; +$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.'] = 'Friendica Server verbinden sich alle untereinander, um ein großes, datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Du kannst dich auch mit vielen üblichen Sozialen Netzwerken verbinden.'; +$a->strings['To accept this invitation, please visit and register at %s.'] = 'Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s.'; +$a->strings['Send invitations'] = 'Einladungen senden'; +$a->strings['Enter email addresses, one per line:'] = 'E-Mail-Adressen eingeben, eine pro Zeile:'; +$a->strings['You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.'] = 'Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres, soziales Netz aufzubauen.'; +$a->strings['You will need to supply this invitation code: $invite_code'] = 'Du benötigst den folgenden Einladungscode: $invite_code'; +$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:'; +$a->strings['For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca'] = 'Für weitere Informationen über das Friendica-Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca.'; +$a->strings['Please enter a post body.'] = 'Bitte gibt den Text des Beitrags an'; +$a->strings['This feature is only available with the frio theme.'] = 'Diese Seite kann ausschließlich mit dem Frio Theme verwendet werden.'; +$a->strings['Compose new personal note'] = 'Neue persönliche Notiz verfassen'; +$a->strings['Compose new post'] = 'Neuen Beitrag verfassen'; +$a->strings['Visibility'] = 'Sichtbarkeit'; +$a->strings['Clear the location'] = 'Ort löschen'; +$a->strings['Location services are unavailable on your device'] = 'Ortungsdienste sind auf Ihrem Gerät nicht verfügbar'; +$a->strings['Location services are disabled. Please check the website\'s permissions on your device'] = 'Ortungsdienste sind deaktiviert. Bitte überprüfe die Berechtigungen der Website auf deinem Gerät'; +$a->strings['You can make this page always open when you use the New Post button in the Theme Customization settings.'] = 'Wenn du magst, kannst du unter den Benutzerdefinierte Theme-Einstellungen einstellen, dass diese Seite immer geöffnet wird, wenn du den "Neuer Beitrag" Button verwendest.'; +$a->strings['The feed for this item is unavailable.'] = 'Der Feed für diesen Beitrag ist nicht verfügbar.'; +$a->strings['Unable to follow this item.'] = 'Konnte dem Beitrag nicht folgen.'; +$a->strings['System down for maintenance'] = 'System zur Wartung abgeschaltet'; +$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.'] = 'Diese Friendica Instanz befindet sich derzeit im Wartungsmodus, entweder aufgrund von automatischen Updateprozessen oder weil die Administratoren der Instanz den Wartungsmodus aktiviert haben. Dies sollte ein vorübergehender Zustand sein. Bitte versuche es in ein paar Minuten erneut.'; +$a->strings['A Decentralized Social Network'] = 'Ein dezentrales Soziales Netzwerk'; +$a->strings['You need to be logged in to access this page.'] = 'Du musst angemeldet sein, um auf diese Seite zuzugreifen. '; +$a->strings['Files'] = 'Dateien'; +$a->strings['Upload'] = 'Hochladen'; +$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Entschuldige, die Datei scheint größer zu sein, als es die PHP-Konfiguration erlaubt.'; +$a->strings['Or - did you try to upload an empty file?'] = 'Oder - hast du versucht, eine leere Datei hochzuladen?'; +$a->strings['File exceeds size limit of %s'] = 'Die Datei ist größer als das erlaubte Limit von %s'; +$a->strings['File upload failed.'] = 'Hochladen der Datei fehlgeschlagen.'; +$a->strings['Unable to process image.'] = 'Konnte das Bild nicht bearbeiten.'; +$a->strings['Image upload failed.'] = 'Hochladen des Bildes gescheitert.'; $a->strings['List of all users'] = 'Liste aller Benutzerkonten'; $a->strings['Active'] = 'Aktive'; $a->strings['List of active accounts'] = 'Liste der aktiven Benutzerkonten'; -$a->strings['Pending'] = 'Ausstehend'; $a->strings['List of pending registrations'] = 'Liste der anstehenden Benutzerkonten'; -$a->strings['Blocked'] = 'Geblockt'; $a->strings['List of blocked users'] = 'Liste der geblockten Benutzer'; $a->strings['Deleted'] = 'Gelöscht'; $a->strings['List of pending user deletions'] = 'Liste der auf Löschung wartenden Benutzer'; $a->strings['Normal Account Page'] = 'Normales Konto'; $a->strings['Soapbox Page'] = 'Marktschreier-Konto'; -$a->strings['Public Forum'] = 'Öffentliches Forum'; +$a->strings['Public Group'] = 'Öffentliche Gruppe'; $a->strings['Automatic Friend Page'] = 'Automatische Freunde-Seite'; -$a->strings['Private Forum'] = 'Privates Forum'; +$a->strings['Private Group'] = 'Private Gruppe'; $a->strings['Personal Page'] = 'Persönliche Seite'; $a->strings['Organisation Page'] = 'Organisationsseite'; $a->strings['News Page'] = 'Nachrichtenseite'; -$a->strings['Community Forum'] = 'Gemeinschaftsforum'; +$a->strings['Community Group'] = 'Gemeinschaftsgruppe'; $a->strings['Relay'] = 'Relais'; $a->strings['You can\'t block a local contact, please block the user instead'] = 'Lokale Kontakte können nicht geblockt werden. Bitte blocke den Nutzer stattdessen.'; $a->strings['%s contact unblocked'] = [ @@ -1189,7 +1937,6 @@ $a->strings['This page allows you to prevent any message from a remote contact t $a->strings['Block Remote Contact'] = 'Blockiere entfernten Kontakt'; $a->strings['select all'] = 'Alle auswählen'; $a->strings['select none'] = 'Auswahl aufheben'; -$a->strings['Unblock'] = 'Entsperren'; $a->strings['No remote contact is blocked from this node.'] = 'Derzeit werden keine Kontakte auf diesem Knoten blockiert.'; $a->strings['Blocked Remote Contacts'] = 'Blockierte Kontakte von anderen Knoten'; $a->strings['Block New Remote Contact'] = 'Blockieren von weiteren Kontakten'; @@ -1262,7 +2009,6 @@ $a->strings['Imports patterns from the file that weren\'t already existing in th $a->strings['Replace'] = 'Ersetzen'; $a->strings['Replaces the current blocklist by the imported patterns.'] = 'Ersetzt die aktuelle Blockliste durch die importierten Muster.'; $a->strings['Blocked server domain pattern'] = 'Blockierte Server Domain Muster'; -$a->strings['Reason for the block'] = 'Begründung für die Blockierung'; $a->strings['Delete server domain pattern'] = 'Server Domain Muster löschen'; $a->strings['Check to delete this entry from the blocklist'] = 'Markieren, um diesen Eintrag von der Blocklist zu entfernen'; $a->strings['Server Domain Pattern Blocklist'] = 'Server Domain Muster Blockliste'; @@ -1274,66 +2020,12 @@ $a->strings['Save changes to the blocklist'] = 'Änderungen der Blockliste speic $a->strings['Current Entries in the Blocklist'] = 'Aktuelle Einträge der Blockliste'; $a->strings['Delete entry from the blocklist'] = 'Eintrag von der Blockliste entfernen'; $a->strings['Delete entry from the blocklist?'] = 'Eintrag von der Blockliste entfernen?'; -$a->strings['Update has been marked successful'] = 'Update wurde als erfolgreich markiert'; -$a->strings['Database structure update %s was successfully applied.'] = 'Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt.'; -$a->strings['Executing of database structure update %s failed with error: %s'] = 'Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s'; -$a->strings['Executing %s failed with error: %s'] = 'Die Ausführung von %s schlug fehl. Fehlermeldung: %s'; -$a->strings['Update %s was successfully applied.'] = 'Update %s war erfolgreich.'; -$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'Update %s hat keinen Status zurückgegeben. Unbekannter Status.'; -$a->strings['There was no additional update function %s that needed to be called.'] = 'Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste.'; -$a->strings['No failed updates.'] = 'Keine fehlgeschlagenen Updates.'; -$a->strings['Check database structure'] = 'Datenbankstruktur überprüfen'; -$a->strings['Failed Updates'] = 'Fehlgeschlagene Updates'; -$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben.'; -$a->strings['Mark success (if update was manually applied)'] = 'Als erfolgreich markieren (falls das Update manuell installiert wurde)'; -$a->strings['Attempt to execute this update step automatically'] = 'Versuchen, diesen Schritt automatisch auszuführen'; -$a->strings['Lock feature %s'] = 'Feature festlegen: %s'; -$a->strings['Manage Additional Features'] = 'Zusätzliche Features Verwalten'; -$a->strings['Other'] = 'Andere'; -$a->strings['unknown'] = 'Unbekannt'; -$a->strings['%2$s total system'] = [ - 0 => '%2$sServer gesamt', - 1 => '%2$s Server gesamt', -]; -$a->strings['%2$s active user last month'] = [ - 0 => '%2$s aktiver Nutzer im letzten Monat', - 1 => '%2$s aktive Nutzer im letzten Monat', -]; -$a->strings['%2$s active user last six months'] = [ - 0 => '%2$s aktive Nutzer im letzten halben Jahr', - 1 => '%2$s aktive Nutzer im letzten halben Jahr', -]; -$a->strings['%2$s registered user'] = [ - 0 => '%2$sregistrierter Nutzer', - 1 => '%2$s registrierte Nutzer', -]; -$a->strings['%2$s locally created post or comment'] = [ - 0 => '%2$slokal erstellter Beitrag oder Kommentar', - 1 => '%2$slokal erstellte Beiträge und Kommentare', -]; -$a->strings['%2$s post per user'] = [ - 0 => '%2$sBeitrag pro Nutzer', - 1 => '%2$sBeiträge pro Nutzer', -]; -$a->strings['%2$s user per system'] = [ - 0 => '%2$sNutzer pro System', - 1 => '%2$sNutzer pro System', -]; -$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.'] = '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.'; -$a->strings['Federation Statistics'] = 'Föderation Statistik'; -$a->strings['Currently this node is aware of %2$s node (%3$s active users last month, %4$s active users last six months, %5$s registered users in total) from the following platforms:'] = [ - 0 => 'Derzeit kennt dieser Knoten %2$s andere Knoten (mit %3$s aktiven Nutzern im letzten Monat, %4$s aktiven Nutzern im letzten halben Jahr, %5$s registrierten Nutzern insgesamt) von den folgenden Plattformen:', - 1 => 'Derzeit kennt dieser Knoten %2$s andere Knoten (mit %3$s aktiven Nutzern im letzten Monat, %4$s aktiven Nutzern im letzten halben Jahr, %5$s registrierten Nutzern insgesamt) von den folgenden Plattformen:', -]; $a->strings['Item marked for deletion.'] = 'Eintrag wurden zur Löschung markiert'; -$a->strings['Delete Item'] = 'Eintrag löschen'; $a->strings['Delete this Item'] = 'Diesen Eintrag löschen'; $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.'] = 'Auf dieser Seite kannst du Einträge von deinem Knoten löschen. Wenn der Eintrag der Anfang einer Diskussion ist, wird der gesamte Diskussionsverlauf gelöscht.'; $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.'] = 'Zur Löschung musst du die GUID des Eintrags kennen. Diese findest du z.B. durch die /display URL des Eintrags. Der letzte Teil der URL ist die GUID. Lautet die URL beispielsweise http://example.com/display/123456, ist die GUID 123456.'; $a->strings['GUID'] = 'GUID'; $a->strings['The GUID of the item you want to delete.'] = 'Die GUID des zu löschenden Eintrags'; -$a->strings['Item Source'] = 'Beitrags Quelle'; -$a->strings['Item Guid'] = 'Beitrags-Guid'; $a->strings['Item Id'] = 'Item Id'; $a->strings['Item URI'] = 'Item URI'; $a->strings['Terms'] = 'Terms'; @@ -1341,299 +2033,69 @@ $a->strings['Tag'] = 'Tag'; $a->strings['Type'] = 'Typ'; $a->strings['Term'] = 'Term'; $a->strings['URL'] = 'URL'; -$a->strings['Mention'] = 'Mention'; $a->strings['Implicit Mention'] = 'Implicit Mention'; -$a->strings['The logfile \'%s\' is not writable. No logging possible'] = 'Die Logdatei \'%s\' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich.'; -$a->strings['PHP log currently enabled.'] = 'PHP Protokollierung ist derzeit aktiviert.'; -$a->strings['PHP log currently disabled.'] = 'PHP Protokollierung ist derzeit nicht aktiviert.'; -$a->strings['Logs'] = 'Protokolle'; -$a->strings['Clear'] = 'löschen'; -$a->strings['Enable Debugging'] = 'Protokoll führen'; -$a->strings['Log file'] = 'Protokolldatei'; -$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis.'; -$a->strings['Log level'] = 'Protokoll-Level'; -$a->strings['PHP logging'] = 'PHP Protokollieren'; -$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.'] = 'Um die Protokollierung von PHP-Fehlern und Warnungen vorübergehend zu aktivieren, kannst du der Datei index.php deiner Installation Folgendes voranstellen. Der in der Datei \'error_log\' angegebene Dateiname ist relativ zum obersten Verzeichnis von Friendica und muss vom Webserver beschreibbar sein. Die Option \'1\' für \'log_errors\' und \'display_errors\' aktiviert diese Optionen, ersetze die \'1\' durch eine \'0\', um sie zu deaktivieren.'; -$a->strings['Error trying to open %1$s log file.
    Check to see if file %1$s exist and is readable.'] = 'Fehler beim Öffnen der Logdatei %1$s.
    Bitte überprüfe ob die Datei %1$s existiert und gelesen werden kann.'; -$a->strings['Couldn\'t open %1$s log file.
    Check to see if file %1$s is readable.'] = 'Konnte die Logdatei %1$s nicht öffnen.
    Bitte stelle sicher, dass die Datei %1$s lesbar ist.'; -$a->strings['View Logs'] = 'Protokolle anzeigen'; -$a->strings['Search in logs'] = 'Logs durchsuchen'; -$a->strings['Show all'] = 'Alle anzeigen'; -$a->strings['Date'] = 'Datum'; -$a->strings['Level'] = 'Level'; -$a->strings['Context'] = 'Zusammenhang'; -$a->strings['ALL'] = 'ALLE'; -$a->strings['View details'] = 'Details anzeigen'; -$a->strings['Click to view details'] = 'Anklicken zum Anzeigen der Details'; -$a->strings['Data'] = 'Daten'; -$a->strings['Source'] = 'Quelle'; -$a->strings['File'] = 'Datei'; -$a->strings['Line'] = 'Zeile'; -$a->strings['Function'] = 'Funktion'; -$a->strings['UID'] = 'UID'; -$a->strings['Process ID'] = 'Prozess ID'; -$a->strings['Close'] = 'Schließen'; -$a->strings['Inspect Deferred Worker Queue'] = 'Verzögerte Worker-Warteschlange inspizieren'; -$a->strings['This page lists the deferred worker jobs. This are jobs that couldn\'t be executed at the first time.'] = 'Auf dieser Seite werden die aufgeschobenen Worker-Jobs aufgelistet. Dies sind Jobs, die beim ersten Mal nicht ausgeführt werden konnten.'; -$a->strings['Inspect Worker Queue'] = 'Worker-Warteschlange inspizieren'; -$a->strings['This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you\'ve set up during install.'] = 'Auf dieser Seite werden die derzeit in der Warteschlange befindlichen Worker-Jobs aufgelistet. Diese Jobs werden vom Cronjob verarbeitet, den du während der Installation eingerichtet hast.'; -$a->strings['ID'] = 'ID'; -$a->strings['Command'] = 'Befehl'; -$a->strings['Job Parameters'] = 'Parameter der Aufgabe'; -$a->strings['Priority'] = 'Priorität'; -$a->strings['No special theme for mobile devices'] = 'Kein spezielles Theme für mobile Geräte verwenden.'; -$a->strings['%s - (Experimental)'] = '%s - (Experimentell)'; -$a->strings['No community page'] = 'Keine Gemeinschaftsseite'; -$a->strings['No community page for visitors'] = 'Keine Gemeinschaftsseite für Besucher'; -$a->strings['Public postings from users of this site'] = 'Öffentliche Beiträge von NutzerInnen dieser Seite'; -$a->strings['Public postings from the federated network'] = 'Öffentliche Beiträge aus dem föderalen Netzwerk'; -$a->strings['Public postings from local users and the federated network'] = 'Öffentliche Beiträge von lokalen Nutzern und aus dem föderalen Netzwerk'; -$a->strings['Multi user instance'] = 'Mehrbenutzer-Instanz'; -$a->strings['Closed'] = 'Geschlossen'; -$a->strings['Requires approval'] = 'Bedarf der Zustimmung'; -$a->strings['Open'] = 'Offen'; -$a->strings['No SSL policy, links will track page SSL state'] = 'Keine SSL-Richtlinie, Links werden das verwendete Protokoll beibehalten'; -$a->strings['Force all links to use SSL'] = 'SSL für alle Links erzwingen'; -$a->strings['Self-signed certificate, use SSL for local links only (discouraged)'] = 'Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)'; -$a->strings['Don\'t check'] = 'Nicht überprüfen'; -$a->strings['check the stable version'] = 'überprüfe die stabile Version'; -$a->strings['check the development version'] = 'überprüfe die Entwicklungsversion'; -$a->strings['none'] = 'keine'; -$a->strings['Local contacts'] = 'Lokale Kontakte'; -$a->strings['Interactors'] = 'Interaktionen'; -$a->strings['Site'] = 'Seite'; -$a->strings['General Information'] = 'Allgemeine Informationen'; -$a->strings['Republish users to directory'] = 'Nutzer erneut im globalen Verzeichnis veröffentlichen.'; -$a->strings['Registration'] = 'Registrierung'; -$a->strings['File upload'] = 'Datei hochladen'; -$a->strings['Policies'] = 'Regeln'; -$a->strings['Auto Discovered Contact Directory'] = 'Automatisch ein Kontaktverzeichnis erstellen'; -$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 Node'] = 'Knoten umziehen'; -$a->strings['Relocating your node enables you to change the DNS domain of this node and keep all the existing users and posts. This process takes a while and can only be started from the relocate console command like this:'] = 'Um deinen Friendica Knoten auf einen andere Domainnamen umzuziehen, und dabei alle existierenden Accounts und Beiträge zu behalten, kannst du dazu einen Konsolenbefehl verwenden. Die nötigen Aktualisierungen wird einige Zeit dauern und können nur auf der Konsole gestartet werden. Hierzu verwendest du einen Befehl wie den folgenden:'; -$a->strings['(Friendica directory)# bin/console relocate https://newdomain.com'] = '(Friendica Verzeichnis)# bin/console relocate https://newdomain.com'; -$a->strings['Site name'] = 'Seitenname'; -$a->strings['Sender Email'] = 'Absender für Emails'; -$a->strings['The email address your server shall use to send notification emails from.'] = 'Die E-Mail Adresse, die dein Server zum Versenden von Benachrichtigungen verwenden soll.'; -$a->strings['Name of the system actor'] = 'Name des System-Actors'; -$a->strings['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.'] = '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.'; -$a->strings['Banner/Logo'] = 'Banner/Logo'; -$a->strings['Email Banner/Logo'] = 'E-Mail Banner / Logo'; -$a->strings['Shortcut icon'] = 'Shortcut Icon'; -$a->strings['Link to an icon that will be used for browsers.'] = 'Link zu einem Icon, das Browser verwenden werden.'; -$a->strings['Touch icon'] = 'Touch Icon'; -$a->strings['Link to an icon that will be used for tablets and mobiles.'] = 'Link zu einem Icon, das Tablets und Mobiltelefone verwenden sollen.'; -$a->strings['Additional Info'] = 'Zusätzliche Informationen'; -$a->strings['For public servers: you can add additional information here that will be listed at %s/servers.'] = 'Für öffentliche Server kannst du hier zusätzliche Informationen angeben, die dann auf %s/servers angezeigt werden.'; -$a->strings['System language'] = 'Systemsprache'; -$a->strings['System theme'] = 'Systemweites Theme'; -$a->strings['Default system theme - may be over-ridden by user profiles - Change default theme settings'] = 'Standard-Theme des Systems - kann von Benutzerprofilen überschrieben werden - Einstellungen des Standard-Themes ändern'; -$a->strings['Mobile system theme'] = 'Systemweites mobiles Theme'; -$a->strings['Theme for mobile devices'] = 'Theme für mobile Geräte'; -$a->strings['SSL link policy'] = 'Regeln für SSL Links'; -$a->strings['Determines whether generated links should be forced to use SSL'] = 'Bestimmt, ob generierte Links SSL verwenden müssen'; -$a->strings['Force SSL'] = 'Erzwinge SSL'; -$a->strings['Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'] = 'Erzwinge SSL für alle Nicht-SSL-Anfragen - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife.'; -$a->strings['Show help entry from navigation menu'] = 'Zeige den Hilfe-Eintrag im Navigationsmenü an'; -$a->strings['Displays the menu entry for the Help pages from the navigation menu. It is always accessible by calling /help directly.'] = 'Zeigt im Navigationsmenü den Eintrag für die Hilfe-Seiten an. Es ist immer möglich diese Seiten direkt über /help in der Adresseingabe des Browsers aufzurufen.'; -$a->strings['Single user instance'] = 'Ein-Nutzer Instanz'; -$a->strings['Make this instance multi-user or single-user for the named user'] = 'Bestimmt, ob es sich bei dieser Instanz um eine Installation mit nur einen Nutzer oder mit mehreren Nutzern handelt.'; -$a->strings['Maximum image size'] = 'Maximale Bildgröße'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit.'; -$a->strings['Maximum image length'] = 'Maximale Bildlänge'; -$a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Maximale Länge in Pixeln der längsten Seite eines hochgeladenen Bildes. Grundeinstellung ist -1, was keine Einschränkung bedeutet.'; -$a->strings['JPEG image quality'] = 'Qualität des JPEG Bildes'; -$a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = 'Hochgeladene JPEG-Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust.'; -$a->strings['Register policy'] = 'Registrierungsmethode'; -$a->strings['Maximum Daily Registrations'] = 'Maximum täglicher Registrierungen'; -$a->strings['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.'] = '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.'; -$a->strings['Register text'] = 'Registrierungstext'; -$a->strings['Will be displayed prominently on the registration page. You can use BBCode here.'] = 'Wird gut sichtbar auf der Registrierungsseite angezeigt. BBCode kann verwendet werden.'; -$a->strings['Forbidden Nicknames'] = 'Verbotene Spitznamen'; -$a->strings['Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142.'] = 'Durch Kommas getrennte Liste von Spitznamen, die von der Registrierung ausgeschlossen sind. Die Vorgabe ist eine Liste von Rollennamen nach RFC 2142.'; -$a->strings['Accounts abandoned after x days'] = 'Nutzerkonten gelten nach x Tagen als unbenutzt'; -$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = 'Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit.'; -$a->strings['Allowed friend domains'] = 'Erlaubte Domains für Kontakte'; -$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Liste der Domains, die für Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben.'; -$a->strings['Allowed email domains'] = 'Erlaubte Domains für E-Mails'; -$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = '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.'; -$a->strings['No OEmbed rich content'] = 'OEmbed nicht verwenden'; -$a->strings['Don\'t show the rich content (e.g. embedded PDF), except from the domains listed below.'] = 'Verhindert das Einbetten von reichhaltigen Inhalten (z.B. eingebettete PDF Dateien). Ausgenommen von dieser Regel werden Domänen, die unten aufgeführt werden.'; -$a->strings['Trusted third-party domains'] = 'Vertrauenswürdige Drittanbieter-Domains'; -$a->strings['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.'] = 'Komma separierte Liste von Domains von denen Inhalte in Beiträgen eingebettet werden dürfen. Alle Subdomains werden ebenfalls akzeptiert.'; -$a->strings['Block public'] = 'Öffentlichen Zugriff blockieren'; -$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist.'; -$a->strings['Force publish'] = 'Erzwinge Veröffentlichung'; -$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen.'; -$a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Wenn du diese Option aktivierst, verstößt das unter Umständen gegen Gesetze wie die EU-DSGVO.'; -$a->strings['Global directory URL'] = 'URL des weltweiten Verzeichnisses'; -$a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar.'; -$a->strings['Private posts by default for new users'] = 'Private Beiträge als Standard für neue Nutzer'; -$a->strings['Set default post permissions for all new members to the default privacy group rather than public.'] = 'Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen.'; -$a->strings['Don\'t include post content in email notifications'] = 'Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden'; -$a->strings['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.'] = 'Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw. zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden.'; -$a->strings['Disallow public access to addons listed in the apps menu.'] = 'Öffentlichen Zugriff auf Addons im Apps Menü verbieten.'; -$a->strings['Checking this box will restrict addons listed in the apps menu to members only.'] = 'Wenn ausgewählt, werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt.'; -$a->strings['Don\'t embed private images in posts'] = 'Private Bilder nicht in Beiträgen einbetten.'; -$a->strings['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.'] = '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.'; -$a->strings['Explicit Content'] = 'Sensibler Inhalt'; -$a->strings['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.'] = '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.'; -$a->strings['Proxify external content'] = 'Proxy für externe Inhalte'; -$a->strings['Route external content via the proxy functionality. This is used for example for some OEmbed accesses and in some other rare cases.'] = 'Externe Inhalte werden durch einen Proxy geleitet. Die wird z.B. für das aufrufen von OEmbed Inhalten verwendet und einigen anderen seltenen Fällen.'; -$a->strings['Cache contact avatars'] = 'Kontaktprofilbilder zwischenspeichern'; -$a->strings['Locally store the avatar pictures of the contacts. This uses a lot of storage space but it increases the performance.'] = 'Die Profilbilder der Kontakte zwischenspeichern. Der Zwischenspeicher verbraucht viel Platz im Speicherplatz, verbessert aber die Performance.'; -$a->strings['Allow Users to set remote_self'] = 'Nutzern erlauben, das remote_self Flag zu setzen'; -$a->strings['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.'] = '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).'; -$a->strings['Enable multiple registrations'] = 'Erlaube Mehrfachregistrierung'; -$a->strings['Enable users to register additional accounts for use as pages.'] = 'Erlaube es Benutzern weitere Konten für Organisationen o.ä. mit der gleichen E-Mail Adresse anzulegen.'; -$a->strings['Enable OpenID'] = 'OpenID aktivieren'; -$a->strings['Enable OpenID support for registration and logins.'] = 'OpenID Unterstützung bei der Registrierung und dem Login aktivieren.'; -$a->strings['Enable Fullname check'] = 'Namen auf Vollständigkeit überprüfen'; -$a->strings['Enable check to only allow users to register with a space between the first name and the last name in their full name.'] = 'Erlaubt Nutzern Konten nur dann zu registrieren, bei denen im Namensfeld ein Leerzeichen zur Trennung von Vor- und Nachnamen verwendet wird.'; -$a->strings['Community pages for visitors'] = 'Für Besucher verfügbare Gemeinschaftsseite'; -$a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = 'Welche Gemeinschaftsseiten sollen für Besucher dieses Knotens verfügbar sein? Lokale Nutzer können grundsätzlich beide Seiten verwenden.'; -$a->strings['Posts per user on community page'] = 'Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite'; -$a->strings['The maximum number of posts per user on the community page. (Not valid for "Global Community")'] = 'Maximale Anzahl der Beiträge, die von jedem Nutzer auf der Gemeinschaftsseite angezeigt werden. (Gilt nicht für die \'Globale Gemeinschaftsseite\')'; -$a->strings['Enable Mail support'] = 'E-Mail Unterstützung aktivieren'; -$a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'Aktiviert die Unterstützung IMAP Ordner abzurufen und ermöglicht es auch auf E-Mails zu antworten.'; -$a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'E-Mail Unterstützung kann nicht aktiviert werden, da das PHP IMAP Modul nicht installiert ist.'; -$a->strings['Enable OStatus support'] = 'OStatus Unterstützung aktivieren'; -$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'Aktiviere die OStatus (StatusNet, GNU Social usw.) Unterstützung. Die Kommunikation über das OStatus Protokoll ist grundsätzlich öffentlich.'; -$a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Diaspora Unterstützung kann nicht aktiviert werden, da Friendica in ein Unterverzeichnis installiert ist.'; -$a->strings['Enable Diaspora support'] = 'Diaspora-Unterstützung aktivieren'; -$a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'Aktiviere die Unterstützung des Diaspora Protokolls zur Kommunikation mit Diaspora Servern.'; -$a->strings['Verify SSL'] = 'SSL Überprüfen'; -$a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = '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.'; -$a->strings['Proxy user'] = 'Proxy-Nutzer'; -$a->strings['User name for the proxy server.'] = 'Nutzername für den Proxy-Server'; -$a->strings['Proxy URL'] = 'Proxy-URL'; -$a->strings['If you want to use a proxy server that Friendica should use to connect to the network, put the URL of the proxy here.'] = 'Wenn Friendica einen Proxy-Server verwenden soll um das Netzwerk zu erreichen, füge hier die URL des Proxys ein.'; -$a->strings['Network timeout'] = 'Netzwerk-Wartezeit'; -$a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen).'; -$a->strings['Maximum Load Average'] = 'Maximum Load Average'; -$a->strings['Maximum system load before delivery and poll processes are deferred - default %d.'] = 'Maximale System-LOAD bevor Verteil- und Empfangsprozesse verschoben werden - Standard %d'; -$a->strings['Minimal Memory'] = 'Minimaler Speicher'; -$a->strings['Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).'] = 'Minimal freier Speicher in MB für den Worker Prozess. Benötigt Zugriff auf /proc/meminfo - Standardwert ist 0 (deaktiviert)'; -$a->strings['Periodically optimize tables'] = 'Optimiere die Tabellen regelmäßig'; -$a->strings['Periodically optimize tables like the cache and the workerqueue'] = 'Optimiert Tabellen wie den Cache oder die Worker-Warteschlage regelmäßig.'; -$a->strings['Discover followers/followings from contacts'] = 'Endecke folgende und gefolgte Kontakte von Kontakten'; -$a->strings['If enabled, contacts are checked for their followers and following contacts.'] = 'Ist dies aktiv, werden die Kontakte auf deren folgenden und gefolgten Kontakte überprüft.'; -$a->strings['None - deactivated'] = 'Keine - deaktiviert'; -$a->strings['Local contacts - contacts of our local contacts are discovered for their followers/followings.'] = 'Lokale Kontakte - Die Beziehungen der lokalen Kontakte werden analysiert.'; -$a->strings['Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings.'] = 'Interaktionen - Kontakte der lokalen Kontakte sowie die Profile die mit öffentlichen lokalen Beiträgen interagiert haben, werden bzgl. ihrer Beziehungen analysiert.'; -$a->strings['Synchronize the contacts with the directory server'] = 'Gleiche die Kontakte mit dem Directory-Server ab'; -$a->strings['if enabled, the system will check periodically for new contacts on the defined directory server.'] = 'Ist dies aktiv, wird das System regelmäßig auf dem Verzeichnis-Server nach neuen potentiellen Kontakten nachsehen.'; -$a->strings['Days between requery'] = 'Tage zwischen erneuten Abfragen'; -$a->strings['Number of days after which a server is requeried for his contacts.'] = 'Legt das Abfrageintervall fest, nach dem ein Server erneut nach Kontakten abgefragt werden soll.'; -$a->strings['Discover contacts from other servers'] = 'Neue Kontakte auf anderen Servern entdecken'; -$a->strings['Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers.'] = 'Frage regelmäßig bei anderen Servern nach neuen potentiellen Kontakten an. Diese Anfragen werden an Friendica, Mastodon und Hubzilla Server gesandt.'; -$a->strings['Search the local directory'] = 'Lokales Verzeichnis durchsuchen'; -$a->strings['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.'] = '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.'; -$a->strings['Publish server information'] = 'Server-Informationen veröffentlichen'; -$a->strings['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.'] = '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.'; -$a->strings['Check upstream version'] = 'Suche nach Updates'; -$a->strings['Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview.'] = '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.'; -$a->strings['Suppress Tags'] = 'Tags unterdrücken'; -$a->strings['Suppress showing a list of hashtags at the end of the posting.'] = 'Unterdrückt die Anzeige von Tags am Ende eines Beitrags.'; -$a->strings['Clean database'] = 'Datenbank aufräumen'; -$a->strings['Remove old remote items, orphaned database records and old content from some other helper tables.'] = 'Entferne alte Beiträge von anderen Knoten, verwaiste Einträge und alten Inhalt einiger Hilfstabellen.'; -$a->strings['Lifespan of remote items'] = 'Lebensdauer von Beiträgen anderer Knoten'; -$a->strings['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.'] = '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.'; -$a->strings['Lifespan of unclaimed items'] = 'Lebensdauer nicht angeforderter Beiträge'; -$a->strings['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.'] = '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.'; -$a->strings['Lifespan of raw conversation data'] = 'Lebensdauer der Beiträge'; -$a->strings['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.'] = '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.'; -$a->strings['Maximum numbers of comments per post'] = 'Maximale Anzahl von Kommentaren pro Beitrag'; -$a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100.'; -$a->strings['Maximum numbers of comments per post on the display page'] = 'Maximale Anzahl von Kommentaren in der Einzelansicht'; -$a->strings['How many comments should be shown on the single view for each post? Default value is 1000.'] = 'Wie viele Kommentare sollen auf der Einzelansicht eines Beitrags angezeigt werden? Grundeinstellung sind 1000.'; -$a->strings['Temp path'] = 'Temp-Pfad'; -$a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = '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.'; -$a->strings['Only search in tags'] = 'Nur in Tags suchen'; -$a->strings['On large systems the text search can slow down the system extremely.'] = 'Auf großen Knoten kann die Volltext-Suche das System ausbremsen.'; -$a->strings['Generate counts per contact group when calculating network count'] = 'Erstelle Zählungen je Kontaktgruppe bei der Berechnung der Netzwerkanzahl'; -$a->strings['On systems with users that heavily use contact groups the query can be very expensive.'] = 'Auf Systemen mit Benutzern, die häufig Kontaktgruppen verwenden, kann die Abfrage sehr aufwändig sein.'; -$a->strings['Maximum number of parallel workers'] = 'Maximale Anzahl parallel laufender Worker'; -$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['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'; -$a->strings['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.'] = '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.'; -$a->strings['Disabled'] = 'Deaktiviert'; -$a->strings['all'] = 'Alle'; -$a->strings['tags'] = 'Schlagwörter'; -$a->strings['Server tags'] = 'Server-Schlagworte'; -$a->strings['Comma separated list of tags for the "tags" subscription.'] = 'Liste von Schlagworten, die abonniert werden sollen, mit Komma getrennt.'; -$a->strings['Deny Server tags'] = 'Server Tags ablehnen'; -$a->strings['Comma separated list of tags that are rejected.'] = 'Durch Kommas getrennte Liste der Tags, die abgelehnt werden'; -$a->strings['Allow user tags'] = 'Verwende Schlagworte der Nutzer'; -$a->strings['If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".'] = 'Ist dies aktiviert, werden die Schlagwörter der gespeicherten Suchen zusätzlich zu den oben definierten Server-Schlagworten abonniert.'; -$a->strings['Start Relocation'] = 'Umsiedlung starten'; -$a->strings['Storage backend, %s is invalid.'] = 'Speicher-Backend, %s ist ungültig.'; -$a->strings['Storage backend %s error: %s'] = 'Speicher-Backend %s Fehler %s'; -$a->strings['Invalid storage backend setting value.'] = 'Ungültige Einstellung für das Datenspeicher-Backend'; -$a->strings['Current Storage Backend'] = 'Aktuelles Speicher-Backend'; -$a->strings['Storage Configuration'] = 'Speicher Konfiguration'; -$a->strings['Storage'] = 'Speicher'; -$a->strings['Save & Use storage backend'] = 'Speichern & Dieses Speicher-Backend verwenden'; -$a->strings['Use storage backend'] = 'Dieses Speicher-Backend verwenden'; -$a->strings['Save & Reload'] = 'Speichern & Neu Laden'; -$a->strings['This backend doesn\'t have custom settings'] = 'Dieses Backend hat keine zusätzlichen Einstellungen'; -$a->strings['Database (legacy)'] = 'Datenbank (legacy)'; -$a->strings['Template engine (%s) error: %s'] = 'Template engine (%s) Fehler: %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.
    '] = 'Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB-Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du hier finden. Du kannst außerdem mit dem Befehl php bin/console.php dbstructure toinnodb auf der Kommandozeile die Umstellung automatisch vornehmen lassen.'; -$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.
    '] = 'Deine DB verwendet derzeit noch InnoDB Tabellen im Antelope Dateiformat. Du solltest diese auf das Barracuda Format ändern. Friendica verwendet einige Features, die nicht vom Antelope Format unterstützt werden. Hier findest du eine Anleitung für die Umstellung. Alternativ kannst du auch den Befehl php bin/console.php dbstructure toinnodb In der Kommandozeile deiner Friendica Instanz verwenden um die Formate automatisch anzupassen.
    '; -$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.
    '] = 'Der Wert table_definition_cache ist zu niedrig (%d). Dadurch können Datenbank Fehler "Prepared statement needs to be re-prepared" hervor gerufen werden. Bitte setze den Wert auf mindestens %d. Weiterführende Informationen findest du hier.'; -$a->strings['There is a new version of Friendica available for download. Your current version is %1$s, upstream version is %2$s'] = 'Es gibt eine neue Version von Friendica. Du verwendest derzeit die Version %1$s, die aktuelle Version ist %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.'] = 'Das Update der Datenbank ist fehlgeschlagen. Bitte führe \'php bin/console.php dbstructure update\' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen.'; -$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.)'] = 'Das letzte Update ist fehlgeschlagen. Bitte führe "php bin/console.php dbstructure update" auf der Kommandozeile aus und werfe einen Blick auf eventuell auftretende Fehler. (Zusätzliche Informationen zu Fehlern könnten in den Logdateien stehen.)'; -$a->strings['The worker was never executed. Please check your database structure!'] = 'Der Hintergrundprozess (worker) wurde noch nie gestartet. Bitte überprüfe deine Datenbankstruktur.'; -$a->strings['The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings.'] = 'Der Hintergrundprozess (worker) wurde zuletzt um %s UTC ausgeführt. Das war vor mehr als einer Stunde. Bitte überprüfe deine crontab-Einstellungen.'; -$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.'] = 'Die Konfiguration von Friendica befindet sich ab jetzt in der \'config/local.config.php\' Datei. Kopiere bitte die Datei \'config/local-sample.config.php\' nach \'config/local.config.php\' und setze die Konfigurationvariablen so wie in der alten .htconfig.php. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen.'; -$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.'] = 'Die Konfiguration von Friendica befindet sich ab jetzt in der \'config/local.config.php\' Datei. Kopiere bitte die Datei \'config/local-sample.config.php\' nach \'config/local.config.php\' und setze die Konfigurationvariablen so wie in der alten config/local.ini.php. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen.'; -$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.'] = '%s konnte von deinem System nicht aufgerufen werden. Dies deutet auf ein schwerwiegendes Problem deiner Konfiguration hin. Bitte konsultiere die Installations-Dokumentation zum Beheben des Problems.'; -$a->strings['The logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Die Logdatei \'%s\' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich (Fehler: \'%s\')'; -$a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Die Logdatei \'%s\' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich (Fehler: \'%s\')'; -$a->strings['Friendica\'s system.basepath was updated from \'%s\' to \'%s\'. Please remove the system.basepath from your db to avoid differences.'] = 'Friendica\'s system.basepath wurde aktualisiert \'%s\' von \'%s\'. Bitte entferne system.basepath aus der Datenbank um Unterschiede zu vermeiden.'; -$a->strings['Friendica\'s current system.basepath \'%s\' is wrong and the config file \'%s\' isn\'t used.'] = 'Friendica\'s aktueller system.basepath \'%s\' ist verkehrt und die config file \'%s\' wird nicht benutzt.'; -$a->strings['Friendica\'s current system.basepath \'%s\' is not equal to the config file \'%s\'. Please fix your configuration.'] = 'Friendica\'s aktueller system.basepath \'%s\' ist nicht gleich wie die config file \'%s\'. Bitte korrigiere deine Konfiguration.'; +$a->strings['Item not found'] = 'Beitrag nicht gefunden'; +$a->strings['No source recorded'] = 'Keine Quelle aufgezeichnet'; +$a->strings['Please make sure the debug.store_source config key is set in config/local.config.php for future items to have sources.'] = 'Bitte stelle sicher, dass der Config-Schlüssel debug.store_source in der config/local.config.php gesetzt ist um in Zukunft Quellen zu haben.'; +$a->strings['Item Guid'] = 'Beitrags-Guid'; +$a->strings['Contact not found or their server is already blocked on this node.'] = 'Kontakt nicht gefunden oder seine Instanz ist bereits auf dieser Instanz blockiert.'; +$a->strings['Please login to access this page.'] = 'Bitte melde dich an, um auf diese Seite zuzugreifen.'; +$a->strings['Create Moderation Report'] = 'Moderationsbericht erstellen'; +$a->strings['Pick Contact'] = 'Kontakt wählen'; +$a->strings['Please enter below the contact address or profile URL you would like to create a moderation report about.'] = 'Bitte gib unten die Kontaktadresse oder Profil-URL ein, über die du einen Moderationsbericht erstellen möchten.'; +$a->strings['Contact address/URL'] = 'Kontaktadresse/URL'; +$a->strings['Pick Category'] = 'Kategorie auswählen'; +$a->strings['Please pick below the category of your report.'] = 'Bitte wähle unten die Kategorie für deinen Bericht.'; +$a->strings['Spam'] = 'Spam'; +$a->strings['This contact is publishing many repeated/overly long posts/replies or advertising their product/websites in otherwise irrelevant conversations.'] = 'Dieser Kontakt veröffentlicht viele wiederholte/überlange Beiträge/Antworten oder wirbt für sein Produkt/seine Website in ansonsten belanglosen Gesprächen.'; +$a->strings['Illegal Content'] = 'Illegaler Inhalt'; +$a->strings['This contact is publishing content that is considered illegal in this node\'s hosting juridiction.'] = 'Dieser Kontakt veröffentlicht Inhalte, die in dem Land, in dem diese Instanz gehostet wird, als illegal gelten.'; +$a->strings['Community Safety'] = 'Sicherheit in der Gemeinschaft'; +$a->strings['This contact aggravated you or other people, by being provocative or insensitive, intentionally or not. This includes disclosing people\'s private information (doxxing), posting threats or offensive pictures in posts or replies.'] = 'Dieser Kontakt hat dich oder andere Personen verärgert, indem er absichtlich oder unabsichtlich provokativ oder unsensibel war. Dazu gehören die Offenlegung privater Informationen (Doxxing), das Posten von Drohungen oder anstößigen Bildern in Beiträgen oder Antworten.'; +$a->strings['Unwanted Content/Behavior'] = 'Unerwünschte Inhalte/Verhaltensweisen'; +$a->strings['This contact has repeatedly published content irrelevant to the node\'s theme or is openly criticizing the node\'s administration/moderation without directly engaging with the relevant people for example or repeatedly nitpicking on a sensitive topic.'] = 'Dieser Kontakt hat wiederholt Inhalte veröffentlicht, die für das Thema der Instanz irrelevant sind, oder er kritisiert offen die Verwaltung/Moderation der Instanz, ohne sich direkt mit den betreffenden Personen auseinanderzusetzen, oder er ist wiederholt erbsenzählerisch bei einem heiklen Thema.'; +$a->strings['Rules Violation'] = 'Verstoß gegen die Regeln'; +$a->strings['This contact violated one or more rules of this node. You will be able to pick which one(s) in the next step.'] = 'Dieser Kontakt hat gegen eine oder mehrere Regeln dieser Instanz verstoßen. Du kannst im nächsten Schritt auswählen, welche.'; +$a->strings['Please elaborate below why you submitted this report. The more details you provide, the better your report can be handled.'] = 'Bitte gib im Folgenden an, warum du diese Meldung eingereicht hast. Je mehr Details du angibst, desto besser kann Ihre Meldung bearbeitet werden.'; +$a->strings['Additional Information'] = 'Zusätzliche Informationen'; +$a->strings['Please provide any additional information relevant to this particular report. You will be able to attach posts by this contact in the next step, but any context is welcome.'] = 'Bitte gib alle zusätzlichen Informationen an, die für diesen Bericht relevant sind. Du kannst im nächsten Schritt Beiträge dieser Kontaktperson anhängen, aber jeder Kontext ist willkommen.'; +$a->strings['Pick Rules'] = 'Regeln auswählen'; +$a->strings['Please pick below the node rules you believe this contact violated.'] = 'Bitte wähle unten die Instanzregeln aus, gegen die dieser Kontakt deiner Meinung nach verstoßen hat.'; +$a->strings['Pick Posts'] = 'Beiträge auswählen'; +$a->strings['Please optionally pick posts to attach to your report.'] = 'Bitte wähle optional Beiträge aus, die du an diesen Bericht anhängen möchtest.'; +$a->strings['Submit Report'] = 'Bericht senden'; +$a->strings['Further Action'] = 'Weiteres Vorgehen'; +$a->strings['You can also perform one of the following action on the contact you reported:'] = 'Du kannst auch eine der folgenden Aktionen für den gemeldeten Kontakt durchführen:'; +$a->strings['Nothing'] = 'Nichts'; +$a->strings['Collapse contact'] = 'Kontakt verbergen'; +$a->strings['Their posts and replies will keep appearing in your Network page but their content will be collapsed by default.'] = 'Ihre Beiträge und Antworten werden weiterhin auf Ihrer Netzwerkseite angezeigt, aber ihr Inhalt wird standardmäßig ausgeblendet.'; +$a->strings['Their posts won\'t appear in your Network page anymore, but their replies can appear in forum threads. They still can follow you.'] = 'Ihre Beiträge werden nicht mehr auf deiner Netzwerkseite angezeigt, aber ihre Antworten können in Forenbeiträgen erscheinen. Sie können dir immer noch folgen.'; +$a->strings['Block contact'] = 'Kontakt blockieren'; +$a->strings['Their posts won\'t appear in your Network page anymore, but their replies can appear in forum threads, with their content collapsed by default. They cannot follow you but still can have access to your public posts by other means.'] = 'Ihre Beiträge erscheinen nicht mehr auf deiner Netzwerkseite, aber ihre Antworten können in Forumsthemen erscheinen, wobei ihr Inhalt standardmäßig eingeklappt ist. Sie können dir nicht folgen, haben aber auf anderem Wege weiterhin Zugang zu deinen öffentlichen Beiträgen.'; +$a->strings['Forward report'] = 'Bericht weiterleiten'; +$a->strings['Would you ike to forward this report to the remote server?'] = 'Möchtest du diesen Bericht an den Entfernten-Server weiterleiten?'; +$a->strings['1. Pick a contact'] = '1. Wähle einen Kontakt'; +$a->strings['2. Pick a category'] = '2. Wähle eine Kategorie'; +$a->strings['2a. Pick rules'] = '2a. Regeln wählen'; +$a->strings['2b. Add comment'] = '2b. Kommentar hinzufügen'; +$a->strings['3. Pick posts'] = '3. Beiträge auswählen'; +$a->strings['List of reports'] = 'Liste der Reports'; +$a->strings['This page display reports created by our or remote users.'] = 'Auf dieser Seite werden Reports angezeigt, die von unseren oder entfernten Benutzern erstellt wurden.'; +$a->strings['No report exists at this node.'] = 'Auf dieser Instanz ist kein Report vorhanden.'; +$a->strings['Category'] = 'Kategorie'; +$a->strings['%s total report'] = [ + 0 => '%s Report', + 1 => '%s Reports insgesamt', +]; +$a->strings['URL of the reported contact.'] = 'URL des gemeldeten Kontakts.'; $a->strings['Normal Account'] = 'Normales Konto'; $a->strings['Automatic Follower Account'] = 'Automatisch folgendes Konto (Marktschreier)'; -$a->strings['Public Forum Account'] = 'Öffentliches Forum-Konto'; +$a->strings['Public Group Account'] = 'Öffentliches Gruppen-Konto'; $a->strings['Automatic Friend Account'] = 'Automatische Freunde-Seite'; $a->strings['Blog Account'] = 'Blog-Konto'; -$a->strings['Private Forum Account'] = 'Privates Forum-Konto'; -$a->strings['Message queues'] = 'Nachrichten-Warteschlangen'; -$a->strings['Server Settings'] = 'Servereinstellungen'; +$a->strings['Private Group Account'] = 'Privates Gruppen-Konto'; $a->strings['Registered users'] = 'Registrierte Personen'; $a->strings['Pending registrations'] = 'Anstehende Anmeldungen'; -$a->strings['Version'] = 'Version'; -$a->strings['Active addons'] = 'Aktivierte Addons'; -$a->strings['Theme %s disabled.'] = 'Theme %s deaktiviert.'; -$a->strings['Theme %s successfully enabled.'] = 'Theme %s erfolgreich aktiviert.'; -$a->strings['Theme %s failed to install.'] = 'Theme %s konnte nicht aktiviert werden.'; -$a->strings['Screenshot'] = 'Bildschirmfoto'; -$a->strings['Themes'] = 'Themen'; -$a->strings['Unknown theme.'] = 'Unbekanntes Theme'; -$a->strings['Themes reloaded'] = 'Themes wurden neu geladen'; -$a->strings['Reload active themes'] = 'Aktives Theme neu laden'; -$a->strings['No themes found on the system. They should be placed in %1$s'] = 'Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s platziert werden.'; -$a->strings['[Experimental]'] = '[Experimentell]'; -$a->strings['[Unsupported]'] = '[Nicht unterstützt]'; -$a->strings['Display Terms of Service'] = 'Nutzungsbedingungen anzeigen'; -$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.'] = 'Aktiviert die Seite für die Nutzungsbedingungen. Ist dies der Fall, werden sie auch von der Registrierungsseite und der allgemeinen Informationsseite verlinkt.'; -$a->strings['Display Privacy Statement'] = 'Datenschutzerklärung anzeigen'; -$a->strings['Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR.'] = 'Zeige Informationen über die zum Betrieb der Seite notwendigen, personenbezogenen Daten an, wie es z.B. die EU.-DSGVO verlangt.'; -$a->strings['Privacy Statement Preview'] = 'Vorschau: Datenschutzerklärung'; -$a->strings['The Terms of Service'] = 'Die Nutzungsbedingungen'; -$a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = 'Füge hier die Nutzungsbedingungen deines Knotens ein. Du kannst BBCode zur Formatierung verwenden. Überschriften sollten [h2] oder darunter sein.'; $a->strings['%s user blocked'] = [ 0 => '%s Nutzer blockiert', 1 => '%s Nutzer blockiert', @@ -1669,7 +2131,6 @@ $a->strings['Nickname of the new user.'] = 'Spitznamen für den neuen Nutzer'; $a->strings['Email address of the new user.'] = 'Email Adresse des neuen Nutzers'; $a->strings['Users awaiting permanent deletion'] = 'Nutzer wartet auf permanente Löschung'; $a->strings['Permanent deletion'] = 'Permanent löschen'; -$a->strings['Users'] = 'Nutzer'; $a->strings['User waiting for permanent deletion'] = 'Nutzer wartet auf permanente Löschung'; $a->strings['%s user approved'] = [ 0 => '%sNutzer zugelassen', @@ -1686,395 +2147,6 @@ $a->strings['Request date'] = 'Anfragedatum'; $a->strings['No registrations.'] = 'Keine Neuanmeldungen.'; $a->strings['Note from the user'] = 'Hinweis vom Nutzer'; $a->strings['Deny'] = 'Verwehren'; -$a->strings['API endpoint %s %s is not implemented'] = 'API Endpunkt %s %s ist nicht implementiert'; -$a->strings['The API endpoint is currently not implemented but might be in the future.'] = 'The API endpoint is currently not implemented but might be in the future.'; -$a->strings['Missing parameters'] = 'Fehlende Parameter'; -$a->strings['Only starting posts can be bookmarked'] = 'Lesezeichen können nur für den ersten Beitrag einer Unterhaltung angelegt werden'; -$a->strings['Only starting posts can be muted'] = 'Nur die ersten Beiträge von Unterhaltungen können stumm geschaltet werden'; -$a->strings['Posts from %s can\'t be shared'] = 'Beiträge von %s können nicht geteilt werden'; -$a->strings['Only starting posts can be unbookmarked'] = 'Lesezeichen können nur für die ersten Beiträge einer Unterhaltung entfernt werden'; -$a->strings['Only starting posts can be unmuted'] = 'Nur die ersten Beiträge einer Unterhaltung können wieder auf laut gestellt werden'; -$a->strings['Posts from %s can\'t be unshared'] = 'Beiträge von %s können nicht ungeteilt werden'; -$a->strings['Contact not found'] = 'Kontakt nicht gefunden'; -$a->strings['No installed applications.'] = 'Keine Applikationen installiert.'; -$a->strings['Applications'] = 'Anwendungen'; -$a->strings['Item was not found.'] = 'Beitrag konnte nicht gefunden werden.'; -$a->strings['Please login to continue.'] = 'Bitte melde dich an, um fortzufahren.'; -$a->strings['You don\'t have access to administration pages.'] = 'Du hast keinen Zugriff auf die Administrationsseiten.'; -$a->strings['Submanaged account can\'t access the administration pages. Please log back in as the main account.'] = 'Verwaltete Benutzerkonten haben keinen Zugriff auf die Administrationsseiten. Bitte wechsle wieder zurück auf das Administrator Konto.'; -$a->strings['Overview'] = 'Übersicht'; -$a->strings['Configuration'] = 'Konfiguration'; -$a->strings['Additional features'] = 'Zusätzliche Features'; -$a->strings['Database'] = 'Datenbank'; -$a->strings['DB updates'] = 'DB Updates'; -$a->strings['Inspect Deferred Workers'] = 'Verzögerte Worker inspizieren'; -$a->strings['Inspect worker Queue'] = 'Worker Warteschlange inspizieren'; -$a->strings['Tools'] = 'Werkzeuge'; -$a->strings['Contact Blocklist'] = 'Kontakt Blockliste'; -$a->strings['Server Blocklist'] = 'Server Blockliste'; -$a->strings['Diagnostics'] = 'Diagnostik'; -$a->strings['PHP Info'] = 'PHP-Info'; -$a->strings['probe address'] = 'Adresse untersuchen'; -$a->strings['check webfinger'] = 'Webfinger überprüfen'; -$a->strings['Babel'] = 'Babel'; -$a->strings['ActivityPub Conversion'] = 'Umwandlung nach ActivityPub'; -$a->strings['Addon Features'] = 'Addon Features'; -$a->strings['User registrations waiting for confirmation'] = 'Nutzeranmeldungen, die auf Bestätigung warten'; -$a->strings['Too Many Requests'] = 'Zu viele Abfragen'; -$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Das tägliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen.', - 1 => 'Das tägliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen.', -]; -$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Das wöchentliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen.', - 1 => 'Das wöchentliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen.', -]; -$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Das monatliche Limit von %d Beitrag wurde erreicht. Der Beitrag wurde verworfen.', - 1 => 'Das monatliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen.', -]; -$a->strings['Profile Details'] = 'Profildetails'; -$a->strings['Only You Can See This'] = 'Nur du kannst das sehen'; -$a->strings['Scheduled Posts'] = 'Geplante Beiträge'; -$a->strings['Posts that are scheduled for publishing'] = 'Beiträge die für einen späteren Zeitpunkt für die Veröffentlichung geplant sind'; -$a->strings['Tips for New Members'] = 'Tipps für neue Nutzer'; -$a->strings['People Search - %s'] = 'Personensuche - %s'; -$a->strings['Forum Search - %s'] = 'Forensuche - %s'; -$a->strings['Account'] = 'Nutzerkonto'; -$a->strings['Two-factor authentication'] = 'Zwei-Faktor Authentifizierung'; -$a->strings['Display'] = 'Anzeige'; -$a->strings['Manage Accounts'] = 'Accounts Verwalten'; -$a->strings['Connected apps'] = 'Verbundene Programme'; -$a->strings['Export personal data'] = 'Persönliche Daten exportieren'; -$a->strings['Remove account'] = 'Konto löschen'; -$a->strings['This page is missing a url parameter.'] = 'Der Seite fehlt ein URL Parameter.'; -$a->strings['The post was created'] = 'Der Beitrag wurde angelegt'; -$a->strings['%d contact edited.'] = [ - 0 => '%d Kontakt bearbeitet.', - 1 => '%d Kontakte bearbeitet.', -]; -$a->strings['Show all contacts'] = 'Alle Kontakte anzeigen'; -$a->strings['Only show pending contacts'] = 'Zeige nur noch ausstehende Kontakte.'; -$a->strings['Only show blocked contacts'] = 'Nur blockierte Kontakte anzeigen'; -$a->strings['Ignored'] = 'Ignoriert'; -$a->strings['Only show ignored contacts'] = 'Nur ignorierte Kontakte anzeigen'; -$a->strings['Archived'] = 'Archiviert'; -$a->strings['Only show archived contacts'] = 'Nur archivierte Kontakte anzeigen'; -$a->strings['Hidden'] = 'Verborgen'; -$a->strings['Only show hidden contacts'] = 'Nur verborgene Kontakte anzeigen'; -$a->strings['Organize your contact groups'] = 'Verwalte deine Kontaktgruppen'; -$a->strings['Search your contacts'] = 'Suche in deinen Kontakten'; -$a->strings['Results for: %s'] = 'Ergebnisse für: %s'; -$a->strings['Update'] = 'Aktualisierungen'; -$a->strings['Unignore'] = 'Ignorieren aufheben'; -$a->strings['Batch Actions'] = 'Stapelverarbeitung'; -$a->strings['Conversations started by this contact'] = 'Unterhaltungen, die von diesem Kontakt begonnen wurden'; -$a->strings['Posts and Comments'] = 'Statusnachrichten und Kommentare'; -$a->strings['Posts containing media objects'] = 'Beiträge die Medien Objekte beinhalten'; -$a->strings['View all known contacts'] = 'Alle bekannten Kontakte anzeigen'; -$a->strings['Advanced Contact Settings'] = 'Fortgeschrittene Kontakteinstellungen'; -$a->strings['Mutual Friendship'] = 'Beidseitige Freundschaft'; -$a->strings['is a fan of yours'] = 'ist ein Fan von dir'; -$a->strings['you are a fan of'] = 'Du bist Fan von'; -$a->strings['Pending outgoing contact request'] = 'Ausstehende ausgehende Kontaktanfrage'; -$a->strings['Pending incoming contact request'] = 'Ausstehende eingehende Kontaktanfrage'; -$a->strings['Visit %s\'s profile [%s]'] = 'Besuche %ss Profil [%s]'; -$a->strings['Contact update failed.'] = 'Konnte den Kontakt nicht aktualisieren.'; -$a->strings['Return to contact editor'] = 'Zurück zum Kontakteditor'; -$a->strings['Account Nickname'] = 'Konto-Spitzname'; -$a->strings['Account URL'] = 'Konto-URL'; -$a->strings['Poll/Feed URL'] = 'Pull/Feed-URL'; -$a->strings['New photo from this URL'] = 'Neues Foto von dieser URL'; -$a->strings['Invalid contact.'] = 'Ungültiger Kontakt.'; -$a->strings['No known contacts.'] = 'Keine bekannten Kontakte.'; -$a->strings['No common contacts.'] = 'Keine gemeinsamen Kontakte.'; -$a->strings['Follower (%s)'] = [ - 0 => 'Folgende (%s)', - 1 => 'Folgende (%s)', -]; -$a->strings['Following (%s)'] = [ - 0 => 'Gefolgte (%s)', - 1 => 'Gefolgte (%s)', -]; -$a->strings['Mutual friend (%s)'] = [ - 0 => 'Beidseitige Freundschafte (%s)', - 1 => 'Beidseitige Freundschaften (%s)', -]; -$a->strings['These contacts both follow and are followed by %s.'] = 'Diese Kontakte sind sowohl Folgende als auch Gefolgte von %s.'; -$a->strings['Common contact (%s)'] = [ - 0 => 'Gemeinsamer Kontakt (%s)', - 1 => 'Gemeinsame Kontakte (%s)', -]; -$a->strings['Both %s and yourself have publicly interacted with these contacts (follow, comment or likes on public posts).'] = 'Du und %s haben mit diesen Kontakten öffentlich interagiert (Folgen, Kommentare und Likes in öffentlichen Beiträgen)'; -$a->strings['Contact (%s)'] = [ - 0 => 'Kontakt (%s)', - 1 => 'Kontakte (%s)', -]; -$a->strings['Failed to update contact record.'] = 'Aktualisierung der Kontaktdaten fehlgeschlagen.'; -$a->strings['Contact has been unblocked'] = 'Kontakt wurde wieder freigegeben'; -$a->strings['Contact has been blocked'] = 'Kontakt wurde blockiert'; -$a->strings['Contact has been unignored'] = 'Kontakt wird nicht mehr ignoriert'; -$a->strings['Contact has been ignored'] = 'Kontakt wurde ignoriert'; -$a->strings['You are mutual friends with %s'] = 'Du hast mit %s eine beidseitige Freundschaft'; -$a->strings['You are sharing with %s'] = 'Du teilst mit %s'; -$a->strings['%s is sharing with you'] = '%s teilt mit dir'; -$a->strings['Private communications are not available for this contact.'] = 'Private Kommunikation ist für diesen Kontakt nicht verfügbar.'; -$a->strings['Never'] = 'Niemals'; -$a->strings['(Update was not successful)'] = '(Aktualisierung war nicht erfolgreich)'; -$a->strings['(Update was successful)'] = '(Aktualisierung war erfolgreich)'; -$a->strings['Suggest friends'] = 'Kontakte vorschlagen'; -$a->strings['Network type: %s'] = 'Netzwerktyp: %s'; -$a->strings['Communications lost with this contact!'] = 'Verbindungen mit diesem Kontakt verloren!'; -$a->strings['Fetch further information for feeds'] = 'Weitere Informationen zu Feeds holen'; -$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.'] = 'Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht allzu viel Text beinhaltet. Schlagwörter werden aus den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet.'; -$a->strings['Fetch information'] = 'Beziehe Information'; -$a->strings['Fetch keywords'] = 'Schlüsselwörter abrufen'; -$a->strings['Fetch information and keywords'] = 'Beziehe Information und Schlüsselworte'; -$a->strings['No mirroring'] = 'Kein Spiegeln'; -$a->strings['Mirror as forwarded posting'] = 'Spiegeln als weitergeleitete Beiträge'; -$a->strings['Mirror as my own posting'] = 'Spiegeln als meine eigenen Beiträge'; -$a->strings['Native reshare'] = 'Natives Teilen'; -$a->strings['Contact Information / Notes'] = 'Kontakt-Informationen / -Notizen'; -$a->strings['Contact Settings'] = 'Kontakteinstellungen'; -$a->strings['Contact'] = 'Kontakt'; -$a->strings['Their personal note'] = 'Die persönliche Mitteilung'; -$a->strings['Edit contact notes'] = 'Notizen zum Kontakt bearbeiten'; -$a->strings['Block/Unblock contact'] = 'Kontakt blockieren/freischalten'; -$a->strings['Ignore contact'] = 'Ignoriere den Kontakt'; -$a->strings['View conversations'] = 'Unterhaltungen anzeigen'; -$a->strings['Last update:'] = 'Letzte Aktualisierung: '; -$a->strings['Update public posts'] = 'Öffentliche Beiträge aktualisieren'; -$a->strings['Update now'] = 'Jetzt aktualisieren'; -$a->strings['Currently blocked'] = 'Derzeit geblockt'; -$a->strings['Currently ignored'] = 'Derzeit ignoriert'; -$a->strings['Currently archived'] = 'Momentan archiviert'; -$a->strings['Awaiting connection acknowledge'] = 'Bedarf der Bestätigung des Kontakts'; -$a->strings['Hide this contact from others'] = 'Verbirg diesen Kontakt vor Anderen'; -$a->strings['Replies/likes to your public posts may still be visible'] = 'Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein'; -$a->strings['Notification for new posts'] = 'Benachrichtigung bei neuen Beiträgen'; -$a->strings['Send a notification of every new post of this contact'] = 'Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt.'; -$a->strings['Keyword Deny List'] = 'Liste der gesperrten Schlüsselwörter'; -$a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn "Beziehe Information und Schlüsselworte" aktiviert wurde'; -$a->strings['Actions'] = 'Aktionen'; -$a->strings['Mirror postings from this contact'] = 'Spiegle Beiträge dieses Kontakts'; -$a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica, alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden (spiegeln).'; -$a->strings['Refetch contact data'] = 'Kontaktdaten neu laden'; -$a->strings['Toggle Blocked status'] = 'Geblockt-Status ein-/ausschalten'; -$a->strings['Toggle Ignored status'] = 'Ignoriert-Status ein-/ausschalten'; -$a->strings['Revoke Follow'] = 'Folgen widerrufen'; -$a->strings['Revoke the follow from this contact'] = 'Widerruft das Folgen dieses Kontaktes'; -$a->strings['Unknown contact.'] = 'Unbekannter Kontakt.'; -$a->strings['Contact is deleted.'] = 'Kontakt wurde gelöscht'; -$a->strings['Contact is being deleted.'] = 'Kontakt wurde gelöscht.'; -$a->strings['Follow was successfully revoked.'] = 'Folgen wurde erfolgreich widerrufen.'; -$a->strings['Do you really want to revoke this contact\'s follow? This cannot be undone and they will have to manually follow you back again.'] = 'Willst du das Folgen dieses Kontakt wirklich widerrufen? Dies kann nicht rückgängig gemacht werden und der Kontakt muss Ihnen manuell wieder folgen.'; -$a->strings['Yes'] = 'Ja'; -$a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'Diese Gemeinschaftsseite zeigt alle öffentlichen Beiträge, die auf diesem Knoten eingegangen sind. Der Inhalt entspricht nicht zwingend der Meinung der Nutzer dieses Servers.'; -$a->strings['Local Community'] = 'Lokale Gemeinschaft'; -$a->strings['Posts from local users on this server'] = 'Beiträge von Nutzern dieses Servers'; -$a->strings['Global Community'] = 'Globale Gemeinschaft'; -$a->strings['Posts from users of the whole federated network'] = 'Beiträge von Nutzern des gesamten föderalen Netzwerks'; -$a->strings['Own Contacts'] = 'Eigene Kontakte'; -$a->strings['Include'] = 'Einschließen'; -$a->strings['Hide'] = 'Verbergen'; -$a->strings['No results.'] = 'Keine Ergebnisse.'; -$a->strings['Community option not available.'] = 'Optionen für die Gemeinschaftsseite nicht verfügbar.'; -$a->strings['Not available.'] = 'Nicht verfügbar.'; -$a->strings['No such group'] = 'Es gibt keine solche Gruppe'; -$a->strings['Group: %s'] = 'Gruppe: %s'; -$a->strings['Latest Activity'] = 'Neu - Aktivität'; -$a->strings['Sort by latest activity'] = 'Sortiere nach neueste Aktivität'; -$a->strings['Latest Posts'] = 'Neu - Empfangen'; -$a->strings['Sort by post received date'] = 'Nach Empfangsdatum der Beiträge sortiert'; -$a->strings['Latest Creation'] = 'Neu - Erstellung'; -$a->strings['Sort by post creation date'] = 'Sortiert nach dem Erstellungsdatum'; -$a->strings['Personal'] = 'Persönlich'; -$a->strings['Posts that mention or involve you'] = 'Beiträge, in denen es um dich geht'; -$a->strings['Starred'] = 'Markierte'; -$a->strings['Favourite Posts'] = 'Favorisierte Beiträge'; -$a->strings['Credits'] = 'Credits'; -$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!'] = 'Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !'; -$a->strings['Formatted'] = 'Formatiert'; -$a->strings['Activity'] = 'Aktivität'; -$a->strings['Object data'] = 'Objekt Daten'; -$a->strings['Result Item'] = 'Resultierender Eintrag'; -$a->strings['Source activity'] = 'Quelle der Aktivität'; -$a->strings['Source input'] = 'Originaltext:'; -$a->strings['BBCode::toPlaintext'] = 'BBCode::toPlaintext'; -$a->strings['BBCode::convert (raw HTML)'] = 'BBCode::convert (pures HTML)'; -$a->strings['BBCode::convert (hex)'] = 'BBCode::convert (hex)'; -$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 (rohes 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'] = 'Beitragskörper'; -$a->strings['Item Tags'] = 'Tags des Beitrags'; -$a->strings['PageInfo::appendToBody'] = 'PageInfo::appendToBody'; -$a->strings['PageInfo::appendToBody => BBCode::convert (raw HTML)'] = 'PageInfo::appendToBody => BBCode::convert (pures HTML)'; -$a->strings['PageInfo::appendToBody => BBCode::convert'] = 'PageInfo::appendToBody => BBCode::convert'; -$a->strings['Source input (Diaspora format)'] = 'Originaltext (Diaspora Format): '; -$a->strings['Source input (Markdown)'] = 'Originaltext (Markdown)'; -$a->strings['Markdown::convert (raw HTML)'] = 'Markdown::convert (pures HTML)'; -$a->strings['Markdown::convert'] = 'Markdown::convert'; -$a->strings['Markdown::toBBCode'] = 'Markdown::toBBCode'; -$a->strings['Raw HTML input'] = 'Reine HTML Eingabe'; -$a->strings['HTML Input'] = 'HTML Eingabe'; -$a->strings['HTML Purified (raw)'] = 'HTML Purified (raw)'; -$a->strings['HTML Purified (hex)'] = 'HTML Purified (hex)'; -$a->strings['HTML Purified'] = 'HTML Purified'; -$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 (pures 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 (kompakt)'; -$a->strings['Decoded post'] = 'Dekodierter Beitrag'; -$a->strings['Post array before expand entities'] = 'Beiträgs Array bevor die Entitäten erweitert wurden.'; -$a->strings['Post converted'] = 'Konvertierter Beitrag'; -$a->strings['Converted body'] = 'Konvertierter Beitragskörper'; -$a->strings['Twitter addon is absent from the addon/ folder.'] = 'Das Twitter-Addon konnte nicht im addpn/ Verzeichnis gefunden werden.'; -$a->strings['Babel Diagnostic'] = 'Babel Diagnostik'; -$a->strings['Source text'] = 'Quelltext'; -$a->strings['BBCode'] = 'BBCode'; -$a->strings['Markdown'] = 'Markdown'; -$a->strings['HTML'] = 'HTML'; -$a->strings['Twitter Source / Tweet URL (requires API key)'] = 'Twitter Quelle / Tweet URL (benötigt API Schlüssel)'; -$a->strings['You must be logged in to use this module'] = 'Du musst eingeloggt sein, um dieses Modul benutzen zu können.'; -$a->strings['Source URL'] = 'URL der Quelle'; -$a->strings['Time Conversion'] = 'Zeitumrechnung'; -$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.'; -$a->strings['UTC time: %s'] = 'UTC Zeit: %s'; -$a->strings['Current timezone: %s'] = 'Aktuelle Zeitzone: %s'; -$a->strings['Converted localtime: %s'] = 'Umgerechnete lokale Zeit: %s'; -$a->strings['Please select your timezone:'] = 'Bitte wähle Deine Zeitzone:'; -$a->strings['Only logged in users are permitted to perform a probing.'] = 'Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet.'; -$a->strings['Probe Diagnostic'] = 'Probe Diagnostik'; -$a->strings['Output'] = 'Ergebnis'; -$a->strings['Lookup address'] = 'Adresse nachschlagen'; -$a->strings['Webfinger Diagnostic'] = 'Webfinger Diagnostik'; -$a->strings['Lookup address:'] = 'Adresse nachschlagen:'; -$a->strings['You are now logged in as %s'] = 'Du bist jetzt als %s angemeldet'; -$a->strings['Switch between your accounts'] = 'Wechsle deine Konten'; -$a->strings['Manage your accounts'] = 'Verwalte deine Konten'; -$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast.'; -$a->strings['Select an identity to manage: '] = 'Wähle eine Identität zum Verwalten aus: '; -$a->strings['No entries (some entries may be hidden).'] = 'Keine Einträge (einige Einträge könnten versteckt sein).'; -$a->strings['Find on this site'] = 'Auf diesem Server suchen'; -$a->strings['Results for:'] = 'Ergebnisse für:'; -$a->strings['Site Directory'] = 'Verzeichnis'; -$a->strings['Item was not deleted'] = 'Item wurde nicht gelöscht'; -$a->strings['Item was not removed'] = 'Item wurde nicht entfernt'; -$a->strings['- select -'] = '- auswählen -'; -$a->strings['Suggested contact not found.'] = 'Vorgeschlagener Kontakt wurde nicht gefunden.'; -$a->strings['Friend suggestion sent.'] = 'Kontaktvorschlag gesendet.'; -$a->strings['Suggest Friends'] = 'Kontakte vorschlagen'; -$a->strings['Suggest a friend for %s'] = 'Schlage %s einen Kontakt vor'; -$a->strings['Installed addons/apps:'] = 'Installierte Apps und Addons'; -$a->strings['No installed addons/apps'] = 'Es sind keine Addons oder Apps installiert'; -$a->strings['Read about the Terms of Service of this node.'] = 'Erfahre mehr über die Nutzungsbedingungen dieses Knotens.'; -$a->strings['On this server the following remote servers are blocked.'] = 'Auf diesem Server werden die folgenden, entfernten Server blockiert.'; -$a->strings['Download this list in CSV format'] = 'Liste im CSV-Format herunterladen'; -$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.'] = 'Diese Friendica-Instanz verwendet die Version %s, sie ist unter der folgenden Adresse im Web zu finden %s. Die Datenbankversion ist %s und die Post-Update-Version %s.'; -$a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Bitte besuche Friendi.ca, um mehr über das Friendica-Projekt zu erfahren.'; -$a->strings['Bug reports and issues: please visit'] = 'Probleme oder Fehler gefunden? Bitte besuche'; -$a->strings['the bugtracker at github'] = 'den Bugtracker auf github'; -$a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = 'Vorschläge, Lob usw.: E-Mail an "Info" at "Friendi - dot ca"'; -$a->strings['Could not create group.'] = 'Konnte die Gruppe nicht erstellen.'; -$a->strings['Group not found.'] = 'Gruppe nicht gefunden.'; -$a->strings['Group name was not changed.'] = 'Der Name der Gruppe wurde nicht verändert.'; -$a->strings['Unknown group.'] = 'Unbekannte Gruppe'; -$a->strings['Unable to add the contact to the group.'] = 'Konnte den Kontakt nicht zur Gruppe hinzufügen'; -$a->strings['Contact successfully added to group.'] = 'Kontakt zur Gruppe hinzugefügt'; -$a->strings['Unable to remove the contact from the group.'] = 'Konnte den Kontakt nicht aus der Gruppe entfernen'; -$a->strings['Contact successfully removed from group.'] = 'Kontakt aus Gruppe entfernt'; -$a->strings['Bad request.'] = 'Ungültige Anfrage.'; -$a->strings['Save Group'] = 'Gruppe speichern'; -$a->strings['Filter'] = 'Filter'; -$a->strings['Create a group of contacts/friends.'] = 'Eine Kontaktgruppe anlegen.'; -$a->strings['Unable to remove group.'] = 'Konnte die Gruppe nicht entfernen.'; -$a->strings['Delete Group'] = 'Gruppe löschen'; -$a->strings['Edit Group Name'] = 'Gruppen Name bearbeiten'; -$a->strings['Members'] = 'Mitglieder'; -$a->strings['Group is empty'] = 'Gruppe ist leer'; -$a->strings['Remove contact from group'] = 'Entferne den Kontakt aus der Gruppe'; -$a->strings['Click on a contact to add or remove.'] = 'Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen'; -$a->strings['Add contact to group'] = 'Füge den Kontakt zur Gruppe hinzu'; -$a->strings['No profile'] = 'Kein Profil'; -$a->strings['Method Not Allowed.'] = 'Methode nicht erlaubt.'; -$a->strings['Help:'] = 'Hilfe:'; -$a->strings['Welcome to %s'] = 'Willkommen zu %s'; -$a->strings['Friendica Communications Server - Setup'] = 'Friendica Komunikationsserver - Installation'; -$a->strings['System check'] = 'Systemtest'; -$a->strings['Requirement not satisfied'] = 'Anforderung ist nicht erfüllt'; -$a->strings['Optional requirement not satisfied'] = 'Optionale Anforderung ist nicht erfüllt'; -$a->strings['OK'] = 'Ok'; -$a->strings['Check again'] = 'Noch einmal testen'; -$a->strings['Base settings'] = 'Grundeinstellungen'; -$a->strings['Host name'] = 'Host Name'; -$a->strings['Overwrite this field in case the determinated hostname isn\'t right, otherweise leave it as is.'] = 'Sollte der ermittelte Hostname nicht stimmen, korrigiere bitte den Eintrag.'; -$a->strings['Base path to installation'] = 'Basis-Pfad zur Installation'; -$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.'] = 'Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist.'; -$a->strings['Sub path of the URL'] = 'Unterverzeichnis (Pfad) der URL'; -$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.'] = 'Sollte das ermittelte Unterverzeichnis der Friendica Installation nicht stimmen, korrigiere es bitte. Wenn dieses Feld leer ist, bedeutet dies, dass die Installation direkt unter der Basis-URL installiert wird.'; -$a->strings['Database connection'] = 'Datenbankverbindung'; -$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können.'; -$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Bitte kontaktiere den Hosting-Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest.'; -$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte, bevor du mit der Installation fortfährst.'; -$a->strings['Database Server Name'] = 'Datenbank-Server'; -$a->strings['Database Login Name'] = 'Datenbank-Nutzer'; -$a->strings['Database Login Password'] = 'Datenbank-Passwort'; -$a->strings['For security reasons the password must not be empty'] = 'Aus Sicherheitsgründen darf das Passwort nicht leer sein.'; -$a->strings['Database Name'] = 'Datenbank-Name'; -$a->strings['Please select a default timezone for your website'] = 'Bitte wähle die Standardzeitzone Deiner Webseite'; -$a->strings['Site settings'] = 'Server-Einstellungen'; -$a->strings['Site administrator email address'] = 'E-Mail-Adresse des Administrators'; -$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst.'; -$a->strings['System Language:'] = 'Systemsprache:'; -$a->strings['Set the default language for your Friendica installation interface and to send emails.'] = 'Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand'; -$a->strings['Your Friendica site database has been installed.'] = 'Die Datenbank Deiner Friendica-Seite wurde installiert.'; -$a->strings['Installation finished'] = 'Installation abgeschlossen'; -$a->strings['

    What next

    '] = '

    Wie geht es weiter?

    '; -$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the worker.'] = 'Wichtig: du musst [manuell] einen Cronjob (o.ä.) für den Worker einrichten.'; -$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.'] = 'Du solltest nun die Seite zur Nutzerregistrierung deiner neuen Friendica Instanz besuchen und einen neuen Nutzer einrichten. Bitte denke daran, dieselbe E-Mail Adresse anzugeben, die du auch als Administrator-E-Mail angegeben hast, damit du das Admin-Panel verwenden kannst.'; -$a->strings['Total invitation limit exceeded.'] = 'Limit für Einladungen erreicht.'; -$a->strings['%s : Not a valid email address.'] = '%s: Keine gültige Email Adresse.'; -$a->strings['Please join us on Friendica'] = 'Ich lade dich zu unserem sozialen Netzwerk Friendica ein'; -$a->strings['Invitation limit exceeded. Please contact your site administrator.'] = 'Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.'; -$a->strings['%s : Message delivery failed.'] = '%s: Zustellung der Nachricht fehlgeschlagen.'; -$a->strings['%d message sent.'] = [ - 0 => '%d Nachricht gesendet.', - 1 => '%d Nachrichten gesendet.', -]; -$a->strings['You have no more invitations available'] = 'Du hast keine weiteren Einladungen'; -$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.'] = 'Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica-Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer sozialer Netzwerke.'; -$a->strings['To accept this invitation, please visit and register at %s or any other public Friendica website.'] = 'Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica-Website.'; -$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.'] = 'Friendica Server verbinden sich alle untereinander, um ein großes, datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica-Server, denen du beitreten kannst.'; -$a->strings['Our apologies. This system is not currently configured to connect with other public sites or invite members.'] = 'Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.'; -$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.'] = 'Friendica Server verbinden sich alle untereinander, um ein großes, datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden.'; -$a->strings['To accept this invitation, please visit and register at %s.'] = 'Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s.'; -$a->strings['Send invitations'] = 'Einladungen senden'; -$a->strings['Enter email addresses, one per line:'] = 'E-Mail-Adressen eingeben, eine pro Zeile:'; -$a->strings['You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.'] = 'Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres, soziales Netz aufzubauen.'; -$a->strings['You will need to supply this invitation code: $invite_code'] = 'Du benötigst den folgenden Einladungscode: $invite_code'; -$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:'; -$a->strings['For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca'] = 'Für weitere Informationen über das Friendica-Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca.'; -$a->strings['Please enter a post body.'] = 'Bitte gibt den Text des Beitrags an'; -$a->strings['This feature is only available with the frio theme.'] = 'Diese Seite kann ausschließlich mit dem Frio Theme verwendet werden.'; -$a->strings['Compose new personal note'] = 'Neue persönliche Notiz verfassen'; -$a->strings['Compose new post'] = 'Neuen Beitrag verfassen'; -$a->strings['Visibility'] = 'Sichtbarkeit'; -$a->strings['Clear the location'] = 'Ort löschen'; -$a->strings['Location services are unavailable on your device'] = 'Ortungsdienste sind auf Ihrem Gerät nicht verfügbar'; -$a->strings['Location services are disabled. Please check the website\'s permissions on your device'] = 'Ortungsdienste sind deaktiviert. Bitte überprüfe die Berechtigungen der Website auf deinem Gerät'; -$a->strings['You can make this page always open when you use the New Post button in the Theme Customization settings.'] = 'Wenn du magst, kannst du unter den Benutzerdefinierte Theme-Einstellungen einstellen, dass diese Seite immer geöffnet wird, wenn du den "Neuer Beitrag" Button verwendest.'; -$a->strings['Unable to follow this item.'] = 'Konnte dem Beitrag nicht folgen.'; -$a->strings['System down for maintenance'] = 'System zur Wartung abgeschaltet'; -$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.'] = 'Diese Friendica Instanz befindet sich derzeit im Wartungsmodus, entweder aufgrund von automatischen Updateprozessen oder weil die Administratoren der Instanz den Wartungsmodus aktiviert haben. Dies sollte ein vorübergehender Zustand sein. Bitte versuche es in ein paar Minuten erneut.'; -$a->strings['A Decentralized Social Network'] = 'Ein dezentrales Soziales Netzwerk'; $a->strings['Show Ignored Requests'] = 'Zeige ignorierte Anfragen'; $a->strings['Hide Ignored Requests'] = 'Verberge ignorierte Anfragen'; $a->strings['Notification type:'] = 'Art der Benachrichtigung:'; @@ -2101,7 +2173,23 @@ $a->strings['Do you want to authorize this application to access your posts and $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['Invalid data or unknown client'] = 'Ungültige Daten oder unbekannter Client'; $a->strings['Unsupported or missing grant type'] = 'Der Grant-Typ fehlt oder wird nicht unterstützt'; +$a->strings['Resubscribing to OStatus contacts'] = 'Erneuern der OStatus-Abonements'; +$a->strings['Keep this window open until done.'] = 'Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.'; +$a->strings['✔ Done'] = '✔ Erledigt'; +$a->strings['No OStatus contacts to resubscribe to.'] = 'Keine OStatus Kontakte zum Neufolgen vorhanden.'; +$a->strings['Subscribing to contacts'] = 'Kontakten folgen'; +$a->strings['No contact provided.'] = 'Keine Kontakte gefunden.'; +$a->strings['Couldn\'t fetch information for contact.'] = 'Konnte die Kontaktinformationen nicht einholen.'; +$a->strings['Couldn\'t fetch friends for contact.'] = 'Konnte die Kontaktliste des Kontakts nicht abfragen.'; +$a->strings['Couldn\'t fetch following contacts.'] = 'Konnte Liste der gefolgten Kontakte nicht einholen.'; +$a->strings['Couldn\'t fetch remote profile.'] = 'Konnte das entfernte Profil nicht laden.'; +$a->strings['Unsupported network'] = 'Netzwerk wird nicht unterstützt'; +$a->strings['Done'] = 'Erledigt'; +$a->strings['success'] = 'Erfolg'; +$a->strings['failed'] = 'Fehlgeschlagen'; +$a->strings['ignored'] = 'Ignoriert'; $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'; $a->strings['Unlisted'] = 'Ungelistet'; @@ -2113,11 +2201,32 @@ $a->strings['%d more'] = '%d weitere'; $a->strings['To: %s
    '] = 'To: %s
    '; $a->strings['CC: %s
    '] = 'CC: %s
    '; $a->strings['BCC: %s
    '] = 'BCC: %s
    '; +$a->strings['Audience: %s
    '] = 'Addressaten: %s
    '; +$a->strings['Attributed To: %s
    '] = 'Zurückzuführen auf: %s
    '; $a->strings['The Photo is not available.'] = 'Das Foto ist nicht verfügbar.'; $a->strings['The Photo with id %s is not available.'] = 'Das Bild mit ID %s ist nicht verfügbar.'; $a->strings['Invalid external resource with url %s.'] = 'Ungültige externe Ressource mit der URL %s'; $a->strings['Invalid photo with id %s.'] = 'Fehlerhaftes Foto mit der ID %s.'; +$a->strings['Post not found.'] = 'Beitrag nicht gefunden.'; +$a->strings['Edit post'] = 'Beitrag bearbeiten'; +$a->strings['web link'] = 'Weblink'; +$a->strings['Insert video link'] = 'Video-Adresse einfügen'; +$a->strings['video link'] = 'Video-Link'; +$a->strings['Insert audio link'] = 'Audio-Adresse einfügen'; +$a->strings['audio link'] = 'Audio-Link'; +$a->strings['Remove Item Tag'] = 'Gegenstands-Tag entfernen'; +$a->strings['Select a tag to remove: '] = 'Wähle ein Tag zum Entfernen aus: '; +$a->strings['Remove'] = 'Entfernen'; $a->strings['No contacts.'] = 'Keine Kontakte.'; +$a->strings['%s\'s timeline'] = 'Timeline von %s'; +$a->strings['%s\'s posts'] = 'Beiträge von %s'; +$a->strings['%s\'s comments'] = 'Kommentare von %s'; +$a->strings['Image exceeds size limit of %s'] = 'Bildgröße überschreitet das Limit von %s'; +$a->strings['Image upload didn\'t complete, please try again'] = 'Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut.'; +$a->strings['Image file is missing'] = 'Bilddatei konnte nicht gefunden werden.'; +$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Der Server kann derzeit keine neuen Datei-Uploads akzeptieren. Bitte kontaktiere deinen Administrator.'; +$a->strings['Image file is empty.'] = 'Bilddatei ist leer.'; +$a->strings['View Album'] = 'Album betrachten'; $a->strings['Profile not found.'] = 'Profil nicht gefunden.'; $a->strings['You\'re currently viewing your profile as %s Cancel'] = 'Du betrachtest dein Profil gerade als %s Abbrechen'; $a->strings['Full Name:'] = 'Kompletter Name:'; @@ -2130,16 +2239,33 @@ $a->strings['%d year old'] = [ 0 => '%d Jahr alt', 1 => '%d Jahre alt', ]; -$a->strings['Forums:'] = 'Foren:'; +$a->strings['Description:'] = 'Beschreibung'; +$a->strings['Groups:'] = 'Gruppen:'; $a->strings['View profile as:'] = 'Das Profil aus der Sicht von jemandem anderen betrachten:'; $a->strings['View as'] = 'Betrachten als'; -$a->strings['%s\'s timeline'] = 'Timeline von %s'; -$a->strings['%s\'s posts'] = 'Beiträge von %s'; -$a->strings['%s\'s comments'] = 'Kommentare von %s'; +$a->strings['Profile unavailable.'] = 'Profil nicht verfügbar.'; +$a->strings['Invalid locator'] = 'Ungültiger Locator'; +$a->strings['The provided profile link doesn\'t seem to be valid'] = 'Der angegebene Profil-Link scheint nicht gültig zu sein.'; +$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'Entferntes Abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. '; +$a->strings['Friend/Connection Request'] = 'Kontaktanfrage'; +$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.'] = 'Gib entweder deine Webfinger- (user@domain.tld) oder die Profil-Adresse an. Wenn dies von deinem System nicht unterstützt wird, folge bitte %s oder %s direkt von deinem System. '; +$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.'] = 'Solltest du das freie Soziale Netzwerk noch nicht benutzen, kannst du diesem Link folgen um eine öffentliche Friendica Instanz zu finden um noch heute dem Netzwerk beizutreten.'; +$a->strings['Your Webfinger address or profile URL:'] = 'Deine Webfinger Adresse oder Profil-URL'; +$a->strings['Restricted profile'] = 'Eingeschränktes Profil'; +$a->strings['This profile has been restricted which prevents access to their public content from anonymous visitors.'] = 'Das Profil wurde eingeschränkt, dies verhindert den Zugriff auf öffentliche Beiträge durch anonyme Besucher des Profils.'; $a->strings['Scheduled'] = 'Zeitplan'; $a->strings['Content'] = 'Inhalt'; $a->strings['Remove post'] = 'Beitrag entfernen'; +$a->strings['Empty message body.'] = 'Leerer Nachrichtenkörper.'; +$a->strings['Unable to check your home location.'] = 'Konnte Deinen Heimatort nicht bestimmen.'; +$a->strings['Recipient not found.'] = 'Empfänger nicht gefunden.'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Maximale Anzahl der täglichen Pinnwand-Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.'; +$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.'; +$a->strings['To'] = 'An'; +$a->strings['Subject'] = 'Betreff'; +$a->strings['Your message'] = 'Deine Nachricht'; $a->strings['Only parent users can create additional accounts.'] = 'Zusätzliche Nutzerkonten können nur von Verwaltern angelegt werden.'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.'; $a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking "Register".'] = 'Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und \'Registrieren\' klickst.'; $a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.'; $a->strings['Your OpenID (optional): '] = 'Deine OpenID (optional): '; @@ -2156,6 +2282,7 @@ $a->strings['Leave empty for an auto generated password.'] = 'Leer lassen, um da $a->strings['Confirm:'] = 'Bestätigen:'; $a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be "nickname@%s".'] = 'Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird \'spitzname@%s\' sein.'; $a->strings['Choose a nickname: '] = 'Spitznamen wählen: '; +$a->strings['Import'] = 'Import'; $a->strings['Import your profile to this friendica instance'] = 'Importiere dein Profil auf diese Friendica-Instanz'; $a->strings['Note: This node explicitly contains adult content'] = 'Hinweis: Dieser Knoten enthält explizit Inhalte für Erwachsene'; $a->strings['Parent Password:'] = 'Passwort des Verwalters'; @@ -2175,15 +2302,8 @@ Du kannst das Passwort nach dem Anmelden ändern.'; $a->strings['Registration successful.'] = 'Registrierung erfolgreich.'; $a->strings['Your registration can not be processed.'] = 'Deine Registrierung konnte nicht verarbeitet werden.'; $a->strings['You have to leave a request note for the admin.'] = 'Du musst eine Nachricht für den Administrator als Begründung deiner Anfrage hinterlegen.'; +$a->strings['An internal error occured.'] = 'Ein interner Fehler ist aufgetreten. '; $a->strings['Your registration is pending approval by the site owner.'] = 'Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.'; -$a->strings['Profile unavailable.'] = 'Profil nicht verfügbar.'; -$a->strings['Invalid locator'] = 'Ungültiger Locator'; -$a->strings['The provided profile link doesn\'t seem to be valid'] = 'Der angegebene Profil-Link scheint nicht gültig zu sein.'; -$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'Entferntes Abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. '; -$a->strings['Friend/Connection Request'] = 'Kontaktanfrage'; -$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.'] = 'Gib entweder deine Webfinger- (user@domain.tld) oder die Profil-Adresse an. Wenn dies von deinem System nicht unterstützt wird, folge bitte %s oder %s direkt von deinem System. '; -$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.'] = 'Solltest du das freie Soziale Netzwerk noch nicht benutzen, kannst du diesem Link folgen um eine öffentliche Friendica Instanz zu finden um noch heute dem Netzwerk beizutreten.'; -$a->strings['Your Webfinger address or profile URL:'] = 'Deine Webfinger Adresse oder Profil-URL'; $a->strings['You must be logged in to use this module.'] = 'Du musst eingeloggt sein, um dieses Modul benutzen zu können.'; $a->strings['Only logged in users are permitted to perform a search.'] = 'Nur eingeloggten Benutzern ist das Suchen gestattet.'; $a->strings['Only one search per minute is permitted for not logged in users.'] = 'Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet.'; @@ -2210,11 +2330,11 @@ $a->strings['Passwords do not match.'] = 'Die Passwörter stimmen nicht überein $a->strings['Password does not need changing.'] = 'Passwort muss nicht geändert werden.'; $a->strings['Password unchanged.'] = 'Passwort unverändert.'; $a->strings['Password Too Long'] = 'Passwort ist zu lang'; -$a->strings['Since version 2022.09, we\'ve realized that any password longer than 72 characters is truncated during hashing. To prevent any confusion about this behavior, please update your password to be fewer or equal to 72 characters.'] = 'Mit der Version 2022.09 haben wir festgestellt, dass jedes Passwort, das länger als 72 Zeichen ist, beim Hashing abgeschnitten wird. Um Verwirrung über dieses Verhalten zu vermeiden, aktualisieren Sie Ihr Passwort bitte so, dass es höchstens 72 Zeichen hat.'; +$a->strings['Since version 2022.09, we\'ve realized that any password longer than 72 characters is truncated during hashing. To prevent any confusion about this behavior, please update your password to be fewer or equal to 72 characters.'] = 'Mit der Version 2022.09 haben wir festgestellt, dass jedes Passwort, das länger als 72 Zeichen ist, beim Hashing abgeschnitten wird. Um Verwirrung über dieses Verhalten zu vermeiden, aktualisiere dein Passwort bitte so, dass es höchstens 72 Zeichen hat.'; $a->strings['Update Password'] = 'Passwort aktualisieren'; $a->strings['Current Password:'] = 'Aktuelles Passwort:'; $a->strings['Your current password to confirm the changes'] = 'Dein aktuelles Passwort um die Änderungen zu bestätigen'; -$a->strings['Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).'] = 'Erlaubte Zeichen sind a-z, A-Z, 0-9 und Sonderzeichen, abgesehen von Leerzeichen, Doppelpunkten (:) und akzentuierten Buchstaben.'; +$a->strings['Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces and accentuated letters.'] = 'Erlaube Zeichen sind a-z, A-Z, 0-9 und Sonderzeichen, abgesehen von Leerzeichen und akzentuierten Buchstaben.'; $a->strings['Password length is limited to 72 characters.'] = 'Die Länge des Passworts ist auf 72 Zeichen begrenzt.'; $a->strings['Remaining recovery codes: %d'] = 'Verbleibende Wiederherstellungscodes: %d'; $a->strings['Invalid code, please retry.'] = 'Ungültiger Code, bitte erneut versuchen.'; @@ -2248,7 +2368,7 @@ $a->strings['Importing Contacts done'] = 'Kontakte wurden importiert.'; $a->strings['Relocate message has been send to your contacts'] = 'Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet.'; $a->strings['Unable to find your profile. Please contact your admin.'] = 'Konnte dein Profil nicht finden. Bitte kontaktiere den Admin.'; $a->strings['Personal Page Subtypes'] = 'Unterarten der persönlichen Seite'; -$a->strings['Community Forum Subtypes'] = 'Unterarten des Gemeinschaftsforums'; +$a->strings['Community Group Subtypes'] = 'Unterarten der Gemeinschaftsgruppen'; $a->strings['Account for a personal profile.'] = 'Konto für ein persönliches Profil.'; $a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'Konto für eine Organisation, das Kontaktanfragen automatisch als "Follower" annimmt.'; $a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'Konto für einen Feedspiegel, das Kontaktanfragen automatisch als "Follower" annimmt.'; @@ -2257,7 +2377,7 @@ $a->strings['Account for a regular personal profile that requires manual approva $a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'Konto für ein öffentliches Profil, das Kontaktanfragen automatisch als "Follower" annimmt.'; $a->strings['Automatically approves all contact requests.'] = 'Bestätigt alle Kontaktanfragen automatisch.'; $a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'Konto für ein gefragtes Profil, das Kontaktanfragen automatisch als "Friend" annimmt.'; -$a->strings['Private Forum [Experimental]'] = 'Privates Forum [Versuchsstadium]'; +$a->strings['Private Group [Experimental]'] = 'Private Gruppe [experimentell]'; $a->strings['Requires manual approval of contact requests.'] = 'Kontaktanfragen müssen manuell bestätigt werden.'; $a->strings['OpenID:'] = 'OpenID:'; $a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID.'; @@ -2272,6 +2392,7 @@ $a->strings['Password:'] = 'Passwort:'; $a->strings['Your current password to confirm the changes of the email address'] = 'Dein aktuelles Passwort um die Änderungen deiner E-Mail Adresse zu bestätigen'; $a->strings['Delete OpenID URL'] = 'OpenID URL löschen'; $a->strings['Basic Settings'] = 'Grundeinstellungen'; +$a->strings['Display name:'] = 'Anzeigename:'; $a->strings['Email Address:'] = 'E-Mail-Adresse:'; $a->strings['Your Timezone:'] = 'Deine Zeitzone:'; $a->strings['Your Language:'] = 'Deine Sprache:'; @@ -2282,11 +2403,11 @@ $a->strings['Security and Privacy Settings'] = 'Sicherheits- und Privatsphäre-E $a->strings['Maximum Friend Requests/Day:'] = 'Maximale Anzahl von Kontaktanfragen/Tag:'; $a->strings['(to prevent spam abuse)'] = '(um SPAM zu vermeiden)'; $a->strings['Allow your profile to be searchable globally?'] = 'Darf dein Profil bei Suchanfragen gefunden werden?'; -$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.'] = 'Aktiviere diese Einstellung, wenn du von anderen einfach gefunden und gefolgt werden möchtest. Dei Profil wird dann auf anderen Systemen leicht durchsuchbar. Außerdem regelt diese Einstellung ob Friendica Suchmaschinen mitteilen soll, ob dein Profil indiziert werden soll oder nicht.'; +$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.'] = 'Aktiviere diese Einstellung, wenn du von anderen einfach gefunden und gefolgt werden möchtest. Dein Profil wird dann auf anderen Systemen leicht durchsuchbar. Außerdem regelt diese Einstellung ob Friendica Suchmaschinen mitteilen soll, ob dein Profil indiziert werden soll oder nicht.'; $a->strings['Hide your contact/friend list from viewers of your profile?'] = 'Liste der Kontakte vor Betrachtern des Profil verbergen?'; $a->strings['A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list.'] = 'Auf deiner Profilseite wird eine Liste deiner Kontakte angezeigt. Aktiviere diese Option wenn du das nicht möchtest.'; -$a->strings['Hide your profile details from anonymous viewers?'] = 'Profil-Details vor unbekannten Betrachtern verbergen?'; -$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.'] = 'Anonyme Besucher deines Profils werden ausschließlich dein Profilbild, deinen Namen sowie deinen Spitznamen sehen. Deine öffentlichen Beiträge und Kommentare werden weiterhin sichtbar sein.'; +$a->strings['Hide your public content from anonymous viewers'] = 'Verbirg die öffentliche Inhalte vor anonymen Besuchern'; +$a->strings['Anonymous visitors will only see your basic profile details. Your public posts and replies will still be freely accessible on the remote servers of your followers and through relays.'] = 'Anonyme Besucher deines Profils werden nur grundlegende Informationen angezeigt bekommen. Deine öffentlichen Beiträge und Kommentare werden weiterhin frei zugänglich auf den Servern deiner Kontakte und über Relays sein.'; $a->strings['Make public posts unlisted'] = 'Öffentliche Beiträge nicht listen'; $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.'] = 'Deine öffentlichen Beiträge werden nicht auf der Gemeinschaftsseite oder in den Suchergebnissen erscheinen, außerdem werden sie nicht an Relay-Server geschickt. Sie werden aber weiterhin in allen öffentlichen Feeds, auch auf entfernten Servern, erscheinen.'; $a->strings['Make all posted pictures accessible'] = 'Alle geposteten Bilder zugreifbar machen'; @@ -2298,6 +2419,8 @@ $a->strings['Your contacts can add additional tags to your posts.'] = 'Deine Kon $a->strings['Permit unknown people to send you private mail?'] = 'Dürfen dir Unbekannte private Nachrichten schicken?'; $a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Nutzer des Friendica Netzwerks können dir private Nachrichten senden, selbst wenn sie nicht in deine Kontaktliste sind.'; $a->strings['Maximum private messages per day from unknown people:'] = 'Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:'; +$a->strings['Default privacy circle for new contacts'] = 'Voreingestellter Circle für neue Kontakte'; +$a->strings['Default privacy circle for new group contacts'] = 'Voreingestellter Circle für neue Gruppenkontakte'; $a->strings['Default Post Permissions'] = 'Standard-Zugriffsrechte für Beiträge'; $a->strings['Expiration settings'] = 'Verfalls-Einstellungen'; $a->strings['Automatically expire posts after this many days:'] = 'Beiträge verfallen automatisch nach dieser Anzahl von Tagen:'; @@ -2344,6 +2467,74 @@ $a->strings['Upload File'] = 'Datei hochladen'; $a->strings['Relocate'] = 'Umziehen'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Wenn du dein Profil von einem anderen Server umgezogen hast und einige deiner Kontakte deine Beiträge nicht erhalten, verwende diesen Button.'; $a->strings['Resend relocate message to contacts'] = 'Umzugsbenachrichtigung erneut an Kontakte senden'; +$a->strings['Addon Settings'] = 'Addon Einstellungen'; +$a->strings['No Addon settings configured'] = 'Keine Addon-Einstellungen konfiguriert'; +$a->strings['Label'] = 'Bezeichnung'; +$a->strings['Description'] = 'Beschreibung'; +$a->strings['Access Key'] = 'Zugriffsschlüssel'; +$a->strings['Circle/Channel'] = 'Circle/Kanal'; +$a->strings['Include Tags'] = 'Tags einschließen'; +$a->strings['Exclude Tags'] = 'Tags ausschließen'; +$a->strings['Full Text Search'] = 'Volltextsuche'; +$a->strings['Delete channel'] = 'Lösche Kanal'; +$a->strings['Check to delete this entry from the channel list'] = 'Haken setzen, um diesen Eintrag aus der Kanalliste zu löschen'; +$a->strings['Short name for the channel. It is displayed on the channels widget.'] = 'Kurzname für den Kanal. Er wird im Widget für die Kanäle angezeigt.'; +$a->strings['This should describe the content of the channel in a few word.'] = 'Dies sollte den Inhalt des Kanals in wenigen Worten beschreiben.'; +$a->strings['When you want to access this channel via an access key, you can define it here. Pay attention to not use an already used one.'] = 'Wenn du auf diesen Kanal über einen Zugangsschlüssel zugreifen willst, kannst du ihn hier festlegen. Achte darauf, dass du nicht einen bereits verwendeten Schlüssel benutzt.'; +$a->strings['Select a circle or channel, that your channel should be based on.'] = 'Wähle einen Circle oder Kanal, auf dem Ihr Kanal basieren soll.'; +$a->strings['Comma separated list of tags. A post will be used when it contains any of the listed tags.'] = 'Durch Kommata getrennte Liste von Tags. Ein Beitrag wird verwendet, wenn er eines der aufgeführten Tags enthält.'; +$a->strings['Comma separated list of tags. If a post contain any of these tags, then it will not be part of nthis channel.'] = 'Durch Kommata getrennte Liste von Tags. Wenn ein Beitrag eines dieser Tags enthält, wird er nicht Teil dieses Kanals sein.'; +$a->strings['Search terms for the body, supports the "boolean mode" operators from MariaDB. See the help for a complete list of operators and additional keywords: %s'] = 'Suchbegriffe für den Body, unterstützt die "boolean mode"-Operatoren von MariaDB. In der Hilfe findest du eine vollständige Liste der Operatoren und zusätzliche Schlüsselwörter: %s'; +$a->strings['Check to display images in the channel.'] = 'Aktiviere diese Option, um Bilder im Kanal anzuzeigen.'; +$a->strings['Check to display videos in the channel.'] = 'Aktiviere diese Option, um Videos im Kanal anzuzeigen.'; +$a->strings['Check to display audio in the channel.'] = 'Aktiviere diese Option, um Audio im Kanal anzuzeigen.'; +$a->strings['This page can be used to define your own channels.'] = 'Auf dieser Seite kannst du deine eigenen Kanäle definieren.'; +$a->strings['Add new entry to the channel list'] = 'Neuen Eintrag zur Kanalliste hinzufügen'; +$a->strings['Add'] = 'Hinzufügen'; +$a->strings['Current Entries in the channel list'] = 'Aktuelle Einträge in der Kanalliste'; +$a->strings['Delete entry from the channel list'] = 'Eintrag aus der Kanalliste löschen'; +$a->strings['Delete entry from the channel list?'] = 'Eintrag aus der Kanalliste löschen?'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.'; +$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; +$a->strings['Built-in support for %s connectivity is enabled'] = 'Eingebaute Unterstützung für die Verbindung zu %s ist aktiviert.'; +$a->strings['Built-in support for %s connectivity is disabled'] = 'Eingebaute Unterstützung für die Verbindung zu %s ist nicht aktiviert.'; +$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; +$a->strings['Email access is disabled on this site.'] = 'Zugriff auf E-Mails für diese Seite deaktiviert.'; +$a->strings['None'] = 'Keine'; +$a->strings['General Social Media Settings'] = 'Allgemeine Einstellungen zu Sozialen Medien'; +$a->strings['Followed content scope'] = 'Umfang zu folgender Inhalte'; +$a->strings['By default, conversations in which your follows participated but didn\'t start will be shown in your timeline. You can turn this behavior off, or expand it to the conversations in which your follows liked a post.'] = 'Normalerweise werden Unterhaltungen an denen deine Kontakte beteiligt sind, sie aber nicht begonnen haben, in deiner Timeline angezeigt. Mit dieser Einstellung kann dieses Vorgehen kontrolliert werden. Es kann entweder dahin erweitert werden, dass auch Unterhaltungen angezeigt werden in denen deine Kontakte einen Kommentar mögen, oder komplett ausgeschaltet werden, so dass nur noch die Unterhaltungen angezeigt werden, die von deinen Kontakten gestartet wurden.'; +$a->strings['Only conversations my follows started'] = 'Nur Unterhaltungen, die meine Kontakte gestartet haben'; +$a->strings['Conversations my follows started or commented on (default)'] = 'Unterhaltungen an denen meine Kontakte beteiligt sind (Grundeinstellung)'; +$a->strings['Any conversation my follows interacted with, including likes'] = 'Unterhaltungen mit denen meine Kontakte interagiert haben, inklusive likes'; +$a->strings['Enable Content Warning'] = 'Inhaltswarnungen einschalten'; +$a->strings['Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.'] = 'Benutzer in Netzwerken wie Mastodon oder Pleroma können eine Warnung für sensitive Inhalte ihrer Beiträge erstellen. Mit dieser Option werden derart markierte Beiträge automatisch zusammengeklappt und die Inhaltswarnung wird als Titel des Beitrags angezeigt. Diese Option hat keinen Einfluss auf andere Inhaltsfilterungen, die du eventuell eingerichtet hast.'; +$a->strings['Enable intelligent shortening'] = 'Intelligentes kürzen einschalten'; +$a->strings['Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.'] = 'Normalerweise versucht das System, den besten Link zu finden, um ihn zum gekürzten Postings hinzuzufügen. Wird diese Option ausgewählt, wird stets ein Link auf die originale Friendica-Nachricht beigefügt.'; +$a->strings['Enable simple text shortening'] = 'Einfache Textkürzung aktivieren'; +$a->strings['Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'] = 'Normalerweise kürzt das System Beiträge bei Zeilenumbrüchen. Ist diese Option aktiv, wird das System die Kürzung beim Erreichen der maximalen Zeichenzahl vornehmen.'; +$a->strings['Attach the link title'] = 'Link Titel hinzufügen'; +$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.'] = 'Ist dies aktiviert, wird der Titel von angehangenen Links bei Beiträgen nach Diaspora* angefügt. Dies ist vorallem bei Entfernten Konten nützlich die Beiträge von Feeds weiterleiten.'; +$a->strings['API: Use spoiler field as title'] = 'API: Verwende den Spoiler Text als Titel'; +$a->strings['When activated, the "spoiler_text" field in the API will be used for the title on standalone posts. When deactivated it will be used for spoiler text. For comments it will always be used for spoiler text.'] = 'Ist dies aktiviert, wird das "spoiler_text" der API als Titel von neuen Beiträgen verwendet. Ist es deaktiviert wird der Text als Spoiler-Text verwendet. Bei Kommentaren wird der Inhalt immer als Spoiler-Text verwendet.'; +$a->strings['API: Automatically links at the end of the post as attached posts'] = 'API: Automatische Links am Ende des Beitrags als angehängte Beiträge'; +$a->strings['When activated, added links at the end of the post react the same way as added links in the web interface.'] = 'Wenn dies aktiviert ist, reagieren hinzugefügte Links am Ende des Beitrags genauso wie hinzugefügte Links in der Weboberfläche.'; +$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Dein alter ActivityPub/GNU Social-Account'; +$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Wenn du deinen alten ActivityPub oder GNU Social/Statusnet-Account-Namen hier angibst (Format name@domain.tld), werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden.'; +$a->strings['Repair OStatus subscriptions'] = 'OStatus-Abonnements reparieren'; +$a->strings['Email/Mailbox Setup'] = 'E-Mail/Postfach-Einstellungen'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an.'; +$a->strings['Last successful email check:'] = 'Letzter erfolgreicher E-Mail-Check'; +$a->strings['IMAP server name:'] = 'IMAP-Server-Name:'; +$a->strings['IMAP port:'] = 'IMAP-Port:'; +$a->strings['Security:'] = 'Sicherheit:'; +$a->strings['Email login name:'] = 'E-Mail-Login-Name:'; +$a->strings['Email password:'] = 'E-Mail-Passwort:'; +$a->strings['Reply-to address:'] = 'Reply-to Adresse:'; +$a->strings['Send public posts to all email contacts:'] = 'Sende öffentliche Beiträge an alle E-Mail-Kontakte:'; +$a->strings['Action after import:'] = 'Aktion nach Import:'; +$a->strings['Move to folder'] = 'In einen Ordner verschieben'; +$a->strings['Move to folder:'] = 'In diesen Ordner verschieben:'; $a->strings['Delegation successfully granted.'] = 'Delegierung erfolgreich eingerichtet.'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'Der angegebene Nutzer konnte nicht gefunden werden, ist nicht verfügbar oder das angegebene Passwort ist nicht richtig.'; $a->strings['Delegation successfully revoked.'] = 'Delegation erfolgreich aufgehoben.'; @@ -2359,16 +2550,19 @@ $a->strings['Delegates'] = 'Bevollmächtigte'; $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.'] = 'Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem du nicht absolut vertraust!'; $a->strings['Existing Page Delegates'] = 'Vorhandene Bevollmächtigte für die Seite'; $a->strings['Potential Delegates'] = 'Potentielle Bevollmächtigte'; -$a->strings['Add'] = 'Hinzufügen'; $a->strings['No entries.'] = 'Keine Einträge.'; $a->strings['The theme you chose isn\'t available.'] = 'Das gewählte Theme ist nicht verfügbar'; $a->strings['%s - (Unsupported)'] = '%s - (Nicht unterstützt)'; +$a->strings['No preview'] = 'Keine Vorschau'; +$a->strings['No image'] = 'Kein Bild'; +$a->strings['Small Image'] = 'Kleines Bild'; +$a->strings['Large Image'] = 'Große Bilder'; $a->strings['Display Settings'] = 'Anzeige-Einstellungen'; $a->strings['General Theme Settings'] = 'Allgemeine Theme-Einstellungen'; $a->strings['Custom Theme Settings'] = 'Benutzerdefinierte Theme-Einstellungen'; $a->strings['Content Settings'] = 'Einstellungen zum Inhalt'; $a->strings['Theme settings'] = 'Theme-Einstellungen'; -$a->strings['Calendar'] = 'Kalender'; +$a->strings['Timelines'] = 'Timelines'; $a->strings['Display Theme:'] = 'Theme:'; $a->strings['Mobile Theme:'] = 'Mobiles Theme'; $a->strings['Number of items to display per page:'] = 'Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: '; @@ -2376,8 +2570,6 @@ $a->strings['Maximum of 100 items'] = 'Maximal 100 Beiträge'; $a->strings['Number of items to display per page when viewed from mobile device:'] = 'Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:'; $a->strings['Update browser every xx seconds'] = 'Browser alle xx Sekunden aktualisieren'; $a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Minimum sind 10 Sekunden. Gib -1 ein, um abzuschalten.'; -$a->strings['Automatic updates only at the top of the post stream pages'] = 'Automatische Updates nur, wenn du oben auf den Beitragsstream-Seiten bist.'; -$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.'] = 'Das automatische Aktualisieren des Streams kann neue Beiträge am Anfang des Stream einfügen. Dies kann die angezeigte Position im Stream beeinflussen, wenn du gerade nicht den Anfang des Streams betrachtest.'; $a->strings['Display emoticons'] = 'Zeige Emoticons'; $a->strings['When enabled, emoticons are replaced with matching symbols.'] = 'Wenn dies aktiviert ist, werden Text-Emoticons in Beiträgen durch Symbole ersetzt.'; $a->strings['Infinite scroll'] = 'Endloses Scrollen'; @@ -2390,14 +2582,26 @@ $a->strings['Display the resharer'] = 'Teilenden anzeigen'; $a->strings['Display the first resharer as icon and text on a reshared item.'] = 'Zeige das Profilbild des ersten Kontakts von dem ein Beitrag geteilt wurde.'; $a->strings['Stay local'] = 'Bleib lokal'; $a->strings['Don\'t go to a remote system when following a contact link.'] = 'Gehe nicht zu einem Remote-System, wenn einem Kontaktlink gefolgt wird'; +$a->strings['Link preview mode'] = 'Vorschau Modus für Links'; +$a->strings['Appearance of the link preview that is added to each post with a link.'] = 'Aussehen der Linkvorschau, die zu jedem Beitrag mit einem Link hinzugefügt wird.'; +$a->strings['Bookmark'] = 'Lesezeichen'; +$a->strings['Enable timelines that you want to see in the channels widget. Bookmark timelines that you want to see in the top menu.'] = 'Aktiviere die Timelines, die Sie im Kanäle-Widget sehen möchten. Setze ein Lesezeichen für Timelines, die du im oberen Menü sehen willst.'; +$a->strings['Channel languages:'] = 'Channel Spachen:'; +$a->strings['Select all languages that you want to see in your channels.'] = 'Wähle alle Sprachen aus, die du in deinen Kanälen sehen willst.'; $a->strings['Beginning of week:'] = 'Wochenbeginn:'; -$a->strings['Profile Name is required.'] = 'Profilname ist erforderlich.'; +$a->strings['Default calendar view:'] = 'Standard-Kalenderansicht:'; +$a->strings['Additional Features'] = 'Zusätzliche Features'; +$a->strings['Connected Apps'] = 'Verbundene Programme'; +$a->strings['Remove authorization'] = 'Autorisierung entziehen'; +$a->strings['Display Name is required.'] = 'Der Anzeigename ist erforderlich.'; $a->strings['Profile couldn\'t be updated.'] = 'Das Profil konnte nicht aktualisiert werden.'; $a->strings['Label:'] = 'Bezeichnung:'; $a->strings['Value:'] = 'Wert:'; $a->strings['Field Permissions'] = 'Berechtigungen des Felds'; $a->strings['(click to open/close)'] = '(klicke zum Öffnen/Schließen)'; $a->strings['Add a new profile field'] = 'Neues Profilfeld hinzufügen'; +$a->strings['The homepage is verified. A rel="me" link back to your Friendica profile page was found on the homepage.'] = 'Die Homepage ist verifiziert. Ein rel="me" Link zurück auf dein Friendica Profil wurde gefunden.'; +$a->strings['To verify your homepage, add a rel="me" link to it, pointing to your profile URL (%s).'] = 'Um deine Homepage zu verifizieren, füge einen rel="me" Link auf der Seite hinzu, der auf dein Profil mit der URL (%s) verweist.'; $a->strings['Profile Actions'] = 'Profilaktionen'; $a->strings['Edit Profile Details'] = 'Profil bearbeiten'; $a->strings['Change Profile Photo'] = 'Profilbild ändern'; @@ -2406,7 +2610,16 @@ $a->strings['Location'] = 'Wohnort'; $a->strings['Miscellaneous'] = 'Verschiedenes'; $a->strings['Custom Profile Fields'] = 'Benutzerdefinierte Profilfelder'; $a->strings['Upload Profile Photo'] = 'Profilbild hochladen'; -$a->strings['Display name:'] = 'Anzeigename:'; +$a->strings['

    Custom fields appear on your profile page.

    +

    You can use BBCodes in the field values.

    +

    Reorder by dragging the field title.

    +

    Empty the label field to remove a custom field.

    +

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

    '] = '

    Die benutzerdefinierten Felder erscheinen auf deiner Profil-Seite

    . + +

    BBCode kann verwendet werden

    +

    Die Reihenfolge der Felder kann durch Ziehen des Feld-Titels mit der Maus angepasst werden.

    +

    Wird die Bezeichnung des Felds geleert, wird das Feld beim Speichern aus dem Profil entfernt.

    +

    Nicht öffentliche Felder können nur von den ausgewählten Friendica Circles gesehen werden.

    '; $a->strings['Street Address:'] = 'Adresse:'; $a->strings['Locality/City:'] = 'Wohnort:'; $a->strings['Region/State:'] = 'Region/Bundesstaat:'; @@ -2421,16 +2634,6 @@ $a->strings['Public Keywords:'] = 'Öffentliche Schlüsselwörter:'; $a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)'; $a->strings['Private Keywords:'] = 'Private Schlüsselwörter:'; $a->strings['(Used for searching profiles, never shown to others)'] = '(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)'; -$a->strings['

    Custom fields appear on your profile page.

    -

    You can use BBCodes in the field values.

    -

    Reorder by dragging the field title.

    -

    Empty the label field to remove a custom field.

    -

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

    '] = '

    Die benutzerdefinierten Felder erscheinen auf deiner Profil-Seite

    . - -

    BBCode kann verwendet werden

    -

    Die Reihenfolge der Felder kann durch Ziehen des Feld-Titels mit der Maus angepasst werden.

    -

    Wird die Bezeichnung des Felds geleert, wird das Feld beim Speichern aus dem Profil entfernt.

    -

    Nicht öffentliche Felder können nur von den ausgewählten Friendica Kontakte gesehen werden.

    '; $a->strings['Image size reduction [%s] failed.'] = 'Verkleinern der Bildgröße von [%s] scheiterte.'; $a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.'; $a->strings['Unable to process image'] = 'Bild konnte nicht verarbeitet werden'; @@ -2447,6 +2650,24 @@ $a->strings['Upload Picture:'] = 'Bild hochladen'; $a->strings['or'] = 'oder'; $a->strings['skip this step'] = 'diesen Schritt überspringen'; $a->strings['select a photo from your photo albums'] = 'wähle ein Foto aus deinen Fotoalben'; +$a->strings['There was a validation error, please make sure you\'re logged in with the account you want to remove and try again.'] = 'Es gab einen Überprüfungsfehler. Bitte vergewisser dich, dass du mit dem Konto, das du entfernen möchtest angemeldet bist, und versuche es erneut.'; +$a->strings['If this error persists, please contact your administrator.'] = 'Wenn dieser Fehler weiterhin besteht, wende dich bitte an den Administrator deiner Instanz.'; +$a->strings['[Friendica System Notify]'] = '[Friendica-Systembenachrichtigung]'; +$a->strings['User deleted their account'] = 'Gelöschter Nutzeraccount'; +$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Ein Nutzer deiner Friendica-Instanz hat seinen Account gelöscht. Bitte stelle sicher, dass dessen Daten aus deinen Backups entfernt werden.'; +$a->strings['The user id is %d'] = 'Die ID des Users lautet %d'; +$a->strings['Your account has been successfully removed. Bye bye!'] = 'Ihr Konto wurde erfolgreich gelöscht. Auf Wiedersehen!'; +$a->strings['Remove My Account'] = 'Konto löschen'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.'; +$a->strings['Please enter your password for verification:'] = 'Bitte gib dein Passwort zur Verifikation ein:'; +$a->strings['Do you want to ignore this server?'] = 'Möchtest du diese Instanz ignorieren?'; +$a->strings['Do you want to unignore this server?'] = 'Möchtest du diese Instanz nicht mehr ignorieren?'; +$a->strings['Remote server settings'] = 'Einstellungen der Remote-Instanz'; +$a->strings['Server URL'] = 'Server URL'; +$a->strings['Settings saved'] = 'Einstellungen gespeichert'; +$a->strings['Here you can find all the remote servers you have taken individual moderation actions against. For a list of servers your node has blocked, please check out the Information page.'] = 'Hier findest du alle Entfernten-Server, gegen die du individuelle Moderationsmaßnahmen ergriffen hast. Eine Liste der Server, die deine Instanz blockiert hat, findest du auf der Informationseite .'; +$a->strings['Delete all your settings for the remote server'] = 'Lösche alle deine Einstellungen für die Entfernte-Instanz'; +$a->strings['Save changes'] = 'Einstellungen speichern'; $a->strings['Please enter your password to access this page.'] = 'Bitte gib dein Passwort ein, um auf diese Seite zuzugreifen.'; $a->strings['App-specific password generation failed: The description is empty.'] = 'Die Erzeugung des App spezifischen Passworts ist fehlgeschlagen. Die Beschreibung ist leer.'; $a->strings['App-specific password generation failed: This description already exists.'] = 'Die Erzeugung des App spezifischen Passworts ist fehlgeschlagen. Die Beschreibung existiert bereits.'; @@ -2456,7 +2677,6 @@ $a->strings['App-specific password successfully revoked.'] = 'App spezifisches P $a->strings['Two-factor app-specific passwords'] = 'Zwei-Faktor App spezifische Passwörter.'; $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.

    '] = '

    App spezifische Passwörter sind zufällig generierte Passwörter die anstelle des regulären Passworts zur Anmeldung mit Client Anwendungen verwendet werden, wenn diese Anwendungen die Zwei-Faktor-Authentifizierung nicht unterstützen.

    '; $a->strings['Make sure to copy your new app-specific password now. You won’t be able to see it again!'] = 'Das neue App spezifische Passwort muss jetzt übertragen werden. Später wirst du es nicht mehr einsehen können!'; -$a->strings['Description'] = 'Beschreibung'; $a->strings['Last Used'] = 'Zuletzt verwendet'; $a->strings['Revoke'] = 'Widerrufen'; $a->strings['Revoke All'] = 'Alle widerrufen'; @@ -2541,13 +2761,46 @@ $a->strings['Export all'] = 'Alles exportieren'; $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)'] = 'Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Photos werden nicht exportiert).'; $a->strings['Export Contacts to CSV'] = 'Kontakte nach CSV exportieren'; $a->strings['Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon.'] = 'Exportiert die Liste der Nutzerkonten denen du folgst in eine CSV Datei. Das Format ist z.B. zu Mastodon kompatibel.'; +$a->strings['The top-level post isn\'t visible.'] = 'Der Beitrag der obersten Ebene ist nicht sichtbar.'; +$a->strings['The top-level post was deleted.'] = 'Der Beitrag auf der obersten Ebene wurde gelöscht.'; +$a->strings['This node has blocked the top-level author or the author of the shared post.'] = 'Diese Instanz hat den Top-Level-Autor oder den Autor des freigegebenen Beitrags gesperrt.'; +$a->strings['You have ignored or blocked the top-level author or the author of the shared post.'] = 'Du hast den Autor der obersten Ebene oder den Autor des freigegebenen Beitrags ignoriert oder blockiert.'; +$a->strings['You have ignored the top-level author\'s server or the shared post author\'s server.'] = 'Du hast die Instanz des übergeordneten Autors oder die Instanz des Autors des freigegebenen Beitrags ignoriert.'; +$a->strings['Conversation Not Found'] = 'Konversation nicht gefunden'; +$a->strings['Unfortunately, the requested conversation isn\'t available to you.'] = 'Leider ist die gewünschte Konversation für dich nicht verfügbar.'; +$a->strings['Possible reasons include:'] = 'Mögliche Gründe sind:'; $a->strings['Stack trace:'] = 'Stack trace:'; $a->strings['Exception thrown in %s:%d'] = 'Exception thrown in %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.'] = 'Zum Zwecke der Registrierung und um die Kommunikation zwischen dem Nutzer und seinen Kontakten zu gewährleisten, muß der Nutzer einen Namen (auch Pseudonym) und einen Nutzernamen (Spitzname) sowie eine funktionierende E-Mail-Adresse angeben. Der Name ist auf der Profilseite für alle Nutzer sichtbar, auch wenn die Profildetails nicht angezeigt werden. Die E-Mail-Adresse wird nur zur Benachrichtigung des Nutzers verwendet, sie wird nirgends angezeigt. Die Anzeige des Nutzerkontos im Server-Verzeichnis bzw. dem weltweiten Verzeichnis erfolgt gemäß den Einstellungen des Nutzers, sie ist zur Kommunikation nicht zwingend notwendig.'; $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.'] = 'Diese Daten sind für die Kommunikation notwendig und werden an die Knoten der Kommunikationspartner übermittelt und dort gespeichert. Nutzer können weitere, private Angaben machen, die ebenfalls an die verwendeten Server der Kommunikationspartner übermittelt werden können.'; -$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.'] = 'Angemeldete Nutzer können ihre Nutzerdaten jederzeit von den Kontoeinstellungen aus exportieren. Wenn ein Nutzer wünscht das Nutzerkonto zu löschen, so ist dies jederzeit unter %1$s/removeme möglich. Die Löschung des Nutzerkontos ist permanent. Die Löschung der Daten wird auch von den Knoten der Kommunikationspartner angefordert.'; +$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/settings/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners.'] = 'Angemeldete Nutzer können ihre Nutzerdaten jederzeit von den Kontoeinstellungen aus exportieren. Wenn ein Nutzer wünscht das Nutzerkonto zu löschen, so ist dies jederzeit unter %1$s/settings/removeme möglich. Die Löschung des Nutzerkontos ist permanent. Die Löschung der Daten wird auch von den Knoten der Kommunikationspartner angefordert.'; $a->strings['Privacy Statement'] = 'Datenschutzerklärung'; +$a->strings['Rules'] = 'Regeln'; +$a->strings['Parameter uri_id is missing.'] = 'Der Parameter uri_id fehlt.'; +$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'Der angeforderte Beitrag existiert nicht oder wurde gelöscht.'; +$a->strings['You are now logged in as %s'] = 'Du bist jetzt als %s angemeldet'; +$a->strings['Switch between your accounts'] = 'Wechsle deine Konten'; +$a->strings['Manage your accounts'] = 'Verwalte deine Konten'; +$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast.'; +$a->strings['Select an identity to manage: '] = 'Wähle eine Identität zum Verwalten aus: '; +$a->strings['User imports on closed servers can only be done by an administrator.'] = 'Auf geschlossenen Servern können ausschließlich die Administratoren Benutzerkonten importieren.'; +$a->strings['Move account'] = 'Account umziehen'; +$a->strings['You can import an account from another Friendica server.'] = 'Du kannst einen Account von einem anderen Friendica Server importieren.'; +$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.'] = 'Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen, deine Kontakte darüber zu informieren, dass du hierher umgezogen bist.'; +$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus-Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren'; +$a->strings['Account file'] = 'Account-Datei'; +$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Um Deinen Account zu exportieren, rufe "Einstellungen -> Persönliche Daten exportieren" auf und wähle "Account exportieren"'; +$a->strings['Error decoding account file'] = 'Fehler beim Verarbeiten der Account-Datei'; +$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica-Account-Datei?'; +$a->strings['User \'%s\' already exists on this server!'] = 'Nutzer \'%s\' existiert bereits auf diesem Server!'; +$a->strings['User creation error'] = 'Fehler beim Anlegen des Nutzer-Accounts aufgetreten'; +$a->strings['%d contact not imported'] = [ + 0 => '%d Kontakt nicht importiert', + 1 => '%d Kontakte nicht importiert', +]; +$a->strings['User profile creation error'] = 'Fehler beim Anlegen des Nutzer-Profils'; +$a->strings['Done. You can now login with your username and password'] = 'Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden'; $a->strings['Welcome to Friendica'] = 'Willkommen bei Friendica'; $a->strings['New Member Checklist'] = 'Checkliste für neue Mitglieder'; $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.'] = 'Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.'; @@ -2572,8 +2825,8 @@ $a->strings['The Directory page lets you find other people in this network or ot $a->strings['Finding New People'] = 'Neue Leute kennenlernen'; $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.'] = 'Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen. Auf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.'; -$a->strings['Group Your Contacts'] = 'Gruppiere deine Kontakte'; -$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.'] = 'Sobald du einige Kontakte gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.'; +$a->strings['Add Your Contacts To Circle'] = 'Kontakte zum Circle hinzufügen'; +$a->strings['Once you have made some friends, organize them into private conversation circles from the sidebar of your Contacts page and then you can interact with each circle privately on your Network page.'] = 'Sobald du einige Freunde gefunden hast, kannst du diese in der Seitenleiste deiner Kontaktseite in private Circles einteilen und dann mit jedem Circle auf deiner Netzwerkseite privat interagieren.'; $a->strings['Why Aren\'t My Posts Public?'] = 'Warum sind meine Beiträge nicht öffentlich?'; $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.'] = 'Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch.'; $a->strings['Getting Help'] = 'Hilfe bekommen'; @@ -2663,8 +2916,14 @@ Login Name: %s (%s)'] = 'Kompletter Name: %s URL der Seite: %s Login Name: %s(%s)'; $a->strings['Please visit %s to approve or reject the request.'] = 'Bitte besuche %s, um die Anfrage zu bearbeiten.'; +$a->strings['new registration'] = 'Neue Registrierung'; +$a->strings['You\'ve received a new registration from \'%1$s\' at %2$s'] = 'Du hast eine neue Registrierung von %1$s auf %2$s erhalten.'; +$a->strings['You\'ve received a [url=%1$s]new registration[/url] from %2$s.'] = 'Du hast eine [url=%1$s]neue Registrierung[/url] von %2$s erhalten.'; +$a->strings['Please visit %s to have a look at the new registration.'] = 'Bitte rufe %s auf, um dir die Registrierung zu sichten.'; $a->strings['%s %s tagged you'] = '%s %s hat dich erwähnt'; $a->strings['%s %s shared a new post'] = '%s%shat einen Beitrag geteilt'; +$a->strings['%1$s %2$s liked your post #%3$d'] = '%1$s%2$s mag deinen Beitrag #%3$d'; +$a->strings['%1$s %2$s liked your comment on #%3$d'] = '%1$s%2$s mag deinen Kommentar zu #%3$d'; $a->strings['This message was sent to you by %s, a member of the Friendica social network.'] = 'Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica.'; $a->strings['You may visit them online at %s'] = 'Du kannst sie online unter %s besuchen'; $a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest.'; @@ -2678,6 +2937,9 @@ $a->strings['Edit'] = 'Bearbeiten'; $a->strings['Delete globally'] = 'Global löschen'; $a->strings['Remove locally'] = 'Lokal entfernen'; $a->strings['Block %s'] = 'Blockiere %s'; +$a->strings['Ignore %s'] = 'Ignoriere %s'; +$a->strings['Collapse %s'] = 'Verberge %s'; +$a->strings['Report post'] = 'Beitrag melden'; $a->strings['Save to folder'] = 'In Ordner speichern'; $a->strings['I will attend'] = 'Ich werde teilnehmen'; $a->strings['I will not attend'] = 'Ich werde nicht teilnehmen'; @@ -2704,6 +2966,9 @@ $a->strings['Comment this item on your system'] = 'Kommentiere diesen Beitrag vo $a->strings['Remote comment'] = 'Entfernter Kommentar'; $a->strings['Share via ...'] = 'Teile mit...'; $a->strings['Share via external services'] = 'Teile mit einem externen Dienst'; +$a->strings['Unknown parent'] = 'Unbekannter Ursprungsbeitrag'; +$a->strings['in reply to %s'] = 'Als Antwort auf %s'; +$a->strings['Parent is probably private or not federated.'] = 'Der Urspungsbeitrag ist wahrscheinlich privat oder nicht föderiert.'; $a->strings['to'] = 'zu'; $a->strings['via'] = 'via'; $a->strings['Wall-to-Wall'] = 'Wall-to-Wall'; @@ -2721,6 +2986,16 @@ $a->strings['%d comment'] = [ ]; $a->strings['Show more'] = 'Zeige mehr'; $a->strings['Show fewer'] = 'Zeige weniger'; +$a->strings['Reshared by: %s'] = 'Geteilt von: %s'; +$a->strings['Viewed by: %s'] = 'Gesehen von: %s'; +$a->strings['Liked by: %s'] = 'Diese Menschen mögen das: %s'; +$a->strings['Disliked by: %s'] = 'Unbeliebt bei: %s'; +$a->strings['Attended by: %s'] = 'Besucht von: %s'; +$a->strings['Maybe attended by: %s'] = 'Vielleicht besucht von: %s'; +$a->strings['Not attended by: %s'] = 'Nicht besucht von: %s'; +$a->strings['Reacted with %s by: %s'] = 'Reagierte mit %s von: %s'; +$a->strings['Chat'] = 'Chat'; +$a->strings['(no subject)'] = '(kein Betreff)'; $a->strings['%s is now following %s.'] = '%s folgt nun %s'; $a->strings['following'] = 'folgen'; $a->strings['%s stopped following %s.'] = '%s hat aufgehört %s, zu folgen'; @@ -2751,7 +3026,6 @@ $a->strings['second'] = 'Sekunde'; $a->strings['seconds'] = 'Sekunden'; $a->strings['in %1$d %2$s'] = 'in %1$d %2$s'; $a->strings['%1$d %2$s ago'] = '%1$d %2$s her'; -$a->strings['(no subject)'] = '(kein Betreff)'; $a->strings['Notification from Friendica'] = 'Benachrichtigung von Friendica'; $a->strings['Empty Post'] = 'Leerer Beitrag'; $a->strings['default'] = 'Standard'; @@ -2809,7 +3083,7 @@ $a->strings['Center'] = 'Mitte'; $a->strings['Color scheme'] = 'Farbschema'; $a->strings['Posts font size'] = 'Schriftgröße in Beiträgen'; $a->strings['Textareas font size'] = 'Schriftgröße in Eingabefeldern'; -$a->strings['Comma separated list of helper forums'] = 'Komma-separierte Liste der Helfer-Foren'; +$a->strings['Comma separated list of helper groups'] = 'Komma-separierte Liste der Helfer-Gruppen'; $a->strings['don\'t show'] = 'nicht zeigen'; $a->strings['show'] = 'zeigen'; $a->strings['Set style'] = 'Stil auswählen'; diff --git a/view/lang/en-gb/messages.po b/view/lang/en-gb/messages.po index 1e6e967df..0a3330af7 100644 --- a/view/lang/en-gb/messages.po +++ b/view/lang/en-gb/messages.po @@ -1,529 +1,91 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: # Andy H3 , 2017-2021 +# Hypolite Petovan , 2023 +# Josh Soref, 2023 # Kris, 2018 # Steffen K9, 2019,2021 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-24 23:21-0400\n" -"PO-Revision-Date: 2021-10-27 06:35+0000\n" -"Last-Translator: Andy H3 \n" -"Language-Team: English (United Kingdom) (http://www.transifex.com/Friendica/friendica/language/en_GB/)\n" +"POT-Creation-Date: 2023-10-15 13:49+0000\n" +"PO-Revision-Date: 2011-05-05 10:19+0000\n" +"Last-Translator: Hypolite Petovan , 2023\n" +"Language-Team: English (United Kingdom) (http://app.transifex.com/Friendica/friendica/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: include/api.php:1113 src/Module/BaseApi.php:294 -#, 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] "Daily posting limit of %d post reached. The post was rejected." -msgstr[1] "Daily posting limit of %d posts are reached. This post was rejected." - -#: include/api.php:1127 src/Module/BaseApi.php:310 -#, 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] "Weekly posting limit of %d post reached. The post was rejected." -msgstr[1] "Weekly posting limit of %d posts are reached. This post was rejected." - -#: include/api.php:1141 src/Module/BaseApi.php:326 -#, php-format -msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "Monthly posting limit of %d posts are reached. The post was rejected." - -#: mod/api.php:30 mod/editpost.php:38 mod/events.php:220 mod/follow.php:56 -#: mod/follow.php:130 mod/item.php:185 mod/item.php:190 mod/item.php:936 -#: mod/message.php:69 mod/message.php:111 mod/notes.php:44 -#: mod/ostatus_subscribe.php:32 mod/photos.php:160 mod/photos.php:900 -#: mod/repair_ostatus.php:31 mod/settings.php:47 mod/settings.php:57 -#: mod/settings.php:409 mod/suggest.php:34 mod/uimport.php:33 -#: mod/unfollow.php:35 mod/unfollow.php:50 mod/unfollow.php:82 -#: mod/wall_attach.php:68 mod/wall_attach.php:71 mod/wall_upload.php:90 -#: mod/wall_upload.php:93 mod/wallmessage.php:36 mod/wallmessage.php:55 -#: mod/wallmessage.php:89 mod/wallmessage.php:109 src/Module/Attach.php:55 -#: src/Module/BaseApi.php:79 src/Module/BaseApi.php:88 -#: src/Module/BaseApi.php:97 src/Module/BaseApi.php:106 -#: src/Module/BaseNotifications.php:88 src/Module/Contact.php:328 -#: src/Module/Contact/Advanced.php:44 src/Module/Delegation.php:118 -#: src/Module/FollowConfirm.php:17 src/Module/FriendSuggest.php:44 -#: src/Module/Group.php:45 src/Module/Group.php:90 src/Module/Invite.php:41 -#: src/Module/Invite.php:130 src/Module/Notifications/Notification.php:48 -#: src/Module/Notifications/Notification.php:79 -#: src/Module/Profile/Common.php:56 src/Module/Profile/Contacts.php:56 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:64 src/Module/Register.php:77 -#: src/Module/Register.php:195 src/Module/Register.php:234 -#: src/Module/Search/Directory.php:38 src/Module/Settings/Delegation.php:42 -#: src/Module/Settings/Delegation.php:70 src/Module/Settings/Display.php:43 -#: src/Module/Settings/Display.php:121 -#: src/Module/Settings/Profile/Photo/Crop.php:166 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/UserExport.php:58 src/Module/Settings/UserExport.php:93 -#: src/Module/Settings/UserExport.php:198 -#: src/Module/Settings/UserExport.php:218 -#: src/Module/Settings/UserExport.php:283 -msgid "Permission denied." -msgstr "Permission denied." - -#: mod/cal.php:44 mod/cal.php:48 mod/follow.php:39 mod/redir.php:34 -#: mod/redir.php:175 src/Module/Conversation/Community.php:182 -#: src/Module/Debug/ItemBody.php:37 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:43 -msgid "Access denied." -msgstr "Access denied." - -#: mod/cal.php:61 mod/cal.php:78 mod/photos.php:69 mod/photos.php:140 -#: mod/photos.php:807 src/Model/Profile.php:229 src/Module/HCard.php:52 -#: src/Module/Profile/Common.php:41 src/Module/Profile/Common.php:52 -#: src/Module/Profile/Contacts.php:40 src/Module/Profile/Contacts.php:50 -#: src/Module/Profile/Media.php:38 src/Module/Profile/Status.php:58 -#: src/Module/Register.php:256 src/Module/RemoteFollow.php:49 -msgid "User not found." -msgstr "User not found." - -#: mod/cal.php:120 mod/display.php:270 src/Module/Profile/Profile.php:94 -#: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:109 -#: src/Module/Update/Profile.php:56 -msgid "Access to this profile has been restricted." -msgstr "Access to this profile has been restricted." - -#: mod/cal.php:242 mod/events.php:377 src/Content/Nav.php:194 -#: src/Content/Nav.php:258 src/Module/BaseProfile.php:84 -#: src/Module/BaseProfile.php:95 view/theme/frio/theme.php:229 -#: view/theme/frio/theme.php:233 -msgid "Events" -msgstr "Events" - -#: mod/cal.php:243 mod/events.php:378 -msgid "View" -msgstr "View" - -#: mod/cal.php:244 mod/events.php:380 -msgid "Previous" -msgstr "Previous" - -#: mod/cal.php:245 mod/events.php:381 src/Module/Install.php:207 -msgid "Next" -msgstr "Next" - -#: mod/cal.php:248 mod/events.php:386 src/Model/Event.php:457 -msgid "today" -msgstr "today" - -#: mod/cal.php:249 mod/events.php:387 src/Model/Event.php:458 -#: src/Util/Temporal.php:334 -msgid "month" -msgstr "month" - -#: mod/cal.php:250 mod/events.php:388 src/Model/Event.php:459 -#: src/Util/Temporal.php:335 -msgid "week" -msgstr "week" - -#: mod/cal.php:251 mod/events.php:389 src/Model/Event.php:460 -#: src/Util/Temporal.php:336 -msgid "day" -msgstr "day" - -#: mod/cal.php:252 mod/events.php:390 -msgid "list" -msgstr "List" - -#: mod/cal.php:265 src/Console/User.php:182 src/Model/User.php:680 -#: 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 "User not found" - -#: mod/cal.php:274 -msgid "This calendar format is not supported" -msgstr "This calendar format is not supported" - -#: mod/cal.php:276 -msgid "No exportable data found" -msgstr "No exportable data found" - -#: mod/cal.php:293 -msgid "calendar" -msgstr "calendar" - -#: mod/display.php:165 mod/photos.php:811 -#: src/Module/Conversation/Community.php:176 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 "Public access denied." - -#: mod/display.php:221 mod/display.php:295 -msgid "The requested item doesn't exist or has been deleted." -msgstr "The requested item doesn't exist or has been deleted." - -#: mod/display.php:375 -msgid "The feed for this item is unavailable." -msgstr "The feed for this item is unavailable." - -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Item not found" - -#: mod/editpost.php:64 -msgid "Edit post" -msgstr "Edit post" - -#: mod/editpost.php:91 mod/notes.php:56 src/Content/Text/HTML.php:885 -#: src/Module/Admin/Storage.php:143 src/Module/Filer/SaveTag.php:69 -msgid "Save" -msgstr "Save" - -#: mod/editpost.php:92 mod/photos.php:1347 src/Content/Conversation.php:326 -#: src/Module/Contact/Poke.php:157 src/Object/Post.php:964 -msgid "Loading..." -msgstr "Loading..." - -#: mod/editpost.php:93 mod/message.php:198 mod/message.php:355 -#: mod/wallmessage.php:139 src/Content/Conversation.php:327 -msgid "Upload photo" -msgstr "Upload photo" - -#: mod/editpost.php:94 src/Content/Conversation.php:328 -msgid "upload photo" -msgstr "upload photo" - -#: mod/editpost.php:95 src/Content/Conversation.php:329 -msgid "Attach file" -msgstr "Attach file" - -#: mod/editpost.php:96 src/Content/Conversation.php:330 -msgid "attach file" -msgstr "attach file" - -#: mod/editpost.php:97 mod/message.php:199 mod/message.php:356 -#: mod/wallmessage.php:140 -msgid "Insert web link" -msgstr "Insert web link" - -#: mod/editpost.php:98 -msgid "web link" -msgstr "web link" - -#: mod/editpost.php:99 -msgid "Insert video link" -msgstr "Insert video link" - -#: mod/editpost.php:100 -msgid "video link" -msgstr "video link" - -#: mod/editpost.php:101 -msgid "Insert audio link" -msgstr "Insert audio link" - -#: mod/editpost.php:102 -msgid "audio link" -msgstr "audio link" - -#: mod/editpost.php:103 src/Content/Conversation.php:340 -#: src/Module/Item/Compose.php:161 -msgid "Set your location" -msgstr "Set your location" - -#: mod/editpost.php:104 src/Content/Conversation.php:341 -msgid "set location" -msgstr "set location" - -#: mod/editpost.php:105 src/Content/Conversation.php:342 -msgid "Clear browser location" -msgstr "Clear browser location" - -#: mod/editpost.php:106 src/Content/Conversation.php:343 -msgid "clear location" -msgstr "clear location" - -#: mod/editpost.php:107 mod/message.php:200 mod/message.php:358 -#: mod/photos.php:1498 mod/wallmessage.php:141 -#: src/Content/Conversation.php:355 src/Content/Conversation.php:689 -#: src/Module/Item/Compose.php:165 src/Object/Post.php:502 -msgid "Please wait" -msgstr "Please wait" - -#: mod/editpost.php:108 src/Content/Conversation.php:356 -msgid "Permission settings" -msgstr "Permission settings" - -#: mod/editpost.php:116 src/Core/ACL.php:325 -msgid "CC: email addresses" -msgstr "CC: email addresses" - -#: mod/editpost.php:117 src/Content/Conversation.php:366 -msgid "Public post" -msgstr "Public post" - -#: mod/editpost.php:120 src/Content/Conversation.php:345 -#: src/Module/Item/Compose.php:166 -msgid "Set title" -msgstr "Set title" - -#: mod/editpost.php:122 src/Content/Conversation.php:347 -#: src/Module/Item/Compose.php:167 -msgid "Categories (comma-separated list)" -msgstr "Categories (comma-separated list)" - -#: mod/editpost.php:123 src/Core/ACL.php:326 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Example: bob@example.com, mary@example.com" - -#: mod/editpost.php:128 mod/events.php:517 mod/photos.php:1346 -#: mod/photos.php:1402 mod/photos.php:1476 src/Content/Conversation.php:370 -#: src/Module/Item/Compose.php:160 src/Object/Post.php:974 -msgid "Preview" -msgstr "Preview" - -#: mod/editpost.php:130 mod/fbrowser.php:100 mod/fbrowser.php:127 -#: mod/follow.php:144 mod/photos.php:1013 mod/photos.php:1114 mod/tagrm.php:37 -#: mod/tagrm.php:129 mod/unfollow.php:97 src/Content/Conversation.php:373 -#: src/Module/Contact/Revoke.php:99 src/Module/RemoteFollow.php:116 -msgid "Cancel" -msgstr "Cancel" - -#: mod/editpost.php:134 src/Content/Conversation.php:380 -#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:460 -#: src/Module/Admin/Logs/View.php:92 -msgid "Message" -msgstr "Message" - -#: mod/editpost.php:135 src/Content/Conversation.php:381 -#: src/Module/Settings/TwoFactor/Trusted.php:101 -msgid "Browser" -msgstr "Browser" - -#: mod/editpost.php:136 mod/events.php:522 mod/photos.php:948 -#: mod/photos.php:1300 src/Content/Conversation.php:357 -msgid "Permissions" -msgstr "Permissions" - -#: mod/editpost.php:138 src/Content/Conversation.php:383 -msgid "Open Compose page" -msgstr "Open Compose page" - -#: mod/events.php:123 mod/events.php:125 -msgid "Event can not end before it has started." -msgstr "Event cannot end before it has started." - -#: mod/events.php:132 mod/events.php:134 -msgid "Event title and start time are required." -msgstr "Event title and starting time are required." - -#: mod/events.php:379 -msgid "Create New Event" -msgstr "Create new event" - -#: mod/events.php:478 src/Module/Admin/Logs/View.php:96 -msgid "Event details" -msgstr "Event details" - -#: mod/events.php:479 -msgid "Starting date and Title are required." -msgstr "Starting date and title are required." - -#: mod/events.php:480 mod/events.php:485 -msgid "Event Starts:" -msgstr "Event starts:" - -#: mod/events.php:480 mod/events.php:510 -#: 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:61 -#: 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:137 -#: src/Module/Security/TwoFactor/Verify.php:100 -#: src/Module/Settings/TwoFactor/Index.php:133 -#: src/Module/Settings/TwoFactor/Verify.php:141 -msgid "Required" -msgstr "Required" - -#: mod/events.php:493 mod/events.php:516 -msgid "Finish date/time is not known or not relevant" -msgstr "Finish date/time is not known or not relevant" - -#: mod/events.php:495 mod/events.php:500 -msgid "Event Finishes:" -msgstr "Event finishes:" - -#: mod/events.php:506 src/Module/Profile/Profile.php:172 -#: src/Module/Settings/Profile/Index.php:239 -msgid "Description:" -msgstr "Description:" - -#: mod/events.php:508 src/Content/Widget/VCard.php:98 src/Model/Event.php:80 -#: src/Model/Event.php:107 src/Model/Event.php:466 src/Model/Event.php:915 -#: src/Model/Profile.php:368 src/Module/Contact.php:565 -#: src/Module/Directory.php:150 src/Module/Notifications/Introductions.php:165 -#: src/Module/Profile/Profile.php:194 -msgid "Location:" -msgstr "Location:" - -#: mod/events.php:510 mod/events.php:512 -msgid "Title:" -msgstr "Title:" - -#: mod/events.php:513 mod/events.php:514 -msgid "Share this event" -msgstr "Share this event" - -#: mod/events.php:519 mod/message.php:201 mod/message.php:357 -#: mod/photos.php:930 mod/photos.php:1034 mod/photos.php:1304 -#: mod/photos.php:1345 mod/photos.php:1401 mod/photos.php:1475 -#: src/Module/Admin/Item/Source.php:65 src/Module/Contact.php:523 -#: src/Module/Contact/Advanced.php:133 src/Module/Contact/Poke.php:158 -#: src/Module/Debug/ActivityPubConversion.php:141 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:56 src/Module/Debug/WebFinger.php:53 -#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:128 -#: src/Module/Install.php:245 src/Module/Install.php:287 -#: src/Module/Install.php:324 src/Module/Invite.php:177 -#: src/Module/Item/Compose.php:150 src/Module/Profile/Profile.php:247 -#: src/Module/Settings/Profile/Index.php:223 src/Object/Post.php:963 -#: 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 "Submit" - -#: mod/events.php:520 src/Module/Profile/Profile.php:248 -msgid "Basic" -msgstr "Basic" - -#: mod/events.php:521 src/Module/Admin/Site.php:507 src/Module/Contact.php:863 -#: src/Module/Profile/Profile.php:249 -msgid "Advanced" -msgstr "Advanced" - -#: mod/events.php:538 -msgid "Failed to remove event" -msgstr "Failed to remove event" - -#: mod/fbrowser.php:43 src/Content/Nav.php:192 src/Module/BaseProfile.php:64 -#: view/theme/frio/theme.php:227 -msgid "Photos" -msgstr "Photos" - -#: mod/fbrowser.php:102 mod/fbrowser.php:129 -#: src/Module/Settings/Profile/Photo/Index.php:129 -msgid "Upload" -msgstr "Upload" - -#: mod/fbrowser.php:124 -msgid "Files" -msgstr "Files" - -#: mod/follow.php:74 mod/unfollow.php:96 src/Module/RemoteFollow.php:115 -msgid "Submit Request" -msgstr "Submit request" - -#: mod/follow.php:84 -msgid "You already added this contact." -msgstr "You already added this contact." - -#: mod/follow.php:100 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "The network type couldn't be detected. Contact can't be added." - -#: mod/follow.php:108 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "diaspora* support isn't enabled. Contact can't be added." - -#: mod/follow.php:113 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatus support is disabled. Contact can't be added." - -#: mod/follow.php:138 src/Content/Item.php:463 src/Content/Widget.php:76 -#: src/Model/Contact.php:1072 src/Model/Contact.php:1084 -#: view/theme/vier/theme.php:172 -msgid "Connect/Follow" -msgstr "Connect/Follow" - -#: mod/follow.php:139 src/Module/RemoteFollow.php:114 -msgid "Please answer the following:" -msgstr "Please answer the following:" - -#: mod/follow.php:140 mod/unfollow.php:94 -msgid "Your Identity Address:" -msgstr "My identity address:" - -#: mod/follow.php:141 mod/unfollow.php:100 -#: src/Module/Admin/Blocklist/Contact.php:116 src/Module/Contact.php:561 -#: src/Module/Notifications/Introductions.php:107 -#: src/Module/Notifications/Introductions.php:176 -msgid "Profile URL" -msgstr "Profile URL:" - -#: mod/follow.php:142 src/Module/Contact.php:573 -#: src/Module/Notifications/Introductions.php:169 -#: src/Module/Profile/Profile.php:207 -msgid "Tags:" -msgstr "Tags:" - -#: mod/follow.php:153 -#, php-format -msgid "%s knows you" -msgstr "%s knows you" - -#: mod/follow.php:154 -msgid "Add a personal note:" -msgstr "Add a personal note:" - -#: mod/follow.php:163 mod/unfollow.php:109 src/Module/BaseProfile.php:59 -#: src/Module/Contact.php:833 -msgid "Status Messages and Posts" -msgstr "Status Messages and Posts" - -#: mod/follow.php:191 -msgid "The contact could not be added." -msgstr "Contact could not be added." - -#: mod/item.php:135 mod/item.php:139 +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 msgid "Unable to locate original post." msgstr "Unable to locate original post." -#: mod/item.php:341 mod/item.php:346 -msgid "Empty post discarded." -msgstr "Empty post discarded." - -#: mod/item.php:742 +#: mod/item.php:138 msgid "Post updated." msgstr "Post updated." -#: mod/item.php:752 mod/item.php:757 +#: mod/item.php:203 mod/item.php:207 msgid "Item wasn't stored." msgstr "Item wasn't stored." -#: mod/item.php:768 +#: mod/item.php:217 msgid "Item couldn't be fetched." msgstr "Item couldn't be fetched." -#: mod/item.php:914 src/Module/Admin/Themes/Details.php:39 -#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:41 -#: src/Module/Debug/ItemBody.php:56 +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "Empty post discarded." + +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 +#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Item not found." +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 +#: src/Module/Invite.php:42 src/Module/Invite.php:131 +#: src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Channels.php:56 src/Module/Settings/Channels.php:114 +#: src/Module/Settings/Delegation.php:90 src/Module/Settings/Display.php:90 +#: src/Module/Settings/Display.php:193 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:112 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/User/Import.php:84 src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "Permission denied." + #: mod/lostpass.php:40 msgid "No valid account found." msgstr "No valid account found." @@ -590,7 +152,7 @@ msgid "" "your email for further instructions." msgstr "Enter email address or nickname to reset your password. You will receive further instruction via email." -#: mod/lostpass.php:130 src/Module/Security/Login.php:148 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " msgstr "Nickname or email: " @@ -598,7 +160,7 @@ msgstr "Nickname or email: " msgid "Reset" msgstr "Reset" -#: mod/lostpass.php:146 src/Module/Security/Login.php:160 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 msgid "Password Reset" msgstr "Forgotten password?" @@ -658,23 +220,11 @@ msgstr "\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1$s msgid "Your password has been changed at %s" msgstr "Your password has been changed at %s" -#: mod/match.php:62 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "No keywords to match. Please add keywords to your profile." - -#: mod/match.php:93 src/Module/BaseSearch.php:117 -msgid "No matches" -msgstr "No matches" - -#: mod/match.php:98 -msgid "Profile Match" -msgstr "Profile Match" - -#: mod/message.php:46 mod/message.php:126 src/Content/Nav.php:286 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 msgid "New Message" msgstr "New Message" -#: mod/message.php:83 mod/wallmessage.php:69 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 msgid "No recipient selected." msgstr "No recipient selected." @@ -682,62 +232,103 @@ msgstr "No recipient selected." msgid "Unable to locate contact information." msgstr "Unable to locate contact information." -#: mod/message.php:90 mod/wallmessage.php:75 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 msgid "Message could not be sent." msgstr "Message could not be sent." -#: mod/message.php:93 mod/wallmessage.php:78 +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 msgid "Message collection failure." msgstr "Message collection failure." -#: mod/message.php:120 src/Module/Notifications/Introductions.php:113 -#: src/Module/Notifications/Introductions.php:148 -#: src/Module/Notifications/Notification.php:57 +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 msgid "Discard" msgstr "Discard" -#: mod/message.php:133 src/Content/Nav.php:283 view/theme/frio/theme.php:234 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" msgstr "Messages" -#: mod/message.php:146 +#: mod/message.php:148 msgid "Conversation not found." msgstr "Conversation not found." -#: mod/message.php:151 +#: mod/message.php:153 msgid "Message was not deleted." msgstr "Message was not deleted." -#: mod/message.php:166 +#: mod/message.php:168 msgid "Conversation was not removed." msgstr "Conversation was not removed." -#: mod/message.php:180 mod/message.php:286 mod/wallmessage.php:123 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 msgid "Please enter a link URL:" msgstr "Please enter a link URL:" -#: mod/message.php:189 mod/wallmessage.php:128 +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 msgid "Send Private Message" msgstr "Send private message" -#: mod/message.php:190 mod/message.php:347 mod/wallmessage.php:130 +#: mod/message.php:191 mod/message.php:346 msgid "To:" msgstr "To:" -#: mod/message.php:191 mod/message.php:348 mod/wallmessage.php:131 +#: mod/message.php:192 mod/message.php:347 msgid "Subject:" msgstr "Subject:" -#: mod/message.php:195 mod/message.php:351 mod/wallmessage.php:137 -#: src/Module/Invite.php:170 +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 msgid "Your message:" msgstr "Your message:" -#: mod/message.php:222 +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "Upload photo" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "Insert web link" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:587 +msgid "Please wait" +msgstr "Please wait" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 +#: src/Module/Install.php:274 src/Module/Install.php:309 +#: src/Module/Invite.php:178 src/Module/Item/Compose.php:189 +#: src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 +#: src/Object/Post.php:1106 view/theme/duepuntozero/config.php:85 +#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Submit" + +#: mod/message.php:223 msgid "No messages." msgstr "No messages." -#: mod/message.php:278 +#: mod/message.php:279 msgid "Message not available." msgstr "Message not available." @@ -745,11 +336,11 @@ msgstr "Message not available." msgid "Delete message" msgstr "Delete message" -#: mod/message.php:325 mod/message.php:457 +#: mod/message.php:325 mod/message.php:456 msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:i A" -#: mod/message.php:340 mod/message.php:454 +#: mod/message.php:340 mod/message.php:453 msgid "Delete conversation" msgstr "Delete conversation" @@ -759,1407 +350,482 @@ msgid "" "respond from the sender's profile page." msgstr "No secure communications available. You may be able to respond from the sender's profile page." -#: mod/message.php:346 +#: mod/message.php:345 msgid "Send Reply" msgstr "Send reply" -#: mod/message.php:428 +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "Unknown sender - %s" -#: mod/message.php:430 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "Me and %s" -#: mod/message.php:432 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "%s and me" -#: mod/message.php:460 +#: mod/message.php:459 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d message" msgstr[1] "%d messages" -#: mod/notes.php:51 src/Module/BaseProfile.php:106 +#: mod/notes.php:52 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "Personal notes" -#: mod/notes.php:55 +#: mod/notes.php:56 msgid "Personal notes are visible only by yourself." msgstr "Personal notes are visible only to you." -#: mod/ostatus_subscribe.php:37 -msgid "Subscribing to contacts" -msgstr "Subscribing to contacts" +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:161 +msgid "Save" +msgstr "Save" -#: mod/ostatus_subscribe.php:47 -msgid "No contact provided." -msgstr "No contact provided." +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "User not found." -#: mod/ostatus_subscribe.php:53 -msgid "Couldn't fetch information for contact." -msgstr "Couldn't fetch information for contact." - -#: mod/ostatus_subscribe.php:64 -msgid "Couldn't fetch friends for contact." -msgstr "Couldn't fetch friends for contact." - -#: mod/ostatus_subscribe.php:70 mod/ostatus_subscribe.php:81 -msgid "Couldn't fetch following contacts." -msgstr "Couldn't fetch following contacts." - -#: mod/ostatus_subscribe.php:76 -msgid "Couldn't fetch remote profile." -msgstr "Couldn't fetch remote profile." - -#: mod/ostatus_subscribe.php:86 -msgid "Unsupported network" -msgstr "Unsupported network" - -#: mod/ostatus_subscribe.php:102 mod/repair_ostatus.php:51 -msgid "Done" -msgstr "Done" - -#: mod/ostatus_subscribe.php:116 -msgid "success" -msgstr "success" - -#: mod/ostatus_subscribe.php:118 -msgid "failed" -msgstr "failed" - -#: mod/ostatus_subscribe.php:121 -msgid "ignored" -msgstr "Ignored" - -#: mod/ostatus_subscribe.php:126 mod/repair_ostatus.php:57 -msgid "Keep this window open until done." -msgstr "Keep this window open until done." - -#: mod/photos.php:108 src/Module/BaseProfile.php:67 +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 msgid "Photo Albums" msgstr "Photo Albums" -#: mod/photos.php:109 mod/photos.php:1593 +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 msgid "Recent Photos" msgstr "Recent photos" -#: mod/photos.php:111 mod/photos.php:1082 mod/photos.php:1595 +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 msgid "Upload New Photos" msgstr "Upload new photos" -#: mod/photos.php:129 src/Module/BaseSettings.php:37 +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 msgid "everybody" msgstr "everybody" -#: mod/photos.php:167 +#: mod/photos.php:159 msgid "Contact information unavailable" msgstr "Contact information unavailable" -#: mod/photos.php:196 +#: mod/photos.php:188 msgid "Album not found." msgstr "Album not found." -#: mod/photos.php:250 +#: mod/photos.php:244 msgid "Album successfully deleted" msgstr "Album successfully deleted" -#: mod/photos.php:252 +#: mod/photos.php:246 msgid "Album was empty." msgstr "Album was empty." -#: mod/photos.php:284 +#: mod/photos.php:277 msgid "Failed to delete the photo." msgstr "Failed to delete the photo." -#: mod/photos.php:559 +#: mod/photos.php:545 msgid "a photo" msgstr "a photo" -#: mod/photos.php:559 +#: mod/photos.php:545 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s was tagged in %2$s by %3$s" -#: mod/photos.php:642 mod/photos.php:645 mod/photos.php:672 -#: mod/wall_upload.php:207 src/Module/Settings/Profile/Photo/Index.php:60 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Image exceeds size limit of %s" +#: mod/photos.php:582 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Public access denied." -#: mod/photos.php:648 -msgid "Image upload didn't complete, please try again" -msgstr "Image upload didn't complete, please try again" - -#: mod/photos.php:651 -msgid "Image file is missing" -msgstr "Image file is missing" - -#: mod/photos.php:656 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "Server can't accept new file upload at this time, please contact your administrator" - -#: mod/photos.php:680 -msgid "Image file is empty." -msgstr "Image file is empty." - -#: mod/photos.php:695 mod/wall_upload.php:166 -#: src/Module/Settings/Profile/Photo/Index.php:69 -msgid "Unable to process image." -msgstr "Unable to process image." - -#: mod/photos.php:724 mod/wall_upload.php:232 -#: src/Module/Settings/Profile/Photo/Index.php:96 -msgid "Image upload failed." -msgstr "Image upload failed." - -#: mod/photos.php:816 +#: mod/photos.php:587 msgid "No photos selected" msgstr "No photos selected" -#: mod/photos.php:885 -msgid "Access to this item is restricted." -msgstr "Access to this item is restricted." +#: mod/photos.php:721 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "" -#: mod/photos.php:940 +#: mod/photos.php:728 msgid "Upload Photos" msgstr "Upload photos" -#: mod/photos.php:944 mod/photos.php:1030 +#: mod/photos.php:732 mod/photos.php:820 msgid "New album name: " msgstr "New album name: " -#: mod/photos.php:945 +#: mod/photos.php:733 msgid "or select existing album:" msgstr "or select existing album:" -#: mod/photos.php:946 +#: mod/photos.php:734 msgid "Do not show a status post for this upload" msgstr "Do not show a status post for this upload" -#: mod/photos.php:1011 +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "Permissions" + +#: mod/photos.php:801 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Do you really want to delete this photo album and all its photos?" -#: mod/photos.php:1012 mod/photos.php:1035 +#: mod/photos.php:802 mod/photos.php:825 msgid "Delete Album" msgstr "Delete album" -#: mod/photos.php:1039 +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Cancel" + +#: mod/photos.php:829 msgid "Edit Album" msgstr "Edit album" -#: mod/photos.php:1040 +#: mod/photos.php:830 msgid "Drop Album" msgstr "Drop album" -#: mod/photos.php:1044 +#: mod/photos.php:834 msgid "Show Newest First" msgstr "Show newest first" -#: mod/photos.php:1046 +#: mod/photos.php:836 msgid "Show Oldest First" msgstr "Show oldest first" -#: mod/photos.php:1067 mod/photos.php:1578 +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 msgid "View Photo" msgstr "View photo" -#: mod/photos.php:1100 +#: mod/photos.php:889 msgid "Permission denied. Access to this item may be restricted." msgstr "Permission denied. Access to this item may be restricted." -#: mod/photos.php:1102 +#: mod/photos.php:891 msgid "Photo not available" msgstr "Photo not available" -#: mod/photos.php:1112 +#: mod/photos.php:901 msgid "Do you really want to delete this photo?" msgstr "Do you really want to delete this photo?" -#: mod/photos.php:1113 mod/photos.php:1305 +#: mod/photos.php:902 mod/photos.php:1102 msgid "Delete Photo" msgstr "Delete photo" -#: mod/photos.php:1203 +#: mod/photos.php:1000 msgid "View photo" msgstr "View photo" -#: mod/photos.php:1205 +#: mod/photos.php:1002 msgid "Edit photo" msgstr "Edit photo" -#: mod/photos.php:1206 +#: mod/photos.php:1003 msgid "Delete photo" msgstr "Delete photo" -#: mod/photos.php:1207 +#: mod/photos.php:1004 msgid "Use as profile photo" msgstr "Use as profile photo" -#: mod/photos.php:1214 +#: mod/photos.php:1011 msgid "Private Photo" msgstr "Private photo" -#: mod/photos.php:1220 +#: mod/photos.php:1017 msgid "View Full Size" msgstr "View full size" -#: mod/photos.php:1273 +#: mod/photos.php:1070 msgid "Tags: " msgstr "Tags: " -#: mod/photos.php:1276 +#: mod/photos.php:1073 msgid "[Select tags to remove]" msgstr "[Select tags to remove]" -#: mod/photos.php:1291 +#: mod/photos.php:1088 msgid "New album name" msgstr "New album name" -#: mod/photos.php:1292 +#: mod/photos.php:1089 msgid "Caption" msgstr "Caption" -#: mod/photos.php:1293 +#: mod/photos.php:1090 msgid "Add a Tag" msgstr "Add Tag" -#: mod/photos.php:1293 +#: mod/photos.php:1090 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Example: @bob, @jojo@example.com, #California, #camping" -#: mod/photos.php:1294 +#: mod/photos.php:1091 msgid "Do not rotate" msgstr "Do not rotate" -#: mod/photos.php:1295 +#: mod/photos.php:1092 msgid "Rotate CW (right)" msgstr "Rotate right (CW)" -#: mod/photos.php:1296 +#: mod/photos.php:1093 msgid "Rotate CCW (left)" msgstr "Rotate left (CCW)" -#: mod/photos.php:1342 mod/photos.php:1398 mod/photos.php:1472 -#: src/Module/Contact.php:993 src/Module/Item/Compose.php:148 -#: src/Object/Post.php:960 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1103 msgid "This is you" msgstr "This is me" -#: mod/photos.php:1344 mod/photos.php:1400 mod/photos.php:1474 -#: src/Object/Post.php:496 src/Object/Post.php:962 +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:581 +#: src/Object/Post.php:1105 msgid "Comment" msgstr "Comment" -#: mod/photos.php:1433 src/Content/Conversation.php:615 -#: src/Object/Post.php:227 +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1119 +msgid "Preview" +msgstr "Preview" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1107 +msgid "Loading..." +msgstr "Loading..." + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:261 msgid "Select" msgstr "Select" -#: mod/photos.php:1434 mod/settings.php:563 src/Content/Conversation.php:616 -#: src/Module/Admin/Users/Active.php:139 -#: src/Module/Admin/Users/Blocked.php:140 src/Module/Admin/Users/Index.php:153 +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 msgid "Delete" msgstr "Delete" -#: mod/photos.php:1495 src/Object/Post.php:349 +#: mod/photos.php:1298 src/Object/Post.php:409 msgid "Like" msgstr "Like" -#: mod/photos.php:1496 src/Object/Post.php:349 +#: mod/photos.php:1299 src/Object/Post.php:409 msgid "I like this (toggle)" msgstr "I like this (toggle)" -#: mod/photos.php:1497 src/Object/Post.php:350 +#: mod/photos.php:1300 src/Object/Post.php:410 msgid "Dislike" msgstr "Dislike" -#: mod/photos.php:1499 src/Object/Post.php:350 +#: mod/photos.php:1302 src/Object/Post.php:410 msgid "I don't like this (toggle)" msgstr "I don't like this (toggle)" -#: mod/photos.php:1521 +#: mod/photos.php:1324 msgid "Map" msgstr "Map" -#: mod/photos.php:1584 -msgid "View Album" -msgstr "View album" - -#: mod/ping.php:275 -msgid "{0} wants to be your friend" -msgstr "{0} wants to be your friend" - -#: mod/ping.php:292 -msgid "{0} requested registration" -msgstr "{0} requested registration" - -#: mod/ping.php:305 -#, php-format -msgid "{0} and %d others requested registration" -msgstr "{0} and %d others requested registration" - -#: mod/redir.php:49 mod/redir.php:102 -msgid "Bad Request." -msgstr "Bad Request." - -#: mod/redir.php:55 mod/redir.php:129 src/Module/Contact/Advanced.php:54 -#: src/Module/Contact/Advanced.php:105 src/Module/Contact/Contacts.php:36 -#: src/Module/Contact/Media.php:43 src/Module/FriendSuggest.php:54 -#: src/Module/FriendSuggest.php:92 src/Module/Group.php:105 -msgid "Contact not found." -msgstr "Contact not found." - -#: mod/removeme.php:63 src/Navigation/Notifications/Repository/Notify.php:454 -msgid "[Friendica System Notify]" -msgstr "[Friendica System Notify]" - -#: mod/removeme.php:63 -msgid "User deleted their account" -msgstr "User deleted their account" - -#: mod/removeme.php:64 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "On your Friendica node a user deleted their account. Please ensure that their data is removed from the backups." - -#: mod/removeme.php:65 -#, php-format -msgid "The user id is %d" -msgstr "The user id is %d" - -#: mod/removeme.php:99 mod/removeme.php:102 -msgid "Remove My Account" -msgstr "Remove My Account" - -#: mod/removeme.php:100 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "This will completely remove your account. Once this has been done it is not recoverable." - -#: mod/removeme.php:101 -msgid "Please enter your password for verification:" -msgstr "Please enter your password for verification:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Resubscribing to OStatus contacts" - -#: mod/repair_ostatus.php:46 src/Module/Debug/ActivityPubConversion.php:130 -#: src/Module/Debug/Babel.php:293 src/Module/Security/TwoFactor/Verify.php:97 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Error" -msgstr[1] "Errors" - -#: mod/settings.php:128 -msgid "Failed to connect with email account using the settings provided." -msgstr "Failed to connect with email account using the settings provided." - -#: mod/settings.php:157 -msgid "Contact CSV file upload error" -msgstr "Contact CSV file upload error" - -#: mod/settings.php:176 -msgid "Importing Contacts done" -msgstr "Importing contacts done" - -#: mod/settings.php:189 -msgid "Relocate message has been send to your contacts" -msgstr "Relocate message has been send to your contacts" - -#: mod/settings.php:201 -msgid "Passwords do not match." -msgstr "Passwords do not match." - -#: mod/settings.php:209 src/Console/User.php:210 -msgid "Password update failed. Please try again." -msgstr "Password update failed. Please try again." - -#: mod/settings.php:212 src/Console/User.php:213 -msgid "Password changed." -msgstr "Password changed." - -#: mod/settings.php:215 -msgid "Password unchanged." -msgstr "Password unchanged." - -#: mod/settings.php:303 -msgid "Please use a shorter name." -msgstr "Please use a shorter name." - -#: mod/settings.php:306 -msgid "Name too short." -msgstr "Name too short." - -#: mod/settings.php:313 -msgid "Wrong Password." -msgstr "Wrong password." - -#: mod/settings.php:318 -msgid "Invalid email." -msgstr "Invalid email." - -#: mod/settings.php:324 -msgid "Cannot change to that email." -msgstr "Cannot change to that email." - -#: mod/settings.php:365 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Private forum has no privacy permissions. Using default privacy group." - -#: mod/settings.php:368 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Private forum has no privacy permissions and no default privacy group." - -#: mod/settings.php:387 -msgid "Settings were not updated." -msgstr "Settings were not updated." - -#: mod/settings.php:428 -msgid "Connected Apps" -msgstr "Connected Apps" - -#: mod/settings.php:429 src/Module/Admin/Blocklist/Contact.php:106 -#: 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:135 -msgid "Name" -msgstr "Name:" - -#: mod/settings.php:430 src/Content/Nav.php:212 -msgid "Home Page" -msgstr "Home page" - -#: mod/settings.php:431 src/Module/Admin/Queue.php:78 -msgid "Created" -msgstr "Created" - -#: mod/settings.php:432 -msgid "Remove authorization" -msgstr "Remove authorization" - -#: mod/settings.php:450 -msgid "Addon Settings" -msgstr "Addon settings" - -#: mod/settings.php:451 -msgid "No Addon settings configured" -msgstr "No addon settings configured" - -#: mod/settings.php:472 -msgid "Additional Features" -msgstr "Additional Features" - -#: mod/settings.php:474 mod/settings.php:565 mod/settings.php:702 -#: 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:502 -#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:66 -#: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:194 -msgid "Save Settings" -msgstr "Save settings" - -#: mod/settings.php:496 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "diaspora* (Socialhome, Hubzilla)" - -#: mod/settings.php:496 mod/settings.php:497 -msgid "enabled" -msgstr "enabled" - -#: mod/settings.php:496 mod/settings.php:497 -msgid "disabled" -msgstr "disabled" - -#: mod/settings.php:496 mod/settings.php:497 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Built-in support for %s connectivity is %s" - -#: mod/settings.php:497 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: mod/settings.php:523 -msgid "Email access is disabled on this site." -msgstr "Email access is disabled on this site." - -#: mod/settings.php:528 mod/settings.php:563 -msgid "None" -msgstr "None" - -#: mod/settings.php:534 src/Module/BaseSettings.php:80 -msgid "Social Networks" -msgstr "Social networks" - -#: mod/settings.php:539 -msgid "General Social Media Settings" -msgstr "General Social Media Settings" - -#: mod/settings.php:540 -msgid "Accept only top level posts by contacts you follow" -msgstr "Accept only top-level posts by contacts you follow" - -#: mod/settings.php:540 -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 " -"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." -msgstr "The system automatically completes threads when a comment arrives. This has a side effect that you may receive posts started by someone you don't follow, because one of your followers commented there. This setting will deactivate this behaviour. If activated, you will only receive posts from people you really do follow." - -#: mod/settings.php:541 -msgid "Enable Content Warning" -msgstr "Enable Content Warning" - -#: mod/settings.php:541 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect any other content filtering you eventually set up." -msgstr "Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn't affect any other content filtering you eventually set up." - -#: mod/settings.php:542 -msgid "Enable intelligent shortening" -msgstr "Enable intelligent shortening" - -#: mod/settings.php:542 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If disabled, every shortened post will always point to the original " -"friendica post." -msgstr "Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original Friendica post." - -#: mod/settings.php:543 -msgid "Enable simple text shortening" -msgstr "Enable simple text shortening" - -#: mod/settings.php:543 -msgid "" -"Normally the system shortens posts at the next line feed. If this option is " -"enabled then the system will shorten the text at the maximum character " -"limit." -msgstr "Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit." - -#: mod/settings.php:544 -msgid "Attach the link title" -msgstr "Attach the link title" - -#: mod/settings.php:544 -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 "If 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." - -#: mod/settings.php:545 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "Your legacy ActivityPub/GNU Social account" - -#: mod/settings.php:545 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done." - -#: mod/settings.php:548 -msgid "Repair OStatus subscriptions" -msgstr "Repair OStatus subscriptions" - -#: mod/settings.php:552 -msgid "Email/Mailbox Setup" -msgstr "Email/Mailbox setup" - -#: mod/settings.php:553 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Specify how to connect to your mailbox, if you wish to communicate with existing email contacts." - -#: mod/settings.php:554 -msgid "Last successful email check:" -msgstr "Last successful email check:" - -#: mod/settings.php:556 -msgid "IMAP server name:" -msgstr "IMAP server name:" - -#: mod/settings.php:557 -msgid "IMAP port:" -msgstr "IMAP port:" - -#: mod/settings.php:558 -msgid "Security:" -msgstr "Security:" - -#: mod/settings.php:559 -msgid "Email login name:" -msgstr "Email login name:" - -#: mod/settings.php:560 -msgid "Email password:" -msgstr "Email password:" - -#: mod/settings.php:561 -msgid "Reply-to address:" -msgstr "Reply-to address:" - -#: mod/settings.php:562 -msgid "Send public posts to all email contacts:" -msgstr "Send public posts to all email contacts:" - -#: mod/settings.php:563 -msgid "Action after import:" -msgstr "Action after import:" - -#: mod/settings.php:563 src/Content/Nav.php:280 -msgid "Mark as seen" -msgstr "Mark as seen" - -#: mod/settings.php:563 -msgid "Move to folder" -msgstr "Move to folder" - -#: mod/settings.php:564 -msgid "Move to folder:" -msgstr "Move to folder:" - -#: mod/settings.php:578 -msgid "Unable to find your profile. Please contact your admin." -msgstr "Unable to find your profile. Please contact your admin." - -#: mod/settings.php:616 src/Content/Widget.php:526 -msgid "Account Types" -msgstr "Account types" - -#: mod/settings.php:617 -msgid "Personal Page Subtypes" -msgstr "Personal Page subtypes" - -#: mod/settings.php:618 -msgid "Community Forum Subtypes" -msgstr "Community forum subtypes" - -#: mod/settings.php:625 src/Module/Admin/BaseUsers.php:106 -msgid "Personal Page" -msgstr "Personal Page" - -#: mod/settings.php:626 -msgid "Account for a personal profile." -msgstr "Account for a personal profile." - -#: mod/settings.php:629 src/Module/Admin/BaseUsers.php:107 -msgid "Organisation Page" -msgstr "Organisation Page" - -#: mod/settings.php:630 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "Account for an organisation that automatically approves contact requests as \"Followers\"." - -#: mod/settings.php:633 src/Module/Admin/BaseUsers.php:108 -msgid "News Page" -msgstr "News Page" - -#: mod/settings.php:634 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "Account for a news reflector that automatically approves contact requests as \"Followers\"." - -#: mod/settings.php:637 src/Module/Admin/BaseUsers.php:109 -msgid "Community Forum" -msgstr "Community Forum" - -#: mod/settings.php:638 -msgid "Account for community discussions." -msgstr "Account for community discussions." - -#: mod/settings.php:641 src/Module/Admin/BaseUsers.php:99 -msgid "Normal Account Page" -msgstr "Standard" - -#: mod/settings.php:642 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"." - -#: mod/settings.php:645 src/Module/Admin/BaseUsers.php:100 -msgid "Soapbox Page" -msgstr "Soapbox" - -#: mod/settings.php:646 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "Account for a public profile that automatically approves contact requests as \"Followers\"." - -#: mod/settings.php:649 src/Module/Admin/BaseUsers.php:101 -msgid "Public Forum" -msgstr "Public forum" - -#: mod/settings.php:650 -msgid "Automatically approves all contact requests." -msgstr "Automatically approves all contact requests." - -#: mod/settings.php:653 src/Module/Admin/BaseUsers.php:102 -msgid "Automatic Friend Page" -msgstr "Love-all" - -#: mod/settings.php:654 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "Account for a popular profile that automatically approves contact requests as \"Friends\"." - -#: mod/settings.php:657 -msgid "Private Forum [Experimental]" -msgstr "Private forum [Experimental]" - -#: mod/settings.php:658 -msgid "Requires manual approval of contact requests." -msgstr "Requires manual approval of contact requests." - -#: mod/settings.php:669 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:669 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Optional) Allow this OpenID to login to this account." - -#: mod/settings.php:677 -msgid "Publish your profile in your local site directory?" -msgstr "Publish your profile in your local site directory?" - -#: mod/settings.php:677 -#, php-format -msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "Your profile will be published in this node's local directory. Your profile details may be publicly visible depending on the system settings." - -#: mod/settings.php:683 -#, php-format -msgid "" -"Your profile will also be published in the global friendica directories " -"(e.g. %s)." -msgstr "Your profile will also be published in the global Friendica directories (e.g. %s)." - -#: mod/settings.php:689 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "My identity address: '%s' or '%s'" - -#: mod/settings.php:700 -msgid "Account Settings" -msgstr "Account Settings" - -#: mod/settings.php:708 -msgid "Password Settings" -msgstr "Password change" - -#: mod/settings.php:709 src/Module/Register.php:151 -msgid "New Password:" -msgstr "New password:" - -#: mod/settings.php:709 -msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon." - -#: mod/settings.php:710 src/Module/Register.php:152 -msgid "Confirm:" -msgstr "Confirm new password:" - -#: mod/settings.php:710 -msgid "Leave password fields blank unless changing" -msgstr "Leave password fields blank unless changing" - -#: mod/settings.php:711 -msgid "Current Password:" -msgstr "Current password:" - -#: mod/settings.php:711 -msgid "Your current password to confirm the changes" -msgstr "Current password to confirm change" - -#: mod/settings.php:712 -msgid "Password:" -msgstr "Password:" - -#: mod/settings.php:712 -msgid "Your current password to confirm the changes of the email address" -msgstr "Your current password to confirm the changes of the email address" - -#: mod/settings.php:715 -msgid "Delete OpenID URL" -msgstr "Delete OpenID URL" - -#: mod/settings.php:717 -msgid "Basic Settings" -msgstr "Basic information" - -#: mod/settings.php:718 src/Module/Profile/Profile.php:144 -msgid "Full Name:" -msgstr "Full name:" - -#: mod/settings.php:719 -msgid "Email Address:" -msgstr "Email address:" - -#: mod/settings.php:720 -msgid "Your Timezone:" -msgstr "Time zone:" - -#: mod/settings.php:721 -msgid "Your Language:" -msgstr "Language:" - -#: mod/settings.php:721 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Set the language of your Friendica interface and emails sent to you." - -#: mod/settings.php:722 -msgid "Default Post Location:" -msgstr "Posting location:" - -#: mod/settings.php:723 -msgid "Use Browser Location:" -msgstr "Use browser location:" - -#: mod/settings.php:725 -msgid "Security and Privacy Settings" -msgstr "Security and privacy" - -#: mod/settings.php:727 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum friend requests per day:" - -#: mod/settings.php:727 mod/settings.php:737 -msgid "(to prevent spam abuse)" -msgstr "May prevent spam or abuse registrations" - -#: mod/settings.php:729 -msgid "Allow your profile to be searchable globally?" -msgstr "Allow your profile to be searchable globally?" - -#: mod/settings.php:729 -msgid "" -"Activate this setting if you want others to easily find and follow you. Your" -" profile will be searchable on remote systems. This setting also determines " -"whether Friendica will inform search engines that your profile should be " -"indexed or not." -msgstr "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." - -#: mod/settings.php:730 -msgid "Hide your contact/friend list from viewers of your profile?" -msgstr "Hide your contact/friend list from viewers of your profile?" - -#: mod/settings.php:730 -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 list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list." - -#: mod/settings.php:731 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Hide profile details from anonymous viewers?" - -#: mod/settings.php:731 -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 "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 may still be accessible by other means." - -#: mod/settings.php:732 -msgid "Make public posts unlisted" -msgstr "Make public posts unlisted" - -#: mod/settings.php:732 -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 "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." - -#: mod/settings.php:733 -msgid "Make all posted pictures accessible" -msgstr "Make all posted pictures accessible" - -#: mod/settings.php:733 -msgid "" -"This option makes every posted picture accessible via the direct link. This " -"is a workaround for the problem that most other networks can't handle " -"permissions on pictures. Non public pictures still won't be visible for the " -"public on your photo albums though." -msgstr "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." - -#: mod/settings.php:734 -msgid "Allow friends to post to your profile page?" -msgstr "Allow friends to post to my wall?" - -#: mod/settings.php:734 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "Your contacts may write posts on your profile wall. These posts will be distributed to your contacts" - -#: mod/settings.php:735 -msgid "Allow friends to tag your posts?" -msgstr "Allow friends to tag my post?" - -#: mod/settings.php:735 -msgid "Your contacts can add additional tags to your posts." -msgstr "Your contacts can add additional tags to your posts." - -#: mod/settings.php:736 -msgid "Permit unknown people to send you private mail?" -msgstr "Allow unknown people to send me private messages?" - -#: mod/settings.php:736 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "Friendica network users may send you private messages even if they are not in your contact list." - -#: mod/settings.php:737 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum private messages per day from unknown people:" - -#: mod/settings.php:739 -msgid "Default Post Permissions" -msgstr "Default post permissions" - -#: mod/settings.php:743 -msgid "Expiration settings" -msgstr "Expiration settings" - -#: mod/settings.php:744 -msgid "Automatically expire posts after this many days:" -msgstr "Automatically expire posts after this many days:" - -#: mod/settings.php:744 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Posts will not expire if empty; expired posts will be deleted" - -#: mod/settings.php:745 -msgid "Expire posts" -msgstr "Expire posts" - -#: mod/settings.php:745 -msgid "When activated, posts and comments will be expired." -msgstr "If activated, posts and comments will expire." - -#: mod/settings.php:746 -msgid "Expire personal notes" -msgstr "Expire personal notes" - -#: mod/settings.php:746 -msgid "" -"When activated, the personal notes on your profile page will be expired." -msgstr "If activated, personal notes on your profile page will expire." - -#: mod/settings.php:747 -msgid "Expire starred posts" -msgstr "Expire starred posts" - -#: mod/settings.php:747 -msgid "" -"Starring posts keeps them from being expired. That behaviour is overwritten " -"by this setting." -msgstr "Starring posts keeps them from being expired. That behaviour is overwritten by this setting." - -#: mod/settings.php:748 -msgid "Expire photos" -msgstr "Expire photos" - -#: mod/settings.php:748 -msgid "When activated, photos will be expired." -msgstr "If activated, photos will expire." - -#: mod/settings.php:749 -msgid "Only expire posts by others" -msgstr "Only expire posts by others" - -#: mod/settings.php:749 -msgid "" -"When activated, your own posts never expire. Then the settings above are " -"only valid for posts you received." -msgstr "If activated, your own posts never expire. Than the settings above are only valid for posts you received." - -#: mod/settings.php:752 -msgid "Notification Settings" -msgstr "Notification" - -#: mod/settings.php:753 -msgid "Send a notification email when:" -msgstr "Send notification email when:" - -#: mod/settings.php:754 -msgid "You receive an introduction" -msgstr "Receiving an introduction" - -#: mod/settings.php:755 -msgid "Your introductions are confirmed" -msgstr "My introductions are confirmed" - -#: mod/settings.php:756 -msgid "Someone writes on your profile wall" -msgstr "Someone writes on my wall" - -#: mod/settings.php:757 -msgid "Someone writes a followup comment" -msgstr "A follow up comment is posted" - -#: mod/settings.php:758 -msgid "You receive a private message" -msgstr "receiving a private message" - -#: mod/settings.php:759 -msgid "You receive a friend suggestion" -msgstr "Receiving a friend suggestion" - -#: mod/settings.php:760 -msgid "You are tagged in a post" -msgstr "Tagged in a post" - -#: mod/settings.php:761 -msgid "You are poked/prodded/etc. in a post" -msgstr "Poked in a post" - -#: mod/settings.php:763 -msgid "Create a desktop notification when:" -msgstr "Create a desktop notification when:" - -#: mod/settings.php:764 -msgid "Someone liked your content" -msgstr "Someone liked your content" - -#: mod/settings.php:765 -msgid "Someone shared your content" -msgstr "Someone shared your content" - -#: mod/settings.php:767 -msgid "Activate desktop notifications" -msgstr "Activate desktop notifications" - -#: mod/settings.php:767 -msgid "Show desktop popup on new notifications" -msgstr "Show desktop pop-up on new notifications" - -#: mod/settings.php:769 -msgid "Text-only notification emails" -msgstr "Text-only notification emails" - -#: mod/settings.php:771 -msgid "Send text only notification emails, without the html part" -msgstr "Receive text only emails without HTML " - -#: mod/settings.php:773 -msgid "Show detailled notifications" -msgstr "Show detailled notifications" - -#: mod/settings.php:775 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "By default, notifications are condensed into a single notification for each item. If enabled, every notification is displayed." - -#: mod/settings.php:777 -msgid "Show notifications of ignored contacts" -msgstr "Show notifications of ignored contacts" - -#: mod/settings.php:779 -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 "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." - -#: mod/settings.php:781 -msgid "Advanced Account/Page Type Settings" -msgstr "Advanced account types" - -#: mod/settings.php:782 -msgid "Change the behaviour of this account for special situations" -msgstr "Change behaviour of this account for special situations" - -#: mod/settings.php:785 -msgid "Import Contacts" -msgstr "Import Contacts" - -#: mod/settings.php:786 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account." - -#: mod/settings.php:787 -msgid "Upload File" -msgstr "Upload File" - -#: mod/settings.php:789 -msgid "Relocate" -msgstr "Recent relocation" - -#: mod/settings.php:790 -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 "If you have moved this profile from another server and some of your contacts don't receive your updates:" - -#: mod/settings.php:791 -msgid "Resend relocate message to contacts" -msgstr "Resend relocation message to contacts" - -#: mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No suggestions available. If this is a new site, please try again in 24 hours." - -#: mod/suggest.php:55 src/Content/Widget.php:79 view/theme/vier/theme.php:175 -msgid "Friend Suggestions" -msgstr "Friend suggestions" - -#: mod/tagger.php:79 src/Content/Item.php:346 src/Model/Item.php:2626 -msgid "photo" -msgstr "photo" - -#: mod/tagger.php:79 src/Content/Item.php:341 src/Content/Item.php:350 -msgid "status" -msgstr "status" - -#: mod/tagger.php:112 src/Content/Item.php:360 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s tagged %2$s's %3$s with %4$s" - -#: mod/tagrm.php:115 -msgid "Remove Item Tag" -msgstr "Remove Item tag" - -#: mod/tagrm.php:117 -msgid "Select a tag to remove: " -msgstr "Select a tag to remove: " - -#: mod/tagrm.php:128 src/Module/Settings/Delegation.php:179 -#: src/Module/Settings/TwoFactor/Trusted.php:104 -msgid "Remove" -msgstr "Remove" - -#: mod/uimport.php:46 -msgid "User imports on closed servers can only be done by an administrator." -msgstr "User imports on closed servers can only be done by an administrator." - -#: mod/uimport.php:55 src/Module/Register.php:86 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow." - -#: mod/uimport.php:62 src/Module/Register.php:162 -msgid "Import" -msgstr "Import profile" - -#: mod/uimport.php:64 -msgid "Move account" -msgstr "Move Existing Friendica Account" - -#: mod/uimport.php:65 -msgid "You can import an account from another Friendica server." -msgstr "You can import an existing Friendica profile to this node." - -#: mod/uimport.php:66 -msgid "" -"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." -msgstr "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." - -#: mod/uimport.php:67 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from diaspora*." - -#: mod/uimport.php:68 -msgid "Account file" -msgstr "Account file:" - -#: mod/uimport.php:68 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "To export your account, go to \"Settings->Export personal data\" and select \"Export account\"" - -#: mod/unfollow.php:65 mod/unfollow.php:135 -msgid "You aren't following this contact." -msgstr "You aren't following this contact." - -#: mod/unfollow.php:71 -msgid "Unfollowing is currently not supported by your network." -msgstr "Unfollowing is currently not supported by your network." - -#: mod/unfollow.php:92 -msgid "Disconnect/Unfollow" -msgstr "Disconnect/Unfollow" - -#: mod/unfollow.php:146 -msgid "" -"Unable to unfollow this contact, please retry in a few minutes or contact " -"your administrator." -msgstr "Unable to unfollow this contact, please retry in a few minutes or contact your administrator." - -#: mod/unfollow.php:148 -msgid "Contact was successfully unfollowed" -msgstr "Contact was successfully unfollowed" - -#: mod/unfollow.php:152 -msgid "Unable to unfollow this contact, please contact your administrator" -msgstr "Unable to unfollow this contact, please contact your administrator" - -#: mod/wall_attach.php:39 mod/wall_attach.php:46 mod/wall_attach.php:77 -#: mod/wall_upload.php:52 mod/wall_upload.php:63 mod/wall_upload.php:99 -#: mod/wall_upload.php:150 mod/wall_upload.php:153 -msgid "Invalid request." -msgstr "Invalid request." - -#: mod/wall_attach.php:95 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Sorry, maybe your upload is bigger than the PHP configuration allows" - -#: mod/wall_attach.php:95 -msgid "Or - did you try to upload an empty file?" -msgstr "Or did you try to upload an empty file?" - -#: mod/wall_attach.php:106 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "File exceeds size limit of %s" - -#: mod/wall_attach.php:121 -msgid "File upload failed." -msgstr "File upload failed." - -#: mod/wall_upload.php:224 src/Model/Photo.php:987 -msgid "Wall Photos" -msgstr "Wall photos" - -#: mod/wallmessage.php:61 mod/wallmessage.php:115 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Number of daily wall messages for %s exceeded. Message failed." - -#: mod/wallmessage.php:72 -msgid "Unable to check your home location." -msgstr "Unable to check your home location." - -#: mod/wallmessage.php:96 mod/wallmessage.php:103 -msgid "No recipient." -msgstr "No recipient." - -#: mod/wallmessage.php:129 -#, 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 "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders." - -#: src/App.php:456 +#: src/App.php:473 msgid "No system theme config value set." msgstr "No system theme configuration value set." -#: src/App/Module.php:240 -msgid "You must be logged in to use addons. " -msgstr "You must be logged in to use addons. " +#: src/App.php:580 +msgid "Apologies but the website is unavailable at the moment." +msgstr "" -#: src/App/Page.php:250 +#: src/App/Page.php:248 msgid "Delete this item?" msgstr "Delete this item?" -#: src/App/Page.php:251 +#: src/App/Page.php:249 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 "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." -#: src/App/Page.php:299 +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "" + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "" + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "" + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "" + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "" + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "" + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "" + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "" + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "" + +#: src/App/Page.php:351 msgid "toggle mobile" msgstr "Toggle mobile" -#: src/App/Router.php:241 +#: src/App/Router.php:309 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Method not allowed for this module. Allowed method(s): %s" -#: src/App/Router.php:243 src/Module/HTTPException/PageNotFound.php:32 +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 msgid "Page not found." msgstr "Page not found" -#: src/BaseModule.php:180 +#: src/App/Router.php:323 +msgid "You must be logged in to use addons. " +msgstr "You must be logged in to use addons. " + +#: src/BaseModule.php:403 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 "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours." -#: src/BaseModule.php:207 +#: src/BaseModule.php:430 msgid "All contacts" msgstr "All contacts" -#: src/BaseModule.php:212 src/Content/Widget.php:231 src/Core/ACL.php:193 -#: src/Module/Contact.php:756 src/Module/PermissionTooltip.php:79 -#: src/Module/PermissionTooltip.php:101 +#: src/BaseModule.php:435 src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 +#: src/Module/Settings/Channels.php:120 msgid "Followers" msgstr "Followers" -#: src/BaseModule.php:217 src/Content/Widget.php:232 -#: src/Module/Contact.php:757 +#: src/BaseModule.php:440 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 src/Module/Settings/Channels.php:119 msgid "Following" msgstr "Following" -#: src/BaseModule.php:222 src/Content/Widget.php:233 -#: src/Module/Contact.php:758 +#: src/BaseModule.php:445 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 msgid "Mutual friends" msgstr "Mutual friends" -#: src/BaseModule.php:230 +#: src/BaseModule.php:453 msgid "Common" msgstr "Common" -#: src/Console/Addon.php:177 src/Console/Addon.php:202 +#: src/Console/Addon.php:175 src/Console/Addon.php:199 msgid "Addon not found" msgstr "Addon not found" -#: src/Console/Addon.php:181 +#: src/Console/Addon.php:179 msgid "Addon already enabled" msgstr "Addon already enabled" -#: src/Console/Addon.php:206 +#: src/Console/Addon.php:203 msgid "Addon already disabled" msgstr "Addon already disabled" @@ -2173,16 +839,105 @@ msgid "The contact entries have been archived" msgstr "The contact entries have been archived" #: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Could not find any contact entry for this URL (%s)" #: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:66 +#: src/Module/Moderation/Blocklist/Contact.php:82 msgid "The contact has been blocked from the node" msgstr "The contact has been blocked from the node" +#: src/Console/MergeContacts.php:75 +#, php-format +msgid "%d %s, %d duplicates." +msgstr "" + +#: src/Console/MergeContacts.php:78 +#, php-format +msgid "uri-id is empty for contact %s." +msgstr "" + +#: src/Console/MergeContacts.php:91 +#, php-format +msgid "No valid first contact found for uri-id %d." +msgstr "" + +#: src/Console/MergeContacts.php:102 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:106 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:142 +#, php-format +msgid "Deletion of id %d failed" +msgstr "" + +#: src/Console/MergeContacts.php:144 +#, php-format +msgid "Deletion of id %d was successful" +msgstr "" + +#: src/Console/MergeContacts.php:150 +#, php-format +msgid "Updating \"%s\" in \"%s\" from %d to %d" +msgstr "" + +#: src/Console/MergeContacts.php:152 +msgid " - found" +msgstr "" + +#: src/Console/MergeContacts.php:159 +msgid " - failed" +msgstr "" + +#: src/Console/MergeContacts.php:161 +msgid " - success" +msgstr "" + +#: src/Console/MergeContacts.php:165 +msgid " - deleted" +msgstr "" + +#: src/Console/MergeContacts.php:168 +msgid " - done" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:91 +msgid "The avatar cache needs to be enabled to use this command." +msgstr "" + +#: src/Console/MoveToAvatarCache.php:109 +#, php-format +msgid "no resource in photo %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:137 +#, php-format +msgid "no photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:146 +#, php-format +msgid "no image data for photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:155 +#, php-format +msgid "invalid image for id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:168 +#, php-format +msgid "Quit on invalid photo %s" +msgstr "" + #: src/Console/PostUpdate.php:87 #, php-format msgid "Post update version number has been set to %s." @@ -2208,10 +963,29 @@ msgstr "All pending post updates are done." msgid "Enter user nickname: " msgstr "Enter user nickname: " +#: src/Console/User.php:182 src/Model/User.php:710 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "User not found" + #: src/Console/User.php:202 msgid "Enter new password: " msgstr "Enter new password: " +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 +msgid "Password update failed. Please try again." +msgstr "Password update failed. Please try again." + +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 +msgid "Password changed." +msgstr "Password changed." + #: src/Console/User.php:237 msgid "Enter user name: " msgstr "Enter user name: " @@ -2285,344 +1059,583 @@ msgstr "Weekly" msgid "Monthly" msgstr "Monthly" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:126 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:127 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:128 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 +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 msgid "Email" msgstr "Email" -#: src/Content/ContactSelector.php:127 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 msgid "Diaspora" msgstr "diaspora*" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:131 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:132 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:133 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:134 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:135 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:136 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:137 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:138 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:139 msgid "Diaspora Connector" msgstr "diaspora* connector" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:140 msgid "GNU Social Connector" msgstr "GNU Social Connector" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:141 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:142 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:175 +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "" + +#: src/Content/ContactSelector.php:180 #, php-format msgid "%s (via %s)" msgstr "%s (via %s)" -#: src/Content/Conversation.php:207 -#, php-format -msgid "%s likes this." -msgstr "%s likes this." - -#: src/Content/Conversation.php:210 -#, php-format -msgid "%s doesn't like this." -msgstr "%s doesn't like this." - -#: src/Content/Conversation.php:213 -#, php-format -msgid "%s attends." -msgstr "%s attends." - -#: src/Content/Conversation.php:216 -#, php-format -msgid "%s doesn't attend." -msgstr "%s doesn't attend." - -#: src/Content/Conversation.php:219 -#, php-format -msgid "%s attends maybe." -msgstr "%s may attend." - -#: src/Content/Conversation.php:222 src/Content/Conversation.php:260 -#: src/Content/Conversation.php:848 -#, php-format -msgid "%s reshared this." -msgstr "%s reshared this." - -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:226 msgid "and" msgstr "and" -#: src/Content/Conversation.php:231 +#: src/Content/Conversation.php:229 #, php-format msgid "and %d other people" msgstr "and %d other people" +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "" +msgstr[1] "" + #: src/Content/Conversation.php:239 #, php-format -msgid "%2$d people like this" -msgstr "%2$d people like this" +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:240 +#: src/Content/Conversation.php:241 #, php-format -msgid "%s like this." -msgstr "%s like this." +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "" +msgstr[1] "" #: src/Content/Conversation.php:243 #, php-format -msgid "%2$d people don't like this" -msgstr "%2$d people don't like this" +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:244 +#: src/Content/Conversation.php:245 #, php-format -msgid "%s don't like this." -msgstr "%s don't like this." +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:247 +#: src/Content/Conversation.php:274 #, php-format -msgid "%2$d people attend" -msgstr "%2$d people attend" +msgid " likes this" +msgid_plural " like this" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:248 +#: src/Content/Conversation.php:277 #, php-format -msgid "%s attend." -msgstr "%s attend." +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] " doesn't like this" +msgstr[1] " don't like this" -#: src/Content/Conversation.php:251 +#: src/Content/Conversation.php:280 #, php-format -msgid "%2$d people don't attend" -msgstr "%2$d people don't attend" +msgid " attends" +msgid_plural " attend" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:252 +#: src/Content/Conversation.php:283 #, php-format -msgid "%s don't attend." -msgstr "%s don't attend." +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:255 +#: src/Content/Conversation.php:286 #, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d people attend maybe" +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:256 +#: src/Content/Conversation.php:289 #, php-format -msgid "%s attend maybe." -msgstr "%s may be attending." +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:259 -#, php-format -msgid "%2$d people reshared this" -msgstr "%2$d people reshared this" - -#: src/Content/Conversation.php:307 +#: src/Content/Conversation.php:336 msgid "Visible to everybody" msgstr "Visible to everybody" -#: src/Content/Conversation.php:308 src/Module/Item/Compose.php:159 -#: src/Object/Post.php:973 +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1118 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Please enter an image/video/audio/webpage URL:" -#: src/Content/Conversation.php:309 +#: src/Content/Conversation.php:338 msgid "Tag term:" msgstr "Tag term:" -#: src/Content/Conversation.php:310 src/Module/Filer/SaveTag.php:68 +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 msgid "Save to Folder:" msgstr "Save to folder:" -#: src/Content/Conversation.php:311 +#: src/Content/Conversation.php:340 msgid "Where are you right now?" msgstr "Where are you right now?" -#: src/Content/Conversation.php:312 +#: src/Content/Conversation.php:341 msgid "Delete item(s)?" msgstr "Delete item(s)?" -#: src/Content/Conversation.php:322 +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 +msgid "Created at" +msgstr "" + +#: src/Content/Conversation.php:363 msgid "New Post" msgstr "New post" -#: src/Content/Conversation.php:325 +#: src/Content/Conversation.php:366 msgid "Share" msgstr "Share" -#: src/Content/Conversation.php:331 src/Module/Item/Compose.php:151 -#: src/Object/Post.php:965 +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "upload photo" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Attach file" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "attach file" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1108 msgid "Bold" msgstr "Bold" -#: src/Content/Conversation.php:332 src/Module/Item/Compose.php:152 -#: src/Object/Post.php:966 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1109 msgid "Italic" msgstr "Italic" -#: src/Content/Conversation.php:333 src/Module/Item/Compose.php:153 -#: src/Object/Post.php:967 +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1110 msgid "Underline" msgstr "Underline" -#: src/Content/Conversation.php:334 src/Module/Item/Compose.php:154 -#: src/Object/Post.php:968 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1112 msgid "Quote" msgstr "Quote" -#: src/Content/Conversation.php:335 src/Module/Item/Compose.php:155 -#: src/Object/Post.php:969 +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1113 +msgid "Add emojis" +msgstr "" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1111 +msgid "Content Warning" +msgstr "" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1114 msgid "Code" msgstr "Code" -#: src/Content/Conversation.php:336 src/Module/Item/Compose.php:156 -#: src/Object/Post.php:970 +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1115 msgid "Image" msgstr "Image" -#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:157 -#: src/Object/Post.php:971 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1116 msgid "Link" msgstr "Link" -#: src/Content/Conversation.php:338 src/Module/Item/Compose.php:158 -#: src/Object/Post.php:972 +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1117 msgid "Link or Media" msgstr "Link or media" -#: src/Content/Conversation.php:339 +#: src/Content/Conversation.php:382 msgid "Video" msgstr "Video" -#: src/Content/Conversation.php:352 src/Module/Item/Compose.php:172 +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "Set your location" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "set location" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "Clear browser location" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "clear location" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Set title" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Categories (comma-separated list)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 msgid "Scheduled at" msgstr "Scheduled at" -#: src/Content/Conversation.php:651 src/Object/Post.php:454 -#: src/Object/Post.php:455 -#, php-format -msgid "View %s's profile @ %s" -msgstr "View %s's profile @ %s" +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Permission settings" -#: src/Content/Conversation.php:664 src/Object/Post.php:442 -msgid "Categories:" -msgstr "Categories:" +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Public post" -#: src/Content/Conversation.php:665 src/Object/Post.php:443 -msgid "Filed under:" -msgstr "Filed under:" +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:132 +#: src/Model/Profile.php:479 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "Message" -#: src/Content/Conversation.php:672 src/Object/Post.php:468 -#, php-format -msgid "%s from %s" -msgstr "%s from %s" +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Browser" -#: src/Content/Conversation.php:687 -msgid "View in context" -msgstr "View in context" +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "Open Compose page" -#: src/Content/Conversation.php:752 +#: src/Content/Conversation.php:595 msgid "remove" msgstr "Remove" -#: src/Content/Conversation.php:756 +#: src/Content/Conversation.php:599 msgid "Delete Selected Items" msgstr "Delete selected items" -#: src/Content/Conversation.php:820 src/Content/Conversation.php:823 -#: src/Content/Conversation.php:826 src/Content/Conversation.php:829 +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 #, php-format msgid "You had been addressed (%s)." msgstr "You had been addressed (%s)." -#: src/Content/Conversation.php:832 +#: src/Content/Conversation.php:769 #, php-format msgid "You are following %s." msgstr "You are following %s." -#: src/Content/Conversation.php:835 -msgid "Tagged" -msgstr "Tagged" +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "" -#: src/Content/Conversation.php:850 +#: src/Content/Conversation.php:776 +msgid "You subscribed to one or more tags in this post." +msgstr "" + +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "%s reshared this." + +#: src/Content/Conversation.php:798 msgid "Reshared" msgstr "Reshared" -#: src/Content/Conversation.php:850 +#: src/Content/Conversation.php:798 #, php-format msgid "Reshared by %s <%s>" msgstr "Reshared by %s <%s>" -#: src/Content/Conversation.php:853 +#: src/Content/Conversation.php:801 #, php-format msgid "%s is participating in this thread." msgstr "%s is participating in this thread." -#: src/Content/Conversation.php:856 -msgid "Stored" -msgstr "Stored" +#: src/Content/Conversation.php:804 +msgid "Stored for general reasons" +msgstr "" -#: src/Content/Conversation.php:859 -msgid "Global" -msgstr "Global" +#: src/Content/Conversation.php:807 +msgid "Global post" +msgstr "" -#: src/Content/Conversation.php:862 -msgid "Relayed" -msgstr "Relayed" +#: src/Content/Conversation.php:810 +msgid "Sent via an relay server" +msgstr "" -#: src/Content/Conversation.php:862 +#: src/Content/Conversation.php:810 #, php-format -msgid "Relayed by %s <%s>" -msgstr "Relayed by %s <%s>" +msgid "Sent via the relay server %s <%s>" +msgstr "" -#: src/Content/Conversation.php:865 +#: src/Content/Conversation.php:813 msgid "Fetched" msgstr "Fetched" -#: src/Content/Conversation.php:865 +#: src/Content/Conversation.php:813 #, php-format msgid "Fetched because of %s <%s>" msgstr "Fetched because of %s <%s>" +#: src/Content/Conversation.php:816 +msgid "Stored because of a child post to complete this thread." +msgstr "" + +#: src/Content/Conversation.php:819 +msgid "Local delivery" +msgstr "" + +#: src/Content/Conversation.php:822 +msgid "Stored because of your activity (like, comment, star, ...)" +msgstr "" + +#: src/Content/Conversation.php:825 +msgid "Distributed" +msgstr "" + +#: src/Content/Conversation.php:828 +msgid "Pushed to us" +msgstr "" + +#: src/Content/Conversation.php:1492 src/Object/Post.php:248 +msgid "Pinned item" +msgstr "" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:530 +#: src/Object/Post.php:531 +#, php-format +msgid "View %s's profile @ %s" +msgstr "View %s's profile @ %s" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:518 +msgid "Categories:" +msgstr "Categories:" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:519 +msgid "Filed under:" +msgstr "Filed under:" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:544 +#, php-format +msgid "%s from %s" +msgstr "%s from %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "View in context" + +#: src/Content/Conversation/Factory/Channel.php:42 +msgid "For you" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:42 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:43 +msgid "What's Hot" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:43 +msgid "Posts with a lot of interactions" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:44 +#, php-format +msgid "Posts in %s" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:45 +msgid "Posts from your followers that you don't follow" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:46 +msgid "Sharers of sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:46 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Module/Settings/Channels.php:137 src/Module/Settings/Channels.php:153 +msgid "Images" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:47 +msgid "Posts with images" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:155 +msgid "Audio" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts with audio" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Module/Settings/Channels.php:138 src/Module/Settings/Channels.php:154 +msgid "Videos" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 +msgid "Posts with videos" +msgstr "" + +#: src/Content/Conversation/Factory/Community.php:43 +msgid "Local Community" +msgstr "Local community" + +#: src/Content/Conversation/Factory/Community.php:43 +msgid "Posts from local users on this server" +msgstr "Posts from local users on this server" + +#: src/Content/Conversation/Factory/Community.php:47 +#: src/Module/Settings/Channels.php:118 +msgid "Global Community" +msgstr "Global community" + +#: src/Content/Conversation/Factory/Community.php:47 +msgid "Posts from users of the whole federated network" +msgstr "Posts from users of the whole federated network" + +#: src/Content/Conversation/Factory/Network.php:38 +msgid "Latest Activity" +msgstr "Latest activity" + +#: src/Content/Conversation/Factory/Network.php:38 +msgid "Sort by latest activity" +msgstr "Sort by latest activity" + +#: src/Content/Conversation/Factory/Network.php:39 +msgid "Latest Posts" +msgstr "Latest posts" + +#: src/Content/Conversation/Factory/Network.php:39 +msgid "Sort by post received date" +msgstr "Sort by post received date" + +#: src/Content/Conversation/Factory/Network.php:40 +msgid "Latest Creation" +msgstr "" + +#: src/Content/Conversation/Factory/Network.php:40 +msgid "Sort by post creation date" +msgstr "" + +#: src/Content/Conversation/Factory/Network.php:41 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "Personal" + +#: src/Content/Conversation/Factory/Network.php:41 +msgid "Posts that mention or involve you" +msgstr "Posts mentioning or involving me" + +#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:381 +msgid "Starred" +msgstr "Starred" + +#: src/Content/Conversation/Factory/Network.php:42 +msgid "Favourite Posts" +msgstr "My favourite posts" + #: src/Content/Feature.php:96 msgid "General Features" msgstr "General" @@ -2652,13 +1665,13 @@ msgid "Post Composition Features" msgstr "Post composition" #: src/Content/Feature.php:105 -msgid "Auto-mention Forums" -msgstr "Auto-mention forums" +msgid "Auto-mention Groups" +msgstr "" #: src/Content/Feature.php:105 msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Add/Remove mention when a forum page is selected or deselected in the ACL window." +"Add/remove mention when a group page is selected/deselected in ACL window." +msgstr "" #: src/Content/Feature.php:106 msgid "Explicit Mentions" @@ -2670,391 +1683,484 @@ msgid "" "mentioned in replies." msgstr "Add explicit mentions to comment box for manual control over who gets mentioned in replies." -#: src/Content/Feature.php:111 +#: src/Content/Feature.php:107 +msgid "Add an abstract from ActivityPub content warnings" +msgstr "" + +#: src/Content/Feature.php:107 +msgid "" +"Add an abstract when commenting on ActivityPub posts with a content warning." +" Abstracts are displayed as content warning on systems like Mastodon or " +"Pleroma." +msgstr "" + +#: src/Content/Feature.php:112 msgid "Post/Comment Tools" msgstr "Post/Comment tools" -#: src/Content/Feature.php:112 +#: src/Content/Feature.php:113 msgid "Post Categories" msgstr "Post categories" -#: src/Content/Feature.php:112 +#: src/Content/Feature.php:113 msgid "Add categories to your posts" msgstr "Add categories to your posts" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:118 msgid "Advanced Profile Settings" msgstr "Advanced profiles" -#: src/Content/Feature.php:118 -msgid "List Forums" -msgstr "List forums" - -#: src/Content/Feature.php:118 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Show visitors of public community forums at the advanced profile page" +#: src/Content/Feature.php:119 +msgid "List Groups" +msgstr "" #: src/Content/Feature.php:119 +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "" + +#: src/Content/Feature.php:120 msgid "Tag Cloud" msgstr "Tag cloud" -#: src/Content/Feature.php:119 +#: src/Content/Feature.php:120 msgid "Provide a personal tag cloud on your profile page" msgstr "Provides a personal tag cloud on your profile page" -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:121 msgid "Display Membership Date" msgstr "Display membership date" -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:121 msgid "Display membership date in profile" msgstr "Display membership date in profile" -#: src/Content/ForumManager.php:145 src/Content/Nav.php:239 -#: src/Content/Text/HTML.php:906 src/Content/Widget.php:523 -msgid "Forums" -msgstr "Forums" +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "" -#: src/Content/ForumManager.php:147 -msgid "External link to forum" -msgstr "External link to forum" +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "" -#: src/Content/ForumManager.php:150 src/Content/Widget.php:502 +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "" + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1272 +msgid "Groups" +msgstr "" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 msgid "show less" msgstr "show less" -#: src/Content/ForumManager.php:151 src/Content/Widget.php:404 -#: src/Content/Widget.php:503 +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 msgid "show more" msgstr "Show more..." -#: src/Content/Item.php:305 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s poked %2$s" +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "" -#: src/Content/Item.php:338 src/Model/Item.php:2624 +#: src/Content/Item.php:331 src/Model/Item.php:3080 msgid "event" msgstr "event" -#: src/Content/Item.php:442 view/theme/frio/theme.php:254 +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "status" + +#: src/Content/Item.php:340 src/Model/Item.php:3082 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "photo" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s tagged %2$s's %3$s with %4$s" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 msgid "Follow Thread" msgstr "Follow thread" -#: src/Content/Item.php:443 src/Model/Contact.php:1077 +#: src/Content/Item.php:429 src/Model/Contact.php:1242 msgid "View Status" msgstr "View status" -#: src/Content/Item.php:444 src/Content/Item.php:466 -#: src/Model/Contact.php:1011 src/Model/Contact.php:1069 -#: src/Model/Contact.php:1078 src/Module/Directory.php:160 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1233 +#: src/Model/Contact.php:1243 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "View profile" -#: src/Content/Item.php:445 src/Model/Contact.php:1079 +#: src/Content/Item.php:431 src/Model/Contact.php:1244 msgid "View Photos" msgstr "View photos" -#: src/Content/Item.php:446 src/Model/Contact.php:1070 -#: src/Model/Contact.php:1080 +#: src/Content/Item.php:432 src/Model/Contact.php:1211 +#: src/Model/Profile.php:464 msgid "Network Posts" msgstr "Network posts" -#: src/Content/Item.php:447 src/Model/Contact.php:1071 -#: src/Model/Contact.php:1081 +#: src/Content/Item.php:433 src/Model/Contact.php:1235 +#: src/Model/Contact.php:1246 msgid "View Contact" msgstr "View contact" -#: src/Content/Item.php:448 src/Model/Contact.php:1082 +#: src/Content/Item.php:434 src/Model/Contact.php:1247 msgid "Send PM" msgstr "Send PM" -#: src/Content/Item.php:449 src/Module/Admin/Blocklist/Contact.php:100 -#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 -#: src/Module/Contact.php:544 src/Module/Contact.php:787 -#: src/Module/Contact.php:1064 +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 msgid "Block" msgstr "Block" -#: src/Content/Item.php:450 src/Module/Contact.php:545 -#: src/Module/Contact.php:788 src/Module/Contact.php:1072 -#: src/Module/Notifications/Introductions.php:112 -#: src/Module/Notifications/Introductions.php:184 -#: src/Module/Notifications/Notification.php:61 +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 msgid "Ignore" msgstr "Ignore" -#: src/Content/Item.php:454 src/Object/Post.php:429 +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "" + +#: src/Content/Item.php:438 src/Object/Post.php:289 +#, php-format +msgid "Ignore %s server" +msgstr "" + +#: src/Content/Item.php:442 src/Object/Post.php:491 msgid "Languages" msgstr "Languages" -#: src/Content/Item.php:458 src/Model/Contact.php:1083 -msgid "Poke" -msgstr "Poke" +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1236 src/Model/Contact.php:1248 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Connect/Follow" -#: src/Content/Nav.php:90 +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "" + +#: src/Content/Nav.php:121 msgid "Nothing new here" msgstr "Nothing new here" -#: src/Content/Nav.php:94 src/Module/Special/HTTPException.php:75 +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 msgid "Go back" msgstr "Go back" -#: src/Content/Nav.php:95 +#: src/Content/Nav.php:126 msgid "Clear notifications" msgstr "Clear notifications" -#: src/Content/Nav.php:96 src/Content/Text/HTML.php:893 -msgid "@name, !forum, #tags, content" -msgstr "@name, !forum, #tags, content" +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" +msgstr "" -#: src/Content/Nav.php:183 src/Module/Security/Login.php:145 +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 msgid "Logout" msgstr "Logout" -#: src/Content/Nav.php:183 +#: src/Content/Nav.php:222 msgid "End this session" msgstr "End this session" -#: src/Content/Nav.php:185 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:146 +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 msgid "Login" msgstr "Login" -#: src/Content/Nav.php:185 +#: src/Content/Nav.php:224 msgid "Sign in" msgstr "Sign in" -#: src/Content/Nav.php:190 src/Module/BaseProfile.php:56 -#: src/Module/Contact.php:576 src/Module/Contact.php:822 -#: src/Module/Settings/TwoFactor/Index.php:112 view/theme/frio/theme.php:225 -msgid "Status" -msgstr "Status" +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "" -#: src/Content/Nav.php:190 src/Content/Nav.php:273 -#: view/theme/frio/theme.php:225 -msgid "Your posts and conversations" -msgstr "My posts and conversations" +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "" -#: src/Content/Nav.php:191 src/Module/BaseProfile.php:48 -#: src/Module/BaseSettings.php:57 src/Module/Contact.php:578 -#: src/Module/Contact.php:846 src/Module/Profile/Profile.php:241 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:226 +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 msgid "Profile" msgstr "Profile" -#: src/Content/Nav.php:191 view/theme/frio/theme.php:226 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 msgid "Your profile page" msgstr "My profile page" -#: src/Content/Nav.php:192 view/theme/frio/theme.php:227 +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Photos" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 msgid "Your photos" msgstr "My photos" -#: src/Content/Nav.php:193 src/Module/BaseProfile.php:72 -#: src/Module/BaseProfile.php:75 src/Module/Contact.php:838 -#: view/theme/frio/theme.php:228 +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 msgid "Media" msgstr "Media" -#: src/Content/Nav.php:193 view/theme/frio/theme.php:228 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 msgid "Your postings with media" msgstr "Your postings with media" -#: src/Content/Nav.php:194 view/theme/frio/theme.php:229 -msgid "Your events" -msgstr "My events" +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:310 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "Calendar" -#: src/Content/Nav.php:195 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "" + +#: src/Content/Nav.php:234 msgid "Personal notes" msgstr "Personal notes" -#: src/Content/Nav.php:195 +#: src/Content/Nav.php:234 msgid "Your personal notes" msgstr "My personal notes" -#: src/Content/Nav.php:212 src/Content/Nav.php:273 +#: src/Content/Nav.php:251 src/Content/Nav.php:308 msgid "Home" msgstr "Home" -#: src/Content/Nav.php:216 src/Module/Register.php:157 -#: src/Module/Security/Login.php:106 +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "Home page" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 +#: src/Module/Security/Login.php:124 msgid "Register" msgstr "Sign up now >>" -#: src/Content/Nav.php:216 +#: src/Content/Nav.php:255 msgid "Create an account" msgstr "Create account" -#: src/Content/Nav.php:222 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 +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 msgid "Help" msgstr "Help" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:261 msgid "Help and documentation" msgstr "Help and documentation" -#: src/Content/Nav.php:226 +#: src/Content/Nav.php:265 msgid "Apps" msgstr "Apps" -#: src/Content/Nav.php:226 +#: src/Content/Nav.php:265 msgid "Addon applications, utilities, games" msgstr "Addon applications, utilities, games" -#: src/Content/Nav.php:230 src/Content/Text/HTML.php:891 -#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:99 +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 msgid "Search" msgstr "Search" -#: src/Content/Nav.php:230 +#: src/Content/Nav.php:269 msgid "Search site content" msgstr "Search site content" -#: src/Content/Nav.php:233 src/Content/Text/HTML.php:900 +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 msgid "Full Text" msgstr "Full text" -#: src/Content/Nav.php:234 src/Content/Text/HTML.php:901 +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 #: src/Content/Widget/TagCloud.php:68 msgid "Tags" msgstr "Tags" -#: src/Content/Nav.php:235 src/Content/Nav.php:294 -#: src/Content/Text/HTML.php:902 src/Module/BaseProfile.php:125 -#: src/Module/BaseProfile.php:128 src/Module/Contact.php:759 -#: src/Module/Contact.php:853 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 msgid "Contacts" msgstr "Contacts" -#: src/Content/Nav.php:254 +#: src/Content/Nav.php:289 msgid "Community" msgstr "Community" -#: src/Content/Nav.php:254 +#: src/Content/Nav.php:289 msgid "Conversations on this and other servers" msgstr "Conversations on this and other servers" -#: src/Content/Nav.php:258 src/Module/BaseProfile.php:87 -#: src/Module/BaseProfile.php:98 view/theme/frio/theme.php:233 -msgid "Events and Calendar" -msgstr "Events and calendar" - -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:296 msgid "Directory" msgstr "Directory" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:296 msgid "People directory" msgstr "People directory" -#: src/Content/Nav.php:263 src/Module/BaseAdmin.php:85 +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 msgid "Information" msgstr "Information" -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:298 msgid "Information about this friendica instance" msgstr "Information about this Friendica instance" -#: src/Content/Nav.php:266 src/Module/Admin/Tos.php:59 -#: src/Module/BaseAdmin.php:96 src/Module/Register.php:165 -#: src/Module/Tos.php:84 +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 msgid "Terms of Service" msgstr "Terms of Service" -#: src/Content/Nav.php:266 +#: src/Content/Nav.php:301 msgid "Terms of Service of this Friendica instance" msgstr "Terms of Service for this Friendica instance" -#: src/Content/Nav.php:271 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Network" msgstr "Network" -#: src/Content/Nav.php:271 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Conversations from your friends" msgstr "My friends' conversations" -#: src/Content/Nav.php:277 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "My posts and conversations" + +#: src/Content/Nav.php:312 msgid "Introductions" msgstr "Introductions" -#: src/Content/Nav.php:277 +#: src/Content/Nav.php:312 msgid "Friend Requests" msgstr "Friend requests" -#: src/Content/Nav.php:278 src/Module/BaseNotifications.php:139 -#: src/Module/Notifications/Introductions.php:53 +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 msgid "Notifications" msgstr "Notifications" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:314 msgid "See all notifications" msgstr "See all notifications" -#: src/Content/Nav.php:280 -msgid "Mark all system notifications seen" -msgstr "Mark all system notifications seen" +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Mark as seen" -#: src/Content/Nav.php:283 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:315 +msgid "Mark all system notifications as seen" +msgstr "" + +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Private mail" msgstr "Private messages" -#: src/Content/Nav.php:284 +#: src/Content/Nav.php:319 msgid "Inbox" msgstr "Inbox" -#: src/Content/Nav.php:285 +#: src/Content/Nav.php:320 msgid "Outbox" msgstr "Outbox" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:324 msgid "Accounts" msgstr "Accounts" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:324 msgid "Manage other pages" msgstr "Manage other pages" -#: src/Content/Nav.php:292 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:235 +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 msgid "Settings" msgstr "Settings" -#: src/Content/Nav.php:292 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 msgid "Account settings" msgstr "Account settings" -#: src/Content/Nav.php:294 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 msgid "Manage/edit friends and contacts" msgstr "Manage/Edit friends and contacts" -#: src/Content/Nav.php:299 src/Module/BaseAdmin.php:126 +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 msgid "Admin" msgstr "Admin" -#: src/Content/Nav.php:299 +#: src/Content/Nav.php:334 msgid "Site setup and configuration" msgstr "Site setup and configuration" -#: src/Content/Nav.php:302 +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "" + +#: src/Content/Nav.php:338 msgid "Navigation" msgstr "Navigation" -#: src/Content/Nav.php:302 +#: src/Content/Nav.php:338 msgid "Site map" msgstr "Site map" -#: src/Content/OEmbed.php:298 +#: src/Content/OEmbed.php:316 msgid "Embedding disabled" msgstr "Embedding disabled" -#: src/Content/OEmbed.php:416 +#: src/Content/OEmbed.php:440 msgid "Embedded content" msgstr "Embedded content" @@ -3074,189 +2180,211 @@ msgstr "next" msgid "last" msgstr "last" -#: src/Content/Text/BBCode.php:987 src/Content/Text/BBCode.php:1781 -#: src/Content/Text/BBCode.php:1782 +#: src/Content/Text/BBCode.php:751 src/Content/Text/BBCode.php:1692 +#: src/Content/Text/BBCode.php:1693 msgid "Image/photo" msgstr "Image/Photo" -#: src/Content/Text/BBCode.php:1160 +#: src/Content/Text/BBCode.php:969 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1185 src/Model/Item.php:3154 -#: src/Model/Item.php:3160 src/Model/Item.php:3161 +#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3813 +#: src/Model/Item.php:3819 src/Model/Item.php:3820 msgid "Link to source" msgstr "Link to source" -#: src/Content/Text/BBCode.php:1699 src/Content/Text/HTML.php:943 +#: src/Content/Text/BBCode.php:1599 src/Content/Text/HTML.php:904 msgid "Click to open/close" msgstr "Reveal/hide" -#: src/Content/Text/BBCode.php:1730 +#: src/Content/Text/BBCode.php:1632 msgid "$1 wrote:" msgstr "$1 wrote:" -#: src/Content/Text/BBCode.php:1786 src/Content/Text/BBCode.php:1787 +#: src/Content/Text/BBCode.php:1697 src/Content/Text/BBCode.php:1698 msgid "Encrypted content" msgstr "Encrypted content" -#: src/Content/Text/BBCode.php:2002 +#: src/Content/Text/BBCode.php:1953 msgid "Invalid source protocol" msgstr "Invalid source protocol" -#: src/Content/Text/BBCode.php:2017 +#: src/Content/Text/BBCode.php:1972 msgid "Invalid link protocol" msgstr "Invalid link protocol" -#: src/Content/Text/HTML.php:807 +#: src/Content/Text/HTML.php:782 msgid "Loading more entries..." msgstr "Loading more entries..." -#: src/Content/Text/HTML.php:808 +#: src/Content/Text/HTML.php:783 msgid "The end" msgstr "The end" -#: src/Content/Text/HTML.php:885 src/Content/Widget/VCard.php:103 -#: src/Model/Profile.php:454 +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:128 +#: src/Model/Profile.php:473 src/Module/Contact/Profile.php:471 msgid "Follow" msgstr "Follow" -#: src/Content/Widget.php:49 +#: src/Content/Widget.php:51 msgid "Add New Contact" msgstr "Add new contact" -#: src/Content/Widget.php:50 +#: src/Content/Widget.php:52 msgid "Enter address or web location" msgstr "Enter address or web location" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:53 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Example: jo@example.com, http://example.com/jo" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:55 msgid "Connect" msgstr "Connect" -#: src/Content/Widget.php:68 +#: src/Content/Widget.php:72 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d invitation available" msgstr[1] "%d invitations available" -#: src/Content/Widget.php:74 view/theme/vier/theme.php:170 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 msgid "Find People" msgstr "Find people" -#: src/Content/Widget.php:75 view/theme/vier/theme.php:171 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 msgid "Enter name or interest" msgstr "Enter name or interest" -#: src/Content/Widget.php:77 view/theme/vier/theme.php:173 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Examples: Robert Morgenstein, fishing" -#: src/Content/Widget.php:78 src/Module/Contact.php:780 -#: src/Module/Directory.php:99 view/theme/vier/theme.php:174 +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 msgid "Find" msgstr "Find" -#: src/Content/Widget.php:80 view/theme/vier/theme.php:176 +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "Friend suggestions" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 msgid "Similar Interests" msgstr "Similar interests" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:177 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 msgid "Random Profile" msgstr "Random profile" -#: src/Content/Widget.php:82 view/theme/vier/theme.php:178 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 msgid "Invite Friends" msgstr "Invite friends" -#: src/Content/Widget.php:83 src/Module/Directory.php:91 -#: view/theme/vier/theme.php:179 +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 msgid "Global Directory" msgstr "Global directory" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:181 +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 msgid "Local Directory" msgstr "Local directory" -#: src/Content/Widget.php:207 src/Model/Group.php:535 -#: src/Module/Contact.php:743 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "Groups" +#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "" -#: src/Content/Widget.php:209 +#: src/Content/Widget.php:217 msgid "Everyone" msgstr "Everyone" -#: src/Content/Widget.php:238 +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "" + +#: src/Content/Widget.php:247 msgid "Relationships" msgstr "Relationships" -#: src/Content/Widget.php:240 src/Module/Contact.php:695 -#: src/Module/Group.php:292 +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 msgid "All Contacts" msgstr "All contacts" -#: src/Content/Widget.php:279 +#: src/Content/Widget.php:288 msgid "Protocols" msgstr "Protocols" -#: src/Content/Widget.php:281 +#: src/Content/Widget.php:290 msgid "All Protocols" msgstr "All Protocols" -#: src/Content/Widget.php:309 +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "Saved Folders" -#: src/Content/Widget.php:311 src/Content/Widget.php:345 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "Everything" -#: src/Content/Widget.php:343 +#: src/Content/Widget.php:349 msgid "Categories" msgstr "Categories" -#: src/Content/Widget.php:400 +#: src/Content/Widget.php:406 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d contact in common" msgstr[1] "%d contacts in common" -#: src/Content/Widget.php:496 +#: src/Content/Widget.php:506 msgid "Archives" msgstr "Archives" -#: src/Content/Widget.php:520 +#: src/Content/Widget.php:514 +msgid "On this date" +msgstr "" + +#: src/Content/Widget.php:534 msgid "Persons" msgstr "Persons" -#: src/Content/Widget.php:521 +#: src/Content/Widget.php:535 msgid "Organisations" msgstr "Organisations" -#: src/Content/Widget.php:522 src/Model/Contact.php:1506 +#: src/Content/Widget.php:536 src/Model/Contact.php:1714 msgid "News" msgstr "News" -#: src/Content/Widget.php:527 src/Module/Admin/BaseUsers.php:50 +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 +msgid "Account Types" +msgstr "Account types" + +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "All" -#: src/Content/Widget/CalendarExport.php:54 +#: src/Content/Widget.php:591 src/Module/BaseSettings.php:125 +#: src/Module/Settings/Channels.php:157 src/Module/Settings/Display.php:309 +msgid "Channels" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:56 msgid "Export" msgstr "Export" -#: src/Content/Widget/CalendarExport.php:55 +#: src/Content/Widget/CalendarExport.php:57 msgid "Export calendar as ical" msgstr "Export calendar as ical" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:58 msgid "Export calendar as csv" msgstr "Export calendar as csv" @@ -3264,14 +2392,14 @@ msgstr "Export calendar as csv" msgid "No contacts" msgstr "No contacts" -#: src/Content/Widget/ContactBlock.php:108 +#: src/Content/Widget/ContactBlock.php:110 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d contact" msgstr[1] "%d contacts" -#: src/Content/Widget/ContactBlock.php:125 +#: src/Content/Widget/ContactBlock.php:127 msgid "View Contacts" msgstr "View contacts" @@ -3283,105 +2411,145 @@ msgstr "Remove term" msgid "Saved Searches" msgstr "Saved searches" -#: src/Content/Widget/TrendingTags.php:51 +#: src/Content/Widget/TrendingTags.php:52 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" msgstr[0] "Trending Tags (last %d hour)" msgstr[1] "Trending tags (last %d hours)" -#: src/Content/Widget/TrendingTags.php:52 +#: src/Content/Widget/TrendingTags.php:53 msgid "More Trending Tags" msgstr "More Trending Tags" -#: src/Content/Widget/VCard.php:96 src/Model/Profile.php:373 -#: src/Module/Contact.php:567 src/Module/Profile/Profile.php:176 +#: src/Content/Widget/VCard.php:107 src/Model/Contact.php:1204 +#: src/Model/Profile.php:457 +msgid "Post to group" +msgstr "" + +#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1209 +#: src/Model/Profile.php:462 src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "" + +#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:97 src/Model/Profile.php:374 -#: src/Module/Contact.php:569 src/Module/Profile/Profile.php:180 +#: src/Content/Widget/VCard.php:122 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:101 src/Model/Profile.php:466 -#: src/Module/Notifications/Introductions.php:179 +#: src/Content/Widget/VCard.php:123 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Location:" + +#: src/Content/Widget/VCard.php:126 src/Model/Profile.php:486 +#: src/Module/Notifications/Introductions.php:201 msgid "Network:" msgstr "Network:" -#: src/Content/Widget/VCard.php:105 src/Model/Profile.php:456 +#: src/Content/Widget/VCard.php:130 src/Model/Contact.php:1237 +#: src/Model/Contact.php:1249 src/Model/Profile.php:475 +#: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Unfollow" -#: src/Core/ACL.php:164 src/Module/Profile/Profile.php:242 +#: src/Content/Widget/VCard.php:136 src/Model/Contact.php:1206 +#: src/Model/Profile.php:459 +msgid "View group" +msgstr "" + +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 msgid "Yourself" msgstr "Yourself" -#: src/Core/ACL.php:200 src/Module/PermissionTooltip.php:85 -#: src/Module/PermissionTooltip.php:107 +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 msgid "Mutuals" msgstr "Mutuals" -#: src/Core/ACL.php:292 +#: src/Core/ACL.php:294 msgid "Post to Email" msgstr "Post to email" -#: src/Core/ACL.php:319 +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 msgid "Public" msgstr "Public" -#: src/Core/ACL.php:320 +#: src/Core/ACL.php:322 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 "This post will be shown to all your followers and can be seen in the community pages and by anyone with its link." -#: src/Core/ACL.php:321 +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 msgid "Limited/Private" msgstr "Limited/Private" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:324 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 "This post 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 publicly." -#: src/Core/ACL.php:323 +#: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." +msgstr "" + +#: src/Core/ACL.php:325 msgid "Show to:" msgstr "Show to:" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:326 msgid "Except to:" msgstr "Except to:" -#: src/Core/ACL.php:327 +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "CC: email addresses" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Example: bob@example.com, mary@example.com" + +#: src/Core/ACL.php:329 msgid "Connectors" msgstr "Connectors" -#: src/Core/Installer.php:183 +#: src/Core/Installer.php:180 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 "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." -#: src/Core/Installer.php:202 +#: src/Core/Installer.php:197 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql." -#: src/Core/Installer.php:203 src/Module/Install.php:206 -#: src/Module/Install.php:365 +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "Please see the file \"doc/INSTALL.md\"." -#: src/Core/Installer.php:264 +#: src/Core/Installer.php:259 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Could not find a command line version of PHP in the web server PATH." -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:260 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 "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'" -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:265 msgid "PHP executable path" msgstr "PHP executable path" -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:265 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Enter full path to php executable. You can leave this blank to continue the installation." -#: src/Core/Installer.php:275 +#: src/Core/Installer.php:270 msgid "Command line PHP" msgstr "Command line PHP" -#: src/Core/Installer.php:284 +#: src/Core/Installer.php:279 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "PHP executable is not a php cli binary; it could possibly be a cgi-fgci version." -#: src/Core/Installer.php:285 +#: src/Core/Installer.php:280 msgid "Found PHP version: " msgstr "Found PHP version: " -#: src/Core/Installer.php:287 +#: src/Core/Installer.php:282 msgid "PHP cli binary" msgstr "PHP cli binary" -#: src/Core/Installer.php:300 +#: src/Core/Installer.php:295 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:296 msgid "This is required for message delivery to work." msgstr "This is required for message delivery to work." -#: src/Core/Installer.php:306 +#: src/Core/Installer.php:301 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:338 +#: src/Core/Installer.php:333 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" -#: src/Core/Installer.php:339 +#: src/Core/Installer.php:334 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "If running under Windows OS, please see \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:342 +#: src/Core/Installer.php:337 msgid "Generate encryption keys" msgstr "Generate encryption keys" -#: src/Core/Installer.php:394 +#: src/Core/Installer.php:388 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Error: Apache web server mod-rewrite module is required but not installed." -#: src/Core/Installer.php:399 +#: src/Core/Installer.php:392 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite module" -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:398 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Error: PDO or MySQLi PHP module required but not installed." -#: src/Core/Installer.php:410 +#: src/Core/Installer.php:402 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Error: MySQL driver for PDO is not installed." -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:405 msgid "PDO or MySQLi PHP module" msgstr "PDO or MySQLi PHP module" +#: src/Core/Installer.php:411 +msgid "Error: The IntlChar module is not installed." +msgstr "" + +#: src/Core/Installer.php:414 +msgid "IntlChar PHP module" +msgstr "" + #: src/Core/Installer.php:422 msgid "Error, XML PHP module required but not installed." msgstr "Error, XML PHP module required but not installed." @@ -3548,372 +2724,362 @@ msgstr "File Information PHP module" msgid "Error: File Information PHP module required but not installed." msgstr "Error: File Information PHP module required but not installed." -#: src/Core/Installer.php:509 +#: src/Core/Installer.php:492 +msgid "GNU Multiple Precision PHP module" +msgstr "" + +#: src/Core/Installer.php:493 +msgid "Error: GNU Multiple Precision PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:516 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 "The web installer needs to be able to create a file called \"local.config.php\" in the \"config\" folder of your web server but is unable to do so." -#: src/Core/Installer.php:510 +#: src/Core/Installer.php:517 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 "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can." -#: src/Core/Installer.php:511 +#: src/Core/Installer.php:518 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 "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." -#: src/Core/Installer.php:512 +#: src/Core/Installer.php:519 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "You can alternatively skip this procedure and perform a manual installation. Please see the file \"doc/INSTALL.md\" for instructions." -#: src/Core/Installer.php:515 +#: src/Core/Installer.php:522 msgid "config/local.config.php is writable" msgstr "config/local.config.php is writable" -#: src/Core/Installer.php:535 +#: src/Core/Installer.php:542 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." -#: src/Core/Installer.php:536 +#: src/Core/Installer.php:543 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 "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 directory." -#: src/Core/Installer.php:537 +#: src/Core/Installer.php:544 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory." -#: src/Core/Installer.php:538 +#: src/Core/Installer.php:545 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 "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." -#: src/Core/Installer.php:541 +#: src/Core/Installer.php:548 msgid "view/smarty3 is writable" msgstr "view/smarty3 is writeable" -#: src/Core/Installer.php:569 +#: src/Core/Installer.php:576 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-dist to .htaccess." -#: src/Core/Installer.php:570 +#: src/Core/Installer.php:577 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "In some situations like running inside a container, you can skip this error." -#: src/Core/Installer.php:572 +#: src/Core/Installer.php:579 msgid "Error message from Curl when fetching" msgstr "Error message from Curl while fetching" -#: src/Core/Installer.php:578 +#: src/Core/Installer.php:585 msgid "Url rewrite is working" msgstr "URL rewrite is working" -#: src/Core/Installer.php:607 +#: src/Core/Installer.php:614 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "Failed to detect TLS that secures the communication between the browser and the new Friendica server." -#: src/Core/Installer.php:608 +#: src/Core/Installer.php:615 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "It's highly encouraged using Friendica only over a secure connection as sensitive information like passwords will be transmitted." -#: src/Core/Installer.php:609 +#: src/Core/Installer.php:616 msgid "Please ensure that the connection to the server is secure." msgstr "Please ensure that the connection to the server is secure." -#: src/Core/Installer.php:610 +#: src/Core/Installer.php:617 msgid "No TLS detected" msgstr "No TLS detected" -#: src/Core/Installer.php:612 +#: src/Core/Installer.php:619 msgid "TLS detected" msgstr "TLS detected" -#: src/Core/Installer.php:639 +#: src/Core/Installer.php:646 msgid "ImageMagick PHP extension is not installed" msgstr "ImageMagick PHP extension is not installed" -#: src/Core/Installer.php:641 +#: src/Core/Installer.php:648 msgid "ImageMagick PHP extension is installed" msgstr "ImageMagick PHP extension is installed" -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:650 msgid "ImageMagick supports GIF" msgstr "ImageMagick supports GIF" -#: src/Core/Installer.php:665 +#: src/Core/Installer.php:672 msgid "Database already in use." msgstr "Database already in use." -#: src/Core/Installer.php:670 +#: src/Core/Installer.php:677 msgid "Could not connect to database." msgstr "Could not connect to database." -#: src/Core/L10n.php:377 src/Model/Event.php:425 -#: src/Module/Settings/Display.php:183 +#: src/Core/L10n.php:507 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:278 msgid "Monday" msgstr "Monday" -#: src/Core/L10n.php:377 src/Model/Event.php:426 +#: src/Core/L10n.php:507 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:279 msgid "Tuesday" msgstr "Tuesday" -#: src/Core/L10n.php:377 src/Model/Event.php:427 +#: src/Core/L10n.php:507 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:280 msgid "Wednesday" msgstr "Wednesday" -#: src/Core/L10n.php:377 src/Model/Event.php:428 +#: src/Core/L10n.php:507 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:281 msgid "Thursday" msgstr "Thursday" -#: src/Core/L10n.php:377 src/Model/Event.php:429 +#: src/Core/L10n.php:507 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:282 msgid "Friday" msgstr "Friday" -#: src/Core/L10n.php:377 src/Model/Event.php:430 +#: src/Core/L10n.php:507 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:283 msgid "Saturday" msgstr "Saturday" -#: src/Core/L10n.php:377 src/Model/Event.php:424 -#: src/Module/Settings/Display.php:183 +#: src/Core/L10n.php:507 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:277 msgid "Sunday" msgstr "Sunday" -#: src/Core/L10n.php:381 src/Model/Event.php:445 +#: src/Core/L10n.php:511 src/Model/Event.php:450 msgid "January" msgstr "January" -#: src/Core/L10n.php:381 src/Model/Event.php:446 +#: src/Core/L10n.php:511 src/Model/Event.php:451 msgid "February" msgstr "February" -#: src/Core/L10n.php:381 src/Model/Event.php:447 +#: src/Core/L10n.php:511 src/Model/Event.php:452 msgid "March" msgstr "March" -#: src/Core/L10n.php:381 src/Model/Event.php:448 +#: src/Core/L10n.php:511 src/Model/Event.php:453 msgid "April" msgstr "April" -#: src/Core/L10n.php:381 src/Core/L10n.php:401 src/Model/Event.php:436 +#: src/Core/L10n.php:511 src/Core/L10n.php:530 src/Model/Event.php:441 msgid "May" msgstr "May" -#: src/Core/L10n.php:381 src/Model/Event.php:449 +#: src/Core/L10n.php:511 src/Model/Event.php:454 msgid "June" msgstr "June" -#: src/Core/L10n.php:381 src/Model/Event.php:450 +#: src/Core/L10n.php:511 src/Model/Event.php:455 msgid "July" msgstr "July" -#: src/Core/L10n.php:381 src/Model/Event.php:451 +#: src/Core/L10n.php:511 src/Model/Event.php:456 msgid "August" msgstr "August" -#: src/Core/L10n.php:381 src/Model/Event.php:452 +#: src/Core/L10n.php:511 src/Model/Event.php:457 msgid "September" msgstr "September" -#: src/Core/L10n.php:381 src/Model/Event.php:453 +#: src/Core/L10n.php:511 src/Model/Event.php:458 msgid "October" msgstr "October" -#: src/Core/L10n.php:381 src/Model/Event.php:454 +#: src/Core/L10n.php:511 src/Model/Event.php:459 msgid "November" msgstr "November" -#: src/Core/L10n.php:381 src/Model/Event.php:455 +#: src/Core/L10n.php:511 src/Model/Event.php:460 msgid "December" msgstr "December" -#: src/Core/L10n.php:397 src/Model/Event.php:417 +#: src/Core/L10n.php:526 src/Model/Event.php:422 msgid "Mon" msgstr "Mon" -#: src/Core/L10n.php:397 src/Model/Event.php:418 +#: src/Core/L10n.php:526 src/Model/Event.php:423 msgid "Tue" msgstr "Tue" -#: src/Core/L10n.php:397 src/Model/Event.php:419 +#: src/Core/L10n.php:526 src/Model/Event.php:424 msgid "Wed" msgstr "Wed" -#: src/Core/L10n.php:397 src/Model/Event.php:420 +#: src/Core/L10n.php:526 src/Model/Event.php:425 msgid "Thu" msgstr "Thu" -#: src/Core/L10n.php:397 src/Model/Event.php:421 +#: src/Core/L10n.php:526 src/Model/Event.php:426 msgid "Fri" msgstr "Fri" -#: src/Core/L10n.php:397 src/Model/Event.php:422 +#: src/Core/L10n.php:526 src/Model/Event.php:427 msgid "Sat" msgstr "Sat" -#: src/Core/L10n.php:397 src/Model/Event.php:416 +#: src/Core/L10n.php:526 src/Model/Event.php:421 msgid "Sun" msgstr "Sun" -#: src/Core/L10n.php:401 src/Model/Event.php:432 +#: src/Core/L10n.php:530 src/Model/Event.php:437 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:401 src/Model/Event.php:433 +#: src/Core/L10n.php:530 src/Model/Event.php:438 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:401 src/Model/Event.php:434 +#: src/Core/L10n.php:530 src/Model/Event.php:439 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:401 src/Model/Event.php:435 +#: src/Core/L10n.php:530 src/Model/Event.php:440 msgid "Apr" msgstr "Apr" -#: src/Core/L10n.php:401 src/Model/Event.php:437 +#: src/Core/L10n.php:530 src/Model/Event.php:442 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:401 src/Model/Event.php:438 +#: src/Core/L10n.php:530 src/Model/Event.php:443 msgid "Jul" msgstr "Jul" -#: src/Core/L10n.php:401 src/Model/Event.php:439 +#: src/Core/L10n.php:530 src/Model/Event.php:444 msgid "Aug" msgstr "Aug" -#: src/Core/L10n.php:401 +#: src/Core/L10n.php:530 msgid "Sep" msgstr "Sep" -#: src/Core/L10n.php:401 src/Model/Event.php:441 +#: src/Core/L10n.php:530 src/Model/Event.php:446 msgid "Oct" msgstr "Oct" -#: src/Core/L10n.php:401 src/Model/Event.php:442 +#: src/Core/L10n.php:530 src/Model/Event.php:447 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:401 src/Model/Event.php:443 +#: src/Core/L10n.php:530 src/Model/Event.php:448 msgid "Dec" msgstr "Dec" -#: src/Core/L10n.php:420 -msgid "poke" -msgstr "poke" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "The logfile '%s' is not usable. No logging is possible (error: '%s')." -#: src/Core/L10n.php:420 -msgid "poked" -msgstr "poked" - -#: src/Core/L10n.php:421 -msgid "ping" -msgstr "ping" - -#: src/Core/L10n.php:421 -msgid "pinged" -msgstr "pinged" - -#: src/Core/L10n.php:422 -msgid "prod" -msgstr "prod" - -#: src/Core/L10n.php:422 -msgid "prodded" -msgstr "prodded" - -#: src/Core/L10n.php:423 -msgid "slap" -msgstr "slap" - -#: src/Core/L10n.php:423 -msgid "slapped" -msgstr "slapped" - -#: src/Core/L10n.php:424 -msgid "finger" -msgstr "finger" - -#: src/Core/L10n.php:424 -msgid "fingered" -msgstr "fingered" - -#: src/Core/L10n.php:425 -msgid "rebuff" -msgstr "rebuff" - -#: src/Core/L10n.php:425 -msgid "rebuffed" -msgstr "rebuffed" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "The debug logfile '%s' is not usable. No logging is possible (error: '%s')." #: src/Core/Renderer.php:89 src/Core/Renderer.php:118 -#: src/Core/Renderer.php:145 src/Core/Renderer.php:179 -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "Friendica can't display this page at the moment, please contact the administrator." -#: src/Core/Renderer.php:141 +#: src/Core/Renderer.php:143 msgid "template engine cannot be registered without a name." msgstr "template engine cannot be registered without a name." -#: src/Core/Renderer.php:175 +#: src/Core/Renderer.php:177 msgid "template engine is not registered!" msgstr "template engine is not registered!" -#: src/Core/Update.php:67 +#: src/Core/Storage/Type/FilesystemConfig.php:78 +msgid "Storage base path" +msgstr "Storage base path" + +#: src/Core/Storage/Type/FilesystemConfig.php:80 +msgid "" +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "Folder where uploaded files are saved. For maximum security, this should be a path outside web server folder tree" + +#: src/Core/Storage/Type/FilesystemConfig.php:93 +msgid "Enter a valid existing folder" +msgstr "Enter a valid existing folder" + +#: src/Core/Update.php:80 #, 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 "Updates from version %s are not supported. Please update at least to version 2021.01 and wait until the postupdate finished version 1383." -#: src/Core/Update.php:78 +#: src/Core/Update.php:91 #, 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 "Updates from postupdate version %s are not supported. Please update at least to version 2021.01 and wait until the postupdate finished version 1383." -#: src/Core/Update.php:152 +#: src/Core/Update.php:183 #, php-format msgid "%s: executing pre update %d" msgstr "%s: executing pre update %d" -#: src/Core/Update.php:190 +#: src/Core/Update.php:225 #, php-format msgid "%s: executing post update %d" msgstr "%s: executing post update %d" -#: src/Core/Update.php:261 +#: src/Core/Update.php:299 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s failed. See error logs." -#: src/Core/Update.php:314 +#: src/Core/Update.php:339 #, php-format msgid "" "\n" @@ -3923,81 +3089,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\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." -#: src/Core/Update.php:320 +#: src/Core/Update.php:345 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "The error message is\\n[pre]%s[/pre]" -#: src/Core/Update.php:324 src/Core/Update.php:366 +#: src/Core/Update.php:349 src/Core/Update.php:377 msgid "[Friendica Notify] Database update" msgstr "[Friendica Notify] Database update" -#: src/Core/Update.php:360 +#: src/Core/Update.php:371 #, php-format msgid "" "\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s." +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "" -#: src/Core/UserImport.php:125 -msgid "Error decoding account file" -msgstr "Error decoding account file" - -#: src/Core/UserImport.php:131 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Error! No version data in file! Is this a Friendica account file?" - -#: src/Core/UserImport.php:139 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "User '%s' already exists on this server!" - -#: src/Core/UserImport.php:175 -msgid "User creation error" -msgstr "User creation error" - -#: src/Core/UserImport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contact not imported" -msgstr[1] "%d contacts not imported" - -#: src/Core/UserImport.php:273 -msgid "User profile creation error" -msgstr "User profile creation error" - -#: src/Core/UserImport.php:326 -msgid "Done. You can now login with your username and password" -msgstr "Done. You can now login with your username and password" - -#: src/Database/DBStructure.php:65 +#: src/Database/DBStructure.php:57 #, php-format msgid "The database version had been set to %s." msgstr "The database version had been set to %s." -#: src/Database/DBStructure.php:78 +#: src/Database/DBStructure.php:82 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "The post update is at version %d, it has to be at %d to safely drop the tables." -#: src/Database/DBStructure.php:91 +#: src/Database/DBStructure.php:95 msgid "No unused tables found." msgstr "No unused tables found." -#: src/Database/DBStructure.php:96 +#: src/Database/DBStructure.php:100 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "" -#: src/Database/DBStructure.php:134 +#: src/Database/DBStructure.php:137 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "There are no tables on MyISAM or InnoDB with the Antelope file format." -#: src/Database/DBStructure.php:158 +#: src/Database/DBStructure.php:161 #, php-format msgid "" "\n" @@ -4005,570 +3139,641 @@ msgid "" "%s\n" msgstr "\nError %d occurred during database update:\n%s\n" -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:164 msgid "Errors encountered performing database changes: " msgstr "Errors encountered performing database changes: " -#: src/Database/DBStructure.php:549 +#: src/Database/DBStructure.php:232 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:553 +#: src/Database/DBStructure.php:236 #, php-format msgid "%s: Database update" msgstr "%s: Database update" -#: src/Database/DBStructure.php:803 +#: src/Database/DBStructure.php:493 #, php-format msgid "%s: updating %s table." msgstr "%s: updating %s table." -#: src/Factory/Api/Mastodon/Error.php:55 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Record not found" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:65 +#: src/Factory/Api/Mastodon/Error.php:49 msgid "Unprocessable Entity" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:75 -#: src/Module/Special/HTTPException.php:50 +#: src/Factory/Api/Mastodon/Error.php:56 msgid "Unauthorized" msgstr "Unauthorized" -#: src/Factory/Api/Mastodon/Error.php:85 +#: src/Factory/Api/Mastodon/Error.php:62 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:95 -#: src/Module/Special/HTTPException.php:53 +#: src/Factory/Api/Mastodon/Error.php:69 msgid "Internal Server Error" msgstr "Internal Server Error" -#: src/LegacyModule.php:49 +#: src/LegacyModule.php:63 #, php-format msgid "Legacy module file not found: %s" msgstr "Legacy module file not found: %s" -#: src/Model/Contact.php:1073 src/Model/Contact.php:1085 -msgid "UnFollow" -msgstr "Unfollow" +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." +msgstr "" -#: src/Model/Contact.php:1091 src/Module/Admin/Users/Pending.php:107 -#: src/Module/Notifications/Introductions.php:110 -#: src/Module/Notifications/Introductions.php:182 +#: src/Model/Circle.php:544 +msgid "Everybody" +msgstr "Everybody" + +#: src/Model/Circle.php:563 +msgid "edit" +msgstr "edit" + +#: src/Model/Circle.php:600 +msgid "add" +msgstr "add" + +#: src/Model/Circle.php:605 +msgid "Edit circle" +msgstr "" + +#: src/Model/Circle.php:606 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "" + +#: src/Model/Circle.php:608 +msgid "Create a new circle" +msgstr "" + +#: src/Model/Circle.php:609 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "" + +#: src/Model/Circle.php:610 +msgid "Edit circles" +msgstr "" + +#: src/Model/Contact.php:1256 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Approve" -#: src/Model/Contact.php:1502 +#: src/Model/Contact.php:1710 msgid "Organisation" msgstr "Organisation" -#: src/Model/Contact.php:1510 -msgid "Forum" -msgstr "Forum" +#: src/Model/Contact.php:1718 +msgid "Group" +msgstr "" -#: src/Model/Contact.php:2380 +#: src/Model/Contact.php:3021 msgid "Disallowed profile URL." msgstr "Disallowed profile URL." -#: src/Model/Contact.php:2385 src/Module/Friendica.php:81 +#: src/Model/Contact.php:3026 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Blocked domain" -#: src/Model/Contact.php:2390 +#: src/Model/Contact.php:3031 msgid "Connect URL missing." msgstr "Connect URL missing." -#: src/Model/Contact.php:2399 +#: src/Model/Contact.php:3040 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page." -#: src/Model/Contact.php:2436 +#: src/Model/Contact.php:3058 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "" + +#: src/Model/Contact.php:3075 msgid "The profile address specified does not provide adequate information." msgstr "The profile address specified does not provide adequate information." -#: src/Model/Contact.php:2438 +#: src/Model/Contact.php:3077 msgid "No compatible communication protocols or feeds were discovered." msgstr "No compatible communication protocols or feeds were discovered." -#: src/Model/Contact.php:2441 +#: src/Model/Contact.php:3080 msgid "An author or name was not found." msgstr "An author or name was not found." -#: src/Model/Contact.php:2444 +#: src/Model/Contact.php:3083 msgid "No browser URL could be matched to this address." msgstr "No browser URL could be matched to this address." -#: src/Model/Contact.php:2447 +#: src/Model/Contact.php:3086 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Unable to match @-style identity address with a known protocol or email contact." -#: src/Model/Contact.php:2448 +#: src/Model/Contact.php:3087 msgid "Use mailto: in front of address to force email check." msgstr "Use mailto: in front of address to force email check." -#: src/Model/Contact.php:2454 +#: src/Model/Contact.php:3093 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "The profile address specified belongs to a network which has been disabled on this site." -#: src/Model/Contact.php:2459 +#: src/Model/Contact.php:3098 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Limited profile: This person will be unable to receive direct/private messages from you." -#: src/Model/Contact.php:2518 +#: src/Model/Contact.php:3164 msgid "Unable to retrieve contact information." msgstr "Unable to retrieve contact information." -#: src/Model/Event.php:52 +#: src/Model/Event.php:54 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:73 src/Model/Event.php:90 src/Model/Event.php:464 -#: src/Model/Event.php:897 +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 msgid "Starts:" msgstr "Starts:" -#: src/Model/Event.php:76 src/Model/Event.php:96 src/Model/Event.php:465 -#: src/Model/Event.php:901 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 msgid "Finishes:" msgstr "Finishes:" -#: src/Model/Event.php:414 +#: src/Model/Event.php:419 msgid "all-day" msgstr "All-day" -#: src/Model/Event.php:440 +#: src/Model/Event.php:445 msgid "Sept" msgstr "Sep" -#: src/Model/Event.php:462 +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "today" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:288 src/Util/Temporal.php:353 +msgid "month" +msgstr "month" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:289 src/Util/Temporal.php:354 +msgid "week" +msgstr "week" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:290 src/Util/Temporal.php:355 +msgid "day" +msgstr "day" + +#: src/Model/Event.php:467 msgid "No events to display" msgstr "No events to display" -#: src/Model/Event.php:578 +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "Access to this profile has been restricted." + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "" + +#: src/Model/Event.php:637 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:609 +#: src/Model/Event.php:664 msgid "Edit event" msgstr "Edit event" -#: src/Model/Event.php:610 +#: src/Model/Event.php:665 msgid "Duplicate event" msgstr "Duplicate event" -#: src/Model/Event.php:611 +#: src/Model/Event.php:666 msgid "Delete event" msgstr "Delete event" -#: src/Model/Event.php:853 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:854 +#: src/Model/Event.php:897 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:855 +#: src/Model/Event.php:898 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:916 src/Model/Event.php:918 +#: src/Model/Event.php:964 src/Model/Event.php:966 msgid "Show map" msgstr "Show map" -#: src/Model/Event.php:917 +#: src/Model/Event.php:965 msgid "Hide map" msgstr "Hide map" -#: src/Model/Event.php:1009 +#: src/Model/Event.php:1058 #, php-format msgid "%s's birthday" msgstr "%s's birthday" -#: src/Model/Event.php:1010 +#: src/Model/Event.php:1059 #, php-format msgid "Happy Birthday %s" msgstr "Happy Birthday, %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 "A deleted group with this name has been 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." - -#: src/Model/Group.php:451 -msgid "Default privacy group for new contacts" -msgstr "Default privacy group for new contacts" - -#: src/Model/Group.php:483 -msgid "Everybody" -msgstr "Everybody" - -#: src/Model/Group.php:502 -msgid "edit" -msgstr "edit" - -#: src/Model/Group.php:534 -msgid "add" -msgstr "add" - -#: src/Model/Group.php:539 -msgid "Edit group" -msgstr "Edit group" - -#: src/Model/Group.php:540 src/Module/Group.php:193 -msgid "Contacts not in any group" -msgstr "Contacts not in any group" - -#: src/Model/Group.php:542 -msgid "Create a new group" -msgstr "Create new group" - -#: src/Model/Group.php:543 src/Module/Group.php:178 src/Module/Group.php:201 -#: src/Module/Group.php:276 -msgid "Group Name: " -msgstr "Group name: " - -#: src/Model/Group.php:544 -msgid "Edit groups" -msgstr "Edit groups" - -#: src/Model/Item.php:1677 +#: src/Model/Item.php:2139 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "" -#: src/Model/Item.php:2628 +#: src/Model/Item.php:3084 msgid "activity" msgstr "activity" -#: src/Model/Item.php:2630 +#: src/Model/Item.php:3086 msgid "comment" msgstr "" -#: src/Model/Item.php:2633 +#: src/Model/Item.php:3089 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "post" -#: src/Model/Item.php:2770 +#: src/Model/Item.php:3259 +#, php-format +msgid "%s is blocked" +msgstr "" + +#: src/Model/Item.php:3261 +#, php-format +msgid "%s is ignored" +msgstr "" + +#: src/Model/Item.php:3263 +#, php-format +msgid "Content from %s is collapsed" +msgstr "" + +#: src/Model/Item.php:3267 #, php-format msgid "Content warning: %s" msgstr "Content warning: %s" -#: src/Model/Item.php:3119 +#: src/Model/Item.php:3720 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:3148 src/Model/Item.php:3149 +#: src/Model/Item.php:3751 +#, php-format +msgid "%2$s (%3$d%%, %1$d vote)" +msgid_plural "%2$s (%3$d%%, %1$d votes)" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3753 +#, php-format +msgid "%2$s (%1$d vote)" +msgid_plural "%2$s (%1$d votes)" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3758 +#, php-format +msgid "%d voter. Poll end: %s" +msgid_plural "%d voters. Poll end: %s" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3760 +#, php-format +msgid "%d voter." +msgid_plural "%d voters." +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3762 +#, php-format +msgid "Poll end: %s" +msgstr "" + +#: src/Model/Item.php:3796 src/Model/Item.php:3797 msgid "View on separate page" msgstr "View on separate page" -#: src/Model/Mail.php:134 src/Model/Mail.php:266 +#: src/Model/Mail.php:137 src/Model/Mail.php:266 msgid "[no subject]" msgstr "[no subject]" -#: src/Model/Profile.php:356 src/Module/Profile/Profile.php:256 -#: src/Module/Profile/Profile.php:258 +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Wall photos" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 msgid "Edit profile" msgstr "Edit profile" -#: src/Model/Profile.php:358 +#: src/Model/Profile.php:361 msgid "Change profile photo" msgstr "Change profile photo" -#: src/Model/Profile.php:371 src/Module/Directory.php:155 -#: src/Module/Profile/Profile.php:184 +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 msgid "Homepage:" msgstr "Homepage:" -#: src/Model/Profile.php:372 src/Module/Contact.php:571 -#: src/Module/Notifications/Introductions.php:167 +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "About:" -#: src/Model/Profile.php:458 +#: src/Model/Profile.php:477 msgid "Atom feed" msgstr "Atom feed" -#: 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:484 +msgid "This website has been verified to belong to the same person." +msgstr "" -#: src/Model/Profile.php:497 +#: src/Model/Profile.php:525 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:559 src/Model/Profile.php:644 +#: src/Model/Profile.php:589 src/Model/Profile.php:678 msgid "[today]" msgstr "[today]" -#: src/Model/Profile.php:569 +#: src/Model/Profile.php:598 msgid "Birthday Reminders" msgstr "Birthday reminders" -#: src/Model/Profile.php:570 +#: src/Model/Profile.php:599 msgid "Birthdays this week:" msgstr "Birthdays this week:" -#: src/Model/Profile.php:631 +#: src/Model/Profile.php:627 +msgid "g A l F d" +msgstr "g A l F d" + +#: src/Model/Profile.php:665 msgid "[No description]" msgstr "[No description]" -#: src/Model/Profile.php:657 +#: src/Model/Profile.php:691 msgid "Event Reminders" msgstr "Event reminders" -#: src/Model/Profile.php:658 +#: src/Model/Profile.php:692 msgid "Upcoming events the next 7 days:" msgstr "Upcoming events the next 7 days:" -#: src/Model/Profile.php:846 +#: src/Model/Profile.php:891 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s welcomes %2$s" -#: src/Model/Profile.php:978 +#: src/Model/Profile.php:1031 msgid "Hometown:" msgstr "Home town:" -#: src/Model/Profile.php:979 +#: src/Model/Profile.php:1032 msgid "Marital Status:" msgstr "Marital Status:" -#: src/Model/Profile.php:980 +#: src/Model/Profile.php:1033 msgid "With:" msgstr "With:" -#: src/Model/Profile.php:981 +#: src/Model/Profile.php:1034 msgid "Since:" msgstr "Since:" -#: src/Model/Profile.php:982 +#: src/Model/Profile.php:1035 msgid "Sexual Preference:" msgstr "Sexual preference:" -#: src/Model/Profile.php:983 +#: src/Model/Profile.php:1036 msgid "Political Views:" msgstr "Political views:" -#: src/Model/Profile.php:984 +#: src/Model/Profile.php:1037 msgid "Religious Views:" msgstr "Religious views:" -#: src/Model/Profile.php:985 +#: src/Model/Profile.php:1038 msgid "Likes:" msgstr "Likes:" -#: src/Model/Profile.php:986 +#: src/Model/Profile.php:1039 msgid "Dislikes:" msgstr "Dislikes:" -#: src/Model/Profile.php:987 +#: src/Model/Profile.php:1040 msgid "Title/Description:" msgstr "Title/Description:" -#: src/Model/Profile.php:988 src/Module/Admin/Summary.php:234 +#: src/Model/Profile.php:1041 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 msgid "Summary" msgstr "Summary" -#: src/Model/Profile.php:989 +#: src/Model/Profile.php:1042 msgid "Musical interests" msgstr "Music:" -#: src/Model/Profile.php:990 +#: src/Model/Profile.php:1043 msgid "Books, literature" msgstr "Books, literature, poetry:" -#: src/Model/Profile.php:991 +#: src/Model/Profile.php:1044 msgid "Television" msgstr "Television:" -#: src/Model/Profile.php:992 +#: src/Model/Profile.php:1045 msgid "Film/dance/culture/entertainment" msgstr "Film, dance, culture, entertainment" -#: src/Model/Profile.php:993 +#: src/Model/Profile.php:1046 msgid "Hobbies/Interests" msgstr "Hobbies/Interests:" -#: src/Model/Profile.php:994 +#: src/Model/Profile.php:1047 msgid "Love/romance" msgstr "Love/Romance:" -#: src/Model/Profile.php:995 +#: src/Model/Profile.php:1048 msgid "Work/employment" msgstr "Work/Employment:" -#: src/Model/Profile.php:996 +#: src/Model/Profile.php:1049 msgid "School/education" msgstr "School/Education:" -#: src/Model/Profile.php:997 +#: src/Model/Profile.php:1050 msgid "Contact information and Social Networks" msgstr "Contact information and other social networks:" -#: src/Model/Storage/FilesystemConfig.php:77 -msgid "Storage base path" -msgstr "Storage base path" - -#: src/Model/Storage/FilesystemConfig.php:79 -msgid "" -"Folder where uploaded files are saved. For maximum security, This should be " -"a path outside web server folder tree" -msgstr "Folder where uploaded files are saved. For maximum security, this should be a path outside web server folder tree" - -#: src/Model/Storage/FilesystemConfig.php:92 -msgid "Enter a valid existing folder" -msgstr "Enter a valid existing folder" - -#: src/Model/User.php:208 src/Model/User.php:1050 +#: src/Model/User.php:226 src/Model/User.php:1185 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "SERIOUS ERROR: Generation of security keys failed." -#: src/Model/User.php:589 src/Model/User.php:622 +#: src/Model/User.php:619 src/Model/User.php:652 msgid "Login failed" msgstr "Login failed" -#: src/Model/User.php:654 +#: src/Model/User.php:684 msgid "Not enough information to authenticate" msgstr "Not enough information to authenticate" -#: src/Model/User.php:749 +#: src/Model/User.php:805 msgid "Password can't be empty" msgstr "Password can't be empty" -#: src/Model/User.php:768 +#: src/Model/User.php:847 msgid "Empty passwords are not allowed." msgstr "Empty passwords are not allowed." -#: src/Model/User.php:772 +#: src/Model/User.php:851 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "The new password has been exposed in a public data dump; please choose another." -#: src/Model/User.php:778 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "The password can't contain accentuated letters, white spaces or colons" +#: src/Model/User.php:855 +msgid "The password length is limited to 72 characters." +msgstr "" -#: src/Model/User.php:930 +#: src/Model/User.php:859 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "" + +#: src/Model/User.php:1068 msgid "Passwords do not match. Password unchanged." msgstr "Passwords do not match. Password unchanged." -#: src/Model/User.php:937 +#: src/Model/User.php:1075 msgid "An invitation is required." msgstr "An invitation is required." -#: src/Model/User.php:941 +#: src/Model/User.php:1079 msgid "Invitation could not be verified." msgstr "Invitation could not be verified." -#: src/Model/User.php:949 +#: src/Model/User.php:1087 msgid "Invalid OpenID url" msgstr "Invalid OpenID URL" -#: src/Model/User.php:962 src/Security/Authentication.php:223 +#: src/Model/User.php:1100 src/Security/Authentication.php:241 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID." -#: src/Model/User.php:962 src/Security/Authentication.php:223 +#: src/Model/User.php:1100 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "The error message was:" -#: src/Model/User.php:968 +#: src/Model/User.php:1106 msgid "Please enter the required information." msgstr "Please enter the required information." -#: src/Model/User.php:982 +#: src/Model/User.php:1120 #, 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) are excluding each other, swapping values." -#: src/Model/User.php:989 +#: src/Model/User.php:1127 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." msgstr[0] "Username should be at least %s character." msgstr[1] "Username should be at least %s characters." -#: src/Model/User.php:993 +#: src/Model/User.php:1131 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." msgstr[0] "Username should be at most %s character." msgstr[1] "Username should be at most %s characters." -#: src/Model/User.php:1001 +#: src/Model/User.php:1139 msgid "That doesn't appear to be your full (First Last) name." msgstr "That doesn't appear to be your full (i.e first and last) name." -#: src/Model/User.php:1006 +#: src/Model/User.php:1144 msgid "Your email domain is not among those allowed on this site." msgstr "Your email domain is not allowed on this site." -#: src/Model/User.php:1010 +#: src/Model/User.php:1148 msgid "Not a valid email address." msgstr "Not a valid email address." -#: src/Model/User.php:1013 +#: src/Model/User.php:1151 msgid "The nickname was blocked from registration by the nodes admin." msgstr "The nickname was blocked from registration by the nodes admin." -#: src/Model/User.php:1017 src/Model/User.php:1025 +#: src/Model/User.php:1155 src/Model/User.php:1161 msgid "Cannot use that email." msgstr "Cannot use that email." -#: src/Model/User.php:1032 +#: src/Model/User.php:1167 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Your nickname can only contain a-z, 0-9 and _." -#: src/Model/User.php:1040 src/Model/User.php:1097 +#: src/Model/User.php:1175 src/Model/User.php:1232 msgid "Nickname is already registered. Please choose another." msgstr "Nickname is already registered. Please choose another." -#: src/Model/User.php:1084 src/Model/User.php:1088 +#: src/Model/User.php:1219 src/Model/User.php:1223 msgid "An error occurred during registration. Please try again." msgstr "An error occurred during registration. Please try again." -#: src/Model/User.php:1111 +#: src/Model/User.php:1246 msgid "An error occurred creating your default profile. Please try again." msgstr "An error occurred creating your default profile. Please try again." -#: src/Model/User.php:1118 +#: src/Model/User.php:1253 msgid "An error occurred creating your self contact. Please try again." msgstr "An error occurred creating your self-contact. Please try again." -#: src/Model/User.php:1123 +#: src/Model/User.php:1258 msgid "Friends" msgstr "Friends" -#: src/Model/User.php:1127 +#: src/Model/User.php:1262 msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "An error occurred while creating your default contact group. Please try again." +"An error occurred creating your default contact circle. Please try again." +msgstr "" -#: src/Model/User.php:1165 +#: src/Model/User.php:1306 msgid "Profile Photos" msgstr "Profile photos" -#: src/Model/User.php:1359 +#: src/Model/User.php:1486 #, php-format msgid "" "\n" @@ -4576,7 +3781,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\tDear %1$s,\n\t\t\tThe administrator of %2$s has set up an account for you." -#: src/Model/User.php:1362 +#: src/Model/User.php:1489 #, php-format msgid "" "\n" @@ -4603,17 +3808,17 @@ msgid "" "\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" +"\t\tIf you ever want to delete your account, you can do so at %1$s/settings/removeme\n" "\n" "\t\tThank you and welcome to %4$s." -msgstr "\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 "" -#: src/Model/User.php:1395 src/Model/User.php:1502 +#: src/Model/User.php:1522 src/Model/User.php:1629 #, php-format msgid "Registration details for %s" msgstr "Registration details for %s" -#: src/Model/User.php:1415 +#: src/Model/User.php:1542 #, php-format msgid "" "\n" @@ -4628,12 +3833,12 @@ msgid "" "\t\t" msgstr "\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" -#: src/Model/User.php:1434 +#: src/Model/User.php:1561 #, php-format msgid "Registration at %s" msgstr "Registration at %s" -#: src/Model/User.php:1458 +#: src/Model/User.php:1585 #, php-format msgid "" "\n" @@ -4642,7 +3847,7 @@ msgid "" "\t\t\t" msgstr "\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" -#: src/Model/User.php:1466 +#: src/Model/User.php:1593 #, php-format msgid "" "\n" @@ -4669,10 +3874,15 @@ msgid "" "\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" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." -msgstr "\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 "" + +#: src/Model/User.php:1656 +msgid "" +"User with delegates can't be removed, please remove delegate users first" +msgstr "" #: src/Module/Admin/Addons/Details.php:65 msgid "Addon not found." @@ -4694,30 +3904,25 @@ msgid "Disable" msgstr "Disable" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:332 msgid "Enable" msgstr "Enable" #: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:94 -#: 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:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:499 -#: src/Module/Admin/Storage.php:139 src/Module/Admin/Summary.php:233 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: 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 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 msgid "Administration" msgstr "Administration" #: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:93 -#: src/Module/BaseSettings.php:87 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:139 msgid "Addons" msgstr "Addons" @@ -4726,13 +3931,13 @@ msgstr "Addons" msgid "Toggle" msgstr "Toggle" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 msgid "Author: " msgstr "Author: " -#: src/Module/Admin/Addons/Details.php:122 -#: src/Module/Admin/Themes/Details.php:102 +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 msgid "Maintainer: " msgstr "Maintainer: " @@ -4745,11 +3950,22 @@ msgstr "" msgid "Addon %s failed to install." msgstr "Addon %s failed to install." +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:303 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Save settings" + #: src/Module/Admin/Addons/Index.php:70 msgid "Reload active addons" msgstr "Reload active addons" -#: src/Module/Admin/Addons/Index.php:75 +#: src/Module/Admin/Addons/Index.php:74 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4757,232 +3973,6 @@ msgid "" " the open addon registry at %2$s" msgstr "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" -#: src/Module/Admin/BaseUsers.php:53 -msgid "List of all users" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:58 -msgid "Active" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:61 -msgid "List of active accounts" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:66 src/Module/Contact.php:703 -#: src/Module/Contact.php:763 -msgid "Pending" -msgstr "Pending" - -#: src/Module/Admin/BaseUsers.php:69 -msgid "List of pending registrations" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:74 src/Module/Contact.php:711 -#: src/Module/Contact.php:764 -msgid "Blocked" -msgstr "Blocked" - -#: src/Module/Admin/BaseUsers.php:77 -msgid "List of blocked users" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:82 -msgid "Deleted" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:85 -msgid "List of pending user deletions" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:103 -msgid "Private Forum" -msgstr "Private Forum" - -#: src/Module/Admin/BaseUsers.php:110 -msgid "Relay" -msgstr "Relay" - -#: src/Module/Admin/Blocklist/Contact.php:54 -msgid "You can't block a local contact, please block the user instead" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:73 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s contact unblocked" -msgstr[1] "%s contacts unblocked" - -#: src/Module/Admin/Blocklist/Contact.php:95 -msgid "Remote Contact Blocklist" -msgstr "Remote contact block-list" - -#: src/Module/Admin/Blocklist/Contact.php:96 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "This page allows you to prevent any message from a remote contact to reach your node." - -#: src/Module/Admin/Blocklist/Contact.php:97 -msgid "Block Remote Contact" -msgstr "Block Remote Contact" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#: 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 "select all" - -#: src/Module/Admin/Blocklist/Contact.php:99 -msgid "select none" -msgstr "select none" - -#: src/Module/Admin/Blocklist/Contact.php:101 -#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156 -#: src/Module/Contact.php:544 src/Module/Contact.php:787 -#: src/Module/Contact.php:1064 -msgid "Unblock" -msgstr "Unblock" - -#: src/Module/Admin/Blocklist/Contact.php:102 -msgid "No remote contact is blocked from this node." -msgstr "No remote contact is blocked from this node." - -#: src/Module/Admin/Blocklist/Contact.php:104 -msgid "Blocked Remote Contacts" -msgstr "Blocked remote contacts" - -#: src/Module/Admin/Blocklist/Contact.php:105 -msgid "Block New Remote Contact" -msgstr "Block new remote contact" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Photo" -msgstr "Photo" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Reason" -msgstr "Reason" - -#: src/Module/Admin/Blocklist/Contact.php:114 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "%s total blocked contact" -msgstr[1] "%s total blocked contacts" - -#: src/Module/Admin/Blocklist/Contact.php:116 -msgid "URL of the remote contact to block." -msgstr "URL of the remote contact to block." - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "Also purge contact" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "" -"Removes all content related to this contact from the node. Keeps the contact" -" record. This action canoot be undone." -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:118 -msgid "Block Reason" -msgstr "Reason for blocking" - -#: src/Module/Admin/Blocklist/Server.php:49 -msgid "Server domain pattern added to blocklist." -msgstr "Server domain pattern added to block-list." - -#: src/Module/Admin/Blocklist/Server.php:79 -#: src/Module/Admin/Blocklist/Server.php:104 -msgid "Blocked server domain pattern" -msgstr "Blocked server domain pattern" - -#: src/Module/Admin/Blocklist/Server.php:80 -#: src/Module/Admin/Blocklist/Server.php:105 src/Module/Friendica.php:82 -msgid "Reason for the block" -msgstr "Reason for the block" - -#: src/Module/Admin/Blocklist/Server.php:81 -msgid "Delete server domain pattern" -msgstr "Delete server domain pattern" - -#: src/Module/Admin/Blocklist/Server.php:81 -msgid "Check to delete this entry from the blocklist" -msgstr "Check to delete this entry from the block-list" - -#: src/Module/Admin/Blocklist/Server.php:89 -msgid "Server Domain Pattern Blocklist" -msgstr "Server domain pattern block-list" - -#: 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 "" - -#: 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 "The list of blocked server domain patterns will be made publicly available on the /friendica page so that your users and people investigating communication problems can find the reason easily." - -#: 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 "

    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
    " - -#: src/Module/Admin/Blocklist/Server.php:98 -msgid "Add new entry to block list" -msgstr "Add new entry to block-list" - -#: src/Module/Admin/Blocklist/Server.php:99 -msgid "Server Domain Pattern" -msgstr "Server Domain Pattern" - -#: 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 "The domain pattern of the new server to add to the block list. Do not include the protocol." - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "Block reason" -msgstr "Block reason" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "The reason why you blocked this server domain pattern." -msgstr "The reason why you blocked this server domain pattern." - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "Add Entry" -msgstr "Add entry" - -#: src/Module/Admin/Blocklist/Server.php:102 -msgid "Save changes to the blocklist" -msgstr "Save changes to the block-list" - -#: src/Module/Admin/Blocklist/Server.php:103 -msgid "Current Entries in the Blocklist" -msgstr "Current entries in the block-list" - -#: src/Module/Admin/Blocklist/Server.php:106 -msgid "Delete entry from blocklist" -msgstr "Delete entry from block-list" - -#: src/Module/Admin/Blocklist/Server.php:109 -msgid "Delete entry from blocklist?" -msgstr "Delete entry from block-list?" - #: src/Module/Admin/DBSync.php:51 msgid "Update has been marked successful" msgstr "Update has been marked successful" @@ -5017,28 +4007,28 @@ msgstr "Update %s did not return a status. Unknown if it succeeded." msgid "There was no additional update function %s that needed to be called." msgstr "There was no additional update function %s that needed to be called." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:105 msgid "No failed updates." msgstr "No failed updates." -#: src/Module/Admin/DBSync.php:107 +#: src/Module/Admin/DBSync.php:106 msgid "Check database structure" msgstr "Check database structure" -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:110 msgid "Failed Updates" msgstr "Failed updates" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:111 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "This does not include updates prior to 1139, which did not return a status." -#: src/Module/Admin/DBSync.php:114 +#: src/Module/Admin/DBSync.php:112 msgid "Mark success (if update was manually applied)" msgstr "Mark success (if update was manually applied)" -#: src/Module/Admin/DBSync.php:115 +#: src/Module/Admin/DBSync.php:113 msgid "Attempt to execute this update step automatically" msgstr "Attempt to execute this update step automatically" @@ -5047,164 +4037,145 @@ msgstr "Attempt to execute this update step automatically" msgid "Lock feature %s" msgstr "Lock feature %s" -#: src/Module/Admin/Features.php:85 +#: src/Module/Admin/Features.php:84 msgid "Manage Additional Features" msgstr "Manage additional features" -#: src/Module/Admin/Federation.php:56 +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 msgid "Other" msgstr "Other" -#: src/Module/Admin/Federation.php:118 src/Module/Admin/Federation.php:348 +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 msgid "unknown" msgstr "unknown" -#: src/Module/Admin/Federation.php:154 +#: src/Module/Admin/Federation.php:187 +#, php-format +msgid "%2$s total system" +msgid_plural "%2$s total systems" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:188 +#, php-format +msgid "%2$s active user last month" +msgid_plural "%2$s active users last month" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:189 +#, php-format +msgid "%2$s active user last six months" +msgid_plural "%2$s active users last six months" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:190 +#, php-format +msgid "%2$s registered user" +msgid_plural "%2$s registered users" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:191 +#, php-format +msgid "%2$s locally created post or comment" +msgid_plural "%2$s locally created posts and comments" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:194 +#, php-format +msgid "%2$s post per user" +msgid_plural "%2$s posts per user" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:199 +#, php-format +msgid "%2$s user per system" +msgid_plural "%2$s users per system" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:209 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 "This page offers you the amount of known part of the federated social network your Friendica node is part of. These numbers are not complete and only reflect the part of the network your node is aware of." -#: src/Module/Admin/Federation.php:160 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "Federation statistics" -#: src/Module/Admin/Federation.php:164 +#: src/Module/Admin/Federation.php:219 #, php-format msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " +"Currently this node is aware of %2$s node (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " "following platforms:" -msgstr "Currently this node is aware of %d nodes with %d registered users from the following platforms:" +msgid_plural "" +"Currently this node is aware of %2$s nodes (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgstr[0] "" +msgstr[1] "" -#: src/Module/Admin/Item/Delete.php:54 -msgid "Item marked for deletion." -msgstr "Item marked for deletion." - -#: src/Module/Admin/Item/Delete.php:66 src/Module/BaseAdmin.php:106 -msgid "Delete Item" -msgstr "Delete item" - -#: src/Module/Admin/Item/Delete.php:67 -msgid "Delete this Item" -msgstr "Delete" - -#: 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 "Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted." - -#: 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 "You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 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 "GUID of item to be deleted." - -#: src/Module/Admin/Item/Source.php:57 src/Module/BaseAdmin.php:116 -msgid "Item Source" -msgstr "Item source" - -#: src/Module/Admin/Item/Source.php:58 -msgid "Item Guid" -msgstr "Item Guid" - -#: src/Module/Admin/Item/Source.php:63 -msgid "Item Id" -msgstr "" - -#: src/Module/Admin/Item/Source.php:64 -msgid "Item URI" -msgstr "" - -#: src/Module/Admin/Item/Source.php:66 -msgid "Terms" -msgstr "" - -#: src/Module/Admin/Item/Source.php:67 -msgid "Tag" -msgstr "" - -#: 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 "Type" - -#: src/Module/Admin/Item/Source.php:69 -msgid "Term" -msgstr "" - -#: src/Module/Admin/Item/Source.php:70 -msgid "URL" -msgstr "" - -#: src/Module/Admin/Item/Source.php:71 -msgid "Mention" -msgstr "" - -#: src/Module/Admin/Item/Source.php:72 -msgid "Implicit Mention" -msgstr "" - -#: src/Module/Admin/Item/Source.php:73 src/Module/Admin/Logs/View.php:98 -#: src/Module/Debug/ActivityPubConversion.php:62 -msgid "Source" -msgstr "" - -#: src/Module/Admin/Logs/Settings.php:48 +#: src/Module/Admin/Logs/Settings.php:47 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "The logfile '%s' is not writeable. No logging possible" -#: src/Module/Admin/Logs/Settings.php:72 +#: src/Module/Admin/Logs/Settings.php:77 msgid "PHP log currently enabled." msgstr "PHP log currently enabled." -#: src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/Settings.php:79 msgid "PHP log currently disabled." msgstr "PHP log currently disabled." -#: src/Module/Admin/Logs/Settings.php:81 src/Module/BaseAdmin.php:108 -#: src/Module/BaseAdmin.php:109 +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 msgid "Logs" msgstr "Logs" -#: src/Module/Admin/Logs/Settings.php:83 +#: src/Module/Admin/Logs/Settings.php:88 msgid "Clear" msgstr "Clear" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:91 msgid "Enable Debugging" msgstr "Enable debugging" -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:92 msgid "Log file" msgstr "Log file" -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:92 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Must be writable by web server and relative to your Friendica top-level directory." -#: src/Module/Admin/Logs/Settings.php:89 +#: src/Module/Admin/Logs/Settings.php:93 msgid "Log level" msgstr "Log level" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:95 msgid "PHP logging" msgstr "PHP logging" -#: src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:96 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 " @@ -5227,7 +4198,7 @@ msgid "" "is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:110 +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 msgid "View Logs" msgstr "View logs" @@ -5236,7 +4207,7 @@ msgid "Search in logs" msgstr "" #: src/Module/Admin/Logs/View.php:88 -#: src/Module/Notifications/Notifications.php:126 +#: src/Module/Notifications/Notifications.php:140 msgid "Show all" msgstr "Show all" @@ -5264,10 +4235,19 @@ msgstr "" msgid "Click to view details" msgstr "" +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Event details" + #: src/Module/Admin/Logs/View.php:97 msgid "Data" msgstr "" +#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Debug/ActivityPubConversion.php:57 +msgid "Source" +msgstr "" + #: src/Module/Admin/Logs/View.php:99 msgid "File" msgstr "" @@ -5324,465 +4304,472 @@ msgstr "" msgid "Job Parameters" msgstr "Job Parameters" +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "Created" + #: src/Module/Admin/Queue.php:79 msgid "Priority" msgstr "Priority" -#: src/Module/Admin/Site.php:70 -msgid "Can not parse base url. Must have at least ://" -msgstr "Can not parse base URL. Must have at least ://" - -#: src/Module/Admin/Site.php:124 -msgid "Relocation started. Could take a while to complete." +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:404 src/Module/Settings/Display.php:139 +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:211 msgid "No special theme for mobile devices" msgstr "No special theme for mobile devices" -#: src/Module/Admin/Site.php:421 src/Module/Settings/Display.php:149 +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:221 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimental)" -#: src/Module/Admin/Site.php:433 -msgid "No community page for local users" -msgstr "No community page for local users" - -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:342 msgid "No community page" msgstr "No community page" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:343 +msgid "No community page for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:344 msgid "Public postings from users of this site" msgstr "Public postings from users of this site" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:345 msgid "Public postings from the federated network" msgstr "Public postings from the federated network" -#: src/Module/Admin/Site.php:437 +#: src/Module/Admin/Site.php:346 msgid "Public postings from local users and the federated network" msgstr "Public postings from local users and the federated network" -#: src/Module/Admin/Site.php:443 +#: src/Module/Admin/Site.php:352 msgid "Multi user instance" msgstr "Multi user instance" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:375 msgid "Closed" msgstr "Closed" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:376 msgid "Requires approval" msgstr "Requires approval" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:377 msgid "Open" msgstr "Open" -#: src/Module/Admin/Site.php:476 src/Module/Install.php:215 -msgid "No SSL policy, links will track page SSL state" -msgstr "No SSL policy, links will track page SSL state" - -#: src/Module/Admin/Site.php:477 src/Module/Install.php:216 -msgid "Force all links to use SSL" -msgstr "Force all links to use SSL" - -#: src/Module/Admin/Site.php:478 src/Module/Install.php:217 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Self-signed certificate, use SSL for local links only (discouraged)" - -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:381 msgid "Don't check" msgstr "Don't check" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:382 msgid "check the stable version" msgstr "check for stable version updates" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:383 msgid "check the development version" msgstr "check for development version updates" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:387 msgid "none" msgstr "none" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:388 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:389 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:500 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Site" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:400 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:402 msgid "Republish users to directory" msgstr "Republish users to directory" -#: src/Module/Admin/Site.php:504 src/Module/Register.php:141 +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 msgid "Registration" msgstr "Join this Friendica Node Today" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:404 msgid "File upload" msgstr "File upload" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:405 msgid "Policies" msgstr "Policies" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "Advanced" + +#: src/Module/Admin/Site.php:407 msgid "Auto Discovered Contact Directory" msgstr "Auto-discovered contact directory" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:408 msgid "Performance" msgstr "Performance" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:409 msgid "Worker" msgstr "Worker" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:410 msgid "Message Relay" msgstr "Message relay" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:411 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:412 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:413 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:516 -msgid "Relocate Instance" -msgstr "Relocate Instance" +#: src/Module/Admin/Site.php:415 +msgid "Relocate Node" +msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:416 msgid "" -"Warning! Advanced function. Could make this server " -"unreachable." -msgstr "Warning! Advanced function. Could make this server unreachable." +"Relocating your node enables you to change the DNS domain of this node and " +"keep all the existing users and posts. This process takes a while and can " +"only be started from the relocate console command like this:" +msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:417 +msgid "(Friendica directory)# bin/console relocate https://newdomain.com" +msgstr "" + +#: src/Module/Admin/Site.php:420 msgid "Site name" msgstr "Site name" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:421 msgid "Sender Email" msgstr "Sender email" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:421 msgid "" "The email address your server shall use to send notification emails from." msgstr "The email address your server shall use to send notification emails from." -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:422 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:422 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:524 +#: src/Module/Admin/Site.php:423 msgid "Banner/Logo" msgstr "Banner/Logo" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:424 msgid "Email Banner/Logo" msgstr "Email Banner/Logo" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:425 msgid "Shortcut icon" msgstr "Shortcut icon" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:425 msgid "Link to an icon that will be used for browsers." msgstr "Link to an icon that will be used for browsers." -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:426 msgid "Touch icon" msgstr "Touch icon" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:426 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Link to an icon that will be used for tablets and mobiles." -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:427 msgid "Additional Info" msgstr "Additional Info" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:427 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "For public servers: You can add additional information here that will be listed at %s/servers." -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:428 msgid "System language" msgstr "System language" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:429 msgid "System theme" msgstr "System theme" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:429 +#, php-format msgid "" -"Default system theme - may be over-ridden by user profiles - Change default theme settings" -msgstr "Default system theme - may be over-ridden by user profiles - Change default theme settings" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:430 msgid "Mobile system theme" msgstr "Mobile system theme" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:430 msgid "Theme for mobile devices" msgstr "Theme for mobile devices" -#: src/Module/Admin/Site.php:532 src/Module/Install.php:225 -msgid "SSL link policy" -msgstr "SSL link policy" - -#: src/Module/Admin/Site.php:532 src/Module/Install.php:227 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determines whether generated links should be forced to use SSL" - -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:431 msgid "Force SSL" msgstr "Force SSL" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:431 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops." -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:432 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:432 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:433 msgid "Single user instance" msgstr "Single user instance" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:433 msgid "Make this instance multi-user or single-user for the named user" msgstr "Make this instance multi-user or single-user for the named user" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:435 msgid "Maximum image size" msgstr "Maximum image size" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:435 +#, php-format msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximum size in bytes of uploaded images. Default is 0, which means no limits." +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:439 msgid "Maximum image length" msgstr "Maximum image length" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:439 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits." -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:440 msgid "JPEG image quality" msgstr "JPEG image quality" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:440 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is the original quality level." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:442 msgid "Register policy" msgstr "Registration policy" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "" + +#: src/Module/Admin/Site.php:444 msgid "Maximum Daily Registrations" msgstr "Maximum daily registrations" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:444 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 "If open registration is permitted, this sets the maximum number of new registrations per day. This setting has no effect for registrations by approval." -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:445 msgid "Register text" msgstr "Registration text" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:445 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Will be displayed prominently on the registration page. You may use BBCode here." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:446 msgid "Forbidden Nicknames" msgstr "Forbidden Nicknames" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:446 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142." -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:447 msgid "Accounts abandoned after x days" msgstr "Accounts abandoned after so many days" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:447 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit." -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:448 msgid "Allowed friend domains" msgstr "Allowed friend domains" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:448 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Leave empty to allow any domains" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:449 msgid "Allowed email domains" msgstr "Allowed email domains" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:449 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 "Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Leave empty to allow any domains" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:450 msgid "No OEmbed rich content" msgstr "No OEmbed rich content" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:450 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "Don't show rich content (e.g. embedded PDF), except from the domains listed below." -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:451 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:451 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:550 +#: src/Module/Admin/Site.php:452 msgid "Block public" msgstr "Block public" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:452 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Block public access to all otherwise public personal pages on this site, except for local users when logged in." -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:453 msgid "Force publish" msgstr "Mandatory directory listing" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:453 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Force all profiles on this site to be listed in the site directory." -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:453 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Enabling this may violate privacy laws like the GDPR" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:454 msgid "Global directory URL" msgstr "Global directory URL" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:454 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "URL to the global directory: If this is not set, the global directory is completely unavailable to the application." -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:455 msgid "Private posts by default for new users" msgstr "Private posts by default for new users" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:455 msgid "" "Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Set default post permissions for all new members to the default privacy group rather than public." +"circle rather than public." +msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:456 msgid "Don't include post content in email notifications" msgstr "Don't include post content in email notifications" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:456 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 "Don't include the content of a post/comment/private message in the email notifications sent from this site, as a privacy measure." -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:457 msgid "Disallow public access to addons listed in the apps menu." msgstr "Disallow public access to addons listed in the apps menu." -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:457 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Checking this box will restrict addons listed in the apps menu to members only." -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:458 msgid "Don't embed private images in posts" msgstr "Don't embed private images in posts" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:458 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 " @@ -5790,11 +4777,11 @@ msgid "" "while." msgstr "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." -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:459 msgid "Explicit Content" msgstr "Explicit Content" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:459 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 " @@ -5803,255 +4790,267 @@ msgid "" "will be shown at the user registration page." msgstr "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." -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:460 msgid "Proxify external content" msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:460 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:461 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:461 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:462 msgid "Allow Users to set remote_self" msgstr "Allow users to set \"Remote self\"" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:462 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 "This allows every user to mark contacts as a \"Remote self\" in the repair contact dialogue. Setting this flag on a contact will mirror every posting of that contact in the users stream." -#: src/Module/Admin/Site.php:561 +#: src/Module/Admin/Site.php:463 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:561 +#: src/Module/Admin/Site.php:463 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:465 msgid "Enable Fullname check" msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:465 msgid "" "Enable check to only allow users to register with a space between the first " "name and the last name in their full name." msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "" + +#: src/Module/Admin/Site.php:467 msgid "Community pages for visitors" msgstr "Community pages for visitors" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:467 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Community pages that should be available for visitors. Local users always see both pages." -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:468 msgid "Posts per user on community page" msgstr "Posts per user on community page" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:468 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "\"Global Community\")" msgstr "Maximum number of posts per user on the community page. (Not valid for \"Global Community\")" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:470 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:470 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:471 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:472 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:472 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:474 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "diaspora* support can't be enabled because Friendica was installed into a sub directory." -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:475 msgid "Enable Diaspora support" msgstr "Enable diaspora* support" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:475 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:476 msgid "Verify SSL" msgstr "Verify SSL" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:476 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 "If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites." -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:477 msgid "Proxy user" msgstr "Proxy user" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:477 +msgid "User name for the proxy server." +msgstr "" + +#: src/Module/Admin/Site.php:478 msgid "Proxy URL" msgstr "Proxy URL" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:478 +msgid "" +"If you want to use a proxy server that Friendica should use to connect to " +"the network, put the URL of the proxy here." +msgstr "" + +#: src/Module/Admin/Site.php:479 msgid "Network timeout" msgstr "Network timeout" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:479 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Value is in seconds. Set to 0 for unlimited (not recommended)." -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:480 msgid "Maximum Load Average" msgstr "Maximum load average" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:480 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "Maximum system load before delivery and poll processes are deferred - default %d." -#: src/Module/Admin/Site.php:578 -msgid "Maximum Load Average (Frontend)" -msgstr "Maximum load average (frontend)" - -#: src/Module/Admin/Site.php:578 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Maximum system load before the frontend quits service (default 50)." - -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:481 msgid "Minimal Memory" msgstr "Minimal memory" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:481 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)." -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:484 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:484 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:485 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:486 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:487 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:587 +#: src/Module/Admin/Site.php:489 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:489 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:491 msgid "Days between requery" msgstr "Days between enquiry" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:491 msgid "Number of days after which a server is requeried for his contacts." msgstr "Number of days after which a server is required check contacts." -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:492 msgid "Discover contacts from other servers" msgstr "Discover contacts from other servers" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:492 msgid "" "Periodically query other servers for contacts. The system queries Friendica," " Mastodon and Hubzilla servers." msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:493 msgid "Search the local directory" msgstr "Search the local directory" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:493 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 "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." -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:495 msgid "Publish server information" msgstr "Publish server information" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:495 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 " @@ -6059,50 +5058,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "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." -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:497 msgid "Check upstream version" msgstr "Check upstream version" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:497 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 "Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview." -#: src/Module/Admin/Site.php:596 +#: src/Module/Admin/Site.php:498 msgid "Suppress Tags" msgstr "Suppress tags" -#: src/Module/Admin/Site.php:596 +#: src/Module/Admin/Site.php:498 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Suppress listed hashtags at the end of posts." -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:499 msgid "Clean database" msgstr "Clean database" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:499 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Remove old remote items, orphaned database records and old content from some other helper tables." -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:500 msgid "Lifespan of remote items" msgstr "Lifespan of remote items" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:500 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 "If 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." -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:501 msgid "Lifespan of unclaimed items" msgstr "Lifespan of unclaimed items" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:501 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -6110,144 +5109,144 @@ msgid "" "items if set to 0." msgstr "If 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." -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:502 msgid "Lifespan of raw conversation data" msgstr "Lifespan of raw conversation data" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:502 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 "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." -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:503 msgid "Maximum numbers of comments per post" msgstr "Maximum numbers of comments per post" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:503 msgid "How much comments should be shown for each post? Default value is 100." msgstr "How many comments should be shown for each post? (Default 100)" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:504 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:504 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:505 msgid "Temp path" msgstr "Temp path" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:505 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Enter a different tmp path, if your system restricts the webserver's access to the system temp path." -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:506 msgid "Only search in tags" msgstr "Only search in tags" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:506 msgid "On large systems the text search can slow down the system extremely." msgstr "On large systems the text search can slow down the system significantly." -#: src/Module/Admin/Site.php:606 -msgid "New base url" -msgstr "New base URL" +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "" -#: src/Module/Admin/Site.php:606 +#: src/Module/Admin/Site.php:507 msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." -msgstr "Change base url for this server. Sends relocate message to all Friendica and diaspora* contacts of all users." +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "" -#: src/Module/Admin/Site.php:608 +#: src/Module/Admin/Site.php:509 msgid "Maximum number of parallel workers" msgstr "Maximum number of parallel workers" -#: src/Module/Admin/Site.php:608 +#: src/Module/Admin/Site.php:509 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d." -#: src/Module/Admin/Site.php:609 +#: src/Module/Admin/Site.php:510 msgid "Enable fastlane" msgstr "Enable fast-lane" -#: src/Module/Admin/Site.php:609 +#: src/Module/Admin/Site.php:510 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." -msgstr "The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority." +msgstr "When enabled, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority." -#: src/Module/Admin/Site.php:611 +#: src/Module/Admin/Site.php:512 msgid "Direct relay transfer" msgstr "Direct relay transfer" -#: src/Module/Admin/Site.php:611 +#: src/Module/Admin/Site.php:512 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Enables direct transfer to other servers without using a relay server." -#: src/Module/Admin/Site.php:612 +#: src/Module/Admin/Site.php:513 msgid "Relay scope" msgstr "Relay scope" -#: src/Module/Admin/Site.php:612 +#: src/Module/Admin/Site.php:513 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 "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." -#: src/Module/Admin/Site.php:612 src/Module/Contact.php:473 -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Disabled" msgstr "Disabled" -#: src/Module/Admin/Site.php:612 +#: src/Module/Admin/Site.php:513 msgid "all" msgstr "all" -#: src/Module/Admin/Site.php:612 +#: src/Module/Admin/Site.php:513 msgid "tags" msgstr "tags" -#: src/Module/Admin/Site.php:613 +#: src/Module/Admin/Site.php:514 msgid "Server tags" msgstr "Server tags" -#: src/Module/Admin/Site.php:613 +#: src/Module/Admin/Site.php:514 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Comma separated list of tags for the \"tags\" subscription." -#: src/Module/Admin/Site.php:614 +#: src/Module/Admin/Site.php:515 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:614 +#: src/Module/Admin/Site.php:515 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:615 +#: src/Module/Admin/Site.php:516 msgid "Allow user tags" msgstr "Allow user tags" -#: src/Module/Admin/Site.php:615 +#: src/Module/Admin/Site.php:516 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "If enabled, the tags from the saved searches will be used for the \"tags\" subscription in addition to the \"relay_server_tags\"." -#: src/Module/Admin/Site.php:618 +#: src/Module/Admin/Site.php:519 msgid "Start Relocation" msgstr "Start relocation" @@ -6261,48 +5260,54 @@ msgstr "" msgid "Storage backend %s error: %s" msgstr "" -#: src/Module/Admin/Storage.php:85 src/Module/Admin/Storage.php:88 +#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 msgid "Invalid storage backend setting value." msgstr "Invalid storage backend settings." -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:139 msgid "Current Storage Backend" msgstr "" -#: src/Module/Admin/Storage.php:141 +#: src/Module/Admin/Storage.php:140 msgid "Storage Configuration" msgstr "" -#: src/Module/Admin/Storage.php:142 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 msgid "Storage" msgstr "" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:143 msgid "Save & Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:144 msgid "Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:145 msgid "Save & Reload" msgstr "" -#: src/Module/Admin/Storage.php:147 +#: src/Module/Admin/Storage.php:146 msgid "This backend doesn't have custom settings" msgstr "" +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "" + #: src/Module/Admin/Storage.php:150 msgid "Database (legacy)" msgstr "Database (legacy)" -#: src/Module/Admin/Summary.php:54 +#: src/Module/Admin/Summary.php:55 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:58 +#: src/Module/Admin/Summary.php:59 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -6313,7 +5318,7 @@ msgid "" " an automatic conversion.
    " msgstr "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.
    " -#: src/Module/Admin/Summary.php:63 +#: src/Module/Admin/Summary.php:64 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -6324,7 +5329,7 @@ msgid "" " installation for an automatic conversion.
    " msgstr "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.
    " -#: src/Module/Admin/Summary.php:73 +#: src/Module/Admin/Summary.php:74 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -6332,39 +5337,46 @@ msgid "" " to %d. See here for more information.
    " msgstr "" -#: src/Module/Admin/Summary.php:83 +#: src/Module/Admin/Summary.php:85 #, 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 "A new Friendica version is available now. Your current version is %1$s, upstream version is %2$s" -#: src/Module/Admin/Summary.php:92 +#: src/Module/Admin/Summary.php:94 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 "The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and check for errors that may appear." -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:98 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 "The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that may appear at the standard output and logfile." -#: src/Module/Admin/Summary.php:101 +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "" + +#: src/Module/Admin/Summary.php:107 msgid "The worker was never executed. Please check your database structure!" msgstr "The worker process has never been executed. Please check your database structure!" -#: src/Module/Admin/Summary.php:103 +#: src/Module/Admin/Summary.php:109 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "The last worker process started at %s UTC. This is more than one hour ago. Please adjust your crontab settings." -#: src/Module/Admin/Summary.php:108 +#: src/Module/Admin/Summary.php:114 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6373,7 +5385,7 @@ msgid "" "help with the transition." msgstr "Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your configuration from .htconfig.php. See the configuration help page for help with the transition." -#: src/Module/Admin/Summary.php:112 +#: src/Module/Admin/Summary.php:118 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6382,7 +5394,7 @@ msgid "" "page for help with the transition." msgstr "Friendica's configuration is now 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." -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:124 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -6390,83 +5402,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%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." -#: src/Module/Admin/Summary.php:136 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "The logfile '%s' is not usable. No logging is possible (error: '%s')." - -#: src/Module/Admin/Summary.php:150 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "The debug logfile '%s' is not usable. No logging is possible (error: '%s')." - -#: src/Module/Admin/Summary.php:166 +#: src/Module/Admin/Summary.php:148 #, 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 "The system.basepath was updated from '%s' to '%s'. Please remove the system.basepath from your db to avoid differences." -#: src/Module/Admin/Summary.php:174 +#: src/Module/Admin/Summary.php:156 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "The current system.basepath '%s' is wrong and the config file '%s' isn't used." -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:164 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "The current system.basepath '%s' is not equal to the config file '%s'. Please fix your configuration." -#: src/Module/Admin/Summary.php:189 -msgid "Normal Account" -msgstr "Standard account" - -#: src/Module/Admin/Summary.php:190 -msgid "Automatic Follower Account" -msgstr "Automatic follower account" - -#: src/Module/Admin/Summary.php:191 -msgid "Public Forum Account" -msgstr "Public forum account" - -#: src/Module/Admin/Summary.php:192 -msgid "Automatic Friend Account" -msgstr "Automatic friend account" - -#: src/Module/Admin/Summary.php:193 -msgid "Blog Account" -msgstr "Blog account" - -#: src/Module/Admin/Summary.php:194 -msgid "Private Forum Account" -msgstr "Private forum account" - -#: src/Module/Admin/Summary.php:214 +#: src/Module/Admin/Summary.php:175 msgid "Message queues" msgstr "Message queues" -#: src/Module/Admin/Summary.php:220 +#: src/Module/Admin/Summary.php:181 msgid "Server Settings" msgstr "Server Settings" -#: src/Module/Admin/Summary.php:236 -msgid "Registered users" -msgstr "Registered users" - -#: src/Module/Admin/Summary.php:238 -msgid "Pending registrations" -msgstr "Pending registrations" - -#: src/Module/Admin/Summary.php:239 +#: src/Module/Admin/Summary.php:199 msgid "Version" msgstr "Version" -#: src/Module/Admin/Summary.php:243 +#: src/Module/Admin/Summary.php:203 msgid "Active addons" msgstr "Active addons" @@ -6490,11 +5459,11 @@ msgid "Screenshot" msgstr "Screenshot" #: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:94 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 msgid "Themes" msgstr "Theme selection" -#: src/Module/Admin/Themes/Embed.php:65 +#: src/Module/Admin/Themes/Embed.php:80 msgid "Unknown theme." msgstr "Unknown theme." @@ -6506,245 +5475,69 @@ msgstr "" msgid "Reload active themes" msgstr "Reload active themes" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:118 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "No themes found on the system. They should be placed in %1$s" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:119 msgid "[Experimental]" msgstr "[Experimental]" -#: src/Module/Admin/Themes/Index.php:121 +#: src/Module/Admin/Themes/Index.php:120 msgid "[Unsupported]" msgstr "[Unsupported]" -#: src/Module/Admin/Tos.php:60 +#: src/Module/Admin/Tos.php:79 msgid "Display Terms of Service" msgstr "Display Terms of Service" -#: src/Module/Admin/Tos.php:60 +#: src/Module/Admin/Tos.php:79 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 "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." -#: src/Module/Admin/Tos.php:61 +#: src/Module/Admin/Tos.php:80 msgid "Display Privacy Statement" msgstr "Display Privacy Statement" -#: src/Module/Admin/Tos.php:61 +#: src/Module/Admin/Tos.php:80 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." +"according e.g. to EU-GDPR." msgstr "Show information needed to operate the node according to EU-GDPR." -#: src/Module/Admin/Tos.php:62 +#: src/Module/Admin/Tos.php:81 msgid "Privacy Statement Preview" msgstr "Privacy Statement Preview" -#: src/Module/Admin/Tos.php:64 +#: src/Module/Admin/Tos.php:83 msgid "The Terms of Service" msgstr "Terms of Service" -#: src/Module/Admin/Tos.php:64 +#: src/Module/Admin/Tos.php:83 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] or lower." -#: 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 user blocked" -msgstr[1] "%s users blocked" - -#: 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 "You can't remove yourself" - -#: 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 user deleted" -msgstr[1] "%s users deleted" - -#: 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 "User \"%s\" deleted" - -#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103 -#, php-format -msgid "User \"%s\" blocked" -msgstr "User \"%s\" blocked" - -#: 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 "Registration date" - -#: 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 "Last login" - -#: 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 "Last public item" - -#: src/Module/Admin/Users/Active.php:137 -msgid "Active Accounts" +#: src/Module/Admin/Tos.php:84 +msgid "The rules" msgstr "" -#: 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 "User blocked" - -#: 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 "Site admin" - -#: 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 "Account expired" - -#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161 -msgid "Create a new user" +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." msgstr "" -#: 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 "Selected users will be deleted!\\n\\nEverything these users has posted on this site will be permanently deleted!\\n\\nAre you sure?" - -#: 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 "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?" - -#: src/Module/Admin/Users/Blocked.php:46 src/Module/Admin/Users/Index.php:52 +#: src/Module/Api/ApiResponse.php:293 #, php-format -msgid "%s user unblocked" -msgid_plural "%s users unblocked" -msgstr[0] "%s user unblocked" -msgstr[1] "%s users unblocked" - -#: src/Module/Admin/Users/Blocked.php:96 src/Module/Admin/Users/Index.php:109 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "User \"%s\" unblocked" - -#: src/Module/Admin/Users/Blocked.php:138 -msgid "Blocked Users" +msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Admin/Users/Create.php:62 -msgid "New User" -msgstr "New user" - -#: src/Module/Admin/Users/Create.php:63 -msgid "Add User" -msgstr "Add user" - -#: src/Module/Admin/Users/Create.php:71 -msgid "Name of the new user." -msgstr "Name of the new user." - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname" -msgstr "Nickname" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname of the new user." -msgstr "Nickname of the new user." - -#: src/Module/Admin/Users/Create.php:73 -msgid "Email address of the new user." -msgstr "Email address of the new user." - -#: src/Module/Admin/Users/Deleted.php:86 -msgid "Users awaiting permanent deletion" -msgstr "" - -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:162 -msgid "Permanent deletion" -msgstr "Permanent deletion" - -#: src/Module/Admin/Users/Index.php:150 src/Module/Admin/Users/Index.php:160 -#: src/Module/BaseAdmin.php:92 -msgid "Users" -msgstr "Users" - -#: src/Module/Admin/Users/Index.php:152 -msgid "User waiting for permanent deletion" -msgstr "User awaiting permanent deletion" - -#: src/Module/Admin/Users/Pending.php:48 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "%s user approved" -msgstr[1] "%s users approved" - -#: src/Module/Admin/Users/Pending.php:55 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "%s registration revoked" -msgstr[1] "%s registrations revoked" - -#: src/Module/Admin/Users/Pending.php:81 -msgid "Account approved." -msgstr "Account approved." - -#: src/Module/Admin/Users/Pending.php:87 -msgid "Registration revoked" -msgstr "Registration revoked" - -#: src/Module/Admin/Users/Pending.php:102 -msgid "User registrations awaiting review" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:104 -msgid "Request date" -msgstr "Request date" - -#: src/Module/Admin/Users/Pending.php:105 -msgid "No registrations." -msgstr "No registrations." - -#: src/Module/Admin/Users/Pending.php:106 -msgid "Note from the user" -msgstr "Note from the user" - -#: src/Module/Admin/Users/Pending.php:108 -msgid "Deny" -msgstr "Deny" - -#: src/Module/Api/Mastodon/Apps.php:58 +#: src/Module/Api/Mastodon/Apps.php:73 msgid "Missing parameters" msgstr "" @@ -6752,16 +5545,11 @@ msgstr "" msgid "Only starting posts can be bookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Mute.php:50 +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 msgid "Only starting posts can be muted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Pin.php:50 -#: src/Module/Api/Mastodon/Statuses/Unpin.php:50 -msgid "Only starting posts can be pinned" -msgstr "" - -#: src/Module/Api/Mastodon/Statuses/Reblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 #, php-format msgid "Posts from %s can't be shared" msgstr "" @@ -6770,29 +5558,24 @@ msgstr "" msgid "Only starting posts can be unbookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:50 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 msgid "Only starting posts can be unmuted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 #, php-format msgid "Posts from %s can't be unshared" msgstr "" -#: src/Module/Api/Twitter/ContactEndpoint.php:63 src/Module/Contact.php:343 -#: src/Module/Contact.php:358 +#: src/Module/Api/Twitter/ContactEndpoint.php:66 msgid "Contact not found" msgstr "Contact not found" -#: src/Module/Api/Twitter/ContactEndpoint.php:133 -msgid "Profile not found" -msgstr "" - -#: src/Module/Apps.php:47 +#: src/Module/Apps.php:62 msgid "No installed applications." msgstr "No installed applications." -#: src/Module/Apps.php:52 +#: src/Module/Apps.php:67 msgid "Applications" msgstr "Applications" @@ -6801,6 +5584,7 @@ msgid "Item was not found." msgstr "Item was not found." #: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 msgid "Please login to continue." msgstr "Please login to continue." @@ -6814,149 +5598,218 @@ msgid "" " as the main account." msgstr "" -#: src/Module/BaseAdmin.php:86 +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 msgid "Overview" msgstr "Overview" -#: src/Module/BaseAdmin.php:89 +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 msgid "Configuration" msgstr "Configuration" -#: src/Module/BaseAdmin.php:95 src/Module/BaseSettings.php:65 +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 msgid "Additional features" msgstr "Additional features" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:97 msgid "Database" msgstr "Database" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:98 msgid "DB updates" msgstr "DB updates" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:99 msgid "Inspect Deferred Workers" msgstr "Inspect deferred workers" -#: src/Module/BaseAdmin.php:101 +#: src/Module/BaseAdmin.php:100 msgid "Inspect worker Queue" msgstr "Inspect worker queue" -#: src/Module/BaseAdmin.php:103 -msgid "Tools" -msgstr "Tools" - -#: src/Module/BaseAdmin.php:104 -msgid "Contact Blocklist" -msgstr "Contact block-list" - -#: src/Module/BaseAdmin.php:105 -msgid "Server Blocklist" -msgstr "Server block-list" - -#: src/Module/BaseAdmin.php:112 +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 msgid "Diagnostics" msgstr "Diagnostics" -#: src/Module/BaseAdmin.php:113 +#: src/Module/BaseAdmin.php:107 msgid "PHP Info" msgstr "PHP info" -#: src/Module/BaseAdmin.php:114 +#: src/Module/BaseAdmin.php:108 msgid "probe address" msgstr "Probe address" -#: src/Module/BaseAdmin.php:115 +#: src/Module/BaseAdmin.php:109 msgid "check webfinger" msgstr "Check WebFinger" -#: src/Module/BaseAdmin.php:117 +#: src/Module/BaseAdmin.php:110 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:118 src/Module/Debug/ActivityPubConversion.php:138 +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 msgid "ActivityPub Conversion" msgstr "" -#: src/Module/BaseAdmin.php:127 +#: src/Module/BaseAdmin.php:120 msgid "Addon Features" msgstr "Addon features" -#: src/Module/BaseAdmin.php:128 +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 msgid "User registrations waiting for confirmation" msgstr "User registrations awaiting confirmation" -#: src/Module/BaseApi.php:120 -#, php-format -msgid "API endpoint %s %s is not implemented" -msgstr "" - -#: src/Module/BaseApi.php:121 -msgid "" -"The API endpoint is currently not implemented but might be in the future." -msgstr "" - -#: src/Module/BaseApi.php:293 src/Module/BaseApi.php:309 -#: src/Module/BaseApi.php:325 +#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 +#: src/Module/BaseApi.php:487 msgid "Too Many Requests" msgstr "" -#: src/Module/BaseProfile.php:51 src/Module/Contact.php:849 +#: src/Module/BaseApi.php:456 +#, 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] "Daily posting limit of %d post reached. The post was rejected." +msgstr[1] "Daily posting limit of %d posts are reached. This post was rejected." + +#: src/Module/BaseApi.php:472 +#, 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] "Weekly posting limit of %d post reached. The post was rejected." +msgstr[1] "Weekly posting limit of %d posts are reached. This post was rejected." + +#: src/Module/BaseApi.php:488 +#, php-format +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Monthly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "" + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "" + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Users" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "Tools" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "Contact block-list" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "Server block-list" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "Delete item" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "Item source" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 msgid "Profile Details" msgstr "Profile Details" -#: src/Module/BaseProfile.php:109 +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "" + +#: src/Module/BaseProfile.php:111 msgid "Only You Can See This" msgstr "Only you can see this." -#: src/Module/BaseProfile.php:114 src/Module/Profile/Schedule.php:82 +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 msgid "Scheduled Posts" msgstr "" -#: src/Module/BaseProfile.php:117 +#: src/Module/BaseProfile.php:119 msgid "Posts that are scheduled for publishing" msgstr "" -#: src/Module/BaseProfile.php:136 src/Module/BaseProfile.php:139 +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 msgid "Tips for New Members" msgstr "Tips for New Members" -#: src/Module/BaseSearch.php:69 +#: src/Module/BaseSearch.php:71 #, php-format msgid "People Search - %s" msgstr "People search - %s" -#: src/Module/BaseSearch.php:79 +#: src/Module/BaseSearch.php:75 #, php-format -msgid "Forum Search - %s" -msgstr "Forum search - %s" +msgid "Group Search - %s" +msgstr "" -#: src/Module/BaseSettings.php:43 +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "No matches" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseSettings.php:78 msgid "Account" msgstr "Account" -#: src/Module/BaseSettings.php:50 src/Module/Security/TwoFactor/Verify.php:95 -#: src/Module/Settings/TwoFactor/Index.php:110 +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 msgid "Two-factor authentication" msgstr "Two-factor authentication" -#: src/Module/BaseSettings.php:73 +#: src/Module/BaseSettings.php:118 msgid "Display" msgstr "Display" -#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:171 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "Social networks" + +#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 msgid "Manage Accounts" msgstr "Manage Accounts" -#: src/Module/BaseSettings.php:101 +#: src/Module/BaseSettings.php:153 msgid "Connected apps" msgstr "Connected apps" -#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:76 +#: src/Module/BaseSettings.php:160 +msgid "Remote servers" +msgstr "" + +#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 msgid "Export personal data" msgstr "Export personal data" -#: src/Module/BaseSettings.php:115 +#: src/Module/BaseSettings.php:174 msgid "Remove account" msgstr "Remove account" @@ -6968,626 +5821,965 @@ msgstr "This page is missing a URL parameter." msgid "The post was created" msgstr "The post was created" -#: src/Module/Contact.php:93 +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "" + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "Failed to remove event" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "Event cannot end before it has started." + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "Event title and starting time are required." + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "Starting date and title are required." + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "Event starts:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/Channels.php:130 src/Module/Settings/Channels.php:146 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Required" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "Finish date/time is not known or not relevant" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "Event finishes:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Share this event" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "Basic" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "This calendar format is not supported" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "No exportable data found" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "calendar" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Events" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "View" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Create new event" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:291 +msgid "list" +msgstr "List" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "" + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "" + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "" + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "" + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "Contact not found." + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "Invalid contact." + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "Contact is deleted." + +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "" + +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "" + +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "" + +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "" + +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "Bad request." + +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "" + +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "Filter" + +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "" + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "" + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "Members" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "Click on a contact to add or remove it." + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "" + +#: src/Module/Contact.php:97 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "%d contact edited." msgstr[1] "%d contacts edited." -#: src/Module/Contact.php:118 -msgid "Could not access contact record." -msgstr "Could not access contact record." - -#: src/Module/Contact.php:154 -msgid "Failed to update contact record." -msgstr "Failed to update contact record." - -#: src/Module/Contact.php:375 -msgid "You can't block yourself" -msgstr "" - -#: src/Module/Contact.php:381 -msgid "Contact has been blocked" -msgstr "Contact has been blocked" - -#: src/Module/Contact.php:381 -msgid "Contact has been unblocked" -msgstr "Contact has been unblocked" - -#: src/Module/Contact.php:389 -msgid "You can't ignore yourself" -msgstr "" - -#: src/Module/Contact.php:395 -msgid "Contact has been ignored" -msgstr "Contact has been ignored" - -#: src/Module/Contact.php:395 -msgid "Contact has been unignored" -msgstr "Contact has been unignored" - -#: src/Module/Contact.php:415 -#, php-format -msgid "You are mutual friends with %s" -msgstr "You are mutual friends with %s" - -#: src/Module/Contact.php:419 -#, php-format -msgid "You are sharing with %s" -msgstr "You are sharing with %s" - -#: src/Module/Contact.php:423 -#, php-format -msgid "%s is sharing with you" -msgstr "%s is sharing with you" - -#: src/Module/Contact.php:447 -msgid "Private communications are not available for this contact." -msgstr "Private communications are not available for this contact." - -#: src/Module/Contact.php:449 -msgid "Never" -msgstr "Never" - -#: src/Module/Contact.php:452 -msgid "(Update was not successful)" -msgstr "(Update was not successful)" - -#: src/Module/Contact.php:452 -msgid "(Update was successful)" -msgstr "(Update was successful)" - -#: src/Module/Contact.php:454 src/Module/Contact.php:1035 -msgid "Suggest friends" -msgstr "Suggest friends" - -#: src/Module/Contact.php:458 -#, php-format -msgid "Network type: %s" -msgstr "Network type: %s" - -#: src/Module/Contact.php:463 -msgid "Communications lost with this contact!" -msgstr "Communications lost with this contact!" - -#: src/Module/Contact.php:469 -msgid "Fetch further information for feeds" -msgstr "Fetch further information for feeds" - -#: src/Module/Contact.php:471 -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 "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." - -#: src/Module/Contact.php:474 -msgid "Fetch information" -msgstr "Fetch information" - -#: src/Module/Contact.php:475 -msgid "Fetch keywords" -msgstr "Fetch keywords" - -#: src/Module/Contact.php:476 -msgid "Fetch information and keywords" -msgstr "Fetch information and keywords" - -#: src/Module/Contact.php:488 src/Module/Contact.php:492 -#: src/Module/Contact.php:495 src/Module/Contact.php:499 -msgid "No mirroring" -msgstr "No mirroring" - -#: src/Module/Contact.php:489 -msgid "Mirror as forwarded posting" -msgstr "Mirror as forwarded posting" - -#: src/Module/Contact.php:490 src/Module/Contact.php:496 -#: src/Module/Contact.php:500 -msgid "Mirror as my own posting" -msgstr "Mirror as my own posting" - -#: src/Module/Contact.php:493 src/Module/Contact.php:497 -msgid "Native reshare" -msgstr "" - -#: src/Module/Contact.php:512 -msgid "Contact Information / Notes" -msgstr "Personal note" - -#: src/Module/Contact.php:513 -msgid "Contact Settings" -msgstr "Notification and privacy " - -#: src/Module/Contact.php:521 -msgid "Contact" -msgstr "Contact" - -#: src/Module/Contact.php:525 -msgid "Their personal note" -msgstr "Their personal note" - -#: src/Module/Contact.php:527 -msgid "Edit contact notes" -msgstr "Edit contact notes" - -#: src/Module/Contact.php:530 src/Module/Contact.php:1001 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visit %s's profile [%s]" - -#: src/Module/Contact.php:531 -msgid "Block/Unblock contact" -msgstr "Block/Unblock contact" - -#: src/Module/Contact.php:532 -msgid "Ignore contact" -msgstr "Ignore contact" - -#: src/Module/Contact.php:533 -msgid "View conversations" -msgstr "View conversations" - -#: src/Module/Contact.php:538 -msgid "Last update:" -msgstr "Last update:" - -#: src/Module/Contact.php:540 -msgid "Update public posts" -msgstr "Update public posts" - -#: src/Module/Contact.php:542 src/Module/Contact.php:1045 -msgid "Update now" -msgstr "Update now" - -#: src/Module/Contact.php:545 src/Module/Contact.php:788 -#: src/Module/Contact.php:1072 -msgid "Unignore" -msgstr "Unignore" - -#: src/Module/Contact.php:549 -msgid "Currently blocked" -msgstr "Currently blocked" - -#: src/Module/Contact.php:550 -msgid "Currently ignored" -msgstr "Currently ignored" - -#: src/Module/Contact.php:551 -msgid "Currently archived" -msgstr "Currently archived" - -#: src/Module/Contact.php:552 -msgid "Awaiting connection acknowledge" -msgstr "Awaiting connection acknowledgement " - -#: src/Module/Contact.php:553 src/Module/Notifications/Introductions.php:170 -msgid "Hide this contact from others" -msgstr "Hide this contact from others" - -#: src/Module/Contact.php:553 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Replies/Likes to your public posts may still be visible" - -#: src/Module/Contact.php:554 -msgid "Notification for new posts" -msgstr "Notification for new posts" - -#: src/Module/Contact.php:554 -msgid "Send a notification of every new post of this contact" -msgstr "Send notification for every new post from this contact" - -#: src/Module/Contact.php:556 -msgid "Keyword Deny List" -msgstr "" - -#: src/Module/Contact.php:556 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected" - -#: src/Module/Contact.php:574 src/Module/Settings/TwoFactor/Index.php:132 -msgid "Actions" -msgstr "Actions" - -#: src/Module/Contact.php:581 -msgid "Mirror postings from this contact" -msgstr "Mirror postings from this contact:" - -#: src/Module/Contact.php:583 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "This will cause Friendica to repost new entries from this contact." - -#: src/Module/Contact.php:698 +#: src/Module/Contact.php:348 msgid "Show all contacts" msgstr "Show all contacts" -#: src/Module/Contact.php:706 +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "Pending" + +#: src/Module/Contact.php:356 msgid "Only show pending contacts" msgstr "Only show pending contacts" -#: src/Module/Contact.php:714 +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Blocked" + +#: src/Module/Contact.php:364 msgid "Only show blocked contacts" msgstr "Only show blocked contacts" -#: src/Module/Contact.php:719 src/Module/Contact.php:766 -#: src/Object/Post.php:309 +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:369 msgid "Ignored" msgstr "Ignored" -#: src/Module/Contact.php:722 +#: src/Module/Contact.php:372 msgid "Only show ignored contacts" msgstr "Only show ignored contacts" -#: src/Module/Contact.php:727 src/Module/Contact.php:767 +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 msgid "Archived" msgstr "Archived" -#: src/Module/Contact.php:730 +#: src/Module/Contact.php:388 msgid "Only show archived contacts" msgstr "Only show archived contacts" -#: src/Module/Contact.php:735 src/Module/Contact.php:765 +#: src/Module/Contact.php:393 src/Module/Contact.php:438 msgid "Hidden" msgstr "Hidden" -#: src/Module/Contact.php:738 +#: src/Module/Contact.php:396 msgid "Only show hidden contacts" msgstr "Only show hidden contacts" -#: src/Module/Contact.php:746 -msgid "Organize your contact groups" -msgstr "Organise your contact groups" +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "" -#: src/Module/Contact.php:778 +#: src/Module/Contact.php:459 msgid "Search your contacts" msgstr "Search your contacts" -#: src/Module/Contact.php:779 src/Module/Search/Index.php:194 +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 #, php-format msgid "Results for: %s" msgstr "Results for: %s" -#: src/Module/Contact.php:786 +#: src/Module/Contact.php:467 msgid "Update" msgstr "Update" -#: src/Module/Contact.php:790 +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Unblock" + +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 +msgid "Unignore" +msgstr "Unignore" + +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "" + +#: src/Module/Contact.php:472 msgid "Batch Actions" msgstr "Batch actions" -#: src/Module/Contact.php:825 +#: src/Module/Contact.php:515 msgid "Conversations started by this contact" msgstr "Conversations started by this contact" -#: src/Module/Contact.php:830 +#: src/Module/Contact.php:520 msgid "Posts and Comments" msgstr "Posts and Comments" -#: src/Module/Contact.php:841 +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "" + +#: src/Module/Contact.php:531 msgid "Posts containing media objects" msgstr "" -#: src/Module/Contact.php:856 +#: src/Module/Contact.php:539 msgid "View all known contacts" msgstr "" -#: src/Module/Contact.php:866 +#: src/Module/Contact.php:550 msgid "Advanced Contact Settings" msgstr "Advanced contact settings" -#: src/Module/Contact.php:960 +#: src/Module/Contact.php:586 msgid "Mutual Friendship" msgstr "Mutual friendship" -#: src/Module/Contact.php:964 +#: src/Module/Contact.php:590 msgid "is a fan of yours" msgstr "is a fan of yours" -#: src/Module/Contact.php:968 +#: src/Module/Contact.php:594 msgid "you are a fan of" msgstr "I follow them" -#: src/Module/Contact.php:986 +#: src/Module/Contact.php:612 msgid "Pending outgoing contact request" msgstr "Pending outgoing contact request" -#: src/Module/Contact.php:988 +#: src/Module/Contact.php:614 msgid "Pending incoming contact request" msgstr "Pending incoming contact request" -#: src/Module/Contact.php:1055 -msgid "Refetch contact data" -msgstr "Re-fetch contact data." +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visit %s's profile [%s]" -#: src/Module/Contact.php:1066 -msgid "Toggle Blocked status" -msgstr "Toggle blocked status" - -#: src/Module/Contact.php:1074 -msgid "Toggle Ignored status" -msgstr "Toggle ignored status" - -#: src/Module/Contact.php:1081 src/Module/Contact/Revoke.php:96 -msgid "Revoke Follow" -msgstr "" - -#: src/Module/Contact.php:1083 -msgid "Revoke the follow from this contact" -msgstr "" - -#: src/Module/Contact/Advanced.php:93 +#: src/Module/Contact/Advanced.php:99 msgid "Contact update failed." msgstr "Contact update failed." -#: src/Module/Contact/Advanced.php:110 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "Warning: These are highly advanced settings. If you enter incorrect information your communications with this contact may not working." - -#: src/Module/Contact/Advanced.php:111 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Please use your browser 'Back' button now if you are uncertain what to do on this page." - -#: src/Module/Contact/Advanced.php:131 +#: src/Module/Contact/Advanced.php:130 msgid "Return to contact editor" msgstr "Return to contact editor" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Name:" + +#: src/Module/Contact/Advanced.php:135 msgid "Account Nickname" msgstr "Account nickname:" -#: src/Module/Contact/Advanced.php:137 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tag name - overrides name/nickname:" - -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:136 msgid "Account URL" msgstr "Account URL:" -#: src/Module/Contact/Advanced.php:139 -msgid "Account URL Alias" -msgstr "Account URL alias" - -#: src/Module/Contact/Advanced.php:140 -msgid "Friend Request URL" -msgstr "Friend request URL:" - -#: src/Module/Contact/Advanced.php:141 -msgid "Friend Confirm URL" -msgstr "Friend confirm URL:" - -#: src/Module/Contact/Advanced.php:142 -msgid "Notification Endpoint URL" -msgstr "Notification endpoint URL" - -#: src/Module/Contact/Advanced.php:143 +#: src/Module/Contact/Advanced.php:137 msgid "Poll/Feed URL" msgstr "Poll/Feed URL:" -#: src/Module/Contact/Advanced.php:144 +#: src/Module/Contact/Advanced.php:138 msgid "New photo from this URL" msgstr "New photo from this URL:" -#: src/Module/Contact/Contacts.php:31 src/Module/Conversation/Network.php:168 -msgid "Invalid contact." -msgstr "Invalid contact." - -#: src/Module/Contact/Contacts.php:54 +#: src/Module/Contact/Contacts.php:89 msgid "No known contacts." msgstr "" -#: src/Module/Contact/Contacts.php:68 src/Module/Profile/Common.php:98 +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 msgid "No common contacts." msgstr "" -#: src/Module/Contact/Contacts.php:80 src/Module/Profile/Contacts.php:96 +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" msgstr[0] "Follower (%s)" msgstr[1] "Followers (%s)" -#: src/Module/Contact/Contacts.php:84 src/Module/Profile/Contacts.php:99 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" msgstr[0] "Following (%s)" msgstr[1] "Following (%s)" -#: src/Module/Contact/Contacts.php:88 src/Module/Profile/Contacts.php:102 +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" msgstr[0] "Mutual friend (%s)" msgstr[1] "Mutual friends (%s)" -#: src/Module/Contact/Contacts.php:90 src/Module/Profile/Contacts.php:104 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "" -#: src/Module/Contact/Contacts.php:96 src/Module/Profile/Common.php:86 +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:98 src/Module/Profile/Common.php:88 +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "" -#: src/Module/Contact/Contacts.php:104 src/Module/Profile/Contacts.php:110 +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "Contact (%s)" msgstr[1] "Contacts (%s)" -#: src/Module/Contact/Poke.php:116 -msgid "Error while sending poke, please retry." +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:166 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Access denied." + +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Submit request" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "You already added this contact." + +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "The network type couldn't be detected. Contact can't be added." + +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "diaspora* support isn't enabled. Contact can't be added." + +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "OStatus support is disabled. Contact can't be added." + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Please answer the following:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "My identity address:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "Profile URL:" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Tags:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "%s knows you" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Add a personal note:" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" msgstr "" -#: src/Module/Contact/Poke.php:129 src/Module/Search/Acl.php:55 -msgid "You must be logged in to use this module." -msgstr "You must be logged in to use this module." +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "Contact could not be added." -#: src/Module/Contact/Poke.php:152 -msgid "Poke/Prod" -msgstr "Poke/Prod" +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "Invalid request." -#: src/Module/Contact/Poke.php:153 -msgid "poke, prod or do other things to somebody" -msgstr "Poke, prod or do other things to somebody" +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "No keywords to match. Please add keywords to your profile." -#: src/Module/Contact/Poke.php:155 -msgid "Choose what you wish to do to recipient" -msgstr "Choose what you wish to do:" +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "Profile Match" -#: src/Module/Contact/Poke.php:156 -msgid "Make this post private" -msgstr "Make this post private" +#: src/Module/Contact/Profile.php:140 +msgid "Failed to update contact record." +msgstr "Failed to update contact record." -#: src/Module/Contact/Revoke.php:48 +#: src/Module/Contact/Profile.php:190 +msgid "Contact has been unblocked" +msgstr "Contact has been unblocked" + +#: src/Module/Contact/Profile.php:194 +msgid "Contact has been blocked" +msgstr "Contact has been blocked" + +#: src/Module/Contact/Profile.php:206 +msgid "Contact has been unignored" +msgstr "Contact has been unignored" + +#: src/Module/Contact/Profile.php:210 +msgid "Contact has been ignored" +msgstr "Contact has been ignored" + +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:254 +#, php-format +msgid "You are mutual friends with %s" +msgstr "You are mutual friends with %s" + +#: src/Module/Contact/Profile.php:255 +#, php-format +msgid "You are sharing with %s" +msgstr "You are sharing with %s" + +#: src/Module/Contact/Profile.php:256 +#, php-format +msgid "%s is sharing with you" +msgstr "%s is sharing with you" + +#: src/Module/Contact/Profile.php:272 +msgid "Private communications are not available for this contact." +msgstr "Private communications are not available for this contact." + +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "" + +#: src/Module/Contact/Profile.php:285 +msgid "Never" +msgstr "Never" + +#: src/Module/Contact/Profile.php:288 +msgid "(Update was not successful)" +msgstr "(Update was not successful)" + +#: src/Module/Contact/Profile.php:288 +msgid "(Update was successful)" +msgstr "(Update was successful)" + +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 +msgid "Suggest friends" +msgstr "Suggest friends" + +#: src/Module/Contact/Profile.php:294 +#, php-format +msgid "Network type: %s" +msgstr "Network type: %s" + +#: src/Module/Contact/Profile.php:299 +msgid "Communications lost with this contact!" +msgstr "Communications lost with this contact!" + +#: src/Module/Contact/Profile.php:305 +msgid "Fetch further information for feeds" +msgstr "Fetch further information for feeds" + +#: src/Module/Contact/Profile.php:307 +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 "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." + +#: src/Module/Contact/Profile.php:310 +msgid "Fetch information" +msgstr "Fetch information" + +#: src/Module/Contact/Profile.php:311 +msgid "Fetch keywords" +msgstr "Fetch keywords" + +#: src/Module/Contact/Profile.php:312 +msgid "Fetch information and keywords" +msgstr "Fetch information and keywords" + +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 +msgid "No mirroring" +msgstr "No mirroring" + +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 +msgid "Mirror as my own posting" +msgstr "Mirror as my own posting" + +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 +msgid "Native reshare" +msgstr "" + +#: src/Module/Contact/Profile.php:353 +msgid "Contact Information / Notes" +msgstr "Personal note" + +#: src/Module/Contact/Profile.php:354 +msgid "Contact Settings" +msgstr "Notification and privacy " + +#: src/Module/Contact/Profile.php:362 +msgid "Contact" +msgstr "Contact" + +#: src/Module/Contact/Profile.php:366 +msgid "Their personal note" +msgstr "Their personal note" + +#: src/Module/Contact/Profile.php:368 +msgid "Edit contact notes" +msgstr "Edit contact notes" + +#: src/Module/Contact/Profile.php:372 +msgid "Block/Unblock contact" +msgstr "Block/Unblock contact" + +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 +msgid "Ignore contact" +msgstr "Ignore contact" + +#: src/Module/Contact/Profile.php:374 +msgid "View conversations" +msgstr "View conversations" + +#: src/Module/Contact/Profile.php:379 +msgid "Last update:" +msgstr "Last update:" + +#: src/Module/Contact/Profile.php:381 +msgid "Update public posts" +msgstr "Update public posts" + +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 +msgid "Update now" +msgstr "Update now" + +#: src/Module/Contact/Profile.php:385 +msgid "Awaiting connection acknowledge" +msgstr "Awaiting connection acknowledgement " + +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "Currently blocked" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "Currently ignored" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "Currently archived" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "" + +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 +msgid "Hide this contact from others" +msgstr "Hide this contact from others" + +#: src/Module/Contact/Profile.php:394 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Replies/Likes to your public posts may still be visible" + +#: src/Module/Contact/Profile.php:395 +msgid "Notification for new posts" +msgstr "Notification for new posts" + +#: src/Module/Contact/Profile.php:395 +msgid "Send a notification of every new post of this contact" +msgstr "Send notification for every new post from this contact" + +#: src/Module/Contact/Profile.php:397 +msgid "Keyword Deny List" +msgstr "" + +#: src/Module/Contact/Profile.php:397 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected" + +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:139 +msgid "Actions" +msgstr "Actions" + +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "Status" + +#: src/Module/Contact/Profile.php:423 +msgid "Mirror postings from this contact" +msgstr "Mirror postings from this contact:" + +#: src/Module/Contact/Profile.php:425 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "This will cause Friendica to repost new entries from this contact." + +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" +msgstr "" + +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "" + +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "" + +#: src/Module/Contact/Profile.php:502 +msgid "Refetch contact data" +msgstr "Re-fetch contact data." + +#: src/Module/Contact/Profile.php:513 +msgid "Toggle Blocked status" +msgstr "Toggle blocked status" + +#: src/Module/Contact/Profile.php:521 +msgid "Toggle Ignored status" +msgstr "Toggle ignored status" + +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" +msgstr "" + +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 +msgid "Revoke Follow" +msgstr "" + +#: src/Module/Contact/Profile.php:538 +msgid "Revoke the follow from this contact" +msgstr "" + +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "Bad Request." + +#: src/Module/Contact/Revoke.php:63 msgid "Unknown contact." msgstr "" -#: src/Module/Contact/Revoke.php:58 src/Module/Group.php:109 -msgid "Contact is deleted." -msgstr "Contact is deleted." - -#: src/Module/Contact/Revoke.php:62 +#: src/Module/Contact/Revoke.php:77 msgid "Contact is being deleted." msgstr "" -#: src/Module/Contact/Revoke.php:76 +#: src/Module/Contact/Revoke.php:91 msgid "Follow was successfully revoked." msgstr "" -#: src/Module/Contact/Revoke.php:78 -msgid "" -"Follow was successfully revoked, however the remote contact won't be aware " -"of this revokation." -msgstr "" - -#: src/Module/Contact/Revoke.php:80 -msgid "" -"Unable to revoke follow, please try again later or contact the " -"administrator." -msgstr "" - -#: src/Module/Contact/Revoke.php:97 +#: src/Module/Contact/Revoke.php:107 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "" -#: src/Module/Contact/Revoke.php:98 -#: src/Module/Notifications/Introductions.php:122 -#: src/Module/OAuth/Acknowledge.php:47 src/Module/Register.php:117 +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "Yes" msgstr "Yes" -#: src/Module/Conversation/Community.php:68 -msgid "Local Community" -msgstr "Local community" +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No suggestions available. If this is a new site, please try again in 24 hours." -#: src/Module/Conversation/Community.php:71 -msgid "Posts from local users on this server" -msgstr "Posts from local users on this server" +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "You aren't following this contact." -#: src/Module/Conversation/Community.php:79 -msgid "Global Community" -msgstr "Global community" +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "Unfollowing is currently not supported by your network." -#: src/Module/Conversation/Community.php:82 -msgid "Posts from users of the whole federated network" -msgstr "Posts from users of the whole federated network" +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "Disconnect/Unfollow" -#: src/Module/Conversation/Community.php:115 -msgid "Own Contacts" -msgstr "" +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "Contact was successfully unfollowed" -#: src/Module/Conversation/Community.php:119 -msgid "Include" -msgstr "" +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "Unable to unfollow this contact, please contact your administrator" -#: src/Module/Conversation/Community.php:120 -msgid "Hide" -msgstr "" - -#: src/Module/Conversation/Community.php:137 src/Module/Search/Index.php:139 -#: src/Module/Search/Index.php:181 +#: src/Module/Conversation/Channel.php:139 +#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 +#: src/Module/Search/Index.php:194 msgid "No results." msgstr "No results." -#: src/Module/Conversation/Community.php:162 +#: src/Module/Conversation/Channel.php:177 +msgid "Channel not available." +msgstr "" + +#: src/Module/Conversation/Community.php:92 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users." -#: src/Module/Conversation/Community.php:200 +#: src/Module/Conversation/Community.php:180 msgid "Community option not available." msgstr "Community option not available." -#: src/Module/Conversation/Community.php:216 +#: src/Module/Conversation/Community.php:196 msgid "Not available." msgstr "Not available." -#: src/Module/Conversation/Network.php:154 -msgid "No such group" -msgstr "No such group" +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "" -#: src/Module/Conversation/Network.php:158 +#: src/Module/Conversation/Network.php:222 #, php-format -msgid "Group: %s" -msgstr "Group: %s" - -#: src/Module/Conversation/Network.php:234 -msgid "Latest Activity" -msgstr "Latest activity" - -#: src/Module/Conversation/Network.php:237 -msgid "Sort by latest activity" -msgstr "Sort by latest activity" - -#: src/Module/Conversation/Network.php:242 -msgid "Latest Posts" -msgstr "Latest posts" - -#: src/Module/Conversation/Network.php:245 -msgid "Sort by post received date" -msgstr "Sort by post received date" +msgid "Circle: %s" +msgstr "" #: src/Module/Conversation/Network.php:250 -#: src/Module/Settings/Profile/Index.php:228 -msgid "Personal" -msgstr "Personal" +#, php-format +msgid "Error %d (%s) while fetching the timeline." +msgstr "" -#: src/Module/Conversation/Network.php:253 -msgid "Posts that mention or involve you" -msgstr "Posts mentioning or involving me" +#: src/Module/Conversation/Network.php:329 +msgid "Network feed not available." +msgstr "" -#: src/Module/Conversation/Network.php:258 src/Object/Post.php:321 -msgid "Starred" -msgstr "Starred" +#: src/Module/Conversation/Timeline.php:162 +msgid "Own Contacts" +msgstr "" -#: src/Module/Conversation/Network.php:261 -msgid "Favourite Posts" -msgstr "My favourite posts" +#: src/Module/Conversation/Timeline.php:166 +msgid "Include" +msgstr "" + +#: src/Module/Conversation/Timeline.php:167 +msgid "Hide" +msgstr "" #: src/Module/Credits.php:44 msgid "Credits" @@ -7600,23 +6792,31 @@ msgid "" "code or the translation of Friendica. Thank you all!" msgstr "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!" -#: src/Module/Debug/ActivityPubConversion.php:58 +#: src/Module/Debug/ActivityPubConversion.php:53 msgid "Formatted" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:70 +#: src/Module/Debug/ActivityPubConversion.php:65 msgid "Activity" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:118 +#: src/Module/Debug/ActivityPubConversion.php:117 msgid "Object data" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:125 +#: src/Module/Debug/ActivityPubConversion.php:124 msgid "Result Item" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:139 +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Error" +msgstr[1] "Errors" + +#: src/Module/Debug/ActivityPubConversion.php:138 msgid "Source activity" msgstr "" @@ -7796,12 +6996,12 @@ msgstr "HTML" 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:142 +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:177 msgid "You must be logged in to use this module" msgstr "You must be logged in to use this module" -#: src/Module/Debug/Feed.php:63 +#: src/Module/Debug/Feed.php:77 msgid "Source URL" msgstr "Source URL" @@ -7838,382 +7038,284 @@ msgstr "Please select your time zone:" msgid "Only logged in users are permitted to perform a probing." msgstr "Only logged in users are permitted to perform a probing." -#: src/Module/Debug/Probe.php:54 +#: src/Module/Debug/Probe.php:52 msgid "Probe Diagnostic" msgstr "" -#: src/Module/Debug/Probe.php:55 +#: src/Module/Debug/Probe.php:53 msgid "Output" msgstr "" -#: src/Module/Debug/Probe.php:58 +#: src/Module/Debug/Probe.php:56 msgid "Lookup address" msgstr "Lookup address" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:50 msgid "Webfinger Diagnostic" msgstr "" -#: src/Module/Debug/WebFinger.php:54 +#: src/Module/Debug/WebFinger.php:52 msgid "Lookup address:" msgstr "" -#: src/Module/Delegation.php:142 -msgid "Switch between your accounts" -msgstr "" - -#: src/Module/Delegation.php:143 -msgid "Manage your accounts" -msgstr "" - -#: src/Module/Delegation.php:144 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Accounts that I manage or own." - -#: src/Module/Delegation.php:145 -msgid "Select an identity to manage: " -msgstr "Select identity:" - -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:74 msgid "No entries (some entries may be hidden)." msgstr "No entries (entries may be hidden)." -#: src/Module/Directory.php:93 +#: src/Module/Directory.php:90 msgid "Find on this site" msgstr "Find on this site" -#: src/Module/Directory.php:95 +#: src/Module/Directory.php:92 msgid "Results for:" msgstr "Results for:" -#: src/Module/Directory.php:97 +#: src/Module/Directory.php:94 msgid "Site Directory" msgstr "Site directory" -#: src/Module/Filer/RemoveTag.php:68 -msgid "Item was not removed" -msgstr "" - -#: src/Module/Filer/RemoveTag.php:71 +#: src/Module/Filer/RemoveTag.php:105 msgid "Item was not deleted" msgstr "" -#: src/Module/Filer/SaveTag.php:68 +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "" + +#: src/Module/Filer/SaveTag.php:73 msgid "- select -" msgstr "- select -" -#: src/Module/FriendSuggest.php:65 +#: src/Module/FriendSuggest.php:82 msgid "Suggested contact not found." msgstr "Suggested contact not found." -#: src/Module/FriendSuggest.php:83 +#: src/Module/FriendSuggest.php:100 msgid "Friend suggestion sent." msgstr "Friend suggestion sent" -#: src/Module/FriendSuggest.php:120 +#: src/Module/FriendSuggest.php:137 msgid "Suggest Friends" msgstr "Suggest friends" -#: src/Module/FriendSuggest.php:123 +#: src/Module/FriendSuggest.php:140 #, php-format msgid "Suggest a friend for %s" msgstr "Suggest a friend for %s" -#: src/Module/Friendica.php:62 +#: src/Module/Friendica.php:82 msgid "Installed addons/apps:" msgstr "Installed addons/apps:" -#: src/Module/Friendica.php:67 +#: src/Module/Friendica.php:87 msgid "No installed addons/apps" msgstr "No installed addons/apps" -#: src/Module/Friendica.php:72 +#: src/Module/Friendica.php:92 #, php-format msgid "Read about the Terms of Service of this node." msgstr "Read about the Terms of Service of this node." -#: src/Module/Friendica.php:79 +#: src/Module/Friendica.php:99 msgid "On this server the following remote servers are blocked." msgstr "On this server the following remote servers are blocked." -#: src/Module/Friendica.php:97 +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +#: src/Module/Settings/Channels.php:164 +msgid "Reason for the block" +msgstr "Reason for the block" + +#: src/Module/Friendica.php:104 +msgid "Download this list in CSV format" +msgstr "" + +#: src/Module/Friendica.php:118 #, 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 "This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s." -#: src/Module/Friendica.php:102 +#: src/Module/Friendica.php:123 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "Please visit Friendi.ca to learn more about the Friendica project." -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:124 msgid "Bug reports and issues: please visit" msgstr "Bug reports and issues: please visit" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:124 msgid "the bugtracker at github" msgstr "the bugtracker at github" -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:125 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -#: src/Module/Group.php:61 -msgid "Could not create group." -msgstr "Could not create group." - -#: src/Module/Group.php:72 src/Module/Group.php:214 src/Module/Group.php:238 -msgid "Group not found." -msgstr "Group not found." - -#: src/Module/Group.php:78 -msgid "Group name was not changed." -msgstr "" - -#: src/Module/Group.php:100 -msgid "Unknown group." -msgstr "Unknown group." - -#: src/Module/Group.php:115 -msgid "Unable to add the contact to the group." -msgstr "Unable to add contact to group." - -#: src/Module/Group.php:118 -msgid "Contact successfully added to group." -msgstr "Contact successfully added to group." - -#: src/Module/Group.php:122 -msgid "Unable to remove the contact from the group." -msgstr "Unable to remove contact from group." - -#: src/Module/Group.php:125 -msgid "Contact successfully removed from group." -msgstr "Contact removed from group." - -#: src/Module/Group.php:128 -msgid "Unknown group command." -msgstr "Unknown group command." - -#: src/Module/Group.php:131 -msgid "Bad request." -msgstr "Bad request." - -#: src/Module/Group.php:170 -msgid "Save Group" -msgstr "Save group" - -#: src/Module/Group.php:171 -msgid "Filter" -msgstr "Filter" - -#: src/Module/Group.php:177 -msgid "Create a group of contacts/friends." -msgstr "Create a group of contacts/friends." - -#: src/Module/Group.php:219 -msgid "Unable to remove group." -msgstr "Unable to remove group." - -#: src/Module/Group.php:270 -msgid "Delete Group" -msgstr "Delete group" - -#: src/Module/Group.php:280 -msgid "Edit Group Name" -msgstr "Edit group name" - -#: src/Module/Group.php:290 -msgid "Members" -msgstr "Members" - -#: src/Module/Group.php:293 -msgid "Group is empty" -msgstr "Group is empty" - -#: src/Module/Group.php:306 -msgid "Remove contact from group" -msgstr "Remove contact from group" - -#: src/Module/Group.php:327 -msgid "Click on a contact to add or remove." -msgstr "Click on a contact to add or remove it." - -#: src/Module/Group.php:341 -msgid "Add contact to group" -msgstr "Add contact to group" - -#: src/Module/HCard.php:46 +#: src/Module/HCard.php:45 msgid "No profile" msgstr "No profile" -#: src/Module/HTTPException/MethodNotAllowed.php:32 +#: src/Module/HTTPException/MethodNotAllowed.php:31 msgid "Method Not Allowed." msgstr "Method not allowed." -#: src/Module/Help.php:62 +#: src/Module/Help.php:60 msgid "Help:" msgstr "Help:" -#: src/Module/Home.php:54 +#: src/Module/Home.php:63 #, php-format msgid "Welcome to %s" msgstr "Welcome to %s" -#: src/Module/Install.php:188 +#: src/Module/Install.php:189 msgid "Friendica Communications Server - Setup" msgstr "Friendica Communications Server - Setup" -#: src/Module/Install.php:199 +#: src/Module/Install.php:200 msgid "System check" msgstr "System check" -#: src/Module/Install.php:201 src/Module/Install.php:258 -#: src/Module/Install.php:341 +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 msgid "Requirement not satisfied" msgstr "" -#: src/Module/Install.php:202 +#: src/Module/Install.php:203 msgid "Optional requirement not satisfied" msgstr "" -#: src/Module/Install.php:203 +#: src/Module/Install.php:204 msgid "OK" msgstr "" #: src/Module/Install.php:208 +msgid "Next" +msgstr "Next" + +#: src/Module/Install.php:209 msgid "Check again" msgstr "Check again" -#: src/Module/Install.php:223 +#: src/Module/Install.php:222 msgid "Base settings" msgstr "Base settings" -#: src/Module/Install.php:230 -msgid "Host name" -msgstr "Host name" - -#: src/Module/Install.php:232 -msgid "" -"Overwrite this field in case the determinated hostname isn't right, " -"otherweise leave it as is." -msgstr "Overwrite this field in case the hostname is incorrect, otherwise leave it as is." - -#: src/Module/Install.php:235 +#: src/Module/Install.php:224 msgid "Base path to installation" msgstr "Base path to installation" -#: src/Module/Install.php:237 +#: src/Module/Install.php:226 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 "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." -#: src/Module/Install.php:240 -msgid "Sub path of the URL" -msgstr "URL Subpath" +#: src/Module/Install.php:229 +msgid "The Friendica system URL" +msgstr "" + +#: src/Module/Install.php:231 +msgid "" +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." +msgstr "" #: 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 "Overwrite this field in case the subpath determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without subpath." - -#: src/Module/Install.php:253 msgid "Database connection" msgstr "Database connection" -#: src/Module/Install.php:254 +#: src/Module/Install.php:243 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "In order to install Friendica we need to know how to connect to your database." -#: src/Module/Install.php:255 +#: src/Module/Install.php:244 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Please contact your hosting provider or site administrator if you have questions about these settings." -#: src/Module/Install.php:256 +#: src/Module/Install.php:245 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "The database you specify below should already exist. If it does not, please create it before continuing." -#: src/Module/Install.php:265 +#: src/Module/Install.php:252 msgid "Database Server Name" msgstr "Database server name" -#: src/Module/Install.php:270 +#: src/Module/Install.php:257 msgid "Database Login Name" msgstr "Database login name" -#: src/Module/Install.php:276 +#: src/Module/Install.php:263 msgid "Database Login Password" msgstr "Database login password" -#: src/Module/Install.php:278 +#: src/Module/Install.php:265 msgid "For security reasons the password must not be empty" msgstr "For security reasons the password must not be empty" -#: src/Module/Install.php:281 +#: src/Module/Install.php:268 msgid "Database Name" msgstr "Database name" -#: src/Module/Install.php:285 src/Module/Install.php:315 +#: src/Module/Install.php:272 src/Module/Install.php:300 msgid "Please select a default timezone for your website" msgstr "Please select a default time zone for your website" -#: src/Module/Install.php:300 +#: src/Module/Install.php:287 msgid "Site settings" msgstr "Site settings" -#: src/Module/Install.php:310 +#: src/Module/Install.php:295 msgid "Site administrator email address" msgstr "Site administrator email address" -#: src/Module/Install.php:312 +#: src/Module/Install.php:297 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Your account email address must match this in order to use the web admin panel." -#: src/Module/Install.php:319 +#: src/Module/Install.php:304 msgid "System Language:" msgstr "System language:" -#: src/Module/Install.php:321 +#: src/Module/Install.php:306 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "Set the default language for your Friendica installation interface and email communication." -#: src/Module/Install.php:333 +#: src/Module/Install.php:318 msgid "Your Friendica site database has been installed." msgstr "Your Friendica site database has been installed." -#: src/Module/Install.php:343 +#: src/Module/Install.php:328 msgid "Installation finished" msgstr "Installation finished" -#: src/Module/Install.php:363 +#: src/Module/Install.php:348 msgid "

    What next

    " msgstr "

    What next

    " -#: src/Module/Install.php:364 +#: src/Module/Install.php:349 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the worker." -#: src/Module/Install.php:367 +#: src/Module/Install.php:352 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -8221,40 +7323,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "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." -#: src/Module/Invite.php:56 +#: src/Module/Invite.php:57 msgid "Total invitation limit exceeded." msgstr "Total invitation limit exceeded" -#: src/Module/Invite.php:81 +#: src/Module/Invite.php:82 #, php-format msgid "%s : Not a valid email address." msgstr "%s : Not a valid email address" -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:108 msgid "Please join us on Friendica" msgstr "Please join us on Friendica." -#: src/Module/Invite.php:116 +#: src/Module/Invite.php:117 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Invitation limit is exceeded. Please contact your site administrator." -#: src/Module/Invite.php:120 +#: src/Module/Invite.php:121 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Message delivery failed" -#: src/Module/Invite.php:124 +#: src/Module/Invite.php:125 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d message sent." msgstr[1] "%d messages sent." -#: src/Module/Invite.php:142 +#: src/Module/Invite.php:143 msgid "You have no more invitations available" msgstr "You have no more invitations available." -#: src/Module/Invite.php:149 +#: src/Module/Invite.php:150 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -8262,14 +7364,14 @@ msgid "" " other social networks." msgstr "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." -#: src/Module/Invite.php:151 +#: src/Module/Invite.php:152 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "To accept this invitation, please sign up at %s or any other public Friendica website." -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:153 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -8278,88 +7380,98 @@ msgid "" "sites you can join." msgstr "Friendica sites are all inter-connect to create a large 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." -#: src/Module/Invite.php:156 +#: src/Module/Invite.php:157 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Our apologies. This system is not currently configured to connect with other public sites or invite members." -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:160 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "Friendica sites are all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. Each site can also connect with many traditional social networks." -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:159 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "To accept this invitation, please visit and register at %s." -#: src/Module/Invite.php:166 +#: src/Module/Invite.php:167 msgid "Send invitations" msgstr "Send invitations" -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:168 msgid "Enter email addresses, one per line:" msgstr "Enter email addresses, one per line:" -#: src/Module/Invite.php:171 +#: src/Module/Invite.php:172 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web." -#: src/Module/Invite.php:173 +#: src/Module/Invite.php:174 msgid "You will need to supply this invitation code: $invite_code" msgstr "You will need to supply this invitation code: $invite_code" -#: src/Module/Invite.php:173 +#: src/Module/Invite.php:174 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Once you have signed up, please connect with me via my profile page at:" -#: src/Module/Invite.php:175 +#: src/Module/Invite.php:176 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca" -#: src/Module/Item/Compose.php:50 +#: src/Module/Item/Compose.php:85 msgid "Please enter a post body." msgstr "Please enter a post body." -#: src/Module/Item/Compose.php:63 +#: src/Module/Item/Compose.php:98 msgid "This feature is only available with the frio theme." msgstr "This feature is only available with the Frio theme." -#: src/Module/Item/Compose.php:90 +#: src/Module/Item/Compose.php:122 msgid "Compose new personal note" msgstr "Compose new personal note" -#: src/Module/Item/Compose.php:99 +#: src/Module/Item/Compose.php:131 msgid "Compose new post" msgstr "Compose new post" -#: src/Module/Item/Compose.php:141 +#: src/Module/Item/Compose.php:187 msgid "Visibility" msgstr "Visibility" -#: src/Module/Item/Compose.php:162 +#: src/Module/Item/Compose.php:203 msgid "Clear the location" msgstr "Clear location" -#: src/Module/Item/Compose.php:163 +#: src/Module/Item/Compose.php:204 msgid "Location services are unavailable on your device" msgstr "Location services are unavailable on your device" -#: src/Module/Item/Compose.php:164 +#: src/Module/Item/Compose.php:205 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "Location services are disabled. Please check the website's permissions on your device" -#: src/Module/Item/Follow.php:52 +#: src/Module/Item/Compose.php:211 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "" + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "The feed for this item is unavailable." + +#: src/Module/Item/Follow.php:51 msgid "Unable to follow this item." msgstr "" @@ -8374,405 +7486,1439 @@ msgid "" "condition should be temporary, please come back in a few minutes." msgstr "" -#: src/Module/Manifest.php:42 +#: src/Module/Manifest.php:40 msgid "A Decentralized Social Network" msgstr "A Decentralized Social Network" -#: src/Module/Notifications/Introductions.php:77 +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Files" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:129 +msgid "Upload" +msgstr "Upload" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Sorry, maybe your upload is bigger than the PHP configuration allows" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "Or did you try to upload an empty file?" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "File exceeds size limit of %s" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "File upload failed." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:69 +msgid "Unable to process image." +msgstr "Unable to process image." + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:96 +msgid "Image upload failed." +msgstr "Image upload failed." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "Standard" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "Soapbox" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "Love-all" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "Personal Page" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "Organisation Page" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "News Page" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "Relay" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s contact unblocked" +msgstr[1] "%s contacts unblocked" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "Remote contact block-list" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "This page allows you to prevent any message from a remote contact to reach your node." + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "Block Remote Contact" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "select all" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "select none" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "No remote contact is blocked from this node." + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "Blocked remote contacts" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "Block new remote contact" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "Photo" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "Reason" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "%s total blocked contact" +msgstr[1] "%s total blocked contacts" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "URL of the remote contact to block." + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "Reason for blocking" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "Server Domain Pattern" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "Block reason" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +#: src/Module/Settings/Channels.php:163 +msgid "Blocked server domain pattern" +msgstr "Blocked server domain pattern" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "Delete server domain pattern" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "Check to delete this entry from the block-list" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "Server domain pattern block-list" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +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 "The list of blocked server domain patterns will be made publicly available on the /friendica page so that your users and people investigating communication problems can find the reason easily." + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "Save changes to the block-list" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "Current entries in the block-list" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "Item marked for deletion." + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "Delete" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted." + +#: src/Module/Moderation/Item/Delete.php:65 +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 "You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 123456." + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "GUID of item to be deleted." + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "Type" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Item not found" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "Item Guid" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "" + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "" + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Standard account" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "Automatic follower account" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Automatic friend account" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Blog account" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Registered users" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Pending registrations" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "%s user blocked" +msgstr[1] "%s users blocked" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "You can't remove yourself" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s user deleted" +msgstr[1] "%s users deleted" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "User \"%s\" deleted" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "User \"%s\" blocked" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Registration date" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "Last login" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "Last public item" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "User blocked" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "Site admin" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "Account expired" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Selected users will be deleted!\\n\\nEverything these users has posted on this site will be permanently deleted!\\n\\nAre you sure?" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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 "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "%s user unblocked" +msgstr[1] "%s users unblocked" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "User \"%s\" unblocked" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "New user" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "Add user" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "Name of the new user." + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "Nickname" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "Nickname of the new user." + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "Email address of the new user." + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "Permanent deletion" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "User awaiting permanent deletion" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "%s user approved" +msgstr[1] "%s users approved" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "%s registration revoked" +msgstr[1] "%s registrations revoked" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Account approved." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "Registration revoked" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Request date" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "No registrations." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "Note from the user" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Deny" + +#: src/Module/Notifications/Introductions.php:99 msgid "Show Ignored Requests" msgstr "Show ignored requests." -#: src/Module/Notifications/Introductions.php:77 +#: src/Module/Notifications/Introductions.php:99 msgid "Hide Ignored Requests" msgstr "Hide ignored requests" -#: src/Module/Notifications/Introductions.php:93 -#: src/Module/Notifications/Introductions.php:156 +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 msgid "Notification type:" msgstr "Notification type:" -#: src/Module/Notifications/Introductions.php:96 +#: src/Module/Notifications/Introductions.php:118 msgid "Suggested by:" msgstr "Suggested by:" -#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:143 msgid "Claims to be known to you: " msgstr "Says they know me:" -#: src/Module/Notifications/Introductions.php:122 -#: src/Module/OAuth/Acknowledge.php:48 src/Module/Register.php:118 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "No" msgstr "No" -#: src/Module/Notifications/Introductions.php:130 +#: src/Module/Notifications/Introductions.php:152 msgid "Shall your connection be bidirectional or not?" msgstr "Shall your connection be in both directions or not?" -#: src/Module/Notifications/Introductions.php:131 +#: src/Module/Notifications/Introductions.php:153 #, 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 "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed." -#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:154 #, 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 "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed." -#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:156 msgid "Friend" msgstr "Friend" -#: src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:157 msgid "Subscriber" msgstr "Subscriber" -#: src/Module/Notifications/Introductions.php:194 +#: src/Module/Notifications/Introductions.php:216 msgid "No introductions." msgstr "No introductions." -#: src/Module/Notifications/Introductions.php:195 -#: src/Module/Notifications/Notifications.php:121 +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 #, php-format msgid "No more %s notifications." msgstr "No more %s notifications." -#: src/Module/Notifications/Notification.php:107 +#: src/Module/Notifications/Notification.php:135 msgid "You must be logged in to show this page." msgstr "You must be logged in to show this page." -#: src/Module/Notifications/Notifications.php:52 +#: src/Module/Notifications/Notifications.php:66 msgid "Network Notifications" msgstr "Network notifications" -#: src/Module/Notifications/Notifications.php:58 +#: src/Module/Notifications/Notifications.php:72 msgid "System Notifications" msgstr "System notifications" -#: src/Module/Notifications/Notifications.php:64 +#: src/Module/Notifications/Notifications.php:78 msgid "Personal Notifications" msgstr "Personal notifications" -#: src/Module/Notifications/Notifications.php:70 +#: src/Module/Notifications/Notifications.php:84 msgid "Home Notifications" msgstr "Home notifications" -#: src/Module/Notifications/Notifications.php:126 +#: src/Module/Notifications/Notifications.php:140 msgid "Show unread" msgstr "Show unread" -#: src/Module/OAuth/Acknowledge.php:44 +#: src/Module/Notifications/Ping.php:246 +msgid "{0} requested registration" +msgstr "{0} requested registration" + +#: src/Module/Notifications/Ping.php:255 +#, php-format +msgid "{0} and %d others requested registration" +msgstr "{0} and %d others requested registration" + +#: src/Module/OAuth/Acknowledge.php:51 msgid "Authorize application connection" msgstr "Authorise application connection" -#: src/Module/OAuth/Acknowledge.php:46 +#: src/Module/OAuth/Acknowledge.php:53 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "Do you want to authorise this application to access your posts and contacts and create new posts for you?" -#: src/Module/OAuth/Authorize.php:55 +#: src/Module/OAuth/Authorize.php:54 msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:60 src/Module/OAuth/Token.php:65 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 msgid "Incomplete request data" msgstr "" -#: src/Module/OAuth/Authorize.php:107 +#: 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:89 +#: src/Module/OAuth/Token.php:83 +msgid "Invalid data or unknown client" +msgstr "" + +#: src/Module/OAuth/Token.php:108 msgid "Unsupported or missing grant type" msgstr "" -#: src/Module/PermissionTooltip.php:25 +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "Resubscribing to OStatus contacts" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "Keep this window open until done." + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "Subscribing to contacts" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "No contact provided." + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "Couldn't fetch information for contact." + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "Couldn't fetch friends for contact." + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "Couldn't fetch following contacts." + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "Couldn't fetch remote profile." + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "Unsupported network" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Done" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "success" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "failed" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "Ignored" + +#: src/Module/PermissionTooltip.php:49 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "" -#: src/Module/PermissionTooltip.php:42 +#: src/Module/PermissionTooltip.php:79 msgid "Model not found" msgstr "" -#: src/Module/PermissionTooltip.php:64 +#: src/Module/PermissionTooltip.php:94 +msgid "Unlisted" +msgstr "" + +#: src/Module/PermissionTooltip.php:112 msgid "Remote privacy information not available." msgstr "Remote privacy information not available." -#: src/Module/PermissionTooltip.php:73 +#: src/Module/PermissionTooltip.php:121 msgid "Visible to:" msgstr "Visible to:" -#: src/Module/Photo.php:123 +#: src/Module/PermissionTooltip.php:204 +#, php-format +msgid "Collection (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:208 +#, php-format +msgid "Followers (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:227 +#, php-format +msgid "%d more" +msgstr "" + +#: src/Module/PermissionTooltip.php:231 +#, php-format +msgid "To: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:234 +#, php-format +msgid "CC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:237 +#, php-format +msgid "BCC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "" + +#: src/Module/Photo.php:130 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:136 +#: src/Module/Photo.php:155 #, php-format msgid "The Photo with id %s is not available." msgstr "The Photo with id %s is not available." -#: src/Module/Photo.php:169 +#: src/Module/Photo.php:192 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:171 +#: src/Module/Photo.php:194 #, php-format msgid "Invalid photo with id %s." msgstr "Invalid photo with id %s." -#: src/Module/Profile/Contacts.php:120 +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "" + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Edit post" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "web link" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Insert video link" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "video link" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Insert audio link" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "audio link" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Remove Item tag" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Select a tag to remove: " + +#: src/Module/Post/Tag/Remove.php:108 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Remove" + +#: src/Module/Profile/Contacts.php:159 msgid "No contacts." msgstr "No contacts." -#: src/Module/Profile/Profile.php:82 +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "%s's timeline" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "%s's posts" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "%s's comments" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:60 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Image exceeds size limit of %s" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "Image upload didn't complete, please try again" + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "Image file is missing" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "Server can't accept new file upload at this time, please contact your administrator" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "Image file is empty." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "View album" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 msgid "Profile not found." msgstr "Profile not found." -#: src/Module/Profile/Profile.php:135 +#: src/Module/Profile/Profile.php:158 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "" -#: src/Module/Profile/Profile.php:149 +#: src/Module/Profile/Profile.php:167 +msgid "Full Name:" +msgstr "Full name:" + +#: src/Module/Profile/Profile.php:172 msgid "Member since:" msgstr "Member since:" -#: src/Module/Profile/Profile.php:155 +#: src/Module/Profile/Profile.php:178 msgid "j F, Y" msgstr "j F, Y" -#: src/Module/Profile/Profile.php:156 +#: src/Module/Profile/Profile.php:179 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 msgid "Birthday:" msgstr "Birthday:" -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:246 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 msgid "Age: " msgstr "Age: " -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:246 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "%d year old" msgstr[1] "%d years old" -#: src/Module/Profile/Profile.php:234 -msgid "Forums:" -msgstr "Forums:" +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "Description:" -#: src/Module/Profile/Profile.php:246 +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "" + +#: src/Module/Profile/Profile.php:273 msgid "View profile as:" msgstr "View profile as:" -#: src/Module/Profile/Profile.php:263 +#: src/Module/Profile/Profile.php:290 msgid "View as" msgstr "" -#: src/Module/Profile/Profile.php:326 src/Module/Profile/Profile.php:329 -#: src/Module/Profile/Status.php:65 src/Module/Profile/Status.php:68 -#: src/Protocol/Feed.php:953 src/Protocol/OStatus.php:1242 -#, php-format -msgid "%s's timeline" -msgstr "%s's timeline" - -#: src/Module/Profile/Profile.php:327 src/Module/Profile/Status.php:66 -#: src/Protocol/Feed.php:957 src/Protocol/OStatus.php:1246 -#, php-format -msgid "%s's posts" -msgstr "%s's posts" - -#: src/Module/Profile/Profile.php:328 src/Module/Profile/Status.php:67 -#: src/Protocol/Feed.php:960 src/Protocol/OStatus.php:1249 -#, php-format -msgid "%s's comments" -msgstr "%s's comments" - -#: src/Module/Profile/Schedule.php:84 -msgid "Scheduled" -msgstr "" - -#: src/Module/Profile/Schedule.php:85 -msgid "Content" -msgstr "" - -#: src/Module/Profile/Schedule.php:86 -msgid "Remove post" -msgstr "" - -#: src/Module/Register.php:71 -msgid "Only parent users can create additional accounts." -msgstr "Only parent users can create additional accounts." - -#: src/Module/Register.php:103 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking \"Register\"." -msgstr "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"." - -#: src/Module/Register.php:104 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items." - -#: src/Module/Register.php:105 -msgid "Your OpenID (optional): " -msgstr "Your OpenID (optional): " - -#: src/Module/Register.php:114 -msgid "Include your profile in member directory?" -msgstr "Include your profile in member directory?" - -#: src/Module/Register.php:137 -msgid "Note for the admin" -msgstr "Note for the admin" - -#: src/Module/Register.php:137 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "Leave a message for the admin, why you want to join this node." - -#: src/Module/Register.php:138 -msgid "Membership on this site is by invitation only." -msgstr "Membership on this site is by invitation only." - -#: src/Module/Register.php:139 -msgid "Your invitation code: " -msgstr "Your invitation code: " - -#: src/Module/Register.php:147 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "Your full name: " - -#: src/Module/Register.php:148 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "Your Email Address: (Initial information will be send there; so this must be an existing address.)" - -#: src/Module/Register.php:149 -msgid "Please repeat your e-mail address:" -msgstr "Please repeat your e-mail address:" - -#: src/Module/Register.php:151 -msgid "Leave empty for an auto generated password." -msgstr "Leave empty for an auto generated password." - -#: src/Module/Register.php:153 -#, 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 "Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"." - -#: src/Module/Register.php:154 -msgid "Choose a nickname: " -msgstr "Choose a nickname: " - -#: src/Module/Register.php:163 -msgid "Import your profile to this friendica instance" -msgstr "Import an existing Friendica profile to this node." - -#: src/Module/Register.php:170 -msgid "Note: This node explicitly contains adult content" -msgstr "Note: This node explicitly contains adult content" - -#: src/Module/Register.php:172 src/Module/Settings/Delegation.php:155 -msgid "Parent Password:" -msgstr "Parent password:" - -#: src/Module/Register.php:172 src/Module/Settings/Delegation.php:155 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "Please enter the password of the parent account to authorise this request." - -#: src/Module/Register.php:201 -msgid "Password doesn't match." -msgstr "Password doesn't match." - -#: src/Module/Register.php:207 -msgid "Please enter your password." -msgstr "Please enter your password." - -#: src/Module/Register.php:249 -msgid "You have entered too much information." -msgstr "You have entered too much information." - -#: src/Module/Register.php:272 -msgid "Please enter the identical mail address in the second field." -msgstr "Please enter the identical mail address in the second field." - -#: src/Module/Register.php:299 -msgid "The additional account was created." -msgstr "The additional account was created." - -#: src/Module/Register.php:324 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registration successful. Please check your email for further instructions." - -#: src/Module/Register.php:328 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
    login: %s
    " -"password: %s

    You can change your password after login." -msgstr "Failed to send email message. Here your account details:
    login: %s
    password: %s

    You can change your password after login." - -#: src/Module/Register.php:334 -msgid "Registration successful." -msgstr "Registration successful." - -#: src/Module/Register.php:339 src/Module/Register.php:346 -msgid "Your registration can not be processed." -msgstr "Your registration cannot be processed." - -#: src/Module/Register.php:345 -msgid "You have to leave a request note for the admin." -msgstr "You have to leave a request note for the admin." - -#: src/Module/Register.php:391 -msgid "Your registration is pending approval by the site owner." -msgstr "Your registration is pending approval by the site administrator." - -#: src/Module/RemoteFollow.php:62 +#: src/Module/Profile/RemoteFollow.php:82 msgid "Profile unavailable." msgstr "Profile unavailable." -#: src/Module/RemoteFollow.php:68 +#: src/Module/Profile/RemoteFollow.php:88 msgid "Invalid locator" msgstr "Invalid locator" -#: src/Module/RemoteFollow.php:75 +#: src/Module/Profile/RemoteFollow.php:95 msgid "The provided profile link doesn't seem to be valid" msgstr "The provided profile link doesn't seem to be valid" -#: src/Module/RemoteFollow.php:80 +#: src/Module/Profile/RemoteFollow.php:100 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "Remote subscription can't be done for your network. Please subscribe directly on your system." -#: src/Module/RemoteFollow.php:110 +#: src/Module/Profile/RemoteFollow.php:128 msgid "Friend/Connection Request" msgstr "Friend/Connection request" -#: src/Module/RemoteFollow.php:111 +#: src/Module/Profile/RemoteFollow.php:129 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -8780,89 +8926,314 @@ msgid "" " or %s directly on your system." msgstr "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." -#: src/Module/RemoteFollow.php:112 +#: src/Module/Profile/RemoteFollow.php:130 #, 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 "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." -#: src/Module/RemoteFollow.php:113 +#: src/Module/Profile/RemoteFollow.php:131 msgid "Your Webfinger address or profile URL:" msgstr "Your WebFinger address or profile URL:" -#: src/Module/Search/Index.php:54 +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "" + +#: src/Module/Profile/Schedule.php:83 +msgid "Scheduled" +msgstr "" + +#: src/Module/Profile/Schedule.php:84 +msgid "Content" +msgstr "" + +#: src/Module/Profile/Schedule.php:85 +msgid "Remove post" +msgstr "" + +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "" + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Unable to check your home location." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "" + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Number of daily wall messages for %s exceeded. Message failed." + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders." + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "" + +#: src/Module/Register.php:84 +msgid "Only parent users can create additional accounts." +msgstr "Only parent users can create additional accounts." + +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow." + +#: src/Module/Register.php:116 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." +msgstr "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"." + +#: src/Module/Register.php:117 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items." + +#: src/Module/Register.php:118 +msgid "Your OpenID (optional): " +msgstr "Your OpenID (optional): " + +#: src/Module/Register.php:127 +msgid "Include your profile in member directory?" +msgstr "Include your profile in member directory?" + +#: src/Module/Register.php:148 +msgid "Note for the admin" +msgstr "Note for the admin" + +#: src/Module/Register.php:148 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Leave a message for the admin, why you want to join this node." + +#: src/Module/Register.php:149 +msgid "Membership on this site is by invitation only." +msgstr "Membership on this site is by invitation only." + +#: src/Module/Register.php:150 +msgid "Your invitation code: " +msgstr "Your invitation code: " + +#: src/Module/Register.php:158 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Your full name: " + +#: src/Module/Register.php:159 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "Your Email Address: (Initial information will be send there; so this must be an existing address.)" + +#: src/Module/Register.php:160 +msgid "Please repeat your e-mail address:" +msgstr "Please repeat your e-mail address:" + +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 +msgid "New Password:" +msgstr "New password:" + +#: src/Module/Register.php:162 +msgid "Leave empty for an auto generated password." +msgstr "Leave empty for an auto generated password." + +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 +msgid "Confirm:" +msgstr "Confirm new password:" + +#: src/Module/Register.php:164 +#, 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 "Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"." + +#: src/Module/Register.php:165 +msgid "Choose a nickname: " +msgstr "Choose a nickname: " + +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Import profile" + +#: src/Module/Register.php:174 +msgid "Import your profile to this friendica instance" +msgstr "Import an existing Friendica profile to this node." + +#: src/Module/Register.php:181 +msgid "Note: This node explicitly contains adult content" +msgstr "Note: This node explicitly contains adult content" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 +msgid "Parent Password:" +msgstr "Parent password:" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "Please enter the password of the parent account to authorise this request." + +#: src/Module/Register.php:212 +msgid "Password doesn't match." +msgstr "Password doesn't match." + +#: src/Module/Register.php:218 +msgid "Please enter your password." +msgstr "Please enter your password." + +#: src/Module/Register.php:260 +msgid "You have entered too much information." +msgstr "You have entered too much information." + +#: src/Module/Register.php:283 +msgid "Please enter the identical mail address in the second field." +msgstr "Please enter the identical mail address in the second field." + +#: src/Module/Register.php:310 +msgid "The additional account was created." +msgstr "The additional account was created." + +#: src/Module/Register.php:335 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registration successful. Please check your email for further instructions." + +#: src/Module/Register.php:342 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "Failed to send email message. Here your account details:
    login: %s
    password: %s

    You can change your password after login." + +#: src/Module/Register.php:348 +msgid "Registration successful." +msgstr "Registration successful." + +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 +msgid "Your registration can not be processed." +msgstr "Your registration cannot be processed." + +#: src/Module/Register.php:363 +msgid "You have to leave a request note for the admin." +msgstr "You have to leave a request note for the admin." + +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "An internal error occurred." + +#: src/Module/Register.php:395 +msgid "Your registration is pending approval by the site owner." +msgstr "Your registration is pending approval by the site administrator." + +#: src/Module/Search/Acl.php:73 +msgid "You must be logged in to use this module." +msgstr "You must be logged in to use this module." + +#: src/Module/Search/Index.php:69 msgid "Only logged in users are permitted to perform a search." msgstr "Only logged in users are permitted to perform a search." -#: src/Module/Search/Index.php:76 +#: src/Module/Search/Index.php:89 msgid "Only one search per minute is permitted for not logged in users." msgstr "Only one search per minute is permitted for not logged in users." -#: src/Module/Search/Index.php:192 +#: src/Module/Search/Index.php:205 #, php-format msgid "Items tagged with: %s" msgstr "Items tagged with: %s" -#: src/Module/Search/Saved.php:45 +#: src/Module/Search/Saved.php:59 msgid "Search term was not saved." msgstr "" -#: src/Module/Search/Saved.php:48 +#: src/Module/Search/Saved.php:62 msgid "Search term already saved." msgstr "Search term already saved." -#: src/Module/Search/Saved.php:54 +#: src/Module/Search/Saved.php:68 msgid "Search term was not removed." msgstr "" -#: src/Module/Security/Login.php:105 +#: src/Module/Security/Login.php:123 msgid "Create a New Account" msgstr "Create a new account" -#: src/Module/Security/Login.php:130 +#: src/Module/Security/Login.php:142 msgid "Your OpenID: " msgstr "Your OpenID: " -#: src/Module/Security/Login.php:133 +#: src/Module/Security/Login.php:145 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "Please enter your username and password to add the OpenID to your existing account." -#: src/Module/Security/Login.php:135 +#: src/Module/Security/Login.php:147 msgid "Or login using OpenID: " msgstr "Or login with OpenID: " -#: src/Module/Security/Login.php:149 +#: src/Module/Security/Login.php:161 msgid "Password: " msgstr "Password: " -#: src/Module/Security/Login.php:150 +#: src/Module/Security/Login.php:162 msgid "Remember me" msgstr "Remember me" -#: src/Module/Security/Login.php:159 +#: src/Module/Security/Login.php:171 msgid "Forgot your password?" msgstr "Forgot your password?" -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:174 msgid "Website Terms of Service" msgstr "Website Terms of Service" -#: src/Module/Security/Login.php:163 +#: src/Module/Security/Login.php:175 msgid "terms of service" msgstr "Terms of service" -#: src/Module/Security/Login.php:165 +#: src/Module/Security/Login.php:177 msgid "Website Privacy Policy" msgstr "Website Privacy Policy" -#: src/Module/Security/Login.php:166 +#: src/Module/Security/Login.php:178 msgid "privacy policy" msgstr "Privacy policy" -#: src/Module/Security/Logout.php:61 +#: src/Module/Security/Logout.php:84 +#: src/Module/Security/TwoFactor/SignOut.php:78 +#: src/Module/Security/TwoFactor/SignOut.php:86 +#: src/Module/Security/TwoFactor/SignOut.php:108 +#: src/Module/Security/TwoFactor/SignOut.php:115 msgid "Logged out." msgstr "Logged out." @@ -8870,450 +9241,1414 @@ msgstr "Logged out." msgid "OpenID protocol error. No ID returned" msgstr "OpenID protocol error. No ID returned" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:90 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "Account not found. Please login to your existing account to add the OpenID." -#: src/Module/Security/OpenID.php:94 +#: src/Module/Security/OpenID.php:92 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "Account not found. Please register a new account or login to your existing account to add the OpenID." -#: src/Module/Security/TwoFactor/Recovery.php:61 +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 +msgid "Passwords do not match." +msgstr "Passwords do not match." + +#: src/Module/Security/PasswordTooLong.php:64 +msgid "Password does not need changing." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 +msgid "Password unchanged." +msgstr "Password unchanged." + +#: src/Module/Security/PasswordTooLong.php:91 +msgid "Password Too Long" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:92 +msgid "" +"Since version 2022.09, we've realized that any password longer than 72 " +"characters is truncated during hashing. To prevent any confusion about this " +"behavior, please update your password to be fewer or equal to 72 characters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:93 +msgid "Update Password" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Current Password:" +msgstr "Current password:" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Your current password to confirm the changes" +msgstr "Current password to confirm change" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces and accentuated letters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 +msgid "Password length is limited to 72 characters." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:74 #, php-format msgid "Remaining recovery codes: %d" msgstr "Remaining recovery codes: %d" -#: src/Module/Security/TwoFactor/Recovery.php:65 -#: src/Module/Security/TwoFactor/Verify.php:76 -#: src/Module/Settings/TwoFactor/Verify.php:82 +#: src/Module/Security/TwoFactor/Recovery.php:80 +#: src/Module/Security/TwoFactor/Verify.php:77 +#: src/Module/Settings/TwoFactor/Verify.php:95 msgid "Invalid code, please retry." msgstr "Invalid code, please try again." -#: src/Module/Security/TwoFactor/Recovery.php:84 +#: src/Module/Security/TwoFactor/Recovery.php:99 msgid "Two-factor recovery" msgstr "Two-factor recovery" -#: src/Module/Security/TwoFactor/Recovery.php:85 +#: src/Module/Security/TwoFactor/Recovery.php:100 msgid "" "

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

    " msgstr "

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

    " -#: src/Module/Security/TwoFactor/Recovery.php:86 -#: src/Module/Security/TwoFactor/Verify.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:101 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Don’t have your phone? Enter a two-factor recovery code" -#: src/Module/Security/TwoFactor/Recovery.php:87 +#: src/Module/Security/TwoFactor/Recovery.php:102 msgid "Please enter a recovery code" msgstr "Please enter a recovery code" -#: src/Module/Security/TwoFactor/Recovery.php:88 +#: src/Module/Security/TwoFactor/Recovery.php:103 msgid "Submit recovery code and complete login" msgstr "Submit recovery code and complete login" -#: src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Security/TwoFactor/SignOut.php:122 +msgid "Sign out of this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:123 +msgid "" +"

    If you trust this browser, you will not be asked for verification code " +"the next time you sign in.

    " +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:124 +msgid "Sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:126 +msgid "Trust and sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:96 +msgid "Couldn't save browser to Cookie." +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:141 +msgid "Trust this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:142 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:143 +msgid "Not now" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:144 +msgid "Don't trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:145 +msgid "Trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:97 msgid "" "

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

    " msgstr "

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

    " #: src/Module/Security/TwoFactor/Verify.php:100 -#: src/Module/Settings/TwoFactor/Verify.php:141 -msgid "Please enter a code from your authentication app" -msgstr "Please enter a code from your authentication app" +#, php-format +msgid "" +"If you do not have access to your authentication code you can use a two-factor recovery code." +msgstr "" #: src/Module/Security/TwoFactor/Verify.php:101 -msgid "This is my two-factor authenticator app device" -msgstr "" +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Please enter a code from your authentication app" +msgstr "Please enter a code from your authentication app" #: src/Module/Security/TwoFactor/Verify.php:102 msgid "Verify code and complete login" msgstr "Verify code and complete login" -#: src/Module/Settings/Delegation.php:53 +#: src/Module/Settings/Account.php:96 +msgid "Please use a shorter name." +msgstr "Please use a shorter name." + +#: src/Module/Settings/Account.php:99 +msgid "Name too short." +msgstr "Name too short." + +#: src/Module/Settings/Account.php:108 +msgid "Wrong Password." +msgstr "Wrong password." + +#: src/Module/Settings/Account.php:113 +msgid "Invalid email." +msgstr "Invalid email." + +#: src/Module/Settings/Account.php:117 +msgid "Cannot change to that email." +msgstr "Cannot change to that email." + +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 +msgid "Settings were not updated." +msgstr "Settings were not updated." + +#: src/Module/Settings/Account.php:364 +msgid "Contact CSV file upload error" +msgstr "Contact CSV file upload error" + +#: src/Module/Settings/Account.php:383 +msgid "Importing Contacts done" +msgstr "Importing contacts done" + +#: src/Module/Settings/Account.php:396 +msgid "Relocate message has been send to your contacts" +msgstr "Relocate message has been send to your contacts" + +#: src/Module/Settings/Account.php:413 +msgid "Unable to find your profile. Please contact your admin." +msgstr "Unable to find your profile. Please contact your admin." + +#: src/Module/Settings/Account.php:455 +msgid "Personal Page Subtypes" +msgstr "Personal Page subtypes" + +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" +msgstr "" + +#: src/Module/Settings/Account.php:466 +msgid "Account for a personal profile." +msgstr "Account for a personal profile." + +#: src/Module/Settings/Account.php:473 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "Account for an organisation that automatically approves contact requests as \"Followers\"." + +#: src/Module/Settings/Account.php:480 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "Account for a news reflector that automatically approves contact requests as \"Followers\"." + +#: src/Module/Settings/Account.php:487 +msgid "Account for community discussions." +msgstr "Account for community discussions." + +#: src/Module/Settings/Account.php:494 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"." + +#: src/Module/Settings/Account.php:501 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "Account for a public profile that automatically approves contact requests as \"Followers\"." + +#: src/Module/Settings/Account.php:508 +msgid "Automatically approves all contact requests." +msgstr "Automatically approves all contact requests." + +#: src/Module/Settings/Account.php:515 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "Account for a popular profile that automatically approves contact requests as \"Friends\"." + +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "" + +#: src/Module/Settings/Account.php:522 +msgid "Requires manual approval of contact requests." +msgstr "Requires manual approval of contact requests." + +#: src/Module/Settings/Account.php:531 +msgid "OpenID:" +msgstr "OpenID:" + +#: src/Module/Settings/Account.php:531 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Optional) Allow this OpenID to login to this account." + +#: src/Module/Settings/Account.php:539 +msgid "Publish your profile in your local site directory?" +msgstr "Publish your profile in your local site directory?" + +#: src/Module/Settings/Account.php:539 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "Your profile will be published in this node's local directory. Your profile details may be publicly visible depending on the system settings." + +#: src/Module/Settings/Account.php:545 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "Your profile will also be published in the global Friendica directories (e.g. %s)." + +#: src/Module/Settings/Account.php:558 +msgid "Account Settings" +msgstr "Account Settings" + +#: src/Module/Settings/Account.php:559 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "My identity address: '%s' or '%s'" + +#: src/Module/Settings/Account.php:566 +msgid "Password Settings" +msgstr "Password change" + +#: src/Module/Settings/Account.php:568 +msgid "Leave password fields blank unless changing" +msgstr "Leave password fields blank unless changing" + +#: src/Module/Settings/Account.php:570 +msgid "Password:" +msgstr "Password:" + +#: src/Module/Settings/Account.php:570 +msgid "Your current password to confirm the changes of the email address" +msgstr "Your current password to confirm the changes of the email address" + +#: src/Module/Settings/Account.php:573 +msgid "Delete OpenID URL" +msgstr "Delete OpenID URL" + +#: src/Module/Settings/Account.php:575 +msgid "Basic Settings" +msgstr "Basic information" + +#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "Display name:" + +#: src/Module/Settings/Account.php:577 +msgid "Email Address:" +msgstr "Email address:" + +#: src/Module/Settings/Account.php:578 +msgid "Your Timezone:" +msgstr "Time zone:" + +#: src/Module/Settings/Account.php:579 +msgid "Your Language:" +msgstr "Language:" + +#: src/Module/Settings/Account.php:579 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Set the language of your Friendica interface and emails sent to you." + +#: src/Module/Settings/Account.php:580 +msgid "Default Post Location:" +msgstr "Posting location:" + +#: src/Module/Settings/Account.php:581 +msgid "Use Browser Location:" +msgstr "Use browser location:" + +#: src/Module/Settings/Account.php:583 +msgid "Security and Privacy Settings" +msgstr "Security and privacy" + +#: src/Module/Settings/Account.php:585 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum friend requests per day:" + +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 +msgid "(to prevent spam abuse)" +msgstr "May prevent spam or abuse registrations" + +#: src/Module/Settings/Account.php:587 +msgid "Allow your profile to be searchable globally?" +msgstr "Allow your profile to be searchable globally?" + +#: src/Module/Settings/Account.php:587 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "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." + +#: src/Module/Settings/Account.php:588 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "Hide your contact/friend list from viewers of your profile?" + +#: src/Module/Settings/Account.php:588 +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 list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list." + +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "" +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "Make public posts unlisted" +msgstr "Make public posts unlisted" + +#: src/Module/Settings/Account.php:590 +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 "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." + +#: src/Module/Settings/Account.php:591 +msgid "Make all posted pictures accessible" +msgstr "Make all posted pictures accessible" + +#: src/Module/Settings/Account.php:591 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "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." + +#: src/Module/Settings/Account.php:592 +msgid "Allow friends to post to your profile page?" +msgstr "Allow friends to post to my wall?" + +#: src/Module/Settings/Account.php:592 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "Your contacts may write posts on your profile wall. These posts will be distributed to your contacts" + +#: src/Module/Settings/Account.php:593 +msgid "Allow friends to tag your posts?" +msgstr "Allow friends to tag my post?" + +#: src/Module/Settings/Account.php:593 +msgid "Your contacts can add additional tags to your posts." +msgstr "Your contacts can add additional tags to your posts." + +#: src/Module/Settings/Account.php:594 +msgid "Permit unknown people to send you private mail?" +msgstr "Allow unknown people to send me private messages?" + +#: src/Module/Settings/Account.php:594 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "Friendica network users may send you private messages even if they are not in your contact list." + +#: src/Module/Settings/Account.php:595 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum private messages per day from unknown people:" + +#: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "" + +#: src/Module/Settings/Account.php:598 +msgid "Default Post Permissions" +msgstr "Default post permissions" + +#: src/Module/Settings/Account.php:602 +msgid "Expiration settings" +msgstr "Expiration settings" + +#: src/Module/Settings/Account.php:603 +msgid "Automatically expire posts after this many days:" +msgstr "Automatically expire posts after this many days:" + +#: src/Module/Settings/Account.php:603 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Posts will not expire if empty; expired posts will be deleted" + +#: src/Module/Settings/Account.php:604 +msgid "Expire posts" +msgstr "Expire posts" + +#: src/Module/Settings/Account.php:604 +msgid "When activated, posts and comments will be expired." +msgstr "If activated, posts and comments will expire." + +#: src/Module/Settings/Account.php:605 +msgid "Expire personal notes" +msgstr "Expire personal notes" + +#: src/Module/Settings/Account.php:605 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "If activated, personal notes on your profile page will expire." + +#: src/Module/Settings/Account.php:606 +msgid "Expire starred posts" +msgstr "Expire starred posts" + +#: src/Module/Settings/Account.php:606 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "Starring posts keeps them from being expired. That behaviour is overwritten by this setting." + +#: src/Module/Settings/Account.php:607 +msgid "Only expire posts by others" +msgstr "Only expire posts by others" + +#: src/Module/Settings/Account.php:607 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "If activated, your own posts never expire. Than the settings above are only valid for posts you received." + +#: src/Module/Settings/Account.php:610 +msgid "Notification Settings" +msgstr "Notification" + +#: src/Module/Settings/Account.php:611 +msgid "Send a notification email when:" +msgstr "Send notification email when:" + +#: src/Module/Settings/Account.php:612 +msgid "You receive an introduction" +msgstr "Receiving an introduction" + +#: src/Module/Settings/Account.php:613 +msgid "Your introductions are confirmed" +msgstr "My introductions are confirmed" + +#: src/Module/Settings/Account.php:614 +msgid "Someone writes on your profile wall" +msgstr "Someone writes on my wall" + +#: src/Module/Settings/Account.php:615 +msgid "Someone writes a followup comment" +msgstr "A follow up comment is posted" + +#: src/Module/Settings/Account.php:616 +msgid "You receive a private message" +msgstr "receiving a private message" + +#: src/Module/Settings/Account.php:617 +msgid "You receive a friend suggestion" +msgstr "Receiving a friend suggestion" + +#: src/Module/Settings/Account.php:618 +msgid "You are tagged in a post" +msgstr "Tagged in a post" + +#: src/Module/Settings/Account.php:620 +msgid "Create a desktop notification when:" +msgstr "Create a desktop notification when:" + +#: src/Module/Settings/Account.php:621 +msgid "Someone tagged you" +msgstr "" + +#: src/Module/Settings/Account.php:622 +msgid "Someone directly commented on your post" +msgstr "" + +#: src/Module/Settings/Account.php:623 +msgid "Someone liked your content" +msgstr "Someone liked your content" + +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +msgid "Can only be enabled, when the direct comment notification is enabled." +msgstr "" + +#: src/Module/Settings/Account.php:624 +msgid "Someone shared your content" +msgstr "Someone shared your content" + +#: src/Module/Settings/Account.php:625 +msgid "Someone commented in your thread" +msgstr "" + +#: src/Module/Settings/Account.php:626 +msgid "Someone commented in a thread where you commented" +msgstr "" + +#: src/Module/Settings/Account.php:627 +msgid "Someone commented in a thread where you interacted" +msgstr "" + +#: src/Module/Settings/Account.php:629 +msgid "Activate desktop notifications" +msgstr "Activate desktop notifications" + +#: src/Module/Settings/Account.php:629 +msgid "Show desktop popup on new notifications" +msgstr "Show desktop pop-up on new notifications" + +#: src/Module/Settings/Account.php:633 +msgid "Text-only notification emails" +msgstr "Text-only notification emails" + +#: src/Module/Settings/Account.php:635 +msgid "Send text only notification emails, without the html part" +msgstr "Receive text only emails without HTML " + +#: src/Module/Settings/Account.php:639 +msgid "Show detailled notifications" +msgstr "Show detailed notifications" + +#: src/Module/Settings/Account.php:641 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "By default, notifications are condensed into a single notification for each item. If enabled, every notification is displayed." + +#: src/Module/Settings/Account.php:645 +msgid "Show notifications of ignored contacts" +msgstr "Show notifications of ignored contacts" + +#: src/Module/Settings/Account.php:647 +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 "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." + +#: src/Module/Settings/Account.php:650 +msgid "Advanced Account/Page Type Settings" +msgstr "Advanced account types" + +#: src/Module/Settings/Account.php:651 +msgid "Change the behaviour of this account for special situations" +msgstr "Change behaviour of this account for special situations" + +#: src/Module/Settings/Account.php:654 +msgid "Import Contacts" +msgstr "Import Contacts" + +#: src/Module/Settings/Account.php:655 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account." + +#: src/Module/Settings/Account.php:656 +msgid "Upload File" +msgstr "Upload File" + +#: src/Module/Settings/Account.php:659 +msgid "Relocate" +msgstr "Recent relocation" + +#: src/Module/Settings/Account.php:660 +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 "If you have moved this profile from another server and some of your contacts don't receive your updates:" + +#: src/Module/Settings/Account.php:661 +msgid "Resend relocate message to contacts" +msgstr "Resend relocation message to contacts" + +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "Addon settings" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "No addon settings configured" + +#: src/Module/Settings/Channels.php:130 src/Module/Settings/Channels.php:146 +#: src/Module/Settings/Display.php:330 +msgid "Label" +msgstr "" + +#: src/Module/Settings/Channels.php:131 src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +msgid "Description" +msgstr "Description" + +#: src/Module/Settings/Channels.php:132 src/Module/Settings/Channels.php:148 +msgid "Access Key" +msgstr "" + +#: src/Module/Settings/Channels.php:133 src/Module/Settings/Channels.php:149 +msgid "Circle/Channel" +msgstr "" + +#: src/Module/Settings/Channels.php:134 src/Module/Settings/Channels.php:150 +msgid "Include Tags" +msgstr "" + +#: src/Module/Settings/Channels.php:135 src/Module/Settings/Channels.php:151 +msgid "Exclude Tags" +msgstr "" + +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:152 +msgid "Full Text Search" +msgstr "" + +#: src/Module/Settings/Channels.php:140 +msgid "Delete channel" +msgstr "" + +#: src/Module/Settings/Channels.php:140 +msgid "Check to delete this entry from the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:146 +msgid "Short name for the channel. It is displayed on the channels widget." +msgstr "" + +#: src/Module/Settings/Channels.php:147 +msgid "This should describe the content of the channel in a few word." +msgstr "" + +#: src/Module/Settings/Channels.php:148 +msgid "" +"When you want to access this channel via an access key, you can define it " +"here. Pay attention to not use an already used one." +msgstr "" + +#: src/Module/Settings/Channels.php:149 +msgid "Select a circle or channel, that your channel should be based on." +msgstr "" + +#: src/Module/Settings/Channels.php:150 +msgid "" +"Comma separated list of tags. A post will be used when it contains any of " +"the listed tags." +msgstr "" + +#: src/Module/Settings/Channels.php:151 +msgid "" +"Comma separated list of tags. If a post contain any of these tags, then it " +"will not be part of nthis channel." +msgstr "" + +#: src/Module/Settings/Channels.php:152 +#, php-format +msgid "" +"Search terms for the body, supports the \"boolean mode\" operators from " +"MariaDB. See the help for a complete list of operators and additional " +"keywords: %s" +msgstr "" + +#: src/Module/Settings/Channels.php:153 +msgid "Check to display images in the channel." +msgstr "" + +#: src/Module/Settings/Channels.php:154 +msgid "Check to display videos in the channel." +msgstr "" + +#: src/Module/Settings/Channels.php:155 +msgid "Check to display audio in the channel." +msgstr "" + +#: src/Module/Settings/Channels.php:158 +msgid "This page can be used to define your own channels." +msgstr "" + +#: src/Module/Settings/Channels.php:159 +msgid "Add new entry to the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:160 +msgid "Add" +msgstr "Add" + +#: src/Module/Settings/Channels.php:162 +msgid "Current Entries in the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:165 +msgid "Delete entry from the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:166 +msgid "Delete entry from the channel list?" +msgstr "" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "Failed to connect with email account using the settings provided." + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "diaspora* (Socialhome, Hubzilla)" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "OStatus (GNU Social)" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "Email access is disabled on this site." + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "None" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "General Social Media Settings" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "" + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "Enable Content Warning" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn't affect any other content filtering you eventually set up." + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "Enable intelligent shortening" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original Friendica post." + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "Enable simple text shortening" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit." + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "Attach the link title" + +#: src/Module/Settings/Connectors.php:224 +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 "If 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." + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "Your legacy ActivityPub/GNU Social account" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done." + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "Repair OStatus subscriptions" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "Email/Mailbox setup" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Specify how to connect to your mailbox, if you wish to communicate with existing email contacts." + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "Last successful email check:" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "IMAP server name:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "IMAP port:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "Security:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "Email login name:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "Email password:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "Reply-to address:" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "Send public posts to all email contacts:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "Action after import:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "Move to folder" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "Move to folder:" + +#: src/Module/Settings/Delegation.php:73 msgid "Delegation successfully granted." msgstr "Delegation successfully granted." -#: src/Module/Settings/Delegation.php:55 +#: src/Module/Settings/Delegation.php:75 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Parent user not found, unavailable or password doesn't match." -#: src/Module/Settings/Delegation.php:59 +#: src/Module/Settings/Delegation.php:79 msgid "Delegation successfully revoked." msgstr "Delegation successfully revoked." -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 +#: src/Module/Settings/Delegation.php:98 +#: src/Module/Settings/Delegation.php:120 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Delegated administrators can view but not change delegation permissions." -#: src/Module/Settings/Delegation.php:95 +#: src/Module/Settings/Delegation.php:112 msgid "Delegate user not found." msgstr "Delegate user not found." -#: src/Module/Settings/Delegation.php:143 +#: src/Module/Settings/Delegation.php:169 msgid "No parent user" msgstr "No parent user" -#: src/Module/Settings/Delegation.php:154 -#: src/Module/Settings/Delegation.php:165 +#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:191 msgid "Parent User" msgstr "Parent user" -#: src/Module/Settings/Delegation.php:162 +#: src/Module/Settings/Delegation.php:188 msgid "Additional Accounts" msgstr "Additional Accounts" -#: src/Module/Settings/Delegation.php:163 +#: src/Module/Settings/Delegation.php:189 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Register additional accounts that are automatically connected to your existing account so you can manage them from this account." -#: src/Module/Settings/Delegation.php:164 +#: src/Module/Settings/Delegation.php:190 msgid "Register an additional account" msgstr "Register an additional account" -#: src/Module/Settings/Delegation.php:168 +#: src/Module/Settings/Delegation.php:192 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Parent users have total control of this account, including core settings. Please double-check whom you grant such access." -#: src/Module/Settings/Delegation.php:172 +#: src/Module/Settings/Delegation.php:195 msgid "Delegates" msgstr "Delegates" -#: src/Module/Settings/Delegation.php:174 +#: src/Module/Settings/Delegation.php:196 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 "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely." -#: src/Module/Settings/Delegation.php:175 +#: src/Module/Settings/Delegation.php:197 msgid "Existing Page Delegates" msgstr "Existing page delegates" -#: src/Module/Settings/Delegation.php:177 +#: src/Module/Settings/Delegation.php:198 msgid "Potential Delegates" msgstr "Potential delegates" -#: src/Module/Settings/Delegation.php:180 -msgid "Add" -msgstr "Add" - -#: src/Module/Settings/Delegation.php:181 +#: src/Module/Settings/Delegation.php:199 msgid "No entries." msgstr "No entries." -#: src/Module/Settings/Display.php:108 +#: src/Module/Settings/Display.php:179 msgid "The theme you chose isn't available." msgstr "The chosen theme isn't available." -#: src/Module/Settings/Display.php:147 +#: src/Module/Settings/Display.php:219 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Unsupported)" -#: src/Module/Settings/Display.php:193 +#: src/Module/Settings/Display.php:254 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:255 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:256 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:257 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:302 msgid "Display Settings" msgstr "Display Settings" -#: src/Module/Settings/Display.php:195 +#: src/Module/Settings/Display.php:304 msgid "General Theme Settings" msgstr "Themes" -#: src/Module/Settings/Display.php:196 +#: src/Module/Settings/Display.php:305 msgid "Custom Theme Settings" msgstr "Theme customisation" -#: src/Module/Settings/Display.php:197 +#: src/Module/Settings/Display.php:306 msgid "Content Settings" msgstr "Content/Layout" -#: src/Module/Settings/Display.php:198 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:161 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 +#: src/Module/Settings/Display.php:307 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Theme settings" -#: src/Module/Settings/Display.php:199 -msgid "Calendar" -msgstr "Calendar" +#: src/Module/Settings/Display.php:308 +msgid "Timelines" +msgstr "" -#: src/Module/Settings/Display.php:205 +#: src/Module/Settings/Display.php:315 msgid "Display Theme:" msgstr "Display theme:" -#: src/Module/Settings/Display.php:206 +#: src/Module/Settings/Display.php:316 msgid "Mobile Theme:" msgstr "Mobile theme:" -#: src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:319 msgid "Number of items to display per page:" msgstr "Number of items displayed per page:" -#: src/Module/Settings/Display.php:209 src/Module/Settings/Display.php:210 +#: src/Module/Settings/Display.php:319 src/Module/Settings/Display.php:320 msgid "Maximum of 100 items" msgstr "Maximum of 100 items" -#: src/Module/Settings/Display.php:210 +#: src/Module/Settings/Display.php:320 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Number of items displayed per page on mobile devices:" -#: src/Module/Settings/Display.php:211 +#: src/Module/Settings/Display.php:321 msgid "Update browser every xx seconds" msgstr "Update browser every so many seconds:" -#: src/Module/Settings/Display.php:211 +#: src/Module/Settings/Display.php:321 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimum 10 seconds; to disable -1." -#: src/Module/Settings/Display.php:212 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "Automatic updates only at the top of the post stream pages" - -#: src/Module/Settings/Display.php:212 -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 "Auto update may add new posts at the top of the post stream pages. This can affect the scroll position and perturb normal reading if something happens anywhere else the top of the page." - -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:322 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:322 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:323 msgid "Infinite scroll" msgstr "Infinite scroll" -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:323 msgid "Automatic fetch new items when reaching the page end." msgstr "Automatic fetch new items when reaching the page end." -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:324 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:324 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:325 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:325 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:326 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:326 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:218 +#: src/Module/Settings/Display.php:327 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:218 +#: src/Module/Settings/Display.php:327 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:220 +#: src/Module/Settings/Display.php:328 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:328 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "" + +#: src/Module/Settings/Display.php:333 +msgid "Bookmark" +msgstr "" + +#: src/Module/Settings/Display.php:335 +msgid "" +"Enable timelines that you want to see in the channels widget. Bookmark " +"timelines that you want to see in the top menu." +msgstr "" + +#: src/Module/Settings/Display.php:337 +msgid "Channel languages:" +msgstr "" + +#: src/Module/Settings/Display.php:337 +msgid "Select all languages that you want to see in your channels." +msgstr "" + +#: src/Module/Settings/Display.php:339 msgid "Beginning of week:" msgstr "Week begins: " -#: src/Module/Settings/Profile/Index.php:84 -msgid "Profile Name is required." -msgstr "Profile name is required." +#: src/Module/Settings/Display.php:340 +msgid "Default calendar view:" +msgstr "" -#: src/Module/Settings/Profile/Index.php:132 +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "Additional Features" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Connected Apps" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "Remove authorization" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:167 msgid "Profile couldn't be updated." msgstr "Profile couldn't be updated." -#: src/Module/Settings/Profile/Index.php:173 -#: src/Module/Settings/Profile/Index.php:193 +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 msgid "Label:" msgstr "Label:" -#: src/Module/Settings/Profile/Index.php:174 -#: src/Module/Settings/Profile/Index.php:194 +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 msgid "Value:" msgstr "Value:" -#: src/Module/Settings/Profile/Index.php:184 -#: src/Module/Settings/Profile/Index.php:204 +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 msgid "Field Permissions" msgstr "Field Permissions" -#: src/Module/Settings/Profile/Index.php:185 -#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 msgid "(click to open/close)" msgstr "(reveal/hide)" -#: src/Module/Settings/Profile/Index.php:191 +#: src/Module/Settings/Profile/Index.php:224 msgid "Add a new profile field" msgstr "Add a new profile field" -#: src/Module/Settings/Profile/Index.php:221 -msgid "Profile Actions" -msgstr "Profile actions" - -#: src/Module/Settings/Profile/Index.php:222 -msgid "Edit Profile Details" -msgstr "Edit Profile Details" - -#: src/Module/Settings/Profile/Index.php:224 -msgid "Change Profile Photo" -msgstr "Change profile photo" - -#: src/Module/Settings/Profile/Index.php:229 -msgid "Profile picture" -msgstr "Profile picture" - -#: src/Module/Settings/Profile/Index.php:230 -msgid "Location" -msgstr "Location" - -#: src/Module/Settings/Profile/Index.php:231 src/Util/Temporal.php:93 -#: src/Util/Temporal.php:95 -msgid "Miscellaneous" -msgstr "Miscellaneous" - -#: src/Module/Settings/Profile/Index.php:232 -msgid "Custom Profile Fields" -msgstr "Custom Profile Fields" - -#: src/Module/Settings/Profile/Index.php:234 src/Module/Welcome.php:58 -msgid "Upload Profile Photo" -msgstr "Upload profile photo" - -#: src/Module/Settings/Profile/Index.php:238 -msgid "Display name:" -msgstr "Display name:" - -#: src/Module/Settings/Profile/Index.php:241 -msgid "Street Address:" -msgstr "Street address:" - -#: src/Module/Settings/Profile/Index.php:242 -msgid "Locality/City:" -msgstr "Locality/City:" - -#: src/Module/Settings/Profile/Index.php:243 -msgid "Region/State:" -msgstr "Region/State:" - -#: src/Module/Settings/Profile/Index.php:244 -msgid "Postal/Zip Code:" -msgstr "Postcode:" - -#: src/Module/Settings/Profile/Index.php:245 -msgid "Country:" -msgstr "Country:" - -#: src/Module/Settings/Profile/Index.php:247 -msgid "XMPP (Jabber) address:" -msgstr "XMPP (Jabber) address:" - #: src/Module/Settings/Profile/Index.php:247 msgid "" -"The XMPP address will be published so that people can follow you there." -msgstr "" - -#: src/Module/Settings/Profile/Index.php:248 -msgid "Matrix (Element) address:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:248 -msgid "" -"The Matrix address will be published so that people can follow you there." +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." msgstr "" #: src/Module/Settings/Profile/Index.php:249 -msgid "Homepage URL:" -msgstr "Homepage URL:" +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "" -#: src/Module/Settings/Profile/Index.php:250 -msgid "Public Keywords:" -msgstr "Public keywords:" +#: src/Module/Settings/Profile/Index.php:255 +msgid "Profile Actions" +msgstr "Profile actions" -#: src/Module/Settings/Profile/Index.php:250 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "Used for suggesting potential friends, can be seen by others." +#: src/Module/Settings/Profile/Index.php:256 +msgid "Edit Profile Details" +msgstr "Edit Profile Details" -#: src/Module/Settings/Profile/Index.php:251 -msgid "Private Keywords:" -msgstr "Private keywords:" +#: src/Module/Settings/Profile/Index.php:258 +msgid "Change Profile Photo" +msgstr "Change profile photo" -#: src/Module/Settings/Profile/Index.php:251 -msgid "(Used for searching profiles, never shown to others)" -msgstr "Used for searching profiles, never shown to others." +#: src/Module/Settings/Profile/Index.php:261 +msgid "Profile picture" +msgstr "Profile picture" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:262 +msgid "Location" +msgstr "Location" + +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 +msgid "Miscellaneous" +msgstr "Miscellaneous" + +#: src/Module/Settings/Profile/Index.php:264 +msgid "Custom Profile Fields" +msgstr "Custom Profile Fields" + +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +msgid "Upload Profile Photo" +msgstr "Upload profile photo" + +#: src/Module/Settings/Profile/Index.php:266 #, 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 "

    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.

    " +"\t\t\t\t

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

    " +msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:108 -#: src/Module/Settings/Profile/Photo/Crop.php:126 -#: src/Module/Settings/Profile/Photo/Crop.php:144 +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "Street address:" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "Locality/City:" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "Region/State:" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "Postcode:" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "Country:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "XMPP (Jabber) address:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "Homepage URL:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "Public keywords:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "Used for suggesting potential friends, can be seen by others." + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "Private keywords:" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "Used for searching profiles, never shown to others." + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 #: src/Module/Settings/Profile/Photo/Index.php:102 #, php-format msgid "Image size reduction [%s] failed." msgstr "Image size reduction [%s] failed." -#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Crop.php:150 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Shift-reload the page or clear browser cache if the new photo does not display immediately." -#: src/Module/Settings/Profile/Photo/Crop.php:156 +#: src/Module/Settings/Profile/Photo/Crop.php:155 msgid "Unable to process image" msgstr "Unable to process image" -#: src/Module/Settings/Profile/Photo/Crop.php:175 +#: src/Module/Settings/Profile/Photo/Crop.php:174 msgid "Photo not found." msgstr "Photo not found." -#: src/Module/Settings/Profile/Photo/Crop.php:197 +#: src/Module/Settings/Profile/Photo/Crop.php:196 msgid "Profile picture successfully updated." msgstr "Profile picture successfully updated." -#: src/Module/Settings/Profile/Photo/Crop.php:223 -#: src/Module/Settings/Profile/Photo/Crop.php:227 +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 msgid "Crop Image" msgstr "Crop Image" -#: src/Module/Settings/Profile/Photo/Crop.php:224 +#: src/Module/Settings/Profile/Photo/Crop.php:223 msgid "Please adjust the image cropping for optimum viewing." msgstr "Please adjust the image cropping for optimum viewing." -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:225 msgid "Use Image As Is" msgstr "Use image as it is." @@ -9349,190 +10684,267 @@ msgstr "skip this step" msgid "select a photo from your photo albums" msgstr "select a photo from your photo albums" -#: 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 +#: src/Module/Settings/RemoveMe.php:76 +msgid "" +"There was a validation error, please make sure you're logged in with the " +"account you want to remove and try again." +msgstr "" + +#: src/Module/Settings/RemoveMe.php:76 +msgid "If this error persists, please contact your administrator." +msgstr "" + +#: src/Module/Settings/RemoveMe.php:90 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[Friendica System Notify]" + +#: src/Module/Settings/RemoveMe.php:90 +msgid "User deleted their account" +msgstr "User deleted their account" + +#: src/Module/Settings/RemoveMe.php:91 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "On your Friendica node a user deleted their account. Please ensure that their data is removed from the backups." + +#: src/Module/Settings/RemoveMe.php:92 +#, php-format +msgid "The user id is %d" +msgstr "The user id is %d" + +#: src/Module/Settings/RemoveMe.php:105 +msgid "Your account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:130 +msgid "Remove My Account" +msgstr "Remove My Account" + +#: src/Module/Settings/RemoveMe.php:131 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "This will completely remove your account. Once this has been done it is not recoverable." + +#: src/Module/Settings/RemoveMe.php:136 +msgid "Please enter your password for verification:" +msgstr "Please enter your password for verification:" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "" + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 msgid "Please enter your password to access this page." msgstr "Please enter your password to access this page." -#: src/Module/Settings/TwoFactor/AppSpecific.php:70 +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 msgid "App-specific password generation failed: The description is empty." msgstr "App-specific password generation failed: The description is empty." -#: src/Module/Settings/TwoFactor/AppSpecific.php:73 +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 msgid "" "App-specific password generation failed: This description already exists." msgstr "App-specific password generation failed: This description already exists." -#: src/Module/Settings/TwoFactor/AppSpecific.php:77 +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 msgid "New app-specific password generated." msgstr "New app-specific password generated." -#: src/Module/Settings/TwoFactor/AppSpecific.php:83 +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 msgid "App-specific passwords successfully revoked." msgstr "App-specific passwords successfully revoked." -#: src/Module/Settings/TwoFactor/AppSpecific.php:93 +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 msgid "App-specific password successfully revoked." msgstr "App-specific password successfully revoked." -#: src/Module/Settings/TwoFactor/AppSpecific.php:114 +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 msgid "Two-factor app-specific passwords" msgstr "Two-factor app-specific passwords" -#: src/Module/Settings/TwoFactor/AppSpecific.php:116 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 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 "

    App-specific passwords are randomly generated passwords. They are used instead of your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

    " -#: src/Module/Settings/TwoFactor/AppSpecific.php:117 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Make sure to copy your new app-specific password now. You won’t be able to see it again!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:120 -msgid "Description" -msgstr "Description" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:121 +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 msgid "Last Used" msgstr "Last Used" -#: src/Module/Settings/TwoFactor/AppSpecific.php:122 +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 msgid "Revoke" msgstr "Revoke" -#: src/Module/Settings/TwoFactor/AppSpecific.php:123 +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Revoke All" msgstr "Revoke All" -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 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 "When you generate a new app-specific password, you must use it right away. It will be shown to you only once after you generate it." -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 msgid "Generate new app-specific password" msgstr "Generate new app-specific password" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa on my Fairphone 2..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 msgid "Generate" msgstr "Generate" -#: src/Module/Settings/TwoFactor/Index.php:67 +#: src/Module/Settings/TwoFactor/Index.php:68 msgid "Two-factor authentication successfully disabled." msgstr "Two-factor authentication successfully disabled." -#: src/Module/Settings/TwoFactor/Index.php:93 -msgid "Wrong Password" -msgstr "Wrong password" - -#: src/Module/Settings/TwoFactor/Index.php:113 +#: src/Module/Settings/TwoFactor/Index.php:120 msgid "" "

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

    " msgstr "

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

    " -#: src/Module/Settings/TwoFactor/Index.php:117 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Authenticator app" msgstr "Authenticator app" -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Configured" msgstr "Configured" -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Not Configured" msgstr "Not configured" -#: src/Module/Settings/TwoFactor/Index.php:119 +#: src/Module/Settings/TwoFactor/Index.php:126 msgid "

    You haven't finished configuring your authenticator app.

    " msgstr "

    You haven't finished configuring your authenticator app.

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

    Your authenticator app is correctly configured.

    " msgstr "

    Your authenticator app is correctly configured.

    " -#: src/Module/Settings/TwoFactor/Index.php:122 +#: src/Module/Settings/TwoFactor/Index.php:129 msgid "Recovery codes" msgstr "Recovery codes" -#: src/Module/Settings/TwoFactor/Index.php:123 +#: src/Module/Settings/TwoFactor/Index.php:130 msgid "Remaining valid codes" msgstr "Remaining valid codes" -#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "" "

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

    " msgstr "

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

    " -#: src/Module/Settings/TwoFactor/Index.php:127 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "App-specific passwords" msgstr "App-specific passwords" -#: src/Module/Settings/TwoFactor/Index.php:128 +#: src/Module/Settings/TwoFactor/Index.php:135 msgid "Generated app-specific passwords" msgstr "Generated app-specific passwords" -#: src/Module/Settings/TwoFactor/Index.php:130 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "" "

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

    " msgstr "

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

    " -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "Current password:" msgstr "Current password:" -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "You need to provide your current password to change two-factor authentication settings." -#: src/Module/Settings/TwoFactor/Index.php:134 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "Enable two-factor authentication" msgstr "Enable two-factor authentication" -#: src/Module/Settings/TwoFactor/Index.php:135 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Disable two-factor authentication" msgstr "Disable two-factor authentication" -#: src/Module/Settings/TwoFactor/Index.php:136 +#: src/Module/Settings/TwoFactor/Index.php:143 msgid "Show recovery codes" msgstr "Show recovery codes" -#: src/Module/Settings/TwoFactor/Index.php:137 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "Manage app-specific passwords" msgstr "Manage app-specific passwords" -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/Settings/TwoFactor/Index.php:145 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:139 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Finish app configuration" msgstr "Finish app configuration" -#: src/Module/Settings/TwoFactor/Recovery.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:80 msgid "New recovery codes successfully generated." msgstr "New recovery codes successfully generated." -#: src/Module/Settings/TwoFactor/Recovery.php:92 +#: src/Module/Settings/TwoFactor/Recovery.php:106 msgid "Two-factor recovery codes" msgstr "Two-factor recovery codes" -#: src/Module/Settings/TwoFactor/Recovery.php:94 +#: src/Module/Settings/TwoFactor/Recovery.php:108 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 " @@ -9541,64 +10953,68 @@ msgid "" "account.

    " msgstr "

    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 place! If you lose your device and don’t have the recovery codes you will lose access to your account.

    " -#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Recovery.php:110 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore." -#: src/Module/Settings/TwoFactor/Recovery.php:97 +#: src/Module/Settings/TwoFactor/Recovery.php:111 msgid "Generate new recovery codes" msgstr "Generate new recovery codes" -#: src/Module/Settings/TwoFactor/Recovery.php:99 +#: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "Next: Verification" msgstr "Next: Verification" -#: src/Module/Settings/TwoFactor/Trusted.php:49 +#: src/Module/Settings/TwoFactor/Trusted.php:84 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:59 +#: src/Module/Settings/TwoFactor/Trusted.php:94 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:136 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:98 +#: src/Module/Settings/TwoFactor/Trusted.php:137 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 "" -#: src/Module/Settings/TwoFactor/Trusted.php:99 +#: src/Module/Settings/TwoFactor/Trusted.php:138 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:100 +#: src/Module/Settings/TwoFactor/Trusted.php:139 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:102 +#: src/Module/Settings/TwoFactor/Trusted.php:141 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:103 +#: src/Module/Settings/TwoFactor/Trusted.php:142 +msgid "Created At" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:143 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:105 +#: src/Module/Settings/TwoFactor/Trusted.php:145 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:78 +#: src/Module/Settings/TwoFactor/Verify.php:91 msgid "Two-factor authentication successfully activated." msgstr "Two-factor authentication successfully activated." -#: src/Module/Settings/TwoFactor/Verify.php:111 +#: src/Module/Settings/TwoFactor/Verify.php:125 #, php-format msgid "" "

    Or you can submit the authentication settings manually:

    \n" @@ -9618,119 +11034,105 @@ msgid "" "" msgstr "

    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
    " -#: src/Module/Settings/TwoFactor/Verify.php:131 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Two-factor code verification" msgstr "Two-factor code verification" -#: src/Module/Settings/TwoFactor/Verify.php:133 +#: src/Module/Settings/TwoFactor/Verify.php:147 msgid "" "

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

    " msgstr "

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

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

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

    %s

    " msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:142 +#: src/Module/Settings/TwoFactor/Verify.php:156 msgid "Verify code and enable two-factor authentication" msgstr "Verify code and enable two-factor authentication" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 msgid "Export account" msgstr "Export account" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 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 "Export your account info and contacts. Use this to backup your account or to move it to another server." -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:91 msgid "Export all" msgstr "Export all" -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:91 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 "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)" -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:92 msgid "Export Contacts to CSV" msgstr "Export contacts to CSV" -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:92 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Export the list of the accounts you are following as CSV file. Compatible with Mastodon for example." -#: src/Module/Special/HTTPException.php:49 -msgid "Bad Request" -msgstr "Bad Request" +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "" -#: src/Module/Special/HTTPException.php:51 -msgid "Forbidden" -msgstr "Forbidden" +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "" -#: src/Module/Special/HTTPException.php:52 -msgid "Not Found" -msgstr "Not found" - -#: src/Module/Special/HTTPException.php:54 -msgid "Service Unavailable" -msgstr "Service Unavailable" - -#: src/Module/Special/HTTPException.php:61 +#: src/Module/Special/DisplayNotFound.php:37 msgid "" -"The server cannot or will not process the request due to an apparent client " -"error." -msgstr "The server cannot process the request due to an apparent client error." +"This node has blocked the top-level author or the author of the shared post." +msgstr "" -#: src/Module/Special/HTTPException.php:62 +#: src/Module/Special/DisplayNotFound.php:38 msgid "" -"Authentication is required and has failed or has not yet been provided." -msgstr "Authentication is required and has failed or has not yet been provided." +"You have ignored or blocked the top-level author or the author of the shared" +" post." +msgstr "" -#: src/Module/Special/HTTPException.php:63 +#: src/Module/Special/DisplayNotFound.php:39 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 "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." +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "" -#: src/Module/Special/HTTPException.php:64 -msgid "" -"The requested resource could not be found but may be available in the " -"future." -msgstr "The requested resource could not be found but may be available in the future." +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "" -#: src/Module/Special/HTTPException.php:65 -msgid "" -"An unexpected condition was encountered and no more specific message is " -"suitable." -msgstr "An unexpected condition was encountered and no more specific message is available." +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "" -#: 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 "The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later." +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "" -#: src/Module/Special/HTTPException.php:76 +#: src/Module/Special/HTTPException.php:78 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:80 +#: src/Module/Special/HTTPException.php:83 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:46 src/Module/Tos.php:88 +#: src/Module/Tos.php:58 src/Module/Tos.php:107 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" @@ -9743,28 +11145,130 @@ msgid "" "settings, it is not necessary for communication." msgstr "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." -#: src/Module/Tos.php:47 src/Module/Tos.php:89 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 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 "This information is required for communication and is passed on to the nodes of the communication partners and stored there. Users can enter additional personal information that may be transmitted to the communication partner's accounts." -#: src/Module/Tos.php:48 src/Module/Tos.php:90 +#: src/Module/Tos.php:60 src/Module/Tos.php:109 #, 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 "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." +"href=\"%1$s/settings/removeme\">%1$s/settings/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 "" -#: src/Module/Tos.php:51 src/Module/Tos.php:87 +#: src/Module/Tos.php:63 src/Module/Tos.php:106 msgid "Privacy Statement" msgstr "Privacy Statement" +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "" + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "The requested item doesn't exist or has been deleted." + +#: src/Module/User/Delegation.php:146 +#, php-format +msgid "You are now logged in as %s" +msgstr "" + +#: src/Module/User/Delegation.php:185 +msgid "Switch between your accounts" +msgstr "" + +#: src/Module/User/Delegation.php:186 +msgid "Manage your accounts" +msgstr "" + +#: src/Module/User/Delegation.php:187 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Accounts that I manage or own." + +#: src/Module/User/Delegation.php:188 +msgid "Select an identity to manage: " +msgstr "Select identity:" + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "User imports on closed servers can only be done by an administrator." + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "Move Existing Friendica Account" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "You can import an existing Friendica profile to this node." + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "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." + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from diaspora*." + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "Account file:" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "To export your account, go to \"Settings->Export personal data\" and select \"Export account\"" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "Error decoding account file" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Error! No version data in file! Is this a Friendica account file?" + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "User '%s' already exists on this server!" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "User creation error" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contact not imported" +msgstr[1] "%d contacts not imported" + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "User profile creation error" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "Done. You can now login with your username and password" + #: src/Module/Welcome.php:44 msgid "Welcome to Friendica" msgstr "Welcome to Friendica" @@ -9895,15 +11399,15 @@ msgid "" msgstr "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." #: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "Group your contacts" +msgid "Add Your Contacts To Circle" +msgstr "" #: 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 "Once you have made some friends, organise 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." +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "" #: src/Module/Welcome.php:80 msgid "Why Aren't My Posts Public?" @@ -9930,43 +11434,51 @@ msgid "" " features and resources." msgstr "Our help pages may be consulted for detail on other program features and resources." -#: src/Navigation/Notifications/Factory/FormattedNotification.php:89 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +msgid "{0} wants to follow you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +msgid "{0} has started following you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 #, php-format msgid "%s liked %s's post" msgstr "%s liked %s's post" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:101 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 #, php-format msgid "%s disliked %s's post" msgstr "%s disliked %s's post" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:113 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 #, php-format msgid "%s is attending %s's event" msgstr "%s is going to %s's event" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:125 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 #, php-format msgid "%s is not attending %s's event" msgstr "%s is not going to %s's event" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:137 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 #, php-format msgid "%s may attending %s's event" msgstr "%s may attending %s's event" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:167 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 #, php-format msgid "%s is now friends with %s" msgstr "%s is now friends with %s" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:334 -#: src/Navigation/Notifications/Factory/FormattedNotification.php:372 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 #, php-format msgid "%s commented on %s's post" msgstr "%s commented on %s's post" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:371 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 #, php-format msgid "%s created a new post" msgstr "%s posted something new" @@ -9983,311 +11495,315 @@ msgstr "Friend/Contact request" msgid "New Follower" msgstr "New follower" -#: src/Navigation/Notifications/Factory/Notification.php:74 +#: src/Navigation/Notifications/Factory/Notification.php:134 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:76 +#: src/Navigation/Notifications/Factory/Notification.php:136 #, php-format -msgid "%1$s had started following you" +msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:141 +#: src/Navigation/Notifications/Factory/Notification.php:208 #, php-format -msgid "%1$s liked your comment %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:144 -#, php-format -msgid "%1$s liked your post %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:151 -#, php-format -msgid "%1$s disliked your comment %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:154 -#, php-format -msgid "%1$s disliked your post %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:161 -#, php-format -msgid "%1$s shared your comment %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:164 -#, php-format -msgid "%1$s shared your post %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:171 -#, php-format -msgid "%1$s tagged you on %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:175 -#, php-format -msgid "%1$s replied to you on %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:179 -#, php-format -msgid "%1$s commented in your thread %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:183 -#, php-format -msgid "%1$s commented on your comment %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:189 -#, php-format -msgid "%1$s commented in their thread %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:191 -#, php-format -msgid "%1$s commented in their thread" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:193 -#, php-format -msgid "%1$s commented in the thread %2$s from %3$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:195 -#, php-format -msgid "%1$s commented in the thread from %3$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:200 -#, php-format -msgid "%1$s commented on your thread %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:205 -#, php-format -msgid "%1$s shared the post %2$s from %3$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:207 -#, php-format -msgid "%1$s shared a post from %3$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:209 -#, php-format -msgid "%1$s shared the post %2$s" +msgid "%1$s liked your comment on %2$s" msgstr "" #: src/Navigation/Notifications/Factory/Notification.php:211 #, php-format +msgid "%1$s liked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:218 +#, php-format +msgid "%1$s disliked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:221 +#, php-format +msgid "%1$s disliked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:228 +#, php-format +msgid "%1$s shared your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 +#, php-format +msgid "%1$s shared your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:235 +#: src/Navigation/Notifications/Factory/Notification.php:305 +#, php-format +msgid "%1$s shared the post %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:237 +#: src/Navigation/Notifications/Factory/Notification.php:307 +#, php-format +msgid "%1$s shared a post from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:239 +#: src/Navigation/Notifications/Factory/Notification.php:309 +#, php-format +msgid "%1$s shared the post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:311 +#, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:192 -#: src/Navigation/Notifications/Repository/Notify.php:675 +#: src/Navigation/Notifications/Factory/Notification.php:249 +#, php-format +msgid "%1$s wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:256 +#, php-format +msgid "%1$s does not want to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:263 +#, php-format +msgid "%1$s maybe wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:270 +#, php-format +msgid "%1$s tagged you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:274 +#, php-format +msgid "%1$s replied to you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:278 +#, php-format +msgid "%1$s commented in your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:282 +#, php-format +msgid "%1$s commented on your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:289 +#, php-format +msgid "%1$s commented in their thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:291 +#, php-format +msgid "%1$s commented in their thread" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:293 +#, php-format +msgid "%1$s commented in the thread %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:295 +#, php-format +msgid "%1$s commented in the thread from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:300 +#, php-format +msgid "%1$s commented on your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 msgid "[Friendica:Notify]" msgstr "[Friendica:Notify]" -#: src/Navigation/Notifications/Repository/Notify.php:256 +#: src/Navigation/Notifications/Repository/Notify.php:293 #, php-format msgid "%s New mail received at %s" msgstr "%s New mail received at %s" -#: src/Navigation/Notifications/Repository/Notify.php:258 +#: src/Navigation/Notifications/Repository/Notify.php:295 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s sent you a new private message at %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:259 +#: src/Navigation/Notifications/Repository/Notify.php:296 msgid "a private message" msgstr "a private message" -#: src/Navigation/Notifications/Repository/Notify.php:259 +#: src/Navigation/Notifications/Repository/Notify.php:296 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s sent you %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:261 +#: src/Navigation/Notifications/Repository/Notify.php:298 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Please visit %s to view or reply to your private messages." -#: src/Navigation/Notifications/Repository/Notify.php:292 +#: src/Navigation/Notifications/Repository/Notify.php:328 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s commented on %2$s's %3$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:297 +#: src/Navigation/Notifications/Repository/Notify.php:333 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s commented on your %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:301 +#: src/Navigation/Notifications/Repository/Notify.php:337 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s commented on their %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:305 -#: src/Navigation/Notifications/Repository/Notify.php:710 +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Comment to conversation #%2$d by %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:307 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s commented on an item/conversation you have been following." -#: src/Navigation/Notifications/Repository/Notify.php:311 -#: src/Navigation/Notifications/Repository/Notify.php:326 -#: src/Navigation/Notifications/Repository/Notify.php:345 -#: src/Navigation/Notifications/Repository/Notify.php:725 +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Please visit %s to view or reply to the conversation." -#: src/Navigation/Notifications/Repository/Notify.php:318 +#: src/Navigation/Notifications/Repository/Notify.php:354 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s posted to your profile wall" -#: src/Navigation/Notifications/Repository/Notify.php:320 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s posted to your profile wall at %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:321 +#: src/Navigation/Notifications/Repository/Notify.php:357 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s posted to [url=%2$s]your wall[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:333 -#, php-format -msgid "%1$s %2$s poked you" -msgstr "%1$s %2$s poked you" - -#: src/Navigation/Notifications/Repository/Notify.php:335 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s poked you at %2$s" - -#: src/Navigation/Notifications/Repository/Notify.php:336 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]poked you[/url]." - -#: src/Navigation/Notifications/Repository/Notify.php:353 +#: src/Navigation/Notifications/Repository/Notify.php:370 #, php-format msgid "%s Introduction received" msgstr "%s Introduction received" -#: src/Navigation/Notifications/Repository/Notify.php:355 +#: src/Navigation/Notifications/Repository/Notify.php:372 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "You've received an introduction from '%1$s' at %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "You've received [url=%1$s]an introduction[/url] from %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:361 -#: src/Navigation/Notifications/Repository/Notify.php:407 +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 #, php-format msgid "You may visit their profile at %s" msgstr "You may visit their profile at %s" -#: src/Navigation/Notifications/Repository/Notify.php:363 +#: src/Navigation/Notifications/Repository/Notify.php:380 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Please visit %s to approve or reject the introduction." -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:387 #, php-format msgid "%s A new person is sharing with you" msgstr "%s A new person is sharing with you" -#: src/Navigation/Notifications/Repository/Notify.php:372 -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s is sharing with you at %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:397 #, php-format msgid "%s You have a new follower" msgstr "%s You have a new follower" -#: src/Navigation/Notifications/Repository/Notify.php:382 -#: src/Navigation/Notifications/Repository/Notify.php:383 +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "You have a new follower at %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:396 +#: src/Navigation/Notifications/Repository/Notify.php:413 #, php-format msgid "%s Friend suggestion received" msgstr "%s Friend suggestion received" -#: src/Navigation/Notifications/Repository/Notify.php:398 +#: src/Navigation/Notifications/Repository/Notify.php:415 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "You've received a friend suggestion from '%1$s' at %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:416 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:405 +#: src/Navigation/Notifications/Repository/Notify.php:422 msgid "Name:" msgstr "Name:" -#: src/Navigation/Notifications/Repository/Notify.php:406 +#: src/Navigation/Notifications/Repository/Notify.php:423 msgid "Photo:" msgstr "Photo:" -#: src/Navigation/Notifications/Repository/Notify.php:409 +#: src/Navigation/Notifications/Repository/Notify.php:426 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Please visit %s to approve or reject the suggestion." -#: src/Navigation/Notifications/Repository/Notify.php:417 -#: src/Navigation/Notifications/Repository/Notify.php:432 +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 #, php-format msgid "%s Connection accepted" msgstr "%s Connection accepted" -#: src/Navigation/Notifications/Repository/Notify.php:419 -#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' has accepted your connection request at %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:420 -#: src/Navigation/Notifications/Repository/Notify.php:435 +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s has accepted your [url=%1$s]connection request[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:425 +#: src/Navigation/Notifications/Repository/Notify.php:442 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "You are now mutual friends and may exchange status updates, photos, and email without restriction." -#: src/Navigation/Notifications/Repository/Notify.php:427 +#: src/Navigation/Notifications/Repository/Notify.php:444 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Please visit %s if you wish to make any changes to this relationship." -#: src/Navigation/Notifications/Repository/Notify.php:440 +#: src/Navigation/Notifications/Repository/Notify.php:457 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -10296,33 +11812,34 @@ msgid "" "automatically." msgstr "'%1$s' has chosen to accept you as fan. This 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." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' may choose to extend this into a two-way or more permissive relationship in the future." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:461 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Please visit %s if you wish to make any changes to this relationship." -#: src/Navigation/Notifications/Repository/Notify.php:454 +#: src/Navigation/Notifications/Repository/Notify.php:471 msgid "registration request" msgstr "registration request" -#: src/Navigation/Notifications/Repository/Notify.php:456 +#: src/Navigation/Notifications/Repository/Notify.php:473 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "You've received a registration request from '%1$s' at %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:474 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "You've received a [url=%1$s]registration request[/url] from %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:462 +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 #, php-format msgid "" "Full Name:\t%s\n" @@ -10330,21 +11847,50 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Full Name:\t%s\nSite Location:\t%s\nLogin Name:\t%s (%s)" -#: src/Navigation/Notifications/Repository/Notify.php:468 +#: src/Navigation/Notifications/Repository/Notify.php:485 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Please visit %s to approve or reject the request." -#: src/Navigation/Notifications/Repository/Notify.php:704 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:780 #, php-format msgid "%s %s tagged you" msgstr "%s %s tagged you" -#: src/Navigation/Notifications/Repository/Notify.php:707 +#: src/Navigation/Notifications/Repository/Notify.php:783 #, php-format msgid "%s %s shared a new post" msgstr "%s %s shared a new post" +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "" + #: src/Object/EMail/ItemCCEMail.php:42 #, php-format msgid "" @@ -10368,244 +11914,324 @@ msgstr "Please contact the sender by replying to this post if you do not wish to msgid "%s posted an update." msgstr "%s posted an update." -#: src/Object/Post.php:149 -msgid "This entry was edited" -msgstr "This entry was edited" - -#: src/Object/Post.php:177 +#: src/Object/Post.php:138 msgid "Private Message" msgstr "Private message" -#: src/Object/Post.php:193 src/Object/Post.php:195 +#: src/Object/Post.php:142 +msgid "Public Message" +msgstr "" + +#: src/Object/Post.php:146 +msgid "Unlisted Message" +msgstr "" + +#: src/Object/Post.php:182 +msgid "This entry was edited" +msgstr "This entry was edited" + +#: src/Object/Post.php:210 +msgid "Connector Message" +msgstr "" + +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Edit" -#: src/Object/Post.php:215 -msgid "Pinned item" -msgstr "" - -#: src/Object/Post.php:219 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "Delete globally" -#: src/Object/Post.php:219 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "Remove locally" -#: src/Object/Post.php:235 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:240 +#: src/Object/Post.php:274 +#, php-format +msgid "Ignore %s" +msgstr "" + +#: src/Object/Post.php:279 +#, php-format +msgid "Collapse %s" +msgstr "" + +#: src/Object/Post.php:283 +msgid "Report post" +msgstr "" + +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:274 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "I will attend" -#: src/Object/Post.php:274 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "I will not attend" -#: src/Object/Post.php:274 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "I might attend" -#: src/Object/Post.php:304 +#: src/Object/Post.php:364 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:305 +#: src/Object/Post.php:365 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:306 +#: src/Object/Post.php:366 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:316 +#: src/Object/Post.php:376 msgid "Add star" msgstr "" -#: src/Object/Post.php:317 +#: src/Object/Post.php:377 msgid "Remove star" msgstr "" -#: src/Object/Post.php:318 +#: src/Object/Post.php:378 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:329 +#: src/Object/Post.php:389 msgid "Pin" msgstr "" -#: src/Object/Post.php:330 +#: src/Object/Post.php:390 msgid "Unpin" msgstr "" -#: src/Object/Post.php:331 +#: src/Object/Post.php:391 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:394 msgid "Pinned" msgstr "" -#: src/Object/Post.php:339 +#: src/Object/Post.php:399 msgid "Add tag" msgstr "" -#: src/Object/Post.php:352 +#: src/Object/Post.php:412 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:352 +#: src/Object/Post.php:412 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:355 +#: src/Object/Post.php:415 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:355 +#: src/Object/Post.php:415 msgid "Reshare" msgstr "" -#: src/Object/Post.php:356 +#: src/Object/Post.php:416 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:356 +#: src/Object/Post.php:416 msgid "Unshare" msgstr "" -#: src/Object/Post.php:401 +#: src/Object/Post.php:467 #, php-format msgid "%s (Received %s)" msgstr "%s (Received %s)" -#: src/Object/Post.php:406 +#: src/Object/Post.php:473 msgid "Comment this item on your system" msgstr "Comment this item on your system" -#: src/Object/Post.php:406 +#: src/Object/Post.php:473 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:422 -msgid "Pushed" -msgstr "Pushed" +#: src/Object/Post.php:495 +msgid "Share via ..." +msgstr "" -#: src/Object/Post.php:422 -msgid "Pulled" -msgstr "Pulled" +#: src/Object/Post.php:495 +msgid "Share via external services" +msgstr "" -#: src/Object/Post.php:456 +#: src/Object/Post.php:502 +msgid "Unknown parent" +msgstr "" + +#: src/Object/Post.php:506 +#, php-format +msgid "in reply to %s" +msgstr "" + +#: src/Object/Post.php:508 +msgid "Parent is probably private or not federated." +msgstr "" + +#: src/Object/Post.php:532 msgid "to" msgstr "to" -#: src/Object/Post.php:457 +#: src/Object/Post.php:533 msgid "via" msgstr "via" -#: src/Object/Post.php:458 +#: src/Object/Post.php:534 msgid "Wall-to-Wall" msgstr "Wall-to-wall" -#: src/Object/Post.php:459 +#: src/Object/Post.php:535 msgid "via Wall-To-Wall:" msgstr "via wall-to-wall:" -#: src/Object/Post.php:497 +#: src/Object/Post.php:582 #, php-format msgid "Reply to %s" msgstr "Reply to %s" -#: src/Object/Post.php:500 +#: src/Object/Post.php:585 msgid "More" msgstr "More" -#: src/Object/Post.php:518 +#: src/Object/Post.php:604 msgid "Notifier task is pending" msgstr "Notifier task is pending" -#: src/Object/Post.php:519 +#: src/Object/Post.php:605 msgid "Delivery to remote servers is pending" msgstr "Delivery to remote servers is pending" -#: src/Object/Post.php:520 +#: src/Object/Post.php:606 msgid "Delivery to remote servers is underway" msgstr "Delivery to remote servers is underway" -#: src/Object/Post.php:521 +#: src/Object/Post.php:607 msgid "Delivery to remote servers is mostly done" msgstr "Delivery to remote servers is mostly done" -#: src/Object/Post.php:522 +#: src/Object/Post.php:608 msgid "Delivery to remote servers is done" msgstr "Delivery to remote servers is done" -#: src/Object/Post.php:542 +#: src/Object/Post.php:630 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d comment" msgstr[1] "%d comments" -#: src/Object/Post.php:543 +#: src/Object/Post.php:631 msgid "Show more" msgstr "Show more" -#: src/Object/Post.php:544 +#: src/Object/Post.php:632 msgid "Show fewer" msgstr "Show fewer" -#: src/Protocol/Diaspora.php:3414 -msgid "Attachments:" -msgstr "Attachments:" +#: src/Object/Post.php:668 +#, php-format +msgid "Reshared by: %s" +msgstr "" -#: src/Protocol/OStatus.php:1645 +#: src/Object/Post.php:673 +#, php-format +msgid "Viewed by: %s" +msgstr "" + +#: src/Object/Post.php:678 +#, php-format +msgid "Liked by: %s" +msgstr "" + +#: src/Object/Post.php:683 +#, php-format +msgid "Disliked by: %s" +msgstr "" + +#: src/Object/Post.php:688 +#, php-format +msgid "Attended by: %s" +msgstr "" + +#: src/Object/Post.php:693 +#, php-format +msgid "Maybe attended by: %s" +msgstr "" + +#: src/Object/Post.php:698 +#, php-format +msgid "Not attended by: %s" +msgstr "" + +#: src/Object/Post.php:703 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "" + +#: src/Protocol/ActivityPub/Receiver.php:522 +msgid "Chat" +msgstr "" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "" + +#: src/Protocol/OStatus.php:1390 #, php-format msgid "%s is now following %s." msgstr "%s is now following %s." -#: src/Protocol/OStatus.php:1646 +#: src/Protocol/OStatus.php:1391 msgid "following" msgstr "following" -#: src/Protocol/OStatus.php:1649 +#: src/Protocol/OStatus.php:1394 #, php-format msgid "%s stopped following %s." msgstr "%s stopped following %s." -#: src/Protocol/OStatus.php:1650 +#: src/Protocol/OStatus.php:1395 msgid "stopped following" msgstr "stopped following" -#: src/Render/FriendicaSmartyEngine.php:52 -msgid "The folder view/smarty3/ must be writable by webserver." +#: src/Render/FriendicaSmartyEngine.php:56 +#, php-format +msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:209 +#: src/Security/Authentication.php:227 msgid "Login failed." msgstr "Login failed." -#: src/Security/Authentication.php:250 +#: src/Security/Authentication.php:272 msgid "Login failed. Please check your credentials." msgstr "Login failed. Please check your credentials." -#: src/Security/Authentication.php:348 +#: src/Security/Authentication.php:391 #, php-format msgid "Welcome %s" msgstr "Welcome %s" -#: src/Security/Authentication.php:349 +#: src/Security/Authentication.php:392 msgid "Please upload a profile photo." msgstr "Please upload a profile photo." -#: src/Util/EMailer/MailBuilder.php:259 +#: src/Util/EMailer/MailBuilder.php:260 msgid "Friendica Notification" msgstr "" @@ -10628,264 +12254,271 @@ msgstr "" msgid "thanks" msgstr "" -#: src/Util/Temporal.php:167 +#: src/Util/Temporal.php:172 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:275 +#: src/Util/Temporal.php:280 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:318 +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 msgid "never" msgstr "" -#: src/Util/Temporal.php:325 +#: src/Util/Temporal.php:343 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:352 msgid "year" msgstr "" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:352 msgid "years" msgstr "" -#: src/Util/Temporal.php:334 +#: src/Util/Temporal.php:353 msgid "months" msgstr "" -#: src/Util/Temporal.php:335 +#: src/Util/Temporal.php:354 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:336 +#: src/Util/Temporal.php:355 msgid "days" msgstr "" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:356 msgid "hour" msgstr "" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:356 msgid "hours" msgstr "" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:357 msgid "minute" msgstr "" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:357 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:358 msgid "second" msgstr "" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:358 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:349 +#: src/Util/Temporal.php:367 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:370 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/Delivery.php:525 -msgid "(no subject)" -msgstr "" - -#: src/Worker/PushSubscription.php:103 +#: src/Worker/PushSubscription.php:110 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:104 +#: src/Worker/PushSubscription.php:111 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:52 +#: view/theme/duepuntozero/config.php:68 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:53 +#: view/theme/duepuntozero/config.php:69 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:54 +#: view/theme/duepuntozero/config.php:70 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:55 +#: view/theme/duepuntozero/config.php:71 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:56 +#: view/theme/duepuntozero/config.php:72 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:57 +#: view/theme/duepuntozero/config.php:73 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:58 +#: view/theme/duepuntozero/config.php:74 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:87 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:142 +#: view/theme/frio/config.php:153 msgid "Light (Accented)" msgstr "" -#: view/theme/frio/config.php:143 +#: view/theme/frio/config.php:154 msgid "Dark (Accented)" msgstr "" -#: view/theme/frio/config.php:144 +#: view/theme/frio/config.php:155 msgid "Black (Accented)" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Note" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:162 +#: view/theme/frio/config.php:173 msgid "Custom" msgstr "" -#: view/theme/frio/config.php:163 +#: view/theme/frio/config.php:174 msgid "Legacy" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:175 msgid "Accented" msgstr "" -#: view/theme/frio/config.php:165 +#: view/theme/frio/config.php:176 msgid "Select color scheme" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Select scheme accent" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Red" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Green" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:179 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:169 +#: view/theme/frio/config.php:180 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:170 +#: view/theme/frio/config.php:181 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:171 +#: view/theme/frio/config.php:182 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:183 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:173 +#: view/theme/frio/config.php:184 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:174 +#: view/theme/frio/config.php:185 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "" + +#: view/theme/frio/config.php:192 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:39 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:39 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:40 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:40 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:41 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:41 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:43 +#: view/theme/frio/php/Image.php:42 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:43 +#: view/theme/frio/php/Image.php:42 msgid "Repeat image to fill the screen." msgstr "" @@ -10897,78 +12530,78 @@ msgstr "" msgid "Back to top" msgstr "" -#: view/theme/frio/theme.php:207 +#: view/theme/frio/theme.php:211 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:210 +#: view/theme/frio/theme.php:214 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:74 +#: view/theme/quattro/config.php:90 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:75 +#: view/theme/quattro/config.php:91 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:76 +#: view/theme/quattro/config.php:92 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "show" msgstr "" -#: view/theme/vier/config.php:121 +#: view/theme/vier/config.php:137 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:122 +#: view/theme/vier/config.php:138 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:125 +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:124 +#: view/theme/vier/config.php:140 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:296 +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:126 +#: view/theme/vier/config.php:142 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:152 +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:211 +#: view/theme/vier/theme.php:234 msgid "Quick Start" msgstr "" diff --git a/view/lang/en-gb/strings.php b/view/lang/en-gb/strings.php index 095bab5d8..98903f23f 100644 --- a/view/lang/en-gb/strings.php +++ b/view/lang/en-gb/strings.php @@ -5,106 +5,13 @@ function string_plural_select_en_gb($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Daily posting limit of %d post reached. The post was rejected.', - 1 => 'Daily posting limit of %d posts are reached. This post was rejected.', -]; -$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Weekly posting limit of %d post reached. The post was rejected.', - 1 => 'Weekly posting limit of %d posts are reached. This post was rejected.', -]; -$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = 'Monthly posting limit of %d posts are reached. The post was rejected.'; -$a->strings['Permission denied.'] = 'Permission denied.'; -$a->strings['Access denied.'] = 'Access denied.'; -$a->strings['User not found.'] = 'User not found.'; -$a->strings['Access to this profile has been restricted.'] = 'Access to this profile has been restricted.'; -$a->strings['Events'] = 'Events'; -$a->strings['View'] = 'View'; -$a->strings['Previous'] = 'Previous'; -$a->strings['Next'] = 'Next'; -$a->strings['today'] = 'today'; -$a->strings['month'] = 'month'; -$a->strings['week'] = 'week'; -$a->strings['day'] = 'day'; -$a->strings['list'] = 'List'; -$a->strings['User not found'] = 'User not found'; -$a->strings['This calendar format is not supported'] = 'This calendar format is not supported'; -$a->strings['No exportable data found'] = 'No exportable data found'; -$a->strings['calendar'] = 'calendar'; -$a->strings['Public access denied.'] = 'Public access denied.'; -$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'The requested item doesn\'t exist or has been deleted.'; -$a->strings['The feed for this item is unavailable.'] = 'The feed for this item is unavailable.'; -$a->strings['Item not found'] = 'Item not found'; -$a->strings['Edit post'] = 'Edit post'; -$a->strings['Save'] = 'Save'; -$a->strings['Loading...'] = 'Loading...'; -$a->strings['Upload photo'] = 'Upload photo'; -$a->strings['upload photo'] = 'upload photo'; -$a->strings['Attach file'] = 'Attach file'; -$a->strings['attach file'] = 'attach file'; -$a->strings['Insert web link'] = 'Insert web link'; -$a->strings['web link'] = 'web link'; -$a->strings['Insert video link'] = 'Insert video link'; -$a->strings['video link'] = 'video link'; -$a->strings['Insert audio link'] = 'Insert audio link'; -$a->strings['audio link'] = 'audio link'; -$a->strings['Set your location'] = 'Set your location'; -$a->strings['set location'] = 'set location'; -$a->strings['Clear browser location'] = 'Clear browser location'; -$a->strings['clear location'] = 'clear location'; -$a->strings['Please wait'] = 'Please wait'; -$a->strings['Permission settings'] = 'Permission settings'; -$a->strings['CC: email addresses'] = 'CC: email addresses'; -$a->strings['Public post'] = 'Public post'; -$a->strings['Set title'] = 'Set title'; -$a->strings['Categories (comma-separated list)'] = 'Categories (comma-separated list)'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Example: bob@example.com, mary@example.com'; -$a->strings['Preview'] = 'Preview'; -$a->strings['Cancel'] = 'Cancel'; -$a->strings['Message'] = 'Message'; -$a->strings['Browser'] = 'Browser'; -$a->strings['Permissions'] = 'Permissions'; -$a->strings['Open Compose page'] = 'Open Compose page'; -$a->strings['Event can not end before it has started.'] = 'Event cannot end before it has started.'; -$a->strings['Event title and start time are required.'] = 'Event title and starting time are required.'; -$a->strings['Create New Event'] = 'Create new event'; -$a->strings['Event details'] = 'Event details'; -$a->strings['Starting date and Title are required.'] = 'Starting date and title are required.'; -$a->strings['Event Starts:'] = 'Event starts:'; -$a->strings['Required'] = 'Required'; -$a->strings['Finish date/time is not known or not relevant'] = 'Finish date/time is not known or not relevant'; -$a->strings['Event Finishes:'] = 'Event finishes:'; -$a->strings['Description:'] = 'Description:'; -$a->strings['Location:'] = 'Location:'; -$a->strings['Title:'] = 'Title:'; -$a->strings['Share this event'] = 'Share this event'; -$a->strings['Submit'] = 'Submit'; -$a->strings['Basic'] = 'Basic'; -$a->strings['Advanced'] = 'Advanced'; -$a->strings['Failed to remove event'] = 'Failed to remove event'; -$a->strings['Photos'] = 'Photos'; -$a->strings['Upload'] = 'Upload'; -$a->strings['Files'] = 'Files'; -$a->strings['Submit Request'] = 'Submit request'; -$a->strings['You already added this contact.'] = 'You already added this contact.'; -$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = '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* support isn\'t enabled. Contact can\'t be added.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus support is disabled. Contact can\'t be added.'; -$a->strings['Connect/Follow'] = 'Connect/Follow'; -$a->strings['Please answer the following:'] = 'Please answer the following:'; -$a->strings['Your Identity Address:'] = 'My identity address:'; -$a->strings['Profile URL'] = 'Profile URL:'; -$a->strings['Tags:'] = 'Tags:'; -$a->strings['%s knows you'] = '%s knows you'; -$a->strings['Add a personal note:'] = 'Add a personal note:'; -$a->strings['Status Messages and Posts'] = 'Status Messages and Posts'; -$a->strings['The contact could not be added.'] = 'Contact could not be added.'; $a->strings['Unable to locate original post.'] = 'Unable to locate original post.'; -$a->strings['Empty post discarded.'] = 'Empty post discarded.'; $a->strings['Post updated.'] = 'Post updated.'; $a->strings['Item wasn\'t stored.'] = 'Item wasn\'t stored.'; $a->strings['Item couldn\'t be fetched.'] = 'Item couldn\'t be fetched.'; +$a->strings['Empty post discarded.'] = 'Empty post discarded.'; $a->strings['Item not found.'] = 'Item not found.'; +$a->strings['Permission denied.'] = 'Permission denied.'; $a->strings['No valid account found.'] = 'No valid account found.'; $a->strings['Password reset request issued. Check your email.'] = 'Password reset request issued. Please check your email.'; $a->strings[' @@ -194,9 +101,6 @@ $a->strings[' You may change that password from your account settings page after logging in. '; $a->strings['Your password has been changed at %s'] = 'Your password has been changed at %s'; -$a->strings['No keywords to match. Please add keywords to your profile.'] = 'No keywords to match. Please add keywords to your profile.'; -$a->strings['No matches'] = 'No matches'; -$a->strings['Profile Match'] = 'Profile Match'; $a->strings['New Message'] = 'New Message'; $a->strings['No recipient selected.'] = 'No recipient selected.'; $a->strings['Unable to locate contact information.'] = 'Unable to locate contact information.'; @@ -212,6 +116,10 @@ $a->strings['Send Private Message'] = 'Send private message'; $a->strings['To:'] = 'To:'; $a->strings['Subject:'] = 'Subject:'; $a->strings['Your message:'] = 'Your message:'; +$a->strings['Upload photo'] = 'Upload photo'; +$a->strings['Insert web link'] = 'Insert web link'; +$a->strings['Please wait'] = 'Please wait'; +$a->strings['Submit'] = 'Submit'; $a->strings['No messages.'] = 'No messages.'; $a->strings['Message not available.'] = 'Message not available.'; $a->strings['Delete message'] = 'Delete message'; @@ -228,18 +136,8 @@ $a->strings['%d message'] = [ ]; $a->strings['Personal Notes'] = 'Personal notes'; $a->strings['Personal notes are visible only by yourself.'] = 'Personal notes are visible only to you.'; -$a->strings['Subscribing to contacts'] = 'Subscribing to contacts'; -$a->strings['No contact provided.'] = 'No contact provided.'; -$a->strings['Couldn\'t fetch information for contact.'] = 'Couldn\'t fetch information for contact.'; -$a->strings['Couldn\'t fetch friends for contact.'] = 'Couldn\'t fetch friends for contact.'; -$a->strings['Couldn\'t fetch following contacts.'] = 'Couldn\'t fetch following contacts.'; -$a->strings['Couldn\'t fetch remote profile.'] = 'Couldn\'t fetch remote profile.'; -$a->strings['Unsupported network'] = 'Unsupported network'; -$a->strings['Done'] = 'Done'; -$a->strings['success'] = 'success'; -$a->strings['failed'] = 'failed'; -$a->strings['ignored'] = 'Ignored'; -$a->strings['Keep this window open until done.'] = 'Keep this window open until done.'; +$a->strings['Save'] = 'Save'; +$a->strings['User not found.'] = 'User not found.'; $a->strings['Photo Albums'] = 'Photo Albums'; $a->strings['Recent Photos'] = 'Recent photos'; $a->strings['Upload New Photos'] = 'Upload new photos'; @@ -251,21 +149,16 @@ $a->strings['Album was empty.'] = 'Album was empty.'; $a->strings['Failed to delete the photo.'] = 'Failed to delete the photo.'; $a->strings['a photo'] = 'a photo'; $a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s was tagged in %2$s by %3$s'; -$a->strings['Image exceeds size limit of %s'] = 'Image exceeds size limit of %s'; -$a->strings['Image upload didn\'t complete, please try again'] = 'Image upload didn\'t complete, please try again'; -$a->strings['Image file is missing'] = 'Image file is missing'; -$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Server can\'t accept new file upload at this time, please contact your administrator'; -$a->strings['Image file is empty.'] = 'Image file is empty.'; -$a->strings['Unable to process image.'] = 'Unable to process image.'; -$a->strings['Image upload failed.'] = 'Image upload failed.'; +$a->strings['Public access denied.'] = 'Public access denied.'; $a->strings['No photos selected'] = 'No photos selected'; -$a->strings['Access to this item is restricted.'] = 'Access to this item is restricted.'; $a->strings['Upload Photos'] = 'Upload photos'; $a->strings['New album name: '] = 'New album name: '; $a->strings['or select existing album:'] = 'or select existing album:'; $a->strings['Do not show a status post for this upload'] = 'Do not show a status post for this upload'; +$a->strings['Permissions'] = 'Permissions'; $a->strings['Do you really want to delete this photo album and all its photos?'] = 'Do you really want to delete this photo album and all its photos?'; $a->strings['Delete Album'] = 'Delete album'; +$a->strings['Cancel'] = 'Cancel'; $a->strings['Edit Album'] = 'Edit album'; $a->strings['Drop Album'] = 'Drop album'; $a->strings['Show Newest First'] = 'Show newest first'; @@ -292,6 +185,8 @@ $a->strings['Rotate CW (right)'] = 'Rotate right (CW)'; $a->strings['Rotate CCW (left)'] = 'Rotate left (CCW)'; $a->strings['This is you'] = 'This is me'; $a->strings['Comment'] = 'Comment'; +$a->strings['Preview'] = 'Preview'; +$a->strings['Loading...'] = 'Loading...'; $a->strings['Select'] = 'Select'; $a->strings['Delete'] = 'Delete'; $a->strings['Like'] = 'Like'; @@ -299,235 +194,13 @@ $a->strings['I like this (toggle)'] = 'I like this (toggle)'; $a->strings['Dislike'] = 'Dislike'; $a->strings['I don\'t like this (toggle)'] = 'I don\'t like this (toggle)'; $a->strings['Map'] = 'Map'; -$a->strings['View Album'] = 'View album'; -$a->strings['{0} wants to be your friend'] = '{0} wants to be your friend'; -$a->strings['{0} requested registration'] = '{0} requested registration'; -$a->strings['{0} and %d others requested registration'] = '{0} and %d others requested registration'; -$a->strings['Bad Request.'] = 'Bad Request.'; -$a->strings['Contact not found.'] = 'Contact not found.'; -$a->strings['[Friendica System Notify]'] = '[Friendica System Notify]'; -$a->strings['User deleted their account'] = 'User deleted their account'; -$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'On your Friendica node a user deleted their account. Please ensure that their data is removed from the backups.'; -$a->strings['The user id is %d'] = 'The user id is %d'; -$a->strings['Remove My Account'] = 'Remove My Account'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'This will completely remove your account. Once this has been done it is not recoverable.'; -$a->strings['Please enter your password for verification:'] = 'Please enter your password for verification:'; -$a->strings['Resubscribing to OStatus contacts'] = 'Resubscribing to OStatus contacts'; -$a->strings['Error'] = [ - 0 => 'Error', - 1 => 'Errors', -]; -$a->strings['Failed to connect with email account using the settings provided.'] = 'Failed to connect with email account using the settings provided.'; -$a->strings['Contact CSV file upload error'] = 'Contact CSV file upload error'; -$a->strings['Importing Contacts done'] = 'Importing contacts done'; -$a->strings['Relocate message has been send to your contacts'] = 'Relocate message has been send to your contacts'; -$a->strings['Passwords do not match.'] = 'Passwords do not match.'; -$a->strings['Password update failed. Please try again.'] = 'Password update failed. Please try again.'; -$a->strings['Password changed.'] = 'Password changed.'; -$a->strings['Password unchanged.'] = 'Password unchanged.'; -$a->strings['Please use a shorter name.'] = 'Please use a shorter name.'; -$a->strings['Name too short.'] = 'Name too short.'; -$a->strings['Wrong Password.'] = 'Wrong password.'; -$a->strings['Invalid email.'] = 'Invalid email.'; -$a->strings['Cannot change to that email.'] = 'Cannot change to that email.'; -$a->strings['Private forum has no privacy permissions. Using default privacy group.'] = 'Private forum has no privacy permissions. Using default privacy group.'; -$a->strings['Private forum has no privacy permissions and no default privacy group.'] = 'Private forum has no privacy permissions and no default privacy group.'; -$a->strings['Settings were not updated.'] = 'Settings were not updated.'; -$a->strings['Connected Apps'] = 'Connected Apps'; -$a->strings['Name'] = 'Name:'; -$a->strings['Home Page'] = 'Home page'; -$a->strings['Created'] = 'Created'; -$a->strings['Remove authorization'] = 'Remove authorization'; -$a->strings['Addon Settings'] = 'Addon settings'; -$a->strings['No Addon settings configured'] = 'No addon settings configured'; -$a->strings['Additional Features'] = 'Additional Features'; -$a->strings['Save Settings'] = 'Save settings'; -$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'diaspora* (Socialhome, Hubzilla)'; -$a->strings['enabled'] = 'enabled'; -$a->strings['disabled'] = 'disabled'; -$a->strings['Built-in support for %s connectivity is %s'] = 'Built-in support for %s connectivity is %s'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; -$a->strings['Email access is disabled on this site.'] = 'Email access is disabled on this site.'; -$a->strings['None'] = 'None'; -$a->strings['Social Networks'] = 'Social networks'; -$a->strings['General Social Media Settings'] = 'General Social Media Settings'; -$a->strings['Accept only top level posts by contacts you follow'] = 'Accept only top-level posts by contacts you follow'; -$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.'] = 'The system automatically completes threads when a comment arrives. This has a side effect that you may receive posts started by someone you don\'t follow, because one of your followers commented there. This setting will deactivate this behaviour. If activated, you will only receive posts from people you really do follow.'; -$a->strings['Enable Content Warning'] = 'Enable Content Warning'; -$a->strings['Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.'] = 'Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.'; -$a->strings['Enable intelligent shortening'] = 'Enable intelligent shortening'; -$a->strings['Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.'] = 'Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original Friendica post.'; -$a->strings['Enable simple text shortening'] = 'Enable simple text shortening'; -$a->strings['Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'] = 'Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'; -$a->strings['Attach the link title'] = 'Attach the link title'; -$a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'If 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.'; -$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Your legacy ActivityPub/GNU Social account'; -$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'; -$a->strings['Repair OStatus subscriptions'] = 'Repair OStatus subscriptions'; -$a->strings['Email/Mailbox Setup'] = 'Email/Mailbox setup'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Specify how to connect to your mailbox, if you wish to communicate with existing email contacts.'; -$a->strings['Last successful email check:'] = 'Last successful email check:'; -$a->strings['IMAP server name:'] = 'IMAP server name:'; -$a->strings['IMAP port:'] = 'IMAP port:'; -$a->strings['Security:'] = 'Security:'; -$a->strings['Email login name:'] = 'Email login name:'; -$a->strings['Email password:'] = 'Email password:'; -$a->strings['Reply-to address:'] = 'Reply-to address:'; -$a->strings['Send public posts to all email contacts:'] = 'Send public posts to all email contacts:'; -$a->strings['Action after import:'] = 'Action after import:'; -$a->strings['Mark as seen'] = 'Mark as seen'; -$a->strings['Move to folder'] = 'Move to folder'; -$a->strings['Move to folder:'] = 'Move to folder:'; -$a->strings['Unable to find your profile. Please contact your admin.'] = 'Unable to find your profile. Please contact your admin.'; -$a->strings['Account Types'] = 'Account types'; -$a->strings['Personal Page Subtypes'] = 'Personal Page subtypes'; -$a->strings['Community Forum Subtypes'] = 'Community forum subtypes'; -$a->strings['Personal Page'] = 'Personal Page'; -$a->strings['Account for a personal profile.'] = 'Account for a personal profile.'; -$a->strings['Organisation Page'] = 'Organisation Page'; -$a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'Account for an organisation that automatically approves contact requests as "Followers".'; -$a->strings['News Page'] = 'News Page'; -$a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'Account for a news reflector that automatically approves contact requests as "Followers".'; -$a->strings['Community Forum'] = 'Community Forum'; -$a->strings['Account for community discussions.'] = 'Account for community discussions.'; -$a->strings['Normal Account Page'] = 'Standard'; -$a->strings['Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'] = 'Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'; -$a->strings['Soapbox Page'] = 'Soapbox'; -$a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'Account for a public profile that automatically approves contact requests as "Followers".'; -$a->strings['Public Forum'] = 'Public forum'; -$a->strings['Automatically approves all contact requests.'] = 'Automatically approves all contact requests.'; -$a->strings['Automatic Friend Page'] = 'Love-all'; -$a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'Account for a popular profile that automatically approves contact requests as "Friends".'; -$a->strings['Private Forum [Experimental]'] = 'Private forum [Experimental]'; -$a->strings['Requires manual approval of contact requests.'] = 'Requires manual approval of contact requests.'; -$a->strings['OpenID:'] = 'OpenID:'; -$a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Optional) Allow this OpenID to login to this account.'; -$a->strings['Publish your profile in your local site directory?'] = 'Publish your profile in your local site directory?'; -$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.'] = 'Your profile will be published in this node\'s local directory. Your profile details may be publicly visible depending on the system settings.'; -$a->strings['Your profile will also be published in the global friendica directories (e.g. %s).'] = 'Your profile will also be published in the global Friendica directories (e.g. %s).'; -$a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'My identity address: \'%s\' or \'%s\''; -$a->strings['Account Settings'] = 'Account Settings'; -$a->strings['Password Settings'] = 'Password change'; -$a->strings['New Password:'] = 'New password:'; -$a->strings['Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).'] = 'Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon.'; -$a->strings['Confirm:'] = 'Confirm new password:'; -$a->strings['Leave password fields blank unless changing'] = 'Leave password fields blank unless changing'; -$a->strings['Current Password:'] = 'Current password:'; -$a->strings['Your current password to confirm the changes'] = 'Current password to confirm change'; -$a->strings['Password:'] = 'Password:'; -$a->strings['Your current password to confirm the changes of the email address'] = 'Your current password to confirm the changes of the email address'; -$a->strings['Delete OpenID URL'] = 'Delete OpenID URL'; -$a->strings['Basic Settings'] = 'Basic information'; -$a->strings['Full Name:'] = 'Full name:'; -$a->strings['Email Address:'] = 'Email address:'; -$a->strings['Your Timezone:'] = 'Time zone:'; -$a->strings['Your Language:'] = 'Language:'; -$a->strings['Set the language we use to show you friendica interface and to send you emails'] = 'Set the language of your Friendica interface and emails sent to you.'; -$a->strings['Default Post Location:'] = 'Posting location:'; -$a->strings['Use Browser Location:'] = 'Use browser location:'; -$a->strings['Security and Privacy Settings'] = 'Security and privacy'; -$a->strings['Maximum Friend Requests/Day:'] = 'Maximum friend requests per day:'; -$a->strings['(to prevent spam abuse)'] = 'May prevent spam or abuse registrations'; -$a->strings['Allow your profile to be searchable globally?'] = 'Allow your profile to be searchable globally?'; -$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.'] = '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.'; -$a->strings['Hide your contact/friend list from viewers of your profile?'] = 'Hide your contact/friend list from viewers of your profile?'; -$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 list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list.'; -$a->strings['Hide your profile details from anonymous viewers?'] = 'Hide profile details from anonymous viewers?'; -$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.'] = '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 may still be accessible by other means.'; -$a->strings['Make public posts unlisted'] = 'Make public posts unlisted'; -$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.'] = '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->strings['Make all posted pictures accessible'] = 'Make all posted pictures accessible'; -$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.'] = '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.'; -$a->strings['Allow friends to post to your profile page?'] = 'Allow friends to post to my wall?'; -$a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'; -$a->strings['Allow friends to tag your posts?'] = 'Allow friends to tag my post?'; -$a->strings['Your contacts can add additional tags to your posts.'] = 'Your contacts can add additional tags to your posts.'; -$a->strings['Permit unknown people to send you private mail?'] = 'Allow unknown people to send me private messages?'; -$a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Friendica network users may send you private messages even if they are not in your contact list.'; -$a->strings['Maximum private messages per day from unknown people:'] = 'Maximum private messages per day from unknown people:'; -$a->strings['Default Post Permissions'] = 'Default post permissions'; -$a->strings['Expiration settings'] = 'Expiration settings'; -$a->strings['Automatically expire posts after this many days:'] = 'Automatically expire posts after this many days:'; -$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Posts will not expire if empty; expired posts will be deleted'; -$a->strings['Expire posts'] = 'Expire posts'; -$a->strings['When activated, posts and comments will be expired.'] = 'If activated, posts and comments will expire.'; -$a->strings['Expire personal notes'] = 'Expire personal notes'; -$a->strings['When activated, the personal notes on your profile page will be expired.'] = 'If activated, personal notes on your profile page will expire.'; -$a->strings['Expire starred posts'] = 'Expire starred posts'; -$a->strings['Starring posts keeps them from being expired. That behaviour is overwritten by this setting.'] = 'Starring posts keeps them from being expired. That behaviour is overwritten by this setting.'; -$a->strings['Expire photos'] = 'Expire photos'; -$a->strings['When activated, photos will be expired.'] = 'If activated, photos will expire.'; -$a->strings['Only expire posts by others'] = 'Only expire posts by others'; -$a->strings['When activated, your own posts never expire. Then the settings above are only valid for posts you received.'] = 'If activated, your own posts never expire. Than the settings above are only valid for posts you received.'; -$a->strings['Notification Settings'] = 'Notification'; -$a->strings['Send a notification email when:'] = 'Send notification email when:'; -$a->strings['You receive an introduction'] = 'Receiving an introduction'; -$a->strings['Your introductions are confirmed'] = 'My introductions are confirmed'; -$a->strings['Someone writes on your profile wall'] = 'Someone writes on my wall'; -$a->strings['Someone writes a followup comment'] = 'A follow up comment is posted'; -$a->strings['You receive a private message'] = 'receiving a private message'; -$a->strings['You receive a friend suggestion'] = 'Receiving a friend suggestion'; -$a->strings['You are tagged in a post'] = 'Tagged in a post'; -$a->strings['You are poked/prodded/etc. in a post'] = 'Poked in a post'; -$a->strings['Create a desktop notification when:'] = 'Create a desktop notification when:'; -$a->strings['Someone liked your content'] = 'Someone liked your content'; -$a->strings['Someone shared your content'] = 'Someone shared your content'; -$a->strings['Activate desktop notifications'] = 'Activate desktop notifications'; -$a->strings['Show desktop popup on new notifications'] = 'Show desktop pop-up on new notifications'; -$a->strings['Text-only notification emails'] = 'Text-only notification emails'; -$a->strings['Send text only notification emails, without the html part'] = 'Receive text only emails without HTML '; -$a->strings['Show detailled notifications'] = 'Show detailled notifications'; -$a->strings['Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.'] = 'By default, notifications are condensed into a single notification for each item. If enabled, every notification is displayed.'; -$a->strings['Show notifications of ignored contacts'] = 'Show notifications of ignored contacts'; -$a->strings['You don\'t see posts from ignored contacts. But you still see their comments. This setting controls if you want to still receive regular notifications that are caused by ignored contacts or not.'] = 'You don\'t see posts from ignored contacts. But you still see their comments. This setting controls if you want to still receive regular notifications that are caused by ignored contacts or not.'; -$a->strings['Advanced Account/Page Type Settings'] = 'Advanced account types'; -$a->strings['Change the behaviour of this account for special situations'] = 'Change behaviour of this account for special situations'; -$a->strings['Import Contacts'] = 'Import Contacts'; -$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'; -$a->strings['Upload File'] = 'Upload File'; -$a->strings['Relocate'] = 'Recent relocation'; -$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.'] = 'If you have moved this profile from another server and some of your contacts don\'t receive your updates:'; -$a->strings['Resend relocate message to contacts'] = 'Resend relocation message to contacts'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'No suggestions available. If this is a new site, please try again in 24 hours.'; -$a->strings['Friend Suggestions'] = 'Friend suggestions'; -$a->strings['photo'] = 'photo'; -$a->strings['status'] = 'status'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s tagged %2$s\'s %3$s with %4$s'; -$a->strings['Remove Item Tag'] = 'Remove Item tag'; -$a->strings['Select a tag to remove: '] = 'Select a tag to remove: '; -$a->strings['Remove'] = 'Remove'; -$a->strings['User imports on closed servers can only be done by an administrator.'] = 'User imports on closed servers can only be done by an administrator.'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'; -$a->strings['Import'] = 'Import profile'; -$a->strings['Move account'] = 'Move Existing Friendica Account'; -$a->strings['You can import an account from another Friendica server.'] = 'You can import an existing Friendica profile to this node.'; -$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.'] = '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.'; -$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from diaspora*.'; -$a->strings['Account file'] = 'Account file:'; -$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'To export your account, go to "Settings->Export personal data" and select "Export account"'; -$a->strings['You aren\'t following this contact.'] = 'You aren\'t following this contact.'; -$a->strings['Unfollowing is currently not supported by your network.'] = 'Unfollowing is currently not supported by your network.'; -$a->strings['Disconnect/Unfollow'] = 'Disconnect/Unfollow'; -$a->strings['Unable to unfollow this contact, please retry in a few minutes or contact your administrator.'] = 'Unable to unfollow this contact, please retry in a few minutes or contact your administrator.'; -$a->strings['Contact was successfully unfollowed'] = 'Contact was successfully unfollowed'; -$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Unable to unfollow this contact, please contact your administrator'; -$a->strings['Invalid request.'] = 'Invalid request.'; -$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Sorry, maybe your upload is bigger than the PHP configuration allows'; -$a->strings['Or - did you try to upload an empty file?'] = 'Or did you try to upload an empty file?'; -$a->strings['File exceeds size limit of %s'] = 'File exceeds size limit of %s'; -$a->strings['File upload failed.'] = 'File upload failed.'; -$a->strings['Wall Photos'] = 'Wall photos'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Number of daily wall messages for %s exceeded. Message failed.'; -$a->strings['Unable to check your home location.'] = 'Unable to check your home location.'; -$a->strings['No recipient.'] = 'No recipient.'; -$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'; $a->strings['No system theme config value set.'] = 'No system theme configuration value set.'; -$a->strings['You must be logged in to use addons. '] = 'You must be logged in to use addons. '; $a->strings['Delete this item?'] = '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.'] = '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'] = 'Toggle mobile'; $a->strings['Method not allowed for this module. Allowed method(s): %s'] = 'Method not allowed for this module. Allowed method(s): %s'; $a->strings['Page not found.'] = 'Page not found'; +$a->strings['You must be logged in to use addons. '] = 'You must be logged in to use addons. '; $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.'] = 'The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours.'; $a->strings['All contacts'] = 'All contacts'; $a->strings['Followers'] = 'Followers'; @@ -547,7 +220,10 @@ $a->strings['Done.'] = 'Done.'; $a->strings['Execute pending post updates.'] = 'Execute pending post updates.'; $a->strings['All pending post updates are done.'] = 'All pending post updates are done.'; $a->strings['Enter user nickname: '] = 'Enter user nickname: '; +$a->strings['User not found'] = 'User not found'; $a->strings['Enter new password: '] = 'Enter new password: '; +$a->strings['Password update failed. Please try again.'] = 'Password update failed. Please try again.'; +$a->strings['Password changed.'] = 'Password changed.'; $a->strings['Enter user name: '] = 'Enter user name: '; $a->strings['Enter user email address: '] = 'Enter user email address: '; $a->strings['Enter a language (optional): '] = 'Enter a language (optional): '; @@ -584,25 +260,12 @@ $a->strings['GNU Social Connector'] = 'GNU Social Connector'; $a->strings['ActivityPub'] = 'ActivityPub'; $a->strings['pnut'] = 'pnut'; $a->strings['%s (via %s)'] = '%s (via %s)'; -$a->strings['%s likes this.'] = '%s likes this.'; -$a->strings['%s doesn\'t like this.'] = '%s doesn\'t like this.'; -$a->strings['%s attends.'] = '%s attends.'; -$a->strings['%s doesn\'t attend.'] = '%s doesn\'t attend.'; -$a->strings['%s attends maybe.'] = '%s may attend.'; -$a->strings['%s reshared this.'] = '%s reshared this.'; $a->strings['and'] = 'and'; $a->strings['and %d other people'] = 'and %d other people'; -$a->strings['%2$d people like this'] = '%2$d people like this'; -$a->strings['%s like this.'] = '%s like this.'; -$a->strings['%2$d people don\'t like this'] = '%2$d people don\'t like this'; -$a->strings['%s don\'t like this.'] = '%s don\'t like this.'; -$a->strings['%2$d people attend'] = '%2$d people attend'; -$a->strings['%s attend.'] = '%s attend.'; -$a->strings['%2$d people don\'t attend'] = '%2$d people don\'t attend'; -$a->strings['%s don\'t attend.'] = '%s don\'t attend.'; -$a->strings['%2$d people attend maybe'] = '%2$d people attend maybe'; -$a->strings['%s attend maybe.'] = '%s may be attending.'; -$a->strings['%2$d people reshared this'] = '%2$d people reshared this'; +$a->strings[' doesn\'t like this'] = [ + 0 => ' doesn\'t like this', + 1 => ' don\'t like this', +]; $a->strings['Visible to everybody'] = 'Visible to everybody'; $a->strings['Please enter a image/video/audio/webpage URL:'] = 'Please enter an image/video/audio/webpage URL:'; $a->strings['Tag term:'] = 'Tag term:'; @@ -611,6 +274,9 @@ $a->strings['Where are you right now?'] = 'Where are you right now?'; $a->strings['Delete item(s)?'] = 'Delete item(s)?'; $a->strings['New Post'] = 'New post'; $a->strings['Share'] = 'Share'; +$a->strings['upload photo'] = 'upload photo'; +$a->strings['Attach file'] = 'Attach file'; +$a->strings['attach file'] = 'attach file'; $a->strings['Bold'] = 'Bold'; $a->strings['Italic'] = 'Italic'; $a->strings['Underline'] = 'Underline'; @@ -620,52 +286,67 @@ $a->strings['Image'] = 'Image'; $a->strings['Link'] = 'Link'; $a->strings['Link or Media'] = 'Link or media'; $a->strings['Video'] = 'Video'; +$a->strings['Set your location'] = 'Set your location'; +$a->strings['set location'] = 'set location'; +$a->strings['Clear browser location'] = 'Clear browser location'; +$a->strings['clear location'] = 'clear location'; +$a->strings['Set title'] = 'Set title'; +$a->strings['Categories (comma-separated list)'] = 'Categories (comma-separated list)'; $a->strings['Scheduled at'] = 'Scheduled at'; +$a->strings['Permission settings'] = 'Permission settings'; +$a->strings['Public post'] = 'Public post'; +$a->strings['Message'] = 'Message'; +$a->strings['Browser'] = 'Browser'; +$a->strings['Open Compose page'] = 'Open Compose page'; +$a->strings['remove'] = 'Remove'; +$a->strings['Delete Selected Items'] = 'Delete selected items'; +$a->strings['You had been addressed (%s).'] = 'You had been addressed (%s).'; +$a->strings['You are following %s.'] = 'You are following %s.'; +$a->strings['%s reshared this.'] = '%s reshared this.'; +$a->strings['Reshared'] = 'Reshared'; +$a->strings['Reshared by %s <%s>'] = 'Reshared by %s <%s>'; +$a->strings['%s is participating in this thread.'] = '%s is participating in this thread.'; +$a->strings['Fetched'] = 'Fetched'; +$a->strings['Fetched because of %s <%s>'] = 'Fetched because of %s <%s>'; $a->strings['View %s\'s profile @ %s'] = 'View %s\'s profile @ %s'; $a->strings['Categories:'] = 'Categories:'; $a->strings['Filed under:'] = 'Filed under:'; $a->strings['%s from %s'] = '%s from %s'; $a->strings['View in context'] = 'View in context'; -$a->strings['remove'] = 'Remove'; -$a->strings['Delete Selected Items'] = 'Delete selected items'; -$a->strings['You had been addressed (%s).'] = 'You had been addressed (%s).'; -$a->strings['You are following %s.'] = 'You are following %s.'; -$a->strings['Tagged'] = 'Tagged'; -$a->strings['Reshared'] = 'Reshared'; -$a->strings['Reshared by %s <%s>'] = 'Reshared by %s <%s>'; -$a->strings['%s is participating in this thread.'] = '%s is participating in this thread.'; -$a->strings['Stored'] = 'Stored'; -$a->strings['Global'] = 'Global'; -$a->strings['Relayed'] = 'Relayed'; -$a->strings['Relayed by %s <%s>'] = 'Relayed by %s <%s>'; -$a->strings['Fetched'] = 'Fetched'; -$a->strings['Fetched because of %s <%s>'] = 'Fetched because of %s <%s>'; +$a->strings['Local Community'] = 'Local community'; +$a->strings['Posts from local users on this server'] = 'Posts from local users on this server'; +$a->strings['Global Community'] = 'Global community'; +$a->strings['Posts from users of the whole federated network'] = 'Posts from users of the whole federated network'; +$a->strings['Latest Activity'] = 'Latest activity'; +$a->strings['Sort by latest activity'] = 'Sort by latest activity'; +$a->strings['Latest Posts'] = 'Latest posts'; +$a->strings['Sort by post received date'] = 'Sort by post received date'; +$a->strings['Personal'] = 'Personal'; +$a->strings['Posts that mention or involve you'] = 'Posts mentioning or involving me'; +$a->strings['Starred'] = 'Starred'; +$a->strings['Favourite Posts'] = 'My favourite posts'; $a->strings['General Features'] = 'General'; $a->strings['Photo Location'] = 'Photo location'; $a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'Photo metadata is normally removed. This extracts the location (if present) prior to removing metadata and links it to a map.'; $a->strings['Trending Tags'] = 'Trending Tags'; $a->strings['Show a community page widget with a list of the most popular tags in recent public posts.'] = 'Show a community page widget with a list of the most popular tags in recent public posts.'; $a->strings['Post Composition Features'] = 'Post composition'; -$a->strings['Auto-mention Forums'] = 'Auto-mention forums'; -$a->strings['Add/remove mention when a forum page is selected/deselected in ACL window.'] = 'Add/Remove mention when a forum page is selected or deselected in the ACL window.'; $a->strings['Explicit Mentions'] = 'Explicit mentions'; $a->strings['Add explicit mentions to comment box for manual control over who gets mentioned in replies.'] = 'Add explicit mentions to comment box for manual control over who gets mentioned in replies.'; $a->strings['Post/Comment Tools'] = 'Post/Comment tools'; $a->strings['Post Categories'] = 'Post categories'; $a->strings['Add categories to your posts'] = 'Add categories to your posts'; $a->strings['Advanced Profile Settings'] = 'Advanced profiles'; -$a->strings['List Forums'] = 'List forums'; -$a->strings['Show visitors public community forums at the Advanced Profile Page'] = 'Show visitors of public community forums at the advanced profile page'; $a->strings['Tag Cloud'] = 'Tag cloud'; $a->strings['Provide a personal tag cloud on your profile page'] = 'Provides a personal tag cloud on your profile page'; $a->strings['Display Membership Date'] = 'Display membership date'; $a->strings['Display membership date in profile'] = 'Display membership date in profile'; -$a->strings['Forums'] = 'Forums'; -$a->strings['External link to forum'] = 'External link to forum'; $a->strings['show less'] = 'show less'; $a->strings['show more'] = 'Show more...'; -$a->strings['%1$s poked %2$s'] = '%1$s poked %2$s'; $a->strings['event'] = 'event'; +$a->strings['status'] = 'status'; +$a->strings['photo'] = 'photo'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s tagged %2$s\'s %3$s with %4$s'; $a->strings['Follow Thread'] = 'Follow thread'; $a->strings['View Status'] = 'View status'; $a->strings['View Profile'] = 'View profile'; @@ -676,26 +357,25 @@ $a->strings['Send PM'] = 'Send PM'; $a->strings['Block'] = 'Block'; $a->strings['Ignore'] = 'Ignore'; $a->strings['Languages'] = 'Languages'; -$a->strings['Poke'] = 'Poke'; +$a->strings['Connect/Follow'] = 'Connect/Follow'; $a->strings['Nothing new here'] = 'Nothing new here'; $a->strings['Go back'] = 'Go back'; $a->strings['Clear notifications'] = 'Clear notifications'; -$a->strings['@name, !forum, #tags, content'] = '@name, !forum, #tags, content'; $a->strings['Logout'] = 'Logout'; $a->strings['End this session'] = 'End this session'; $a->strings['Login'] = 'Login'; $a->strings['Sign in'] = 'Sign in'; -$a->strings['Status'] = 'Status'; -$a->strings['Your posts and conversations'] = 'My posts and conversations'; $a->strings['Profile'] = 'Profile'; $a->strings['Your profile page'] = 'My profile page'; +$a->strings['Photos'] = 'Photos'; $a->strings['Your photos'] = 'My photos'; $a->strings['Media'] = 'Media'; $a->strings['Your postings with media'] = 'Your postings with media'; -$a->strings['Your events'] = 'My events'; +$a->strings['Calendar'] = 'Calendar'; $a->strings['Personal notes'] = 'Personal notes'; $a->strings['Your personal notes'] = 'My personal notes'; $a->strings['Home'] = 'Home'; +$a->strings['Home Page'] = 'Home page'; $a->strings['Register'] = 'Sign up now >>'; $a->strings['Create an account'] = 'Create account'; $a->strings['Help'] = 'Help'; @@ -709,7 +389,6 @@ $a->strings['Tags'] = 'Tags'; $a->strings['Contacts'] = 'Contacts'; $a->strings['Community'] = 'Community'; $a->strings['Conversations on this and other servers'] = 'Conversations on this and other servers'; -$a->strings['Events and Calendar'] = 'Events and calendar'; $a->strings['Directory'] = 'Directory'; $a->strings['People directory'] = 'People directory'; $a->strings['Information'] = 'Information'; @@ -718,11 +397,12 @@ $a->strings['Terms of Service'] = 'Terms of Service'; $a->strings['Terms of Service of this Friendica instance'] = 'Terms of Service for this Friendica instance'; $a->strings['Network'] = 'Network'; $a->strings['Conversations from your friends'] = 'My friends\' conversations'; +$a->strings['Your posts and conversations'] = 'My posts and conversations'; $a->strings['Introductions'] = 'Introductions'; $a->strings['Friend Requests'] = 'Friend requests'; $a->strings['Notifications'] = 'Notifications'; $a->strings['See all notifications'] = 'See all notifications'; -$a->strings['Mark all system notifications seen'] = 'Mark all system notifications seen'; +$a->strings['Mark as seen'] = 'Mark as seen'; $a->strings['Private mail'] = 'Private messages'; $a->strings['Inbox'] = 'Inbox'; $a->strings['Outbox'] = 'Outbox'; @@ -764,12 +444,12 @@ $a->strings['Find People'] = 'Find people'; $a->strings['Enter name or interest'] = 'Enter name or interest'; $a->strings['Examples: Robert Morgenstein, Fishing'] = 'Examples: Robert Morgenstein, fishing'; $a->strings['Find'] = 'Find'; +$a->strings['Friend Suggestions'] = 'Friend suggestions'; $a->strings['Similar Interests'] = 'Similar interests'; $a->strings['Random Profile'] = 'Random profile'; $a->strings['Invite Friends'] = 'Invite friends'; $a->strings['Global Directory'] = 'Global directory'; $a->strings['Local Directory'] = 'Local directory'; -$a->strings['Groups'] = 'Groups'; $a->strings['Everyone'] = 'Everyone'; $a->strings['Relationships'] = 'Relationships'; $a->strings['All Contacts'] = 'All contacts'; @@ -786,6 +466,7 @@ $a->strings['Archives'] = 'Archives'; $a->strings['Persons'] = 'Persons'; $a->strings['Organisations'] = 'Organisations'; $a->strings['News'] = 'News'; +$a->strings['Account Types'] = 'Account types'; $a->strings['All'] = 'All'; $a->strings['Export'] = 'Export'; $a->strings['Export calendar as ical'] = 'Export calendar as ical'; @@ -805,6 +486,7 @@ $a->strings['Trending Tags (last %d hour)'] = [ $a->strings['More Trending Tags'] = 'More Trending Tags'; $a->strings['XMPP:'] = 'XMPP:'; $a->strings['Matrix:'] = 'Matrix:'; +$a->strings['Location:'] = 'Location:'; $a->strings['Network:'] = 'Network:'; $a->strings['Unfollow'] = 'Unfollow'; $a->strings['Yourself'] = 'Yourself'; @@ -816,6 +498,8 @@ $a->strings['Limited/Private'] = 'Limited/Private'; $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.'] = 'This post 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 publicly.'; $a->strings['Show to:'] = 'Show to:'; $a->strings['Except to:'] = 'Except to:'; +$a->strings['CC: email addresses'] = 'CC: email addresses'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Example: bob@example.com, mary@example.com'; $a->strings['Connectors'] = 'Connectors'; $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.'] = '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->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'You may need to import the file "database.sql" manually using phpmyadmin or mysql.'; @@ -920,21 +604,14 @@ $a->strings['Sep'] = 'Sep'; $a->strings['Oct'] = 'Oct'; $a->strings['Nov'] = 'Nov'; $a->strings['Dec'] = 'Dec'; -$a->strings['poke'] = 'poke'; -$a->strings['poked'] = 'poked'; -$a->strings['ping'] = 'ping'; -$a->strings['pinged'] = 'pinged'; -$a->strings['prod'] = 'prod'; -$a->strings['prodded'] = 'prodded'; -$a->strings['slap'] = 'slap'; -$a->strings['slapped'] = 'slapped'; -$a->strings['finger'] = 'finger'; -$a->strings['fingered'] = 'fingered'; -$a->strings['rebuff'] = 'rebuff'; -$a->strings['rebuffed'] = 'rebuffed'; +$a->strings['The logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'The logfile \'%s\' is not usable. No logging is possible (error: \'%s\').'; +$a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'The debug logfile \'%s\' is not usable. No logging is possible (error: \'%s\').'; $a->strings['Friendica can\'t display this page at the moment, please contact the administrator.'] = 'Friendica can\'t display this page at the moment, please contact the administrator.'; $a->strings['template engine cannot be registered without a name.'] = 'template engine cannot be registered without a name.'; $a->strings['template engine is not registered!'] = 'template engine is not registered!'; +$a->strings['Storage base path'] = 'Storage base path'; +$a->strings['Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree'] = 'Folder where uploaded files are saved. For maximum security, this should be a path outside web server folder tree'; +$a->strings['Enter a valid existing folder'] = 'Enter a valid existing folder'; $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.'] = 'Updates from version %s are not supported. Please update at least to version 2021.01 and wait until the postupdate finished version 1383.'; $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.'] = '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->strings['%s: executing pre update %d'] = '%s: executing pre update %d'; @@ -951,19 +628,6 @@ $a->strings[' friendica developer if you can not help me on your own. My database might be invalid.'; $a->strings['The error message is\n[pre]%s[/pre]'] = 'The error message is\n[pre]%s[/pre]'; $a->strings['[Friendica Notify] Database update'] = '[Friendica Notify] Database update'; -$a->strings[' - The friendica database was successfully updated from %s to %s.'] = ' - The friendica database was successfully updated from %s to %s.'; -$a->strings['Error decoding account file'] = 'Error decoding account file'; -$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Error! No version data in file! Is this a Friendica account file?'; -$a->strings['User \'%s\' already exists on this server!'] = 'User \'%s\' already exists on this server!'; -$a->strings['User creation error'] = 'User creation error'; -$a->strings['%d contact not imported'] = [ - 0 => '%d contact not imported', - 1 => '%d contacts not imported', -]; -$a->strings['User profile creation error'] = 'User profile creation error'; -$a->strings['Done. You can now login with your username and password'] = 'Done. You can now login with your username and password'; $a->strings['The database version had been set to %s.'] = 'The database version had been set to %s.'; $a->strings['The post update is at version %d, it has to be at %d to safely drop the tables.'] = 'The post update is at version %d, it has to be at %d to safely drop the tables.'; $a->strings['No unused tables found.'] = 'No unused tables found.'; @@ -981,10 +645,11 @@ $a->strings['%s: updating %s table.'] = '%s: updating %s table.'; $a->strings['Unauthorized'] = 'Unauthorized'; $a->strings['Internal Server Error'] = 'Internal Server Error'; $a->strings['Legacy module file not found: %s'] = 'Legacy module file not found: %s'; -$a->strings['UnFollow'] = 'Unfollow'; +$a->strings['Everybody'] = 'Everybody'; +$a->strings['edit'] = 'edit'; +$a->strings['add'] = 'add'; $a->strings['Approve'] = 'Approve'; $a->strings['Organisation'] = 'Organisation'; -$a->strings['Forum'] = 'Forum'; $a->strings['Disallowed profile URL.'] = 'Disallowed profile URL.'; $a->strings['Blocked domain'] = 'Blocked domain'; $a->strings['Connect URL missing.'] = 'Connect URL missing.'; @@ -1002,7 +667,12 @@ $a->strings['Starts:'] = 'Starts:'; $a->strings['Finishes:'] = 'Finishes:'; $a->strings['all-day'] = 'All-day'; $a->strings['Sept'] = 'Sep'; +$a->strings['today'] = 'today'; +$a->strings['month'] = 'month'; +$a->strings['week'] = 'week'; +$a->strings['day'] = 'day'; $a->strings['No events to display'] = 'No events to display'; +$a->strings['Access to this profile has been restricted.'] = 'Access to this profile has been restricted.'; $a->strings['l, F j'] = 'l, F j'; $a->strings['Edit event'] = 'Edit event'; $a->strings['Duplicate event'] = 'Duplicate event'; @@ -1014,32 +684,23 @@ $a->strings['Show map'] = 'Show map'; $a->strings['Hide map'] = 'Hide map'; $a->strings['%s\'s birthday'] = '%s\'s birthday'; $a->strings['Happy Birthday %s'] = 'Happy Birthday, %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.'] = 'A deleted group with this name has been 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.'; -$a->strings['Default privacy group for new contacts'] = 'Default privacy group for new contacts'; -$a->strings['Everybody'] = 'Everybody'; -$a->strings['edit'] = 'edit'; -$a->strings['add'] = 'add'; -$a->strings['Edit group'] = 'Edit group'; -$a->strings['Contacts not in any group'] = 'Contacts not in any group'; -$a->strings['Create a new group'] = 'Create new group'; -$a->strings['Group Name: '] = 'Group name: '; -$a->strings['Edit groups'] = 'Edit groups'; $a->strings['activity'] = 'activity'; $a->strings['post'] = 'post'; $a->strings['Content warning: %s'] = 'Content warning: %s'; $a->strings['bytes'] = 'bytes'; $a->strings['View on separate page'] = 'View on separate page'; $a->strings['[no subject]'] = '[no subject]'; +$a->strings['Wall Photos'] = 'Wall photos'; $a->strings['Edit profile'] = 'Edit profile'; $a->strings['Change profile photo'] = 'Change profile photo'; $a->strings['Homepage:'] = 'Homepage:'; $a->strings['About:'] = 'About:'; $a->strings['Atom feed'] = 'Atom feed'; -$a->strings['g A l F d'] = 'g A l F d'; $a->strings['F d'] = 'F d'; $a->strings['[today]'] = '[today]'; $a->strings['Birthday Reminders'] = 'Birthday reminders'; $a->strings['Birthdays this week:'] = 'Birthdays this week:'; +$a->strings['g A l F d'] = 'g A l F d'; $a->strings['[No description]'] = '[No description]'; $a->strings['Event Reminders'] = 'Event reminders'; $a->strings['Upcoming events the next 7 days:'] = 'Upcoming events the next 7 days:'; @@ -1064,16 +725,12 @@ $a->strings['Love/romance'] = 'Love/Romance:'; $a->strings['Work/employment'] = 'Work/Employment:'; $a->strings['School/education'] = 'School/Education:'; $a->strings['Contact information and Social Networks'] = 'Contact information and other social networks:'; -$a->strings['Storage base path'] = 'Storage base path'; -$a->strings['Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree'] = 'Folder where uploaded files are saved. For maximum security, this should be a path outside web server folder tree'; -$a->strings['Enter a valid existing folder'] = 'Enter a valid existing folder'; $a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'SERIOUS ERROR: Generation of security keys failed.'; $a->strings['Login failed'] = 'Login failed'; $a->strings['Not enough information to authenticate'] = 'Not enough information to authenticate'; $a->strings['Password can\'t be empty'] = 'Password can\'t be empty'; $a->strings['Empty passwords are not allowed.'] = 'Empty passwords are not allowed.'; $a->strings['The new password has been exposed in a public data dump, please choose another.'] = 'The new password has been exposed in a public data dump; please choose another.'; -$a->strings['The password can\'t contain accentuated letters, white spaces or colons (:)'] = 'The password can\'t contain accentuated letters, white spaces or colons'; $a->strings['Passwords do not match. Password unchanged.'] = 'Passwords do not match. Password unchanged.'; $a->strings['An invitation is required.'] = 'An invitation is required.'; $a->strings['Invitation could not be verified.'] = 'Invitation could not be verified.'; @@ -1101,66 +758,12 @@ $a->strings['An error occurred during registration. Please try again.'] = 'An er $a->strings['An error occurred creating your default profile. Please try again.'] = 'An error occurred creating your default profile. Please try again.'; $a->strings['An error occurred creating your self contact. Please try again.'] = 'An error occurred creating your self-contact. Please try again.'; $a->strings['Friends'] = 'Friends'; -$a->strings['An error occurred creating your default contact group. Please try again.'] = 'An error occurred while creating your default contact group. Please try again.'; $a->strings['Profile Photos'] = 'Profile photos'; $a->strings[' Dear %1$s, the administrator of %2$s has set up an account for you.'] = ' Dear %1$s, The administrator of %2$s has set up an account for you.'; -$a->strings[' - The login details are as follows: - - Site Location: %1$s - Login Name: %2$s - Password: %3$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %1$s/removeme - - Thank you and welcome to %4$s.'] = ' - The login details are as follows: - - Site Location: %1$s - Login Name: %2$s - Password: %3$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %1$s/removeme - - Thank you and welcome to %4$s.'; $a->strings['Registration details for %s'] = 'Registration details for %s'; $a->strings[' Dear %1$s, @@ -1189,59 +792,6 @@ $a->strings[' Dear %1$s, Thank you for registering at %2$s. Your account has been created. '; -$a->strings[' - The login details are as follows: - - Site Location: %3$s - Login Name: %1$s - Password: %5$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %3$s/removeme - - Thank you and welcome to %2$s.'] = ' - The login details are as follows: - - Site Location: %3$s - Login Name: %1$s - Password: %5$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %3$s/removeme - - Thank you and welcome to %2$s.'; $a->strings['Addon not found.'] = 'Addon not found.'; $a->strings['Addon %s disabled.'] = 'Addon %s disabled.'; $a->strings['Addon %s enabled.'] = 'Addon %s enabled.'; @@ -1253,61 +803,9 @@ $a->strings['Toggle'] = 'Toggle'; $a->strings['Author: '] = 'Author: '; $a->strings['Maintainer: '] = 'Maintainer: '; $a->strings['Addon %s failed to install.'] = 'Addon %s failed to install.'; +$a->strings['Save Settings'] = 'Save settings'; $a->strings['Reload active addons'] = 'Reload active addons'; $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'] = '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'; -$a->strings['Pending'] = 'Pending'; -$a->strings['Blocked'] = 'Blocked'; -$a->strings['Private Forum'] = 'Private Forum'; -$a->strings['Relay'] = 'Relay'; -$a->strings['%s contact unblocked'] = [ - 0 => '%s contact unblocked', - 1 => '%s contacts unblocked', -]; -$a->strings['Remote Contact Blocklist'] = 'Remote contact block-list'; -$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'This page allows you to prevent any message from a remote contact to reach your node.'; -$a->strings['Block Remote Contact'] = 'Block Remote Contact'; -$a->strings['select all'] = 'select all'; -$a->strings['select none'] = 'select none'; -$a->strings['Unblock'] = 'Unblock'; -$a->strings['No remote contact is blocked from this node.'] = 'No remote contact is blocked from this node.'; -$a->strings['Blocked Remote Contacts'] = 'Blocked remote contacts'; -$a->strings['Block New Remote Contact'] = 'Block new remote contact'; -$a->strings['Photo'] = 'Photo'; -$a->strings['Reason'] = 'Reason'; -$a->strings['%s total blocked contact'] = [ - 0 => '%s total blocked contact', - 1 => '%s total blocked contacts', -]; -$a->strings['URL of the remote contact to block.'] = 'URL of the remote contact to block.'; -$a->strings['Block Reason'] = 'Reason for blocking'; -$a->strings['Server domain pattern added to blocklist.'] = 'Server domain pattern added to block-list.'; -$a->strings['Blocked server domain pattern'] = 'Blocked server domain pattern'; -$a->strings['Reason for the block'] = 'Reason for the block'; -$a->strings['Delete server domain pattern'] = 'Delete server domain pattern'; -$a->strings['Check to delete this entry from the blocklist'] = 'Check to delete this entry from the block-list'; -$a->strings['Server Domain Pattern Blocklist'] = 'Server domain pattern block-list'; -$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.'] = 'The list of blocked server domain patterns will be made publicly available on the /friendica page so that your users and people investigating communication problems can find the reason easily.'; -$a->strings['

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

    -
      -
    • *: Any number of characters
    • -
    • ?: Any single character
    • -
    • [<char1><char2>...]: char1 or char2
    • -
    '] = '

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

    -
      -
    • *: Any number of characters
    • -
    • ?: Any single character
    • -
    • [<char1><char2>...]: char1 or char2
    • -
    '; -$a->strings['Add new entry to block list'] = 'Add new entry to block-list'; -$a->strings['Server Domain Pattern'] = 'Server Domain Pattern'; -$a->strings['The domain pattern of the new server to add to the block list. Do not include the protocol.'] = 'The domain pattern of the new server to add to the block list. Do not include the protocol.'; -$a->strings['Block reason'] = 'Block reason'; -$a->strings['The reason why you blocked this server domain pattern.'] = 'The reason why you blocked this server domain pattern.'; -$a->strings['Add Entry'] = 'Add entry'; -$a->strings['Save changes to the blocklist'] = 'Save changes to the block-list'; -$a->strings['Current Entries in the Blocklist'] = 'Current entries in the block-list'; -$a->strings['Delete entry from blocklist'] = 'Delete entry from block-list'; -$a->strings['Delete entry from blocklist?'] = 'Delete entry from block-list?'; $a->strings['Update has been marked successful'] = 'Update has been marked successful'; $a->strings['Database structure update %s was successfully applied.'] = 'Database structure update %s was successfully applied.'; $a->strings['Executing of database structure update %s failed with error: %s'] = 'Executing of database structure update %s failed with error: %s'; @@ -1327,17 +825,6 @@ $a->strings['Other'] = 'Other'; $a->strings['unknown'] = 'unknown'; $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.'] = 'This page offers you the amount of known part of the federated social network your Friendica node is part of. These numbers are not complete and only reflect the part of the network your node is aware of.'; $a->strings['Federation Statistics'] = 'Federation statistics'; -$a->strings['Currently this node is aware of %d nodes with %d registered users from the following platforms:'] = 'Currently this node is aware of %d nodes with %d registered users from the following platforms:'; -$a->strings['Item marked for deletion.'] = 'Item marked for deletion.'; -$a->strings['Delete Item'] = 'Delete item'; -$a->strings['Delete this Item'] = 'Delete'; -$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.'] = 'Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted.'; -$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.'] = 'You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 123456.'; -$a->strings['GUID'] = 'GUID'; -$a->strings['The GUID of the item you want to delete.'] = 'GUID of item to be deleted.'; -$a->strings['Item Source'] = 'Item source'; -$a->strings['Item Guid'] = 'Item Guid'; -$a->strings['Type'] = 'Type'; $a->strings['The logfile \'%s\' is not writable. No logging possible'] = 'The logfile \'%s\' is not writeable. No logging possible'; $a->strings['PHP log currently enabled.'] = 'PHP log currently enabled.'; $a->strings['PHP log currently disabled.'] = 'PHP log currently disabled.'; @@ -1351,17 +838,17 @@ $a->strings['PHP logging'] = 'PHP logging'; $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.'] = '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->strings['View Logs'] = 'View logs'; $a->strings['Show all'] = 'Show all'; +$a->strings['Event details'] = 'Event details'; $a->strings['Inspect Deferred Worker Queue'] = 'Inspect Deferred Worker Queue'; $a->strings['This page lists the deferred worker jobs. This are jobs that couldn\'t be executed at the first time.'] = 'This page lists the deferred worker jobs. These are jobs that couldn\'t initially be executed.'; $a->strings['Inspect Worker Queue'] = 'Inspect Worker Queue'; $a->strings['This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you\'ve set up during install.'] = 'This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you\'ve set up during install.'; $a->strings['ID'] = 'ID'; $a->strings['Job Parameters'] = 'Job Parameters'; +$a->strings['Created'] = 'Created'; $a->strings['Priority'] = 'Priority'; -$a->strings['Can not parse base url. Must have at least ://'] = 'Can not parse base URL. Must have at least ://'; $a->strings['No special theme for mobile devices'] = 'No special theme for mobile devices'; $a->strings['%s - (Experimental)'] = '%s - (Experimental)'; -$a->strings['No community page for local users'] = 'No community page for local users'; $a->strings['No community page'] = 'No community page'; $a->strings['Public postings from users of this site'] = 'Public postings from users of this site'; $a->strings['Public postings from the federated network'] = 'Public postings from the federated network'; @@ -1370,9 +857,6 @@ $a->strings['Multi user instance'] = 'Multi user instance'; $a->strings['Closed'] = 'Closed'; $a->strings['Requires approval'] = 'Requires approval'; $a->strings['Open'] = 'Open'; -$a->strings['No SSL policy, links will track page SSL state'] = 'No SSL policy, links will track page SSL state'; -$a->strings['Force all links to use SSL'] = 'Force all links to use SSL'; -$a->strings['Self-signed certificate, use SSL for local links only (discouraged)'] = 'Self-signed certificate, use SSL for local links only (discouraged)'; $a->strings['Don\'t check'] = 'Don\'t check'; $a->strings['check the stable version'] = 'check for stable version updates'; $a->strings['check the development version'] = 'check for development version updates'; @@ -1382,12 +866,11 @@ $a->strings['Republish users to directory'] = 'Republish users to directory'; $a->strings['Registration'] = 'Join this Friendica Node Today'; $a->strings['File upload'] = 'File upload'; $a->strings['Policies'] = 'Policies'; +$a->strings['Advanced'] = 'Advanced'; $a->strings['Auto Discovered Contact Directory'] = 'Auto-discovered contact directory'; $a->strings['Performance'] = 'Performance'; $a->strings['Worker'] = 'Worker'; $a->strings['Message Relay'] = 'Message relay'; -$a->strings['Relocate Instance'] = 'Relocate Instance'; -$a->strings['Warning! Advanced function. Could make this server unreachable.'] = 'Warning! Advanced function. Could make this server unreachable.'; $a->strings['Site name'] = 'Site name'; $a->strings['Sender Email'] = 'Sender email'; $a->strings['The email address your server shall use to send notification emails from.'] = 'The email address your server shall use to send notification emails from.'; @@ -1401,17 +884,13 @@ $a->strings['Additional Info'] = 'Additional Info'; $a->strings['For public servers: you can add additional information here that will be listed at %s/servers.'] = 'For public servers: You can add additional information here that will be listed at %s/servers.'; $a->strings['System language'] = 'System language'; $a->strings['System theme'] = 'System theme'; -$a->strings['Default system theme - may be over-ridden by user profiles - Change default theme settings'] = 'Default system theme - may be over-ridden by user profiles - Change default theme settings'; $a->strings['Mobile system theme'] = 'Mobile system theme'; $a->strings['Theme for mobile devices'] = 'Theme for mobile devices'; -$a->strings['SSL link policy'] = 'SSL link policy'; -$a->strings['Determines whether generated links should be forced to use SSL'] = 'Determines whether generated links should be forced to use SSL'; $a->strings['Force SSL'] = 'Force SSL'; $a->strings['Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'] = 'Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'; $a->strings['Single user instance'] = 'Single user instance'; $a->strings['Make this instance multi-user or single-user for the named user'] = 'Make this instance multi-user or single-user for the named user'; $a->strings['Maximum image size'] = 'Maximum image size'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'Maximum size in bytes of uploaded images. Default is 0, which means no limits.'; $a->strings['Maximum image length'] = 'Maximum image length'; $a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'; $a->strings['JPEG image quality'] = 'JPEG image quality'; @@ -1439,7 +918,6 @@ $a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Enabling $a->strings['Global directory URL'] = 'Global directory URL'; $a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'URL to the global directory: If this is not set, the global directory is completely unavailable to the application.'; $a->strings['Private posts by default for new users'] = 'Private posts by default for new users'; -$a->strings['Set default post permissions for all new members to the default privacy group rather than public.'] = 'Set default post permissions for all new members to the default privacy group rather than public.'; $a->strings['Don\'t include post content in email notifications'] = 'Don\'t include post content in email notifications'; $a->strings['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.'] = 'Don\'t include the content of a post/comment/private message in the email notifications sent from this site, as a privacy measure.'; $a->strings['Disallow public access to addons listed in the apps menu.'] = 'Disallow public access to addons listed in the apps menu.'; @@ -1464,8 +942,6 @@ $a->strings['Network timeout'] = 'Network timeout'; $a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Value is in seconds. Set to 0 for unlimited (not recommended).'; $a->strings['Maximum Load Average'] = 'Maximum load average'; $a->strings['Maximum system load before delivery and poll processes are deferred - default %d.'] = 'Maximum system load before delivery and poll processes are deferred - default %d.'; -$a->strings['Maximum Load Average (Frontend)'] = 'Maximum load average (frontend)'; -$a->strings['Maximum system load before the frontend quits service - default 50.'] = 'Maximum system load before the frontend quits service (default 50).'; $a->strings['Minimal Memory'] = 'Minimal memory'; $a->strings['Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).'] = 'Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).'; $a->strings['Days between requery'] = 'Days between enquiry'; @@ -1493,12 +969,10 @@ $a->strings['Temp path'] = 'Temp path'; $a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Enter a different tmp path, if your system restricts the webserver\'s access to the system temp path.'; $a->strings['Only search in tags'] = 'Only search in tags'; $a->strings['On large systems the text search can slow down the system extremely.'] = 'On large systems the text search can slow down the system significantly.'; -$a->strings['New base url'] = 'New base URL'; -$a->strings['Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users.'] = 'Change base url for this server. Sends relocate message to all Friendica and diaspora* contacts of all users.'; $a->strings['Maximum number of parallel workers'] = '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.'] = 'On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d.'; $a->strings['Enable fastlane'] = 'Enable fast-lane'; -$a->strings['When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.'] = 'The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.'; +$a->strings['When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.'] = 'When enabled, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.'; $a->strings['Direct relay transfer'] = 'Direct relay transfer'; $a->strings['Enables the direct transfer to other servers without using the relay servers'] = 'Enables direct transfer to other servers without using a relay server.'; $a->strings['Relay scope'] = 'Relay scope'; @@ -1523,21 +997,11 @@ $a->strings['The last worker execution was on %s UTC. This is older than one hou $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.'] = 'Friendica\'s configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your configuration from .htconfig.php. See the configuration help page for help with the transition.'; $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.'] = 'Friendica\'s configuration is now 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->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.'] = '%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->strings['The logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'The logfile \'%s\' is not usable. No logging is possible (error: \'%s\').'; -$a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'The debug logfile \'%s\' is not usable. No logging is possible (error: \'%s\').'; $a->strings['Friendica\'s system.basepath was updated from \'%s\' to \'%s\'. Please remove the system.basepath from your db to avoid differences.'] = 'The system.basepath was updated from \'%s\' to \'%s\'. Please remove the system.basepath from your db to avoid differences.'; $a->strings['Friendica\'s current system.basepath \'%s\' is wrong and the config file \'%s\' isn\'t used.'] = 'The current system.basepath \'%s\' is wrong and the config file \'%s\' isn\'t used.'; $a->strings['Friendica\'s current system.basepath \'%s\' is not equal to the config file \'%s\'. Please fix your configuration.'] = 'The current system.basepath \'%s\' is not equal to the config file \'%s\'. Please fix your configuration.'; -$a->strings['Normal Account'] = 'Standard account'; -$a->strings['Automatic Follower Account'] = 'Automatic follower account'; -$a->strings['Public Forum Account'] = 'Public forum account'; -$a->strings['Automatic Friend Account'] = 'Automatic friend account'; -$a->strings['Blog Account'] = 'Blog account'; -$a->strings['Private Forum Account'] = 'Private forum account'; $a->strings['Message queues'] = 'Message queues'; $a->strings['Server Settings'] = 'Server Settings'; -$a->strings['Registered users'] = 'Registered users'; -$a->strings['Pending registrations'] = 'Pending registrations'; $a->strings['Version'] = 'Version'; $a->strings['Active addons'] = 'Active addons'; $a->strings['Theme %s disabled.'] = 'Theme %s disabled.'; @@ -1557,53 +1021,6 @@ $a->strings['Show some informations regarding the needed information to operate $a->strings['Privacy Statement Preview'] = 'Privacy Statement Preview'; $a->strings['The Terms of Service'] = 'Terms of Service'; $a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = 'Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] or lower.'; -$a->strings['%s user blocked'] = [ - 0 => '%s user blocked', - 1 => '%s users blocked', -]; -$a->strings['You can\'t remove yourself'] = 'You can\'t remove yourself'; -$a->strings['%s user deleted'] = [ - 0 => '%s user deleted', - 1 => '%s users deleted', -]; -$a->strings['User "%s" deleted'] = 'User "%s" deleted'; -$a->strings['User "%s" blocked'] = 'User "%s" blocked'; -$a->strings['Register date'] = 'Registration date'; -$a->strings['Last login'] = 'Last login'; -$a->strings['Last public item'] = 'Last public item'; -$a->strings['User blocked'] = 'User blocked'; -$a->strings['Site admin'] = 'Site admin'; -$a->strings['Account expired'] = 'Account expired'; -$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Selected users will be deleted!\n\nEverything these users has posted on this site will be permanently deleted!\n\nAre you sure?'; -$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'; -$a->strings['%s user unblocked'] = [ - 0 => '%s user unblocked', - 1 => '%s users unblocked', -]; -$a->strings['User "%s" unblocked'] = 'User "%s" unblocked'; -$a->strings['New User'] = 'New user'; -$a->strings['Add User'] = 'Add user'; -$a->strings['Name of the new user.'] = 'Name of the new user.'; -$a->strings['Nickname'] = 'Nickname'; -$a->strings['Nickname of the new user.'] = 'Nickname of the new user.'; -$a->strings['Email address of the new user.'] = 'Email address of the new user.'; -$a->strings['Permanent deletion'] = 'Permanent deletion'; -$a->strings['Users'] = 'Users'; -$a->strings['User waiting for permanent deletion'] = 'User awaiting permanent deletion'; -$a->strings['%s user approved'] = [ - 0 => '%s user approved', - 1 => '%s users approved', -]; -$a->strings['%s registration revoked'] = [ - 0 => '%s registration revoked', - 1 => '%s registrations revoked', -]; -$a->strings['Account approved.'] = 'Account approved.'; -$a->strings['Registration revoked'] = 'Registration revoked'; -$a->strings['Request date'] = 'Request date'; -$a->strings['No registrations.'] = 'No registrations.'; -$a->strings['Note from the user'] = 'Note from the user'; -$a->strings['Deny'] = 'Deny'; $a->strings['Contact not found'] = 'Contact not found'; $a->strings['No installed applications.'] = 'No installed applications.'; $a->strings['Applications'] = 'Applications'; @@ -1616,9 +1033,6 @@ $a->strings['Database'] = 'Database'; $a->strings['DB updates'] = 'DB updates'; $a->strings['Inspect Deferred Workers'] = 'Inspect deferred workers'; $a->strings['Inspect worker Queue'] = 'Inspect worker queue'; -$a->strings['Tools'] = 'Tools'; -$a->strings['Contact Blocklist'] = 'Contact block-list'; -$a->strings['Server Blocklist'] = 'Server block-list'; $a->strings['Diagnostics'] = 'Diagnostics'; $a->strings['PHP Info'] = 'PHP info'; $a->strings['probe address'] = 'Probe address'; @@ -1626,75 +1040,67 @@ $a->strings['check webfinger'] = 'Check WebFinger'; $a->strings['Babel'] = 'Babel'; $a->strings['Addon Features'] = 'Addon features'; $a->strings['User registrations waiting for confirmation'] = 'User registrations awaiting confirmation'; +$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Daily posting limit of %d post reached. The post was rejected.', + 1 => 'Daily posting limit of %d posts are reached. This post was rejected.', +]; +$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Weekly posting limit of %d post reached. The post was rejected.', + 1 => 'Weekly posting limit of %d posts are reached. This post was rejected.', +]; +$a->strings['Users'] = 'Users'; +$a->strings['Tools'] = 'Tools'; +$a->strings['Contact Blocklist'] = 'Contact block-list'; +$a->strings['Server Blocklist'] = 'Server block-list'; +$a->strings['Delete Item'] = 'Delete item'; +$a->strings['Item Source'] = 'Item source'; $a->strings['Profile Details'] = 'Profile Details'; $a->strings['Only You Can See This'] = 'Only you can see this.'; $a->strings['Tips for New Members'] = 'Tips for New Members'; $a->strings['People Search - %s'] = 'People search - %s'; -$a->strings['Forum Search - %s'] = 'Forum search - %s'; +$a->strings['No matches'] = 'No matches'; $a->strings['Account'] = 'Account'; $a->strings['Two-factor authentication'] = 'Two-factor authentication'; $a->strings['Display'] = 'Display'; +$a->strings['Social Networks'] = 'Social networks'; $a->strings['Manage Accounts'] = 'Manage Accounts'; $a->strings['Connected apps'] = 'Connected apps'; $a->strings['Export personal data'] = 'Export personal data'; $a->strings['Remove account'] = 'Remove account'; $a->strings['This page is missing a url parameter.'] = 'This page is missing a URL parameter.'; $a->strings['The post was created'] = 'The post was created'; +$a->strings['Failed to remove event'] = 'Failed to remove event'; +$a->strings['Event can not end before it has started.'] = 'Event cannot end before it has started.'; +$a->strings['Event title and start time are required.'] = 'Event title and starting time are required.'; +$a->strings['Starting date and Title are required.'] = 'Starting date and title are required.'; +$a->strings['Event Starts:'] = 'Event starts:'; +$a->strings['Required'] = 'Required'; +$a->strings['Finish date/time is not known or not relevant'] = 'Finish date/time is not known or not relevant'; +$a->strings['Event Finishes:'] = 'Event finishes:'; +$a->strings['Share this event'] = 'Share this event'; +$a->strings['Basic'] = 'Basic'; +$a->strings['This calendar format is not supported'] = 'This calendar format is not supported'; +$a->strings['No exportable data found'] = 'No exportable data found'; +$a->strings['calendar'] = 'calendar'; +$a->strings['Events'] = 'Events'; +$a->strings['View'] = 'View'; +$a->strings['Create New Event'] = 'Create new event'; +$a->strings['list'] = 'List'; +$a->strings['Contact not found.'] = 'Contact not found.'; +$a->strings['Invalid contact.'] = 'Invalid contact.'; +$a->strings['Contact is deleted.'] = 'Contact is deleted.'; +$a->strings['Bad request.'] = 'Bad request.'; +$a->strings['Filter'] = 'Filter'; +$a->strings['Members'] = 'Members'; +$a->strings['Click on a contact to add or remove.'] = 'Click on a contact to add or remove it.'; $a->strings['%d contact edited.'] = [ 0 => '%d contact edited.', 1 => '%d contacts edited.', ]; -$a->strings['Could not access contact record.'] = 'Could not access contact record.'; -$a->strings['Failed to update contact record.'] = 'Failed to update contact record.'; -$a->strings['Contact has been blocked'] = 'Contact has been blocked'; -$a->strings['Contact has been unblocked'] = 'Contact has been unblocked'; -$a->strings['Contact has been ignored'] = 'Contact has been ignored'; -$a->strings['Contact has been unignored'] = 'Contact has been unignored'; -$a->strings['You are mutual friends with %s'] = 'You are mutual friends with %s'; -$a->strings['You are sharing with %s'] = 'You are sharing with %s'; -$a->strings['%s is sharing with you'] = '%s is sharing with you'; -$a->strings['Private communications are not available for this contact.'] = 'Private communications are not available for this contact.'; -$a->strings['Never'] = 'Never'; -$a->strings['(Update was not successful)'] = '(Update was not successful)'; -$a->strings['(Update was successful)'] = '(Update was successful)'; -$a->strings['Suggest friends'] = 'Suggest friends'; -$a->strings['Network type: %s'] = 'Network type: %s'; -$a->strings['Communications lost with this contact!'] = 'Communications lost with this contact!'; -$a->strings['Fetch further information for feeds'] = 'Fetch further information for feeds'; -$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.'] = '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.'; -$a->strings['Fetch information'] = 'Fetch information'; -$a->strings['Fetch keywords'] = 'Fetch keywords'; -$a->strings['Fetch information and keywords'] = 'Fetch information and keywords'; -$a->strings['No mirroring'] = 'No mirroring'; -$a->strings['Mirror as forwarded posting'] = 'Mirror as forwarded posting'; -$a->strings['Mirror as my own posting'] = 'Mirror as my own posting'; -$a->strings['Contact Information / Notes'] = 'Personal note'; -$a->strings['Contact Settings'] = 'Notification and privacy '; -$a->strings['Contact'] = 'Contact'; -$a->strings['Their personal note'] = 'Their personal note'; -$a->strings['Edit contact notes'] = 'Edit contact notes'; -$a->strings['Visit %s\'s profile [%s]'] = 'Visit %s\'s profile [%s]'; -$a->strings['Block/Unblock contact'] = 'Block/Unblock contact'; -$a->strings['Ignore contact'] = 'Ignore contact'; -$a->strings['View conversations'] = 'View conversations'; -$a->strings['Last update:'] = 'Last update:'; -$a->strings['Update public posts'] = 'Update public posts'; -$a->strings['Update now'] = 'Update now'; -$a->strings['Unignore'] = 'Unignore'; -$a->strings['Currently blocked'] = 'Currently blocked'; -$a->strings['Currently ignored'] = 'Currently ignored'; -$a->strings['Currently archived'] = 'Currently archived'; -$a->strings['Awaiting connection acknowledge'] = 'Awaiting connection acknowledgement '; -$a->strings['Hide this contact from others'] = 'Hide this contact from others'; -$a->strings['Replies/likes to your public posts may still be visible'] = 'Replies/Likes to your public posts may still be visible'; -$a->strings['Notification for new posts'] = 'Notification for new posts'; -$a->strings['Send a notification of every new post of this contact'] = 'Send notification for every new post from this contact'; -$a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'; -$a->strings['Actions'] = 'Actions'; -$a->strings['Mirror postings from this contact'] = 'Mirror postings from this contact:'; -$a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'This will cause Friendica to repost new entries from this contact.'; $a->strings['Show all contacts'] = 'Show all contacts'; +$a->strings['Pending'] = 'Pending'; $a->strings['Only show pending contacts'] = 'Only show pending contacts'; +$a->strings['Blocked'] = 'Blocked'; $a->strings['Only show blocked contacts'] = 'Only show blocked contacts'; $a->strings['Ignored'] = 'Ignored'; $a->strings['Only show ignored contacts'] = 'Only show ignored contacts'; @@ -1702,10 +1108,11 @@ $a->strings['Archived'] = 'Archived'; $a->strings['Only show archived contacts'] = 'Only show archived contacts'; $a->strings['Hidden'] = 'Hidden'; $a->strings['Only show hidden contacts'] = 'Only show hidden contacts'; -$a->strings['Organize your contact groups'] = 'Organise your contact groups'; $a->strings['Search your contacts'] = 'Search your contacts'; $a->strings['Results for: %s'] = 'Results for: %s'; $a->strings['Update'] = 'Update'; +$a->strings['Unblock'] = 'Unblock'; +$a->strings['Unignore'] = 'Unignore'; $a->strings['Batch Actions'] = 'Batch actions'; $a->strings['Conversations started by this contact'] = 'Conversations started by this contact'; $a->strings['Posts and Comments'] = 'Posts and Comments'; @@ -1715,23 +1122,14 @@ $a->strings['is a fan of yours'] = 'is a fan of yours'; $a->strings['you are a fan of'] = 'I follow them'; $a->strings['Pending outgoing contact request'] = 'Pending outgoing contact request'; $a->strings['Pending incoming contact request'] = 'Pending incoming contact request'; -$a->strings['Refetch contact data'] = 'Re-fetch contact data.'; -$a->strings['Toggle Blocked status'] = 'Toggle blocked status'; -$a->strings['Toggle Ignored status'] = 'Toggle ignored status'; +$a->strings['Visit %s\'s profile [%s]'] = 'Visit %s\'s profile [%s]'; $a->strings['Contact update failed.'] = 'Contact update failed.'; -$a->strings['WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working.'] = 'Warning: These are highly advanced settings. If you enter incorrect information your communications with this contact may not working.'; -$a->strings['Please use your browser \'Back\' button now if you are uncertain what to do on this page.'] = 'Please use your browser \'Back\' button now if you are uncertain what to do on this page.'; $a->strings['Return to contact editor'] = 'Return to contact editor'; +$a->strings['Name'] = 'Name:'; $a->strings['Account Nickname'] = 'Account nickname:'; -$a->strings['@Tagname - overrides Name/Nickname'] = '@Tag name - overrides name/nickname:'; $a->strings['Account URL'] = 'Account URL:'; -$a->strings['Account URL Alias'] = 'Account URL alias'; -$a->strings['Friend Request URL'] = 'Friend request URL:'; -$a->strings['Friend Confirm URL'] = 'Friend confirm URL:'; -$a->strings['Notification Endpoint URL'] = 'Notification endpoint URL'; $a->strings['Poll/Feed URL'] = 'Poll/Feed URL:'; $a->strings['New photo from this URL'] = 'New photo from this URL:'; -$a->strings['Invalid contact.'] = 'Invalid contact.'; $a->strings['Follower (%s)'] = [ 0 => 'Follower (%s)', 1 => 'Followers (%s)', @@ -1748,33 +1146,89 @@ $a->strings['Contact (%s)'] = [ 0 => 'Contact (%s)', 1 => 'Contacts (%s)', ]; -$a->strings['You must be logged in to use this module.'] = 'You must be logged in to use this module.'; -$a->strings['Poke/Prod'] = 'Poke/Prod'; -$a->strings['poke, prod or do other things to somebody'] = 'Poke, prod or do other things to somebody'; -$a->strings['Choose what you wish to do to recipient'] = 'Choose what you wish to do:'; -$a->strings['Make this post private'] = 'Make this post private'; -$a->strings['Contact is deleted.'] = 'Contact is deleted.'; +$a->strings['Access denied.'] = 'Access denied.'; +$a->strings['Submit Request'] = 'Submit request'; +$a->strings['You already added this contact.'] = 'You already added this contact.'; +$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = '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* support isn\'t enabled. Contact can\'t be added.'; +$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus support is disabled. Contact can\'t be added.'; +$a->strings['Please answer the following:'] = 'Please answer the following:'; +$a->strings['Your Identity Address:'] = 'My identity address:'; +$a->strings['Profile URL'] = 'Profile URL:'; +$a->strings['Tags:'] = 'Tags:'; +$a->strings['%s knows you'] = '%s knows you'; +$a->strings['Add a personal note:'] = 'Add a personal note:'; +$a->strings['The contact could not be added.'] = 'Contact could not be added.'; +$a->strings['Invalid request.'] = 'Invalid request.'; +$a->strings['No keywords to match. Please add keywords to your profile.'] = 'No keywords to match. Please add keywords to your profile.'; +$a->strings['Profile Match'] = 'Profile Match'; +$a->strings['Failed to update contact record.'] = 'Failed to update contact record.'; +$a->strings['Contact has been unblocked'] = 'Contact has been unblocked'; +$a->strings['Contact has been blocked'] = 'Contact has been blocked'; +$a->strings['Contact has been unignored'] = 'Contact has been unignored'; +$a->strings['Contact has been ignored'] = 'Contact has been ignored'; +$a->strings['You are mutual friends with %s'] = 'You are mutual friends with %s'; +$a->strings['You are sharing with %s'] = 'You are sharing with %s'; +$a->strings['%s is sharing with you'] = '%s is sharing with you'; +$a->strings['Private communications are not available for this contact.'] = 'Private communications are not available for this contact.'; +$a->strings['Never'] = 'Never'; +$a->strings['(Update was not successful)'] = '(Update was not successful)'; +$a->strings['(Update was successful)'] = '(Update was successful)'; +$a->strings['Suggest friends'] = 'Suggest friends'; +$a->strings['Network type: %s'] = 'Network type: %s'; +$a->strings['Communications lost with this contact!'] = 'Communications lost with this contact!'; +$a->strings['Fetch further information for feeds'] = 'Fetch further information for feeds'; +$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.'] = '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.'; +$a->strings['Fetch information'] = 'Fetch information'; +$a->strings['Fetch keywords'] = 'Fetch keywords'; +$a->strings['Fetch information and keywords'] = 'Fetch information and keywords'; +$a->strings['No mirroring'] = 'No mirroring'; +$a->strings['Mirror as my own posting'] = 'Mirror as my own posting'; +$a->strings['Contact Information / Notes'] = 'Personal note'; +$a->strings['Contact Settings'] = 'Notification and privacy '; +$a->strings['Contact'] = 'Contact'; +$a->strings['Their personal note'] = 'Their personal note'; +$a->strings['Edit contact notes'] = 'Edit contact notes'; +$a->strings['Block/Unblock contact'] = 'Block/Unblock contact'; +$a->strings['Ignore contact'] = 'Ignore contact'; +$a->strings['View conversations'] = 'View conversations'; +$a->strings['Last update:'] = 'Last update:'; +$a->strings['Update public posts'] = 'Update public posts'; +$a->strings['Update now'] = 'Update now'; +$a->strings['Awaiting connection acknowledge'] = 'Awaiting connection acknowledgement '; +$a->strings['Currently blocked'] = 'Currently blocked'; +$a->strings['Currently ignored'] = 'Currently ignored'; +$a->strings['Currently archived'] = 'Currently archived'; +$a->strings['Hide this contact from others'] = 'Hide this contact from others'; +$a->strings['Replies/likes to your public posts may still be visible'] = 'Replies/Likes to your public posts may still be visible'; +$a->strings['Notification for new posts'] = 'Notification for new posts'; +$a->strings['Send a notification of every new post of this contact'] = 'Send notification for every new post from this contact'; +$a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'; +$a->strings['Actions'] = 'Actions'; +$a->strings['Status'] = 'Status'; +$a->strings['Mirror postings from this contact'] = 'Mirror postings from this contact:'; +$a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'This will cause Friendica to repost new entries from this contact.'; +$a->strings['Refetch contact data'] = 'Re-fetch contact data.'; +$a->strings['Toggle Blocked status'] = 'Toggle blocked status'; +$a->strings['Toggle Ignored status'] = 'Toggle ignored status'; +$a->strings['Bad Request.'] = 'Bad Request.'; $a->strings['Yes'] = 'Yes'; -$a->strings['Local Community'] = 'Local community'; -$a->strings['Posts from local users on this server'] = 'Posts from local users on this server'; -$a->strings['Global Community'] = 'Global community'; -$a->strings['Posts from users of the whole federated network'] = 'Posts from users of the whole federated network'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'No suggestions available. If this is a new site, please try again in 24 hours.'; +$a->strings['You aren\'t following this contact.'] = 'You aren\'t following this contact.'; +$a->strings['Unfollowing is currently not supported by your network.'] = 'Unfollowing is currently not supported by your network.'; +$a->strings['Disconnect/Unfollow'] = 'Disconnect/Unfollow'; +$a->strings['Contact was successfully unfollowed'] = 'Contact was successfully unfollowed'; +$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Unable to unfollow this contact, please contact your administrator'; $a->strings['No results.'] = 'No results.'; $a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'; $a->strings['Community option not available.'] = 'Community option not available.'; $a->strings['Not available.'] = 'Not available.'; -$a->strings['No such group'] = 'No such group'; -$a->strings['Group: %s'] = 'Group: %s'; -$a->strings['Latest Activity'] = 'Latest activity'; -$a->strings['Sort by latest activity'] = 'Sort by latest activity'; -$a->strings['Latest Posts'] = 'Latest posts'; -$a->strings['Sort by post received date'] = 'Sort by post received date'; -$a->strings['Personal'] = 'Personal'; -$a->strings['Posts that mention or involve you'] = 'Posts mentioning or involving me'; -$a->strings['Starred'] = 'Starred'; -$a->strings['Favourite Posts'] = 'My favourite posts'; $a->strings['Credits'] = 'Credits'; $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!'] = '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->strings['Error'] = [ + 0 => 'Error', + 1 => 'Errors', +]; $a->strings['Source input'] = 'Source input'; $a->strings['BBCode::toPlaintext'] = 'BBCode::toPlaintext'; $a->strings['BBCode::convert (raw HTML)'] = 'BBCode::convert (raw HTML)'; @@ -1815,8 +1269,6 @@ $a->strings['Converted localtime: %s'] = 'Converted local time: %s'; $a->strings['Please select your timezone:'] = 'Please select your time zone:'; $a->strings['Only logged in users are permitted to perform a probing.'] = 'Only logged in users are permitted to perform a probing.'; $a->strings['Lookup address'] = 'Lookup address'; -$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Accounts that I manage or own.'; -$a->strings['Select an identity to manage: '] = 'Select identity:'; $a->strings['No entries (some entries may be hidden).'] = 'No entries (entries may be hidden).'; $a->strings['Find on this site'] = 'Find on this site'; $a->strings['Results for:'] = 'Results for:'; @@ -1830,45 +1282,23 @@ $a->strings['Installed addons/apps:'] = 'Installed addons/apps:'; $a->strings['No installed addons/apps'] = 'No installed addons/apps'; $a->strings['Read about the Terms of Service of this node.'] = 'Read about the Terms of Service of this node.'; $a->strings['On this server the following remote servers are blocked.'] = 'On this server the following remote servers are blocked.'; +$a->strings['Reason for the block'] = 'Reason for the block'; $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.'] = 'This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s.'; $a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Please visit Friendi.ca to learn more about the Friendica project.'; $a->strings['Bug reports and issues: please visit'] = 'Bug reports and issues: please visit'; $a->strings['the bugtracker at github'] = 'the bugtracker at github'; $a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = 'Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'; -$a->strings['Could not create group.'] = 'Could not create group.'; -$a->strings['Group not found.'] = 'Group not found.'; -$a->strings['Unknown group.'] = 'Unknown group.'; -$a->strings['Unable to add the contact to the group.'] = 'Unable to add contact to group.'; -$a->strings['Contact successfully added to group.'] = 'Contact successfully added to group.'; -$a->strings['Unable to remove the contact from the group.'] = 'Unable to remove contact from group.'; -$a->strings['Contact successfully removed from group.'] = 'Contact removed from group.'; -$a->strings['Unknown group command.'] = 'Unknown group command.'; -$a->strings['Bad request.'] = 'Bad request.'; -$a->strings['Save Group'] = 'Save group'; -$a->strings['Filter'] = 'Filter'; -$a->strings['Create a group of contacts/friends.'] = 'Create a group of contacts/friends.'; -$a->strings['Unable to remove group.'] = 'Unable to remove group.'; -$a->strings['Delete Group'] = 'Delete group'; -$a->strings['Edit Group Name'] = 'Edit group name'; -$a->strings['Members'] = 'Members'; -$a->strings['Group is empty'] = 'Group is empty'; -$a->strings['Remove contact from group'] = 'Remove contact from group'; -$a->strings['Click on a contact to add or remove.'] = 'Click on a contact to add or remove it.'; -$a->strings['Add contact to group'] = 'Add contact to group'; $a->strings['No profile'] = 'No profile'; $a->strings['Method Not Allowed.'] = 'Method not allowed.'; $a->strings['Help:'] = 'Help:'; $a->strings['Welcome to %s'] = 'Welcome to %s'; $a->strings['Friendica Communications Server - Setup'] = 'Friendica Communications Server - Setup'; $a->strings['System check'] = 'System check'; +$a->strings['Next'] = 'Next'; $a->strings['Check again'] = 'Check again'; $a->strings['Base settings'] = 'Base settings'; -$a->strings['Host name'] = 'Host name'; -$a->strings['Overwrite this field in case the determinated hostname isn\'t right, otherweise leave it as is.'] = 'Overwrite this field in case the hostname is incorrect, otherwise leave it as is.'; $a->strings['Base path to installation'] = 'Base path to installation'; $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.'] = '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.'; -$a->strings['Sub path of the URL'] = 'URL Subpath'; -$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.'] = 'Overwrite this field in case the subpath determination isn\'t right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without subpath.'; $a->strings['Database connection'] = 'Database connection'; $a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'In order to install Friendica we need to know how to connect to your database.'; $a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Please contact your hosting provider or site administrator if you have questions about these settings.'; @@ -1919,8 +1349,114 @@ $a->strings['Visibility'] = 'Visibility'; $a->strings['Clear the location'] = 'Clear location'; $a->strings['Location services are unavailable on your device'] = 'Location services are unavailable on your device'; $a->strings['Location services are disabled. Please check the website\'s permissions on your device'] = 'Location services are disabled. Please check the website\'s permissions on your device'; +$a->strings['The feed for this item is unavailable.'] = 'The feed for this item is unavailable.'; $a->strings['System down for maintenance'] = 'Sorry, the system is currently down for maintenance.'; $a->strings['A Decentralized Social Network'] = 'A Decentralized Social Network'; +$a->strings['Files'] = 'Files'; +$a->strings['Upload'] = 'Upload'; +$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Sorry, maybe your upload is bigger than the PHP configuration allows'; +$a->strings['Or - did you try to upload an empty file?'] = 'Or did you try to upload an empty file?'; +$a->strings['File exceeds size limit of %s'] = 'File exceeds size limit of %s'; +$a->strings['File upload failed.'] = 'File upload failed.'; +$a->strings['Unable to process image.'] = 'Unable to process image.'; +$a->strings['Image upload failed.'] = 'Image upload failed.'; +$a->strings['Normal Account Page'] = 'Standard'; +$a->strings['Soapbox Page'] = 'Soapbox'; +$a->strings['Automatic Friend Page'] = 'Love-all'; +$a->strings['Personal Page'] = 'Personal Page'; +$a->strings['Organisation Page'] = 'Organisation Page'; +$a->strings['News Page'] = 'News Page'; +$a->strings['Relay'] = 'Relay'; +$a->strings['%s contact unblocked'] = [ + 0 => '%s contact unblocked', + 1 => '%s contacts unblocked', +]; +$a->strings['Remote Contact Blocklist'] = 'Remote contact block-list'; +$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'This page allows you to prevent any message from a remote contact to reach your node.'; +$a->strings['Block Remote Contact'] = 'Block Remote Contact'; +$a->strings['select all'] = 'select all'; +$a->strings['select none'] = 'select none'; +$a->strings['No remote contact is blocked from this node.'] = 'No remote contact is blocked from this node.'; +$a->strings['Blocked Remote Contacts'] = 'Blocked remote contacts'; +$a->strings['Block New Remote Contact'] = 'Block new remote contact'; +$a->strings['Photo'] = 'Photo'; +$a->strings['Reason'] = 'Reason'; +$a->strings['%s total blocked contact'] = [ + 0 => '%s total blocked contact', + 1 => '%s total blocked contacts', +]; +$a->strings['URL of the remote contact to block.'] = 'URL of the remote contact to block.'; +$a->strings['Block Reason'] = 'Reason for blocking'; +$a->strings['Server Domain Pattern'] = 'Server Domain Pattern'; +$a->strings['Block reason'] = 'Block reason'; +$a->strings['Blocked server domain pattern'] = 'Blocked server domain pattern'; +$a->strings['Delete server domain pattern'] = 'Delete server domain pattern'; +$a->strings['Check to delete this entry from the blocklist'] = 'Check to delete this entry from the block-list'; +$a->strings['Server Domain Pattern Blocklist'] = 'Server domain pattern block-list'; +$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.'] = 'The list of blocked server domain patterns will be made publicly available on the /friendica page so that your users and people investigating communication problems can find the reason easily.'; +$a->strings['Save changes to the blocklist'] = 'Save changes to the block-list'; +$a->strings['Current Entries in the Blocklist'] = 'Current entries in the block-list'; +$a->strings['Item marked for deletion.'] = 'Item marked for deletion.'; +$a->strings['Delete this Item'] = 'Delete'; +$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.'] = 'Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted.'; +$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.'] = 'You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 123456.'; +$a->strings['GUID'] = 'GUID'; +$a->strings['The GUID of the item you want to delete.'] = 'GUID of item to be deleted.'; +$a->strings['Type'] = 'Type'; +$a->strings['Item not found'] = 'Item not found'; +$a->strings['Item Guid'] = 'Item Guid'; +$a->strings['Normal Account'] = 'Standard account'; +$a->strings['Automatic Follower Account'] = 'Automatic follower account'; +$a->strings['Automatic Friend Account'] = 'Automatic friend account'; +$a->strings['Blog Account'] = 'Blog account'; +$a->strings['Registered users'] = 'Registered users'; +$a->strings['Pending registrations'] = 'Pending registrations'; +$a->strings['%s user blocked'] = [ + 0 => '%s user blocked', + 1 => '%s users blocked', +]; +$a->strings['You can\'t remove yourself'] = 'You can\'t remove yourself'; +$a->strings['%s user deleted'] = [ + 0 => '%s user deleted', + 1 => '%s users deleted', +]; +$a->strings['User "%s" deleted'] = 'User "%s" deleted'; +$a->strings['User "%s" blocked'] = 'User "%s" blocked'; +$a->strings['Register date'] = 'Registration date'; +$a->strings['Last login'] = 'Last login'; +$a->strings['Last public item'] = 'Last public item'; +$a->strings['User blocked'] = 'User blocked'; +$a->strings['Site admin'] = 'Site admin'; +$a->strings['Account expired'] = 'Account expired'; +$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Selected users will be deleted!\n\nEverything these users has posted on this site will be permanently deleted!\n\nAre you sure?'; +$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'; +$a->strings['%s user unblocked'] = [ + 0 => '%s user unblocked', + 1 => '%s users unblocked', +]; +$a->strings['User "%s" unblocked'] = 'User "%s" unblocked'; +$a->strings['New User'] = 'New user'; +$a->strings['Add User'] = 'Add user'; +$a->strings['Name of the new user.'] = 'Name of the new user.'; +$a->strings['Nickname'] = 'Nickname'; +$a->strings['Nickname of the new user.'] = 'Nickname of the new user.'; +$a->strings['Email address of the new user.'] = 'Email address of the new user.'; +$a->strings['Permanent deletion'] = 'Permanent deletion'; +$a->strings['User waiting for permanent deletion'] = 'User awaiting permanent deletion'; +$a->strings['%s user approved'] = [ + 0 => '%s user approved', + 1 => '%s users approved', +]; +$a->strings['%s registration revoked'] = [ + 0 => '%s registration revoked', + 1 => '%s registrations revoked', +]; +$a->strings['Account approved.'] = 'Account approved.'; +$a->strings['Registration revoked'] = 'Registration revoked'; +$a->strings['Request date'] = 'Request date'; +$a->strings['No registrations.'] = 'No registrations.'; +$a->strings['Note from the user'] = 'Note from the user'; +$a->strings['Deny'] = 'Deny'; $a->strings['Show Ignored Requests'] = 'Show ignored requests.'; $a->strings['Hide Ignored Requests'] = 'Hide ignored requests'; $a->strings['Notification type:'] = 'Notification type:'; @@ -1940,14 +1476,48 @@ $a->strings['System Notifications'] = 'System notifications'; $a->strings['Personal Notifications'] = 'Personal notifications'; $a->strings['Home Notifications'] = 'Home notifications'; $a->strings['Show unread'] = 'Show unread'; +$a->strings['{0} requested registration'] = '{0} requested registration'; +$a->strings['{0} and %d others requested registration'] = '{0} and %d others requested registration'; $a->strings['Authorize application connection'] = 'Authorise application connection'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Do you want to authorise this application to access your posts and contacts and create new posts for you?'; +$a->strings['Resubscribing to OStatus contacts'] = 'Resubscribing to OStatus contacts'; +$a->strings['Keep this window open until done.'] = 'Keep this window open until done.'; +$a->strings['Subscribing to contacts'] = 'Subscribing to contacts'; +$a->strings['No contact provided.'] = 'No contact provided.'; +$a->strings['Couldn\'t fetch information for contact.'] = 'Couldn\'t fetch information for contact.'; +$a->strings['Couldn\'t fetch friends for contact.'] = 'Couldn\'t fetch friends for contact.'; +$a->strings['Couldn\'t fetch following contacts.'] = 'Couldn\'t fetch following contacts.'; +$a->strings['Couldn\'t fetch remote profile.'] = 'Couldn\'t fetch remote profile.'; +$a->strings['Unsupported network'] = 'Unsupported network'; +$a->strings['Done'] = 'Done'; +$a->strings['success'] = 'success'; +$a->strings['failed'] = 'failed'; +$a->strings['ignored'] = 'Ignored'; $a->strings['Remote privacy information not available.'] = 'Remote privacy information not available.'; $a->strings['Visible to:'] = 'Visible to:'; $a->strings['The Photo with id %s is not available.'] = 'The Photo with id %s is not available.'; $a->strings['Invalid photo with id %s.'] = 'Invalid photo with id %s.'; +$a->strings['Edit post'] = 'Edit post'; +$a->strings['web link'] = 'web link'; +$a->strings['Insert video link'] = 'Insert video link'; +$a->strings['video link'] = 'video link'; +$a->strings['Insert audio link'] = 'Insert audio link'; +$a->strings['audio link'] = 'audio link'; +$a->strings['Remove Item Tag'] = 'Remove Item tag'; +$a->strings['Select a tag to remove: '] = 'Select a tag to remove: '; +$a->strings['Remove'] = 'Remove'; $a->strings['No contacts.'] = 'No contacts.'; +$a->strings['%s\'s timeline'] = '%s\'s timeline'; +$a->strings['%s\'s posts'] = '%s\'s posts'; +$a->strings['%s\'s comments'] = '%s\'s comments'; +$a->strings['Image exceeds size limit of %s'] = 'Image exceeds size limit of %s'; +$a->strings['Image upload didn\'t complete, please try again'] = 'Image upload didn\'t complete, please try again'; +$a->strings['Image file is missing'] = 'Image file is missing'; +$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Server can\'t accept new file upload at this time, please contact your administrator'; +$a->strings['Image file is empty.'] = 'Image file is empty.'; +$a->strings['View Album'] = 'View album'; $a->strings['Profile not found.'] = 'Profile not found.'; +$a->strings['Full Name:'] = 'Full name:'; $a->strings['Member since:'] = 'Member since:'; $a->strings['j F, Y'] = 'j F, Y'; $a->strings['j F'] = 'j F'; @@ -1957,12 +1527,21 @@ $a->strings['%d year old'] = [ 0 => '%d year old', 1 => '%d years old', ]; -$a->strings['Forums:'] = 'Forums:'; +$a->strings['Description:'] = 'Description:'; $a->strings['View profile as:'] = 'View profile as:'; -$a->strings['%s\'s timeline'] = '%s\'s timeline'; -$a->strings['%s\'s posts'] = '%s\'s posts'; -$a->strings['%s\'s comments'] = '%s\'s comments'; +$a->strings['Profile unavailable.'] = 'Profile unavailable.'; +$a->strings['Invalid locator'] = 'Invalid locator'; +$a->strings['The provided profile link doesn\'t seem to be valid'] = 'The provided profile link doesn\'t seem to be valid'; +$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'Remote subscription can\'t be done for your network. Please subscribe directly on your system.'; +$a->strings['Friend/Connection Request'] = 'Friend/Connection request'; +$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.'] = '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.'; +$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.'] = '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.'; +$a->strings['Your Webfinger address or profile URL:'] = 'Your WebFinger address or profile URL:'; +$a->strings['Unable to check your home location.'] = 'Unable to check your home location.'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Number of daily wall messages for %s exceeded. Message failed.'; +$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'; $a->strings['Only parent users can create additional accounts.'] = 'Only parent users can create additional accounts.'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'; $a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking "Register".'] = 'You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking "Register".'; $a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'; $a->strings['Your OpenID (optional): '] = 'Your OpenID (optional): '; @@ -1974,9 +1553,12 @@ $a->strings['Your invitation code: '] = 'Your invitation code: '; $a->strings['Your Full Name (e.g. Joe Smith, real or real-looking): '] = 'Your full name: '; $a->strings['Your Email Address: (Initial information will be send there, so this has to be an existing address.)'] = 'Your Email Address: (Initial information will be send there; so this must be an existing address.)'; $a->strings['Please repeat your e-mail address:'] = 'Please repeat your e-mail address:'; +$a->strings['New Password:'] = 'New password:'; $a->strings['Leave empty for an auto generated password.'] = 'Leave empty for an auto generated password.'; +$a->strings['Confirm:'] = 'Confirm new password:'; $a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be "nickname@%s".'] = 'Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be "nickname@%s".'; $a->strings['Choose a nickname: '] = 'Choose a nickname: '; +$a->strings['Import'] = 'Import profile'; $a->strings['Import your profile to this friendica instance'] = 'Import an existing Friendica profile to this node.'; $a->strings['Note: This node explicitly contains adult content'] = 'Note: This node explicitly contains adult content'; $a->strings['Parent Password:'] = 'Parent password:'; @@ -1991,15 +1573,9 @@ $a->strings['Failed to send email message. Here your accout details:
    login: $a->strings['Registration successful.'] = 'Registration successful.'; $a->strings['Your registration can not be processed.'] = 'Your registration cannot be processed.'; $a->strings['You have to leave a request note for the admin.'] = 'You have to leave a request note for the admin.'; +$a->strings['An internal error occured.'] = 'An internal error occurred.'; $a->strings['Your registration is pending approval by the site owner.'] = 'Your registration is pending approval by the site administrator.'; -$a->strings['Profile unavailable.'] = 'Profile unavailable.'; -$a->strings['Invalid locator'] = 'Invalid locator'; -$a->strings['The provided profile link doesn\'t seem to be valid'] = 'The provided profile link doesn\'t seem to be valid'; -$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'Remote subscription can\'t be done for your network. Please subscribe directly on your system.'; -$a->strings['Friend/Connection Request'] = 'Friend/Connection request'; -$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.'] = '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.'; -$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.'] = '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.'; -$a->strings['Your Webfinger address or profile URL:'] = 'Your WebFinger address or profile URL:'; +$a->strings['You must be logged in to use this module.'] = 'You must be logged in to use this module.'; $a->strings['Only logged in users are permitted to perform a search.'] = 'Only logged in users are permitted to perform a search.'; $a->strings['Only one search per minute is permitted for not logged in users.'] = 'Only one search per minute is permitted for not logged in users.'; $a->strings['Items tagged with: %s'] = 'Items tagged with: %s'; @@ -2019,6 +1595,10 @@ $a->strings['Logged out.'] = 'Logged out.'; $a->strings['OpenID protocol error. No ID returned'] = 'OpenID protocol error. No ID returned'; $a->strings['Account not found. Please login to your existing account to add the OpenID to it.'] = 'Account not found. Please login to your existing account to add the OpenID.'; $a->strings['Account not found. Please register a new account or login to your existing account to add the OpenID to it.'] = 'Account not found. Please register a new account or login to your existing account to add the OpenID.'; +$a->strings['Passwords do not match.'] = 'Passwords do not match.'; +$a->strings['Password unchanged.'] = 'Password unchanged.'; +$a->strings['Current Password:'] = 'Current password:'; +$a->strings['Your current password to confirm the changes'] = 'Current password to confirm change'; $a->strings['Remaining recovery codes: %d'] = 'Remaining recovery codes: %d'; $a->strings['Invalid code, please retry.'] = 'Invalid code, please try again.'; $a->strings['Two-factor recovery'] = 'Two-factor recovery'; @@ -2029,6 +1609,138 @@ $a->strings['Submit recovery code and complete login'] = 'Submit recovery code a $a->strings['

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

    '] = '

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

    '; $a->strings['Please enter a code from your authentication app'] = 'Please enter a code from your authentication app'; $a->strings['Verify code and complete login'] = 'Verify code and complete login'; +$a->strings['Please use a shorter name.'] = 'Please use a shorter name.'; +$a->strings['Name too short.'] = 'Name too short.'; +$a->strings['Wrong Password.'] = 'Wrong password.'; +$a->strings['Invalid email.'] = 'Invalid email.'; +$a->strings['Cannot change to that email.'] = 'Cannot change to that email.'; +$a->strings['Settings were not updated.'] = 'Settings were not updated.'; +$a->strings['Contact CSV file upload error'] = 'Contact CSV file upload error'; +$a->strings['Importing Contacts done'] = 'Importing contacts done'; +$a->strings['Relocate message has been send to your contacts'] = 'Relocate message has been send to your contacts'; +$a->strings['Unable to find your profile. Please contact your admin.'] = 'Unable to find your profile. Please contact your admin.'; +$a->strings['Personal Page Subtypes'] = 'Personal Page subtypes'; +$a->strings['Account for a personal profile.'] = 'Account for a personal profile.'; +$a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'Account for an organisation that automatically approves contact requests as "Followers".'; +$a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'Account for a news reflector that automatically approves contact requests as "Followers".'; +$a->strings['Account for community discussions.'] = 'Account for community discussions.'; +$a->strings['Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'] = 'Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'; +$a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'Account for a public profile that automatically approves contact requests as "Followers".'; +$a->strings['Automatically approves all contact requests.'] = 'Automatically approves all contact requests.'; +$a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'Account for a popular profile that automatically approves contact requests as "Friends".'; +$a->strings['Requires manual approval of contact requests.'] = 'Requires manual approval of contact requests.'; +$a->strings['OpenID:'] = 'OpenID:'; +$a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Optional) Allow this OpenID to login to this account.'; +$a->strings['Publish your profile in your local site directory?'] = 'Publish your profile in your local site directory?'; +$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.'] = 'Your profile will be published in this node\'s local directory. Your profile details may be publicly visible depending on the system settings.'; +$a->strings['Your profile will also be published in the global friendica directories (e.g. %s).'] = 'Your profile will also be published in the global Friendica directories (e.g. %s).'; +$a->strings['Account Settings'] = 'Account Settings'; +$a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'My identity address: \'%s\' or \'%s\''; +$a->strings['Password Settings'] = 'Password change'; +$a->strings['Leave password fields blank unless changing'] = 'Leave password fields blank unless changing'; +$a->strings['Password:'] = 'Password:'; +$a->strings['Your current password to confirm the changes of the email address'] = 'Your current password to confirm the changes of the email address'; +$a->strings['Delete OpenID URL'] = 'Delete OpenID URL'; +$a->strings['Basic Settings'] = 'Basic information'; +$a->strings['Display name:'] = 'Display name:'; +$a->strings['Email Address:'] = 'Email address:'; +$a->strings['Your Timezone:'] = 'Time zone:'; +$a->strings['Your Language:'] = 'Language:'; +$a->strings['Set the language we use to show you friendica interface and to send you emails'] = 'Set the language of your Friendica interface and emails sent to you.'; +$a->strings['Default Post Location:'] = 'Posting location:'; +$a->strings['Use Browser Location:'] = 'Use browser location:'; +$a->strings['Security and Privacy Settings'] = 'Security and privacy'; +$a->strings['Maximum Friend Requests/Day:'] = 'Maximum friend requests per day:'; +$a->strings['(to prevent spam abuse)'] = 'May prevent spam or abuse registrations'; +$a->strings['Allow your profile to be searchable globally?'] = 'Allow your profile to be searchable globally?'; +$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.'] = '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.'; +$a->strings['Hide your contact/friend list from viewers of your profile?'] = 'Hide your contact/friend list from viewers of your profile?'; +$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 list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list.'; +$a->strings['Make public posts unlisted'] = 'Make public posts unlisted'; +$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.'] = '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->strings['Make all posted pictures accessible'] = 'Make all posted pictures accessible'; +$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.'] = '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.'; +$a->strings['Allow friends to post to your profile page?'] = 'Allow friends to post to my wall?'; +$a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'; +$a->strings['Allow friends to tag your posts?'] = 'Allow friends to tag my post?'; +$a->strings['Your contacts can add additional tags to your posts.'] = 'Your contacts can add additional tags to your posts.'; +$a->strings['Permit unknown people to send you private mail?'] = 'Allow unknown people to send me private messages?'; +$a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Friendica network users may send you private messages even if they are not in your contact list.'; +$a->strings['Maximum private messages per day from unknown people:'] = 'Maximum private messages per day from unknown people:'; +$a->strings['Default Post Permissions'] = 'Default post permissions'; +$a->strings['Expiration settings'] = 'Expiration settings'; +$a->strings['Automatically expire posts after this many days:'] = 'Automatically expire posts after this many days:'; +$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Posts will not expire if empty; expired posts will be deleted'; +$a->strings['Expire posts'] = 'Expire posts'; +$a->strings['When activated, posts and comments will be expired.'] = 'If activated, posts and comments will expire.'; +$a->strings['Expire personal notes'] = 'Expire personal notes'; +$a->strings['When activated, the personal notes on your profile page will be expired.'] = 'If activated, personal notes on your profile page will expire.'; +$a->strings['Expire starred posts'] = 'Expire starred posts'; +$a->strings['Starring posts keeps them from being expired. That behaviour is overwritten by this setting.'] = 'Starring posts keeps them from being expired. That behaviour is overwritten by this setting.'; +$a->strings['Only expire posts by others'] = 'Only expire posts by others'; +$a->strings['When activated, your own posts never expire. Then the settings above are only valid for posts you received.'] = 'If activated, your own posts never expire. Than the settings above are only valid for posts you received.'; +$a->strings['Notification Settings'] = 'Notification'; +$a->strings['Send a notification email when:'] = 'Send notification email when:'; +$a->strings['You receive an introduction'] = 'Receiving an introduction'; +$a->strings['Your introductions are confirmed'] = 'My introductions are confirmed'; +$a->strings['Someone writes on your profile wall'] = 'Someone writes on my wall'; +$a->strings['Someone writes a followup comment'] = 'A follow up comment is posted'; +$a->strings['You receive a private message'] = 'receiving a private message'; +$a->strings['You receive a friend suggestion'] = 'Receiving a friend suggestion'; +$a->strings['You are tagged in a post'] = 'Tagged in a post'; +$a->strings['Create a desktop notification when:'] = 'Create a desktop notification when:'; +$a->strings['Someone liked your content'] = 'Someone liked your content'; +$a->strings['Someone shared your content'] = 'Someone shared your content'; +$a->strings['Activate desktop notifications'] = 'Activate desktop notifications'; +$a->strings['Show desktop popup on new notifications'] = 'Show desktop pop-up on new notifications'; +$a->strings['Text-only notification emails'] = 'Text-only notification emails'; +$a->strings['Send text only notification emails, without the html part'] = 'Receive text only emails without HTML '; +$a->strings['Show detailled notifications'] = 'Show detailed notifications'; +$a->strings['Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.'] = 'By default, notifications are condensed into a single notification for each item. If enabled, every notification is displayed.'; +$a->strings['Show notifications of ignored contacts'] = 'Show notifications of ignored contacts'; +$a->strings['You don\'t see posts from ignored contacts. But you still see their comments. This setting controls if you want to still receive regular notifications that are caused by ignored contacts or not.'] = 'You don\'t see posts from ignored contacts. But you still see their comments. This setting controls if you want to still receive regular notifications that are caused by ignored contacts or not.'; +$a->strings['Advanced Account/Page Type Settings'] = 'Advanced account types'; +$a->strings['Change the behaviour of this account for special situations'] = 'Change behaviour of this account for special situations'; +$a->strings['Import Contacts'] = 'Import Contacts'; +$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'; +$a->strings['Upload File'] = 'Upload File'; +$a->strings['Relocate'] = 'Recent relocation'; +$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.'] = 'If you have moved this profile from another server and some of your contacts don\'t receive your updates:'; +$a->strings['Resend relocate message to contacts'] = 'Resend relocation message to contacts'; +$a->strings['Addon Settings'] = 'Addon settings'; +$a->strings['No Addon settings configured'] = 'No addon settings configured'; +$a->strings['Description'] = 'Description'; +$a->strings['Add'] = 'Add'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'Failed to connect with email account using the settings provided.'; +$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'diaspora* (Socialhome, Hubzilla)'; +$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; +$a->strings['Email access is disabled on this site.'] = 'Email access is disabled on this site.'; +$a->strings['None'] = 'None'; +$a->strings['General Social Media Settings'] = 'General Social Media Settings'; +$a->strings['Enable Content Warning'] = 'Enable Content Warning'; +$a->strings['Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.'] = 'Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.'; +$a->strings['Enable intelligent shortening'] = 'Enable intelligent shortening'; +$a->strings['Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.'] = 'Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original Friendica post.'; +$a->strings['Enable simple text shortening'] = 'Enable simple text shortening'; +$a->strings['Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'] = 'Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'; +$a->strings['Attach the link title'] = 'Attach the link title'; +$a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'If 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.'; +$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Your legacy ActivityPub/GNU Social account'; +$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'; +$a->strings['Repair OStatus subscriptions'] = 'Repair OStatus subscriptions'; +$a->strings['Email/Mailbox Setup'] = 'Email/Mailbox setup'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Specify how to connect to your mailbox, if you wish to communicate with existing email contacts.'; +$a->strings['Last successful email check:'] = 'Last successful email check:'; +$a->strings['IMAP server name:'] = 'IMAP server name:'; +$a->strings['IMAP port:'] = 'IMAP port:'; +$a->strings['Security:'] = 'Security:'; +$a->strings['Email login name:'] = 'Email login name:'; +$a->strings['Email password:'] = 'Email password:'; +$a->strings['Reply-to address:'] = 'Reply-to address:'; +$a->strings['Send public posts to all email contacts:'] = 'Send public posts to all email contacts:'; +$a->strings['Action after import:'] = 'Action after import:'; +$a->strings['Move to folder'] = 'Move to folder'; +$a->strings['Move to folder:'] = 'Move to folder:'; $a->strings['Delegation successfully granted.'] = 'Delegation successfully granted.'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'Parent user not found, unavailable or password doesn\'t match.'; $a->strings['Delegation successfully revoked.'] = 'Delegation successfully revoked.'; @@ -2044,7 +1756,6 @@ $a->strings['Delegates'] = 'Delegates'; $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.'] = 'Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely.'; $a->strings['Existing Page Delegates'] = 'Existing page delegates'; $a->strings['Potential Delegates'] = 'Potential delegates'; -$a->strings['Add'] = 'Add'; $a->strings['No entries.'] = 'No entries.'; $a->strings['The theme you chose isn\'t available.'] = 'The chosen theme isn\'t available.'; $a->strings['%s - (Unsupported)'] = '%s - (Unsupported)'; @@ -2053,7 +1764,6 @@ $a->strings['General Theme Settings'] = 'Themes'; $a->strings['Custom Theme Settings'] = 'Theme customisation'; $a->strings['Content Settings'] = 'Content/Layout'; $a->strings['Theme settings'] = 'Theme settings'; -$a->strings['Calendar'] = 'Calendar'; $a->strings['Display Theme:'] = 'Display theme:'; $a->strings['Mobile Theme:'] = 'Mobile theme:'; $a->strings['Number of items to display per page:'] = 'Number of items displayed per page:'; @@ -2061,12 +1771,12 @@ $a->strings['Maximum of 100 items'] = 'Maximum of 100 items'; $a->strings['Number of items to display per page when viewed from mobile device:'] = 'Number of items displayed per page on mobile devices:'; $a->strings['Update browser every xx seconds'] = 'Update browser every so many seconds:'; $a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Minimum 10 seconds; to disable -1.'; -$a->strings['Automatic updates only at the top of the post stream pages'] = 'Automatic updates only at the top of the post stream pages'; -$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.'] = 'Auto update may add new posts at the top of the post stream pages. This can affect the scroll position and perturb normal reading if something happens anywhere else the top of the page.'; $a->strings['Infinite scroll'] = 'Infinite scroll'; $a->strings['Automatic fetch new items when reaching the page end.'] = 'Automatic fetch new items when reaching the page end.'; $a->strings['Beginning of week:'] = 'Week begins: '; -$a->strings['Profile Name is required.'] = 'Profile name is required.'; +$a->strings['Additional Features'] = 'Additional Features'; +$a->strings['Connected Apps'] = 'Connected Apps'; +$a->strings['Remove authorization'] = 'Remove authorization'; $a->strings['Profile couldn\'t be updated.'] = 'Profile couldn\'t be updated.'; $a->strings['Label:'] = 'Label:'; $a->strings['Value:'] = 'Value:'; @@ -2081,7 +1791,6 @@ $a->strings['Location'] = 'Location'; $a->strings['Miscellaneous'] = 'Miscellaneous'; $a->strings['Custom Profile Fields'] = 'Custom Profile Fields'; $a->strings['Upload Profile Photo'] = 'Upload profile photo'; -$a->strings['Display name:'] = 'Display name:'; $a->strings['Street Address:'] = 'Street address:'; $a->strings['Locality/City:'] = 'Locality/City:'; $a->strings['Region/State:'] = 'Region/State:'; @@ -2093,15 +1802,6 @@ $a->strings['Public Keywords:'] = 'Public keywords:'; $a->strings['(Used for suggesting potential friends, can be seen by others)'] = 'Used for suggesting potential friends, can be seen by others.'; $a->strings['Private Keywords:'] = 'Private keywords:'; $a->strings['(Used for searching profiles, never shown to others)'] = 'Used for searching profiles, never shown to others.'; -$a->strings['

    Custom fields appear on your profile page.

    -

    You can use BBCodes in the field values.

    -

    Reorder by dragging the field title.

    -

    Empty the label field to remove a custom field.

    -

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

    '] = '

    Custom fields appear on your profile page.

    -

    You can use BBCodes in the field values.

    -

    Reorder by dragging the field title.

    -

    Empty the label field to remove a custom field.

    -

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

    '; $a->strings['Image size reduction [%s] failed.'] = 'Image size reduction [%s] failed.'; $a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Shift-reload the page or clear browser cache if the new photo does not display immediately.'; $a->strings['Unable to process image'] = 'Unable to process image'; @@ -2118,6 +1818,13 @@ $a->strings['Upload Picture:'] = 'Upload Picture:'; $a->strings['or'] = 'or'; $a->strings['skip this step'] = 'skip this step'; $a->strings['select a photo from your photo albums'] = 'select a photo from your photo albums'; +$a->strings['[Friendica System Notify]'] = '[Friendica System Notify]'; +$a->strings['User deleted their account'] = 'User deleted their account'; +$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'On your Friendica node a user deleted their account. Please ensure that their data is removed from the backups.'; +$a->strings['The user id is %d'] = 'The user id is %d'; +$a->strings['Remove My Account'] = 'Remove My Account'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'This will completely remove your account. Once this has been done it is not recoverable.'; +$a->strings['Please enter your password for verification:'] = 'Please enter your password for verification:'; $a->strings['Please enter your password to access this page.'] = 'Please enter your password to access this page.'; $a->strings['App-specific password generation failed: The description is empty.'] = 'App-specific password generation failed: The description is empty.'; $a->strings['App-specific password generation failed: This description already exists.'] = 'App-specific password generation failed: This description already exists.'; @@ -2127,7 +1834,6 @@ $a->strings['App-specific password successfully revoked.'] = 'App-specific passw $a->strings['Two-factor app-specific passwords'] = 'Two-factor app-specific passwords'; $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.

    '] = '

    App-specific passwords are randomly generated passwords. They are used instead of your regular password to authenticate your account on third-party applications that don\'t support two-factor authentication.

    '; $a->strings['Make sure to copy your new app-specific password now. You won’t be able to see it again!'] = 'Make sure to copy your new app-specific password now. You won’t be able to see it again!'; -$a->strings['Description'] = 'Description'; $a->strings['Last Used'] = 'Last Used'; $a->strings['Revoke'] = 'Revoke'; $a->strings['Revoke All'] = 'Revoke All'; @@ -2136,7 +1842,6 @@ $a->strings['Generate new app-specific password'] = 'Generate new app-specific p $a->strings['Friendiqa on my Fairphone 2...'] = 'Friendiqa on my Fairphone 2...'; $a->strings['Generate'] = 'Generate'; $a->strings['Two-factor authentication successfully disabled.'] = 'Two-factor authentication successfully disabled.'; -$a->strings['Wrong Password'] = 'Wrong password'; $a->strings['

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

    '] = '

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

    '; $a->strings['Authenticator app'] = 'Authenticator app'; $a->strings['Configured'] = 'Configured'; @@ -2201,20 +1906,29 @@ $a->strings['Export all'] = 'Export all'; $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)'] = '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)'; $a->strings['Export Contacts to CSV'] = 'Export contacts to CSV'; $a->strings['Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon.'] = 'Export the list of the accounts you are following as CSV file. Compatible with Mastodon for example.'; -$a->strings['Bad Request'] = 'Bad Request'; -$a->strings['Forbidden'] = 'Forbidden'; -$a->strings['Not Found'] = 'Not found'; -$a->strings['Service Unavailable'] = 'Service Unavailable'; -$a->strings['The server cannot or will not process the request due to an apparent client error.'] = 'The server cannot process the request due to an apparent client error.'; -$a->strings['Authentication is required and has failed or has not yet been provided.'] = 'Authentication is required and has failed or has not yet been provided.'; -$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.'] = '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->strings['The requested resource could not be found but may be available in the future.'] = 'The requested resource could not be found but may be available in the future.'; -$a->strings['An unexpected condition was encountered and no more specific message is suitable.'] = 'An unexpected condition was encountered and no more specific message is available.'; -$a->strings['The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later.'] = 'The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later.'; $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.'] = '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->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.'] = 'This information is required for communication and is passed on to the nodes of the communication partners and stored there. Users can enter additional personal information that may be transmitted to the communication partner\'s accounts.'; -$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.'] = '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.'; $a->strings['Privacy Statement'] = 'Privacy Statement'; +$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'The requested item doesn\'t exist or has been deleted.'; +$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Accounts that I manage or own.'; +$a->strings['Select an identity to manage: '] = 'Select identity:'; +$a->strings['User imports on closed servers can only be done by an administrator.'] = 'User imports on closed servers can only be done by an administrator.'; +$a->strings['Move account'] = 'Move Existing Friendica Account'; +$a->strings['You can import an account from another Friendica server.'] = 'You can import an existing Friendica profile to this node.'; +$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.'] = '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.'; +$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from diaspora*.'; +$a->strings['Account file'] = 'Account file:'; +$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'To export your account, go to "Settings->Export personal data" and select "Export account"'; +$a->strings['Error decoding account file'] = 'Error decoding account file'; +$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Error! No version data in file! Is this a Friendica account file?'; +$a->strings['User \'%s\' already exists on this server!'] = 'User \'%s\' already exists on this server!'; +$a->strings['User creation error'] = 'User creation error'; +$a->strings['%d contact not imported'] = [ + 0 => '%d contact not imported', + 1 => '%d contacts not imported', +]; +$a->strings['User profile creation error'] = 'User profile creation error'; +$a->strings['Done. You can now login with your username and password'] = 'Done. You can now login with your username and password'; $a->strings['Welcome to Friendica'] = 'Welcome to Friendica'; $a->strings['New Member Checklist'] = 'New Member Checklist'; $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.'] = '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.'; @@ -2238,8 +1952,6 @@ $a->strings['Go to Your Site\'s Directory'] = 'Go to your site\'s directory'; $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.'] = 'The directory 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 when requested.'; $a->strings['Finding New People'] = 'Finding new people'; $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.'] = '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->strings['Group Your Contacts'] = 'Group your contacts'; -$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.'] = 'Once you have made some friends, organise 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.'; $a->strings['Why Aren\'t My Posts Public?'] = 'Why aren\'t my posts public?'; $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.'] = '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->strings['Getting Help'] = 'Getting help'; @@ -2271,9 +1983,6 @@ $a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Plea $a->strings['%s %s posted to your profile wall'] = '%s %s posted to your profile wall'; $a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s posted to your profile wall at %2$s'; $a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s posted to [url=%2$s]your wall[/url]'; -$a->strings['%1$s %2$s poked you'] = '%1$s %2$s poked you'; -$a->strings['%1$s poked you at %2$s'] = '%1$s poked you at %2$s'; -$a->strings['%1$s [url=%2$s]poked you[/url].'] = '%1$s [url=%2$s]poked you[/url].'; $a->strings['%s Introduction received'] = '%s Introduction received'; $a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'You\'ve received an introduction from \'%1$s\' at %2$s'; $a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'You\'ve received [url=%1$s]an introduction[/url] from %2$s.'; @@ -2312,8 +2021,8 @@ $a->strings['This message was sent to you by %s, a member of the Friendica socia $a->strings['You may visit them online at %s'] = 'You may visit them online at %s'; $a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Please contact the sender by replying to this post if you do not wish to receive these messages.'; $a->strings['%s posted an update.'] = '%s posted an update.'; -$a->strings['This entry was edited'] = 'This entry was edited'; $a->strings['Private Message'] = 'Private message'; +$a->strings['This entry was edited'] = 'This entry was edited'; $a->strings['Edit'] = 'Edit'; $a->strings['Delete globally'] = 'Delete globally'; $a->strings['Remove locally'] = 'Remove locally'; @@ -2322,8 +2031,6 @@ $a->strings['I will not attend'] = 'I will not attend'; $a->strings['I might attend'] = 'I might attend'; $a->strings['%s (Received %s)'] = '%s (Received %s)'; $a->strings['Comment this item on your system'] = 'Comment this item on your system'; -$a->strings['Pushed'] = 'Pushed'; -$a->strings['Pulled'] = 'Pulled'; $a->strings['to'] = 'to'; $a->strings['via'] = 'via'; $a->strings['Wall-to-Wall'] = 'Wall-to-wall'; @@ -2341,7 +2048,6 @@ $a->strings['%d comment'] = [ ]; $a->strings['Show more'] = 'Show more'; $a->strings['Show fewer'] = 'Show fewer'; -$a->strings['Attachments:'] = 'Attachments:'; $a->strings['%s is now following %s.'] = '%s is now following %s.'; $a->strings['following'] = 'following'; $a->strings['%s stopped following %s.'] = '%s stopped following %s.'; diff --git a/view/lang/en-us/messages.po b/view/lang/en-us/messages.po index 6b5dbdffb..011c0839c 100644 --- a/view/lang/en-us/messages.po +++ b/view/lang/en-us/messages.po @@ -1,530 +1,91 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: # Andy H3 , 2017-2021 -# Hypolite Petovan , 2018-2020 +# Hypolite Petovan , 2018-2020,2022-2023 +# Josh Soref, 2023 # R C, 2018 # Steffen K9, 2019,2021 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-24 23:21-0400\n" -"PO-Revision-Date: 2021-10-27 03:56+0000\n" -"Last-Translator: Andy H3 \n" -"Language-Team: English (United States) (http://www.transifex.com/Friendica/friendica/language/en_US/)\n" +"POT-Creation-Date: 2023-10-15 13:49+0000\n" +"PO-Revision-Date: 2011-05-05 10:19+0000\n" +"Last-Translator: Hypolite Petovan , 2018-2020,2022-2023\n" +"Language-Team: English (United States) (http://app.transifex.com/Friendica/friendica/language/en_US/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: en_US\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: include/api.php:1113 src/Module/BaseApi.php:294 -#, 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] "Daily posting limit of %d post reached. The post was rejected." -msgstr[1] "Daily posting limit of %d posts reached. This post was rejected." - -#: include/api.php:1127 src/Module/BaseApi.php:310 -#, 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] "Weekly posting limit of %d post reached. The post was rejected." -msgstr[1] "Weekly posting limit of %d posts reached. This post was rejected." - -#: include/api.php:1141 src/Module/BaseApi.php:326 -#, php-format -msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "Monthly posting limit of %d posts reached. This post was rejected." - -#: mod/api.php:30 mod/editpost.php:38 mod/events.php:220 mod/follow.php:56 -#: mod/follow.php:130 mod/item.php:185 mod/item.php:190 mod/item.php:936 -#: mod/message.php:69 mod/message.php:111 mod/notes.php:44 -#: mod/ostatus_subscribe.php:32 mod/photos.php:160 mod/photos.php:900 -#: mod/repair_ostatus.php:31 mod/settings.php:47 mod/settings.php:57 -#: mod/settings.php:409 mod/suggest.php:34 mod/uimport.php:33 -#: mod/unfollow.php:35 mod/unfollow.php:50 mod/unfollow.php:82 -#: mod/wall_attach.php:68 mod/wall_attach.php:71 mod/wall_upload.php:90 -#: mod/wall_upload.php:93 mod/wallmessage.php:36 mod/wallmessage.php:55 -#: mod/wallmessage.php:89 mod/wallmessage.php:109 src/Module/Attach.php:55 -#: src/Module/BaseApi.php:79 src/Module/BaseApi.php:88 -#: src/Module/BaseApi.php:97 src/Module/BaseApi.php:106 -#: src/Module/BaseNotifications.php:88 src/Module/Contact.php:328 -#: src/Module/Contact/Advanced.php:44 src/Module/Delegation.php:118 -#: src/Module/FollowConfirm.php:17 src/Module/FriendSuggest.php:44 -#: src/Module/Group.php:45 src/Module/Group.php:90 src/Module/Invite.php:41 -#: src/Module/Invite.php:130 src/Module/Notifications/Notification.php:48 -#: src/Module/Notifications/Notification.php:79 -#: src/Module/Profile/Common.php:56 src/Module/Profile/Contacts.php:56 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:64 src/Module/Register.php:77 -#: src/Module/Register.php:195 src/Module/Register.php:234 -#: src/Module/Search/Directory.php:38 src/Module/Settings/Delegation.php:42 -#: src/Module/Settings/Delegation.php:70 src/Module/Settings/Display.php:43 -#: src/Module/Settings/Display.php:121 -#: src/Module/Settings/Profile/Photo/Crop.php:166 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/UserExport.php:58 src/Module/Settings/UserExport.php:93 -#: src/Module/Settings/UserExport.php:198 -#: src/Module/Settings/UserExport.php:218 -#: src/Module/Settings/UserExport.php:283 -msgid "Permission denied." -msgstr "Permission denied." - -#: mod/cal.php:44 mod/cal.php:48 mod/follow.php:39 mod/redir.php:34 -#: mod/redir.php:175 src/Module/Conversation/Community.php:182 -#: src/Module/Debug/ItemBody.php:37 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:43 -msgid "Access denied." -msgstr "Access denied." - -#: mod/cal.php:61 mod/cal.php:78 mod/photos.php:69 mod/photos.php:140 -#: mod/photos.php:807 src/Model/Profile.php:229 src/Module/HCard.php:52 -#: src/Module/Profile/Common.php:41 src/Module/Profile/Common.php:52 -#: src/Module/Profile/Contacts.php:40 src/Module/Profile/Contacts.php:50 -#: src/Module/Profile/Media.php:38 src/Module/Profile/Status.php:58 -#: src/Module/Register.php:256 src/Module/RemoteFollow.php:49 -msgid "User not found." -msgstr "User not found." - -#: mod/cal.php:120 mod/display.php:270 src/Module/Profile/Profile.php:94 -#: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:109 -#: src/Module/Update/Profile.php:56 -msgid "Access to this profile has been restricted." -msgstr "Access to this profile has been restricted." - -#: mod/cal.php:242 mod/events.php:377 src/Content/Nav.php:194 -#: src/Content/Nav.php:258 src/Module/BaseProfile.php:84 -#: src/Module/BaseProfile.php:95 view/theme/frio/theme.php:229 -#: view/theme/frio/theme.php:233 -msgid "Events" -msgstr "Events" - -#: mod/cal.php:243 mod/events.php:378 -msgid "View" -msgstr "View" - -#: mod/cal.php:244 mod/events.php:380 -msgid "Previous" -msgstr "Previous" - -#: mod/cal.php:245 mod/events.php:381 src/Module/Install.php:207 -msgid "Next" -msgstr "Next" - -#: mod/cal.php:248 mod/events.php:386 src/Model/Event.php:457 -msgid "today" -msgstr "today" - -#: mod/cal.php:249 mod/events.php:387 src/Model/Event.php:458 -#: src/Util/Temporal.php:334 -msgid "month" -msgstr "month" - -#: mod/cal.php:250 mod/events.php:388 src/Model/Event.php:459 -#: src/Util/Temporal.php:335 -msgid "week" -msgstr "week" - -#: mod/cal.php:251 mod/events.php:389 src/Model/Event.php:460 -#: src/Util/Temporal.php:336 -msgid "day" -msgstr "day" - -#: mod/cal.php:252 mod/events.php:390 -msgid "list" -msgstr "List" - -#: mod/cal.php:265 src/Console/User.php:182 src/Model/User.php:680 -#: 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 "User not found" - -#: mod/cal.php:274 -msgid "This calendar format is not supported" -msgstr "This calendar format is not supported" - -#: mod/cal.php:276 -msgid "No exportable data found" -msgstr "No exportable data found" - -#: mod/cal.php:293 -msgid "calendar" -msgstr "calendar" - -#: mod/display.php:165 mod/photos.php:811 -#: src/Module/Conversation/Community.php:176 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 "Public access denied." - -#: mod/display.php:221 mod/display.php:295 -msgid "The requested item doesn't exist or has been deleted." -msgstr "The requested item doesn't exist or has been deleted." - -#: mod/display.php:375 -msgid "The feed for this item is unavailable." -msgstr "The feed for this item is unavailable." - -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Item not found" - -#: mod/editpost.php:64 -msgid "Edit post" -msgstr "Edit post" - -#: mod/editpost.php:91 mod/notes.php:56 src/Content/Text/HTML.php:885 -#: src/Module/Admin/Storage.php:143 src/Module/Filer/SaveTag.php:69 -msgid "Save" -msgstr "Save" - -#: mod/editpost.php:92 mod/photos.php:1347 src/Content/Conversation.php:326 -#: src/Module/Contact/Poke.php:157 src/Object/Post.php:964 -msgid "Loading..." -msgstr "" - -#: mod/editpost.php:93 mod/message.php:198 mod/message.php:355 -#: mod/wallmessage.php:139 src/Content/Conversation.php:327 -msgid "Upload photo" -msgstr "Upload photo" - -#: mod/editpost.php:94 src/Content/Conversation.php:328 -msgid "upload photo" -msgstr "upload photo" - -#: mod/editpost.php:95 src/Content/Conversation.php:329 -msgid "Attach file" -msgstr "Attach file" - -#: mod/editpost.php:96 src/Content/Conversation.php:330 -msgid "attach file" -msgstr "attach file" - -#: mod/editpost.php:97 mod/message.php:199 mod/message.php:356 -#: mod/wallmessage.php:140 -msgid "Insert web link" -msgstr "Insert web link" - -#: mod/editpost.php:98 -msgid "web link" -msgstr "web link" - -#: mod/editpost.php:99 -msgid "Insert video link" -msgstr "Insert video link" - -#: mod/editpost.php:100 -msgid "video link" -msgstr "video link" - -#: mod/editpost.php:101 -msgid "Insert audio link" -msgstr "Insert audio link" - -#: mod/editpost.php:102 -msgid "audio link" -msgstr "audio link" - -#: mod/editpost.php:103 src/Content/Conversation.php:340 -#: src/Module/Item/Compose.php:161 -msgid "Set your location" -msgstr "Set your location" - -#: mod/editpost.php:104 src/Content/Conversation.php:341 -msgid "set location" -msgstr "set location" - -#: mod/editpost.php:105 src/Content/Conversation.php:342 -msgid "Clear browser location" -msgstr "Clear browser location" - -#: mod/editpost.php:106 src/Content/Conversation.php:343 -msgid "clear location" -msgstr "clear location" - -#: mod/editpost.php:107 mod/message.php:200 mod/message.php:358 -#: mod/photos.php:1498 mod/wallmessage.php:141 -#: src/Content/Conversation.php:355 src/Content/Conversation.php:689 -#: src/Module/Item/Compose.php:165 src/Object/Post.php:502 -msgid "Please wait" -msgstr "Please wait" - -#: mod/editpost.php:108 src/Content/Conversation.php:356 -msgid "Permission settings" -msgstr "Permission settings" - -#: mod/editpost.php:116 src/Core/ACL.php:325 -msgid "CC: email addresses" -msgstr "CC: email addresses" - -#: mod/editpost.php:117 src/Content/Conversation.php:366 -msgid "Public post" -msgstr "Public post" - -#: mod/editpost.php:120 src/Content/Conversation.php:345 -#: src/Module/Item/Compose.php:166 -msgid "Set title" -msgstr "Set title" - -#: mod/editpost.php:122 src/Content/Conversation.php:347 -#: src/Module/Item/Compose.php:167 -msgid "Categories (comma-separated list)" -msgstr "Categories (comma-separated list)" - -#: mod/editpost.php:123 src/Core/ACL.php:326 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Example: bob@example.com, mary@example.com" - -#: mod/editpost.php:128 mod/events.php:517 mod/photos.php:1346 -#: mod/photos.php:1402 mod/photos.php:1476 src/Content/Conversation.php:370 -#: src/Module/Item/Compose.php:160 src/Object/Post.php:974 -msgid "Preview" -msgstr "Preview" - -#: mod/editpost.php:130 mod/fbrowser.php:100 mod/fbrowser.php:127 -#: mod/follow.php:144 mod/photos.php:1013 mod/photos.php:1114 mod/tagrm.php:37 -#: mod/tagrm.php:129 mod/unfollow.php:97 src/Content/Conversation.php:373 -#: src/Module/Contact/Revoke.php:99 src/Module/RemoteFollow.php:116 -msgid "Cancel" -msgstr "Cancel" - -#: mod/editpost.php:134 src/Content/Conversation.php:380 -#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:460 -#: src/Module/Admin/Logs/View.php:92 -msgid "Message" -msgstr "Message" - -#: mod/editpost.php:135 src/Content/Conversation.php:381 -#: src/Module/Settings/TwoFactor/Trusted.php:101 -msgid "Browser" -msgstr "Browser" - -#: mod/editpost.php:136 mod/events.php:522 mod/photos.php:948 -#: mod/photos.php:1300 src/Content/Conversation.php:357 -msgid "Permissions" -msgstr "Permissions" - -#: mod/editpost.php:138 src/Content/Conversation.php:383 -msgid "Open Compose page" -msgstr "Open compose page" - -#: mod/events.php:123 mod/events.php:125 -msgid "Event can not end before it has started." -msgstr "Event cannot end before it has started." - -#: mod/events.php:132 mod/events.php:134 -msgid "Event title and start time are required." -msgstr "Event title and starting time are required." - -#: mod/events.php:379 -msgid "Create New Event" -msgstr "Create new event" - -#: mod/events.php:478 src/Module/Admin/Logs/View.php:96 -msgid "Event details" -msgstr "Event details" - -#: mod/events.php:479 -msgid "Starting date and Title are required." -msgstr "Starting date and title are required." - -#: mod/events.php:480 mod/events.php:485 -msgid "Event Starts:" -msgstr "Event starts:" - -#: mod/events.php:480 mod/events.php:510 -#: 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:61 -#: 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:137 -#: src/Module/Security/TwoFactor/Verify.php:100 -#: src/Module/Settings/TwoFactor/Index.php:133 -#: src/Module/Settings/TwoFactor/Verify.php:141 -msgid "Required" -msgstr "Required" - -#: mod/events.php:493 mod/events.php:516 -msgid "Finish date/time is not known or not relevant" -msgstr "Finish date/time is not known or not relevant" - -#: mod/events.php:495 mod/events.php:500 -msgid "Event Finishes:" -msgstr "Event finishes:" - -#: mod/events.php:506 src/Module/Profile/Profile.php:172 -#: src/Module/Settings/Profile/Index.php:239 -msgid "Description:" -msgstr "Description:" - -#: mod/events.php:508 src/Content/Widget/VCard.php:98 src/Model/Event.php:80 -#: src/Model/Event.php:107 src/Model/Event.php:466 src/Model/Event.php:915 -#: src/Model/Profile.php:368 src/Module/Contact.php:565 -#: src/Module/Directory.php:150 src/Module/Notifications/Introductions.php:165 -#: src/Module/Profile/Profile.php:194 -msgid "Location:" -msgstr "Location:" - -#: mod/events.php:510 mod/events.php:512 -msgid "Title:" -msgstr "Title:" - -#: mod/events.php:513 mod/events.php:514 -msgid "Share this event" -msgstr "Share this event" - -#: mod/events.php:519 mod/message.php:201 mod/message.php:357 -#: mod/photos.php:930 mod/photos.php:1034 mod/photos.php:1304 -#: mod/photos.php:1345 mod/photos.php:1401 mod/photos.php:1475 -#: src/Module/Admin/Item/Source.php:65 src/Module/Contact.php:523 -#: src/Module/Contact/Advanced.php:133 src/Module/Contact/Poke.php:158 -#: src/Module/Debug/ActivityPubConversion.php:141 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:56 src/Module/Debug/WebFinger.php:53 -#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:128 -#: src/Module/Install.php:245 src/Module/Install.php:287 -#: src/Module/Install.php:324 src/Module/Invite.php:177 -#: src/Module/Item/Compose.php:150 src/Module/Profile/Profile.php:247 -#: src/Module/Settings/Profile/Index.php:223 src/Object/Post.php:963 -#: 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 "Submit" - -#: mod/events.php:520 src/Module/Profile/Profile.php:248 -msgid "Basic" -msgstr "Basic" - -#: mod/events.php:521 src/Module/Admin/Site.php:507 src/Module/Contact.php:863 -#: src/Module/Profile/Profile.php:249 -msgid "Advanced" -msgstr "Advanced" - -#: mod/events.php:538 -msgid "Failed to remove event" -msgstr "Failed to remove event" - -#: mod/fbrowser.php:43 src/Content/Nav.php:192 src/Module/BaseProfile.php:64 -#: view/theme/frio/theme.php:227 -msgid "Photos" -msgstr "Photos" - -#: mod/fbrowser.php:102 mod/fbrowser.php:129 -#: src/Module/Settings/Profile/Photo/Index.php:129 -msgid "Upload" -msgstr "Upload" - -#: mod/fbrowser.php:124 -msgid "Files" -msgstr "Files" - -#: mod/follow.php:74 mod/unfollow.php:96 src/Module/RemoteFollow.php:115 -msgid "Submit Request" -msgstr "Submit request" - -#: mod/follow.php:84 -msgid "You already added this contact." -msgstr "You already added this contact." - -#: mod/follow.php:100 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "The network type couldn't be detected. Contact can't be added." - -#: mod/follow.php:108 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "diaspora* support isn't enabled. Contact can't be added." - -#: mod/follow.php:113 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatus support is disabled. Contact can't be added." - -#: mod/follow.php:138 src/Content/Item.php:463 src/Content/Widget.php:76 -#: src/Model/Contact.php:1072 src/Model/Contact.php:1084 -#: view/theme/vier/theme.php:172 -msgid "Connect/Follow" -msgstr "Connect/Follow" - -#: mod/follow.php:139 src/Module/RemoteFollow.php:114 -msgid "Please answer the following:" -msgstr "Please answer the following:" - -#: mod/follow.php:140 mod/unfollow.php:94 -msgid "Your Identity Address:" -msgstr "My identity address:" - -#: mod/follow.php:141 mod/unfollow.php:100 -#: src/Module/Admin/Blocklist/Contact.php:116 src/Module/Contact.php:561 -#: src/Module/Notifications/Introductions.php:107 -#: src/Module/Notifications/Introductions.php:176 -msgid "Profile URL" -msgstr "Profile URL:" - -#: mod/follow.php:142 src/Module/Contact.php:573 -#: src/Module/Notifications/Introductions.php:169 -#: src/Module/Profile/Profile.php:207 -msgid "Tags:" -msgstr "Tags:" - -#: mod/follow.php:153 -#, php-format -msgid "%s knows you" -msgstr "" - -#: mod/follow.php:154 -msgid "Add a personal note:" -msgstr "Add a personal note:" - -#: mod/follow.php:163 mod/unfollow.php:109 src/Module/BaseProfile.php:59 -#: src/Module/Contact.php:833 -msgid "Status Messages and Posts" -msgstr "Status Messages and Posts" - -#: mod/follow.php:191 -msgid "The contact could not be added." -msgstr "Contact could not be added." - -#: mod/item.php:135 mod/item.php:139 +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 msgid "Unable to locate original post." msgstr "Unable to locate original post." -#: mod/item.php:341 mod/item.php:346 -msgid "Empty post discarded." -msgstr "Empty post discarded." - -#: mod/item.php:742 +#: mod/item.php:138 msgid "Post updated." msgstr "" -#: mod/item.php:752 mod/item.php:757 +#: mod/item.php:203 mod/item.php:207 msgid "Item wasn't stored." msgstr "" -#: mod/item.php:768 +#: mod/item.php:217 msgid "Item couldn't be fetched." msgstr "" -#: mod/item.php:914 src/Module/Admin/Themes/Details.php:39 -#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:41 -#: src/Module/Debug/ItemBody.php:56 +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "Empty post discarded." + +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 +#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Item not found." +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 +#: src/Module/Invite.php:42 src/Module/Invite.php:131 +#: src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Channels.php:56 src/Module/Settings/Channels.php:114 +#: src/Module/Settings/Delegation.php:90 src/Module/Settings/Display.php:90 +#: src/Module/Settings/Display.php:193 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:112 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/User/Import.php:84 src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "Permission denied." + #: mod/lostpass.php:40 msgid "No valid account found." msgstr "No valid account found." @@ -591,7 +152,7 @@ msgid "" "your email for further instructions." msgstr "Enter email address or nickname to reset your password. You will receive further instruction via email." -#: mod/lostpass.php:130 src/Module/Security/Login.php:148 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " msgstr "Nickname or email: " @@ -599,7 +160,7 @@ msgstr "Nickname or email: " msgid "Reset" msgstr "Reset" -#: mod/lostpass.php:146 src/Module/Security/Login.php:160 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 msgid "Password Reset" msgstr "Forgotten password?" @@ -659,23 +220,11 @@ msgstr "\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1$s msgid "Your password has been changed at %s" msgstr "Your password has been changed at %s" -#: mod/match.php:62 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "" - -#: mod/match.php:93 src/Module/BaseSearch.php:117 -msgid "No matches" -msgstr "No matches" - -#: mod/match.php:98 -msgid "Profile Match" -msgstr "Profile Match" - -#: mod/message.php:46 mod/message.php:126 src/Content/Nav.php:286 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 msgid "New Message" msgstr "New Message" -#: mod/message.php:83 mod/wallmessage.php:69 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 msgid "No recipient selected." msgstr "No recipient selected." @@ -683,62 +232,103 @@ msgstr "No recipient selected." msgid "Unable to locate contact information." msgstr "Unable to locate contact information." -#: mod/message.php:90 mod/wallmessage.php:75 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 msgid "Message could not be sent." msgstr "Message could not be sent." -#: mod/message.php:93 mod/wallmessage.php:78 +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 msgid "Message collection failure." msgstr "Message collection failure." -#: mod/message.php:120 src/Module/Notifications/Introductions.php:113 -#: src/Module/Notifications/Introductions.php:148 -#: src/Module/Notifications/Notification.php:57 +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 msgid "Discard" msgstr "Discard" -#: mod/message.php:133 src/Content/Nav.php:283 view/theme/frio/theme.php:234 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" msgstr "Messages" -#: mod/message.php:146 +#: mod/message.php:148 msgid "Conversation not found." msgstr "Conversation not found." -#: mod/message.php:151 +#: mod/message.php:153 msgid "Message was not deleted." msgstr "" -#: mod/message.php:166 +#: mod/message.php:168 msgid "Conversation was not removed." msgstr "" -#: mod/message.php:180 mod/message.php:286 mod/wallmessage.php:123 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 msgid "Please enter a link URL:" msgstr "Please enter a link URL:" -#: mod/message.php:189 mod/wallmessage.php:128 +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 msgid "Send Private Message" msgstr "Send private message" -#: mod/message.php:190 mod/message.php:347 mod/wallmessage.php:130 +#: mod/message.php:191 mod/message.php:346 msgid "To:" msgstr "To:" -#: mod/message.php:191 mod/message.php:348 mod/wallmessage.php:131 +#: mod/message.php:192 mod/message.php:347 msgid "Subject:" msgstr "Subject:" -#: mod/message.php:195 mod/message.php:351 mod/wallmessage.php:137 -#: src/Module/Invite.php:170 +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 msgid "Your message:" msgstr "Your message:" -#: mod/message.php:222 +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "Upload photo" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "Insert web link" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:587 +msgid "Please wait" +msgstr "Please wait" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 +#: src/Module/Install.php:274 src/Module/Install.php:309 +#: src/Module/Invite.php:178 src/Module/Item/Compose.php:189 +#: src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 +#: src/Object/Post.php:1106 view/theme/duepuntozero/config.php:85 +#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Submit" + +#: mod/message.php:223 msgid "No messages." msgstr "No messages." -#: mod/message.php:278 +#: mod/message.php:279 msgid "Message not available." msgstr "Message not available." @@ -746,11 +336,11 @@ msgstr "Message not available." msgid "Delete message" msgstr "Delete message" -#: mod/message.php:325 mod/message.php:457 +#: mod/message.php:325 mod/message.php:456 msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:i A" -#: mod/message.php:340 mod/message.php:454 +#: mod/message.php:340 mod/message.php:453 msgid "Delete conversation" msgstr "Delete conversation" @@ -760,1407 +350,482 @@ msgid "" "respond from the sender's profile page." msgstr "No secure communications available. You may be able to respond from the sender's profile page." -#: mod/message.php:346 +#: mod/message.php:345 msgid "Send Reply" msgstr "Send reply" -#: mod/message.php:428 +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "Unknown sender - %s" -#: mod/message.php:430 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "Me and %s" -#: mod/message.php:432 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "%s and me" -#: mod/message.php:460 +#: mod/message.php:459 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d message" msgstr[1] "%d messages" -#: mod/notes.php:51 src/Module/BaseProfile.php:106 +#: mod/notes.php:52 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "Personal notes" -#: mod/notes.php:55 +#: mod/notes.php:56 msgid "Personal notes are visible only by yourself." msgstr "Personal notes are only visible to you." -#: mod/ostatus_subscribe.php:37 -msgid "Subscribing to contacts" -msgstr "" +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:161 +msgid "Save" +msgstr "Save" -#: mod/ostatus_subscribe.php:47 -msgid "No contact provided." -msgstr "No contact provided." +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "User not found." -#: mod/ostatus_subscribe.php:53 -msgid "Couldn't fetch information for contact." -msgstr "Couldn't fetch information for contact." - -#: mod/ostatus_subscribe.php:64 -msgid "Couldn't fetch friends for contact." -msgstr "Couldn't fetch friends for contact." - -#: mod/ostatus_subscribe.php:70 mod/ostatus_subscribe.php:81 -msgid "Couldn't fetch following contacts." -msgstr "" - -#: mod/ostatus_subscribe.php:76 -msgid "Couldn't fetch remote profile." -msgstr "" - -#: mod/ostatus_subscribe.php:86 -msgid "Unsupported network" -msgstr "" - -#: mod/ostatus_subscribe.php:102 mod/repair_ostatus.php:51 -msgid "Done" -msgstr "Done" - -#: mod/ostatus_subscribe.php:116 -msgid "success" -msgstr "success" - -#: mod/ostatus_subscribe.php:118 -msgid "failed" -msgstr "failed" - -#: mod/ostatus_subscribe.php:121 -msgid "ignored" -msgstr "Ignored" - -#: mod/ostatus_subscribe.php:126 mod/repair_ostatus.php:57 -msgid "Keep this window open until done." -msgstr "Keep this window open until done." - -#: mod/photos.php:108 src/Module/BaseProfile.php:67 +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 msgid "Photo Albums" msgstr "Photo Albums" -#: mod/photos.php:109 mod/photos.php:1593 +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 msgid "Recent Photos" msgstr "Recent photos" -#: mod/photos.php:111 mod/photos.php:1082 mod/photos.php:1595 +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 msgid "Upload New Photos" msgstr "Upload new photos" -#: mod/photos.php:129 src/Module/BaseSettings.php:37 +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 msgid "everybody" msgstr "everybody" -#: mod/photos.php:167 +#: mod/photos.php:159 msgid "Contact information unavailable" msgstr "Contact information unavailable" -#: mod/photos.php:196 +#: mod/photos.php:188 msgid "Album not found." msgstr "Album not found." -#: mod/photos.php:250 +#: mod/photos.php:244 msgid "Album successfully deleted" msgstr "Album successfully deleted" -#: mod/photos.php:252 +#: mod/photos.php:246 msgid "Album was empty." msgstr "Album was empty." -#: mod/photos.php:284 +#: mod/photos.php:277 msgid "Failed to delete the photo." msgstr "" -#: mod/photos.php:559 +#: mod/photos.php:545 msgid "a photo" msgstr "a photo" -#: mod/photos.php:559 +#: mod/photos.php:545 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s was tagged in %2$s by %3$s" -#: mod/photos.php:642 mod/photos.php:645 mod/photos.php:672 -#: mod/wall_upload.php:207 src/Module/Settings/Profile/Photo/Index.php:60 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Image exceeds size limit of %s" +#: mod/photos.php:582 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Public access denied." -#: mod/photos.php:648 -msgid "Image upload didn't complete, please try again" -msgstr "Image upload didn't complete. Please try again." - -#: mod/photos.php:651 -msgid "Image file is missing" -msgstr "Image file is missing" - -#: mod/photos.php:656 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "Server can't accept new file uploads at this time. Please contact your administrator." - -#: mod/photos.php:680 -msgid "Image file is empty." -msgstr "Image file is empty." - -#: mod/photos.php:695 mod/wall_upload.php:166 -#: src/Module/Settings/Profile/Photo/Index.php:69 -msgid "Unable to process image." -msgstr "Unable to process image." - -#: mod/photos.php:724 mod/wall_upload.php:232 -#: src/Module/Settings/Profile/Photo/Index.php:96 -msgid "Image upload failed." -msgstr "Image upload failed." - -#: mod/photos.php:816 +#: mod/photos.php:587 msgid "No photos selected" msgstr "No photos selected" -#: mod/photos.php:885 -msgid "Access to this item is restricted." -msgstr "Access to this item is restricted." +#: mod/photos.php:721 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "" -#: mod/photos.php:940 +#: mod/photos.php:728 msgid "Upload Photos" msgstr "Upload photos" -#: mod/photos.php:944 mod/photos.php:1030 +#: mod/photos.php:732 mod/photos.php:820 msgid "New album name: " msgstr "New album name: " -#: mod/photos.php:945 +#: mod/photos.php:733 msgid "or select existing album:" msgstr "or select existing album:" -#: mod/photos.php:946 +#: mod/photos.php:734 msgid "Do not show a status post for this upload" msgstr "Do not show a status post for this upload" -#: mod/photos.php:1011 +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "Permissions" + +#: mod/photos.php:801 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Do you really want to delete this photo album and all its photos?" -#: mod/photos.php:1012 mod/photos.php:1035 +#: mod/photos.php:802 mod/photos.php:825 msgid "Delete Album" msgstr "Delete album" -#: mod/photos.php:1039 +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Cancel" + +#: mod/photos.php:829 msgid "Edit Album" msgstr "Edit album" -#: mod/photos.php:1040 +#: mod/photos.php:830 msgid "Drop Album" msgstr "Drop album" -#: mod/photos.php:1044 +#: mod/photos.php:834 msgid "Show Newest First" msgstr "Show newest first" -#: mod/photos.php:1046 +#: mod/photos.php:836 msgid "Show Oldest First" msgstr "Show oldest first" -#: mod/photos.php:1067 mod/photos.php:1578 +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 msgid "View Photo" msgstr "View photo" -#: mod/photos.php:1100 +#: mod/photos.php:889 msgid "Permission denied. Access to this item may be restricted." msgstr "Permission denied. Access to this item may be restricted." -#: mod/photos.php:1102 +#: mod/photos.php:891 msgid "Photo not available" msgstr "Photo not available" -#: mod/photos.php:1112 +#: mod/photos.php:901 msgid "Do you really want to delete this photo?" msgstr "Do you really want to delete this photo?" -#: mod/photos.php:1113 mod/photos.php:1305 +#: mod/photos.php:902 mod/photos.php:1102 msgid "Delete Photo" msgstr "Delete photo" -#: mod/photos.php:1203 +#: mod/photos.php:1000 msgid "View photo" msgstr "View photo" -#: mod/photos.php:1205 +#: mod/photos.php:1002 msgid "Edit photo" msgstr "Edit photo" -#: mod/photos.php:1206 +#: mod/photos.php:1003 msgid "Delete photo" msgstr "Delete photo" -#: mod/photos.php:1207 +#: mod/photos.php:1004 msgid "Use as profile photo" msgstr "Use as profile photo" -#: mod/photos.php:1214 +#: mod/photos.php:1011 msgid "Private Photo" msgstr "Private photo" -#: mod/photos.php:1220 +#: mod/photos.php:1017 msgid "View Full Size" msgstr "View full size" -#: mod/photos.php:1273 +#: mod/photos.php:1070 msgid "Tags: " msgstr "Tags: " -#: mod/photos.php:1276 +#: mod/photos.php:1073 msgid "[Select tags to remove]" msgstr "[Select tags to remove]" -#: mod/photos.php:1291 +#: mod/photos.php:1088 msgid "New album name" msgstr "New album name" -#: mod/photos.php:1292 +#: mod/photos.php:1089 msgid "Caption" msgstr "Caption" -#: mod/photos.php:1293 +#: mod/photos.php:1090 msgid "Add a Tag" msgstr "Add Tag" -#: mod/photos.php:1293 +#: mod/photos.php:1090 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Example: @bob, @jojo@example.com, #California, #camping" -#: mod/photos.php:1294 +#: mod/photos.php:1091 msgid "Do not rotate" msgstr "Do not rotate" -#: mod/photos.php:1295 +#: mod/photos.php:1092 msgid "Rotate CW (right)" msgstr "Rotate right (CW)" -#: mod/photos.php:1296 +#: mod/photos.php:1093 msgid "Rotate CCW (left)" msgstr "Rotate left (CCW)" -#: mod/photos.php:1342 mod/photos.php:1398 mod/photos.php:1472 -#: src/Module/Contact.php:993 src/Module/Item/Compose.php:148 -#: src/Object/Post.php:960 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1103 msgid "This is you" msgstr "This is me" -#: mod/photos.php:1344 mod/photos.php:1400 mod/photos.php:1474 -#: src/Object/Post.php:496 src/Object/Post.php:962 +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:581 +#: src/Object/Post.php:1105 msgid "Comment" msgstr "Comment" -#: mod/photos.php:1433 src/Content/Conversation.php:615 -#: src/Object/Post.php:227 +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1119 +msgid "Preview" +msgstr "Preview" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1107 +msgid "Loading..." +msgstr "" + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:261 msgid "Select" msgstr "Select" -#: mod/photos.php:1434 mod/settings.php:563 src/Content/Conversation.php:616 -#: src/Module/Admin/Users/Active.php:139 -#: src/Module/Admin/Users/Blocked.php:140 src/Module/Admin/Users/Index.php:153 +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 msgid "Delete" msgstr "Delete" -#: mod/photos.php:1495 src/Object/Post.php:349 +#: mod/photos.php:1298 src/Object/Post.php:409 msgid "Like" msgstr "Like" -#: mod/photos.php:1496 src/Object/Post.php:349 +#: mod/photos.php:1299 src/Object/Post.php:409 msgid "I like this (toggle)" msgstr "I like this (toggle)" -#: mod/photos.php:1497 src/Object/Post.php:350 +#: mod/photos.php:1300 src/Object/Post.php:410 msgid "Dislike" msgstr "" -#: mod/photos.php:1499 src/Object/Post.php:350 +#: mod/photos.php:1302 src/Object/Post.php:410 msgid "I don't like this (toggle)" msgstr "I don't like this (toggle)" -#: mod/photos.php:1521 +#: mod/photos.php:1324 msgid "Map" msgstr "Map" -#: mod/photos.php:1584 -msgid "View Album" -msgstr "View album" - -#: mod/ping.php:275 -msgid "{0} wants to be your friend" -msgstr "{0} wants to be your friend" - -#: mod/ping.php:292 -msgid "{0} requested registration" -msgstr "{0} requested registration" - -#: mod/ping.php:305 -#, php-format -msgid "{0} and %d others requested registration" -msgstr "" - -#: mod/redir.php:49 mod/redir.php:102 -msgid "Bad Request." -msgstr "Bad request." - -#: mod/redir.php:55 mod/redir.php:129 src/Module/Contact/Advanced.php:54 -#: src/Module/Contact/Advanced.php:105 src/Module/Contact/Contacts.php:36 -#: src/Module/Contact/Media.php:43 src/Module/FriendSuggest.php:54 -#: src/Module/FriendSuggest.php:92 src/Module/Group.php:105 -msgid "Contact not found." -msgstr "Contact not found." - -#: mod/removeme.php:63 src/Navigation/Notifications/Repository/Notify.php:454 -msgid "[Friendica System Notify]" -msgstr "[Friendica System Notify]" - -#: mod/removeme.php:63 -msgid "User deleted their account" -msgstr "User deleted their account" - -#: mod/removeme.php:64 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "A user deleted his or her account on your Friendica node. Please ensure these data are removed from the backups." - -#: mod/removeme.php:65 -#, php-format -msgid "The user id is %d" -msgstr "The user id is %d" - -#: mod/removeme.php:99 mod/removeme.php:102 -msgid "Remove My Account" -msgstr "Remove My Account" - -#: mod/removeme.php:100 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "This will completely remove your account. Once this has been done it is not recoverable." - -#: mod/removeme.php:101 -msgid "Please enter your password for verification:" -msgstr "Please enter your password for verification:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Resubscribing to OStatus contacts" - -#: mod/repair_ostatus.php:46 src/Module/Debug/ActivityPubConversion.php:130 -#: src/Module/Debug/Babel.php:293 src/Module/Security/TwoFactor/Verify.php:97 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Error" -msgstr[1] "Errors" - -#: mod/settings.php:128 -msgid "Failed to connect with email account using the settings provided." -msgstr "Failed to connect with email account using the settings provided." - -#: mod/settings.php:157 -msgid "Contact CSV file upload error" -msgstr "Contact CSV file upload error" - -#: mod/settings.php:176 -msgid "Importing Contacts done" -msgstr "Importing contacts done" - -#: mod/settings.php:189 -msgid "Relocate message has been send to your contacts" -msgstr "Relocate message has been sent to your contacts" - -#: mod/settings.php:201 -msgid "Passwords do not match." -msgstr "Passwords do not match." - -#: mod/settings.php:209 src/Console/User.php:210 -msgid "Password update failed. Please try again." -msgstr "Password update failed. Please try again." - -#: mod/settings.php:212 src/Console/User.php:213 -msgid "Password changed." -msgstr "Password changed." - -#: mod/settings.php:215 -msgid "Password unchanged." -msgstr "Password unchanged." - -#: mod/settings.php:303 -msgid "Please use a shorter name." -msgstr "" - -#: mod/settings.php:306 -msgid "Name too short." -msgstr "" - -#: mod/settings.php:313 -msgid "Wrong Password." -msgstr "Wrong password." - -#: mod/settings.php:318 -msgid "Invalid email." -msgstr "Invalid email." - -#: mod/settings.php:324 -msgid "Cannot change to that email." -msgstr "Cannot change to that email." - -#: mod/settings.php:365 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Private forum has no privacy permissions. Using default privacy group." - -#: mod/settings.php:368 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Private forum has no privacy permissions and no default privacy group." - -#: mod/settings.php:387 -msgid "Settings were not updated." -msgstr "" - -#: mod/settings.php:428 -msgid "Connected Apps" -msgstr "Connected Apps" - -#: mod/settings.php:429 src/Module/Admin/Blocklist/Contact.php:106 -#: 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:135 -msgid "Name" -msgstr "Name:" - -#: mod/settings.php:430 src/Content/Nav.php:212 -msgid "Home Page" -msgstr "Home page" - -#: mod/settings.php:431 src/Module/Admin/Queue.php:78 -msgid "Created" -msgstr "Created" - -#: mod/settings.php:432 -msgid "Remove authorization" -msgstr "Remove authorization" - -#: mod/settings.php:450 -msgid "Addon Settings" -msgstr "Addon Settings" - -#: mod/settings.php:451 -msgid "No Addon settings configured" -msgstr "No addon settings configured" - -#: mod/settings.php:472 -msgid "Additional Features" -msgstr "Additional Features" - -#: mod/settings.php:474 mod/settings.php:565 mod/settings.php:702 -#: 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:502 -#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:66 -#: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:194 -msgid "Save Settings" -msgstr "Save settings" - -#: mod/settings.php:496 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "diaspora* (Socialhome, Hubzilla)" - -#: mod/settings.php:496 mod/settings.php:497 -msgid "enabled" -msgstr "enabled" - -#: mod/settings.php:496 mod/settings.php:497 -msgid "disabled" -msgstr "disabled" - -#: mod/settings.php:496 mod/settings.php:497 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Built-in support for %s connectivity is %s" - -#: mod/settings.php:497 -msgid "OStatus (GNU Social)" -msgstr "" - -#: mod/settings.php:523 -msgid "Email access is disabled on this site." -msgstr "Email access is disabled on this site." - -#: mod/settings.php:528 mod/settings.php:563 -msgid "None" -msgstr "None" - -#: mod/settings.php:534 src/Module/BaseSettings.php:80 -msgid "Social Networks" -msgstr "Social networks" - -#: mod/settings.php:539 -msgid "General Social Media Settings" -msgstr "General Social Media Settings" - -#: mod/settings.php:540 -msgid "Accept only top level posts by contacts you follow" -msgstr "Accept only top-level posts by contacts you follow" - -#: mod/settings.php:540 -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 " -"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." -msgstr "The system automatically completes threads when a comment arrives. This has a side effect that you may receive posts started by someone you don't follow, because one of your followers commented there. This setting will deactivate this behavior. If activated, you will only receive posts from people you really do follow." - -#: mod/settings.php:541 -msgid "Enable Content Warning" -msgstr "" - -#: mod/settings.php:541 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect any other content filtering you eventually set up." -msgstr "" - -#: mod/settings.php:542 -msgid "Enable intelligent shortening" -msgstr "" - -#: mod/settings.php:542 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If disabled, every shortened post will always point to the original " -"friendica post." -msgstr "" - -#: mod/settings.php:543 -msgid "Enable simple text shortening" -msgstr "" - -#: mod/settings.php:543 -msgid "" -"Normally the system shortens posts at the next line feed. If this option is " -"enabled then the system will shorten the text at the maximum character " -"limit." -msgstr "" - -#: mod/settings.php:544 -msgid "Attach the link title" -msgstr "Attach the link title" - -#: mod/settings.php:544 -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 "If 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." - -#: mod/settings.php:545 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "" - -#: mod/settings.php:545 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "" - -#: mod/settings.php:548 -msgid "Repair OStatus subscriptions" -msgstr "Repair OStatus subscriptions" - -#: mod/settings.php:552 -msgid "Email/Mailbox Setup" -msgstr "Email/Mailbox setup" - -#: mod/settings.php:553 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Specify how to connect to your mailbox, if you wish to communicate with existing email contacts." - -#: mod/settings.php:554 -msgid "Last successful email check:" -msgstr "Last successful email check:" - -#: mod/settings.php:556 -msgid "IMAP server name:" -msgstr "IMAP server name:" - -#: mod/settings.php:557 -msgid "IMAP port:" -msgstr "IMAP port:" - -#: mod/settings.php:558 -msgid "Security:" -msgstr "Security:" - -#: mod/settings.php:559 -msgid "Email login name:" -msgstr "Email login name:" - -#: mod/settings.php:560 -msgid "Email password:" -msgstr "Email password:" - -#: mod/settings.php:561 -msgid "Reply-to address:" -msgstr "Reply-to address:" - -#: mod/settings.php:562 -msgid "Send public posts to all email contacts:" -msgstr "Send public posts to all email contacts:" - -#: mod/settings.php:563 -msgid "Action after import:" -msgstr "Action after import:" - -#: mod/settings.php:563 src/Content/Nav.php:280 -msgid "Mark as seen" -msgstr "Mark as seen" - -#: mod/settings.php:563 -msgid "Move to folder" -msgstr "Move to folder" - -#: mod/settings.php:564 -msgid "Move to folder:" -msgstr "Move to folder:" - -#: mod/settings.php:578 -msgid "Unable to find your profile. Please contact your admin." -msgstr "Unable to find your profile. Please contact your admin." - -#: mod/settings.php:616 src/Content/Widget.php:526 -msgid "Account Types" -msgstr "Account types" - -#: mod/settings.php:617 -msgid "Personal Page Subtypes" -msgstr "Personal Page subtypes" - -#: mod/settings.php:618 -msgid "Community Forum Subtypes" -msgstr "Community forum subtypes" - -#: mod/settings.php:625 src/Module/Admin/BaseUsers.php:106 -msgid "Personal Page" -msgstr "Personal Page" - -#: mod/settings.php:626 -msgid "Account for a personal profile." -msgstr "Account for a personal profile." - -#: mod/settings.php:629 src/Module/Admin/BaseUsers.php:107 -msgid "Organisation Page" -msgstr "Organization Page" - -#: mod/settings.php:630 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "Account for an organization that automatically approves contact requests as \"Followers\"." - -#: mod/settings.php:633 src/Module/Admin/BaseUsers.php:108 -msgid "News Page" -msgstr "News Page" - -#: mod/settings.php:634 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "Account for a news reflector that automatically approves contact requests as \"Followers\"." - -#: mod/settings.php:637 src/Module/Admin/BaseUsers.php:109 -msgid "Community Forum" -msgstr "Community Forum" - -#: mod/settings.php:638 -msgid "Account for community discussions." -msgstr "Account for community discussions." - -#: mod/settings.php:641 src/Module/Admin/BaseUsers.php:99 -msgid "Normal Account Page" -msgstr "Standard" - -#: mod/settings.php:642 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"." - -#: mod/settings.php:645 src/Module/Admin/BaseUsers.php:100 -msgid "Soapbox Page" -msgstr "Soapbox" - -#: mod/settings.php:646 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "Account for a public profile that automatically approves contact requests as \"Followers\"." - -#: mod/settings.php:649 src/Module/Admin/BaseUsers.php:101 -msgid "Public Forum" -msgstr "Public forum" - -#: mod/settings.php:650 -msgid "Automatically approves all contact requests." -msgstr "Automatically approves all contact requests." - -#: mod/settings.php:653 src/Module/Admin/BaseUsers.php:102 -msgid "Automatic Friend Page" -msgstr "Love-all" - -#: mod/settings.php:654 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "Account for a popular profile that automatically approves contact requests as \"Friends\"." - -#: mod/settings.php:657 -msgid "Private Forum [Experimental]" -msgstr "Private forum [Experimental]" - -#: mod/settings.php:658 -msgid "Requires manual approval of contact requests." -msgstr "Requires manual approval of contact requests." - -#: mod/settings.php:669 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:669 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Optional) Allow this OpenID to login to this account." - -#: mod/settings.php:677 -msgid "Publish your profile in your local site directory?" -msgstr "" - -#: mod/settings.php:677 -#, php-format -msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "Your profile will be published in this node's local directory. Your profile details may be publicly visible depending on the system settings." - -#: mod/settings.php:683 -#, php-format -msgid "" -"Your profile will also be published in the global friendica directories " -"(e.g. %s)." -msgstr "" - -#: mod/settings.php:689 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "My identity address: '%s' or '%s'" - -#: mod/settings.php:700 -msgid "Account Settings" -msgstr "Account Settings" - -#: mod/settings.php:708 -msgid "Password Settings" -msgstr "Password change" - -#: mod/settings.php:709 src/Module/Register.php:151 -msgid "New Password:" -msgstr "New password:" - -#: mod/settings.php:709 -msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:)." - -#: mod/settings.php:710 src/Module/Register.php:152 -msgid "Confirm:" -msgstr "Confirm new password:" - -#: mod/settings.php:710 -msgid "Leave password fields blank unless changing" -msgstr "Leave password fields blank unless changing" - -#: mod/settings.php:711 -msgid "Current Password:" -msgstr "Current password:" - -#: mod/settings.php:711 -msgid "Your current password to confirm the changes" -msgstr "Current password to confirm change" - -#: mod/settings.php:712 -msgid "Password:" -msgstr "Password:" - -#: mod/settings.php:712 -msgid "Your current password to confirm the changes of the email address" -msgstr "Your current password to confirm the change of your email address." - -#: mod/settings.php:715 -msgid "Delete OpenID URL" -msgstr "Delete OpenID URL" - -#: mod/settings.php:717 -msgid "Basic Settings" -msgstr "Basic information" - -#: mod/settings.php:718 src/Module/Profile/Profile.php:144 -msgid "Full Name:" -msgstr "Full name:" - -#: mod/settings.php:719 -msgid "Email Address:" -msgstr "Email address:" - -#: mod/settings.php:720 -msgid "Your Timezone:" -msgstr "Time zone:" - -#: mod/settings.php:721 -msgid "Your Language:" -msgstr "Language:" - -#: mod/settings.php:721 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Set the language of your Friendica interface and emails sent to you." - -#: mod/settings.php:722 -msgid "Default Post Location:" -msgstr "Posting location:" - -#: mod/settings.php:723 -msgid "Use Browser Location:" -msgstr "Use browser location:" - -#: mod/settings.php:725 -msgid "Security and Privacy Settings" -msgstr "Security and privacy" - -#: mod/settings.php:727 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum friend requests per day:" - -#: mod/settings.php:727 mod/settings.php:737 -msgid "(to prevent spam abuse)" -msgstr "May prevent spam and abusive registrations" - -#: mod/settings.php:729 -msgid "Allow your profile to be searchable globally?" -msgstr "" - -#: mod/settings.php:729 -msgid "" -"Activate this setting if you want others to easily find and follow you. Your" -" profile will be searchable on remote systems. This setting also determines " -"whether Friendica will inform search engines that your profile should be " -"indexed or not." -msgstr "" - -#: mod/settings.php:730 -msgid "Hide your contact/friend list from viewers of your profile?" -msgstr "" - -#: mod/settings.php:730 -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:731 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Hide your profile details from anonymous viewers?" - -#: mod/settings.php:731 -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 "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 may still be accessible by other means." - -#: mod/settings.php:732 -msgid "Make public posts unlisted" -msgstr "" - -#: mod/settings.php:732 -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:733 -msgid "Make all posted pictures accessible" -msgstr "" - -#: mod/settings.php:733 -msgid "" -"This option makes every posted picture accessible via the direct link. This " -"is a workaround for the problem that most other networks can't handle " -"permissions on pictures. Non public pictures still won't be visible for the " -"public on your photo albums though." -msgstr "" - -#: mod/settings.php:734 -msgid "Allow friends to post to your profile page?" -msgstr "Allow friends to post to my wall?" - -#: mod/settings.php:734 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "Your contacts may write posts on your profile wall. These posts will be distributed to your contacts" - -#: mod/settings.php:735 -msgid "Allow friends to tag your posts?" -msgstr "Allow friends to tag my post?" - -#: mod/settings.php:735 -msgid "Your contacts can add additional tags to your posts." -msgstr "Your contacts can add additional tags to your posts." - -#: mod/settings.php:736 -msgid "Permit unknown people to send you private mail?" -msgstr "Allow unknown people to send me private messages?" - -#: mod/settings.php:736 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "Friendica network users may send you private messages even if they are not in your contact list." - -#: mod/settings.php:737 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum private messages per day from unknown people:" - -#: mod/settings.php:739 -msgid "Default Post Permissions" -msgstr "Default post permissions" - -#: mod/settings.php:743 -msgid "Expiration settings" -msgstr "" - -#: mod/settings.php:744 -msgid "Automatically expire posts after this many days:" -msgstr "Automatically expire posts after this many days:" - -#: mod/settings.php:744 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Posts will not expire if empty; expired posts will be deleted" - -#: mod/settings.php:745 -msgid "Expire posts" -msgstr "" - -#: mod/settings.php:745 -msgid "When activated, posts and comments will be expired." -msgstr "If activated, posts and comments will expire." - -#: mod/settings.php:746 -msgid "Expire personal notes" -msgstr "Expire personal notes" - -#: mod/settings.php:746 -msgid "" -"When activated, the personal notes on your profile page will be expired." -msgstr "If activated, the personal notes on your profile page will expire." - -#: mod/settings.php:747 -msgid "Expire starred posts" -msgstr "" - -#: mod/settings.php:747 -msgid "" -"Starring posts keeps them from being expired. That behaviour is overwritten " -"by this setting." -msgstr "" - -#: mod/settings.php:748 -msgid "Expire photos" -msgstr "" - -#: mod/settings.php:748 -msgid "When activated, photos will be expired." -msgstr "If activated, photos will expire." - -#: mod/settings.php:749 -msgid "Only expire posts by others" -msgstr "" - -#: mod/settings.php:749 -msgid "" -"When activated, your own posts never expire. Then the settings above are " -"only valid for posts you received." -msgstr "If activated, your own posts never expire. The settings above are only valid for posts you received." - -#: mod/settings.php:752 -msgid "Notification Settings" -msgstr "Notification" - -#: mod/settings.php:753 -msgid "Send a notification email when:" -msgstr "Send notification email when:" - -#: mod/settings.php:754 -msgid "You receive an introduction" -msgstr "Receiving an introduction" - -#: mod/settings.php:755 -msgid "Your introductions are confirmed" -msgstr "My introductions are confirmed" - -#: mod/settings.php:756 -msgid "Someone writes on your profile wall" -msgstr "Someone writes on my wall" - -#: mod/settings.php:757 -msgid "Someone writes a followup comment" -msgstr "A follow up comment is posted" - -#: mod/settings.php:758 -msgid "You receive a private message" -msgstr "receiving a private message" - -#: mod/settings.php:759 -msgid "You receive a friend suggestion" -msgstr "Receiving a friend suggestion" - -#: mod/settings.php:760 -msgid "You are tagged in a post" -msgstr "Tagged in a post" - -#: mod/settings.php:761 -msgid "You are poked/prodded/etc. in a post" -msgstr "Poked in a post" - -#: mod/settings.php:763 -msgid "Create a desktop notification when:" -msgstr "" - -#: mod/settings.php:764 -msgid "Someone liked your content" -msgstr "" - -#: mod/settings.php:765 -msgid "Someone shared your content" -msgstr "" - -#: mod/settings.php:767 -msgid "Activate desktop notifications" -msgstr "Activate desktop notifications" - -#: mod/settings.php:767 -msgid "Show desktop popup on new notifications" -msgstr "Show desktop pop-up on new notifications" - -#: mod/settings.php:769 -msgid "Text-only notification emails" -msgstr "Text-only notification emails" - -#: mod/settings.php:771 -msgid "Send text only notification emails, without the html part" -msgstr "Receive text only emails without HTML " - -#: mod/settings.php:773 -msgid "Show detailled notifications" -msgstr "Show detailled notifications" - -#: mod/settings.php:775 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "By default, notifications are condensed into a single notification for each item. If enabled, every notification is displayed." - -#: mod/settings.php:777 -msgid "Show notifications of ignored contacts" -msgstr "" - -#: mod/settings.php:779 -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:781 -msgid "Advanced Account/Page Type Settings" -msgstr "Advanced account types" - -#: mod/settings.php:782 -msgid "Change the behaviour of this account for special situations" -msgstr "Change behavior of this account for special situations" - -#: mod/settings.php:785 -msgid "Import Contacts" -msgstr "Import contacts" - -#: mod/settings.php:786 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account." - -#: mod/settings.php:787 -msgid "Upload File" -msgstr "Upload file" - -#: mod/settings.php:789 -msgid "Relocate" -msgstr "Recent relocation" - -#: mod/settings.php:790 -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 "If you have moved this profile from another server and some of your contacts don't receive your updates:" - -#: mod/settings.php:791 -msgid "Resend relocate message to contacts" -msgstr "Resend relocation message to contacts" - -#: mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No suggestions available. If this is a new site, please try again in 24 hours." - -#: mod/suggest.php:55 src/Content/Widget.php:79 view/theme/vier/theme.php:175 -msgid "Friend Suggestions" -msgstr "Friend suggestions" - -#: mod/tagger.php:79 src/Content/Item.php:346 src/Model/Item.php:2626 -msgid "photo" -msgstr "photo" - -#: mod/tagger.php:79 src/Content/Item.php:341 src/Content/Item.php:350 -msgid "status" -msgstr "status" - -#: mod/tagger.php:112 src/Content/Item.php:360 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s tagged %2$s's %3$s with %4$s" - -#: mod/tagrm.php:115 -msgid "Remove Item Tag" -msgstr "Remove Item tag" - -#: mod/tagrm.php:117 -msgid "Select a tag to remove: " -msgstr "Select a tag to remove: " - -#: mod/tagrm.php:128 src/Module/Settings/Delegation.php:179 -#: src/Module/Settings/TwoFactor/Trusted.php:104 -msgid "Remove" -msgstr "Remove" - -#: mod/uimport.php:46 -msgid "User imports on closed servers can only be done by an administrator." -msgstr "User imports on closed servers can only be done by an administrator." - -#: mod/uimport.php:55 src/Module/Register.php:86 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow." - -#: mod/uimport.php:62 src/Module/Register.php:162 -msgid "Import" -msgstr "Import profile" - -#: mod/uimport.php:64 -msgid "Move account" -msgstr "Move Existing Friendica Account" - -#: mod/uimport.php:65 -msgid "You can import an account from another Friendica server." -msgstr "You can import an existing Friendica profile to this node." - -#: mod/uimport.php:66 -msgid "" -"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." -msgstr "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." - -#: mod/uimport.php:67 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora." - -#: mod/uimport.php:68 -msgid "Account file" -msgstr "Account file:" - -#: mod/uimport.php:68 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "To export your account, go to \"Settings->Export personal data\" and select \"Export account\"" - -#: mod/unfollow.php:65 mod/unfollow.php:135 -msgid "You aren't following this contact." -msgstr "You aren't following this contact." - -#: mod/unfollow.php:71 -msgid "Unfollowing is currently not supported by your network." -msgstr "Unfollowing is currently not supported by your network." - -#: mod/unfollow.php:92 -msgid "Disconnect/Unfollow" -msgstr "Disconnect/Unfollow" - -#: mod/unfollow.php:146 -msgid "" -"Unable to unfollow this contact, please retry in a few minutes or contact " -"your administrator." -msgstr "" - -#: mod/unfollow.php:148 -msgid "Contact was successfully unfollowed" -msgstr "" - -#: mod/unfollow.php:152 -msgid "Unable to unfollow this contact, please contact your administrator" -msgstr "" - -#: mod/wall_attach.php:39 mod/wall_attach.php:46 mod/wall_attach.php:77 -#: mod/wall_upload.php:52 mod/wall_upload.php:63 mod/wall_upload.php:99 -#: mod/wall_upload.php:150 mod/wall_upload.php:153 -msgid "Invalid request." -msgstr "Invalid request." - -#: mod/wall_attach.php:95 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Sorry, maybe your upload is bigger than the PHP configuration allows" - -#: mod/wall_attach.php:95 -msgid "Or - did you try to upload an empty file?" -msgstr "Or did you try to upload an empty file?" - -#: mod/wall_attach.php:106 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "File exceeds size limit of %s" - -#: mod/wall_attach.php:121 -msgid "File upload failed." -msgstr "File upload failed." - -#: mod/wall_upload.php:224 src/Model/Photo.php:987 -msgid "Wall Photos" -msgstr "Wall photos" - -#: mod/wallmessage.php:61 mod/wallmessage.php:115 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Number of daily wall messages for %s exceeded. Message failed." - -#: mod/wallmessage.php:72 -msgid "Unable to check your home location." -msgstr "Unable to check your home location." - -#: mod/wallmessage.php:96 mod/wallmessage.php:103 -msgid "No recipient." -msgstr "No recipient." - -#: mod/wallmessage.php:129 -#, 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 "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders." - -#: src/App.php:456 +#: src/App.php:473 msgid "No system theme config value set." msgstr "No system theme configuration value set." -#: src/App/Module.php:240 -msgid "You must be logged in to use addons. " -msgstr "You must be logged in to use addons. " +#: src/App.php:580 +msgid "Apologies but the website is unavailable at the moment." +msgstr "" -#: src/App/Page.php:250 +#: src/App/Page.php:248 msgid "Delete this item?" msgstr "Delete this item?" -#: src/App/Page.php:251 +#: src/App/Page.php:249 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "" -#: src/App/Page.php:299 +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "" + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "" + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "" + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "" + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "" + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "" + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "" + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "" + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "" + +#: src/App/Page.php:351 msgid "toggle mobile" msgstr "Toggle mobile" -#: src/App/Router.php:241 +#: src/App/Router.php:309 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Method not allowed for this module. Allowed method(s): %s" -#: src/App/Router.php:243 src/Module/HTTPException/PageNotFound.php:32 +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 msgid "Page not found." msgstr "Page not found" -#: src/BaseModule.php:180 +#: src/App/Router.php:323 +msgid "You must be logged in to use addons. " +msgstr "You must be logged in to use addons. " + +#: src/BaseModule.php:403 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 "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours." -#: src/BaseModule.php:207 +#: src/BaseModule.php:430 msgid "All contacts" msgstr "All contacts" -#: src/BaseModule.php:212 src/Content/Widget.php:231 src/Core/ACL.php:193 -#: src/Module/Contact.php:756 src/Module/PermissionTooltip.php:79 -#: src/Module/PermissionTooltip.php:101 +#: src/BaseModule.php:435 src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 +#: src/Module/Settings/Channels.php:120 msgid "Followers" msgstr "Followers" -#: src/BaseModule.php:217 src/Content/Widget.php:232 -#: src/Module/Contact.php:757 +#: src/BaseModule.php:440 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 src/Module/Settings/Channels.php:119 msgid "Following" msgstr "Following" -#: src/BaseModule.php:222 src/Content/Widget.php:233 -#: src/Module/Contact.php:758 +#: src/BaseModule.php:445 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 msgid "Mutual friends" msgstr "Mutual friends" -#: src/BaseModule.php:230 +#: src/BaseModule.php:453 msgid "Common" msgstr "" -#: src/Console/Addon.php:177 src/Console/Addon.php:202 +#: src/Console/Addon.php:175 src/Console/Addon.php:199 msgid "Addon not found" msgstr "" -#: src/Console/Addon.php:181 +#: src/Console/Addon.php:179 msgid "Addon already enabled" msgstr "" -#: src/Console/Addon.php:206 +#: src/Console/Addon.php:203 msgid "Addon already disabled" msgstr "" @@ -2174,16 +839,105 @@ msgid "The contact entries have been archived" msgstr "The contact entries have been archived" #: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Could not find any contact entry for this URL (%s)" #: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:66 +#: src/Module/Moderation/Blocklist/Contact.php:82 msgid "The contact has been blocked from the node" msgstr "This contact has been blocked from the node" +#: src/Console/MergeContacts.php:75 +#, php-format +msgid "%d %s, %d duplicates." +msgstr "" + +#: src/Console/MergeContacts.php:78 +#, php-format +msgid "uri-id is empty for contact %s." +msgstr "" + +#: src/Console/MergeContacts.php:91 +#, php-format +msgid "No valid first contact found for uri-id %d." +msgstr "" + +#: src/Console/MergeContacts.php:102 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:106 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:142 +#, php-format +msgid "Deletion of id %d failed" +msgstr "" + +#: src/Console/MergeContacts.php:144 +#, php-format +msgid "Deletion of id %d was successful" +msgstr "" + +#: src/Console/MergeContacts.php:150 +#, php-format +msgid "Updating \"%s\" in \"%s\" from %d to %d" +msgstr "" + +#: src/Console/MergeContacts.php:152 +msgid " - found" +msgstr "" + +#: src/Console/MergeContacts.php:159 +msgid " - failed" +msgstr "" + +#: src/Console/MergeContacts.php:161 +msgid " - success" +msgstr "" + +#: src/Console/MergeContacts.php:165 +msgid " - deleted" +msgstr "" + +#: src/Console/MergeContacts.php:168 +msgid " - done" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:91 +msgid "The avatar cache needs to be enabled to use this command." +msgstr "" + +#: src/Console/MoveToAvatarCache.php:109 +#, php-format +msgid "no resource in photo %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:137 +#, php-format +msgid "no photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:146 +#, php-format +msgid "no image data for photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:155 +#, php-format +msgid "invalid image for id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:168 +#, php-format +msgid "Quit on invalid photo %s" +msgstr "" + #: src/Console/PostUpdate.php:87 #, php-format msgid "Post update version number has been set to %s." @@ -2209,10 +963,29 @@ msgstr "All pending post updates are done." msgid "Enter user nickname: " msgstr "" +#: src/Console/User.php:182 src/Model/User.php:710 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "User not found" + #: src/Console/User.php:202 msgid "Enter new password: " msgstr "Enter new password: " +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 +msgid "Password update failed. Please try again." +msgstr "Password update failed. Please try again." + +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 +msgid "Password changed." +msgstr "Password changed." + #: src/Console/User.php:237 msgid "Enter user name: " msgstr "" @@ -2286,344 +1059,583 @@ msgstr "Weekly" msgid "Monthly" msgstr "Monthly" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:126 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:127 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:128 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 +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 msgid "Email" msgstr "Email" -#: src/Content/ContactSelector.php:127 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 msgid "Diaspora" msgstr "diaspora*" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:131 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:132 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:133 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:134 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:135 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:136 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:137 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:138 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:139 msgid "Diaspora Connector" msgstr "diaspora* connector" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:140 msgid "GNU Social Connector" msgstr "GNU Social Connector" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:141 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:142 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:175 +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "" + +#: src/Content/ContactSelector.php:180 #, php-format msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:207 -#, php-format -msgid "%s likes this." -msgstr "%s likes this." - -#: src/Content/Conversation.php:210 -#, php-format -msgid "%s doesn't like this." -msgstr "%s doesn't like this." - -#: src/Content/Conversation.php:213 -#, php-format -msgid "%s attends." -msgstr "%s attends." - -#: src/Content/Conversation.php:216 -#, php-format -msgid "%s doesn't attend." -msgstr "%s won't attend." - -#: src/Content/Conversation.php:219 -#, php-format -msgid "%s attends maybe." -msgstr "%s might attend." - -#: src/Content/Conversation.php:222 src/Content/Conversation.php:260 -#: src/Content/Conversation.php:848 -#, php-format -msgid "%s reshared this." -msgstr "%s reshared this." - -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:226 msgid "and" msgstr "and" -#: src/Content/Conversation.php:231 +#: src/Content/Conversation.php:229 #, php-format msgid "and %d other people" msgstr "and %d other people" +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "" +msgstr[1] "" + #: src/Content/Conversation.php:239 #, php-format -msgid "%2$d people like this" -msgstr "%2$d people like this" +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:240 +#: src/Content/Conversation.php:241 #, php-format -msgid "%s like this." -msgstr "%s like this." +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "" +msgstr[1] "" #: src/Content/Conversation.php:243 #, php-format -msgid "%2$d people don't like this" -msgstr "%2$d people don't like this" +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:244 +#: src/Content/Conversation.php:245 #, php-format -msgid "%s don't like this." -msgstr "%s don't like this." +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:247 +#: src/Content/Conversation.php:274 #, php-format -msgid "%2$d people attend" -msgstr "%2$d people attend" +msgid " likes this" +msgid_plural " like this" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:248 +#: src/Content/Conversation.php:277 #, php-format -msgid "%s attend." -msgstr "%s attend." +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] " doesn't like this" +msgstr[1] " don't like this" -#: src/Content/Conversation.php:251 +#: src/Content/Conversation.php:280 #, php-format -msgid "%2$d people don't attend" -msgstr "%2$d people won't attend" +msgid " attends" +msgid_plural " attend" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:252 +#: src/Content/Conversation.php:283 #, php-format -msgid "%s don't attend." -msgstr "%s won't attend." +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:255 +#: src/Content/Conversation.php:286 #, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d people might attend" +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:256 +#: src/Content/Conversation.php:289 #, php-format -msgid "%s attend maybe." -msgstr "%s may be attending." +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:259 -#, php-format -msgid "%2$d people reshared this" -msgstr "%2$d people reshared this" - -#: src/Content/Conversation.php:307 +#: src/Content/Conversation.php:336 msgid "Visible to everybody" msgstr "Visible to everybody" -#: src/Content/Conversation.php:308 src/Module/Item/Compose.php:159 -#: src/Object/Post.php:973 +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1118 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Please enter an image/video/audio/webpage URL:" -#: src/Content/Conversation.php:309 +#: src/Content/Conversation.php:338 msgid "Tag term:" msgstr "Tag term:" -#: src/Content/Conversation.php:310 src/Module/Filer/SaveTag.php:68 +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 msgid "Save to Folder:" msgstr "Save to folder:" -#: src/Content/Conversation.php:311 +#: src/Content/Conversation.php:340 msgid "Where are you right now?" msgstr "Where are you right now?" -#: src/Content/Conversation.php:312 +#: src/Content/Conversation.php:341 msgid "Delete item(s)?" msgstr "Delete item(s)?" -#: src/Content/Conversation.php:322 +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 +msgid "Created at" +msgstr "" + +#: src/Content/Conversation.php:363 msgid "New Post" msgstr "New post" -#: src/Content/Conversation.php:325 +#: src/Content/Conversation.php:366 msgid "Share" msgstr "Share" -#: src/Content/Conversation.php:331 src/Module/Item/Compose.php:151 -#: src/Object/Post.php:965 +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "upload photo" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Attach file" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "attach file" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1108 msgid "Bold" msgstr "Bold" -#: src/Content/Conversation.php:332 src/Module/Item/Compose.php:152 -#: src/Object/Post.php:966 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1109 msgid "Italic" msgstr "Italic" -#: src/Content/Conversation.php:333 src/Module/Item/Compose.php:153 -#: src/Object/Post.php:967 +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1110 msgid "Underline" msgstr "Underline" -#: src/Content/Conversation.php:334 src/Module/Item/Compose.php:154 -#: src/Object/Post.php:968 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1112 msgid "Quote" msgstr "Quote" -#: src/Content/Conversation.php:335 src/Module/Item/Compose.php:155 -#: src/Object/Post.php:969 +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1113 +msgid "Add emojis" +msgstr "" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1111 +msgid "Content Warning" +msgstr "" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1114 msgid "Code" msgstr "Code" -#: src/Content/Conversation.php:336 src/Module/Item/Compose.php:156 -#: src/Object/Post.php:970 +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1115 msgid "Image" msgstr "Image" -#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:157 -#: src/Object/Post.php:971 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1116 msgid "Link" msgstr "Link" -#: src/Content/Conversation.php:338 src/Module/Item/Compose.php:158 -#: src/Object/Post.php:972 +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1117 msgid "Link or Media" msgstr "Link or media" -#: src/Content/Conversation.php:339 +#: src/Content/Conversation.php:382 msgid "Video" msgstr "" -#: src/Content/Conversation.php:352 src/Module/Item/Compose.php:172 +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "Set your location" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "set location" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "Clear browser location" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "clear location" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Set title" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Categories (comma-separated list)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 msgid "Scheduled at" msgstr "" -#: src/Content/Conversation.php:651 src/Object/Post.php:454 -#: src/Object/Post.php:455 -#, php-format -msgid "View %s's profile @ %s" -msgstr "View %s's profile @ %s" +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Permission settings" -#: src/Content/Conversation.php:664 src/Object/Post.php:442 -msgid "Categories:" -msgstr "Categories:" +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Public post" -#: src/Content/Conversation.php:665 src/Object/Post.php:443 -msgid "Filed under:" -msgstr "Filed under:" +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:132 +#: src/Model/Profile.php:479 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "Message" -#: src/Content/Conversation.php:672 src/Object/Post.php:468 -#, php-format -msgid "%s from %s" -msgstr "%s from %s" +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Browser" -#: src/Content/Conversation.php:687 -msgid "View in context" -msgstr "View in context" +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "Open compose page" -#: src/Content/Conversation.php:752 +#: src/Content/Conversation.php:595 msgid "remove" msgstr "Remove" -#: src/Content/Conversation.php:756 +#: src/Content/Conversation.php:599 msgid "Delete Selected Items" msgstr "Delete selected items" -#: src/Content/Conversation.php:820 src/Content/Conversation.php:823 -#: src/Content/Conversation.php:826 src/Content/Conversation.php:829 +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 #, php-format msgid "You had been addressed (%s)." msgstr "You have been addressed (%s)." -#: src/Content/Conversation.php:832 +#: src/Content/Conversation.php:769 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:835 -msgid "Tagged" +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:850 +#: src/Content/Conversation.php:776 +msgid "You subscribed to one or more tags in this post." +msgstr "" + +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "%s reshared this." + +#: src/Content/Conversation.php:798 msgid "Reshared" msgstr "" -#: src/Content/Conversation.php:850 +#: src/Content/Conversation.php:798 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:853 +#: src/Content/Conversation.php:801 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:856 -msgid "Stored" +#: src/Content/Conversation.php:804 +msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:859 -msgid "Global" +#: src/Content/Conversation.php:807 +msgid "Global post" msgstr "" -#: src/Content/Conversation.php:862 -msgid "Relayed" +#: src/Content/Conversation.php:810 +msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:862 +#: src/Content/Conversation.php:810 #, php-format -msgid "Relayed by %s <%s>" +msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:865 +#: src/Content/Conversation.php:813 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:865 +#: src/Content/Conversation.php:813 #, php-format msgid "Fetched because of %s <%s>" msgstr "" +#: src/Content/Conversation.php:816 +msgid "Stored because of a child post to complete this thread." +msgstr "" + +#: src/Content/Conversation.php:819 +msgid "Local delivery" +msgstr "" + +#: src/Content/Conversation.php:822 +msgid "Stored because of your activity (like, comment, star, ...)" +msgstr "" + +#: src/Content/Conversation.php:825 +msgid "Distributed" +msgstr "" + +#: src/Content/Conversation.php:828 +msgid "Pushed to us" +msgstr "" + +#: src/Content/Conversation.php:1492 src/Object/Post.php:248 +msgid "Pinned item" +msgstr "" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:530 +#: src/Object/Post.php:531 +#, php-format +msgid "View %s's profile @ %s" +msgstr "View %s's profile @ %s" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:518 +msgid "Categories:" +msgstr "Categories:" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:519 +msgid "Filed under:" +msgstr "Filed under:" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:544 +#, php-format +msgid "%s from %s" +msgstr "%s from %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "View in context" + +#: src/Content/Conversation/Factory/Channel.php:42 +msgid "For you" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:42 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:43 +msgid "What's Hot" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:43 +msgid "Posts with a lot of interactions" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:44 +#, php-format +msgid "Posts in %s" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:45 +msgid "Posts from your followers that you don't follow" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:46 +msgid "Sharers of sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:46 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Module/Settings/Channels.php:137 src/Module/Settings/Channels.php:153 +msgid "Images" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:47 +msgid "Posts with images" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:155 +msgid "Audio" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts with audio" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Module/Settings/Channels.php:138 src/Module/Settings/Channels.php:154 +msgid "Videos" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 +msgid "Posts with videos" +msgstr "" + +#: src/Content/Conversation/Factory/Community.php:43 +msgid "Local Community" +msgstr "Local community" + +#: src/Content/Conversation/Factory/Community.php:43 +msgid "Posts from local users on this server" +msgstr "Posts from local users on this server" + +#: src/Content/Conversation/Factory/Community.php:47 +#: src/Module/Settings/Channels.php:118 +msgid "Global Community" +msgstr "Global community" + +#: src/Content/Conversation/Factory/Community.php:47 +msgid "Posts from users of the whole federated network" +msgstr "Posts from users of the whole federated network" + +#: src/Content/Conversation/Factory/Network.php:38 +msgid "Latest Activity" +msgstr "Latest activity" + +#: src/Content/Conversation/Factory/Network.php:38 +msgid "Sort by latest activity" +msgstr "Sort by latest activity" + +#: src/Content/Conversation/Factory/Network.php:39 +msgid "Latest Posts" +msgstr "Latest posts" + +#: src/Content/Conversation/Factory/Network.php:39 +msgid "Sort by post received date" +msgstr "Sort by post received date" + +#: src/Content/Conversation/Factory/Network.php:40 +msgid "Latest Creation" +msgstr "" + +#: src/Content/Conversation/Factory/Network.php:40 +msgid "Sort by post creation date" +msgstr "" + +#: src/Content/Conversation/Factory/Network.php:41 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "Personal" + +#: src/Content/Conversation/Factory/Network.php:41 +msgid "Posts that mention or involve you" +msgstr "Posts mentioning or involving me" + +#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:381 +msgid "Starred" +msgstr "Starred" + +#: src/Content/Conversation/Factory/Network.php:42 +msgid "Favourite Posts" +msgstr "My favorite posts" + #: src/Content/Feature.php:96 msgid "General Features" msgstr "General" @@ -2653,13 +1665,13 @@ msgid "Post Composition Features" msgstr "Post composition" #: src/Content/Feature.php:105 -msgid "Auto-mention Forums" -msgstr "Auto-mention forums" +msgid "Auto-mention Groups" +msgstr "" #: src/Content/Feature.php:105 msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Add/Remove mention when a forum page is selected or deselected in the ACL window." +"Add/remove mention when a group page is selected/deselected in ACL window." +msgstr "" #: src/Content/Feature.php:106 msgid "Explicit Mentions" @@ -2671,391 +1683,484 @@ msgid "" "mentioned in replies." msgstr "Add explicit mentions to comment box for manual control over who gets mentioned in replies." -#: src/Content/Feature.php:111 +#: src/Content/Feature.php:107 +msgid "Add an abstract from ActivityPub content warnings" +msgstr "" + +#: src/Content/Feature.php:107 +msgid "" +"Add an abstract when commenting on ActivityPub posts with a content warning." +" Abstracts are displayed as content warning on systems like Mastodon or " +"Pleroma." +msgstr "" + +#: src/Content/Feature.php:112 msgid "Post/Comment Tools" msgstr "Post/Comment tools" -#: src/Content/Feature.php:112 +#: src/Content/Feature.php:113 msgid "Post Categories" msgstr "Post categories" -#: src/Content/Feature.php:112 +#: src/Content/Feature.php:113 msgid "Add categories to your posts" msgstr "Add categories to your posts" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:118 msgid "Advanced Profile Settings" msgstr "Advanced profiles" -#: src/Content/Feature.php:118 -msgid "List Forums" -msgstr "List forums" - -#: src/Content/Feature.php:118 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Show visitors of public community forums at the advanced profile page" +#: src/Content/Feature.php:119 +msgid "List Groups" +msgstr "" #: src/Content/Feature.php:119 +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "" + +#: src/Content/Feature.php:120 msgid "Tag Cloud" msgstr "Tag cloud" -#: src/Content/Feature.php:119 +#: src/Content/Feature.php:120 msgid "Provide a personal tag cloud on your profile page" msgstr "Provide a personal tag cloud on your profile page" -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:121 msgid "Display Membership Date" msgstr "Display membership date" -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:121 msgid "Display membership date in profile" msgstr "Display membership date in profile" -#: src/Content/ForumManager.php:145 src/Content/Nav.php:239 -#: src/Content/Text/HTML.php:906 src/Content/Widget.php:523 -msgid "Forums" -msgstr "Forums" +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "" -#: src/Content/ForumManager.php:147 -msgid "External link to forum" -msgstr "External link to forum" +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "" -#: src/Content/ForumManager.php:150 src/Content/Widget.php:502 +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "" + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1272 +msgid "Groups" +msgstr "" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 msgid "show less" msgstr "" -#: src/Content/ForumManager.php:151 src/Content/Widget.php:404 -#: src/Content/Widget.php:503 +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 msgid "show more" msgstr "show more" -#: src/Content/Item.php:305 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s poked %2$s" +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "" -#: src/Content/Item.php:338 src/Model/Item.php:2624 +#: src/Content/Item.php:331 src/Model/Item.php:3080 msgid "event" msgstr "event" -#: src/Content/Item.php:442 view/theme/frio/theme.php:254 +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "status" + +#: src/Content/Item.php:340 src/Model/Item.php:3082 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "photo" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s tagged %2$s's %3$s with %4$s" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 msgid "Follow Thread" msgstr "Follow thread" -#: src/Content/Item.php:443 src/Model/Contact.php:1077 +#: src/Content/Item.php:429 src/Model/Contact.php:1242 msgid "View Status" msgstr "View status" -#: src/Content/Item.php:444 src/Content/Item.php:466 -#: src/Model/Contact.php:1011 src/Model/Contact.php:1069 -#: src/Model/Contact.php:1078 src/Module/Directory.php:160 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1233 +#: src/Model/Contact.php:1243 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "View profile" -#: src/Content/Item.php:445 src/Model/Contact.php:1079 +#: src/Content/Item.php:431 src/Model/Contact.php:1244 msgid "View Photos" msgstr "View photos" -#: src/Content/Item.php:446 src/Model/Contact.php:1070 -#: src/Model/Contact.php:1080 +#: src/Content/Item.php:432 src/Model/Contact.php:1211 +#: src/Model/Profile.php:464 msgid "Network Posts" msgstr "Network posts" -#: src/Content/Item.php:447 src/Model/Contact.php:1071 -#: src/Model/Contact.php:1081 +#: src/Content/Item.php:433 src/Model/Contact.php:1235 +#: src/Model/Contact.php:1246 msgid "View Contact" msgstr "View contact" -#: src/Content/Item.php:448 src/Model/Contact.php:1082 +#: src/Content/Item.php:434 src/Model/Contact.php:1247 msgid "Send PM" msgstr "Send PM" -#: src/Content/Item.php:449 src/Module/Admin/Blocklist/Contact.php:100 -#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 -#: src/Module/Contact.php:544 src/Module/Contact.php:787 -#: src/Module/Contact.php:1064 +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 msgid "Block" msgstr "Block" -#: src/Content/Item.php:450 src/Module/Contact.php:545 -#: src/Module/Contact.php:788 src/Module/Contact.php:1072 -#: src/Module/Notifications/Introductions.php:112 -#: src/Module/Notifications/Introductions.php:184 -#: src/Module/Notifications/Notification.php:61 +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 msgid "Ignore" msgstr "Ignore" -#: src/Content/Item.php:454 src/Object/Post.php:429 +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "" + +#: src/Content/Item.php:438 src/Object/Post.php:289 +#, php-format +msgid "Ignore %s server" +msgstr "" + +#: src/Content/Item.php:442 src/Object/Post.php:491 msgid "Languages" msgstr "" -#: src/Content/Item.php:458 src/Model/Contact.php:1083 -msgid "Poke" -msgstr "Poke" +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1236 src/Model/Contact.php:1248 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Connect/Follow" -#: src/Content/Nav.php:90 +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "" + +#: src/Content/Nav.php:121 msgid "Nothing new here" msgstr "Nothing new here" -#: src/Content/Nav.php:94 src/Module/Special/HTTPException.php:75 +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 msgid "Go back" msgstr "Go back" -#: src/Content/Nav.php:95 +#: src/Content/Nav.php:126 msgid "Clear notifications" msgstr "Clear notifications" -#: src/Content/Nav.php:96 src/Content/Text/HTML.php:893 -msgid "@name, !forum, #tags, content" -msgstr "@name, !forum, #tags, content" +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" +msgstr "" -#: src/Content/Nav.php:183 src/Module/Security/Login.php:145 +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 msgid "Logout" msgstr "Logout" -#: src/Content/Nav.php:183 +#: src/Content/Nav.php:222 msgid "End this session" msgstr "End this session" -#: src/Content/Nav.php:185 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:146 +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 msgid "Login" msgstr "Login" -#: src/Content/Nav.php:185 +#: src/Content/Nav.php:224 msgid "Sign in" msgstr "Sign in" -#: src/Content/Nav.php:190 src/Module/BaseProfile.php:56 -#: src/Module/Contact.php:576 src/Module/Contact.php:822 -#: src/Module/Settings/TwoFactor/Index.php:112 view/theme/frio/theme.php:225 -msgid "Status" -msgstr "Status" +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "" -#: src/Content/Nav.php:190 src/Content/Nav.php:273 -#: view/theme/frio/theme.php:225 -msgid "Your posts and conversations" -msgstr "My posts and conversations" +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "" -#: src/Content/Nav.php:191 src/Module/BaseProfile.php:48 -#: src/Module/BaseSettings.php:57 src/Module/Contact.php:578 -#: src/Module/Contact.php:846 src/Module/Profile/Profile.php:241 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:226 +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 msgid "Profile" msgstr "Profile" -#: src/Content/Nav.php:191 view/theme/frio/theme.php:226 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 msgid "Your profile page" msgstr "My profile page" -#: src/Content/Nav.php:192 view/theme/frio/theme.php:227 +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Photos" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 msgid "Your photos" msgstr "My photos" -#: src/Content/Nav.php:193 src/Module/BaseProfile.php:72 -#: src/Module/BaseProfile.php:75 src/Module/Contact.php:838 -#: view/theme/frio/theme.php:228 +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 msgid "Media" msgstr "" -#: src/Content/Nav.php:193 view/theme/frio/theme.php:228 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 msgid "Your postings with media" msgstr "" -#: src/Content/Nav.php:194 view/theme/frio/theme.php:229 -msgid "Your events" -msgstr "My events" +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:310 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "Calendar" -#: src/Content/Nav.php:195 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "" + +#: src/Content/Nav.php:234 msgid "Personal notes" msgstr "Personal notes" -#: src/Content/Nav.php:195 +#: src/Content/Nav.php:234 msgid "Your personal notes" msgstr "My personal notes" -#: src/Content/Nav.php:212 src/Content/Nav.php:273 +#: src/Content/Nav.php:251 src/Content/Nav.php:308 msgid "Home" msgstr "Home" -#: src/Content/Nav.php:216 src/Module/Register.php:157 -#: src/Module/Security/Login.php:106 +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "Home page" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 +#: src/Module/Security/Login.php:124 msgid "Register" msgstr "Sign up now >>" -#: src/Content/Nav.php:216 +#: src/Content/Nav.php:255 msgid "Create an account" msgstr "Create account" -#: src/Content/Nav.php:222 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 +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 msgid "Help" msgstr "Help" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:261 msgid "Help and documentation" msgstr "Help and documentation" -#: src/Content/Nav.php:226 +#: src/Content/Nav.php:265 msgid "Apps" msgstr "Apps" -#: src/Content/Nav.php:226 +#: src/Content/Nav.php:265 msgid "Addon applications, utilities, games" msgstr "Addon applications, utilities, games" -#: src/Content/Nav.php:230 src/Content/Text/HTML.php:891 -#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:99 +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 msgid "Search" msgstr "Search" -#: src/Content/Nav.php:230 +#: src/Content/Nav.php:269 msgid "Search site content" msgstr "Search site content" -#: src/Content/Nav.php:233 src/Content/Text/HTML.php:900 +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 msgid "Full Text" msgstr "Full text" -#: src/Content/Nav.php:234 src/Content/Text/HTML.php:901 +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 #: src/Content/Widget/TagCloud.php:68 msgid "Tags" msgstr "Tags" -#: src/Content/Nav.php:235 src/Content/Nav.php:294 -#: src/Content/Text/HTML.php:902 src/Module/BaseProfile.php:125 -#: src/Module/BaseProfile.php:128 src/Module/Contact.php:759 -#: src/Module/Contact.php:853 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 msgid "Contacts" msgstr "Contacts" -#: src/Content/Nav.php:254 +#: src/Content/Nav.php:289 msgid "Community" msgstr "Community" -#: src/Content/Nav.php:254 +#: src/Content/Nav.php:289 msgid "Conversations on this and other servers" msgstr "Conversations on this and other servers" -#: src/Content/Nav.php:258 src/Module/BaseProfile.php:87 -#: src/Module/BaseProfile.php:98 view/theme/frio/theme.php:233 -msgid "Events and Calendar" -msgstr "Events and calendar" - -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:296 msgid "Directory" msgstr "Directory" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:296 msgid "People directory" msgstr "People directory" -#: src/Content/Nav.php:263 src/Module/BaseAdmin.php:85 +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 msgid "Information" msgstr "Information" -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:298 msgid "Information about this friendica instance" msgstr "Information about this Friendica instance" -#: src/Content/Nav.php:266 src/Module/Admin/Tos.php:59 -#: src/Module/BaseAdmin.php:96 src/Module/Register.php:165 -#: src/Module/Tos.php:84 +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 msgid "Terms of Service" msgstr "Terms of Service" -#: src/Content/Nav.php:266 +#: src/Content/Nav.php:301 msgid "Terms of Service of this Friendica instance" msgstr "Terms of Service of this Friendica instance" -#: src/Content/Nav.php:271 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Network" msgstr "Network" -#: src/Content/Nav.php:271 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Conversations from your friends" msgstr "My friends' conversations" -#: src/Content/Nav.php:277 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "My posts and conversations" + +#: src/Content/Nav.php:312 msgid "Introductions" msgstr "Introductions" -#: src/Content/Nav.php:277 +#: src/Content/Nav.php:312 msgid "Friend Requests" msgstr "Friend requests" -#: src/Content/Nav.php:278 src/Module/BaseNotifications.php:139 -#: src/Module/Notifications/Introductions.php:53 +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 msgid "Notifications" msgstr "Notifications" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:314 msgid "See all notifications" msgstr "See all notifications" -#: src/Content/Nav.php:280 -msgid "Mark all system notifications seen" -msgstr "Mark notifications as seen" +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Mark as seen" -#: src/Content/Nav.php:283 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:315 +msgid "Mark all system notifications as seen" +msgstr "" + +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Private mail" msgstr "Private messages" -#: src/Content/Nav.php:284 +#: src/Content/Nav.php:319 msgid "Inbox" msgstr "Inbox" -#: src/Content/Nav.php:285 +#: src/Content/Nav.php:320 msgid "Outbox" msgstr "Outbox" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:324 msgid "Accounts" msgstr "" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:324 msgid "Manage other pages" msgstr "Manage other pages" -#: src/Content/Nav.php:292 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:235 +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 msgid "Settings" msgstr "Settings" -#: src/Content/Nav.php:292 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 msgid "Account settings" msgstr "Account settings" -#: src/Content/Nav.php:294 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 msgid "Manage/edit friends and contacts" msgstr "Manage/Edit friends and contacts" -#: src/Content/Nav.php:299 src/Module/BaseAdmin.php:126 +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 msgid "Admin" msgstr "Admin" -#: src/Content/Nav.php:299 +#: src/Content/Nav.php:334 msgid "Site setup and configuration" msgstr "Site setup and configuration" -#: src/Content/Nav.php:302 +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "" + +#: src/Content/Nav.php:338 msgid "Navigation" msgstr "Navigation" -#: src/Content/Nav.php:302 +#: src/Content/Nav.php:338 msgid "Site map" msgstr "Site map" -#: src/Content/OEmbed.php:298 +#: src/Content/OEmbed.php:316 msgid "Embedding disabled" msgstr "Embedding disabled" -#: src/Content/OEmbed.php:416 +#: src/Content/OEmbed.php:440 msgid "Embedded content" msgstr "Embedded content" @@ -3075,189 +2180,211 @@ msgstr "next" msgid "last" msgstr "last" -#: src/Content/Text/BBCode.php:987 src/Content/Text/BBCode.php:1781 -#: src/Content/Text/BBCode.php:1782 +#: src/Content/Text/BBCode.php:751 src/Content/Text/BBCode.php:1692 +#: src/Content/Text/BBCode.php:1693 msgid "Image/photo" msgstr "Image/Photo" -#: src/Content/Text/BBCode.php:1160 +#: src/Content/Text/BBCode.php:969 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:1185 src/Model/Item.php:3154 -#: src/Model/Item.php:3160 src/Model/Item.php:3161 +#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3813 +#: src/Model/Item.php:3819 src/Model/Item.php:3820 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1699 src/Content/Text/HTML.php:943 +#: src/Content/Text/BBCode.php:1599 src/Content/Text/HTML.php:904 msgid "Click to open/close" msgstr "Reveal/hide" -#: src/Content/Text/BBCode.php:1730 +#: src/Content/Text/BBCode.php:1632 msgid "$1 wrote:" msgstr "$1 wrote:" -#: src/Content/Text/BBCode.php:1786 src/Content/Text/BBCode.php:1787 +#: src/Content/Text/BBCode.php:1697 src/Content/Text/BBCode.php:1698 msgid "Encrypted content" msgstr "Encrypted content" -#: src/Content/Text/BBCode.php:2002 +#: src/Content/Text/BBCode.php:1953 msgid "Invalid source protocol" msgstr "Invalid source protocol" -#: src/Content/Text/BBCode.php:2017 +#: src/Content/Text/BBCode.php:1972 msgid "Invalid link protocol" msgstr "Invalid link protocol" -#: src/Content/Text/HTML.php:807 +#: src/Content/Text/HTML.php:782 msgid "Loading more entries..." msgstr "Loading more entries..." -#: src/Content/Text/HTML.php:808 +#: src/Content/Text/HTML.php:783 msgid "The end" msgstr "The end" -#: src/Content/Text/HTML.php:885 src/Content/Widget/VCard.php:103 -#: src/Model/Profile.php:454 +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:128 +#: src/Model/Profile.php:473 src/Module/Contact/Profile.php:471 msgid "Follow" msgstr "Follow" -#: src/Content/Widget.php:49 +#: src/Content/Widget.php:51 msgid "Add New Contact" msgstr "Add new contact" -#: src/Content/Widget.php:50 +#: src/Content/Widget.php:52 msgid "Enter address or web location" msgstr "Enter address or web location" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:53 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Example: jo@example.com, http://example.com/jo" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:55 msgid "Connect" msgstr "Connect" -#: src/Content/Widget.php:68 +#: src/Content/Widget.php:72 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d invitation available" msgstr[1] "%d invitations available" -#: src/Content/Widget.php:74 view/theme/vier/theme.php:170 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 msgid "Find People" msgstr "Find people" -#: src/Content/Widget.php:75 view/theme/vier/theme.php:171 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 msgid "Enter name or interest" msgstr "Enter name or interest" -#: src/Content/Widget.php:77 view/theme/vier/theme.php:173 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Examples: Robert Morgenstein, fishing" -#: src/Content/Widget.php:78 src/Module/Contact.php:780 -#: src/Module/Directory.php:99 view/theme/vier/theme.php:174 +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 msgid "Find" msgstr "Find" -#: src/Content/Widget.php:80 view/theme/vier/theme.php:176 +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "Friend suggestions" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 msgid "Similar Interests" msgstr "Similar interests" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:177 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 msgid "Random Profile" msgstr "Random profile" -#: src/Content/Widget.php:82 view/theme/vier/theme.php:178 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 msgid "Invite Friends" msgstr "Invite friends" -#: src/Content/Widget.php:83 src/Module/Directory.php:91 -#: view/theme/vier/theme.php:179 +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 msgid "Global Directory" msgstr "Global directory" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:181 +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 msgid "Local Directory" msgstr "Local directory" -#: src/Content/Widget.php:207 src/Model/Group.php:535 -#: src/Module/Contact.php:743 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "Groups" +#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "" -#: src/Content/Widget.php:209 +#: src/Content/Widget.php:217 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:238 +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "" + +#: src/Content/Widget.php:247 msgid "Relationships" msgstr "Relationships" -#: src/Content/Widget.php:240 src/Module/Contact.php:695 -#: src/Module/Group.php:292 +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 msgid "All Contacts" msgstr "All contacts" -#: src/Content/Widget.php:279 +#: src/Content/Widget.php:288 msgid "Protocols" msgstr "Protocols" -#: src/Content/Widget.php:281 +#: src/Content/Widget.php:290 msgid "All Protocols" msgstr "All protocols" -#: src/Content/Widget.php:309 +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "Saved Folders" -#: src/Content/Widget.php:311 src/Content/Widget.php:345 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "Everything" -#: src/Content/Widget.php:343 +#: src/Content/Widget.php:349 msgid "Categories" msgstr "Categories" -#: src/Content/Widget.php:400 +#: src/Content/Widget.php:406 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d contact in common" msgstr[1] "%d contacts in common" -#: src/Content/Widget.php:496 +#: src/Content/Widget.php:506 msgid "Archives" msgstr "Archives" -#: src/Content/Widget.php:520 +#: src/Content/Widget.php:514 +msgid "On this date" +msgstr "" + +#: src/Content/Widget.php:534 msgid "Persons" msgstr "" -#: src/Content/Widget.php:521 +#: src/Content/Widget.php:535 msgid "Organisations" msgstr "Organizations" -#: src/Content/Widget.php:522 src/Model/Contact.php:1506 +#: src/Content/Widget.php:536 src/Model/Contact.php:1714 msgid "News" msgstr "News" -#: src/Content/Widget.php:527 src/Module/Admin/BaseUsers.php:50 +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 +msgid "Account Types" +msgstr "Account types" + +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "" -#: src/Content/Widget/CalendarExport.php:54 +#: src/Content/Widget.php:591 src/Module/BaseSettings.php:125 +#: src/Module/Settings/Channels.php:157 src/Module/Settings/Display.php:309 +msgid "Channels" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:56 msgid "Export" msgstr "Export" -#: src/Content/Widget/CalendarExport.php:55 +#: src/Content/Widget/CalendarExport.php:57 msgid "Export calendar as ical" msgstr "Export calendar as ical" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:58 msgid "Export calendar as csv" msgstr "Export calendar as csv" @@ -3265,14 +2392,14 @@ msgstr "Export calendar as csv" msgid "No contacts" msgstr "No contacts" -#: src/Content/Widget/ContactBlock.php:108 +#: src/Content/Widget/ContactBlock.php:110 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d contact" msgstr[1] "%d contacts" -#: src/Content/Widget/ContactBlock.php:125 +#: src/Content/Widget/ContactBlock.php:127 msgid "View Contacts" msgstr "View contacts" @@ -3284,105 +2411,145 @@ msgstr "Remove term" msgid "Saved Searches" msgstr "Saved searches" -#: src/Content/Widget/TrendingTags.php:51 +#: src/Content/Widget/TrendingTags.php:52 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" msgstr[0] "Trending tags (last %d hour)" msgstr[1] "Trending tags (last %d hours)" -#: src/Content/Widget/TrendingTags.php:52 +#: src/Content/Widget/TrendingTags.php:53 msgid "More Trending Tags" msgstr "More trending tags" -#: src/Content/Widget/VCard.php:96 src/Model/Profile.php:373 -#: src/Module/Contact.php:567 src/Module/Profile/Profile.php:176 +#: src/Content/Widget/VCard.php:107 src/Model/Contact.php:1204 +#: src/Model/Profile.php:457 +msgid "Post to group" +msgstr "" + +#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1209 +#: src/Model/Profile.php:462 src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "" + +#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:97 src/Model/Profile.php:374 -#: src/Module/Contact.php:569 src/Module/Profile/Profile.php:180 +#: src/Content/Widget/VCard.php:122 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:101 src/Model/Profile.php:466 -#: src/Module/Notifications/Introductions.php:179 +#: src/Content/Widget/VCard.php:123 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Location:" + +#: src/Content/Widget/VCard.php:126 src/Model/Profile.php:486 +#: src/Module/Notifications/Introductions.php:201 msgid "Network:" msgstr "Network:" -#: src/Content/Widget/VCard.php:105 src/Model/Profile.php:456 +#: src/Content/Widget/VCard.php:130 src/Model/Contact.php:1237 +#: src/Model/Contact.php:1249 src/Model/Profile.php:475 +#: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Unfollow" -#: src/Core/ACL.php:164 src/Module/Profile/Profile.php:242 +#: src/Content/Widget/VCard.php:136 src/Model/Contact.php:1206 +#: src/Model/Profile.php:459 +msgid "View group" +msgstr "" + +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:200 src/Module/PermissionTooltip.php:85 -#: src/Module/PermissionTooltip.php:107 +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 msgid "Mutuals" msgstr "Mutuals" -#: src/Core/ACL.php:292 +#: src/Core/ACL.php:294 msgid "Post to Email" msgstr "Post to email" -#: src/Core/ACL.php:319 +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 msgid "Public" msgstr "Public" -#: src/Core/ACL.php:320 +#: src/Core/ACL.php:322 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 "This post will be shown to all your followers and can be seen in the community pages and by anyone with its link." -#: src/Core/ACL.php:321 +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 msgid "Limited/Private" msgstr "Limited/Private" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:324 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 "This post 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 publicly." -#: src/Core/ACL.php:323 +#: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." +msgstr "" + +#: src/Core/ACL.php:325 msgid "Show to:" msgstr "Show to:" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:326 msgid "Except to:" msgstr "Except to:" -#: src/Core/ACL.php:327 +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "CC: email addresses" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Example: bob@example.com, mary@example.com" + +#: src/Core/ACL.php:329 msgid "Connectors" msgstr "Connectors" -#: src/Core/Installer.php:183 +#: src/Core/Installer.php:180 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 "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." -#: src/Core/Installer.php:202 +#: src/Core/Installer.php:197 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql." -#: src/Core/Installer.php:203 src/Module/Install.php:206 -#: src/Module/Install.php:365 +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "" -#: src/Core/Installer.php:264 +#: src/Core/Installer.php:259 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Could not find a command line version of PHP in the web server PATH." -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:260 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 "" -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:265 msgid "PHP executable path" msgstr "PHP executable path" -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:265 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Enter full path to php executable. You can leave this blank to continue the installation." -#: src/Core/Installer.php:275 +#: src/Core/Installer.php:270 msgid "Command line PHP" msgstr "Command line PHP" -#: src/Core/Installer.php:284 +#: src/Core/Installer.php:279 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "PHP executable is not a php cli binary; it could possibly be a cgi-fgci version." -#: src/Core/Installer.php:285 +#: src/Core/Installer.php:280 msgid "Found PHP version: " msgstr "Found PHP version: " -#: src/Core/Installer.php:287 +#: src/Core/Installer.php:282 msgid "PHP cli binary" msgstr "PHP cli binary" -#: src/Core/Installer.php:300 +#: src/Core/Installer.php:295 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:296 msgid "This is required for message delivery to work." msgstr "This is required for message delivery to work." -#: src/Core/Installer.php:306 +#: src/Core/Installer.php:301 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:338 +#: src/Core/Installer.php:333 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" -#: src/Core/Installer.php:339 +#: src/Core/Installer.php:334 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "If running under Windows OS, please see \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:342 +#: src/Core/Installer.php:337 msgid "Generate encryption keys" msgstr "Generate encryption keys" -#: src/Core/Installer.php:394 +#: src/Core/Installer.php:388 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Error: Apache web server mod-rewrite module is required but not installed." -#: src/Core/Installer.php:399 +#: src/Core/Installer.php:392 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite module" -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:398 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Error: PDO or MySQLi PHP module required but not installed." -#: src/Core/Installer.php:410 +#: src/Core/Installer.php:402 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Error: MySQL driver for PDO is not installed." -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:405 msgid "PDO or MySQLi PHP module" msgstr "PDO or MySQLi PHP module" +#: src/Core/Installer.php:411 +msgid "Error: The IntlChar module is not installed." +msgstr "" + +#: src/Core/Installer.php:414 +msgid "IntlChar PHP module" +msgstr "" + #: src/Core/Installer.php:422 msgid "Error, XML PHP module required but not installed." msgstr "Error, XML PHP module required but not installed." @@ -3549,372 +2724,362 @@ msgstr "File Information PHP module" msgid "Error: File Information PHP module required but not installed." msgstr "Error: File Information PHP module required but not installed." -#: src/Core/Installer.php:509 +#: src/Core/Installer.php:492 +msgid "GNU Multiple Precision PHP module" +msgstr "" + +#: src/Core/Installer.php:493 +msgid "Error: GNU Multiple Precision PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:516 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 "The web installer needs to be able to create a file called \"local.config.php\" in the \"config\" folder of your web server, but is unable to do so." -#: src/Core/Installer.php:510 +#: src/Core/Installer.php:517 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 "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can." -#: src/Core/Installer.php:511 +#: src/Core/Installer.php:518 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 "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." -#: src/Core/Installer.php:512 +#: src/Core/Installer.php:519 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "" -#: src/Core/Installer.php:515 +#: src/Core/Installer.php:522 msgid "config/local.config.php is writable" msgstr "config/local.config.php is writable" -#: src/Core/Installer.php:535 +#: src/Core/Installer.php:542 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." -#: src/Core/Installer.php:536 +#: src/Core/Installer.php:543 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 "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 directory." -#: src/Core/Installer.php:537 +#: src/Core/Installer.php:544 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Please ensure the user that your web server runs as (e.g. www-data) has write access to this directory." -#: src/Core/Installer.php:538 +#: src/Core/Installer.php:545 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 "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." -#: src/Core/Installer.php:541 +#: src/Core/Installer.php:548 msgid "view/smarty3 is writable" msgstr "view/smarty3 is writable" -#: src/Core/Installer.php:569 +#: src/Core/Installer.php:576 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "Url rewrite in .htaccess does not seem to work. Make sure you copied .htaccess-dist to .htaccess." -#: src/Core/Installer.php:570 +#: src/Core/Installer.php:577 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "" -#: src/Core/Installer.php:572 +#: src/Core/Installer.php:579 msgid "Error message from Curl when fetching" msgstr "Error message from Curl while fetching" -#: src/Core/Installer.php:578 +#: src/Core/Installer.php:585 msgid "Url rewrite is working" msgstr "URL rewrite is working" -#: src/Core/Installer.php:607 +#: src/Core/Installer.php:614 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "Failed to detect TLS that secures the communication between the browser and the new Friendica server." -#: src/Core/Installer.php:608 +#: src/Core/Installer.php:615 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "" -#: src/Core/Installer.php:609 +#: src/Core/Installer.php:616 msgid "Please ensure that the connection to the server is secure." msgstr "" -#: src/Core/Installer.php:610 +#: src/Core/Installer.php:617 msgid "No TLS detected" msgstr "" -#: src/Core/Installer.php:612 +#: src/Core/Installer.php:619 msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:639 +#: src/Core/Installer.php:646 msgid "ImageMagick PHP extension is not installed" msgstr "ImageMagick PHP extension is not installed" -#: src/Core/Installer.php:641 +#: src/Core/Installer.php:648 msgid "ImageMagick PHP extension is installed" msgstr "ImageMagick PHP extension is installed" -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:650 msgid "ImageMagick supports GIF" msgstr "ImageMagick supports GIF" -#: src/Core/Installer.php:665 +#: src/Core/Installer.php:672 msgid "Database already in use." msgstr "Database already in use." -#: src/Core/Installer.php:670 +#: src/Core/Installer.php:677 msgid "Could not connect to database." msgstr "Could not connect to database." -#: src/Core/L10n.php:377 src/Model/Event.php:425 -#: src/Module/Settings/Display.php:183 +#: src/Core/L10n.php:507 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:278 msgid "Monday" msgstr "Monday" -#: src/Core/L10n.php:377 src/Model/Event.php:426 +#: src/Core/L10n.php:507 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:279 msgid "Tuesday" msgstr "Tuesday" -#: src/Core/L10n.php:377 src/Model/Event.php:427 +#: src/Core/L10n.php:507 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:280 msgid "Wednesday" msgstr "Wednesday" -#: src/Core/L10n.php:377 src/Model/Event.php:428 +#: src/Core/L10n.php:507 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:281 msgid "Thursday" msgstr "Thursday" -#: src/Core/L10n.php:377 src/Model/Event.php:429 +#: src/Core/L10n.php:507 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:282 msgid "Friday" msgstr "Friday" -#: src/Core/L10n.php:377 src/Model/Event.php:430 +#: src/Core/L10n.php:507 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:283 msgid "Saturday" msgstr "Saturday" -#: src/Core/L10n.php:377 src/Model/Event.php:424 -#: src/Module/Settings/Display.php:183 +#: src/Core/L10n.php:507 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:277 msgid "Sunday" msgstr "Sunday" -#: src/Core/L10n.php:381 src/Model/Event.php:445 +#: src/Core/L10n.php:511 src/Model/Event.php:450 msgid "January" msgstr "January" -#: src/Core/L10n.php:381 src/Model/Event.php:446 +#: src/Core/L10n.php:511 src/Model/Event.php:451 msgid "February" msgstr "February" -#: src/Core/L10n.php:381 src/Model/Event.php:447 +#: src/Core/L10n.php:511 src/Model/Event.php:452 msgid "March" msgstr "March" -#: src/Core/L10n.php:381 src/Model/Event.php:448 +#: src/Core/L10n.php:511 src/Model/Event.php:453 msgid "April" msgstr "April" -#: src/Core/L10n.php:381 src/Core/L10n.php:401 src/Model/Event.php:436 +#: src/Core/L10n.php:511 src/Core/L10n.php:530 src/Model/Event.php:441 msgid "May" msgstr "May" -#: src/Core/L10n.php:381 src/Model/Event.php:449 +#: src/Core/L10n.php:511 src/Model/Event.php:454 msgid "June" msgstr "June" -#: src/Core/L10n.php:381 src/Model/Event.php:450 +#: src/Core/L10n.php:511 src/Model/Event.php:455 msgid "July" msgstr "July" -#: src/Core/L10n.php:381 src/Model/Event.php:451 +#: src/Core/L10n.php:511 src/Model/Event.php:456 msgid "August" msgstr "August" -#: src/Core/L10n.php:381 src/Model/Event.php:452 +#: src/Core/L10n.php:511 src/Model/Event.php:457 msgid "September" msgstr "September" -#: src/Core/L10n.php:381 src/Model/Event.php:453 +#: src/Core/L10n.php:511 src/Model/Event.php:458 msgid "October" msgstr "October" -#: src/Core/L10n.php:381 src/Model/Event.php:454 +#: src/Core/L10n.php:511 src/Model/Event.php:459 msgid "November" msgstr "November" -#: src/Core/L10n.php:381 src/Model/Event.php:455 +#: src/Core/L10n.php:511 src/Model/Event.php:460 msgid "December" msgstr "December" -#: src/Core/L10n.php:397 src/Model/Event.php:417 +#: src/Core/L10n.php:526 src/Model/Event.php:422 msgid "Mon" msgstr "Mon" -#: src/Core/L10n.php:397 src/Model/Event.php:418 +#: src/Core/L10n.php:526 src/Model/Event.php:423 msgid "Tue" msgstr "Tue" -#: src/Core/L10n.php:397 src/Model/Event.php:419 +#: src/Core/L10n.php:526 src/Model/Event.php:424 msgid "Wed" msgstr "Wed" -#: src/Core/L10n.php:397 src/Model/Event.php:420 +#: src/Core/L10n.php:526 src/Model/Event.php:425 msgid "Thu" msgstr "Thu" -#: src/Core/L10n.php:397 src/Model/Event.php:421 +#: src/Core/L10n.php:526 src/Model/Event.php:426 msgid "Fri" msgstr "Fri" -#: src/Core/L10n.php:397 src/Model/Event.php:422 +#: src/Core/L10n.php:526 src/Model/Event.php:427 msgid "Sat" msgstr "Sat" -#: src/Core/L10n.php:397 src/Model/Event.php:416 +#: src/Core/L10n.php:526 src/Model/Event.php:421 msgid "Sun" msgstr "Sun" -#: src/Core/L10n.php:401 src/Model/Event.php:432 +#: src/Core/L10n.php:530 src/Model/Event.php:437 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:401 src/Model/Event.php:433 +#: src/Core/L10n.php:530 src/Model/Event.php:438 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:401 src/Model/Event.php:434 +#: src/Core/L10n.php:530 src/Model/Event.php:439 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:401 src/Model/Event.php:435 +#: src/Core/L10n.php:530 src/Model/Event.php:440 msgid "Apr" msgstr "Apr" -#: src/Core/L10n.php:401 src/Model/Event.php:437 +#: src/Core/L10n.php:530 src/Model/Event.php:442 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:401 src/Model/Event.php:438 +#: src/Core/L10n.php:530 src/Model/Event.php:443 msgid "Jul" msgstr "Jul" -#: src/Core/L10n.php:401 src/Model/Event.php:439 +#: src/Core/L10n.php:530 src/Model/Event.php:444 msgid "Aug" msgstr "Aug" -#: src/Core/L10n.php:401 +#: src/Core/L10n.php:530 msgid "Sep" msgstr "Sep" -#: src/Core/L10n.php:401 src/Model/Event.php:441 +#: src/Core/L10n.php:530 src/Model/Event.php:446 msgid "Oct" msgstr "Oct" -#: src/Core/L10n.php:401 src/Model/Event.php:442 +#: src/Core/L10n.php:530 src/Model/Event.php:447 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:401 src/Model/Event.php:443 +#: src/Core/L10n.php:530 src/Model/Event.php:448 msgid "Dec" msgstr "Dec" -#: src/Core/L10n.php:420 -msgid "poke" -msgstr "poke" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "The logfile '%s' is not usable. No logging is possible (error: '%s')" -#: src/Core/L10n.php:420 -msgid "poked" -msgstr "poked" - -#: src/Core/L10n.php:421 -msgid "ping" -msgstr "ping" - -#: src/Core/L10n.php:421 -msgid "pinged" -msgstr "pinged" - -#: src/Core/L10n.php:422 -msgid "prod" -msgstr "prod" - -#: src/Core/L10n.php:422 -msgid "prodded" -msgstr "prodded" - -#: src/Core/L10n.php:423 -msgid "slap" -msgstr "slap" - -#: src/Core/L10n.php:423 -msgid "slapped" -msgstr "slapped" - -#: src/Core/L10n.php:424 -msgid "finger" -msgstr "finger" - -#: src/Core/L10n.php:424 -msgid "fingered" -msgstr "fingered" - -#: src/Core/L10n.php:425 -msgid "rebuff" -msgstr "rebuff" - -#: src/Core/L10n.php:425 -msgid "rebuffed" -msgstr "rebuffed" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "The debug logfile '%s' is not usable. No logging is possible (error: '%s')" #: src/Core/Renderer.php:89 src/Core/Renderer.php:118 -#: src/Core/Renderer.php:145 src/Core/Renderer.php:179 -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "" -#: src/Core/Renderer.php:141 +#: src/Core/Renderer.php:143 msgid "template engine cannot be registered without a name." msgstr "" -#: src/Core/Renderer.php:175 +#: src/Core/Renderer.php:177 msgid "template engine is not registered!" msgstr "" -#: src/Core/Update.php:67 +#: src/Core/Storage/Type/FilesystemConfig.php:78 +msgid "Storage base path" +msgstr "Storage base path" + +#: src/Core/Storage/Type/FilesystemConfig.php:80 +msgid "" +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "Folder where uploaded files are saved. For maximum security, this should be a path outside web server folder tree" + +#: src/Core/Storage/Type/FilesystemConfig.php:93 +msgid "Enter a valid existing folder" +msgstr "Enter a valid existing folder" + +#: src/Core/Update.php:80 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:78 +#: src/Core/Update.php:91 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:152 +#: src/Core/Update.php:183 #, php-format msgid "%s: executing pre update %d" msgstr "" -#: src/Core/Update.php:190 +#: src/Core/Update.php:225 #, php-format msgid "%s: executing post update %d" msgstr "" -#: src/Core/Update.php:261 +#: src/Core/Update.php:299 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s failed. See error logs." -#: src/Core/Update.php:314 +#: src/Core/Update.php:339 #, php-format msgid "" "\n" @@ -3924,81 +3089,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\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." -#: src/Core/Update.php:320 +#: src/Core/Update.php:345 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "" -#: src/Core/Update.php:324 src/Core/Update.php:366 +#: src/Core/Update.php:349 src/Core/Update.php:377 msgid "[Friendica Notify] Database update" msgstr "[Friendica Notify] Database update" -#: src/Core/Update.php:360 +#: src/Core/Update.php:371 #, php-format msgid "" "\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s." +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "" -#: src/Core/UserImport.php:125 -msgid "Error decoding account file" -msgstr "Error decoding account file" - -#: src/Core/UserImport.php:131 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Error! No version data in file! Is this a Friendica account file?" - -#: src/Core/UserImport.php:139 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "User '%s' already exists on this server!" - -#: src/Core/UserImport.php:175 -msgid "User creation error" -msgstr "User creation error" - -#: src/Core/UserImport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contact not imported" -msgstr[1] "%d contacts not imported" - -#: src/Core/UserImport.php:273 -msgid "User profile creation error" -msgstr "User profile creation error" - -#: src/Core/UserImport.php:326 -msgid "Done. You can now login with your username and password" -msgstr "Done. You can now login with your username and password" - -#: src/Database/DBStructure.php:65 +#: src/Database/DBStructure.php:57 #, php-format msgid "The database version had been set to %s." msgstr "The database version has been set to %s." -#: src/Database/DBStructure.php:78 +#: src/Database/DBStructure.php:82 #, 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:91 +#: src/Database/DBStructure.php:95 msgid "No unused tables found." msgstr "" -#: src/Database/DBStructure.php:96 +#: src/Database/DBStructure.php:100 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "" -#: src/Database/DBStructure.php:134 +#: src/Database/DBStructure.php:137 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Database/DBStructure.php:158 +#: src/Database/DBStructure.php:161 #, php-format msgid "" "\n" @@ -4006,570 +3139,641 @@ msgid "" "%s\n" msgstr "\nError %d occurred during database update:\n%s\n" -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:164 msgid "Errors encountered performing database changes: " msgstr "Errors encountered performing database changes: " -#: src/Database/DBStructure.php:549 +#: src/Database/DBStructure.php:232 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:553 +#: src/Database/DBStructure.php:236 #, php-format msgid "%s: Database update" msgstr "%s: Database update" -#: src/Database/DBStructure.php:803 +#: src/Database/DBStructure.php:493 #, php-format msgid "%s: updating %s table." msgstr "%s: updating %s table." -#: src/Factory/Api/Mastodon/Error.php:55 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Record not found" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:65 +#: src/Factory/Api/Mastodon/Error.php:49 msgid "Unprocessable Entity" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:75 -#: src/Module/Special/HTTPException.php:50 +#: src/Factory/Api/Mastodon/Error.php:56 msgid "Unauthorized" msgstr "Unauthorized" -#: src/Factory/Api/Mastodon/Error.php:85 +#: src/Factory/Api/Mastodon/Error.php:62 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:95 -#: src/Module/Special/HTTPException.php:53 +#: src/Factory/Api/Mastodon/Error.php:69 msgid "Internal Server Error" msgstr "Internal Server Error" -#: src/LegacyModule.php:49 +#: src/LegacyModule.php:63 #, php-format msgid "Legacy module file not found: %s" msgstr "Legacy module file not found: %s" -#: src/Model/Contact.php:1073 src/Model/Contact.php:1085 -msgid "UnFollow" -msgstr "Unfollow" +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." +msgstr "" -#: src/Model/Contact.php:1091 src/Module/Admin/Users/Pending.php:107 -#: src/Module/Notifications/Introductions.php:110 -#: src/Module/Notifications/Introductions.php:182 +#: src/Model/Circle.php:544 +msgid "Everybody" +msgstr "Everybody" + +#: src/Model/Circle.php:563 +msgid "edit" +msgstr "edit" + +#: src/Model/Circle.php:600 +msgid "add" +msgstr "add" + +#: src/Model/Circle.php:605 +msgid "Edit circle" +msgstr "" + +#: src/Model/Circle.php:606 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "" + +#: src/Model/Circle.php:608 +msgid "Create a new circle" +msgstr "" + +#: src/Model/Circle.php:609 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "" + +#: src/Model/Circle.php:610 +msgid "Edit circles" +msgstr "" + +#: src/Model/Contact.php:1256 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Approve" -#: src/Model/Contact.php:1502 +#: src/Model/Contact.php:1710 msgid "Organisation" msgstr "Organization" -#: src/Model/Contact.php:1510 -msgid "Forum" -msgstr "Forum" +#: src/Model/Contact.php:1718 +msgid "Group" +msgstr "" -#: src/Model/Contact.php:2380 +#: src/Model/Contact.php:3021 msgid "Disallowed profile URL." msgstr "Disallowed profile URL." -#: src/Model/Contact.php:2385 src/Module/Friendica.php:81 +#: src/Model/Contact.php:3026 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Blocked domain" -#: src/Model/Contact.php:2390 +#: src/Model/Contact.php:3031 msgid "Connect URL missing." msgstr "Connect URL missing." -#: src/Model/Contact.php:2399 +#: src/Model/Contact.php:3040 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page." -#: src/Model/Contact.php:2436 +#: src/Model/Contact.php:3058 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "" + +#: src/Model/Contact.php:3075 msgid "The profile address specified does not provide adequate information." msgstr "The profile address specified does not provide adequate information." -#: src/Model/Contact.php:2438 +#: src/Model/Contact.php:3077 msgid "No compatible communication protocols or feeds were discovered." msgstr "No compatible communication protocols or feeds were discovered." -#: src/Model/Contact.php:2441 +#: src/Model/Contact.php:3080 msgid "An author or name was not found." msgstr "An author or name was not found." -#: src/Model/Contact.php:2444 +#: src/Model/Contact.php:3083 msgid "No browser URL could be matched to this address." msgstr "No browser URL could be matched to this address." -#: src/Model/Contact.php:2447 +#: src/Model/Contact.php:3086 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Unable to match @-style identity address with a known protocol or email contact." -#: src/Model/Contact.php:2448 +#: src/Model/Contact.php:3087 msgid "Use mailto: in front of address to force email check." msgstr "Use mailto: in front of address to force email check." -#: src/Model/Contact.php:2454 +#: src/Model/Contact.php:3093 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "The profile address specified belongs to a network which has been disabled on this site." -#: src/Model/Contact.php:2459 +#: src/Model/Contact.php:3098 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Limited profile: This person will be unable to receive direct/private messages from you." -#: src/Model/Contact.php:2518 +#: src/Model/Contact.php:3164 msgid "Unable to retrieve contact information." msgstr "Unable to retrieve contact information." -#: src/Model/Event.php:52 +#: src/Model/Event.php:54 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:73 src/Model/Event.php:90 src/Model/Event.php:464 -#: src/Model/Event.php:897 +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 msgid "Starts:" msgstr "Starts:" -#: src/Model/Event.php:76 src/Model/Event.php:96 src/Model/Event.php:465 -#: src/Model/Event.php:901 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 msgid "Finishes:" msgstr "Finishes:" -#: src/Model/Event.php:414 +#: src/Model/Event.php:419 msgid "all-day" msgstr "All-day" -#: src/Model/Event.php:440 +#: src/Model/Event.php:445 msgid "Sept" msgstr "Sep" -#: src/Model/Event.php:462 +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "today" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:288 src/Util/Temporal.php:353 +msgid "month" +msgstr "month" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:289 src/Util/Temporal.php:354 +msgid "week" +msgstr "week" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:290 src/Util/Temporal.php:355 +msgid "day" +msgstr "day" + +#: src/Model/Event.php:467 msgid "No events to display" msgstr "No events to display" -#: src/Model/Event.php:578 +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "Access to this profile has been restricted." + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "" + +#: src/Model/Event.php:637 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:609 +#: src/Model/Event.php:664 msgid "Edit event" msgstr "Edit event" -#: src/Model/Event.php:610 +#: src/Model/Event.php:665 msgid "Duplicate event" msgstr "Duplicate event" -#: src/Model/Event.php:611 +#: src/Model/Event.php:666 msgid "Delete event" msgstr "Delete event" -#: src/Model/Event.php:853 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:854 +#: src/Model/Event.php:897 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:855 +#: src/Model/Event.php:898 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:916 src/Model/Event.php:918 +#: src/Model/Event.php:964 src/Model/Event.php:966 msgid "Show map" msgstr "Show map" -#: src/Model/Event.php:917 +#: src/Model/Event.php:965 msgid "Hide map" msgstr "Hide map" -#: src/Model/Event.php:1009 +#: src/Model/Event.php:1058 #, php-format msgid "%s's birthday" msgstr "%s's birthday" -#: src/Model/Event.php:1010 +#: src/Model/Event.php:1059 #, php-format msgid "Happy Birthday %s" msgstr "Happy Birthday, %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 "A deleted group with this name has been 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." - -#: src/Model/Group.php:451 -msgid "Default privacy group for new contacts" -msgstr "Default privacy group for new contacts" - -#: src/Model/Group.php:483 -msgid "Everybody" -msgstr "Everybody" - -#: src/Model/Group.php:502 -msgid "edit" -msgstr "edit" - -#: src/Model/Group.php:534 -msgid "add" -msgstr "add" - -#: src/Model/Group.php:539 -msgid "Edit group" -msgstr "Edit group" - -#: src/Model/Group.php:540 src/Module/Group.php:193 -msgid "Contacts not in any group" -msgstr "Contacts not in any group" - -#: src/Model/Group.php:542 -msgid "Create a new group" -msgstr "Create new group" - -#: src/Model/Group.php:543 src/Module/Group.php:178 src/Module/Group.php:201 -#: src/Module/Group.php:276 -msgid "Group Name: " -msgstr "Group name: " - -#: src/Model/Group.php:544 -msgid "Edit groups" -msgstr "Edit groups" - -#: src/Model/Item.php:1677 +#: src/Model/Item.php:2139 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "" -#: src/Model/Item.php:2628 +#: src/Model/Item.php:3084 msgid "activity" msgstr "activity" -#: src/Model/Item.php:2630 +#: src/Model/Item.php:3086 msgid "comment" msgstr "" -#: src/Model/Item.php:2633 +#: src/Model/Item.php:3089 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "post" -#: src/Model/Item.php:2770 +#: src/Model/Item.php:3259 +#, php-format +msgid "%s is blocked" +msgstr "" + +#: src/Model/Item.php:3261 +#, php-format +msgid "%s is ignored" +msgstr "" + +#: src/Model/Item.php:3263 +#, php-format +msgid "Content from %s is collapsed" +msgstr "" + +#: src/Model/Item.php:3267 #, php-format msgid "Content warning: %s" msgstr "Content warning: %s" -#: src/Model/Item.php:3119 +#: src/Model/Item.php:3720 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:3148 src/Model/Item.php:3149 +#: src/Model/Item.php:3751 +#, php-format +msgid "%2$s (%3$d%%, %1$d vote)" +msgid_plural "%2$s (%3$d%%, %1$d votes)" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3753 +#, php-format +msgid "%2$s (%1$d vote)" +msgid_plural "%2$s (%1$d votes)" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3758 +#, php-format +msgid "%d voter. Poll end: %s" +msgid_plural "%d voters. Poll end: %s" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3760 +#, php-format +msgid "%d voter." +msgid_plural "%d voters." +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3762 +#, php-format +msgid "Poll end: %s" +msgstr "" + +#: src/Model/Item.php:3796 src/Model/Item.php:3797 msgid "View on separate page" msgstr "View on separate page" -#: src/Model/Mail.php:134 src/Model/Mail.php:266 +#: src/Model/Mail.php:137 src/Model/Mail.php:266 msgid "[no subject]" msgstr "[no subject]" -#: src/Model/Profile.php:356 src/Module/Profile/Profile.php:256 -#: src/Module/Profile/Profile.php:258 +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Wall photos" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 msgid "Edit profile" msgstr "Edit profile" -#: src/Model/Profile.php:358 +#: src/Model/Profile.php:361 msgid "Change profile photo" msgstr "Change profile photo" -#: src/Model/Profile.php:371 src/Module/Directory.php:155 -#: src/Module/Profile/Profile.php:184 +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 msgid "Homepage:" msgstr "Homepage:" -#: src/Model/Profile.php:372 src/Module/Contact.php:571 -#: src/Module/Notifications/Introductions.php:167 +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "About:" -#: src/Model/Profile.php:458 +#: src/Model/Profile.php:477 msgid "Atom feed" msgstr "Atom feed" -#: 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:484 +msgid "This website has been verified to belong to the same person." +msgstr "" -#: src/Model/Profile.php:497 +#: src/Model/Profile.php:525 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:559 src/Model/Profile.php:644 +#: src/Model/Profile.php:589 src/Model/Profile.php:678 msgid "[today]" msgstr "[today]" -#: src/Model/Profile.php:569 +#: src/Model/Profile.php:598 msgid "Birthday Reminders" msgstr "Birthday reminders" -#: src/Model/Profile.php:570 +#: src/Model/Profile.php:599 msgid "Birthdays this week:" msgstr "Birthdays this week:" -#: src/Model/Profile.php:631 +#: src/Model/Profile.php:627 +msgid "g A l F d" +msgstr "g A l F d" + +#: src/Model/Profile.php:665 msgid "[No description]" msgstr "[No description]" -#: src/Model/Profile.php:657 +#: src/Model/Profile.php:691 msgid "Event Reminders" msgstr "Event reminders" -#: src/Model/Profile.php:658 +#: src/Model/Profile.php:692 msgid "Upcoming events the next 7 days:" msgstr "Upcoming events the next 7 days:" -#: src/Model/Profile.php:846 +#: src/Model/Profile.php:891 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s welcomes %2$s" -#: src/Model/Profile.php:978 +#: src/Model/Profile.php:1031 msgid "Hometown:" msgstr "Home town:" -#: src/Model/Profile.php:979 +#: src/Model/Profile.php:1032 msgid "Marital Status:" msgstr "" -#: src/Model/Profile.php:980 +#: src/Model/Profile.php:1033 msgid "With:" msgstr "" -#: src/Model/Profile.php:981 +#: src/Model/Profile.php:1034 msgid "Since:" msgstr "" -#: src/Model/Profile.php:982 +#: src/Model/Profile.php:1035 msgid "Sexual Preference:" msgstr "Sexual preference:" -#: src/Model/Profile.php:983 +#: src/Model/Profile.php:1036 msgid "Political Views:" msgstr "Political views:" -#: src/Model/Profile.php:984 +#: src/Model/Profile.php:1037 msgid "Religious Views:" msgstr "Religious views:" -#: src/Model/Profile.php:985 +#: src/Model/Profile.php:1038 msgid "Likes:" msgstr "Likes:" -#: src/Model/Profile.php:986 +#: src/Model/Profile.php:1039 msgid "Dislikes:" msgstr "Dislikes:" -#: src/Model/Profile.php:987 +#: src/Model/Profile.php:1040 msgid "Title/Description:" msgstr "Title/Description:" -#: src/Model/Profile.php:988 src/Module/Admin/Summary.php:234 +#: src/Model/Profile.php:1041 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 msgid "Summary" msgstr "Summary" -#: src/Model/Profile.php:989 +#: src/Model/Profile.php:1042 msgid "Musical interests" msgstr "Music:" -#: src/Model/Profile.php:990 +#: src/Model/Profile.php:1043 msgid "Books, literature" msgstr "Books, literature, poetry:" -#: src/Model/Profile.php:991 +#: src/Model/Profile.php:1044 msgid "Television" msgstr "Television:" -#: src/Model/Profile.php:992 +#: src/Model/Profile.php:1045 msgid "Film/dance/culture/entertainment" msgstr "Film, dance, culture, entertainment" -#: src/Model/Profile.php:993 +#: src/Model/Profile.php:1046 msgid "Hobbies/Interests" msgstr "Hobbies/Interests:" -#: src/Model/Profile.php:994 +#: src/Model/Profile.php:1047 msgid "Love/romance" msgstr "Love/Romance:" -#: src/Model/Profile.php:995 +#: src/Model/Profile.php:1048 msgid "Work/employment" msgstr "Work/Employment:" -#: src/Model/Profile.php:996 +#: src/Model/Profile.php:1049 msgid "School/education" msgstr "School/Education:" -#: src/Model/Profile.php:997 +#: src/Model/Profile.php:1050 msgid "Contact information and Social Networks" msgstr "Contact information and other social networks:" -#: src/Model/Storage/FilesystemConfig.php:77 -msgid "Storage base path" -msgstr "Storage base path" - -#: src/Model/Storage/FilesystemConfig.php:79 -msgid "" -"Folder where uploaded files are saved. For maximum security, This should be " -"a path outside web server folder tree" -msgstr "Folder where uploaded files are saved. For maximum security, this should be a path outside web server folder tree" - -#: src/Model/Storage/FilesystemConfig.php:92 -msgid "Enter a valid existing folder" -msgstr "Enter a valid existing folder" - -#: src/Model/User.php:208 src/Model/User.php:1050 +#: src/Model/User.php:226 src/Model/User.php:1185 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "SERIOUS ERROR: Generation of security keys failed." -#: src/Model/User.php:589 src/Model/User.php:622 +#: src/Model/User.php:619 src/Model/User.php:652 msgid "Login failed" msgstr "Login failed" -#: src/Model/User.php:654 +#: src/Model/User.php:684 msgid "Not enough information to authenticate" msgstr "Not enough information to authenticate" -#: src/Model/User.php:749 +#: src/Model/User.php:805 msgid "Password can't be empty" msgstr "Password can't be empty" -#: src/Model/User.php:768 +#: src/Model/User.php:847 msgid "Empty passwords are not allowed." msgstr "Empty passwords are not allowed." -#: src/Model/User.php:772 +#: src/Model/User.php:851 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "The new password has been exposed in a public data dump; please choose another." -#: src/Model/User.php:778 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "The password can't contain accentuated letters, white spaces or colons (:)" +#: src/Model/User.php:855 +msgid "The password length is limited to 72 characters." +msgstr "" -#: src/Model/User.php:930 +#: src/Model/User.php:859 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "" + +#: src/Model/User.php:1068 msgid "Passwords do not match. Password unchanged." msgstr "Passwords do not match. Password unchanged." -#: src/Model/User.php:937 +#: src/Model/User.php:1075 msgid "An invitation is required." msgstr "An invitation is required." -#: src/Model/User.php:941 +#: src/Model/User.php:1079 msgid "Invitation could not be verified." msgstr "Invitation could not be verified." -#: src/Model/User.php:949 +#: src/Model/User.php:1087 msgid "Invalid OpenID url" msgstr "Invalid OpenID URL" -#: src/Model/User.php:962 src/Security/Authentication.php:223 +#: src/Model/User.php:1100 src/Security/Authentication.php:241 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID." -#: src/Model/User.php:962 src/Security/Authentication.php:223 +#: src/Model/User.php:1100 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "The error message was:" -#: src/Model/User.php:968 +#: src/Model/User.php:1106 msgid "Please enter the required information." msgstr "Please enter the required information." -#: src/Model/User.php:982 +#: src/Model/User.php:1120 #, 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) are excluding each other, swapping values." -#: src/Model/User.php:989 +#: src/Model/User.php:1127 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." msgstr[0] "Username should be at least %s character." msgstr[1] "Username should be at least %s characters." -#: src/Model/User.php:993 +#: src/Model/User.php:1131 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." msgstr[0] "Username should be at most %s character." msgstr[1] "Username should be at most %s characters." -#: src/Model/User.php:1001 +#: src/Model/User.php:1139 msgid "That doesn't appear to be your full (First Last) name." msgstr "That doesn't appear to be your full (i.e first and last) name." -#: src/Model/User.php:1006 +#: src/Model/User.php:1144 msgid "Your email domain is not among those allowed on this site." msgstr "Your email domain is not allowed on this site." -#: src/Model/User.php:1010 +#: src/Model/User.php:1148 msgid "Not a valid email address." msgstr "Not a valid email address." -#: src/Model/User.php:1013 +#: src/Model/User.php:1151 msgid "The nickname was blocked from registration by the nodes admin." msgstr "The nickname was blocked from registration by the nodes admin." -#: src/Model/User.php:1017 src/Model/User.php:1025 +#: src/Model/User.php:1155 src/Model/User.php:1161 msgid "Cannot use that email." msgstr "Cannot use that email." -#: src/Model/User.php:1032 +#: src/Model/User.php:1167 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Your nickname can only contain a-z, 0-9 and _." -#: src/Model/User.php:1040 src/Model/User.php:1097 +#: src/Model/User.php:1175 src/Model/User.php:1232 msgid "Nickname is already registered. Please choose another." msgstr "Nickname is already registered. Please choose another." -#: src/Model/User.php:1084 src/Model/User.php:1088 +#: src/Model/User.php:1219 src/Model/User.php:1223 msgid "An error occurred during registration. Please try again." msgstr "An error occurred during registration. Please try again." -#: src/Model/User.php:1111 +#: src/Model/User.php:1246 msgid "An error occurred creating your default profile. Please try again." msgstr "An error occurred creating your default profile. Please try again." -#: src/Model/User.php:1118 +#: src/Model/User.php:1253 msgid "An error occurred creating your self contact. Please try again." msgstr "An error occurred creating your self contact. Please try again." -#: src/Model/User.php:1123 +#: src/Model/User.php:1258 msgid "Friends" msgstr "Friends" -#: src/Model/User.php:1127 +#: src/Model/User.php:1262 msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "An error occurred while creating your default contact group. Please try again." +"An error occurred creating your default contact circle. Please try again." +msgstr "" -#: src/Model/User.php:1165 +#: src/Model/User.php:1306 msgid "Profile Photos" msgstr "Profile photos" -#: src/Model/User.php:1359 +#: src/Model/User.php:1486 #, php-format msgid "" "\n" @@ -4577,7 +3781,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1362 +#: src/Model/User.php:1489 #, php-format msgid "" "\n" @@ -4604,17 +3808,17 @@ msgid "" "\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" +"\t\tIf you ever want to delete your account, you can do so at %1$s/settings/removeme\n" "\n" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1395 src/Model/User.php:1502 +#: src/Model/User.php:1522 src/Model/User.php:1629 #, php-format msgid "Registration details for %s" msgstr "Registration details for %s" -#: src/Model/User.php:1415 +#: src/Model/User.php:1542 #, php-format msgid "" "\n" @@ -4629,12 +3833,12 @@ msgid "" "\t\t" msgstr "\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" -#: src/Model/User.php:1434 +#: src/Model/User.php:1561 #, php-format msgid "Registration at %s" msgstr "Registration at %s" -#: src/Model/User.php:1458 +#: src/Model/User.php:1585 #, php-format msgid "" "\n" @@ -4643,7 +3847,7 @@ msgid "" "\t\t\t" msgstr "\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" -#: src/Model/User.php:1466 +#: src/Model/User.php:1593 #, php-format msgid "" "\n" @@ -4670,10 +3874,15 @@ msgid "" "\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" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." -msgstr "\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 "" + +#: src/Model/User.php:1656 +msgid "" +"User with delegates can't be removed, please remove delegate users first" +msgstr "" #: src/Module/Admin/Addons/Details.php:65 msgid "Addon not found." @@ -4695,30 +3904,25 @@ msgid "Disable" msgstr "Disable" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:332 msgid "Enable" msgstr "Enable" #: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:94 -#: 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:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:499 -#: src/Module/Admin/Storage.php:139 src/Module/Admin/Summary.php:233 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: 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 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 msgid "Administration" msgstr "Administration" #: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:93 -#: src/Module/BaseSettings.php:87 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:139 msgid "Addons" msgstr "Addons" @@ -4727,13 +3931,13 @@ msgstr "Addons" msgid "Toggle" msgstr "Toggle" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 msgid "Author: " msgstr "Author: " -#: src/Module/Admin/Addons/Details.php:122 -#: src/Module/Admin/Themes/Details.php:102 +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 msgid "Maintainer: " msgstr "Maintainer: " @@ -4746,11 +3950,22 @@ msgstr "" msgid "Addon %s failed to install." msgstr "Addon %s failed to install." +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:303 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Save settings" + #: src/Module/Admin/Addons/Index.php:70 msgid "Reload active addons" msgstr "Reload active addons" -#: src/Module/Admin/Addons/Index.php:75 +#: src/Module/Admin/Addons/Index.php:74 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4758,232 +3973,6 @@ msgid "" " the open addon registry at %2$s" msgstr "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" -#: src/Module/Admin/BaseUsers.php:53 -msgid "List of all users" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:58 -msgid "Active" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:61 -msgid "List of active accounts" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:66 src/Module/Contact.php:703 -#: src/Module/Contact.php:763 -msgid "Pending" -msgstr "Pending" - -#: src/Module/Admin/BaseUsers.php:69 -msgid "List of pending registrations" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:74 src/Module/Contact.php:711 -#: src/Module/Contact.php:764 -msgid "Blocked" -msgstr "Blocked" - -#: src/Module/Admin/BaseUsers.php:77 -msgid "List of blocked users" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:82 -msgid "Deleted" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:85 -msgid "List of pending user deletions" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:103 -msgid "Private Forum" -msgstr "Private Forum" - -#: src/Module/Admin/BaseUsers.php:110 -msgid "Relay" -msgstr "Relay" - -#: src/Module/Admin/Blocklist/Contact.php:54 -msgid "You can't block a local contact, please block the user instead" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:73 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s contact unblocked" -msgstr[1] "%s contacts unblocked" - -#: src/Module/Admin/Blocklist/Contact.php:95 -msgid "Remote Contact Blocklist" -msgstr "Remote contact block-list" - -#: src/Module/Admin/Blocklist/Contact.php:96 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "This page allows you to prevent any message from a remote contact to reach your node." - -#: src/Module/Admin/Blocklist/Contact.php:97 -msgid "Block Remote Contact" -msgstr "Block remote contact" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#: 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 "select all" - -#: src/Module/Admin/Blocklist/Contact.php:99 -msgid "select none" -msgstr "select none" - -#: src/Module/Admin/Blocklist/Contact.php:101 -#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156 -#: src/Module/Contact.php:544 src/Module/Contact.php:787 -#: src/Module/Contact.php:1064 -msgid "Unblock" -msgstr "Unblock" - -#: src/Module/Admin/Blocklist/Contact.php:102 -msgid "No remote contact is blocked from this node." -msgstr "No remote contact is blocked from this node." - -#: src/Module/Admin/Blocklist/Contact.php:104 -msgid "Blocked Remote Contacts" -msgstr "Blocked remote contacts" - -#: src/Module/Admin/Blocklist/Contact.php:105 -msgid "Block New Remote Contact" -msgstr "Block new remote contact" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Photo" -msgstr "Photo" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Reason" -msgstr "Reason" - -#: src/Module/Admin/Blocklist/Contact.php:114 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "%s total blocked contact" -msgstr[1] "%s blocked contacts" - -#: src/Module/Admin/Blocklist/Contact.php:116 -msgid "URL of the remote contact to block." -msgstr "URL of the remote contact to block." - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "Also purge contact" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "" -"Removes all content related to this contact from the node. Keeps the contact" -" record. This action canoot be undone." -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:118 -msgid "Block Reason" -msgstr "Block reason" - -#: src/Module/Admin/Blocklist/Server.php:49 -msgid "Server domain pattern added to blocklist." -msgstr "Server domain pattern added to block-list." - -#: src/Module/Admin/Blocklist/Server.php:79 -#: src/Module/Admin/Blocklist/Server.php:104 -msgid "Blocked server domain pattern" -msgstr "Blocked server domain pattern" - -#: src/Module/Admin/Blocklist/Server.php:80 -#: src/Module/Admin/Blocklist/Server.php:105 src/Module/Friendica.php:82 -msgid "Reason for the block" -msgstr "Reason for the block" - -#: src/Module/Admin/Blocklist/Server.php:81 -msgid "Delete server domain pattern" -msgstr "Delete server domain pattern" - -#: src/Module/Admin/Blocklist/Server.php:81 -msgid "Check to delete this entry from the blocklist" -msgstr "Check to delete this entry from the block-list" - -#: src/Module/Admin/Blocklist/Server.php:89 -msgid "Server Domain Pattern Blocklist" -msgstr "Server domain pattern block-list" - -#: 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 "" - -#: 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 "The list of blocked server domain patterns will be made publicly available on the /friendica page so that your users and people investigating communication problems can find the reason easily." - -#: 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 "

    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
    " - -#: src/Module/Admin/Blocklist/Server.php:98 -msgid "Add new entry to block list" -msgstr "Add new entry to block-list" - -#: src/Module/Admin/Blocklist/Server.php:99 -msgid "Server Domain Pattern" -msgstr "Server Domain Pattern" - -#: 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 "The domain pattern of the new server to add to the block-list. Do not include the protocol." - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "Block reason" -msgstr "Block reason" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "The reason why you blocked this server domain pattern." -msgstr "The reason why you blocked this server domain pattern." - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "Add Entry" -msgstr "Add entry" - -#: src/Module/Admin/Blocklist/Server.php:102 -msgid "Save changes to the blocklist" -msgstr "Save changes to the block-list" - -#: src/Module/Admin/Blocklist/Server.php:103 -msgid "Current Entries in the Blocklist" -msgstr "Current entries in the block-list" - -#: src/Module/Admin/Blocklist/Server.php:106 -msgid "Delete entry from blocklist" -msgstr "Delete entry from block-list" - -#: src/Module/Admin/Blocklist/Server.php:109 -msgid "Delete entry from blocklist?" -msgstr "Delete entry from block-list?" - #: src/Module/Admin/DBSync.php:51 msgid "Update has been marked successful" msgstr "Update has been marked successful" @@ -5018,28 +4007,28 @@ msgstr "Update %s did not return a status. Unknown if it succeeded." msgid "There was no additional update function %s that needed to be called." msgstr "There was no additional update function %s that needed to be called." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:105 msgid "No failed updates." msgstr "No failed updates." -#: src/Module/Admin/DBSync.php:107 +#: src/Module/Admin/DBSync.php:106 msgid "Check database structure" msgstr "Check database structure" -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:110 msgid "Failed Updates" msgstr "Failed updates" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:111 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "This does not include updates prior to 1139, which did not return a status." -#: src/Module/Admin/DBSync.php:114 +#: src/Module/Admin/DBSync.php:112 msgid "Mark success (if update was manually applied)" msgstr "Mark success (if update was manually applied)" -#: src/Module/Admin/DBSync.php:115 +#: src/Module/Admin/DBSync.php:113 msgid "Attempt to execute this update step automatically" msgstr "Attempt to execute this update step automatically" @@ -5048,164 +4037,145 @@ msgstr "Attempt to execute this update step automatically" msgid "Lock feature %s" msgstr "Lock feature %s" -#: src/Module/Admin/Features.php:85 +#: src/Module/Admin/Features.php:84 msgid "Manage Additional Features" msgstr "Manage additional features" -#: src/Module/Admin/Federation.php:56 +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 msgid "Other" msgstr "Other" -#: src/Module/Admin/Federation.php:118 src/Module/Admin/Federation.php:348 +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 msgid "unknown" msgstr "unknown" -#: src/Module/Admin/Federation.php:154 +#: src/Module/Admin/Federation.php:187 +#, php-format +msgid "%2$s total system" +msgid_plural "%2$s total systems" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:188 +#, php-format +msgid "%2$s active user last month" +msgid_plural "%2$s active users last month" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:189 +#, php-format +msgid "%2$s active user last six months" +msgid_plural "%2$s active users last six months" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:190 +#, php-format +msgid "%2$s registered user" +msgid_plural "%2$s registered users" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:191 +#, php-format +msgid "%2$s locally created post or comment" +msgid_plural "%2$s locally created posts and comments" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:194 +#, php-format +msgid "%2$s post per user" +msgid_plural "%2$s posts per user" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:199 +#, php-format +msgid "%2$s user per system" +msgid_plural "%2$s users per system" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:209 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 "This page offers statistics about the federated social network, of which your Friendica node is one part. These numbers do not represent the entire network, but merely the parts that are connected to your node.\"" -#: src/Module/Admin/Federation.php:160 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "Federation statistics" -#: src/Module/Admin/Federation.php:164 +#: src/Module/Admin/Federation.php:219 #, php-format msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " +"Currently this node is aware of %2$s node (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " "following platforms:" -msgstr "Currently, this node is aware of %d nodes with %d registered users from the following platforms:" +msgid_plural "" +"Currently this node is aware of %2$s nodes (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgstr[0] "" +msgstr[1] "" -#: src/Module/Admin/Item/Delete.php:54 -msgid "Item marked for deletion." -msgstr "Item marked for deletion." - -#: src/Module/Admin/Item/Delete.php:66 src/Module/BaseAdmin.php:106 -msgid "Delete Item" -msgstr "Delete item" - -#: src/Module/Admin/Item/Delete.php:67 -msgid "Delete this Item" -msgstr "Delete" - -#: 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 "Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted." - -#: 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 "You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 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 "GUID of item to be deleted." - -#: src/Module/Admin/Item/Source.php:57 src/Module/BaseAdmin.php:116 -msgid "Item Source" -msgstr "Item source" - -#: src/Module/Admin/Item/Source.php:58 -msgid "Item Guid" -msgstr "Item Guid" - -#: src/Module/Admin/Item/Source.php:63 -msgid "Item Id" -msgstr "" - -#: src/Module/Admin/Item/Source.php:64 -msgid "Item URI" -msgstr "" - -#: src/Module/Admin/Item/Source.php:66 -msgid "Terms" -msgstr "" - -#: src/Module/Admin/Item/Source.php:67 -msgid "Tag" -msgstr "" - -#: 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 "Type" - -#: src/Module/Admin/Item/Source.php:69 -msgid "Term" -msgstr "" - -#: src/Module/Admin/Item/Source.php:70 -msgid "URL" -msgstr "" - -#: src/Module/Admin/Item/Source.php:71 -msgid "Mention" -msgstr "" - -#: src/Module/Admin/Item/Source.php:72 -msgid "Implicit Mention" -msgstr "" - -#: src/Module/Admin/Item/Source.php:73 src/Module/Admin/Logs/View.php:98 -#: src/Module/Debug/ActivityPubConversion.php:62 -msgid "Source" -msgstr "" - -#: src/Module/Admin/Logs/Settings.php:48 +#: src/Module/Admin/Logs/Settings.php:47 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "The logfile '%s' is not writable. No logging is possible" -#: src/Module/Admin/Logs/Settings.php:72 +#: src/Module/Admin/Logs/Settings.php:77 msgid "PHP log currently enabled." msgstr "PHP log currently enabled." -#: src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/Settings.php:79 msgid "PHP log currently disabled." msgstr "PHP log currently disabled." -#: src/Module/Admin/Logs/Settings.php:81 src/Module/BaseAdmin.php:108 -#: src/Module/BaseAdmin.php:109 +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 msgid "Logs" msgstr "Logs" -#: src/Module/Admin/Logs/Settings.php:83 +#: src/Module/Admin/Logs/Settings.php:88 msgid "Clear" msgstr "Clear" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:91 msgid "Enable Debugging" msgstr "Enable debugging" -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:92 msgid "Log file" msgstr "Log file" -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:92 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Must be writable by web server and relative to your Friendica top-level directory." -#: src/Module/Admin/Logs/Settings.php:89 +#: src/Module/Admin/Logs/Settings.php:93 msgid "Log level" msgstr "Log level" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:95 msgid "PHP logging" msgstr "PHP logging" -#: src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:96 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 " @@ -5228,7 +4198,7 @@ msgid "" "is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:110 +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 msgid "View Logs" msgstr "View logs" @@ -5237,7 +4207,7 @@ msgid "Search in logs" msgstr "" #: src/Module/Admin/Logs/View.php:88 -#: src/Module/Notifications/Notifications.php:126 +#: src/Module/Notifications/Notifications.php:140 msgid "Show all" msgstr "Show all" @@ -5265,10 +4235,19 @@ msgstr "" msgid "Click to view details" msgstr "" +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Event details" + #: src/Module/Admin/Logs/View.php:97 msgid "Data" msgstr "" +#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Debug/ActivityPubConversion.php:57 +msgid "Source" +msgstr "" + #: src/Module/Admin/Logs/View.php:99 msgid "File" msgstr "" @@ -5325,465 +4304,472 @@ msgstr "" msgid "Job Parameters" msgstr "Job parameters" +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "Created" + #: src/Module/Admin/Queue.php:79 msgid "Priority" msgstr "Priority" -#: src/Module/Admin/Site.php:70 -msgid "Can not parse base url. Must have at least ://" -msgstr "Can not parse base URL. Must have at least ://" - -#: src/Module/Admin/Site.php:124 -msgid "Relocation started. Could take a while to complete." +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:404 src/Module/Settings/Display.php:139 +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:211 msgid "No special theme for mobile devices" msgstr "No special theme for mobile devices" -#: src/Module/Admin/Site.php:421 src/Module/Settings/Display.php:149 +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:221 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimental)" -#: src/Module/Admin/Site.php:433 -msgid "No community page for local users" -msgstr "No community page for local users" - -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:342 msgid "No community page" msgstr "No community page" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:343 +msgid "No community page for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:344 msgid "Public postings from users of this site" msgstr "Public postings from users of this site" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:345 msgid "Public postings from the federated network" msgstr "Public postings from the federated network" -#: src/Module/Admin/Site.php:437 +#: src/Module/Admin/Site.php:346 msgid "Public postings from local users and the federated network" msgstr "Public postings from local users and the federated network" -#: src/Module/Admin/Site.php:443 +#: src/Module/Admin/Site.php:352 msgid "Multi user instance" msgstr "Multi user instance" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:375 msgid "Closed" msgstr "Closed" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:376 msgid "Requires approval" msgstr "Requires approval" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:377 msgid "Open" msgstr "Open" -#: src/Module/Admin/Site.php:476 src/Module/Install.php:215 -msgid "No SSL policy, links will track page SSL state" -msgstr "No SSL policy, links will track page SSL state" - -#: src/Module/Admin/Site.php:477 src/Module/Install.php:216 -msgid "Force all links to use SSL" -msgstr "Force all links to use SSL" - -#: src/Module/Admin/Site.php:478 src/Module/Install.php:217 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Self-signed certificate, use SSL for local links only (discouraged)" - -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:381 msgid "Don't check" msgstr "Don't check" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:382 msgid "check the stable version" msgstr "check for stable version updates" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:383 msgid "check the development version" msgstr "check for development version updates" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:387 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:388 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:389 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:500 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Site" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:400 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:402 msgid "Republish users to directory" msgstr "Republish users to directory" -#: src/Module/Admin/Site.php:504 src/Module/Register.php:141 +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 msgid "Registration" msgstr "Registration" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:404 msgid "File upload" msgstr "File upload" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:405 msgid "Policies" msgstr "Policies" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "Advanced" + +#: src/Module/Admin/Site.php:407 msgid "Auto Discovered Contact Directory" msgstr "Auto-discovered contact directory" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:408 msgid "Performance" msgstr "Performance" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:409 msgid "Worker" msgstr "Worker" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:410 msgid "Message Relay" msgstr "Message relay" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:411 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:412 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:413 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:516 -msgid "Relocate Instance" -msgstr "Relocate Instance" - -#: src/Module/Admin/Site.php:517 -msgid "" -"Warning! Advanced function. Could make this server " -"unreachable." +#: src/Module/Admin/Site.php:415 +msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:416 +msgid "" +"Relocating your node enables you to change the DNS domain of this node and " +"keep all the existing users and posts. This process takes a while and can " +"only be started from the relocate console command like this:" +msgstr "" + +#: src/Module/Admin/Site.php:417 +msgid "(Friendica directory)# bin/console relocate https://newdomain.com" +msgstr "" + +#: src/Module/Admin/Site.php:420 msgid "Site name" msgstr "Site name" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:421 msgid "Sender Email" msgstr "Sender email" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:421 msgid "" "The email address your server shall use to send notification emails from." msgstr "The email address your server shall use to send notification emails from." -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:422 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:422 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:524 +#: src/Module/Admin/Site.php:423 msgid "Banner/Logo" msgstr "Banner/Logo" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:424 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:425 msgid "Shortcut icon" msgstr "Shortcut icon" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:425 msgid "Link to an icon that will be used for browsers." msgstr "Link to an icon that will be used for browsers." -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:426 msgid "Touch icon" msgstr "Touch icon" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:426 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Link to an icon that will be used for tablets and mobiles." -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:427 msgid "Additional Info" msgstr "Additional Info" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:427 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "For public servers: You can add additional information here that will be listed at %s/servers." -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:428 msgid "System language" msgstr "System language" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:429 msgid "System theme" msgstr "System theme" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:429 +#, php-format msgid "" -"Default system theme - may be over-ridden by user profiles - Change default theme settings" -msgstr "Default system theme - may be over-ridden by user profiles - Change default theme settings" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:430 msgid "Mobile system theme" msgstr "Mobile system theme" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:430 msgid "Theme for mobile devices" msgstr "Theme for mobile devices" -#: src/Module/Admin/Site.php:532 src/Module/Install.php:225 -msgid "SSL link policy" -msgstr "SSL link policy" - -#: src/Module/Admin/Site.php:532 src/Module/Install.php:227 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determines whether generated links should be forced to use SSL" - -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:431 msgid "Force SSL" msgstr "Force SSL" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:431 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops." -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:432 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:432 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:433 msgid "Single user instance" msgstr "Single user instance" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:433 msgid "Make this instance multi-user or single-user for the named user" msgstr "Make this instance multi-user or single-user for the named user" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:435 msgid "Maximum image size" msgstr "Maximum image size" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:435 +#, php-format msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximum size in bytes of uploaded images. Default is 0, which means no limits." +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:439 msgid "Maximum image length" msgstr "Maximum image length" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:439 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits." -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:440 msgid "JPEG image quality" msgstr "JPEG image quality" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:440 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Uploaded JPEGs will be saved at this quality setting [0-100]. Default is 100, which is the original quality level." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:442 msgid "Register policy" msgstr "Registration policy" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "" + +#: src/Module/Admin/Site.php:444 msgid "Maximum Daily Registrations" msgstr "Maximum daily registrations" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:444 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 "If open registration is permitted, this sets the maximum number of new registrations per day. This setting has no effect for registrations by approval." -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:445 msgid "Register text" msgstr "Registration text" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:445 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Will be displayed prominently on the registration page. You may use BBCode here." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:446 msgid "Forbidden Nicknames" msgstr "Forbidden Nicknames" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:446 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142." -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:447 msgid "Accounts abandoned after x days" msgstr "Accounts abandoned after so many days" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:447 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit." -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:448 msgid "Allowed friend domains" msgstr "Allowed friend domains" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:448 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Comma-separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Leave empty to allow any domains" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:449 msgid "Allowed email domains" msgstr "Allowed email domains" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:449 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 "Comma-separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Leave empty to allow any domains" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:450 msgid "No OEmbed rich content" msgstr "No OEmbed rich content" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:450 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "Don't show rich content (e.g. embedded PDF), except from the domains listed below." -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:451 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:451 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:550 +#: src/Module/Admin/Site.php:452 msgid "Block public" msgstr "Block public" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:452 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Block public access to all otherwise public personal pages on this site, except for local users when logged in." -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:453 msgid "Force publish" msgstr "Mandatory directory listing" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:453 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Force all profiles on this site to be listed in the site directory." -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:453 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Enabling this may violate privacy laws like the GDPR" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:454 msgid "Global directory URL" msgstr "Global directory URL" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:454 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "URL to the global directory: If this is not set, the global directory is completely unavailable to the application." -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:455 msgid "Private posts by default for new users" msgstr "Private posts by default for new users" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:455 msgid "" "Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Set default post permissions for all new members to the default privacy group rather than public." +"circle rather than public." +msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:456 msgid "Don't include post content in email notifications" msgstr "Don't include post content in email notifications" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:456 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 "Don't include the content of a post/comment/private message in the email notifications sent from this site, as a privacy measure." -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:457 msgid "Disallow public access to addons listed in the apps menu." msgstr "Disallow public access to addons listed in the apps menu." -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:457 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Checking this box will restrict addons listed in the apps menu to members only." -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:458 msgid "Don't embed private images in posts" msgstr "Don't embed private images in posts" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:458 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 " @@ -5791,11 +4777,11 @@ msgid "" "while." msgstr "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." -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:459 msgid "Explicit Content" msgstr "Explicit Content" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:459 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 " @@ -5804,255 +4790,267 @@ msgid "" "will be shown at the user registration page." msgstr "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." -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:460 msgid "Proxify external content" msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:460 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:461 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:461 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:462 msgid "Allow Users to set remote_self" msgstr "Allow users to set \"Remote self\"" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:462 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 "This allows every user to mark contacts as a \"Remote self\" in the repair contact dialogue. Setting this flag on a contact will mirror every posting of that contact in the users stream." -#: src/Module/Admin/Site.php:561 +#: src/Module/Admin/Site.php:463 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:561 +#: src/Module/Admin/Site.php:463 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:465 msgid "Enable Fullname check" msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:465 msgid "" "Enable check to only allow users to register with a space between the first " "name and the last name in their full name." msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "" + +#: src/Module/Admin/Site.php:467 msgid "Community pages for visitors" msgstr "Community pages for visitors" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:467 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Which community pages should be available for visitors. Local users always see both pages." -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:468 msgid "Posts per user on community page" msgstr "Posts per user on community page" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:468 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "\"Global Community\")" msgstr "The maximum number of posts per user on the community page. (Not valid for \"Global Community\")" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:470 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:470 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:471 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:472 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:472 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:474 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "diaspora* support can't be enabled because Friendica was installed into a sub directory." -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:475 msgid "Enable Diaspora support" msgstr "Enable diaspora* support" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:475 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:476 msgid "Verify SSL" msgstr "Verify SSL" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:476 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 "If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites." -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:477 msgid "Proxy user" msgstr "Proxy user" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:477 +msgid "User name for the proxy server." +msgstr "" + +#: src/Module/Admin/Site.php:478 msgid "Proxy URL" msgstr "Proxy URL" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:478 +msgid "" +"If you want to use a proxy server that Friendica should use to connect to " +"the network, put the URL of the proxy here." +msgstr "" + +#: src/Module/Admin/Site.php:479 msgid "Network timeout" msgstr "Network timeout" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:479 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Value is in seconds. Set to 0 for unlimited (not recommended)." -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:480 msgid "Maximum Load Average" msgstr "Maximum load average" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:480 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "Maximum system load before delivery and poll processes are deferred - default %d." -#: src/Module/Admin/Site.php:578 -msgid "Maximum Load Average (Frontend)" -msgstr "Maximum load average (frontend)" - -#: src/Module/Admin/Site.php:578 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Maximum system load before the frontend quits service (default 50)." - -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:481 msgid "Minimal Memory" msgstr "Minimal memory" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:481 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)." -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:484 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:484 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:485 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:486 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:487 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:587 +#: src/Module/Admin/Site.php:489 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:489 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:491 msgid "Days between requery" msgstr "Days between enquiry" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:491 msgid "Number of days after which a server is requeried for his contacts." msgstr "Number of days after which a server is rechecked for contacts." -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:492 msgid "Discover contacts from other servers" msgstr "Discover contacts from other servers" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:492 msgid "" "Periodically query other servers for contacts. The system queries Friendica," " Mastodon and Hubzilla servers." msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:493 msgid "Search the local directory" msgstr "Search the local directory" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:493 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 "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." -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:495 msgid "Publish server information" msgstr "Publish server information" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:495 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 " @@ -6060,50 +5058,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "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." -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:497 msgid "Check upstream version" msgstr "Check upstream version" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:497 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 "Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview." -#: src/Module/Admin/Site.php:596 +#: src/Module/Admin/Site.php:498 msgid "Suppress Tags" msgstr "Suppress tags" -#: src/Module/Admin/Site.php:596 +#: src/Module/Admin/Site.php:498 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Suppress listed hashtags at the end of posts." -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:499 msgid "Clean database" msgstr "Clean database" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:499 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Remove old remote items, orphaned database records, and old content from some other helper tables." -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:500 msgid "Lifespan of remote items" msgstr "Lifespan of remote items" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:500 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 "If 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 behavior." -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:501 msgid "Lifespan of unclaimed items" msgstr "Lifespan of unclaimed items" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:501 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -6111,144 +5109,144 @@ msgid "" "items if set to 0." msgstr "If 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." -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:502 msgid "Lifespan of raw conversation data" msgstr "Lifespan of raw conversation data" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:502 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 "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." -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:503 msgid "Maximum numbers of comments per post" msgstr "Maximum number of comments per post" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:503 msgid "How much comments should be shown for each post? Default value is 100." msgstr "How many comments should be shown for each post? (Default 100)" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:504 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:504 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:505 msgid "Temp path" msgstr "Temp path" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:505 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Enter a different temp path if your system restricts the webserver's access to the system temp path." -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:506 msgid "Only search in tags" msgstr "Only search in tags" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:506 msgid "On large systems the text search can slow down the system extremely." msgstr "On large systems, the text search can slow down the system significantly." -#: src/Module/Admin/Site.php:606 -msgid "New base url" -msgstr "New base URL" +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "" -#: src/Module/Admin/Site.php:606 +#: src/Module/Admin/Site.php:507 msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." -msgstr "Change base URL for this server. Sends a relocate message to all Friendica and diaspora* contacts, for all users." +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "" -#: src/Module/Admin/Site.php:608 +#: src/Module/Admin/Site.php:509 msgid "Maximum number of parallel workers" msgstr "Maximum number of parallel workers" -#: src/Module/Admin/Site.php:608 +#: src/Module/Admin/Site.php:509 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d." -#: src/Module/Admin/Site.php:609 +#: src/Module/Admin/Site.php:510 msgid "Enable fastlane" msgstr "Enable fast-lane" -#: src/Module/Admin/Site.php:609 +#: src/Module/Admin/Site.php:510 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." -msgstr "The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority." +msgstr "When enabled, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority." -#: src/Module/Admin/Site.php:611 +#: src/Module/Admin/Site.php:512 msgid "Direct relay transfer" msgstr "Direct relay transfer" -#: src/Module/Admin/Site.php:611 +#: src/Module/Admin/Site.php:512 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Enables direct transfer to other servers without using a relay server." -#: src/Module/Admin/Site.php:612 +#: src/Module/Admin/Site.php:513 msgid "Relay scope" msgstr "Relay scope" -#: src/Module/Admin/Site.php:612 +#: src/Module/Admin/Site.php:513 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 "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." -#: src/Module/Admin/Site.php:612 src/Module/Contact.php:473 -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Disabled" msgstr "Disabled" -#: src/Module/Admin/Site.php:612 +#: src/Module/Admin/Site.php:513 msgid "all" msgstr "all" -#: src/Module/Admin/Site.php:612 +#: src/Module/Admin/Site.php:513 msgid "tags" msgstr "tags" -#: src/Module/Admin/Site.php:613 +#: src/Module/Admin/Site.php:514 msgid "Server tags" msgstr "Server tags" -#: src/Module/Admin/Site.php:613 +#: src/Module/Admin/Site.php:514 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Comma separated list of tags for the \"tags\" subscription." -#: src/Module/Admin/Site.php:614 +#: src/Module/Admin/Site.php:515 msgid "Deny Server tags" msgstr "Deny server tags" -#: src/Module/Admin/Site.php:614 +#: src/Module/Admin/Site.php:515 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:615 +#: src/Module/Admin/Site.php:516 msgid "Allow user tags" msgstr "Allow user tags" -#: src/Module/Admin/Site.php:615 +#: src/Module/Admin/Site.php:516 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "If enabled, the tags from the saved searches will used for the \"tags\" subscription in addition to the \"relay_server_tags\"." -#: src/Module/Admin/Site.php:618 +#: src/Module/Admin/Site.php:519 msgid "Start Relocation" msgstr "Start relocation" @@ -6262,48 +5260,54 @@ msgstr "" msgid "Storage backend %s error: %s" msgstr "" -#: src/Module/Admin/Storage.php:85 src/Module/Admin/Storage.php:88 +#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 msgid "Invalid storage backend setting value." msgstr "Invalid storage backend setting." -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:139 msgid "Current Storage Backend" msgstr "" -#: src/Module/Admin/Storage.php:141 +#: src/Module/Admin/Storage.php:140 msgid "Storage Configuration" msgstr "" -#: src/Module/Admin/Storage.php:142 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 msgid "Storage" msgstr "" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:143 msgid "Save & Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:144 msgid "Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:145 msgid "Save & Reload" msgstr "" -#: src/Module/Admin/Storage.php:147 +#: src/Module/Admin/Storage.php:146 msgid "This backend doesn't have custom settings" msgstr "" +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "" + #: src/Module/Admin/Storage.php:150 msgid "Database (legacy)" msgstr "Database (legacy)" -#: src/Module/Admin/Summary.php:54 +#: src/Module/Admin/Summary.php:55 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:58 +#: src/Module/Admin/Summary.php:59 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -6314,7 +5318,7 @@ msgid "" " an automatic conversion.
    " msgstr "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.
    " -#: src/Module/Admin/Summary.php:63 +#: src/Module/Admin/Summary.php:64 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -6325,7 +5329,7 @@ msgid "" " installation for an automatic conversion.
    " msgstr "" -#: src/Module/Admin/Summary.php:73 +#: src/Module/Admin/Summary.php:74 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -6333,39 +5337,46 @@ msgid "" " to %d. See here for more information.
    " msgstr "" -#: src/Module/Admin/Summary.php:83 +#: src/Module/Admin/Summary.php:85 #, 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 "A new Friendica version is available now. Your current version is %1$s, upstream version is %2$s" -#: src/Module/Admin/Summary.php:92 +#: src/Module/Admin/Summary.php:94 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 "The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and check for errors that may appear." -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:98 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 "The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that may appear in the console and logfile output." -#: src/Module/Admin/Summary.php:101 +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "" + +#: src/Module/Admin/Summary.php:107 msgid "The worker was never executed. Please check your database structure!" msgstr "The worker process has never been executed. Please check your database structure!" -#: src/Module/Admin/Summary.php:103 +#: src/Module/Admin/Summary.php:109 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "The last worker process started at %s UTC. This is more than one hour ago. Please adjust your crontab settings." -#: src/Module/Admin/Summary.php:108 +#: src/Module/Admin/Summary.php:114 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6374,7 +5385,7 @@ msgid "" "help with the transition." msgstr "Friendica's configuration is now 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..htconfig.php. See the Config help page for help with the transition." -#: src/Module/Admin/Summary.php:112 +#: src/Module/Admin/Summary.php:118 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6383,7 +5394,7 @@ msgid "" "page for help with the transition." msgstr "Friendica's configuration is now 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." -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:124 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -6391,83 +5402,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%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." -#: src/Module/Admin/Summary.php:136 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "The logfile '%s' is not usable. No logging is possible (error: '%s')" - -#: src/Module/Admin/Summary.php:150 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "The debug logfile '%s' is not usable. No logging is possible (error: '%s')" - -#: src/Module/Admin/Summary.php:166 +#: src/Module/Admin/Summary.php:148 #, 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 "The system.basepath was updated from '%s' to '%s'. Please remove the system.basepath from your db to avoid differences." -#: src/Module/Admin/Summary.php:174 +#: src/Module/Admin/Summary.php:156 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "The current system.basepath '%s' is wrong and the config file '%s' isn't used." -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:164 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "The current system.basepath '%s' is not equal to the config file '%s'. Please fix your configuration." -#: src/Module/Admin/Summary.php:189 -msgid "Normal Account" -msgstr "Standard account" - -#: src/Module/Admin/Summary.php:190 -msgid "Automatic Follower Account" -msgstr "Automatic follower account" - -#: src/Module/Admin/Summary.php:191 -msgid "Public Forum Account" -msgstr "Public forum account" - -#: src/Module/Admin/Summary.php:192 -msgid "Automatic Friend Account" -msgstr "Automatic friend account" - -#: src/Module/Admin/Summary.php:193 -msgid "Blog Account" -msgstr "Blog account" - -#: src/Module/Admin/Summary.php:194 -msgid "Private Forum Account" -msgstr "Private forum account" - -#: src/Module/Admin/Summary.php:214 +#: src/Module/Admin/Summary.php:175 msgid "Message queues" msgstr "Message queues" -#: src/Module/Admin/Summary.php:220 +#: src/Module/Admin/Summary.php:181 msgid "Server Settings" msgstr "Server Settings" -#: src/Module/Admin/Summary.php:236 -msgid "Registered users" -msgstr "Signed up users" - -#: src/Module/Admin/Summary.php:238 -msgid "Pending registrations" -msgstr "Pending registrations" - -#: src/Module/Admin/Summary.php:239 +#: src/Module/Admin/Summary.php:199 msgid "Version" msgstr "Version" -#: src/Module/Admin/Summary.php:243 +#: src/Module/Admin/Summary.php:203 msgid "Active addons" msgstr "Active addons" @@ -6491,11 +5459,11 @@ msgid "Screenshot" msgstr "Screenshot" #: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:94 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 msgid "Themes" msgstr "Theme selection" -#: src/Module/Admin/Themes/Embed.php:65 +#: src/Module/Admin/Themes/Embed.php:80 msgid "Unknown theme." msgstr "Unknown theme." @@ -6507,245 +5475,69 @@ msgstr "" msgid "Reload active themes" msgstr "Reload active themes" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:118 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "No themes found on the system. They should be placed in %1$s" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:119 msgid "[Experimental]" msgstr "[Experimental]" -#: src/Module/Admin/Themes/Index.php:121 +#: src/Module/Admin/Themes/Index.php:120 msgid "[Unsupported]" msgstr "[Unsupported]" -#: src/Module/Admin/Tos.php:60 +#: src/Module/Admin/Tos.php:79 msgid "Display Terms of Service" msgstr "Display Terms of Service" -#: src/Module/Admin/Tos.php:60 +#: src/Module/Admin/Tos.php:79 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 "Enable the Terms of Service page. If this is enabled, a link to the terms will be added to the registration form and to the general information page." -#: src/Module/Admin/Tos.php:61 +#: src/Module/Admin/Tos.php:80 msgid "Display Privacy Statement" msgstr "Display Privacy Statement" -#: src/Module/Admin/Tos.php:61 +#: src/Module/Admin/Tos.php:80 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." +"according e.g. to EU-GDPR." msgstr "" -#: src/Module/Admin/Tos.php:62 +#: src/Module/Admin/Tos.php:81 msgid "Privacy Statement Preview" msgstr "Privacy Statement Preview" -#: src/Module/Admin/Tos.php:64 +#: src/Module/Admin/Tos.php:83 msgid "The Terms of Service" msgstr "Terms of Service" -#: src/Module/Admin/Tos.php:64 +#: src/Module/Admin/Tos.php:83 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] or less." -#: 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 user blocked" -msgstr[1] "%s users blocked" - -#: 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 "You can't remove yourself" - -#: 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 user deleted" -msgstr[1] "%s users deleted" - -#: 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 "User \"%s\" deleted" - -#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103 -#, php-format -msgid "User \"%s\" blocked" -msgstr "User \"%s\" blocked" - -#: 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 "Registration date" - -#: 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 "Last login" - -#: 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" +#: src/Module/Admin/Tos.php:84 +msgid "The rules" msgstr "" -#: src/Module/Admin/Users/Active.php:137 -msgid "Active Accounts" +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." msgstr "" -#: 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 "User blocked" - -#: 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 "Site admin" - -#: 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 "Account expired" - -#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161 -msgid "Create a new user" -msgstr "" - -#: 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 "Selected users will be deleted!\\n\\nEverything these users have posted on this site will be permanently deleted!\\n\\nAre you sure?" - -#: 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 "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?" - -#: src/Module/Admin/Users/Blocked.php:46 src/Module/Admin/Users/Index.php:52 +#: src/Module/Api/ApiResponse.php:293 #, php-format -msgid "%s user unblocked" -msgid_plural "%s users unblocked" -msgstr[0] "%s user unblocked" -msgstr[1] "%s users unblocked" - -#: src/Module/Admin/Users/Blocked.php:96 src/Module/Admin/Users/Index.php:109 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "User \"%s\" unblocked" - -#: src/Module/Admin/Users/Blocked.php:138 -msgid "Blocked Users" +msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Admin/Users/Create.php:62 -msgid "New User" -msgstr "New user" - -#: src/Module/Admin/Users/Create.php:63 -msgid "Add User" -msgstr "Add user" - -#: src/Module/Admin/Users/Create.php:71 -msgid "Name of the new user." -msgstr "Name of the new user." - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname" -msgstr "Nickname" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname of the new user." -msgstr "Nickname of the new user." - -#: src/Module/Admin/Users/Create.php:73 -msgid "Email address of the new user." -msgstr "Email address of the new user." - -#: src/Module/Admin/Users/Deleted.php:86 -msgid "Users awaiting permanent deletion" -msgstr "" - -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:162 -msgid "Permanent deletion" -msgstr "Permanent deletion" - -#: src/Module/Admin/Users/Index.php:150 src/Module/Admin/Users/Index.php:160 -#: src/Module/BaseAdmin.php:92 -msgid "Users" -msgstr "Users" - -#: src/Module/Admin/Users/Index.php:152 -msgid "User waiting for permanent deletion" -msgstr "User awaiting permanent deletion" - -#: src/Module/Admin/Users/Pending.php:48 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users/Pending.php:55 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users/Pending.php:81 -msgid "Account approved." -msgstr "Account approved." - -#: src/Module/Admin/Users/Pending.php:87 -msgid "Registration revoked" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:102 -msgid "User registrations awaiting review" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:104 -msgid "Request date" -msgstr "Request date" - -#: src/Module/Admin/Users/Pending.php:105 -msgid "No registrations." -msgstr "No registrations." - -#: src/Module/Admin/Users/Pending.php:106 -msgid "Note from the user" -msgstr "Note from the user" - -#: src/Module/Admin/Users/Pending.php:108 -msgid "Deny" -msgstr "Deny" - -#: src/Module/Api/Mastodon/Apps.php:58 +#: src/Module/Api/Mastodon/Apps.php:73 msgid "Missing parameters" msgstr "" @@ -6753,16 +5545,11 @@ msgstr "" msgid "Only starting posts can be bookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Mute.php:50 +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 msgid "Only starting posts can be muted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Pin.php:50 -#: src/Module/Api/Mastodon/Statuses/Unpin.php:50 -msgid "Only starting posts can be pinned" -msgstr "" - -#: src/Module/Api/Mastodon/Statuses/Reblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 #, php-format msgid "Posts from %s can't be shared" msgstr "" @@ -6771,29 +5558,24 @@ msgstr "" msgid "Only starting posts can be unbookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:50 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 msgid "Only starting posts can be unmuted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 #, php-format msgid "Posts from %s can't be unshared" msgstr "" -#: src/Module/Api/Twitter/ContactEndpoint.php:63 src/Module/Contact.php:343 -#: src/Module/Contact.php:358 +#: src/Module/Api/Twitter/ContactEndpoint.php:66 msgid "Contact not found" msgstr "Contact not found" -#: src/Module/Api/Twitter/ContactEndpoint.php:133 -msgid "Profile not found" -msgstr "" - -#: src/Module/Apps.php:47 +#: src/Module/Apps.php:62 msgid "No installed applications." msgstr "No installed applications." -#: src/Module/Apps.php:52 +#: src/Module/Apps.php:67 msgid "Applications" msgstr "Applications" @@ -6802,6 +5584,7 @@ msgid "Item was not found." msgstr "Item was not found." #: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 msgid "Please login to continue." msgstr "Please login to continue." @@ -6815,149 +5598,218 @@ msgid "" " as the main account." msgstr "" -#: src/Module/BaseAdmin.php:86 +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 msgid "Overview" msgstr "Overview" -#: src/Module/BaseAdmin.php:89 +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 msgid "Configuration" msgstr "Configuration" -#: src/Module/BaseAdmin.php:95 src/Module/BaseSettings.php:65 +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 msgid "Additional features" msgstr "Additional features" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:97 msgid "Database" msgstr "Database" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:98 msgid "DB updates" msgstr "DB updates" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:99 msgid "Inspect Deferred Workers" msgstr "Inspect deferred workers" -#: src/Module/BaseAdmin.php:101 +#: src/Module/BaseAdmin.php:100 msgid "Inspect worker Queue" msgstr "Inspect worker queue" -#: src/Module/BaseAdmin.php:103 -msgid "Tools" -msgstr "Tools" - -#: src/Module/BaseAdmin.php:104 -msgid "Contact Blocklist" -msgstr "Contact block-list" - -#: src/Module/BaseAdmin.php:105 -msgid "Server Blocklist" -msgstr "Server block-list" - -#: src/Module/BaseAdmin.php:112 +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 msgid "Diagnostics" msgstr "Diagnostics" -#: src/Module/BaseAdmin.php:113 +#: src/Module/BaseAdmin.php:107 msgid "PHP Info" msgstr "PHP info" -#: src/Module/BaseAdmin.php:114 +#: src/Module/BaseAdmin.php:108 msgid "probe address" msgstr "Probe address" -#: src/Module/BaseAdmin.php:115 +#: src/Module/BaseAdmin.php:109 msgid "check webfinger" msgstr "check WebFinger" -#: src/Module/BaseAdmin.php:117 +#: src/Module/BaseAdmin.php:110 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:118 src/Module/Debug/ActivityPubConversion.php:138 +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 msgid "ActivityPub Conversion" msgstr "" -#: src/Module/BaseAdmin.php:127 +#: src/Module/BaseAdmin.php:120 msgid "Addon Features" msgstr "Addon features" -#: src/Module/BaseAdmin.php:128 +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 msgid "User registrations waiting for confirmation" msgstr "User registrations awaiting confirmation" -#: src/Module/BaseApi.php:120 -#, php-format -msgid "API endpoint %s %s is not implemented" -msgstr "" - -#: src/Module/BaseApi.php:121 -msgid "" -"The API endpoint is currently not implemented but might be in the future." -msgstr "" - -#: src/Module/BaseApi.php:293 src/Module/BaseApi.php:309 -#: src/Module/BaseApi.php:325 +#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 +#: src/Module/BaseApi.php:487 msgid "Too Many Requests" msgstr "" -#: src/Module/BaseProfile.php:51 src/Module/Contact.php:849 +#: src/Module/BaseApi.php:456 +#, 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] "Daily posting limit of %d post reached. The post was rejected." +msgstr[1] "Daily posting limit of %d posts reached. This post was rejected." + +#: src/Module/BaseApi.php:472 +#, 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] "Weekly posting limit of %d post reached. The post was rejected." +msgstr[1] "Weekly posting limit of %d posts reached. This post was rejected." + +#: src/Module/BaseApi.php:488 +#, php-format +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Monthly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "" + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "" + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Users" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "Tools" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "Contact block-list" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "Server block-list" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "Delete item" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "Item source" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 msgid "Profile Details" msgstr "Profile Details" -#: src/Module/BaseProfile.php:109 +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "" + +#: src/Module/BaseProfile.php:111 msgid "Only You Can See This" msgstr "Only you can see this." -#: src/Module/BaseProfile.php:114 src/Module/Profile/Schedule.php:82 +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 msgid "Scheduled Posts" msgstr "" -#: src/Module/BaseProfile.php:117 +#: src/Module/BaseProfile.php:119 msgid "Posts that are scheduled for publishing" msgstr "" -#: src/Module/BaseProfile.php:136 src/Module/BaseProfile.php:139 +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 msgid "Tips for New Members" msgstr "Tips for New Members" -#: src/Module/BaseSearch.php:69 +#: src/Module/BaseSearch.php:71 #, php-format msgid "People Search - %s" msgstr "People search - %s" -#: src/Module/BaseSearch.php:79 +#: src/Module/BaseSearch.php:75 #, php-format -msgid "Forum Search - %s" -msgstr "Forum search - %s" +msgid "Group Search - %s" +msgstr "" -#: src/Module/BaseSettings.php:43 +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "No matches" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseSettings.php:78 msgid "Account" msgstr "Account" -#: src/Module/BaseSettings.php:50 src/Module/Security/TwoFactor/Verify.php:95 -#: src/Module/Settings/TwoFactor/Index.php:110 +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 msgid "Two-factor authentication" msgstr "Two-factor authentication" -#: src/Module/BaseSettings.php:73 +#: src/Module/BaseSettings.php:118 msgid "Display" msgstr "Display" -#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:171 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "Social networks" + +#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 msgid "Manage Accounts" msgstr "" -#: src/Module/BaseSettings.php:101 +#: src/Module/BaseSettings.php:153 msgid "Connected apps" msgstr "Connected apps" -#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:76 +#: src/Module/BaseSettings.php:160 +msgid "Remote servers" +msgstr "" + +#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 msgid "Export personal data" msgstr "Export personal data" -#: src/Module/BaseSettings.php:115 +#: src/Module/BaseSettings.php:174 msgid "Remove account" msgstr "Remove account" @@ -6969,626 +5821,965 @@ msgstr "This page is missing a URL parameter." msgid "The post was created" msgstr "The post was created" -#: src/Module/Contact.php:93 +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "" + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "Failed to remove event" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "Event cannot end before it has started." + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "Event title and starting time are required." + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "Starting date and title are required." + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "Event starts:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/Channels.php:130 src/Module/Settings/Channels.php:146 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Required" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "Finish date/time is not known or not relevant" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "Event finishes:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Share this event" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "Basic" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "This calendar format is not supported" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "No exportable data found" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "calendar" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Events" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "View" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Create new event" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:291 +msgid "list" +msgstr "List" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "" + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "" + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "" + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "" + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "Contact not found." + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "Invalid contact." + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "Contact is deleted." + +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "" + +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "" + +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "" + +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "" + +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "Bad request." + +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "" + +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "Filter" + +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "" + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "" + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "Members" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "Click on a contact to add or remove it." + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "" + +#: src/Module/Contact.php:97 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "%d contact edited." msgstr[1] "%d contacts edited." -#: src/Module/Contact.php:118 -msgid "Could not access contact record." -msgstr "Could not access contact record." - -#: src/Module/Contact.php:154 -msgid "Failed to update contact record." -msgstr "Failed to update contact record." - -#: src/Module/Contact.php:375 -msgid "You can't block yourself" -msgstr "" - -#: src/Module/Contact.php:381 -msgid "Contact has been blocked" -msgstr "Contact has been blocked" - -#: src/Module/Contact.php:381 -msgid "Contact has been unblocked" -msgstr "Contact has been unblocked" - -#: src/Module/Contact.php:389 -msgid "You can't ignore yourself" -msgstr "" - -#: src/Module/Contact.php:395 -msgid "Contact has been ignored" -msgstr "Contact has been ignored" - -#: src/Module/Contact.php:395 -msgid "Contact has been unignored" -msgstr "Contact has been unignored" - -#: src/Module/Contact.php:415 -#, php-format -msgid "You are mutual friends with %s" -msgstr "You are mutual friends with %s" - -#: src/Module/Contact.php:419 -#, php-format -msgid "You are sharing with %s" -msgstr "You are sharing with %s" - -#: src/Module/Contact.php:423 -#, php-format -msgid "%s is sharing with you" -msgstr "%s is sharing with you" - -#: src/Module/Contact.php:447 -msgid "Private communications are not available for this contact." -msgstr "Private communications are not available for this contact." - -#: src/Module/Contact.php:449 -msgid "Never" -msgstr "Never" - -#: src/Module/Contact.php:452 -msgid "(Update was not successful)" -msgstr "(Update was not successful)" - -#: src/Module/Contact.php:452 -msgid "(Update was successful)" -msgstr "(Update was successful)" - -#: src/Module/Contact.php:454 src/Module/Contact.php:1035 -msgid "Suggest friends" -msgstr "Suggest friends" - -#: src/Module/Contact.php:458 -#, php-format -msgid "Network type: %s" -msgstr "Network type: %s" - -#: src/Module/Contact.php:463 -msgid "Communications lost with this contact!" -msgstr "Communications lost with this contact!" - -#: src/Module/Contact.php:469 -msgid "Fetch further information for feeds" -msgstr "Fetch further information for feeds" - -#: src/Module/Contact.php:471 -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 "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." - -#: src/Module/Contact.php:474 -msgid "Fetch information" -msgstr "Fetch information" - -#: src/Module/Contact.php:475 -msgid "Fetch keywords" -msgstr "Fetch keywords" - -#: src/Module/Contact.php:476 -msgid "Fetch information and keywords" -msgstr "Fetch information and keywords" - -#: src/Module/Contact.php:488 src/Module/Contact.php:492 -#: src/Module/Contact.php:495 src/Module/Contact.php:499 -msgid "No mirroring" -msgstr "No mirroring" - -#: src/Module/Contact.php:489 -msgid "Mirror as forwarded posting" -msgstr "Mirror as forwarded posting" - -#: src/Module/Contact.php:490 src/Module/Contact.php:496 -#: src/Module/Contact.php:500 -msgid "Mirror as my own posting" -msgstr "Mirror as my own posting" - -#: src/Module/Contact.php:493 src/Module/Contact.php:497 -msgid "Native reshare" -msgstr "" - -#: src/Module/Contact.php:512 -msgid "Contact Information / Notes" -msgstr "Personal note" - -#: src/Module/Contact.php:513 -msgid "Contact Settings" -msgstr "Notification and privacy " - -#: src/Module/Contact.php:521 -msgid "Contact" -msgstr "Contact" - -#: src/Module/Contact.php:525 -msgid "Their personal note" -msgstr "Their personal note" - -#: src/Module/Contact.php:527 -msgid "Edit contact notes" -msgstr "Edit contact notes" - -#: src/Module/Contact.php:530 src/Module/Contact.php:1001 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visit %s's profile [%s]" - -#: src/Module/Contact.php:531 -msgid "Block/Unblock contact" -msgstr "Block/Unblock contact" - -#: src/Module/Contact.php:532 -msgid "Ignore contact" -msgstr "Ignore contact" - -#: src/Module/Contact.php:533 -msgid "View conversations" -msgstr "View conversations" - -#: src/Module/Contact.php:538 -msgid "Last update:" -msgstr "Last update:" - -#: src/Module/Contact.php:540 -msgid "Update public posts" -msgstr "Update public posts" - -#: src/Module/Contact.php:542 src/Module/Contact.php:1045 -msgid "Update now" -msgstr "Update now" - -#: src/Module/Contact.php:545 src/Module/Contact.php:788 -#: src/Module/Contact.php:1072 -msgid "Unignore" -msgstr "Unignore" - -#: src/Module/Contact.php:549 -msgid "Currently blocked" -msgstr "Currently blocked" - -#: src/Module/Contact.php:550 -msgid "Currently ignored" -msgstr "Currently ignored" - -#: src/Module/Contact.php:551 -msgid "Currently archived" -msgstr "Currently archived" - -#: src/Module/Contact.php:552 -msgid "Awaiting connection acknowledge" -msgstr "Awaiting connection acknowledgement" - -#: src/Module/Contact.php:553 src/Module/Notifications/Introductions.php:170 -msgid "Hide this contact from others" -msgstr "Hide this contact from others" - -#: src/Module/Contact.php:553 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Replies/Likes to your public posts may still be visible" - -#: src/Module/Contact.php:554 -msgid "Notification for new posts" -msgstr "Notification for new posts" - -#: src/Module/Contact.php:554 -msgid "Send a notification of every new post of this contact" -msgstr "Send notification for every new post from this contact" - -#: src/Module/Contact.php:556 -msgid "Keyword Deny List" -msgstr "" - -#: src/Module/Contact.php:556 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Comma-separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected" - -#: src/Module/Contact.php:574 src/Module/Settings/TwoFactor/Index.php:132 -msgid "Actions" -msgstr "Actions" - -#: src/Module/Contact.php:581 -msgid "Mirror postings from this contact" -msgstr "Mirror postings from this contact:" - -#: src/Module/Contact.php:583 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "This will cause Friendica to repost new entries from this contact." - -#: src/Module/Contact.php:698 +#: src/Module/Contact.php:348 msgid "Show all contacts" msgstr "Show all contacts" -#: src/Module/Contact.php:706 +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "Pending" + +#: src/Module/Contact.php:356 msgid "Only show pending contacts" msgstr "Only show pending contacts." -#: src/Module/Contact.php:714 +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Blocked" + +#: src/Module/Contact.php:364 msgid "Only show blocked contacts" msgstr "Only show blocked contacts" -#: src/Module/Contact.php:719 src/Module/Contact.php:766 -#: src/Object/Post.php:309 +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:369 msgid "Ignored" msgstr "Ignored" -#: src/Module/Contact.php:722 +#: src/Module/Contact.php:372 msgid "Only show ignored contacts" msgstr "Only show ignored contacts" -#: src/Module/Contact.php:727 src/Module/Contact.php:767 +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 msgid "Archived" msgstr "Archived" -#: src/Module/Contact.php:730 +#: src/Module/Contact.php:388 msgid "Only show archived contacts" msgstr "Only show archived contacts" -#: src/Module/Contact.php:735 src/Module/Contact.php:765 +#: src/Module/Contact.php:393 src/Module/Contact.php:438 msgid "Hidden" msgstr "Hidden" -#: src/Module/Contact.php:738 +#: src/Module/Contact.php:396 msgid "Only show hidden contacts" msgstr "Only show hidden contacts" -#: src/Module/Contact.php:746 -msgid "Organize your contact groups" -msgstr "Organize your contact groups" +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "" -#: src/Module/Contact.php:778 +#: src/Module/Contact.php:459 msgid "Search your contacts" msgstr "Search your contacts" -#: src/Module/Contact.php:779 src/Module/Search/Index.php:194 +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 #, php-format msgid "Results for: %s" msgstr "Results for: %s" -#: src/Module/Contact.php:786 +#: src/Module/Contact.php:467 msgid "Update" msgstr "Update" -#: src/Module/Contact.php:790 +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Unblock" + +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 +msgid "Unignore" +msgstr "Unignore" + +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "" + +#: src/Module/Contact.php:472 msgid "Batch Actions" msgstr "Batch actions" -#: src/Module/Contact.php:825 +#: src/Module/Contact.php:515 msgid "Conversations started by this contact" msgstr "Conversations started by this contact" -#: src/Module/Contact.php:830 +#: src/Module/Contact.php:520 msgid "Posts and Comments" msgstr "Posts and Comments" -#: src/Module/Contact.php:841 +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "" + +#: src/Module/Contact.php:531 msgid "Posts containing media objects" msgstr "" -#: src/Module/Contact.php:856 +#: src/Module/Contact.php:539 msgid "View all known contacts" msgstr "" -#: src/Module/Contact.php:866 +#: src/Module/Contact.php:550 msgid "Advanced Contact Settings" msgstr "Advanced contact settings" -#: src/Module/Contact.php:960 +#: src/Module/Contact.php:586 msgid "Mutual Friendship" msgstr "Mutual friendship" -#: src/Module/Contact.php:964 +#: src/Module/Contact.php:590 msgid "is a fan of yours" msgstr "is a fan of yours" -#: src/Module/Contact.php:968 +#: src/Module/Contact.php:594 msgid "you are a fan of" msgstr "I follow them" -#: src/Module/Contact.php:986 +#: src/Module/Contact.php:612 msgid "Pending outgoing contact request" msgstr "Pending outgoing contact request." -#: src/Module/Contact.php:988 +#: src/Module/Contact.php:614 msgid "Pending incoming contact request" msgstr "Pending incoming contact request." -#: src/Module/Contact.php:1055 -msgid "Refetch contact data" -msgstr "Re-fetch contact data." +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visit %s's profile [%s]" -#: src/Module/Contact.php:1066 -msgid "Toggle Blocked status" -msgstr "Toggle blocked status" - -#: src/Module/Contact.php:1074 -msgid "Toggle Ignored status" -msgstr "Toggle ignored status" - -#: src/Module/Contact.php:1081 src/Module/Contact/Revoke.php:96 -msgid "Revoke Follow" -msgstr "" - -#: src/Module/Contact.php:1083 -msgid "Revoke the follow from this contact" -msgstr "" - -#: src/Module/Contact/Advanced.php:93 +#: src/Module/Contact/Advanced.php:99 msgid "Contact update failed." msgstr "Contact update failed." -#: src/Module/Contact/Advanced.php:110 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "Warning: These are highly advanced settings. If you enter incorrect information, your communications with this contact might be disrupted." - -#: src/Module/Contact/Advanced.php:111 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Please use your browser 'Back' button now if you are uncertain what to do on this page." - -#: src/Module/Contact/Advanced.php:131 +#: src/Module/Contact/Advanced.php:130 msgid "Return to contact editor" msgstr "Return to contact editor" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Name:" + +#: src/Module/Contact/Advanced.php:135 msgid "Account Nickname" msgstr "Account nickname:" -#: src/Module/Contact/Advanced.php:137 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tag name - overrides name/nickname:" - -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:136 msgid "Account URL" msgstr "Account URL:" -#: src/Module/Contact/Advanced.php:139 -msgid "Account URL Alias" -msgstr "Account URL alias" - -#: src/Module/Contact/Advanced.php:140 -msgid "Friend Request URL" -msgstr "Friend request URL:" - -#: src/Module/Contact/Advanced.php:141 -msgid "Friend Confirm URL" -msgstr "Friend confirm URL:" - -#: src/Module/Contact/Advanced.php:142 -msgid "Notification Endpoint URL" -msgstr "Notification endpoint URL" - -#: src/Module/Contact/Advanced.php:143 +#: src/Module/Contact/Advanced.php:137 msgid "Poll/Feed URL" msgstr "Poll/Feed URL:" -#: src/Module/Contact/Advanced.php:144 +#: src/Module/Contact/Advanced.php:138 msgid "New photo from this URL" msgstr "New photo from this URL:" -#: src/Module/Contact/Contacts.php:31 src/Module/Conversation/Network.php:168 -msgid "Invalid contact." -msgstr "Invalid contact." - -#: src/Module/Contact/Contacts.php:54 +#: src/Module/Contact/Contacts.php:89 msgid "No known contacts." msgstr "" -#: src/Module/Contact/Contacts.php:68 src/Module/Profile/Common.php:98 +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 msgid "No common contacts." msgstr "" -#: src/Module/Contact/Contacts.php:80 src/Module/Profile/Contacts.php:96 +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" msgstr[0] "Follower (%s)" msgstr[1] "Followers (%s)" -#: src/Module/Contact/Contacts.php:84 src/Module/Profile/Contacts.php:99 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" msgstr[0] "Following (%s)" msgstr[1] "Following (%s)" -#: src/Module/Contact/Contacts.php:88 src/Module/Profile/Contacts.php:102 +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" msgstr[0] "Mutual friend (%s)" msgstr[1] "Mutual friends (%s)" -#: src/Module/Contact/Contacts.php:90 src/Module/Profile/Contacts.php:104 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "" -#: src/Module/Contact/Contacts.php:96 src/Module/Profile/Common.php:86 +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:98 src/Module/Profile/Common.php:88 +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "" -#: src/Module/Contact/Contacts.php:104 src/Module/Profile/Contacts.php:110 +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "Contact (%s)" msgstr[1] "Contacts (%s)" -#: src/Module/Contact/Poke.php:116 -msgid "Error while sending poke, please retry." +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:166 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Access denied." + +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Submit request" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "You already added this contact." + +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "The network type couldn't be detected. Contact can't be added." + +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "diaspora* support isn't enabled. Contact can't be added." + +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "OStatus support is disabled. Contact can't be added." + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Please answer the following:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "My identity address:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "Profile URL:" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Tags:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" msgstr "" -#: src/Module/Contact/Poke.php:129 src/Module/Search/Acl.php:55 -msgid "You must be logged in to use this module." -msgstr "You must be logged in to use this module." +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Add a personal note:" -#: src/Module/Contact/Poke.php:152 -msgid "Poke/Prod" -msgstr "Poke/Prod" +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" +msgstr "" -#: src/Module/Contact/Poke.php:153 -msgid "poke, prod or do other things to somebody" -msgstr "Poke, prod or do other things to somebody" +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "Contact could not be added." -#: src/Module/Contact/Poke.php:155 -msgid "Choose what you wish to do to recipient" -msgstr "Choose what you wish to do:" +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "Invalid request." -#: src/Module/Contact/Poke.php:156 -msgid "Make this post private" -msgstr "Make this post private" +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "" -#: src/Module/Contact/Revoke.php:48 +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "Profile Match" + +#: src/Module/Contact/Profile.php:140 +msgid "Failed to update contact record." +msgstr "Failed to update contact record." + +#: src/Module/Contact/Profile.php:190 +msgid "Contact has been unblocked" +msgstr "Contact has been unblocked" + +#: src/Module/Contact/Profile.php:194 +msgid "Contact has been blocked" +msgstr "Contact has been blocked" + +#: src/Module/Contact/Profile.php:206 +msgid "Contact has been unignored" +msgstr "Contact has been unignored" + +#: src/Module/Contact/Profile.php:210 +msgid "Contact has been ignored" +msgstr "Contact has been ignored" + +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:254 +#, php-format +msgid "You are mutual friends with %s" +msgstr "You are mutual friends with %s" + +#: src/Module/Contact/Profile.php:255 +#, php-format +msgid "You are sharing with %s" +msgstr "You are sharing with %s" + +#: src/Module/Contact/Profile.php:256 +#, php-format +msgid "%s is sharing with you" +msgstr "%s is sharing with you" + +#: src/Module/Contact/Profile.php:272 +msgid "Private communications are not available for this contact." +msgstr "Private communications are not available for this contact." + +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "" + +#: src/Module/Contact/Profile.php:285 +msgid "Never" +msgstr "Never" + +#: src/Module/Contact/Profile.php:288 +msgid "(Update was not successful)" +msgstr "(Update was not successful)" + +#: src/Module/Contact/Profile.php:288 +msgid "(Update was successful)" +msgstr "(Update was successful)" + +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 +msgid "Suggest friends" +msgstr "Suggest friends" + +#: src/Module/Contact/Profile.php:294 +#, php-format +msgid "Network type: %s" +msgstr "Network type: %s" + +#: src/Module/Contact/Profile.php:299 +msgid "Communications lost with this contact!" +msgstr "Communications lost with this contact!" + +#: src/Module/Contact/Profile.php:305 +msgid "Fetch further information for feeds" +msgstr "Fetch further information for feeds" + +#: src/Module/Contact/Profile.php:307 +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 "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." + +#: src/Module/Contact/Profile.php:310 +msgid "Fetch information" +msgstr "Fetch information" + +#: src/Module/Contact/Profile.php:311 +msgid "Fetch keywords" +msgstr "Fetch keywords" + +#: src/Module/Contact/Profile.php:312 +msgid "Fetch information and keywords" +msgstr "Fetch information and keywords" + +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 +msgid "No mirroring" +msgstr "No mirroring" + +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 +msgid "Mirror as my own posting" +msgstr "Mirror as my own posting" + +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 +msgid "Native reshare" +msgstr "" + +#: src/Module/Contact/Profile.php:353 +msgid "Contact Information / Notes" +msgstr "Personal note" + +#: src/Module/Contact/Profile.php:354 +msgid "Contact Settings" +msgstr "Notification and privacy " + +#: src/Module/Contact/Profile.php:362 +msgid "Contact" +msgstr "Contact" + +#: src/Module/Contact/Profile.php:366 +msgid "Their personal note" +msgstr "Their personal note" + +#: src/Module/Contact/Profile.php:368 +msgid "Edit contact notes" +msgstr "Edit contact notes" + +#: src/Module/Contact/Profile.php:372 +msgid "Block/Unblock contact" +msgstr "Block/Unblock contact" + +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 +msgid "Ignore contact" +msgstr "Ignore contact" + +#: src/Module/Contact/Profile.php:374 +msgid "View conversations" +msgstr "View conversations" + +#: src/Module/Contact/Profile.php:379 +msgid "Last update:" +msgstr "Last update:" + +#: src/Module/Contact/Profile.php:381 +msgid "Update public posts" +msgstr "Update public posts" + +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 +msgid "Update now" +msgstr "Update now" + +#: src/Module/Contact/Profile.php:385 +msgid "Awaiting connection acknowledge" +msgstr "Awaiting connection acknowledgement" + +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "Currently blocked" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "Currently ignored" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "Currently archived" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "" + +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 +msgid "Hide this contact from others" +msgstr "Hide this contact from others" + +#: src/Module/Contact/Profile.php:394 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Replies/Likes to your public posts may still be visible" + +#: src/Module/Contact/Profile.php:395 +msgid "Notification for new posts" +msgstr "Notification for new posts" + +#: src/Module/Contact/Profile.php:395 +msgid "Send a notification of every new post of this contact" +msgstr "Send notification for every new post from this contact" + +#: src/Module/Contact/Profile.php:397 +msgid "Keyword Deny List" +msgstr "" + +#: src/Module/Contact/Profile.php:397 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Comma-separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected" + +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:139 +msgid "Actions" +msgstr "Actions" + +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "Status" + +#: src/Module/Contact/Profile.php:423 +msgid "Mirror postings from this contact" +msgstr "Mirror postings from this contact:" + +#: src/Module/Contact/Profile.php:425 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "This will cause Friendica to repost new entries from this contact." + +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" +msgstr "" + +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "" + +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "" + +#: src/Module/Contact/Profile.php:502 +msgid "Refetch contact data" +msgstr "Re-fetch contact data" + +#: src/Module/Contact/Profile.php:513 +msgid "Toggle Blocked status" +msgstr "Toggle blocked status" + +#: src/Module/Contact/Profile.php:521 +msgid "Toggle Ignored status" +msgstr "Toggle ignored status" + +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" +msgstr "" + +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 +msgid "Revoke Follow" +msgstr "" + +#: src/Module/Contact/Profile.php:538 +msgid "Revoke the follow from this contact" +msgstr "" + +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "Bad request." + +#: src/Module/Contact/Revoke.php:63 msgid "Unknown contact." msgstr "" -#: src/Module/Contact/Revoke.php:58 src/Module/Group.php:109 -msgid "Contact is deleted." -msgstr "Contact is deleted." - -#: src/Module/Contact/Revoke.php:62 +#: src/Module/Contact/Revoke.php:77 msgid "Contact is being deleted." msgstr "" -#: src/Module/Contact/Revoke.php:76 +#: src/Module/Contact/Revoke.php:91 msgid "Follow was successfully revoked." msgstr "" -#: src/Module/Contact/Revoke.php:78 -msgid "" -"Follow was successfully revoked, however the remote contact won't be aware " -"of this revokation." -msgstr "" - -#: src/Module/Contact/Revoke.php:80 -msgid "" -"Unable to revoke follow, please try again later or contact the " -"administrator." -msgstr "" - -#: src/Module/Contact/Revoke.php:97 +#: src/Module/Contact/Revoke.php:107 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "" -#: src/Module/Contact/Revoke.php:98 -#: src/Module/Notifications/Introductions.php:122 -#: src/Module/OAuth/Acknowledge.php:47 src/Module/Register.php:117 +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "Yes" msgstr "Yes" -#: src/Module/Conversation/Community.php:68 -msgid "Local Community" -msgstr "Local community" +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No suggestions available. If this is a new site, please try again in 24 hours." -#: src/Module/Conversation/Community.php:71 -msgid "Posts from local users on this server" -msgstr "Posts from local users on this server" +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "You aren't following this contact." -#: src/Module/Conversation/Community.php:79 -msgid "Global Community" -msgstr "Global community" +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "Unfollowing is currently not supported by your network." -#: src/Module/Conversation/Community.php:82 -msgid "Posts from users of the whole federated network" -msgstr "Posts from users of the whole federated network" +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "Disconnect/Unfollow" -#: src/Module/Conversation/Community.php:115 -msgid "Own Contacts" +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" msgstr "" -#: src/Module/Conversation/Community.php:119 -msgid "Include" +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" msgstr "" -#: src/Module/Conversation/Community.php:120 -msgid "Hide" -msgstr "" - -#: src/Module/Conversation/Community.php:137 src/Module/Search/Index.php:139 -#: src/Module/Search/Index.php:181 +#: src/Module/Conversation/Channel.php:139 +#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 +#: src/Module/Search/Index.php:194 msgid "No results." msgstr "No results." -#: src/Module/Conversation/Community.php:162 +#: src/Module/Conversation/Channel.php:177 +msgid "Channel not available." +msgstr "" + +#: src/Module/Conversation/Community.php:92 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users." -#: src/Module/Conversation/Community.php:200 +#: src/Module/Conversation/Community.php:180 msgid "Community option not available." msgstr "Community option not available." -#: src/Module/Conversation/Community.php:216 +#: src/Module/Conversation/Community.php:196 msgid "Not available." msgstr "Not available." -#: src/Module/Conversation/Network.php:154 -msgid "No such group" -msgstr "No such group" +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "" -#: src/Module/Conversation/Network.php:158 +#: src/Module/Conversation/Network.php:222 #, php-format -msgid "Group: %s" -msgstr "Group: %s" - -#: src/Module/Conversation/Network.php:234 -msgid "Latest Activity" -msgstr "Latest activity" - -#: src/Module/Conversation/Network.php:237 -msgid "Sort by latest activity" -msgstr "Sort by latest activity" - -#: src/Module/Conversation/Network.php:242 -msgid "Latest Posts" -msgstr "Latest posts" - -#: src/Module/Conversation/Network.php:245 -msgid "Sort by post received date" -msgstr "Sort by post received date" +msgid "Circle: %s" +msgstr "" #: src/Module/Conversation/Network.php:250 -#: src/Module/Settings/Profile/Index.php:228 -msgid "Personal" -msgstr "Personal" +#, php-format +msgid "Error %d (%s) while fetching the timeline." +msgstr "" -#: src/Module/Conversation/Network.php:253 -msgid "Posts that mention or involve you" -msgstr "Posts mentioning or involving me" +#: src/Module/Conversation/Network.php:329 +msgid "Network feed not available." +msgstr "" -#: src/Module/Conversation/Network.php:258 src/Object/Post.php:321 -msgid "Starred" -msgstr "Starred" +#: src/Module/Conversation/Timeline.php:162 +msgid "Own Contacts" +msgstr "" -#: src/Module/Conversation/Network.php:261 -msgid "Favourite Posts" -msgstr "My favorite posts" +#: src/Module/Conversation/Timeline.php:166 +msgid "Include" +msgstr "" + +#: src/Module/Conversation/Timeline.php:167 +msgid "Hide" +msgstr "" #: src/Module/Credits.php:44 msgid "Credits" @@ -7601,23 +6792,31 @@ msgid "" "code or the translation of Friendica. Thank you all!" msgstr "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!" -#: src/Module/Debug/ActivityPubConversion.php:58 +#: src/Module/Debug/ActivityPubConversion.php:53 msgid "Formatted" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:70 +#: src/Module/Debug/ActivityPubConversion.php:65 msgid "Activity" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:118 +#: src/Module/Debug/ActivityPubConversion.php:117 msgid "Object data" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:125 +#: src/Module/Debug/ActivityPubConversion.php:124 msgid "Result Item" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:139 +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Error" +msgstr[1] "Errors" + +#: src/Module/Debug/ActivityPubConversion.php:138 msgid "Source activity" msgstr "" @@ -7797,12 +6996,12 @@ msgstr "HTML" 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:142 +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:177 msgid "You must be logged in to use this module" msgstr "You must be logged in to use this module" -#: src/Module/Debug/Feed.php:63 +#: src/Module/Debug/Feed.php:77 msgid "Source URL" msgstr "Source URL" @@ -7839,382 +7038,284 @@ msgstr "Please select your time zone:" msgid "Only logged in users are permitted to perform a probing." msgstr "Only logged in users are permitted to use the Probe feature." -#: src/Module/Debug/Probe.php:54 +#: src/Module/Debug/Probe.php:52 msgid "Probe Diagnostic" msgstr "" -#: src/Module/Debug/Probe.php:55 +#: src/Module/Debug/Probe.php:53 msgid "Output" msgstr "" -#: src/Module/Debug/Probe.php:58 +#: src/Module/Debug/Probe.php:56 msgid "Lookup address" msgstr "Lookup address" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:50 msgid "Webfinger Diagnostic" msgstr "" -#: src/Module/Debug/WebFinger.php:54 +#: src/Module/Debug/WebFinger.php:52 msgid "Lookup address:" msgstr "" -#: src/Module/Delegation.php:142 -msgid "Switch between your accounts" -msgstr "" - -#: src/Module/Delegation.php:143 -msgid "Manage your accounts" -msgstr "" - -#: src/Module/Delegation.php:144 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Accounts that I manage or own." - -#: src/Module/Delegation.php:145 -msgid "Select an identity to manage: " -msgstr "Select identity:" - -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:74 msgid "No entries (some entries may be hidden)." msgstr "No entries (entries may be hidden)." -#: src/Module/Directory.php:93 +#: src/Module/Directory.php:90 msgid "Find on this site" msgstr "Find on this site" -#: src/Module/Directory.php:95 +#: src/Module/Directory.php:92 msgid "Results for:" msgstr "Results for:" -#: src/Module/Directory.php:97 +#: src/Module/Directory.php:94 msgid "Site Directory" msgstr "Site directory" -#: src/Module/Filer/RemoveTag.php:68 -msgid "Item was not removed" -msgstr "" - -#: src/Module/Filer/RemoveTag.php:71 +#: src/Module/Filer/RemoveTag.php:105 msgid "Item was not deleted" msgstr "" -#: src/Module/Filer/SaveTag.php:68 +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "" + +#: src/Module/Filer/SaveTag.php:73 msgid "- select -" msgstr "- select -" -#: src/Module/FriendSuggest.php:65 +#: src/Module/FriendSuggest.php:82 msgid "Suggested contact not found." msgstr "Suggested contact not found." -#: src/Module/FriendSuggest.php:83 +#: src/Module/FriendSuggest.php:100 msgid "Friend suggestion sent." msgstr "Friend suggestion sent" -#: src/Module/FriendSuggest.php:120 +#: src/Module/FriendSuggest.php:137 msgid "Suggest Friends" msgstr "Suggest friends" -#: src/Module/FriendSuggest.php:123 +#: src/Module/FriendSuggest.php:140 #, php-format msgid "Suggest a friend for %s" msgstr "Suggest a friend for %s" -#: src/Module/Friendica.php:62 +#: src/Module/Friendica.php:82 msgid "Installed addons/apps:" msgstr "Installed addons/apps:" -#: src/Module/Friendica.php:67 +#: src/Module/Friendica.php:87 msgid "No installed addons/apps" msgstr "No installed addons/apps" -#: src/Module/Friendica.php:72 +#: src/Module/Friendica.php:92 #, php-format msgid "Read about the Terms of Service of this node." msgstr "Read about the Terms of Service of this node." -#: src/Module/Friendica.php:79 +#: src/Module/Friendica.php:99 msgid "On this server the following remote servers are blocked." msgstr "On this server the following remote servers are blocked." -#: src/Module/Friendica.php:97 +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +#: src/Module/Settings/Channels.php:164 +msgid "Reason for the block" +msgstr "Reason for the block" + +#: src/Module/Friendica.php:104 +msgid "Download this list in CSV format" +msgstr "" + +#: src/Module/Friendica.php:118 #, 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 "This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s." -#: src/Module/Friendica.php:102 +#: src/Module/Friendica.php:123 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "Please visit Friendi.ca to learn more about the Friendica project." -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:124 msgid "Bug reports and issues: please visit" msgstr "Bug reports and issues: please visit" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:124 msgid "the bugtracker at github" msgstr "the bugtracker at github" -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:125 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -#: src/Module/Group.php:61 -msgid "Could not create group." -msgstr "Could not create group." - -#: src/Module/Group.php:72 src/Module/Group.php:214 src/Module/Group.php:238 -msgid "Group not found." -msgstr "Group not found." - -#: src/Module/Group.php:78 -msgid "Group name was not changed." -msgstr "" - -#: src/Module/Group.php:100 -msgid "Unknown group." -msgstr "Unknown group." - -#: src/Module/Group.php:115 -msgid "Unable to add the contact to the group." -msgstr "Unable to add contact to group." - -#: src/Module/Group.php:118 -msgid "Contact successfully added to group." -msgstr "Contact successfully added to group." - -#: src/Module/Group.php:122 -msgid "Unable to remove the contact from the group." -msgstr "Unable to remove contact from group." - -#: src/Module/Group.php:125 -msgid "Contact successfully removed from group." -msgstr "Contact successfully removed from group." - -#: src/Module/Group.php:128 -msgid "Unknown group command." -msgstr "Unknown group command." - -#: src/Module/Group.php:131 -msgid "Bad request." -msgstr "Bad request." - -#: src/Module/Group.php:170 -msgid "Save Group" -msgstr "Save group" - -#: src/Module/Group.php:171 -msgid "Filter" -msgstr "Filter" - -#: src/Module/Group.php:177 -msgid "Create a group of contacts/friends." -msgstr "Create a group of contacts/friends." - -#: src/Module/Group.php:219 -msgid "Unable to remove group." -msgstr "Unable to remove group." - -#: src/Module/Group.php:270 -msgid "Delete Group" -msgstr "Delete group" - -#: src/Module/Group.php:280 -msgid "Edit Group Name" -msgstr "Edit group name" - -#: src/Module/Group.php:290 -msgid "Members" -msgstr "Members" - -#: src/Module/Group.php:293 -msgid "Group is empty" -msgstr "Group is empty" - -#: src/Module/Group.php:306 -msgid "Remove contact from group" -msgstr "Remove contact from group" - -#: src/Module/Group.php:327 -msgid "Click on a contact to add or remove." -msgstr "Click on a contact to add or remove it." - -#: src/Module/Group.php:341 -msgid "Add contact to group" -msgstr "Add contact to group" - -#: src/Module/HCard.php:46 +#: src/Module/HCard.php:45 msgid "No profile" msgstr "No profile" -#: src/Module/HTTPException/MethodNotAllowed.php:32 +#: src/Module/HTTPException/MethodNotAllowed.php:31 msgid "Method Not Allowed." msgstr "Method not allowed." -#: src/Module/Help.php:62 +#: src/Module/Help.php:60 msgid "Help:" msgstr "Help:" -#: src/Module/Home.php:54 +#: src/Module/Home.php:63 #, php-format msgid "Welcome to %s" msgstr "Welcome to %s" -#: src/Module/Install.php:188 +#: src/Module/Install.php:189 msgid "Friendica Communications Server - Setup" msgstr "Friendica Communications Server - Setup" -#: src/Module/Install.php:199 +#: src/Module/Install.php:200 msgid "System check" msgstr "System check" -#: src/Module/Install.php:201 src/Module/Install.php:258 -#: src/Module/Install.php:341 +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 msgid "Requirement not satisfied" msgstr "" -#: src/Module/Install.php:202 +#: src/Module/Install.php:203 msgid "Optional requirement not satisfied" msgstr "" -#: src/Module/Install.php:203 +#: src/Module/Install.php:204 msgid "OK" msgstr "" #: src/Module/Install.php:208 +msgid "Next" +msgstr "Next" + +#: src/Module/Install.php:209 msgid "Check again" msgstr "Check again" -#: src/Module/Install.php:223 +#: src/Module/Install.php:222 msgid "Base settings" msgstr "Base settings" -#: src/Module/Install.php:230 -msgid "Host name" -msgstr "Host name" - -#: src/Module/Install.php:232 -msgid "" -"Overwrite this field in case the determinated hostname isn't right, " -"otherweise leave it as is." -msgstr "Overwrite this field in case the hostname is incorrect, otherwise leave it as is." - -#: src/Module/Install.php:235 +#: src/Module/Install.php:224 msgid "Base path to installation" msgstr "Base path to installation" -#: src/Module/Install.php:237 +#: src/Module/Install.php:226 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 "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." -#: src/Module/Install.php:240 -msgid "Sub path of the URL" -msgstr "URL Sub-path " +#: src/Module/Install.php:229 +msgid "The Friendica system URL" +msgstr "" + +#: src/Module/Install.php:231 +msgid "" +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." +msgstr "" #: 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 "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." - -#: src/Module/Install.php:253 msgid "Database connection" msgstr "Database connection" -#: src/Module/Install.php:254 +#: src/Module/Install.php:243 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "In order to install Friendica we need to know how to connect to your database." -#: src/Module/Install.php:255 +#: src/Module/Install.php:244 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Please contact your hosting provider or site administrator if you have questions about these settings." -#: src/Module/Install.php:256 +#: src/Module/Install.php:245 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "The database you specify below should already exist. If it does not, please create it before continuing." -#: src/Module/Install.php:265 +#: src/Module/Install.php:252 msgid "Database Server Name" msgstr "Database server name" -#: src/Module/Install.php:270 +#: src/Module/Install.php:257 msgid "Database Login Name" msgstr "Database login name" -#: src/Module/Install.php:276 +#: src/Module/Install.php:263 msgid "Database Login Password" msgstr "Database login password" -#: src/Module/Install.php:278 +#: src/Module/Install.php:265 msgid "For security reasons the password must not be empty" msgstr "For security reasons the password must not be empty" -#: src/Module/Install.php:281 +#: src/Module/Install.php:268 msgid "Database Name" msgstr "Database name" -#: src/Module/Install.php:285 src/Module/Install.php:315 +#: src/Module/Install.php:272 src/Module/Install.php:300 msgid "Please select a default timezone for your website" msgstr "Please select a default time zone for your website" -#: src/Module/Install.php:300 +#: src/Module/Install.php:287 msgid "Site settings" msgstr "Site settings" -#: src/Module/Install.php:310 +#: src/Module/Install.php:295 msgid "Site administrator email address" msgstr "Site administrator email address" -#: src/Module/Install.php:312 +#: src/Module/Install.php:297 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Your account email address must match this in order to use the web admin panel." -#: src/Module/Install.php:319 +#: src/Module/Install.php:304 msgid "System Language:" msgstr "System language:" -#: src/Module/Install.php:321 +#: src/Module/Install.php:306 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "Set the default language for your Friendica installation interface and email communication." -#: src/Module/Install.php:333 +#: src/Module/Install.php:318 msgid "Your Friendica site database has been installed." msgstr "Your Friendica site database has been installed." -#: src/Module/Install.php:343 +#: src/Module/Install.php:328 msgid "Installation finished" msgstr "Installation finished" -#: src/Module/Install.php:363 +#: src/Module/Install.php:348 msgid "

    What next

    " msgstr "

    What next

    " -#: src/Module/Install.php:364 +#: src/Module/Install.php:349 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the worker." -#: src/Module/Install.php:367 +#: src/Module/Install.php:352 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -8222,40 +7323,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "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." -#: src/Module/Invite.php:56 +#: src/Module/Invite.php:57 msgid "Total invitation limit exceeded." msgstr "Total invitation limit exceeded" -#: src/Module/Invite.php:81 +#: src/Module/Invite.php:82 #, php-format msgid "%s : Not a valid email address." msgstr "%s : Not a valid email address" -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:108 msgid "Please join us on Friendica" msgstr "Please join us on Friendica." -#: src/Module/Invite.php:116 +#: src/Module/Invite.php:117 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Invitation limit is exceeded. Please contact your site administrator." -#: src/Module/Invite.php:120 +#: src/Module/Invite.php:121 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Message delivery failed" -#: src/Module/Invite.php:124 +#: src/Module/Invite.php:125 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d message sent." msgstr[1] "%d messages sent." -#: src/Module/Invite.php:142 +#: src/Module/Invite.php:143 msgid "You have no more invitations available" msgstr "You have no more invitations available." -#: src/Module/Invite.php:149 +#: src/Module/Invite.php:150 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -8263,14 +7364,14 @@ msgid "" " other social networks." msgstr "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." -#: src/Module/Invite.php:151 +#: src/Module/Invite.php:152 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "To accept this invitation, please sign up at %s or any other public Friendica website." -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:153 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -8279,88 +7380,98 @@ msgid "" "sites you can join." msgstr "Friendica sites are all inter-connected to create a large 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." -#: src/Module/Invite.php:156 +#: src/Module/Invite.php:157 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Our apologies. This system is not currently configured to connect with other public sites or invite members." -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:160 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "Friendica sites are all inter-connected to create a huge privacy-enhanced social web that is owned and controlled by its members. Each site can also connect with many traditional social networks." -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:159 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "To accept this invitation, please visit and register at %s." -#: src/Module/Invite.php:166 +#: src/Module/Invite.php:167 msgid "Send invitations" msgstr "Send invitations" -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:168 msgid "Enter email addresses, one per line:" msgstr "Enter email addresses, one per line:" -#: src/Module/Invite.php:171 +#: src/Module/Invite.php:172 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web." -#: src/Module/Invite.php:173 +#: src/Module/Invite.php:174 msgid "You will need to supply this invitation code: $invite_code" msgstr "You will need to supply this invitation code: $invite_code" -#: src/Module/Invite.php:173 +#: src/Module/Invite.php:174 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Once you have signed up, please connect with me via my profile page at:" -#: src/Module/Invite.php:175 +#: src/Module/Invite.php:176 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca" -#: src/Module/Item/Compose.php:50 +#: src/Module/Item/Compose.php:85 msgid "Please enter a post body." msgstr "Please enter a post body." -#: src/Module/Item/Compose.php:63 +#: src/Module/Item/Compose.php:98 msgid "This feature is only available with the frio theme." msgstr "This feature is only available with the Frio theme." -#: src/Module/Item/Compose.php:90 +#: src/Module/Item/Compose.php:122 msgid "Compose new personal note" msgstr "Compose new personal note" -#: src/Module/Item/Compose.php:99 +#: src/Module/Item/Compose.php:131 msgid "Compose new post" msgstr "Compose new post" -#: src/Module/Item/Compose.php:141 +#: src/Module/Item/Compose.php:187 msgid "Visibility" msgstr "Visibility" -#: src/Module/Item/Compose.php:162 +#: src/Module/Item/Compose.php:203 msgid "Clear the location" msgstr "Clear location" -#: src/Module/Item/Compose.php:163 +#: src/Module/Item/Compose.php:204 msgid "Location services are unavailable on your device" msgstr "Location services are unavailable on your device" -#: src/Module/Item/Compose.php:164 +#: src/Module/Item/Compose.php:205 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "Location services are disabled. Please check the website's permissions on your device" -#: src/Module/Item/Follow.php:52 +#: src/Module/Item/Compose.php:211 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "" + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "The feed for this item is unavailable." + +#: src/Module/Item/Follow.php:51 msgid "Unable to follow this item." msgstr "" @@ -8375,405 +7486,1439 @@ msgid "" "condition should be temporary, please come back in a few minutes." msgstr "" -#: src/Module/Manifest.php:42 +#: src/Module/Manifest.php:40 msgid "A Decentralized Social Network" msgstr "" -#: src/Module/Notifications/Introductions.php:77 +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Files" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:129 +msgid "Upload" +msgstr "Upload" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Sorry, maybe your upload is bigger than the PHP configuration allows" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "Or did you try to upload an empty file?" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "File exceeds size limit of %s" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "File upload failed." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:69 +msgid "Unable to process image." +msgstr "Unable to process image." + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:96 +msgid "Image upload failed." +msgstr "Image upload failed." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "Standard" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "Soapbox" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "Love-all" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "Personal Page" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "Organization Page" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "News Page" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "Relay" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s contact unblocked" +msgstr[1] "%s contacts unblocked" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "Remote contact block-list" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "This page allows you to prevent any message from a remote contact to reach your node." + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "Block remote contact" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "select all" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "select none" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "No remote contact is blocked from this node." + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "Blocked remote contacts" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "Block new remote contact" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "Photo" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "Reason" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "%s total blocked contact" +msgstr[1] "%s blocked contacts" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "URL of the remote contact to block." + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "Block reason" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "Server Domain Pattern" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "Block reason" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +#: src/Module/Settings/Channels.php:163 +msgid "Blocked server domain pattern" +msgstr "Blocked server domain pattern" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "Delete server domain pattern" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "Check to delete this entry from the block-list" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "Server domain pattern block-list" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +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 "The list of blocked server domain patterns will be made publicly available on the /friendica page so that your users and people investigating communication problems can find the reason easily." + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "Save changes to the block-list" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "Current entries in the block-list" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "Item marked for deletion." + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "Delete" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted." + +#: src/Module/Moderation/Item/Delete.php:65 +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 "You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 123456." + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "GUID of item to be deleted." + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "Type" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Item not found" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "Item Guid" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "" + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "" + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Standard account" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "Automatic follower account" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Automatic friend account" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Blog account" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Signed up users" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Pending registrations" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "%s user blocked" +msgstr[1] "%s users blocked" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "You can't remove yourself" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s user deleted" +msgstr[1] "%s users deleted" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "User \"%s\" deleted" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "User \"%s\" blocked" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Registration date" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "Last login" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "User blocked" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "Site admin" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "Account expired" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Selected users will be deleted!\\n\\nEverything these users have posted on this site will be permanently deleted!\\n\\nAre you sure?" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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 "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "%s user unblocked" +msgstr[1] "%s users unblocked" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "User \"%s\" unblocked" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "New user" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "Add user" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "Name of the new user." + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "Nickname" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "Nickname of the new user." + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "Email address of the new user." + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "Permanent deletion" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "User awaiting permanent deletion" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Account approved." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Request date" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "No registrations." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "Note from the user" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Deny" + +#: src/Module/Notifications/Introductions.php:99 msgid "Show Ignored Requests" msgstr "Show ignored requests." -#: src/Module/Notifications/Introductions.php:77 +#: src/Module/Notifications/Introductions.php:99 msgid "Hide Ignored Requests" msgstr "Hide ignored requests" -#: src/Module/Notifications/Introductions.php:93 -#: src/Module/Notifications/Introductions.php:156 +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 msgid "Notification type:" msgstr "Notification type:" -#: src/Module/Notifications/Introductions.php:96 +#: src/Module/Notifications/Introductions.php:118 msgid "Suggested by:" msgstr "Suggested by:" -#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:143 msgid "Claims to be known to you: " msgstr "Says they know me:" -#: src/Module/Notifications/Introductions.php:122 -#: src/Module/OAuth/Acknowledge.php:48 src/Module/Register.php:118 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "No" msgstr "No" -#: src/Module/Notifications/Introductions.php:130 +#: src/Module/Notifications/Introductions.php:152 msgid "Shall your connection be bidirectional or not?" msgstr "Shall your connection be in both directions or not?" -#: src/Module/Notifications/Introductions.php:131 +#: src/Module/Notifications/Introductions.php:153 #, 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 "Accepting %s as a friend allows %s to subscribe to your posts. You will also receive updates from them in your news feed." -#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:154 #, 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 "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed." -#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:156 msgid "Friend" msgstr "Friend" -#: src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:157 msgid "Subscriber" msgstr "Subscriber" -#: src/Module/Notifications/Introductions.php:194 +#: src/Module/Notifications/Introductions.php:216 msgid "No introductions." msgstr "No introductions." -#: src/Module/Notifications/Introductions.php:195 -#: src/Module/Notifications/Notifications.php:121 +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 #, php-format msgid "No more %s notifications." msgstr "No more %s notifications." -#: src/Module/Notifications/Notification.php:107 +#: src/Module/Notifications/Notification.php:135 msgid "You must be logged in to show this page." msgstr "" -#: src/Module/Notifications/Notifications.php:52 +#: src/Module/Notifications/Notifications.php:66 msgid "Network Notifications" msgstr "Network notifications" -#: src/Module/Notifications/Notifications.php:58 +#: src/Module/Notifications/Notifications.php:72 msgid "System Notifications" msgstr "System notifications" -#: src/Module/Notifications/Notifications.php:64 +#: src/Module/Notifications/Notifications.php:78 msgid "Personal Notifications" msgstr "Personal notifications" -#: src/Module/Notifications/Notifications.php:70 +#: src/Module/Notifications/Notifications.php:84 msgid "Home Notifications" msgstr "Home notifications" -#: src/Module/Notifications/Notifications.php:126 +#: src/Module/Notifications/Notifications.php:140 msgid "Show unread" msgstr "Show unread" -#: src/Module/OAuth/Acknowledge.php:44 +#: src/Module/Notifications/Ping.php:246 +msgid "{0} requested registration" +msgstr "{0} requested registration" + +#: src/Module/Notifications/Ping.php:255 +#, php-format +msgid "{0} and %d others requested registration" +msgstr "" + +#: src/Module/OAuth/Acknowledge.php:51 msgid "Authorize application connection" msgstr "Authorize application connection" -#: src/Module/OAuth/Acknowledge.php:46 +#: src/Module/OAuth/Acknowledge.php:53 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "Do you want to authorize this application to access your posts and contacts and create new posts for you?" -#: src/Module/OAuth/Authorize.php:55 +#: src/Module/OAuth/Authorize.php:54 msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:60 src/Module/OAuth/Token.php:65 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 msgid "Incomplete request data" msgstr "" -#: src/Module/OAuth/Authorize.php:107 +#: 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:89 +#: src/Module/OAuth/Token.php:83 +msgid "Invalid data or unknown client" +msgstr "" + +#: src/Module/OAuth/Token.php:108 msgid "Unsupported or missing grant type" msgstr "" -#: src/Module/PermissionTooltip.php:25 +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "Resubscribing to OStatus contacts" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "Keep this window open until done." + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "No contact provided." + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "Couldn't fetch information for contact." + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "Couldn't fetch friends for contact." + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Done" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "success" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "failed" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "Ignored" + +#: src/Module/PermissionTooltip.php:49 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "" -#: src/Module/PermissionTooltip.php:42 +#: src/Module/PermissionTooltip.php:79 msgid "Model not found" msgstr "" -#: src/Module/PermissionTooltip.php:64 +#: src/Module/PermissionTooltip.php:94 +msgid "Unlisted" +msgstr "" + +#: src/Module/PermissionTooltip.php:112 msgid "Remote privacy information not available." msgstr "Remote privacy information not available." -#: src/Module/PermissionTooltip.php:73 +#: src/Module/PermissionTooltip.php:121 msgid "Visible to:" msgstr "Visible to:" -#: src/Module/Photo.php:123 +#: src/Module/PermissionTooltip.php:204 +#, php-format +msgid "Collection (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:208 +#, php-format +msgid "Followers (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:227 +#, php-format +msgid "%d more" +msgstr "" + +#: src/Module/PermissionTooltip.php:231 +#, php-format +msgid "To: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:234 +#, php-format +msgid "CC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:237 +#, php-format +msgid "BCC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "" + +#: src/Module/Photo.php:130 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:136 +#: src/Module/Photo.php:155 #, php-format msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:169 +#: src/Module/Photo.php:192 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:171 +#: src/Module/Photo.php:194 #, php-format msgid "Invalid photo with id %s." msgstr "Invalid photo with id %s." -#: src/Module/Profile/Contacts.php:120 +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "" + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Edit post" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "web link" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Insert video link" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "video link" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Insert audio link" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "audio link" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Remove Item tag" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Select a tag to remove: " + +#: src/Module/Post/Tag/Remove.php:108 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Remove" + +#: src/Module/Profile/Contacts.php:159 msgid "No contacts." msgstr "No contacts." -#: src/Module/Profile/Profile.php:82 +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "%s's timeline" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "%s's posts" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "%s's comments" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:60 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Image exceeds size limit of %s" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "Image upload didn't complete. Please try again." + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "Image file is missing" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "Server can't accept new file uploads at this time. Please contact your administrator." + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "Image file is empty." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "View album" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 msgid "Profile not found." msgstr "Profile not found." -#: src/Module/Profile/Profile.php:135 +#: src/Module/Profile/Profile.php:158 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "" -#: src/Module/Profile/Profile.php:149 +#: src/Module/Profile/Profile.php:167 +msgid "Full Name:" +msgstr "Full name:" + +#: src/Module/Profile/Profile.php:172 msgid "Member since:" msgstr "Member since:" -#: src/Module/Profile/Profile.php:155 +#: src/Module/Profile/Profile.php:178 msgid "j F, Y" msgstr "j F, Y" -#: src/Module/Profile/Profile.php:156 +#: src/Module/Profile/Profile.php:179 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 msgid "Birthday:" msgstr "Birthday:" -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:246 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 msgid "Age: " msgstr "Age: " -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:246 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "" msgstr[1] "" -#: src/Module/Profile/Profile.php:234 -msgid "Forums:" -msgstr "Forums:" +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "Description:" -#: src/Module/Profile/Profile.php:246 +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "" + +#: src/Module/Profile/Profile.php:273 msgid "View profile as:" msgstr "" -#: src/Module/Profile/Profile.php:263 +#: src/Module/Profile/Profile.php:290 msgid "View as" msgstr "" -#: src/Module/Profile/Profile.php:326 src/Module/Profile/Profile.php:329 -#: src/Module/Profile/Status.php:65 src/Module/Profile/Status.php:68 -#: src/Protocol/Feed.php:953 src/Protocol/OStatus.php:1242 -#, php-format -msgid "%s's timeline" -msgstr "%s's timeline" - -#: src/Module/Profile/Profile.php:327 src/Module/Profile/Status.php:66 -#: src/Protocol/Feed.php:957 src/Protocol/OStatus.php:1246 -#, php-format -msgid "%s's posts" -msgstr "%s's posts" - -#: src/Module/Profile/Profile.php:328 src/Module/Profile/Status.php:67 -#: src/Protocol/Feed.php:960 src/Protocol/OStatus.php:1249 -#, php-format -msgid "%s's comments" -msgstr "%s's comments" - -#: src/Module/Profile/Schedule.php:84 -msgid "Scheduled" -msgstr "" - -#: src/Module/Profile/Schedule.php:85 -msgid "Content" -msgstr "" - -#: src/Module/Profile/Schedule.php:86 -msgid "Remove post" -msgstr "" - -#: src/Module/Register.php:71 -msgid "Only parent users can create additional accounts." -msgstr "" - -#: src/Module/Register.php:103 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking \"Register\"." -msgstr "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"." - -#: src/Module/Register.php:104 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items." - -#: src/Module/Register.php:105 -msgid "Your OpenID (optional): " -msgstr "Your OpenID (optional): " - -#: src/Module/Register.php:114 -msgid "Include your profile in member directory?" -msgstr "Include your profile in member directory?" - -#: src/Module/Register.php:137 -msgid "Note for the admin" -msgstr "Note for the admin" - -#: src/Module/Register.php:137 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "Leave a message for the admin. Why do you want to join this node?" - -#: src/Module/Register.php:138 -msgid "Membership on this site is by invitation only." -msgstr "Membership on this site is by invitation only." - -#: src/Module/Register.php:139 -msgid "Your invitation code: " -msgstr "Your invitation code: " - -#: src/Module/Register.php:147 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "Your full name: " - -#: src/Module/Register.php:148 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "Your Email Address: (Initial information will be sent there, so this must be an existing address.)" - -#: src/Module/Register.php:149 -msgid "Please repeat your e-mail address:" -msgstr "Please repeat your email address:" - -#: src/Module/Register.php:151 -msgid "Leave empty for an auto generated password." -msgstr "Leave empty for an auto generated password." - -#: src/Module/Register.php:153 -#, 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 "Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"." - -#: src/Module/Register.php:154 -msgid "Choose a nickname: " -msgstr "Choose a nickname: " - -#: src/Module/Register.php:163 -msgid "Import your profile to this friendica instance" -msgstr "Import an existing Friendica profile to this node." - -#: src/Module/Register.php:170 -msgid "Note: This node explicitly contains adult content" -msgstr "Note: This node explicitly contains adult content" - -#: src/Module/Register.php:172 src/Module/Settings/Delegation.php:155 -msgid "Parent Password:" -msgstr "Parent Password:" - -#: src/Module/Register.php:172 src/Module/Settings/Delegation.php:155 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "Please enter the password of the parent account to authorize this request." - -#: src/Module/Register.php:201 -msgid "Password doesn't match." -msgstr "" - -#: src/Module/Register.php:207 -msgid "Please enter your password." -msgstr "" - -#: src/Module/Register.php:249 -msgid "You have entered too much information." -msgstr "You have entered too much information." - -#: src/Module/Register.php:272 -msgid "Please enter the identical mail address in the second field." -msgstr "" - -#: src/Module/Register.php:299 -msgid "The additional account was created." -msgstr "" - -#: src/Module/Register.php:324 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registration successful. Please check your email for further instructions." - -#: src/Module/Register.php:328 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
    login: %s
    " -"password: %s

    You can change your password after login." -msgstr "Failed to send email message. Here are your account details:
    login: %s
    password: %s

    You can change your password after login." - -#: src/Module/Register.php:334 -msgid "Registration successful." -msgstr "Registration successful." - -#: src/Module/Register.php:339 src/Module/Register.php:346 -msgid "Your registration can not be processed." -msgstr "Your registration cannot be processed." - -#: src/Module/Register.php:345 -msgid "You have to leave a request note for the admin." -msgstr "You have to leave a request note for the admin." - -#: src/Module/Register.php:391 -msgid "Your registration is pending approval by the site owner." -msgstr "Your registration is pending approval by the site administrator." - -#: src/Module/RemoteFollow.php:62 +#: src/Module/Profile/RemoteFollow.php:82 msgid "Profile unavailable." msgstr "Profile unavailable." -#: src/Module/RemoteFollow.php:68 +#: src/Module/Profile/RemoteFollow.php:88 msgid "Invalid locator" msgstr "Invalid locator" -#: src/Module/RemoteFollow.php:75 +#: src/Module/Profile/RemoteFollow.php:95 msgid "The provided profile link doesn't seem to be valid" msgstr "" -#: src/Module/RemoteFollow.php:80 +#: src/Module/Profile/RemoteFollow.php:100 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "Remote subscription can't be done for your network. Please subscribe directly on your system." -#: src/Module/RemoteFollow.php:110 +#: src/Module/Profile/RemoteFollow.php:128 msgid "Friend/Connection Request" msgstr "Friend/Connection request" -#: src/Module/RemoteFollow.php:111 +#: src/Module/Profile/RemoteFollow.php:129 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -8781,89 +8926,314 @@ msgid "" " or %s directly on your system." msgstr "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." -#: src/Module/RemoteFollow.php:112 +#: src/Module/Profile/RemoteFollow.php:130 #, 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 "" -#: src/Module/RemoteFollow.php:113 +#: src/Module/Profile/RemoteFollow.php:131 msgid "Your Webfinger address or profile URL:" msgstr "Your WebFinger address or profile URL:" -#: src/Module/Search/Index.php:54 +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "" + +#: src/Module/Profile/Schedule.php:83 +msgid "Scheduled" +msgstr "" + +#: src/Module/Profile/Schedule.php:84 +msgid "Content" +msgstr "" + +#: src/Module/Profile/Schedule.php:85 +msgid "Remove post" +msgstr "" + +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "" + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Unable to check your home location." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "" + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Number of daily wall messages for %s exceeded. Message failed." + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders." + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "" + +#: src/Module/Register.php:84 +msgid "Only parent users can create additional accounts." +msgstr "" + +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow." + +#: src/Module/Register.php:116 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." +msgstr "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"." + +#: src/Module/Register.php:117 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items." + +#: src/Module/Register.php:118 +msgid "Your OpenID (optional): " +msgstr "Your OpenID (optional): " + +#: src/Module/Register.php:127 +msgid "Include your profile in member directory?" +msgstr "Include your profile in member directory?" + +#: src/Module/Register.php:148 +msgid "Note for the admin" +msgstr "Note for the admin" + +#: src/Module/Register.php:148 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Leave a message for the admin. Why do you want to join this node?" + +#: src/Module/Register.php:149 +msgid "Membership on this site is by invitation only." +msgstr "Membership on this site is by invitation only." + +#: src/Module/Register.php:150 +msgid "Your invitation code: " +msgstr "Your invitation code: " + +#: src/Module/Register.php:158 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Your full name: " + +#: src/Module/Register.php:159 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "Your Email Address: (Initial information will be sent there, so this must be an existing address.)" + +#: src/Module/Register.php:160 +msgid "Please repeat your e-mail address:" +msgstr "Please repeat your email address:" + +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 +msgid "New Password:" +msgstr "New password:" + +#: src/Module/Register.php:162 +msgid "Leave empty for an auto generated password." +msgstr "Leave empty for an auto generated password." + +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 +msgid "Confirm:" +msgstr "Confirm new password:" + +#: src/Module/Register.php:164 +#, 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 "Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"." + +#: src/Module/Register.php:165 +msgid "Choose a nickname: " +msgstr "Choose a nickname: " + +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Import profile" + +#: src/Module/Register.php:174 +msgid "Import your profile to this friendica instance" +msgstr "Import an existing Friendica profile to this node." + +#: src/Module/Register.php:181 +msgid "Note: This node explicitly contains adult content" +msgstr "Note: This node explicitly contains adult content" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 +msgid "Parent Password:" +msgstr "Parent Password:" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "Please enter the password of the parent account to authorize this request." + +#: src/Module/Register.php:212 +msgid "Password doesn't match." +msgstr "" + +#: src/Module/Register.php:218 +msgid "Please enter your password." +msgstr "" + +#: src/Module/Register.php:260 +msgid "You have entered too much information." +msgstr "You have entered too much information." + +#: src/Module/Register.php:283 +msgid "Please enter the identical mail address in the second field." +msgstr "" + +#: src/Module/Register.php:310 +msgid "The additional account was created." +msgstr "" + +#: src/Module/Register.php:335 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registration successful. Please check your email for further instructions." + +#: src/Module/Register.php:342 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "Failed to send email message. Here are your account details:
    login: %s
    password: %s

    You can change your password after login." + +#: src/Module/Register.php:348 +msgid "Registration successful." +msgstr "Registration successful." + +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 +msgid "Your registration can not be processed." +msgstr "Your registration cannot be processed." + +#: src/Module/Register.php:363 +msgid "You have to leave a request note for the admin." +msgstr "You have to leave a request note for the admin." + +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "An internal error occurred." + +#: src/Module/Register.php:395 +msgid "Your registration is pending approval by the site owner." +msgstr "Your registration is pending approval by the site administrator." + +#: src/Module/Search/Acl.php:73 +msgid "You must be logged in to use this module." +msgstr "You must be logged in to use this module." + +#: src/Module/Search/Index.php:69 msgid "Only logged in users are permitted to perform a search." msgstr "Only logged in users are permitted to perform a search." -#: src/Module/Search/Index.php:76 +#: src/Module/Search/Index.php:89 msgid "Only one search per minute is permitted for not logged in users." msgstr "Only one search per minute is permitted for not-logged-in users." -#: src/Module/Search/Index.php:192 +#: src/Module/Search/Index.php:205 #, php-format msgid "Items tagged with: %s" msgstr "Items tagged with: %s" -#: src/Module/Search/Saved.php:45 +#: src/Module/Search/Saved.php:59 msgid "Search term was not saved." msgstr "" -#: src/Module/Search/Saved.php:48 +#: src/Module/Search/Saved.php:62 msgid "Search term already saved." msgstr "Search term already saved." -#: src/Module/Search/Saved.php:54 +#: src/Module/Search/Saved.php:68 msgid "Search term was not removed." msgstr "" -#: src/Module/Security/Login.php:105 +#: src/Module/Security/Login.php:123 msgid "Create a New Account" msgstr "Create a new account" -#: src/Module/Security/Login.php:130 +#: src/Module/Security/Login.php:142 msgid "Your OpenID: " msgstr "Your OpenID: " -#: src/Module/Security/Login.php:133 +#: src/Module/Security/Login.php:145 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "Please enter your username and password to add the OpenID to your existing account." -#: src/Module/Security/Login.php:135 +#: src/Module/Security/Login.php:147 msgid "Or login using OpenID: " msgstr "Or login with OpenID: " -#: src/Module/Security/Login.php:149 +#: src/Module/Security/Login.php:161 msgid "Password: " msgstr "Password: " -#: src/Module/Security/Login.php:150 +#: src/Module/Security/Login.php:162 msgid "Remember me" msgstr "Remember me" -#: src/Module/Security/Login.php:159 +#: src/Module/Security/Login.php:171 msgid "Forgot your password?" msgstr "Forgot your password?" -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:174 msgid "Website Terms of Service" msgstr "Website Terms of Service" -#: src/Module/Security/Login.php:163 +#: src/Module/Security/Login.php:175 msgid "terms of service" msgstr "Terms of service" -#: src/Module/Security/Login.php:165 +#: src/Module/Security/Login.php:177 msgid "Website Privacy Policy" msgstr "Website Privacy Policy" -#: src/Module/Security/Login.php:166 +#: src/Module/Security/Login.php:178 msgid "privacy policy" msgstr "Privacy policy" -#: src/Module/Security/Logout.php:61 +#: src/Module/Security/Logout.php:84 +#: src/Module/Security/TwoFactor/SignOut.php:78 +#: src/Module/Security/TwoFactor/SignOut.php:86 +#: src/Module/Security/TwoFactor/SignOut.php:108 +#: src/Module/Security/TwoFactor/SignOut.php:115 msgid "Logged out." msgstr "Logged out." @@ -8871,450 +9241,1414 @@ msgstr "Logged out." msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:90 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "Account not found. Please login to your existing account to add the OpenID to it." -#: src/Module/Security/OpenID.php:94 +#: src/Module/Security/OpenID.php:92 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "Account not found. Please register a new account or login to your existing account to add the OpenID." -#: src/Module/Security/TwoFactor/Recovery.php:61 +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 +msgid "Passwords do not match." +msgstr "Passwords do not match." + +#: src/Module/Security/PasswordTooLong.php:64 +msgid "Password does not need changing." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 +msgid "Password unchanged." +msgstr "Password unchanged." + +#: src/Module/Security/PasswordTooLong.php:91 +msgid "Password Too Long" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:92 +msgid "" +"Since version 2022.09, we've realized that any password longer than 72 " +"characters is truncated during hashing. To prevent any confusion about this " +"behavior, please update your password to be fewer or equal to 72 characters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:93 +msgid "Update Password" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Current Password:" +msgstr "Current password:" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Your current password to confirm the changes" +msgstr "Current password to confirm change" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces and accentuated letters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 +msgid "Password length is limited to 72 characters." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:74 #, php-format msgid "Remaining recovery codes: %d" msgstr "Remaining recovery codes: %d" -#: src/Module/Security/TwoFactor/Recovery.php:65 -#: src/Module/Security/TwoFactor/Verify.php:76 -#: src/Module/Settings/TwoFactor/Verify.php:82 +#: src/Module/Security/TwoFactor/Recovery.php:80 +#: src/Module/Security/TwoFactor/Verify.php:77 +#: src/Module/Settings/TwoFactor/Verify.php:95 msgid "Invalid code, please retry." msgstr "Invalid code, please try again." -#: src/Module/Security/TwoFactor/Recovery.php:84 +#: src/Module/Security/TwoFactor/Recovery.php:99 msgid "Two-factor recovery" msgstr "Two-factor recovery" -#: src/Module/Security/TwoFactor/Recovery.php:85 +#: src/Module/Security/TwoFactor/Recovery.php:100 msgid "" "

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

    " msgstr "

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

    " -#: src/Module/Security/TwoFactor/Recovery.php:86 -#: src/Module/Security/TwoFactor/Verify.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:101 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Don’t have your phone? Enter a two-factor recovery code" -#: src/Module/Security/TwoFactor/Recovery.php:87 +#: src/Module/Security/TwoFactor/Recovery.php:102 msgid "Please enter a recovery code" msgstr "Please enter a recovery code" -#: src/Module/Security/TwoFactor/Recovery.php:88 +#: src/Module/Security/TwoFactor/Recovery.php:103 msgid "Submit recovery code and complete login" msgstr "Submit recovery code and complete login" -#: src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Security/TwoFactor/SignOut.php:122 +msgid "Sign out of this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:123 +msgid "" +"

    If you trust this browser, you will not be asked for verification code " +"the next time you sign in.

    " +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:124 +msgid "Sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:126 +msgid "Trust and sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:96 +msgid "Couldn't save browser to Cookie." +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:141 +msgid "Trust this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:142 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:143 +msgid "Not now" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:144 +msgid "Don't trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:145 +msgid "Trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:97 msgid "" "

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

    " msgstr "

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

    " #: src/Module/Security/TwoFactor/Verify.php:100 -#: src/Module/Settings/TwoFactor/Verify.php:141 -msgid "Please enter a code from your authentication app" -msgstr "Please enter a code from your authentication app" +#, php-format +msgid "" +"If you do not have access to your authentication code you can use a two-factor recovery code." +msgstr "" #: src/Module/Security/TwoFactor/Verify.php:101 -msgid "This is my two-factor authenticator app device" -msgstr "" +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Please enter a code from your authentication app" +msgstr "Please enter a code from your authentication app" #: src/Module/Security/TwoFactor/Verify.php:102 msgid "Verify code and complete login" msgstr "Verify code and complete login" -#: src/Module/Settings/Delegation.php:53 +#: src/Module/Settings/Account.php:96 +msgid "Please use a shorter name." +msgstr "" + +#: src/Module/Settings/Account.php:99 +msgid "Name too short." +msgstr "" + +#: src/Module/Settings/Account.php:108 +msgid "Wrong Password." +msgstr "Wrong password." + +#: src/Module/Settings/Account.php:113 +msgid "Invalid email." +msgstr "Invalid email." + +#: src/Module/Settings/Account.php:117 +msgid "Cannot change to that email." +msgstr "Cannot change to that email." + +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 +msgid "Settings were not updated." +msgstr "" + +#: src/Module/Settings/Account.php:364 +msgid "Contact CSV file upload error" +msgstr "Contact CSV file upload error" + +#: src/Module/Settings/Account.php:383 +msgid "Importing Contacts done" +msgstr "Importing contacts done" + +#: src/Module/Settings/Account.php:396 +msgid "Relocate message has been send to your contacts" +msgstr "Relocate message has been sent to your contacts" + +#: src/Module/Settings/Account.php:413 +msgid "Unable to find your profile. Please contact your admin." +msgstr "Unable to find your profile. Please contact your admin." + +#: src/Module/Settings/Account.php:455 +msgid "Personal Page Subtypes" +msgstr "Personal Page subtypes" + +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" +msgstr "" + +#: src/Module/Settings/Account.php:466 +msgid "Account for a personal profile." +msgstr "Account for a personal profile." + +#: src/Module/Settings/Account.php:473 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "Account for an organization that automatically approves contact requests as \"Followers\"." + +#: src/Module/Settings/Account.php:480 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "Account for a news reflector that automatically approves contact requests as \"Followers\"." + +#: src/Module/Settings/Account.php:487 +msgid "Account for community discussions." +msgstr "Account for community discussions." + +#: src/Module/Settings/Account.php:494 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"." + +#: src/Module/Settings/Account.php:501 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "Account for a public profile that automatically approves contact requests as \"Followers\"." + +#: src/Module/Settings/Account.php:508 +msgid "Automatically approves all contact requests." +msgstr "Automatically approves all contact requests." + +#: src/Module/Settings/Account.php:515 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "Account for a popular profile that automatically approves contact requests as \"Friends\"." + +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "" + +#: src/Module/Settings/Account.php:522 +msgid "Requires manual approval of contact requests." +msgstr "Requires manual approval of contact requests." + +#: src/Module/Settings/Account.php:531 +msgid "OpenID:" +msgstr "OpenID:" + +#: src/Module/Settings/Account.php:531 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Optional) Allow this OpenID to login to this account." + +#: src/Module/Settings/Account.php:539 +msgid "Publish your profile in your local site directory?" +msgstr "" + +#: src/Module/Settings/Account.php:539 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "Your profile will be published in this node's local directory. Your profile details may be publicly visible depending on the system settings." + +#: src/Module/Settings/Account.php:545 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "" + +#: src/Module/Settings/Account.php:558 +msgid "Account Settings" +msgstr "Account Settings" + +#: src/Module/Settings/Account.php:559 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "My identity address: '%s' or '%s'" + +#: src/Module/Settings/Account.php:566 +msgid "Password Settings" +msgstr "Password change" + +#: src/Module/Settings/Account.php:568 +msgid "Leave password fields blank unless changing" +msgstr "Leave password fields blank unless changing" + +#: src/Module/Settings/Account.php:570 +msgid "Password:" +msgstr "Password:" + +#: src/Module/Settings/Account.php:570 +msgid "Your current password to confirm the changes of the email address" +msgstr "Your current password to confirm the change of your email address." + +#: src/Module/Settings/Account.php:573 +msgid "Delete OpenID URL" +msgstr "Delete OpenID URL" + +#: src/Module/Settings/Account.php:575 +msgid "Basic Settings" +msgstr "Basic information" + +#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "" + +#: src/Module/Settings/Account.php:577 +msgid "Email Address:" +msgstr "Email address:" + +#: src/Module/Settings/Account.php:578 +msgid "Your Timezone:" +msgstr "Time zone:" + +#: src/Module/Settings/Account.php:579 +msgid "Your Language:" +msgstr "Language:" + +#: src/Module/Settings/Account.php:579 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Set the language of your Friendica interface and emails sent to you." + +#: src/Module/Settings/Account.php:580 +msgid "Default Post Location:" +msgstr "Posting location:" + +#: src/Module/Settings/Account.php:581 +msgid "Use Browser Location:" +msgstr "Use browser location:" + +#: src/Module/Settings/Account.php:583 +msgid "Security and Privacy Settings" +msgstr "Security and privacy" + +#: src/Module/Settings/Account.php:585 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum friend requests per day:" + +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 +msgid "(to prevent spam abuse)" +msgstr "May prevent spam and abusive registrations" + +#: src/Module/Settings/Account.php:587 +msgid "Allow your profile to be searchable globally?" +msgstr "" + +#: src/Module/Settings/Account.php:587 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "" + +#: src/Module/Settings/Account.php:588 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "" + +#: src/Module/Settings/Account.php:588 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "" +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "Make public posts unlisted" +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "" + +#: src/Module/Settings/Account.php:591 +msgid "Make all posted pictures accessible" +msgstr "" + +#: src/Module/Settings/Account.php:591 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "" + +#: src/Module/Settings/Account.php:592 +msgid "Allow friends to post to your profile page?" +msgstr "Allow friends to post to my wall?" + +#: src/Module/Settings/Account.php:592 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "Your contacts may write posts on your profile wall. These posts will be distributed to your contacts" + +#: src/Module/Settings/Account.php:593 +msgid "Allow friends to tag your posts?" +msgstr "Allow friends to tag my post?" + +#: src/Module/Settings/Account.php:593 +msgid "Your contacts can add additional tags to your posts." +msgstr "Your contacts can add additional tags to your posts." + +#: src/Module/Settings/Account.php:594 +msgid "Permit unknown people to send you private mail?" +msgstr "Allow unknown people to send me private messages?" + +#: src/Module/Settings/Account.php:594 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "Friendica network users may send you private messages even if they are not in your contact list." + +#: src/Module/Settings/Account.php:595 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum private messages per day from unknown people:" + +#: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "" + +#: src/Module/Settings/Account.php:598 +msgid "Default Post Permissions" +msgstr "Default post permissions" + +#: src/Module/Settings/Account.php:602 +msgid "Expiration settings" +msgstr "" + +#: src/Module/Settings/Account.php:603 +msgid "Automatically expire posts after this many days:" +msgstr "Automatically expire posts after this many days:" + +#: src/Module/Settings/Account.php:603 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Posts will not expire if empty; expired posts will be deleted" + +#: src/Module/Settings/Account.php:604 +msgid "Expire posts" +msgstr "" + +#: src/Module/Settings/Account.php:604 +msgid "When activated, posts and comments will be expired." +msgstr "If activated, posts and comments will expire." + +#: src/Module/Settings/Account.php:605 +msgid "Expire personal notes" +msgstr "Expire personal notes" + +#: src/Module/Settings/Account.php:605 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "If activated, the personal notes on your profile page will expire." + +#: src/Module/Settings/Account.php:606 +msgid "Expire starred posts" +msgstr "" + +#: src/Module/Settings/Account.php:606 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "" + +#: src/Module/Settings/Account.php:607 +msgid "Only expire posts by others" +msgstr "" + +#: src/Module/Settings/Account.php:607 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "If activated, your own posts never expire. The settings above are only valid for posts you received." + +#: src/Module/Settings/Account.php:610 +msgid "Notification Settings" +msgstr "Notification" + +#: src/Module/Settings/Account.php:611 +msgid "Send a notification email when:" +msgstr "Send notification email when:" + +#: src/Module/Settings/Account.php:612 +msgid "You receive an introduction" +msgstr "Receiving an introduction" + +#: src/Module/Settings/Account.php:613 +msgid "Your introductions are confirmed" +msgstr "My introductions are confirmed" + +#: src/Module/Settings/Account.php:614 +msgid "Someone writes on your profile wall" +msgstr "Someone writes on my wall" + +#: src/Module/Settings/Account.php:615 +msgid "Someone writes a followup comment" +msgstr "A follow up comment is posted" + +#: src/Module/Settings/Account.php:616 +msgid "You receive a private message" +msgstr "receiving a private message" + +#: src/Module/Settings/Account.php:617 +msgid "You receive a friend suggestion" +msgstr "Receiving a friend suggestion" + +#: src/Module/Settings/Account.php:618 +msgid "You are tagged in a post" +msgstr "Tagged in a post" + +#: src/Module/Settings/Account.php:620 +msgid "Create a desktop notification when:" +msgstr "" + +#: src/Module/Settings/Account.php:621 +msgid "Someone tagged you" +msgstr "" + +#: src/Module/Settings/Account.php:622 +msgid "Someone directly commented on your post" +msgstr "" + +#: src/Module/Settings/Account.php:623 +msgid "Someone liked your content" +msgstr "" + +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +msgid "Can only be enabled, when the direct comment notification is enabled." +msgstr "" + +#: src/Module/Settings/Account.php:624 +msgid "Someone shared your content" +msgstr "" + +#: src/Module/Settings/Account.php:625 +msgid "Someone commented in your thread" +msgstr "" + +#: src/Module/Settings/Account.php:626 +msgid "Someone commented in a thread where you commented" +msgstr "" + +#: src/Module/Settings/Account.php:627 +msgid "Someone commented in a thread where you interacted" +msgstr "" + +#: src/Module/Settings/Account.php:629 +msgid "Activate desktop notifications" +msgstr "Activate desktop notifications" + +#: src/Module/Settings/Account.php:629 +msgid "Show desktop popup on new notifications" +msgstr "Show desktop pop-up on new notifications" + +#: src/Module/Settings/Account.php:633 +msgid "Text-only notification emails" +msgstr "Text-only notification emails" + +#: src/Module/Settings/Account.php:635 +msgid "Send text only notification emails, without the html part" +msgstr "Receive text only emails without HTML " + +#: src/Module/Settings/Account.php:639 +msgid "Show detailled notifications" +msgstr "Show detailed notifications" + +#: src/Module/Settings/Account.php:641 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "By default, notifications are condensed into a single notification for each item. If enabled, every notification is displayed." + +#: src/Module/Settings/Account.php:645 +msgid "Show notifications of ignored contacts" +msgstr "" + +#: src/Module/Settings/Account.php:647 +msgid "" +"You don't see posts from ignored contacts. But you still see their comments." +" This setting controls if you want to still receive regular notifications " +"that are caused by ignored contacts or not." +msgstr "" + +#: src/Module/Settings/Account.php:650 +msgid "Advanced Account/Page Type Settings" +msgstr "Advanced account types" + +#: src/Module/Settings/Account.php:651 +msgid "Change the behaviour of this account for special situations" +msgstr "Change behavior of this account for special situations" + +#: src/Module/Settings/Account.php:654 +msgid "Import Contacts" +msgstr "Import contacts" + +#: src/Module/Settings/Account.php:655 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account." + +#: src/Module/Settings/Account.php:656 +msgid "Upload File" +msgstr "Upload file" + +#: src/Module/Settings/Account.php:659 +msgid "Relocate" +msgstr "Recent relocation" + +#: src/Module/Settings/Account.php:660 +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 "If you have moved this profile from another server and some of your contacts don't receive your updates:" + +#: src/Module/Settings/Account.php:661 +msgid "Resend relocate message to contacts" +msgstr "Resend relocation message to contacts" + +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "Addon Settings" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "No addon settings configured" + +#: src/Module/Settings/Channels.php:130 src/Module/Settings/Channels.php:146 +#: src/Module/Settings/Display.php:330 +msgid "Label" +msgstr "" + +#: src/Module/Settings/Channels.php:131 src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +msgid "Description" +msgstr "Description" + +#: src/Module/Settings/Channels.php:132 src/Module/Settings/Channels.php:148 +msgid "Access Key" +msgstr "" + +#: src/Module/Settings/Channels.php:133 src/Module/Settings/Channels.php:149 +msgid "Circle/Channel" +msgstr "" + +#: src/Module/Settings/Channels.php:134 src/Module/Settings/Channels.php:150 +msgid "Include Tags" +msgstr "" + +#: src/Module/Settings/Channels.php:135 src/Module/Settings/Channels.php:151 +msgid "Exclude Tags" +msgstr "" + +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:152 +msgid "Full Text Search" +msgstr "" + +#: src/Module/Settings/Channels.php:140 +msgid "Delete channel" +msgstr "" + +#: src/Module/Settings/Channels.php:140 +msgid "Check to delete this entry from the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:146 +msgid "Short name for the channel. It is displayed on the channels widget." +msgstr "" + +#: src/Module/Settings/Channels.php:147 +msgid "This should describe the content of the channel in a few word." +msgstr "" + +#: src/Module/Settings/Channels.php:148 +msgid "" +"When you want to access this channel via an access key, you can define it " +"here. Pay attention to not use an already used one." +msgstr "" + +#: src/Module/Settings/Channels.php:149 +msgid "Select a circle or channel, that your channel should be based on." +msgstr "" + +#: src/Module/Settings/Channels.php:150 +msgid "" +"Comma separated list of tags. A post will be used when it contains any of " +"the listed tags." +msgstr "" + +#: src/Module/Settings/Channels.php:151 +msgid "" +"Comma separated list of tags. If a post contain any of these tags, then it " +"will not be part of nthis channel." +msgstr "" + +#: src/Module/Settings/Channels.php:152 +#, php-format +msgid "" +"Search terms for the body, supports the \"boolean mode\" operators from " +"MariaDB. See the help for a complete list of operators and additional " +"keywords: %s" +msgstr "" + +#: src/Module/Settings/Channels.php:153 +msgid "Check to display images in the channel." +msgstr "" + +#: src/Module/Settings/Channels.php:154 +msgid "Check to display videos in the channel." +msgstr "" + +#: src/Module/Settings/Channels.php:155 +msgid "Check to display audio in the channel." +msgstr "" + +#: src/Module/Settings/Channels.php:158 +msgid "This page can be used to define your own channels." +msgstr "" + +#: src/Module/Settings/Channels.php:159 +msgid "Add new entry to the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:160 +msgid "Add" +msgstr "Add" + +#: src/Module/Settings/Channels.php:162 +msgid "Current Entries in the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:165 +msgid "Delete entry from the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:166 +msgid "Delete entry from the channel list?" +msgstr "" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "Failed to connect with email account using the settings provided." + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "diaspora* (Socialhome, Hubzilla)" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "Email access is disabled on this site." + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "None" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "General Social Media Settings" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "" + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "Attach the link title" + +#: src/Module/Settings/Connectors.php:224 +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 "If 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." + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "Repair OStatus subscriptions" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "Email/Mailbox setup" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Specify how to connect to your mailbox, if you wish to communicate with existing email contacts." + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "Last successful email check:" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "IMAP server name:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "IMAP port:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "Security:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "Email login name:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "Email password:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "Reply-to address:" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "Send public posts to all email contacts:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "Action after import:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "Move to folder" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "Move to folder:" + +#: src/Module/Settings/Delegation.php:73 msgid "Delegation successfully granted." msgstr "Delegation successfully granted." -#: src/Module/Settings/Delegation.php:55 +#: src/Module/Settings/Delegation.php:75 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Parent user not found, unavailable or password doesn't match." -#: src/Module/Settings/Delegation.php:59 +#: src/Module/Settings/Delegation.php:79 msgid "Delegation successfully revoked." msgstr "Delegation successfully revoked." -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 +#: src/Module/Settings/Delegation.php:98 +#: src/Module/Settings/Delegation.php:120 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Delegated administrators can view but not change delegation permissions." -#: src/Module/Settings/Delegation.php:95 +#: src/Module/Settings/Delegation.php:112 msgid "Delegate user not found." msgstr "Delegate user not found." -#: src/Module/Settings/Delegation.php:143 +#: src/Module/Settings/Delegation.php:169 msgid "No parent user" msgstr "No parent user" -#: src/Module/Settings/Delegation.php:154 -#: src/Module/Settings/Delegation.php:165 +#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:191 msgid "Parent User" msgstr "Parent user" -#: src/Module/Settings/Delegation.php:162 +#: src/Module/Settings/Delegation.php:188 msgid "Additional Accounts" msgstr "" -#: src/Module/Settings/Delegation.php:163 +#: src/Module/Settings/Delegation.php:189 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:164 +#: src/Module/Settings/Delegation.php:190 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:168 +#: src/Module/Settings/Delegation.php:192 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Parent users have total control of this account, including core settings. Please double-check whom you grant such access." -#: src/Module/Settings/Delegation.php:172 +#: src/Module/Settings/Delegation.php:195 msgid "Delegates" msgstr "Delegates" -#: src/Module/Settings/Delegation.php:174 +#: src/Module/Settings/Delegation.php:196 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 "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely." -#: src/Module/Settings/Delegation.php:175 +#: src/Module/Settings/Delegation.php:197 msgid "Existing Page Delegates" msgstr "Existing page delegates" -#: src/Module/Settings/Delegation.php:177 +#: src/Module/Settings/Delegation.php:198 msgid "Potential Delegates" msgstr "Potential delegates" -#: src/Module/Settings/Delegation.php:180 -msgid "Add" -msgstr "Add" - -#: src/Module/Settings/Delegation.php:181 +#: src/Module/Settings/Delegation.php:199 msgid "No entries." msgstr "No entries." -#: src/Module/Settings/Display.php:108 +#: src/Module/Settings/Display.php:179 msgid "The theme you chose isn't available." msgstr "The theme you chose isn't available." -#: src/Module/Settings/Display.php:147 +#: src/Module/Settings/Display.php:219 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Unsupported)" -#: src/Module/Settings/Display.php:193 +#: src/Module/Settings/Display.php:254 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:255 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:256 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:257 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:302 msgid "Display Settings" msgstr "Display Settings" -#: src/Module/Settings/Display.php:195 +#: src/Module/Settings/Display.php:304 msgid "General Theme Settings" msgstr "Themes" -#: src/Module/Settings/Display.php:196 +#: src/Module/Settings/Display.php:305 msgid "Custom Theme Settings" msgstr "Theme customization" -#: src/Module/Settings/Display.php:197 +#: src/Module/Settings/Display.php:306 msgid "Content Settings" msgstr "Content/Layout" -#: src/Module/Settings/Display.php:198 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:161 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 +#: src/Module/Settings/Display.php:307 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Theme settings" -#: src/Module/Settings/Display.php:199 -msgid "Calendar" -msgstr "Calendar" +#: src/Module/Settings/Display.php:308 +msgid "Timelines" +msgstr "" -#: src/Module/Settings/Display.php:205 +#: src/Module/Settings/Display.php:315 msgid "Display Theme:" msgstr "Display theme:" -#: src/Module/Settings/Display.php:206 +#: src/Module/Settings/Display.php:316 msgid "Mobile Theme:" msgstr "Mobile theme:" -#: src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:319 msgid "Number of items to display per page:" msgstr "Number of items displayed per page:" -#: src/Module/Settings/Display.php:209 src/Module/Settings/Display.php:210 +#: src/Module/Settings/Display.php:319 src/Module/Settings/Display.php:320 msgid "Maximum of 100 items" msgstr "Maximum of 100 items" -#: src/Module/Settings/Display.php:210 +#: src/Module/Settings/Display.php:320 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Number of items displayed per page on mobile devices:" -#: src/Module/Settings/Display.php:211 +#: src/Module/Settings/Display.php:321 msgid "Update browser every xx seconds" msgstr "Update browser every so many seconds:" -#: src/Module/Settings/Display.php:211 +#: src/Module/Settings/Display.php:321 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimum 10 seconds; to disable -1." -#: src/Module/Settings/Display.php:212 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "" - -#: src/Module/Settings/Display.php:212 -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 "" - -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:322 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:322 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:323 msgid "Infinite scroll" msgstr "Infinite scroll" -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:323 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:324 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:324 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:325 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:325 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:326 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:326 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:218 +#: src/Module/Settings/Display.php:327 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:218 +#: src/Module/Settings/Display.php:327 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:220 +#: src/Module/Settings/Display.php:328 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:328 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "" + +#: src/Module/Settings/Display.php:333 +msgid "Bookmark" +msgstr "" + +#: src/Module/Settings/Display.php:335 +msgid "" +"Enable timelines that you want to see in the channels widget. Bookmark " +"timelines that you want to see in the top menu." +msgstr "" + +#: src/Module/Settings/Display.php:337 +msgid "Channel languages:" +msgstr "" + +#: src/Module/Settings/Display.php:337 +msgid "Select all languages that you want to see in your channels." +msgstr "" + +#: src/Module/Settings/Display.php:339 msgid "Beginning of week:" msgstr "Week begins: " -#: src/Module/Settings/Profile/Index.php:84 -msgid "Profile Name is required." -msgstr "Profile name is required." +#: src/Module/Settings/Display.php:340 +msgid "Default calendar view:" +msgstr "" -#: src/Module/Settings/Profile/Index.php:132 +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "Additional Features" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Connected Apps" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "Remove authorization" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:167 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:173 -#: src/Module/Settings/Profile/Index.php:193 +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:174 -#: src/Module/Settings/Profile/Index.php:194 +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:184 -#: src/Module/Settings/Profile/Index.php:204 +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 msgid "Field Permissions" msgstr "Field Permissions" -#: src/Module/Settings/Profile/Index.php:185 -#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 msgid "(click to open/close)" msgstr "(reveal/hide)" -#: src/Module/Settings/Profile/Index.php:191 +#: src/Module/Settings/Profile/Index.php:224 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:221 -msgid "Profile Actions" -msgstr "Profile actions" - -#: src/Module/Settings/Profile/Index.php:222 -msgid "Edit Profile Details" -msgstr "Edit Profile Details" - -#: src/Module/Settings/Profile/Index.php:224 -msgid "Change Profile Photo" -msgstr "Change profile photo" - -#: src/Module/Settings/Profile/Index.php:229 -msgid "Profile picture" -msgstr "Profile picture" - -#: src/Module/Settings/Profile/Index.php:230 -msgid "Location" -msgstr "Location" - -#: src/Module/Settings/Profile/Index.php:231 src/Util/Temporal.php:93 -#: src/Util/Temporal.php:95 -msgid "Miscellaneous" -msgstr "Miscellaneous" - -#: src/Module/Settings/Profile/Index.php:232 -msgid "Custom Profile Fields" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:234 src/Module/Welcome.php:58 -msgid "Upload Profile Photo" -msgstr "Upload profile photo" - -#: src/Module/Settings/Profile/Index.php:238 -msgid "Display name:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:241 -msgid "Street Address:" -msgstr "Street address:" - -#: src/Module/Settings/Profile/Index.php:242 -msgid "Locality/City:" -msgstr "Locality/City:" - -#: src/Module/Settings/Profile/Index.php:243 -msgid "Region/State:" -msgstr "Region/State:" - -#: src/Module/Settings/Profile/Index.php:244 -msgid "Postal/Zip Code:" -msgstr "Postcode:" - -#: src/Module/Settings/Profile/Index.php:245 -msgid "Country:" -msgstr "Country:" - -#: src/Module/Settings/Profile/Index.php:247 -msgid "XMPP (Jabber) address:" -msgstr "XMPP (Jabber) address:" - #: src/Module/Settings/Profile/Index.php:247 msgid "" -"The XMPP address will be published so that people can follow you there." -msgstr "" - -#: src/Module/Settings/Profile/Index.php:248 -msgid "Matrix (Element) address:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:248 -msgid "" -"The Matrix address will be published so that people can follow you there." +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." msgstr "" #: src/Module/Settings/Profile/Index.php:249 -msgid "Homepage URL:" -msgstr "Homepage URL:" +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "" -#: src/Module/Settings/Profile/Index.php:250 -msgid "Public Keywords:" -msgstr "Public keywords:" +#: src/Module/Settings/Profile/Index.php:255 +msgid "Profile Actions" +msgstr "Profile actions" -#: src/Module/Settings/Profile/Index.php:250 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "Used for suggesting potential friends, can be seen by others." +#: src/Module/Settings/Profile/Index.php:256 +msgid "Edit Profile Details" +msgstr "Edit Profile Details" -#: src/Module/Settings/Profile/Index.php:251 -msgid "Private Keywords:" -msgstr "Private keywords:" +#: src/Module/Settings/Profile/Index.php:258 +msgid "Change Profile Photo" +msgstr "Change profile photo" -#: src/Module/Settings/Profile/Index.php:251 -msgid "(Used for searching profiles, never shown to others)" -msgstr "Used for searching profiles, never shown to others." +#: src/Module/Settings/Profile/Index.php:261 +msgid "Profile picture" +msgstr "Profile picture" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:262 +msgid "Location" +msgstr "Location" + +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 +msgid "Miscellaneous" +msgstr "Miscellaneous" + +#: src/Module/Settings/Profile/Index.php:264 +msgid "Custom Profile Fields" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +msgid "Upload Profile Photo" +msgstr "Upload profile photo" + +#: src/Module/Settings/Profile/Index.php:266 #, 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.

    " +"\t\t\t\t

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

    " msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:108 -#: src/Module/Settings/Profile/Photo/Crop.php:126 -#: src/Module/Settings/Profile/Photo/Crop.php:144 +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "Street address:" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "Locality/City:" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "Region/State:" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "Postcode:" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "Country:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "XMPP (Jabber) address:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "Homepage URL:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "Public keywords:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "Used for suggesting potential friends, can be seen by others." + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "Private keywords:" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "Used for searching profiles, never shown to others." + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 #: src/Module/Settings/Profile/Photo/Index.php:102 #, php-format msgid "Image size reduction [%s] failed." msgstr "Image size reduction [%s] failed." -#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Crop.php:150 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Shift-reload the page or clear browser cache if the new photo does not display immediately." -#: src/Module/Settings/Profile/Photo/Crop.php:156 +#: src/Module/Settings/Profile/Photo/Crop.php:155 msgid "Unable to process image" msgstr "Unable to process image" -#: src/Module/Settings/Profile/Photo/Crop.php:175 +#: src/Module/Settings/Profile/Photo/Crop.php:174 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:197 +#: src/Module/Settings/Profile/Photo/Crop.php:196 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:223 -#: src/Module/Settings/Profile/Photo/Crop.php:227 +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 msgid "Crop Image" msgstr "Crop Image" -#: src/Module/Settings/Profile/Photo/Crop.php:224 +#: src/Module/Settings/Profile/Photo/Crop.php:223 msgid "Please adjust the image cropping for optimum viewing." msgstr "Please adjust the image cropping for optimum viewing." -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:225 msgid "Use Image As Is" msgstr "" @@ -9350,190 +10684,267 @@ msgstr "skip this step" msgid "select a photo from your photo albums" msgstr "select a photo from your photo albums" -#: 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 +#: src/Module/Settings/RemoveMe.php:76 +msgid "" +"There was a validation error, please make sure you're logged in with the " +"account you want to remove and try again." +msgstr "" + +#: src/Module/Settings/RemoveMe.php:76 +msgid "If this error persists, please contact your administrator." +msgstr "" + +#: src/Module/Settings/RemoveMe.php:90 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[Friendica System Notify]" + +#: src/Module/Settings/RemoveMe.php:90 +msgid "User deleted their account" +msgstr "User deleted their account" + +#: src/Module/Settings/RemoveMe.php:91 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "A user deleted his or her account on your Friendica node. Please ensure these data are removed from the backups." + +#: src/Module/Settings/RemoveMe.php:92 +#, php-format +msgid "The user id is %d" +msgstr "The user id is %d" + +#: src/Module/Settings/RemoveMe.php:105 +msgid "Your account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:130 +msgid "Remove My Account" +msgstr "Remove My Account" + +#: src/Module/Settings/RemoveMe.php:131 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "This will completely remove your account. Once this has been done it is not recoverable." + +#: src/Module/Settings/RemoveMe.php:136 +msgid "Please enter your password for verification:" +msgstr "Please enter your password for verification:" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "" + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 msgid "Please enter your password to access this page." msgstr "Please enter your password to access this page." -#: src/Module/Settings/TwoFactor/AppSpecific.php:70 +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 msgid "App-specific password generation failed: The description is empty." msgstr "App-specific password generation failed: The description is empty." -#: src/Module/Settings/TwoFactor/AppSpecific.php:73 +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 msgid "" "App-specific password generation failed: This description already exists." msgstr "App-specific password generation failed: This description already exists." -#: src/Module/Settings/TwoFactor/AppSpecific.php:77 +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 msgid "New app-specific password generated." msgstr "New app-specific password generated." -#: src/Module/Settings/TwoFactor/AppSpecific.php:83 +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 msgid "App-specific passwords successfully revoked." msgstr "App-specific passwords successfully revoked." -#: src/Module/Settings/TwoFactor/AppSpecific.php:93 +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 msgid "App-specific password successfully revoked." msgstr "App-specific password successfully revoked." -#: src/Module/Settings/TwoFactor/AppSpecific.php:114 +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 msgid "Two-factor app-specific passwords" msgstr "Two-factor app-specific passwords" -#: src/Module/Settings/TwoFactor/AppSpecific.php:116 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 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 "

    App-specific passwords are randomly generated passwords. They are used instead of your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

    " -#: src/Module/Settings/TwoFactor/AppSpecific.php:117 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Make sure to copy your new app-specific password now. You won’t be able to see it again!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:120 -msgid "Description" -msgstr "Description" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:121 +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 msgid "Last Used" msgstr "Last used" -#: src/Module/Settings/TwoFactor/AppSpecific.php:122 +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 msgid "Revoke" msgstr "Revoke" -#: src/Module/Settings/TwoFactor/AppSpecific.php:123 +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Revoke All" msgstr "Revoke all" -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 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 "When you generate a new app-specific password, you must use it right away. It will be shown to you only once after you generate it." -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 msgid "Generate new app-specific password" msgstr "Generate new app-specific password" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa on my Fairphone 2..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 msgid "Generate" msgstr "Generate" -#: src/Module/Settings/TwoFactor/Index.php:67 +#: src/Module/Settings/TwoFactor/Index.php:68 msgid "Two-factor authentication successfully disabled." msgstr "Two-factor authentication successfully disabled." -#: src/Module/Settings/TwoFactor/Index.php:93 -msgid "Wrong Password" -msgstr "Wrong password" - -#: src/Module/Settings/TwoFactor/Index.php:113 +#: src/Module/Settings/TwoFactor/Index.php:120 msgid "" "

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

    " msgstr "

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

    " -#: src/Module/Settings/TwoFactor/Index.php:117 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Authenticator app" msgstr "Authenticator app" -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Configured" msgstr "Configured" -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Not Configured" msgstr "Not configured" -#: src/Module/Settings/TwoFactor/Index.php:119 +#: src/Module/Settings/TwoFactor/Index.php:126 msgid "

    You haven't finished configuring your authenticator app.

    " msgstr "

    You haven't finished configuring your authenticator app.

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

    Your authenticator app is correctly configured.

    " msgstr "

    Your authenticator app is correctly configured.

    " -#: src/Module/Settings/TwoFactor/Index.php:122 +#: src/Module/Settings/TwoFactor/Index.php:129 msgid "Recovery codes" msgstr "Recovery codes" -#: src/Module/Settings/TwoFactor/Index.php:123 +#: src/Module/Settings/TwoFactor/Index.php:130 msgid "Remaining valid codes" msgstr "Remaining valid codes" -#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "" "

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

    " msgstr "

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

    " -#: src/Module/Settings/TwoFactor/Index.php:127 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "App-specific passwords" msgstr "App-specific passwords" -#: src/Module/Settings/TwoFactor/Index.php:128 +#: src/Module/Settings/TwoFactor/Index.php:135 msgid "Generated app-specific passwords" msgstr "Generated app-specific passwords." -#: src/Module/Settings/TwoFactor/Index.php:130 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "" "

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

    " msgstr "

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

    " -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "Current password:" msgstr "Current password:" -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "You need to provide your current password to change two-factor authentication settings." -#: src/Module/Settings/TwoFactor/Index.php:134 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "Enable two-factor authentication" msgstr "Enable two-factor authentication" -#: src/Module/Settings/TwoFactor/Index.php:135 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Disable two-factor authentication" msgstr "Disable two-factor authentication" -#: src/Module/Settings/TwoFactor/Index.php:136 +#: src/Module/Settings/TwoFactor/Index.php:143 msgid "Show recovery codes" msgstr "Show recovery codes" -#: src/Module/Settings/TwoFactor/Index.php:137 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "Manage app-specific passwords" msgstr "Manage app-specific passwords." -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/Settings/TwoFactor/Index.php:145 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:139 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Finish app configuration" msgstr "Finish app configuration" -#: src/Module/Settings/TwoFactor/Recovery.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:80 msgid "New recovery codes successfully generated." msgstr "New recovery codes successfully generated." -#: src/Module/Settings/TwoFactor/Recovery.php:92 +#: src/Module/Settings/TwoFactor/Recovery.php:106 msgid "Two-factor recovery codes" msgstr "Two-factor recovery codes" -#: src/Module/Settings/TwoFactor/Recovery.php:94 +#: src/Module/Settings/TwoFactor/Recovery.php:108 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 " @@ -9542,64 +10953,68 @@ msgid "" "account.

    " msgstr "

    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 place! If you lose your device and don’t have the recovery codes you will lose access to your account.

    " -#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Recovery.php:110 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore." -#: src/Module/Settings/TwoFactor/Recovery.php:97 +#: src/Module/Settings/TwoFactor/Recovery.php:111 msgid "Generate new recovery codes" msgstr "Generate new recovery codes" -#: src/Module/Settings/TwoFactor/Recovery.php:99 +#: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "Next: Verification" msgstr "Next: Verification" -#: src/Module/Settings/TwoFactor/Trusted.php:49 +#: src/Module/Settings/TwoFactor/Trusted.php:84 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:59 +#: src/Module/Settings/TwoFactor/Trusted.php:94 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:136 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:98 +#: src/Module/Settings/TwoFactor/Trusted.php:137 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 "" -#: src/Module/Settings/TwoFactor/Trusted.php:99 +#: src/Module/Settings/TwoFactor/Trusted.php:138 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:100 +#: src/Module/Settings/TwoFactor/Trusted.php:139 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:102 +#: src/Module/Settings/TwoFactor/Trusted.php:141 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:103 +#: src/Module/Settings/TwoFactor/Trusted.php:142 +msgid "Created At" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:143 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:105 +#: src/Module/Settings/TwoFactor/Trusted.php:145 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:78 +#: src/Module/Settings/TwoFactor/Verify.php:91 msgid "Two-factor authentication successfully activated." msgstr "Two-factor authentication successfully activated." -#: src/Module/Settings/TwoFactor/Verify.php:111 +#: src/Module/Settings/TwoFactor/Verify.php:125 #, php-format msgid "" "

    Or you can submit the authentication settings manually:

    \n" @@ -9619,119 +11034,105 @@ msgid "" "" msgstr "

    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
    " -#: src/Module/Settings/TwoFactor/Verify.php:131 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Two-factor code verification" msgstr "Two-factor code verification" -#: src/Module/Settings/TwoFactor/Verify.php:133 +#: src/Module/Settings/TwoFactor/Verify.php:147 msgid "" "

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

    " msgstr "

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

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

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

    %s

    " msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:142 +#: src/Module/Settings/TwoFactor/Verify.php:156 msgid "Verify code and enable two-factor authentication" msgstr "Verify code and enable two-factor authentication" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 msgid "Export account" msgstr "Export account" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 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 "Export your account info and contacts. Use this to backup your account or to move it to another server." -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:91 msgid "Export all" msgstr "Export all" -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:91 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 "" -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:92 msgid "Export Contacts to CSV" msgstr "Export contacts to CSV" -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:92 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Export the list of the accounts you are following as CSV file. Compatible with Mastodon for example." -#: src/Module/Special/HTTPException.php:49 -msgid "Bad Request" -msgstr "Bad request" +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "" -#: src/Module/Special/HTTPException.php:51 -msgid "Forbidden" -msgstr "Forbidden" +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "" -#: src/Module/Special/HTTPException.php:52 -msgid "Not Found" -msgstr "Not found" - -#: src/Module/Special/HTTPException.php:54 -msgid "Service Unavailable" -msgstr "Service Unavailable" - -#: src/Module/Special/HTTPException.php:61 +#: src/Module/Special/DisplayNotFound.php:37 msgid "" -"The server cannot or will not process the request due to an apparent client " -"error." -msgstr "The server cannot process the request due to an apparent client error." +"This node has blocked the top-level author or the author of the shared post." +msgstr "" -#: src/Module/Special/HTTPException.php:62 +#: src/Module/Special/DisplayNotFound.php:38 msgid "" -"Authentication is required and has failed or has not yet been provided." -msgstr "Authentication is required but has failed or not yet being provided." +"You have ignored or blocked the top-level author or the author of the shared" +" post." +msgstr "" -#: src/Module/Special/HTTPException.php:63 +#: src/Module/Special/DisplayNotFound.php:39 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 "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." +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "" -#: src/Module/Special/HTTPException.php:64 -msgid "" -"The requested resource could not be found but may be available in the " -"future." -msgstr "The requested resource could not be found but may be available in the future." +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "" -#: src/Module/Special/HTTPException.php:65 -msgid "" -"An unexpected condition was encountered and no more specific message is " -"suitable." -msgstr "An unexpected condition was encountered and no more specific message is available." +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "" -#: 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 "The server is currently unavailable (possibly because it is overloaded or down for maintenance). Please try again later." +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "" -#: src/Module/Special/HTTPException.php:76 +#: src/Module/Special/HTTPException.php:78 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:80 +#: src/Module/Special/HTTPException.php:83 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:46 src/Module/Tos.php:88 +#: src/Module/Tos.php:58 src/Module/Tos.php:107 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" @@ -9744,28 +11145,130 @@ msgid "" "settings, it is not necessary for communication." msgstr "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), a 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 won’t 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." -#: src/Module/Tos.php:47 src/Module/Tos.php:89 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 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 "This information is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional personal information that may be transmitted to the communication partner's accounts." -#: src/Module/Tos.php:48 src/Module/Tos.php:90 +#: src/Module/Tos.php:60 src/Module/Tos.php:109 #, 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 "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." +"href=\"%1$s/settings/removeme\">%1$s/settings/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 "" -#: src/Module/Tos.php:51 src/Module/Tos.php:87 +#: src/Module/Tos.php:63 src/Module/Tos.php:106 msgid "Privacy Statement" msgstr "Privacy Statement" +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "" + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "The requested item doesn't exist or has been deleted." + +#: src/Module/User/Delegation.php:146 +#, php-format +msgid "You are now logged in as %s" +msgstr "" + +#: src/Module/User/Delegation.php:185 +msgid "Switch between your accounts" +msgstr "" + +#: src/Module/User/Delegation.php:186 +msgid "Manage your accounts" +msgstr "" + +#: src/Module/User/Delegation.php:187 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Accounts that I manage or own." + +#: src/Module/User/Delegation.php:188 +msgid "Select an identity to manage: " +msgstr "Select identity:" + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "User imports on closed servers can only be done by an administrator." + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "Move Existing Friendica Account" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "You can import an existing Friendica profile to this node." + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "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." + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora." + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "Account file:" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "To export your account, go to \"Settings->Export personal data\" and select \"Export account\"" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "Error decoding account file" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Error! No version data in file! Is this a Friendica account file?" + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "User '%s' already exists on this server!" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "User creation error" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contact not imported" +msgstr[1] "%d contacts not imported" + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "User profile creation error" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "Done. You can now login with your username and password" + #: src/Module/Welcome.php:44 msgid "Welcome to Friendica" msgstr "Welcome to Friendica" @@ -9896,15 +11399,15 @@ msgid "" msgstr "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." #: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "Group your contacts" +msgid "Add Your Contacts To Circle" +msgstr "" #: 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 "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." +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "" #: src/Module/Welcome.php:80 msgid "Why Aren't My Posts Public?" @@ -9931,43 +11434,51 @@ msgid "" " features and resources." msgstr "Our help pages may be consulted for detail on other program features and resources." -#: src/Navigation/Notifications/Factory/FormattedNotification.php:89 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +msgid "{0} wants to follow you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +msgid "{0} has started following you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 #, php-format msgid "%s liked %s's post" msgstr "%s liked %s's post" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:101 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 #, php-format msgid "%s disliked %s's post" msgstr "%s disliked %s's post" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:113 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 #, php-format msgid "%s is attending %s's event" msgstr "%s is going to %s's event" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:125 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 #, php-format msgid "%s is not attending %s's event" msgstr "%s is not going to %s's event" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:137 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:167 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 #, php-format msgid "%s is now friends with %s" msgstr "%s is now friends with %s" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:334 -#: src/Navigation/Notifications/Factory/FormattedNotification.php:372 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 #, php-format msgid "%s commented on %s's post" msgstr "%s commented on %s's post" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:371 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 #, php-format msgid "%s created a new post" msgstr "%s posted something new" @@ -9984,311 +11495,315 @@ msgstr "Friend/Contact request" msgid "New Follower" msgstr "New follower" -#: src/Navigation/Notifications/Factory/Notification.php:74 +#: src/Navigation/Notifications/Factory/Notification.php:134 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:76 +#: src/Navigation/Notifications/Factory/Notification.php:136 #, php-format -msgid "%1$s had started following you" +msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:141 +#: src/Navigation/Notifications/Factory/Notification.php:208 #, php-format -msgid "%1$s liked your comment %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:144 -#, php-format -msgid "%1$s liked your post %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:151 -#, php-format -msgid "%1$s disliked your comment %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:154 -#, php-format -msgid "%1$s disliked your post %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:161 -#, php-format -msgid "%1$s shared your comment %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:164 -#, php-format -msgid "%1$s shared your post %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:171 -#, php-format -msgid "%1$s tagged you on %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:175 -#, php-format -msgid "%1$s replied to you on %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:179 -#, php-format -msgid "%1$s commented in your thread %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:183 -#, php-format -msgid "%1$s commented on your comment %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:189 -#, php-format -msgid "%1$s commented in their thread %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:191 -#, php-format -msgid "%1$s commented in their thread" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:193 -#, php-format -msgid "%1$s commented in the thread %2$s from %3$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:195 -#, php-format -msgid "%1$s commented in the thread from %3$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:200 -#, php-format -msgid "%1$s commented on your thread %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:205 -#, php-format -msgid "%1$s shared the post %2$s from %3$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:207 -#, php-format -msgid "%1$s shared a post from %3$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:209 -#, php-format -msgid "%1$s shared the post %2$s" +msgid "%1$s liked your comment on %2$s" msgstr "" #: src/Navigation/Notifications/Factory/Notification.php:211 #, php-format +msgid "%1$s liked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:218 +#, php-format +msgid "%1$s disliked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:221 +#, php-format +msgid "%1$s disliked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:228 +#, php-format +msgid "%1$s shared your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 +#, php-format +msgid "%1$s shared your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:235 +#: src/Navigation/Notifications/Factory/Notification.php:305 +#, php-format +msgid "%1$s shared the post %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:237 +#: src/Navigation/Notifications/Factory/Notification.php:307 +#, php-format +msgid "%1$s shared a post from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:239 +#: src/Navigation/Notifications/Factory/Notification.php:309 +#, php-format +msgid "%1$s shared the post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:311 +#, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:192 -#: src/Navigation/Notifications/Repository/Notify.php:675 +#: src/Navigation/Notifications/Factory/Notification.php:249 +#, php-format +msgid "%1$s wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:256 +#, php-format +msgid "%1$s does not want to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:263 +#, php-format +msgid "%1$s maybe wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:270 +#, php-format +msgid "%1$s tagged you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:274 +#, php-format +msgid "%1$s replied to you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:278 +#, php-format +msgid "%1$s commented in your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:282 +#, php-format +msgid "%1$s commented on your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:289 +#, php-format +msgid "%1$s commented in their thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:291 +#, php-format +msgid "%1$s commented in their thread" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:293 +#, php-format +msgid "%1$s commented in the thread %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:295 +#, php-format +msgid "%1$s commented in the thread from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:300 +#, php-format +msgid "%1$s commented on your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:256 +#: src/Navigation/Notifications/Repository/Notify.php:293 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:258 +#: src/Navigation/Notifications/Repository/Notify.php:295 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s sent you a new private message at %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:259 +#: src/Navigation/Notifications/Repository/Notify.php:296 msgid "a private message" msgstr "a private message" -#: src/Navigation/Notifications/Repository/Notify.php:259 +#: src/Navigation/Notifications/Repository/Notify.php:296 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s sent you %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:261 +#: src/Navigation/Notifications/Repository/Notify.php:298 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Please visit %s to view or reply to your private messages." -#: src/Navigation/Notifications/Repository/Notify.php:292 +#: src/Navigation/Notifications/Repository/Notify.php:328 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:297 +#: src/Navigation/Notifications/Repository/Notify.php:333 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:301 +#: src/Navigation/Notifications/Repository/Notify.php:337 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:305 -#: src/Navigation/Notifications/Repository/Notify.php:710 +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:307 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s commented on an item/conversation you have been following." -#: src/Navigation/Notifications/Repository/Notify.php:311 -#: src/Navigation/Notifications/Repository/Notify.php:326 -#: src/Navigation/Notifications/Repository/Notify.php:345 -#: src/Navigation/Notifications/Repository/Notify.php:725 +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Please visit %s to view or reply to the conversation." -#: src/Navigation/Notifications/Repository/Notify.php:318 +#: src/Navigation/Notifications/Repository/Notify.php:354 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:320 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s posted to your profile wall at %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:321 +#: src/Navigation/Notifications/Repository/Notify.php:357 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s posted to [url=%2$s]your wall[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:333 -#, php-format -msgid "%1$s %2$s poked you" -msgstr "" - -#: src/Navigation/Notifications/Repository/Notify.php:335 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s poked you at %2$s" - -#: src/Navigation/Notifications/Repository/Notify.php:336 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]poked you[/url]." - -#: src/Navigation/Notifications/Repository/Notify.php:353 +#: src/Navigation/Notifications/Repository/Notify.php:370 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:355 +#: src/Navigation/Notifications/Repository/Notify.php:372 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "You've received an introduction from '%1$s' at %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "You've received [url=%1$s]an introduction[/url] from %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:361 -#: src/Navigation/Notifications/Repository/Notify.php:407 +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 #, php-format msgid "You may visit their profile at %s" msgstr "You may visit their profile at %s" -#: src/Navigation/Notifications/Repository/Notify.php:363 +#: src/Navigation/Notifications/Repository/Notify.php:380 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Please visit %s to approve or reject the introduction." -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:387 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:372 -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s is sharing with you at %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:397 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:382 -#: src/Navigation/Notifications/Repository/Notify.php:383 +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "You have a new follower at %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:396 +#: src/Navigation/Notifications/Repository/Notify.php:413 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:398 +#: src/Navigation/Notifications/Repository/Notify.php:415 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "You've received a friend suggestion from '%1$s' at %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:416 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:405 +#: src/Navigation/Notifications/Repository/Notify.php:422 msgid "Name:" msgstr "Name:" -#: src/Navigation/Notifications/Repository/Notify.php:406 +#: src/Navigation/Notifications/Repository/Notify.php:423 msgid "Photo:" msgstr "Photo:" -#: src/Navigation/Notifications/Repository/Notify.php:409 +#: src/Navigation/Notifications/Repository/Notify.php:426 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Please visit %s to approve or reject the suggestion." -#: src/Navigation/Notifications/Repository/Notify.php:417 -#: src/Navigation/Notifications/Repository/Notify.php:432 +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:419 -#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' has accepted your connection request at %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:420 -#: src/Navigation/Notifications/Repository/Notify.php:435 +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s has accepted your [url=%1$s]connection request[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:425 +#: src/Navigation/Notifications/Repository/Notify.php:442 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "You are now mutual friends and may exchange status updates, photos, and email without restriction." -#: src/Navigation/Notifications/Repository/Notify.php:427 +#: src/Navigation/Notifications/Repository/Notify.php:444 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Please visit %s if you wish to make any changes to this relationship." -#: src/Navigation/Notifications/Repository/Notify.php:440 +#: src/Navigation/Notifications/Repository/Notify.php:457 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -10297,33 +11812,34 @@ msgid "" "automatically." msgstr "'%1$s' has chosen to accept you as 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." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' may choose to extend this into a two-way or more permissive relationship in the future." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:461 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Please visit %s if you wish to make any changes to this relationship." -#: src/Navigation/Notifications/Repository/Notify.php:454 +#: src/Navigation/Notifications/Repository/Notify.php:471 msgid "registration request" msgstr "registration request" -#: src/Navigation/Notifications/Repository/Notify.php:456 +#: src/Navigation/Notifications/Repository/Notify.php:473 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "You've received a registration request from '%1$s' at %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:474 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "You've received a [url=%1$s]registration request[/url] from %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:462 +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 #, php-format msgid "" "Full Name:\t%s\n" @@ -10331,21 +11847,50 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Full Name:\t%s\nSite Location:\t%s\nLogin Name:\t%s (%s)" -#: src/Navigation/Notifications/Repository/Notify.php:468 +#: src/Navigation/Notifications/Repository/Notify.php:485 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Please visit %s to approve or reject the request." -#: src/Navigation/Notifications/Repository/Notify.php:704 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:780 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:707 +#: src/Navigation/Notifications/Repository/Notify.php:783 #, php-format msgid "%s %s shared a new post" msgstr "" +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "" + #: src/Object/EMail/ItemCCEMail.php:42 #, php-format msgid "" @@ -10369,244 +11914,324 @@ msgstr "Please contact the sender by replying to this post if you do not wish to msgid "%s posted an update." msgstr "%s posted an update." -#: src/Object/Post.php:149 -msgid "This entry was edited" -msgstr "This entry was edited" - -#: src/Object/Post.php:177 +#: src/Object/Post.php:138 msgid "Private Message" msgstr "Private message" -#: src/Object/Post.php:193 src/Object/Post.php:195 +#: src/Object/Post.php:142 +msgid "Public Message" +msgstr "" + +#: src/Object/Post.php:146 +msgid "Unlisted Message" +msgstr "" + +#: src/Object/Post.php:182 +msgid "This entry was edited" +msgstr "This entry was edited" + +#: src/Object/Post.php:210 +msgid "Connector Message" +msgstr "" + +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Edit" -#: src/Object/Post.php:215 -msgid "Pinned item" -msgstr "" - -#: src/Object/Post.php:219 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "Delete globally" -#: src/Object/Post.php:219 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "Remove locally" -#: src/Object/Post.php:235 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:240 +#: src/Object/Post.php:274 +#, php-format +msgid "Ignore %s" +msgstr "" + +#: src/Object/Post.php:279 +#, php-format +msgid "Collapse %s" +msgstr "" + +#: src/Object/Post.php:283 +msgid "Report post" +msgstr "" + +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:274 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "I will attend" -#: src/Object/Post.php:274 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "I will not attend" -#: src/Object/Post.php:274 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "I might attend" -#: src/Object/Post.php:304 +#: src/Object/Post.php:364 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:305 +#: src/Object/Post.php:365 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:306 +#: src/Object/Post.php:366 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:316 +#: src/Object/Post.php:376 msgid "Add star" msgstr "" -#: src/Object/Post.php:317 +#: src/Object/Post.php:377 msgid "Remove star" msgstr "" -#: src/Object/Post.php:318 +#: src/Object/Post.php:378 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:329 +#: src/Object/Post.php:389 msgid "Pin" msgstr "" -#: src/Object/Post.php:330 +#: src/Object/Post.php:390 msgid "Unpin" msgstr "" -#: src/Object/Post.php:331 +#: src/Object/Post.php:391 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:394 msgid "Pinned" msgstr "" -#: src/Object/Post.php:339 +#: src/Object/Post.php:399 msgid "Add tag" msgstr "" -#: src/Object/Post.php:352 +#: src/Object/Post.php:412 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:352 +#: src/Object/Post.php:412 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:355 +#: src/Object/Post.php:415 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:355 +#: src/Object/Post.php:415 msgid "Reshare" msgstr "" -#: src/Object/Post.php:356 +#: src/Object/Post.php:416 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:356 +#: src/Object/Post.php:416 msgid "Unshare" msgstr "" -#: src/Object/Post.php:401 +#: src/Object/Post.php:467 #, php-format msgid "%s (Received %s)" msgstr "%s (Received %s)" -#: src/Object/Post.php:406 +#: src/Object/Post.php:473 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:473 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:422 -msgid "Pushed" +#: src/Object/Post.php:495 +msgid "Share via ..." msgstr "" -#: src/Object/Post.php:422 -msgid "Pulled" +#: src/Object/Post.php:495 +msgid "Share via external services" msgstr "" -#: src/Object/Post.php:456 +#: src/Object/Post.php:502 +msgid "Unknown parent" +msgstr "" + +#: src/Object/Post.php:506 +#, php-format +msgid "in reply to %s" +msgstr "" + +#: src/Object/Post.php:508 +msgid "Parent is probably private or not federated." +msgstr "" + +#: src/Object/Post.php:532 msgid "to" msgstr "to" -#: src/Object/Post.php:457 +#: src/Object/Post.php:533 msgid "via" msgstr "via" -#: src/Object/Post.php:458 +#: src/Object/Post.php:534 msgid "Wall-to-Wall" msgstr "Wall-to-wall" -#: src/Object/Post.php:459 +#: src/Object/Post.php:535 msgid "via Wall-To-Wall:" msgstr "via wall-to-wall:" -#: src/Object/Post.php:497 +#: src/Object/Post.php:582 #, php-format msgid "Reply to %s" msgstr "Reply to %s" -#: src/Object/Post.php:500 +#: src/Object/Post.php:585 msgid "More" msgstr "" -#: src/Object/Post.php:518 +#: src/Object/Post.php:604 msgid "Notifier task is pending" msgstr "Notifier task is pending" -#: src/Object/Post.php:519 +#: src/Object/Post.php:605 msgid "Delivery to remote servers is pending" msgstr "Delivery to remote servers is pending" -#: src/Object/Post.php:520 +#: src/Object/Post.php:606 msgid "Delivery to remote servers is underway" msgstr "Delivery to remote servers is underway" -#: src/Object/Post.php:521 +#: src/Object/Post.php:607 msgid "Delivery to remote servers is mostly done" msgstr "Delivery to remote servers is mostly done" -#: src/Object/Post.php:522 +#: src/Object/Post.php:608 msgid "Delivery to remote servers is done" msgstr "Delivery to remote servers is done" -#: src/Object/Post.php:542 +#: src/Object/Post.php:630 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d comment" msgstr[1] "%d comments" -#: src/Object/Post.php:543 +#: src/Object/Post.php:631 msgid "Show more" msgstr "Show more" -#: src/Object/Post.php:544 +#: src/Object/Post.php:632 msgid "Show fewer" msgstr "Show fewer" -#: src/Protocol/Diaspora.php:3414 -msgid "Attachments:" -msgstr "Attachments:" +#: src/Object/Post.php:668 +#, php-format +msgid "Reshared by: %s" +msgstr "" -#: src/Protocol/OStatus.php:1645 +#: src/Object/Post.php:673 +#, php-format +msgid "Viewed by: %s" +msgstr "" + +#: src/Object/Post.php:678 +#, php-format +msgid "Liked by: %s" +msgstr "" + +#: src/Object/Post.php:683 +#, php-format +msgid "Disliked by: %s" +msgstr "" + +#: src/Object/Post.php:688 +#, php-format +msgid "Attended by: %s" +msgstr "" + +#: src/Object/Post.php:693 +#, php-format +msgid "Maybe attended by: %s" +msgstr "" + +#: src/Object/Post.php:698 +#, php-format +msgid "Not attended by: %s" +msgstr "" + +#: src/Object/Post.php:703 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "" + +#: src/Protocol/ActivityPub/Receiver.php:522 +msgid "Chat" +msgstr "" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "" + +#: src/Protocol/OStatus.php:1390 #, php-format msgid "%s is now following %s." msgstr "%s is now following %s." -#: src/Protocol/OStatus.php:1646 +#: src/Protocol/OStatus.php:1391 msgid "following" msgstr "following" -#: src/Protocol/OStatus.php:1649 +#: src/Protocol/OStatus.php:1394 #, php-format msgid "%s stopped following %s." msgstr "%s stopped following %s." -#: src/Protocol/OStatus.php:1650 +#: src/Protocol/OStatus.php:1395 msgid "stopped following" msgstr "stopped following" -#: src/Render/FriendicaSmartyEngine.php:52 -msgid "The folder view/smarty3/ must be writable by webserver." +#: src/Render/FriendicaSmartyEngine.php:56 +#, php-format +msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:209 +#: src/Security/Authentication.php:227 msgid "Login failed." msgstr "Login failed." -#: src/Security/Authentication.php:250 +#: src/Security/Authentication.php:272 msgid "Login failed. Please check your credentials." msgstr "Login failed. Please check your credentials." -#: src/Security/Authentication.php:348 +#: src/Security/Authentication.php:391 #, php-format msgid "Welcome %s" msgstr "Welcome %s" -#: src/Security/Authentication.php:349 +#: src/Security/Authentication.php:392 msgid "Please upload a profile photo." msgstr "Please upload a profile photo." -#: src/Util/EMailer/MailBuilder.php:259 +#: src/Util/EMailer/MailBuilder.php:260 msgid "Friendica Notification" msgstr "" @@ -10629,264 +12254,271 @@ msgstr "" msgid "thanks" msgstr "" -#: src/Util/Temporal.php:167 +#: src/Util/Temporal.php:172 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:275 +#: src/Util/Temporal.php:280 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:318 +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 msgid "never" msgstr "" -#: src/Util/Temporal.php:325 +#: src/Util/Temporal.php:343 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:352 msgid "year" msgstr "" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:352 msgid "years" msgstr "" -#: src/Util/Temporal.php:334 +#: src/Util/Temporal.php:353 msgid "months" msgstr "" -#: src/Util/Temporal.php:335 +#: src/Util/Temporal.php:354 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:336 +#: src/Util/Temporal.php:355 msgid "days" msgstr "" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:356 msgid "hour" msgstr "" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:356 msgid "hours" msgstr "" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:357 msgid "minute" msgstr "" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:357 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:358 msgid "second" msgstr "" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:358 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:349 +#: src/Util/Temporal.php:367 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:370 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/Delivery.php:525 -msgid "(no subject)" -msgstr "" - -#: src/Worker/PushSubscription.php:103 +#: src/Worker/PushSubscription.php:110 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:104 +#: src/Worker/PushSubscription.php:111 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:52 +#: view/theme/duepuntozero/config.php:68 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:53 +#: view/theme/duepuntozero/config.php:69 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:54 +#: view/theme/duepuntozero/config.php:70 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:55 +#: view/theme/duepuntozero/config.php:71 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:56 +#: view/theme/duepuntozero/config.php:72 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:57 +#: view/theme/duepuntozero/config.php:73 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:58 +#: view/theme/duepuntozero/config.php:74 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:87 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:142 +#: view/theme/frio/config.php:153 msgid "Light (Accented)" msgstr "" -#: view/theme/frio/config.php:143 +#: view/theme/frio/config.php:154 msgid "Dark (Accented)" msgstr "" -#: view/theme/frio/config.php:144 +#: view/theme/frio/config.php:155 msgid "Black (Accented)" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Note" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:162 +#: view/theme/frio/config.php:173 msgid "Custom" msgstr "" -#: view/theme/frio/config.php:163 +#: view/theme/frio/config.php:174 msgid "Legacy" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:175 msgid "Accented" msgstr "" -#: view/theme/frio/config.php:165 +#: view/theme/frio/config.php:176 msgid "Select color scheme" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Select scheme accent" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Red" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Green" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:179 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:169 +#: view/theme/frio/config.php:180 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:170 +#: view/theme/frio/config.php:181 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:171 +#: view/theme/frio/config.php:182 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:183 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:173 +#: view/theme/frio/config.php:184 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:174 +#: view/theme/frio/config.php:185 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "" + +#: view/theme/frio/config.php:192 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:39 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:39 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:40 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:40 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:41 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:41 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:43 +#: view/theme/frio/php/Image.php:42 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:43 +#: view/theme/frio/php/Image.php:42 msgid "Repeat image to fill the screen." msgstr "" @@ -10898,78 +12530,78 @@ msgstr "" msgid "Back to top" msgstr "" -#: view/theme/frio/theme.php:207 +#: view/theme/frio/theme.php:211 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:210 +#: view/theme/frio/theme.php:214 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:74 +#: view/theme/quattro/config.php:90 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:75 +#: view/theme/quattro/config.php:91 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:76 +#: view/theme/quattro/config.php:92 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "show" msgstr "" -#: view/theme/vier/config.php:121 +#: view/theme/vier/config.php:137 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:122 +#: view/theme/vier/config.php:138 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:125 +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:124 +#: view/theme/vier/config.php:140 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:296 +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:126 +#: view/theme/vier/config.php:142 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:152 +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:211 +#: view/theme/vier/theme.php:234 msgid "Quick Start" msgstr "" diff --git a/view/lang/en-us/strings.php b/view/lang/en-us/strings.php index c82871c59..5272a5ea1 100644 --- a/view/lang/en-us/strings.php +++ b/view/lang/en-us/strings.php @@ -5,101 +5,10 @@ function string_plural_select_en_us($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Daily posting limit of %d post reached. The post was rejected.', - 1 => 'Daily posting limit of %d posts reached. This post was rejected.', -]; -$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Weekly posting limit of %d post reached. The post was rejected.', - 1 => 'Weekly posting limit of %d posts reached. This post was rejected.', -]; -$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = 'Monthly posting limit of %d posts reached. This post was rejected.'; -$a->strings['Permission denied.'] = 'Permission denied.'; -$a->strings['Access denied.'] = 'Access denied.'; -$a->strings['User not found.'] = 'User not found.'; -$a->strings['Access to this profile has been restricted.'] = 'Access to this profile has been restricted.'; -$a->strings['Events'] = 'Events'; -$a->strings['View'] = 'View'; -$a->strings['Previous'] = 'Previous'; -$a->strings['Next'] = 'Next'; -$a->strings['today'] = 'today'; -$a->strings['month'] = 'month'; -$a->strings['week'] = 'week'; -$a->strings['day'] = 'day'; -$a->strings['list'] = 'List'; -$a->strings['User not found'] = 'User not found'; -$a->strings['This calendar format is not supported'] = 'This calendar format is not supported'; -$a->strings['No exportable data found'] = 'No exportable data found'; -$a->strings['calendar'] = 'calendar'; -$a->strings['Public access denied.'] = 'Public access denied.'; -$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'The requested item doesn\'t exist or has been deleted.'; -$a->strings['The feed for this item is unavailable.'] = 'The feed for this item is unavailable.'; -$a->strings['Item not found'] = 'Item not found'; -$a->strings['Edit post'] = 'Edit post'; -$a->strings['Save'] = 'Save'; -$a->strings['Upload photo'] = 'Upload photo'; -$a->strings['upload photo'] = 'upload photo'; -$a->strings['Attach file'] = 'Attach file'; -$a->strings['attach file'] = 'attach file'; -$a->strings['Insert web link'] = 'Insert web link'; -$a->strings['web link'] = 'web link'; -$a->strings['Insert video link'] = 'Insert video link'; -$a->strings['video link'] = 'video link'; -$a->strings['Insert audio link'] = 'Insert audio link'; -$a->strings['audio link'] = 'audio link'; -$a->strings['Set your location'] = 'Set your location'; -$a->strings['set location'] = 'set location'; -$a->strings['Clear browser location'] = 'Clear browser location'; -$a->strings['clear location'] = 'clear location'; -$a->strings['Please wait'] = 'Please wait'; -$a->strings['Permission settings'] = 'Permission settings'; -$a->strings['CC: email addresses'] = 'CC: email addresses'; -$a->strings['Public post'] = 'Public post'; -$a->strings['Set title'] = 'Set title'; -$a->strings['Categories (comma-separated list)'] = 'Categories (comma-separated list)'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Example: bob@example.com, mary@example.com'; -$a->strings['Preview'] = 'Preview'; -$a->strings['Cancel'] = 'Cancel'; -$a->strings['Message'] = 'Message'; -$a->strings['Browser'] = 'Browser'; -$a->strings['Permissions'] = 'Permissions'; -$a->strings['Open Compose page'] = 'Open compose page'; -$a->strings['Event can not end before it has started.'] = 'Event cannot end before it has started.'; -$a->strings['Event title and start time are required.'] = 'Event title and starting time are required.'; -$a->strings['Create New Event'] = 'Create new event'; -$a->strings['Event details'] = 'Event details'; -$a->strings['Starting date and Title are required.'] = 'Starting date and title are required.'; -$a->strings['Event Starts:'] = 'Event starts:'; -$a->strings['Required'] = 'Required'; -$a->strings['Finish date/time is not known or not relevant'] = 'Finish date/time is not known or not relevant'; -$a->strings['Event Finishes:'] = 'Event finishes:'; -$a->strings['Description:'] = 'Description:'; -$a->strings['Location:'] = 'Location:'; -$a->strings['Title:'] = 'Title:'; -$a->strings['Share this event'] = 'Share this event'; -$a->strings['Submit'] = 'Submit'; -$a->strings['Basic'] = 'Basic'; -$a->strings['Advanced'] = 'Advanced'; -$a->strings['Failed to remove event'] = 'Failed to remove event'; -$a->strings['Photos'] = 'Photos'; -$a->strings['Upload'] = 'Upload'; -$a->strings['Files'] = 'Files'; -$a->strings['Submit Request'] = 'Submit request'; -$a->strings['You already added this contact.'] = 'You already added this contact.'; -$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = '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* support isn\'t enabled. Contact can\'t be added.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus support is disabled. Contact can\'t be added.'; -$a->strings['Connect/Follow'] = 'Connect/Follow'; -$a->strings['Please answer the following:'] = 'Please answer the following:'; -$a->strings['Your Identity Address:'] = 'My identity address:'; -$a->strings['Profile URL'] = 'Profile URL:'; -$a->strings['Tags:'] = 'Tags:'; -$a->strings['Add a personal note:'] = 'Add a personal note:'; -$a->strings['Status Messages and Posts'] = 'Status Messages and Posts'; -$a->strings['The contact could not be added.'] = 'Contact could not be added.'; $a->strings['Unable to locate original post.'] = 'Unable to locate original post.'; $a->strings['Empty post discarded.'] = 'Empty post discarded.'; $a->strings['Item not found.'] = 'Item not found.'; +$a->strings['Permission denied.'] = 'Permission denied.'; $a->strings['No valid account found.'] = 'No valid account found.'; $a->strings['Password reset request issued. Check your email.'] = 'Password reset request issued. Please check your email.'; $a->strings[' @@ -188,8 +97,6 @@ $a->strings[' You may change that password from your account settings page after logging in. '; $a->strings['Your password has been changed at %s'] = 'Your password has been changed at %s'; -$a->strings['No matches'] = 'No matches'; -$a->strings['Profile Match'] = 'Profile Match'; $a->strings['New Message'] = 'New Message'; $a->strings['No recipient selected.'] = 'No recipient selected.'; $a->strings['Unable to locate contact information.'] = 'Unable to locate contact information.'; @@ -203,6 +110,10 @@ $a->strings['Send Private Message'] = 'Send private message'; $a->strings['To:'] = 'To:'; $a->strings['Subject:'] = 'Subject:'; $a->strings['Your message:'] = 'Your message:'; +$a->strings['Upload photo'] = 'Upload photo'; +$a->strings['Insert web link'] = 'Insert web link'; +$a->strings['Please wait'] = 'Please wait'; +$a->strings['Submit'] = 'Submit'; $a->strings['No messages.'] = 'No messages.'; $a->strings['Message not available.'] = 'Message not available.'; $a->strings['Delete message'] = 'Delete message'; @@ -219,14 +130,8 @@ $a->strings['%d message'] = [ ]; $a->strings['Personal Notes'] = 'Personal notes'; $a->strings['Personal notes are visible only by yourself.'] = 'Personal notes are only visible to you.'; -$a->strings['No contact provided.'] = 'No contact provided.'; -$a->strings['Couldn\'t fetch information for contact.'] = 'Couldn\'t fetch information for contact.'; -$a->strings['Couldn\'t fetch friends for contact.'] = 'Couldn\'t fetch friends for contact.'; -$a->strings['Done'] = 'Done'; -$a->strings['success'] = 'success'; -$a->strings['failed'] = 'failed'; -$a->strings['ignored'] = 'Ignored'; -$a->strings['Keep this window open until done.'] = 'Keep this window open until done.'; +$a->strings['Save'] = 'Save'; +$a->strings['User not found.'] = 'User not found.'; $a->strings['Photo Albums'] = 'Photo Albums'; $a->strings['Recent Photos'] = 'Recent photos'; $a->strings['Upload New Photos'] = 'Upload new photos'; @@ -237,21 +142,16 @@ $a->strings['Album successfully deleted'] = 'Album successfully deleted'; $a->strings['Album was empty.'] = 'Album was empty.'; $a->strings['a photo'] = 'a photo'; $a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s was tagged in %2$s by %3$s'; -$a->strings['Image exceeds size limit of %s'] = 'Image exceeds size limit of %s'; -$a->strings['Image upload didn\'t complete, please try again'] = 'Image upload didn\'t complete. Please try again.'; -$a->strings['Image file is missing'] = 'Image file is missing'; -$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Server can\'t accept new file uploads at this time. Please contact your administrator.'; -$a->strings['Image file is empty.'] = 'Image file is empty.'; -$a->strings['Unable to process image.'] = 'Unable to process image.'; -$a->strings['Image upload failed.'] = 'Image upload failed.'; +$a->strings['Public access denied.'] = 'Public access denied.'; $a->strings['No photos selected'] = 'No photos selected'; -$a->strings['Access to this item is restricted.'] = 'Access to this item is restricted.'; $a->strings['Upload Photos'] = 'Upload photos'; $a->strings['New album name: '] = 'New album name: '; $a->strings['or select existing album:'] = 'or select existing album:'; $a->strings['Do not show a status post for this upload'] = 'Do not show a status post for this upload'; +$a->strings['Permissions'] = 'Permissions'; $a->strings['Do you really want to delete this photo album and all its photos?'] = 'Do you really want to delete this photo album and all its photos?'; $a->strings['Delete Album'] = 'Delete album'; +$a->strings['Cancel'] = 'Cancel'; $a->strings['Edit Album'] = 'Edit album'; $a->strings['Drop Album'] = 'Drop album'; $a->strings['Show Newest First'] = 'Show newest first'; @@ -278,203 +178,19 @@ $a->strings['Rotate CW (right)'] = 'Rotate right (CW)'; $a->strings['Rotate CCW (left)'] = 'Rotate left (CCW)'; $a->strings['This is you'] = 'This is me'; $a->strings['Comment'] = 'Comment'; +$a->strings['Preview'] = 'Preview'; $a->strings['Select'] = 'Select'; $a->strings['Delete'] = 'Delete'; $a->strings['Like'] = 'Like'; $a->strings['I like this (toggle)'] = 'I like this (toggle)'; $a->strings['I don\'t like this (toggle)'] = 'I don\'t like this (toggle)'; $a->strings['Map'] = 'Map'; -$a->strings['View Album'] = 'View album'; -$a->strings['{0} wants to be your friend'] = '{0} wants to be your friend'; -$a->strings['{0} requested registration'] = '{0} requested registration'; -$a->strings['Bad Request.'] = 'Bad request.'; -$a->strings['Contact not found.'] = 'Contact not found.'; -$a->strings['[Friendica System Notify]'] = '[Friendica System Notify]'; -$a->strings['User deleted their account'] = 'User deleted their account'; -$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'A user deleted his or her account on your Friendica node. Please ensure these data are removed from the backups.'; -$a->strings['The user id is %d'] = 'The user id is %d'; -$a->strings['Remove My Account'] = 'Remove My Account'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'This will completely remove your account. Once this has been done it is not recoverable.'; -$a->strings['Please enter your password for verification:'] = 'Please enter your password for verification:'; -$a->strings['Resubscribing to OStatus contacts'] = 'Resubscribing to OStatus contacts'; -$a->strings['Error'] = [ - 0 => 'Error', - 1 => 'Errors', -]; -$a->strings['Failed to connect with email account using the settings provided.'] = 'Failed to connect with email account using the settings provided.'; -$a->strings['Contact CSV file upload error'] = 'Contact CSV file upload error'; -$a->strings['Importing Contacts done'] = 'Importing contacts done'; -$a->strings['Relocate message has been send to your contacts'] = 'Relocate message has been sent to your contacts'; -$a->strings['Passwords do not match.'] = 'Passwords do not match.'; -$a->strings['Password update failed. Please try again.'] = 'Password update failed. Please try again.'; -$a->strings['Password changed.'] = 'Password changed.'; -$a->strings['Password unchanged.'] = 'Password unchanged.'; -$a->strings['Wrong Password.'] = 'Wrong password.'; -$a->strings['Invalid email.'] = 'Invalid email.'; -$a->strings['Cannot change to that email.'] = 'Cannot change to that email.'; -$a->strings['Private forum has no privacy permissions. Using default privacy group.'] = 'Private forum has no privacy permissions. Using default privacy group.'; -$a->strings['Private forum has no privacy permissions and no default privacy group.'] = 'Private forum has no privacy permissions and no default privacy group.'; -$a->strings['Connected Apps'] = 'Connected Apps'; -$a->strings['Name'] = 'Name:'; -$a->strings['Home Page'] = 'Home page'; -$a->strings['Created'] = 'Created'; -$a->strings['Remove authorization'] = 'Remove authorization'; -$a->strings['Addon Settings'] = 'Addon Settings'; -$a->strings['No Addon settings configured'] = 'No addon settings configured'; -$a->strings['Additional Features'] = 'Additional Features'; -$a->strings['Save Settings'] = 'Save settings'; -$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'diaspora* (Socialhome, Hubzilla)'; -$a->strings['enabled'] = 'enabled'; -$a->strings['disabled'] = 'disabled'; -$a->strings['Built-in support for %s connectivity is %s'] = 'Built-in support for %s connectivity is %s'; -$a->strings['Email access is disabled on this site.'] = 'Email access is disabled on this site.'; -$a->strings['None'] = 'None'; -$a->strings['Social Networks'] = 'Social networks'; -$a->strings['General Social Media Settings'] = 'General Social Media Settings'; -$a->strings['Accept only top level posts by contacts you follow'] = 'Accept only top-level posts by contacts you follow'; -$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.'] = 'The system automatically completes threads when a comment arrives. This has a side effect that you may receive posts started by someone you don\'t follow, because one of your followers commented there. This setting will deactivate this behavior. If activated, you will only receive posts from people you really do follow.'; -$a->strings['Attach the link title'] = 'Attach the link title'; -$a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'If 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.'; -$a->strings['Repair OStatus subscriptions'] = 'Repair OStatus subscriptions'; -$a->strings['Email/Mailbox Setup'] = 'Email/Mailbox setup'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Specify how to connect to your mailbox, if you wish to communicate with existing email contacts.'; -$a->strings['Last successful email check:'] = 'Last successful email check:'; -$a->strings['IMAP server name:'] = 'IMAP server name:'; -$a->strings['IMAP port:'] = 'IMAP port:'; -$a->strings['Security:'] = 'Security:'; -$a->strings['Email login name:'] = 'Email login name:'; -$a->strings['Email password:'] = 'Email password:'; -$a->strings['Reply-to address:'] = 'Reply-to address:'; -$a->strings['Send public posts to all email contacts:'] = 'Send public posts to all email contacts:'; -$a->strings['Action after import:'] = 'Action after import:'; -$a->strings['Mark as seen'] = 'Mark as seen'; -$a->strings['Move to folder'] = 'Move to folder'; -$a->strings['Move to folder:'] = 'Move to folder:'; -$a->strings['Unable to find your profile. Please contact your admin.'] = 'Unable to find your profile. Please contact your admin.'; -$a->strings['Account Types'] = 'Account types'; -$a->strings['Personal Page Subtypes'] = 'Personal Page subtypes'; -$a->strings['Community Forum Subtypes'] = 'Community forum subtypes'; -$a->strings['Personal Page'] = 'Personal Page'; -$a->strings['Account for a personal profile.'] = 'Account for a personal profile.'; -$a->strings['Organisation Page'] = 'Organization Page'; -$a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'Account for an organization that automatically approves contact requests as "Followers".'; -$a->strings['News Page'] = 'News Page'; -$a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'Account for a news reflector that automatically approves contact requests as "Followers".'; -$a->strings['Community Forum'] = 'Community Forum'; -$a->strings['Account for community discussions.'] = 'Account for community discussions.'; -$a->strings['Normal Account Page'] = 'Standard'; -$a->strings['Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'] = 'Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'; -$a->strings['Soapbox Page'] = 'Soapbox'; -$a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'Account for a public profile that automatically approves contact requests as "Followers".'; -$a->strings['Public Forum'] = 'Public forum'; -$a->strings['Automatically approves all contact requests.'] = 'Automatically approves all contact requests.'; -$a->strings['Automatic Friend Page'] = 'Love-all'; -$a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'Account for a popular profile that automatically approves contact requests as "Friends".'; -$a->strings['Private Forum [Experimental]'] = 'Private forum [Experimental]'; -$a->strings['Requires manual approval of contact requests.'] = 'Requires manual approval of contact requests.'; -$a->strings['OpenID:'] = 'OpenID:'; -$a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Optional) Allow this OpenID to login to this account.'; -$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.'] = 'Your profile will be published in this node\'s local directory. Your profile details may be publicly visible depending on the system settings.'; -$a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'My identity address: \'%s\' or \'%s\''; -$a->strings['Account Settings'] = 'Account Settings'; -$a->strings['Password Settings'] = 'Password change'; -$a->strings['New Password:'] = 'New password:'; -$a->strings['Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).'] = 'Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).'; -$a->strings['Confirm:'] = 'Confirm new password:'; -$a->strings['Leave password fields blank unless changing'] = 'Leave password fields blank unless changing'; -$a->strings['Current Password:'] = 'Current password:'; -$a->strings['Your current password to confirm the changes'] = 'Current password to confirm change'; -$a->strings['Password:'] = 'Password:'; -$a->strings['Your current password to confirm the changes of the email address'] = 'Your current password to confirm the change of your email address.'; -$a->strings['Delete OpenID URL'] = 'Delete OpenID URL'; -$a->strings['Basic Settings'] = 'Basic information'; -$a->strings['Full Name:'] = 'Full name:'; -$a->strings['Email Address:'] = 'Email address:'; -$a->strings['Your Timezone:'] = 'Time zone:'; -$a->strings['Your Language:'] = 'Language:'; -$a->strings['Set the language we use to show you friendica interface and to send you emails'] = 'Set the language of your Friendica interface and emails sent to you.'; -$a->strings['Default Post Location:'] = 'Posting location:'; -$a->strings['Use Browser Location:'] = 'Use browser location:'; -$a->strings['Security and Privacy Settings'] = 'Security and privacy'; -$a->strings['Maximum Friend Requests/Day:'] = 'Maximum friend requests per day:'; -$a->strings['(to prevent spam abuse)'] = 'May prevent spam and abusive registrations'; -$a->strings['Hide your profile details from anonymous viewers?'] = 'Hide your profile details from anonymous viewers?'; -$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.'] = '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 may still be accessible by other means.'; -$a->strings['Allow friends to post to your profile page?'] = 'Allow friends to post to my wall?'; -$a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'; -$a->strings['Allow friends to tag your posts?'] = 'Allow friends to tag my post?'; -$a->strings['Your contacts can add additional tags to your posts.'] = 'Your contacts can add additional tags to your posts.'; -$a->strings['Permit unknown people to send you private mail?'] = 'Allow unknown people to send me private messages?'; -$a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Friendica network users may send you private messages even if they are not in your contact list.'; -$a->strings['Maximum private messages per day from unknown people:'] = 'Maximum private messages per day from unknown people:'; -$a->strings['Default Post Permissions'] = 'Default post permissions'; -$a->strings['Automatically expire posts after this many days:'] = 'Automatically expire posts after this many days:'; -$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Posts will not expire if empty; expired posts will be deleted'; -$a->strings['When activated, posts and comments will be expired.'] = 'If activated, posts and comments will expire.'; -$a->strings['Expire personal notes'] = 'Expire personal notes'; -$a->strings['When activated, the personal notes on your profile page will be expired.'] = 'If activated, the personal notes on your profile page will expire.'; -$a->strings['When activated, photos will be expired.'] = 'If activated, photos will expire.'; -$a->strings['When activated, your own posts never expire. Then the settings above are only valid for posts you received.'] = 'If activated, your own posts never expire. The settings above are only valid for posts you received.'; -$a->strings['Notification Settings'] = 'Notification'; -$a->strings['Send a notification email when:'] = 'Send notification email when:'; -$a->strings['You receive an introduction'] = 'Receiving an introduction'; -$a->strings['Your introductions are confirmed'] = 'My introductions are confirmed'; -$a->strings['Someone writes on your profile wall'] = 'Someone writes on my wall'; -$a->strings['Someone writes a followup comment'] = 'A follow up comment is posted'; -$a->strings['You receive a private message'] = 'receiving a private message'; -$a->strings['You receive a friend suggestion'] = 'Receiving a friend suggestion'; -$a->strings['You are tagged in a post'] = 'Tagged in a post'; -$a->strings['You are poked/prodded/etc. in a post'] = 'Poked in a post'; -$a->strings['Activate desktop notifications'] = 'Activate desktop notifications'; -$a->strings['Show desktop popup on new notifications'] = 'Show desktop pop-up on new notifications'; -$a->strings['Text-only notification emails'] = 'Text-only notification emails'; -$a->strings['Send text only notification emails, without the html part'] = 'Receive text only emails without HTML '; -$a->strings['Show detailled notifications'] = 'Show detailled notifications'; -$a->strings['Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.'] = 'By default, notifications are condensed into a single notification for each item. If enabled, every notification is displayed.'; -$a->strings['Advanced Account/Page Type Settings'] = 'Advanced account types'; -$a->strings['Change the behaviour of this account for special situations'] = 'Change behavior of this account for special situations'; -$a->strings['Import Contacts'] = 'Import contacts'; -$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'; -$a->strings['Upload File'] = 'Upload file'; -$a->strings['Relocate'] = 'Recent relocation'; -$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.'] = 'If you have moved this profile from another server and some of your contacts don\'t receive your updates:'; -$a->strings['Resend relocate message to contacts'] = 'Resend relocation message to contacts'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'No suggestions available. If this is a new site, please try again in 24 hours.'; -$a->strings['Friend Suggestions'] = 'Friend suggestions'; -$a->strings['photo'] = 'photo'; -$a->strings['status'] = 'status'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s tagged %2$s\'s %3$s with %4$s'; -$a->strings['Remove Item Tag'] = 'Remove Item tag'; -$a->strings['Select a tag to remove: '] = 'Select a tag to remove: '; -$a->strings['Remove'] = 'Remove'; -$a->strings['User imports on closed servers can only be done by an administrator.'] = 'User imports on closed servers can only be done by an administrator.'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'; -$a->strings['Import'] = 'Import profile'; -$a->strings['Move account'] = 'Move Existing Friendica Account'; -$a->strings['You can import an account from another Friendica server.'] = 'You can import an existing Friendica profile to this node.'; -$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.'] = '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.'; -$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora.'; -$a->strings['Account file'] = 'Account file:'; -$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'To export your account, go to "Settings->Export personal data" and select "Export account"'; -$a->strings['You aren\'t following this contact.'] = 'You aren\'t following this contact.'; -$a->strings['Unfollowing is currently not supported by your network.'] = 'Unfollowing is currently not supported by your network.'; -$a->strings['Disconnect/Unfollow'] = 'Disconnect/Unfollow'; -$a->strings['Invalid request.'] = 'Invalid request.'; -$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Sorry, maybe your upload is bigger than the PHP configuration allows'; -$a->strings['Or - did you try to upload an empty file?'] = 'Or did you try to upload an empty file?'; -$a->strings['File exceeds size limit of %s'] = 'File exceeds size limit of %s'; -$a->strings['File upload failed.'] = 'File upload failed.'; -$a->strings['Wall Photos'] = 'Wall photos'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Number of daily wall messages for %s exceeded. Message failed.'; -$a->strings['Unable to check your home location.'] = 'Unable to check your home location.'; -$a->strings['No recipient.'] = 'No recipient.'; -$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'; $a->strings['No system theme config value set.'] = 'No system theme configuration value set.'; -$a->strings['You must be logged in to use addons. '] = 'You must be logged in to use addons. '; $a->strings['Delete this item?'] = 'Delete this item?'; $a->strings['toggle mobile'] = 'Toggle mobile'; $a->strings['Method not allowed for this module. Allowed method(s): %s'] = 'Method not allowed for this module. Allowed method(s): %s'; $a->strings['Page not found.'] = 'Page not found'; +$a->strings['You must be logged in to use addons. '] = 'You must be logged in to use addons. '; $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.'] = 'The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours.'; $a->strings['All contacts'] = 'All contacts'; $a->strings['Followers'] = 'Followers'; @@ -489,7 +205,10 @@ $a->strings['Check for pending update actions.'] = 'Check for pending update act $a->strings['Done.'] = 'Done.'; $a->strings['Execute pending post updates.'] = 'Execute pending post updates.'; $a->strings['All pending post updates are done.'] = 'All pending post updates are done.'; +$a->strings['User not found'] = 'User not found'; $a->strings['Enter new password: '] = 'Enter new password: '; +$a->strings['Password update failed. Please try again.'] = 'Password update failed. Please try again.'; +$a->strings['Password changed.'] = 'Password changed.'; $a->strings['newer'] = 'Later posts'; $a->strings['older'] = 'Earlier posts'; $a->strings['Frequently'] = 'Frequently'; @@ -515,25 +234,12 @@ $a->strings['Diaspora Connector'] = 'diaspora* connector'; $a->strings['GNU Social Connector'] = 'GNU Social Connector'; $a->strings['ActivityPub'] = 'ActivityPub'; $a->strings['pnut'] = 'pnut'; -$a->strings['%s likes this.'] = '%s likes this.'; -$a->strings['%s doesn\'t like this.'] = '%s doesn\'t like this.'; -$a->strings['%s attends.'] = '%s attends.'; -$a->strings['%s doesn\'t attend.'] = '%s won\'t attend.'; -$a->strings['%s attends maybe.'] = '%s might attend.'; -$a->strings['%s reshared this.'] = '%s reshared this.'; $a->strings['and'] = 'and'; $a->strings['and %d other people'] = 'and %d other people'; -$a->strings['%2$d people like this'] = '%2$d people like this'; -$a->strings['%s like this.'] = '%s like this.'; -$a->strings['%2$d people don\'t like this'] = '%2$d people don\'t like this'; -$a->strings['%s don\'t like this.'] = '%s don\'t like this.'; -$a->strings['%2$d people attend'] = '%2$d people attend'; -$a->strings['%s attend.'] = '%s attend.'; -$a->strings['%2$d people don\'t attend'] = '%2$d people won\'t attend'; -$a->strings['%s don\'t attend.'] = '%s won\'t attend.'; -$a->strings['%2$d people attend maybe'] = '%2$d people might attend'; -$a->strings['%s attend maybe.'] = '%s may be attending.'; -$a->strings['%2$d people reshared this'] = '%2$d people reshared this'; +$a->strings[' doesn\'t like this'] = [ + 0 => ' doesn\'t like this', + 1 => ' don\'t like this', +]; $a->strings['Visible to everybody'] = 'Visible to everybody'; $a->strings['Please enter a image/video/audio/webpage URL:'] = 'Please enter an image/video/audio/webpage URL:'; $a->strings['Tag term:'] = 'Tag term:'; @@ -542,6 +248,9 @@ $a->strings['Where are you right now?'] = 'Where are you right now?'; $a->strings['Delete item(s)?'] = 'Delete item(s)?'; $a->strings['New Post'] = 'New post'; $a->strings['Share'] = 'Share'; +$a->strings['upload photo'] = 'upload photo'; +$a->strings['Attach file'] = 'Attach file'; +$a->strings['attach file'] = 'attach file'; $a->strings['Bold'] = 'Bold'; $a->strings['Italic'] = 'Italic'; $a->strings['Underline'] = 'Underline'; @@ -550,39 +259,59 @@ $a->strings['Code'] = 'Code'; $a->strings['Image'] = 'Image'; $a->strings['Link'] = 'Link'; $a->strings['Link or Media'] = 'Link or media'; +$a->strings['Set your location'] = 'Set your location'; +$a->strings['set location'] = 'set location'; +$a->strings['Clear browser location'] = 'Clear browser location'; +$a->strings['clear location'] = 'clear location'; +$a->strings['Set title'] = 'Set title'; +$a->strings['Categories (comma-separated list)'] = 'Categories (comma-separated list)'; +$a->strings['Permission settings'] = 'Permission settings'; +$a->strings['Public post'] = 'Public post'; +$a->strings['Message'] = 'Message'; +$a->strings['Browser'] = 'Browser'; +$a->strings['Open Compose page'] = 'Open compose page'; +$a->strings['remove'] = 'Remove'; +$a->strings['Delete Selected Items'] = 'Delete selected items'; +$a->strings['You had been addressed (%s).'] = 'You have been addressed (%s).'; +$a->strings['%s reshared this.'] = '%s reshared this.'; $a->strings['View %s\'s profile @ %s'] = 'View %s\'s profile @ %s'; $a->strings['Categories:'] = 'Categories:'; $a->strings['Filed under:'] = 'Filed under:'; $a->strings['%s from %s'] = '%s from %s'; $a->strings['View in context'] = 'View in context'; -$a->strings['remove'] = 'Remove'; -$a->strings['Delete Selected Items'] = 'Delete selected items'; -$a->strings['You had been addressed (%s).'] = 'You have been addressed (%s).'; +$a->strings['Local Community'] = 'Local community'; +$a->strings['Posts from local users on this server'] = 'Posts from local users on this server'; +$a->strings['Global Community'] = 'Global community'; +$a->strings['Posts from users of the whole federated network'] = 'Posts from users of the whole federated network'; +$a->strings['Latest Activity'] = 'Latest activity'; +$a->strings['Sort by latest activity'] = 'Sort by latest activity'; +$a->strings['Latest Posts'] = 'Latest posts'; +$a->strings['Sort by post received date'] = 'Sort by post received date'; +$a->strings['Personal'] = 'Personal'; +$a->strings['Posts that mention or involve you'] = 'Posts mentioning or involving me'; +$a->strings['Starred'] = 'Starred'; +$a->strings['Favourite Posts'] = 'My favorite posts'; $a->strings['General Features'] = 'General'; $a->strings['Photo Location'] = 'Photo location'; $a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'Photo metadata is normally removed. This saves the geo tag (if present) and links it to a map prior to removing other metadata.'; $a->strings['Trending Tags'] = 'Trending tags'; $a->strings['Show a community page widget with a list of the most popular tags in recent public posts.'] = 'Show a community page widget with a list of the most popular tags in recent public posts.'; $a->strings['Post Composition Features'] = 'Post composition'; -$a->strings['Auto-mention Forums'] = 'Auto-mention forums'; -$a->strings['Add/remove mention when a forum page is selected/deselected in ACL window.'] = 'Add/Remove mention when a forum page is selected or deselected in the ACL window.'; $a->strings['Explicit Mentions'] = 'Explicit Mentions'; $a->strings['Add explicit mentions to comment box for manual control over who gets mentioned in replies.'] = 'Add explicit mentions to comment box for manual control over who gets mentioned in replies.'; $a->strings['Post/Comment Tools'] = 'Post/Comment tools'; $a->strings['Post Categories'] = 'Post categories'; $a->strings['Add categories to your posts'] = 'Add categories to your posts'; $a->strings['Advanced Profile Settings'] = 'Advanced profiles'; -$a->strings['List Forums'] = 'List forums'; -$a->strings['Show visitors public community forums at the Advanced Profile Page'] = 'Show visitors of public community forums at the advanced profile page'; $a->strings['Tag Cloud'] = 'Tag cloud'; $a->strings['Provide a personal tag cloud on your profile page'] = 'Provide a personal tag cloud on your profile page'; $a->strings['Display Membership Date'] = 'Display membership date'; $a->strings['Display membership date in profile'] = 'Display membership date in profile'; -$a->strings['Forums'] = 'Forums'; -$a->strings['External link to forum'] = 'External link to forum'; $a->strings['show more'] = 'show more'; -$a->strings['%1$s poked %2$s'] = '%1$s poked %2$s'; $a->strings['event'] = 'event'; +$a->strings['status'] = 'status'; +$a->strings['photo'] = 'photo'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s tagged %2$s\'s %3$s with %4$s'; $a->strings['Follow Thread'] = 'Follow thread'; $a->strings['View Status'] = 'View status'; $a->strings['View Profile'] = 'View profile'; @@ -592,24 +321,23 @@ $a->strings['View Contact'] = 'View contact'; $a->strings['Send PM'] = 'Send PM'; $a->strings['Block'] = 'Block'; $a->strings['Ignore'] = 'Ignore'; -$a->strings['Poke'] = 'Poke'; +$a->strings['Connect/Follow'] = 'Connect/Follow'; $a->strings['Nothing new here'] = 'Nothing new here'; $a->strings['Go back'] = 'Go back'; $a->strings['Clear notifications'] = 'Clear notifications'; -$a->strings['@name, !forum, #tags, content'] = '@name, !forum, #tags, content'; $a->strings['Logout'] = 'Logout'; $a->strings['End this session'] = 'End this session'; $a->strings['Login'] = 'Login'; $a->strings['Sign in'] = 'Sign in'; -$a->strings['Status'] = 'Status'; -$a->strings['Your posts and conversations'] = 'My posts and conversations'; $a->strings['Profile'] = 'Profile'; $a->strings['Your profile page'] = 'My profile page'; +$a->strings['Photos'] = 'Photos'; $a->strings['Your photos'] = 'My photos'; -$a->strings['Your events'] = 'My events'; +$a->strings['Calendar'] = 'Calendar'; $a->strings['Personal notes'] = 'Personal notes'; $a->strings['Your personal notes'] = 'My personal notes'; $a->strings['Home'] = 'Home'; +$a->strings['Home Page'] = 'Home page'; $a->strings['Register'] = 'Sign up now >>'; $a->strings['Create an account'] = 'Create account'; $a->strings['Help'] = 'Help'; @@ -623,7 +351,6 @@ $a->strings['Tags'] = 'Tags'; $a->strings['Contacts'] = 'Contacts'; $a->strings['Community'] = 'Community'; $a->strings['Conversations on this and other servers'] = 'Conversations on this and other servers'; -$a->strings['Events and Calendar'] = 'Events and calendar'; $a->strings['Directory'] = 'Directory'; $a->strings['People directory'] = 'People directory'; $a->strings['Information'] = 'Information'; @@ -632,11 +359,12 @@ $a->strings['Terms of Service'] = 'Terms of Service'; $a->strings['Terms of Service of this Friendica instance'] = 'Terms of Service of this Friendica instance'; $a->strings['Network'] = 'Network'; $a->strings['Conversations from your friends'] = 'My friends\' conversations'; +$a->strings['Your posts and conversations'] = 'My posts and conversations'; $a->strings['Introductions'] = 'Introductions'; $a->strings['Friend Requests'] = 'Friend requests'; $a->strings['Notifications'] = 'Notifications'; $a->strings['See all notifications'] = 'See all notifications'; -$a->strings['Mark all system notifications seen'] = 'Mark notifications as seen'; +$a->strings['Mark as seen'] = 'Mark as seen'; $a->strings['Private mail'] = 'Private messages'; $a->strings['Inbox'] = 'Inbox'; $a->strings['Outbox'] = 'Outbox'; @@ -675,12 +403,12 @@ $a->strings['Find People'] = 'Find people'; $a->strings['Enter name or interest'] = 'Enter name or interest'; $a->strings['Examples: Robert Morgenstein, Fishing'] = 'Examples: Robert Morgenstein, fishing'; $a->strings['Find'] = 'Find'; +$a->strings['Friend Suggestions'] = 'Friend suggestions'; $a->strings['Similar Interests'] = 'Similar interests'; $a->strings['Random Profile'] = 'Random profile'; $a->strings['Invite Friends'] = 'Invite friends'; $a->strings['Global Directory'] = 'Global directory'; $a->strings['Local Directory'] = 'Local directory'; -$a->strings['Groups'] = 'Groups'; $a->strings['Relationships'] = 'Relationships'; $a->strings['All Contacts'] = 'All contacts'; $a->strings['Protocols'] = 'Protocols'; @@ -695,6 +423,7 @@ $a->strings['%d contact in common'] = [ $a->strings['Archives'] = 'Archives'; $a->strings['Organisations'] = 'Organizations'; $a->strings['News'] = 'News'; +$a->strings['Account Types'] = 'Account types'; $a->strings['Export'] = 'Export'; $a->strings['Export calendar as ical'] = 'Export calendar as ical'; $a->strings['Export calendar as csv'] = 'Export calendar as csv'; @@ -712,6 +441,7 @@ $a->strings['Trending Tags (last %d hour)'] = [ ]; $a->strings['More Trending Tags'] = 'More trending tags'; $a->strings['XMPP:'] = 'XMPP:'; +$a->strings['Location:'] = 'Location:'; $a->strings['Network:'] = 'Network:'; $a->strings['Unfollow'] = 'Unfollow'; $a->strings['Mutuals'] = 'Mutuals'; @@ -722,6 +452,8 @@ $a->strings['Limited/Private'] = 'Limited/Private'; $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.'] = 'This post 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 publicly.'; $a->strings['Show to:'] = 'Show to:'; $a->strings['Except to:'] = 'Except to:'; +$a->strings['CC: email addresses'] = 'CC: email addresses'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Example: bob@example.com, mary@example.com'; $a->strings['Connectors'] = 'Connectors'; $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.'] = '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->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'You may need to import the file "database.sql" manually using phpmyadmin or mysql.'; @@ -816,18 +548,11 @@ $a->strings['Sep'] = 'Sep'; $a->strings['Oct'] = 'Oct'; $a->strings['Nov'] = 'Nov'; $a->strings['Dec'] = 'Dec'; -$a->strings['poke'] = 'poke'; -$a->strings['poked'] = 'poked'; -$a->strings['ping'] = 'ping'; -$a->strings['pinged'] = 'pinged'; -$a->strings['prod'] = 'prod'; -$a->strings['prodded'] = 'prodded'; -$a->strings['slap'] = 'slap'; -$a->strings['slapped'] = 'slapped'; -$a->strings['finger'] = 'finger'; -$a->strings['fingered'] = 'fingered'; -$a->strings['rebuff'] = 'rebuff'; -$a->strings['rebuffed'] = 'rebuffed'; +$a->strings['The logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'The logfile \'%s\' is not usable. No logging is possible (error: \'%s\')'; +$a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'The debug logfile \'%s\' is not usable. No logging is possible (error: \'%s\')'; +$a->strings['Storage base path'] = 'Storage base path'; +$a->strings['Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree'] = 'Folder where uploaded files are saved. For maximum security, this should be a path outside web server folder tree'; +$a->strings['Enter a valid existing folder'] = 'Enter a valid existing folder'; $a->strings['Update %s failed. See error logs.'] = 'Update %s failed. See error logs.'; $a->strings[' The friendica developers released update %s recently, @@ -839,19 +564,6 @@ $a->strings[' This needs to be fixed soon and I can\'t do it alone. Please contact a friendica developer if you can not help me on your own. My database might be invalid.'; $a->strings['[Friendica Notify] Database update'] = '[Friendica Notify] Database update'; -$a->strings[' - The friendica database was successfully updated from %s to %s.'] = ' - The friendica database was successfully updated from %s to %s.'; -$a->strings['Error decoding account file'] = 'Error decoding account file'; -$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Error! No version data in file! Is this a Friendica account file?'; -$a->strings['User \'%s\' already exists on this server!'] = 'User \'%s\' already exists on this server!'; -$a->strings['User creation error'] = 'User creation error'; -$a->strings['%d contact not imported'] = [ - 0 => '%d contact not imported', - 1 => '%d contacts not imported', -]; -$a->strings['User profile creation error'] = 'User profile creation error'; -$a->strings['Done. You can now login with your username and password'] = 'Done. You can now login with your username and password'; $a->strings['The database version had been set to %s.'] = 'The database version has been set to %s.'; $a->strings[' Error %d occurred during database update: @@ -866,10 +578,11 @@ $a->strings['%s: updating %s table.'] = '%s: updating %s table.'; $a->strings['Unauthorized'] = 'Unauthorized'; $a->strings['Internal Server Error'] = 'Internal Server Error'; $a->strings['Legacy module file not found: %s'] = 'Legacy module file not found: %s'; -$a->strings['UnFollow'] = 'Unfollow'; +$a->strings['Everybody'] = 'Everybody'; +$a->strings['edit'] = 'edit'; +$a->strings['add'] = 'add'; $a->strings['Approve'] = 'Approve'; $a->strings['Organisation'] = 'Organization'; -$a->strings['Forum'] = 'Forum'; $a->strings['Disallowed profile URL.'] = 'Disallowed profile URL.'; $a->strings['Blocked domain'] = 'Blocked domain'; $a->strings['Connect URL missing.'] = 'Connect URL missing.'; @@ -887,7 +600,12 @@ $a->strings['Starts:'] = 'Starts:'; $a->strings['Finishes:'] = 'Finishes:'; $a->strings['all-day'] = 'All-day'; $a->strings['Sept'] = 'Sep'; +$a->strings['today'] = 'today'; +$a->strings['month'] = 'month'; +$a->strings['week'] = 'week'; +$a->strings['day'] = 'day'; $a->strings['No events to display'] = 'No events to display'; +$a->strings['Access to this profile has been restricted.'] = 'Access to this profile has been restricted.'; $a->strings['l, F j'] = 'l, F j'; $a->strings['Edit event'] = 'Edit event'; $a->strings['Duplicate event'] = 'Duplicate event'; @@ -899,32 +617,23 @@ $a->strings['Show map'] = 'Show map'; $a->strings['Hide map'] = 'Hide map'; $a->strings['%s\'s birthday'] = '%s\'s birthday'; $a->strings['Happy Birthday %s'] = 'Happy Birthday, %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.'] = 'A deleted group with this name has been 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.'; -$a->strings['Default privacy group for new contacts'] = 'Default privacy group for new contacts'; -$a->strings['Everybody'] = 'Everybody'; -$a->strings['edit'] = 'edit'; -$a->strings['add'] = 'add'; -$a->strings['Edit group'] = 'Edit group'; -$a->strings['Contacts not in any group'] = 'Contacts not in any group'; -$a->strings['Create a new group'] = 'Create new group'; -$a->strings['Group Name: '] = 'Group name: '; -$a->strings['Edit groups'] = 'Edit groups'; $a->strings['activity'] = 'activity'; $a->strings['post'] = 'post'; $a->strings['Content warning: %s'] = 'Content warning: %s'; $a->strings['bytes'] = 'bytes'; $a->strings['View on separate page'] = 'View on separate page'; $a->strings['[no subject]'] = '[no subject]'; +$a->strings['Wall Photos'] = 'Wall photos'; $a->strings['Edit profile'] = 'Edit profile'; $a->strings['Change profile photo'] = 'Change profile photo'; $a->strings['Homepage:'] = 'Homepage:'; $a->strings['About:'] = 'About:'; $a->strings['Atom feed'] = 'Atom feed'; -$a->strings['g A l F d'] = 'g A l F d'; $a->strings['F d'] = 'F d'; $a->strings['[today]'] = '[today]'; $a->strings['Birthday Reminders'] = 'Birthday reminders'; $a->strings['Birthdays this week:'] = 'Birthdays this week:'; +$a->strings['g A l F d'] = 'g A l F d'; $a->strings['[No description]'] = '[No description]'; $a->strings['Event Reminders'] = 'Event reminders'; $a->strings['Upcoming events the next 7 days:'] = 'Upcoming events the next 7 days:'; @@ -946,16 +655,12 @@ $a->strings['Love/romance'] = 'Love/Romance:'; $a->strings['Work/employment'] = 'Work/Employment:'; $a->strings['School/education'] = 'School/Education:'; $a->strings['Contact information and Social Networks'] = 'Contact information and other social networks:'; -$a->strings['Storage base path'] = 'Storage base path'; -$a->strings['Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree'] = 'Folder where uploaded files are saved. For maximum security, this should be a path outside web server folder tree'; -$a->strings['Enter a valid existing folder'] = 'Enter a valid existing folder'; $a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'SERIOUS ERROR: Generation of security keys failed.'; $a->strings['Login failed'] = 'Login failed'; $a->strings['Not enough information to authenticate'] = 'Not enough information to authenticate'; $a->strings['Password can\'t be empty'] = 'Password can\'t be empty'; $a->strings['Empty passwords are not allowed.'] = 'Empty passwords are not allowed.'; $a->strings['The new password has been exposed in a public data dump, please choose another.'] = 'The new password has been exposed in a public data dump; please choose another.'; -$a->strings['The password can\'t contain accentuated letters, white spaces or colons (:)'] = 'The password can\'t contain accentuated letters, white spaces or colons (:)'; $a->strings['Passwords do not match. Password unchanged.'] = 'Passwords do not match. Password unchanged.'; $a->strings['An invitation is required.'] = 'An invitation is required.'; $a->strings['Invitation could not be verified.'] = 'Invitation could not be verified.'; @@ -983,7 +688,6 @@ $a->strings['An error occurred during registration. Please try again.'] = 'An er $a->strings['An error occurred creating your default profile. Please try again.'] = 'An error occurred creating your default profile. Please try again.'; $a->strings['An error occurred creating your self contact. Please try again.'] = 'An error occurred creating your self contact. Please try again.'; $a->strings['Friends'] = 'Friends'; -$a->strings['An error occurred creating your default contact group. Please try again.'] = 'An error occurred while creating your default contact group. Please try again.'; $a->strings['Profile Photos'] = 'Profile photos'; $a->strings['Registration details for %s'] = 'Registration details for %s'; $a->strings[' @@ -1013,59 +717,6 @@ $a->strings[' Dear %1$s, Thank you for registering at %2$s. Your account has been created. '; -$a->strings[' - The login details are as follows: - - Site Location: %3$s - Login Name: %1$s - Password: %5$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %3$s/removeme - - Thank you and welcome to %2$s.'] = ' - The login details are as follows: - - Site Location: %3$s - Login Name: %1$s - Password: %5$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %3$s/removeme - - Thank you and welcome to %2$s.'; $a->strings['Addon not found.'] = 'Addon not found.'; $a->strings['Addon %s disabled.'] = 'Addon %s disabled.'; $a->strings['Addon %s enabled.'] = 'Addon %s enabled.'; @@ -1077,61 +728,9 @@ $a->strings['Toggle'] = 'Toggle'; $a->strings['Author: '] = 'Author: '; $a->strings['Maintainer: '] = 'Maintainer: '; $a->strings['Addon %s failed to install.'] = 'Addon %s failed to install.'; +$a->strings['Save Settings'] = 'Save settings'; $a->strings['Reload active addons'] = 'Reload active addons'; $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'] = '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'; -$a->strings['Pending'] = 'Pending'; -$a->strings['Blocked'] = 'Blocked'; -$a->strings['Private Forum'] = 'Private Forum'; -$a->strings['Relay'] = 'Relay'; -$a->strings['%s contact unblocked'] = [ - 0 => '%s contact unblocked', - 1 => '%s contacts unblocked', -]; -$a->strings['Remote Contact Blocklist'] = 'Remote contact block-list'; -$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'This page allows you to prevent any message from a remote contact to reach your node.'; -$a->strings['Block Remote Contact'] = 'Block remote contact'; -$a->strings['select all'] = 'select all'; -$a->strings['select none'] = 'select none'; -$a->strings['Unblock'] = 'Unblock'; -$a->strings['No remote contact is blocked from this node.'] = 'No remote contact is blocked from this node.'; -$a->strings['Blocked Remote Contacts'] = 'Blocked remote contacts'; -$a->strings['Block New Remote Contact'] = 'Block new remote contact'; -$a->strings['Photo'] = 'Photo'; -$a->strings['Reason'] = 'Reason'; -$a->strings['%s total blocked contact'] = [ - 0 => '%s total blocked contact', - 1 => '%s blocked contacts', -]; -$a->strings['URL of the remote contact to block.'] = 'URL of the remote contact to block.'; -$a->strings['Block Reason'] = 'Block reason'; -$a->strings['Server domain pattern added to blocklist.'] = 'Server domain pattern added to block-list.'; -$a->strings['Blocked server domain pattern'] = 'Blocked server domain pattern'; -$a->strings['Reason for the block'] = 'Reason for the block'; -$a->strings['Delete server domain pattern'] = 'Delete server domain pattern'; -$a->strings['Check to delete this entry from the blocklist'] = 'Check to delete this entry from the block-list'; -$a->strings['Server Domain Pattern Blocklist'] = 'Server domain pattern block-list'; -$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.'] = 'The list of blocked server domain patterns will be made publicly available on the /friendica page so that your users and people investigating communication problems can find the reason easily.'; -$a->strings['

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

    -
      -
    • *: Any number of characters
    • -
    • ?: Any single character
    • -
    • [<char1><char2>...]: char1 or char2
    • -
    '] = '

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

    -
      -
    • *: Any number of characters
    • -
    • ?: Any single character
    • -
    • [<char1><char2>...]: char1 or char2
    • -
    '; -$a->strings['Add new entry to block list'] = 'Add new entry to block-list'; -$a->strings['Server Domain Pattern'] = 'Server Domain Pattern'; -$a->strings['The domain pattern of the new server to add to the block list. Do not include the protocol.'] = 'The domain pattern of the new server to add to the block-list. Do not include the protocol.'; -$a->strings['Block reason'] = 'Block reason'; -$a->strings['The reason why you blocked this server domain pattern.'] = 'The reason why you blocked this server domain pattern.'; -$a->strings['Add Entry'] = 'Add entry'; -$a->strings['Save changes to the blocklist'] = 'Save changes to the block-list'; -$a->strings['Current Entries in the Blocklist'] = 'Current entries in the block-list'; -$a->strings['Delete entry from blocklist'] = 'Delete entry from block-list'; -$a->strings['Delete entry from blocklist?'] = 'Delete entry from block-list?'; $a->strings['Update has been marked successful'] = 'Update has been marked successful'; $a->strings['Database structure update %s was successfully applied.'] = 'Database structure update %s was successfully applied.'; $a->strings['Executing of database structure update %s failed with error: %s'] = 'Execution of database structure update %s failed with error: %s'; @@ -1151,17 +750,6 @@ $a->strings['Other'] = 'Other'; $a->strings['unknown'] = 'unknown'; $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.'] = 'This page offers statistics about the federated social network, of which your Friendica node is one part. These numbers do not represent the entire network, but merely the parts that are connected to your node."'; $a->strings['Federation Statistics'] = 'Federation statistics'; -$a->strings['Currently this node is aware of %d nodes with %d registered users from the following platforms:'] = 'Currently, this node is aware of %d nodes with %d registered users from the following platforms:'; -$a->strings['Item marked for deletion.'] = 'Item marked for deletion.'; -$a->strings['Delete Item'] = 'Delete item'; -$a->strings['Delete this Item'] = 'Delete'; -$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.'] = 'Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted.'; -$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.'] = 'You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 123456.'; -$a->strings['GUID'] = 'GUID'; -$a->strings['The GUID of the item you want to delete.'] = 'GUID of item to be deleted.'; -$a->strings['Item Source'] = 'Item source'; -$a->strings['Item Guid'] = 'Item Guid'; -$a->strings['Type'] = 'Type'; $a->strings['The logfile \'%s\' is not writable. No logging possible'] = 'The logfile \'%s\' is not writable. No logging is possible'; $a->strings['PHP log currently enabled.'] = 'PHP log currently enabled.'; $a->strings['PHP log currently disabled.'] = 'PHP log currently disabled.'; @@ -1175,17 +763,17 @@ $a->strings['PHP logging'] = 'PHP logging'; $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.'] = '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->strings['View Logs'] = 'View logs'; $a->strings['Show all'] = 'Show all'; +$a->strings['Event details'] = 'Event details'; $a->strings['Inspect Deferred Worker Queue'] = 'Inspect deferred worker queue'; $a->strings['This page lists the deferred worker jobs. This are jobs that couldn\'t be executed at the first time.'] = 'This page lists the deferred worker jobs. These are jobs that couldn\'t initially be executed.'; $a->strings['Inspect Worker Queue'] = 'Inspect worker queue'; $a->strings['This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you\'ve set up during install.'] = 'This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you\'ve set up during install.'; $a->strings['ID'] = 'ID'; $a->strings['Job Parameters'] = 'Job parameters'; +$a->strings['Created'] = 'Created'; $a->strings['Priority'] = 'Priority'; -$a->strings['Can not parse base url. Must have at least ://'] = 'Can not parse base URL. Must have at least ://'; $a->strings['No special theme for mobile devices'] = 'No special theme for mobile devices'; $a->strings['%s - (Experimental)'] = '%s - (Experimental)'; -$a->strings['No community page for local users'] = 'No community page for local users'; $a->strings['No community page'] = 'No community page'; $a->strings['Public postings from users of this site'] = 'Public postings from users of this site'; $a->strings['Public postings from the federated network'] = 'Public postings from the federated network'; @@ -1194,9 +782,6 @@ $a->strings['Multi user instance'] = 'Multi user instance'; $a->strings['Closed'] = 'Closed'; $a->strings['Requires approval'] = 'Requires approval'; $a->strings['Open'] = 'Open'; -$a->strings['No SSL policy, links will track page SSL state'] = 'No SSL policy, links will track page SSL state'; -$a->strings['Force all links to use SSL'] = 'Force all links to use SSL'; -$a->strings['Self-signed certificate, use SSL for local links only (discouraged)'] = 'Self-signed certificate, use SSL for local links only (discouraged)'; $a->strings['Don\'t check'] = 'Don\'t check'; $a->strings['check the stable version'] = 'check for stable version updates'; $a->strings['check the development version'] = 'check for development version updates'; @@ -1205,11 +790,11 @@ $a->strings['Republish users to directory'] = 'Republish users to directory'; $a->strings['Registration'] = 'Registration'; $a->strings['File upload'] = 'File upload'; $a->strings['Policies'] = 'Policies'; +$a->strings['Advanced'] = 'Advanced'; $a->strings['Auto Discovered Contact Directory'] = 'Auto-discovered contact directory'; $a->strings['Performance'] = 'Performance'; $a->strings['Worker'] = 'Worker'; $a->strings['Message Relay'] = 'Message relay'; -$a->strings['Relocate Instance'] = 'Relocate Instance'; $a->strings['Site name'] = 'Site name'; $a->strings['Sender Email'] = 'Sender email'; $a->strings['The email address your server shall use to send notification emails from.'] = 'The email address your server shall use to send notification emails from.'; @@ -1222,17 +807,13 @@ $a->strings['Additional Info'] = 'Additional Info'; $a->strings['For public servers: you can add additional information here that will be listed at %s/servers.'] = 'For public servers: You can add additional information here that will be listed at %s/servers.'; $a->strings['System language'] = 'System language'; $a->strings['System theme'] = 'System theme'; -$a->strings['Default system theme - may be over-ridden by user profiles - Change default theme settings'] = 'Default system theme - may be over-ridden by user profiles - Change default theme settings'; $a->strings['Mobile system theme'] = 'Mobile system theme'; $a->strings['Theme for mobile devices'] = 'Theme for mobile devices'; -$a->strings['SSL link policy'] = 'SSL link policy'; -$a->strings['Determines whether generated links should be forced to use SSL'] = 'Determines whether generated links should be forced to use SSL'; $a->strings['Force SSL'] = 'Force SSL'; $a->strings['Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'] = 'Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'; $a->strings['Single user instance'] = 'Single user instance'; $a->strings['Make this instance multi-user or single-user for the named user'] = 'Make this instance multi-user or single-user for the named user'; $a->strings['Maximum image size'] = 'Maximum image size'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'Maximum size in bytes of uploaded images. Default is 0, which means no limits.'; $a->strings['Maximum image length'] = 'Maximum image length'; $a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'; $a->strings['JPEG image quality'] = 'JPEG image quality'; @@ -1260,7 +841,6 @@ $a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Enabling $a->strings['Global directory URL'] = 'Global directory URL'; $a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'URL to the global directory: If this is not set, the global directory is completely unavailable to the application.'; $a->strings['Private posts by default for new users'] = 'Private posts by default for new users'; -$a->strings['Set default post permissions for all new members to the default privacy group rather than public.'] = 'Set default post permissions for all new members to the default privacy group rather than public.'; $a->strings['Don\'t include post content in email notifications'] = 'Don\'t include post content in email notifications'; $a->strings['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.'] = 'Don\'t include the content of a post/comment/private message in the email notifications sent from this site, as a privacy measure.'; $a->strings['Disallow public access to addons listed in the apps menu.'] = 'Disallow public access to addons listed in the apps menu.'; @@ -1285,8 +865,6 @@ $a->strings['Network timeout'] = 'Network timeout'; $a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Value is in seconds. Set to 0 for unlimited (not recommended).'; $a->strings['Maximum Load Average'] = 'Maximum load average'; $a->strings['Maximum system load before delivery and poll processes are deferred - default %d.'] = 'Maximum system load before delivery and poll processes are deferred - default %d.'; -$a->strings['Maximum Load Average (Frontend)'] = 'Maximum load average (frontend)'; -$a->strings['Maximum system load before the frontend quits service - default 50.'] = 'Maximum system load before the frontend quits service (default 50).'; $a->strings['Minimal Memory'] = 'Minimal memory'; $a->strings['Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).'] = 'Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).'; $a->strings['Days between requery'] = 'Days between enquiry'; @@ -1314,12 +892,10 @@ $a->strings['Temp path'] = 'Temp path'; $a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Enter a different temp path if your system restricts the webserver\'s access to the system temp path.'; $a->strings['Only search in tags'] = 'Only search in tags'; $a->strings['On large systems the text search can slow down the system extremely.'] = 'On large systems, the text search can slow down the system significantly.'; -$a->strings['New base url'] = 'New base URL'; -$a->strings['Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users.'] = 'Change base URL for this server. Sends a relocate message to all Friendica and diaspora* contacts, for all users.'; $a->strings['Maximum number of parallel workers'] = '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.'] = 'On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d.'; $a->strings['Enable fastlane'] = 'Enable fast-lane'; -$a->strings['When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.'] = 'The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.'; +$a->strings['When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.'] = 'When enabled, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.'; $a->strings['Direct relay transfer'] = 'Direct relay transfer'; $a->strings['Enables the direct transfer to other servers without using the relay servers'] = 'Enables direct transfer to other servers without using a relay server.'; $a->strings['Relay scope'] = 'Relay scope'; @@ -1344,21 +920,11 @@ $a->strings['The last worker execution was on %s UTC. This is older than one hou $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.'] = 'Friendica\'s configuration is now 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..htconfig.php. See the Config help page for help with the transition.'; $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.'] = 'Friendica\'s configuration is now 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->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.'] = '%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->strings['The logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'The logfile \'%s\' is not usable. No logging is possible (error: \'%s\')'; -$a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'The debug logfile \'%s\' is not usable. No logging is possible (error: \'%s\')'; $a->strings['Friendica\'s system.basepath was updated from \'%s\' to \'%s\'. Please remove the system.basepath from your db to avoid differences.'] = 'The system.basepath was updated from \'%s\' to \'%s\'. Please remove the system.basepath from your db to avoid differences.'; $a->strings['Friendica\'s current system.basepath \'%s\' is wrong and the config file \'%s\' isn\'t used.'] = 'The current system.basepath \'%s\' is wrong and the config file \'%s\' isn\'t used.'; $a->strings['Friendica\'s current system.basepath \'%s\' is not equal to the config file \'%s\'. Please fix your configuration.'] = 'The current system.basepath \'%s\' is not equal to the config file \'%s\'. Please fix your configuration.'; -$a->strings['Normal Account'] = 'Standard account'; -$a->strings['Automatic Follower Account'] = 'Automatic follower account'; -$a->strings['Public Forum Account'] = 'Public forum account'; -$a->strings['Automatic Friend Account'] = 'Automatic friend account'; -$a->strings['Blog Account'] = 'Blog account'; -$a->strings['Private Forum Account'] = 'Private forum account'; $a->strings['Message queues'] = 'Message queues'; $a->strings['Server Settings'] = 'Server Settings'; -$a->strings['Registered users'] = 'Signed up users'; -$a->strings['Pending registrations'] = 'Pending registrations'; $a->strings['Version'] = 'Version'; $a->strings['Active addons'] = 'Active addons'; $a->strings['Theme %s disabled.'] = 'Theme %s disabled.'; @@ -1377,43 +943,6 @@ $a->strings['Display Privacy Statement'] = 'Display Privacy Statement'; $a->strings['Privacy Statement Preview'] = 'Privacy Statement Preview'; $a->strings['The Terms of Service'] = 'Terms of Service'; $a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = 'Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] or less.'; -$a->strings['%s user blocked'] = [ - 0 => '%s user blocked', - 1 => '%s users blocked', -]; -$a->strings['You can\'t remove yourself'] = 'You can\'t remove yourself'; -$a->strings['%s user deleted'] = [ - 0 => '%s user deleted', - 1 => '%s users deleted', -]; -$a->strings['User "%s" deleted'] = 'User "%s" deleted'; -$a->strings['User "%s" blocked'] = 'User "%s" blocked'; -$a->strings['Register date'] = 'Registration date'; -$a->strings['Last login'] = 'Last login'; -$a->strings['User blocked'] = 'User blocked'; -$a->strings['Site admin'] = 'Site admin'; -$a->strings['Account expired'] = 'Account expired'; -$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Selected users will be deleted!\n\nEverything these users have posted on this site will be permanently deleted!\n\nAre you sure?'; -$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'; -$a->strings['%s user unblocked'] = [ - 0 => '%s user unblocked', - 1 => '%s users unblocked', -]; -$a->strings['User "%s" unblocked'] = 'User "%s" unblocked'; -$a->strings['New User'] = 'New user'; -$a->strings['Add User'] = 'Add user'; -$a->strings['Name of the new user.'] = 'Name of the new user.'; -$a->strings['Nickname'] = 'Nickname'; -$a->strings['Nickname of the new user.'] = 'Nickname of the new user.'; -$a->strings['Email address of the new user.'] = 'Email address of the new user.'; -$a->strings['Permanent deletion'] = 'Permanent deletion'; -$a->strings['Users'] = 'Users'; -$a->strings['User waiting for permanent deletion'] = 'User awaiting permanent deletion'; -$a->strings['Account approved.'] = 'Account approved.'; -$a->strings['Request date'] = 'Request date'; -$a->strings['No registrations.'] = 'No registrations.'; -$a->strings['Note from the user'] = 'Note from the user'; -$a->strings['Deny'] = 'Deny'; $a->strings['Contact not found'] = 'Contact not found'; $a->strings['No installed applications.'] = 'No installed applications.'; $a->strings['Applications'] = 'Applications'; @@ -1426,9 +955,6 @@ $a->strings['Database'] = 'Database'; $a->strings['DB updates'] = 'DB updates'; $a->strings['Inspect Deferred Workers'] = 'Inspect deferred workers'; $a->strings['Inspect worker Queue'] = 'Inspect worker queue'; -$a->strings['Tools'] = 'Tools'; -$a->strings['Contact Blocklist'] = 'Contact block-list'; -$a->strings['Server Blocklist'] = 'Server block-list'; $a->strings['Diagnostics'] = 'Diagnostics'; $a->strings['PHP Info'] = 'PHP info'; $a->strings['probe address'] = 'Probe address'; @@ -1436,74 +962,66 @@ $a->strings['check webfinger'] = 'check WebFinger'; $a->strings['Babel'] = 'Babel'; $a->strings['Addon Features'] = 'Addon features'; $a->strings['User registrations waiting for confirmation'] = 'User registrations awaiting confirmation'; +$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Daily posting limit of %d post reached. The post was rejected.', + 1 => 'Daily posting limit of %d posts reached. This post was rejected.', +]; +$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Weekly posting limit of %d post reached. The post was rejected.', + 1 => 'Weekly posting limit of %d posts reached. This post was rejected.', +]; +$a->strings['Users'] = 'Users'; +$a->strings['Tools'] = 'Tools'; +$a->strings['Contact Blocklist'] = 'Contact block-list'; +$a->strings['Server Blocklist'] = 'Server block-list'; +$a->strings['Delete Item'] = 'Delete item'; +$a->strings['Item Source'] = 'Item source'; $a->strings['Profile Details'] = 'Profile Details'; $a->strings['Only You Can See This'] = 'Only you can see this.'; $a->strings['Tips for New Members'] = 'Tips for New Members'; $a->strings['People Search - %s'] = 'People search - %s'; -$a->strings['Forum Search - %s'] = 'Forum search - %s'; +$a->strings['No matches'] = 'No matches'; $a->strings['Account'] = 'Account'; $a->strings['Two-factor authentication'] = 'Two-factor authentication'; $a->strings['Display'] = 'Display'; +$a->strings['Social Networks'] = 'Social networks'; $a->strings['Connected apps'] = 'Connected apps'; $a->strings['Export personal data'] = 'Export personal data'; $a->strings['Remove account'] = 'Remove account'; $a->strings['This page is missing a url parameter.'] = 'This page is missing a URL parameter.'; $a->strings['The post was created'] = 'The post was created'; +$a->strings['Failed to remove event'] = 'Failed to remove event'; +$a->strings['Event can not end before it has started.'] = 'Event cannot end before it has started.'; +$a->strings['Event title and start time are required.'] = 'Event title and starting time are required.'; +$a->strings['Starting date and Title are required.'] = 'Starting date and title are required.'; +$a->strings['Event Starts:'] = 'Event starts:'; +$a->strings['Required'] = 'Required'; +$a->strings['Finish date/time is not known or not relevant'] = 'Finish date/time is not known or not relevant'; +$a->strings['Event Finishes:'] = 'Event finishes:'; +$a->strings['Share this event'] = 'Share this event'; +$a->strings['Basic'] = 'Basic'; +$a->strings['This calendar format is not supported'] = 'This calendar format is not supported'; +$a->strings['No exportable data found'] = 'No exportable data found'; +$a->strings['calendar'] = 'calendar'; +$a->strings['Events'] = 'Events'; +$a->strings['View'] = 'View'; +$a->strings['Create New Event'] = 'Create new event'; +$a->strings['list'] = 'List'; +$a->strings['Contact not found.'] = 'Contact not found.'; +$a->strings['Invalid contact.'] = 'Invalid contact.'; +$a->strings['Contact is deleted.'] = 'Contact is deleted.'; +$a->strings['Bad request.'] = 'Bad request.'; +$a->strings['Filter'] = 'Filter'; +$a->strings['Members'] = 'Members'; +$a->strings['Click on a contact to add or remove.'] = 'Click on a contact to add or remove it.'; $a->strings['%d contact edited.'] = [ 0 => '%d contact edited.', 1 => '%d contacts edited.', ]; -$a->strings['Could not access contact record.'] = 'Could not access contact record.'; -$a->strings['Failed to update contact record.'] = 'Failed to update contact record.'; -$a->strings['Contact has been blocked'] = 'Contact has been blocked'; -$a->strings['Contact has been unblocked'] = 'Contact has been unblocked'; -$a->strings['Contact has been ignored'] = 'Contact has been ignored'; -$a->strings['Contact has been unignored'] = 'Contact has been unignored'; -$a->strings['You are mutual friends with %s'] = 'You are mutual friends with %s'; -$a->strings['You are sharing with %s'] = 'You are sharing with %s'; -$a->strings['%s is sharing with you'] = '%s is sharing with you'; -$a->strings['Private communications are not available for this contact.'] = 'Private communications are not available for this contact.'; -$a->strings['Never'] = 'Never'; -$a->strings['(Update was not successful)'] = '(Update was not successful)'; -$a->strings['(Update was successful)'] = '(Update was successful)'; -$a->strings['Suggest friends'] = 'Suggest friends'; -$a->strings['Network type: %s'] = 'Network type: %s'; -$a->strings['Communications lost with this contact!'] = 'Communications lost with this contact!'; -$a->strings['Fetch further information for feeds'] = 'Fetch further information for feeds'; -$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.'] = '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.'; -$a->strings['Fetch information'] = 'Fetch information'; -$a->strings['Fetch keywords'] = 'Fetch keywords'; -$a->strings['Fetch information and keywords'] = 'Fetch information and keywords'; -$a->strings['No mirroring'] = 'No mirroring'; -$a->strings['Mirror as forwarded posting'] = 'Mirror as forwarded posting'; -$a->strings['Mirror as my own posting'] = 'Mirror as my own posting'; -$a->strings['Contact Information / Notes'] = 'Personal note'; -$a->strings['Contact Settings'] = 'Notification and privacy '; -$a->strings['Contact'] = 'Contact'; -$a->strings['Their personal note'] = 'Their personal note'; -$a->strings['Edit contact notes'] = 'Edit contact notes'; -$a->strings['Visit %s\'s profile [%s]'] = 'Visit %s\'s profile [%s]'; -$a->strings['Block/Unblock contact'] = 'Block/Unblock contact'; -$a->strings['Ignore contact'] = 'Ignore contact'; -$a->strings['View conversations'] = 'View conversations'; -$a->strings['Last update:'] = 'Last update:'; -$a->strings['Update public posts'] = 'Update public posts'; -$a->strings['Update now'] = 'Update now'; -$a->strings['Unignore'] = 'Unignore'; -$a->strings['Currently blocked'] = 'Currently blocked'; -$a->strings['Currently ignored'] = 'Currently ignored'; -$a->strings['Currently archived'] = 'Currently archived'; -$a->strings['Awaiting connection acknowledge'] = 'Awaiting connection acknowledgement'; -$a->strings['Hide this contact from others'] = 'Hide this contact from others'; -$a->strings['Replies/likes to your public posts may still be visible'] = 'Replies/Likes to your public posts may still be visible'; -$a->strings['Notification for new posts'] = 'Notification for new posts'; -$a->strings['Send a notification of every new post of this contact'] = 'Send notification for every new post from this contact'; -$a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Comma-separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'; -$a->strings['Actions'] = 'Actions'; -$a->strings['Mirror postings from this contact'] = 'Mirror postings from this contact:'; -$a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'This will cause Friendica to repost new entries from this contact.'; $a->strings['Show all contacts'] = 'Show all contacts'; +$a->strings['Pending'] = 'Pending'; $a->strings['Only show pending contacts'] = 'Only show pending contacts.'; +$a->strings['Blocked'] = 'Blocked'; $a->strings['Only show blocked contacts'] = 'Only show blocked contacts'; $a->strings['Ignored'] = 'Ignored'; $a->strings['Only show ignored contacts'] = 'Only show ignored contacts'; @@ -1511,10 +1029,11 @@ $a->strings['Archived'] = 'Archived'; $a->strings['Only show archived contacts'] = 'Only show archived contacts'; $a->strings['Hidden'] = 'Hidden'; $a->strings['Only show hidden contacts'] = 'Only show hidden contacts'; -$a->strings['Organize your contact groups'] = 'Organize your contact groups'; $a->strings['Search your contacts'] = 'Search your contacts'; $a->strings['Results for: %s'] = 'Results for: %s'; $a->strings['Update'] = 'Update'; +$a->strings['Unblock'] = 'Unblock'; +$a->strings['Unignore'] = 'Unignore'; $a->strings['Batch Actions'] = 'Batch actions'; $a->strings['Conversations started by this contact'] = 'Conversations started by this contact'; $a->strings['Posts and Comments'] = 'Posts and Comments'; @@ -1524,23 +1043,14 @@ $a->strings['is a fan of yours'] = 'is a fan of yours'; $a->strings['you are a fan of'] = 'I follow them'; $a->strings['Pending outgoing contact request'] = 'Pending outgoing contact request.'; $a->strings['Pending incoming contact request'] = 'Pending incoming contact request.'; -$a->strings['Refetch contact data'] = 'Re-fetch contact data.'; -$a->strings['Toggle Blocked status'] = 'Toggle blocked status'; -$a->strings['Toggle Ignored status'] = 'Toggle ignored status'; +$a->strings['Visit %s\'s profile [%s]'] = 'Visit %s\'s profile [%s]'; $a->strings['Contact update failed.'] = 'Contact update failed.'; -$a->strings['WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working.'] = 'Warning: These are highly advanced settings. If you enter incorrect information, your communications with this contact might be disrupted.'; -$a->strings['Please use your browser \'Back\' button now if you are uncertain what to do on this page.'] = 'Please use your browser \'Back\' button now if you are uncertain what to do on this page.'; $a->strings['Return to contact editor'] = 'Return to contact editor'; +$a->strings['Name'] = 'Name:'; $a->strings['Account Nickname'] = 'Account nickname:'; -$a->strings['@Tagname - overrides Name/Nickname'] = '@Tag name - overrides name/nickname:'; $a->strings['Account URL'] = 'Account URL:'; -$a->strings['Account URL Alias'] = 'Account URL alias'; -$a->strings['Friend Request URL'] = 'Friend request URL:'; -$a->strings['Friend Confirm URL'] = 'Friend confirm URL:'; -$a->strings['Notification Endpoint URL'] = 'Notification endpoint URL'; $a->strings['Poll/Feed URL'] = 'Poll/Feed URL:'; $a->strings['New photo from this URL'] = 'New photo from this URL:'; -$a->strings['Invalid contact.'] = 'Invalid contact.'; $a->strings['Follower (%s)'] = [ 0 => 'Follower (%s)', 1 => 'Followers (%s)', @@ -1557,33 +1067,85 @@ $a->strings['Contact (%s)'] = [ 0 => 'Contact (%s)', 1 => 'Contacts (%s)', ]; -$a->strings['You must be logged in to use this module.'] = 'You must be logged in to use this module.'; -$a->strings['Poke/Prod'] = 'Poke/Prod'; -$a->strings['poke, prod or do other things to somebody'] = 'Poke, prod or do other things to somebody'; -$a->strings['Choose what you wish to do to recipient'] = 'Choose what you wish to do:'; -$a->strings['Make this post private'] = 'Make this post private'; -$a->strings['Contact is deleted.'] = 'Contact is deleted.'; +$a->strings['Access denied.'] = 'Access denied.'; +$a->strings['Submit Request'] = 'Submit request'; +$a->strings['You already added this contact.'] = 'You already added this contact.'; +$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = '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* support isn\'t enabled. Contact can\'t be added.'; +$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus support is disabled. Contact can\'t be added.'; +$a->strings['Please answer the following:'] = 'Please answer the following:'; +$a->strings['Your Identity Address:'] = 'My identity address:'; +$a->strings['Profile URL'] = 'Profile URL:'; +$a->strings['Tags:'] = 'Tags:'; +$a->strings['Add a personal note:'] = 'Add a personal note:'; +$a->strings['The contact could not be added.'] = 'Contact could not be added.'; +$a->strings['Invalid request.'] = 'Invalid request.'; +$a->strings['Profile Match'] = 'Profile Match'; +$a->strings['Failed to update contact record.'] = 'Failed to update contact record.'; +$a->strings['Contact has been unblocked'] = 'Contact has been unblocked'; +$a->strings['Contact has been blocked'] = 'Contact has been blocked'; +$a->strings['Contact has been unignored'] = 'Contact has been unignored'; +$a->strings['Contact has been ignored'] = 'Contact has been ignored'; +$a->strings['You are mutual friends with %s'] = 'You are mutual friends with %s'; +$a->strings['You are sharing with %s'] = 'You are sharing with %s'; +$a->strings['%s is sharing with you'] = '%s is sharing with you'; +$a->strings['Private communications are not available for this contact.'] = 'Private communications are not available for this contact.'; +$a->strings['Never'] = 'Never'; +$a->strings['(Update was not successful)'] = '(Update was not successful)'; +$a->strings['(Update was successful)'] = '(Update was successful)'; +$a->strings['Suggest friends'] = 'Suggest friends'; +$a->strings['Network type: %s'] = 'Network type: %s'; +$a->strings['Communications lost with this contact!'] = 'Communications lost with this contact!'; +$a->strings['Fetch further information for feeds'] = 'Fetch further information for feeds'; +$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.'] = '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.'; +$a->strings['Fetch information'] = 'Fetch information'; +$a->strings['Fetch keywords'] = 'Fetch keywords'; +$a->strings['Fetch information and keywords'] = 'Fetch information and keywords'; +$a->strings['No mirroring'] = 'No mirroring'; +$a->strings['Mirror as my own posting'] = 'Mirror as my own posting'; +$a->strings['Contact Information / Notes'] = 'Personal note'; +$a->strings['Contact Settings'] = 'Notification and privacy '; +$a->strings['Contact'] = 'Contact'; +$a->strings['Their personal note'] = 'Their personal note'; +$a->strings['Edit contact notes'] = 'Edit contact notes'; +$a->strings['Block/Unblock contact'] = 'Block/Unblock contact'; +$a->strings['Ignore contact'] = 'Ignore contact'; +$a->strings['View conversations'] = 'View conversations'; +$a->strings['Last update:'] = 'Last update:'; +$a->strings['Update public posts'] = 'Update public posts'; +$a->strings['Update now'] = 'Update now'; +$a->strings['Awaiting connection acknowledge'] = 'Awaiting connection acknowledgement'; +$a->strings['Currently blocked'] = 'Currently blocked'; +$a->strings['Currently ignored'] = 'Currently ignored'; +$a->strings['Currently archived'] = 'Currently archived'; +$a->strings['Hide this contact from others'] = 'Hide this contact from others'; +$a->strings['Replies/likes to your public posts may still be visible'] = 'Replies/Likes to your public posts may still be visible'; +$a->strings['Notification for new posts'] = 'Notification for new posts'; +$a->strings['Send a notification of every new post of this contact'] = 'Send notification for every new post from this contact'; +$a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Comma-separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'; +$a->strings['Actions'] = 'Actions'; +$a->strings['Status'] = 'Status'; +$a->strings['Mirror postings from this contact'] = 'Mirror postings from this contact:'; +$a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'This will cause Friendica to repost new entries from this contact.'; +$a->strings['Refetch contact data'] = 'Re-fetch contact data'; +$a->strings['Toggle Blocked status'] = 'Toggle blocked status'; +$a->strings['Toggle Ignored status'] = 'Toggle ignored status'; +$a->strings['Bad Request.'] = 'Bad request.'; $a->strings['Yes'] = 'Yes'; -$a->strings['Local Community'] = 'Local community'; -$a->strings['Posts from local users on this server'] = 'Posts from local users on this server'; -$a->strings['Global Community'] = 'Global community'; -$a->strings['Posts from users of the whole federated network'] = 'Posts from users of the whole federated network'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'No suggestions available. If this is a new site, please try again in 24 hours.'; +$a->strings['You aren\'t following this contact.'] = 'You aren\'t following this contact.'; +$a->strings['Unfollowing is currently not supported by your network.'] = 'Unfollowing is currently not supported by your network.'; +$a->strings['Disconnect/Unfollow'] = 'Disconnect/Unfollow'; $a->strings['No results.'] = 'No results.'; $a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'; $a->strings['Community option not available.'] = 'Community option not available.'; $a->strings['Not available.'] = 'Not available.'; -$a->strings['No such group'] = 'No such group'; -$a->strings['Group: %s'] = 'Group: %s'; -$a->strings['Latest Activity'] = 'Latest activity'; -$a->strings['Sort by latest activity'] = 'Sort by latest activity'; -$a->strings['Latest Posts'] = 'Latest posts'; -$a->strings['Sort by post received date'] = 'Sort by post received date'; -$a->strings['Personal'] = 'Personal'; -$a->strings['Posts that mention or involve you'] = 'Posts mentioning or involving me'; -$a->strings['Starred'] = 'Starred'; -$a->strings['Favourite Posts'] = 'My favorite posts'; $a->strings['Credits'] = 'Credits'; $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!'] = '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->strings['Error'] = [ + 0 => 'Error', + 1 => 'Errors', +]; $a->strings['Source input'] = 'Source input'; $a->strings['BBCode::toPlaintext'] = 'BBCode::toPlaintext'; $a->strings['BBCode::convert (raw HTML)'] = 'BBCode::convert (raw HTML)'; @@ -1622,8 +1184,6 @@ $a->strings['Converted localtime: %s'] = 'Converted local time: %s'; $a->strings['Please select your timezone:'] = 'Please select your time zone:'; $a->strings['Only logged in users are permitted to perform a probing.'] = 'Only logged in users are permitted to use the Probe feature.'; $a->strings['Lookup address'] = 'Lookup address'; -$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Accounts that I manage or own.'; -$a->strings['Select an identity to manage: '] = 'Select identity:'; $a->strings['No entries (some entries may be hidden).'] = 'No entries (entries may be hidden).'; $a->strings['Find on this site'] = 'Find on this site'; $a->strings['Results for:'] = 'Results for:'; @@ -1637,45 +1197,23 @@ $a->strings['Installed addons/apps:'] = 'Installed addons/apps:'; $a->strings['No installed addons/apps'] = 'No installed addons/apps'; $a->strings['Read about the Terms of Service of this node.'] = 'Read about the Terms of Service of this node.'; $a->strings['On this server the following remote servers are blocked.'] = 'On this server the following remote servers are blocked.'; +$a->strings['Reason for the block'] = 'Reason for the block'; $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.'] = 'This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s.'; $a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Please visit Friendi.ca to learn more about the Friendica project.'; $a->strings['Bug reports and issues: please visit'] = 'Bug reports and issues: please visit'; $a->strings['the bugtracker at github'] = 'the bugtracker at github'; $a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = 'Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'; -$a->strings['Could not create group.'] = 'Could not create group.'; -$a->strings['Group not found.'] = 'Group not found.'; -$a->strings['Unknown group.'] = 'Unknown group.'; -$a->strings['Unable to add the contact to the group.'] = 'Unable to add contact to group.'; -$a->strings['Contact successfully added to group.'] = 'Contact successfully added to group.'; -$a->strings['Unable to remove the contact from the group.'] = 'Unable to remove contact from group.'; -$a->strings['Contact successfully removed from group.'] = 'Contact successfully removed from group.'; -$a->strings['Unknown group command.'] = 'Unknown group command.'; -$a->strings['Bad request.'] = 'Bad request.'; -$a->strings['Save Group'] = 'Save group'; -$a->strings['Filter'] = 'Filter'; -$a->strings['Create a group of contacts/friends.'] = 'Create a group of contacts/friends.'; -$a->strings['Unable to remove group.'] = 'Unable to remove group.'; -$a->strings['Delete Group'] = 'Delete group'; -$a->strings['Edit Group Name'] = 'Edit group name'; -$a->strings['Members'] = 'Members'; -$a->strings['Group is empty'] = 'Group is empty'; -$a->strings['Remove contact from group'] = 'Remove contact from group'; -$a->strings['Click on a contact to add or remove.'] = 'Click on a contact to add or remove it.'; -$a->strings['Add contact to group'] = 'Add contact to group'; $a->strings['No profile'] = 'No profile'; $a->strings['Method Not Allowed.'] = 'Method not allowed.'; $a->strings['Help:'] = 'Help:'; $a->strings['Welcome to %s'] = 'Welcome to %s'; $a->strings['Friendica Communications Server - Setup'] = 'Friendica Communications Server - Setup'; $a->strings['System check'] = 'System check'; +$a->strings['Next'] = 'Next'; $a->strings['Check again'] = 'Check again'; $a->strings['Base settings'] = 'Base settings'; -$a->strings['Host name'] = 'Host name'; -$a->strings['Overwrite this field in case the determinated hostname isn\'t right, otherweise leave it as is.'] = 'Overwrite this field in case the hostname is incorrect, otherwise leave it as is.'; $a->strings['Base path to installation'] = 'Base path to installation'; $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.'] = '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.'; -$a->strings['Sub path of the URL'] = 'URL Sub-path '; -$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.'] = '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.'; $a->strings['Database connection'] = 'Database connection'; $a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'In order to install Friendica we need to know how to connect to your database.'; $a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Please contact your hosting provider or site administrator if you have questions about these settings.'; @@ -1726,7 +1264,103 @@ $a->strings['Visibility'] = 'Visibility'; $a->strings['Clear the location'] = 'Clear location'; $a->strings['Location services are unavailable on your device'] = 'Location services are unavailable on your device'; $a->strings['Location services are disabled. Please check the website\'s permissions on your device'] = 'Location services are disabled. Please check the website\'s permissions on your device'; +$a->strings['The feed for this item is unavailable.'] = 'The feed for this item is unavailable.'; $a->strings['System down for maintenance'] = 'Sorry, the system is currently down for maintenance.'; +$a->strings['Files'] = 'Files'; +$a->strings['Upload'] = 'Upload'; +$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Sorry, maybe your upload is bigger than the PHP configuration allows'; +$a->strings['Or - did you try to upload an empty file?'] = 'Or did you try to upload an empty file?'; +$a->strings['File exceeds size limit of %s'] = 'File exceeds size limit of %s'; +$a->strings['File upload failed.'] = 'File upload failed.'; +$a->strings['Unable to process image.'] = 'Unable to process image.'; +$a->strings['Image upload failed.'] = 'Image upload failed.'; +$a->strings['Normal Account Page'] = 'Standard'; +$a->strings['Soapbox Page'] = 'Soapbox'; +$a->strings['Automatic Friend Page'] = 'Love-all'; +$a->strings['Personal Page'] = 'Personal Page'; +$a->strings['Organisation Page'] = 'Organization Page'; +$a->strings['News Page'] = 'News Page'; +$a->strings['Relay'] = 'Relay'; +$a->strings['%s contact unblocked'] = [ + 0 => '%s contact unblocked', + 1 => '%s contacts unblocked', +]; +$a->strings['Remote Contact Blocklist'] = 'Remote contact block-list'; +$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'This page allows you to prevent any message from a remote contact to reach your node.'; +$a->strings['Block Remote Contact'] = 'Block remote contact'; +$a->strings['select all'] = 'select all'; +$a->strings['select none'] = 'select none'; +$a->strings['No remote contact is blocked from this node.'] = 'No remote contact is blocked from this node.'; +$a->strings['Blocked Remote Contacts'] = 'Blocked remote contacts'; +$a->strings['Block New Remote Contact'] = 'Block new remote contact'; +$a->strings['Photo'] = 'Photo'; +$a->strings['Reason'] = 'Reason'; +$a->strings['%s total blocked contact'] = [ + 0 => '%s total blocked contact', + 1 => '%s blocked contacts', +]; +$a->strings['URL of the remote contact to block.'] = 'URL of the remote contact to block.'; +$a->strings['Block Reason'] = 'Block reason'; +$a->strings['Server Domain Pattern'] = 'Server Domain Pattern'; +$a->strings['Block reason'] = 'Block reason'; +$a->strings['Blocked server domain pattern'] = 'Blocked server domain pattern'; +$a->strings['Delete server domain pattern'] = 'Delete server domain pattern'; +$a->strings['Check to delete this entry from the blocklist'] = 'Check to delete this entry from the block-list'; +$a->strings['Server Domain Pattern Blocklist'] = 'Server domain pattern block-list'; +$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.'] = 'The list of blocked server domain patterns will be made publicly available on the /friendica page so that your users and people investigating communication problems can find the reason easily.'; +$a->strings['Save changes to the blocklist'] = 'Save changes to the block-list'; +$a->strings['Current Entries in the Blocklist'] = 'Current entries in the block-list'; +$a->strings['Item marked for deletion.'] = 'Item marked for deletion.'; +$a->strings['Delete this Item'] = 'Delete'; +$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.'] = 'Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted.'; +$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.'] = 'You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 123456.'; +$a->strings['GUID'] = 'GUID'; +$a->strings['The GUID of the item you want to delete.'] = 'GUID of item to be deleted.'; +$a->strings['Type'] = 'Type'; +$a->strings['Item not found'] = 'Item not found'; +$a->strings['Item Guid'] = 'Item Guid'; +$a->strings['Normal Account'] = 'Standard account'; +$a->strings['Automatic Follower Account'] = 'Automatic follower account'; +$a->strings['Automatic Friend Account'] = 'Automatic friend account'; +$a->strings['Blog Account'] = 'Blog account'; +$a->strings['Registered users'] = 'Signed up users'; +$a->strings['Pending registrations'] = 'Pending registrations'; +$a->strings['%s user blocked'] = [ + 0 => '%s user blocked', + 1 => '%s users blocked', +]; +$a->strings['You can\'t remove yourself'] = 'You can\'t remove yourself'; +$a->strings['%s user deleted'] = [ + 0 => '%s user deleted', + 1 => '%s users deleted', +]; +$a->strings['User "%s" deleted'] = 'User "%s" deleted'; +$a->strings['User "%s" blocked'] = 'User "%s" blocked'; +$a->strings['Register date'] = 'Registration date'; +$a->strings['Last login'] = 'Last login'; +$a->strings['User blocked'] = 'User blocked'; +$a->strings['Site admin'] = 'Site admin'; +$a->strings['Account expired'] = 'Account expired'; +$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Selected users will be deleted!\n\nEverything these users have posted on this site will be permanently deleted!\n\nAre you sure?'; +$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'; +$a->strings['%s user unblocked'] = [ + 0 => '%s user unblocked', + 1 => '%s users unblocked', +]; +$a->strings['User "%s" unblocked'] = 'User "%s" unblocked'; +$a->strings['New User'] = 'New user'; +$a->strings['Add User'] = 'Add user'; +$a->strings['Name of the new user.'] = 'Name of the new user.'; +$a->strings['Nickname'] = 'Nickname'; +$a->strings['Nickname of the new user.'] = 'Nickname of the new user.'; +$a->strings['Email address of the new user.'] = 'Email address of the new user.'; +$a->strings['Permanent deletion'] = 'Permanent deletion'; +$a->strings['User waiting for permanent deletion'] = 'User awaiting permanent deletion'; +$a->strings['Account approved.'] = 'Account approved.'; +$a->strings['Request date'] = 'Request date'; +$a->strings['No registrations.'] = 'No registrations.'; +$a->strings['Note from the user'] = 'Note from the user'; +$a->strings['Deny'] = 'Deny'; $a->strings['Show Ignored Requests'] = 'Show ignored requests.'; $a->strings['Hide Ignored Requests'] = 'Hide ignored requests'; $a->strings['Notification type:'] = 'Notification type:'; @@ -1745,22 +1379,58 @@ $a->strings['System Notifications'] = 'System notifications'; $a->strings['Personal Notifications'] = 'Personal notifications'; $a->strings['Home Notifications'] = 'Home notifications'; $a->strings['Show unread'] = 'Show unread'; +$a->strings['{0} requested registration'] = '{0} requested registration'; $a->strings['Authorize application connection'] = 'Authorize application connection'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Do you want to authorize this application to access your posts and contacts and create new posts for you?'; +$a->strings['Resubscribing to OStatus contacts'] = 'Resubscribing to OStatus contacts'; +$a->strings['Keep this window open until done.'] = 'Keep this window open until done.'; +$a->strings['No contact provided.'] = 'No contact provided.'; +$a->strings['Couldn\'t fetch information for contact.'] = 'Couldn\'t fetch information for contact.'; +$a->strings['Couldn\'t fetch friends for contact.'] = 'Couldn\'t fetch friends for contact.'; +$a->strings['Done'] = 'Done'; +$a->strings['success'] = 'success'; +$a->strings['failed'] = 'failed'; +$a->strings['ignored'] = 'Ignored'; $a->strings['Remote privacy information not available.'] = 'Remote privacy information not available.'; $a->strings['Visible to:'] = 'Visible to:'; $a->strings['Invalid photo with id %s.'] = 'Invalid photo with id %s.'; +$a->strings['Edit post'] = 'Edit post'; +$a->strings['web link'] = 'web link'; +$a->strings['Insert video link'] = 'Insert video link'; +$a->strings['video link'] = 'video link'; +$a->strings['Insert audio link'] = 'Insert audio link'; +$a->strings['audio link'] = 'audio link'; +$a->strings['Remove Item Tag'] = 'Remove Item tag'; +$a->strings['Select a tag to remove: '] = 'Select a tag to remove: '; +$a->strings['Remove'] = 'Remove'; $a->strings['No contacts.'] = 'No contacts.'; +$a->strings['%s\'s timeline'] = '%s\'s timeline'; +$a->strings['%s\'s posts'] = '%s\'s posts'; +$a->strings['%s\'s comments'] = '%s\'s comments'; +$a->strings['Image exceeds size limit of %s'] = 'Image exceeds size limit of %s'; +$a->strings['Image upload didn\'t complete, please try again'] = 'Image upload didn\'t complete. Please try again.'; +$a->strings['Image file is missing'] = 'Image file is missing'; +$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Server can\'t accept new file uploads at this time. Please contact your administrator.'; +$a->strings['Image file is empty.'] = 'Image file is empty.'; +$a->strings['View Album'] = 'View album'; $a->strings['Profile not found.'] = 'Profile not found.'; +$a->strings['Full Name:'] = 'Full name:'; $a->strings['Member since:'] = 'Member since:'; $a->strings['j F, Y'] = 'j F, Y'; $a->strings['j F'] = 'j F'; $a->strings['Birthday:'] = 'Birthday:'; $a->strings['Age: '] = 'Age: '; -$a->strings['Forums:'] = 'Forums:'; -$a->strings['%s\'s timeline'] = '%s\'s timeline'; -$a->strings['%s\'s posts'] = '%s\'s posts'; -$a->strings['%s\'s comments'] = '%s\'s comments'; +$a->strings['Description:'] = 'Description:'; +$a->strings['Profile unavailable.'] = 'Profile unavailable.'; +$a->strings['Invalid locator'] = 'Invalid locator'; +$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'Remote subscription can\'t be done for your network. Please subscribe directly on your system.'; +$a->strings['Friend/Connection Request'] = 'Friend/Connection request'; +$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.'] = '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.'; +$a->strings['Your Webfinger address or profile URL:'] = 'Your WebFinger address or profile URL:'; +$a->strings['Unable to check your home location.'] = 'Unable to check your home location.'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Number of daily wall messages for %s exceeded. Message failed.'; +$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'; $a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking "Register".'] = 'You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking "Register".'; $a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'; $a->strings['Your OpenID (optional): '] = 'Your OpenID (optional): '; @@ -1772,9 +1442,12 @@ $a->strings['Your invitation code: '] = 'Your invitation code: '; $a->strings['Your Full Name (e.g. Joe Smith, real or real-looking): '] = 'Your full name: '; $a->strings['Your Email Address: (Initial information will be send there, so this has to be an existing address.)'] = 'Your Email Address: (Initial information will be sent there, so this must be an existing address.)'; $a->strings['Please repeat your e-mail address:'] = 'Please repeat your email address:'; +$a->strings['New Password:'] = 'New password:'; $a->strings['Leave empty for an auto generated password.'] = 'Leave empty for an auto generated password.'; +$a->strings['Confirm:'] = 'Confirm new password:'; $a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be "nickname@%s".'] = 'Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be "nickname@%s".'; $a->strings['Choose a nickname: '] = 'Choose a nickname: '; +$a->strings['Import'] = 'Import profile'; $a->strings['Import your profile to this friendica instance'] = 'Import an existing Friendica profile to this node.'; $a->strings['Note: This node explicitly contains adult content'] = 'Note: This node explicitly contains adult content'; $a->strings['Parent Password:'] = 'Parent Password:'; @@ -1785,13 +1458,9 @@ $a->strings['Failed to send email message. Here your accout details:
    login: $a->strings['Registration successful.'] = 'Registration successful.'; $a->strings['Your registration can not be processed.'] = 'Your registration cannot be processed.'; $a->strings['You have to leave a request note for the admin.'] = 'You have to leave a request note for the admin.'; +$a->strings['An internal error occured.'] = 'An internal error occurred.'; $a->strings['Your registration is pending approval by the site owner.'] = 'Your registration is pending approval by the site administrator.'; -$a->strings['Profile unavailable.'] = 'Profile unavailable.'; -$a->strings['Invalid locator'] = 'Invalid locator'; -$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'Remote subscription can\'t be done for your network. Please subscribe directly on your system.'; -$a->strings['Friend/Connection Request'] = 'Friend/Connection request'; -$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.'] = '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.'; -$a->strings['Your Webfinger address or profile URL:'] = 'Your WebFinger address or profile URL:'; +$a->strings['You must be logged in to use this module.'] = 'You must be logged in to use this module.'; $a->strings['Only logged in users are permitted to perform a search.'] = 'Only logged in users are permitted to perform a search.'; $a->strings['Only one search per minute is permitted for not logged in users.'] = 'Only one search per minute is permitted for not-logged-in users.'; $a->strings['Items tagged with: %s'] = 'Items tagged with: %s'; @@ -1810,6 +1479,10 @@ $a->strings['privacy policy'] = 'Privacy policy'; $a->strings['Logged out.'] = 'Logged out.'; $a->strings['Account not found. Please login to your existing account to add the OpenID to it.'] = 'Account not found. Please login to your existing account to add the OpenID to it.'; $a->strings['Account not found. Please register a new account or login to your existing account to add the OpenID to it.'] = 'Account not found. Please register a new account or login to your existing account to add the OpenID.'; +$a->strings['Passwords do not match.'] = 'Passwords do not match.'; +$a->strings['Password unchanged.'] = 'Password unchanged.'; +$a->strings['Current Password:'] = 'Current password:'; +$a->strings['Your current password to confirm the changes'] = 'Current password to confirm change'; $a->strings['Remaining recovery codes: %d'] = 'Remaining recovery codes: %d'; $a->strings['Invalid code, please retry.'] = 'Invalid code, please try again.'; $a->strings['Two-factor recovery'] = 'Two-factor recovery'; @@ -1820,6 +1493,105 @@ $a->strings['Submit recovery code and complete login'] = 'Submit recovery code a $a->strings['

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

    '] = '

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

    '; $a->strings['Please enter a code from your authentication app'] = 'Please enter a code from your authentication app'; $a->strings['Verify code and complete login'] = 'Verify code and complete login'; +$a->strings['Wrong Password.'] = 'Wrong password.'; +$a->strings['Invalid email.'] = 'Invalid email.'; +$a->strings['Cannot change to that email.'] = 'Cannot change to that email.'; +$a->strings['Contact CSV file upload error'] = 'Contact CSV file upload error'; +$a->strings['Importing Contacts done'] = 'Importing contacts done'; +$a->strings['Relocate message has been send to your contacts'] = 'Relocate message has been sent to your contacts'; +$a->strings['Unable to find your profile. Please contact your admin.'] = 'Unable to find your profile. Please contact your admin.'; +$a->strings['Personal Page Subtypes'] = 'Personal Page subtypes'; +$a->strings['Account for a personal profile.'] = 'Account for a personal profile.'; +$a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'Account for an organization that automatically approves contact requests as "Followers".'; +$a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'Account for a news reflector that automatically approves contact requests as "Followers".'; +$a->strings['Account for community discussions.'] = 'Account for community discussions.'; +$a->strings['Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'] = 'Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'; +$a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'Account for a public profile that automatically approves contact requests as "Followers".'; +$a->strings['Automatically approves all contact requests.'] = 'Automatically approves all contact requests.'; +$a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'Account for a popular profile that automatically approves contact requests as "Friends".'; +$a->strings['Requires manual approval of contact requests.'] = 'Requires manual approval of contact requests.'; +$a->strings['OpenID:'] = 'OpenID:'; +$a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Optional) Allow this OpenID to login to this account.'; +$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.'] = 'Your profile will be published in this node\'s local directory. Your profile details may be publicly visible depending on the system settings.'; +$a->strings['Account Settings'] = 'Account Settings'; +$a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'My identity address: \'%s\' or \'%s\''; +$a->strings['Password Settings'] = 'Password change'; +$a->strings['Leave password fields blank unless changing'] = 'Leave password fields blank unless changing'; +$a->strings['Password:'] = 'Password:'; +$a->strings['Your current password to confirm the changes of the email address'] = 'Your current password to confirm the change of your email address.'; +$a->strings['Delete OpenID URL'] = 'Delete OpenID URL'; +$a->strings['Basic Settings'] = 'Basic information'; +$a->strings['Email Address:'] = 'Email address:'; +$a->strings['Your Timezone:'] = 'Time zone:'; +$a->strings['Your Language:'] = 'Language:'; +$a->strings['Set the language we use to show you friendica interface and to send you emails'] = 'Set the language of your Friendica interface and emails sent to you.'; +$a->strings['Default Post Location:'] = 'Posting location:'; +$a->strings['Use Browser Location:'] = 'Use browser location:'; +$a->strings['Security and Privacy Settings'] = 'Security and privacy'; +$a->strings['Maximum Friend Requests/Day:'] = 'Maximum friend requests per day:'; +$a->strings['(to prevent spam abuse)'] = 'May prevent spam and abusive registrations'; +$a->strings['Allow friends to post to your profile page?'] = 'Allow friends to post to my wall?'; +$a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'; +$a->strings['Allow friends to tag your posts?'] = 'Allow friends to tag my post?'; +$a->strings['Your contacts can add additional tags to your posts.'] = 'Your contacts can add additional tags to your posts.'; +$a->strings['Permit unknown people to send you private mail?'] = 'Allow unknown people to send me private messages?'; +$a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Friendica network users may send you private messages even if they are not in your contact list.'; +$a->strings['Maximum private messages per day from unknown people:'] = 'Maximum private messages per day from unknown people:'; +$a->strings['Default Post Permissions'] = 'Default post permissions'; +$a->strings['Automatically expire posts after this many days:'] = 'Automatically expire posts after this many days:'; +$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Posts will not expire if empty; expired posts will be deleted'; +$a->strings['When activated, posts and comments will be expired.'] = 'If activated, posts and comments will expire.'; +$a->strings['Expire personal notes'] = 'Expire personal notes'; +$a->strings['When activated, the personal notes on your profile page will be expired.'] = 'If activated, the personal notes on your profile page will expire.'; +$a->strings['When activated, your own posts never expire. Then the settings above are only valid for posts you received.'] = 'If activated, your own posts never expire. The settings above are only valid for posts you received.'; +$a->strings['Notification Settings'] = 'Notification'; +$a->strings['Send a notification email when:'] = 'Send notification email when:'; +$a->strings['You receive an introduction'] = 'Receiving an introduction'; +$a->strings['Your introductions are confirmed'] = 'My introductions are confirmed'; +$a->strings['Someone writes on your profile wall'] = 'Someone writes on my wall'; +$a->strings['Someone writes a followup comment'] = 'A follow up comment is posted'; +$a->strings['You receive a private message'] = 'receiving a private message'; +$a->strings['You receive a friend suggestion'] = 'Receiving a friend suggestion'; +$a->strings['You are tagged in a post'] = 'Tagged in a post'; +$a->strings['Activate desktop notifications'] = 'Activate desktop notifications'; +$a->strings['Show desktop popup on new notifications'] = 'Show desktop pop-up on new notifications'; +$a->strings['Text-only notification emails'] = 'Text-only notification emails'; +$a->strings['Send text only notification emails, without the html part'] = 'Receive text only emails without HTML '; +$a->strings['Show detailled notifications'] = 'Show detailed notifications'; +$a->strings['Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.'] = 'By default, notifications are condensed into a single notification for each item. If enabled, every notification is displayed.'; +$a->strings['Advanced Account/Page Type Settings'] = 'Advanced account types'; +$a->strings['Change the behaviour of this account for special situations'] = 'Change behavior of this account for special situations'; +$a->strings['Import Contacts'] = 'Import contacts'; +$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'; +$a->strings['Upload File'] = 'Upload file'; +$a->strings['Relocate'] = 'Recent relocation'; +$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.'] = 'If you have moved this profile from another server and some of your contacts don\'t receive your updates:'; +$a->strings['Resend relocate message to contacts'] = 'Resend relocation message to contacts'; +$a->strings['Addon Settings'] = 'Addon Settings'; +$a->strings['No Addon settings configured'] = 'No addon settings configured'; +$a->strings['Description'] = 'Description'; +$a->strings['Add'] = 'Add'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'Failed to connect with email account using the settings provided.'; +$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'diaspora* (Socialhome, Hubzilla)'; +$a->strings['Email access is disabled on this site.'] = 'Email access is disabled on this site.'; +$a->strings['None'] = 'None'; +$a->strings['General Social Media Settings'] = 'General Social Media Settings'; +$a->strings['Attach the link title'] = 'Attach the link title'; +$a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'If 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.'; +$a->strings['Repair OStatus subscriptions'] = 'Repair OStatus subscriptions'; +$a->strings['Email/Mailbox Setup'] = 'Email/Mailbox setup'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Specify how to connect to your mailbox, if you wish to communicate with existing email contacts.'; +$a->strings['Last successful email check:'] = 'Last successful email check:'; +$a->strings['IMAP server name:'] = 'IMAP server name:'; +$a->strings['IMAP port:'] = 'IMAP port:'; +$a->strings['Security:'] = 'Security:'; +$a->strings['Email login name:'] = 'Email login name:'; +$a->strings['Email password:'] = 'Email password:'; +$a->strings['Reply-to address:'] = 'Reply-to address:'; +$a->strings['Send public posts to all email contacts:'] = 'Send public posts to all email contacts:'; +$a->strings['Action after import:'] = 'Action after import:'; +$a->strings['Move to folder'] = 'Move to folder'; +$a->strings['Move to folder:'] = 'Move to folder:'; $a->strings['Delegation successfully granted.'] = 'Delegation successfully granted.'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'Parent user not found, unavailable or password doesn\'t match.'; $a->strings['Delegation successfully revoked.'] = 'Delegation successfully revoked.'; @@ -1832,7 +1604,6 @@ $a->strings['Delegates'] = 'Delegates'; $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.'] = 'Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely.'; $a->strings['Existing Page Delegates'] = 'Existing page delegates'; $a->strings['Potential Delegates'] = 'Potential delegates'; -$a->strings['Add'] = 'Add'; $a->strings['No entries.'] = 'No entries.'; $a->strings['The theme you chose isn\'t available.'] = 'The theme you chose isn\'t available.'; $a->strings['%s - (Unsupported)'] = '%s - (Unsupported)'; @@ -1841,7 +1612,6 @@ $a->strings['General Theme Settings'] = 'Themes'; $a->strings['Custom Theme Settings'] = 'Theme customization'; $a->strings['Content Settings'] = 'Content/Layout'; $a->strings['Theme settings'] = 'Theme settings'; -$a->strings['Calendar'] = 'Calendar'; $a->strings['Display Theme:'] = 'Display theme:'; $a->strings['Mobile Theme:'] = 'Mobile theme:'; $a->strings['Number of items to display per page:'] = 'Number of items displayed per page:'; @@ -1851,7 +1621,9 @@ $a->strings['Update browser every xx seconds'] = 'Update browser every so many s $a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Minimum 10 seconds; to disable -1.'; $a->strings['Infinite scroll'] = 'Infinite scroll'; $a->strings['Beginning of week:'] = 'Week begins: '; -$a->strings['Profile Name is required.'] = 'Profile name is required.'; +$a->strings['Additional Features'] = 'Additional Features'; +$a->strings['Connected Apps'] = 'Connected Apps'; +$a->strings['Remove authorization'] = 'Remove authorization'; $a->strings['Field Permissions'] = 'Field Permissions'; $a->strings['(click to open/close)'] = '(reveal/hide)'; $a->strings['Profile Actions'] = 'Profile actions'; @@ -1880,6 +1652,13 @@ $a->strings['Please adjust the image cropping for optimum viewing.'] = 'Please a $a->strings['or'] = 'or'; $a->strings['skip this step'] = 'skip this step'; $a->strings['select a photo from your photo albums'] = 'select a photo from your photo albums'; +$a->strings['[Friendica System Notify]'] = '[Friendica System Notify]'; +$a->strings['User deleted their account'] = 'User deleted their account'; +$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'A user deleted his or her account on your Friendica node. Please ensure these data are removed from the backups.'; +$a->strings['The user id is %d'] = 'The user id is %d'; +$a->strings['Remove My Account'] = 'Remove My Account'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'This will completely remove your account. Once this has been done it is not recoverable.'; +$a->strings['Please enter your password for verification:'] = 'Please enter your password for verification:'; $a->strings['Please enter your password to access this page.'] = 'Please enter your password to access this page.'; $a->strings['App-specific password generation failed: The description is empty.'] = 'App-specific password generation failed: The description is empty.'; $a->strings['App-specific password generation failed: This description already exists.'] = 'App-specific password generation failed: This description already exists.'; @@ -1889,7 +1668,6 @@ $a->strings['App-specific password successfully revoked.'] = 'App-specific passw $a->strings['Two-factor app-specific passwords'] = 'Two-factor app-specific passwords'; $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.

    '] = '

    App-specific passwords are randomly generated passwords. They are used instead of your regular password to authenticate your account on third-party applications that don\'t support two-factor authentication.

    '; $a->strings['Make sure to copy your new app-specific password now. You won’t be able to see it again!'] = 'Make sure to copy your new app-specific password now. You won’t be able to see it again!'; -$a->strings['Description'] = 'Description'; $a->strings['Last Used'] = 'Last used'; $a->strings['Revoke'] = 'Revoke'; $a->strings['Revoke All'] = 'Revoke all'; @@ -1898,7 +1676,6 @@ $a->strings['Generate new app-specific password'] = 'Generate new app-specific p $a->strings['Friendiqa on my Fairphone 2...'] = 'Friendiqa on my Fairphone 2...'; $a->strings['Generate'] = 'Generate'; $a->strings['Two-factor authentication successfully disabled.'] = 'Two-factor authentication successfully disabled.'; -$a->strings['Wrong Password'] = 'Wrong password'; $a->strings['

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

    '] = '

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

    '; $a->strings['Authenticator app'] = 'Authenticator app'; $a->strings['Configured'] = 'Configured'; @@ -1962,20 +1739,29 @@ $a->strings['Export your account info and contacts. Use this to make a backup of $a->strings['Export all'] = 'Export all'; $a->strings['Export Contacts to CSV'] = 'Export contacts to CSV'; $a->strings['Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon.'] = 'Export the list of the accounts you are following as CSV file. Compatible with Mastodon for example.'; -$a->strings['Bad Request'] = 'Bad request'; -$a->strings['Forbidden'] = 'Forbidden'; -$a->strings['Not Found'] = 'Not found'; -$a->strings['Service Unavailable'] = 'Service Unavailable'; -$a->strings['The server cannot or will not process the request due to an apparent client error.'] = 'The server cannot process the request due to an apparent client error.'; -$a->strings['Authentication is required and has failed or has not yet been provided.'] = 'Authentication is required but has failed or not yet being provided.'; -$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.'] = '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->strings['The requested resource could not be found but may be available in the future.'] = 'The requested resource could not be found but may be available in the future.'; -$a->strings['An unexpected condition was encountered and no more specific message is suitable.'] = 'An unexpected condition was encountered and no more specific message is available.'; -$a->strings['The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later.'] = 'The server is currently unavailable (possibly because it is overloaded or down for maintenance). Please try again later.'; $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.'] = '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), a 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 won’t 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->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.'] = 'This information is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional personal information that may be transmitted to the communication partner\'s accounts.'; -$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.'] = '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.'; $a->strings['Privacy Statement'] = 'Privacy Statement'; +$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'The requested item doesn\'t exist or has been deleted.'; +$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Accounts that I manage or own.'; +$a->strings['Select an identity to manage: '] = 'Select identity:'; +$a->strings['User imports on closed servers can only be done by an administrator.'] = 'User imports on closed servers can only be done by an administrator.'; +$a->strings['Move account'] = 'Move Existing Friendica Account'; +$a->strings['You can import an account from another Friendica server.'] = 'You can import an existing Friendica profile to this node.'; +$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.'] = '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.'; +$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora.'; +$a->strings['Account file'] = 'Account file:'; +$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'To export your account, go to "Settings->Export personal data" and select "Export account"'; +$a->strings['Error decoding account file'] = 'Error decoding account file'; +$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Error! No version data in file! Is this a Friendica account file?'; +$a->strings['User \'%s\' already exists on this server!'] = 'User \'%s\' already exists on this server!'; +$a->strings['User creation error'] = 'User creation error'; +$a->strings['%d contact not imported'] = [ + 0 => '%d contact not imported', + 1 => '%d contacts not imported', +]; +$a->strings['User profile creation error'] = 'User profile creation error'; +$a->strings['Done. You can now login with your username and password'] = 'Done. You can now login with your username and password'; $a->strings['Welcome to Friendica'] = 'Welcome to Friendica'; $a->strings['New Member Checklist'] = 'New Member Checklist'; $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.'] = '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.'; @@ -1998,8 +1784,6 @@ $a->strings['Go to Your Site\'s Directory'] = 'Go to your site\'s directory'; $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.'] = 'The directory 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 when requested.'; $a->strings['Finding New People'] = 'Finding new people'; $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.'] = '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->strings['Group Your Contacts'] = 'Group your contacts'; -$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.'] = '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.'; $a->strings['Why Aren\'t My Posts Public?'] = 'Why aren\'t my posts public?'; $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.'] = '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->strings['Getting Help'] = 'Getting help'; @@ -2023,8 +1807,6 @@ $a->strings['%s commented on an item/conversation you have been following.'] = ' $a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Please visit %s to view or reply to the conversation.'; $a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s posted to your profile wall at %2$s'; $a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s posted to [url=%2$s]your wall[/url]'; -$a->strings['%1$s poked you at %2$s'] = '%1$s poked you at %2$s'; -$a->strings['%1$s [url=%2$s]poked you[/url].'] = '%1$s [url=%2$s]poked you[/url].'; $a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'You\'ve received an introduction from \'%1$s\' at %2$s'; $a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'You\'ve received [url=%1$s]an introduction[/url] from %2$s.'; $a->strings['You may visit their profile at %s'] = 'You may visit their profile at %s'; @@ -2056,8 +1838,8 @@ $a->strings['This message was sent to you by %s, a member of the Friendica socia $a->strings['You may visit them online at %s'] = 'You may visit them online at %s'; $a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Please contact the sender by replying to this post if you do not wish to receive these messages.'; $a->strings['%s posted an update.'] = '%s posted an update.'; -$a->strings['This entry was edited'] = 'This entry was edited'; $a->strings['Private Message'] = 'Private message'; +$a->strings['This entry was edited'] = 'This entry was edited'; $a->strings['Edit'] = 'Edit'; $a->strings['Delete globally'] = 'Delete globally'; $a->strings['Remove locally'] = 'Remove locally'; @@ -2081,7 +1863,6 @@ $a->strings['%d comment'] = [ ]; $a->strings['Show more'] = 'Show more'; $a->strings['Show fewer'] = 'Show fewer'; -$a->strings['Attachments:'] = 'Attachments:'; $a->strings['%s is now following %s.'] = '%s is now following %s.'; $a->strings['following'] = 'following'; $a->strings['%s stopped following %s.'] = '%s stopped following %s.'; diff --git a/view/lang/eo/messages.po b/view/lang/eo/messages.po index 5dbdcc005..04b2f06cc 100644 --- a/view/lang/eo/messages.po +++ b/view/lang/eo/messages.po @@ -1,3065 +1,3763 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: # Diego Souza , 2012 # Martin Schmitt , 2012 +# St John Karp , 2017 # Tobias Diekershoff , 2014 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-19 07:46+0100\n" -"PO-Revision-Date: 2016-12-19 10:01+0000\n" -"Last-Translator: fabrixxm \n" -"Language-Team: Esperanto (http://www.transifex.com/Friendica/friendica/language/eo/)\n" +"POT-Creation-Date: 2023-09-18 05:30+0000\n" +"PO-Revision-Date: 2011-05-05 10:19+0000\n" +"Last-Translator: St John Karp , 2017\n" +"Language-Team: Esperanto (http://app.transifex.com/Friendica/friendica/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: include/contact_widgets.php:6 +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 +msgid "Unable to locate original post." +msgstr "Ne eblas trovi originalan afiŝon." + +#: mod/item.php:138 +msgid "Post updated." +msgstr "" + +#: mod/item.php:203 mod/item.php:207 +msgid "Item wasn't stored." +msgstr "" + +#: mod/item.php:217 +msgid "Item couldn't be fetched." +msgstr "" + +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "Forviŝis malplenan afiŝon." + +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 +#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 +msgid "Item not found." +msgstr "Elemento ne estas trovita." + +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:99 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:38 +#: src/Module/FriendSuggest.php:57 src/Module/Invite.php:42 +#: src/Module/Invite.php:131 src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Delegation.php:41 src/Module/Settings/Delegation.php:71 +#: src/Module/Settings/Display.php:73 src/Module/Settings/Display.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:111 +#: src/Module/Settings/RemoveMe.php:117 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Import.php:84 +#: src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "Malpermesita." + +#: mod/lostpass.php:40 +msgid "No valid account found." +msgstr "Ne trovis validan konton." + +#: mod/lostpass.php:52 +msgid "Password reset request issued. Check your email." +msgstr "Eldonis riparadon de pasvorto. Legu vian retpoŝton." + +#: 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 "" + +#: 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 "" + +#: mod/lostpass.php:84 +#, php-format +msgid "Password reset requested at %s" +msgstr "Pasvorta riparado petita je %s" + +#: mod/lostpass.php:100 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Ne povis konfirmi la peton. (Eble vi sendis ĝin antaŭ.) Pasvorta riparado malsukcesis." + +#: mod/lostpass.php:113 +msgid "Request has expired, please make a new one." +msgstr "" + +#: mod/lostpass.php:128 +msgid "Forgot your Password?" +msgstr "Ĉu vi forgesis vian pasvorton?" + +#: mod/lostpass.php:129 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Entajpu vian retpoŝtadreson kaj sendu por pasvorta riparado. Poste, bonvolu legi vian retpoŝton por trovi pliajn instrukciojn." + +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 +msgid "Nickname or Email: " +msgstr "Salutnomo aŭ retpoŝtadreso: " + +#: mod/lostpass.php:131 +msgid "Reset" +msgstr "Repari" + +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 +msgid "Password Reset" +msgstr "Pasvorta riparado" + +#: mod/lostpass.php:147 +msgid "Your password has been reset as requested." +msgstr "Via pasvorto estis riparita laŭ via peto." + +#: mod/lostpass.php:148 +msgid "Your new password is" +msgstr "Via nova pasvorto estas" + +#: mod/lostpass.php:149 +msgid "Save or copy your new password - and then" +msgstr "Memorigi vian novan pasvorton - kaj poste" + +#: mod/lostpass.php:150 +msgid "click here to login" +msgstr "klaku ĉi tie por ensaluti" + +#: mod/lostpass.php:151 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Vi povas ŝangi vian pasvorton sur la paĝo agordoj kiam vi sukcese ensalutis." + +#: mod/lostpass.php:155 +msgid "Your password has been reset." +msgstr "" + +#: 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 "" + +#: 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 "" + +#: mod/lostpass.php:176 +#, php-format +msgid "Your password has been changed at %s" +msgstr "" + +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 +msgid "New Message" +msgstr "Nova Mesaĝo" + +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 +msgid "No recipient selected." +msgstr "Neniom da ricevontoj." + +#: mod/message.php:87 +msgid "Unable to locate contact information." +msgstr "Ne eblas trovi kontaktajn informojn." + +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 +msgid "Message could not be sent." +msgstr "Ne povas sendi la mesaĝon." + +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 +msgid "Message collection failure." +msgstr "Malsukcese provis kolekti mesaĝojn." + +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 +msgid "Discard" +msgstr "Forviŝi" + +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +msgid "Messages" +msgstr "Mesaĝoj" + +#: mod/message.php:148 +msgid "Conversation not found." +msgstr "" + +#: mod/message.php:153 +msgid "Message was not deleted." +msgstr "" + +#: mod/message.php:168 +msgid "Conversation was not removed." +msgstr "" + +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 +msgid "Please enter a link URL:" +msgstr "Bonvolu entajpu adreson de ligilo:" + +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 +msgid "Send Private Message" +msgstr "Sendi Privatan Mesaĝon" + +#: mod/message.php:191 mod/message.php:346 +msgid "To:" +msgstr "Al:" + +#: mod/message.php:192 mod/message.php:347 +msgid "Subject:" +msgstr "Temo:" + +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 +msgid "Your message:" +msgstr "Via mesaĝo:" + +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "Alŝuti bildon" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "Enmeti retan adreson" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:578 +msgid "Please wait" +msgstr "Bonvolu atendi" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:145 +#: src/Module/Install.php:234 src/Module/Install.php:274 +#: src/Module/Install.php:309 src/Module/Invite.php:178 +#: src/Module/Item/Compose.php:189 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Object/Post.php:1095 +#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171 +#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Sendi" + +#: mod/message.php:223 +msgid "No messages." +msgstr "Neniom da mesaĝoj." + +#: mod/message.php:279 +msgid "Message not available." +msgstr "Mesaĝo nedisponebla." + +#: mod/message.php:323 +msgid "Delete message" +msgstr "Forviŝu mesaĝon" + +#: mod/message.php:325 mod/message.php:456 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:340 mod/message.php:453 +msgid "Delete conversation" +msgstr "Forviŝi dialogon" + +#: mod/message.php:342 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Sekura komunikado ne disponeblas. Vi eble povus respondi sur la profilpaĝo de la sendanto." + +#: mod/message.php:345 +msgid "Send Reply" +msgstr "Respondi" + +#: mod/message.php:427 +#, php-format +msgid "Unknown sender - %s" +msgstr "Nekonata sendanto - %s" + +#: mod/message.php:429 +#, php-format +msgid "You and %s" +msgstr "Vi kaj %s" + +#: mod/message.php:431 +#, php-format +msgid "%s and You" +msgstr "%s kaj vi" + +#: mod/message.php:459 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d mesaĝo" +msgstr[1] "%d mesaĝoj" + +#: mod/notes.php:52 src/Module/BaseProfile.php:108 +msgid "Personal Notes" +msgstr "Personaj Notoj" + +#: mod/notes.php:56 +msgid "Personal notes are visible only by yourself." +msgstr "" + +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 +msgid "Save" +msgstr "Konservi" + +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "" + +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 +msgid "Photo Albums" +msgstr "Bildalbumoj" + +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 +msgid "Recent Photos" +msgstr "̂Ĵusaj bildoj" + +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 +msgid "Upload New Photos" +msgstr "Alŝuti novajn bildojn" + +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 +msgid "everybody" +msgstr "ĉiuj" + +#: mod/photos.php:159 +msgid "Contact information unavailable" +msgstr "Kontaktoj informoj ne disponeblas" + +#: mod/photos.php:188 +msgid "Album not found." +msgstr "Albumo ne trovita." + +#: mod/photos.php:244 +msgid "Album successfully deleted" +msgstr "" + +#: mod/photos.php:246 +msgid "Album was empty." +msgstr "" + +#: mod/photos.php:277 +msgid "Failed to delete the photo." +msgstr "" + +#: mod/photos.php:545 +msgid "a photo" +msgstr "" + +#: mod/photos.php:545 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "" + +#: mod/photos.php:582 src/Module/Conversation/Community.php:159 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Publika atingo ne permesita." + +#: mod/photos.php:587 +msgid "No photos selected" +msgstr "Neniu bildoj elektita" + +#: mod/photos.php:721 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "" + +#: mod/photos.php:728 +msgid "Upload Photos" +msgstr "Alŝuti bildojn" + +#: mod/photos.php:732 mod/photos.php:820 +msgid "New album name: " +msgstr "Nomo por nova albumo:" + +#: mod/photos.php:733 +msgid "or select existing album:" +msgstr "" + +#: mod/photos.php:734 +msgid "Do not show a status post for this upload" +msgstr "Ne kreu statan afiŝon por tio alŝuto." + +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "Permesoj" + +#: mod/photos.php:801 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "" + +#: mod/photos.php:802 mod/photos.php:825 +msgid "Delete Album" +msgstr "Forviŝi albumon" + +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Nuligi" + +#: mod/photos.php:829 +msgid "Edit Album" +msgstr "Redakti albumon" + +#: mod/photos.php:830 +msgid "Drop Album" +msgstr "" + +#: mod/photos.php:834 +msgid "Show Newest First" +msgstr "" + +#: mod/photos.php:836 +msgid "Show Oldest First" +msgstr "" + +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +msgid "View Photo" +msgstr "Vidi bildon" + +#: mod/photos.php:889 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Malpermesita. Atingo al tio elemento eble estas limigita." + +#: mod/photos.php:891 +msgid "Photo not available" +msgstr "La bildo ne disponeblas" + +#: mod/photos.php:901 +msgid "Do you really want to delete this photo?" +msgstr "" + +#: mod/photos.php:902 mod/photos.php:1102 +msgid "Delete Photo" +msgstr "Forviŝi bildon" + +#: mod/photos.php:1000 +msgid "View photo" +msgstr "Vidi bildon" + +#: mod/photos.php:1002 +msgid "Edit photo" +msgstr "Redakti bildon" + +#: mod/photos.php:1003 +msgid "Delete photo" +msgstr "" + +#: mod/photos.php:1004 +msgid "Use as profile photo" +msgstr "Uzi kiel profilbildo" + +#: mod/photos.php:1011 +msgid "Private Photo" +msgstr "" + +#: mod/photos.php:1017 +msgid "View Full Size" +msgstr "Vidi plengrande " + +#: mod/photos.php:1070 +msgid "Tags: " +msgstr "Markoj:" + +#: mod/photos.php:1073 +msgid "[Select tags to remove]" +msgstr "" + +#: mod/photos.php:1088 +msgid "New album name" +msgstr "Nova nomo de albumo" + +#: mod/photos.php:1089 +msgid "Caption" +msgstr "Apudskribo" + +#: mod/photos.php:1090 +msgid "Add a Tag" +msgstr "Aldoni markon" + +#: mod/photos.php:1090 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Ekzemple: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1091 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1092 +msgid "Rotate CW (right)" +msgstr "Turni horloĝdirekte (dekstren)" + +#: mod/photos.php:1093 +msgid "Rotate CCW (left)" +msgstr "Turni kontraŭhorloĝdirekte (maldekstren)" + +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1092 +msgid "This is you" +msgstr "Tiu estas vi" + +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:572 +#: src/Object/Post.php:1094 +msgid "Comment" +msgstr "Komenti" + +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1108 +msgid "Preview" +msgstr "Antaŭrigardi" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1096 +msgid "Loading..." +msgstr "" + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:260 +msgid "Select" +msgstr "Elekti" + +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 +msgid "Delete" +msgstr "Forviŝi" + +#: mod/photos.php:1298 src/Object/Post.php:408 +msgid "Like" +msgstr "" + +#: mod/photos.php:1299 src/Object/Post.php:408 +msgid "I like this (toggle)" +msgstr "Mi ŝatas tion (ŝalti)" + +#: mod/photos.php:1300 src/Object/Post.php:409 +msgid "Dislike" +msgstr "" + +#: mod/photos.php:1302 src/Object/Post.php:409 +msgid "I don't like this (toggle)" +msgstr "Mi malŝatas tion(ŝalti)" + +#: mod/photos.php:1324 +msgid "Map" +msgstr "" + +#: src/App.php:473 +msgid "No system theme config value set." +msgstr "" + +#: src/App.php:580 +msgid "Apologies but the website is unavailable at the moment." +msgstr "" + +#: src/App/Page.php:248 +msgid "Delete this item?" +msgstr "Forviŝi ĉi tiun elementon?" + +#: src/App/Page.php:249 +msgid "" +"Block this author? They won't be able to follow you nor see your public " +"posts, and you won't be able to see their posts and their notifications." +msgstr "" + +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "" + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "" + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "" + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "" + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "" + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "" + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "" + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "" + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "" + +#: src/App/Page.php:351 +msgid "toggle mobile" +msgstr "" + +#: src/App/Router.php:309 +#, php-format +msgid "Method not allowed for this module. Allowed method(s): %s" +msgstr "" + +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +msgid "Page not found." +msgstr "Paĝo ne trovita" + +#: src/App/Router.php:323 +msgid "You must be logged in to use addons. " +msgstr "" + +#: src/BaseModule.php:401 +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 "La sekuriga ĵetono de la formo estis malĝusta. Tio verŝajne okazis ĉar la formo estis malfermita dum tro longa tempo (>3 horoj) antaŭ la sendado." + +#: src/BaseModule.php:428 +msgid "All contacts" +msgstr "" + +#: src/BaseModule.php:433 src/Content/Conversation/Factory/Timeline.php:62 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 +msgid "Followers" +msgstr "" + +#: src/BaseModule.php:438 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 +msgid "Following" +msgstr "" + +#: src/BaseModule.php:443 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 +msgid "Mutual friends" +msgstr "" + +#: src/BaseModule.php:451 +msgid "Common" +msgstr "" + +#: src/Console/Addon.php:175 src/Console/Addon.php:199 +msgid "Addon not found" +msgstr "" + +#: src/Console/Addon.php:179 +msgid "Addon already enabled" +msgstr "" + +#: src/Console/Addon.php:203 +msgid "Addon already disabled" +msgstr "" + +#: src/Console/ArchiveContact.php:106 +#, php-format +msgid "Could not find any unarchived contact entry for this URL (%s)" +msgstr "" + +#: src/Console/ArchiveContact.php:109 +msgid "The contact entries have been archived" +msgstr "" + +#: src/Console/GlobalCommunityBlock.php:96 +#: src/Module/Moderation/Blocklist/Contact.php:65 +#, php-format +msgid "Could not find any contact entry for this URL (%s)" +msgstr "" + +#: src/Console/GlobalCommunityBlock.php:101 +#: src/Module/Moderation/Blocklist/Contact.php:82 +msgid "The contact has been blocked from the node" +msgstr "" + +#: src/Console/MergeContacts.php:75 +#, php-format +msgid "%d %s, %d duplicates." +msgstr "" + +#: src/Console/MergeContacts.php:78 +#, php-format +msgid "uri-id is empty for contact %s." +msgstr "" + +#: src/Console/MergeContacts.php:91 +#, php-format +msgid "No valid first contact found for uri-id %d." +msgstr "" + +#: src/Console/MergeContacts.php:102 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:106 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:142 +#, php-format +msgid "Deletion of id %d failed" +msgstr "" + +#: src/Console/MergeContacts.php:144 +#, php-format +msgid "Deletion of id %d was successful" +msgstr "" + +#: src/Console/MergeContacts.php:150 +#, php-format +msgid "Updating \"%s\" in \"%s\" from %d to %d" +msgstr "" + +#: src/Console/MergeContacts.php:152 +msgid " - found" +msgstr "" + +#: src/Console/MergeContacts.php:159 +msgid " - failed" +msgstr "" + +#: src/Console/MergeContacts.php:161 +msgid " - success" +msgstr "" + +#: src/Console/MergeContacts.php:165 +msgid " - deleted" +msgstr "" + +#: src/Console/MergeContacts.php:168 +msgid " - done" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:91 +msgid "The avatar cache needs to be enabled to use this command." +msgstr "" + +#: src/Console/MoveToAvatarCache.php:109 +#, php-format +msgid "no resource in photo %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:137 +#, php-format +msgid "no photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:146 +#, php-format +msgid "no image data for photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:155 +#, php-format +msgid "invalid image for id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:168 +#, php-format +msgid "Quit on invalid photo %s" +msgstr "" + +#: src/Console/PostUpdate.php:87 +#, php-format +msgid "Post update version number has been set to %s." +msgstr "" + +#: src/Console/PostUpdate.php:95 +msgid "Check for pending update actions." +msgstr "" + +#: src/Console/PostUpdate.php:97 +msgid "Done." +msgstr "" + +#: src/Console/PostUpdate.php:99 +msgid "Execute pending post updates." +msgstr "" + +#: src/Console/PostUpdate.php:105 +msgid "All pending post updates are done." +msgstr "" + +#: src/Console/User.php:158 src/Console/User.php:245 +msgid "Enter user nickname: " +msgstr "" + +#: src/Console/User.php:182 src/Model/User.php:711 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "" + +#: src/Console/User.php:202 +msgid "Enter new password: " +msgstr "" + +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 +msgid "Password update failed. Please try again." +msgstr "Ĝisdatigo de pasvorto malsukcesis. Bonvolu provi refoje." + +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 +msgid "Password changed." +msgstr "Pasvorto ŝanĝita." + +#: src/Console/User.php:237 +msgid "Enter user name: " +msgstr "" + +#: src/Console/User.php:253 +msgid "Enter user email address: " +msgstr "" + +#: src/Console/User.php:261 +msgid "Enter a language (optional): " +msgstr "" + +#: src/Console/User.php:286 +msgid "User is not pending." +msgstr "" + +#: src/Console/User.php:318 +msgid "User has already been marked for deletion." +msgstr "" + +#: src/Console/User.php:323 +#, php-format +msgid "Type \"yes\" to delete %s" +msgstr "" + +#: src/Console/User.php:325 +msgid "Deletion aborted." +msgstr "" + +#: src/Console/User.php:450 +msgid "Enter category: " +msgstr "" + +#: src/Console/User.php:460 +msgid "Enter key: " +msgstr "" + +#: src/Console/User.php:494 +msgid "Enter value: " +msgstr "" + +#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +msgid "newer" +msgstr "pli nova" + +#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +msgid "older" +msgstr "pli malnova" + +#: src/Content/ContactSelector.php:51 +msgid "Frequently" +msgstr "" + +#: src/Content/ContactSelector.php:52 +msgid "Hourly" +msgstr "" + +#: src/Content/ContactSelector.php:53 +msgid "Twice daily" +msgstr "" + +#: src/Content/ContactSelector.php:54 +msgid "Daily" +msgstr "" + +#: src/Content/ContactSelector.php:55 +msgid "Weekly" +msgstr "" + +#: src/Content/ContactSelector.php:56 +msgid "Monthly" +msgstr "" + +#: src/Content/ContactSelector.php:126 +msgid "DFRN" +msgstr "" + +#: src/Content/ContactSelector.php:127 +msgid "OStatus" +msgstr "" + +#: src/Content/ContactSelector.php:128 +msgid "RSS/Atom" +msgstr "" + +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Email" +msgstr "Retpoŝto" + +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +msgid "Diaspora" +msgstr "Diaspora" + +#: src/Content/ContactSelector.php:131 +msgid "Zot!" +msgstr "" + +#: src/Content/ContactSelector.php:132 +msgid "LinkedIn" +msgstr "" + +#: src/Content/ContactSelector.php:133 +msgid "XMPP/IM" +msgstr "" + +#: src/Content/ContactSelector.php:134 +msgid "MySpace" +msgstr "" + +#: src/Content/ContactSelector.php:135 +msgid "Google+" +msgstr "" + +#: src/Content/ContactSelector.php:136 +msgid "pump.io" +msgstr "" + +#: src/Content/ContactSelector.php:137 +msgid "Twitter" +msgstr "" + +#: src/Content/ContactSelector.php:138 +msgid "Discourse" +msgstr "" + +#: src/Content/ContactSelector.php:139 +msgid "Diaspora Connector" +msgstr "" + +#: src/Content/ContactSelector.php:140 +msgid "GNU Social Connector" +msgstr "" + +#: src/Content/ContactSelector.php:141 +msgid "ActivityPub" +msgstr "" + +#: src/Content/ContactSelector.php:142 +msgid "pnut" +msgstr "" + +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "" + +#: src/Content/ContactSelector.php:180 +#, php-format +msgid "%s (via %s)" +msgstr "" + +#: src/Content/Conversation.php:226 +msgid "and" +msgstr "kaj" + +#: src/Content/Conversation.php:229 +#, php-format +msgid "and %d other people" +msgstr "" + +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:239 +#, php-format +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:241 +#, php-format +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:243 +#, php-format +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:245 +#, php-format +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:274 +#, php-format +msgid " likes this" +msgid_plural " like this" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:277 +#, php-format +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:280 +#, php-format +msgid " attends" +msgid_plural " attend" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:283 +#, php-format +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:286 +#, php-format +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:289 +#, php-format +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:336 +msgid "Visible to everybody" +msgstr "Videbla al ĉiuj" + +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1107 +msgid "Please enter a image/video/audio/webpage URL:" +msgstr "" + +#: src/Content/Conversation.php:338 +msgid "Tag term:" +msgstr "Markfrazo:" + +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 +msgid "Save to Folder:" +msgstr "Konservi en Dosierujo:" + +#: src/Content/Conversation.php:340 +msgid "Where are you right now?" +msgstr "Kie vi estas nun?" + +#: src/Content/Conversation.php:341 +msgid "Delete item(s)?" +msgstr "" + +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 +msgid "Created at" +msgstr "" + +#: src/Content/Conversation.php:363 +msgid "New Post" +msgstr "" + +#: src/Content/Conversation.php:366 +msgid "Share" +msgstr "Kunhavigi" + +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "alŝuti bildon" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Kunligi dosieron" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "kunsendi dosieron" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1097 +msgid "Bold" +msgstr "Grasa" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1098 +msgid "Italic" +msgstr "Kursiva" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1099 +msgid "Underline" +msgstr "Substreki" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1101 +msgid "Quote" +msgstr "Citaĵo" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1102 +msgid "Add emojis" +msgstr "" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1100 +msgid "Content Warning" +msgstr "" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1103 +msgid "Code" +msgstr "Kodo" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1104 +msgid "Image" +msgstr "Bildo" + +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1105 +msgid "Link" +msgstr "Ligilo" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1106 +msgid "Link or Media" +msgstr "" + +#: src/Content/Conversation.php:382 +msgid "Video" +msgstr "" + +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "Agordi vian lokon" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "agordi lokon" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "Forviŝu retesplorilan lokon" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "forviŝi lokon" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Redakti titolon" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Kategorioj (disigita per komo)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 +msgid "Scheduled at" +msgstr "" + +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Permesagordoj" + +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Publika afiŝo" + +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:120 +#: src/Model/Profile.php:467 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "Mesaĝo" + +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "" + +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "" + +#: src/Content/Conversation.php:595 +msgid "remove" +msgstr "forviŝi" + +#: src/Content/Conversation.php:599 +msgid "Delete Selected Items" +msgstr "Forviŝi Elektitajn Elementojn" + +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 +#, php-format +msgid "You had been addressed (%s)." +msgstr "" + +#: src/Content/Conversation.php:769 +#, php-format +msgid "You are following %s." +msgstr "" + +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "" + +#: src/Content/Conversation.php:776 +msgid "You subscribed to one or more tags in this post." +msgstr "" + +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "" + +#: src/Content/Conversation.php:798 +msgid "Reshared" +msgstr "" + +#: src/Content/Conversation.php:798 +#, php-format +msgid "Reshared by %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:801 +#, php-format +msgid "%s is participating in this thread." +msgstr "" + +#: src/Content/Conversation.php:804 +msgid "Stored for general reasons" +msgstr "" + +#: src/Content/Conversation.php:807 +msgid "Global post" +msgstr "" + +#: src/Content/Conversation.php:810 +msgid "Sent via an relay server" +msgstr "" + +#: src/Content/Conversation.php:810 +#, php-format +msgid "Sent via the relay server %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:813 +msgid "Fetched" +msgstr "" + +#: src/Content/Conversation.php:813 +#, php-format +msgid "Fetched because of %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:816 +msgid "Stored because of a child post to complete this thread." +msgstr "" + +#: src/Content/Conversation.php:819 +msgid "Local delivery" +msgstr "" + +#: src/Content/Conversation.php:822 +msgid "Stored because of your activity (like, comment, star, ...)" +msgstr "" + +#: src/Content/Conversation.php:825 +msgid "Distributed" +msgstr "" + +#: src/Content/Conversation.php:828 +msgid "Pushed to us" +msgstr "" + +#: src/Content/Conversation.php:1492 src/Object/Post.php:247 +msgid "Pinned item" +msgstr "" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:521 +#: src/Object/Post.php:522 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vidi la profilon de %s ĉe %s" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:509 +msgid "Categories:" +msgstr "" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:510 +msgid "Filed under:" +msgstr "" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:535 +#, php-format +msgid "%s from %s" +msgstr "%s de %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "Vidi kun kunteksto" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "For you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "What's Hot" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "Posts with a lot of interactions" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:61 +#, php-format +msgid "Posts in %s" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:62 +msgid "Posts from your followers that you don't follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Sharers of sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Posts with images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Posts with audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Posts with videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Local Community" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Posts from local users on this server" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Global Community" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Posts from users of the whole federated network" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Latest Activity" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Sort by latest activity" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Latest Posts" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Sort by post received date" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Latest Creation" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Sort by post creation date" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:106 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "Propra" + +#: src/Content/Conversation/Factory/Timeline.php:106 +msgid "Posts that mention or involve you" +msgstr "Afiŝoj menciantaj vin aŭ pri vi" + +#: src/Content/Conversation/Factory/Timeline.php:107 src/Object/Post.php:380 +msgid "Starred" +msgstr "Steligita" + +#: src/Content/Conversation/Factory/Timeline.php:107 +msgid "Favourite Posts" +msgstr "Favorigitaj Afiŝoj" + +#: src/Content/Feature.php:96 +msgid "General Features" +msgstr "" + +#: src/Content/Feature.php:98 +msgid "Photo Location" +msgstr "" + +#: 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 "" + +#: src/Content/Feature.php:99 +msgid "Trending Tags" +msgstr "" + +#: src/Content/Feature.php:99 +msgid "" +"Show a community page widget with a list of the most popular tags in recent " +"public posts." +msgstr "" + +#: src/Content/Feature.php:104 +msgid "Post Composition Features" +msgstr "" + +#: src/Content/Feature.php:105 +msgid "Auto-mention Groups" +msgstr "" + +#: src/Content/Feature.php:105 +msgid "" +"Add/remove mention when a group page is selected/deselected in ACL window." +msgstr "" + +#: src/Content/Feature.php:106 +msgid "Explicit Mentions" +msgstr "" + +#: src/Content/Feature.php:106 +msgid "" +"Add explicit mentions to comment box for manual control over who gets " +"mentioned in replies." +msgstr "" + +#: src/Content/Feature.php:107 +msgid "Add an abstract from ActivityPub content warnings" +msgstr "" + +#: src/Content/Feature.php:107 +msgid "" +"Add an abstract when commenting on ActivityPub posts with a content warning." +" Abstracts are displayed as content warning on systems like Mastodon or " +"Pleroma." +msgstr "" + +#: src/Content/Feature.php:112 +msgid "Post/Comment Tools" +msgstr "" + +#: src/Content/Feature.php:113 +msgid "Post Categories" +msgstr "" + +#: src/Content/Feature.php:113 +msgid "Add categories to your posts" +msgstr "" + +#: src/Content/Feature.php:118 +msgid "Advanced Profile Settings" +msgstr "" + +#: src/Content/Feature.php:119 +msgid "List Groups" +msgstr "" + +#: src/Content/Feature.php:119 +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "" + +#: src/Content/Feature.php:120 +msgid "Tag Cloud" +msgstr "" + +#: src/Content/Feature.php:120 +msgid "Provide a personal tag cloud on your profile page" +msgstr "" + +#: src/Content/Feature.php:121 +msgid "Display Membership Date" +msgstr "" + +#: src/Content/Feature.php:121 +msgid "Display membership date in profile" +msgstr "" + +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "" + +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "" + +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "" + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1273 +msgid "Groups" +msgstr "" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 +msgid "show less" +msgstr "" + +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 +msgid "show more" +msgstr "montri pli" + +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "" + +#: src/Content/Item.php:331 src/Model/Item.php:3003 +msgid "event" +msgstr "okazo" + +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "staton" + +#: src/Content/Item.php:340 src/Model/Item.php:3005 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "bildo" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s markis la %3$s de %2$s kun %4$s" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 +msgid "Follow Thread" +msgstr "" + +#: src/Content/Item.php:429 src/Model/Contact.php:1227 +msgid "View Status" +msgstr "Vidi Staton" + +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1219 +#: src/Model/Contact.php:1228 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 +msgid "View Profile" +msgstr "Vidi Profilon" + +#: src/Content/Item.php:431 src/Model/Contact.php:1229 +msgid "View Photos" +msgstr "Vidi Bildojn" + +#: src/Content/Item.php:432 src/Model/Contact.php:1220 +#: src/Model/Contact.php:1230 +msgid "Network Posts" +msgstr "Enretaj Afiŝoj" + +#: src/Content/Item.php:433 src/Model/Contact.php:1221 +#: src/Model/Contact.php:1231 +msgid "View Contact" +msgstr "" + +#: src/Content/Item.php:434 src/Model/Contact.php:1232 +msgid "Send PM" +msgstr "Sendi PM" + +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 +msgid "Block" +msgstr "Bloki" + +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 +msgid "Ignore" +msgstr "Ignori" + +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "" + +#: src/Content/Item.php:438 src/Object/Post.php:288 +#, php-format +msgid "Ignore %s server" +msgstr "" + +#: src/Content/Item.php:442 src/Object/Post.php:490 +msgid "Languages" +msgstr "" + +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1222 src/Model/Contact.php:1233 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Konekti/Aboni" + +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "" + +#: src/Content/Nav.php:121 +msgid "Nothing new here" +msgstr "Estas neniu nova ĉi tie" + +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +msgid "Go back" +msgstr "" + +#: src/Content/Nav.php:126 +msgid "Clear notifications" +msgstr "Forigi atentigojn" + +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" +msgstr "" + +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 +msgid "Logout" +msgstr "Elsaluti" + +#: src/Content/Nav.php:222 +msgid "End this session" +msgstr "Fini ĉi-tiun seancon" + +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 +msgid "Login" +msgstr "Ensaluti" + +#: src/Content/Nav.php:224 +msgid "Sign in" +msgstr "Ensaluti" + +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "" + +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "" + +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +msgid "Profile" +msgstr "Profilo" + +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +msgid "Your profile page" +msgstr "Via profilo" + +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Bildoj" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +msgid "Your photos" +msgstr "Viaj bildoj" + +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 +msgid "Media" +msgstr "" + +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +msgid "Your postings with media" +msgstr "" + +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "" + +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "" + +#: src/Content/Nav.php:234 +msgid "Personal notes" +msgstr "Personaj notoj" + +#: src/Content/Nav.php:234 +msgid "Your personal notes" +msgstr "Viaj propraj notoj" + +#: src/Content/Nav.php:251 src/Content/Nav.php:308 +msgid "Home" +msgstr "Hejmo" + +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "Hejmpaĝo" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 +#: src/Module/Security/Login.php:124 +msgid "Register" +msgstr "Registri" + +#: src/Content/Nav.php:255 +msgid "Create an account" +msgstr "Krei konton" + +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 +msgid "Help" +msgstr "Helpo" + +#: src/Content/Nav.php:261 +msgid "Help and documentation" +msgstr "Helpo kaj dokumentado" + +#: src/Content/Nav.php:265 +msgid "Apps" +msgstr "Programoj" + +#: src/Content/Nav.php:265 +msgid "Addon applications, utilities, games" +msgstr "Kromprogramoj, utilaĵoj, ludiloj" + +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 +msgid "Search" +msgstr "Serĉi" + +#: src/Content/Nav.php:269 +msgid "Search site content" +msgstr "Serĉu la retejon" + +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 +msgid "Full Text" +msgstr "Plena Teksto" + +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 +#: src/Content/Widget/TagCloud.php:68 +msgid "Tags" +msgstr "Kradvortoj" + +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 +msgid "Contacts" +msgstr "Kontaktoj" + +#: src/Content/Nav.php:289 +msgid "Community" +msgstr "Komunumo" + +#: src/Content/Nav.php:289 +msgid "Conversations on this and other servers" +msgstr "" + +#: src/Content/Nav.php:296 +msgid "Directory" +msgstr "Katalogo" + +#: src/Content/Nav.php:296 +msgid "People directory" +msgstr "Katalogo de homoj" + +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 +msgid "Information" +msgstr "Informo" + +#: src/Content/Nav.php:298 +msgid "Information about this friendica instance" +msgstr "Informo pri tiu ĉi Friendica nodo" + +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 +msgid "Terms of Service" +msgstr "" + +#: src/Content/Nav.php:301 +msgid "Terms of Service of this Friendica instance" +msgstr "" + +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +msgid "Network" +msgstr "Reto" + +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +msgid "Conversations from your friends" +msgstr "Konversacioj de viaj amikoj" + +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "Viaj afiŝoj kaj komunikadoj" + +#: src/Content/Nav.php:312 +msgid "Introductions" +msgstr "Prezentoj" + +#: src/Content/Nav.php:312 +msgid "Friend Requests" +msgstr "Kontaktpetoj" + +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 +msgid "Notifications" +msgstr "Atentigoj" + +#: src/Content/Nav.php:314 +msgid "See all notifications" +msgstr "Vidu ĉiujn atentigojn" + +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Marki kiel legita" + +#: src/Content/Nav.php:315 +msgid "Mark all system notifications as seen" +msgstr "" + +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +msgid "Private mail" +msgstr "Privata poŝto" + +#: src/Content/Nav.php:319 +msgid "Inbox" +msgstr "Enirkesto" + +#: src/Content/Nav.php:320 +msgid "Outbox" +msgstr "Elirkesto" + +#: src/Content/Nav.php:324 +msgid "Accounts" +msgstr "" + +#: src/Content/Nav.php:324 +msgid "Manage other pages" +msgstr "Administri aliajn paĝojn" + +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:175 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +msgid "Settings" +msgstr "Agordoj" + +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +msgid "Account settings" +msgstr "Konto" + +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +msgid "Manage/edit friends and contacts" +msgstr "Administri/redakti amikojn kaj kontaktojn" + +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +msgid "Admin" +msgstr "Administrado" + +#: src/Content/Nav.php:334 +msgid "Site setup and configuration" +msgstr "Agordoj pri la retejo" + +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "" + +#: src/Content/Nav.php:338 +msgid "Navigation" +msgstr "" + +#: src/Content/Nav.php:338 +msgid "Site map" +msgstr "Reteja mapo" + +#: src/Content/OEmbed.php:316 +msgid "Embedding disabled" +msgstr "Malŝaltita enigitado" + +#: src/Content/OEmbed.php:440 +msgid "Embedded content" +msgstr "Enigita enhavo" + +#: src/Content/Pager.php:216 +msgid "first" +msgstr "unua" + +#: src/Content/Pager.php:221 +msgid "prev" +msgstr "antaŭa" + +#: src/Content/Pager.php:276 +msgid "next" +msgstr "sekvanta" + +#: src/Content/Pager.php:281 +msgid "last" +msgstr "lasta" + +#: src/Content/Text/BBCode.php:696 src/Content/Text/BBCode.php:1636 +#: src/Content/Text/BBCode.php:1637 +msgid "Image/photo" +msgstr "Bildo" + +#: src/Content/Text/BBCode.php:914 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: src/Content/Text/BBCode.php:939 src/Model/Item.php:3745 +#: src/Model/Item.php:3751 src/Model/Item.php:3752 +msgid "Link to source" +msgstr "" + +#: src/Content/Text/BBCode.php:1543 src/Content/Text/HTML.php:904 +msgid "Click to open/close" +msgstr "Klaku por malfermi/fermi" + +#: src/Content/Text/BBCode.php:1576 +msgid "$1 wrote:" +msgstr "$1 skribis:" + +#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642 +msgid "Encrypted content" +msgstr "" + +#: src/Content/Text/BBCode.php:1901 +msgid "Invalid source protocol" +msgstr "" + +#: src/Content/Text/BBCode.php:1920 +msgid "Invalid link protocol" +msgstr "" + +#: src/Content/Text/HTML.php:782 +msgid "Loading more entries..." +msgstr "" + +#: src/Content/Text/HTML.php:783 +msgid "The end" +msgstr "" + +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:116 +#: src/Model/Profile.php:461 src/Module/Contact/Profile.php:471 +msgid "Follow" +msgstr "" + +#: src/Content/Widget.php:51 msgid "Add New Contact" msgstr "Aldonu Novan Kontakton" -#: include/contact_widgets.php:7 +#: src/Content/Widget.php:52 msgid "Enter address or web location" msgstr "Entajpu adreson aŭ retlokon" -#: include/contact_widgets.php:8 +#: src/Content/Widget.php:53 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Ekzemple: bob@example.com, http://example.com/barbara" -#: include/contact_widgets.php:10 include/identity.php:218 -#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87 -#: mod/suggest.php:101 +#: src/Content/Widget.php:55 msgid "Connect" msgstr "Konekti" -#: include/contact_widgets.php:24 +#: src/Content/Widget.php:72 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "Disponeblas %d invito" msgstr[1] "Disponeblas %d invitoj" -#: include/contact_widgets.php:30 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 msgid "Find People" msgstr "Trovi Homojn" -#: include/contact_widgets.php:31 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 msgid "Enter name or interest" msgstr "Entajpu nomon aŭ intereson" -#: include/contact_widgets.php:32 include/Contact.php:354 -#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204 -#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103 -msgid "Connect/Follow" -msgstr "Konekti/Aboni" - -#: include/contact_widgets.php:33 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Ekzemple: Robert Morgenstein, Fishing" -#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798 +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 msgid "Find" msgstr "Trovi" -#: include/contact_widgets.php:35 mod/suggest.php:114 -#: view/theme/vier/theme.php:203 +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 msgid "Friend Suggestions" msgstr "Amikosugestoj" -#: include/contact_widgets.php:36 view/theme/vier/theme.php:202 +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 msgid "Similar Interests" msgstr "Similaj Interesoj" -#: include/contact_widgets.php:37 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 msgid "Random Profile" msgstr "Hazarda Profilo" -#: include/contact_widgets.php:38 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 msgid "Invite Friends" msgstr "Inviti amikojn" -#: include/contact_widgets.php:108 -msgid "Networks" -msgstr "Retoj" +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 +msgid "Global Directory" +msgstr "Tutmonda Katalogo" -#: include/contact_widgets.php:111 -msgid "All Networks" -msgstr "Ĉiuj Retoj" +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +msgid "Local Directory" +msgstr "Loka Katalogo" -#: include/contact_widgets.php:141 include/features.php:110 +#: src/Content/Widget.php:215 src/Model/Circle.php:600 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "" + +#: src/Content/Widget.php:217 +msgid "Everyone" +msgstr "" + +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "" + +#: src/Content/Widget.php:247 +msgid "Relationships" +msgstr "" + +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 +msgid "All Contacts" +msgstr "Ĉiuj Kontaktoj" + +#: src/Content/Widget.php:288 +msgid "Protocols" +msgstr "" + +#: src/Content/Widget.php:290 +msgid "All Protocols" +msgstr "" + +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "Konservitaj Dosierujoj" -#: include/contact_widgets.php:144 include/contact_widgets.php:176 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "Ĉio" -#: include/contact_widgets.php:173 +#: src/Content/Widget.php:349 msgid "Categories" msgstr "Kategorioj" -#: include/contact_widgets.php:237 +#: src/Content/Widget.php:406 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d komuna kontakto" msgstr[1] "%d komunaj kontaktoj" -#: include/contact_widgets.php:242 include/ForumManager.php:119 -#: include/items.php:2245 mod/content.php:624 object/Item.php:432 -#: view/theme/vier/theme.php:260 boot.php:972 -msgid "show more" -msgstr "montri pli" - -#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025 -#: view/theme/vier/theme.php:255 -msgid "Forums" -msgstr "" - -#: include/ForumManager.php:116 view/theme/vier/theme.php:257 -msgid "External link to forum" -msgstr "" - -#: include/profile_selectors.php:6 -msgid "Male" -msgstr "Vira" - -#: include/profile_selectors.php:6 -msgid "Female" -msgstr "Ina" - -#: include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Nuntempe Vira" - -#: include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Nuntempe Ina" - -#: include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Ĉefe Vira" - -#: include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Ĉefe Ina" - -#: include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgenra" - -#: include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Interseksa" - -#: include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transseksa" - -#: include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodita" - -#: include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neŭtra" - -#: include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Nespecifa" - -#: include/profile_selectors.php:6 -msgid "Other" -msgstr "Alia" - -#: include/profile_selectors.php:6 include/conversation.php:1487 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: include/profile_selectors.php:23 -msgid "Males" -msgstr "Viroj" - -#: include/profile_selectors.php:23 -msgid "Females" -msgstr "Inoj" - -#: include/profile_selectors.php:23 -msgid "Gay" -msgstr "Geja" - -#: include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesba" - -#: include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Neniu Prefero" - -#: include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Ambaŭseksema" - -#: include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Memseksema" - -#: include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Abstinema" - -#: include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Virgulino" - -#: include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Devia" - -#: include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetiĉo" - -#: include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Amasa" - -#: include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Neseksa" - -#: include/profile_selectors.php:42 -msgid "Single" -msgstr "Sola" - -#: include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Soleca" - -#: include/profile_selectors.php:42 -msgid "Available" -msgstr "Havebla" - -#: include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Nehavebla" - -#: include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Sekrete enamiĝinta" - -#: include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Blinda amo" - -#: include/profile_selectors.php:42 -msgid "Dating" -msgstr "Rendevuanta" - -#: include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Malfidela" - -#: include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Seksmaniulo" - -#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284 -msgid "Friends" -msgstr "Amikoj" - -#: include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Amikoj/Avantaĝoj" - -#: include/profile_selectors.php:42 -msgid "Casual" -msgstr "Neformala" - -#: include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Fianĉiginta" - -#: include/profile_selectors.php:42 -msgid "Married" -msgstr "Edziĝinta" - -#: include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Image edziĝinta" - -#: include/profile_selectors.php:42 -msgid "Partners" -msgstr "Geparuloj" - -#: include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Kunloĝanta" - -#: include/profile_selectors.php:42 -msgid "Common law" -msgstr "Registrita partnereco " - -#: include/profile_selectors.php:42 -msgid "Happy" -msgstr "Feliĉa" - -#: include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Ne interesiĝis" - -#: include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" - -#: include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Trompita" - -#: include/profile_selectors.php:42 -msgid "Separated" -msgstr "Disiĝinta" - -#: include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Malfirma" - -#: include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Eksedziĝinta" - -#: include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Image eksedziĝinta" - -#: include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Vidva" - -#: include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Ne certa" - -#: include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Estas komplika" - -#: include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Egala" - -#: include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Demandu min" - -#: include/dba_pdo.php:72 include/dba.php:56 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Ne trovis DNS informojn por datumbaza servilo '%s'." - -#: include/auth.php:45 -msgid "Logged out." -msgstr "Elsalutita." - -#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 -msgid "Login failed." -msgstr "Ensalutado malsukcesis." - -#: include/auth.php:132 include/user.php:75 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Okazis problemo ensalutinta kun via OpenID. Bonvolu kontroli la ID." - -#: include/auth.php:132 include/user.php:75 -msgid "The error message was:" -msgstr "La erarmesaĝo estis:" - -#: include/group.php:25 -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 "Revivigis malnovan grupon kun la sama nomo. Permesoj por estantaj elementoj eble estas validaj por la grupo kaj estontaj membroj. Se tiu ne estas kiun vi atendis, bonvolu krei alian grupon kun alia nomo." - -#: include/group.php:209 -msgid "Default privacy group for new contacts" -msgstr "Defaŭlta privateca grupo por novaj kontaktoj" - -#: include/group.php:242 -msgid "Everybody" -msgstr "Ĉiuj" - -#: include/group.php:265 -msgid "edit" -msgstr "redakti" - -#: include/group.php:286 mod/newmember.php:61 -msgid "Groups" -msgstr "Grupoj" - -#: include/group.php:288 -msgid "Edit groups" -msgstr "" - -#: include/group.php:290 -msgid "Edit group" -msgstr "Redakti grupon" - -#: include/group.php:291 -msgid "Create a new group" -msgstr "Krei novan grupon" - -#: include/group.php:292 mod/group.php:94 mod/group.php:178 -msgid "Group Name: " -msgstr "Nomo de la grupo:" - -#: include/group.php:294 -msgid "Contacts not in any group" -msgstr "Kontaktoj en neniu grupo" - -#: include/group.php:296 mod/network.php:201 -msgid "add" -msgstr "aldoni" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Nekonata | Nekatorigita" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Bloki tuj" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Suspekta, spamisto, memmerkatisto" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Konata al mi, sed mi ne havas opinion" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, verŝajne sendanĝera" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Fidinda laŭ mi" - -#: include/contact_selectors.php:56 mod/admin.php:890 -msgid "Frequently" -msgstr "Ofte" - -#: include/contact_selectors.php:57 mod/admin.php:891 -msgid "Hourly" -msgstr "Ĉiuhore" - -#: include/contact_selectors.php:58 mod/admin.php:892 -msgid "Twice daily" -msgstr "Duope ĉiutage" - -#: include/contact_selectors.php:59 mod/admin.php:893 -msgid "Daily" -msgstr "Ĉiutage" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Ĉiusemajne" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Ĉiumonate" - -#: include/contact_selectors.php:76 mod/dfrn_request.php:868 -msgid "Friendica" -msgstr "Friendica" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440 -msgid "Email" -msgstr "Retpoŝto" - -#: include/contact_selectors.php:80 mod/settings.php:842 -#: mod/dfrn_request.php:870 -msgid "Diaspora" -msgstr "Diaspora" - -#: include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/Tujmesaĝilo" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "" - -#: include/contact_selectors.php:91 -msgid "GNU Social" -msgstr "" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "" - -#: include/contact_selectors.php:103 -msgid "Hubzilla/Redmatrix" -msgstr "" - -#: include/acl_selectors.php:327 -msgid "Post to Email" -msgstr "Sendi per retpoŝto" - -#: include/acl_selectors.php:332 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: include/acl_selectors.php:333 mod/settings.php:1181 -msgid "Hide your profile details from unknown viewers?" -msgstr "Kaŝi viajn profilajn detalojn al nekonataj spektantoj?" - -#: include/acl_selectors.php:338 -msgid "Visible to everybody" -msgstr "Videbla al ĉiuj" - -#: include/acl_selectors.php:339 view/theme/vier/config.php:103 -msgid "show" -msgstr "montri" - -#: include/acl_selectors.php:340 view/theme/vier/config.php:103 -msgid "don't show" -msgstr "kaŝi" - -#: include/acl_selectors.php:346 mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "CC: retpoŝtadresojn" - -#: include/acl_selectors.php:347 mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Ekzemple: bob@example.com, mary@example.com" - -#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156 -#: mod/photos.php:1535 -msgid "Permissions" -msgstr "Permesoj" - -#: include/acl_selectors.php:350 -msgid "Close" -msgstr "Fermi" - -#: include/like.php:163 include/conversation.php:130 -#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87 -#: mod/tagger.php:62 -msgid "photo" -msgstr "bildo" - -#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125 -#: include/conversation.php:134 include/conversation.php:261 -#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62 -msgid "status" -msgstr "staton" - -#: include/like.php:165 include/conversation.php:122 -#: include/conversation.php:258 include/text.php:1802 -msgid "event" -msgstr "okazo" - -#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s ŝatas la %3$s de %2$s" - -#: include/like.php:184 include/conversation.php:144 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s malŝatas la %3$s de %2$s" - -#: include/like.php:186 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "" - -#: include/like.php:188 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "" - -#: include/like.php:190 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "" - -#: include/message.php:15 include/message.php:173 -msgid "[no subject]" -msgstr "[neniu temo]" - -#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056 -#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218 -#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478 -msgid "Wall Photos" -msgstr "Muraj Bildoj" - -#: include/plugin.php:526 include/plugin.php:528 -msgid "Click here to upgrade." -msgstr "Klaku ĉi tie por ĝisdatigi." - -#: include/plugin.php:534 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Tia ago preterpasas la limojn de via abono." - -#: include/plugin.php:539 -msgid "This action is not available under your subscription plan." -msgstr "Tia ago ne estas permesita laŭ via abono." - -#: include/uimport.php:94 -msgid "Error decoding account file" -msgstr "" - -#: include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: include/uimport.php:116 include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "" - -#: include/uimport.php:120 include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "" - -#: include/uimport.php:153 -msgid "User creation error" -msgstr "" - -#: include/uimport.php:173 -msgid "User profile creation error" -msgstr "" - -#: include/uimport.php:222 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" - -#: include/uimport.php:292 -msgid "Done. You can now login with your username and password" -msgstr "" - -#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705 -msgid "Miscellaneous" -msgstr "Diversaj" - -#: include/datetime.php:183 include/identity.php:629 -msgid "Birthday:" -msgstr "Naskiĝtago:" - -#: include/datetime.php:185 mod/profiles.php:728 -msgid "Age: " -msgstr "Aĝo:" - -#: include/datetime.php:187 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: include/datetime.php:341 -msgid "never" -msgstr "neniam" - -#: include/datetime.php:347 -msgid "less than a second ago" -msgstr "antaŭ malpli ol unu sekundo" - -#: include/datetime.php:350 -msgid "year" -msgstr "jaro" - -#: include/datetime.php:350 -msgid "years" -msgstr "jaroj" - -#: include/datetime.php:351 include/event.php:480 mod/cal.php:284 -#: mod/events.php:389 -msgid "month" -msgstr "monato" - -#: include/datetime.php:351 -msgid "months" -msgstr "monatoj" - -#: include/datetime.php:352 include/event.php:481 mod/cal.php:285 -#: mod/events.php:390 -msgid "week" -msgstr "semajno" - -#: include/datetime.php:352 -msgid "weeks" -msgstr "semajnoj" - -#: include/datetime.php:353 include/event.php:482 mod/cal.php:286 -#: mod/events.php:391 -msgid "day" -msgstr "tago" - -#: include/datetime.php:353 -msgid "days" -msgstr "tagoj" - -#: include/datetime.php:354 -msgid "hour" -msgstr "horo" - -#: include/datetime.php:354 -msgid "hours" -msgstr "horoj" - -#: include/datetime.php:355 -msgid "minute" -msgstr "minuto" - -#: include/datetime.php:355 -msgid "minutes" -msgstr "minutoj" - -#: include/datetime.php:356 -msgid "second" -msgstr "sekundo" - -#: include/datetime.php:356 -msgid "seconds" -msgstr "sekundoj" - -#: include/datetime.php:365 -#, php-format -msgid "%1$d %2$s ago" -msgstr "antaŭ %1$d %2$s" - -#: include/datetime.php:572 -#, php-format -msgid "%s's birthday" -msgstr "Naskiĝtago de %s" - -#: include/datetime.php:573 include/dfrn.php:1109 -#, php-format -msgid "Happy Birthday %s" -msgstr "Feliĉan Naskiĝtagon al %s" - -#: include/enotify.php:24 -msgid "Friendica Notification" -msgstr "Friendica Atentigo" - -#: include/enotify.php:27 -msgid "Thank You," -msgstr "Dankon," - -#: include/enotify.php:30 -#, php-format -msgid "%s Administrator" -msgstr "%s Administranto" - -#: include/enotify.php:32 -#, php-format -msgid "%1$s, %2$s Administrator" -msgstr "" - -#: include/enotify.php:43 include/delivery.php:457 -msgid "noreply" -msgstr "nerespondi" - -#: include/enotify.php:70 -#, php-format -msgid "%s " -msgstr "%s " - -#: include/enotify.php:83 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Atentigo] Ricevis novan retpoŝton ĉe %s" - -#: include/enotify.php:85 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s sendis al vi novan privatan mesaĝon ĉe %2$s." - -#: include/enotify.php:86 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s sendis al vi %2$s." - -#: include/enotify.php:86 -msgid "a private message" -msgstr "privatan mesaĝon" - -#: include/enotify.php:88 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bonvolu viziti %s por vidi aŭ respondi viajn privatajn mesaĝojn." - -#: include/enotify.php:134 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s komentis pri [url=%2$s]%3$s[/url]" - -#: include/enotify.php:141 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s komentis pri [url=%2$s]%4$s de %3$s[/url]" - -#: include/enotify.php:149 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s komentis pri [url=%2$s]via %3$s[/url]" - -#: include/enotify.php:159 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Atentigo] Komento pri konversacio #%1$d de %2$s" - -#: include/enotify.php:161 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s komentis pri elemento/konversacio kiun vi sekvas." - -#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192 -#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Bonvolu viziti %s por vidi aŭ respondi la konversacion." - -#: include/enotify.php:171 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Atentigo] %s afiŝis al via profilmuro" - -#: include/enotify.php:173 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s skribis al via profilmuro ĉe %2$s" - -#: include/enotify.php:174 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s afiŝis al [url=%2$s]via muro[/url]" - -#: include/enotify.php:185 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Atentigo] %s markis vin" - -#: include/enotify.php:187 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s markis vin ĉe %2$s" - -#: include/enotify.php:188 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]markis vin[/url]." - -#: include/enotify.php:199 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "" - -#: include/enotify.php:201 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "" - -#: include/enotify.php:202 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "" - -#: include/enotify.php:213 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "" - -#: include/enotify.php:215 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "" - -#: include/enotify.php:216 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" - -#: include/enotify.php:231 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Atentigo] %s markis vian afiŝon" - -#: include/enotify.php:233 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s markis vian afiŝon ĉe %2$s" - -#: include/enotify.php:234 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s markis [url=%2$s]vian afiŝon[/url]" - -#: include/enotify.php:245 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Atentigo] Ricevis prezenton" - -#: include/enotify.php:247 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Vi ricevis prezenton de '%1$s' ĉe %2$s" - -#: include/enotify.php:248 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Vi ricevis [url=%1$s]prezenton[/url] de %2$s." - -#: include/enotify.php:252 include/enotify.php:295 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Vi povas vidi la profilon de li aŭ ŝi ĉe %s" - -#: include/enotify.php:254 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Bonvolu viziti %s por aprobi aŭ malaprobi la prezenton." - -#: include/enotify.php:262 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "" - -#: include/enotify.php:264 include/enotify.php:265 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "" - -#: include/enotify.php:271 -msgid "[Friendica:Notify] You have a new follower" -msgstr "" - -#: include/enotify.php:273 include/enotify.php:274 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "" - -#: include/enotify.php:285 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Atentigo] Ricevis amikosugeston" - -#: include/enotify.php:287 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Vi ricevis amikosugeston de '%1$s' ĉe %2$s" - -#: include/enotify.php:288 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Vi ricevis [url=%1$s]amikosugeston[/url] pri %2$s de %3$s." - -#: include/enotify.php:293 -msgid "Name:" -msgstr "Nomo:" - -#: include/enotify.php:294 -msgid "Photo:" -msgstr "Bildo:" - -#: include/enotify.php:297 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bonvolu viziti %s por aprobi aŭ malaprobi la sugeston." - -#: include/enotify.php:305 include/enotify.php:319 -msgid "[Friendica:Notify] Connection accepted" -msgstr "" - -#: include/enotify.php:307 include/enotify.php:321 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "" - -#: include/enotify.php:308 include/enotify.php:322 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "" - -#: include/enotify.php:312 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and " -"email without restriction." -msgstr "" - -#: include/enotify.php:314 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "" - -#: include/enotify.php:326 -#, php-format -msgid "" -"'%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." -msgstr "" - -#: include/enotify.php:328 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future." -msgstr "" - -#: include/enotify.php:330 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "" - -#: include/enotify.php:340 -msgid "[Friendica System:Notify] registration request" -msgstr "" - -#: include/enotify.php:342 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "" - -#: include/enotify.php:343 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "" - -#: include/enotify.php:347 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "" - -#: include/enotify.php:350 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "" - -#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: include/event.php:33 include/event.php:51 include/event.php:487 -#: include/bb2diaspora.php:158 -msgid "Starts:" -msgstr "Ekas:" - -#: include/event.php:36 include/event.php:57 include/event.php:488 -#: include/bb2diaspora.php:166 -msgid "Finishes:" -msgstr "Finas:" - -#: include/event.php:39 include/event.php:63 include/event.php:489 -#: include/bb2diaspora.php:174 include/identity.php:328 -#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494 -#: mod/contacts.php:628 -msgid "Location:" -msgstr "Loko:" - -#: include/event.php:441 -msgid "Sun" -msgstr "" - -#: include/event.php:442 -msgid "Mon" -msgstr "" - -#: include/event.php:443 -msgid "Tue" -msgstr "" - -#: include/event.php:444 -msgid "Wed" -msgstr "" - -#: include/event.php:445 -msgid "Thu" -msgstr "" - -#: include/event.php:446 -msgid "Fri" -msgstr "" - -#: include/event.php:447 -msgid "Sat" -msgstr "" - -#: include/event.php:448 include/text.php:1130 mod/settings.php:972 -msgid "Sunday" -msgstr "Dimanĉo" - -#: include/event.php:449 include/text.php:1130 mod/settings.php:972 -msgid "Monday" -msgstr "Lundo" - -#: include/event.php:450 include/text.php:1130 -msgid "Tuesday" -msgstr "Mardo" - -#: include/event.php:451 include/text.php:1130 -msgid "Wednesday" -msgstr "Merkredo" - -#: include/event.php:452 include/text.php:1130 -msgid "Thursday" -msgstr "Ĵaŭdo" - -#: include/event.php:453 include/text.php:1130 -msgid "Friday" -msgstr "Vendredo" - -#: include/event.php:454 include/text.php:1130 -msgid "Saturday" -msgstr "Sabato" - -#: include/event.php:455 -msgid "Jan" -msgstr "" - -#: include/event.php:456 -msgid "Feb" -msgstr "" - -#: include/event.php:457 -msgid "Mar" -msgstr "" - -#: include/event.php:458 -msgid "Apr" -msgstr "" - -#: include/event.php:459 include/event.php:471 include/text.php:1134 -msgid "May" -msgstr "Majo" - -#: include/event.php:460 -msgid "Jun" -msgstr "" - -#: include/event.php:461 -msgid "Jul" -msgstr "" - -#: include/event.php:462 -msgid "Aug" -msgstr "" - -#: include/event.php:463 -msgid "Sept" -msgstr "" - -#: include/event.php:464 -msgid "Oct" -msgstr "" - -#: include/event.php:465 -msgid "Nov" -msgstr "" - -#: include/event.php:466 -msgid "Dec" -msgstr "" - -#: include/event.php:467 include/text.php:1134 -msgid "January" -msgstr "Januaro" - -#: include/event.php:468 include/text.php:1134 -msgid "February" -msgstr "Februaro" - -#: include/event.php:469 include/text.php:1134 -msgid "March" -msgstr "Marto" - -#: include/event.php:470 include/text.php:1134 -msgid "April" -msgstr "Aprilo" - -#: include/event.php:472 include/text.php:1134 -msgid "June" -msgstr "Junio" - -#: include/event.php:473 include/text.php:1134 -msgid "July" -msgstr "Julio" - -#: include/event.php:474 include/text.php:1134 -msgid "August" -msgstr "Aŭgusto" - -#: include/event.php:475 include/text.php:1134 -msgid "September" -msgstr "Septembro" - -#: include/event.php:476 include/text.php:1134 -msgid "October" -msgstr "Oktobro" - -#: include/event.php:477 include/text.php:1134 -msgid "November" -msgstr "Novembro" - -#: include/event.php:478 include/text.php:1134 -msgid "December" -msgstr "Decembro" - -#: include/event.php:479 mod/cal.php:283 mod/events.php:388 -msgid "today" -msgstr "" - -#: include/event.php:483 -msgid "all-day" -msgstr "" - -#: include/event.php:485 -msgid "No events to display" -msgstr "" - -#: include/event.php:574 -msgid "l, F j" -msgstr "l, F j" - -#: include/event.php:593 -msgid "Edit event" -msgstr "Redakti okazon" - -#: include/event.php:615 include/text.php:1532 include/text.php:1539 -msgid "link to source" -msgstr "ligilo al fonto" - -#: include/event.php:850 -msgid "Export" -msgstr "" - -#: include/event.php:851 -msgid "Export calendar as ical" -msgstr "" - -#: include/event.php:852 -msgid "Export calendar as csv" -msgstr "" - -#: include/nav.php:35 mod/navigation.php:19 -msgid "Nothing new here" -msgstr "Estas neniu nova ĉi tie" - -#: include/nav.php:39 mod/navigation.php:23 -msgid "Clear notifications" -msgstr "" - -#: include/nav.php:40 include/text.php:1015 -msgid "@name, !forum, #tags, content" -msgstr "" - -#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792 -msgid "Logout" -msgstr "Elsaluti" - -#: include/nav.php:78 view/theme/frio/theme.php:246 -msgid "End this session" -msgstr "Fini ĉi-tiun seancon" - -#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637 -#: mod/contacts.php:833 view/theme/frio/theme.php:249 -msgid "Status" -msgstr "Stato" - -#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249 -msgid "Your posts and conversations" -msgstr "Viaj afiŝoj kaj komunikadoj" - -#: include/nav.php:82 include/identity.php:605 include/identity.php:691 -#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32 -#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250 -msgid "Profile" -msgstr "Profilo" - -#: include/nav.php:82 view/theme/frio/theme.php:250 -msgid "Your profile page" -msgstr "Via profilo" - -#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32 -#: view/theme/frio/theme.php:251 -msgid "Photos" -msgstr "Bildoj" - -#: include/nav.php:83 view/theme/frio/theme.php:251 -msgid "Your photos" -msgstr "Viaj bildoj" - -#: include/nav.php:84 include/identity.php:738 include/identity.php:741 -#: view/theme/frio/theme.php:252 -msgid "Videos" -msgstr "" - -#: include/nav.php:84 view/theme/frio/theme.php:252 -msgid "Your videos" -msgstr "" - -#: include/nav.php:85 include/nav.php:149 include/identity.php:750 -#: include/identity.php:761 mod/cal.php:275 mod/events.php:379 -#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257 -msgid "Events" -msgstr "Okazoj" - -#: include/nav.php:85 view/theme/frio/theme.php:253 -msgid "Your events" -msgstr "Viaj okazoj" - -#: include/nav.php:86 -msgid "Personal notes" -msgstr "Personaj notoj" - -#: include/nav.php:86 -msgid "Your personal notes" -msgstr "" - -#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793 -msgid "Login" -msgstr "Ensaluti" - -#: include/nav.php:95 -msgid "Sign in" -msgstr "Ensaluti" - -#: include/nav.php:105 include/nav.php:161 -#: include/NotificationsManager.php:174 -msgid "Home" -msgstr "Hejmo" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "Hejmpaĝo" - -#: include/nav.php:109 mod/register.php:289 boot.php:1768 -msgid "Register" -msgstr "Registri" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "Krei konton" - -#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298 -msgid "Help" -msgstr "Helpo" - -#: include/nav.php:115 -msgid "Help and documentation" -msgstr "Helpo kaj dokumentado" - -#: include/nav.php:119 -msgid "Apps" -msgstr "Programoj" - -#: include/nav.php:119 -msgid "Addon applications, utilities, games" -msgstr "Kromprogramoj, utilaĵoj, ludiloj" - -#: include/nav.php:123 include/text.php:1012 mod/search.php:149 -msgid "Search" -msgstr "Serĉi" - -#: include/nav.php:123 -msgid "Search site content" -msgstr "Serĉu la retejon" - -#: include/nav.php:126 include/text.php:1020 -msgid "Full Text" -msgstr "" - -#: include/nav.php:127 include/text.php:1021 -msgid "Tags" -msgstr "" - -#: include/nav.php:128 include/nav.php:192 include/identity.php:783 -#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792 -#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260 -msgid "Contacts" -msgstr "Kontaktoj" - -#: include/nav.php:143 include/nav.php:145 mod/community.php:36 -msgid "Community" -msgstr "Komunumo" - -#: include/nav.php:143 -msgid "Conversations on this site" -msgstr "Konversacioj je ĉi-tiu retejo" - -#: include/nav.php:145 -msgid "Conversations on the network" -msgstr "" - -#: include/nav.php:149 include/identity.php:753 include/identity.php:764 -#: view/theme/frio/theme.php:257 -msgid "Events and Calendar" -msgstr "Okazoj kaj Kalendaro" - -#: include/nav.php:152 -msgid "Directory" -msgstr "Katalogo" - -#: include/nav.php:152 -msgid "People directory" -msgstr "Katalogo de homoj" - -#: include/nav.php:154 -msgid "Information" -msgstr "" - -#: include/nav.php:154 -msgid "Information about this friendica instance" -msgstr "" - -#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411 -#: view/theme/frio/theme.php:256 -msgid "Network" -msgstr "Reto" - -#: include/nav.php:158 view/theme/frio/theme.php:256 -msgid "Conversations from your friends" -msgstr "Konversacioj de viaj amikoj" - -#: include/nav.php:159 -msgid "Network Reset" -msgstr "" - -#: include/nav.php:159 -msgid "Load Network page with no filters" -msgstr "" - -#: include/nav.php:166 include/NotificationsManager.php:181 -msgid "Introductions" -msgstr "Prezentoj" - -#: include/nav.php:166 -msgid "Friend Requests" -msgstr "Kontaktpetoj" - -#: include/nav.php:169 mod/notifications.php:96 -msgid "Notifications" -msgstr "Atentigoj" - -#: include/nav.php:170 -msgid "See all notifications" -msgstr "Vidu ĉiujn atentigojn" - -#: include/nav.php:171 mod/settings.php:902 -msgid "Mark as seen" -msgstr "Marki kiel legita" - -#: include/nav.php:171 -msgid "Mark all system notifications seen" -msgstr "Marki ĉiujn atentigojn legita" - -#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258 -msgid "Messages" -msgstr "Mesaĝoj" - -#: include/nav.php:175 view/theme/frio/theme.php:258 -msgid "Private mail" -msgstr "Privata poŝto" - -#: include/nav.php:176 -msgid "Inbox" -msgstr "Enirkesto" - -#: include/nav.php:177 -msgid "Outbox" -msgstr "Elirkesto" - -#: include/nav.php:178 mod/message.php:16 -msgid "New Message" -msgstr "Nova Mesaĝo" - -#: include/nav.php:181 -msgid "Manage" -msgstr "Administri" - -#: include/nav.php:181 -msgid "Manage other pages" -msgstr "Administri aliajn paĝojn" - -#: include/nav.php:184 mod/settings.php:81 -msgid "Delegations" -msgstr "" - -#: include/nav.php:184 mod/delegate.php:130 -msgid "Delegate Page Management" -msgstr "Administrado de Delegitajn Paĝojn" - -#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 -#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259 -msgid "Settings" -msgstr "Agordoj" - -#: include/nav.php:186 view/theme/frio/theme.php:259 -msgid "Account settings" -msgstr "Konto" - -#: include/nav.php:189 include/identity.php:282 -msgid "Profiles" -msgstr "Profiloj" - -#: include/nav.php:189 -msgid "Manage/Edit Profiles" -msgstr "" - -#: include/nav.php:192 view/theme/frio/theme.php:260 -msgid "Manage/edit friends and contacts" -msgstr "Administri/redakti amikojn kaj kontaktojn" - -#: include/nav.php:197 mod/admin.php:186 -msgid "Admin" -msgstr "Administrado" - -#: include/nav.php:197 -msgid "Site setup and configuration" -msgstr "Agordoj pri la retejo" - -#: include/nav.php:200 -msgid "Navigation" -msgstr "" - -#: include/nav.php:200 -msgid "Site map" -msgstr "" - -#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62 -#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211 -#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807 -msgid "Contact Photos" -msgstr "Kontaktbildoj" - -#: include/security.php:22 -msgid "Welcome " -msgstr "Bonvenon " - -#: include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Bonvolu alŝuti profilbildon." - -#: include/security.php:26 -msgid "Welcome back " -msgstr "Bonvenon " - -#: include/security.php:373 -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 "La sekuriga ĵetono de la formo estis malĝusta. Tio verŝajne okazis ĉar la formo estis malfermita dum tro longa tempo (>3 horoj) antaŭ la sendado." - -#: include/NotificationsManager.php:153 -msgid "System" -msgstr "Sistemo" - -#: include/NotificationsManager.php:167 mod/profiles.php:703 -#: mod/network.php:845 -msgid "Personal" -msgstr "Propra" - -#: include/NotificationsManager.php:234 include/NotificationsManager.php:244 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s komentis pri la afiŝo de %s" - -#: include/NotificationsManager.php:243 -#, php-format -msgid "%s created a new post" -msgstr "%s kreis novan afiŝon" - -#: include/NotificationsManager.php:256 -#, php-format -msgid "%s liked %s's post" -msgstr "%s ŝatis la afiŝon de %s" - -#: include/NotificationsManager.php:267 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s malŝatis la afiŝon de %s" - -#: include/NotificationsManager.php:278 -#, php-format -msgid "%s is attending %s's event" -msgstr "" - -#: include/NotificationsManager.php:289 -#, php-format -msgid "%s is not attending %s's event" -msgstr "" - -#: include/NotificationsManager.php:300 -#, php-format -msgid "%s may attend %s's event" -msgstr "" - -#: include/NotificationsManager.php:315 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s amikiĝis kun %s" - -#: include/NotificationsManager.php:748 -msgid "Friend Suggestion" -msgstr "Amikosugestoj" - -#: include/NotificationsManager.php:781 -msgid "Friend/Connect Request" -msgstr "Kontaktpeto" - -#: include/NotificationsManager.php:781 -msgid "New Follower" -msgstr "Nova abonanto" - -#: include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "" - -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "" - -#: include/dbstructure.php:183 -msgid "Errors encountered creating database tables." -msgstr "Okazis eraroj dum la kreado de tabeloj en la datumbazo." - -#: include/dbstructure.php:260 -msgid "Errors encountered performing database changes." -msgstr "" - -#: include/delivery.php:446 -msgid "(no subject)" -msgstr "(neniu temo)" - -#: include/diaspora.php:1958 -msgid "Sharing notification from Diaspora network" -msgstr "Antentigo pri kunhavigado de la Diaspora reto" - -#: include/diaspora.php:2864 -msgid "Attachments:" -msgstr "Kunsendaĵoj:" - -#: include/network.php:595 -msgid "view full size" -msgstr "vidi plengrande" - -#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398 -#: include/conversation.php:968 include/conversation.php:984 -#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203 -#: mod/match.php:71 mod/suggest.php:82 -msgid "View Profile" -msgstr "Vidi Profilon" - -#: include/Contact.php:397 include/conversation.php:967 -msgid "View Status" -msgstr "Vidi Staton" - -#: include/Contact.php:399 include/conversation.php:969 -msgid "View Photos" -msgstr "Vidi Bildojn" - -#: include/Contact.php:400 include/conversation.php:970 -msgid "Network Posts" -msgstr "Enretaj Afiŝoj" - -#: include/Contact.php:401 include/conversation.php:971 -msgid "View Contact" -msgstr "" - -#: include/Contact.php:402 -msgid "Drop Contact" -msgstr "" - -#: include/Contact.php:403 include/conversation.php:972 -msgid "Send PM" -msgstr "Sendi PM" - -#: include/Contact.php:404 include/conversation.php:976 -msgid "Poke" -msgstr "" - -#: include/Contact.php:775 -msgid "Organisation" -msgstr "" - -#: include/Contact.php:778 -msgid "News" -msgstr "" - -#: include/Contact.php:781 -msgid "Forum" -msgstr "" - -#: include/api.php:1018 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:1038 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:1059 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058 -msgid "Image/photo" -msgstr "Bildo" - -#: include/bbcode.php:467 -#, php-format -msgid "%2$s %3$s" -msgstr "" - -#: include/bbcode.php:1017 include/bbcode.php:1037 -msgid "$1 wrote:" -msgstr "$1 skribis:" - -#: include/bbcode.php:1066 include/bbcode.php:1067 -msgid "Encrypted content" -msgstr "" - -#: include/bbcode.php:1169 -msgid "Invalid source protocol" -msgstr "" - -#: include/bbcode.php:1179 -msgid "Invalid link protocol" -msgstr "" - -#: include/conversation.php:147 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "" - -#: include/conversation.php:150 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "" - -#: include/conversation.php:153 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "" - -#: include/conversation.php:185 mod/dfrn_confirm.php:477 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s amikiĝis kun %2$s" - -#: include/conversation.php:219 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: include/conversation.php:239 mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "" - -#: include/conversation.php:278 mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s markis la %3$s de %2$s kun %4$s" - -#: include/conversation.php:303 -msgid "post/item" -msgstr "afiŝo/elemento" - -#: include/conversation.php:304 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s markis la %3$s de %2$s kiel preferita." - -#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346 -#: mod/photos.php:1607 -msgid "Likes" -msgstr "Ŝatoj" - -#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350 -#: mod/photos.php:1607 -msgid "Dislikes" -msgstr "Malŝatoj" - -#: include/conversation.php:586 include/conversation.php:1481 -#: mod/content.php:373 mod/photos.php:1608 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 -msgid "Not attending" -msgstr "" - -#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 -msgid "Might attend" -msgstr "" - -#: include/conversation.php:708 mod/content.php:453 mod/content.php:758 -#: mod/photos.php:1681 object/Item.php:133 -msgid "Select" -msgstr "Elekti" - -#: include/conversation.php:709 mod/group.php:171 mod/content.php:454 -#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741 -#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007 -#: object/Item.php:134 -msgid "Delete" -msgstr "Forviŝi" - -#: include/conversation.php:753 mod/content.php:487 mod/content.php:910 -#: mod/content.php:911 object/Item.php:367 object/Item.php:368 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vidi la profilon de %s ĉe %s" - -#: include/conversation.php:765 object/Item.php:355 -msgid "Categories:" -msgstr "" - -#: include/conversation.php:766 object/Item.php:356 -msgid "Filed under:" -msgstr "" - -#: include/conversation.php:773 mod/content.php:497 mod/content.php:923 -#: object/Item.php:381 -#, php-format -msgid "%s from %s" -msgstr "%s de %s" - -#: include/conversation.php:789 mod/content.php:513 -msgid "View in context" -msgstr "Vidi kun kunteksto" - -#: include/conversation.php:791 include/conversation.php:1264 -#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 -#: mod/message.php:548 mod/content.php:515 mod/content.php:948 -#: mod/photos.php:1570 object/Item.php:406 -msgid "Please wait" -msgstr "Bonvolu atendi" - -#: include/conversation.php:870 -msgid "remove" -msgstr "forviŝi" - -#: include/conversation.php:874 -msgid "Delete Selected Items" -msgstr "Forviŝi Elektitajn Elementojn" - -#: include/conversation.php:966 -msgid "Follow Thread" -msgstr "" - -#: include/conversation.php:1097 -#, php-format -msgid "%s likes this." -msgstr "%s ŝatas tiun." - -#: include/conversation.php:1100 -#, php-format -msgid "%s doesn't like this." -msgstr "%s malŝatas tiun." - -#: include/conversation.php:1103 -#, php-format -msgid "%s attends." -msgstr "" - -#: include/conversation.php:1106 -#, php-format -msgid "%s doesn't attend." -msgstr "" - -#: include/conversation.php:1109 -#, php-format -msgid "%s attends maybe." -msgstr "" - -#: include/conversation.php:1119 -msgid "and" -msgstr "kaj" - -#: include/conversation.php:1125 -#, php-format -msgid ", and %d other people" -msgstr ", kaj %d aliaj homoj." - -#: include/conversation.php:1134 -#, php-format -msgid "%2$d people like this" -msgstr "" - -#: include/conversation.php:1135 -#, php-format -msgid "%s like this." -msgstr "" - -#: include/conversation.php:1138 -#, php-format -msgid "%2$d people don't like this" -msgstr "" - -#: include/conversation.php:1139 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: include/conversation.php:1142 -#, php-format -msgid "%2$d people attend" -msgstr "" - -#: include/conversation.php:1143 -#, php-format -msgid "%s attend." -msgstr "" - -#: include/conversation.php:1146 -#, php-format -msgid "%2$d people don't attend" -msgstr "" - -#: include/conversation.php:1147 -#, php-format -msgid "%s don't attend." -msgstr "" - -#: include/conversation.php:1150 -#, php-format -msgid "%2$d people attend maybe" -msgstr "" - -#: include/conversation.php:1151 -#, php-format -msgid "%s anttend maybe." -msgstr "" - -#: include/conversation.php:1190 include/conversation.php:1208 -msgid "Visible to everybody" -msgstr "Videbla al ĉiuj" - -#: include/conversation.php:1191 include/conversation.php:1209 -#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 -#: mod/message.php:299 mod/message.php:442 mod/message.php:450 -msgid "Please enter a link URL:" -msgstr "Bonvolu entajpu adreson de ligilo:" - -#: include/conversation.php:1192 include/conversation.php:1210 -msgid "Please enter a video link/URL:" -msgstr "Bonvolu entajpi ligilon/adreson de video:" - -#: include/conversation.php:1193 include/conversation.php:1211 -msgid "Please enter an audio link/URL:" -msgstr "Bonvolu entajpi ligilon/adreson de sono:" - -#: include/conversation.php:1194 include/conversation.php:1212 -msgid "Tag term:" -msgstr "Markfrazo:" - -#: include/conversation.php:1195 include/conversation.php:1213 -#: mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Konservi en Dosierujo:" - -#: include/conversation.php:1196 include/conversation.php:1214 -msgid "Where are you right now?" -msgstr "Kie vi estas nun?" - -#: include/conversation.php:1197 -msgid "Delete item(s)?" -msgstr "" - -#: include/conversation.php:1245 mod/photos.php:1569 -msgid "Share" -msgstr "Kunhavigi" - -#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154 -#: mod/message.php:354 mod/message.php:545 -msgid "Upload photo" -msgstr "Alŝuti bildon" - -#: include/conversation.php:1247 mod/editpost.php:111 -msgid "upload photo" -msgstr "alŝuti bildon" - -#: include/conversation.php:1248 mod/editpost.php:112 -msgid "Attach file" -msgstr "Kunligi dosieron" - -#: include/conversation.php:1249 mod/editpost.php:113 -msgid "attach file" -msgstr "kunsendi dosieron" - -#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155 -#: mod/message.php:355 mod/message.php:546 -msgid "Insert web link" -msgstr "Enmeti retan adreson" - -#: include/conversation.php:1251 mod/editpost.php:115 -msgid "web link" -msgstr "TTT ligilo" - -#: include/conversation.php:1252 mod/editpost.php:116 -msgid "Insert video link" -msgstr "Alglui ligilon de video" - -#: include/conversation.php:1253 mod/editpost.php:117 -msgid "video link" -msgstr "video ligilo" - -#: include/conversation.php:1254 mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Alglui ligilon de sono" - -#: include/conversation.php:1255 mod/editpost.php:119 -msgid "audio link" -msgstr "sono ligilo" - -#: include/conversation.php:1256 mod/editpost.php:120 -msgid "Set your location" -msgstr "Agordi vian lokon" - -#: include/conversation.php:1257 mod/editpost.php:121 -msgid "set location" -msgstr "agordi lokon" - -#: include/conversation.php:1258 mod/editpost.php:122 -msgid "Clear browser location" -msgstr "Forviŝu retesplorilan lokon" - -#: include/conversation.php:1259 mod/editpost.php:123 -msgid "clear location" -msgstr "forviŝi lokon" - -#: include/conversation.php:1261 mod/editpost.php:137 -msgid "Set title" -msgstr "Redakti titolon" - -#: include/conversation.php:1263 mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Kategorioj (disigita per komo)" - -#: include/conversation.php:1265 mod/editpost.php:125 -msgid "Permission settings" -msgstr "Permesagordoj" - -#: include/conversation.php:1266 mod/editpost.php:154 -msgid "permissions" -msgstr "permesoj" - -#: include/conversation.php:1274 mod/editpost.php:134 -msgid "Public post" -msgstr "Publika afiŝo" - -#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737 -#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639 -#: mod/photos.php:1725 object/Item.php:729 -msgid "Preview" -msgstr "Antaŭrigardi" - -#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101 -#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148 -#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235 -#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705 -#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876 -#: mod/follow.php:121 -msgid "Cancel" -msgstr "Nuligi" - -#: include/conversation.php:1289 -msgid "Post to Groups" -msgstr "" - -#: include/conversation.php:1290 -msgid "Post to Contacts" -msgstr "" - -#: include/conversation.php:1291 -msgid "Private post" -msgstr "" - -#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152 -msgid "Message" -msgstr "Mesaĝo" - -#: include/conversation.php:1297 mod/editpost.php:153 -msgid "Browser" -msgstr "" - -#: include/conversation.php:1453 -msgid "View all" -msgstr "" - -#: include/conversation.php:1475 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:1478 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:1484 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: include/dfrn.php:1108 -#, php-format -msgid "%s\\'s birthday" -msgstr "" - -#: include/features.php:70 -msgid "General Features" -msgstr "" - -#: include/features.php:72 -msgid "Multiple Profiles" -msgstr "" - -#: include/features.php:72 -msgid "Ability to create multiple profiles" -msgstr "" - -#: include/features.php:73 -msgid "Photo Location" -msgstr "" - -#: include/features.php:73 -msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "" - -#: include/features.php:74 -msgid "Export Public Calendar" -msgstr "" - -#: include/features.php:74 -msgid "Ability for visitors to download the public calendar" -msgstr "" - -#: include/features.php:79 -msgid "Post Composition Features" -msgstr "" - -#: include/features.php:80 -msgid "Richtext Editor" -msgstr "" - -#: include/features.php:80 -msgid "Enable richtext editor" -msgstr "" - -#: include/features.php:81 -msgid "Post Preview" -msgstr "" - -#: include/features.php:81 -msgid "Allow previewing posts and comments before publishing them" -msgstr "" - -#: include/features.php:82 -msgid "Auto-mention Forums" -msgstr "" - -#: include/features.php:82 -msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "" - -#: include/features.php:87 -msgid "Network Sidebar Widgets" -msgstr "" - -#: include/features.php:88 -msgid "Search by Date" -msgstr "" - -#: include/features.php:88 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: include/features.php:89 include/features.php:119 -msgid "List Forums" -msgstr "" - -#: include/features.php:89 -msgid "Enable widget to display the forums your are connected with" -msgstr "" - -#: include/features.php:90 -msgid "Group Filter" -msgstr "" - -#: include/features.php:90 -msgid "Enable widget to display Network posts only from selected group" -msgstr "" - -#: include/features.php:91 -msgid "Network Filter" -msgstr "" - -#: include/features.php:91 -msgid "Enable widget to display Network posts only from selected network" -msgstr "" - -#: include/features.php:92 mod/search.php:34 mod/network.php:200 -msgid "Saved Searches" -msgstr "Konservitaj Serĉadoj" - -#: include/features.php:92 -msgid "Save search terms for re-use" -msgstr "" - -#: include/features.php:97 -msgid "Network Tabs" -msgstr "" - -#: include/features.php:98 -msgid "Network Personal Tab" -msgstr "" - -#: include/features.php:98 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: include/features.php:99 -msgid "Network New Tab" -msgstr "" - -#: include/features.php:99 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "" - -#: include/features.php:100 -msgid "Network Shared Links Tab" -msgstr "" - -#: include/features.php:100 -msgid "Enable tab to display only Network posts with links in them" -msgstr "" - -#: include/features.php:105 -msgid "Post/Comment Tools" -msgstr "" - -#: include/features.php:106 -msgid "Multiple Deletion" -msgstr "" - -#: include/features.php:106 -msgid "Select and delete multiple posts/comments at once" -msgstr "" - -#: include/features.php:107 -msgid "Edit Sent Posts" -msgstr "" - -#: include/features.php:107 -msgid "Edit and correct posts and comments after sending" -msgstr "" - -#: include/features.php:108 -msgid "Tagging" -msgstr "" - -#: include/features.php:108 -msgid "Ability to tag existing posts" -msgstr "" - -#: include/features.php:109 -msgid "Post Categories" -msgstr "" - -#: include/features.php:109 -msgid "Add categories to your posts" -msgstr "" - -#: include/features.php:110 -msgid "Ability to file posts under folders" -msgstr "" - -#: include/features.php:111 -msgid "Dislike Posts" -msgstr "" - -#: include/features.php:111 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: include/features.php:112 -msgid "Star Posts" -msgstr "" - -#: include/features.php:112 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: include/features.php:113 -msgid "Mute Post Notifications" -msgstr "" - -#: include/features.php:113 -msgid "Ability to mute notifications for a thread" -msgstr "" - -#: include/features.php:118 -msgid "Advanced Profile Settings" -msgstr "" - -#: include/features.php:119 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "" - -#: include/follow.php:81 mod/dfrn_request.php:509 -msgid "Disallowed profile URL." -msgstr "Malpermesita adreso de profilo." - -#: include/follow.php:86 -msgid "Connect URL missing." -msgstr "Ne ekzistas URL adreso por konekti." - -#: include/follow.php:113 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Tiu retpaĝo ne permesas komunikadon kun aliaj retoj." - -#: include/follow.php:114 include/follow.php:134 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Ne malkovris kongruajn protokolojn por komunikado aŭ fluojn." - -#: include/follow.php:132 -msgid "The profile address specified does not provide adequate information." -msgstr "La specifita profiladreso ne enhavas sufiĉe da informoj." - -#: include/follow.php:136 -msgid "An author or name was not found." -msgstr "Ne trovis aŭtoron aŭ nomon." - -#: include/follow.php:138 -msgid "No browser URL could be matched to this address." -msgstr "Neniu retuma URL adreso kongruas al la adreso." - -#: include/follow.php:140 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Ne eblas kongrui @-stilan identecon adreson al iu konata protokolo au retpoŝtadreso." - -#: include/follow.php:141 -msgid "Use mailto: in front of address to force email check." -msgstr "Uzu mailto: antaŭ la adreso por devigi la testadon per retpoŝto." - -#: include/follow.php:147 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Tiu profila adreso apartenas al retejo kiu estas maŝaltita je ĉi tiu retejo." - -#: include/follow.php:157 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Profilo limigata. Ĉi persono ne eblos ricevi rektajn/personajn atentigojn de vi. " - -#: include/follow.php:258 -msgid "Unable to retrieve contact information." -msgstr "Ne eblas ricevi kontaktinformojn." - -#: include/identity.php:42 -msgid "Requested account is not available." -msgstr "" - -#: include/identity.php:51 mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "La petita profilo ne disponeblas." - -#: include/identity.php:95 include/identity.php:311 include/identity.php:688 -msgid "Edit profile" -msgstr "Redakti profilon" - -#: include/identity.php:251 -msgid "Atom feed" -msgstr "" - -#: include/identity.php:282 -msgid "Manage/edit profiles" -msgstr "Administri/redakti profilojn" - -#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795 -msgid "Change profile photo" -msgstr "Ŝanĝi profilbildon" - -#: include/identity.php:288 mod/profiles.php:796 -msgid "Create New Profile" -msgstr "Krei novan profilon" - -#: include/identity.php:298 mod/profiles.php:785 -msgid "Profile Image" -msgstr "Profilbildo" - -#: include/identity.php:301 mod/profiles.php:787 -msgid "visible to everybody" -msgstr "videbla al ĉiuj" - -#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788 -msgid "Edit visibility" -msgstr "Redakti videblecon" - -#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238 -#: mod/directory.php:139 -msgid "Gender:" -msgstr "Sekso:" - -#: include/identity.php:333 include/identity.php:636 mod/directory.php:141 -msgid "Status:" -msgstr "Stato:" - -#: include/identity.php:335 include/identity.php:647 mod/directory.php:143 -msgid "Homepage:" -msgstr "Hejmpaĝo:" - -#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234 -#: mod/directory.php:145 mod/contacts.php:632 -msgid "About:" -msgstr "Pri:" - -#: include/identity.php:339 mod/contacts.php:630 -msgid "XMPP:" -msgstr "" - -#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50 -msgid "Network:" -msgstr "" - -#: include/identity.php:451 include/identity.php:535 -msgid "g A l F d" -msgstr "\\j\\e \\l\\a G\\a \\h\\o\\r\\o, l F d" - -#: include/identity.php:452 include/identity.php:536 -msgid "F d" -msgstr "F d" - -#: include/identity.php:497 include/identity.php:582 -msgid "[today]" -msgstr "[hodiaŭ]" - -#: include/identity.php:509 -msgid "Birthday Reminders" -msgstr "Memorigilo pri naskiĝtagoj" - -#: include/identity.php:510 -msgid "Birthdays this week:" -msgstr "Naskiĝtagoj ĉi-semajne:" - -#: include/identity.php:569 -msgid "[No description]" -msgstr "[Neniu priskribo]" - -#: include/identity.php:593 -msgid "Event Reminders" -msgstr "Memorigilo pri Okazoj" - -#: include/identity.php:594 -msgid "Events this week:" -msgstr "Okazoj ĉi-semajne:" - -#: include/identity.php:614 mod/settings.php:1279 -msgid "Full Name:" -msgstr "Plena Nomo:" - -#: include/identity.php:621 -msgid "j F, Y" -msgstr "j F, Y" - -#: include/identity.php:622 -msgid "j F" -msgstr "j F" - -#: include/identity.php:633 -msgid "Age:" -msgstr "Aĝo:" - -#: include/identity.php:642 -#, php-format -msgid "for %1$d %2$s" -msgstr "por %1$d %2$s" - -#: include/identity.php:645 mod/profiles.php:710 -msgid "Sexual Preference:" -msgstr "Seksa Prefero:" - -#: include/identity.php:649 mod/profiles.php:737 -msgid "Hometown:" -msgstr "Hejmurbo:" - -#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634 -#: mod/follow.php:134 -msgid "Tags:" -msgstr "Markoj:" - -#: include/identity.php:653 mod/profiles.php:738 -msgid "Political Views:" -msgstr "Politikaj Opinioj:" - -#: include/identity.php:655 -msgid "Religion:" -msgstr "Religio:" - -#: include/identity.php:659 -msgid "Hobbies/Interests:" -msgstr "Ŝatokupoj/Interesoj:" - -#: include/identity.php:661 mod/profiles.php:742 -msgid "Likes:" -msgstr "Ŝatoj:" - -#: include/identity.php:663 mod/profiles.php:743 -msgid "Dislikes:" -msgstr "Malŝatoj:" - -#: include/identity.php:666 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformoj kaj Interkonaj Retejoj:" - -#: include/identity.php:668 -msgid "Musical interests:" -msgstr "Muzaikaj interesoj:" - -#: include/identity.php:670 -msgid "Books, literature:" -msgstr "Libroj, literaturo:" - -#: include/identity.php:672 -msgid "Television:" -msgstr "Televido:" - -#: include/identity.php:674 -msgid "Film/dance/culture/entertainment:" -msgstr "Filmoj/dancoj/arto/amuzaĵoj:" - -#: include/identity.php:676 -msgid "Love/Romance:" -msgstr "Amo/romanco:" - -#: include/identity.php:678 -msgid "Work/employment:" -msgstr "Laboro:" - -#: include/identity.php:680 -msgid "School/education:" -msgstr "Lernejo/eduko:" - -#: include/identity.php:684 -msgid "Forums:" -msgstr "" - -#: include/identity.php:692 mod/events.php:507 -msgid "Basic" -msgstr "" - -#: include/identity.php:693 mod/events.php:508 mod/admin.php:959 -#: mod/contacts.php:870 -msgid "Advanced" -msgstr "Altnivela" - -#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142 -msgid "Status Messages and Posts" -msgstr "Ŝtatmesaĝoj kaj Afiŝoj" - -#: include/identity.php:725 mod/contacts.php:844 -msgid "Profile Details" -msgstr "Profildetaloj" - -#: include/identity.php:733 mod/photos.php:87 -msgid "Photo Albums" -msgstr "Bildalbumoj" - -#: include/identity.php:772 mod/notes.php:46 -msgid "Personal Notes" -msgstr "Personaj Notoj" - -#: include/identity.php:775 -msgid "Only You Can See This" -msgstr "Nur Vi Povas Vidi Tiun" - -#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746 -msgid "[Name Withheld]" -msgstr "[Kaŝita nomo]" - -#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15 -#: mod/display.php:103 mod/display.php:279 mod/display.php:478 -#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705 -msgid "Item not found." -msgstr "Elemento ne estas trovita." - -#: include/items.php:1969 -msgid "Do you really want to delete this item?" -msgstr "" - -#: include/items.php:1971 mod/api.php:105 mod/message.php:217 -#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677 -#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163 -#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 -#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 -#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 -#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 -#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110 -msgid "Yes" -msgstr "Jes" - -#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23 -#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101 -#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33 -#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9 -#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 -#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9 -#: mod/message.php:46 mod/message.php:182 mod/manage.php:96 -#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150 -#: mod/profile_photo.php:19 mod/profile_photo.php:175 -#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110 -#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605 -#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11 -#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58 -#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42 -#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665 -#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77 -#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61 -#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199 -#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401 -msgid "Permission denied." -msgstr "Malpermesita." - -#: include/items.php:2239 +#: src/Content/Widget.php:506 msgid "Archives" msgstr "Arkivoj" -#: include/oembed.php:264 -msgid "Embedded content" -msgstr "Enigita enhavo" - -#: include/oembed.php:272 -msgid "Embedding disabled" -msgstr "Malŝaltita enigitado" - -#: include/ostatus.php:1825 -#, php-format -msgid "%s is now following %s." +#: src/Content/Widget.php:514 +msgid "On this date" msgstr "" -#: include/ostatus.php:1826 -msgid "following" -msgstr "sekvanta" - -#: include/ostatus.php:1829 -#, php-format -msgid "%s stopped following %s." +#: src/Content/Widget.php:534 +msgid "Persons" msgstr "" -#: include/ostatus.php:1830 -msgid "stopped following" -msgstr "ne plu sekvas" - -#: include/text.php:304 -msgid "newer" -msgstr "pli nova" - -#: include/text.php:306 -msgid "older" -msgstr "pli malnova" - -#: include/text.php:311 -msgid "prev" -msgstr "antaŭa" - -#: include/text.php:313 -msgid "first" -msgstr "unua" - -#: include/text.php:345 -msgid "last" -msgstr "lasta" - -#: include/text.php:348 -msgid "next" -msgstr "sekvanta" - -#: include/text.php:403 -msgid "Loading more entries..." +#: src/Content/Widget.php:535 +msgid "Organisations" msgstr "" -#: include/text.php:404 -msgid "The end" +#: src/Content/Widget.php:536 src/Model/Contact.php:1698 +msgid "News" msgstr "" -#: include/text.php:889 +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 +msgid "Account Types" +msgstr "" + +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 +msgid "All" +msgstr "" + +#: src/Content/Widget.php:573 src/Module/Settings/Display.php:266 +msgid "Channels" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:56 +msgid "Export" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:57 +msgid "Export calendar as ical" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:58 +msgid "Export calendar as csv" +msgstr "" + +#: src/Content/Widget/ContactBlock.php:79 msgid "No contacts" msgstr "Neniu kontaktoj" -#: include/text.php:912 +#: src/Content/Widget/ContactBlock.php:110 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d Kontakto" msgstr[1] "%d Kontaktoj" -#: include/text.php:925 +#: src/Content/Widget/ContactBlock.php:127 msgid "View Contacts" msgstr "Vidi Kontaktojn" -#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31 -#: mod/editpost.php:109 -msgid "Save" -msgstr "Konservi" +#: src/Content/Widget/SavedSearches.php:47 +msgid "Remove term" +msgstr "Forviŝu terminon" -#: include/text.php:1076 -msgid "poke" +#: src/Content/Widget/SavedSearches.php:60 +msgid "Saved Searches" +msgstr "Konservitaj Serĉadoj" + +#: src/Content/Widget/TrendingTags.php:52 +#, php-format +msgid "Trending Tags (last %d hour)" +msgid_plural "Trending Tags (last %d hours)" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Widget/TrendingTags.php:53 +msgid "More Trending Tags" msgstr "" -#: include/text.php:1076 -msgid "poked" +#: src/Content/Widget/VCard.php:109 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 +msgid "XMPP:" msgstr "" -#: include/text.php:1077 -msgid "ping" +#: src/Content/Widget/VCard.php:110 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 +msgid "Matrix:" msgstr "" -#: include/text.php:1077 -msgid "pinged" +#: src/Content/Widget/VCard.php:111 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Loko:" + +#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:474 +#: src/Module/Notifications/Introductions.php:201 +msgid "Network:" msgstr "" -#: include/text.php:1078 -msgid "prod" +#: src/Content/Widget/VCard.php:118 src/Model/Contact.php:1223 +#: src/Model/Contact.php:1234 src/Model/Profile.php:463 +#: src/Module/Contact/Profile.php:463 +msgid "Unfollow" msgstr "" -#: include/text.php:1078 -msgid "prodded" +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +msgid "Yourself" msgstr "" -#: include/text.php:1079 -msgid "slap" +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 +msgid "Mutuals" msgstr "" -#: include/text.php:1079 -msgid "slapped" +#: src/Core/ACL.php:294 +msgid "Post to Email" +msgstr "Sendi per retpoŝto" + +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 +msgid "Public" msgstr "" -#: include/text.php:1080 -msgid "finger" +#: src/Core/ACL.php:322 +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 "" -#: include/text.php:1080 -msgid "fingered" +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 +msgid "Limited/Private" msgstr "" -#: include/text.php:1081 -msgid "rebuff" +#: src/Core/ACL.php:324 +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 "" -#: include/text.php:1081 -msgid "rebuffed" +#: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "" -#: include/text.php:1095 -msgid "happy" +#: src/Core/ACL.php:325 +msgid "Show to:" msgstr "" -#: include/text.php:1096 -msgid "sad" +#: src/Core/ACL.php:326 +msgid "Except to:" msgstr "" -#: include/text.php:1097 -msgid "mellow" +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "CC: retpoŝtadresojn" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Ekzemple: bob@example.com, mary@example.com" + +#: src/Core/ACL.php:329 +msgid "Connectors" msgstr "" -#: include/text.php:1098 -msgid "tired" +#: src/Core/Installer.php:180 +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 "" -#: include/text.php:1099 -msgid "perky" +#: src/Core/Installer.php:197 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Vi bezonas mane importi la dosieron \"database.sql\" per phpmyadmin aŭ mysql." + +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 +msgid "Please see the file \"doc/INSTALL.md\"." msgstr "" -#: include/text.php:1100 -msgid "angry" +#: src/Core/Installer.php:259 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Komanda linia versio de PHP ne trovita en PATH de la retservilo." + +#: src/Core/Installer.php:260 +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 "" -#: include/text.php:1101 -msgid "stupified" +#: src/Core/Installer.php:265 +msgid "PHP executable path" +msgstr "Vojo de la komanda linia versio de PHP" + +#: src/Core/Installer.php:265 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Entajpu la plenan vojon al la php komandodosiero. Vi eblas lasi tion malplena por pluigi la instalado." + +#: src/Core/Installer.php:270 +msgid "Command line PHP" +msgstr "komanda linia versio de PHP" + +#: src/Core/Installer.php:279 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "" -#: include/text.php:1102 -msgid "puzzled" +#: src/Core/Installer.php:280 +msgid "Found PHP version: " msgstr "" -#: include/text.php:1103 -msgid "interested" +#: src/Core/Installer.php:282 +msgid "PHP cli binary" msgstr "" -#: include/text.php:1104 -msgid "bitter" +#: src/Core/Installer.php:295 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "En via komanda linia versio de PHP je via sistemo, \"register_argc_argv\" ne estas aktivita." + +#: src/Core/Installer.php:296 +msgid "This is required for message delivery to work." +msgstr "Tio estas bezonata por la livero de mesaĝoj." + +#: src/Core/Installer.php:301 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: src/Core/Installer.php:333 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Eraro: La funkcio \"openssl_pkey_new\" je tia sistemo ne eblas generi ĉifroŝlosilojn." + +#: src/Core/Installer.php:334 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Se la operaciumo sistemo estas Windows, bonvolu legi: http://www.php.net/manual/en/openssl.installation.php" + +#: src/Core/Installer.php:337 +msgid "Generate encryption keys" +msgstr "Generi ĉifroŝlosilojn" + +#: src/Core/Installer.php:389 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Eraro: La modulo mod_rewrite en la Apache retservilo estas bezonata sed ne instalita." + +#: src/Core/Installer.php:394 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite modulo" + +#: src/Core/Installer.php:400 +msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "" -#: include/text.php:1105 -msgid "cheerful" +#: src/Core/Installer.php:405 +msgid "Error: The MySQL driver for PDO is not installed." msgstr "" -#: include/text.php:1106 -msgid "alive" +#: src/Core/Installer.php:409 +msgid "PDO or MySQLi PHP module" msgstr "" -#: include/text.php:1107 -msgid "annoyed" +#: src/Core/Installer.php:417 +msgid "Error, XML PHP module required but not installed." msgstr "" -#: include/text.php:1108 -msgid "anxious" +#: src/Core/Installer.php:421 +msgid "XML PHP module" msgstr "" -#: include/text.php:1109 -msgid "cranky" +#: src/Core/Installer.php:424 +msgid "libCurl PHP module" +msgstr "PHP modulo libCurl" + +#: src/Core/Installer.php:425 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Eraro: La modulo libCURL en PHP estas bezonata sed ne instalita." + +#: src/Core/Installer.php:431 +msgid "GD graphics PHP module" +msgstr "PHP modulo GD" + +#: src/Core/Installer.php:432 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Eraro: La modulo GD en PHP kun subteno por JPEG estas bezonata sed ne instalita." + +#: src/Core/Installer.php:438 +msgid "OpenSSL PHP module" +msgstr "PHP modulo OpenSSL" + +#: src/Core/Installer.php:439 +msgid "Error: openssl PHP module required but not installed." +msgstr "Eraro: La modulo OpenSSL en PHP estas bezonata sed ne instalita." + +#: src/Core/Installer.php:445 +msgid "mb_string PHP module" +msgstr "PHP modulo mb_string" + +#: src/Core/Installer.php:446 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Eraro: La modulo mb_string en PHP estas bezonata sed ne instalita." + +#: src/Core/Installer.php:452 +msgid "iconv PHP module" msgstr "" -#: include/text.php:1110 -msgid "disturbed" +#: src/Core/Installer.php:453 +msgid "Error: iconv PHP module required but not installed." msgstr "" -#: include/text.php:1111 -msgid "frustrated" +#: src/Core/Installer.php:459 +msgid "POSIX PHP module" msgstr "" -#: include/text.php:1112 -msgid "motivated" +#: src/Core/Installer.php:460 +msgid "Error: POSIX PHP module required but not installed." msgstr "" -#: include/text.php:1113 -msgid "relaxed" +#: src/Core/Installer.php:466 +msgid "Program execution functions" msgstr "" -#: include/text.php:1114 -msgid "surprised" +#: src/Core/Installer.php:467 +msgid "" +"Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: include/text.php:1324 mod/videos.php:380 -msgid "View Video" +#: src/Core/Installer.php:473 +msgid "JSON PHP module" msgstr "" -#: include/text.php:1356 -msgid "bytes" -msgstr "bajtoj" - -#: include/text.php:1388 include/text.php:1400 -msgid "Click to open/close" -msgstr "Klaku por malfermi/fermi" - -#: include/text.php:1526 -msgid "View on separate page" +#: src/Core/Installer.php:474 +msgid "Error: JSON PHP module required but not installed." msgstr "" -#: include/text.php:1527 -msgid "view on separate page" +#: src/Core/Installer.php:480 +msgid "File Information PHP module" msgstr "" -#: include/text.php:1806 +#: src/Core/Installer.php:481 +msgid "Error: File Information PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:487 +msgid "GNU Multiple Precision PHP module" +msgstr "" + +#: src/Core/Installer.php:488 +msgid "Error: GNU Multiple Precision PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:511 +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 "" + +#: src/Core/Installer.php:512 +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 "Tio ĉi plej ofte estas agordo rilate al permesoj, ĉar la servilo eble ne povas skribi en via dosierujo, eĉ se vi mem povas skribi." + +#: src/Core/Installer.php:513 +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 "" + +#: src/Core/Installer.php:514 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"doc/INSTALL.md\" for instructions." +msgstr "" + +#: src/Core/Installer.php:517 +msgid "config/local.config.php is writable" +msgstr "" + +#: src/Core/Installer.php:537 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "" + +#: src/Core/Installer.php:538 +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 "" + +#: src/Core/Installer.php:539 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "" + +#: src/Core/Installer.php:540 +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 "" + +#: src/Core/Installer.php:543 +msgid "view/smarty3 is writable" +msgstr "" + +#: src/Core/Installer.php:571 +msgid "" +"Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" +"dist to .htaccess." +msgstr "" + +#: src/Core/Installer.php:572 +msgid "" +"In some circumstances (like running inside containers), you can skip this " +"error." +msgstr "" + +#: src/Core/Installer.php:574 +msgid "Error message from Curl when fetching" +msgstr "" + +#: src/Core/Installer.php:580 +msgid "Url rewrite is working" +msgstr "URL rewrite funkcias." + +#: src/Core/Installer.php:609 +msgid "" +"The detection of TLS to secure the communication between the browser and the" +" new Friendica server failed." +msgstr "" + +#: src/Core/Installer.php:610 +msgid "" +"It is highly encouraged to use Friendica only over a secure connection as " +"sensitive information like passwords will be transmitted." +msgstr "" + +#: src/Core/Installer.php:611 +msgid "Please ensure that the connection to the server is secure." +msgstr "" + +#: src/Core/Installer.php:612 +msgid "No TLS detected" +msgstr "" + +#: src/Core/Installer.php:614 +msgid "TLS detected" +msgstr "" + +#: src/Core/Installer.php:641 +msgid "ImageMagick PHP extension is not installed" +msgstr "" + +#: src/Core/Installer.php:643 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: src/Core/Installer.php:645 +msgid "ImageMagick supports GIF" +msgstr "" + +#: src/Core/Installer.php:667 +msgid "Database already in use." +msgstr "" + +#: src/Core/Installer.php:672 +msgid "Could not connect to database." +msgstr "Ne eblas konekti la datumbazon." + +#: src/Core/L10n.php:476 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:235 +msgid "Monday" +msgstr "Lundo" + +#: src/Core/L10n.php:476 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:236 +msgid "Tuesday" +msgstr "Mardo" + +#: src/Core/L10n.php:476 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:237 +msgid "Wednesday" +msgstr "Merkredo" + +#: src/Core/L10n.php:476 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:238 +msgid "Thursday" +msgstr "Ĵaŭdo" + +#: src/Core/L10n.php:476 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:239 +msgid "Friday" +msgstr "Vendredo" + +#: src/Core/L10n.php:476 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:240 +msgid "Saturday" +msgstr "Sabato" + +#: src/Core/L10n.php:476 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:234 +msgid "Sunday" +msgstr "Dimanĉo" + +#: src/Core/L10n.php:480 src/Model/Event.php:450 +msgid "January" +msgstr "Januaro" + +#: src/Core/L10n.php:480 src/Model/Event.php:451 +msgid "February" +msgstr "Februaro" + +#: src/Core/L10n.php:480 src/Model/Event.php:452 +msgid "March" +msgstr "Marto" + +#: src/Core/L10n.php:480 src/Model/Event.php:453 +msgid "April" +msgstr "Aprilo" + +#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441 +msgid "May" +msgstr "Majo" + +#: src/Core/L10n.php:480 src/Model/Event.php:454 +msgid "June" +msgstr "Junio" + +#: src/Core/L10n.php:480 src/Model/Event.php:455 +msgid "July" +msgstr "Julio" + +#: src/Core/L10n.php:480 src/Model/Event.php:456 +msgid "August" +msgstr "Aŭgusto" + +#: src/Core/L10n.php:480 src/Model/Event.php:457 +msgid "September" +msgstr "Septembro" + +#: src/Core/L10n.php:480 src/Model/Event.php:458 +msgid "October" +msgstr "Oktobro" + +#: src/Core/L10n.php:480 src/Model/Event.php:459 +msgid "November" +msgstr "Novembro" + +#: src/Core/L10n.php:480 src/Model/Event.php:460 +msgid "December" +msgstr "Decembro" + +#: src/Core/L10n.php:495 src/Model/Event.php:422 +msgid "Mon" +msgstr "" + +#: src/Core/L10n.php:495 src/Model/Event.php:423 +msgid "Tue" +msgstr "" + +#: src/Core/L10n.php:495 src/Model/Event.php:424 +msgid "Wed" +msgstr "" + +#: src/Core/L10n.php:495 src/Model/Event.php:425 +msgid "Thu" +msgstr "" + +#: src/Core/L10n.php:495 src/Model/Event.php:426 +msgid "Fri" +msgstr "" + +#: src/Core/L10n.php:495 src/Model/Event.php:427 +msgid "Sat" +msgstr "" + +#: src/Core/L10n.php:495 src/Model/Event.php:421 +msgid "Sun" +msgstr "" + +#: src/Core/L10n.php:499 src/Model/Event.php:437 +msgid "Jan" +msgstr "" + +#: src/Core/L10n.php:499 src/Model/Event.php:438 +msgid "Feb" +msgstr "" + +#: src/Core/L10n.php:499 src/Model/Event.php:439 +msgid "Mar" +msgstr "" + +#: src/Core/L10n.php:499 src/Model/Event.php:440 +msgid "Apr" +msgstr "" + +#: src/Core/L10n.php:499 src/Model/Event.php:442 +msgid "Jun" +msgstr "" + +#: src/Core/L10n.php:499 src/Model/Event.php:443 +msgid "Jul" +msgstr "" + +#: src/Core/L10n.php:499 src/Model/Event.php:444 +msgid "Aug" +msgstr "" + +#: src/Core/L10n.php:499 +msgid "Sep" +msgstr "" + +#: src/Core/L10n.php:499 src/Model/Event.php:446 +msgid "Oct" +msgstr "" + +#: src/Core/L10n.php:499 src/Model/Event.php:447 +msgid "Nov" +msgstr "" + +#: src/Core/L10n.php:499 src/Model/Event.php:448 +msgid "Dec" +msgstr "" + +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Core/Renderer.php:89 src/Core/Renderer.php:118 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 +msgid "" +"Friendica can't display this page at the moment, please contact the " +"administrator." +msgstr "" + +#: src/Core/Renderer.php:143 +msgid "template engine cannot be registered without a name." +msgstr "" + +#: src/Core/Renderer.php:177 +msgid "template engine is not registered!" +msgstr "" + +#: src/Core/Storage/Type/FilesystemConfig.php:78 +msgid "Storage base path" +msgstr "" + +#: src/Core/Storage/Type/FilesystemConfig.php:80 +msgid "" +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "" + +#: src/Core/Storage/Type/FilesystemConfig.php:93 +msgid "Enter a valid existing folder" +msgstr "" + +#: src/Core/Update.php:80 +#, php-format +msgid "" +"Updates from version %s are not supported. Please update at least to version" +" 2021.01 and wait until the postupdate finished version 1383." +msgstr "" + +#: src/Core/Update.php:91 +#, php-format +msgid "" +"Updates from postupdate version %s are not supported. Please update at least" +" to version 2021.01 and wait until the postupdate finished version 1383." +msgstr "" + +#: src/Core/Update.php:183 +#, php-format +msgid "%s: executing pre update %d" +msgstr "" + +#: src/Core/Update.php:225 +#, php-format +msgid "%s: executing post update %d" +msgstr "" + +#: src/Core/Update.php:299 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Malsukcesis ĝisdatigi %s. Vidu la protokolojn." + +#: src/Core/Update.php:339 +#, 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 "" + +#: src/Core/Update.php:345 +#, php-format +msgid "The error message is\\n[pre]%s[/pre]" +msgstr "" + +#: src/Core/Update.php:349 src/Core/Update.php:377 +msgid "[Friendica Notify] Database update" +msgstr "" + +#: src/Core/Update.php:371 +#, php-format +msgid "" +"\n" +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "" + +#: src/Database/DBStructure.php:57 +#, php-format +msgid "The database version had been set to %s." +msgstr "" + +#: src/Database/DBStructure.php:82 +#, 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:95 +msgid "No unused tables found." +msgstr "" + +#: src/Database/DBStructure.php:100 +msgid "" +"These tables are not used for friendica and will be deleted when you execute" +" \"dbstructure drop -e\":" +msgstr "" + +#: src/Database/DBStructure.php:137 +msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." +msgstr "" + +#: src/Database/DBStructure.php:161 +#, php-format +msgid "" +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "" + +#: src/Database/DBStructure.php:164 +msgid "Errors encountered performing database changes: " +msgstr "" + +#: src/Database/DBStructure.php:232 +msgid "Another database update is currently running." +msgstr "" + +#: src/Database/DBStructure.php:236 +#, php-format +msgid "%s: Database update" +msgstr "" + +#: src/Database/DBStructure.php:493 +#, php-format +msgid "%s: updating %s table." +msgstr "" + +#: src/Factory/Api/Mastodon/Error.php:55 +msgid "Record not found" +msgstr "" + +#: src/Factory/Api/Mastodon/Error.php:65 +msgid "Unprocessable Entity" +msgstr "" + +#: src/Factory/Api/Mastodon/Error.php:75 +msgid "Unauthorized" +msgstr "" + +#: src/Factory/Api/Mastodon/Error.php:84 +msgid "" +"Token is not authorized with a valid user or is missing a required scope" +msgstr "" + +#: src/Factory/Api/Mastodon/Error.php:94 +msgid "Internal Server Error" +msgstr "" + +#: src/LegacyModule.php:63 +#, php-format +msgid "Legacy module file not found: %s" +msgstr "" + +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." +msgstr "" + +#: src/Model/Circle.php:543 +msgid "Everybody" +msgstr "Ĉiuj" + +#: src/Model/Circle.php:562 +msgid "edit" +msgstr "redakti" + +#: src/Model/Circle.php:599 +msgid "add" +msgstr "aldoni" + +#: src/Model/Circle.php:604 +msgid "Edit circle" +msgstr "" + +#: src/Model/Circle.php:605 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "" + +#: src/Model/Circle.php:607 +msgid "Create a new circle" +msgstr "" + +#: src/Model/Circle.php:608 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "" + +#: src/Model/Circle.php:609 +msgid "Edit circles" +msgstr "" + +#: src/Model/Contact.php:1240 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 +msgid "Approve" +msgstr "Aprobi" + +#: src/Model/Contact.php:1694 +msgid "Organisation" +msgstr "" + +#: src/Model/Contact.php:1702 +msgid "Group" +msgstr "" + +#: src/Model/Contact.php:3005 +msgid "Disallowed profile URL." +msgstr "Malpermesita adreso de profilo." + +#: src/Model/Contact.php:3010 src/Module/Friendica.php:101 +msgid "Blocked domain" +msgstr "" + +#: src/Model/Contact.php:3015 +msgid "Connect URL missing." +msgstr "Ne ekzistas URL adreso por konekti." + +#: src/Model/Contact.php:3024 +msgid "" +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "" + +#: src/Model/Contact.php:3042 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "" + +#: src/Model/Contact.php:3059 +msgid "The profile address specified does not provide adequate information." +msgstr "La specifita profiladreso ne enhavas sufiĉe da informoj." + +#: src/Model/Contact.php:3061 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Ne malkovris kongruajn protokolojn por komunikado aŭ fluojn." + +#: src/Model/Contact.php:3064 +msgid "An author or name was not found." +msgstr "Ne trovis aŭtoron aŭ nomon." + +#: src/Model/Contact.php:3067 +msgid "No browser URL could be matched to this address." +msgstr "Neniu retuma URL adreso kongruas al la adreso." + +#: src/Model/Contact.php:3070 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Ne eblas kongrui @-stilan identecon adreson al iu konata protokolo au retpoŝtadreso." + +#: src/Model/Contact.php:3071 +msgid "Use mailto: in front of address to force email check." +msgstr "Uzu mailto: antaŭ la adreso por devigi la testadon per retpoŝto." + +#: src/Model/Contact.php:3077 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Tiu profila adreso apartenas al retejo kiu estas maŝaltita je ĉi tiu retejo." + +#: src/Model/Contact.php:3082 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profilo limigata. Ĉi persono ne eblos ricevi rektajn/personajn atentigojn de vi. " + +#: src/Model/Contact.php:3148 +msgid "Unable to retrieve contact information." +msgstr "Ne eblas ricevi kontaktinformojn." + +#: src/Model/Event.php:54 +msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" +msgstr "" + +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 +msgid "Starts:" +msgstr "Ekas:" + +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 +msgid "Finishes:" +msgstr "Finas:" + +#: src/Model/Event.php:419 +msgid "all-day" +msgstr "" + +#: src/Model/Event.php:445 +msgid "Sept" +msgstr "" + +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:245 src/Util/Temporal.php:353 +msgid "month" +msgstr "monato" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:246 src/Util/Temporal.php:354 +msgid "week" +msgstr "semajno" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:247 src/Util/Temporal.php:355 +msgid "day" +msgstr "tago" + +#: src/Model/Event.php:467 +msgid "No events to display" +msgstr "" + +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "Atingo al ĉi tio profilo estas limitigita" + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "" + +#: src/Model/Event.php:637 +msgid "l, F j" +msgstr "l, F j" + +#: src/Model/Event.php:664 +msgid "Edit event" +msgstr "Redakti okazon" + +#: src/Model/Event.php:665 +msgid "Duplicate event" +msgstr "" + +#: src/Model/Event.php:666 +msgid "Delete event" +msgstr "" + +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: src/Model/Event.php:897 +msgid "D g:i A" +msgstr "" + +#: src/Model/Event.php:898 +msgid "g:i A" +msgstr "" + +#: src/Model/Event.php:964 src/Model/Event.php:966 +msgid "Show map" +msgstr "" + +#: src/Model/Event.php:965 +msgid "Hide map" +msgstr "" + +#: src/Model/Event.php:1058 +#, php-format +msgid "%s's birthday" +msgstr "Naskiĝtago de %s" + +#: src/Model/Event.php:1059 +#, php-format +msgid "Happy Birthday %s" +msgstr "Feliĉan Naskiĝtagon al %s" + +#: src/Model/Item.php:2062 +#, php-format +msgid "Detected languages in this post:\\n%s" +msgstr "" + +#: src/Model/Item.php:3007 msgid "activity" msgstr "aktiveco" -#: include/text.php:1808 mod/content.php:623 object/Item.php:431 -#: object/Item.php:444 +#: src/Model/Item.php:3009 msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "komento" +msgstr "" -#: include/text.php:1809 +#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "afiŝo" -#: include/text.php:1977 -msgid "Item filed" -msgstr "Enarkivigis elementon " - -#: include/user.php:39 mod/settings.php:373 -msgid "Passwords do not match. Password unchanged." -msgstr "La pasvortoj ne estas egala. Pasvorto ne ŝanĝita." - -#: include/user.php:48 -msgid "An invitation is required." -msgstr "Invio bezonata." - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "Ne povis kontroli la inviton." - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "Nevalida OpenID adreso" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "Bonvolu entajpi la bezonatajn informojn." - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "Bonvolu uzi pli mallongan nomon." - -#: include/user.php:98 -msgid "Name too short." -msgstr "Nomo estas tro mallonga." - -#: include/user.php:113 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Tio ŝajne ne estas via plena (persona, familia) nomo." - -#: include/user.php:118 -msgid "Your email domain is not among those allowed on this site." -msgstr "Via retpoŝtodomajno ne estas permesita ĉi tie." - -#: include/user.php:121 -msgid "Not a valid email address." -msgstr "Nevalida retpoŝtadreso." - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "Neuzebla retpoŝtadreso." - -#: include/user.php:140 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +#: src/Model/Item.php:3182 +#, php-format +msgid "%s is blocked" msgstr "" -#: include/user.php:147 include/user.php:245 -msgid "Nickname is already registered. Please choose another." -msgstr "Tio kaŝnomo jam estas registrita. Bonvolu elekti alian." +#: src/Model/Item.php:3184 +#, php-format +msgid "%s is ignored" +msgstr "" -#: include/user.php:157 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Tiu kaŝnomo iam estis registrita ĉi tie kaj ne ree uzeblas. Bonvolu elekti alian." +#: src/Model/Item.php:3186 +#, php-format +msgid "Content from %s is collapsed" +msgstr "" -#: include/user.php:173 +#: src/Model/Item.php:3190 +#, php-format +msgid "Content warning: %s" +msgstr "" + +#: src/Model/Item.php:3652 +msgid "bytes" +msgstr "bajtoj" + +#: src/Model/Item.php:3683 +#, php-format +msgid "%2$s (%3$d%%, %1$d vote)" +msgid_plural "%2$s (%3$d%%, %1$d votes)" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3685 +#, php-format +msgid "%2$s (%1$d vote)" +msgid_plural "%2$s (%1$d votes)" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3690 +#, php-format +msgid "%d voter. Poll end: %s" +msgid_plural "%d voters. Poll end: %s" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3692 +#, php-format +msgid "%d voter." +msgid_plural "%d voters." +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3694 +#, php-format +msgid "Poll end: %s" +msgstr "" + +#: src/Model/Item.php:3728 src/Model/Item.php:3729 +msgid "View on separate page" +msgstr "" + +#: src/Model/Mail.php:137 src/Model/Mail.php:266 +msgid "[no subject]" +msgstr "[neniu temo]" + +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Muraj Bildoj" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 +msgid "Edit profile" +msgstr "Redakti profilon" + +#: src/Model/Profile.php:361 +msgid "Change profile photo" +msgstr "Ŝanĝi profilbildon" + +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 +msgid "Homepage:" +msgstr "Hejmpaĝo:" + +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 +msgid "About:" +msgstr "Pri:" + +#: src/Model/Profile.php:465 +msgid "Atom feed" +msgstr "" + +#: src/Model/Profile.php:472 +msgid "This website has been verified to belong to the same person." +msgstr "" + +#: src/Model/Profile.php:509 +msgid "F d" +msgstr "F d" + +#: src/Model/Profile.php:573 src/Model/Profile.php:662 +msgid "[today]" +msgstr "[hodiaŭ]" + +#: src/Model/Profile.php:582 +msgid "Birthday Reminders" +msgstr "Memorigilo pri naskiĝtagoj" + +#: src/Model/Profile.php:583 +msgid "Birthdays this week:" +msgstr "Naskiĝtagoj ĉi-semajne:" + +#: src/Model/Profile.php:611 +msgid "g A l F d" +msgstr "\\j\\e \\l\\a G\\a \\h\\o\\r\\o, l F d" + +#: src/Model/Profile.php:649 +msgid "[No description]" +msgstr "[Neniu priskribo]" + +#: src/Model/Profile.php:675 +msgid "Event Reminders" +msgstr "Memorigilo pri Okazoj" + +#: src/Model/Profile.php:676 +msgid "Upcoming events the next 7 days:" +msgstr "" + +#: src/Model/Profile.php:873 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" + +#: src/Model/Profile.php:1013 +msgid "Hometown:" +msgstr "Hejmurbo:" + +#: src/Model/Profile.php:1014 +msgid "Marital Status:" +msgstr "" + +#: src/Model/Profile.php:1015 +msgid "With:" +msgstr "" + +#: src/Model/Profile.php:1016 +msgid "Since:" +msgstr "" + +#: src/Model/Profile.php:1017 +msgid "Sexual Preference:" +msgstr "Seksa Prefero:" + +#: src/Model/Profile.php:1018 +msgid "Political Views:" +msgstr "Politikaj Opinioj:" + +#: src/Model/Profile.php:1019 +msgid "Religious Views:" +msgstr "Religiaj Opinioj:" + +#: src/Model/Profile.php:1020 +msgid "Likes:" +msgstr "Ŝatoj:" + +#: src/Model/Profile.php:1021 +msgid "Dislikes:" +msgstr "Malŝatoj:" + +#: src/Model/Profile.php:1022 +msgid "Title/Description:" +msgstr "Titolo/Priskribo:" + +#: src/Model/Profile.php:1023 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 +msgid "Summary" +msgstr "Resumo" + +#: src/Model/Profile.php:1024 +msgid "Musical interests" +msgstr "Muzikaj interesoj" + +#: src/Model/Profile.php:1025 +msgid "Books, literature" +msgstr "Libroj, literaturo" + +#: src/Model/Profile.php:1026 +msgid "Television" +msgstr "Televido" + +#: src/Model/Profile.php:1027 +msgid "Film/dance/culture/entertainment" +msgstr "Filmoj/dancoj/arto/amuzaĵoj" + +#: src/Model/Profile.php:1028 +msgid "Hobbies/Interests" +msgstr "Ŝatokupoj/Interesoj" + +#: src/Model/Profile.php:1029 +msgid "Love/romance" +msgstr "Amo/romanco" + +#: src/Model/Profile.php:1030 +msgid "Work/employment" +msgstr "Laboro" + +#: src/Model/Profile.php:1031 +msgid "School/education" +msgstr "Lernejo/eduko" + +#: src/Model/Profile.php:1032 +msgid "Contact information and Social Networks" +msgstr "Kontaktaj informoj kaj Interkonaj Retejoj" + +#: src/Model/User.php:227 src/Model/User.php:1186 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "GRAVA ERARO: La generacio de sekurecaj ĉifroŝlosiloj malsukcesis." -#: include/user.php:231 +#: src/Model/User.php:620 src/Model/User.php:653 +msgid "Login failed" +msgstr "" + +#: src/Model/User.php:685 +msgid "Not enough information to authenticate" +msgstr "" + +#: src/Model/User.php:806 +msgid "Password can't be empty" +msgstr "" + +#: src/Model/User.php:848 +msgid "Empty passwords are not allowed." +msgstr "" + +#: src/Model/User.php:852 +msgid "" +"The new password has been exposed in a public data dump, please choose " +"another." +msgstr "" + +#: src/Model/User.php:856 +msgid "The password length is limited to 72 characters." +msgstr "" + +#: src/Model/User.php:860 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "" + +#: src/Model/User.php:1069 +msgid "Passwords do not match. Password unchanged." +msgstr "La pasvortoj ne estas egala. Pasvorto ne ŝanĝita." + +#: src/Model/User.php:1076 +msgid "An invitation is required." +msgstr "Invio bezonata." + +#: src/Model/User.php:1080 +msgid "Invitation could not be verified." +msgstr "Ne povis kontroli la inviton." + +#: src/Model/User.php:1088 +msgid "Invalid OpenID url" +msgstr "Nevalida OpenID adreso" + +#: src/Model/User.php:1101 src/Security/Authentication.php:241 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Okazis problemo ensalutinta kun via OpenID. Bonvolu kontroli la ID." + +#: src/Model/User.php:1101 src/Security/Authentication.php:241 +msgid "The error message was:" +msgstr "La erarmesaĝo estis:" + +#: src/Model/User.php:1107 +msgid "Please enter the required information." +msgstr "Bonvolu entajpi la bezonatajn informojn." + +#: src/Model/User.php:1121 +#, 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:1128 +#, 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:1132 +#, 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:1140 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Tio ŝajne ne estas via plena (persona, familia) nomo." + +#: src/Model/User.php:1145 +msgid "Your email domain is not among those allowed on this site." +msgstr "Via retpoŝtodomajno ne estas permesita ĉi tie." + +#: src/Model/User.php:1149 +msgid "Not a valid email address." +msgstr "Nevalida retpoŝtadreso." + +#: src/Model/User.php:1152 +msgid "The nickname was blocked from registration by the nodes admin." +msgstr "" + +#: src/Model/User.php:1156 src/Model/User.php:1162 +msgid "Cannot use that email." +msgstr "Neuzebla retpoŝtadreso." + +#: src/Model/User.php:1168 +msgid "Your nickname can only contain a-z, 0-9 and _." +msgstr "" + +#: src/Model/User.php:1176 src/Model/User.php:1233 +msgid "Nickname is already registered. Please choose another." +msgstr "Tio kaŝnomo jam estas registrita. Bonvolu elekti alian." + +#: src/Model/User.php:1220 src/Model/User.php:1224 msgid "An error occurred during registration. Please try again." msgstr "Eraro okazis dum registrado. Bonvolu provi denove." -#: include/user.php:256 view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "defaŭlta" - -#: include/user.php:266 +#: src/Model/User.php:1247 msgid "An error occurred creating your default profile. Please try again." msgstr "Eraro okazi dum kreado de via defaŭlta profilo. Bonvolu provi denove." -#: include/user.php:326 include/user.php:333 include/user.php:340 -#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 -#: mod/profile_photo.php:210 mod/profile_photo.php:302 -#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180 -#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232 -#: mod/photos.php:1819 +#: src/Model/User.php:1254 +msgid "An error occurred creating your self contact. Please try again." +msgstr "" + +#: src/Model/User.php:1259 +msgid "Friends" +msgstr "Amikoj" + +#: src/Model/User.php:1263 +msgid "" +"An error occurred creating your default contact circle. Please try again." +msgstr "" + +#: src/Model/User.php:1307 msgid "Profile Photos" msgstr "Profilbildoj" -#: include/user.php:414 +#: src/Model/User.php:1487 #, php-format msgid "" "\n" "\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" -"\t" +"\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: include/user.php:424 -#, php-format -msgid "Registration at %s" -msgstr "" - -#: include/user.php:434 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "" - -#: include/user.php:438 +#: src/Model/User.php:1490 #, php-format msgid "" "\n" "\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\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" @@ -3078,4275 +3776,54 @@ msgid "" "\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/settings/removeme\n" "\n" -"\t\tThank you and welcome to %2$s." +"\t\tThank you and welcome to %4$s." msgstr "" -#: include/user.php:470 mod/admin.php:1213 +#: src/Model/User.php:1523 src/Model/User.php:1630 #, php-format msgid "Registration details for %s" msgstr "Detaloj de la registrado por %s" -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "Sukcese afiŝita." - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Atingo nepermesita." - -#: mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Bonvenon ĉe %s" - -#: mod/notify.php:60 -msgid "No more system notifications." -msgstr "Ne pli da sistemaj atentigoj." - -#: mod/notify.php:64 mod/notifications.php:111 -msgid "System Notifications" -msgstr "Sistemaj Atentigoj" - -#: mod/search.php:25 mod/network.php:191 -msgid "Remove term" -msgstr "Forviŝu terminon" - -#: mod/search.php:93 mod/search.php:99 mod/community.php:22 -#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944 -#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35 -msgid "Public access denied." -msgstr "Publika atingo ne permesita." - -#: mod/search.php:100 -msgid "Only logged in users are permitted to perform a search." -msgstr "" - -#: mod/search.php:124 -msgid "Too Many Requests" -msgstr "" - -#: mod/search.php:125 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "" - -#: mod/search.php:224 mod/community.php:66 mod/community.php:75 -msgid "No results." -msgstr "Nenion trovita." - -#: mod/search.php:230 -#, php-format -msgid "Items tagged with: %s" -msgstr "" - -#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146 -#, php-format -msgid "Results for: %s" -msgstr "" - -#: mod/friendica.php:70 -msgid "This is Friendica, version" -msgstr "Tio estas Friendica en la versio" - -#: mod/friendica.php:71 -msgid "running at web location" -msgstr "instalita ĉe la adreso" - -#: mod/friendica.php:73 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Bonvolu iri al Friendica.com por lerni pli pri la projekto Friendica" - -#: mod/friendica.php:75 -msgid "Bug reports and issues: please visit" -msgstr "Cimraportoj kaj atendindaĵo: bonvolu iri al" - -#: mod/friendica.php:75 -msgid "the bugtracker at github" -msgstr "" - -#: mod/friendica.php:76 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Sugestoj, laŭdoj, donacoj ktp - bonvolu sendi mesĝon al \"Info\" ĉe Friendica - punkto com" - -#: mod/friendica.php:90 -msgid "Installed plugins/addons/apps:" -msgstr "Instalitaj kromprogramoj/programoj:" - -#: mod/friendica.php:103 -msgid "No installed plugins/addons/apps" -msgstr "Neniom da instalitaj aldonaĵoj/programoj" - -#: mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Ne trovis validan konton." - -#: mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Eldonis riparadon de pasvorto. Legu vian retpoŝton." - -#: mod/lostpass.php:42 -#, 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.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "" - -#: mod/lostpass.php:53 -#, php-format -msgid "" -"\n" -"\t\tFollow this link 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 "" - -#: mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Pasvorta riparado petita je %s" - -#: mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Ne povis konfirmi la peton. (Eble vi sendis ĝin antaŭ.) Pasvorta riparado malsukcesis." - -#: mod/lostpass.php:109 boot.php:1807 -msgid "Password Reset" -msgstr "Pasvorta riparado" - -#: mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Via pasvorto estis riparita laŭ via peto." - -#: mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Via nova pasvorto estas" - -#: mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Memorigi vian novan pasvorton - kaj poste" - -#: mod/lostpass.php:113 -msgid "click here to login" -msgstr "klaku ĉi tie por ensaluti" - -#: mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Vi povas ŝangi vian pasvorton sur la paĝo agordoj kiam vi sukcese ensalutis." - -#: mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "" - -#: mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "" - -#: mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "" - -#: mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Ĉu vi forgesis vian pasvorton?" - -#: mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Entajpu vian retpoŝtadreson kaj sendu por pasvorta riparado. Poste, bonvolu legi vian retpoŝton por trovi pliajn instrukciojn." - -#: mod/lostpass.php:161 boot.php:1795 -msgid "Nickname or Email: " -msgstr "Salutnomo aŭ retpoŝtadreso: " - -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "Repari" - -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Neniu profilo" - -#: mod/help.php:41 -msgid "Help:" -msgstr "Helpo:" - -#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12 -#: mod/fetch.php:39 mod/fetch.php:48 index.php:288 -msgid "Not Found" -msgstr "Ne trovita" - -#: mod/help.php:56 index.php:291 -msgid "Page not found." -msgstr "Paĝo ne trovita" - -#: mod/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informoj pri fora privateca ne estas disponebla." - -#: mod/lockview.php:48 -msgid "Visible to:" -msgstr "Videbla al:" - -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Eraro en OpenID protokolo. Ne resendis identecon." - -#: mod/openid.php:60 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Ne trovis kontoj, kaj registrado per OpenID estas malpermesita ĉi tie." - -#: mod/uimport.php:50 mod/register.php:198 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "La retejo transiras la maksimuman kvanton da ĉiutagaj kontaj registradoj. Bonvolu provi denove morgaŭ." - -#: mod/uimport.php:64 mod/register.php:295 -msgid "Import" -msgstr "" - -#: mod/uimport.php:66 -msgid "Move account" -msgstr "" - -#: mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "" - -#: mod/uimport.php:68 -msgid "" -"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." -msgstr "" - -#: mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "" - -#: mod/uimport.php:70 -msgid "Account file" -msgstr "" - -#: mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" - -#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930 -#: mod/viewcontacts.php:97 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Viziti la profilon de %s [%s]" - -#: mod/nogroup.php:42 mod/contacts.php:931 -msgid "Edit contact" -msgstr "Redakti kontakton" - -#: mod/nogroup.php:63 -msgid "Contacts who are not members of a group" -msgstr "Kontaktoj kiuj ne estas en iu grupo" - -#: mod/uexport.php:29 -msgid "Export account" -msgstr "" - -#: mod/uexport.php:29 -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 "" - -#: mod/uexport.php:30 -msgid "Export all" -msgstr "" - -#: mod/uexport.php:30 -msgid "" -"Export your accout 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 "" - -#: mod/uexport.php:37 mod/settings.php:95 -msgid "Export personal data" -msgstr "Eksporto" - -#: mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "" - -#: mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Ne estas valida retpoŝtadreso." - -#: mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Bonvolu aliĝi kun ni ĉe Friendica" - -#: mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: La livero de la mesaĝo malsukcesis." - -#: mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "Sendis %d mesaĝon." -msgstr[1] "Sendis %d mesaĝojn." - -#: mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Vi ne plu disponeblas invitaĵojn" - -#: mod/invite.php:120 -#, 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 "Vizitu %s por listo de publikaj retejoj kie vi povas aliĝi. Anoj de Friendica ĉe aliaj retejoj povas konekti unu kun la alian, kaj ankaŭ kun membroj de multaj aliaj retejoj." - -#: mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Por akcepti ĉi tiu invito, bonvolu viziti kaj registriĝi ĉe %s au alia publika Friendica retejo." - -#: mod/invite.php:123 -#, 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 "Ĉiuj Friendica retejoj interkonektiĝas kaj kune faras grandan altprivatecan interkonan reton, kiun posedas kaj kontrolas ĝiaj membroj. Ili ankaŭ povas konekti kun multe de tradiciaj interkonaj retejoj. Vidu %s por listo de publikaj retejoj kie vi povas aliĝi." - -#: mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Senkulpigu nin. La sistemo nuntempe ne estas agordita por konekti al aliaj retejoj au inviti membrojn." - -#: mod/invite.php:132 -msgid "Send invitations" -msgstr "Sendi invitojn" - -#: mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Entajpu retpoŝtadresojn, po unu por ĉiu linio." - -#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351 -#: mod/message.php:541 -msgid "Your message:" -msgstr "Via mesaĝo:" - -#: mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Ni bonkore invitas vin aliĝi kun ni kaj aliaj bonaj amikoj ĉe Friendica. Helpu nin krei pli bonan interkonan reton." - -#: mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Vi bezonas ĉi-tiun invitkodon: $invite_code" - -#: mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Kiam vi registris, bonvolu konekti al mi pere de mi profilo ĉe: " - -#: mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Por pli da informoj pri Friendica, kaj kial ni pensas ke ĝi estas grava, bonvolu viziti http://friendica.com" - -#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357 -#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154 -#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199 -#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104 -#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590 -#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577 -#: mod/install.php:272 mod/install.php:312 object/Item.php:720 -#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64 -#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Sendi" - -#: mod/fbrowser.php:133 -msgid "Files" -msgstr "Dosieroj" - -#: mod/profperm.php:19 mod/group.php:72 index.php:400 -msgid "Permission denied" -msgstr "Malpermesita" - -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Nevaliada profila identigilo." - -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "Redaktilo por profila videbleco." - -#: mod/profperm.php:106 mod/group.php:223 -msgid "Click on a contact to add or remove." -msgstr "Klaku kontakton por aldoni aŭ forviŝi." - -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "Videbla Al" - -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Ĉiuj Kontaktoj (kun sekura atingo al la profilo)" - -#: mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Marko forviŝita" - -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Forviŝi markon" - -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Elektu forviŝontan markon:" - -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Forviŝi" - -#: mod/repair_ostatus.php:14 -msgid "Resubscribing to OStatus contacts" -msgstr "" - -#: mod/repair_ostatus.php:30 -msgid "Error" -msgstr "" - -#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 -msgid "Done" -msgstr "" - -#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 -msgid "Keep this window open until done." -msgstr "" - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Ne trovis delegiteblajn paĝojn." - -#: mod/delegate.php:132 -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 "Delegitoj povas administri ĉiujn ecojn de la konto/paĝo, escepte bazaj kontoagordoj. Bonvolu ne delegitigi vian personan konton al iu al kiu vi ne plene fidas." - -#: mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Estantaj Administrantoj de la Paĝo" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Estantaj Delegitoj de la Paĝo" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Eblaj Delegitoj" - -#: mod/delegate.php:140 -msgid "Add" -msgstr "Aldoni" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "Neniom da afiŝoj." - -#: mod/credits.php:16 -msgid "Credits" -msgstr "" - -#: mod/credits.php:17 -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 "" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "- elekti -" - -#: mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: mod/attach.php:8 -msgid "Item not available." -msgstr "Elemento ne disponeblas." - -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "Elemento ne trovita." - -#: mod/apps.php:7 index.php:244 -msgid "You must be logged in to use addons. " -msgstr "" - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Programoj" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Neniom da instalitaj programoj." - -#: mod/p.php:9 -msgid "Not Extended" -msgstr "" - -#: mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Bonvenon ĉe Friendica" - -#: mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Kontrololisto por Novaj Membroj" - -#: mod/newmember.php:12 -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 "Lasu nin oferi al vi kelkajn konsolojn kaj ligilojn por plifaciligi vian komencon. Klaku iun elementon por viziti la rilatan paĝon. Ligilo al ĉi tiu paĝo videblos en via hejmpaĝo dum du semajnojn post via komenca membriĝo. Post du semajnoj, la ligilo silente malaperos. " - -#: mod/newmember.php:14 -msgid "Getting Started" -msgstr "" - -#: mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "" - -#: mod/newmember.php:18 -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 "" - -#: mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "" - -#: mod/newmember.php:26 -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 "Bonvolu ŝanĝi vian pasvorton ĉe Agordoj. Krome, memorigu vian identadreson. Ĝi aspektas kiel retpoŝtadreso kaj estas bezonata por konekti al novaj amikon en la libera interkona reto." - -#: mod/newmember.php:28 -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 "Kontrolu la aliajn agordojn, precipe la privatecajn agordojn. Nepublikigita profilo similas al havi telefonnumberon ne registrata en iu telefonlibro. Ĝenerale vi eble volas publikigi vian profilon. Alie, viaj amikoj kaj estontaj amikoj bezonas scii kiel rekte trovi vin." - -#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707 -msgid "Upload Profile Photo" -msgstr "Alŝuti profilbildon" - -#: mod/newmember.php:36 -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 "Enŝuti profilbildon se vi ankoraŭ ne havas ĝin. Laŭ studoj, homoj kun realaj biloj de si mem trovas novajn amikon duope pli probable ol homoj sen reala bildo." - -#: mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "" - -#: mod/newmember.php:38 -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 "Redakti viajn defaŭltan profilon kiel vi ŝatas ĝin. Kontrolu la agordojn por kaŝi vian kontaktliston aŭ kaŝi vian profilon al nekonataj vizitantoj." - -#: mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "" - -#: mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Aldonu publikajn ŝlosilvortojn al via defaŭlta profilo, kiuj priskribas viajn interesojn. Ni eble povas trovi aliajn uzantojn kun similaj interesoj kaj sugesti amikojn." - -#: mod/newmember.php:44 -msgid "Connecting" -msgstr "" - -#: mod/newmember.php:51 -msgid "Importing Emails" -msgstr "" - -#: mod/newmember.php:51 -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 "Entajpu la akreditaĵojn por via retpoŝtkonto en la konektilagordoj se vi volas importi aŭ interagi kun amikoj aŭ dissendlistoj pere de via retkesto." - -#: mod/newmember.php:53 -msgid "Go to Your Contacts Page" -msgstr "" - -#: mod/newmember.php:53 -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 "Via kontaktpaĝo estas via portalo por administri amikojn kaj konekti kun amikoj en aliaj retoj. Vi kutime entajpas iliajn adreson aŭ URL adreso en la Aldonu Novan Kontakton dialogon." - -#: mod/newmember.php:55 -msgid "Go to Your Site's Directory" -msgstr "" - -#: mod/newmember.php:55 -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 "Ĉe la Katalogo vi povas trovi aliajn homojn en ĉi tiu retejo, au en aliaj federaciaj retejoj. Elrigardi al KonektiSekvi ligiloj ĉe iliaj profilo. Donu vian propran Identecan Adreson se la retejo demandas ĝin." - -#: mod/newmember.php:57 -msgid "Finding New People" -msgstr "" - -#: mod/newmember.php:57 -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 "En la flanka strio de la Kontaktoj paĝo troviĝas kelkajn helpilojn por trovi novajn amikojn. Ni povas automate trovi amikojn per interesoj, serĉu ilin per nomo aŭ intereso kaj faras sugestojn baze de estantaj kontaktoj. Ĉe nova instalita retejo, la unuaj sugestoj kutime aperas post 24 horoj." - -#: mod/newmember.php:65 -msgid "Group Your Contacts" -msgstr "" - -#: mod/newmember.php:65 -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 "Kiam vi trovis kelkajn novajn amikojn, ordigi ilin en grupoj por privata komunikado en la flanka strio de via Kontaktoj paĝo, kaj vi povas private komuniki kun ili je via Reto paĝo." - -#: mod/newmember.php:68 -msgid "Why Aren't My Posts Public?" -msgstr "" - -#: mod/newmember.php:68 -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 "" - -#: mod/newmember.php:73 -msgid "Getting Help" -msgstr "" - -#: mod/newmember.php:77 -msgid "Go to the Help Section" -msgstr "" - -#: mod/newmember.php:77 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Niaj Helpo paĝoj enhavas pli da detaloj pri aliaj programaj trajtoj." - -#: mod/removeme.php:46 mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Forigi Mian Konton" - -#: mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Tio tute forigos vian konton. Kiam farita, la konto ne estas restaŭrebla." - -#: mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Bonvolu entajpi vian pasvorton por kontrolado:" - -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "Elemento ne trovita" - -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "Redakti afiŝon" - -#: mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Konverto de tempo" - -#: mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica provizas tiun servon por kunhavigi okazojn kun aliaj retoj kaj amikoj en aliaj horzonoj." - -#: mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "UTC horo: %s" - -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Aktuala horzono: %s" - -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Konvertita loka horo: %s" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Bonvolu elekti vian horzonon:" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "" - -#: mod/group.php:29 -msgid "Group created." -msgstr "Grupo estas kreita." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Ne povas krei grupon." - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "Grupo ne estas trovita." - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "La nomo de la grupo estas ŝanĝita." - -#: mod/group.php:87 -msgid "Save Group" -msgstr "" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Krei grupon da kontaktoj/amikoj." - -#: mod/group.php:113 -msgid "Group removed." -msgstr "Grupo estas forviŝita." - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "Ne eblas forviŝi grupon." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Grupa redaktilo" - -#: mod/group.php:190 -msgid "Members" -msgstr "Anoj" - -#: mod/group.php:192 mod/contacts.php:692 -msgid "All Contacts" -msgstr "Ĉiuj Kontaktoj" - -#: mod/group.php:193 mod/content.php:130 mod/network.php:496 -msgid "Group is empty" -msgstr "Grupo estas malplena" - -#: mod/wallmessage.php:42 mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Number of daily wall messages for %s exceeded. Messaĝo malsukcesis." - -#: mod/wallmessage.php:56 mod/message.php:71 -msgid "No recipient selected." -msgstr "Neniom da ricevontoj." - -#: mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Ne eblas kontroli vian hejmlokon." - -#: mod/wallmessage.php:62 mod/message.php:78 -msgid "Message could not be sent." -msgstr "Ne povas sendi la mesaĝon." - -#: mod/wallmessage.php:65 mod/message.php:81 -msgid "Message collection failure." -msgstr "Malsukcese provis kolekti mesaĝojn." - -#: mod/wallmessage.php:68 mod/message.php:84 -msgid "Message sent." -msgstr "Mesaĝo estas sendita." - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Neniom da ricevontoj." - -#: mod/wallmessage.php:142 mod/message.php:341 -msgid "Send Private Message" -msgstr "Sendi Privatan Mesaĝon" - -#: 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 "Se vi deziras ke %s respondu, bonvolu kontroli ke la privatecaj agordoj je via retejo permesas privatajn mesaĝojn de nekonataj sendantoj." - -#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536 -msgid "To:" -msgstr "Al:" - -#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 -msgid "Subject:" -msgstr "Temo:" - -#: mod/share.php:38 -msgid "link" -msgstr "ligilo" - -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "Rajtigi programkonekton" - -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Reiru al via programo kaj entajpu la securecan kodon:" - -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "Bonvolu ensaluti por pluigi." - -#: mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn kaj/aŭ krei novajn afiŝojn?" - -#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652 -#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163 -#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 -#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 -#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 -#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 -#: mod/dfrn_request.php:862 mod/follow.php:110 -msgid "No" -msgstr "Ne" - -#: mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Fontkodo (bbcode):" - -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Fontokodo (Diaspora) konvertota al BBcode:" - -#: mod/babel.php:31 -msgid "Source input: " -msgstr "Fontoenigo:" - -#: mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "" - -#: mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " - -#: mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Fontoenigo (Diaspora formato):" - -#: mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: mod/ostatus_subscribe.php:14 -msgid "Subscribing to OStatus contacts" -msgstr "" - -#: mod/ostatus_subscribe.php:25 -msgid "No contact provided." -msgstr "" - -#: mod/ostatus_subscribe.php:30 -msgid "Couldn't fetch information for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:38 -msgid "Couldn't fetch friends for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:65 -msgid "success" -msgstr "" - -#: mod/ostatus_subscribe.php:67 -msgid "failed" -msgstr "" - -#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245 -msgid "ignored" -msgstr "" - -#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "" - -#: mod/message.php:75 -msgid "Unable to locate contact information." -msgstr "Ne eblas trovi kontaktajn informojn." - -#: mod/message.php:215 -msgid "Do you really want to delete this message?" -msgstr "" - -#: mod/message.php:235 -msgid "Message deleted." -msgstr "Mesaĝo estas forviŝita." - -#: mod/message.php:266 -msgid "Conversation removed." -msgstr "Dialogo estas forviŝita." - -#: mod/message.php:383 -msgid "No messages." -msgstr "Neniom da mesaĝoj." - -#: mod/message.php:426 -msgid "Message not available." -msgstr "Mesaĝo nedisponebla." - -#: mod/message.php:503 -msgid "Delete message" -msgstr "Forviŝu mesaĝon" - -#: mod/message.php:529 mod/message.php:609 -msgid "Delete conversation" -msgstr "Forviŝi dialogon" - -#: mod/message.php:531 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Sekura komunikado ne disponeblas. Vi eble povus respondi sur la profilpaĝo de la sendanto." - -#: mod/message.php:535 -msgid "Send Reply" -msgstr "Respondi" - -#: mod/message.php:579 -#, php-format -msgid "Unknown sender - %s" -msgstr "Nekonata sendanto - %s" - -#: mod/message.php:581 -#, php-format -msgid "You and %s" -msgstr "Vi kaj %s" - -#: mod/message.php:583 -#, php-format -msgid "%s and You" -msgstr "%s kaj vi" - -#: mod/message.php:612 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: mod/message.php:615 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d mesaĝo" -msgstr[1] "%d mesaĝoj" - -#: mod/manage.php:139 -msgid "Manage Identities and/or Pages" -msgstr "Administri identecojn kaj/aŭ paĝojn." - -#: mod/manage.php:140 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Ŝalti inter aliaj identecojn aj komunumaj/grupaj paĝoj kiuj kunhavas viajn kontajn detalojn au por kiuj vi havas \"administranto\" permesojn." - -#: mod/manage.php:141 -msgid "Select an identity to manage: " -msgstr "Elektu identencon por administrado:" - -#: mod/crepair.php:87 -msgid "Contact settings applied." -msgstr "Kontaktagordoj estas konservita." - -#: mod/crepair.php:89 -msgid "Contact update failed." -msgstr "Ĝisdatigo de kontakto malsukcesis." - -#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/dfrn_confirm.php:126 -msgid "Contact not found." -msgstr "Kontakto ne trovita." - -#: mod/crepair.php:120 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "AVERTO: Tio estas tre altnivela kaj se vi entajpus malĝustan informojn, komunikado kun la kontakto eble ne plu funkcios." - -#: mod/crepair.php:121 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Bonvolu klaki 'malantaŭen' en via retesplorilo nun se vi ne scias kion faru ĉi tie." - -#: mod/crepair.php:134 mod/crepair.php:136 -msgid "No mirroring" -msgstr "" - -#: mod/crepair.php:134 -msgid "Mirror as forwarded posting" -msgstr "" - -#: mod/crepair.php:134 mod/crepair.php:136 -msgid "Mirror as my own posting" -msgstr "" - -#: mod/crepair.php:150 -msgid "Return to contact editor" -msgstr "Reen al kontakta redaktilo" - -#: mod/crepair.php:152 -msgid "Refetch contact data" -msgstr "" - -#: mod/crepair.php:156 -msgid "Remote Self" -msgstr "" - -#: mod/crepair.php:159 -msgid "Mirror postings from this contact" -msgstr "" - -#: mod/crepair.php:161 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - -#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706 -#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438 -msgid "Name" -msgstr "Nomo" - -#: mod/crepair.php:166 -msgid "Account Nickname" -msgstr "Kaŝnomo de la konto" - -#: mod/crepair.php:167 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Marknomo - Transpasas nomon/kaŝnomon" - -#: mod/crepair.php:168 -msgid "Account URL" -msgstr "Adreso de la konto" - -#: mod/crepair.php:169 -msgid "Friend Request URL" -msgstr "Kontaktpeta adreso" - -#: mod/crepair.php:170 -msgid "Friend Confirm URL" -msgstr "Kontaktkonfirma adreso" - -#: mod/crepair.php:171 -msgid "Notification Endpoint URL" -msgstr "Finpunkta adreso por atentigoj" - -#: mod/crepair.php:172 -msgid "Poll/Feed URL" -msgstr "Adreso de fluo" - -#: mod/crepair.php:173 -msgid "New photo from this URL" -msgstr "Nova bildo el tiu adreso" - -#: mod/content.php:119 mod/network.php:469 -msgid "No such group" -msgstr "Grupo ne estas trovita" - -#: mod/content.php:135 mod/network.php:500 -#, php-format -msgid "Group: %s" -msgstr "" - -#: mod/content.php:325 object/Item.php:95 -msgid "This entry was edited" -msgstr "" - -#: mod/content.php:621 object/Item.php:429 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d komento" -msgstr[1] "%d komentoj" - -#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117 -msgid "Private Message" -msgstr "Privata mesaĝo" - -#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263 -msgid "I like this (toggle)" -msgstr "Mi ŝatas tion (ŝalti)" - -#: mod/content.php:702 object/Item.php:263 -msgid "like" -msgstr "ŝati" - -#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264 -msgid "I don't like this (toggle)" -msgstr "Mi malŝatas tion(ŝalti)" - -#: mod/content.php:703 object/Item.php:264 -msgid "dislike" -msgstr "malŝati" - -#: mod/content.php:705 object/Item.php:266 -msgid "Share this" -msgstr "Kunhavigi ĉi tiun" - -#: mod/content.php:705 object/Item.php:266 -msgid "share" -msgstr "kunhavigi" - -#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635 -#: mod/photos.php:1721 object/Item.php:717 -msgid "This is you" -msgstr "Tiu estas vi" - -#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589 -#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403 -#: object/Item.php:719 boot.php:971 -msgid "Comment" -msgstr "Komenti" - -#: mod/content.php:729 object/Item.php:721 -msgid "Bold" -msgstr "Grasa" - -#: mod/content.php:730 object/Item.php:722 -msgid "Italic" -msgstr "Kursiva" - -#: mod/content.php:731 object/Item.php:723 -msgid "Underline" -msgstr "Substreki" - -#: mod/content.php:732 object/Item.php:724 -msgid "Quote" -msgstr "Citaĵo" - -#: mod/content.php:733 object/Item.php:725 -msgid "Code" -msgstr "Kodo" - -#: mod/content.php:734 object/Item.php:726 -msgid "Image" -msgstr "Bildo" - -#: mod/content.php:735 object/Item.php:727 -msgid "Link" -msgstr "Ligilo" - -#: mod/content.php:736 object/Item.php:728 -msgid "Video" -msgstr "Video" - -#: mod/content.php:746 mod/settings.php:740 object/Item.php:122 -#: object/Item.php:124 -msgid "Edit" -msgstr "Redakti" - -#: mod/content.php:771 object/Item.php:227 -msgid "add star" -msgstr "aldoni stelon" - -#: mod/content.php:772 object/Item.php:228 -msgid "remove star" -msgstr "forpreni stelon" - -#: mod/content.php:773 object/Item.php:229 -msgid "toggle star status" -msgstr "ŝalti/malŝalti steloŝtato" - -#: mod/content.php:776 object/Item.php:232 -msgid "starred" -msgstr "steligita" - -#: mod/content.php:777 mod/content.php:798 object/Item.php:252 -msgid "add tag" -msgstr "aldoni markon" - -#: mod/content.php:787 object/Item.php:240 -msgid "ignore thread" -msgstr "" - -#: mod/content.php:788 object/Item.php:241 -msgid "unignore thread" -msgstr "" - -#: mod/content.php:789 object/Item.php:242 -msgid "toggle ignore status" -msgstr "" - -#: mod/content.php:803 object/Item.php:137 -msgid "save to folder" -msgstr "konservi en dosierujo" - -#: mod/content.php:848 object/Item.php:201 -msgid "I will attend" -msgstr "" - -#: mod/content.php:848 object/Item.php:201 -msgid "I will not attend" -msgstr "" - -#: mod/content.php:848 object/Item.php:201 -msgid "I might attend" -msgstr "" - -#: mod/content.php:912 object/Item.php:369 -msgid "to" -msgstr "al" - -#: mod/content.php:913 object/Item.php:371 -msgid "Wall-to-Wall" -msgstr "Muro-al-Muro" - -#: mod/content.php:914 object/Item.php:372 -msgid "via Wall-To-Wall:" -msgstr "per Muro-al-Muro:" - -#: mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Amikosugesto sendita." - -#: mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Sugesti amikojn" - -#: mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Sugesti amikon por %s" - -#: mod/mood.php:133 -msgid "Mood" -msgstr "" - -#: mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "" - -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "" - -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: mod/poke.php:194 -msgid "Recipient" -msgstr "" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "" - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Bildo estas alŝutita, sed malsukcesis tranĉi la bildon." - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:314 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Malsukcesis malpligrandigi [%s] la bildon." - -#: mod/profile_photo.php:124 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Reŝarĝu la paĝon au malplenigu la kaŝmemoro de la retesplorilo se la nova bildo ne tuj aperas." - -#: mod/profile_photo.php:134 -msgid "Unable to process image" -msgstr "Ne eblas procezi bildon." - -#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "" - -#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188 -msgid "Unable to process image." -msgstr "Ne eblas procedi la bildon." - -#: mod/profile_photo.php:248 -msgid "Upload File:" -msgstr "Alŝuti dosieron:" - -#: mod/profile_photo.php:249 -msgid "Select a profile:" -msgstr "" - -#: mod/profile_photo.php:251 -msgid "Upload" -msgstr "Alŝuti" - -#: mod/profile_photo.php:254 -msgid "or" -msgstr "aŭ" - -#: mod/profile_photo.php:254 -msgid "skip this step" -msgstr "Preterpasi tian paŝon" - -#: mod/profile_photo.php:254 -msgid "select a photo from your photo albums" -msgstr "elekti bildon el viaj albumoj" - -#: mod/profile_photo.php:268 -msgid "Crop Image" -msgstr "Stuci Bildon" - -#: mod/profile_photo.php:269 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Bonvolu agordi la stuco de la bildo por optimuma aspekto." - -#: mod/profile_photo.php:271 -msgid "Done Editing" -msgstr "Finigi Redaktado" - -#: mod/profile_photo.php:305 -msgid "Image uploaded successfully." -msgstr "Bildo estas sukcese enŝutita." - -#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221 -msgid "Image upload failed." -msgstr "Alŝuto de bildo malsukcesis." - -#: mod/regmod.php:55 -msgid "Account approved." -msgstr "Konto aprobita." - -#: mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registraĵo por %s senvalidigita." - -#: mod/regmod.php:104 -msgid "Please login." -msgstr "Bonvolu ensaluti." - -#: mod/notifications.php:35 -msgid "Invalid request identifier." -msgstr "Nevalida peta identigilo." - -#: mod/notifications.php:44 mod/notifications.php:180 -#: mod/notifications.php:252 -msgid "Discard" -msgstr "Forviŝi" - -#: mod/notifications.php:60 mod/notifications.php:179 -#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806 -#: mod/contacts.php:991 -msgid "Ignore" -msgstr "Ignori" - -#: mod/notifications.php:105 -msgid "Network Notifications" -msgstr "Retaj Atentigoj" - -#: mod/notifications.php:117 -msgid "Personal Notifications" -msgstr "Personaj Atentigoj" - -#: mod/notifications.php:123 -msgid "Home Notifications" -msgstr "Hejmrilataj atentigoj" - -#: mod/notifications.php:152 -msgid "Show Ignored Requests" -msgstr "Montri ignoritajn petojn" - -#: mod/notifications.php:152 -msgid "Hide Ignored Requests" -msgstr "Kaŝi ignoritajn petojn" - -#: mod/notifications.php:164 mod/notifications.php:222 -msgid "Notification type: " -msgstr "Tipo de atentigo:" - -#: mod/notifications.php:167 -#, php-format -msgid "suggested by %s" -msgstr "sugestita de %s" - -#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613 -msgid "Hide this contact from others" -msgstr "Kaŝi ĉi tiun kontakton al aliaj" - -#: mod/notifications.php:173 mod/notifications.php:240 -msgid "Post a new friend activity" -msgstr "Afiŝi novan amikecan aktivecon" - -#: mod/notifications.php:173 mod/notifications.php:240 -msgid "if applicable" -msgstr "se aplikebla" - -#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412 -msgid "Approve" -msgstr "Aprobi" - -#: mod/notifications.php:195 -msgid "Claims to be known to you: " -msgstr "Pensas ke vi konas ilin:" - -#: mod/notifications.php:196 -msgid "yes" -msgstr "jes" - -#: mod/notifications.php:196 -msgid "no" -msgstr "ne" - -#: mod/notifications.php:197 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " -msgstr "" - -#: mod/notifications.php:200 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "" - -#: mod/notifications.php:209 -msgid "Friend" -msgstr "Amiko" - -#: mod/notifications.php:210 -msgid "Sharer" -msgstr "Kunhaviganto" - -#: mod/notifications.php:210 -msgid "Fan/Admirer" -msgstr "Fanatikulo/Admiranto" - -#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126 -msgid "Profile URL" -msgstr "" - -#: mod/notifications.php:260 -msgid "No introductions." -msgstr "Neniom da prezentoj" - -#: mod/notifications.php:299 -msgid "Show unread" -msgstr "" - -#: mod/notifications.php:299 -msgid "Show all" -msgstr "" - -#: mod/notifications.php:305 -#, php-format -msgid "No more %s notifications." -msgstr "" - -#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180 -#: mod/profiles.php:617 mod/dfrn_confirm.php:70 -msgid "Profile not found." -msgstr "Profilo ne trovita." - -#: mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profilo forviŝita." - -#: mod/profiles.php:56 mod/profiles.php:90 -msgid "Profile-" -msgstr "Profilo-" - -#: mod/profiles.php:75 mod/profiles.php:118 -msgid "New profile created." -msgstr "Nova profilo kreita." - -#: mod/profiles.php:96 -msgid "Profile unavailable to clone." -msgstr "Ne eblas kopii profilon." - -#: mod/profiles.php:190 -msgid "Profile Name is required." -msgstr "Nomo de profilo estas bezonata." - -#: mod/profiles.php:338 -msgid "Marital Status" -msgstr "Amrilata Stato" - -#: mod/profiles.php:342 -msgid "Romantic Partner" -msgstr "Kora Partnero" - -#: mod/profiles.php:354 -msgid "Work/Employment" -msgstr "Laboro" - -#: mod/profiles.php:357 -msgid "Religion" -msgstr "Religio" - -#: mod/profiles.php:361 -msgid "Political Views" -msgstr "Politikaj Opinioj" - -#: mod/profiles.php:365 -msgid "Gender" -msgstr "Sekso" - -#: mod/profiles.php:369 -msgid "Sexual Preference" -msgstr "Seksa Prefero" - -#: mod/profiles.php:373 -msgid "XMPP" -msgstr "" - -#: mod/profiles.php:377 -msgid "Homepage" -msgstr "Hejmpaĝo" - -#: mod/profiles.php:381 mod/profiles.php:702 -msgid "Interests" -msgstr "Interesoj" - -#: mod/profiles.php:385 -msgid "Address" -msgstr "Adreso" - -#: mod/profiles.php:392 mod/profiles.php:698 -msgid "Location" -msgstr "Loko" - -#: mod/profiles.php:477 -msgid "Profile updated." -msgstr "Profilo ĝisdatigita." - -#: mod/profiles.php:564 -msgid " and " -msgstr " kaj " - -#: mod/profiles.php:572 -msgid "public profile" -msgstr "publika profilo" - -#: mod/profiles.php:575 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ŝanĝis %2$s al “%3$s”" - -#: mod/profiles.php:576 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Vizitu la %2$s de %1$s" - -#: mod/profiles.php:579 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s havas ĝisdatigigan %2$s, ŝanĝas %3$s." - -#: mod/profiles.php:645 -msgid "Hide contacts and friends:" -msgstr "" - -#: mod/profiles.php:650 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Kaŝi vian liston de kontaktoj/amikoj al vidantoj de ĉi-tio profilo?" - -#: mod/profiles.php:674 -msgid "Show more profile fields:" -msgstr "" - -#: mod/profiles.php:686 -msgid "Profile Actions" -msgstr "" - -#: mod/profiles.php:687 -msgid "Edit Profile Details" -msgstr "Redakti Detalojn de Profilo" - -#: mod/profiles.php:689 -msgid "Change Profile Photo" -msgstr "" - -#: mod/profiles.php:690 -msgid "View this profile" -msgstr "Vidi la profilon." - -#: mod/profiles.php:692 -msgid "Create a new profile using these settings" -msgstr "Krei novan profilon kun tiaj agordoj" - -#: mod/profiles.php:693 -msgid "Clone this profile" -msgstr "Kopii ĉi tiun profilon" - -#: mod/profiles.php:694 -msgid "Delete this profile" -msgstr "Forviŝi ĉi tiun profilon" - -#: mod/profiles.php:696 -msgid "Basic information" -msgstr "" - -#: mod/profiles.php:697 -msgid "Profile picture" -msgstr "" - -#: mod/profiles.php:699 -msgid "Preferences" -msgstr "" - -#: mod/profiles.php:700 -msgid "Status information" -msgstr "" - -#: mod/profiles.php:701 -msgid "Additional information" -msgstr "" - -#: mod/profiles.php:704 -msgid "Relation" -msgstr "" - -#: mod/profiles.php:708 -msgid "Your Gender:" -msgstr "Via Sekso:" - -#: mod/profiles.php:709 -msgid " Marital Status:" -msgstr " Civita Stato:" - -#: mod/profiles.php:711 -msgid "Example: fishing photography software" -msgstr "Ekzemple: fiŝkapti fotografio programaro" - -#: mod/profiles.php:716 -msgid "Profile Name:" -msgstr "Nomo de Profilo:" - -#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496 -msgid "Required" -msgstr "Bezonata" - -#: mod/profiles.php:718 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "Ĉi tio estas via publika profilo. Ĝi eble estas videbla al ĉiuj en interreto. " - -#: mod/profiles.php:719 -msgid "Your Full Name:" -msgstr "Via Plena Nomo:" - -#: mod/profiles.php:720 -msgid "Title/Description:" -msgstr "Titolo/Priskribo:" - -#: mod/profiles.php:723 -msgid "Street Address:" -msgstr "Adreso:" - -#: mod/profiles.php:724 -msgid "Locality/City:" -msgstr "Urbo:" - -#: mod/profiles.php:725 -msgid "Region/State:" -msgstr "Ŝtato:" - -#: mod/profiles.php:726 -msgid "Postal/Zip Code:" -msgstr "Poŝtkodo:" - -#: mod/profiles.php:727 -msgid "Country:" -msgstr "Lando:" - -#: mod/profiles.php:731 -msgid "Who: (if applicable)" -msgstr "Kiu (se aplikeble):" - -#: mod/profiles.php:731 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Ekzemploj: cathy123, Cathy Williams, cathy@example.com" - -#: mod/profiles.php:732 -msgid "Since [date]:" -msgstr "Ekde [dato]:" - -#: mod/profiles.php:734 -msgid "Tell us about yourself..." -msgstr "Diru al ni pri vi..." - -#: mod/profiles.php:735 -msgid "XMPP (Jabber) address:" -msgstr "" - -#: mod/profiles.php:735 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." -msgstr "" - -#: mod/profiles.php:736 -msgid "Homepage URL:" -msgstr "Adreso de Hejmpaĝo:" - -#: mod/profiles.php:739 -msgid "Religious Views:" -msgstr "Religiaj Opinioj:" - -#: mod/profiles.php:740 -msgid "Public Keywords:" -msgstr "Publikaj ŝlosilvortoj:" - -#: mod/profiles.php:740 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Por sugesti amikoj. Videbla al aliaj.)" - -#: mod/profiles.php:741 -msgid "Private Keywords:" -msgstr "Privataj ŝlosilvortoj:" - -#: mod/profiles.php:741 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Por serĉi profilojn. Neniam videbla al aliaj.)" - -#: mod/profiles.php:744 -msgid "Musical interests" -msgstr "Muzikaj interesoj" - -#: mod/profiles.php:745 -msgid "Books, literature" -msgstr "Libroj, literaturo" - -#: mod/profiles.php:746 -msgid "Television" -msgstr "Televido" - -#: mod/profiles.php:747 -msgid "Film/dance/culture/entertainment" -msgstr "Filmoj/dancoj/arto/amuzaĵoj" - -#: mod/profiles.php:748 -msgid "Hobbies/Interests" -msgstr "Ŝatokupoj/Interesoj" - -#: mod/profiles.php:749 -msgid "Love/romance" -msgstr "Amo/romanco" - -#: mod/profiles.php:750 -msgid "Work/employment" -msgstr "Laboro" - -#: mod/profiles.php:751 -msgid "School/education" -msgstr "Lernejo/eduko" - -#: mod/profiles.php:752 -msgid "Contact information and Social Networks" -msgstr "Kontaktaj informoj kaj Interkonaj Retejoj" - -#: mod/profiles.php:794 -msgid "Edit/Manage Profiles" -msgstr "Redakti/administri Profilojn" - -#: mod/allfriends.php:43 -msgid "No friends to display." -msgstr "Neniom da amiko al montri." - -#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Atingo al ĉi tio profilo estas limitigita" - -#: mod/cal.php:276 mod/events.php:380 -msgid "View" -msgstr "" - -#: mod/cal.php:277 mod/events.php:382 -msgid "Previous" -msgstr "antaŭa" - -#: mod/cal.php:278 mod/events.php:383 mod/install.php:231 -msgid "Next" -msgstr "sekva" - -#: mod/cal.php:287 mod/events.php:392 -msgid "list" -msgstr "" - -#: mod/cal.php:297 -msgid "User not found" -msgstr "" - -#: mod/cal.php:313 -msgid "This calendar format is not supported" -msgstr "" - -#: mod/cal.php:315 -msgid "No exportable data found" -msgstr "" - -#: mod/cal.php:330 -msgid "calendar" -msgstr "" - -#: mod/common.php:86 -msgid "No contacts in common." -msgstr "Neniom da komunaj kontaktoj." - -#: mod/common.php:134 mod/contacts.php:863 -msgid "Common Friends" -msgstr "Komunaj Amikoj" - -#: mod/community.php:27 -msgid "Not available." -msgstr "Ne disponebla." - -#: mod/directory.php:197 view/theme/vier/theme.php:201 -msgid "Global Directory" -msgstr "Tutmonda Katalogo" - -#: mod/directory.php:199 -msgid "Find on this site" -msgstr "Trovi en ĉi retejo" - -#: mod/directory.php:201 -msgid "Results for:" -msgstr "" - -#: mod/directory.php:203 -msgid "Site Directory" -msgstr "Reteja Katalogo" - -#: mod/directory.php:210 -msgid "No entries (some entries may be hidden)." -msgstr "Neniom da afiŝoj (kelkaj afiŝoj eble ne estas videbla)." - -#: mod/dirfind.php:36 -#, php-format -msgid "People Search - %s" -msgstr "" - -#: mod/dirfind.php:47 -#, php-format -msgid "Forum Search - %s" -msgstr "" - -#: mod/dirfind.php:240 mod/match.php:107 -msgid "No matches" -msgstr "Nenio estas trovita" - -#: mod/display.php:473 -msgid "Item has been removed." -msgstr "Elemento estas forviŝita." - -#: mod/events.php:95 mod/events.php:97 -msgid "Event can not end before it has started." -msgstr "" - -#: mod/events.php:104 mod/events.php:106 -msgid "Event title and start time are required." -msgstr "Titolo kaj starttempo estas bezonataj por la okazo." - -#: mod/events.php:381 -msgid "Create New Event" -msgstr "Krei novan okazon" - -#: mod/events.php:482 -msgid "Event details" -msgstr "Detaloj de okazo" - -#: mod/events.php:483 -msgid "Starting date and Title are required." -msgstr "" - -#: mod/events.php:484 mod/events.php:485 -msgid "Event Starts:" -msgstr "Okazo startas:" - -#: mod/events.php:486 mod/events.php:502 -msgid "Finish date/time is not known or not relevant" -msgstr "Fina dato/tempo ne estas konata aŭ ne bezonata" - -#: mod/events.php:488 mod/events.php:489 -msgid "Event Finishes:" -msgstr "Okazo finas:" - -#: mod/events.php:490 mod/events.php:503 -msgid "Adjust for viewer timezone" -msgstr "Agordi al horzono de la leganto" - -#: mod/events.php:492 -msgid "Description:" -msgstr "Priskribo" - -#: mod/events.php:496 mod/events.php:498 -msgid "Title:" -msgstr "Titolo:" - -#: mod/events.php:499 mod/events.php:500 -msgid "Share this event" -msgstr "Kunhavigi la okazon" - -#: mod/maintenance.php:9 -msgid "System down for maintenance" -msgstr "" - -#: mod/match.php:33 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Neniom da kategoriaj vortoj kongruas. Bonvolu aldoni kategoriajn vortojn al via defaŭlta profilo." - -#: mod/match.php:86 -msgid "is interested in:" -msgstr "interesiĝas pri:" - -#: mod/match.php:100 -msgid "Profile Match" -msgstr "Kongrua profilo" - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Konsilo por novaj membroj" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "" - -#: mod/suggest.php:71 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Neniu sugestoj disponeblas. Se ĉi tiu estas nova retejo, bonvolu reprovi post 24 horoj." - -#: mod/suggest.php:84 mod/suggest.php:104 -msgid "Ignore/Hide" -msgstr "Ignori/Kaŝi" - -#: mod/update_community.php:19 mod/update_display.php:23 -#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 -msgid "[Embedded content - reload page to view]" -msgstr "[Enigita enhavo - reŝargu paĝon por spekti ĝin]" - -#: mod/photos.php:88 mod/photos.php:1856 -msgid "Recent Photos" -msgstr "̂Ĵusaj bildoj" - -#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858 -msgid "Upload New Photos" -msgstr "Alŝuti novajn bildojn" - -#: mod/photos.php:105 mod/settings.php:36 -msgid "everybody" -msgstr "ĉiuj" - -#: mod/photos.php:169 -msgid "Contact information unavailable" -msgstr "Kontaktoj informoj ne disponeblas" - -#: mod/photos.php:190 -msgid "Album not found." -msgstr "Albumo ne trovita." - -#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227 -msgid "Delete Album" -msgstr "Forviŝi albumon" - -#: mod/photos.php:230 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "" - -#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540 -msgid "Delete Photo" -msgstr "Forviŝi bildon" - -#: mod/photos.php:317 -msgid "Do you really want to delete this photo?" -msgstr "" - -#: mod/photos.php:688 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" - -#: mod/photos.php:688 -msgid "a photo" -msgstr "" - -#: mod/photos.php:794 -msgid "Image file is empty." -msgstr "Bilddosiero estas malplena." - -#: mod/photos.php:954 -msgid "No photos selected" -msgstr "Neniu bildoj elektita" - -#: mod/photos.php:1054 mod/videos.php:305 -msgid "Access to this item is restricted." -msgstr "Atingo al tio elemento estas limigita." - -#: mod/photos.php:1114 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Vi uzas %1$.2f MB de %2$.2f MB bildkonservejo." - -#: mod/photos.php:1148 -msgid "Upload Photos" -msgstr "Alŝuti bildojn" - -#: mod/photos.php:1152 mod/photos.php:1222 -msgid "New album name: " -msgstr "Nomo por nova albumo:" - -#: mod/photos.php:1153 -msgid "or existing album name: " -msgstr "aŭ nomo de estanta albumo:" - -#: mod/photos.php:1154 -msgid "Do not show a status post for this upload" -msgstr "Ne kreu statan afiŝon por tio alŝuto." - -#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300 -msgid "Show to Groups" -msgstr "" - -#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301 -msgid "Show to Contacts" -msgstr "" - -#: mod/photos.php:1167 -msgid "Private Photo" -msgstr "" - -#: mod/photos.php:1168 -msgid "Public Photo" -msgstr "" - -#: mod/photos.php:1234 -msgid "Edit Album" -msgstr "Redakti albumon" - -#: mod/photos.php:1240 -msgid "Show Newest First" -msgstr "" - -#: mod/photos.php:1242 -msgid "Show Oldest First" -msgstr "" - -#: mod/photos.php:1269 mod/photos.php:1841 -msgid "View Photo" -msgstr "Vidi bildon" - -#: mod/photos.php:1315 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Malpermesita. Atingo al tio elemento eble estas limigita." - -#: mod/photos.php:1317 -msgid "Photo not available" -msgstr "La bildo ne disponeblas" - -#: mod/photos.php:1372 -msgid "View photo" -msgstr "Vidi bildon" - -#: mod/photos.php:1372 -msgid "Edit photo" -msgstr "Redakti bildon" - -#: mod/photos.php:1373 -msgid "Use as profile photo" -msgstr "Uzi kiel profilbildo" - -#: mod/photos.php:1398 -msgid "View Full Size" -msgstr "Vidi plengrande " - -#: mod/photos.php:1484 -msgid "Tags: " -msgstr "Markoj:" - -#: mod/photos.php:1487 -msgid "[Remove any tag]" -msgstr "[Forviŝi iun markon]" - -#: mod/photos.php:1526 -msgid "New album name" -msgstr "Nova nomo de albumo" - -#: mod/photos.php:1527 -msgid "Caption" -msgstr "Apudskribo" - -#: mod/photos.php:1528 -msgid "Add a Tag" -msgstr "Aldoni markon" - -#: mod/photos.php:1528 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Ekzemple: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1529 -msgid "Do not rotate" -msgstr "" - -#: mod/photos.php:1530 -msgid "Rotate CW (right)" -msgstr "Turni horloĝdirekte (dekstren)" - -#: mod/photos.php:1531 -msgid "Rotate CCW (left)" -msgstr "Turni kontraŭhorloĝdirekte (maldekstren)" - -#: mod/photos.php:1546 -msgid "Private photo" -msgstr "" - -#: mod/photos.php:1547 -msgid "Public photo" -msgstr "" - -#: mod/photos.php:1770 -msgid "Map" -msgstr "" - -#: mod/photos.php:1847 mod/videos.php:387 -msgid "View Album" -msgstr "Vidi albumon" - -#: mod/register.php:93 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrado sukcesis. Bonvolu kontroli vian retpoŝton por pli da instruoj." - -#: mod/register.php:98 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
    login: %s
    " -"password: %s

    You can change your password after login." -msgstr "" - -#: mod/register.php:105 -msgid "Registration successful." -msgstr "" - -#: mod/register.php:111 -msgid "Your registration can not be processed." -msgstr "Mi ne povas prilabori vian registradon." - -#: mod/register.php:160 -msgid "Your registration is pending approval by the site owner." -msgstr "Via registrado bezonas apropbon de la administranto." - -#: mod/register.php:226 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Vi ankaŭ (nedeviga) povas plenigi la formularon per OpenID se vi provizas vian OpenID adreson kaj klakas 'Registri'." - -#: mod/register.php:227 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Se vi ne konas OpenID, bonvolu lasi tiun kampon malplena kaj entajpu la aliajn elementojn." - -#: mod/register.php:228 -msgid "Your OpenID (optional): " -msgstr "Via OpenID (nedeviga):" - -#: mod/register.php:242 -msgid "Include your profile in member directory?" -msgstr "Aldoni vian profilon al la membrokatalogo?" - -#: mod/register.php:267 -msgid "Note for the admin" -msgstr "" - -#: mod/register.php:267 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "" - -#: mod/register.php:268 -msgid "Membership on this site is by invitation only." -msgstr "Membriĝi ĉi tie nur eblas laŭ invito." - -#: mod/register.php:269 -msgid "Your invitation ID: " -msgstr "Via invita idento: " - -#: mod/register.php:272 mod/admin.php:956 -msgid "Registration" -msgstr "Registrado" - -#: mod/register.php:280 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "" - -#: mod/register.php:281 -msgid "Your Email Address: " -msgstr "Via Retpoŝtadreso: " - -#: mod/register.php:283 mod/settings.php:1271 -msgid "New Password:" -msgstr "Nova pasvorto:" - -#: mod/register.php:283 -msgid "Leave empty for an auto generated password." -msgstr "" - -#: mod/register.php:284 mod/settings.php:1272 -msgid "Confirm:" -msgstr "Konfirmi:" - -#: mod/register.php:285 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Elektu kaŝnomon por la profilo. Tiu bezonas komenci kun teksta litero. Poste, via profila adreso ĉi tie estos: 'kaŝnomo@$sitename'." - -#: mod/register.php:286 -msgid "Choose a nickname: " -msgstr "Elektu kaŝnomon: " - -#: mod/register.php:296 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: mod/settings.php:43 mod/admin.php:1396 -msgid "Account" -msgstr "Konto" - -#: mod/settings.php:52 mod/admin.php:160 -msgid "Additional features" -msgstr "" - -#: mod/settings.php:60 -msgid "Display" -msgstr "" - -#: mod/settings.php:67 mod/settings.php:886 -msgid "Social Networks" -msgstr "" - -#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 -msgid "Plugins" -msgstr "Kromprogramoj" - -#: mod/settings.php:88 -msgid "Connected apps" -msgstr "Konektitaj programoj" - -#: mod/settings.php:102 -msgid "Remove account" -msgstr "Forigi konton" - -#: mod/settings.php:155 -msgid "Missing some important data!" -msgstr "Mankas importantaj datumoj!" - -#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804 -msgid "Update" -msgstr "Ĝisdatigi" - -#: mod/settings.php:269 -msgid "Failed to connect with email account using the settings provided." -msgstr "Ne sukcesis konekti al retpoŝtkonto kun la provizitaj agordoj." - -#: mod/settings.php:274 -msgid "Email settings updated." -msgstr "Retpoŝtagordoj ĝisdatigita" - -#: mod/settings.php:289 -msgid "Features updated" -msgstr "" - -#: mod/settings.php:359 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: mod/settings.php:378 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Malplenaj pasvortoj ne estas permesita. Pasvorto ne ŝanĝita." - -#: mod/settings.php:386 -msgid "Wrong password." -msgstr "" - -#: mod/settings.php:397 -msgid "Password changed." -msgstr "Pasvorto ŝanĝita." - -#: mod/settings.php:399 -msgid "Password update failed. Please try again." -msgstr "Ĝisdatigo de pasvorto malsukcesis. Bonvolu provi refoje." - -#: mod/settings.php:479 -msgid " Please use a shorter name." -msgstr " Bonvolu uzi pli mallongan nomon." - -#: mod/settings.php:481 -msgid " Name too short." -msgstr " Nomo estas tro mallonga." - -#: mod/settings.php:490 -msgid "Wrong Password" -msgstr "" - -#: mod/settings.php:495 -msgid " Not valid email." -msgstr " Repoŝtadreso ne validas." - -#: mod/settings.php:501 -msgid " Cannot change to that email." -msgstr " Ne povas ŝanĝi al tio retpoŝtadreso." - -#: mod/settings.php:557 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Privata forumo ne havas privatecajn agordojn. Defaŭlta privateca grupo estas uzata." - -#: mod/settings.php:561 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Privata forumo havas nek privatecajn agordojn nek defaŭltan privatecan grupon." - -#: mod/settings.php:601 -msgid "Settings updated." -msgstr "Agordoj ĝisdatigita." - -#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739 -msgid "Add application" -msgstr "Aldoni programon" - -#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835 -#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264 -#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905 -#: mod/admin.php:2055 -msgid "Save Settings" -msgstr "" - -#: mod/settings.php:681 mod/settings.php:707 -msgid "Consumer Key" -msgstr "Ŝlosilo de kliento" - -#: mod/settings.php:682 mod/settings.php:708 -msgid "Consumer Secret" -msgstr "Sekreto de kliento" - -#: mod/settings.php:683 mod/settings.php:709 -msgid "Redirect" -msgstr "Alidirekto" - -#: mod/settings.php:684 mod/settings.php:710 -msgid "Icon url" -msgstr "Piktograma adreso" - -#: mod/settings.php:695 -msgid "You can't edit this application." -msgstr "Ĉi tio programo ne estas redaktebla." - -#: mod/settings.php:738 -msgid "Connected Apps" -msgstr "Konektitaj Programoj" - -#: mod/settings.php:742 -msgid "Client key starts with" -msgstr "Ŝlosilo de kliento komencas kun" - -#: mod/settings.php:743 -msgid "No name" -msgstr "Neniu nomo" - -#: mod/settings.php:744 -msgid "Remove authorization" -msgstr "Forviŝi rajtigon" - -#: mod/settings.php:756 -msgid "No Plugin settings configured" -msgstr "Neniom da kromprogramoagordoj farita" - -#: mod/settings.php:764 -msgid "Plugin Settings" -msgstr "Kromprogramoagordoj" - -#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 -msgid "Off" -msgstr "" - -#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 -msgid "On" -msgstr "" - -#: mod/settings.php:786 -msgid "Additional Features" -msgstr "" - -#: mod/settings.php:796 mod/settings.php:800 -msgid "General Social Media Settings" -msgstr "" - -#: mod/settings.php:806 -msgid "Disable intelligent shortening" -msgstr "" - -#: mod/settings.php:808 -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:814 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "" - -#: mod/settings.php:816 -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:822 -msgid "Default group for OStatus contacts" -msgstr "" - -#: mod/settings.php:828 -msgid "Your legacy GNU Social account" -msgstr "" - -#: mod/settings.php:830 -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:833 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: mod/settings.php:842 mod/settings.php:843 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Integrita subteno por %s koneto estas %s" - -#: mod/settings.php:842 mod/settings.php:843 -msgid "enabled" -msgstr "ŝaltita" - -#: mod/settings.php:842 mod/settings.php:843 -msgid "disabled" -msgstr "malŝaltita" - -#: mod/settings.php:843 -msgid "GNU Social (OStatus)" -msgstr "" - -#: mod/settings.php:879 -msgid "Email access is disabled on this site." -msgstr "Retpoŝta atingo ne disponeblas ĉi tie." - -#: mod/settings.php:891 -msgid "Email/Mailbox Setup" -msgstr "Agordoj pri Retpoŝto" - -#: mod/settings.php:892 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Se vi volas uzi ĉi tiun servon por komuniki per retpoŝto (nedeviga), bonvolu specifi kiel konekti al vian retpoŝtkonton." - -#: mod/settings.php:893 -msgid "Last successful email check:" -msgstr "Plej ĵusa sukcesa kontrolo de poŝto:" - -#: mod/settings.php:895 -msgid "IMAP server name:" -msgstr "Nomo de IMAP servilo:" - -#: mod/settings.php:896 -msgid "IMAP port:" -msgstr "Numero de IMAP pordo:" - -#: mod/settings.php:897 -msgid "Security:" -msgstr "Sekureco:" - -#: mod/settings.php:897 mod/settings.php:902 -msgid "None" -msgstr "Nenio" - -#: mod/settings.php:898 -msgid "Email login name:" -msgstr "Retpoŝta salutnomo:" - -#: mod/settings.php:899 -msgid "Email password:" -msgstr "Retpoŝta pasvorto:" - -#: mod/settings.php:900 -msgid "Reply-to address:" -msgstr "Responda adreso (Reply-to):" - -#: mod/settings.php:901 -msgid "Send public posts to all email contacts:" -msgstr "Sendu publikajn afiŝojn al ĉiuj retpoŝtkontaktoj:" - -#: mod/settings.php:902 -msgid "Action after import:" -msgstr "Ago post la importado:" - -#: mod/settings.php:902 -msgid "Move to folder" -msgstr "Movi al dosierujo" - -#: mod/settings.php:903 -msgid "Move to folder:" -msgstr "Movi al dosierujo:" - -#: mod/settings.php:934 mod/admin.php:862 -msgid "No special theme for mobile devices" -msgstr "" - -#: mod/settings.php:994 -msgid "Display Settings" -msgstr "Ekranagordoj" - -#: mod/settings.php:1000 mod/settings.php:1023 -msgid "Display Theme:" -msgstr "Vidiga etoso:" - -#: mod/settings.php:1001 -msgid "Mobile Theme:" -msgstr "" - -#: mod/settings.php:1002 -msgid "Suppress warning of insecure networks" -msgstr "" - -#: mod/settings.php:1002 -msgid "" -"Should the system suppress the warning that the current group contains " -"members of networks that can't receive non public postings." -msgstr "" - -#: mod/settings.php:1003 -msgid "Update browser every xx seconds" -msgstr "Ĝisdatigu retesplorilon ĉiu xxx sekundoj" - -#: mod/settings.php:1003 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "" - -#: mod/settings.php:1004 -msgid "Number of items to display per page:" -msgstr "" - -#: mod/settings.php:1004 mod/settings.php:1005 -msgid "Maximum of 100 items" -msgstr "Maksimume 100 eroj" - -#: mod/settings.php:1005 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" - -#: mod/settings.php:1006 -msgid "Don't show emoticons" -msgstr "Ne montru ridetulojn" - -#: mod/settings.php:1007 -msgid "Calendar" -msgstr "" - -#: mod/settings.php:1008 -msgid "Beginning of week:" -msgstr "" - -#: mod/settings.php:1009 -msgid "Don't show notices" -msgstr "" - -#: mod/settings.php:1010 -msgid "Infinite scroll" -msgstr "" - -#: mod/settings.php:1011 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: mod/settings.php:1012 -msgid "Bandwith Saver Mode" -msgstr "" - -#: mod/settings.php:1012 -msgid "" -"When enabled, embedded content is not displayed on automatic updates, they " -"only show on page reload." -msgstr "" - -#: mod/settings.php:1014 -msgid "General Theme Settings" -msgstr "" - -#: mod/settings.php:1015 -msgid "Custom Theme Settings" -msgstr "" - -#: mod/settings.php:1016 -msgid "Content Settings" -msgstr "" - -#: mod/settings.php:1017 view/theme/frio/config.php:61 -#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109 -#: view/theme/duepuntozero/config.php:61 -msgid "Theme settings" -msgstr "Agordoj pri la etoso" - -#: mod/settings.php:1099 -msgid "Account Types" -msgstr "" - -#: mod/settings.php:1100 -msgid "Personal Page Subtypes" -msgstr "" - -#: mod/settings.php:1101 -msgid "Community Forum Subtypes" -msgstr "" - -#: mod/settings.php:1108 -msgid "Personal Page" -msgstr "" - -#: mod/settings.php:1109 -msgid "This account is a regular personal profile" -msgstr "" - -#: mod/settings.php:1112 -msgid "Organisation Page" -msgstr "" - -#: mod/settings.php:1113 -msgid "This account is a profile for an organisation" -msgstr "" - -#: mod/settings.php:1116 -msgid "News Page" -msgstr "" - -#: mod/settings.php:1117 -msgid "This account is a news account/reflector" -msgstr "" - -#: mod/settings.php:1120 -msgid "Community Forum" -msgstr "" - -#: mod/settings.php:1121 -msgid "" -"This account is a community forum where people can discuss with each other" -msgstr "" - -#: mod/settings.php:1124 -msgid "Normal Account Page" -msgstr "Normala Kontopaĝo" - -#: mod/settings.php:1125 -msgid "This account is a normal personal profile" -msgstr "Tiu konto estas normala persona profilo" - -#: mod/settings.php:1128 -msgid "Soapbox Page" -msgstr "Soapbox Paĝo" - -#: mod/settings.php:1129 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel nurlegaj admirantoj" - -#: mod/settings.php:1132 -msgid "Public Forum" -msgstr "" - -#: mod/settings.php:1133 -msgid "Automatically approve all contact requests" -msgstr "" - -#: mod/settings.php:1136 -msgid "Automatic Friend Page" -msgstr "Aŭtomata Amiko Paĝo" - -#: mod/settings.php:1137 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel amikoj" - -#: mod/settings.php:1140 -msgid "Private Forum [Experimental]" -msgstr "Privata Forumo [eksperimenta]" - -#: mod/settings.php:1141 -msgid "Private forum - approved members only" -msgstr "Privata forumo - nur por aprobitaj membroj" - -#: mod/settings.php:1153 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1153 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Nedeviga) Permesi atingon al la konton al ĉi tio OpenID." - -#: mod/settings.php:1163 -msgid "Publish your default profile in your local site directory?" -msgstr "Publikigi vian defaŭltan profilon en la loka reteja katalogo?" - -#: mod/settings.php:1169 -msgid "Publish your default profile in the global social directory?" -msgstr "Publikigi vian defaŭltan profilon en la tutmonda interkona katalogo?" - -#: mod/settings.php:1177 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Kaŝi vian liston de kontaktoj/amiko al spektantoj de via defaŭlta profilo?" - -#: mod/settings.php:1181 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" - -#: mod/settings.php:1186 -msgid "Allow friends to post to your profile page?" -msgstr "Ĉu amikoj povu afiŝi al via profilo?" - -#: mod/settings.php:1192 -msgid "Allow friends to tag your posts?" -msgstr "Ĉu amikoj povu aldoni markojn al viaj afiŝoj?" - -#: mod/settings.php:1198 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Ĉu ni povu sugesti vin kiel amiko al novaj membroj?" - -#: mod/settings.php:1204 -msgid "Permit unknown people to send you private mail?" -msgstr "Permesigi nekonatulojn sendi retpoŝton al vi?" - -#: mod/settings.php:1212 -msgid "Profile is not published." -msgstr "Profilo ne estas publika." - -#: mod/settings.php:1220 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "" - -#: mod/settings.php:1227 -msgid "Automatically expire posts after this many days:" -msgstr "Automatike senvalidigi afiŝojn post tiom da tagoj:" - -#: mod/settings.php:1227 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Se malplena, afiŝoj neniam senvalidiĝos. Senvalidigitajn afiŝon estos forviŝata" - -#: mod/settings.php:1228 -msgid "Advanced expiration settings" -msgstr "Detalaj agordoj rilate al senvalidiĝo" - -#: mod/settings.php:1229 -msgid "Advanced Expiration" -msgstr "Detala senvalidiĝo" - -#: mod/settings.php:1230 -msgid "Expire posts:" -msgstr "Senvalidigi afiŝojn:" - -#: mod/settings.php:1231 -msgid "Expire personal notes:" -msgstr "Senvalidigi personajn notojn:" - -#: mod/settings.php:1232 -msgid "Expire starred posts:" -msgstr "Senvalidigi steligitajn afiŝojn:" - -#: mod/settings.php:1233 -msgid "Expire photos:" -msgstr "Senvalidigi bildojn:" - -#: mod/settings.php:1234 -msgid "Only expire posts by others:" -msgstr "Nur senvalidigi afiŝojn de aliaj: " - -#: mod/settings.php:1262 -msgid "Account Settings" -msgstr "Kontoagordoj" - -#: mod/settings.php:1270 -msgid "Password Settings" -msgstr "Agordoj pri Pasvorto" - -#: mod/settings.php:1272 -msgid "Leave password fields blank unless changing" -msgstr "Lasu pasvortkampojn malplenaj se vi ne ŝanĝas la pasvorton." - -#: mod/settings.php:1273 -msgid "Current Password:" -msgstr "" - -#: mod/settings.php:1273 mod/settings.php:1274 -msgid "Your current password to confirm the changes" -msgstr "" - -#: mod/settings.php:1274 -msgid "Password:" -msgstr "" - -#: mod/settings.php:1278 -msgid "Basic Settings" -msgstr "Bazaj Agordoj" - -#: mod/settings.php:1280 -msgid "Email Address:" -msgstr "Retpoŝtadreso:" - -#: mod/settings.php:1281 -msgid "Your Timezone:" -msgstr "Via Horzono:" - -#: mod/settings.php:1282 -msgid "Your Language:" -msgstr "" - -#: mod/settings.php:1282 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "" - -#: mod/settings.php:1283 -msgid "Default Post Location:" -msgstr "Defaŭlta Loko por Afiŝoj:" - -#: mod/settings.php:1284 -msgid "Use Browser Location:" -msgstr "Uzu Lokon laŭ Retesplorilo:" - -#: mod/settings.php:1287 -msgid "Security and Privacy Settings" -msgstr "Agordoj pri Sekureco kaj Privateco" - -#: mod/settings.php:1289 -msgid "Maximum Friend Requests/Day:" -msgstr "Taga maksimumo da kontaktpetoj:" - -#: mod/settings.php:1289 mod/settings.php:1319 -msgid "(to prevent spam abuse)" -msgstr "(por malhelpi spamaĵojn)" - -#: mod/settings.php:1290 -msgid "Default Post Permissions" -msgstr "Defaŭltaj permesoj por afiŝoj" - -#: mod/settings.php:1291 -msgid "(click to open/close)" -msgstr "(klaku por malfermi/fermi)" - -#: mod/settings.php:1302 -msgid "Default Private Post" -msgstr "" - -#: mod/settings.php:1303 -msgid "Default Public Post" -msgstr "" - -#: mod/settings.php:1307 -msgid "Default Permissions for New Posts" -msgstr "" - -#: mod/settings.php:1319 -msgid "Maximum private messages per day from unknown people:" -msgstr "Taga maksimumo da privataj mesaĝoj." - -#: mod/settings.php:1322 -msgid "Notification Settings" -msgstr "Agordoj pri Atentigoj" - -#: mod/settings.php:1323 -msgid "By default post a status message when:" -msgstr "Defaŭlte afiŝi statmesaĝon okaze de:" - -#: mod/settings.php:1324 -msgid "accepting a friend request" -msgstr "akcepti kontaktpeton" - -#: mod/settings.php:1325 -msgid "joining a forum/community" -msgstr "aliĝi forumon/komunumon" - -#: mod/settings.php:1326 -msgid "making an interesting profile change" -msgstr "fari interesan profilŝanĝon" - -#: mod/settings.php:1327 -msgid "Send a notification email when:" -msgstr "Sendu atentiga repoŝton se:" - -#: mod/settings.php:1328 -msgid "You receive an introduction" -msgstr "Vi ricevas inviton" - -#: mod/settings.php:1329 -msgid "Your introductions are confirmed" -msgstr "Viaj prezentoj estas konfirmata." - -#: mod/settings.php:1330 -msgid "Someone writes on your profile wall" -msgstr "Iu skribas je via profila muro." - -#: mod/settings.php:1331 -msgid "Someone writes a followup comment" -msgstr "Iu skribas sekvan komenton" - -#: mod/settings.php:1332 -msgid "You receive a private message" -msgstr "Vi ricevas privatan mesaĝon." - -#: mod/settings.php:1333 -msgid "You receive a friend suggestion" -msgstr "Vi ricevas amikosugeston" - -#: mod/settings.php:1334 -msgid "You are tagged in a post" -msgstr "Vi estas markita en afiŝon" - -#: mod/settings.php:1335 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: mod/settings.php:1337 -msgid "Activate desktop notifications" -msgstr "" - -#: mod/settings.php:1337 -msgid "Show desktop popup on new notifications" -msgstr "" - -#: mod/settings.php:1339 -msgid "Text-only notification emails" -msgstr "" - -#: mod/settings.php:1341 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: mod/settings.php:1343 -msgid "Advanced Account/Page Type Settings" -msgstr "Detalaj Agordoj pri Tipo de Konto/Paĝo." - -#: mod/settings.php:1344 -msgid "Change the behaviour of this account for special situations" -msgstr "Agordi la teniĝon de la konto en specialaj situacioj" - -#: mod/settings.php:1347 -msgid "Relocate" -msgstr "" - -#: mod/settings.php:1348 -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:1349 -msgid "Resend relocate message to contacts" -msgstr "" - -#: mod/videos.php:120 -msgid "Do you really want to delete this video?" -msgstr "" - -#: mod/videos.php:125 -msgid "Delete Video" -msgstr "" - -#: mod/videos.php:204 -msgid "No videos selected" -msgstr "" - -#: mod/videos.php:396 -msgid "Recent Videos" -msgstr "" - -#: mod/videos.php:398 -msgid "Upload New Videos" -msgstr "" - -#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 -#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 -#: mod/wall_upload.php:122 mod/wall_upload.php:125 -msgid "Invalid request." -msgstr "" - -#: mod/wall_attach.php:94 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: mod/wall_attach.php:94 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: mod/wall_attach.php:105 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "" - -#: mod/wall_attach.php:156 mod/wall_attach.php:172 -msgid "File upload failed." -msgstr "Alŝutado malsukcesis." - -#: mod/admin.php:92 -msgid "Theme settings updated." -msgstr "Gisdatigis agordojn pri etosoj." - -#: mod/admin.php:156 mod/admin.php:954 -msgid "Site" -msgstr "Retejo" - -#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420 -msgid "Users" -msgstr "Uzantoj" - -#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830 -msgid "Themes" -msgstr "Etosoj" - -#: mod/admin.php:161 -msgid "DB updates" -msgstr "DB ĝisdatigoj" - -#: mod/admin.php:162 mod/admin.php:406 -msgid "Inspect Queue" -msgstr "" - -#: mod/admin.php:163 mod/admin.php:372 -msgid "Federation Statistics" -msgstr "" - -#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904 -msgid "Logs" -msgstr "Protokoloj" - -#: mod/admin.php:178 mod/admin.php:1972 -msgid "View Logs" -msgstr "" - -#: mod/admin.php:179 -msgid "probe address" -msgstr "" - -#: mod/admin.php:180 -msgid "check webfinger" -msgstr "" - -#: mod/admin.php:187 -msgid "Plugin Features" -msgstr "Kromprogramaj Trajtoj" - -#: mod/admin.php:189 -msgid "diagnostics" -msgstr "" - -#: mod/admin.php:190 -msgid "User registrations waiting for confirmation" -msgstr "Uzantaj registradoj atendante konfirmon" - -#: mod/admin.php:306 -msgid "unknown" -msgstr "" - -#: mod/admin.php:365 -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 "" - -#: mod/admin.php:366 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "" - -#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953 -#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779 -#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971 -msgid "Administration" -msgstr "Administrado" - -#: mod/admin.php:378 -#, php-format -msgid "Currently this node is aware of %d nodes from the following platforms:" -msgstr "" - -#: mod/admin.php:408 -msgid "ID" -msgstr "" - -#: mod/admin.php:409 -msgid "Recipient Name" -msgstr "" - -#: mod/admin.php:410 -msgid "Recipient Profile" -msgstr "" - -#: mod/admin.php:412 -msgid "Created" -msgstr "" - -#: mod/admin.php:413 -msgid "Last Tried" -msgstr "" - -#: mod/admin.php:414 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "" - -#: mod/admin.php:439 -#, 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 " -"convert_innodb.sql in the /util directory of your " -"Friendica installation.
    " -msgstr "" - -#: mod/admin.php:444 -msgid "" -"You are using a MySQL version which does not support all features that " -"Friendica uses. You should consider switching to MariaDB." -msgstr "" - -#: mod/admin.php:448 mod/admin.php:1352 -msgid "Normal Account" -msgstr "Normala konto" - -#: mod/admin.php:449 mod/admin.php:1353 -msgid "Soapbox Account" -msgstr "Soapbox Konto" - -#: mod/admin.php:450 mod/admin.php:1354 -msgid "Community/Celebrity Account" -msgstr "Komunuma/eminentula Konto" - -#: mod/admin.php:451 mod/admin.php:1355 -msgid "Automatic Friend Account" -msgstr "Aŭtomata Amika Konto" - -#: mod/admin.php:452 -msgid "Blog Account" -msgstr "Blogkonto" - -#: mod/admin.php:453 -msgid "Private Forum" -msgstr "Privata Forumo" - -#: mod/admin.php:479 -msgid "Message queues" -msgstr "Mesaĝvicoj" - -#: mod/admin.php:485 -msgid "Summary" -msgstr "Resumo" - -#: mod/admin.php:488 -msgid "Registered users" -msgstr "Registrataj uzantoj" - -#: mod/admin.php:490 -msgid "Pending registrations" -msgstr "Okazontaj registradoj" - -#: mod/admin.php:491 -msgid "Version" -msgstr "Versio" - -#: mod/admin.php:496 -msgid "Active plugins" -msgstr "Ŝaltitaj kromprogramoj" - -#: mod/admin.php:521 -msgid "Can not parse base url. Must have at least ://" -msgstr "" - -#: mod/admin.php:826 -msgid "RINO2 needs mcrypt php extension to work." -msgstr "" - -#: mod/admin.php:834 -msgid "Site settings updated." -msgstr "Ĝisdatigis retejaj agordoj." - -#: mod/admin.php:881 -msgid "No community page" -msgstr "" - -#: mod/admin.php:882 -msgid "Public postings from users of this site" -msgstr "" - -#: mod/admin.php:883 -msgid "Global community page" -msgstr "" - -#: mod/admin.php:888 mod/contacts.php:530 -msgid "Never" -msgstr "Neniam" - -#: mod/admin.php:889 -msgid "At post arrival" -msgstr "" - -#: mod/admin.php:897 mod/contacts.php:557 -msgid "Disabled" -msgstr "" - -#: mod/admin.php:899 -msgid "Users, Global Contacts" -msgstr "" - -#: mod/admin.php:900 -msgid "Users, Global Contacts/fallback" -msgstr "" - -#: mod/admin.php:904 -msgid "One month" -msgstr "" - -#: mod/admin.php:905 -msgid "Three months" -msgstr "" - -#: mod/admin.php:906 -msgid "Half a year" -msgstr "" - -#: mod/admin.php:907 -msgid "One year" -msgstr "" - -#: mod/admin.php:912 -msgid "Multi user instance" -msgstr "" - -#: mod/admin.php:935 -msgid "Closed" -msgstr "Ferma" - -#: mod/admin.php:936 -msgid "Requires approval" -msgstr "Bezonas aprobon" - -#: mod/admin.php:937 -msgid "Open" -msgstr "Malferma" - -#: mod/admin.php:941 -msgid "No SSL policy, links will track page SSL state" -msgstr "Sen SSL strategio. Ligiloj sekvos la SSL staton de la paĝo." - -#: mod/admin.php:942 -msgid "Force all links to use SSL" -msgstr "Devigi ke ĉiuj ligiloj uzu SSL." - -#: mod/admin.php:943 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Memsubskribita atestilo, nur uzu SSL por lokaj ligiloj (malkuraĝigata)" - -#: mod/admin.php:957 -msgid "File upload" -msgstr "Alŝuto" - -#: mod/admin.php:958 -msgid "Policies" -msgstr "Politiko" - -#: mod/admin.php:960 -msgid "Auto Discovered Contact Directory" -msgstr "" - -#: mod/admin.php:961 -msgid "Performance" -msgstr "" - -#: mod/admin.php:962 -msgid "Worker" -msgstr "" - -#: mod/admin.php:963 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" - -#: mod/admin.php:966 -msgid "Site name" -msgstr "Nomo de retejo" - -#: mod/admin.php:967 -msgid "Host name" -msgstr "" - -#: mod/admin.php:968 -msgid "Sender Email" -msgstr "" - -#: mod/admin.php:968 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "" - -#: mod/admin.php:969 -msgid "Banner/Logo" -msgstr "Emblemo" - -#: mod/admin.php:970 -msgid "Shortcut icon" -msgstr "" - -#: mod/admin.php:970 -msgid "Link to an icon that will be used for browsers." -msgstr "" - -#: mod/admin.php:971 -msgid "Touch icon" -msgstr "" - -#: mod/admin.php:971 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "" - -#: mod/admin.php:972 -msgid "Additional Info" -msgstr "" - -#: mod/admin.php:972 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/siteinfo." -msgstr "" - -#: mod/admin.php:973 -msgid "System language" -msgstr "Sistema lingvo" - -#: mod/admin.php:974 -msgid "System theme" -msgstr "Sistema etoso" - -#: mod/admin.php:974 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Defaŭlta sistema etoso - transpasebla de uzantprofiloj - redakti agordoj pri etosoj" - -#: mod/admin.php:975 -msgid "Mobile system theme" -msgstr "" - -#: mod/admin.php:975 -msgid "Theme for mobile devices" -msgstr "" - -#: mod/admin.php:976 -msgid "SSL link policy" -msgstr "Strategio por SSL ligiloj" - -#: mod/admin.php:976 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Difinas ĉu generotaj ligiloj devige uzu SSL." - -#: mod/admin.php:977 -msgid "Force SSL" -msgstr "" - -#: mod/admin.php:977 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "" - -#: mod/admin.php:978 -msgid "Old style 'Share'" -msgstr "" - -#: mod/admin.php:978 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "" - -#: mod/admin.php:979 -msgid "Hide help entry from navigation menu" -msgstr "" - -#: mod/admin.php:979 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "" - -#: mod/admin.php:980 -msgid "Single user instance" -msgstr "" - -#: mod/admin.php:980 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "" - -#: mod/admin.php:981 -msgid "Maximum image size" -msgstr "Maksimuma bildgrando" - -#: mod/admin.php:981 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maksimuma grando en bajtoj por alŝutotaj bildoj. Defaŭlte 0, kio signifas neniu limito." - -#: mod/admin.php:982 -msgid "Maximum image length" -msgstr "" - -#: mod/admin.php:982 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "" - -#: mod/admin.php:983 -msgid "JPEG image quality" -msgstr "" - -#: mod/admin.php:983 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "" - -#: mod/admin.php:985 -msgid "Register policy" -msgstr "Interkonsento pri registrado" - -#: mod/admin.php:986 -msgid "Maximum Daily Registrations" -msgstr "" - -#: mod/admin.php:986 -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 "" - -#: mod/admin.php:987 -msgid "Register text" -msgstr "Interkonsento teksto" - -#: mod/admin.php:987 -msgid "Will be displayed prominently on the registration page." -msgstr "Tio estos eminente montrata en la registro paĝo." - -#: mod/admin.php:988 -msgid "Accounts abandoned after x days" -msgstr "Kontoj forlasitaj post x tagoj" - -#: mod/admin.php:988 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Mi ne malŝparu energion por enketi aliajn retejojn pri forlasitaj kontoj. Entajpu 0 por ne uzi templimo." - -#: mod/admin.php:989 -msgid "Allowed friend domains" -msgstr "Permesitaj amikaj domainoj" - -#: mod/admin.php:989 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Perkome disigita listo da domajnoj kiuj rajtas konstrui amikecojn kun ĉi tiu retejo. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn." - -#: mod/admin.php:990 -msgid "Allowed email domains" -msgstr "Permesitaj retpoŝtaj domajnoj" - -#: mod/admin.php:990 -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 "Perkome disigita listo da domajnoj kiuj uzeblas kiel retpoŝtaj adresoj en novaj registradoj. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn." - -#: mod/admin.php:991 -msgid "Block public" -msgstr "Bloki publike" - -#: mod/admin.php:991 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Elektu por bloki publikan atingon al ĉiuj alie publikajn paĝojn en ĉi tiu retejo kiam vi ne estas ensalutita." - -#: mod/admin.php:992 -msgid "Force publish" -msgstr "Devigi publikigon" - -#: mod/admin.php:992 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Elektu por devigi la registradon en la loka katalogo al ĉiuj profiloj en ĉi tiu retejo." - -#: mod/admin.php:993 -msgid "Global directory URL" -msgstr "" - -#: mod/admin.php:993 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "" - -#: mod/admin.php:994 -msgid "Allow threaded items" -msgstr "" - -#: mod/admin.php:994 -msgid "Allow infinite level threading for items on this site." -msgstr "" - -#: mod/admin.php:995 -msgid "Private posts by default for new users" -msgstr "" - -#: mod/admin.php:995 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "" - -#: mod/admin.php:996 -msgid "Don't include post content in email notifications" -msgstr "" - -#: mod/admin.php:996 -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 "" - -#: mod/admin.php:997 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "" - -#: mod/admin.php:997 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "" - -#: mod/admin.php:998 -msgid "Don't embed private images in posts" -msgstr "" - -#: mod/admin.php:998 -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 "" - -#: mod/admin.php:999 -msgid "Allow Users to set remote_self" -msgstr "" - -#: mod/admin.php:999 -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 "" - -#: mod/admin.php:1000 -msgid "Block multiple registrations" -msgstr "Bloki pluroblajn registradojn." - -#: mod/admin.php:1000 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Malpermesi al uzantoj la permeson por registri pluajn kontojn kiel paĝoj." - -#: mod/admin.php:1001 -msgid "OpenID support" -msgstr "Subteno por OpenID" - -#: mod/admin.php:1001 -msgid "OpenID support for registration and logins." -msgstr "Subteni OpenID por registrado kaj ensaluto." - -#: mod/admin.php:1002 -msgid "Fullname check" -msgstr "Kontroli plenan nomon" - -#: mod/admin.php:1002 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Kiel kontraŭspamilo, devigi uzantoj al registrado kun spaceto inter la persona nomo kaj la familia nomo." - -#: mod/admin.php:1003 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 regulaj exprimoj" - -#: mod/admin.php:1003 -msgid "Use PHP UTF8 regular expressions" -msgstr "Uzi PHP UTF8 regulajn esprimojn." - -#: mod/admin.php:1004 -msgid "Community Page Style" -msgstr "" - -#: mod/admin.php:1004 -msgid "" -"Type of community page to show. 'Global community' shows every public " -"posting from an open distributed network that arrived on this server." -msgstr "" - -#: mod/admin.php:1005 -msgid "Posts per user on community page" -msgstr "" - -#: mod/admin.php:1005 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "" - -#: mod/admin.php:1006 -msgid "Enable OStatus support" -msgstr "Ŝalti subtenon por OStatus" - -#: mod/admin.php:1006 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "" - -#: mod/admin.php:1007 -msgid "OStatus conversation completion interval" -msgstr "" - -#: mod/admin.php:1007 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "" - -#: mod/admin.php:1008 -msgid "Only import OStatus threads from our contacts" -msgstr "" - -#: mod/admin.php:1008 -msgid "" -"Normally we import every content from our OStatus contacts. With this option" -" we only store threads that are started by a contact that is known on our " -"system." -msgstr "" - -#: mod/admin.php:1009 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "" - -#: mod/admin.php:1011 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "" - -#: mod/admin.php:1012 -msgid "Enable Diaspora support" -msgstr "Ŝalti subtenon por Diaspora" - -#: mod/admin.php:1012 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Provizi integritan Diaspora subtenon." - -#: mod/admin.php:1013 -msgid "Only allow Friendica contacts" -msgstr "Nur permesigi Friendica kontaktojn" - -#: mod/admin.php:1013 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Ĉiuj kontaktoj devas uzi Friendica protokolojn. Ĉiuj aliaj komunikaj protokoloj malaktivita." - -#: mod/admin.php:1014 -msgid "Verify SSL" -msgstr "Kontroli SSL" - -#: mod/admin.php:1014 -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 "Se vi deziras, vi povas aktivigi severan kontroladon de SSL atestiloj. Pro tio, vie (tute) ne eblos konekti al SSL retejoj kun memsubskribitaj atestiloj." - -#: mod/admin.php:1015 -msgid "Proxy user" -msgstr "Uzantnomo por retperanto" - -#: mod/admin.php:1016 -msgid "Proxy URL" -msgstr "URL adreso de retperanto" - -#: mod/admin.php:1017 -msgid "Network timeout" -msgstr "Reta tempolimo" - -#: mod/admin.php:1017 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valoro en sekundoj. Uzu 0 por mallimitigi (ne rekomendata)." - -#: mod/admin.php:1018 -msgid "Delivery interval" -msgstr "Intervalo de liverado" - -#: mod/admin.php:1018 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Malfruigi fonan liveradon dum tiom da sekundoj por malpliigi la ŝargon de la sistemo. Rekomendoj: 4-5 por komunaj serviloj, 2-3 por virtualaj privataj serviloj, 0-1 por grandaj dediĉitaj serviloj." - -#: mod/admin.php:1019 -msgid "Poll interval" -msgstr "Enketintervalo" - -#: mod/admin.php:1019 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Malfruigi fonajn enketprocesojn je tiom da sekundoj por malpliigi la ŝargon de la sistemo. Se 0, uzas la liverintervalon." - -#: mod/admin.php:1020 -msgid "Maximum Load Average" -msgstr "Maksimuma Meza Sistemŝargo" - -#: mod/admin.php:1020 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maksimuma sistemŝargo post kiu livero- kaj enketprocesoj estos prokrastinataj. - Defaŭlte 50." - -#: mod/admin.php:1021 -msgid "Maximum Load Average (Frontend)" -msgstr "" - -#: mod/admin.php:1021 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "" - -#: mod/admin.php:1022 -msgid "Maximum table size for optimization" -msgstr "" - -#: mod/admin.php:1022 -msgid "" -"Maximum table size (in MB) for the automatic optimization - default 100 MB. " -"Enter -1 to disable it." -msgstr "" - -#: mod/admin.php:1023 -msgid "Minimum level of fragmentation" -msgstr "" - -#: mod/admin.php:1023 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "" - -#: mod/admin.php:1025 -msgid "Periodical check of global contacts" -msgstr "" - -#: mod/admin.php:1025 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "" - -#: mod/admin.php:1026 -msgid "Days between requery" -msgstr "" - -#: mod/admin.php:1026 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "" - -#: mod/admin.php:1027 -msgid "Discover contacts from other servers" -msgstr "" - -#: mod/admin.php:1027 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." -msgstr "" - -#: mod/admin.php:1028 -msgid "Timeframe for fetching global contacts" -msgstr "" - -#: mod/admin.php:1028 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "" - -#: mod/admin.php:1029 -msgid "Search the local directory" -msgstr "" - -#: mod/admin.php:1029 -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 "" - -#: mod/admin.php:1031 -msgid "Publish server information" -msgstr "" - -#: mod/admin.php:1031 -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 "" - -#: mod/admin.php:1033 -msgid "Use MySQL full text engine" -msgstr "" - -#: mod/admin.php:1033 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "" - -#: mod/admin.php:1034 -msgid "Suppress Language" -msgstr "" - -#: mod/admin.php:1034 -msgid "Suppress language information in meta information about a posting." -msgstr "" - -#: mod/admin.php:1035 -msgid "Suppress Tags" -msgstr "" - -#: mod/admin.php:1035 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" - -#: mod/admin.php:1036 -msgid "Path to item cache" -msgstr "" - -#: mod/admin.php:1036 -msgid "The item caches buffers generated bbcode and external images." -msgstr "" - -#: mod/admin.php:1037 -msgid "Cache duration in seconds" -msgstr "" - -#: mod/admin.php:1037 -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 "" - -#: mod/admin.php:1038 -msgid "Maximum numbers of comments per post" -msgstr "" - -#: mod/admin.php:1038 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: mod/admin.php:1039 -msgid "Path for lock file" -msgstr "" - -#: mod/admin.php:1039 -msgid "" -"The lock file is used to avoid multiple pollers at one time. Only define a " -"folder here." -msgstr "" - -#: mod/admin.php:1040 -msgid "Temp path" -msgstr "" - -#: mod/admin.php:1040 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "" - -#: mod/admin.php:1041 -msgid "Base path to installation" -msgstr "" - -#: mod/admin.php:1041 -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 "" - -#: mod/admin.php:1042 -msgid "Disable picture proxy" -msgstr "" - -#: mod/admin.php:1042 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "" - -#: mod/admin.php:1043 -msgid "Enable old style pager" -msgstr "" - -#: mod/admin.php:1043 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "" - -#: mod/admin.php:1044 -msgid "Only search in tags" -msgstr "" - -#: mod/admin.php:1044 -msgid "On large systems the text search can slow down the system extremely." -msgstr "" - -#: mod/admin.php:1046 -msgid "New base url" -msgstr "" - -#: mod/admin.php:1046 -msgid "" -"Change base url for this server. Sends relocate message to all DFRN contacts" -" of all users." -msgstr "" - -#: mod/admin.php:1048 -msgid "RINO Encryption" -msgstr "" - -#: mod/admin.php:1048 -msgid "Encryption layer between nodes." -msgstr "" - -#: mod/admin.php:1049 -msgid "Embedly API key" -msgstr "" - -#: mod/admin.php:1049 -msgid "" -"Embedly is used to fetch additional data for " -"web pages. This is an optional parameter." -msgstr "" - -#: mod/admin.php:1051 -msgid "Enable 'worker' background processing" -msgstr "" - -#: mod/admin.php:1051 -msgid "" -"The worker background processing limits the number of parallel background " -"jobs to a maximum number and respects the system load." -msgstr "" - -#: mod/admin.php:1052 -msgid "Maximum number of parallel workers" -msgstr "" - -#: mod/admin.php:1052 -msgid "" -"On shared hosters set this to 2. On larger systems, values of 10 are great. " -"Default value is 4." -msgstr "" - -#: mod/admin.php:1053 -msgid "Don't use 'proc_open' with the worker" -msgstr "" - -#: mod/admin.php:1053 -msgid "" -"Enable this if your system doesn't allow the use of 'proc_open'. This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of poller calls in your crontab." -msgstr "" - -#: mod/admin.php:1054 -msgid "Enable fastlane" -msgstr "" - -#: mod/admin.php:1054 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes" -" with higher priority are blocked by processes of lower priority." -msgstr "" - -#: mod/admin.php:1055 -msgid "Enable frontend worker" -msgstr "" - -#: mod/admin.php:1055 -msgid "" -"When enabled the Worker process is triggered when backend access is " -"performed (e.g. messages being delivered). On smaller sites you might want " -"to call yourdomain.tld/worker on a regular basis via an external cron job. " -"You should only enable this option if you cannot utilize cron/scheduled jobs" -" on your server. The worker background process needs to be activated for " -"this." -msgstr "" - -#: mod/admin.php:1084 -msgid "Update has been marked successful" -msgstr "Ĝisdatigo estas markita sukcesa" - -#: mod/admin.php:1092 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "" - -#: mod/admin.php:1095 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "" - -#: mod/admin.php:1107 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "" - -#: mod/admin.php:1110 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Sukcese aplikis la ĝisdatigo %s." - -#: mod/admin.php:1114 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Ĝisdatigo %s ne liveris elirstaton. " - -#: mod/admin.php:1116 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" - -#: mod/admin.php:1135 -msgid "No failed updates." -msgstr "Neniom da malsukcesaj ĝisdatigoj." - -#: mod/admin.php:1136 -msgid "Check database structure" -msgstr "" - -#: mod/admin.php:1141 -msgid "Failed Updates" -msgstr "Malsukcesaj Ĝisdatigoj" - -#: mod/admin.php:1142 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Ne inkluzivas ĝisdatigojn antaŭ 1139, kiuj ne liveris elirstaton." - -#: mod/admin.php:1143 -msgid "Mark success (if update was manually applied)" -msgstr "Marki sukcesa (se la ĝisdatigo estas instalita mane)" - -#: mod/admin.php:1144 -msgid "Attempt to execute this update step automatically" -msgstr "Provi automate plenumi ĉi tian paŝon de la ĝisdatigo." - -#: mod/admin.php:1178 +#: src/Model/User.php:1543 #, php-format msgid "" "\n" "\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." +"\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 "" -#: mod/admin.php:1181 +#: src/Model/User.php:1562 +#, php-format +msgid "Registration at %s" +msgstr "" + +#: src/Model/User.php:1586 +#, 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 "" + +#: src/Model/User.php:1594 #, php-format msgid "" "\n" "\t\t\tThe login details are as follows:\n" "\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\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" @@ -7365,1538 +3842,8597 @@ msgid "" "\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\tThank you and welcome to %4$s." +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" +"\n" +"\t\t\tThank you and welcome to %2$s." msgstr "" -#: mod/admin.php:1225 +#: src/Module/Admin/Addons/Details.php:65 +msgid "Addon not found." +msgstr "" + +#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 #, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "Blokis/malblokis %s uzanton" -msgstr[1] "Blokis/malblokis %s uzantojn" +msgid "Addon %s disabled." +msgstr "" -#: mod/admin.php:1232 +#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 #, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s uzanto forviŝita" -msgstr[1] "%s uzanto forviŝitaj" - -#: mod/admin.php:1279 -#, php-format -msgid "User '%s' deleted" -msgstr "Uzanto '%s' forviŝita" - -#: mod/admin.php:1287 -#, php-format -msgid "User '%s' unblocked" -msgstr "Uzanto '%s' malblokita" - -#: mod/admin.php:1287 -#, php-format -msgid "User '%s' blocked" -msgstr "Uzanto '%s' blokita" - -#: mod/admin.php:1396 mod/admin.php:1422 -msgid "Register date" -msgstr "Dato de registrado" - -#: mod/admin.php:1396 mod/admin.php:1422 -msgid "Last login" -msgstr "Plej ĵusa ensaluto" - -#: mod/admin.php:1396 mod/admin.php:1422 -msgid "Last item" -msgstr "Plej ĵusa elemento" - -#: mod/admin.php:1405 -msgid "Add User" +msgid "Addon %s enabled." msgstr "" -#: mod/admin.php:1406 -msgid "select all" -msgstr "elekti ĉiujn" - -#: mod/admin.php:1407 -msgid "User registrations waiting for confirm" -msgstr "Registriĝoj atendante aprobon" - -#: mod/admin.php:1408 -msgid "User waiting for permanent deletion" -msgstr "" - -#: mod/admin.php:1409 -msgid "Request date" -msgstr "Dato de peto" - -#: mod/admin.php:1410 -msgid "No registrations." -msgstr "Neniom da registriĝoj." - -#: mod/admin.php:1411 -msgid "Note from the user" -msgstr "" - -#: mod/admin.php:1413 -msgid "Deny" -msgstr "Negi" - -#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805 -#: mod/contacts.php:983 -msgid "Block" -msgstr "Bloki" - -#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805 -#: mod/contacts.php:983 -msgid "Unblock" -msgstr "Malbloki" - -#: mod/admin.php:1417 -msgid "Site admin" -msgstr "" - -#: mod/admin.php:1418 -msgid "Account expired" -msgstr "" - -#: mod/admin.php:1421 -msgid "New User" -msgstr "" - -#: mod/admin.php:1422 -msgid "Deleted since" -msgstr "" - -#: mod/admin.php:1427 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "La elektitaj uzantkontoj estas forviŝotaj!\\n\\nĈiuj elementoj kiujn ili afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?" - -#: mod/admin.php:1428 -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 "La uzanto {0} estas forviŝota!\\n\\nĈiuj elementoj kiujn li afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?" - -#: mod/admin.php:1438 -msgid "Name of the new user." -msgstr "" - -#: mod/admin.php:1439 -msgid "Nickname" -msgstr "" - -#: mod/admin.php:1439 -msgid "Nickname of the new user." -msgstr "" - -#: mod/admin.php:1440 -msgid "Email address of the new user." -msgstr "" - -#: mod/admin.php:1483 -#, php-format -msgid "Plugin %s disabled." -msgstr "Kromprogramo %s estas malŝaltita." - -#: mod/admin.php:1487 -#, php-format -msgid "Plugin %s enabled." -msgstr "Kromprogramo %s estas ŝaltita." - -#: mod/admin.php:1498 mod/admin.php:1734 +#: src/Module/Admin/Addons/Details.php:88 +#: src/Module/Admin/Themes/Details.php:46 msgid "Disable" msgstr "Malŝalti" -#: mod/admin.php:1500 mod/admin.php:1736 +#: src/Module/Admin/Addons/Details.php:91 +#: src/Module/Admin/Themes/Details.php:49 msgid "Enable" msgstr "Ŝalti" -#: mod/admin.php:1523 mod/admin.php:1781 +#: src/Module/Admin/Addons/Details.php:111 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 +#: src/Module/Admin/Themes/Details.php:90 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 +msgid "Administration" +msgstr "Administrado" + +#: src/Module/Admin/Addons/Details.php:112 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:132 +msgid "Addons" +msgstr "" + +#: src/Module/Admin/Addons/Details.php:113 +#: src/Module/Admin/Themes/Details.php:92 msgid "Toggle" msgstr "Ŝalti/Malŝalti" -#: mod/admin.php:1531 mod/admin.php:1790 +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 msgid "Author: " msgstr "Aŭtoro: " -#: mod/admin.php:1532 mod/admin.php:1791 +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 msgid "Maintainer: " msgstr "Prizorganto: " -#: mod/admin.php:1584 -msgid "Reload active plugins" +#: src/Module/Admin/Addons/Index.php:42 +msgid "Addons reloaded" msgstr "" -#: mod/admin.php:1589 +#: src/Module/Admin/Addons/Index.php:53 +#, php-format +msgid "Addon %s failed to install." +msgstr "" + +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "" + +#: src/Module/Admin/Addons/Index.php:70 +msgid "Reload active addons" +msgstr "" + +#: src/Module/Admin/Addons/Index.php:74 #, php-format msgid "" -"There are currently no plugins available on your node. You can find the " -"official plugin repository at %1$s and might find other interesting plugins " -"in the open plugin registry at %2$s" +"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 "" -#: mod/admin.php:1694 -msgid "No themes found." -msgstr "Ne trovis etosojn." +#: src/Module/Admin/DBSync.php:51 +msgid "Update has been marked successful" +msgstr "Ĝisdatigo estas markita sukcesa" -#: mod/admin.php:1772 -msgid "Screenshot" -msgstr "Ekrankopio" - -#: mod/admin.php:1832 -msgid "Reload active themes" -msgstr "" - -#: mod/admin.php:1837 +#: src/Module/Admin/DBSync.php:59 #, php-format -msgid "No themes found on the system. They should be paced in %1$s" +msgid "Database structure update %s was successfully applied." msgstr "" -#: mod/admin.php:1838 -msgid "[Experimental]" -msgstr "[Eksperimenta]" +#: src/Module/Admin/DBSync.php:61 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" -#: mod/admin.php:1839 -msgid "[Unsupported]" -msgstr "[Nesubtenata]" +#: src/Module/Admin/DBSync.php:76 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "" -#: mod/admin.php:1863 -msgid "Log settings updated." -msgstr "Protokolagordoj ĝisdatigitaj." +#: src/Module/Admin/DBSync.php:78 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Sukcese aplikis la ĝisdatigo %s." -#: mod/admin.php:1895 +#: src/Module/Admin/DBSync.php:81 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Ĝisdatigo %s ne liveris elirstaton. " + +#: src/Module/Admin/DBSync.php:84 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: src/Module/Admin/DBSync.php:105 +msgid "No failed updates." +msgstr "Neniom da malsukcesaj ĝisdatigoj." + +#: src/Module/Admin/DBSync.php:106 +msgid "Check database structure" +msgstr "" + +#: src/Module/Admin/DBSync.php:110 +msgid "Failed Updates" +msgstr "Malsukcesaj Ĝisdatigoj" + +#: src/Module/Admin/DBSync.php:111 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Ne inkluzivas ĝisdatigojn antaŭ 1139, kiuj ne liveris elirstaton." + +#: src/Module/Admin/DBSync.php:112 +msgid "Mark success (if update was manually applied)" +msgstr "Marki sukcesa (se la ĝisdatigo estas instalita mane)" + +#: src/Module/Admin/DBSync.php:113 +msgid "Attempt to execute this update step automatically" +msgstr "Provi automate plenumi ĉi tian paŝon de la ĝisdatigo." + +#: src/Module/Admin/Features.php:76 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: src/Module/Admin/Features.php:84 +msgid "Manage Additional Features" +msgstr "" + +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 +msgid "Other" +msgstr "Alia" + +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 +msgid "unknown" +msgstr "" + +#: src/Module/Admin/Federation.php:187 +#, php-format +msgid "%2$s total system" +msgid_plural "%2$s total systems" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:188 +#, php-format +msgid "%2$s active user last month" +msgid_plural "%2$s active users last month" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:189 +#, php-format +msgid "%2$s active user last six months" +msgid_plural "%2$s active users last six months" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:190 +#, php-format +msgid "%2$s registered user" +msgid_plural "%2$s registered users" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:191 +#, php-format +msgid "%2$s locally created post or comment" +msgid_plural "%2$s locally created posts and comments" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:194 +#, php-format +msgid "%2$s post per user" +msgid_plural "%2$s posts per user" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:199 +#, php-format +msgid "%2$s user per system" +msgid_plural "%2$s users per system" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:209 +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:215 src/Module/BaseAdmin.php:87 +msgid "Federation Statistics" +msgstr "" + +#: src/Module/Admin/Federation.php:219 +#, php-format +msgid "" +"Currently this node is aware of %2$s node (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgid_plural "" +"Currently this node is aware of %2$s nodes (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Logs/Settings.php:47 +#, php-format +msgid "The logfile '%s' is not writable. No logging possible" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:77 msgid "PHP log currently enabled." msgstr "" -#: mod/admin.php:1897 +#: src/Module/Admin/Logs/Settings.php:79 msgid "PHP log currently disabled." msgstr "" -#: mod/admin.php:1906 +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 +msgid "Logs" +msgstr "Protokoloj" + +#: src/Module/Admin/Logs/Settings.php:88 msgid "Clear" msgstr "Forviŝi" -#: mod/admin.php:1911 +#: src/Module/Admin/Logs/Settings.php:91 msgid "Enable Debugging" msgstr "" -#: mod/admin.php:1912 +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:92 msgid "Log file" msgstr "Protokolo" -#: mod/admin.php:1912 +#: src/Module/Admin/Logs/Settings.php:92 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Devas esti skribebla de la retservilo. Relativa al via plej supra Friendica dosierujo." -#: mod/admin.php:1913 +#: src/Module/Admin/Logs/Settings.php:93 msgid "Log level" msgstr "Protokolnivelo" -#: mod/admin.php:1916 +#: src/Module/Admin/Logs/Settings.php:95 msgid "PHP logging" msgstr "" -#: mod/admin.php:1917 +#: src/Module/Admin/Logs/Settings.php:96 msgid "" -"To enable logging of PHP errors and warnings you can add the following to " -"the .htconfig.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 " +"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 "" -#: mod/admin.php:2045 +#: src/Module/Admin/Logs/View.php:70 #, php-format -msgid "Lock feature %s" +msgid "" +"Error trying to open %1$s log file.
    Check to see if " +"file %1$s exist and is readable." msgstr "" -#: mod/admin.php:2053 -msgid "Manage Additional Features" +#: src/Module/Admin/Logs/View.php:79 +#, php-format +msgid "" +"Couldn't open %1$s log file.
    Check to see if file %1$s " +"is readable." msgstr "" -#: mod/contacts.php:128 +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 +msgid "View Logs" +msgstr "" + +#: src/Module/Admin/Logs/View.php:87 +msgid "Search in logs" +msgstr "" + +#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Notifications/Notifications.php:140 +msgid "Show all" +msgstr "" + +#: src/Module/Admin/Logs/View.php:89 +msgid "Date" +msgstr "" + +#: src/Module/Admin/Logs/View.php:90 +msgid "Level" +msgstr "" + +#: src/Module/Admin/Logs/View.php:91 +msgid "Context" +msgstr "" + +#: src/Module/Admin/Logs/View.php:93 +msgid "ALL" +msgstr "" + +#: src/Module/Admin/Logs/View.php:94 +msgid "View details" +msgstr "" + +#: src/Module/Admin/Logs/View.php:95 +msgid "Click to view details" +msgstr "" + +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Detaloj de okazo" + +#: src/Module/Admin/Logs/View.php:97 +msgid "Data" +msgstr "" + +#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Debug/ActivityPubConversion.php:57 +msgid "Source" +msgstr "" + +#: src/Module/Admin/Logs/View.php:99 +msgid "File" +msgstr "" + +#: src/Module/Admin/Logs/View.php:100 +msgid "Line" +msgstr "" + +#: src/Module/Admin/Logs/View.php:101 +msgid "Function" +msgstr "" + +#: src/Module/Admin/Logs/View.php:102 +msgid "UID" +msgstr "" + +#: src/Module/Admin/Logs/View.php:103 +msgid "Process ID" +msgstr "" + +#: src/Module/Admin/Logs/View.php:104 +msgid "Close" +msgstr "" + +#: src/Module/Admin/Queue.php:50 +msgid "Inspect Deferred Worker Queue" +msgstr "" + +#: 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 "" + +#: src/Module/Admin/Queue.php:54 +msgid "Inspect Worker Queue" +msgstr "" + +#: 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 "" + +#: src/Module/Admin/Queue.php:75 +msgid "ID" +msgstr "" + +#: src/Module/Admin/Queue.php:76 +msgid "Command" +msgstr "" + +#: src/Module/Admin/Queue.php:77 +msgid "Job Parameters" +msgstr "" + +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "" + +#: src/Module/Admin/Queue.php:79 +msgid "Priority" +msgstr "" + +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" +msgstr "" + +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:178 +msgid "No special theme for mobile devices" +msgstr "" + +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188 +#, php-format +msgid "%s - (Experimental)" +msgstr "" + +#: src/Module/Admin/Site.php:342 +msgid "No community page" +msgstr "" + +#: src/Module/Admin/Site.php:343 +msgid "No community page for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:344 +msgid "Public postings from users of this site" +msgstr "" + +#: src/Module/Admin/Site.php:345 +msgid "Public postings from the federated network" +msgstr "" + +#: src/Module/Admin/Site.php:346 +msgid "Public postings from local users and the federated network" +msgstr "" + +#: src/Module/Admin/Site.php:352 +msgid "Multi user instance" +msgstr "" + +#: src/Module/Admin/Site.php:375 +msgid "Closed" +msgstr "Ferma" + +#: src/Module/Admin/Site.php:376 +msgid "Requires approval" +msgstr "Bezonas aprobon" + +#: src/Module/Admin/Site.php:377 +msgid "Open" +msgstr "Malferma" + +#: src/Module/Admin/Site.php:381 +msgid "Don't check" +msgstr "" + +#: src/Module/Admin/Site.php:382 +msgid "check the stable version" +msgstr "" + +#: src/Module/Admin/Site.php:383 +msgid "check the development version" +msgstr "" + +#: src/Module/Admin/Site.php:387 +msgid "none" +msgstr "" + +#: src/Module/Admin/Site.php:388 +msgid "Local contacts" +msgstr "" + +#: src/Module/Admin/Site.php:389 +msgid "Interactors" +msgstr "" + +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 +msgid "Site" +msgstr "Retejo" + +#: src/Module/Admin/Site.php:400 +msgid "General Information" +msgstr "" + +#: src/Module/Admin/Site.php:402 +msgid "Republish users to directory" +msgstr "" + +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 +msgid "Registration" +msgstr "Registrado" + +#: src/Module/Admin/Site.php:404 +msgid "File upload" +msgstr "Alŝuto" + +#: src/Module/Admin/Site.php:405 +msgid "Policies" +msgstr "Politiko" + +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "Altnivela" + +#: src/Module/Admin/Site.php:407 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: src/Module/Admin/Site.php:408 +msgid "Performance" +msgstr "" + +#: src/Module/Admin/Site.php:409 +msgid "Worker" +msgstr "" + +#: src/Module/Admin/Site.php:410 +msgid "Message Relay" +msgstr "" + +#: src/Module/Admin/Site.php:411 +msgid "" +"Use the command \"console relay\" in the command line to add or remove " +"relays." +msgstr "" + +#: src/Module/Admin/Site.php:412 +msgid "The system is not subscribed to any relays at the moment." +msgstr "" + +#: src/Module/Admin/Site.php:413 +msgid "The system is currently subscribed to the following relays:" +msgstr "" + +#: src/Module/Admin/Site.php:415 +msgid "Relocate Node" +msgstr "" + +#: src/Module/Admin/Site.php:416 +msgid "" +"Relocating your node enables you to change the DNS domain of this node and " +"keep all the existing users and posts. This process takes a while and can " +"only be started from the relocate console command like this:" +msgstr "" + +#: src/Module/Admin/Site.php:417 +msgid "(Friendica directory)# bin/console relocate https://newdomain.com" +msgstr "" + +#: src/Module/Admin/Site.php:420 +msgid "Site name" +msgstr "Nomo de retejo" + +#: src/Module/Admin/Site.php:421 +msgid "Sender Email" +msgstr "" + +#: src/Module/Admin/Site.php:421 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: src/Module/Admin/Site.php:422 +msgid "Name of the system actor" +msgstr "" + +#: src/Module/Admin/Site.php:422 +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:423 +msgid "Banner/Logo" +msgstr "Emblemo" + +#: src/Module/Admin/Site.php:424 +msgid "Email Banner/Logo" +msgstr "" + +#: src/Module/Admin/Site.php:425 +msgid "Shortcut icon" +msgstr "" + +#: src/Module/Admin/Site.php:425 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: src/Module/Admin/Site.php:426 +msgid "Touch icon" +msgstr "" + +#: src/Module/Admin/Site.php:426 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: src/Module/Admin/Site.php:427 +msgid "Additional Info" +msgstr "" + +#: src/Module/Admin/Site.php:427 +#, 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:428 +msgid "System language" +msgstr "Sistema lingvo" + +#: src/Module/Admin/Site.php:429 +msgid "System theme" +msgstr "Sistema etoso" + +#: src/Module/Admin/Site.php:429 +#, php-format +msgid "" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "" + +#: src/Module/Admin/Site.php:430 +msgid "Mobile system theme" +msgstr "" + +#: src/Module/Admin/Site.php:430 +msgid "Theme for mobile devices" +msgstr "" + +#: src/Module/Admin/Site.php:431 +msgid "Force SSL" +msgstr "" + +#: src/Module/Admin/Site.php:431 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" + +#: src/Module/Admin/Site.php:432 +msgid "Show help entry from navigation menu" +msgstr "" + +#: src/Module/Admin/Site.php:432 +msgid "" +"Displays the menu entry for the Help pages from the navigation menu. It is " +"always accessible by calling /help directly." +msgstr "" + +#: src/Module/Admin/Site.php:433 +msgid "Single user instance" +msgstr "" + +#: src/Module/Admin/Site.php:433 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "" + +#: src/Module/Admin/Site.php:435 +msgid "Maximum image size" +msgstr "Maksimuma bildgrando" + +#: src/Module/Admin/Site.php:435 +#, php-format +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "" + +#: src/Module/Admin/Site.php:439 +msgid "Maximum image length" +msgstr "" + +#: src/Module/Admin/Site.php:439 +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:440 +msgid "JPEG image quality" +msgstr "" + +#: src/Module/Admin/Site.php:440 +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:442 +msgid "Register policy" +msgstr "Interkonsento pri registrado" + +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "" + +#: src/Module/Admin/Site.php:444 +msgid "Maximum Daily Registrations" +msgstr "" + +#: src/Module/Admin/Site.php:444 +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:445 +msgid "Register text" +msgstr "Interkonsento teksto" + +#: src/Module/Admin/Site.php:445 +msgid "" +"Will be displayed prominently on the registration page. You can use BBCode " +"here." +msgstr "" + +#: src/Module/Admin/Site.php:446 +msgid "Forbidden Nicknames" +msgstr "" + +#: src/Module/Admin/Site.php:446 +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:447 +msgid "Accounts abandoned after x days" +msgstr "Kontoj forlasitaj post x tagoj" + +#: src/Module/Admin/Site.php:447 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Mi ne malŝparu energion por enketi aliajn retejojn pri forlasitaj kontoj. Entajpu 0 por ne uzi templimo." + +#: src/Module/Admin/Site.php:448 +msgid "Allowed friend domains" +msgstr "Permesitaj amikaj domainoj" + +#: src/Module/Admin/Site.php:448 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Perkome disigita listo da domajnoj kiuj rajtas konstrui amikecojn kun ĉi tiu retejo. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn." + +#: src/Module/Admin/Site.php:449 +msgid "Allowed email domains" +msgstr "Permesitaj retpoŝtaj domajnoj" + +#: src/Module/Admin/Site.php:449 +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 "Perkome disigita listo da domajnoj kiuj uzeblas kiel retpoŝtaj adresoj en novaj registradoj. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn." + +#: src/Module/Admin/Site.php:450 +msgid "No OEmbed rich content" +msgstr "" + +#: src/Module/Admin/Site.php:450 +msgid "" +"Don't show the rich content (e.g. embedded PDF), except from the domains " +"listed below." +msgstr "" + +#: src/Module/Admin/Site.php:451 +msgid "Trusted third-party domains" +msgstr "" + +#: src/Module/Admin/Site.php:451 +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:452 +msgid "Block public" +msgstr "Bloki publike" + +#: src/Module/Admin/Site.php:452 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Elektu por bloki publikan atingon al ĉiuj alie publikajn paĝojn en ĉi tiu retejo kiam vi ne estas ensalutita." + +#: src/Module/Admin/Site.php:453 +msgid "Force publish" +msgstr "Devigi publikigon" + +#: src/Module/Admin/Site.php:453 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Elektu por devigi la registradon en la loka katalogo al ĉiuj profiloj en ĉi tiu retejo." + +#: src/Module/Admin/Site.php:453 +msgid "Enabling this may violate privacy laws like the GDPR" +msgstr "" + +#: src/Module/Admin/Site.php:454 +msgid "Global directory URL" +msgstr "" + +#: src/Module/Admin/Site.php:454 +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:455 +msgid "Private posts by default for new users" +msgstr "" + +#: src/Module/Admin/Site.php:455 +msgid "" +"Set default post permissions for all new members to the default privacy " +"circle rather than public." +msgstr "" + +#: src/Module/Admin/Site.php:456 +msgid "Don't include post content in email notifications" +msgstr "" + +#: src/Module/Admin/Site.php:456 +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:457 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "" + +#: src/Module/Admin/Site.php:457 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: src/Module/Admin/Site.php:458 +msgid "Don't embed private images in posts" +msgstr "" + +#: src/Module/Admin/Site.php:458 +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:459 +msgid "Explicit Content" +msgstr "" + +#: src/Module/Admin/Site.php:459 +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 "" + +#: src/Module/Admin/Site.php:460 +msgid "Proxify external content" +msgstr "" + +#: src/Module/Admin/Site.php:460 +msgid "" +"Route external content via the proxy functionality. This is used for example" +" for some OEmbed accesses and in some other rare cases." +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "Cache contact avatars" +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "" +"Locally store the avatar pictures of the contacts. This uses a lot of " +"storage space but it increases the performance." +msgstr "" + +#: src/Module/Admin/Site.php:462 +msgid "Allow Users to set remote_self" +msgstr "" + +#: src/Module/Admin/Site.php:462 +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:463 +msgid "Enable multiple registrations" +msgstr "" + +#: src/Module/Admin/Site.php:463 +msgid "Enable users to register additional accounts for use as pages." +msgstr "" + +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID" +msgstr "" + +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID support for registration and logins." +msgstr "" + +#: src/Module/Admin/Site.php:465 +msgid "Enable Fullname check" +msgstr "" + +#: src/Module/Admin/Site.php:465 +msgid "" +"Enable check to only allow users to register with a space between the first " +"name and the last name in their full name." +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "" + +#: src/Module/Admin/Site.php:467 +msgid "Community pages for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:467 +msgid "" +"Which community pages should be available for visitors. Local users always " +"see both pages." +msgstr "" + +#: src/Module/Admin/Site.php:468 +msgid "Posts per user on community page" +msgstr "" + +#: src/Module/Admin/Site.php:468 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"\"Global Community\")" +msgstr "" + +#: src/Module/Admin/Site.php:470 +msgid "Enable Mail support" +msgstr "" + +#: src/Module/Admin/Site.php:470 +msgid "" +"Enable built-in mail support to poll IMAP folders and to reply via mail." +msgstr "" + +#: src/Module/Admin/Site.php:471 +msgid "" +"Mail support can't be enabled because the PHP IMAP module is not installed." +msgstr "" + +#: src/Module/Admin/Site.php:472 +msgid "Enable OStatus support" +msgstr "" + +#: src/Module/Admin/Site.php:472 +msgid "" +"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public." +msgstr "" + +#: src/Module/Admin/Site.php:474 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "" + +#: src/Module/Admin/Site.php:475 +msgid "Enable Diaspora support" +msgstr "Ŝalti subtenon por Diaspora" + +#: src/Module/Admin/Site.php:475 +msgid "" +"Enable built-in Diaspora network compatibility for communicating with " +"diaspora servers." +msgstr "" + +#: src/Module/Admin/Site.php:476 +msgid "Verify SSL" +msgstr "Kontroli SSL" + +#: src/Module/Admin/Site.php:476 +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 "Se vi deziras, vi povas aktivigi severan kontroladon de SSL atestiloj. Pro tio, vie (tute) ne eblos konekti al SSL retejoj kun memsubskribitaj atestiloj." + +#: src/Module/Admin/Site.php:477 +msgid "Proxy user" +msgstr "Uzantnomo por retperanto" + +#: src/Module/Admin/Site.php:477 +msgid "User name for the proxy server." +msgstr "" + +#: src/Module/Admin/Site.php:478 +msgid "Proxy URL" +msgstr "URL adreso de retperanto" + +#: src/Module/Admin/Site.php:478 +msgid "" +"If you want to use a proxy server that Friendica should use to connect to " +"the network, put the URL of the proxy here." +msgstr "" + +#: src/Module/Admin/Site.php:479 +msgid "Network timeout" +msgstr "Reta tempolimo" + +#: src/Module/Admin/Site.php:479 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valoro en sekundoj. Uzu 0 por mallimitigi (ne rekomendata)." + +#: src/Module/Admin/Site.php:480 +msgid "Maximum Load Average" +msgstr "Maksimuma Meza Sistemŝargo" + +#: src/Module/Admin/Site.php:480 +#, php-format +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default %d." +msgstr "" + +#: src/Module/Admin/Site.php:481 +msgid "Minimal Memory" +msgstr "" + +#: src/Module/Admin/Site.php:481 +msgid "" +"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "" + +#: src/Module/Admin/Site.php:482 +msgid "Periodically optimize tables" +msgstr "" + +#: src/Module/Admin/Site.php:482 +msgid "Periodically optimize tables like the cache and the workerqueue" +msgstr "" + +#: src/Module/Admin/Site.php:484 +msgid "Discover followers/followings from contacts" +msgstr "" + +#: src/Module/Admin/Site.php:484 +msgid "" +"If enabled, contacts are checked for their followers and following contacts." +msgstr "" + +#: src/Module/Admin/Site.php:485 +msgid "None - deactivated" +msgstr "" + +#: src/Module/Admin/Site.php:486 +msgid "" +"Local contacts - contacts of our local contacts are discovered for their " +"followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:487 +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:489 +msgid "Synchronize the contacts with the directory server" +msgstr "" + +#: src/Module/Admin/Site.php:489 +msgid "" +"if enabled, the system will check periodically for new contacts on the " +"defined directory server." +msgstr "" + +#: src/Module/Admin/Site.php:491 +msgid "Days between requery" +msgstr "" + +#: src/Module/Admin/Site.php:491 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: src/Module/Admin/Site.php:492 +msgid "Discover contacts from other servers" +msgstr "" + +#: src/Module/Admin/Site.php:492 +msgid "" +"Periodically query other servers for contacts. The system queries Friendica," +" Mastodon and Hubzilla servers." +msgstr "" + +#: src/Module/Admin/Site.php:493 +msgid "Search the local directory" +msgstr "" + +#: src/Module/Admin/Site.php:493 +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:495 +msgid "Publish server information" +msgstr "" + +#: src/Module/Admin/Site.php:495 +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 "" + +#: src/Module/Admin/Site.php:497 +msgid "Check upstream version" +msgstr "" + +#: src/Module/Admin/Site.php:497 +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:498 +msgid "Suppress Tags" +msgstr "" + +#: src/Module/Admin/Site.php:498 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: src/Module/Admin/Site.php:499 +msgid "Clean database" +msgstr "" + +#: src/Module/Admin/Site.php:499 +msgid "" +"Remove old remote items, orphaned database records and old content from some" +" other helper tables." +msgstr "" + +#: src/Module/Admin/Site.php:500 +msgid "Lifespan of remote items" +msgstr "" + +#: src/Module/Admin/Site.php:500 +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:501 +msgid "Lifespan of unclaimed items" +msgstr "" + +#: src/Module/Admin/Site.php:501 +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 "" + +#: src/Module/Admin/Site.php:502 +msgid "Lifespan of raw conversation data" +msgstr "" + +#: src/Module/Admin/Site.php:502 +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:503 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: src/Module/Admin/Site.php:503 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: src/Module/Admin/Site.php:504 +msgid "Maximum numbers of comments per post on the display page" +msgstr "" + +#: src/Module/Admin/Site.php:504 +msgid "" +"How many comments should be shown on the single view for each post? Default " +"value is 1000." +msgstr "" + +#: src/Module/Admin/Site.php:505 +msgid "Temp path" +msgstr "" + +#: src/Module/Admin/Site.php:505 +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:506 +msgid "Only search in tags" +msgstr "" + +#: src/Module/Admin/Site.php:506 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "" + +#: src/Module/Admin/Site.php:507 +msgid "" +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "" + +#: src/Module/Admin/Site.php:509 +msgid "Maximum number of parallel workers" +msgstr "" + +#: src/Module/Admin/Site.php:509 +#, 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:510 +msgid "Enable fastlane" +msgstr "" + +#: src/Module/Admin/Site.php:510 +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:512 +msgid "Direct relay transfer" +msgstr "" + +#: src/Module/Admin/Site.php:512 +msgid "" +"Enables the direct transfer to other servers without using the relay servers" +msgstr "" + +#: src/Module/Admin/Site.php:513 +msgid "Relay scope" +msgstr "" + +#: src/Module/Admin/Site.php:513 +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:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Disabled" +msgstr "" + +#: src/Module/Admin/Site.php:513 +msgid "all" +msgstr "" + +#: src/Module/Admin/Site.php:513 +msgid "tags" +msgstr "" + +#: src/Module/Admin/Site.php:514 +msgid "Server tags" +msgstr "" + +#: src/Module/Admin/Site.php:514 +msgid "Comma separated list of tags for the \"tags\" subscription." +msgstr "" + +#: src/Module/Admin/Site.php:515 +msgid "Deny Server tags" +msgstr "" + +#: src/Module/Admin/Site.php:515 +msgid "Comma separated list of tags that are rejected." +msgstr "" + +#: src/Module/Admin/Site.php:516 +msgid "Allow user tags" +msgstr "" + +#: src/Module/Admin/Site.php:516 +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:519 +msgid "Start Relocation" +msgstr "" + +#: src/Module/Admin/Storage.php:46 +#, php-format +msgid "Storage backend, %s is invalid." +msgstr "" + +#: src/Module/Admin/Storage.php:73 +#, php-format +msgid "Storage backend %s error: %s" +msgstr "" + +#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +msgid "Invalid storage backend setting value." +msgstr "" + +#: src/Module/Admin/Storage.php:139 +msgid "Current Storage Backend" +msgstr "" + +#: src/Module/Admin/Storage.php:140 +msgid "Storage Configuration" +msgstr "" + +#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +msgid "Storage" +msgstr "" + +#: src/Module/Admin/Storage.php:143 +msgid "Save & Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:144 +msgid "Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:145 +msgid "Save & Reload" +msgstr "" + +#: src/Module/Admin/Storage.php:146 +msgid "This backend doesn't have custom settings" +msgstr "" + +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "" + +#: src/Module/Admin/Storage.php:150 +msgid "Database (legacy)" +msgstr "" + +#: src/Module/Admin/Summary.php:55 +#, php-format +msgid "Template engine (%s) error: %s" +msgstr "" + +#: src/Module/Admin/Summary.php:59 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"bin/console.php dbstructure toinnodb of your Friendica installation for" +" an automatic conversion.
    " +msgstr "" + +#: src/Module/Admin/Summary.php:64 +#, php-format +msgid "" +"Your DB still runs with InnoDB tables in the Antelope file format. You " +"should change the file format to Barracuda. Friendica is using features that" +" are not provided by the Antelope format. See here for a " +"guide that may be helpful converting the table engines. You may also use the" +" command php bin/console.php dbstructure toinnodb of your Friendica" +" installation for an automatic conversion.
    " +msgstr "" + +#: src/Module/Admin/Summary.php:74 +#, php-format +msgid "" +"Your table_definition_cache is too low (%d). This can lead to the database " +"error \"Prepared statement needs to be re-prepared\". Please set it at least" +" to %d. See here for more information.
    " +msgstr "" + +#: src/Module/Admin/Summary.php:85 +#, php-format +msgid "" +"There is a new version of Friendica available for download. Your current " +"version is %1$s, upstream version is %2$s" +msgstr "" + +#: src/Module/Admin/Summary.php:94 +msgid "" +"The database update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "" + +#: src/Module/Admin/Summary.php:98 +msgid "" +"The last update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear. (Some of the errors are possibly inside the logfile.)" +msgstr "" + +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "" + +#: src/Module/Admin/Summary.php:107 +msgid "The worker was never executed. Please check your database structure!" +msgstr "" + +#: src/Module/Admin/Summary.php:109 +#, php-format +msgid "" +"The last worker execution was on %s UTC. This is older than one hour. Please" +" check your crontab settings." +msgstr "" + +#: src/Module/Admin/Summary.php:114 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +".htconfig.php. See the Config help page for " +"help with the transition." +msgstr "" + +#: src/Module/Admin/Summary.php:118 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +"config/local.ini.php. See the Config help " +"page for help with the transition." +msgstr "" + +#: src/Module/Admin/Summary.php:124 +#, php-format +msgid "" +"%s is not reachable on your system. This is a severe " +"configuration issue that prevents server to server communication. See the installation page for help." +msgstr "" + +#: src/Module/Admin/Summary.php:148 +#, php-format +msgid "" +"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" +" system.basepath from your db to avoid differences." +msgstr "" + +#: src/Module/Admin/Summary.php:156 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is wrong and the config file '%s' " +"isn't used." +msgstr "" + +#: src/Module/Admin/Summary.php:164 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is not equal to the config file " +"'%s'. Please fix your configuration." +msgstr "" + +#: src/Module/Admin/Summary.php:175 +msgid "Message queues" +msgstr "Mesaĝvicoj" + +#: src/Module/Admin/Summary.php:181 +msgid "Server Settings" +msgstr "" + +#: src/Module/Admin/Summary.php:199 +msgid "Version" +msgstr "Versio" + +#: src/Module/Admin/Summary.php:203 +msgid "Active addons" +msgstr "" + +#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 +#, php-format +msgid "Theme %s disabled." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 +#, php-format +msgid "Theme %s successfully enabled." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 +#, php-format +msgid "Theme %s failed to install." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:83 +msgid "Screenshot" +msgstr "Ekrankopio" + +#: src/Module/Admin/Themes/Details.php:91 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 +msgid "Themes" +msgstr "Etosoj" + +#: src/Module/Admin/Themes/Embed.php:80 +msgid "Unknown theme." +msgstr "" + +#: src/Module/Admin/Themes/Index.php:51 +msgid "Themes reloaded" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:114 +msgid "Reload active themes" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:118 +#, php-format +msgid "No themes found on the system. They should be placed in %1$s" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:119 +msgid "[Experimental]" +msgstr "[Eksperimenta]" + +#: src/Module/Admin/Themes/Index.php:120 +msgid "[Unsupported]" +msgstr "[Nesubtenata]" + +#: src/Module/Admin/Tos.php:79 +msgid "Display Terms of Service" +msgstr "" + +#: src/Module/Admin/Tos.php:79 +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 "" + +#: src/Module/Admin/Tos.php:80 +msgid "Display Privacy Statement" +msgstr "" + +#: src/Module/Admin/Tos.php:80 +#, php-format +msgid "" +"Show some informations regarding the needed information to operate the node " +"according e.g. to EU-GDPR." +msgstr "" + +#: src/Module/Admin/Tos.php:81 +msgid "Privacy Statement Preview" +msgstr "" + +#: src/Module/Admin/Tos.php:83 +msgid "The Terms of Service" +msgstr "" + +#: src/Module/Admin/Tos.php:83 +msgid "" +"Enter the Terms of Service for your node here. You can use BBCode. Headers " +"of sections should be [h2] and below." +msgstr "" + +#: src/Module/Admin/Tos.php:84 +msgid "The rules" +msgstr "" + +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." +msgstr "" + +#: src/Module/Api/ApiResponse.php:279 +#, php-format +msgid "API endpoint %s %s is not implemented but might be in the future." +msgstr "" + +#: src/Module/Api/Mastodon/Apps.php:73 +msgid "Missing parameters" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:51 +msgid "Only starting posts can be bookmarked" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +msgid "Only starting posts can be muted" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Reblog.php:56 +#, php-format +msgid "Posts from %s can't be shared" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +msgid "Only starting posts can be unbookmarked" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +msgid "Only starting posts can be unmuted" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:62 +#, php-format +msgid "Posts from %s can't be unshared" +msgstr "" + +#: src/Module/Api/Twitter/ContactEndpoint.php:66 +msgid "Contact not found" +msgstr "" + +#: src/Module/Apps.php:62 +msgid "No installed applications." +msgstr "Neniom da instalitaj programoj." + +#: src/Module/Apps.php:67 +msgid "Applications" +msgstr "Programoj" + +#: src/Module/Attach.php:49 src/Module/Attach.php:61 +msgid "Item was not found." +msgstr "Elemento ne trovita." + +#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +msgid "Please login to continue." +msgstr "Bonvolu ensaluti por pluigi." + +#: src/Module/BaseAdmin.php:63 +msgid "You don't have access to administration pages." +msgstr "" + +#: src/Module/BaseAdmin.php:67 +msgid "" +"Submanaged account can't access the administration pages. Please log back in" +" as the main account." +msgstr "" + +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +msgid "Overview" +msgstr "" + +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +msgid "Configuration" +msgstr "" + +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +msgid "Additional features" +msgstr "" + +#: src/Module/BaseAdmin.php:97 +msgid "Database" +msgstr "" + +#: src/Module/BaseAdmin.php:98 +msgid "DB updates" +msgstr "DB ĝisdatigoj" + +#: src/Module/BaseAdmin.php:99 +msgid "Inspect Deferred Workers" +msgstr "" + +#: src/Module/BaseAdmin.php:100 +msgid "Inspect worker Queue" +msgstr "" + +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +msgid "Diagnostics" +msgstr "" + +#: src/Module/BaseAdmin.php:107 +msgid "PHP Info" +msgstr "" + +#: src/Module/BaseAdmin.php:108 +msgid "probe address" +msgstr "" + +#: src/Module/BaseAdmin.php:109 +msgid "check webfinger" +msgstr "" + +#: src/Module/BaseAdmin.php:110 +msgid "Babel" +msgstr "" + +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 +msgid "ActivityPub Conversion" +msgstr "" + +#: src/Module/BaseAdmin.php:120 +msgid "Addon Features" +msgstr "" + +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +msgid "User registrations waiting for confirmation" +msgstr "Uzantaj registradoj atendante konfirmon" + +#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467 +#: src/Module/BaseApi.php:483 +msgid "Too Many Requests" +msgstr "" + +#: src/Module/BaseApi.php:452 +#, php-format +msgid "Daily posting limit of %d post reached. The post was rejected." +msgid_plural "Daily posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseApi.php:468 +#, php-format +msgid "Weekly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Weekly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseApi.php:484 +#, php-format +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Monthly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "" + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "" + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Uzantoj" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 +msgid "Profile Details" +msgstr "Profildetaloj" + +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "" + +#: src/Module/BaseProfile.php:111 +msgid "Only You Can See This" +msgstr "Nur Vi Povas Vidi Tiun" + +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +msgid "Scheduled Posts" +msgstr "" + +#: src/Module/BaseProfile.php:119 +msgid "Posts that are scheduled for publishing" +msgstr "" + +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +msgid "Tips for New Members" +msgstr "Konsilo por novaj membroj" + +#: src/Module/BaseSearch.php:71 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: src/Module/BaseSearch.php:75 +#, php-format +msgid "Group Search - %s" +msgstr "" + +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "Nenio estas trovita" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseSettings.php:78 +msgid "Account" +msgstr "Konto" + +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 +msgid "Two-factor authentication" +msgstr "" + +#: src/Module/BaseSettings.php:118 +msgid "Display" +msgstr "" + +#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "" + +#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172 +msgid "Manage Accounts" +msgstr "" + +#: src/Module/BaseSettings.php:146 +msgid "Connected apps" +msgstr "Konektitaj programoj" + +#: src/Module/BaseSettings.php:153 +msgid "Remote servers" +msgstr "" + +#: src/Module/BaseSettings.php:160 src/Module/Settings/UserExport.php:98 +msgid "Export personal data" +msgstr "Eksporto" + +#: src/Module/BaseSettings.php:167 +msgid "Remove account" +msgstr "Forigi konton" + +#: src/Module/Bookmarklet.php:54 +msgid "This page is missing a url parameter." +msgstr "" + +#: src/Module/Bookmarklet.php:66 +msgid "The post was created" +msgstr "" + +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "" + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "" + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "Titolo kaj starttempo estas bezonataj por la okazo." + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "Okazo startas:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Bezonata" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "Fina dato/tempo ne estas konata aŭ ne bezonata" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "Okazo finas:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Kunhavigi la okazon" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Okazoj" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Krei novan okazon" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:248 +msgid "list" +msgstr "" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "" + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "" + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "" + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "" + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "Kontakto ne trovita." + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "Nevalida kontakto." + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "" + +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "" + +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "" + +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "" + +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "" + +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "" + +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "" + +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "" + +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "" + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "" + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "Anoj" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "Klaku kontakton por aldoni aŭ forviŝi." + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "" + +#: src/Module/Contact.php:97 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "" msgstr[1] "" -#: mod/contacts.php:159 mod/contacts.php:368 -msgid "Could not access contact record." -msgstr "Ne eblis atingi kontaktrikordo." +#: src/Module/Contact.php:348 +msgid "Show all contacts" +msgstr "Montri ĉiujn kontaktojn" -#: mod/contacts.php:173 -msgid "Could not locate selected profile." -msgstr "Ne trovis elektitan profilon." +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "" -#: mod/contacts.php:206 -msgid "Contact updated." -msgstr "Kontakto estas ĝisdatigita." +#: src/Module/Contact.php:356 +msgid "Only show pending contacts" +msgstr "" -#: mod/contacts.php:208 mod/dfrn_request.php:583 +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Blokita" + +#: src/Module/Contact.php:364 +msgid "Only show blocked contacts" +msgstr "Nur montri blokitajn kontaktojn" + +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:368 +msgid "Ignored" +msgstr "Ignorita" + +#: src/Module/Contact.php:372 +msgid "Only show ignored contacts" +msgstr "Nur montri ignoritajn kontaktojn" + +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 +msgid "Archived" +msgstr "Enarkivigita" + +#: src/Module/Contact.php:388 +msgid "Only show archived contacts" +msgstr "Nur montri enarkivigitajn kontaktojn" + +#: src/Module/Contact.php:393 src/Module/Contact.php:438 +msgid "Hidden" +msgstr "Kaŝita" + +#: src/Module/Contact.php:396 +msgid "Only show hidden contacts" +msgstr "Nur montri kaŝitajn kontaktojn" + +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "" + +#: src/Module/Contact.php:459 +msgid "Search your contacts" +msgstr "Serĉi viajn kontaktojn" + +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 +#, php-format +msgid "Results for: %s" +msgstr "" + +#: src/Module/Contact.php:467 +msgid "Update" +msgstr "Ĝisdatigi" + +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Malbloki" + +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 +msgid "Unignore" +msgstr "Malignori" + +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "" + +#: src/Module/Contact.php:472 +msgid "Batch Actions" +msgstr "" + +#: src/Module/Contact.php:515 +msgid "Conversations started by this contact" +msgstr "" + +#: src/Module/Contact.php:520 +msgid "Posts and Comments" +msgstr "" + +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "" + +#: src/Module/Contact.php:531 +msgid "Posts containing media objects" +msgstr "" + +#: src/Module/Contact.php:539 +msgid "View all known contacts" +msgstr "" + +#: src/Module/Contact.php:550 +msgid "Advanced Contact Settings" +msgstr "Specialaj Kontaktagordoj" + +#: src/Module/Contact.php:586 +msgid "Mutual Friendship" +msgstr "Reciproka amikeco" + +#: src/Module/Contact.php:590 +msgid "is a fan of yours" +msgstr "estas admiranto de vi" + +#: src/Module/Contact.php:594 +msgid "you are a fan of" +msgstr "vi estas admiranto de" + +#: src/Module/Contact.php:612 +msgid "Pending outgoing contact request" +msgstr "" + +#: src/Module/Contact.php:614 +msgid "Pending incoming contact request" +msgstr "" + +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Viziti la profilon de %s [%s]" + +#: src/Module/Contact/Advanced.php:99 +msgid "Contact update failed." +msgstr "Ĝisdatigo de kontakto malsukcesis." + +#: src/Module/Contact/Advanced.php:130 +msgid "Return to contact editor" +msgstr "Reen al kontakta redaktilo" + +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Nomo" + +#: src/Module/Contact/Advanced.php:135 +msgid "Account Nickname" +msgstr "Kaŝnomo de la konto" + +#: src/Module/Contact/Advanced.php:136 +msgid "Account URL" +msgstr "Adreso de la konto" + +#: src/Module/Contact/Advanced.php:137 +msgid "Poll/Feed URL" +msgstr "Adreso de fluo" + +#: src/Module/Contact/Advanced.php:138 +msgid "New photo from this URL" +msgstr "Nova bildo el tiu adreso" + +#: src/Module/Contact/Contacts.php:89 +msgid "No known contacts." +msgstr "" + +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +msgid "No common contacts." +msgstr "" + +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#, php-format +msgid "Follower (%s)" +msgid_plural "Followers (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#, php-format +msgid "Following (%s)" +msgid_plural "Following (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#, php-format +msgid "Mutual friend (%s)" +msgid_plural "Mutual friends (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#, php-format +msgid "These contacts both follow and are followed by %s." +msgstr "" + +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#, php-format +msgid "Common contact (%s)" +msgid_plural "Common contacts (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#, php-format +msgid "" +"Both %s and yourself have publicly interacted with these " +"contacts (follow, comment or likes on public posts)." +msgstr "" + +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#, php-format +msgid "Contact (%s)" +msgid_plural "Contacts (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:165 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Atingo nepermesita." + +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Sendi peton" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "" + +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "" + +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Bonvolu respondi:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "Via identeca adreso:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Markoj:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Aldoni personan noton:" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" +msgstr "" + +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "" + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "" + +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "" + +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "Kongrua profilo" + +#: src/Module/Contact/Profile.php:140 msgid "Failed to update contact record." msgstr "Ĝisdatigo de via kontaktrikordo malsukcesis." -#: mod/contacts.php:389 -msgid "Contact has been blocked" -msgstr "Kontakto estas blokita." - -#: mod/contacts.php:389 +#: src/Module/Contact/Profile.php:190 msgid "Contact has been unblocked" msgstr "Kontakto estas malblokita." -#: mod/contacts.php:400 -msgid "Contact has been ignored" -msgstr "Kontakto estas ignorita." +#: src/Module/Contact/Profile.php:194 +msgid "Contact has been blocked" +msgstr "Kontakto estas blokita." -#: mod/contacts.php:400 +#: src/Module/Contact/Profile.php:206 msgid "Contact has been unignored" msgstr "Kontakto estas malignorita." -#: mod/contacts.php:412 -msgid "Contact has been archived" -msgstr "Enarkivigis kontakton" +#: src/Module/Contact/Profile.php:210 +msgid "Contact has been ignored" +msgstr "Kontakto estas ignorita." -#: mod/contacts.php:412 -msgid "Contact has been unarchived" -msgstr "Elarkivigis kontakton" - -#: mod/contacts.php:437 -msgid "Drop contact" +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" msgstr "" -#: mod/contacts.php:440 mod/contacts.php:801 -msgid "Do you really want to delete this contact?" +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" msgstr "" -#: mod/contacts.php:457 -msgid "Contact has been removed." -msgstr "Kontakto estas forigita." - -#: mod/contacts.php:498 +#: src/Module/Contact/Profile.php:254 #, php-format msgid "You are mutual friends with %s" msgstr "Vi estas reciproka amiko de %s" -#: mod/contacts.php:502 +#: src/Module/Contact/Profile.php:255 #, php-format msgid "You are sharing with %s" msgstr "Vi kunhavigas kun %s" -#: mod/contacts.php:507 +#: src/Module/Contact/Profile.php:256 #, php-format msgid "%s is sharing with you" msgstr "%s kunhavigas kun vi" -#: mod/contacts.php:527 +#: src/Module/Contact/Profile.php:272 msgid "Private communications are not available for this contact." msgstr "Privataj komunikadoj ne disponeblas por ĉi tiu kontakto." -#: mod/contacts.php:534 -msgid "(Update was successful)" -msgstr "(Ĝisdatigo sukcesis.)" +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "" -#: mod/contacts.php:534 +#: src/Module/Contact/Profile.php:285 +msgid "Never" +msgstr "Neniam" + +#: src/Module/Contact/Profile.php:288 msgid "(Update was not successful)" msgstr "(Ĝisdatigo malsukcesis.)" -#: mod/contacts.php:536 mod/contacts.php:964 +#: src/Module/Contact/Profile.php:288 +msgid "(Update was successful)" +msgstr "(Ĝisdatigo sukcesis.)" + +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 msgid "Suggest friends" msgstr "Sugesti amikojn" -#: mod/contacts.php:540 +#: src/Module/Contact/Profile.php:294 #, php-format msgid "Network type: %s" msgstr "Reta tipo: %s" -#: mod/contacts.php:553 +#: src/Module/Contact/Profile.php:299 msgid "Communications lost with this contact!" msgstr "Mi perdis la kommunikadon kun tiu kontakto!" -#: mod/contacts.php:556 +#: src/Module/Contact/Profile.php:305 msgid "Fetch further information for feeds" msgstr "" -#: mod/contacts.php:557 +#: src/Module/Contact/Profile.php:307 +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 "" + +#: src/Module/Contact/Profile.php:310 msgid "Fetch information" msgstr "" -#: mod/contacts.php:557 +#: src/Module/Contact/Profile.php:311 +msgid "Fetch keywords" +msgstr "" + +#: src/Module/Contact/Profile.php:312 msgid "Fetch information and keywords" msgstr "" -#: mod/contacts.php:575 -msgid "Contact" +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 +msgid "No mirroring" msgstr "" -#: mod/contacts.php:578 -msgid "Profile Visibility" -msgstr "Videbleco de profilo" +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 +msgid "Mirror as my own posting" +msgstr "" -#: mod/contacts.php:579 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Bonvolu elekti la profilon kiu vi volas montri al %s aspektinde kiam sekure aspektante vian profilon." +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 +msgid "Native reshare" +msgstr "" -#: mod/contacts.php:580 +#: src/Module/Contact/Profile.php:353 msgid "Contact Information / Notes" msgstr "Kontaktaj informoj / Notoj" -#: mod/contacts.php:581 +#: src/Module/Contact/Profile.php:354 +msgid "Contact Settings" +msgstr "" + +#: src/Module/Contact/Profile.php:362 +msgid "Contact" +msgstr "" + +#: src/Module/Contact/Profile.php:366 +msgid "Their personal note" +msgstr "" + +#: src/Module/Contact/Profile.php:368 msgid "Edit contact notes" msgstr "Redakti kontaktnotojn" -#: mod/contacts.php:587 +#: src/Module/Contact/Profile.php:372 msgid "Block/Unblock contact" msgstr "Bloki/Malbloki kontakton" -#: mod/contacts.php:588 +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 msgid "Ignore contact" msgstr "Ignori kontakton" -#: mod/contacts.php:589 -msgid "Repair URL settings" -msgstr "Ripari URL agordoj" - -#: mod/contacts.php:590 +#: src/Module/Contact/Profile.php:374 msgid "View conversations" msgstr "Vidi konversaciojn" -#: mod/contacts.php:596 +#: src/Module/Contact/Profile.php:379 msgid "Last update:" msgstr "Plej ĵusa ĝisdatigo:" -#: mod/contacts.php:598 +#: src/Module/Contact/Profile.php:381 msgid "Update public posts" msgstr "Ĝisdatigi publikajn afiŝojn" -#: mod/contacts.php:600 mod/contacts.php:974 +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 msgid "Update now" msgstr "Ĝisdatigi nun" -#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991 -msgid "Unignore" -msgstr "Malignori" +#: src/Module/Contact/Profile.php:385 +msgid "Awaiting connection acknowledge" +msgstr "" -#: mod/contacts.php:610 +#: src/Module/Contact/Profile.php:386 msgid "Currently blocked" msgstr "Nuntempe blokata" -#: mod/contacts.php:611 +#: src/Module/Contact/Profile.php:387 msgid "Currently ignored" msgstr "Nuntempe ignorata" -#: mod/contacts.php:612 +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:389 msgid "Currently archived" msgstr "Nuntempe enarkivigita" -#: mod/contacts.php:613 +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "" + +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 +msgid "Hide this contact from others" +msgstr "Kaŝi ĉi tiun kontakton al aliaj" + +#: src/Module/Contact/Profile.php:394 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Rispondoj/ŝataĵo al viaj publikaj afiŝoj eble plu estos videbla" -#: mod/contacts.php:614 +#: src/Module/Contact/Profile.php:395 msgid "Notification for new posts" msgstr "" -#: mod/contacts.php:614 +#: src/Module/Contact/Profile.php:395 msgid "Send a notification of every new post of this contact" msgstr "" -#: mod/contacts.php:617 -msgid "Blacklisted keywords" +#: src/Module/Contact/Profile.php:397 +msgid "Keyword Deny List" msgstr "" -#: mod/contacts.php:617 +#: src/Module/Contact/Profile.php:397 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "" -#: mod/contacts.php:635 +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "Actions" msgstr "" -#: mod/contacts.php:638 -msgid "Contact Settings" +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "Stato" + +#: src/Module/Contact/Profile.php:423 +msgid "Mirror postings from this contact" msgstr "" -#: mod/contacts.php:684 -msgid "Suggestions" -msgstr "Sugestoj" - -#: mod/contacts.php:687 -msgid "Suggest potential friends" -msgstr "Sugesti amikojn" - -#: mod/contacts.php:695 -msgid "Show all contacts" -msgstr "Montri ĉiujn kontaktojn" - -#: mod/contacts.php:700 -msgid "Unblocked" -msgstr "Malblokita" - -#: mod/contacts.php:703 -msgid "Only show unblocked contacts" -msgstr "Nur montri neblokitajn kontaktojn" - -#: mod/contacts.php:709 -msgid "Blocked" -msgstr "Blokita" - -#: mod/contacts.php:712 -msgid "Only show blocked contacts" -msgstr "Nur montri blokitajn kontaktojn" - -#: mod/contacts.php:718 -msgid "Ignored" -msgstr "Ignorita" - -#: mod/contacts.php:721 -msgid "Only show ignored contacts" -msgstr "Nur montri ignoritajn kontaktojn" - -#: mod/contacts.php:727 -msgid "Archived" -msgstr "Enarkivigita" - -#: mod/contacts.php:730 -msgid "Only show archived contacts" -msgstr "Nur montri enarkivigitajn kontaktojn" - -#: mod/contacts.php:736 -msgid "Hidden" -msgstr "Kaŝita" - -#: mod/contacts.php:739 -msgid "Only show hidden contacts" -msgstr "Nur montri kaŝitajn kontaktojn" - -#: mod/contacts.php:796 -msgid "Search your contacts" -msgstr "Serĉi viajn kontaktojn" - -#: mod/contacts.php:807 mod/contacts.php:999 -msgid "Archive" -msgstr "Enarkivigi" - -#: mod/contacts.php:807 mod/contacts.php:999 -msgid "Unarchive" -msgstr "Elarkivigi" - -#: mod/contacts.php:810 -msgid "Batch Actions" +#: src/Module/Contact/Profile.php:425 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." msgstr "" -#: mod/contacts.php:856 -msgid "View all contacts" -msgstr "Vidi ĉiujn kontaktojn" - -#: mod/contacts.php:866 -msgid "View all common friends" +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" msgstr "" -#: mod/contacts.php:873 -msgid "Advanced Contact Settings" -msgstr "Specialaj Kontaktagordoj" +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "" -#: mod/contacts.php:907 -msgid "Mutual Friendship" -msgstr "Reciproka amikeco" +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "" -#: mod/contacts.php:911 -msgid "is a fan of yours" -msgstr "estas admiranto de vi" +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "" -#: mod/contacts.php:915 -msgid "you are a fan of" -msgstr "vi estas admiranto de" +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "" -#: mod/contacts.php:985 +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "" + +#: src/Module/Contact/Profile.php:502 +msgid "Refetch contact data" +msgstr "" + +#: src/Module/Contact/Profile.php:513 msgid "Toggle Blocked status" msgstr "Ŝalti/malŝalti Blokitan staton" -#: mod/contacts.php:993 +#: src/Module/Contact/Profile.php:521 msgid "Toggle Ignored status" msgstr "Ŝalti/malŝalti Ignoritan staton" -#: mod/contacts.php:1001 -msgid "Toggle Archive status" -msgstr "Ŝalti/malŝalti Enarkivigitan staton" - -#: mod/contacts.php:1009 -msgid "Delete contact" -msgstr "Forviŝi kontakton" - -#: mod/dfrn_confirm.php:127 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Tio ĉi okazis de tempo al tempo se ambaŭ personoj petas kontakton ka ĝi jam estas aprobita." - -#: mod/dfrn_confirm.php:246 -msgid "Response from remote site was not understood." -msgstr "Ne komprenis la rispondon de la fora retejo." - -#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 -msgid "Unexpected response from remote site: " -msgstr "Neatendita rispondo de la fora retejo:" - -#: mod/dfrn_confirm.php:269 -msgid "Confirmation completed successfully." -msgstr "Konfirmo sukcese kompletigita." - -#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 -msgid "Remote site reported: " -msgstr "La fora retejo raportis:" - -#: mod/dfrn_confirm.php:283 -msgid "Temporary failure. Please wait and try again." -msgstr "Dumtempa eraro. Bonvolu atendi kaj provi refoje." - -#: mod/dfrn_confirm.php:290 -msgid "Introduction failed or was revoked." -msgstr "La prezento malsukcesis au estas revokita." - -#: mod/dfrn_confirm.php:419 -msgid "Unable to set contact photo." -msgstr "Neeblas agordi la kontaktbildo." - -#: mod/dfrn_confirm.php:557 -#, php-format -msgid "No user record found for '%s' " -msgstr "Ne trovis uzanton '%s' " - -#: mod/dfrn_confirm.php:567 -msgid "Our site encryption key is apparently messed up." -msgstr "Ŝajnas kvazaŭ la ĉifroŝlosilo de nia retejo estas fuŝita." - -#: mod/dfrn_confirm.php:578 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Malplena adreso de retejo provizita, aŭ ni ne povis malĉifri la adreson." - -#: mod/dfrn_confirm.php:599 -msgid "Contact record was not found for you on our site." -msgstr "Kontakto ne trovita por vi en via retejo." - -#: mod/dfrn_confirm.php:613 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Publika ŝlosilo de retejo ne disponeblas en la kontaktrikordo por la URL adreso %s." - -#: mod/dfrn_confirm.php:633 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "La identeco provizita de via sistemo estas duoblo ĉe nia sistemo. Ĝi eble funkcias se vi provas refoje." - -#: mod/dfrn_confirm.php:644 -msgid "Unable to set your contact credentials on our system." -msgstr "Ne sukcesis agordi la legitimaĵojn de via kontakto ĉe nia sistemo." - -#: mod/dfrn_confirm.php:703 -msgid "Unable to update your contact profile details on our system" -msgstr "Neeblas ĝisdatigi viajn profildetalojn ĉe nia sistemo." - -#: mod/dfrn_confirm.php:775 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s aliĝis al %2$s" - -#: mod/dfrn_request.php:101 -msgid "This introduction has already been accepted." -msgstr "Tia prezento jam estas akceptita" - -#: mod/dfrn_request.php:124 mod/dfrn_request.php:520 -msgid "Profile location is not valid or does not contain profile information." -msgstr "La adreso de la profilo ne validas aŭ ne enhavas profilinformojn." - -#: mod/dfrn_request.php:129 mod/dfrn_request.php:525 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Averto: La adreso de la profilo ne enhavas identeblan personan nomon." - -#: mod/dfrn_request.php:131 mod/dfrn_request.php:527 -msgid "Warning: profile location has no profile photo." -msgstr "Averto: La adreso de la profilo ne enhavas bildon." - -#: mod/dfrn_request.php:134 mod/dfrn_request.php:530 -#, 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 bezonataj parametroj ne trovita ĉe la donata adreso." -msgstr[1] "%d bezonataj parametroj ne trovita ĉe la donata adreso." - -#: mod/dfrn_request.php:180 -msgid "Introduction complete." -msgstr "Prezento sukcesis." - -#: mod/dfrn_request.php:222 -msgid "Unrecoverable protocol error." -msgstr "Neĝustigebla eraro en protokolo." - -#: mod/dfrn_request.php:250 -msgid "Profile unavailable." -msgstr "Profilo ne estas disponebla." - -#: mod/dfrn_request.php:277 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s hodiaŭ ricevis tro multe da konektpetoj." - -#: mod/dfrn_request.php:278 -msgid "Spam protection measures have been invoked." -msgstr "Kontraŭspamilo estas aktivita." - -#: mod/dfrn_request.php:279 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Amikoj, vi bonvolu ripeti post 24 horoj." - -#: mod/dfrn_request.php:341 -msgid "Invalid locator" -msgstr "Nevalida adreso." - -#: mod/dfrn_request.php:350 -msgid "Invalid email address." -msgstr "Nevalida repoŝtadreso." - -#: mod/dfrn_request.php:375 -msgid "This account has not been configured for email. Request failed." -msgstr "La konto ne estas agordita por retpoŝto. La peto malsukcesis." - -#: mod/dfrn_request.php:478 -msgid "You have already introduced yourself here." -msgstr "Vi vin jam prezentis tie." - -#: mod/dfrn_request.php:482 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Ŝajnas kvazaŭ vi jam amikiĝis kun %s." - -#: mod/dfrn_request.php:503 -msgid "Invalid profile URL." -msgstr "Nevalida adreso de profilo." - -#: mod/dfrn_request.php:604 -msgid "Your introduction has been sent." -msgstr "Via prezento estas sendita." - -#: mod/dfrn_request.php:644 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" msgstr "" -#: mod/dfrn_request.php:664 -msgid "Please login to confirm introduction." -msgstr "Bonvolu ensaluti por jesigi la prezenton." - -#: mod/dfrn_request.php:674 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Malĝusta identaĵo ensalutata. Bonvolu ensaluti en tiun profilon." - -#: mod/dfrn_request.php:688 mod/dfrn_request.php:705 -msgid "Confirm" -msgstr "Konfirmi." - -#: mod/dfrn_request.php:700 -msgid "Hide this contact" -msgstr "Kaŝi tiun kontakton" - -#: mod/dfrn_request.php:703 -#, php-format -msgid "Welcome home %s." -msgstr "Bonvenon hejme, %s." - -#: mod/dfrn_request.php:704 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bonvolu konfirmi vian prezenton / kontaktpeton al %s." - -#: mod/dfrn_request.php:833 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Bonvolu entajpi vian 'Identecan Adreson' de iu de tiuj subtenataj komunikaj retejoj: " - -#: mod/dfrn_request.php:854 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " -"join us today." +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 +msgid "Revoke Follow" msgstr "" -#: mod/dfrn_request.php:859 -msgid "Friend/Connection Request" -msgstr "Prezento / Konektpeto" +#: src/Module/Contact/Profile.php:538 +msgid "Revoke the follow from this contact" +msgstr "" -#: mod/dfrn_request.php:860 +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "" + +#: src/Module/Contact/Revoke.php:63 +msgid "Unknown contact." +msgstr "" + +#: src/Module/Contact/Revoke.php:77 +msgid "Contact is being deleted." +msgstr "" + +#: src/Module/Contact/Revoke.php:91 +msgid "Follow was successfully revoked." +msgstr "" + +#: src/Module/Contact/Revoke.php:107 msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Ekzemploj: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" +"Do you really want to revoke this contact's follow? This cannot be undone " +"and they will have to manually follow you back again." +msgstr "" -#: mod/dfrn_request.php:861 mod/follow.php:109 -msgid "Please answer the following:" -msgstr "Bonvolu respondi:" +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "Yes" +msgstr "Jes" -#: mod/dfrn_request.php:862 mod/follow.php:110 +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Neniu sugestoj disponeblas. Se ĉi tiu estas nova retejo, bonvolu reprovi post 24 horoj." + +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "" + +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "" + +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "" + +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "" + +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "" + +#: src/Module/Conversation/Channel.php:121 +#: src/Module/Conversation/Community.php:125 src/Module/Search/Index.php:152 +#: src/Module/Search/Index.php:194 +msgid "No results." +msgstr "Nenion trovita." + +#: src/Module/Conversation/Channel.php:159 +msgid "Channel not available." +msgstr "" + +#: src/Module/Conversation/Community.php:91 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "" + +#: src/Module/Conversation/Community.php:179 +msgid "Community option not available." +msgstr "" + +#: src/Module/Conversation/Community.php:195 +msgid "Not available." +msgstr "Ne disponebla." + +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "" + +#: src/Module/Conversation/Network.php:222 #, php-format -msgid "Does %s know you?" -msgstr "Ĉu %s konas vin?" +msgid "Circle: %s" +msgstr "" -#: mod/dfrn_request.php:866 mod/follow.php:111 -msgid "Add a personal note:" -msgstr "Aldoni personan noton:" +#: src/Module/Conversation/Network.php:317 +msgid "Network feed not available." +msgstr "" -#: mod/dfrn_request.php:869 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federaciaj interkonaj retejoj" +#: src/Module/Conversation/Timeline.php:158 +msgid "Own Contacts" +msgstr "" -#: mod/dfrn_request.php:871 +#: src/Module/Conversation/Timeline.php:162 +msgid "Include" +msgstr "" + +#: src/Module/Conversation/Timeline.php:163 +msgid "Hide" +msgstr "" + +#: src/Module/Credits.php:44 +msgid "Credits" +msgstr "" + +#: 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 "" + +#: src/Module/Debug/ActivityPubConversion.php:53 +msgid "Formatted" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:65 +msgid "Activity" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:117 +msgid "Object data" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:124 +msgid "Result Item" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Debug/ActivityPubConversion.php:138 +msgid "Source activity" +msgstr "" + +#: src/Module/Debug/Babel.php:51 +msgid "Source input" +msgstr "" + +#: src/Module/Debug/Babel.php:57 +msgid "BBCode::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:63 +msgid "BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:68 +msgid "BBCode::convert (hex)" +msgstr "" + +#: src/Module/Debug/Babel.php:73 +msgid "BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:79 +msgid "BBCode::convert => HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:85 +msgid "BBCode::toMarkdown" +msgstr "" + +#: src/Module/Debug/Babel.php:91 +msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:95 +msgid "BBCode::toMarkdown => Markdown::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:101 +msgid "BBCode::toMarkdown => Markdown::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:107 +msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:115 +msgid "Item Body" +msgstr "" + +#: src/Module/Debug/Babel.php:119 +msgid "Item Tags" +msgstr "" + +#: src/Module/Debug/Babel.php:125 +msgid "PageInfo::appendToBody" +msgstr "" + +#: src/Module/Debug/Babel.php:130 +msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:134 +msgid "PageInfo::appendToBody => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:141 +msgid "Source input (Diaspora format)" +msgstr "" + +#: src/Module/Debug/Babel.php:150 +msgid "Source input (Markdown)" +msgstr "" + +#: src/Module/Debug/Babel.php:156 +msgid "Markdown::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:161 +msgid "Markdown::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:167 +msgid "Markdown::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:174 +msgid "Raw HTML input" +msgstr "" + +#: src/Module/Debug/Babel.php:179 +msgid "HTML Input" +msgstr "" + +#: src/Module/Debug/Babel.php:186 +msgid "HTML Purified (raw)" +msgstr "" + +#: src/Module/Debug/Babel.php:191 +msgid "HTML Purified (hex)" +msgstr "" + +#: src/Module/Debug/Babel.php:196 +msgid "HTML Purified" +msgstr "" + +#: src/Module/Debug/Babel.php:202 +msgid "HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:208 +msgid "HTML::toBBCode => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:213 +msgid "HTML::toBBCode => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:219 +msgid "HTML::toBBCode => BBCode::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:225 +msgid "HTML::toMarkdown" +msgstr "" + +#: src/Module/Debug/Babel.php:231 +msgid "HTML::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:237 +msgid "HTML::toPlaintext (compact)" +msgstr "" + +#: src/Module/Debug/Babel.php:255 +msgid "Decoded post" +msgstr "" + +#: src/Module/Debug/Babel.php:276 +msgid "Post array before expand entities" +msgstr "" + +#: src/Module/Debug/Babel.php:283 +msgid "Post converted" +msgstr "" + +#: src/Module/Debug/Babel.php:288 +msgid "Converted body" +msgstr "" + +#: src/Module/Debug/Babel.php:294 +msgid "Twitter addon is absent from the addon/ folder." +msgstr "" + +#: src/Module/Debug/Babel.php:304 +msgid "Babel Diagnostic" +msgstr "" + +#: src/Module/Debug/Babel.php:305 +msgid "Source text" +msgstr "" + +#: src/Module/Debug/Babel.php:306 +msgid "BBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:308 +msgid "Markdown" +msgstr "" + +#: src/Module/Debug/Babel.php:309 +msgid "HTML" +msgstr "" + +#: src/Module/Debug/Babel.php:311 +msgid "Twitter Source / Tweet URL (requires API key)" +msgstr "" + +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:177 +msgid "You must be logged in to use this module" +msgstr "" + +#: src/Module/Debug/Feed.php:77 +msgid "Source URL" +msgstr "" + +#: src/Module/Debug/Localtime.php:49 +msgid "Time Conversion" +msgstr "Konverto de tempo" + +#: src/Module/Debug/Localtime.php:50 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica provizas tiun servon por kunhavigi okazojn kun aliaj retoj kaj amikoj en aliaj horzonoj." + +#: src/Module/Debug/Localtime.php:51 +#, php-format +msgid "UTC time: %s" +msgstr "UTC horo: %s" + +#: src/Module/Debug/Localtime.php:54 +#, php-format +msgid "Current timezone: %s" +msgstr "Aktuala horzono: %s" + +#: src/Module/Debug/Localtime.php:58 +#, php-format +msgid "Converted localtime: %s" +msgstr "Konvertita loka horo: %s" + +#: src/Module/Debug/Localtime.php:62 +msgid "Please select your timezone:" +msgstr "Bonvolu elekti vian horzonon:" + +#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +msgid "Only logged in users are permitted to perform a probing." +msgstr "" + +#: src/Module/Debug/Probe.php:52 +msgid "Probe Diagnostic" +msgstr "" + +#: src/Module/Debug/Probe.php:53 +msgid "Output" +msgstr "" + +#: src/Module/Debug/Probe.php:56 +msgid "Lookup address" +msgstr "" + +#: src/Module/Debug/WebFinger.php:50 +msgid "Webfinger Diagnostic" +msgstr "" + +#: src/Module/Debug/WebFinger.php:52 +msgid "Lookup address:" +msgstr "" + +#: src/Module/Delegation.php:110 +#, php-format +msgid "You are now logged in as %s" +msgstr "" + +#: src/Module/Delegation.php:142 +msgid "Switch between your accounts" +msgstr "" + +#: src/Module/Delegation.php:143 +msgid "Manage your accounts" +msgstr "" + +#: src/Module/Delegation.php:144 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Ŝalti inter aliaj identecojn aj komunumaj/grupaj paĝoj kiuj kunhavas viajn kontajn detalojn au por kiuj vi havas \"administranto\" permesojn." + +#: src/Module/Delegation.php:145 +msgid "Select an identity to manage: " +msgstr "Elektu identencon por administrado:" + +#: src/Module/Directory.php:74 +msgid "No entries (some entries may be hidden)." +msgstr "Neniom da afiŝoj (kelkaj afiŝoj eble ne estas videbla)." + +#: src/Module/Directory.php:90 +msgid "Find on this site" +msgstr "Trovi en ĉi retejo" + +#: src/Module/Directory.php:92 +msgid "Results for:" +msgstr "" + +#: src/Module/Directory.php:94 +msgid "Site Directory" +msgstr "Reteja Katalogo" + +#: src/Module/Filer/RemoveTag.php:105 +msgid "Item was not deleted" +msgstr "" + +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "" + +#: src/Module/Filer/SaveTag.php:73 +msgid "- select -" +msgstr "- elekti -" + +#: src/Module/FriendSuggest.php:82 +msgid "Suggested contact not found." +msgstr "" + +#: src/Module/FriendSuggest.php:100 +msgid "Friend suggestion sent." +msgstr "Amikosugesto sendita." + +#: src/Module/FriendSuggest.php:137 +msgid "Suggest Friends" +msgstr "Sugesti amikojn" + +#: src/Module/FriendSuggest.php:140 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Sugesti amikon por %s" + +#: src/Module/Friendica.php:82 +msgid "Installed addons/apps:" +msgstr "" + +#: src/Module/Friendica.php:87 +msgid "No installed addons/apps" +msgstr "" + +#: src/Module/Friendica.php:92 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "" + +#: src/Module/Friendica.php:99 +msgid "On this server the following remote servers are blocked." +msgstr "" + +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +msgid "Reason for the block" +msgstr "" + +#: src/Module/Friendica.php:104 +msgid "Download this list in CSV format" +msgstr "" + +#: src/Module/Friendica.php:118 #, php-format msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - bonvolu ne uzi ĉi formo. Anstataŭe, entajpu %s en la Diaspora serĉilo." - -#: mod/dfrn_request.php:872 mod/follow.php:117 -msgid "Your Identity Address:" -msgstr "Via identeca adreso:" - -#: mod/dfrn_request.php:875 mod/follow.php:19 -msgid "Submit Request" -msgstr "Sendi peton" - -#: mod/follow.php:30 -msgid "You already added this contact." +"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 "" -#: mod/follow.php:39 -msgid "Diaspora support isn't enabled. Contact can't be added." +#: src/Module/Friendica.php:123 +msgid "" +"Please visit Friendi.ca to learn more " +"about the Friendica project." msgstr "" -#: mod/follow.php:46 -msgid "OStatus support is disabled. Contact can't be added." +#: src/Module/Friendica.php:124 +msgid "Bug reports and issues: please visit" +msgstr "Cimraportoj kaj atendindaĵo: bonvolu iri al" + +#: src/Module/Friendica.php:124 +msgid "the bugtracker at github" msgstr "" -#: mod/follow.php:53 -msgid "The network type couldn't be detected. Contact can't be added." +#: src/Module/Friendica.php:125 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "" -#: mod/follow.php:180 -msgid "Contact added" -msgstr "Aldonis kontakton" +#: src/Module/HCard.php:45 +msgid "No profile" +msgstr "Neniu profilo" -#: mod/install.php:139 +#: src/Module/HTTPException/MethodNotAllowed.php:31 +msgid "Method Not Allowed." +msgstr "" + +#: src/Module/Help.php:60 +msgid "Help:" +msgstr "Helpo:" + +#: src/Module/Home.php:63 +#, php-format +msgid "Welcome to %s" +msgstr "Bonvenon ĉe %s" + +#: src/Module/Install.php:189 msgid "Friendica Communications Server - Setup" msgstr "" -#: mod/install.php:145 -msgid "Could not connect to database." -msgstr "Ne eblas konekti la datumbazon." - -#: mod/install.php:149 -msgid "Could not create table." -msgstr "Ne eblas krei tabelon." - -#: mod/install.php:155 -msgid "Your Friendica site database has been installed." -msgstr "La datumbazo de vi Friendica retjo estas instalita." - -#: mod/install.php:160 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Vi bezonas mane importi la dosieron \"database.sql\" per phpmyadmin aŭ mysql." - -#: mod/install.php:161 mod/install.php:230 mod/install.php:607 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Bonvolu legi la dosieron \"INSTALL.txt\"." - -#: mod/install.php:173 -msgid "Database already in use." -msgstr "" - -#: mod/install.php:227 +#: src/Module/Install.php:200 msgid "System check" msgstr "Sistema kontrolo" -#: mod/install.php:232 +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 +msgid "Requirement not satisfied" +msgstr "" + +#: src/Module/Install.php:203 +msgid "Optional requirement not satisfied" +msgstr "" + +#: src/Module/Install.php:204 +msgid "OK" +msgstr "" + +#: src/Module/Install.php:208 +msgid "Next" +msgstr "sekva" + +#: src/Module/Install.php:209 msgid "Check again" msgstr "Ree kontroli" -#: mod/install.php:251 +#: src/Module/Install.php:222 +msgid "Base settings" +msgstr "" + +#: src/Module/Install.php:224 +msgid "Base path to installation" +msgstr "" + +#: src/Module/Install.php:226 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: src/Module/Install.php:229 +msgid "The Friendica system URL" +msgstr "" + +#: src/Module/Install.php:231 +msgid "" +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." +msgstr "" + +#: src/Module/Install.php:242 msgid "Database connection" msgstr "Datumbaza konekto" -#: mod/install.php:252 +#: src/Module/Install.php:243 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Por instali Friendica, ni bezonas scii kiel konekti al via datumbazo." -#: mod/install.php:253 +#: src/Module/Install.php:244 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Bonvolu kontakti vian servilprovizanton aŭ administranton se vi havas demandoj pri ĉi tiaj agordoj." -#: mod/install.php:254 +#: src/Module/Install.php:245 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "La datumbazo nomata malsupren jam ekzistu. Se ĝi ne ekzistas, bonvolu unue krei ĝin antaŭ progresi." -#: mod/install.php:258 +#: src/Module/Install.php:252 msgid "Database Server Name" msgstr "Nomo de datumbaza servilo." -#: mod/install.php:259 +#: src/Module/Install.php:257 msgid "Database Login Name" msgstr "Salutnomo ĉe la datumbazo." -#: mod/install.php:260 +#: src/Module/Install.php:263 msgid "Database Login Password" msgstr "Pasvorto ĉe la datumbazo." -#: mod/install.php:261 +#: src/Module/Install.php:265 +msgid "For security reasons the password must not be empty" +msgstr "" + +#: src/Module/Install.php:268 msgid "Database Name" msgstr "Nomo de la datumbazo." -#: mod/install.php:262 mod/install.php:303 +#: src/Module/Install.php:272 src/Module/Install.php:300 +msgid "Please select a default timezone for your website" +msgstr "Bonvolu elekti defaŭltan horzonon por via retejo." + +#: src/Module/Install.php:287 +msgid "Site settings" +msgstr "Retejaj agordoj" + +#: src/Module/Install.php:295 msgid "Site administrator email address" msgstr "Retpoŝtadreso de la reteja administranto" -#: mod/install.php:262 mod/install.php:303 +#: src/Module/Install.php:297 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "La repoŝtadreso de via konto bezonas esti la sama por uzi la TTTa administrilo." -#: mod/install.php:266 mod/install.php:306 -msgid "Please select a default timezone for your website" -msgstr "Bonvolu elekti defaŭltan horzonon por via retejo." - -#: mod/install.php:293 -msgid "Site settings" -msgstr "Retejaj agordoj" - -#: mod/install.php:307 +#: src/Module/Install.php:304 msgid "System Language:" msgstr "" -#: mod/install.php:307 +#: src/Module/Install.php:306 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "" -#: mod/install.php:347 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Komanda linia versio de PHP ne trovita en PATH de la retservilo." +#: src/Module/Install.php:318 +msgid "Your Friendica site database has been installed." +msgstr "La datumbazo de vi Friendica retjo estas instalita." -#: mod/install.php:348 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Setup the poller'" +#: src/Module/Install.php:328 +msgid "Installation finished" msgstr "" -#: mod/install.php:352 -msgid "PHP executable path" -msgstr "Vojo de la komanda linia versio de PHP" - -#: mod/install.php:352 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Entajpu la plenan vojon al la php komandodosiero. Vi eblas lasi tion malplena por pluigi la instalado." - -#: mod/install.php:357 -msgid "Command line PHP" -msgstr "komanda linia versio de PHP" - -#: mod/install.php:366 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: mod/install.php:367 -msgid "Found PHP version: " -msgstr "" - -#: mod/install.php:369 -msgid "PHP cli binary" -msgstr "" - -#: mod/install.php:380 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "En via komanda linia versio de PHP je via sistemo, \"register_argc_argv\" ne estas aktivita." - -#: mod/install.php:381 -msgid "This is required for message delivery to work." -msgstr "Tio estas bezonata por la livero de mesaĝoj." - -#: mod/install.php:383 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: mod/install.php:404 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Eraro: La funkcio \"openssl_pkey_new\" je tia sistemo ne eblas generi ĉifroŝlosilojn." - -#: mod/install.php:405 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Se la operaciumo sistemo estas Windows, bonvolu legi: http://www.php.net/manual/en/openssl.installation.php" - -#: mod/install.php:407 -msgid "Generate encryption keys" -msgstr "Generi ĉifroŝlosilojn" - -#: mod/install.php:414 -msgid "libCurl PHP module" -msgstr "PHP modulo libCurl" - -#: mod/install.php:415 -msgid "GD graphics PHP module" -msgstr "PHP modulo GD" - -#: mod/install.php:416 -msgid "OpenSSL PHP module" -msgstr "PHP modulo OpenSSL" - -#: mod/install.php:417 -msgid "mysqli PHP module" -msgstr "PHP modulo mysqli" - -#: mod/install.php:418 -msgid "mb_string PHP module" -msgstr "PHP modulo mb_string" - -#: mod/install.php:419 -msgid "mcrypt PHP module" -msgstr "" - -#: mod/install.php:420 -msgid "XML PHP module" -msgstr "" - -#: mod/install.php:421 -msgid "iconv module" -msgstr "" - -#: mod/install.php:425 mod/install.php:427 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite modulo" - -#: mod/install.php:425 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Eraro: La modulo mod_rewrite en la Apache retservilo estas bezonata sed ne instalita." - -#: mod/install.php:433 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Eraro: La modulo libCURL en PHP estas bezonata sed ne instalita." - -#: mod/install.php:437 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Eraro: La modulo GD en PHP kun subteno por JPEG estas bezonata sed ne instalita." - -#: mod/install.php:441 -msgid "Error: openssl PHP module required but not installed." -msgstr "Eraro: La modulo OpenSSL en PHP estas bezonata sed ne instalita." - -#: mod/install.php:445 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Eraro: La modulo mysqli en PHP estas bezonata sed ne instalita." - -#: mod/install.php:449 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Eraro: La modulo mb_string en PHP estas bezonata sed ne instalita." - -#: mod/install.php:453 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "" - -#: mod/install.php:457 -msgid "Error: iconv PHP module required but not installed." -msgstr "" - -#: mod/install.php:466 -msgid "" -"If you are using php_cli, please make sure that mcrypt module is enabled in " -"its config file" -msgstr "" - -#: mod/install.php:469 -msgid "" -"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " -"encryption layer." -msgstr "" - -#: mod/install.php:471 -msgid "mcrypt_create_iv() function" -msgstr "" - -#: mod/install.php:479 -msgid "Error, XML PHP module required but not installed." -msgstr "" - -#: mod/install.php:494 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "La reta instalilo bezonas skribi dosieron nomata \".htconfig.php\" en la baza dosierujo de la retservilo, sed ne sukcesis." - -#: mod/install.php:495 -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 "Tio ĉi plej ofte estas agordo rilate al permesoj, ĉar la servilo eble ne povas skribi en via dosierujo, eĉ se vi mem povas skribi." - -#: mod/install.php:496 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Post la fino de tiu proceduro, ni donos al vi tekston por konservi en dosiero .htconfig.php en via baza Friendica dosierujo." - -#: mod/install.php:497 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Vi ankaŭ povas preterpasi tiun proceduron kaj fari permanan instaladon. Bonvolu legi la dosieron \"INSTALL.txt\" por trovi instrukciojn." - -#: mod/install.php:500 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php estas skribebla." - -#: mod/install.php:510 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" - -#: mod/install.php:511 -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 "" - -#: mod/install.php:512 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "" - -#: mod/install.php:513 -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 "" - -#: mod/install.php:516 -msgid "view/smarty3 is writable" -msgstr "" - -#: mod/install.php:532 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "Url rewrite en .htaccess ne funkcias. Kontrolu la agordojn de la servilo." - -#: mod/install.php:534 -msgid "Url rewrite is working" -msgstr "URL rewrite funkcias." - -#: mod/install.php:552 -msgid "ImageMagick PHP extension is not installed" -msgstr "" - -#: mod/install.php:555 -msgid "ImageMagick PHP extension is installed" -msgstr "" - -#: mod/install.php:557 -msgid "ImageMagick supports GIF" -msgstr "" - -#: mod/install.php:566 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Ne povis skribi la datumbaza agordoj en la dosiero \".htconfig.php\". Bonvolu uzi la inkluzivan tekston por krei agordan dosieron en la baza dosierujo de la retservilo." - -#: mod/install.php:605 +#: src/Module/Install.php:348 msgid "

    What next

    " msgstr "

    Kio sekvas nun?

    " -#: mod/install.php:606 +#: src/Module/Install.php:349 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "GRAVA: Vi bezonas [mane] agordi planitan taskon por la Friendica poller." +"worker." +msgstr "" -#: mod/item.php:116 -msgid "Unable to locate original post." -msgstr "Ne eblas trovi originalan afiŝon." +#: src/Module/Install.php:352 +#, 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 "" -#: mod/item.php:341 -msgid "Empty post discarded." -msgstr "Forviŝis malplenan afiŝon." +#: src/Module/Invite.php:57 +msgid "Total invitation limit exceeded." +msgstr "" -#: mod/item.php:902 -msgid "System error. Post not saved." -msgstr "Sistema eraro. Afiŝo ne registrita." +#: src/Module/Invite.php:82 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Ne estas valida retpoŝtadreso." -#: mod/item.php:992 +#: src/Module/Invite.php:108 +msgid "Please join us on Friendica" +msgstr "Bonvolu aliĝi kun ni ĉe Friendica" + +#: src/Module/Invite.php:117 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "" + +#: src/Module/Invite.php:121 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: La livero de la mesaĝo malsukcesis." + +#: src/Module/Invite.php:125 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "Sendis %d mesaĝon." +msgstr[1] "Sendis %d mesaĝojn." + +#: src/Module/Invite.php:143 +msgid "You have no more invitations available" +msgstr "Vi ne plu disponeblas invitaĵojn" + +#: src/Module/Invite.php:150 +#, 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 "Vizitu %s por listo de publikaj retejoj kie vi povas aliĝi. Anoj de Friendica ĉe aliaj retejoj povas konekti unu kun la alian, kaj ankaŭ kun membroj de multaj aliaj retejoj." + +#: src/Module/Invite.php:152 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Por akcepti ĉi tiu invito, bonvolu viziti kaj registriĝi ĉe %s au alia publika Friendica retejo." + +#: src/Module/Invite.php:153 +#, 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 "Ĉiuj Friendica retejoj interkonektiĝas kaj kune faras grandan altprivatecan interkonan reton, kiun posedas kaj kontrolas ĝiaj membroj. Ili ankaŭ povas konekti kun multe de tradiciaj interkonaj retejoj. Vidu %s por listo de publikaj retejoj kie vi povas aliĝi." + +#: src/Module/Invite.php:157 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Senkulpigu nin. La sistemo nuntempe ne estas agordita por konekti al aliaj retejoj au inviti membrojn." + +#: src/Module/Invite.php:160 +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks." +msgstr "" + +#: src/Module/Invite.php:159 +#, php-format +msgid "To accept this invitation, please visit and register at %s." +msgstr "" + +#: src/Module/Invite.php:167 +msgid "Send invitations" +msgstr "Sendi invitojn" + +#: src/Module/Invite.php:168 +msgid "Enter email addresses, one per line:" +msgstr "Entajpu retpoŝtadresojn, po unu por ĉiu linio." + +#: src/Module/Invite.php:172 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Ni bonkore invitas vin aliĝi kun ni kaj aliaj bonaj amikoj ĉe Friendica. Helpu nin krei pli bonan interkonan reton." + +#: src/Module/Invite.php:174 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Vi bezonas ĉi-tiun invitkodon: $invite_code" + +#: src/Module/Invite.php:174 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Kiam vi registris, bonvolu konekti al mi pere de mi profilo ĉe: " + +#: src/Module/Invite.php:176 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendi.ca" +msgstr "" + +#: src/Module/Item/Compose.php:85 +msgid "Please enter a post body." +msgstr "" + +#: src/Module/Item/Compose.php:98 +msgid "This feature is only available with the frio theme." +msgstr "" + +#: src/Module/Item/Compose.php:122 +msgid "Compose new personal note" +msgstr "" + +#: src/Module/Item/Compose.php:131 +msgid "Compose new post" +msgstr "" + +#: src/Module/Item/Compose.php:187 +msgid "Visibility" +msgstr "" + +#: src/Module/Item/Compose.php:203 +msgid "Clear the location" +msgstr "" + +#: src/Module/Item/Compose.php:204 +msgid "Location services are unavailable on your device" +msgstr "" + +#: src/Module/Item/Compose.php:205 +msgid "" +"Location services are disabled. Please check the website's permissions on " +"your device" +msgstr "" + +#: src/Module/Item/Compose.php:211 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "" + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "" + +#: src/Module/Item/Follow.php:51 +msgid "Unable to follow this item." +msgstr "" + +#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +msgid "System down for maintenance" +msgstr "" + +#: 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 "" + +#: src/Module/Manifest.php:40 +msgid "A Decentralized Social Network" +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Dosieroj" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload" +msgstr "Alŝuti" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "Alŝutado malsukcesis." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:68 +msgid "Unable to process image." +msgstr "Ne eblas procedi la bildon." + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:95 +msgid "Image upload failed." +msgstr "Alŝuto de bildo malsukcesis." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "Normala Kontopaĝo" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "Soapbox Paĝo" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "Aŭtomata Amiko Paĝo" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "elekti ĉiujn" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +msgid "Blocked server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "" + +#: src/Module/Moderation/Item/Delete.php:65 +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 "" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Elemento ne trovita" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "" + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "" + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Normala konto" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Aŭtomata Amika Konto" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Blogkonto" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Registrataj uzantoj" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Okazontaj registradoj" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s uzanto forviŝita" +msgstr[1] "%s uzanto forviŝitaj" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Dato de registrado" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "Plej ĵusa ensaluto" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "La elektitaj uzantkontoj estas forviŝotaj!\\n\\nĈiuj elementoj kiujn ili afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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 "La uzanto {0} estas forviŝota!\\n\\nĈiuj elementoj kiujn li afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "" + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "" + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Konto aprobita." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Dato de peto" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "Neniom da registriĝoj." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Negi" + +#: src/Module/Notifications/Introductions.php:99 +msgid "Show Ignored Requests" +msgstr "Montri ignoritajn petojn" + +#: src/Module/Notifications/Introductions.php:99 +msgid "Hide Ignored Requests" +msgstr "Kaŝi ignoritajn petojn" + +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 +msgid "Notification type:" +msgstr "" + +#: src/Module/Notifications/Introductions.php:118 +msgid "Suggested by:" +msgstr "" + +#: src/Module/Notifications/Introductions.php:143 +msgid "Claims to be known to you: " +msgstr "Pensas ke vi konas ilin:" + +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "No" +msgstr "Ne" + +#: src/Module/Notifications/Introductions.php:152 +msgid "Shall your connection be bidirectional or not?" +msgstr "" + +#: src/Module/Notifications/Introductions.php:153 +#, 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 "" + +#: src/Module/Notifications/Introductions.php:154 +#, 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 "" + +#: src/Module/Notifications/Introductions.php:156 +msgid "Friend" +msgstr "Amiko" + +#: src/Module/Notifications/Introductions.php:157 +msgid "Subscriber" +msgstr "" + +#: src/Module/Notifications/Introductions.php:216 +msgid "No introductions." +msgstr "Neniom da prezentoj" + +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 +#, php-format +msgid "No more %s notifications." +msgstr "" + +#: src/Module/Notifications/Notification.php:135 +msgid "You must be logged in to show this page." +msgstr "" + +#: src/Module/Notifications/Notifications.php:66 +msgid "Network Notifications" +msgstr "Retaj Atentigoj" + +#: src/Module/Notifications/Notifications.php:72 +msgid "System Notifications" +msgstr "Sistemaj Atentigoj" + +#: src/Module/Notifications/Notifications.php:78 +msgid "Personal Notifications" +msgstr "Personaj Atentigoj" + +#: src/Module/Notifications/Notifications.php:84 +msgid "Home Notifications" +msgstr "Hejmrilataj atentigoj" + +#: src/Module/Notifications/Notifications.php:140 +msgid "Show unread" +msgstr "" + +#: src/Module/Notifications/Ping.php:246 +msgid "{0} requested registration" +msgstr "{0} petis registradon" + +#: src/Module/Notifications/Ping.php:255 +#, php-format +msgid "{0} and %d others requested registration" +msgstr "" + +#: src/Module/OAuth/Acknowledge.php:51 +msgid "Authorize application connection" +msgstr "Rajtigi programkonekton" + +#: src/Module/OAuth/Acknowledge.php:53 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn kaj/aŭ krei novajn afiŝojn?" + +#: src/Module/OAuth/Authorize.php:54 +msgid "Unsupported or missing response type" +msgstr "" + +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +msgid "Incomplete request data" +msgstr "" + +#: 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:83 +msgid "Invalid data or unknown client" +msgstr "" + +#: src/Module/OAuth/Token.php:108 +msgid "Unsupported or missing grant type" +msgstr "" + +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "" + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "" + +#: src/Module/PermissionTooltip.php:49 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "" + +#: src/Module/PermissionTooltip.php:79 +msgid "Model not found" +msgstr "" + +#: src/Module/PermissionTooltip.php:94 +msgid "Unlisted" +msgstr "" + +#: src/Module/PermissionTooltip.php:112 +msgid "Remote privacy information not available." +msgstr "Informoj pri fora privateca ne estas disponebla." + +#: src/Module/PermissionTooltip.php:121 +msgid "Visible to:" +msgstr "Videbla al:" + +#: src/Module/PermissionTooltip.php:204 +#, php-format +msgid "Collection (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:208 +#, php-format +msgid "Followers (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:227 +#, php-format +msgid "%d more" +msgstr "" + +#: src/Module/PermissionTooltip.php:231 +#, php-format +msgid "To: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:234 +#, php-format +msgid "CC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:237 +#, php-format +msgid "BCC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "" + +#: src/Module/Photo.php:130 +msgid "The Photo is not available." +msgstr "" + +#: src/Module/Photo.php:155 +#, php-format +msgid "The Photo with id %s is not available." +msgstr "" + +#: src/Module/Photo.php:192 +#, php-format +msgid "Invalid external resource with url %s." +msgstr "" + +#: src/Module/Photo.php:194 +#, php-format +msgid "Invalid photo with id %s." +msgstr "" + +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "" + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Redakti afiŝon" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "TTT ligilo" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Alglui ligilon de video" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "video ligilo" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Alglui ligilon de sono" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "sono ligilo" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Forviŝi markon" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Elektu forviŝontan markon:" + +#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Forviŝi" + +#: src/Module/Profile/Contacts.php:159 +msgid "No contacts." +msgstr "Neniu kontaktojn." + +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:59 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "" + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "Bilddosiero estas malplena." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "Vidi albumon" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +msgid "Profile not found." +msgstr "Profilo ne trovita." + +#: src/Module/Profile/Profile.php:158 +#, php-format +msgid "" +"You're currently viewing your profile as %s Cancel" +msgstr "" + +#: src/Module/Profile/Profile.php:167 +msgid "Full Name:" +msgstr "Plena Nomo:" + +#: src/Module/Profile/Profile.php:172 +msgid "Member since:" +msgstr "" + +#: src/Module/Profile/Profile.php:178 +msgid "j F, Y" +msgstr "j F, Y" + +#: src/Module/Profile/Profile.php:179 +msgid "j F" +msgstr "j F" + +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 +msgid "Birthday:" +msgstr "Naskiĝtago:" + +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +msgid "Age: " +msgstr "Aĝo:" + +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#, php-format +msgid "%d year old" +msgid_plural "%d years old" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "Priskribo" + +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "" + +#: src/Module/Profile/Profile.php:273 +msgid "View profile as:" +msgstr "" + +#: src/Module/Profile/Profile.php:290 +msgid "View as" +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "Profilo ne estas disponebla." + +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "Nevalida adreso." + +#: src/Module/Profile/RemoteFollow.php:95 +msgid "The provided profile link doesn't seem to be valid" +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:100 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:128 +msgid "Friend/Connection Request" +msgstr "Prezento / Konektpeto" + +#: src/Module/Profile/RemoteFollow.php:129 +#, 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 "" + +#: src/Module/Profile/RemoteFollow.php:130 +#, 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 "" + +#: src/Module/Profile/RemoteFollow.php:131 +msgid "Your Webfinger address or profile URL:" +msgstr "" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "" + +#: src/Module/Profile/Schedule.php:83 +msgid "Scheduled" +msgstr "" + +#: src/Module/Profile/Schedule.php:84 +msgid "Content" +msgstr "" + +#: src/Module/Profile/Schedule.php:85 +msgid "Remove post" +msgstr "" + +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "" + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Ne eblas kontroli vian hejmlokon." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "" + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Number of daily wall messages for %s exceeded. Messaĝo malsukcesis." + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "Se vi deziras ke %s respondu, bonvolu kontroli ke la privatecaj agordoj je via retejo permesas privatajn mesaĝojn de nekonataj sendantoj." + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "" + +#: src/Module/Register.php:84 +msgid "Only parent users can create additional accounts." +msgstr "" + +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "La retejo transiras la maksimuman kvanton da ĉiutagaj kontaj registradoj. Bonvolu provi denove morgaŭ." + +#: src/Module/Register.php:116 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." +msgstr "" + +#: src/Module/Register.php:117 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Se vi ne konas OpenID, bonvolu lasi tiun kampon malplena kaj entajpu la aliajn elementojn." + +#: src/Module/Register.php:118 +msgid "Your OpenID (optional): " +msgstr "Via OpenID (nedeviga):" + +#: src/Module/Register.php:127 +msgid "Include your profile in member directory?" +msgstr "Aldoni vian profilon al la membrokatalogo?" + +#: src/Module/Register.php:148 +msgid "Note for the admin" +msgstr "" + +#: src/Module/Register.php:148 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "" + +#: src/Module/Register.php:149 +msgid "Membership on this site is by invitation only." +msgstr "Membriĝi ĉi tie nur eblas laŭ invito." + +#: src/Module/Register.php:150 +msgid "Your invitation code: " +msgstr "" + +#: src/Module/Register.php:158 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: src/Module/Register.php:159 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "" + +#: src/Module/Register.php:160 +msgid "Please repeat your e-mail address:" +msgstr "" + +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 +msgid "New Password:" +msgstr "Nova pasvorto:" + +#: src/Module/Register.php:162 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 +msgid "Confirm:" +msgstr "Konfirmi:" + +#: src/Module/Register.php:164 +#, php-format +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be \"nickname@%s\"." +msgstr "" + +#: src/Module/Register.php:165 +msgid "Choose a nickname: " +msgstr "Elektu kaŝnomon: " + +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "" + +#: src/Module/Register.php:174 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: src/Module/Register.php:181 +msgid "Note: This node explicitly contains adult content" +msgstr "" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "Parent Password:" +msgstr "" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "" + +#: src/Module/Register.php:212 +msgid "Password doesn't match." +msgstr "" + +#: src/Module/Register.php:218 +msgid "Please enter your password." +msgstr "" + +#: src/Module/Register.php:260 +msgid "You have entered too much information." +msgstr "" + +#: src/Module/Register.php:283 +msgid "Please enter the identical mail address in the second field." +msgstr "" + +#: src/Module/Register.php:310 +msgid "The additional account was created." +msgstr "" + +#: src/Module/Register.php:335 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrado sukcesis. Bonvolu kontroli vian retpoŝton por pli da instruoj." + +#: src/Module/Register.php:342 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "" + +#: src/Module/Register.php:348 +msgid "Registration successful." +msgstr "" + +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 +msgid "Your registration can not be processed." +msgstr "Mi ne povas prilabori vian registradon." + +#: src/Module/Register.php:363 +msgid "You have to leave a request note for the admin." +msgstr "" + +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "" + +#: src/Module/Register.php:395 +msgid "Your registration is pending approval by the site owner." +msgstr "Via registrado bezonas apropbon de la administranto." + +#: src/Module/Search/Acl.php:73 +msgid "You must be logged in to use this module." +msgstr "" + +#: src/Module/Search/Index.php:69 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: src/Module/Search/Index.php:89 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: src/Module/Search/Index.php:205 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: src/Module/Search/Saved.php:59 +msgid "Search term was not saved." +msgstr "" + +#: src/Module/Search/Saved.php:62 +msgid "Search term already saved." +msgstr "" + +#: src/Module/Search/Saved.php:68 +msgid "Search term was not removed." +msgstr "" + +#: src/Module/Security/Login.php:123 +msgid "Create a New Account" +msgstr "Krei Novan Konton" + +#: src/Module/Security/Login.php:142 +msgid "Your OpenID: " +msgstr "" + +#: src/Module/Security/Login.php:145 +msgid "" +"Please enter your username and password to add the OpenID to your existing " +"account." +msgstr "" + +#: src/Module/Security/Login.php:147 +msgid "Or login using OpenID: " +msgstr "Aŭ ensaluti per OpenID:" + +#: src/Module/Security/Login.php:161 +msgid "Password: " +msgstr "Pasvorto:" + +#: src/Module/Security/Login.php:162 +msgid "Remember me" +msgstr "" + +#: src/Module/Security/Login.php:171 +msgid "Forgot your password?" +msgstr "Ĉu vi vorgesis vian pasvorton?" + +#: src/Module/Security/Login.php:174 +msgid "Website Terms of Service" +msgstr "" + +#: src/Module/Security/Login.php:175 +msgid "terms of service" +msgstr "" + +#: src/Module/Security/Login.php:177 +msgid "Website Privacy Policy" +msgstr "" + +#: src/Module/Security/Login.php:178 +msgid "privacy policy" +msgstr "" + +#: src/Module/Security/Logout.php:84 +#: src/Module/Security/TwoFactor/SignOut.php:78 +#: src/Module/Security/TwoFactor/SignOut.php:86 +#: src/Module/Security/TwoFactor/SignOut.php:108 +#: src/Module/Security/TwoFactor/SignOut.php:115 +msgid "Logged out." +msgstr "Elsalutita." + +#: src/Module/Security/OpenID.php:54 +msgid "OpenID protocol error. No ID returned" +msgstr "" + +#: src/Module/Security/OpenID.php:90 +msgid "" +"Account not found. Please login to your existing account to add the OpenID " +"to it." +msgstr "" + +#: src/Module/Security/OpenID.php:92 +msgid "" +"Account not found. Please register a new account or login to your existing " +"account to add the OpenID to it." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 +msgid "Passwords do not match." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:64 +msgid "Password does not need changing." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 +msgid "Password unchanged." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:91 +msgid "Password Too Long" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:92 +msgid "" +"Since version 2022.09, we've realized that any password longer than 72 " +"characters is truncated during hashing. To prevent any confusion about this " +"behavior, please update your password to be fewer or equal to 72 characters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:93 +msgid "Update Password" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Current Password:" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Your current password to confirm the changes" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces and accentuated letters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 +msgid "Password length is limited to 72 characters." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:74 +#, php-format +msgid "Remaining recovery codes: %d" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:80 +#: src/Module/Security/TwoFactor/Verify.php:77 +#: src/Module/Settings/TwoFactor/Verify.php:95 +msgid "Invalid code, please retry." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:99 +msgid "Two-factor recovery" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:100 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:101 +#, php-format +msgid "Don’t have your phone? Enter a two-factor recovery code" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:102 +msgid "Please enter a recovery code" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:103 +msgid "Submit recovery code and complete login" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:122 +msgid "Sign out of this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:123 +msgid "" +"

    If you trust this browser, you will not be asked for verification code " +"the next time you sign in.

    " +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:124 +msgid "Sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:126 +msgid "Trust and sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:96 +msgid "Couldn't save browser to Cookie." +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:141 +msgid "Trust this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:142 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:143 +msgid "Not now" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:144 +msgid "Don't trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:145 +msgid "Trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:97 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:100 +#, php-format +msgid "" +"If you do not have access to your authentication code you can use a two-factor recovery code." +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Please enter a code from your authentication app" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:102 +msgid "Verify code and complete login" +msgstr "" + +#: src/Module/Settings/Account.php:96 +msgid "Please use a shorter name." +msgstr "" + +#: src/Module/Settings/Account.php:99 +msgid "Name too short." +msgstr "" + +#: src/Module/Settings/Account.php:108 +msgid "Wrong Password." +msgstr "" + +#: src/Module/Settings/Account.php:113 +msgid "Invalid email." +msgstr "" + +#: src/Module/Settings/Account.php:117 +msgid "Cannot change to that email." +msgstr "" + +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 +msgid "Settings were not updated." +msgstr "" + +#: src/Module/Settings/Account.php:364 +msgid "Contact CSV file upload error" +msgstr "" + +#: src/Module/Settings/Account.php:383 +msgid "Importing Contacts done" +msgstr "" + +#: src/Module/Settings/Account.php:396 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: src/Module/Settings/Account.php:413 +msgid "Unable to find your profile. Please contact your admin." +msgstr "" + +#: src/Module/Settings/Account.php:455 +msgid "Personal Page Subtypes" +msgstr "" + +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" +msgstr "" + +#: src/Module/Settings/Account.php:466 +msgid "Account for a personal profile." +msgstr "" + +#: src/Module/Settings/Account.php:473 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:480 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:487 +msgid "Account for community discussions." +msgstr "" + +#: src/Module/Settings/Account.php:494 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:501 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:508 +msgid "Automatically approves all contact requests." +msgstr "" + +#: src/Module/Settings/Account.php:515 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "" + +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "" + +#: src/Module/Settings/Account.php:522 +msgid "Requires manual approval of contact requests." +msgstr "" + +#: src/Module/Settings/Account.php:531 +msgid "OpenID:" +msgstr "OpenID:" + +#: src/Module/Settings/Account.php:531 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Nedeviga) Permesi atingon al la konton al ĉi tio OpenID." + +#: src/Module/Settings/Account.php:539 +msgid "Publish your profile in your local site directory?" +msgstr "" + +#: src/Module/Settings/Account.php:539 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "" + +#: src/Module/Settings/Account.php:545 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "" + +#: src/Module/Settings/Account.php:558 +msgid "Account Settings" +msgstr "Kontoagordoj" + +#: src/Module/Settings/Account.php:559 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: src/Module/Settings/Account.php:566 +msgid "Password Settings" +msgstr "Agordoj pri Pasvorto" + +#: src/Module/Settings/Account.php:568 +msgid "Leave password fields blank unless changing" +msgstr "Lasu pasvortkampojn malplenaj se vi ne ŝanĝas la pasvorton." + +#: src/Module/Settings/Account.php:570 +msgid "Password:" +msgstr "" + +#: src/Module/Settings/Account.php:570 +msgid "Your current password to confirm the changes of the email address" +msgstr "" + +#: src/Module/Settings/Account.php:573 +msgid "Delete OpenID URL" +msgstr "" + +#: src/Module/Settings/Account.php:575 +msgid "Basic Settings" +msgstr "Bazaj Agordoj" + +#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "" + +#: src/Module/Settings/Account.php:577 +msgid "Email Address:" +msgstr "Retpoŝtadreso:" + +#: src/Module/Settings/Account.php:578 +msgid "Your Timezone:" +msgstr "Via Horzono:" + +#: src/Module/Settings/Account.php:579 +msgid "Your Language:" +msgstr "" + +#: src/Module/Settings/Account.php:579 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: src/Module/Settings/Account.php:580 +msgid "Default Post Location:" +msgstr "Defaŭlta Loko por Afiŝoj:" + +#: src/Module/Settings/Account.php:581 +msgid "Use Browser Location:" +msgstr "Uzu Lokon laŭ Retesplorilo:" + +#: src/Module/Settings/Account.php:583 +msgid "Security and Privacy Settings" +msgstr "Agordoj pri Sekureco kaj Privateco" + +#: src/Module/Settings/Account.php:585 +msgid "Maximum Friend Requests/Day:" +msgstr "Taga maksimumo da kontaktpetoj:" + +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 +msgid "(to prevent spam abuse)" +msgstr "(por malhelpi spamaĵojn)" + +#: src/Module/Settings/Account.php:587 +msgid "Allow your profile to be searchable globally?" +msgstr "" + +#: src/Module/Settings/Account.php:587 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "" + +#: src/Module/Settings/Account.php:588 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "" + +#: src/Module/Settings/Account.php:588 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "" +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "Make public posts unlisted" +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "" + +#: src/Module/Settings/Account.php:591 +msgid "Make all posted pictures accessible" +msgstr "" + +#: src/Module/Settings/Account.php:591 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "" + +#: src/Module/Settings/Account.php:592 +msgid "Allow friends to post to your profile page?" +msgstr "Ĉu amikoj povu afiŝi al via profilo?" + +#: src/Module/Settings/Account.php:592 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "" + +#: src/Module/Settings/Account.php:593 +msgid "Allow friends to tag your posts?" +msgstr "Ĉu amikoj povu aldoni markojn al viaj afiŝoj?" + +#: src/Module/Settings/Account.php:593 +msgid "Your contacts can add additional tags to your posts." +msgstr "" + +#: src/Module/Settings/Account.php:594 +msgid "Permit unknown people to send you private mail?" +msgstr "Permesigi nekonatulojn sendi retpoŝton al vi?" + +#: src/Module/Settings/Account.php:594 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "" + +#: src/Module/Settings/Account.php:595 +msgid "Maximum private messages per day from unknown people:" +msgstr "Taga maksimumo da privataj mesaĝoj." + +#: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "" + +#: src/Module/Settings/Account.php:598 +msgid "Default Post Permissions" +msgstr "Defaŭltaj permesoj por afiŝoj" + +#: src/Module/Settings/Account.php:602 +msgid "Expiration settings" +msgstr "" + +#: src/Module/Settings/Account.php:603 +msgid "Automatically expire posts after this many days:" +msgstr "Automatike senvalidigi afiŝojn post tiom da tagoj:" + +#: src/Module/Settings/Account.php:603 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Se malplena, afiŝoj neniam senvalidiĝos. Senvalidigitajn afiŝon estos forviŝata" + +#: src/Module/Settings/Account.php:604 +msgid "Expire posts" +msgstr "" + +#: src/Module/Settings/Account.php:604 +msgid "When activated, posts and comments will be expired." +msgstr "" + +#: src/Module/Settings/Account.php:605 +msgid "Expire personal notes" +msgstr "" + +#: src/Module/Settings/Account.php:605 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "" + +#: src/Module/Settings/Account.php:606 +msgid "Expire starred posts" +msgstr "" + +#: src/Module/Settings/Account.php:606 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "" + +#: src/Module/Settings/Account.php:607 +msgid "Only expire posts by others" +msgstr "" + +#: src/Module/Settings/Account.php:607 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "" + +#: src/Module/Settings/Account.php:610 +msgid "Notification Settings" +msgstr "Agordoj pri Atentigoj" + +#: src/Module/Settings/Account.php:611 +msgid "Send a notification email when:" +msgstr "Sendu atentiga repoŝton se:" + +#: src/Module/Settings/Account.php:612 +msgid "You receive an introduction" +msgstr "Vi ricevas inviton" + +#: src/Module/Settings/Account.php:613 +msgid "Your introductions are confirmed" +msgstr "Viaj prezentoj estas konfirmata." + +#: src/Module/Settings/Account.php:614 +msgid "Someone writes on your profile wall" +msgstr "Iu skribas je via profila muro." + +#: src/Module/Settings/Account.php:615 +msgid "Someone writes a followup comment" +msgstr "Iu skribas sekvan komenton" + +#: src/Module/Settings/Account.php:616 +msgid "You receive a private message" +msgstr "Vi ricevas privatan mesaĝon." + +#: src/Module/Settings/Account.php:617 +msgid "You receive a friend suggestion" +msgstr "Vi ricevas amikosugeston" + +#: src/Module/Settings/Account.php:618 +msgid "You are tagged in a post" +msgstr "Vi estas markita en afiŝon" + +#: src/Module/Settings/Account.php:620 +msgid "Create a desktop notification when:" +msgstr "" + +#: src/Module/Settings/Account.php:621 +msgid "Someone tagged you" +msgstr "" + +#: src/Module/Settings/Account.php:622 +msgid "Someone directly commented on your post" +msgstr "" + +#: src/Module/Settings/Account.php:623 +msgid "Someone liked your content" +msgstr "" + +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +msgid "Can only be enabled, when the direct comment notification is enabled." +msgstr "" + +#: src/Module/Settings/Account.php:624 +msgid "Someone shared your content" +msgstr "" + +#: src/Module/Settings/Account.php:625 +msgid "Someone commented in your thread" +msgstr "" + +#: src/Module/Settings/Account.php:626 +msgid "Someone commented in a thread where you commented" +msgstr "" + +#: src/Module/Settings/Account.php:627 +msgid "Someone commented in a thread where you interacted" +msgstr "" + +#: src/Module/Settings/Account.php:629 +msgid "Activate desktop notifications" +msgstr "" + +#: src/Module/Settings/Account.php:629 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: src/Module/Settings/Account.php:633 +msgid "Text-only notification emails" +msgstr "" + +#: src/Module/Settings/Account.php:635 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: src/Module/Settings/Account.php:639 +msgid "Show detailled notifications" +msgstr "" + +#: src/Module/Settings/Account.php:641 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "" + +#: src/Module/Settings/Account.php:645 +msgid "Show notifications of ignored contacts" +msgstr "" + +#: src/Module/Settings/Account.php:647 +msgid "" +"You don't see posts from ignored contacts. But you still see their comments." +" This setting controls if you want to still receive regular notifications " +"that are caused by ignored contacts or not." +msgstr "" + +#: src/Module/Settings/Account.php:650 +msgid "Advanced Account/Page Type Settings" +msgstr "Detalaj Agordoj pri Tipo de Konto/Paĝo." + +#: src/Module/Settings/Account.php:651 +msgid "Change the behaviour of this account for special situations" +msgstr "Agordi la teniĝon de la konto en specialaj situacioj" + +#: src/Module/Settings/Account.php:654 +msgid "Import Contacts" +msgstr "" + +#: src/Module/Settings/Account.php:655 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "" + +#: src/Module/Settings/Account.php:656 +msgid "Upload File" +msgstr "" + +#: src/Module/Settings/Account.php:659 +msgid "Relocate" +msgstr "" + +#: src/Module/Settings/Account.php:660 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: src/Module/Settings/Account.php:661 +msgid "Resend relocate message to contacts" +msgstr "" + +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "Ne sukcesis konekti al retpoŝtkonto kun la provizitaj agordoj." + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "Retpoŝta atingo ne disponeblas ĉi tie." + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "Nenio" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "" + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "Agordoj pri Retpoŝto" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Se vi volas uzi ĉi tiun servon por komuniki per retpoŝto (nedeviga), bonvolu specifi kiel konekti al vian retpoŝtkonton." + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "Plej ĵusa sukcesa kontrolo de poŝto:" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "Nomo de IMAP servilo:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "Numero de IMAP pordo:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "Sekureco:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "Retpoŝta salutnomo:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "Retpoŝta pasvorto:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "Responda adreso (Reply-to):" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "Sendu publikajn afiŝojn al ĉiuj retpoŝtkontaktoj:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "Ago post la importado:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "Movi al dosierujo" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "Movi al dosierujo:" + +#: src/Module/Settings/Delegation.php:54 +msgid "Delegation successfully granted." +msgstr "" + +#: src/Module/Settings/Delegation.php:56 +msgid "Parent user not found, unavailable or password doesn't match." +msgstr "" + +#: src/Module/Settings/Delegation.php:60 +msgid "Delegation successfully revoked." +msgstr "" + +#: src/Module/Settings/Delegation.php:82 +#: src/Module/Settings/Delegation.php:104 +msgid "" +"Delegated administrators can view but not change delegation permissions." +msgstr "" + +#: src/Module/Settings/Delegation.php:96 +msgid "Delegate user not found." +msgstr "" + +#: src/Module/Settings/Delegation.php:144 +msgid "No parent user" +msgstr "" + +#: src/Module/Settings/Delegation.php:155 +#: src/Module/Settings/Delegation.php:166 +msgid "Parent User" +msgstr "" + +#: src/Module/Settings/Delegation.php:163 +msgid "Additional Accounts" +msgstr "" + +#: src/Module/Settings/Delegation.php:164 +msgid "" +"Register additional accounts that are automatically connected to your " +"existing account so you can manage them from this account." +msgstr "" + +#: src/Module/Settings/Delegation.php:165 +msgid "Register an additional account" +msgstr "" + +#: src/Module/Settings/Delegation.php:169 +msgid "" +"Parent users have total control about this account, including the account " +"settings. Please double check whom you give this access." +msgstr "" + +#: src/Module/Settings/Delegation.php:173 +msgid "Delegates" +msgstr "" + +#: src/Module/Settings/Delegation.php:175 +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 "Delegitoj povas administri ĉiujn ecojn de la konto/paĝo, escepte bazaj kontoagordoj. Bonvolu ne delegitigi vian personan konton al iu al kiu vi ne plene fidas." + +#: src/Module/Settings/Delegation.php:176 +msgid "Existing Page Delegates" +msgstr "Estantaj Delegitoj de la Paĝo" + +#: src/Module/Settings/Delegation.php:178 +msgid "Potential Delegates" +msgstr "Eblaj Delegitoj" + +#: src/Module/Settings/Delegation.php:181 +msgid "Add" +msgstr "Aldoni" + +#: src/Module/Settings/Delegation.php:182 +msgid "No entries." +msgstr "Neniom da afiŝoj." + +#: src/Module/Settings/Display.php:146 +msgid "The theme you chose isn't available." +msgstr "" + +#: src/Module/Settings/Display.php:186 +#, php-format +msgid "%s - (Unsupported)" +msgstr "" + +#: src/Module/Settings/Display.php:221 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:222 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:223 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:224 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:259 +msgid "Display Settings" +msgstr "Ekranagordoj" + +#: src/Module/Settings/Display.php:261 +msgid "General Theme Settings" +msgstr "" + +#: src/Module/Settings/Display.php:262 +msgid "Custom Theme Settings" +msgstr "" + +#: src/Module/Settings/Display.php:263 +msgid "Content Settings" +msgstr "" + +#: src/Module/Settings/Display.php:264 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 +msgid "Theme settings" +msgstr "Agordoj pri la etoso" + +#: src/Module/Settings/Display.php:265 +msgid "Timelines" +msgstr "" + +#: src/Module/Settings/Display.php:272 +msgid "Display Theme:" +msgstr "Vidiga etoso:" + +#: src/Module/Settings/Display.php:273 +msgid "Mobile Theme:" +msgstr "" + +#: src/Module/Settings/Display.php:276 +msgid "Number of items to display per page:" +msgstr "" + +#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277 +msgid "Maximum of 100 items" +msgstr "Maksimume 100 eroj" + +#: src/Module/Settings/Display.php:277 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: src/Module/Settings/Display.php:278 +msgid "Update browser every xx seconds" +msgstr "Ĝisdatigu retesplorilon ĉiu xxx sekundoj" + +#: src/Module/Settings/Display.php:278 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" + +#: src/Module/Settings/Display.php:279 +msgid "Display emoticons" +msgstr "" + +#: src/Module/Settings/Display.php:279 +msgid "When enabled, emoticons are replaced with matching symbols." +msgstr "" + +#: src/Module/Settings/Display.php:280 +msgid "Infinite scroll" +msgstr "" + +#: src/Module/Settings/Display.php:280 +msgid "Automatic fetch new items when reaching the page end." +msgstr "" + +#: src/Module/Settings/Display.php:281 +msgid "Enable Smart Threading" +msgstr "" + +#: src/Module/Settings/Display.php:281 +msgid "Enable the automatic suppression of extraneous thread indentation." +msgstr "" + +#: src/Module/Settings/Display.php:282 +msgid "Display the Dislike feature" +msgstr "" + +#: src/Module/Settings/Display.php:282 +msgid "" +"Display the Dislike button and dislike reactions on posts and comments." +msgstr "" + +#: src/Module/Settings/Display.php:283 +msgid "Display the resharer" +msgstr "" + +#: src/Module/Settings/Display.php:283 +msgid "Display the first resharer as icon and text on a reshared item." +msgstr "" + +#: src/Module/Settings/Display.php:284 +msgid "Stay local" +msgstr "" + +#: src/Module/Settings/Display.php:284 +msgid "Don't go to a remote system when following a contact link." +msgstr "" + +#: src/Module/Settings/Display.php:285 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:285 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Timelines for the network page:" +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Select all the timelines that you want to see on your network page." +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Channel languages:" +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Select all languages that you want to see in your channels." +msgstr "" + +#: src/Module/Settings/Display.php:290 +msgid "Beginning of week:" +msgstr "" + +#: src/Module/Settings/Display.php:291 +msgid "Default calendar view:" +msgstr "" + +#: src/Module/Settings/Display.php:300 src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:312 +#, php-format +msgid "%s: %s" +msgstr "" + +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Konektitaj Programoj" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "Forviŝi rajtigon" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:167 +msgid "Profile couldn't be updated." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 +msgid "Label:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 +msgid "Value:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 +msgid "Field Permissions" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 +msgid "(click to open/close)" +msgstr "(klaku por malfermi/fermi)" + +#: src/Module/Settings/Profile/Index.php:224 +msgid "Add a new profile field" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:247 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:249 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:255 +msgid "Profile Actions" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:256 +msgid "Edit Profile Details" +msgstr "Redakti Detalojn de Profilo" + +#: src/Module/Settings/Profile/Index.php:258 +msgid "Change Profile Photo" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:261 +msgid "Profile picture" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:262 +msgid "Location" +msgstr "Loko" + +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 +msgid "Miscellaneous" +msgstr "Diversaj" + +#: src/Module/Settings/Profile/Index.php:264 +msgid "Custom Profile Fields" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +msgid "Upload Profile Photo" +msgstr "Alŝuti profilbildon" + +#: src/Module/Settings/Profile/Index.php:266 +#, 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 circles.

    " +msgstr "" + +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "Adreso:" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "Urbo:" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "Ŝtato:" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "Poŝtkodo:" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "Lando:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "Adreso de Hejmpaĝo:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "Publikaj ŝlosilvortoj:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Por sugesti amikoj. Videbla al aliaj.)" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "Privataj ŝlosilvortoj:" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Por serĉi profilojn. Neniam videbla al aliaj.)" + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 +#: src/Module/Settings/Profile/Photo/Index.php:101 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Malsukcesis malpligrandigi [%s] la bildon." + +#: src/Module/Settings/Profile/Photo/Crop.php:150 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Reŝarĝu la paĝon au malplenigu la kaŝmemoro de la retesplorilo se la nova bildo ne tuj aperas." + +#: src/Module/Settings/Profile/Photo/Crop.php:155 +msgid "Unable to process image" +msgstr "Ne eblas procezi bildon." + +#: src/Module/Settings/Profile/Photo/Crop.php:174 +msgid "Photo not found." +msgstr "" + +#: src/Module/Settings/Profile/Photo/Crop.php:196 +msgid "Profile picture successfully updated." +msgstr "" + +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 +msgid "Crop Image" +msgstr "Stuci Bildon" + +#: src/Module/Settings/Profile/Photo/Crop.php:223 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Bonvolu agordi la stuco de la bildo por optimuma aspekto." + +#: src/Module/Settings/Profile/Photo/Crop.php:225 +msgid "Use Image As Is" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:45 +msgid "Missing uploaded image." +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:124 +msgid "Profile Picture Settings" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:125 +msgid "Current Profile Picture" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:126 +msgid "Upload Profile Picture" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:127 +msgid "Upload Picture:" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:132 +msgid "or" +msgstr "aŭ" + +#: src/Module/Settings/Profile/Photo/Index.php:134 +msgid "skip this step" +msgstr "Preterpasi tian paŝon" + +#: src/Module/Settings/Profile/Photo/Index.php:136 +msgid "select a photo from your photo albums" +msgstr "elekti bildon el viaj albumoj" + +#: src/Module/Settings/RemoveMe.php:94 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:94 +msgid "User deleted their account" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:95 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "" + +#: src/Module/Settings/RemoveMe.php:96 +#, php-format +msgid "The user id is %d" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:108 +msgid "Your user account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:128 +msgid "Remove My Account" +msgstr "Forigi Mian Konton" + +#: src/Module/Settings/RemoveMe.php:129 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Tio tute forigos vian konton. Kiam farita, la konto ne estas restaŭrebla." + +#: src/Module/Settings/RemoveMe.php:131 +msgid "Please enter your password for verification:" +msgstr "Bonvolu entajpi vian pasvorton por kontrolado:" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "" + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 +msgid "Please enter your password to access this page." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 +msgid "App-specific password generation failed: The description is empty." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +msgid "" +"App-specific password generation failed: This description already exists." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 +msgid "New app-specific password generated." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 +msgid "App-specific passwords successfully revoked." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 +msgid "App-specific password successfully revoked." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +msgid "Two-factor app-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 +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 "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +msgid "" +"Make sure to copy your new app-specific password now. You won’t be able to " +"see it again!" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +msgid "Description" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 +msgid "Last Used" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 +msgid "Revoke" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +msgid "Revoke All" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +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 "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 +msgid "Generate new app-specific password" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 +msgid "Friendiqa on my Fairphone 2..." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +msgid "Generate" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:68 +msgid "Two-factor authentication successfully disabled." +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:124 +msgid "Authenticator app" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Configured" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Not Configured" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:126 +msgid "

    You haven't finished configuring your authenticator app.

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

    Your authenticator app is correctly configured.

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:129 +msgid "Recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:130 +msgid "Remaining valid codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:132 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:134 +msgid "App-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:135 +msgid "Generated app-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:137 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:140 +msgid "Current password:" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:140 +msgid "" +"You need to provide your current password to change two-factor " +"authentication settings." +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:141 +msgid "Enable two-factor authentication" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:142 +msgid "Disable two-factor authentication" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:143 +msgid "Show recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:144 +msgid "Manage app-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:145 +msgid "Manage trusted browsers" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:146 +msgid "Finish app configuration" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:80 +msgid "New recovery codes successfully generated." +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:106 +msgid "Two-factor recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:108 +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 "" + +#: src/Module/Settings/TwoFactor/Recovery.php:110 +msgid "" +"When you generate new recovery codes, you must copy the new codes. Your old " +"codes won’t work anymore." +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:111 +msgid "Generate new recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:113 +msgid "Next: Verification" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:84 +msgid "Trusted browsers successfully removed." +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:94 +msgid "Trusted browser successfully removed." +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:136 +msgid "Two-factor Trusted Browsers" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:137 +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 "" + +#: src/Module/Settings/TwoFactor/Trusted.php:138 +msgid "Device" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:139 +msgid "OS" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:141 +msgid "Trusted" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:142 +msgid "Created At" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:143 +msgid "Last Use" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:145 +msgid "Remove All" +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:91 +msgid "Two-factor authentication successfully activated." +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:125 +#, 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 "" + +#: src/Module/Settings/TwoFactor/Verify.php:145 +msgid "Two-factor code verification" +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:147 +msgid "" +"

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

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

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

    %s

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:156 +msgid "Verify code and enable two-factor authentication" +msgstr "" + +#: src/Module/Settings/UserExport.php:90 +msgid "Export account" +msgstr "" + +#: src/Module/Settings/UserExport.php:90 +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 "" + +#: src/Module/Settings/UserExport.php:91 +msgid "Export all" +msgstr "" + +#: src/Module/Settings/UserExport.php:91 +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 "" + +#: src/Module/Settings/UserExport.php:92 +msgid "Export Contacts to CSV" +msgstr "" + +#: src/Module/Settings/UserExport.php:92 +msgid "" +"Export the list of the accounts you are following as CSV file. Compatible to" +" e.g. Mastodon." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:37 +msgid "" +"This node has blocked the top-level author or the author of the shared post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:38 +msgid "" +"You have ignored or blocked the top-level author or the author of the shared" +" post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:39 +msgid "" +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "" + +#: src/Module/Special/HTTPException.php:78 +msgid "Stack trace:" +msgstr "" + +#: src/Module/Special/HTTPException.php:83 +#, php-format +msgid "Exception thrown in %s:%d" +msgstr "" + +#: src/Module/Tos.php:58 src/Module/Tos.php:107 +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 "" + +#: src/Module/Tos.php:59 src/Module/Tos.php:108 +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 "" + +#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#, 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/settings/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 "" + +#: src/Module/Tos.php:63 src/Module/Tos.php:106 +msgid "Privacy Statement" +msgstr "" + +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "" + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "" + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "" + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "" + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "" + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "" + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "" + +#: src/Module/Welcome.php:44 +msgid "Welcome to Friendica" +msgstr "Bonvenon ĉe Friendica" + +#: src/Module/Welcome.php:45 +msgid "New Member Checklist" +msgstr "Kontrololisto por Novaj Membroj" + +#: 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 "Lasu nin oferi al vi kelkajn konsolojn kaj ligilojn por plifaciligi vian komencon. Klaku iun elementon por viziti la rilatan paĝon. Ligilo al ĉi tiu paĝo videblos en via hejmpaĝo dum du semajnojn post via komenca membriĝo. Post du semajnoj, la ligilo silente malaperos. " + +#: src/Module/Welcome.php:48 +msgid "Getting Started" +msgstr "" + +#: src/Module/Welcome.php:49 +msgid "Friendica Walk-Through" +msgstr "" + +#: 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 "" + +#: src/Module/Welcome.php:53 +msgid "Go to Your Settings" +msgstr "" + +#: 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 "Bonvolu ŝanĝi vian pasvorton ĉe Agordoj. Krome, memorigu vian identadreson. Ĝi aspektas kiel retpoŝtadreso kaj estas bezonata por konekti al novaj amikon en la libera interkona reto." + +#: 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 "Kontrolu la aliajn agordojn, precipe la privatecajn agordojn. Nepublikigita profilo similas al havi telefonnumberon ne registrata en iu telefonlibro. Ĝenerale vi eble volas publikigi vian profilon. Alie, viaj amikoj kaj estontaj amikoj bezonas scii kiel rekte trovi vin." + +#: 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 "Enŝuti profilbildon se vi ankoraŭ ne havas ĝin. Laŭ studoj, homoj kun realaj biloj de si mem trovas novajn amikon duope pli probable ol homoj sen reala bildo." + +#: src/Module/Welcome.php:60 +msgid "Edit Your Profile" +msgstr "" + +#: 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 "Redakti viajn defaŭltan profilon kiel vi ŝatas ĝin. Kontrolu la agordojn por kaŝi vian kontaktliston aŭ kaŝi vian profilon al nekonataj vizitantoj." + +#: src/Module/Welcome.php:62 +msgid "Profile Keywords" +msgstr "" + +#: 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 "" + +#: src/Module/Welcome.php:65 +msgid "Connecting" +msgstr "" + +#: src/Module/Welcome.php:67 +msgid "Importing Emails" +msgstr "" + +#: 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 "Entajpu la akreditaĵojn por via retpoŝtkonto en la konektilagordoj se vi volas importi aŭ interagi kun amikoj aŭ dissendlistoj pere de via retkesto." + +#: src/Module/Welcome.php:69 +msgid "Go to Your Contacts Page" +msgstr "" + +#: 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 "Via kontaktpaĝo estas via portalo por administri amikojn kaj konekti kun amikoj en aliaj retoj. Vi kutime entajpas iliajn adreson aŭ URL adreso en la Aldonu Novan Kontakton dialogon." + +#: src/Module/Welcome.php:71 +msgid "Go to Your Site's Directory" +msgstr "" + +#: 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 "Ĉe la Katalogo vi povas trovi aliajn homojn en ĉi tiu retejo, au en aliaj federaciaj retejoj. Elrigardi al KonektiSekvi ligiloj ĉe iliaj profilo. Donu vian propran Identecan Adreson se la retejo demandas ĝin." + +#: src/Module/Welcome.php:73 +msgid "Finding New People" +msgstr "" + +#: 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 "En la flanka strio de la Kontaktoj paĝo troviĝas kelkajn helpilojn por trovi novajn amikojn. Ni povas automate trovi amikojn per interesoj, serĉu ilin per nomo aŭ intereso kaj faras sugestojn baze de estantaj kontaktoj. Ĉe nova instalita retejo, la unuaj sugestoj kutime aperas post 24 horoj." + +#: src/Module/Welcome.php:77 +msgid "Add Your Contacts To Circle" +msgstr "" + +#: src/Module/Welcome.php:78 +msgid "" +"Once you have made some friends, organize them into private conversation " +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "" + +#: src/Module/Welcome.php:80 +msgid "Why Aren't My Posts Public?" +msgstr "" + +#: 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 "" + +#: src/Module/Welcome.php:83 +msgid "Getting Help" +msgstr "" + +#: src/Module/Welcome.php:84 +msgid "Go to the Help Section" +msgstr "" + +#: src/Module/Welcome.php:85 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Niaj Helpo paĝoj enhavas pli da detaloj pri aliaj programaj trajtoj." + +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +msgid "{0} wants to follow you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +msgid "{0} has started following you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#, php-format +msgid "%s liked %s's post" +msgstr "%s ŝatis la afiŝon de %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s malŝatis la afiŝon de %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#, php-format +msgid "%s is attending %s's event" +msgstr "%s ĉeestos la eventon de %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#, php-format +msgid "%s is not attending %s's event" +msgstr "%s ne ĉeestos la eventon de %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#, php-format +msgid "%s may attending %s's event" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s amikiĝis kun %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s komentis pri la afiŝo de %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#, php-format +msgid "%s created a new post" +msgstr "%s kreis novan afiŝon" + +#: src/Navigation/Notifications/Factory/Introduction.php:133 +msgid "Friend Suggestion" +msgstr "Amikosugestoj" + +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "Friend/Connect Request" +msgstr "Kontaktpeto" + +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "New Follower" +msgstr "Nova abonanto" + +#: src/Navigation/Notifications/Factory/Notification.php:134 +#, php-format +msgid "%1$s wants to follow you" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:136 +#, php-format +msgid "%1$s has started following you" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:208 +#, php-format +msgid "%1$s liked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:211 +#, php-format +msgid "%1$s liked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:218 +#, php-format +msgid "%1$s disliked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:221 +#, php-format +msgid "%1$s disliked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:228 +#, php-format +msgid "%1$s shared your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 +#, php-format +msgid "%1$s shared your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:235 +#: src/Navigation/Notifications/Factory/Notification.php:305 +#, php-format +msgid "%1$s shared the post %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:237 +#: src/Navigation/Notifications/Factory/Notification.php:307 +#, php-format +msgid "%1$s shared a post from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:239 +#: src/Navigation/Notifications/Factory/Notification.php:309 +#, php-format +msgid "%1$s shared the post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:311 +#, php-format +msgid "%1$s shared a post" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:249 +#, php-format +msgid "%1$s wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:256 +#, php-format +msgid "%1$s does not want to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:263 +#, php-format +msgid "%1$s maybe wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:270 +#, php-format +msgid "%1$s tagged you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:274 +#, php-format +msgid "%1$s replied to you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:278 +#, php-format +msgid "%1$s commented in your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:282 +#, php-format +msgid "%1$s commented on your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:289 +#, php-format +msgid "%1$s commented in their thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:291 +#, php-format +msgid "%1$s commented in their thread" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:293 +#, php-format +msgid "%1$s commented in the thread %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:295 +#, php-format +msgid "%1$s commented in the thread from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:300 +#, php-format +msgid "%1$s commented on your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 +msgid "[Friendica:Notify]" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:293 +#, php-format +msgid "%s New mail received at %s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:295 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s sendis al vi novan privatan mesaĝon ĉe %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:296 +msgid "a private message" +msgstr "privatan mesaĝon" + +#: src/Navigation/Notifications/Repository/Notify.php:296 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s sendis al vi %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:298 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bonvolu viziti %s por vidi aŭ respondi viajn privatajn mesaĝojn." + +#: src/Navigation/Notifications/Repository/Notify.php:328 +#, php-format +msgid "%1$s commented on %2$s's %3$s %4$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:333 +#, php-format +msgid "%1$s commented on your %2$s %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:337 +#, php-format +msgid "%1$s commented on their %2$s %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 +#, php-format +msgid "%1$s Comment to conversation #%2$d by %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:343 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s komentis pri elemento/konversacio kiun vi sekvas." + +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Bonvolu viziti %s por vidi aŭ respondi la konversacion." + +#: src/Navigation/Notifications/Repository/Notify.php:354 +#, php-format +msgid "%s %s posted to your profile wall" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:356 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s skribis al via profilmuro ĉe %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:357 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s afiŝis al [url=%2$s]via muro[/url]" + +#: src/Navigation/Notifications/Repository/Notify.php:370 +#, php-format +msgid "%s Introduction received" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:372 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Vi ricevis prezenton de '%1$s' ĉe %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:373 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Vi ricevis [url=%1$s]prezenton[/url] de %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Vi povas vidi la profilon de li aŭ ŝi ĉe %s" + +#: src/Navigation/Notifications/Repository/Notify.php:380 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Bonvolu viziti %s por aprobi aŭ malaprobi la prezenton." + +#: src/Navigation/Notifications/Repository/Notify.php:387 +#, php-format +msgid "%s A new person is sharing with you" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:397 +#, php-format +msgid "%s You have a new follower" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:413 +#, php-format +msgid "%s Friend suggestion received" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:415 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Vi ricevis amikosugeston de '%1$s' ĉe %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:416 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Vi ricevis [url=%1$s]amikosugeston[/url] pri %2$s de %3$s." + +#: src/Navigation/Notifications/Repository/Notify.php:422 +msgid "Name:" +msgstr "Nomo:" + +#: src/Navigation/Notifications/Repository/Notify.php:423 +msgid "Photo:" +msgstr "Bildo:" + +#: src/Navigation/Notifications/Repository/Notify.php:426 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bonvolu viziti %s por aprobi aŭ malaprobi la sugeston." + +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 +#, php-format +msgid "%s Connection accepted" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:442 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:444 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:457 +#, php-format +msgid "" +"'%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." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:459 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:461 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:471 +msgid "registration request" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:473 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:474 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 +#, php-format +msgid "" +"Full Name:\t%s\n" +"Site Location:\t%s\n" +"Login Name:\t%s (%s)" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:485 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:780 +#, php-format +msgid "%s %s tagged you" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:783 +#, php-format +msgid "%s %s shared a new post" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "" + +#: src/Object/EMail/ItemCCEMail.php:42 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Ĉi mesaĝo estas sendita al vi de %s, membro de la Friendica interkona reto." -#: mod/item.php:994 +#: src/Object/EMail/ItemCCEMail.php:44 #, php-format msgid "You may visit them online at %s" msgstr "Vi povas viziti ilin rete ĉe %s" -#: mod/item.php:995 +#: src/Object/EMail/ItemCCEMail.php:45 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Bonvolu rispondi al ĉi mesaĝo kaj kontaktu la sendinto se vi ne volas ricevi tiujn mesaĝojn." -#: mod/item.php:999 +#: src/Object/EMail/ItemCCEMail.php:49 #, php-format msgid "%s posted an update." msgstr "%s publikigis afiŝon." -#: mod/network.php:398 -#, php-format -msgid "" -"Warning: This group contains %s member from a network that doesn't allow non" -" public messages." -msgid_plural "" -"Warning: This group contains %s members from a network that doesn't allow " -"non public messages." -msgstr[0] "" -msgstr[1] "" +#: src/Object/Post.php:138 +msgid "Private Message" +msgstr "Privata mesaĝo" -#: mod/network.php:401 -msgid "Messages in this group won't be send to these receivers." +#: src/Object/Post.php:142 +msgid "Public Message" msgstr "" -#: mod/network.php:529 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "La privateco de privataj mesaĝoj al ĉi tiu persono ne ĉiam estas garantita." +#: src/Object/Post.php:146 +msgid "Unlisted Message" +msgstr "" -#: mod/network.php:534 -msgid "Invalid contact." -msgstr "Nevalida kontakto." +#: src/Object/Post.php:181 +msgid "This entry was edited" +msgstr "" -#: mod/network.php:826 -msgid "Commented Order" -msgstr "Komenta Ordo" +#: src/Object/Post.php:209 +msgid "Connector Message" +msgstr "" -#: mod/network.php:829 -msgid "Sort by Comment Date" -msgstr "Ordigi laŭ Dato de Komento" +#: src/Object/Post.php:225 src/Object/Post.php:227 +msgid "Edit" +msgstr "Redakti" -#: mod/network.php:834 -msgid "Posted Order" -msgstr "Afiŝita Ordo" +#: src/Object/Post.php:261 +msgid "Delete globally" +msgstr "" -#: mod/network.php:837 -msgid "Sort by Post Date" -msgstr "Ordigi laŭ Dato de Afiŝado" +#: src/Object/Post.php:261 +msgid "Remove locally" +msgstr "" -#: mod/network.php:848 -msgid "Posts that mention or involve you" -msgstr "Afiŝoj menciantaj vin aŭ pri vi" +#: src/Object/Post.php:268 +#, php-format +msgid "Block %s" +msgstr "" -#: mod/network.php:856 -msgid "New" -msgstr "Nova" +#: src/Object/Post.php:273 +#, php-format +msgid "Ignore %s" +msgstr "" -#: mod/network.php:859 -msgid "Activity Stream - by date" -msgstr "Fluo de Aktiveco - laŭ dato" +#: src/Object/Post.php:278 +#, php-format +msgid "Collapse %s" +msgstr "" -#: mod/network.php:867 -msgid "Shared Links" -msgstr "Kunhavigitaj Ligiloj" +#: src/Object/Post.php:282 +msgid "Report post" +msgstr "" -#: mod/network.php:870 -msgid "Interesting Links" -msgstr "Interesaj Ligiloj" +#: src/Object/Post.php:293 +msgid "Save to folder" +msgstr "" -#: mod/network.php:878 -msgid "Starred" -msgstr "Steligita" +#: src/Object/Post.php:333 +msgid "I will attend" +msgstr "" -#: mod/network.php:881 -msgid "Favourite Posts" -msgstr "Favorigitaj Afiŝoj" +#: src/Object/Post.php:333 +msgid "I will not attend" +msgstr "" -#: mod/ping.php:261 -msgid "{0} wants to be your friend" -msgstr "{0} volas amikiĝi kun vi" +#: src/Object/Post.php:333 +msgid "I might attend" +msgstr "" -#: mod/ping.php:276 -msgid "{0} sent you a message" -msgstr "{0} sendis mesaĝon al vi" +#: src/Object/Post.php:363 +msgid "Ignore thread" +msgstr "" -#: mod/ping.php:291 -msgid "{0} requested registration" -msgstr "{0} petis registradon" +#: src/Object/Post.php:364 +msgid "Unignore thread" +msgstr "" -#: mod/viewcontacts.php:72 -msgid "No contacts." -msgstr "Neniu kontaktojn." +#: src/Object/Post.php:365 +msgid "Toggle ignore status" +msgstr "" -#: object/Item.php:370 +#: src/Object/Post.php:375 +msgid "Add star" +msgstr "" + +#: src/Object/Post.php:376 +msgid "Remove star" +msgstr "" + +#: src/Object/Post.php:377 +msgid "Toggle star status" +msgstr "" + +#: src/Object/Post.php:388 +msgid "Pin" +msgstr "" + +#: src/Object/Post.php:389 +msgid "Unpin" +msgstr "" + +#: src/Object/Post.php:390 +msgid "Toggle pin status" +msgstr "" + +#: src/Object/Post.php:393 +msgid "Pinned" +msgstr "" + +#: src/Object/Post.php:398 +msgid "Add tag" +msgstr "" + +#: src/Object/Post.php:411 +msgid "Quote share this" +msgstr "" + +#: src/Object/Post.php:411 +msgid "Quote Share" +msgstr "" + +#: src/Object/Post.php:414 +msgid "Reshare this" +msgstr "" + +#: src/Object/Post.php:414 +msgid "Reshare" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Cancel your Reshare" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Unshare" +msgstr "" + +#: src/Object/Post.php:466 +#, php-format +msgid "%s (Received %s)" +msgstr "" + +#: src/Object/Post.php:472 +msgid "Comment this item on your system" +msgstr "" + +#: src/Object/Post.php:472 +msgid "Remote comment" +msgstr "" + +#: src/Object/Post.php:494 +msgid "Share via ..." +msgstr "" + +#: src/Object/Post.php:494 +msgid "Share via external services" +msgstr "" + +#: src/Object/Post.php:523 +msgid "to" +msgstr "al" + +#: src/Object/Post.php:524 msgid "via" msgstr "" -#: view/theme/frio/php/Image.php:23 -msgid "Repeat the image" +#: src/Object/Post.php:525 +msgid "Wall-to-Wall" +msgstr "Muro-al-Muro" + +#: src/Object/Post.php:526 +msgid "via Wall-To-Wall:" +msgstr "per Muro-al-Muro:" + +#: src/Object/Post.php:573 +#, php-format +msgid "Reply to %s" msgstr "" -#: view/theme/frio/php/Image.php:23 -msgid "Will repeat your image to fill the background." +#: src/Object/Post.php:576 +msgid "More" msgstr "" -#: view/theme/frio/php/Image.php:25 -msgid "Stretch" +#: src/Object/Post.php:595 +msgid "Notifier task is pending" msgstr "" -#: view/theme/frio/php/Image.php:25 -msgid "Will stretch to width/height of the image." +#: src/Object/Post.php:596 +msgid "Delivery to remote servers is pending" msgstr "" -#: view/theme/frio/php/Image.php:27 -msgid "Resize fill and-clip" +#: src/Object/Post.php:597 +msgid "Delivery to remote servers is underway" msgstr "" -#: view/theme/frio/php/Image.php:27 -msgid "Resize to fill and retain aspect ratio." +#: src/Object/Post.php:598 +msgid "Delivery to remote servers is mostly done" msgstr "" -#: view/theme/frio/php/Image.php:29 -msgid "Resize best fit" +#: src/Object/Post.php:599 +msgid "Delivery to remote servers is done" msgstr "" -#: view/theme/frio/php/Image.php:29 -msgid "Resize to best fit and retain aspect ratio." +#: src/Object/Post.php:619 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d komento" +msgstr[1] "%d komentoj" + +#: src/Object/Post.php:620 +msgid "Show more" msgstr "" -#: view/theme/frio/config.php:42 -msgid "Default" +#: src/Object/Post.php:621 +msgid "Show fewer" msgstr "" -#: view/theme/frio/config.php:54 -msgid "Note: " +#: src/Object/Post.php:657 +#, php-format +msgid "Reshared by: %s" msgstr "" -#: view/theme/frio/config.php:54 -msgid "Check image permissions if all users are allowed to visit the image" +#: src/Object/Post.php:662 +#, php-format +msgid "Viewed by: %s" msgstr "" -#: view/theme/frio/config.php:62 -msgid "Select scheme" +#: src/Object/Post.php:667 +#, php-format +msgid "Liked by: %s" msgstr "" -#: view/theme/frio/config.php:63 -msgid "Navigation bar background color" +#: src/Object/Post.php:672 +#, php-format +msgid "Disliked by: %s" msgstr "" -#: view/theme/frio/config.php:64 -msgid "Navigation bar icon color " +#: src/Object/Post.php:677 +#, php-format +msgid "Attended by: %s" msgstr "" -#: view/theme/frio/config.php:65 -msgid "Link color" +#: src/Object/Post.php:682 +#, php-format +msgid "Maybe attended by: %s" msgstr "" -#: view/theme/frio/config.php:66 -msgid "Set the background color" +#: src/Object/Post.php:687 +#, php-format +msgid "Not attended by: %s" msgstr "" -#: view/theme/frio/config.php:67 -msgid "Content background transparency" +#: src/Object/Post.php:692 +#, php-format +msgid "Reacted with %s by: %s" msgstr "" -#: view/theme/frio/config.php:68 -msgid "Set the background image" +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" msgstr "" -#: view/theme/frio/theme.php:229 -msgid "Guest" +#: src/Protocol/OStatus.php:1390 +#, php-format +msgid "%s is now following %s." msgstr "" -#: view/theme/frio/theme.php:235 -msgid "Visitor" +#: src/Protocol/OStatus.php:1391 +msgid "following" +msgstr "sekvanta" + +#: src/Protocol/OStatus.php:1394 +#, php-format +msgid "%s stopped following %s." msgstr "" -#: view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Ĝisrandigo" +#: src/Protocol/OStatus.php:1395 +msgid "stopped following" +msgstr "ne plu sekvas" -#: view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Maldekstren" - -#: view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centren" - -#: view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Kolorskemo" - -#: view/theme/quattro/config.php:69 -msgid "Posts font size" +#: src/Render/FriendicaSmartyEngine.php:56 +#, php-format +msgid "The folder %s must be writable by webserver." msgstr "" -#: view/theme/quattro/config.php:70 -msgid "Textareas font size" +#: src/Security/Authentication.php:227 +msgid "Login failed." +msgstr "Ensalutado malsukcesis." + +#: src/Security/Authentication.php:272 +msgid "Login failed. Please check your credentials." msgstr "" -#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112 -msgid "Community Profiles" -msgstr "Komunumaj Profiloj" - -#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116 -msgid "Last users" -msgstr "Ĵusaj uzantoj" - -#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115 -msgid "Find Friends" -msgstr "Trovi Amikojn" - -#: view/theme/vier/theme.php:200 -msgid "Local Directory" -msgstr "Loka Katalogo" - -#: view/theme/vier/theme.php:291 -msgid "Quick Start" +#: src/Security/Authentication.php:391 +#, php-format +msgid "Welcome %s" msgstr "" -#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114 -msgid "Connect Services" -msgstr "Konekti Servojn" +#: src/Security/Authentication.php:392 +msgid "Please upload a profile photo." +msgstr "Bonvolu alŝuti profilbildon." -#: view/theme/vier/config.php:64 -msgid "Comma separated list of helper forums" +#: src/Util/EMailer/MailBuilder.php:260 +msgid "Friendica Notification" msgstr "" -#: view/theme/vier/config.php:110 -msgid "Set style" +#: src/Util/EMailer/NotifyMailBuilder.php:78 +#: src/Util/EMailer/SystemMailBuilder.php:54 +#, php-format +msgid "%1$s, %2$s Administrator" msgstr "" -#: view/theme/vier/config.php:111 -msgid "Community Pages" -msgstr "Komunumaj paĝoj" +#: src/Util/EMailer/NotifyMailBuilder.php:80 +#: src/Util/EMailer/SystemMailBuilder.php:56 +#, php-format +msgid "%s Administrator" +msgstr "" -#: view/theme/vier/config.php:113 -msgid "Help or @NewHere ?" -msgstr "Helpu aŭ @NewHere ?" +#: 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 "" -#: view/theme/duepuntozero/config.php:45 +#: src/Util/Temporal.php:172 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: src/Util/Temporal.php:280 +#, php-format +msgid "Time zone: %s Change in Settings" +msgstr "" + +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +msgid "never" +msgstr "" + +#: src/Util/Temporal.php:343 +msgid "less than a second ago" +msgstr "" + +#: src/Util/Temporal.php:352 +msgid "year" +msgstr "" + +#: src/Util/Temporal.php:352 +msgid "years" +msgstr "" + +#: src/Util/Temporal.php:353 +msgid "months" +msgstr "" + +#: src/Util/Temporal.php:354 +msgid "weeks" +msgstr "" + +#: src/Util/Temporal.php:355 +msgid "days" +msgstr "" + +#: src/Util/Temporal.php:356 +msgid "hour" +msgstr "" + +#: src/Util/Temporal.php:356 +msgid "hours" +msgstr "" + +#: src/Util/Temporal.php:357 +msgid "minute" +msgstr "" + +#: src/Util/Temporal.php:357 +msgid "minutes" +msgstr "" + +#: src/Util/Temporal.php:358 +msgid "second" +msgstr "" + +#: src/Util/Temporal.php:358 +msgid "seconds" +msgstr "" + +#: src/Util/Temporal.php:367 +#, php-format +msgid "in %1$d %2$s" +msgstr "" + +#: src/Util/Temporal.php:370 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: src/Worker/PushSubscription.php:110 +msgid "Notification from Friendica" +msgstr "" + +#: src/Worker/PushSubscription.php:111 +msgid "Empty Post" +msgstr "" + +#: view/theme/duepuntozero/config.php:68 +msgid "default" +msgstr "" + +#: view/theme/duepuntozero/config.php:69 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:46 +#: view/theme/duepuntozero/config.php:70 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:47 +#: view/theme/duepuntozero/config.php:71 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:48 +#: view/theme/duepuntozero/config.php:72 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:49 +#: view/theme/duepuntozero/config.php:73 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:50 +#: view/theme/duepuntozero/config.php:74 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:62 +#: view/theme/duepuntozero/config.php:87 msgid "Variations" msgstr "" -#: boot.php:970 -msgid "Delete this item?" -msgstr "Forviŝi ĉi tiun elementon?" - -#: boot.php:973 -msgid "show fewer" -msgstr "montri malpli" - -#: boot.php:1655 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Malsukcesis ĝisdatigi %s. Vidu la protokolojn." - -#: boot.php:1767 -msgid "Create a New Account" -msgstr "Krei Novan Konton" - -#: boot.php:1796 -msgid "Password: " -msgstr "Pasvorto:" - -#: boot.php:1797 -msgid "Remember me" +#: view/theme/frio/config.php:153 +msgid "Light (Accented)" msgstr "" -#: boot.php:1800 -msgid "Or login using OpenID: " -msgstr "Aŭ ensaluti per OpenID:" - -#: boot.php:1806 -msgid "Forgot your password?" -msgstr "Ĉu vi vorgesis vian pasvorton?" - -#: boot.php:1809 -msgid "Website Terms of Service" +#: view/theme/frio/config.php:154 +msgid "Dark (Accented)" msgstr "" -#: boot.php:1810 -msgid "terms of service" +#: view/theme/frio/config.php:155 +msgid "Black (Accented)" msgstr "" -#: boot.php:1812 -msgid "Website Privacy Policy" +#: view/theme/frio/config.php:167 +msgid "Note" msgstr "" -#: boot.php:1813 -msgid "privacy policy" +#: view/theme/frio/config.php:167 +msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: index.php:451 -msgid "toggle mobile" +#: view/theme/frio/config.php:173 +msgid "Custom" +msgstr "" + +#: view/theme/frio/config.php:174 +msgid "Legacy" +msgstr "" + +#: view/theme/frio/config.php:175 +msgid "Accented" +msgstr "" + +#: view/theme/frio/config.php:176 +msgid "Select color scheme" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Select scheme accent" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Blue" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Red" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Purple" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Green" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Pink" +msgstr "" + +#: view/theme/frio/config.php:178 +msgid "Copy or paste schemestring" +msgstr "" + +#: view/theme/frio/config.php:178 +msgid "" +"You can copy this string to share your theme with others. Pasting here " +"applies the schemestring" +msgstr "" + +#: view/theme/frio/config.php:179 +msgid "Navigation bar background color" +msgstr "" + +#: view/theme/frio/config.php:180 +msgid "Navigation bar icon color " +msgstr "" + +#: view/theme/frio/config.php:181 +msgid "Link color" +msgstr "" + +#: view/theme/frio/config.php:182 +msgid "Set the background color" +msgstr "" + +#: view/theme/frio/config.php:183 +msgid "Content background opacity" +msgstr "" + +#: view/theme/frio/config.php:184 +msgid "Set the background image" +msgstr "" + +#: view/theme/frio/config.php:185 +msgid "Background image style" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "" + +#: view/theme/frio/config.php:192 +msgid "Login page background image" +msgstr "" + +#: view/theme/frio/config.php:196 +msgid "Login page background color" +msgstr "" + +#: view/theme/frio/config.php:196 +msgid "Leave background image and color empty for theme defaults" +msgstr "" + +#: view/theme/frio/php/Image.php:39 +msgid "Top Banner" +msgstr "" + +#: view/theme/frio/php/Image.php:39 +msgid "" +"Resize image to the width of the screen and show background color below on " +"long pages." +msgstr "" + +#: view/theme/frio/php/Image.php:40 +msgid "Full screen" +msgstr "" + +#: view/theme/frio/php/Image.php:40 +msgid "" +"Resize image to fill entire screen, clipping either the right or the bottom." +msgstr "" + +#: view/theme/frio/php/Image.php:41 +msgid "Single row mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:41 +msgid "" +"Resize image to repeat it on a single row, either vertical or horizontal." +msgstr "" + +#: view/theme/frio/php/Image.php:42 +msgid "Mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:42 +msgid "Repeat image to fill the screen." +msgstr "" + +#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +msgid "Skip to main content" +msgstr "" + +#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +msgid "Back to top" +msgstr "" + +#: view/theme/frio/theme.php:211 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:214 +msgid "Visitor" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Alignment" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Left" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Center" +msgstr "" + +#: view/theme/quattro/config.php:90 +msgid "Color scheme" +msgstr "" + +#: view/theme/quattro/config.php:91 +msgid "Posts font size" +msgstr "" + +#: view/theme/quattro/config.php:92 +msgid "Textareas font size" +msgstr "" + +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" +msgstr "" + +#: view/theme/vier/config.php:131 +msgid "don't show" +msgstr "" + +#: view/theme/vier/config.php:131 +msgid "show" +msgstr "" + +#: view/theme/vier/config.php:137 +msgid "Set style" +msgstr "" + +#: view/theme/vier/config.php:138 +msgid "Community Pages" +msgstr "" + +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +msgid "Community Profiles" +msgstr "" + +#: view/theme/vier/config.php:140 +msgid "Help or @NewHere ?" +msgstr "" + +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +msgid "Connect Services" +msgstr "" + +#: view/theme/vier/config.php:142 +msgid "Find Friends" +msgstr "" + +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +msgid "Last users" +msgstr "" + +#: view/theme/vier/theme.php:234 +msgid "Quick Start" msgstr "" diff --git a/view/lang/eo/strings.php b/view/lang/eo/strings.php index 9de8196e6..e2d5a183d 100644 --- a/view/lang/eo/strings.php +++ b/view/lang/eo/strings.php @@ -5,244 +5,161 @@ function string_plural_select_eo($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Add New Contact'] = 'Aldonu Novan Kontakton'; -$a->strings['Enter address or web location'] = 'Entajpu adreson aŭ retlokon'; -$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Ekzemple: bob@example.com, http://example.com/barbara'; -$a->strings['Connect'] = 'Konekti'; -$a->strings['%d invitation available'] = [ - 0 => 'Disponeblas %d invito', - 1 => 'Disponeblas %d invitoj', +$a->strings['Unable to locate original post.'] = 'Ne eblas trovi originalan afiŝon.'; +$a->strings['Empty post discarded.'] = 'Forviŝis malplenan afiŝon.'; +$a->strings['Item not found.'] = 'Elemento ne estas trovita.'; +$a->strings['Permission denied.'] = 'Malpermesita.'; +$a->strings['No valid account found.'] = 'Ne trovis validan konton.'; +$a->strings['Password reset request issued. Check your email.'] = 'Eldonis riparadon de pasvorto. Legu vian retpoŝton.'; +$a->strings['Password reset requested at %s'] = 'Pasvorta riparado petita je %s'; +$a->strings['Request could not be verified. (You may have previously submitted it.) Password reset failed.'] = 'Ne povis konfirmi la peton. (Eble vi sendis ĝin antaŭ.) Pasvorta riparado malsukcesis.'; +$a->strings['Forgot your Password?'] = 'Ĉu vi forgesis vian pasvorton?'; +$a->strings['Enter your email address and submit to have your password reset. Then check your email for further instructions.'] = 'Entajpu vian retpoŝtadreson kaj sendu por pasvorta riparado. Poste, bonvolu legi vian retpoŝton por trovi pliajn instrukciojn.'; +$a->strings['Nickname or Email: '] = 'Salutnomo aŭ retpoŝtadreso: '; +$a->strings['Reset'] = 'Repari'; +$a->strings['Password Reset'] = 'Pasvorta riparado'; +$a->strings['Your password has been reset as requested.'] = 'Via pasvorto estis riparita laŭ via peto.'; +$a->strings['Your new password is'] = 'Via nova pasvorto estas'; +$a->strings['Save or copy your new password - and then'] = 'Memorigi vian novan pasvorton - kaj poste'; +$a->strings['click here to login'] = 'klaku ĉi tie por ensaluti'; +$a->strings['Your password may be changed from the Settings page after successful login.'] = 'Vi povas ŝangi vian pasvorton sur la paĝo agordoj kiam vi sukcese ensalutis.'; +$a->strings['New Message'] = 'Nova Mesaĝo'; +$a->strings['No recipient selected.'] = 'Neniom da ricevontoj.'; +$a->strings['Unable to locate contact information.'] = 'Ne eblas trovi kontaktajn informojn.'; +$a->strings['Message could not be sent.'] = 'Ne povas sendi la mesaĝon.'; +$a->strings['Message collection failure.'] = 'Malsukcese provis kolekti mesaĝojn.'; +$a->strings['Discard'] = 'Forviŝi'; +$a->strings['Messages'] = 'Mesaĝoj'; +$a->strings['Please enter a link URL:'] = 'Bonvolu entajpu adreson de ligilo:'; +$a->strings['Send Private Message'] = 'Sendi Privatan Mesaĝon'; +$a->strings['To:'] = 'Al:'; +$a->strings['Subject:'] = 'Temo:'; +$a->strings['Your message:'] = 'Via mesaĝo:'; +$a->strings['Upload photo'] = 'Alŝuti bildon'; +$a->strings['Insert web link'] = 'Enmeti retan adreson'; +$a->strings['Please wait'] = 'Bonvolu atendi'; +$a->strings['Submit'] = 'Sendi'; +$a->strings['No messages.'] = 'Neniom da mesaĝoj.'; +$a->strings['Message not available.'] = 'Mesaĝo nedisponebla.'; +$a->strings['Delete message'] = 'Forviŝu mesaĝon'; +$a->strings['D, d M Y - g:i A'] = 'D, d M Y - g:i A'; +$a->strings['Delete conversation'] = 'Forviŝi dialogon'; +$a->strings['No secure communications available. You may be able to respond from the sender\'s profile page.'] = 'Sekura komunikado ne disponeblas. Vi eble povus respondi sur la profilpaĝo de la sendanto.'; +$a->strings['Send Reply'] = 'Respondi'; +$a->strings['Unknown sender - %s'] = 'Nekonata sendanto - %s'; +$a->strings['You and %s'] = 'Vi kaj %s'; +$a->strings['%s and You'] = '%s kaj vi'; +$a->strings['%d message'] = [ + 0 => '%d mesaĝo', + 1 => '%d mesaĝoj', ]; -$a->strings['Find People'] = 'Trovi Homojn'; -$a->strings['Enter name or interest'] = 'Entajpu nomon aŭ intereson'; -$a->strings['Connect/Follow'] = 'Konekti/Aboni'; -$a->strings['Examples: Robert Morgenstein, Fishing'] = 'Ekzemple: Robert Morgenstein, Fishing'; -$a->strings['Find'] = 'Trovi'; -$a->strings['Friend Suggestions'] = 'Amikosugestoj'; -$a->strings['Similar Interests'] = 'Similaj Interesoj'; -$a->strings['Random Profile'] = 'Hazarda Profilo'; -$a->strings['Invite Friends'] = 'Inviti amikojn'; -$a->strings['Networks'] = 'Retoj'; -$a->strings['All Networks'] = 'Ĉiuj Retoj'; -$a->strings['Saved Folders'] = 'Konservitaj Dosierujoj'; -$a->strings['Everything'] = 'Ĉio'; -$a->strings['Categories'] = 'Kategorioj'; -$a->strings['%d contact in common'] = [ - 0 => '%d komuna kontakto', - 1 => '%d komunaj kontaktoj', -]; -$a->strings['show more'] = 'montri pli'; -$a->strings['Male'] = 'Vira'; -$a->strings['Female'] = 'Ina'; -$a->strings['Currently Male'] = 'Nuntempe Vira'; -$a->strings['Currently Female'] = 'Nuntempe Ina'; -$a->strings['Mostly Male'] = 'Ĉefe Vira'; -$a->strings['Mostly Female'] = 'Ĉefe Ina'; -$a->strings['Transgender'] = 'Transgenra'; -$a->strings['Intersex'] = 'Interseksa'; -$a->strings['Transsexual'] = 'Transseksa'; -$a->strings['Hermaphrodite'] = 'Hermafrodita'; -$a->strings['Neuter'] = 'Neŭtra'; -$a->strings['Non-specific'] = 'Nespecifa'; -$a->strings['Other'] = 'Alia'; -$a->strings['Males'] = 'Viroj'; -$a->strings['Females'] = 'Inoj'; -$a->strings['Gay'] = 'Geja'; -$a->strings['Lesbian'] = 'Lesba'; -$a->strings['No Preference'] = 'Neniu Prefero'; -$a->strings['Bisexual'] = 'Ambaŭseksema'; -$a->strings['Autosexual'] = 'Memseksema'; -$a->strings['Abstinent'] = 'Abstinema'; -$a->strings['Virgin'] = 'Virgulino'; -$a->strings['Deviant'] = 'Devia'; -$a->strings['Fetish'] = 'Fetiĉo'; -$a->strings['Oodles'] = 'Amasa'; -$a->strings['Nonsexual'] = 'Neseksa'; -$a->strings['Single'] = 'Sola'; -$a->strings['Lonely'] = 'Soleca'; -$a->strings['Available'] = 'Havebla'; -$a->strings['Unavailable'] = 'Nehavebla'; -$a->strings['Has crush'] = 'Sekrete enamiĝinta'; -$a->strings['Infatuated'] = 'Blinda amo'; -$a->strings['Dating'] = 'Rendevuanta'; -$a->strings['Unfaithful'] = 'Malfidela'; -$a->strings['Sex Addict'] = 'Seksmaniulo'; -$a->strings['Friends'] = 'Amikoj'; -$a->strings['Friends/Benefits'] = 'Amikoj/Avantaĝoj'; -$a->strings['Casual'] = 'Neformala'; -$a->strings['Engaged'] = 'Fianĉiginta'; -$a->strings['Married'] = 'Edziĝinta'; -$a->strings['Imaginarily married'] = 'Image edziĝinta'; -$a->strings['Partners'] = 'Geparuloj'; -$a->strings['Cohabiting'] = 'Kunloĝanta'; -$a->strings['Common law'] = 'Registrita partnereco '; -$a->strings['Happy'] = 'Feliĉa'; -$a->strings['Not looking'] = 'Ne interesiĝis'; -$a->strings['Swinger'] = 'Swinger'; -$a->strings['Betrayed'] = 'Trompita'; -$a->strings['Separated'] = 'Disiĝinta'; -$a->strings['Unstable'] = 'Malfirma'; -$a->strings['Divorced'] = 'Eksedziĝinta'; -$a->strings['Imaginarily divorced'] = 'Image eksedziĝinta'; -$a->strings['Widowed'] = 'Vidva'; -$a->strings['Uncertain'] = 'Ne certa'; -$a->strings['It\'s complicated'] = 'Estas komplika'; -$a->strings['Don\'t care'] = 'Egala'; -$a->strings['Ask me'] = 'Demandu min'; -$a->strings['Cannot locate DNS info for database server \'%s\''] = 'Ne trovis DNS informojn por datumbaza servilo \'%s\'.'; -$a->strings['Logged out.'] = 'Elsalutita.'; -$a->strings['Login failed.'] = 'Ensalutado malsukcesis.'; -$a->strings['We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.'] = 'Okazis problemo ensalutinta kun via OpenID. Bonvolu kontroli la ID.'; -$a->strings['The error message was:'] = 'La erarmesaĝo estis:'; -$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.'] = 'Revivigis malnovan grupon kun la sama nomo. Permesoj por estantaj elementoj eble estas validaj por la grupo kaj estontaj membroj. Se tiu ne estas kiun vi atendis, bonvolu krei alian grupon kun alia nomo.'; -$a->strings['Default privacy group for new contacts'] = 'Defaŭlta privateca grupo por novaj kontaktoj'; -$a->strings['Everybody'] = 'Ĉiuj'; -$a->strings['edit'] = 'redakti'; -$a->strings['Groups'] = 'Grupoj'; -$a->strings['Edit group'] = 'Redakti grupon'; -$a->strings['Create a new group'] = 'Krei novan grupon'; -$a->strings['Group Name: '] = 'Nomo de la grupo:'; -$a->strings['Contacts not in any group'] = 'Kontaktoj en neniu grupo'; -$a->strings['add'] = 'aldoni'; -$a->strings['Unknown | Not categorised'] = 'Nekonata | Nekatorigita'; -$a->strings['Block immediately'] = 'Bloki tuj'; -$a->strings['Shady, spammer, self-marketer'] = 'Suspekta, spamisto, memmerkatisto'; -$a->strings['Known to me, but no opinion'] = 'Konata al mi, sed mi ne havas opinion'; -$a->strings['OK, probably harmless'] = 'OK, verŝajne sendanĝera'; -$a->strings['Reputable, has my trust'] = 'Fidinda laŭ mi'; -$a->strings['Frequently'] = 'Ofte'; -$a->strings['Hourly'] = 'Ĉiuhore'; -$a->strings['Twice daily'] = 'Duope ĉiutage'; -$a->strings['Daily'] = 'Ĉiutage'; -$a->strings['Weekly'] = 'Ĉiusemajne'; -$a->strings['Monthly'] = 'Ĉiumonate'; -$a->strings['Friendica'] = 'Friendica'; -$a->strings['OStatus'] = 'OStatus'; -$a->strings['RSS/Atom'] = 'RSS/Atom'; +$a->strings['Personal Notes'] = 'Personaj Notoj'; +$a->strings['Save'] = 'Konservi'; +$a->strings['Photo Albums'] = 'Bildalbumoj'; +$a->strings['Recent Photos'] = '̂Ĵusaj bildoj'; +$a->strings['Upload New Photos'] = 'Alŝuti novajn bildojn'; +$a->strings['everybody'] = 'ĉiuj'; +$a->strings['Contact information unavailable'] = 'Kontaktoj informoj ne disponeblas'; +$a->strings['Album not found.'] = 'Albumo ne trovita.'; +$a->strings['Public access denied.'] = 'Publika atingo ne permesita.'; +$a->strings['No photos selected'] = 'Neniu bildoj elektita'; +$a->strings['Upload Photos'] = 'Alŝuti bildojn'; +$a->strings['New album name: '] = 'Nomo por nova albumo:'; +$a->strings['Do not show a status post for this upload'] = 'Ne kreu statan afiŝon por tio alŝuto.'; +$a->strings['Permissions'] = 'Permesoj'; +$a->strings['Delete Album'] = 'Forviŝi albumon'; +$a->strings['Cancel'] = 'Nuligi'; +$a->strings['Edit Album'] = 'Redakti albumon'; +$a->strings['View Photo'] = 'Vidi bildon'; +$a->strings['Permission denied. Access to this item may be restricted.'] = 'Malpermesita. Atingo al tio elemento eble estas limigita.'; +$a->strings['Photo not available'] = 'La bildo ne disponeblas'; +$a->strings['Delete Photo'] = 'Forviŝi bildon'; +$a->strings['View photo'] = 'Vidi bildon'; +$a->strings['Edit photo'] = 'Redakti bildon'; +$a->strings['Use as profile photo'] = 'Uzi kiel profilbildo'; +$a->strings['View Full Size'] = 'Vidi plengrande '; +$a->strings['Tags: '] = 'Markoj:'; +$a->strings['New album name'] = 'Nova nomo de albumo'; +$a->strings['Caption'] = 'Apudskribo'; +$a->strings['Add a Tag'] = 'Aldoni markon'; +$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Ekzemple: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'; +$a->strings['Rotate CW (right)'] = 'Turni horloĝdirekte (dekstren)'; +$a->strings['Rotate CCW (left)'] = 'Turni kontraŭhorloĝdirekte (maldekstren)'; +$a->strings['This is you'] = 'Tiu estas vi'; +$a->strings['Comment'] = 'Komenti'; +$a->strings['Preview'] = 'Antaŭrigardi'; +$a->strings['Select'] = 'Elekti'; +$a->strings['Delete'] = 'Forviŝi'; +$a->strings['I like this (toggle)'] = 'Mi ŝatas tion (ŝalti)'; +$a->strings['I don\'t like this (toggle)'] = 'Mi malŝatas tion(ŝalti)'; +$a->strings['Delete this item?'] = 'Forviŝi ĉi tiun elementon?'; +$a->strings['Page not found.'] = 'Paĝo ne trovita'; +$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.'] = 'La sekuriga ĵetono de la formo estis malĝusta. Tio verŝajne okazis ĉar la formo estis malfermita dum tro longa tempo (>3 horoj) antaŭ la sendado.'; +$a->strings['Password update failed. Please try again.'] = 'Ĝisdatigo de pasvorto malsukcesis. Bonvolu provi refoje.'; +$a->strings['Password changed.'] = 'Pasvorto ŝanĝita.'; +$a->strings['newer'] = 'pli nova'; +$a->strings['older'] = 'pli malnova'; $a->strings['Email'] = 'Retpoŝto'; $a->strings['Diaspora'] = 'Diaspora'; -$a->strings['Facebook'] = 'Facebook'; -$a->strings['Zot!'] = 'Zot!'; -$a->strings['LinkedIn'] = 'LinkedIn'; -$a->strings['XMPP/IM'] = 'XMPP/Tujmesaĝilo'; -$a->strings['MySpace'] = 'MySpace'; -$a->strings['Post to Email'] = 'Sendi per retpoŝto'; -$a->strings['Hide your profile details from unknown viewers?'] = 'Kaŝi viajn profilajn detalojn al nekonataj spektantoj?'; -$a->strings['Visible to everybody'] = 'Videbla al ĉiuj'; -$a->strings['show'] = 'montri'; -$a->strings['don\'t show'] = 'kaŝi'; -$a->strings['CC: email addresses'] = 'CC: retpoŝtadresojn'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Ekzemple: bob@example.com, mary@example.com'; -$a->strings['Permissions'] = 'Permesoj'; -$a->strings['Close'] = 'Fermi'; -$a->strings['photo'] = 'bildo'; -$a->strings['status'] = 'staton'; +$a->strings['and'] = 'kaj'; +$a->strings['Visible to everybody'] = 'Videbla al ĉiuj'; +$a->strings['Tag term:'] = 'Markfrazo:'; +$a->strings['Save to Folder:'] = 'Konservi en Dosierujo:'; +$a->strings['Where are you right now?'] = 'Kie vi estas nun?'; +$a->strings['Share'] = 'Kunhavigi'; +$a->strings['upload photo'] = 'alŝuti bildon'; +$a->strings['Attach file'] = 'Kunligi dosieron'; +$a->strings['attach file'] = 'kunsendi dosieron'; +$a->strings['Bold'] = 'Grasa'; +$a->strings['Italic'] = 'Kursiva'; +$a->strings['Underline'] = 'Substreki'; +$a->strings['Quote'] = 'Citaĵo'; +$a->strings['Code'] = 'Kodo'; +$a->strings['Image'] = 'Bildo'; +$a->strings['Link'] = 'Ligilo'; +$a->strings['Set your location'] = 'Agordi vian lokon'; +$a->strings['set location'] = 'agordi lokon'; +$a->strings['Clear browser location'] = 'Forviŝu retesplorilan lokon'; +$a->strings['clear location'] = 'forviŝi lokon'; +$a->strings['Set title'] = 'Redakti titolon'; +$a->strings['Categories (comma-separated list)'] = 'Kategorioj (disigita per komo)'; +$a->strings['Permission settings'] = 'Permesagordoj'; +$a->strings['Public post'] = 'Publika afiŝo'; +$a->strings['Message'] = 'Mesaĝo'; +$a->strings['remove'] = 'forviŝi'; +$a->strings['Delete Selected Items'] = 'Forviŝi Elektitajn Elementojn'; +$a->strings['View %s\'s profile @ %s'] = 'Vidi la profilon de %s ĉe %s'; +$a->strings['%s from %s'] = '%s de %s'; +$a->strings['View in context'] = 'Vidi kun kunteksto'; +$a->strings['Personal'] = 'Propra'; +$a->strings['Posts that mention or involve you'] = 'Afiŝoj menciantaj vin aŭ pri vi'; +$a->strings['Starred'] = 'Steligita'; +$a->strings['Favourite Posts'] = 'Favorigitaj Afiŝoj'; +$a->strings['show more'] = 'montri pli'; $a->strings['event'] = 'okazo'; -$a->strings['%1$s likes %2$s\'s %3$s'] = '%1$s ŝatas la %3$s de %2$s'; -$a->strings['%1$s doesn\'t like %2$s\'s %3$s'] = '%1$s malŝatas la %3$s de %2$s'; -$a->strings['[no subject]'] = '[neniu temo]'; -$a->strings['Wall Photos'] = 'Muraj Bildoj'; -$a->strings['Click here to upgrade.'] = 'Klaku ĉi tie por ĝisdatigi.'; -$a->strings['This action exceeds the limits set by your subscription plan.'] = 'Tia ago preterpasas la limojn de via abono.'; -$a->strings['This action is not available under your subscription plan.'] = 'Tia ago ne estas permesita laŭ via abono.'; -$a->strings['Miscellaneous'] = 'Diversaj'; -$a->strings['Birthday:'] = 'Naskiĝtago:'; -$a->strings['Age: '] = 'Aĝo:'; -$a->strings['never'] = 'neniam'; -$a->strings['less than a second ago'] = 'antaŭ malpli ol unu sekundo'; -$a->strings['year'] = 'jaro'; -$a->strings['years'] = 'jaroj'; -$a->strings['month'] = 'monato'; -$a->strings['months'] = 'monatoj'; -$a->strings['week'] = 'semajno'; -$a->strings['weeks'] = 'semajnoj'; -$a->strings['day'] = 'tago'; -$a->strings['days'] = 'tagoj'; -$a->strings['hour'] = 'horo'; -$a->strings['hours'] = 'horoj'; -$a->strings['minute'] = 'minuto'; -$a->strings['minutes'] = 'minutoj'; -$a->strings['second'] = 'sekundo'; -$a->strings['seconds'] = 'sekundoj'; -$a->strings['%1$d %2$s ago'] = 'antaŭ %1$d %2$s'; -$a->strings['%s\'s birthday'] = 'Naskiĝtago de %s'; -$a->strings['Happy Birthday %s'] = 'Feliĉan Naskiĝtagon al %s'; -$a->strings['Friendica Notification'] = 'Friendica Atentigo'; -$a->strings['Thank You,'] = 'Dankon,'; -$a->strings['%s Administrator'] = '%s Administranto'; -$a->strings['noreply'] = 'nerespondi'; -$a->strings['%s '] = '%s '; -$a->strings['[Friendica:Notify] New mail received at %s'] = '[Friendica:Atentigo] Ricevis novan retpoŝton ĉe %s'; -$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s sendis al vi novan privatan mesaĝon ĉe %2$s.'; -$a->strings['%1$s sent you %2$s.'] = '%1$s sendis al vi %2$s.'; -$a->strings['a private message'] = 'privatan mesaĝon'; -$a->strings['Please visit %s to view and/or reply to your private messages.'] = 'Bonvolu viziti %s por vidi aŭ respondi viajn privatajn mesaĝojn.'; -$a->strings['%1$s commented on [url=%2$s]a %3$s[/url]'] = '%1$s komentis pri [url=%2$s]%3$s[/url]'; -$a->strings['%1$s commented on [url=%2$s]%3$s\'s %4$s[/url]'] = '%1$s komentis pri [url=%2$s]%4$s de %3$s[/url]'; -$a->strings['%1$s commented on [url=%2$s]your %3$s[/url]'] = '%1$s komentis pri [url=%2$s]via %3$s[/url]'; -$a->strings['[Friendica:Notify] Comment to conversation #%1$d by %2$s'] = '[Friendica:Atentigo] Komento pri konversacio #%1$d de %2$s'; -$a->strings['%s commented on an item/conversation you have been following.'] = '%s komentis pri elemento/konversacio kiun vi sekvas.'; -$a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Bonvolu viziti %s por vidi aŭ respondi la konversacion.'; -$a->strings['[Friendica:Notify] %s posted to your profile wall'] = '[Friendica:Atentigo] %s afiŝis al via profilmuro'; -$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s skribis al via profilmuro ĉe %2$s'; -$a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s afiŝis al [url=%2$s]via muro[/url]'; -$a->strings['[Friendica:Notify] %s tagged you'] = '[Friendica:Atentigo] %s markis vin'; -$a->strings['%1$s tagged you at %2$s'] = '%1$s markis vin ĉe %2$s'; -$a->strings['%1$s [url=%2$s]tagged you[/url].'] = '%1$s [url=%2$s]markis vin[/url].'; -$a->strings['[Friendica:Notify] %s tagged your post'] = '[Friendica:Atentigo] %s markis vian afiŝon'; -$a->strings['%1$s tagged your post at %2$s'] = '%1$s markis vian afiŝon ĉe %2$s'; -$a->strings['%1$s tagged [url=%2$s]your post[/url]'] = '%1$s markis [url=%2$s]vian afiŝon[/url]'; -$a->strings['[Friendica:Notify] Introduction received'] = '[Friendica:Atentigo] Ricevis prezenton'; -$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Vi ricevis prezenton de \'%1$s\' ĉe %2$s'; -$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Vi ricevis [url=%1$s]prezenton[/url] de %2$s.'; -$a->strings['You may visit their profile at %s'] = 'Vi povas vidi la profilon de li aŭ ŝi ĉe %s'; -$a->strings['Please visit %s to approve or reject the introduction.'] = 'Bonvolu viziti %s por aprobi aŭ malaprobi la prezenton.'; -$a->strings['[Friendica:Notify] Friend suggestion received'] = '[Friendica:Atentigo] Ricevis amikosugeston'; -$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = 'Vi ricevis amikosugeston de \'%1$s\' ĉe %2$s'; -$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = 'Vi ricevis [url=%1$s]amikosugeston[/url] pri %2$s de %3$s.'; -$a->strings['Name:'] = 'Nomo:'; -$a->strings['Photo:'] = 'Bildo:'; -$a->strings['Please visit %s to approve or reject the suggestion.'] = 'Bonvolu viziti %s por aprobi aŭ malaprobi la sugeston.'; -$a->strings['l F d, Y \@ g:i A'] = 'l F d, Y \@ g:i A'; -$a->strings['Starts:'] = 'Ekas:'; -$a->strings['Finishes:'] = 'Finas:'; -$a->strings['Location:'] = 'Loko:'; -$a->strings['Sunday'] = 'Dimanĉo'; -$a->strings['Monday'] = 'Lundo'; -$a->strings['Tuesday'] = 'Mardo'; -$a->strings['Wednesday'] = 'Merkredo'; -$a->strings['Thursday'] = 'Ĵaŭdo'; -$a->strings['Friday'] = 'Vendredo'; -$a->strings['Saturday'] = 'Sabato'; -$a->strings['May'] = 'Majo'; -$a->strings['January'] = 'Januaro'; -$a->strings['February'] = 'Februaro'; -$a->strings['March'] = 'Marto'; -$a->strings['April'] = 'Aprilo'; -$a->strings['June'] = 'Junio'; -$a->strings['July'] = 'Julio'; -$a->strings['August'] = 'Aŭgusto'; -$a->strings['September'] = 'Septembro'; -$a->strings['October'] = 'Oktobro'; -$a->strings['November'] = 'Novembro'; -$a->strings['December'] = 'Decembro'; -$a->strings['l, F j'] = 'l, F j'; -$a->strings['Edit event'] = 'Redakti okazon'; -$a->strings['link to source'] = 'ligilo al fonto'; +$a->strings['status'] = 'staton'; +$a->strings['photo'] = 'bildo'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s markis la %3$s de %2$s kun %4$s'; +$a->strings['View Status'] = 'Vidi Staton'; +$a->strings['View Profile'] = 'Vidi Profilon'; +$a->strings['View Photos'] = 'Vidi Bildojn'; +$a->strings['Network Posts'] = 'Enretaj Afiŝoj'; +$a->strings['Send PM'] = 'Sendi PM'; +$a->strings['Block'] = 'Bloki'; +$a->strings['Ignore'] = 'Ignori'; +$a->strings['Connect/Follow'] = 'Konekti/Aboni'; $a->strings['Nothing new here'] = 'Estas neniu nova ĉi tie'; +$a->strings['Clear notifications'] = 'Forigi atentigojn'; $a->strings['Logout'] = 'Elsaluti'; $a->strings['End this session'] = 'Fini ĉi-tiun seancon'; -$a->strings['Status'] = 'Stato'; -$a->strings['Your posts and conversations'] = 'Viaj afiŝoj kaj komunikadoj'; +$a->strings['Login'] = 'Ensaluti'; +$a->strings['Sign in'] = 'Ensaluti'; $a->strings['Profile'] = 'Profilo'; $a->strings['Your profile page'] = 'Via profilo'; $a->strings['Photos'] = 'Bildoj'; $a->strings['Your photos'] = 'Viaj bildoj'; -$a->strings['Events'] = 'Okazoj'; -$a->strings['Your events'] = 'Viaj okazoj'; $a->strings['Personal notes'] = 'Personaj notoj'; -$a->strings['Login'] = 'Ensaluti'; -$a->strings['Sign in'] = 'Ensaluti'; +$a->strings['Your personal notes'] = 'Viaj propraj notoj'; $a->strings['Home'] = 'Hejmo'; $a->strings['Home Page'] = 'Hejmpaĝo'; $a->strings['Register'] = 'Registri'; @@ -253,115 +170,132 @@ $a->strings['Apps'] = 'Programoj'; $a->strings['Addon applications, utilities, games'] = 'Kromprogramoj, utilaĵoj, ludiloj'; $a->strings['Search'] = 'Serĉi'; $a->strings['Search site content'] = 'Serĉu la retejon'; +$a->strings['Full Text'] = 'Plena Teksto'; +$a->strings['Tags'] = 'Kradvortoj'; $a->strings['Contacts'] = 'Kontaktoj'; $a->strings['Community'] = 'Komunumo'; -$a->strings['Conversations on this site'] = 'Konversacioj je ĉi-tiu retejo'; -$a->strings['Events and Calendar'] = 'Okazoj kaj Kalendaro'; $a->strings['Directory'] = 'Katalogo'; $a->strings['People directory'] = 'Katalogo de homoj'; +$a->strings['Information'] = 'Informo'; +$a->strings['Information about this friendica instance'] = 'Informo pri tiu ĉi Friendica nodo'; $a->strings['Network'] = 'Reto'; $a->strings['Conversations from your friends'] = 'Konversacioj de viaj amikoj'; +$a->strings['Your posts and conversations'] = 'Viaj afiŝoj kaj komunikadoj'; $a->strings['Introductions'] = 'Prezentoj'; $a->strings['Friend Requests'] = 'Kontaktpetoj'; $a->strings['Notifications'] = 'Atentigoj'; $a->strings['See all notifications'] = 'Vidu ĉiujn atentigojn'; $a->strings['Mark as seen'] = 'Marki kiel legita'; -$a->strings['Mark all system notifications seen'] = 'Marki ĉiujn atentigojn legita'; -$a->strings['Messages'] = 'Mesaĝoj'; $a->strings['Private mail'] = 'Privata poŝto'; $a->strings['Inbox'] = 'Enirkesto'; $a->strings['Outbox'] = 'Elirkesto'; -$a->strings['New Message'] = 'Nova Mesaĝo'; -$a->strings['Manage'] = 'Administri'; $a->strings['Manage other pages'] = 'Administri aliajn paĝojn'; -$a->strings['Delegate Page Management'] = 'Administrado de Delegitajn Paĝojn'; $a->strings['Settings'] = 'Agordoj'; $a->strings['Account settings'] = 'Konto'; -$a->strings['Profiles'] = 'Profiloj'; $a->strings['Manage/edit friends and contacts'] = 'Administri/redakti amikojn kaj kontaktojn'; $a->strings['Admin'] = 'Administrado'; $a->strings['Site setup and configuration'] = 'Agordoj pri la retejo'; -$a->strings['Contact Photos'] = 'Kontaktbildoj'; -$a->strings['Welcome '] = 'Bonvenon '; -$a->strings['Please upload a profile photo.'] = 'Bonvolu alŝuti profilbildon.'; -$a->strings['Welcome back '] = 'Bonvenon '; -$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.'] = 'La sekuriga ĵetono de la formo estis malĝusta. Tio verŝajne okazis ĉar la formo estis malfermita dum tro longa tempo (>3 horoj) antaŭ la sendado.'; -$a->strings['System'] = 'Sistemo'; -$a->strings['Personal'] = 'Propra'; -$a->strings['%s commented on %s\'s post'] = '%s komentis pri la afiŝo de %s'; -$a->strings['%s created a new post'] = '%s kreis novan afiŝon'; -$a->strings['%s liked %s\'s post'] = '%s ŝatis la afiŝon de %s'; -$a->strings['%s disliked %s\'s post'] = '%s malŝatis la afiŝon de %s'; -$a->strings['%s is now friends with %s'] = '%s amikiĝis kun %s'; -$a->strings['Friend Suggestion'] = 'Amikosugestoj'; -$a->strings['Friend/Connect Request'] = 'Kontaktpeto'; -$a->strings['New Follower'] = 'Nova abonanto'; -$a->strings['Errors encountered creating database tables.'] = 'Okazis eraroj dum la kreado de tabeloj en la datumbazo.'; -$a->strings['(no subject)'] = '(neniu temo)'; -$a->strings['Sharing notification from Diaspora network'] = 'Antentigo pri kunhavigado de la Diaspora reto'; -$a->strings['Attachments:'] = 'Kunsendaĵoj:'; -$a->strings['view full size'] = 'vidi plengrande'; -$a->strings['View Profile'] = 'Vidi Profilon'; -$a->strings['View Status'] = 'Vidi Staton'; -$a->strings['View Photos'] = 'Vidi Bildojn'; -$a->strings['Network Posts'] = 'Enretaj Afiŝoj'; -$a->strings['Send PM'] = 'Sendi PM'; +$a->strings['Site map'] = 'Reteja mapo'; +$a->strings['Embedding disabled'] = 'Malŝaltita enigitado'; +$a->strings['Embedded content'] = 'Enigita enhavo'; +$a->strings['first'] = 'unua'; +$a->strings['prev'] = 'antaŭa'; +$a->strings['next'] = 'sekvanta'; +$a->strings['last'] = 'lasta'; $a->strings['Image/photo'] = 'Bildo'; +$a->strings['Click to open/close'] = 'Klaku por malfermi/fermi'; $a->strings['$1 wrote:'] = '$1 skribis:'; -$a->strings['%1$s is now friends with %2$s'] = '%1$s amikiĝis kun %2$s'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s markis la %3$s de %2$s kun %4$s'; -$a->strings['post/item'] = 'afiŝo/elemento'; -$a->strings['%1$s marked %2$s\'s %3$s as favorite'] = '%1$s markis la %3$s de %2$s kiel preferita.'; -$a->strings['Likes'] = 'Ŝatoj'; -$a->strings['Dislikes'] = 'Malŝatoj'; -$a->strings['Select'] = 'Elekti'; -$a->strings['Delete'] = 'Forviŝi'; -$a->strings['View %s\'s profile @ %s'] = 'Vidi la profilon de %s ĉe %s'; -$a->strings['%s from %s'] = '%s de %s'; -$a->strings['View in context'] = 'Vidi kun kunteksto'; -$a->strings['Please wait'] = 'Bonvolu atendi'; -$a->strings['remove'] = 'forviŝi'; -$a->strings['Delete Selected Items'] = 'Forviŝi Elektitajn Elementojn'; -$a->strings['%s likes this.'] = '%s ŝatas tiun.'; -$a->strings['%s doesn\'t like this.'] = '%s malŝatas tiun.'; -$a->strings['and'] = 'kaj'; -$a->strings[', and %d other people'] = ', kaj %d aliaj homoj.'; -$a->strings['Visible to everybody'] = 'Videbla al ĉiuj'; -$a->strings['Please enter a link URL:'] = 'Bonvolu entajpu adreson de ligilo:'; -$a->strings['Please enter a video link/URL:'] = 'Bonvolu entajpi ligilon/adreson de video:'; -$a->strings['Please enter an audio link/URL:'] = 'Bonvolu entajpi ligilon/adreson de sono:'; -$a->strings['Tag term:'] = 'Markfrazo:'; -$a->strings['Save to Folder:'] = 'Konservi en Dosierujo:'; -$a->strings['Where are you right now?'] = 'Kie vi estas nun?'; -$a->strings['Share'] = 'Kunhavigi'; -$a->strings['Upload photo'] = 'Alŝuti bildon'; -$a->strings['upload photo'] = 'alŝuti bildon'; -$a->strings['Attach file'] = 'Kunligi dosieron'; -$a->strings['attach file'] = 'kunsendi dosieron'; -$a->strings['Insert web link'] = 'Enmeti retan adreson'; -$a->strings['web link'] = 'TTT ligilo'; -$a->strings['Insert video link'] = 'Alglui ligilon de video'; -$a->strings['video link'] = 'video ligilo'; -$a->strings['Insert audio link'] = 'Alglui ligilon de sono'; -$a->strings['audio link'] = 'sono ligilo'; -$a->strings['Set your location'] = 'Agordi vian lokon'; -$a->strings['set location'] = 'agordi lokon'; -$a->strings['Clear browser location'] = 'Forviŝu retesplorilan lokon'; -$a->strings['clear location'] = 'forviŝi lokon'; -$a->strings['Set title'] = 'Redakti titolon'; -$a->strings['Categories (comma-separated list)'] = 'Kategorioj (disigita per komo)'; -$a->strings['Permission settings'] = 'Permesagordoj'; -$a->strings['permissions'] = 'permesoj'; -$a->strings['Public post'] = 'Publika afiŝo'; -$a->strings['Preview'] = 'Antaŭrigardi'; -$a->strings['Cancel'] = 'Nuligi'; -$a->strings['Message'] = 'Mesaĝo'; +$a->strings['Add New Contact'] = 'Aldonu Novan Kontakton'; +$a->strings['Enter address or web location'] = 'Entajpu adreson aŭ retlokon'; +$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Ekzemple: bob@example.com, http://example.com/barbara'; +$a->strings['Connect'] = 'Konekti'; +$a->strings['%d invitation available'] = [ + 0 => 'Disponeblas %d invito', + 1 => 'Disponeblas %d invitoj', +]; +$a->strings['Find People'] = 'Trovi Homojn'; +$a->strings['Enter name or interest'] = 'Entajpu nomon aŭ intereson'; +$a->strings['Examples: Robert Morgenstein, Fishing'] = 'Ekzemple: Robert Morgenstein, Fishing'; +$a->strings['Find'] = 'Trovi'; +$a->strings['Friend Suggestions'] = 'Amikosugestoj'; +$a->strings['Similar Interests'] = 'Similaj Interesoj'; +$a->strings['Random Profile'] = 'Hazarda Profilo'; +$a->strings['Invite Friends'] = 'Inviti amikojn'; +$a->strings['Global Directory'] = 'Tutmonda Katalogo'; +$a->strings['Local Directory'] = 'Loka Katalogo'; +$a->strings['All Contacts'] = 'Ĉiuj Kontaktoj'; +$a->strings['Saved Folders'] = 'Konservitaj Dosierujoj'; +$a->strings['Everything'] = 'Ĉio'; +$a->strings['Categories'] = 'Kategorioj'; +$a->strings['%d contact in common'] = [ + 0 => '%d komuna kontakto', + 1 => '%d komunaj kontaktoj', +]; +$a->strings['Archives'] = 'Arkivoj'; +$a->strings['No contacts'] = 'Neniu kontaktoj'; +$a->strings['%d Contact'] = [ + 0 => '%d Kontakto', + 1 => '%d Kontaktoj', +]; +$a->strings['View Contacts'] = 'Vidi Kontaktojn'; +$a->strings['Remove term'] = 'Forviŝu terminon'; $a->strings['Saved Searches'] = 'Konservitaj Serĉadoj'; +$a->strings['Location:'] = 'Loko:'; +$a->strings['Post to Email'] = 'Sendi per retpoŝto'; +$a->strings['CC: email addresses'] = 'CC: retpoŝtadresojn'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Ekzemple: bob@example.com, mary@example.com'; +$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Vi bezonas mane importi la dosieron "database.sql" per phpmyadmin aŭ mysql.'; +$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Komanda linia versio de PHP ne trovita en PATH de la retservilo.'; +$a->strings['PHP executable path'] = 'Vojo de la komanda linia versio de PHP'; +$a->strings['Enter full path to php executable. You can leave this blank to continue the installation.'] = 'Entajpu la plenan vojon al la php komandodosiero. Vi eblas lasi tion malplena por pluigi la instalado.'; +$a->strings['Command line PHP'] = 'komanda linia versio de PHP'; +$a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'En via komanda linia versio de PHP je via sistemo, "register_argc_argv" ne estas aktivita.'; +$a->strings['This is required for message delivery to work.'] = 'Tio estas bezonata por la livero de mesaĝoj.'; +$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'] = 'Eraro: La funkcio "openssl_pkey_new" je tia sistemo ne eblas generi ĉifroŝlosilojn.'; +$a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'Se la operaciumo sistemo estas Windows, bonvolu legi: http://www.php.net/manual/en/openssl.installation.php'; +$a->strings['Generate encryption keys'] = 'Generi ĉifroŝlosilojn'; +$a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Eraro: La modulo mod_rewrite en la Apache retservilo estas bezonata sed ne instalita.'; +$a->strings['Apache mod_rewrite module'] = 'Apache mod_rewrite modulo'; +$a->strings['libCurl PHP module'] = 'PHP modulo libCurl'; +$a->strings['Error: libCURL PHP module required but not installed.'] = 'Eraro: La modulo libCURL en PHP estas bezonata sed ne instalita.'; +$a->strings['GD graphics PHP module'] = 'PHP modulo GD'; +$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Eraro: La modulo GD en PHP kun subteno por JPEG estas bezonata sed ne instalita.'; +$a->strings['OpenSSL PHP module'] = 'PHP modulo OpenSSL'; +$a->strings['Error: openssl PHP module required but not installed.'] = 'Eraro: La modulo OpenSSL en PHP estas bezonata sed ne instalita.'; +$a->strings['mb_string PHP module'] = 'PHP modulo mb_string'; +$a->strings['Error: mb_string PHP module required but not installed.'] = 'Eraro: La modulo mb_string en PHP estas bezonata sed ne instalita.'; +$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.'] = 'Tio ĉi plej ofte estas agordo rilate al permesoj, ĉar la servilo eble ne povas skribi en via dosierujo, eĉ se vi mem povas skribi.'; +$a->strings['Url rewrite is working'] = 'URL rewrite funkcias.'; +$a->strings['Could not connect to database.'] = 'Ne eblas konekti la datumbazon.'; +$a->strings['Monday'] = 'Lundo'; +$a->strings['Tuesday'] = 'Mardo'; +$a->strings['Wednesday'] = 'Merkredo'; +$a->strings['Thursday'] = 'Ĵaŭdo'; +$a->strings['Friday'] = 'Vendredo'; +$a->strings['Saturday'] = 'Sabato'; +$a->strings['Sunday'] = 'Dimanĉo'; +$a->strings['January'] = 'Januaro'; +$a->strings['February'] = 'Februaro'; +$a->strings['March'] = 'Marto'; +$a->strings['April'] = 'Aprilo'; +$a->strings['May'] = 'Majo'; +$a->strings['June'] = 'Junio'; +$a->strings['July'] = 'Julio'; +$a->strings['August'] = 'Aŭgusto'; +$a->strings['September'] = 'Septembro'; +$a->strings['October'] = 'Oktobro'; +$a->strings['November'] = 'Novembro'; +$a->strings['December'] = 'Decembro'; +$a->strings['Update %s failed. See error logs.'] = 'Malsukcesis ĝisdatigi %s. Vidu la protokolojn.'; +$a->strings['Everybody'] = 'Ĉiuj'; +$a->strings['edit'] = 'redakti'; +$a->strings['add'] = 'aldoni'; +$a->strings['Approve'] = 'Aprobi'; $a->strings['Disallowed profile URL.'] = 'Malpermesita adreso de profilo.'; $a->strings['Connect URL missing.'] = 'Ne ekzistas URL adreso por konekti.'; -$a->strings['This site is not configured to allow communications with other networks.'] = 'Tiu retpaĝo ne permesas komunikadon kun aliaj retoj.'; -$a->strings['No compatible communication protocols or feeds were discovered.'] = 'Ne malkovris kongruajn protokolojn por komunikado aŭ fluojn.'; $a->strings['The profile address specified does not provide adequate information.'] = 'La specifita profiladreso ne enhavas sufiĉe da informoj.'; +$a->strings['No compatible communication protocols or feeds were discovered.'] = 'Ne malkovris kongruajn protokolojn por komunikado aŭ fluojn.'; $a->strings['An author or name was not found.'] = 'Ne trovis aŭtoron aŭ nomon.'; $a->strings['No browser URL could be matched to this address.'] = 'Neniu retuma URL adreso kongruas al la adreso.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Ne eblas kongrui @-stilan identecon adreson al iu konata protokolo au retpoŝtadreso.'; @@ -369,145 +303,258 @@ $a->strings['Use mailto: in front of address to force email check.'] = 'Uzu mail $a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Tiu profila adreso apartenas al retejo kiu estas maŝaltita je ĉi tiu retejo.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Profilo limigata. Ĉi persono ne eblos ricevi rektajn/personajn atentigojn de vi. '; $a->strings['Unable to retrieve contact information.'] = 'Ne eblas ricevi kontaktinformojn.'; -$a->strings['Requested profile is not available.'] = 'La petita profilo ne disponeblas.'; +$a->strings['Starts:'] = 'Ekas:'; +$a->strings['Finishes:'] = 'Finas:'; +$a->strings['month'] = 'monato'; +$a->strings['week'] = 'semajno'; +$a->strings['day'] = 'tago'; +$a->strings['Access to this profile has been restricted.'] = 'Atingo al ĉi tio profilo estas limitigita'; +$a->strings['l, F j'] = 'l, F j'; +$a->strings['Edit event'] = 'Redakti okazon'; +$a->strings['l F d, Y \@ g:i A'] = 'l F d, Y \@ g:i A'; +$a->strings['%s\'s birthday'] = 'Naskiĝtago de %s'; +$a->strings['Happy Birthday %s'] = 'Feliĉan Naskiĝtagon al %s'; +$a->strings['activity'] = 'aktiveco'; +$a->strings['post'] = 'afiŝo'; +$a->strings['bytes'] = 'bajtoj'; +$a->strings['[no subject]'] = '[neniu temo]'; +$a->strings['Wall Photos'] = 'Muraj Bildoj'; $a->strings['Edit profile'] = 'Redakti profilon'; -$a->strings['Manage/edit profiles'] = 'Administri/redakti profilojn'; $a->strings['Change profile photo'] = 'Ŝanĝi profilbildon'; -$a->strings['Create New Profile'] = 'Krei novan profilon'; -$a->strings['Profile Image'] = 'Profilbildo'; -$a->strings['visible to everybody'] = 'videbla al ĉiuj'; -$a->strings['Edit visibility'] = 'Redakti videblecon'; -$a->strings['Gender:'] = 'Sekso:'; -$a->strings['Status:'] = 'Stato:'; $a->strings['Homepage:'] = 'Hejmpaĝo:'; $a->strings['About:'] = 'Pri:'; -$a->strings['g A l F d'] = '\j\e \l\a G\a \h\o\r\o, l F d'; $a->strings['F d'] = 'F d'; $a->strings['[today]'] = '[hodiaŭ]'; $a->strings['Birthday Reminders'] = 'Memorigilo pri naskiĝtagoj'; $a->strings['Birthdays this week:'] = 'Naskiĝtagoj ĉi-semajne:'; +$a->strings['g A l F d'] = '\j\e \l\a G\a \h\o\r\o, l F d'; $a->strings['[No description]'] = '[Neniu priskribo]'; $a->strings['Event Reminders'] = 'Memorigilo pri Okazoj'; -$a->strings['Events this week:'] = 'Okazoj ĉi-semajne:'; -$a->strings['Full Name:'] = 'Plena Nomo:'; -$a->strings['j F, Y'] = 'j F, Y'; -$a->strings['j F'] = 'j F'; -$a->strings['Age:'] = 'Aĝo:'; -$a->strings['for %1$d %2$s'] = 'por %1$d %2$s'; -$a->strings['Sexual Preference:'] = 'Seksa Prefero:'; $a->strings['Hometown:'] = 'Hejmurbo:'; -$a->strings['Tags:'] = 'Markoj:'; +$a->strings['Sexual Preference:'] = 'Seksa Prefero:'; $a->strings['Political Views:'] = 'Politikaj Opinioj:'; -$a->strings['Religion:'] = 'Religio:'; -$a->strings['Hobbies/Interests:'] = 'Ŝatokupoj/Interesoj:'; +$a->strings['Religious Views:'] = 'Religiaj Opinioj:'; $a->strings['Likes:'] = 'Ŝatoj:'; $a->strings['Dislikes:'] = 'Malŝatoj:'; -$a->strings['Contact information and Social Networks:'] = 'Kontaktinformoj kaj Interkonaj Retejoj:'; -$a->strings['Musical interests:'] = 'Muzaikaj interesoj:'; -$a->strings['Books, literature:'] = 'Libroj, literaturo:'; -$a->strings['Television:'] = 'Televido:'; -$a->strings['Film/dance/culture/entertainment:'] = 'Filmoj/dancoj/arto/amuzaĵoj:'; -$a->strings['Love/Romance:'] = 'Amo/romanco:'; -$a->strings['Work/employment:'] = 'Laboro:'; -$a->strings['School/education:'] = 'Lernejo/eduko:'; -$a->strings['Advanced'] = 'Altnivela'; -$a->strings['Status Messages and Posts'] = 'Ŝtatmesaĝoj kaj Afiŝoj'; -$a->strings['Profile Details'] = 'Profildetaloj'; -$a->strings['Photo Albums'] = 'Bildalbumoj'; -$a->strings['Personal Notes'] = 'Personaj Notoj'; -$a->strings['Only You Can See This'] = 'Nur Vi Povas Vidi Tiun'; -$a->strings['[Name Withheld]'] = '[Kaŝita nomo]'; -$a->strings['Item not found.'] = 'Elemento ne estas trovita.'; -$a->strings['Yes'] = 'Jes'; -$a->strings['Permission denied.'] = 'Malpermesita.'; -$a->strings['Archives'] = 'Arkivoj'; -$a->strings['Embedded content'] = 'Enigita enhavo'; -$a->strings['Embedding disabled'] = 'Malŝaltita enigitado'; -$a->strings['following'] = 'sekvanta'; -$a->strings['stopped following'] = 'ne plu sekvas'; -$a->strings['newer'] = 'pli nova'; -$a->strings['older'] = 'pli malnova'; -$a->strings['prev'] = 'antaŭa'; -$a->strings['first'] = 'unua'; -$a->strings['last'] = 'lasta'; -$a->strings['next'] = 'sekvanta'; -$a->strings['No contacts'] = 'Neniu kontaktoj'; -$a->strings['%d Contact'] = [ - 0 => '%d Kontakto', - 1 => '%d Kontaktoj', -]; -$a->strings['View Contacts'] = 'Vidi Kontaktojn'; -$a->strings['Save'] = 'Konservi'; -$a->strings['bytes'] = 'bajtoj'; -$a->strings['Click to open/close'] = 'Klaku por malfermi/fermi'; -$a->strings['activity'] = 'aktiveco'; -$a->strings['comment'] = [ - 0 => '', - 1 => 'komento', -]; -$a->strings['post'] = 'afiŝo'; -$a->strings['Item filed'] = 'Enarkivigis elementon '; +$a->strings['Title/Description:'] = 'Titolo/Priskribo:'; +$a->strings['Summary'] = 'Resumo'; +$a->strings['Musical interests'] = 'Muzikaj interesoj'; +$a->strings['Books, literature'] = 'Libroj, literaturo'; +$a->strings['Television'] = 'Televido'; +$a->strings['Film/dance/culture/entertainment'] = 'Filmoj/dancoj/arto/amuzaĵoj'; +$a->strings['Hobbies/Interests'] = 'Ŝatokupoj/Interesoj'; +$a->strings['Love/romance'] = 'Amo/romanco'; +$a->strings['Work/employment'] = 'Laboro'; +$a->strings['School/education'] = 'Lernejo/eduko'; +$a->strings['Contact information and Social Networks'] = 'Kontaktaj informoj kaj Interkonaj Retejoj'; +$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'GRAVA ERARO: La generacio de sekurecaj ĉifroŝlosiloj malsukcesis.'; $a->strings['Passwords do not match. Password unchanged.'] = 'La pasvortoj ne estas egala. Pasvorto ne ŝanĝita.'; $a->strings['An invitation is required.'] = 'Invio bezonata.'; $a->strings['Invitation could not be verified.'] = 'Ne povis kontroli la inviton.'; $a->strings['Invalid OpenID url'] = 'Nevalida OpenID adreso'; +$a->strings['We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.'] = 'Okazis problemo ensalutinta kun via OpenID. Bonvolu kontroli la ID.'; +$a->strings['The error message was:'] = 'La erarmesaĝo estis:'; $a->strings['Please enter the required information.'] = 'Bonvolu entajpi la bezonatajn informojn.'; -$a->strings['Please use a shorter name.'] = 'Bonvolu uzi pli mallongan nomon.'; -$a->strings['Name too short.'] = 'Nomo estas tro mallonga.'; $a->strings['That doesn\'t appear to be your full (First Last) name.'] = 'Tio ŝajne ne estas via plena (persona, familia) nomo.'; $a->strings['Your email domain is not among those allowed on this site.'] = 'Via retpoŝtodomajno ne estas permesita ĉi tie.'; $a->strings['Not a valid email address.'] = 'Nevalida retpoŝtadreso.'; $a->strings['Cannot use that email.'] = 'Neuzebla retpoŝtadreso.'; $a->strings['Nickname is already registered. Please choose another.'] = 'Tio kaŝnomo jam estas registrita. Bonvolu elekti alian.'; -$a->strings['Nickname was once registered here and may not be re-used. Please choose another.'] = 'Tiu kaŝnomo iam estis registrita ĉi tie kaj ne ree uzeblas. Bonvolu elekti alian.'; -$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'GRAVA ERARO: La generacio de sekurecaj ĉifroŝlosiloj malsukcesis.'; $a->strings['An error occurred during registration. Please try again.'] = 'Eraro okazis dum registrado. Bonvolu provi denove.'; -$a->strings['default'] = 'defaŭlta'; $a->strings['An error occurred creating your default profile. Please try again.'] = 'Eraro okazi dum kreado de via defaŭlta profilo. Bonvolu provi denove.'; +$a->strings['Friends'] = 'Amikoj'; $a->strings['Profile Photos'] = 'Profilbildoj'; $a->strings['Registration details for %s'] = 'Detaloj de la registrado por %s'; -$a->strings['Post successful.'] = 'Sukcese afiŝita.'; +$a->strings['Disable'] = 'Malŝalti'; +$a->strings['Enable'] = 'Ŝalti'; +$a->strings['Administration'] = 'Administrado'; +$a->strings['Toggle'] = 'Ŝalti/Malŝalti'; +$a->strings['Author: '] = 'Aŭtoro: '; +$a->strings['Maintainer: '] = 'Prizorganto: '; +$a->strings['Update has been marked successful'] = 'Ĝisdatigo estas markita sukcesa'; +$a->strings['Update %s was successfully applied.'] = 'Sukcese aplikis la ĝisdatigo %s.'; +$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'Ĝisdatigo %s ne liveris elirstaton. '; +$a->strings['No failed updates.'] = 'Neniom da malsukcesaj ĝisdatigoj.'; +$a->strings['Failed Updates'] = 'Malsukcesaj Ĝisdatigoj'; +$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Ne inkluzivas ĝisdatigojn antaŭ 1139, kiuj ne liveris elirstaton.'; +$a->strings['Mark success (if update was manually applied)'] = 'Marki sukcesa (se la ĝisdatigo estas instalita mane)'; +$a->strings['Attempt to execute this update step automatically'] = 'Provi automate plenumi ĉi tian paŝon de la ĝisdatigo.'; +$a->strings['Other'] = 'Alia'; +$a->strings['Logs'] = 'Protokoloj'; +$a->strings['Clear'] = 'Forviŝi'; +$a->strings['Log file'] = 'Protokolo'; +$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Devas esti skribebla de la retservilo. Relativa al via plej supra Friendica dosierujo.'; +$a->strings['Log level'] = 'Protokolnivelo'; +$a->strings['Event details'] = 'Detaloj de okazo'; +$a->strings['Closed'] = 'Ferma'; +$a->strings['Requires approval'] = 'Bezonas aprobon'; +$a->strings['Open'] = 'Malferma'; +$a->strings['Site'] = 'Retejo'; +$a->strings['Registration'] = 'Registrado'; +$a->strings['File upload'] = 'Alŝuto'; +$a->strings['Policies'] = 'Politiko'; +$a->strings['Advanced'] = 'Altnivela'; +$a->strings['Site name'] = 'Nomo de retejo'; +$a->strings['Banner/Logo'] = 'Emblemo'; +$a->strings['System language'] = 'Sistema lingvo'; +$a->strings['System theme'] = 'Sistema etoso'; +$a->strings['Maximum image size'] = 'Maksimuma bildgrando'; +$a->strings['Register policy'] = 'Interkonsento pri registrado'; +$a->strings['Register text'] = 'Interkonsento teksto'; +$a->strings['Accounts abandoned after x days'] = 'Kontoj forlasitaj post x tagoj'; +$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = 'Mi ne malŝparu energion por enketi aliajn retejojn pri forlasitaj kontoj. Entajpu 0 por ne uzi templimo.'; +$a->strings['Allowed friend domains'] = 'Permesitaj amikaj domainoj'; +$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Perkome disigita listo da domajnoj kiuj rajtas konstrui amikecojn kun ĉi tiu retejo. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn.'; +$a->strings['Allowed email domains'] = 'Permesitaj retpoŝtaj domajnoj'; +$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Perkome disigita listo da domajnoj kiuj uzeblas kiel retpoŝtaj adresoj en novaj registradoj. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn.'; +$a->strings['Block public'] = 'Bloki publike'; +$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Elektu por bloki publikan atingon al ĉiuj alie publikajn paĝojn en ĉi tiu retejo kiam vi ne estas ensalutita.'; +$a->strings['Force publish'] = 'Devigi publikigon'; +$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Elektu por devigi la registradon en la loka katalogo al ĉiuj profiloj en ĉi tiu retejo.'; +$a->strings['Enable Diaspora support'] = 'Ŝalti subtenon por Diaspora'; +$a->strings['Verify SSL'] = 'Kontroli SSL'; +$a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = 'Se vi deziras, vi povas aktivigi severan kontroladon de SSL atestiloj. Pro tio, vie (tute) ne eblos konekti al SSL retejoj kun memsubskribitaj atestiloj.'; +$a->strings['Proxy user'] = 'Uzantnomo por retperanto'; +$a->strings['Proxy URL'] = 'URL adreso de retperanto'; +$a->strings['Network timeout'] = 'Reta tempolimo'; +$a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Valoro en sekundoj. Uzu 0 por mallimitigi (ne rekomendata).'; +$a->strings['Maximum Load Average'] = 'Maksimuma Meza Sistemŝargo'; +$a->strings['Message queues'] = 'Mesaĝvicoj'; +$a->strings['Version'] = 'Versio'; +$a->strings['Screenshot'] = 'Ekrankopio'; +$a->strings['Themes'] = 'Etosoj'; +$a->strings['[Experimental]'] = '[Eksperimenta]'; +$a->strings['[Unsupported]'] = '[Nesubtenata]'; +$a->strings['No installed applications.'] = 'Neniom da instalitaj programoj.'; +$a->strings['Applications'] = 'Programoj'; +$a->strings['Item was not found.'] = 'Elemento ne trovita.'; +$a->strings['Please login to continue.'] = 'Bonvolu ensaluti por pluigi.'; +$a->strings['DB updates'] = 'DB ĝisdatigoj'; +$a->strings['User registrations waiting for confirmation'] = 'Uzantaj registradoj atendante konfirmon'; +$a->strings['Users'] = 'Uzantoj'; +$a->strings['Profile Details'] = 'Profildetaloj'; +$a->strings['Only You Can See This'] = 'Nur Vi Povas Vidi Tiun'; +$a->strings['Tips for New Members'] = 'Konsilo por novaj membroj'; +$a->strings['No matches'] = 'Nenio estas trovita'; +$a->strings['Account'] = 'Konto'; +$a->strings['Connected apps'] = 'Konektitaj programoj'; +$a->strings['Export personal data'] = 'Eksporto'; +$a->strings['Remove account'] = 'Forigi konton'; +$a->strings['Event title and start time are required.'] = 'Titolo kaj starttempo estas bezonataj por la okazo.'; +$a->strings['Event Starts:'] = 'Okazo startas:'; +$a->strings['Required'] = 'Bezonata'; +$a->strings['Finish date/time is not known or not relevant'] = 'Fina dato/tempo ne estas konata aŭ ne bezonata'; +$a->strings['Event Finishes:'] = 'Okazo finas:'; +$a->strings['Share this event'] = 'Kunhavigi la okazon'; +$a->strings['Events'] = 'Okazoj'; +$a->strings['Create New Event'] = 'Krei novan okazon'; +$a->strings['Contact not found.'] = 'Kontakto ne trovita.'; +$a->strings['Invalid contact.'] = 'Nevalida kontakto.'; +$a->strings['Members'] = 'Anoj'; +$a->strings['Click on a contact to add or remove.'] = 'Klaku kontakton por aldoni aŭ forviŝi.'; +$a->strings['Show all contacts'] = 'Montri ĉiujn kontaktojn'; +$a->strings['Blocked'] = 'Blokita'; +$a->strings['Only show blocked contacts'] = 'Nur montri blokitajn kontaktojn'; +$a->strings['Ignored'] = 'Ignorita'; +$a->strings['Only show ignored contacts'] = 'Nur montri ignoritajn kontaktojn'; +$a->strings['Archived'] = 'Enarkivigita'; +$a->strings['Only show archived contacts'] = 'Nur montri enarkivigitajn kontaktojn'; +$a->strings['Hidden'] = 'Kaŝita'; +$a->strings['Only show hidden contacts'] = 'Nur montri kaŝitajn kontaktojn'; +$a->strings['Search your contacts'] = 'Serĉi viajn kontaktojn'; +$a->strings['Update'] = 'Ĝisdatigi'; +$a->strings['Unblock'] = 'Malbloki'; +$a->strings['Unignore'] = 'Malignori'; +$a->strings['Advanced Contact Settings'] = 'Specialaj Kontaktagordoj'; +$a->strings['Mutual Friendship'] = 'Reciproka amikeco'; +$a->strings['is a fan of yours'] = 'estas admiranto de vi'; +$a->strings['you are a fan of'] = 'vi estas admiranto de'; +$a->strings['Visit %s\'s profile [%s]'] = 'Viziti la profilon de %s [%s]'; +$a->strings['Contact update failed.'] = 'Ĝisdatigo de kontakto malsukcesis.'; +$a->strings['Return to contact editor'] = 'Reen al kontakta redaktilo'; +$a->strings['Name'] = 'Nomo'; +$a->strings['Account Nickname'] = 'Kaŝnomo de la konto'; +$a->strings['Account URL'] = 'Adreso de la konto'; +$a->strings['Poll/Feed URL'] = 'Adreso de fluo'; +$a->strings['New photo from this URL'] = 'Nova bildo el tiu adreso'; $a->strings['Access denied.'] = 'Atingo nepermesita.'; -$a->strings['Welcome to %s'] = 'Bonvenon ĉe %s'; -$a->strings['No more system notifications.'] = 'Ne pli da sistemaj atentigoj.'; -$a->strings['System Notifications'] = 'Sistemaj Atentigoj'; -$a->strings['Remove term'] = 'Forviŝu terminon'; -$a->strings['Public access denied.'] = 'Publika atingo ne permesita.'; +$a->strings['Submit Request'] = 'Sendi peton'; +$a->strings['Please answer the following:'] = 'Bonvolu respondi:'; +$a->strings['Your Identity Address:'] = 'Via identeca adreso:'; +$a->strings['Tags:'] = 'Markoj:'; +$a->strings['Add a personal note:'] = 'Aldoni personan noton:'; +$a->strings['Profile Match'] = 'Kongrua profilo'; +$a->strings['Failed to update contact record.'] = 'Ĝisdatigo de via kontaktrikordo malsukcesis.'; +$a->strings['Contact has been unblocked'] = 'Kontakto estas malblokita.'; +$a->strings['Contact has been blocked'] = 'Kontakto estas blokita.'; +$a->strings['Contact has been unignored'] = 'Kontakto estas malignorita.'; +$a->strings['Contact has been ignored'] = 'Kontakto estas ignorita.'; +$a->strings['You are mutual friends with %s'] = 'Vi estas reciproka amiko de %s'; +$a->strings['You are sharing with %s'] = 'Vi kunhavigas kun %s'; +$a->strings['%s is sharing with you'] = '%s kunhavigas kun vi'; +$a->strings['Private communications are not available for this contact.'] = 'Privataj komunikadoj ne disponeblas por ĉi tiu kontakto.'; +$a->strings['Never'] = 'Neniam'; +$a->strings['(Update was not successful)'] = '(Ĝisdatigo malsukcesis.)'; +$a->strings['(Update was successful)'] = '(Ĝisdatigo sukcesis.)'; +$a->strings['Suggest friends'] = 'Sugesti amikojn'; +$a->strings['Network type: %s'] = 'Reta tipo: %s'; +$a->strings['Communications lost with this contact!'] = 'Mi perdis la kommunikadon kun tiu kontakto!'; +$a->strings['Contact Information / Notes'] = 'Kontaktaj informoj / Notoj'; +$a->strings['Edit contact notes'] = 'Redakti kontaktnotojn'; +$a->strings['Block/Unblock contact'] = 'Bloki/Malbloki kontakton'; +$a->strings['Ignore contact'] = 'Ignori kontakton'; +$a->strings['View conversations'] = 'Vidi konversaciojn'; +$a->strings['Last update:'] = 'Plej ĵusa ĝisdatigo:'; +$a->strings['Update public posts'] = 'Ĝisdatigi publikajn afiŝojn'; +$a->strings['Update now'] = 'Ĝisdatigi nun'; +$a->strings['Currently blocked'] = 'Nuntempe blokata'; +$a->strings['Currently ignored'] = 'Nuntempe ignorata'; +$a->strings['Currently archived'] = 'Nuntempe enarkivigita'; +$a->strings['Hide this contact from others'] = 'Kaŝi ĉi tiun kontakton al aliaj'; +$a->strings['Replies/likes to your public posts may still be visible'] = 'Rispondoj/ŝataĵo al viaj publikaj afiŝoj eble plu estos videbla'; +$a->strings['Status'] = 'Stato'; +$a->strings['Toggle Blocked status'] = 'Ŝalti/malŝalti Blokitan staton'; +$a->strings['Toggle Ignored status'] = 'Ŝalti/malŝalti Ignoritan staton'; +$a->strings['Yes'] = 'Jes'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Neniu sugestoj disponeblas. Se ĉi tiu estas nova retejo, bonvolu reprovi post 24 horoj.'; $a->strings['No results.'] = 'Nenion trovita.'; -$a->strings['This is Friendica, version'] = 'Tio estas Friendica en la versio'; -$a->strings['running at web location'] = 'instalita ĉe la adreso'; -$a->strings['Please visit Friendica.com to learn more about the Friendica project.'] = 'Bonvolu iri al Friendica.com por lerni pli pri la projekto Friendica'; +$a->strings['Not available.'] = 'Ne disponebla.'; +$a->strings['Time Conversion'] = 'Konverto de tempo'; +$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica provizas tiun servon por kunhavigi okazojn kun aliaj retoj kaj amikoj en aliaj horzonoj.'; +$a->strings['UTC time: %s'] = 'UTC horo: %s'; +$a->strings['Current timezone: %s'] = 'Aktuala horzono: %s'; +$a->strings['Converted localtime: %s'] = 'Konvertita loka horo: %s'; +$a->strings['Please select your timezone:'] = 'Bonvolu elekti vian horzonon:'; +$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Ŝalti inter aliaj identecojn aj komunumaj/grupaj paĝoj kiuj kunhavas viajn kontajn detalojn au por kiuj vi havas "administranto" permesojn.'; +$a->strings['Select an identity to manage: '] = 'Elektu identencon por administrado:'; +$a->strings['No entries (some entries may be hidden).'] = 'Neniom da afiŝoj (kelkaj afiŝoj eble ne estas videbla).'; +$a->strings['Find on this site'] = 'Trovi en ĉi retejo'; +$a->strings['Site Directory'] = 'Reteja Katalogo'; +$a->strings['- select -'] = '- elekti -'; +$a->strings['Friend suggestion sent.'] = 'Amikosugesto sendita.'; +$a->strings['Suggest Friends'] = 'Sugesti amikojn'; +$a->strings['Suggest a friend for %s'] = 'Sugesti amikon por %s'; $a->strings['Bug reports and issues: please visit'] = 'Cimraportoj kaj atendindaĵo: bonvolu iri al'; -$a->strings['Suggestions, praise, donations, etc. - please email "Info" at Friendica - dot com'] = 'Sugestoj, laŭdoj, donacoj ktp - bonvolu sendi mesĝon al "Info" ĉe Friendica - punkto com'; -$a->strings['Installed plugins/addons/apps:'] = 'Instalitaj kromprogramoj/programoj:'; -$a->strings['No installed plugins/addons/apps'] = 'Neniom da instalitaj aldonaĵoj/programoj'; -$a->strings['No valid account found.'] = 'Ne trovis validan konton.'; -$a->strings['Password reset request issued. Check your email.'] = 'Eldonis riparadon de pasvorto. Legu vian retpoŝton.'; -$a->strings['Password reset requested at %s'] = 'Pasvorta riparado petita je %s'; -$a->strings['Request could not be verified. (You may have previously submitted it.) Password reset failed.'] = 'Ne povis konfirmi la peton. (Eble vi sendis ĝin antaŭ.) Pasvorta riparado malsukcesis.'; -$a->strings['Password Reset'] = 'Pasvorta riparado'; -$a->strings['Your password has been reset as requested.'] = 'Via pasvorto estis riparita laŭ via peto.'; -$a->strings['Your new password is'] = 'Via nova pasvorto estas'; -$a->strings['Save or copy your new password - and then'] = 'Memorigi vian novan pasvorton - kaj poste'; -$a->strings['click here to login'] = 'klaku ĉi tie por ensaluti'; -$a->strings['Your password may be changed from the Settings page after successful login.'] = 'Vi povas ŝangi vian pasvorton sur la paĝo agordoj kiam vi sukcese ensalutis.'; -$a->strings['Forgot your Password?'] = 'Ĉu vi forgesis vian pasvorton?'; -$a->strings['Enter your email address and submit to have your password reset. Then check your email for further instructions.'] = 'Entajpu vian retpoŝtadreson kaj sendu por pasvorta riparado. Poste, bonvolu legi vian retpoŝton por trovi pliajn instrukciojn.'; -$a->strings['Nickname or Email: '] = 'Salutnomo aŭ retpoŝtadreso: '; -$a->strings['Reset'] = 'Repari'; $a->strings['No profile'] = 'Neniu profilo'; $a->strings['Help:'] = 'Helpo:'; -$a->strings['Not Found'] = 'Ne trovita'; -$a->strings['Page not found.'] = 'Paĝo ne trovita'; -$a->strings['Remote privacy information not available.'] = 'Informoj pri fora privateca ne estas disponebla.'; -$a->strings['Visible to:'] = 'Videbla al:'; -$a->strings['OpenID protocol error. No ID returned.'] = 'Eraro en OpenID protokolo. Ne resendis identecon.'; -$a->strings['Account not found and OpenID registration is not permitted on this site.'] = 'Ne trovis kontoj, kaj registrado per OpenID estas malpermesita ĉi tie.'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'La retejo transiras la maksimuman kvanton da ĉiutagaj kontaj registradoj. Bonvolu provi denove morgaŭ.'; -$a->strings['Visit %s\'s profile [%s]'] = 'Viziti la profilon de %s [%s]'; -$a->strings['Edit contact'] = 'Redakti kontakton'; -$a->strings['Contacts who are not members of a group'] = 'Kontaktoj kiuj ne estas en iu grupo'; -$a->strings['Export personal data'] = 'Eksporto'; +$a->strings['Welcome to %s'] = 'Bonvenon ĉe %s'; +$a->strings['System check'] = 'Sistema kontrolo'; +$a->strings['Next'] = 'sekva'; +$a->strings['Check again'] = 'Ree kontroli'; +$a->strings['Database connection'] = 'Datumbaza konekto'; +$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Por instali Friendica, ni bezonas scii kiel konekti al via datumbazo.'; +$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Bonvolu kontakti vian servilprovizanton aŭ administranton se vi havas demandoj pri ĉi tiaj agordoj.'; +$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'La datumbazo nomata malsupren jam ekzistu. Se ĝi ne ekzistas, bonvolu unue krei ĝin antaŭ progresi.'; +$a->strings['Database Server Name'] = 'Nomo de datumbaza servilo.'; +$a->strings['Database Login Name'] = 'Salutnomo ĉe la datumbazo.'; +$a->strings['Database Login Password'] = 'Pasvorto ĉe la datumbazo.'; +$a->strings['Database Name'] = 'Nomo de la datumbazo.'; +$a->strings['Please select a default timezone for your website'] = 'Bonvolu elekti defaŭltan horzonon por via retejo.'; +$a->strings['Site settings'] = 'Retejaj agordoj'; +$a->strings['Site administrator email address'] = 'Retpoŝtadreso de la reteja administranto'; +$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'La repoŝtadreso de via konto bezonas esti la sama por uzi la TTTa administrilo.'; +$a->strings['Your Friendica site database has been installed.'] = 'La datumbazo de vi Friendica retjo estas instalita.'; +$a->strings['

    What next

    '] = '

    Kio sekvas nun?

    '; $a->strings['%s : Not a valid email address.'] = '%s: Ne estas valida retpoŝtadreso.'; $a->strings['Please join us on Friendica'] = 'Bonvolu aliĝi kun ni ĉe Friendica'; $a->strings['%s : Message delivery failed.'] = '%s: La livero de la mesaĝo malsukcesis.'; @@ -522,429 +569,94 @@ $a->strings['Friendica sites all inter-connect to create a huge privacy-enhanced $a->strings['Our apologies. This system is not currently configured to connect with other public sites or invite members.'] = 'Senkulpigu nin. La sistemo nuntempe ne estas agordita por konekti al aliaj retejoj au inviti membrojn.'; $a->strings['Send invitations'] = 'Sendi invitojn'; $a->strings['Enter email addresses, one per line:'] = 'Entajpu retpoŝtadresojn, po unu por ĉiu linio.'; -$a->strings['Your message:'] = 'Via mesaĝo:'; $a->strings['You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.'] = 'Ni bonkore invitas vin aliĝi kun ni kaj aliaj bonaj amikoj ĉe Friendica. Helpu nin krei pli bonan interkonan reton.'; $a->strings['You will need to supply this invitation code: $invite_code'] = 'Vi bezonas ĉi-tiun invitkodon: $invite_code'; $a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Kiam vi registris, bonvolu konekti al mi pere de mi profilo ĉe: '; -$a->strings['For more information about the Friendica project and why we feel it is important, please visit http://friendica.com'] = 'Por pli da informoj pri Friendica, kaj kial ni pensas ke ĝi estas grava, bonvolu viziti http://friendica.com'; -$a->strings['Submit'] = 'Sendi'; $a->strings['Files'] = 'Dosieroj'; -$a->strings['Permission denied'] = 'Malpermesita'; -$a->strings['Invalid profile identifier.'] = 'Nevaliada profila identigilo.'; -$a->strings['Profile Visibility Editor'] = 'Redaktilo por profila videbleco.'; -$a->strings['Click on a contact to add or remove.'] = 'Klaku kontakton por aldoni aŭ forviŝi.'; -$a->strings['Visible To'] = 'Videbla Al'; -$a->strings['All Contacts (with secure profile access)'] = 'Ĉiuj Kontaktoj (kun sekura atingo al la profilo)'; -$a->strings['Tag removed'] = 'Marko forviŝita'; +$a->strings['Upload'] = 'Alŝuti'; +$a->strings['File upload failed.'] = 'Alŝutado malsukcesis.'; +$a->strings['Unable to process image.'] = 'Ne eblas procedi la bildon.'; +$a->strings['Image upload failed.'] = 'Alŝuto de bildo malsukcesis.'; +$a->strings['Normal Account Page'] = 'Normala Kontopaĝo'; +$a->strings['Soapbox Page'] = 'Soapbox Paĝo'; +$a->strings['Automatic Friend Page'] = 'Aŭtomata Amiko Paĝo'; +$a->strings['select all'] = 'elekti ĉiujn'; +$a->strings['Item not found'] = 'Elemento ne trovita'; +$a->strings['Normal Account'] = 'Normala konto'; +$a->strings['Automatic Friend Account'] = 'Aŭtomata Amika Konto'; +$a->strings['Blog Account'] = 'Blogkonto'; +$a->strings['Registered users'] = 'Registrataj uzantoj'; +$a->strings['Pending registrations'] = 'Okazontaj registradoj'; +$a->strings['%s user deleted'] = [ + 0 => '%s uzanto forviŝita', + 1 => '%s uzanto forviŝitaj', +]; +$a->strings['Register date'] = 'Dato de registrado'; +$a->strings['Last login'] = 'Plej ĵusa ensaluto'; +$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'La elektitaj uzantkontoj estas forviŝotaj!\n\nĈiuj elementoj kiujn ili afiŝis je la retpaĝo estos permanente forviŝitaj.\n\nĈu vi certas?'; +$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'La uzanto {0} estas forviŝota!\n\nĈiuj elementoj kiujn li afiŝis je la retpaĝo estos permanente forviŝitaj.\n\nĈu vi certas?'; +$a->strings['Account approved.'] = 'Konto aprobita.'; +$a->strings['Request date'] = 'Dato de peto'; +$a->strings['No registrations.'] = 'Neniom da registriĝoj.'; +$a->strings['Deny'] = 'Negi'; +$a->strings['Show Ignored Requests'] = 'Montri ignoritajn petojn'; +$a->strings['Hide Ignored Requests'] = 'Kaŝi ignoritajn petojn'; +$a->strings['Claims to be known to you: '] = 'Pensas ke vi konas ilin:'; +$a->strings['No'] = 'Ne'; +$a->strings['Friend'] = 'Amiko'; +$a->strings['No introductions.'] = 'Neniom da prezentoj'; +$a->strings['Network Notifications'] = 'Retaj Atentigoj'; +$a->strings['System Notifications'] = 'Sistemaj Atentigoj'; +$a->strings['Personal Notifications'] = 'Personaj Atentigoj'; +$a->strings['Home Notifications'] = 'Hejmrilataj atentigoj'; +$a->strings['{0} requested registration'] = '{0} petis registradon'; +$a->strings['Authorize application connection'] = 'Rajtigi programkonekton'; +$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn kaj/aŭ krei novajn afiŝojn?'; +$a->strings['Remote privacy information not available.'] = 'Informoj pri fora privateca ne estas disponebla.'; +$a->strings['Visible to:'] = 'Videbla al:'; +$a->strings['Edit post'] = 'Redakti afiŝon'; +$a->strings['web link'] = 'TTT ligilo'; +$a->strings['Insert video link'] = 'Alglui ligilon de video'; +$a->strings['video link'] = 'video ligilo'; +$a->strings['Insert audio link'] = 'Alglui ligilon de sono'; +$a->strings['audio link'] = 'sono ligilo'; $a->strings['Remove Item Tag'] = 'Forviŝi markon'; $a->strings['Select a tag to remove: '] = 'Elektu forviŝontan markon:'; $a->strings['Remove'] = 'Forviŝi'; -$a->strings['No potential page delegates located.'] = 'Ne trovis delegiteblajn paĝojn.'; -$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.'] = 'Delegitoj povas administri ĉiujn ecojn de la konto/paĝo, escepte bazaj kontoagordoj. Bonvolu ne delegitigi vian personan konton al iu al kiu vi ne plene fidas.'; -$a->strings['Existing Page Managers'] = 'Estantaj Administrantoj de la Paĝo'; -$a->strings['Existing Page Delegates'] = 'Estantaj Delegitoj de la Paĝo'; -$a->strings['Potential Delegates'] = 'Eblaj Delegitoj'; -$a->strings['Add'] = 'Aldoni'; -$a->strings['No entries.'] = 'Neniom da afiŝoj.'; -$a->strings['- select -'] = '- elekti -'; -$a->strings['Item not available.'] = 'Elemento ne disponeblas.'; -$a->strings['Item was not found.'] = 'Elemento ne trovita.'; -$a->strings['Applications'] = 'Programoj'; -$a->strings['No installed applications.'] = 'Neniom da instalitaj programoj.'; -$a->strings['Welcome to Friendica'] = 'Bonvenon ĉe Friendica'; -$a->strings['New Member Checklist'] = 'Kontrololisto por Novaj Membroj'; -$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.'] = 'Lasu nin oferi al vi kelkajn konsolojn kaj ligilojn por plifaciligi vian komencon. Klaku iun elementon por viziti la rilatan paĝon. Ligilo al ĉi tiu paĝo videblos en via hejmpaĝo dum du semajnojn post via komenca membriĝo. Post du semajnoj, la ligilo silente malaperos. '; -$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.'] = 'Bonvolu ŝanĝi vian pasvorton ĉe Agordoj. Krome, memorigu vian identadreson. Ĝi aspektas kiel retpoŝtadreso kaj estas bezonata por konekti al novaj amikon en la libera interkona reto.'; -$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.'] = 'Kontrolu la aliajn agordojn, precipe la privatecajn agordojn. Nepublikigita profilo similas al havi telefonnumberon ne registrata en iu telefonlibro. Ĝenerale vi eble volas publikigi vian profilon. Alie, viaj amikoj kaj estontaj amikoj bezonas scii kiel rekte trovi vin.'; -$a->strings['Upload Profile Photo'] = 'Alŝuti profilbildon'; -$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.'] = 'Enŝuti profilbildon se vi ankoraŭ ne havas ĝin. Laŭ studoj, homoj kun realaj biloj de si mem trovas novajn amikon duope pli probable ol homoj sen reala bildo.'; -$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.'] = 'Redakti viajn defaŭltan profilon kiel vi ŝatas ĝin. Kontrolu la agordojn por kaŝi vian kontaktliston aŭ kaŝi vian profilon al nekonataj vizitantoj.'; -$a->strings['Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships.'] = 'Aldonu publikajn ŝlosilvortojn al via defaŭlta profilo, kiuj priskribas viajn interesojn. Ni eble povas trovi aliajn uzantojn kun similaj interesoj kaj sugesti amikojn.'; -$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'] = 'Entajpu la akreditaĵojn por via retpoŝtkonto en la konektilagordoj se vi volas importi aŭ interagi kun amikoj aŭ dissendlistoj pere de via retkesto.'; -$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.'] = 'Via kontaktpaĝo estas via portalo por administri amikojn kaj konekti kun amikoj en aliaj retoj. Vi kutime entajpas iliajn adreson aŭ URL adreso en la Aldonu Novan Kontakton dialogon.'; -$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.'] = 'Ĉe la Katalogo vi povas trovi aliajn homojn en ĉi tiu retejo, au en aliaj federaciaj retejoj. Elrigardi al KonektiSekvi ligiloj ĉe iliaj profilo. Donu vian propran Identecan Adreson se la retejo demandas ĝin.'; -$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.'] = 'En la flanka strio de la Kontaktoj paĝo troviĝas kelkajn helpilojn por trovi novajn amikojn. Ni povas automate trovi amikojn per interesoj, serĉu ilin per nomo aŭ intereso kaj faras sugestojn baze de estantaj kontaktoj. Ĉe nova instalita retejo, la unuaj sugestoj kutime aperas post 24 horoj.'; -$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.'] = 'Kiam vi trovis kelkajn novajn amikojn, ordigi ilin en grupoj por privata komunikado en la flanka strio de via Kontaktoj paĝo, kaj vi povas private komuniki kun ili je via Reto paĝo.'; -$a->strings['Our help pages may be consulted for detail on other program features and resources.'] = 'Niaj Helpo paĝoj enhavas pli da detaloj pri aliaj programaj trajtoj.'; -$a->strings['Remove My Account'] = 'Forigi Mian Konton'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Tio tute forigos vian konton. Kiam farita, la konto ne estas restaŭrebla.'; -$a->strings['Please enter your password for verification:'] = 'Bonvolu entajpi vian pasvorton por kontrolado:'; -$a->strings['Item not found'] = 'Elemento ne trovita'; -$a->strings['Edit post'] = 'Redakti afiŝon'; -$a->strings['Time Conversion'] = 'Konverto de tempo'; -$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica provizas tiun servon por kunhavigi okazojn kun aliaj retoj kaj amikoj en aliaj horzonoj.'; -$a->strings['UTC time: %s'] = 'UTC horo: %s'; -$a->strings['Current timezone: %s'] = 'Aktuala horzono: %s'; -$a->strings['Converted localtime: %s'] = 'Konvertita loka horo: %s'; -$a->strings['Please select your timezone:'] = 'Bonvolu elekti vian horzonon:'; -$a->strings['Group created.'] = 'Grupo estas kreita.'; -$a->strings['Could not create group.'] = 'Ne povas krei grupon.'; -$a->strings['Group not found.'] = 'Grupo ne estas trovita.'; -$a->strings['Group name changed.'] = 'La nomo de la grupo estas ŝanĝita.'; -$a->strings['Create a group of contacts/friends.'] = 'Krei grupon da kontaktoj/amikoj.'; -$a->strings['Group removed.'] = 'Grupo estas forviŝita.'; -$a->strings['Unable to remove group.'] = 'Ne eblas forviŝi grupon.'; -$a->strings['Group Editor'] = 'Grupa redaktilo'; -$a->strings['Members'] = 'Anoj'; -$a->strings['All Contacts'] = 'Ĉiuj Kontaktoj'; -$a->strings['Group is empty'] = 'Grupo estas malplena'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Number of daily wall messages for %s exceeded. Messaĝo malsukcesis.'; -$a->strings['No recipient selected.'] = 'Neniom da ricevontoj.'; -$a->strings['Unable to check your home location.'] = 'Ne eblas kontroli vian hejmlokon.'; -$a->strings['Message could not be sent.'] = 'Ne povas sendi la mesaĝon.'; -$a->strings['Message collection failure.'] = 'Malsukcese provis kolekti mesaĝojn.'; -$a->strings['Message sent.'] = 'Mesaĝo estas sendita.'; -$a->strings['No recipient.'] = 'Neniom da ricevontoj.'; -$a->strings['Send Private Message'] = 'Sendi Privatan Mesaĝon'; -$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Se vi deziras ke %s respondu, bonvolu kontroli ke la privatecaj agordoj je via retejo permesas privatajn mesaĝojn de nekonataj sendantoj.'; -$a->strings['To:'] = 'Al:'; -$a->strings['Subject:'] = 'Temo:'; -$a->strings['link'] = 'ligilo'; -$a->strings['Authorize application connection'] = 'Rajtigi programkonekton'; -$a->strings['Return to your app and insert this Securty Code:'] = 'Reiru al via programo kaj entajpu la securecan kodon:'; -$a->strings['Please login to continue.'] = 'Bonvolu ensaluti por pluigi.'; -$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn kaj/aŭ krei novajn afiŝojn?'; -$a->strings['No'] = 'Ne'; -$a->strings['Source (bbcode) text:'] = 'Fontkodo (bbcode):'; -$a->strings['Source (Diaspora) text to convert to BBcode:'] = 'Fontokodo (Diaspora) konvertota al BBcode:'; -$a->strings['Source input: '] = 'Fontoenigo:'; -$a->strings['bb2html: '] = 'bb2html: '; -$a->strings['bb2html2bb: '] = 'bb2html2bb: '; -$a->strings['bb2md: '] = 'bb2md: '; -$a->strings['bb2md2html: '] = 'bb2md2html: '; -$a->strings['bb2dia2bb: '] = 'bb2dia2bb: '; -$a->strings['bb2md2html2bb: '] = 'bb2md2html2bb: '; -$a->strings['Source input (Diaspora format): '] = 'Fontoenigo (Diaspora formato):'; -$a->strings['diaspora2bb: '] = 'diaspora2bb: '; -$a->strings['Unable to locate contact information.'] = 'Ne eblas trovi kontaktajn informojn.'; -$a->strings['Message deleted.'] = 'Mesaĝo estas forviŝita.'; -$a->strings['Conversation removed.'] = 'Dialogo estas forviŝita.'; -$a->strings['No messages.'] = 'Neniom da mesaĝoj.'; -$a->strings['Message not available.'] = 'Mesaĝo nedisponebla.'; -$a->strings['Delete message'] = 'Forviŝu mesaĝon'; -$a->strings['Delete conversation'] = 'Forviŝi dialogon'; -$a->strings['No secure communications available. You may be able to respond from the sender\'s profile page.'] = 'Sekura komunikado ne disponeblas. Vi eble povus respondi sur la profilpaĝo de la sendanto.'; -$a->strings['Send Reply'] = 'Respondi'; -$a->strings['Unknown sender - %s'] = 'Nekonata sendanto - %s'; -$a->strings['You and %s'] = 'Vi kaj %s'; -$a->strings['%s and You'] = '%s kaj vi'; -$a->strings['D, d M Y - g:i A'] = 'D, d M Y - g:i A'; -$a->strings['%d message'] = [ - 0 => '%d mesaĝo', - 1 => '%d mesaĝoj', -]; -$a->strings['Manage Identities and/or Pages'] = 'Administri identecojn kaj/aŭ paĝojn.'; -$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Ŝalti inter aliaj identecojn aj komunumaj/grupaj paĝoj kiuj kunhavas viajn kontajn detalojn au por kiuj vi havas "administranto" permesojn.'; -$a->strings['Select an identity to manage: '] = 'Elektu identencon por administrado:'; -$a->strings['Contact settings applied.'] = 'Kontaktagordoj estas konservita.'; -$a->strings['Contact update failed.'] = 'Ĝisdatigo de kontakto malsukcesis.'; -$a->strings['Contact not found.'] = 'Kontakto ne trovita.'; -$a->strings['WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working.'] = 'AVERTO: Tio estas tre altnivela kaj se vi entajpus malĝustan informojn, komunikado kun la kontakto eble ne plu funkcios.'; -$a->strings['Please use your browser \'Back\' button now if you are uncertain what to do on this page.'] = 'Bonvolu klaki \'malantaŭen\' en via retesplorilo nun se vi ne scias kion faru ĉi tie.'; -$a->strings['Return to contact editor'] = 'Reen al kontakta redaktilo'; -$a->strings['Name'] = 'Nomo'; -$a->strings['Account Nickname'] = 'Kaŝnomo de la konto'; -$a->strings['@Tagname - overrides Name/Nickname'] = '@Marknomo - Transpasas nomon/kaŝnomon'; -$a->strings['Account URL'] = 'Adreso de la konto'; -$a->strings['Friend Request URL'] = 'Kontaktpeta adreso'; -$a->strings['Friend Confirm URL'] = 'Kontaktkonfirma adreso'; -$a->strings['Notification Endpoint URL'] = 'Finpunkta adreso por atentigoj'; -$a->strings['Poll/Feed URL'] = 'Adreso de fluo'; -$a->strings['New photo from this URL'] = 'Nova bildo el tiu adreso'; -$a->strings['No such group'] = 'Grupo ne estas trovita'; -$a->strings['%d comment'] = [ - 0 => '%d komento', - 1 => '%d komentoj', -]; -$a->strings['Private Message'] = 'Privata mesaĝo'; -$a->strings['I like this (toggle)'] = 'Mi ŝatas tion (ŝalti)'; -$a->strings['like'] = 'ŝati'; -$a->strings['I don\'t like this (toggle)'] = 'Mi malŝatas tion(ŝalti)'; -$a->strings['dislike'] = 'malŝati'; -$a->strings['Share this'] = 'Kunhavigi ĉi tiun'; -$a->strings['share'] = 'kunhavigi'; -$a->strings['This is you'] = 'Tiu estas vi'; -$a->strings['Comment'] = 'Komenti'; -$a->strings['Bold'] = 'Grasa'; -$a->strings['Italic'] = 'Kursiva'; -$a->strings['Underline'] = 'Substreki'; -$a->strings['Quote'] = 'Citaĵo'; -$a->strings['Code'] = 'Kodo'; -$a->strings['Image'] = 'Bildo'; -$a->strings['Link'] = 'Ligilo'; -$a->strings['Video'] = 'Video'; -$a->strings['Edit'] = 'Redakti'; -$a->strings['add star'] = 'aldoni stelon'; -$a->strings['remove star'] = 'forpreni stelon'; -$a->strings['toggle star status'] = 'ŝalti/malŝalti steloŝtato'; -$a->strings['starred'] = 'steligita'; -$a->strings['add tag'] = 'aldoni markon'; -$a->strings['save to folder'] = 'konservi en dosierujo'; -$a->strings['to'] = 'al'; -$a->strings['Wall-to-Wall'] = 'Muro-al-Muro'; -$a->strings['via Wall-To-Wall:'] = 'per Muro-al-Muro:'; -$a->strings['Friend suggestion sent.'] = 'Amikosugesto sendita.'; -$a->strings['Suggest Friends'] = 'Sugesti amikojn'; -$a->strings['Suggest a friend for %s'] = 'Sugesti amikon por %s'; -$a->strings['Image uploaded but image cropping failed.'] = 'Bildo estas alŝutita, sed malsukcesis tranĉi la bildon.'; -$a->strings['Image size reduction [%s] failed.'] = 'Malsukcesis malpligrandigi [%s] la bildon.'; -$a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Reŝarĝu la paĝon au malplenigu la kaŝmemoro de la retesplorilo se la nova bildo ne tuj aperas.'; -$a->strings['Unable to process image'] = 'Ne eblas procezi bildon.'; -$a->strings['Unable to process image.'] = 'Ne eblas procedi la bildon.'; -$a->strings['Upload File:'] = 'Alŝuti dosieron:'; -$a->strings['Upload'] = 'Alŝuti'; -$a->strings['or'] = 'aŭ'; -$a->strings['skip this step'] = 'Preterpasi tian paŝon'; -$a->strings['select a photo from your photo albums'] = 'elekti bildon el viaj albumoj'; -$a->strings['Crop Image'] = 'Stuci Bildon'; -$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Bonvolu agordi la stuco de la bildo por optimuma aspekto.'; -$a->strings['Done Editing'] = 'Finigi Redaktado'; -$a->strings['Image uploaded successfully.'] = 'Bildo estas sukcese enŝutita.'; -$a->strings['Image upload failed.'] = 'Alŝuto de bildo malsukcesis.'; -$a->strings['Account approved.'] = 'Konto aprobita.'; -$a->strings['Registration revoked for %s'] = 'Registraĵo por %s senvalidigita.'; -$a->strings['Please login.'] = 'Bonvolu ensaluti.'; -$a->strings['Invalid request identifier.'] = 'Nevalida peta identigilo.'; -$a->strings['Discard'] = 'Forviŝi'; -$a->strings['Ignore'] = 'Ignori'; -$a->strings['Network Notifications'] = 'Retaj Atentigoj'; -$a->strings['Personal Notifications'] = 'Personaj Atentigoj'; -$a->strings['Home Notifications'] = 'Hejmrilataj atentigoj'; -$a->strings['Show Ignored Requests'] = 'Montri ignoritajn petojn'; -$a->strings['Hide Ignored Requests'] = 'Kaŝi ignoritajn petojn'; -$a->strings['Notification type: '] = 'Tipo de atentigo:'; -$a->strings['suggested by %s'] = 'sugestita de %s'; -$a->strings['Hide this contact from others'] = 'Kaŝi ĉi tiun kontakton al aliaj'; -$a->strings['Post a new friend activity'] = 'Afiŝi novan amikecan aktivecon'; -$a->strings['if applicable'] = 'se aplikebla'; -$a->strings['Approve'] = 'Aprobi'; -$a->strings['Claims to be known to you: '] = 'Pensas ke vi konas ilin:'; -$a->strings['yes'] = 'jes'; -$a->strings['no'] = 'ne'; -$a->strings['Friend'] = 'Amiko'; -$a->strings['Sharer'] = 'Kunhaviganto'; -$a->strings['Fan/Admirer'] = 'Fanatikulo/Admiranto'; -$a->strings['No introductions.'] = 'Neniom da prezentoj'; -$a->strings['Profile not found.'] = 'Profilo ne trovita.'; -$a->strings['Profile deleted.'] = 'Profilo forviŝita.'; -$a->strings['Profile-'] = 'Profilo-'; -$a->strings['New profile created.'] = 'Nova profilo kreita.'; -$a->strings['Profile unavailable to clone.'] = 'Ne eblas kopii profilon.'; -$a->strings['Profile Name is required.'] = 'Nomo de profilo estas bezonata.'; -$a->strings['Marital Status'] = 'Amrilata Stato'; -$a->strings['Romantic Partner'] = 'Kora Partnero'; -$a->strings['Work/Employment'] = 'Laboro'; -$a->strings['Religion'] = 'Religio'; -$a->strings['Political Views'] = 'Politikaj Opinioj'; -$a->strings['Gender'] = 'Sekso'; -$a->strings['Sexual Preference'] = 'Seksa Prefero'; -$a->strings['Homepage'] = 'Hejmpaĝo'; -$a->strings['Interests'] = 'Interesoj'; -$a->strings['Address'] = 'Adreso'; -$a->strings['Location'] = 'Loko'; -$a->strings['Profile updated.'] = 'Profilo ĝisdatigita.'; -$a->strings[' and '] = ' kaj '; -$a->strings['public profile'] = 'publika profilo'; -$a->strings['%1$s changed %2$s to “%3$s”'] = '%1$s ŝanĝis %2$s al “%3$s”'; -$a->strings[' - Visit %1$s\'s %2$s'] = ' - Vizitu la %2$s de %1$s'; -$a->strings['%1$s has an updated %2$s, changing %3$s.'] = '%1$s havas ĝisdatigigan %2$s, ŝanĝas %3$s.'; -$a->strings['Hide your contact/friend list from viewers of this profile?'] = 'Kaŝi vian liston de kontaktoj/amikoj al vidantoj de ĉi-tio profilo?'; -$a->strings['Edit Profile Details'] = 'Redakti Detalojn de Profilo'; -$a->strings['View this profile'] = 'Vidi la profilon.'; -$a->strings['Create a new profile using these settings'] = 'Krei novan profilon kun tiaj agordoj'; -$a->strings['Clone this profile'] = 'Kopii ĉi tiun profilon'; -$a->strings['Delete this profile'] = 'Forviŝi ĉi tiun profilon'; -$a->strings['Your Gender:'] = 'Via Sekso:'; -$a->strings[' Marital Status:'] = ' Civita Stato:'; -$a->strings['Example: fishing photography software'] = 'Ekzemple: fiŝkapti fotografio programaro'; -$a->strings['Profile Name:'] = 'Nomo de Profilo:'; -$a->strings['Required'] = 'Bezonata'; -$a->strings['This is your public profile.
    It may be visible to anybody using the internet.'] = 'Ĉi tio estas via publika profilo. Ĝi eble estas videbla al ĉiuj en interreto. '; -$a->strings['Your Full Name:'] = 'Via Plena Nomo:'; -$a->strings['Title/Description:'] = 'Titolo/Priskribo:'; -$a->strings['Street Address:'] = 'Adreso:'; -$a->strings['Locality/City:'] = 'Urbo:'; -$a->strings['Region/State:'] = 'Ŝtato:'; -$a->strings['Postal/Zip Code:'] = 'Poŝtkodo:'; -$a->strings['Country:'] = 'Lando:'; -$a->strings['Who: (if applicable)'] = 'Kiu (se aplikeble):'; -$a->strings['Examples: cathy123, Cathy Williams, cathy@example.com'] = 'Ekzemploj: cathy123, Cathy Williams, cathy@example.com'; -$a->strings['Since [date]:'] = 'Ekde [dato]:'; -$a->strings['Tell us about yourself...'] = 'Diru al ni pri vi...'; -$a->strings['Homepage URL:'] = 'Adreso de Hejmpaĝo:'; -$a->strings['Religious Views:'] = 'Religiaj Opinioj:'; -$a->strings['Public Keywords:'] = 'Publikaj ŝlosilvortoj:'; -$a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Por sugesti amikoj. Videbla al aliaj.)'; -$a->strings['Private Keywords:'] = 'Privataj ŝlosilvortoj:'; -$a->strings['(Used for searching profiles, never shown to others)'] = '(Por serĉi profilojn. Neniam videbla al aliaj.)'; -$a->strings['Musical interests'] = 'Muzikaj interesoj'; -$a->strings['Books, literature'] = 'Libroj, literaturo'; -$a->strings['Television'] = 'Televido'; -$a->strings['Film/dance/culture/entertainment'] = 'Filmoj/dancoj/arto/amuzaĵoj'; -$a->strings['Hobbies/Interests'] = 'Ŝatokupoj/Interesoj'; -$a->strings['Love/romance'] = 'Amo/romanco'; -$a->strings['Work/employment'] = 'Laboro'; -$a->strings['School/education'] = 'Lernejo/eduko'; -$a->strings['Contact information and Social Networks'] = 'Kontaktaj informoj kaj Interkonaj Retejoj'; -$a->strings['Edit/Manage Profiles'] = 'Redakti/administri Profilojn'; -$a->strings['No friends to display.'] = 'Neniom da amiko al montri.'; -$a->strings['Access to this profile has been restricted.'] = 'Atingo al ĉi tio profilo estas limitigita'; -$a->strings['Previous'] = 'antaŭa'; -$a->strings['Next'] = 'sekva'; -$a->strings['No contacts in common.'] = 'Neniom da komunaj kontaktoj.'; -$a->strings['Common Friends'] = 'Komunaj Amikoj'; -$a->strings['Not available.'] = 'Ne disponebla.'; -$a->strings['Global Directory'] = 'Tutmonda Katalogo'; -$a->strings['Find on this site'] = 'Trovi en ĉi retejo'; -$a->strings['Site Directory'] = 'Reteja Katalogo'; -$a->strings['No entries (some entries may be hidden).'] = 'Neniom da afiŝoj (kelkaj afiŝoj eble ne estas videbla).'; -$a->strings['No matches'] = 'Nenio estas trovita'; -$a->strings['Item has been removed.'] = 'Elemento estas forviŝita.'; -$a->strings['Event title and start time are required.'] = 'Titolo kaj starttempo estas bezonataj por la okazo.'; -$a->strings['Create New Event'] = 'Krei novan okazon'; -$a->strings['Event details'] = 'Detaloj de okazo'; -$a->strings['Event Starts:'] = 'Okazo startas:'; -$a->strings['Finish date/time is not known or not relevant'] = 'Fina dato/tempo ne estas konata aŭ ne bezonata'; -$a->strings['Event Finishes:'] = 'Okazo finas:'; -$a->strings['Adjust for viewer timezone'] = 'Agordi al horzono de la leganto'; -$a->strings['Description:'] = 'Priskribo'; -$a->strings['Title:'] = 'Titolo:'; -$a->strings['Share this event'] = 'Kunhavigi la okazon'; -$a->strings['No keywords to match. Please add keywords to your default profile.'] = 'Neniom da kategoriaj vortoj kongruas. Bonvolu aldoni kategoriajn vortojn al via defaŭlta profilo.'; -$a->strings['is interested in:'] = 'interesiĝas pri:'; -$a->strings['Profile Match'] = 'Kongrua profilo'; -$a->strings['Tips for New Members'] = 'Konsilo por novaj membroj'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Neniu sugestoj disponeblas. Se ĉi tiu estas nova retejo, bonvolu reprovi post 24 horoj.'; -$a->strings['Ignore/Hide'] = 'Ignori/Kaŝi'; -$a->strings['[Embedded content - reload page to view]'] = '[Enigita enhavo - reŝargu paĝon por spekti ĝin]'; -$a->strings['Recent Photos'] = '̂Ĵusaj bildoj'; -$a->strings['Upload New Photos'] = 'Alŝuti novajn bildojn'; -$a->strings['everybody'] = 'ĉiuj'; -$a->strings['Contact information unavailable'] = 'Kontaktoj informoj ne disponeblas'; -$a->strings['Album not found.'] = 'Albumo ne trovita.'; -$a->strings['Delete Album'] = 'Forviŝi albumon'; -$a->strings['Delete Photo'] = 'Forviŝi bildon'; +$a->strings['No contacts.'] = 'Neniu kontaktojn.'; $a->strings['Image file is empty.'] = 'Bilddosiero estas malplena.'; -$a->strings['No photos selected'] = 'Neniu bildoj elektita'; -$a->strings['Access to this item is restricted.'] = 'Atingo al tio elemento estas limigita.'; -$a->strings['You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage.'] = 'Vi uzas %1$.2f MB de %2$.2f MB bildkonservejo.'; -$a->strings['Upload Photos'] = 'Alŝuti bildojn'; -$a->strings['New album name: '] = 'Nomo por nova albumo:'; -$a->strings['or existing album name: '] = 'aŭ nomo de estanta albumo:'; -$a->strings['Do not show a status post for this upload'] = 'Ne kreu statan afiŝon por tio alŝuto.'; -$a->strings['Edit Album'] = 'Redakti albumon'; -$a->strings['View Photo'] = 'Vidi bildon'; -$a->strings['Permission denied. Access to this item may be restricted.'] = 'Malpermesita. Atingo al tio elemento eble estas limigita.'; -$a->strings['Photo not available'] = 'La bildo ne disponeblas'; -$a->strings['View photo'] = 'Vidi bildon'; -$a->strings['Edit photo'] = 'Redakti bildon'; -$a->strings['Use as profile photo'] = 'Uzi kiel profilbildo'; -$a->strings['View Full Size'] = 'Vidi plengrande '; -$a->strings['Tags: '] = 'Markoj:'; -$a->strings['[Remove any tag]'] = '[Forviŝi iun markon]'; -$a->strings['New album name'] = 'Nova nomo de albumo'; -$a->strings['Caption'] = 'Apudskribo'; -$a->strings['Add a Tag'] = 'Aldoni markon'; -$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Ekzemple: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'; -$a->strings['Rotate CW (right)'] = 'Turni horloĝdirekte (dekstren)'; -$a->strings['Rotate CCW (left)'] = 'Turni kontraŭhorloĝdirekte (maldekstren)'; $a->strings['View Album'] = 'Vidi albumon'; -$a->strings['Registration successful. Please check your email for further instructions.'] = 'Registrado sukcesis. Bonvolu kontroli vian retpoŝton por pli da instruoj.'; -$a->strings['Your registration can not be processed.'] = 'Mi ne povas prilabori vian registradon.'; -$a->strings['Your registration is pending approval by the site owner.'] = 'Via registrado bezonas apropbon de la administranto.'; -$a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \'Register\'.'] = 'Vi ankaŭ (nedeviga) povas plenigi la formularon per OpenID se vi provizas vian OpenID adreson kaj klakas \'Registri\'.'; +$a->strings['Profile not found.'] = 'Profilo ne trovita.'; +$a->strings['Full Name:'] = 'Plena Nomo:'; +$a->strings['j F, Y'] = 'j F, Y'; +$a->strings['j F'] = 'j F'; +$a->strings['Birthday:'] = 'Naskiĝtago:'; +$a->strings['Age: '] = 'Aĝo:'; +$a->strings['Description:'] = 'Priskribo'; +$a->strings['Profile unavailable.'] = 'Profilo ne estas disponebla.'; +$a->strings['Invalid locator'] = 'Nevalida adreso.'; +$a->strings['Friend/Connection Request'] = 'Prezento / Konektpeto'; +$a->strings['Unable to check your home location.'] = 'Ne eblas kontroli vian hejmlokon.'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Number of daily wall messages for %s exceeded. Messaĝo malsukcesis.'; +$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Se vi deziras ke %s respondu, bonvolu kontroli ke la privatecaj agordoj je via retejo permesas privatajn mesaĝojn de nekonataj sendantoj.'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'La retejo transiras la maksimuman kvanton da ĉiutagaj kontaj registradoj. Bonvolu provi denove morgaŭ.'; $a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Se vi ne konas OpenID, bonvolu lasi tiun kampon malplena kaj entajpu la aliajn elementojn.'; $a->strings['Your OpenID (optional): '] = 'Via OpenID (nedeviga):'; $a->strings['Include your profile in member directory?'] = 'Aldoni vian profilon al la membrokatalogo?'; $a->strings['Membership on this site is by invitation only.'] = 'Membriĝi ĉi tie nur eblas laŭ invito.'; -$a->strings['Your invitation ID: '] = 'Via invita idento: '; -$a->strings['Registration'] = 'Registrado'; -$a->strings['Your Email Address: '] = 'Via Retpoŝtadreso: '; $a->strings['New Password:'] = 'Nova pasvorto:'; $a->strings['Confirm:'] = 'Konfirmi:'; -$a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'nickname@$sitename\'.'] = 'Elektu kaŝnomon por la profilo. Tiu bezonas komenci kun teksta litero. Poste, via profila adreso ĉi tie estos: \'kaŝnomo@$sitename\'.'; $a->strings['Choose a nickname: '] = 'Elektu kaŝnomon: '; -$a->strings['Account'] = 'Konto'; -$a->strings['Plugins'] = 'Kromprogramoj'; -$a->strings['Connected apps'] = 'Konektitaj programoj'; -$a->strings['Remove account'] = 'Forigi konton'; -$a->strings['Missing some important data!'] = 'Mankas importantaj datumoj!'; -$a->strings['Update'] = 'Ĝisdatigi'; -$a->strings['Failed to connect with email account using the settings provided.'] = 'Ne sukcesis konekti al retpoŝtkonto kun la provizitaj agordoj.'; -$a->strings['Email settings updated.'] = 'Retpoŝtagordoj ĝisdatigita'; -$a->strings['Empty passwords are not allowed. Password unchanged.'] = 'Malplenaj pasvortoj ne estas permesita. Pasvorto ne ŝanĝita.'; -$a->strings['Password changed.'] = 'Pasvorto ŝanĝita.'; -$a->strings['Password update failed. Please try again.'] = 'Ĝisdatigo de pasvorto malsukcesis. Bonvolu provi refoje.'; -$a->strings[' Please use a shorter name.'] = ' Bonvolu uzi pli mallongan nomon.'; -$a->strings[' Name too short.'] = ' Nomo estas tro mallonga.'; -$a->strings[' Not valid email.'] = ' Repoŝtadreso ne validas.'; -$a->strings[' Cannot change to that email.'] = ' Ne povas ŝanĝi al tio retpoŝtadreso.'; -$a->strings['Private forum has no privacy permissions. Using default privacy group.'] = 'Privata forumo ne havas privatecajn agordojn. Defaŭlta privateca grupo estas uzata.'; -$a->strings['Private forum has no privacy permissions and no default privacy group.'] = 'Privata forumo havas nek privatecajn agordojn nek defaŭltan privatecan grupon.'; -$a->strings['Settings updated.'] = 'Agordoj ĝisdatigita.'; -$a->strings['Add application'] = 'Aldoni programon'; -$a->strings['Consumer Key'] = 'Ŝlosilo de kliento'; -$a->strings['Consumer Secret'] = 'Sekreto de kliento'; -$a->strings['Redirect'] = 'Alidirekto'; -$a->strings['Icon url'] = 'Piktograma adreso'; -$a->strings['You can\'t edit this application.'] = 'Ĉi tio programo ne estas redaktebla.'; -$a->strings['Connected Apps'] = 'Konektitaj Programoj'; -$a->strings['Client key starts with'] = 'Ŝlosilo de kliento komencas kun'; -$a->strings['No name'] = 'Neniu nomo'; -$a->strings['Remove authorization'] = 'Forviŝi rajtigon'; -$a->strings['No Plugin settings configured'] = 'Neniom da kromprogramoagordoj farita'; -$a->strings['Plugin Settings'] = 'Kromprogramoagordoj'; -$a->strings['Built-in support for %s connectivity is %s'] = 'Integrita subteno por %s koneto estas %s'; -$a->strings['enabled'] = 'ŝaltita'; -$a->strings['disabled'] = 'malŝaltita'; -$a->strings['Email access is disabled on this site.'] = 'Retpoŝta atingo ne disponeblas ĉi tie.'; -$a->strings['Email/Mailbox Setup'] = 'Agordoj pri Retpoŝto'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Se vi volas uzi ĉi tiun servon por komuniki per retpoŝto (nedeviga), bonvolu specifi kiel konekti al vian retpoŝtkonton.'; -$a->strings['Last successful email check:'] = 'Plej ĵusa sukcesa kontrolo de poŝto:'; -$a->strings['IMAP server name:'] = 'Nomo de IMAP servilo:'; -$a->strings['IMAP port:'] = 'Numero de IMAP pordo:'; -$a->strings['Security:'] = 'Sekureco:'; -$a->strings['None'] = 'Nenio'; -$a->strings['Email login name:'] = 'Retpoŝta salutnomo:'; -$a->strings['Email password:'] = 'Retpoŝta pasvorto:'; -$a->strings['Reply-to address:'] = 'Responda adreso (Reply-to):'; -$a->strings['Send public posts to all email contacts:'] = 'Sendu publikajn afiŝojn al ĉiuj retpoŝtkontaktoj:'; -$a->strings['Action after import:'] = 'Ago post la importado:'; -$a->strings['Move to folder'] = 'Movi al dosierujo'; -$a->strings['Move to folder:'] = 'Movi al dosierujo:'; -$a->strings['Display Settings'] = 'Ekranagordoj'; -$a->strings['Display Theme:'] = 'Vidiga etoso:'; -$a->strings['Update browser every xx seconds'] = 'Ĝisdatigu retesplorilon ĉiu xxx sekundoj'; -$a->strings['Maximum of 100 items'] = 'Maksimume 100 eroj'; -$a->strings['Don\'t show emoticons'] = 'Ne montru ridetulojn'; -$a->strings['Theme settings'] = 'Agordoj pri la etoso'; -$a->strings['Normal Account Page'] = 'Normala Kontopaĝo'; -$a->strings['This account is a normal personal profile'] = 'Tiu konto estas normala persona profilo'; -$a->strings['Soapbox Page'] = 'Soapbox Paĝo'; -$a->strings['Automatically approve all connection/friend requests as read-only fans'] = 'Aŭtomate konfirmi ĉiujn kontaktpetojn kiel nurlegaj admirantoj'; -$a->strings['Automatic Friend Page'] = 'Aŭtomata Amiko Paĝo'; -$a->strings['Automatically approve all connection/friend requests as friends'] = 'Aŭtomate konfirmi ĉiujn kontaktpetojn kiel amikoj'; -$a->strings['Private Forum [Experimental]'] = 'Privata Forumo [eksperimenta]'; -$a->strings['Private forum - approved members only'] = 'Privata forumo - nur por aprobitaj membroj'; +$a->strings['Registration successful. Please check your email for further instructions.'] = 'Registrado sukcesis. Bonvolu kontroli vian retpoŝton por pli da instruoj.'; +$a->strings['Your registration can not be processed.'] = 'Mi ne povas prilabori vian registradon.'; +$a->strings['Your registration is pending approval by the site owner.'] = 'Via registrado bezonas apropbon de la administranto.'; +$a->strings['Create a New Account'] = 'Krei Novan Konton'; +$a->strings['Or login using OpenID: '] = 'Aŭ ensaluti per OpenID:'; +$a->strings['Password: '] = 'Pasvorto:'; +$a->strings['Forgot your password?'] = 'Ĉu vi vorgesis vian pasvorton?'; +$a->strings['Logged out.'] = 'Elsalutita.'; $a->strings['OpenID:'] = 'OpenID:'; $a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Nedeviga) Permesi atingon al la konton al ĉi tio OpenID.'; -$a->strings['Publish your default profile in your local site directory?'] = 'Publikigi vian defaŭltan profilon en la loka reteja katalogo?'; -$a->strings['Publish your default profile in the global social directory?'] = 'Publikigi vian defaŭltan profilon en la tutmonda interkona katalogo?'; -$a->strings['Hide your contact/friend list from viewers of your default profile?'] = 'Kaŝi vian liston de kontaktoj/amiko al spektantoj de via defaŭlta profilo?'; -$a->strings['Allow friends to post to your profile page?'] = 'Ĉu amikoj povu afiŝi al via profilo?'; -$a->strings['Allow friends to tag your posts?'] = 'Ĉu amikoj povu aldoni markojn al viaj afiŝoj?'; -$a->strings['Allow us to suggest you as a potential friend to new members?'] = 'Ĉu ni povu sugesti vin kiel amiko al novaj membroj?'; -$a->strings['Permit unknown people to send you private mail?'] = 'Permesigi nekonatulojn sendi retpoŝton al vi?'; -$a->strings['Profile is not published.'] = 'Profilo ne estas publika.'; -$a->strings['Automatically expire posts after this many days:'] = 'Automatike senvalidigi afiŝojn post tiom da tagoj:'; -$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Se malplena, afiŝoj neniam senvalidiĝos. Senvalidigitajn afiŝon estos forviŝata'; -$a->strings['Advanced expiration settings'] = 'Detalaj agordoj rilate al senvalidiĝo'; -$a->strings['Advanced Expiration'] = 'Detala senvalidiĝo'; -$a->strings['Expire posts:'] = 'Senvalidigi afiŝojn:'; -$a->strings['Expire personal notes:'] = 'Senvalidigi personajn notojn:'; -$a->strings['Expire starred posts:'] = 'Senvalidigi steligitajn afiŝojn:'; -$a->strings['Expire photos:'] = 'Senvalidigi bildojn:'; -$a->strings['Only expire posts by others:'] = 'Nur senvalidigi afiŝojn de aliaj: '; $a->strings['Account Settings'] = 'Kontoagordoj'; $a->strings['Password Settings'] = 'Agordoj pri Pasvorto'; $a->strings['Leave password fields blank unless changing'] = 'Lasu pasvortkampojn malplenaj se vi ne ŝanĝas la pasvorton.'; @@ -956,14 +668,14 @@ $a->strings['Use Browser Location:'] = 'Uzu Lokon laŭ Retesplorilo:'; $a->strings['Security and Privacy Settings'] = 'Agordoj pri Sekureco kaj Privateco'; $a->strings['Maximum Friend Requests/Day:'] = 'Taga maksimumo da kontaktpetoj:'; $a->strings['(to prevent spam abuse)'] = '(por malhelpi spamaĵojn)'; -$a->strings['Default Post Permissions'] = 'Defaŭltaj permesoj por afiŝoj'; -$a->strings['(click to open/close)'] = '(klaku por malfermi/fermi)'; +$a->strings['Allow friends to post to your profile page?'] = 'Ĉu amikoj povu afiŝi al via profilo?'; +$a->strings['Allow friends to tag your posts?'] = 'Ĉu amikoj povu aldoni markojn al viaj afiŝoj?'; +$a->strings['Permit unknown people to send you private mail?'] = 'Permesigi nekonatulojn sendi retpoŝton al vi?'; $a->strings['Maximum private messages per day from unknown people:'] = 'Taga maksimumo da privataj mesaĝoj.'; +$a->strings['Default Post Permissions'] = 'Defaŭltaj permesoj por afiŝoj'; +$a->strings['Automatically expire posts after this many days:'] = 'Automatike senvalidigi afiŝojn post tiom da tagoj:'; +$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Se malplena, afiŝoj neniam senvalidiĝos. Senvalidigitajn afiŝon estos forviŝata'; $a->strings['Notification Settings'] = 'Agordoj pri Atentigoj'; -$a->strings['By default post a status message when:'] = 'Defaŭlte afiŝi statmesaĝon okaze de:'; -$a->strings['accepting a friend request'] = 'akcepti kontaktpeton'; -$a->strings['joining a forum/community'] = 'aliĝi forumon/komunumon'; -$a->strings['making an interesting profile change'] = 'fari interesan profilŝanĝon'; $a->strings['Send a notification email when:'] = 'Sendu atentiga repoŝton se:'; $a->strings['You receive an introduction'] = 'Vi ricevas inviton'; $a->strings['Your introductions are confirmed'] = 'Viaj prezentoj estas konfirmata.'; @@ -974,338 +686,113 @@ $a->strings['You receive a friend suggestion'] = 'Vi ricevas amikosugeston'; $a->strings['You are tagged in a post'] = 'Vi estas markita en afiŝon'; $a->strings['Advanced Account/Page Type Settings'] = 'Detalaj Agordoj pri Tipo de Konto/Paĝo.'; $a->strings['Change the behaviour of this account for special situations'] = 'Agordi la teniĝon de la konto en specialaj situacioj'; -$a->strings['File upload failed.'] = 'Alŝutado malsukcesis.'; -$a->strings['Theme settings updated.'] = 'Gisdatigis agordojn pri etosoj.'; -$a->strings['Site'] = 'Retejo'; -$a->strings['Users'] = 'Uzantoj'; -$a->strings['Themes'] = 'Etosoj'; -$a->strings['DB updates'] = 'DB ĝisdatigoj'; -$a->strings['Logs'] = 'Protokoloj'; -$a->strings['Plugin Features'] = 'Kromprogramaj Trajtoj'; -$a->strings['User registrations waiting for confirmation'] = 'Uzantaj registradoj atendante konfirmon'; -$a->strings['Administration'] = 'Administrado'; -$a->strings['Normal Account'] = 'Normala konto'; -$a->strings['Soapbox Account'] = 'Soapbox Konto'; -$a->strings['Community/Celebrity Account'] = 'Komunuma/eminentula Konto'; -$a->strings['Automatic Friend Account'] = 'Aŭtomata Amika Konto'; -$a->strings['Blog Account'] = 'Blogkonto'; -$a->strings['Private Forum'] = 'Privata Forumo'; -$a->strings['Message queues'] = 'Mesaĝvicoj'; -$a->strings['Summary'] = 'Resumo'; -$a->strings['Registered users'] = 'Registrataj uzantoj'; -$a->strings['Pending registrations'] = 'Okazontaj registradoj'; -$a->strings['Version'] = 'Versio'; -$a->strings['Active plugins'] = 'Ŝaltitaj kromprogramoj'; -$a->strings['Site settings updated.'] = 'Ĝisdatigis retejaj agordoj.'; -$a->strings['Never'] = 'Neniam'; -$a->strings['Closed'] = 'Ferma'; -$a->strings['Requires approval'] = 'Bezonas aprobon'; -$a->strings['Open'] = 'Malferma'; -$a->strings['No SSL policy, links will track page SSL state'] = 'Sen SSL strategio. Ligiloj sekvos la SSL staton de la paĝo.'; -$a->strings['Force all links to use SSL'] = 'Devigi ke ĉiuj ligiloj uzu SSL.'; -$a->strings['Self-signed certificate, use SSL for local links only (discouraged)'] = 'Memsubskribita atestilo, nur uzu SSL por lokaj ligiloj (malkuraĝigata)'; -$a->strings['File upload'] = 'Alŝuto'; -$a->strings['Policies'] = 'Politiko'; -$a->strings['Site name'] = 'Nomo de retejo'; -$a->strings['Banner/Logo'] = 'Emblemo'; -$a->strings['System language'] = 'Sistema lingvo'; -$a->strings['System theme'] = 'Sistema etoso'; -$a->strings['Default system theme - may be over-ridden by user profiles - change theme settings'] = 'Defaŭlta sistema etoso - transpasebla de uzantprofiloj - redakti agordoj pri etosoj'; -$a->strings['SSL link policy'] = 'Strategio por SSL ligiloj'; -$a->strings['Determines whether generated links should be forced to use SSL'] = 'Difinas ĉu generotaj ligiloj devige uzu SSL.'; -$a->strings['Maximum image size'] = 'Maksimuma bildgrando'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'Maksimuma grando en bajtoj por alŝutotaj bildoj. Defaŭlte 0, kio signifas neniu limito.'; -$a->strings['Register policy'] = 'Interkonsento pri registrado'; -$a->strings['Register text'] = 'Interkonsento teksto'; -$a->strings['Will be displayed prominently on the registration page.'] = 'Tio estos eminente montrata en la registro paĝo.'; -$a->strings['Accounts abandoned after x days'] = 'Kontoj forlasitaj post x tagoj'; -$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = 'Mi ne malŝparu energion por enketi aliajn retejojn pri forlasitaj kontoj. Entajpu 0 por ne uzi templimo.'; -$a->strings['Allowed friend domains'] = 'Permesitaj amikaj domainoj'; -$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Perkome disigita listo da domajnoj kiuj rajtas konstrui amikecojn kun ĉi tiu retejo. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn.'; -$a->strings['Allowed email domains'] = 'Permesitaj retpoŝtaj domajnoj'; -$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Perkome disigita listo da domajnoj kiuj uzeblas kiel retpoŝtaj adresoj en novaj registradoj. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn.'; -$a->strings['Block public'] = 'Bloki publike'; -$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Elektu por bloki publikan atingon al ĉiuj alie publikajn paĝojn en ĉi tiu retejo kiam vi ne estas ensalutita.'; -$a->strings['Force publish'] = 'Devigi publikigon'; -$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Elektu por devigi la registradon en la loka katalogo al ĉiuj profiloj en ĉi tiu retejo.'; -$a->strings['Block multiple registrations'] = 'Bloki pluroblajn registradojn.'; -$a->strings['Disallow users to register additional accounts for use as pages.'] = 'Malpermesi al uzantoj la permeson por registri pluajn kontojn kiel paĝoj.'; -$a->strings['OpenID support'] = 'Subteno por OpenID'; -$a->strings['OpenID support for registration and logins.'] = 'Subteni OpenID por registrado kaj ensaluto.'; -$a->strings['Fullname check'] = 'Kontroli plenan nomon'; -$a->strings['Force users to register with a space between firstname and lastname in Full name, as an antispam measure'] = 'Kiel kontraŭspamilo, devigi uzantoj al registrado kun spaceto inter la persona nomo kaj la familia nomo.'; -$a->strings['UTF-8 Regular expressions'] = 'UTF-8 regulaj exprimoj'; -$a->strings['Use PHP UTF8 regular expressions'] = 'Uzi PHP UTF8 regulajn esprimojn.'; -$a->strings['Enable OStatus support'] = 'Ŝalti subtenon por OStatus'; -$a->strings['Enable Diaspora support'] = 'Ŝalti subtenon por Diaspora'; -$a->strings['Provide built-in Diaspora network compatibility.'] = 'Provizi integritan Diaspora subtenon.'; -$a->strings['Only allow Friendica contacts'] = 'Nur permesigi Friendica kontaktojn'; -$a->strings['All contacts must use Friendica protocols. All other built-in communication protocols disabled.'] = 'Ĉiuj kontaktoj devas uzi Friendica protokolojn. Ĉiuj aliaj komunikaj protokoloj malaktivita.'; -$a->strings['Verify SSL'] = 'Kontroli SSL'; -$a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = 'Se vi deziras, vi povas aktivigi severan kontroladon de SSL atestiloj. Pro tio, vie (tute) ne eblos konekti al SSL retejoj kun memsubskribitaj atestiloj.'; -$a->strings['Proxy user'] = 'Uzantnomo por retperanto'; -$a->strings['Proxy URL'] = 'URL adreso de retperanto'; -$a->strings['Network timeout'] = 'Reta tempolimo'; -$a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Valoro en sekundoj. Uzu 0 por mallimitigi (ne rekomendata).'; -$a->strings['Delivery interval'] = 'Intervalo de liverado'; -$a->strings['Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers.'] = 'Malfruigi fonan liveradon dum tiom da sekundoj por malpliigi la ŝargon de la sistemo. Rekomendoj: 4-5 por komunaj serviloj, 2-3 por virtualaj privataj serviloj, 0-1 por grandaj dediĉitaj serviloj.'; -$a->strings['Poll interval'] = 'Enketintervalo'; -$a->strings['Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval.'] = 'Malfruigi fonajn enketprocesojn je tiom da sekundoj por malpliigi la ŝargon de la sistemo. Se 0, uzas la liverintervalon.'; -$a->strings['Maximum Load Average'] = 'Maksimuma Meza Sistemŝargo'; -$a->strings['Maximum system load before delivery and poll processes are deferred - default 50.'] = 'Maksimuma sistemŝargo post kiu livero- kaj enketprocesoj estos prokrastinataj. - Defaŭlte 50.'; -$a->strings['Update has been marked successful'] = 'Ĝisdatigo estas markita sukcesa'; -$a->strings['Update %s was successfully applied.'] = 'Sukcese aplikis la ĝisdatigo %s.'; -$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'Ĝisdatigo %s ne liveris elirstaton. '; -$a->strings['No failed updates.'] = 'Neniom da malsukcesaj ĝisdatigoj.'; -$a->strings['Failed Updates'] = 'Malsukcesaj Ĝisdatigoj'; -$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Ne inkluzivas ĝisdatigojn antaŭ 1139, kiuj ne liveris elirstaton.'; -$a->strings['Mark success (if update was manually applied)'] = 'Marki sukcesa (se la ĝisdatigo estas instalita mane)'; -$a->strings['Attempt to execute this update step automatically'] = 'Provi automate plenumi ĉi tian paŝon de la ĝisdatigo.'; -$a->strings['%s user blocked/unblocked'] = [ - 0 => 'Blokis/malblokis %s uzanton', - 1 => 'Blokis/malblokis %s uzantojn', -]; -$a->strings['%s user deleted'] = [ - 0 => '%s uzanto forviŝita', - 1 => '%s uzanto forviŝitaj', -]; -$a->strings['User \'%s\' deleted'] = 'Uzanto \'%s\' forviŝita'; -$a->strings['User \'%s\' unblocked'] = 'Uzanto \'%s\' malblokita'; -$a->strings['User \'%s\' blocked'] = 'Uzanto \'%s\' blokita'; -$a->strings['Register date'] = 'Dato de registrado'; -$a->strings['Last login'] = 'Plej ĵusa ensaluto'; -$a->strings['Last item'] = 'Plej ĵusa elemento'; -$a->strings['select all'] = 'elekti ĉiujn'; -$a->strings['User registrations waiting for confirm'] = 'Registriĝoj atendante aprobon'; -$a->strings['Request date'] = 'Dato de peto'; -$a->strings['No registrations.'] = 'Neniom da registriĝoj.'; -$a->strings['Deny'] = 'Negi'; -$a->strings['Block'] = 'Bloki'; -$a->strings['Unblock'] = 'Malbloki'; -$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'La elektitaj uzantkontoj estas forviŝotaj!\n\nĈiuj elementoj kiujn ili afiŝis je la retpaĝo estos permanente forviŝitaj.\n\nĈu vi certas?'; -$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'La uzanto {0} estas forviŝota!\n\nĈiuj elementoj kiujn li afiŝis je la retpaĝo estos permanente forviŝitaj.\n\nĈu vi certas?'; -$a->strings['Plugin %s disabled.'] = 'Kromprogramo %s estas malŝaltita.'; -$a->strings['Plugin %s enabled.'] = 'Kromprogramo %s estas ŝaltita.'; -$a->strings['Disable'] = 'Malŝalti'; -$a->strings['Enable'] = 'Ŝalti'; -$a->strings['Toggle'] = 'Ŝalti/Malŝalti'; -$a->strings['Author: '] = 'Aŭtoro: '; -$a->strings['Maintainer: '] = 'Prizorganto: '; -$a->strings['No themes found.'] = 'Ne trovis etosojn.'; -$a->strings['Screenshot'] = 'Ekrankopio'; -$a->strings['[Experimental]'] = '[Eksperimenta]'; -$a->strings['[Unsupported]'] = '[Nesubtenata]'; -$a->strings['Log settings updated.'] = 'Protokolagordoj ĝisdatigitaj.'; -$a->strings['Clear'] = 'Forviŝi'; -$a->strings['Log file'] = 'Protokolo'; -$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Devas esti skribebla de la retservilo. Relativa al via plej supra Friendica dosierujo.'; -$a->strings['Log level'] = 'Protokolnivelo'; -$a->strings['Could not access contact record.'] = 'Ne eblis atingi kontaktrikordo.'; -$a->strings['Could not locate selected profile.'] = 'Ne trovis elektitan profilon.'; -$a->strings['Contact updated.'] = 'Kontakto estas ĝisdatigita.'; -$a->strings['Failed to update contact record.'] = 'Ĝisdatigo de via kontaktrikordo malsukcesis.'; -$a->strings['Contact has been blocked'] = 'Kontakto estas blokita.'; -$a->strings['Contact has been unblocked'] = 'Kontakto estas malblokita.'; -$a->strings['Contact has been ignored'] = 'Kontakto estas ignorita.'; -$a->strings['Contact has been unignored'] = 'Kontakto estas malignorita.'; -$a->strings['Contact has been archived'] = 'Enarkivigis kontakton'; -$a->strings['Contact has been unarchived'] = 'Elarkivigis kontakton'; -$a->strings['Contact has been removed.'] = 'Kontakto estas forigita.'; -$a->strings['You are mutual friends with %s'] = 'Vi estas reciproka amiko de %s'; -$a->strings['You are sharing with %s'] = 'Vi kunhavigas kun %s'; -$a->strings['%s is sharing with you'] = '%s kunhavigas kun vi'; -$a->strings['Private communications are not available for this contact.'] = 'Privataj komunikadoj ne disponeblas por ĉi tiu kontakto.'; -$a->strings['(Update was successful)'] = '(Ĝisdatigo sukcesis.)'; -$a->strings['(Update was not successful)'] = '(Ĝisdatigo malsukcesis.)'; -$a->strings['Suggest friends'] = 'Sugesti amikojn'; -$a->strings['Network type: %s'] = 'Reta tipo: %s'; -$a->strings['Communications lost with this contact!'] = 'Mi perdis la kommunikadon kun tiu kontakto!'; -$a->strings['Profile Visibility'] = 'Videbleco de profilo'; -$a->strings['Please choose the profile you would like to display to %s when viewing your profile securely.'] = 'Bonvolu elekti la profilon kiu vi volas montri al %s aspektinde kiam sekure aspektante vian profilon.'; -$a->strings['Contact Information / Notes'] = 'Kontaktaj informoj / Notoj'; -$a->strings['Edit contact notes'] = 'Redakti kontaktnotojn'; -$a->strings['Block/Unblock contact'] = 'Bloki/Malbloki kontakton'; -$a->strings['Ignore contact'] = 'Ignori kontakton'; -$a->strings['Repair URL settings'] = 'Ripari URL agordoj'; -$a->strings['View conversations'] = 'Vidi konversaciojn'; -$a->strings['Last update:'] = 'Plej ĵusa ĝisdatigo:'; -$a->strings['Update public posts'] = 'Ĝisdatigi publikajn afiŝojn'; -$a->strings['Update now'] = 'Ĝisdatigi nun'; -$a->strings['Unignore'] = 'Malignori'; -$a->strings['Currently blocked'] = 'Nuntempe blokata'; -$a->strings['Currently ignored'] = 'Nuntempe ignorata'; -$a->strings['Currently archived'] = 'Nuntempe enarkivigita'; -$a->strings['Replies/likes to your public posts may still be visible'] = 'Rispondoj/ŝataĵo al viaj publikaj afiŝoj eble plu estos videbla'; -$a->strings['Suggestions'] = 'Sugestoj'; -$a->strings['Suggest potential friends'] = 'Sugesti amikojn'; -$a->strings['Show all contacts'] = 'Montri ĉiujn kontaktojn'; -$a->strings['Unblocked'] = 'Malblokita'; -$a->strings['Only show unblocked contacts'] = 'Nur montri neblokitajn kontaktojn'; -$a->strings['Blocked'] = 'Blokita'; -$a->strings['Only show blocked contacts'] = 'Nur montri blokitajn kontaktojn'; -$a->strings['Ignored'] = 'Ignorita'; -$a->strings['Only show ignored contacts'] = 'Nur montri ignoritajn kontaktojn'; -$a->strings['Archived'] = 'Enarkivigita'; -$a->strings['Only show archived contacts'] = 'Nur montri enarkivigitajn kontaktojn'; -$a->strings['Hidden'] = 'Kaŝita'; -$a->strings['Only show hidden contacts'] = 'Nur montri kaŝitajn kontaktojn'; -$a->strings['Search your contacts'] = 'Serĉi viajn kontaktojn'; -$a->strings['Archive'] = 'Enarkivigi'; -$a->strings['Unarchive'] = 'Elarkivigi'; -$a->strings['View all contacts'] = 'Vidi ĉiujn kontaktojn'; -$a->strings['Advanced Contact Settings'] = 'Specialaj Kontaktagordoj'; -$a->strings['Mutual Friendship'] = 'Reciproka amikeco'; -$a->strings['is a fan of yours'] = 'estas admiranto de vi'; -$a->strings['you are a fan of'] = 'vi estas admiranto de'; -$a->strings['Toggle Blocked status'] = 'Ŝalti/malŝalti Blokitan staton'; -$a->strings['Toggle Ignored status'] = 'Ŝalti/malŝalti Ignoritan staton'; -$a->strings['Toggle Archive status'] = 'Ŝalti/malŝalti Enarkivigitan staton'; -$a->strings['Delete contact'] = 'Forviŝi kontakton'; -$a->strings['This may occasionally happen if contact was requested by both persons and it has already been approved.'] = 'Tio ĉi okazis de tempo al tempo se ambaŭ personoj petas kontakton ka ĝi jam estas aprobita.'; -$a->strings['Response from remote site was not understood.'] = 'Ne komprenis la rispondon de la fora retejo.'; -$a->strings['Unexpected response from remote site: '] = 'Neatendita rispondo de la fora retejo:'; -$a->strings['Confirmation completed successfully.'] = 'Konfirmo sukcese kompletigita.'; -$a->strings['Remote site reported: '] = 'La fora retejo raportis:'; -$a->strings['Temporary failure. Please wait and try again.'] = 'Dumtempa eraro. Bonvolu atendi kaj provi refoje.'; -$a->strings['Introduction failed or was revoked.'] = 'La prezento malsukcesis au estas revokita.'; -$a->strings['Unable to set contact photo.'] = 'Neeblas agordi la kontaktbildo.'; -$a->strings['No user record found for \'%s\' '] = 'Ne trovis uzanton \'%s\' '; -$a->strings['Our site encryption key is apparently messed up.'] = 'Ŝajnas kvazaŭ la ĉifroŝlosilo de nia retejo estas fuŝita.'; -$a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'Malplena adreso de retejo provizita, aŭ ni ne povis malĉifri la adreson.'; -$a->strings['Contact record was not found for you on our site.'] = 'Kontakto ne trovita por vi en via retejo.'; -$a->strings['Site public key not available in contact record for URL %s.'] = 'Publika ŝlosilo de retejo ne disponeblas en la kontaktrikordo por la URL adreso %s.'; -$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'La identeco provizita de via sistemo estas duoblo ĉe nia sistemo. Ĝi eble funkcias se vi provas refoje.'; -$a->strings['Unable to set your contact credentials on our system.'] = 'Ne sukcesis agordi la legitimaĵojn de via kontakto ĉe nia sistemo.'; -$a->strings['Unable to update your contact profile details on our system'] = 'Neeblas ĝisdatigi viajn profildetalojn ĉe nia sistemo.'; -$a->strings['%1$s has joined %2$s'] = '%1$s aliĝis al %2$s'; -$a->strings['This introduction has already been accepted.'] = 'Tia prezento jam estas akceptita'; -$a->strings['Profile location is not valid or does not contain profile information.'] = 'La adreso de la profilo ne validas aŭ ne enhavas profilinformojn.'; -$a->strings['Warning: profile location has no identifiable owner name.'] = 'Averto: La adreso de la profilo ne enhavas identeblan personan nomon.'; -$a->strings['Warning: profile location has no profile photo.'] = 'Averto: La adreso de la profilo ne enhavas bildon.'; -$a->strings['%d required parameter was not found at the given location'] = [ - 0 => '%d bezonataj parametroj ne trovita ĉe la donata adreso.', - 1 => '%d bezonataj parametroj ne trovita ĉe la donata adreso.', -]; -$a->strings['Introduction complete.'] = 'Prezento sukcesis.'; -$a->strings['Unrecoverable protocol error.'] = 'Neĝustigebla eraro en protokolo.'; -$a->strings['Profile unavailable.'] = 'Profilo ne estas disponebla.'; -$a->strings['%s has received too many connection requests today.'] = '%s hodiaŭ ricevis tro multe da konektpetoj.'; -$a->strings['Spam protection measures have been invoked.'] = 'Kontraŭspamilo estas aktivita.'; -$a->strings['Friends are advised to please try again in 24 hours.'] = 'Amikoj, vi bonvolu ripeti post 24 horoj.'; -$a->strings['Invalid locator'] = 'Nevalida adreso.'; -$a->strings['Invalid email address.'] = 'Nevalida repoŝtadreso.'; -$a->strings['This account has not been configured for email. Request failed.'] = 'La konto ne estas agordita por retpoŝto. La peto malsukcesis.'; -$a->strings['You have already introduced yourself here.'] = 'Vi vin jam prezentis tie.'; -$a->strings['Apparently you are already friends with %s.'] = 'Ŝajnas kvazaŭ vi jam amikiĝis kun %s.'; -$a->strings['Invalid profile URL.'] = 'Nevalida adreso de profilo.'; -$a->strings['Your introduction has been sent.'] = 'Via prezento estas sendita.'; -$a->strings['Please login to confirm introduction.'] = 'Bonvolu ensaluti por jesigi la prezenton.'; -$a->strings['Incorrect identity currently logged in. Please login to this profile.'] = 'Malĝusta identaĵo ensalutata. Bonvolu ensaluti en tiun profilon.'; -$a->strings['Confirm'] = 'Konfirmi.'; -$a->strings['Hide this contact'] = 'Kaŝi tiun kontakton'; -$a->strings['Welcome home %s.'] = 'Bonvenon hejme, %s.'; -$a->strings['Please confirm your introduction/connection request to %s.'] = 'Bonvolu konfirmi vian prezenton / kontaktpeton al %s.'; -$a->strings['Please enter your \'Identity Address\' from one of the following supported communications networks:'] = 'Bonvolu entajpi vian \'Identecan Adreson\' de iu de tiuj subtenataj komunikaj retejoj: '; -$a->strings['Friend/Connection Request'] = 'Prezento / Konektpeto'; -$a->strings['Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca'] = 'Ekzemploj: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca'; -$a->strings['Please answer the following:'] = 'Bonvolu respondi:'; -$a->strings['Does %s know you?'] = 'Ĉu %s konas vin?'; -$a->strings['Add a personal note:'] = 'Aldoni personan noton:'; -$a->strings['StatusNet/Federated Social Web'] = 'StatusNet/Federaciaj interkonaj retejoj'; -$a->strings[' - please do not use this form. Instead, enter %s into your Diaspora search bar.'] = ' - bonvolu ne uzi ĉi formo. Anstataŭe, entajpu %s en la Diaspora serĉilo.'; -$a->strings['Your Identity Address:'] = 'Via identeca adreso:'; -$a->strings['Submit Request'] = 'Sendi peton'; -$a->strings['Contact added'] = 'Aldonis kontakton'; -$a->strings['Could not connect to database.'] = 'Ne eblas konekti la datumbazon.'; -$a->strings['Could not create table.'] = 'Ne eblas krei tabelon.'; -$a->strings['Your Friendica site database has been installed.'] = 'La datumbazo de vi Friendica retjo estas instalita.'; -$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Vi bezonas mane importi la dosieron "database.sql" per phpmyadmin aŭ mysql.'; -$a->strings['Please see the file "INSTALL.txt".'] = 'Bonvolu legi la dosieron "INSTALL.txt".'; -$a->strings['System check'] = 'Sistema kontrolo'; -$a->strings['Check again'] = 'Ree kontroli'; -$a->strings['Database connection'] = 'Datumbaza konekto'; -$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Por instali Friendica, ni bezonas scii kiel konekti al via datumbazo.'; -$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Bonvolu kontakti vian servilprovizanton aŭ administranton se vi havas demandoj pri ĉi tiaj agordoj.'; -$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'La datumbazo nomata malsupren jam ekzistu. Se ĝi ne ekzistas, bonvolu unue krei ĝin antaŭ progresi.'; -$a->strings['Database Server Name'] = 'Nomo de datumbaza servilo.'; -$a->strings['Database Login Name'] = 'Salutnomo ĉe la datumbazo.'; -$a->strings['Database Login Password'] = 'Pasvorto ĉe la datumbazo.'; -$a->strings['Database Name'] = 'Nomo de la datumbazo.'; -$a->strings['Site administrator email address'] = 'Retpoŝtadreso de la reteja administranto'; -$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'La repoŝtadreso de via konto bezonas esti la sama por uzi la TTTa administrilo.'; -$a->strings['Please select a default timezone for your website'] = 'Bonvolu elekti defaŭltan horzonon por via retejo.'; -$a->strings['Site settings'] = 'Retejaj agordoj'; -$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Komanda linia versio de PHP ne trovita en PATH de la retservilo.'; -$a->strings['PHP executable path'] = 'Vojo de la komanda linia versio de PHP'; -$a->strings['Enter full path to php executable. You can leave this blank to continue the installation.'] = 'Entajpu la plenan vojon al la php komandodosiero. Vi eblas lasi tion malplena por pluigi la instalado.'; -$a->strings['Command line PHP'] = 'komanda linia versio de PHP'; -$a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'En via komanda linia versio de PHP je via sistemo, "register_argc_argv" ne estas aktivita.'; -$a->strings['This is required for message delivery to work.'] = 'Tio estas bezonata por la livero de mesaĝoj.'; -$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'] = 'Eraro: La funkcio "openssl_pkey_new" je tia sistemo ne eblas generi ĉifroŝlosilojn.'; -$a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'Se la operaciumo sistemo estas Windows, bonvolu legi: http://www.php.net/manual/en/openssl.installation.php'; -$a->strings['Generate encryption keys'] = 'Generi ĉifroŝlosilojn'; -$a->strings['libCurl PHP module'] = 'PHP modulo libCurl'; -$a->strings['GD graphics PHP module'] = 'PHP modulo GD'; -$a->strings['OpenSSL PHP module'] = 'PHP modulo OpenSSL'; -$a->strings['mysqli PHP module'] = 'PHP modulo mysqli'; -$a->strings['mb_string PHP module'] = 'PHP modulo mb_string'; -$a->strings['Apache mod_rewrite module'] = 'Apache mod_rewrite modulo'; -$a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Eraro: La modulo mod_rewrite en la Apache retservilo estas bezonata sed ne instalita.'; -$a->strings['Error: libCURL PHP module required but not installed.'] = 'Eraro: La modulo libCURL en PHP estas bezonata sed ne instalita.'; -$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Eraro: La modulo GD en PHP kun subteno por JPEG estas bezonata sed ne instalita.'; -$a->strings['Error: openssl PHP module required but not installed.'] = 'Eraro: La modulo OpenSSL en PHP estas bezonata sed ne instalita.'; -$a->strings['Error: mysqli PHP module required but not installed.'] = 'Eraro: La modulo mysqli en PHP estas bezonata sed ne instalita.'; -$a->strings['Error: mb_string PHP module required but not installed.'] = 'Eraro: La modulo mb_string en PHP estas bezonata sed ne instalita.'; -$a->strings['The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.'] = 'La reta instalilo bezonas skribi dosieron nomata ".htconfig.php" en la baza dosierujo de la retservilo, sed ne sukcesis.'; -$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.'] = 'Tio ĉi plej ofte estas agordo rilate al permesoj, ĉar la servilo eble ne povas skribi en via dosierujo, eĉ se vi mem povas skribi.'; -$a->strings['At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder.'] = 'Post la fino de tiu proceduro, ni donos al vi tekston por konservi en dosiero .htconfig.php en via baza Friendica dosierujo.'; -$a->strings['You can alternatively skip this procedure and perform a manual installation. Please see the file "INSTALL.txt" for instructions.'] = 'Vi ankaŭ povas preterpasi tiun proceduron kaj fari permanan instaladon. Bonvolu legi la dosieron "INSTALL.txt" por trovi instrukciojn.'; -$a->strings['.htconfig.php is writable'] = '.htconfig.php estas skribebla.'; -$a->strings['Url rewrite in .htaccess is not working. Check your server configuration.'] = 'Url rewrite en .htaccess ne funkcias. Kontrolu la agordojn de la servilo.'; -$a->strings['Url rewrite is working'] = 'URL rewrite funkcias.'; -$a->strings['The database configuration file ".htconfig.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.'] = 'Ne povis skribi la datumbaza agordoj en la dosiero ".htconfig.php". Bonvolu uzi la inkluzivan tekston por krei agordan dosieron en la baza dosierujo de la retservilo.'; -$a->strings['

    What next

    '] = '

    Kio sekvas nun?

    '; -$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the poller.'] = 'GRAVA: Vi bezonas [mane] agordi planitan taskon por la Friendica poller.'; -$a->strings['Unable to locate original post.'] = 'Ne eblas trovi originalan afiŝon.'; -$a->strings['Empty post discarded.'] = 'Forviŝis malplenan afiŝon.'; -$a->strings['System error. Post not saved.'] = 'Sistema eraro. Afiŝo ne registrita.'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'Ne sukcesis konekti al retpoŝtkonto kun la provizitaj agordoj.'; +$a->strings['Email access is disabled on this site.'] = 'Retpoŝta atingo ne disponeblas ĉi tie.'; +$a->strings['None'] = 'Nenio'; +$a->strings['Email/Mailbox Setup'] = 'Agordoj pri Retpoŝto'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Se vi volas uzi ĉi tiun servon por komuniki per retpoŝto (nedeviga), bonvolu specifi kiel konekti al vian retpoŝtkonton.'; +$a->strings['Last successful email check:'] = 'Plej ĵusa sukcesa kontrolo de poŝto:'; +$a->strings['IMAP server name:'] = 'Nomo de IMAP servilo:'; +$a->strings['IMAP port:'] = 'Numero de IMAP pordo:'; +$a->strings['Security:'] = 'Sekureco:'; +$a->strings['Email login name:'] = 'Retpoŝta salutnomo:'; +$a->strings['Email password:'] = 'Retpoŝta pasvorto:'; +$a->strings['Reply-to address:'] = 'Responda adreso (Reply-to):'; +$a->strings['Send public posts to all email contacts:'] = 'Sendu publikajn afiŝojn al ĉiuj retpoŝtkontaktoj:'; +$a->strings['Action after import:'] = 'Ago post la importado:'; +$a->strings['Move to folder'] = 'Movi al dosierujo'; +$a->strings['Move to folder:'] = 'Movi al dosierujo:'; +$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.'] = 'Delegitoj povas administri ĉiujn ecojn de la konto/paĝo, escepte bazaj kontoagordoj. Bonvolu ne delegitigi vian personan konton al iu al kiu vi ne plene fidas.'; +$a->strings['Existing Page Delegates'] = 'Estantaj Delegitoj de la Paĝo'; +$a->strings['Potential Delegates'] = 'Eblaj Delegitoj'; +$a->strings['Add'] = 'Aldoni'; +$a->strings['No entries.'] = 'Neniom da afiŝoj.'; +$a->strings['Display Settings'] = 'Ekranagordoj'; +$a->strings['Theme settings'] = 'Agordoj pri la etoso'; +$a->strings['Display Theme:'] = 'Vidiga etoso:'; +$a->strings['Maximum of 100 items'] = 'Maksimume 100 eroj'; +$a->strings['Update browser every xx seconds'] = 'Ĝisdatigu retesplorilon ĉiu xxx sekundoj'; +$a->strings['Connected Apps'] = 'Konektitaj Programoj'; +$a->strings['Remove authorization'] = 'Forviŝi rajtigon'; +$a->strings['(click to open/close)'] = '(klaku por malfermi/fermi)'; +$a->strings['Edit Profile Details'] = 'Redakti Detalojn de Profilo'; +$a->strings['Location'] = 'Loko'; +$a->strings['Miscellaneous'] = 'Diversaj'; +$a->strings['Upload Profile Photo'] = 'Alŝuti profilbildon'; +$a->strings['Street Address:'] = 'Adreso:'; +$a->strings['Locality/City:'] = 'Urbo:'; +$a->strings['Region/State:'] = 'Ŝtato:'; +$a->strings['Postal/Zip Code:'] = 'Poŝtkodo:'; +$a->strings['Country:'] = 'Lando:'; +$a->strings['Homepage URL:'] = 'Adreso de Hejmpaĝo:'; +$a->strings['Public Keywords:'] = 'Publikaj ŝlosilvortoj:'; +$a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Por sugesti amikoj. Videbla al aliaj.)'; +$a->strings['Private Keywords:'] = 'Privataj ŝlosilvortoj:'; +$a->strings['(Used for searching profiles, never shown to others)'] = '(Por serĉi profilojn. Neniam videbla al aliaj.)'; +$a->strings['Image size reduction [%s] failed.'] = 'Malsukcesis malpligrandigi [%s] la bildon.'; +$a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Reŝarĝu la paĝon au malplenigu la kaŝmemoro de la retesplorilo se la nova bildo ne tuj aperas.'; +$a->strings['Unable to process image'] = 'Ne eblas procezi bildon.'; +$a->strings['Crop Image'] = 'Stuci Bildon'; +$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Bonvolu agordi la stuco de la bildo por optimuma aspekto.'; +$a->strings['or'] = 'aŭ'; +$a->strings['skip this step'] = 'Preterpasi tian paŝon'; +$a->strings['select a photo from your photo albums'] = 'elekti bildon el viaj albumoj'; +$a->strings['Remove My Account'] = 'Forigi Mian Konton'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Tio tute forigos vian konton. Kiam farita, la konto ne estas restaŭrebla.'; +$a->strings['Please enter your password for verification:'] = 'Bonvolu entajpi vian pasvorton por kontrolado:'; +$a->strings['Welcome to Friendica'] = 'Bonvenon ĉe Friendica'; +$a->strings['New Member Checklist'] = 'Kontrololisto por Novaj Membroj'; +$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.'] = 'Lasu nin oferi al vi kelkajn konsolojn kaj ligilojn por plifaciligi vian komencon. Klaku iun elementon por viziti la rilatan paĝon. Ligilo al ĉi tiu paĝo videblos en via hejmpaĝo dum du semajnojn post via komenca membriĝo. Post du semajnoj, la ligilo silente malaperos. '; +$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.'] = 'Bonvolu ŝanĝi vian pasvorton ĉe Agordoj. Krome, memorigu vian identadreson. Ĝi aspektas kiel retpoŝtadreso kaj estas bezonata por konekti al novaj amikon en la libera interkona reto.'; +$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.'] = 'Kontrolu la aliajn agordojn, precipe la privatecajn agordojn. Nepublikigita profilo similas al havi telefonnumberon ne registrata en iu telefonlibro. Ĝenerale vi eble volas publikigi vian profilon. Alie, viaj amikoj kaj estontaj amikoj bezonas scii kiel rekte trovi vin.'; +$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.'] = 'Enŝuti profilbildon se vi ankoraŭ ne havas ĝin. Laŭ studoj, homoj kun realaj biloj de si mem trovas novajn amikon duope pli probable ol homoj sen reala bildo.'; +$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.'] = 'Redakti viajn defaŭltan profilon kiel vi ŝatas ĝin. Kontrolu la agordojn por kaŝi vian kontaktliston aŭ kaŝi vian profilon al nekonataj vizitantoj.'; +$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'] = 'Entajpu la akreditaĵojn por via retpoŝtkonto en la konektilagordoj se vi volas importi aŭ interagi kun amikoj aŭ dissendlistoj pere de via retkesto.'; +$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.'] = 'Via kontaktpaĝo estas via portalo por administri amikojn kaj konekti kun amikoj en aliaj retoj. Vi kutime entajpas iliajn adreson aŭ URL adreso en la Aldonu Novan Kontakton dialogon.'; +$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.'] = 'Ĉe la Katalogo vi povas trovi aliajn homojn en ĉi tiu retejo, au en aliaj federaciaj retejoj. Elrigardi al KonektiSekvi ligiloj ĉe iliaj profilo. Donu vian propran Identecan Adreson se la retejo demandas ĝin.'; +$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.'] = 'En la flanka strio de la Kontaktoj paĝo troviĝas kelkajn helpilojn por trovi novajn amikojn. Ni povas automate trovi amikojn per interesoj, serĉu ilin per nomo aŭ intereso kaj faras sugestojn baze de estantaj kontaktoj. Ĉe nova instalita retejo, la unuaj sugestoj kutime aperas post 24 horoj.'; +$a->strings['Our help pages may be consulted for detail on other program features and resources.'] = 'Niaj Helpo paĝoj enhavas pli da detaloj pri aliaj programaj trajtoj.'; +$a->strings['%s liked %s\'s post'] = '%s ŝatis la afiŝon de %s'; +$a->strings['%s disliked %s\'s post'] = '%s malŝatis la afiŝon de %s'; +$a->strings['%s is attending %s\'s event'] = '%s ĉeestos la eventon de %s'; +$a->strings['%s is not attending %s\'s event'] = '%s ne ĉeestos la eventon de %s'; +$a->strings['%s is now friends with %s'] = '%s amikiĝis kun %s'; +$a->strings['%s commented on %s\'s post'] = '%s komentis pri la afiŝo de %s'; +$a->strings['%s created a new post'] = '%s kreis novan afiŝon'; +$a->strings['Friend Suggestion'] = 'Amikosugestoj'; +$a->strings['Friend/Connect Request'] = 'Kontaktpeto'; +$a->strings['New Follower'] = 'Nova abonanto'; +$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s sendis al vi novan privatan mesaĝon ĉe %2$s.'; +$a->strings['a private message'] = 'privatan mesaĝon'; +$a->strings['%1$s sent you %2$s.'] = '%1$s sendis al vi %2$s.'; +$a->strings['Please visit %s to view and/or reply to your private messages.'] = 'Bonvolu viziti %s por vidi aŭ respondi viajn privatajn mesaĝojn.'; +$a->strings['%s commented on an item/conversation you have been following.'] = '%s komentis pri elemento/konversacio kiun vi sekvas.'; +$a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Bonvolu viziti %s por vidi aŭ respondi la konversacion.'; +$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s skribis al via profilmuro ĉe %2$s'; +$a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s afiŝis al [url=%2$s]via muro[/url]'; +$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Vi ricevis prezenton de \'%1$s\' ĉe %2$s'; +$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Vi ricevis [url=%1$s]prezenton[/url] de %2$s.'; +$a->strings['You may visit their profile at %s'] = 'Vi povas vidi la profilon de li aŭ ŝi ĉe %s'; +$a->strings['Please visit %s to approve or reject the introduction.'] = 'Bonvolu viziti %s por aprobi aŭ malaprobi la prezenton.'; +$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = 'Vi ricevis amikosugeston de \'%1$s\' ĉe %2$s'; +$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = 'Vi ricevis [url=%1$s]amikosugeston[/url] pri %2$s de %3$s.'; +$a->strings['Name:'] = 'Nomo:'; +$a->strings['Photo:'] = 'Bildo:'; +$a->strings['Please visit %s to approve or reject the suggestion.'] = 'Bonvolu viziti %s por aprobi aŭ malaprobi la sugeston.'; $a->strings['This message was sent to you by %s, a member of the Friendica social network.'] = 'Ĉi mesaĝo estas sendita al vi de %s, membro de la Friendica interkona reto.'; $a->strings['You may visit them online at %s'] = 'Vi povas viziti ilin rete ĉe %s'; $a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Bonvolu rispondi al ĉi mesaĝo kaj kontaktu la sendinto se vi ne volas ricevi tiujn mesaĝojn.'; $a->strings['%s posted an update.'] = '%s publikigis afiŝon.'; -$a->strings['Private messages to this person are at risk of public disclosure.'] = 'La privateco de privataj mesaĝoj al ĉi tiu persono ne ĉiam estas garantita.'; -$a->strings['Invalid contact.'] = 'Nevalida kontakto.'; -$a->strings['Commented Order'] = 'Komenta Ordo'; -$a->strings['Sort by Comment Date'] = 'Ordigi laŭ Dato de Komento'; -$a->strings['Posted Order'] = 'Afiŝita Ordo'; -$a->strings['Sort by Post Date'] = 'Ordigi laŭ Dato de Afiŝado'; -$a->strings['Posts that mention or involve you'] = 'Afiŝoj menciantaj vin aŭ pri vi'; -$a->strings['New'] = 'Nova'; -$a->strings['Activity Stream - by date'] = 'Fluo de Aktiveco - laŭ dato'; -$a->strings['Shared Links'] = 'Kunhavigitaj Ligiloj'; -$a->strings['Interesting Links'] = 'Interesaj Ligiloj'; -$a->strings['Starred'] = 'Steligita'; -$a->strings['Favourite Posts'] = 'Favorigitaj Afiŝoj'; -$a->strings['{0} wants to be your friend'] = '{0} volas amikiĝi kun vi'; -$a->strings['{0} sent you a message'] = '{0} sendis mesaĝon al vi'; -$a->strings['{0} requested registration'] = '{0} petis registradon'; -$a->strings['No contacts.'] = 'Neniu kontaktojn.'; -$a->strings['Alignment'] = 'Ĝisrandigo'; -$a->strings['Left'] = 'Maldekstren'; -$a->strings['Center'] = 'Centren'; -$a->strings['Color scheme'] = 'Kolorskemo'; -$a->strings['Community Profiles'] = 'Komunumaj Profiloj'; -$a->strings['Last users'] = 'Ĵusaj uzantoj'; -$a->strings['Find Friends'] = 'Trovi Amikojn'; -$a->strings['Local Directory'] = 'Loka Katalogo'; -$a->strings['Connect Services'] = 'Konekti Servojn'; -$a->strings['Community Pages'] = 'Komunumaj paĝoj'; -$a->strings['Help or @NewHere ?'] = 'Helpu aŭ @NewHere ?'; -$a->strings['Delete this item?'] = 'Forviŝi ĉi tiun elementon?'; -$a->strings['show fewer'] = 'montri malpli'; -$a->strings['Update %s failed. See error logs.'] = 'Malsukcesis ĝisdatigi %s. Vidu la protokolojn.'; -$a->strings['Create a New Account'] = 'Krei Novan Konton'; -$a->strings['Password: '] = 'Pasvorto:'; -$a->strings['Or login using OpenID: '] = 'Aŭ ensaluti per OpenID:'; -$a->strings['Forgot your password?'] = 'Ĉu vi vorgesis vian pasvorton?'; +$a->strings['Private Message'] = 'Privata mesaĝo'; +$a->strings['Edit'] = 'Redakti'; +$a->strings['to'] = 'al'; +$a->strings['Wall-to-Wall'] = 'Muro-al-Muro'; +$a->strings['via Wall-To-Wall:'] = 'per Muro-al-Muro:'; +$a->strings['%d comment'] = [ + 0 => '%d komento', + 1 => '%d komentoj', +]; +$a->strings['following'] = 'sekvanta'; +$a->strings['stopped following'] = 'ne plu sekvas'; +$a->strings['Login failed.'] = 'Ensalutado malsukcesis.'; +$a->strings['Please upload a profile photo.'] = 'Bonvolu alŝuti profilbildon.'; diff --git a/view/lang/es/messages.po b/view/lang/es/messages.po index 8920b89cf..baef55059 100644 --- a/view/lang/es/messages.po +++ b/view/lang/es/messages.po @@ -1,5 +1,5 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: @@ -55,388 +55,3060 @@ 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-04-01 09:25+0000\n" -"Last-Translator: Senex Petrovic \n" -"Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n" +"POT-Creation-Date: 2023-09-18 05:30+0000\n" +"PO-Revision-Date: 2011-05-05 10:19+0000\n" +"Last-Translator: Senex Petrovic , 2021\n" +"Language-Team: Spanish (http://app.transifex.com/Friendica/friendica/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: src/Util/Temporal.php:93 src/Util/Temporal.php:95 -#: src/Module/Settings/Profile/Index.php:245 -msgid "Miscellaneous" -msgstr "Varios" +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 +msgid "Unable to locate original post." +msgstr "No se encontró la publicación original." -#: src/Util/Temporal.php:163 src/Module/Profile/Profile.php:164 -msgid "Birthday:" -msgstr "Fecha de Nac:" +#: mod/item.php:138 +msgid "Post updated." +msgstr "Artículo actualizado." -#: src/Util/Temporal.php:165 src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:260 -msgid "Age: " -msgstr "Edad: " +#: mod/item.php:203 mod/item.php:207 +msgid "Item wasn't stored." +msgstr "Artículo no almacenado." -#: src/Util/Temporal.php:165 src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:260 +#: mod/item.php:217 +msgid "Item couldn't be fetched." +msgstr "Artículo no pudo recuperarse." + +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "Publicación vacía descartada." + +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 +#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 +msgid "Item not found." +msgstr "Elemento no encontrado." + +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:99 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:38 +#: src/Module/FriendSuggest.php:57 src/Module/Invite.php:42 +#: src/Module/Invite.php:131 src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Delegation.php:41 src/Module/Settings/Delegation.php:71 +#: src/Module/Settings/Display.php:73 src/Module/Settings/Display.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:111 +#: src/Module/Settings/RemoveMe.php:117 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Import.php:84 +#: src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "Permiso denegado." + +#: mod/lostpass.php:40 +msgid "No valid account found." +msgstr "No se encontró cuenta válida" + +#: mod/lostpass.php:52 +msgid "Password reset request issued. Check your email." +msgstr "Contraseña reestablecida enviada. Revisa tu correo." + +#: mod/lostpass.php:58 #, php-format -msgid "%d year old" -msgid_plural "%d years old" -msgstr[0] "%d Años" -msgstr[1] "%d Años" +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\tEstimado %1$s,\n\t\t\tSe recibió una solicitud \"%2$s\" para resetear el password\n\t\tde tu cuenta. Para confirmar la solicitud, selecciona el link\n\t\tdebajo o cópialo en la dirección de tu navegador.\n\n\t\tSi no lo solicitaste, NO ABRAS el VÍNCULO\n\t\te ignoralo o borra este correo, la solicitud expirará pronto.\n\n\t\ty tu contraseña no cambiará a menos que verifiquemos que tu\n\t\thiciste la petición." -#: src/Util/Temporal.php:167 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD o MM-DD" - -#: src/Util/Temporal.php:314 -msgid "never" -msgstr "nunca" - -#: src/Util/Temporal.php:321 -msgid "less than a second ago" -msgstr "hace menos de un segundo" - -#: src/Util/Temporal.php:329 -msgid "year" -msgstr "año" - -#: src/Util/Temporal.php:329 -msgid "years" -msgstr "años" - -#: src/Util/Temporal.php:330 src/Model/Event.php:464 mod/cal.php:281 -#: mod/events.php:427 -msgid "month" -msgstr "mes" - -#: src/Util/Temporal.php:330 -msgid "months" -msgstr "meses" - -#: src/Util/Temporal.php:331 src/Model/Event.php:465 mod/cal.php:282 -#: mod/events.php:428 -msgid "week" -msgstr "semana" - -#: src/Util/Temporal.php:331 -msgid "weeks" -msgstr "semanas" - -#: src/Util/Temporal.php:332 src/Model/Event.php:466 mod/cal.php:283 -#: mod/events.php:429 -msgid "day" -msgstr "día" - -#: src/Util/Temporal.php:332 -msgid "days" -msgstr "días" - -#: src/Util/Temporal.php:333 -msgid "hour" -msgstr "hora" - -#: src/Util/Temporal.php:333 -msgid "hours" -msgstr "horas" - -#: src/Util/Temporal.php:334 -msgid "minute" -msgstr "minuto" - -#: src/Util/Temporal.php:334 -msgid "minutes" -msgstr "minutos" - -#: src/Util/Temporal.php:335 -msgid "second" -msgstr "segundo" - -#: src/Util/Temporal.php:335 -msgid "seconds" -msgstr "segundos" - -#: src/Util/Temporal.php:345 +#: mod/lostpass.php:69 #, php-format -msgid "in %1$d %2$s" -msgstr "en %1$d %2$s" +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\tSigue este vínculo para verificar tu identidad:\n\n\t\t%1$s\n\n\t\tRecibirás un mensaje de seguimiento con la nueva contraseña.\n\t\tPodrás cambiar la contraseña desde la configuración de tu cuenta al ingresar.\n\n\t\tLos detalles de ingreso son:\n\n\t\tSitio:\t%2$s\n\t\tNombre de Usuario:\t%3$s" -#: src/Util/Temporal.php:348 +#: mod/lostpass.php:84 #, php-format -msgid "%1$d %2$s ago" -msgstr "hace %1$d %2$s" +msgid "Password reset requested at %s" +msgstr "Contraseña restablecida enviada a %s" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: mod/lostpass.php:100 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La solicitud no puede ser verificada (deberías haberla proporcionado antes). Falló el restablecimiento de la contraseña." + +#: mod/lostpass.php:113 +msgid "Request has expired, please make a new one." +msgstr "La solicitud expiró, solicite una nueva." + +#: mod/lostpass.php:128 +msgid "Forgot your Password?" +msgstr "¿Olvidaste tu contraseña?" + +#: mod/lostpass.php:129 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Introduce tu correo para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales." + +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 +msgid "Nickname or Email: " +msgstr "Apodo o Correo electrónico: " + +#: mod/lostpass.php:131 +msgid "Reset" +msgstr "Restablecer" + +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 +msgid "Password Reset" +msgstr "Restablecer la contraseña" + +#: mod/lostpass.php:147 +msgid "Your password has been reset as requested." +msgstr "Tu contraseña ha sido restablecida como solicitaste." + +#: mod/lostpass.php:148 +msgid "Your new password is" +msgstr "Tu nueva contraseña es" + +#: mod/lostpass.php:149 +msgid "Save or copy your new password - and then" +msgstr "Guarda o copia tu nueva contraseña y luego" + +#: mod/lostpass.php:150 +msgid "click here to login" +msgstr "pulsa aquí para acceder" + +#: mod/lostpass.php:151 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puedes cambiar tu contraseña desde la página de Configuración después de acceder con éxito." + +#: mod/lostpass.php:155 +msgid "Your password has been reset." +msgstr "Tu contraseña fue restablecida." + +#: mod/lostpass.php:158 #, php-format -msgid "%1$s, %2$s Administrator" -msgstr "%1$s, %2$s Administrador" +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\tEstimado %1$s,\n\t\t\t\tTu contraseña ha sido cambiada como solicitaste. Manten esta\n\t\t\tinformación en tu registro (o cambia tu contraseña inmediatamente a\n\t\t\tuna que puedas recordar).\n\t\t" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: mod/lostpass.php:164 #, php-format -msgid "%s Administrator" -msgstr "%s Administrador" +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\tTus datos de acceso son los siguientes:\n\n\t\t\tSitio de Acceso:\t%1$s\n\t\t\tNombre de Usuario:\t%2$s\n\t\t\tContraseña:\t%3$s\n\n\t\t\tPuedes cambiar la contraseña desde configuración de la cuenta al ingresar.\n\t\t" -#: 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 "gracias" - -#: src/Util/EMailer/MailBuilder.php:259 -msgid "Friendica Notification" -msgstr "Notificación de Friendica" - -#: src/App/Module.php:241 -msgid "You must be logged in to use addons. " -msgstr "Tienes que estar registrado para tener acceso a los accesorios." - -#: src/App/Router.php:234 +#: mod/lostpass.php:176 #, php-format -msgid "Method not allowed for this module. Allowed method(s): %s" -msgstr "Método no permitido en este módulo. Permitido(s): %s" +msgid "Your password has been changed at %s" +msgstr "Tu contraseña se ha cambiado por %s" -#: src/App/Router.php:236 src/Module/HTTPException/PageNotFound.php:32 -msgid "Page not found." -msgstr "Pagina no encontrada." +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 +msgid "New Message" +msgstr "Nuevo Mensaje" -#: src/App/Page.php:250 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 +msgid "No recipient selected." +msgstr "Ningún destinatario seleccionado" + +#: mod/message.php:87 +msgid "Unable to locate contact information." +msgstr "No se encuentra información del contacto." + +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 +msgid "Message could not be sent." +msgstr "El mensaje no ha podido ser enviado." + +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 +msgid "Message collection failure." +msgstr "Fallo en recolección de mensajes." + +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 +msgid "Discard" +msgstr "Descartar" + +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +msgid "Messages" +msgstr "Mensajes" + +#: mod/message.php:148 +msgid "Conversation not found." +msgstr "Conversación no encontrada." + +#: mod/message.php:153 +msgid "Message was not deleted." +msgstr "Mensaje no borrado." + +#: mod/message.php:168 +msgid "Conversation was not removed." +msgstr "Conversación no borrada." + +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 +msgid "Please enter a link URL:" +msgstr "Introduce una dirección URL:" + +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 +msgid "Send Private Message" +msgstr "Enviar Mensaje Privado" + +#: mod/message.php:191 mod/message.php:346 +msgid "To:" +msgstr "Para:" + +#: mod/message.php:192 mod/message.php:347 +msgid "Subject:" +msgstr "Asunto:" + +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 +msgid "Your message:" +msgstr "Tu mensaje:" + +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "Subir foto" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "Insertar enlace" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:578 +msgid "Please wait" +msgstr "Espere" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:145 +#: src/Module/Install.php:234 src/Module/Install.php:274 +#: src/Module/Install.php:309 src/Module/Invite.php:178 +#: src/Module/Item/Compose.php:189 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Object/Post.php:1095 +#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171 +#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Enviar" + +#: mod/message.php:223 +msgid "No messages." +msgstr "No hay mensajes." + +#: mod/message.php:279 +msgid "Message not available." +msgstr "Mensaje no disponibile." + +#: mod/message.php:323 +msgid "Delete message" +msgstr "Borrar mensaje" + +#: mod/message.php:325 mod/message.php:456 +msgid "D, d M Y - g:i A" +msgstr "D, d M A - g:i A" + +#: mod/message.php:340 mod/message.php:453 +msgid "Delete conversation" +msgstr "Eliminar conversación" + +#: mod/message.php:342 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "No hay comunicaciones seguras disponibles. Podrías responder desde la página de perfil del remitente. " + +#: mod/message.php:345 +msgid "Send Reply" +msgstr "Enviar respuesta" + +#: mod/message.php:427 +#, php-format +msgid "Unknown sender - %s" +msgstr "Remitente desconocido - %s" + +#: mod/message.php:429 +#, php-format +msgid "You and %s" +msgstr "Tú y %s" + +#: mod/message.php:431 +#, php-format +msgid "%s and You" +msgstr "%s y Tú" + +#: mod/message.php:459 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d mensaje" +msgstr[1] "%d mensajes" +msgstr[2] "%d mensajes" + +#: mod/notes.php:52 src/Module/BaseProfile.php:108 +msgid "Personal Notes" +msgstr "Notas Personales" + +#: mod/notes.php:56 +msgid "Personal notes are visible only by yourself." +msgstr "Notas personales solo puedes verlas tu." + +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 +msgid "Save" +msgstr "Guardar" + +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "Usuario no encontrado." + +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 +msgid "Photo Albums" +msgstr "Álbum de Fotos" + +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 +msgid "Recent Photos" +msgstr "Fotos Recientes" + +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 +msgid "Upload New Photos" +msgstr "Subir Nuevas Fotos" + +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 +msgid "everybody" +msgstr "todos" + +#: mod/photos.php:159 +msgid "Contact information unavailable" +msgstr "Información del contacto no disponible" + +#: mod/photos.php:188 +msgid "Album not found." +msgstr "Álbum no encontrado." + +#: mod/photos.php:244 +msgid "Album successfully deleted" +msgstr "Album borrado con éxito" + +#: mod/photos.php:246 +msgid "Album was empty." +msgstr "El Álbum estaba vacío." + +#: mod/photos.php:277 +msgid "Failed to delete the photo." +msgstr "Error al borrar la Foto" + +#: mod/photos.php:545 +msgid "a photo" +msgstr "una foto" + +#: mod/photos.php:545 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s fue etiquetado en %2$s por %3$s" + +#: mod/photos.php:582 src/Module/Conversation/Community.php:159 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Acceso público denegado." + +#: mod/photos.php:587 +msgid "No photos selected" +msgstr "Ninguna foto seleccionada" + +#: mod/photos.php:721 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "" + +#: mod/photos.php:728 +msgid "Upload Photos" +msgstr "Subir fotos" + +#: mod/photos.php:732 mod/photos.php:820 +msgid "New album name: " +msgstr "Nombre del nuevo álbum: " + +#: mod/photos.php:733 +msgid "or select existing album:" +msgstr "o seleccione un Álbum:" + +#: mod/photos.php:734 +msgid "Do not show a status post for this upload" +msgstr "No actualizar tu estado con este envío" + +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "Permisos" + +#: mod/photos.php:801 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "¿Estás seguro de quieres borrar este álbum y todas sus fotos?" + +#: mod/photos.php:802 mod/photos.php:825 +msgid "Delete Album" +msgstr "Eliminar álbum" + +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Cancelar" + +#: mod/photos.php:829 +msgid "Edit Album" +msgstr "Modificar álbum" + +#: mod/photos.php:830 +msgid "Drop Album" +msgstr "Suelte un Álbum" + +#: mod/photos.php:834 +msgid "Show Newest First" +msgstr "Mostrar más nuevos primero" + +#: mod/photos.php:836 +msgid "Show Oldest First" +msgstr "Mostrar más antiguos primero" + +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +msgid "View Photo" +msgstr "Ver foto" + +#: mod/photos.php:889 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." + +#: mod/photos.php:891 +msgid "Photo not available" +msgstr "Foto no disponible" + +#: mod/photos.php:901 +msgid "Do you really want to delete this photo?" +msgstr "¿Estás seguro de que quieres borrar esta foto?" + +#: mod/photos.php:902 mod/photos.php:1102 +msgid "Delete Photo" +msgstr "Eliminar foto" + +#: mod/photos.php:1000 +msgid "View photo" +msgstr "Ver foto" + +#: mod/photos.php:1002 +msgid "Edit photo" +msgstr "Modificar foto" + +#: mod/photos.php:1003 +msgid "Delete photo" +msgstr "Borrar foto" + +#: mod/photos.php:1004 +msgid "Use as profile photo" +msgstr "Usar como foto del perfil" + +#: mod/photos.php:1011 +msgid "Private Photo" +msgstr "Foto privada" + +#: mod/photos.php:1017 +msgid "View Full Size" +msgstr "Ver a tamaño completo" + +#: mod/photos.php:1070 +msgid "Tags: " +msgstr "Etiquetas: " + +#: mod/photos.php:1073 +msgid "[Select tags to remove]" +msgstr "[Seleccionar etiquetas a borrar]" + +#: mod/photos.php:1088 +msgid "New album name" +msgstr "Nuevo nombre del álbum" + +#: mod/photos.php:1089 +msgid "Caption" +msgstr "Título" + +#: mod/photos.php:1090 +msgid "Add a Tag" +msgstr "Añadir una etiqueta" + +#: mod/photos.php:1090 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping" + +#: mod/photos.php:1091 +msgid "Do not rotate" +msgstr "No rotar" + +#: mod/photos.php:1092 +msgid "Rotate CW (right)" +msgstr "Girar a la derecha" + +#: mod/photos.php:1093 +msgid "Rotate CCW (left)" +msgstr "Girar a la izquierda" + +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1092 +msgid "This is you" +msgstr "Este eres tú" + +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:572 +#: src/Object/Post.php:1094 +msgid "Comment" +msgstr "Comentar" + +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1108 +msgid "Preview" +msgstr "Vista previa" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1096 +msgid "Loading..." +msgstr "Cargando..." + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:260 +msgid "Select" +msgstr "Seleccionar" + +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 +msgid "Delete" +msgstr "Eliminar" + +#: mod/photos.php:1298 src/Object/Post.php:408 +msgid "Like" +msgstr "Me gusta" + +#: mod/photos.php:1299 src/Object/Post.php:408 +msgid "I like this (toggle)" +msgstr "Me gusta esto (cambiar)" + +#: mod/photos.php:1300 src/Object/Post.php:409 +msgid "Dislike" +msgstr "No me gusta" + +#: mod/photos.php:1302 src/Object/Post.php:409 +msgid "I don't like this (toggle)" +msgstr "No me gusta esto (cambiar)" + +#: mod/photos.php:1324 +msgid "Map" +msgstr "Mapa" + +#: src/App.php:473 +msgid "No system theme config value set." +msgstr "No hay tema configurado." + +#: src/App.php:580 +msgid "Apologies but the website is unavailable at the moment." +msgstr "" + +#: src/App/Page.php:248 msgid "Delete this item?" msgstr "¿Eliminar este elemento?" -#: src/App/Page.php:251 +#: src/App/Page.php:249 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "¿Bloquear a este autor? No podrá seguirte ni ver tus publicaciones públicas, y tú no podrás ver sus publicaciones ni sus notificaciones." -#: src/App/Page.php:299 +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "" + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "" + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "" + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "" + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "" + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "" + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "" + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "" + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "" + +#: src/App/Page.php:351 msgid "toggle mobile" msgstr "Cambiar a versión móvil" -#: src/Worker/Delivery.php:570 -msgid "(no subject)" -msgstr "(sin asunto)" - -#: src/Factory/Api/Mastodon/Error.php:32 -msgid "Record not found" -msgstr "Registro no encontrado" - -#: src/Factory/Notification/Introduction.php:135 -msgid "Friend Suggestion" -msgstr "Sugerencia de amistad" - -#: src/Factory/Notification/Introduction.php:161 -msgid "Friend/Connect Request" -msgstr "Solicitud de Amistad/Conexión" - -#: src/Factory/Notification/Introduction.php:161 -msgid "New Follower" -msgstr "Nuevo seguidor" - -#: src/Factory/Notification/Notification.php:103 +#: src/App/Router.php:309 #, php-format -msgid "%s created a new post" -msgstr "%s creó un nuevo artículo" +msgid "Method not allowed for this module. Allowed method(s): %s" +msgstr "Método no permitido en este módulo. Permitido(s): %s" -#: src/Factory/Notification/Notification.php:104 -#: src/Factory/Notification/Notification.php:362 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s comentó el artículo de %s" +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +msgid "Page not found." +msgstr "Pagina no encontrada." -#: src/Factory/Notification/Notification.php:130 -#, php-format -msgid "%s liked %s's post" -msgstr "A %s le gusta el artículo de %s" +#: src/App/Router.php:323 +msgid "You must be logged in to use addons. " +msgstr "Tienes que estar registrado para tener acceso a los accesorios." -#: src/Factory/Notification/Notification.php:141 -#, php-format -msgid "%s disliked %s's post" -msgstr "A %s no le gusta el artículo de %s" - -#: src/Factory/Notification/Notification.php:152 -#, php-format -msgid "%s is attending %s's event" -msgstr "%s atenderá el evento de %s" - -#: src/Factory/Notification/Notification.php:163 -#, php-format -msgid "%s is not attending %s's event" -msgstr "%s no atenderá el evento %s" - -#: src/Factory/Notification/Notification.php:174 -#, php-format -msgid "%s may attending %s's event" -msgstr "%s podría asistir al evento de %s" - -#: src/Factory/Notification/Notification.php:201 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s es ahora amigo de %s" - -#: src/Database/DBStructure.php:64 -#, php-format -msgid "The database version had been set to %s." -msgstr "Versión de la Base de Datos establecida a %s." - -#: src/Database/DBStructure.php:77 -#, php-format +#: src/BaseModule.php:401 msgid "" -"The post update is at version %d, it has to be at %d to safely drop the " -"tables." -msgstr "La actualización de la publicación está en versión %d, debe estar en %d para eliminar las tablas de manera segura." +"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 "Token de la ficha de seguridad incorrecto. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo." -#: src/Database/DBStructure.php:89 -msgid "No unused tables found." -msgstr "No hay tablas sin usar." +#: src/BaseModule.php:428 +msgid "All contacts" +msgstr "Todos los Contactos" -#: src/Database/DBStructure.php:94 -msgid "" -"These tables are not used for friendica and will be deleted when you execute" -" \"dbstructure drop -e\":" -msgstr "Estas tablas no se utilizan por friendica y se eliminarán cuando ejecute \"dbstructure drop -e\":" - -#: src/Database/DBStructure.php:132 -msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." -msgstr "No hay tablas en MyISAM o InnoDB con formato Antílope." - -#: src/Database/DBStructure.php:156 -#, php-format -msgid "" -"\n" -"Error %d occurred during database update:\n" -"%s\n" -msgstr "\n\nError %d ocurrido durante la actualización de la base de datos:\n%s\n" - -#: src/Database/DBStructure.php:159 -msgid "Errors encountered performing database changes: " -msgstr "Errores encontrados al realizar cambios en la base de datos: " - -#: src/Database/DBStructure.php:436 -msgid "Another database update is currently running." -msgstr "Otro update de la BD esta corriendo." - -#: src/Database/DBStructure.php:440 -#, php-format -msgid "%s: Database update" -msgstr "%s: Actualizar Base de Datos" - -#: src/Database/DBStructure.php:740 -#, php-format -msgid "%s: updating %s table." -msgstr "%s: actualizando %s tabla." - -#: 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 "Friendica no puede mostrar la página actualmente, contacte al administrador." - -#: src/Core/Renderer.php:142 -msgid "template engine cannot be registered without a name." -msgstr "Motor de plantilla no puede registrarse sin nombre." - -#: src/Core/Renderer.php:176 -msgid "template engine is not registered!" -msgstr "Motor de Plantilla no esta registrado!" - -#: src/Core/ACL.php:154 src/Module/Profile/Profile.php:238 -msgid "Yourself" -msgstr "Tu mismo" - -#: 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 +#: src/BaseModule.php:433 src/Content/Conversation/Factory/Timeline.php:62 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 msgid "Followers" msgstr "Seguidores" -#: src/Core/ACL.php:190 src/Module/PermissionTooltip.php:83 -#: src/Module/PermissionTooltip.php:105 +#: src/BaseModule.php:438 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 +msgid "Following" +msgstr "Siguiendo" + +#: src/BaseModule.php:443 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 +msgid "Mutual friends" +msgstr "Amigos mutuos" + +#: src/BaseModule.php:451 +msgid "Common" +msgstr "Común" + +#: src/Console/Addon.php:175 src/Console/Addon.php:199 +msgid "Addon not found" +msgstr "" + +#: src/Console/Addon.php:179 +msgid "Addon already enabled" +msgstr "" + +#: src/Console/Addon.php:203 +msgid "Addon already disabled" +msgstr "" + +#: src/Console/ArchiveContact.php:106 +#, php-format +msgid "Could not find any unarchived contact entry for this URL (%s)" +msgstr "No se encontró contacto sin archivar en esa URL (%s)" + +#: src/Console/ArchiveContact.php:109 +msgid "The contact entries have been archived" +msgstr "Entradas del contacto archivadas" + +#: src/Console/GlobalCommunityBlock.php:96 +#: src/Module/Moderation/Blocklist/Contact.php:65 +#, php-format +msgid "Could not find any contact entry for this URL (%s)" +msgstr "No se ha encontrado ninguna entrada de contacto para esta URL (%s)" + +#: src/Console/GlobalCommunityBlock.php:101 +#: src/Module/Moderation/Blocklist/Contact.php:82 +msgid "The contact has been blocked from the node" +msgstr "El contacto ha sido blockeado del nodo" + +#: src/Console/MergeContacts.php:75 +#, php-format +msgid "%d %s, %d duplicates." +msgstr "" + +#: src/Console/MergeContacts.php:78 +#, php-format +msgid "uri-id is empty for contact %s." +msgstr "" + +#: src/Console/MergeContacts.php:91 +#, php-format +msgid "No valid first contact found for uri-id %d." +msgstr "" + +#: src/Console/MergeContacts.php:102 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:106 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:142 +#, php-format +msgid "Deletion of id %d failed" +msgstr "" + +#: src/Console/MergeContacts.php:144 +#, php-format +msgid "Deletion of id %d was successful" +msgstr "" + +#: src/Console/MergeContacts.php:150 +#, php-format +msgid "Updating \"%s\" in \"%s\" from %d to %d" +msgstr "" + +#: src/Console/MergeContacts.php:152 +msgid " - found" +msgstr "" + +#: src/Console/MergeContacts.php:159 +msgid " - failed" +msgstr "" + +#: src/Console/MergeContacts.php:161 +msgid " - success" +msgstr "" + +#: src/Console/MergeContacts.php:165 +msgid " - deleted" +msgstr "" + +#: src/Console/MergeContacts.php:168 +msgid " - done" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:91 +msgid "The avatar cache needs to be enabled to use this command." +msgstr "" + +#: src/Console/MoveToAvatarCache.php:109 +#, php-format +msgid "no resource in photo %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:137 +#, php-format +msgid "no photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:146 +#, php-format +msgid "no image data for photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:155 +#, php-format +msgid "invalid image for id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:168 +#, php-format +msgid "Quit on invalid photo %s" +msgstr "" + +#: src/Console/PostUpdate.php:87 +#, php-format +msgid "Post update version number has been set to %s." +msgstr "Número de versión actualizado es %s." + +#: src/Console/PostUpdate.php:95 +msgid "Check for pending update actions." +msgstr "Checar acciones de actualización pendientes." + +#: src/Console/PostUpdate.php:97 +msgid "Done." +msgstr "Hecho." + +#: src/Console/PostUpdate.php:99 +msgid "Execute pending post updates." +msgstr "Ejecutar actualizaciones pendientes." + +#: src/Console/PostUpdate.php:105 +msgid "All pending post updates are done." +msgstr "Todas las actualizaciones hechas." + +#: src/Console/User.php:158 src/Console/User.php:245 +msgid "Enter user nickname: " +msgstr "Ingrese apodo: " + +#: src/Console/User.php:182 src/Model/User.php:711 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "Usuario no encontrado" + +#: src/Console/User.php:202 +msgid "Enter new password: " +msgstr "Ingrese nueva contraseña: " + +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 +msgid "Password update failed. Please try again." +msgstr "Actualización de contraseña falló. Intente de nuevo." + +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 +msgid "Password changed." +msgstr "Contraseña modificada." + +#: src/Console/User.php:237 +msgid "Enter user name: " +msgstr "Ingrese usuario: " + +#: src/Console/User.php:253 +msgid "Enter user email address: " +msgstr "Ingrese corréo electrónco: " + +#: src/Console/User.php:261 +msgid "Enter a language (optional): " +msgstr "Ingrese lenguaje (pcional): " + +#: src/Console/User.php:286 +msgid "User is not pending." +msgstr "Usuario no pendiente." + +#: src/Console/User.php:318 +msgid "User has already been marked for deletion." +msgstr "Usuario ya fue marcado para borrado." + +#: src/Console/User.php:323 +#, php-format +msgid "Type \"yes\" to delete %s" +msgstr "Escribe \"si\" para borrar %s" + +#: src/Console/User.php:325 +msgid "Deletion aborted." +msgstr "Borrado cancelado." + +#: src/Console/User.php:450 +msgid "Enter category: " +msgstr "" + +#: src/Console/User.php:460 +msgid "Enter key: " +msgstr "" + +#: src/Console/User.php:494 +msgid "Enter value: " +msgstr "" + +#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +msgid "newer" +msgstr "más nuevo" + +#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +msgid "older" +msgstr "más antiguo" + +#: src/Content/ContactSelector.php:51 +msgid "Frequently" +msgstr "Frecuentemente" + +#: src/Content/ContactSelector.php:52 +msgid "Hourly" +msgstr "Cada hora" + +#: src/Content/ContactSelector.php:53 +msgid "Twice daily" +msgstr "Dos veces al dia" + +#: src/Content/ContactSelector.php:54 +msgid "Daily" +msgstr "Diariamente" + +#: src/Content/ContactSelector.php:55 +msgid "Weekly" +msgstr "Semanal" + +#: src/Content/ContactSelector.php:56 +msgid "Monthly" +msgstr "Mensual" + +#: src/Content/ContactSelector.php:126 +msgid "DFRN" +msgstr "DFRN" + +#: src/Content/ContactSelector.php:127 +msgid "OStatus" +msgstr "OStatus" + +#: src/Content/ContactSelector.php:128 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Email" +msgstr "Correo" + +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +msgid "Diaspora" +msgstr "Diaspora*" + +#: src/Content/ContactSelector.php:131 +msgid "Zot!" +msgstr "Zot!" + +#: src/Content/ContactSelector.php:132 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: src/Content/ContactSelector.php:133 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: src/Content/ContactSelector.php:134 +msgid "MySpace" +msgstr "MySpace" + +#: src/Content/ContactSelector.php:135 +msgid "Google+" +msgstr "Google+" + +#: src/Content/ContactSelector.php:136 +msgid "pump.io" +msgstr "pump.io" + +#: src/Content/ContactSelector.php:137 +msgid "Twitter" +msgstr "Twitter" + +#: src/Content/ContactSelector.php:138 +msgid "Discourse" +msgstr "Discourse" + +#: src/Content/ContactSelector.php:139 +msgid "Diaspora Connector" +msgstr "Conectos Diaspora" + +#: src/Content/ContactSelector.php:140 +msgid "GNU Social Connector" +msgstr "Conector GNU Social" + +#: src/Content/ContactSelector.php:141 +msgid "ActivityPub" +msgstr "ActivityPub" + +#: src/Content/ContactSelector.php:142 +msgid "pnut" +msgstr "pnut" + +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "" + +#: src/Content/ContactSelector.php:180 +#, php-format +msgid "%s (via %s)" +msgstr "%s (a través %s)" + +#: src/Content/Conversation.php:226 +msgid "and" +msgstr "y" + +#: src/Content/Conversation.php:229 +#, php-format +msgid "and %d other people" +msgstr "y a otras %d personas" + +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:239 +#, php-format +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:241 +#, php-format +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:243 +#, php-format +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:245 +#, php-format +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:274 +#, php-format +msgid " likes this" +msgid_plural " like this" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:277 +#, php-format +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:280 +#, php-format +msgid " attends" +msgid_plural " attend" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:283 +#, php-format +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:286 +#, php-format +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:289 +#, php-format +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:336 +msgid "Visible to everybody" +msgstr "Visible para cualquiera" + +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1107 +msgid "Please enter a image/video/audio/webpage URL:" +msgstr "Escoja una dirección de imágen/video/audio/sitio:" + +#: src/Content/Conversation.php:338 +msgid "Tag term:" +msgstr "Etiqueta:" + +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 +msgid "Save to Folder:" +msgstr "Guardar en directorio:" + +#: src/Content/Conversation.php:340 +msgid "Where are you right now?" +msgstr "¿Dónde estás ahora?" + +#: src/Content/Conversation.php:341 +msgid "Delete item(s)?" +msgstr "¿Borrar artículo(s)?" + +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 +msgid "Created at" +msgstr "" + +#: src/Content/Conversation.php:363 +msgid "New Post" +msgstr "Nuevo artículo" + +#: src/Content/Conversation.php:366 +msgid "Share" +msgstr "Compartir" + +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "subir foto" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Añadir archivo" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "añadir archivo" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1097 +msgid "Bold" +msgstr "Negrita" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1098 +msgid "Italic" +msgstr "Cursiva" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1099 +msgid "Underline" +msgstr "Subrayado" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1101 +msgid "Quote" +msgstr "Cita" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1102 +msgid "Add emojis" +msgstr "" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1100 +msgid "Content Warning" +msgstr "" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1103 +msgid "Code" +msgstr "Código" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1104 +msgid "Image" +msgstr "Imagen" + +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1105 +msgid "Link" +msgstr "Enlace" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1106 +msgid "Link or Media" +msgstr "Enlace o Multimedia" + +#: src/Content/Conversation.php:382 +msgid "Video" +msgstr "" + +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "Selecciona tu ubicación" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "establecer ubicación" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "Borrar ubicación del navegador" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "borrar ubicación" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Establecer título" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Categorías (lista separada por comas)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 +msgid "Scheduled at" +msgstr "" + +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Configuración de permisos" + +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Artículo público" + +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:120 +#: src/Model/Profile.php:467 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "Mensaje" + +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Navegador" + +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "Abrir página de publicación" + +#: src/Content/Conversation.php:595 +msgid "remove" +msgstr "eliminar" + +#: src/Content/Conversation.php:599 +msgid "Delete Selected Items" +msgstr "Eliminar los seleccionados" + +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 +#, php-format +msgid "You had been addressed (%s)." +msgstr "Has sido mencionado (%s)." + +#: src/Content/Conversation.php:769 +#, php-format +msgid "You are following %s." +msgstr "Estas siguiendo %s." + +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "" + +#: src/Content/Conversation.php:776 +msgid "You subscribed to one or more tags in this post." +msgstr "" + +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "%s reenvió esto." + +#: src/Content/Conversation.php:798 +msgid "Reshared" +msgstr "Compartido" + +#: src/Content/Conversation.php:798 +#, php-format +msgid "Reshared by %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:801 +#, php-format +msgid "%s is participating in this thread." +msgstr "%s participa en el hilo." + +#: src/Content/Conversation.php:804 +msgid "Stored for general reasons" +msgstr "" + +#: src/Content/Conversation.php:807 +msgid "Global post" +msgstr "" + +#: src/Content/Conversation.php:810 +msgid "Sent via an relay server" +msgstr "" + +#: src/Content/Conversation.php:810 +#, php-format +msgid "Sent via the relay server %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:813 +msgid "Fetched" +msgstr "Recuperado" + +#: src/Content/Conversation.php:813 +#, php-format +msgid "Fetched because of %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:816 +msgid "Stored because of a child post to complete this thread." +msgstr "" + +#: src/Content/Conversation.php:819 +msgid "Local delivery" +msgstr "" + +#: src/Content/Conversation.php:822 +msgid "Stored because of your activity (like, comment, star, ...)" +msgstr "" + +#: src/Content/Conversation.php:825 +msgid "Distributed" +msgstr "" + +#: src/Content/Conversation.php:828 +msgid "Pushed to us" +msgstr "" + +#: src/Content/Conversation.php:1492 src/Object/Post.php:247 +msgid "Pinned item" +msgstr "" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:521 +#: src/Object/Post.php:522 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Ver perfil de %s @ %s" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:509 +msgid "Categories:" +msgstr "Categorías:" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:510 +msgid "Filed under:" +msgstr "Archivado en:" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:535 +#, php-format +msgid "%s from %s" +msgstr "%s de %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "Verlo en contexto" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "For you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "What's Hot" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "Posts with a lot of interactions" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:61 +#, php-format +msgid "Posts in %s" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:62 +msgid "Posts from your followers that you don't follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Sharers of sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Posts with images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Posts with audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Posts with videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Local Community" +msgstr "Comunidad Local" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Posts from local users on this server" +msgstr "Artículos de usuarios charla! MX" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Global Community" +msgstr "Comunidad Global" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Posts from users of the whole federated network" +msgstr "Artículos de usuarios del Fediverso" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Latest Activity" +msgstr "Actividad Reciente" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Sort by latest activity" +msgstr "Ordenar por actividad reciente" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Latest Posts" +msgstr "Artículos Recientes" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Sort by post received date" +msgstr "Ordenar por fecha de artículo" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Latest Creation" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Sort by post creation date" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:106 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "Personal" + +#: src/Content/Conversation/Factory/Timeline.php:106 +msgid "Posts that mention or involve you" +msgstr "Publicaciones que te mencionan o involucran" + +#: src/Content/Conversation/Factory/Timeline.php:107 src/Object/Post.php:380 +msgid "Starred" +msgstr "Destacados" + +#: src/Content/Conversation/Factory/Timeline.php:107 +msgid "Favourite Posts" +msgstr "Artículos favoritos" + +#: src/Content/Feature.php:96 +msgid "General Features" +msgstr "Opciones generales" + +#: src/Content/Feature.php:98 +msgid "Photo Location" +msgstr "Ubicación de foto" + +#: 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 "Normalmente los meta datos de las imágenes son eliminados. Esto extraerá la localización si presente antes de eliminar los meta datos y enlaza la misma con el mapa." + +#: src/Content/Feature.php:99 +msgid "Trending Tags" +msgstr "Etiquetas tendencia" + +#: src/Content/Feature.php:99 +msgid "" +"Show a community page widget with a list of the most popular tags in recent " +"public posts." +msgstr "Mostrar un widget de comunidad con las etiquetas populares en recientes artículos." + +#: src/Content/Feature.php:104 +msgid "Post Composition Features" +msgstr "Opciones de edición de publicaciones." + +#: src/Content/Feature.php:105 +msgid "Auto-mention Groups" +msgstr "" + +#: src/Content/Feature.php:105 +msgid "" +"Add/remove mention when a group page is selected/deselected in ACL window." +msgstr "" + +#: src/Content/Feature.php:106 +msgid "Explicit Mentions" +msgstr "Menciones explicitas" + +#: src/Content/Feature.php:106 +msgid "" +"Add explicit mentions to comment box for manual control over who gets " +"mentioned in replies." +msgstr "Añadir menciones explicitas a cuadro de comentarios para control manual sobre quien se menciona en respuestas." + +#: src/Content/Feature.php:107 +msgid "Add an abstract from ActivityPub content warnings" +msgstr "" + +#: src/Content/Feature.php:107 +msgid "" +"Add an abstract when commenting on ActivityPub posts with a content warning." +" Abstracts are displayed as content warning on systems like Mastodon or " +"Pleroma." +msgstr "" + +#: src/Content/Feature.php:112 +msgid "Post/Comment Tools" +msgstr "Herramienta de publicaciones/respuestas" + +#: src/Content/Feature.php:113 +msgid "Post Categories" +msgstr "Categorías de publicaciones" + +#: src/Content/Feature.php:113 +msgid "Add categories to your posts" +msgstr "Agregue categorías a sus publicaciones. Las mismas serán visualizadas en su pagina de inicio." + +#: src/Content/Feature.php:118 +msgid "Advanced Profile Settings" +msgstr "Ajustes avanzados del perfil" + +#: src/Content/Feature.php:119 +msgid "List Groups" +msgstr "" + +#: src/Content/Feature.php:119 +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "" + +#: src/Content/Feature.php:120 +msgid "Tag Cloud" +msgstr "Nube de etiquetas" + +#: src/Content/Feature.php:120 +msgid "Provide a personal tag cloud on your profile page" +msgstr "Dar una etiqueta personal en tu página de perfil" + +#: src/Content/Feature.php:121 +msgid "Display Membership Date" +msgstr "Desplegar fecha de membresía" + +#: src/Content/Feature.php:121 +msgid "Display membership date in profile" +msgstr "Desplegar fecha de membresía en perfil" + +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "" + +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "" + +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "" + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1273 +msgid "Groups" +msgstr "" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 +msgid "show less" +msgstr "mostrar menos" + +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 +msgid "show more" +msgstr "Mostrar más" + +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "" + +#: src/Content/Item.php:331 src/Model/Item.php:3003 +msgid "event" +msgstr "evento" + +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "estado" + +#: src/Content/Item.php:340 src/Model/Item.php:3005 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "foto" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s etiquetó %3$s %2$s con %4$s" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 +msgid "Follow Thread" +msgstr "Seguir el hilo" + +#: src/Content/Item.php:429 src/Model/Contact.php:1227 +msgid "View Status" +msgstr "Ver Estado" + +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1219 +#: src/Model/Contact.php:1228 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 +msgid "View Profile" +msgstr "Ver Perfil" + +#: src/Content/Item.php:431 src/Model/Contact.php:1229 +msgid "View Photos" +msgstr "Ver Fotos" + +#: src/Content/Item.php:432 src/Model/Contact.php:1220 +#: src/Model/Contact.php:1230 +msgid "Network Posts" +msgstr "Artículos de Red" + +#: src/Content/Item.php:433 src/Model/Contact.php:1221 +#: src/Model/Contact.php:1231 +msgid "View Contact" +msgstr "Ver contacto" + +#: src/Content/Item.php:434 src/Model/Contact.php:1232 +msgid "Send PM" +msgstr "Enviar Privado" + +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 +msgid "Block" +msgstr "Bloquear" + +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 +msgid "Ignore" +msgstr "Ignorar" + +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "" + +#: src/Content/Item.php:438 src/Object/Post.php:288 +#, php-format +msgid "Ignore %s server" +msgstr "" + +#: src/Content/Item.php:442 src/Object/Post.php:490 +msgid "Languages" +msgstr "Lenguajes" + +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1222 src/Model/Contact.php:1233 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Conectar/Seguir" + +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "" + +#: src/Content/Nav.php:121 +msgid "Nothing new here" +msgstr "No hay nada nuevo" + +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +msgid "Go back" +msgstr "Regresar" + +#: src/Content/Nav.php:126 +msgid "Clear notifications" +msgstr "Borrar notificaciones" + +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" +msgstr "" + +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 +msgid "Logout" +msgstr "Salir" + +#: src/Content/Nav.php:222 +msgid "End this session" +msgstr "Cerrar sesión" + +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 +msgid "Login" +msgstr "Ingreso" + +#: src/Content/Nav.php:224 +msgid "Sign in" +msgstr "Ingresar" + +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "" + +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "" + +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +msgid "Profile" +msgstr "Perfil" + +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +msgid "Your profile page" +msgstr "Tu página de perfil" + +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Fotos" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +msgid "Your photos" +msgstr "Tus fotos" + +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 +msgid "Media" +msgstr "" + +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +msgid "Your postings with media" +msgstr "" + +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "Calendario" + +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "" + +#: src/Content/Nav.php:234 +msgid "Personal notes" +msgstr "Notas personales" + +#: src/Content/Nav.php:234 +msgid "Your personal notes" +msgstr "Tus notas personales" + +#: src/Content/Nav.php:251 src/Content/Nav.php:308 +msgid "Home" +msgstr "Inicio" + +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "Página de Inicio" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 +#: src/Module/Security/Login.php:124 +msgid "Register" +msgstr "Registro" + +#: src/Content/Nav.php:255 +msgid "Create an account" +msgstr "Crea una cuenta" + +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 +msgid "Help" +msgstr "Ayuda" + +#: src/Content/Nav.php:261 +msgid "Help and documentation" +msgstr "Ayuda y documentación" + +#: src/Content/Nav.php:265 +msgid "Apps" +msgstr "Aplicaciones" + +#: src/Content/Nav.php:265 +msgid "Addon applications, utilities, games" +msgstr "Aplicaciones, utilidades, juegos" + +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 +msgid "Search" +msgstr "Buscar" + +#: src/Content/Nav.php:269 +msgid "Search site content" +msgstr "Buscar contenido en el sitio" + +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 +msgid "Full Text" +msgstr "Texto completo" + +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 +#: src/Content/Widget/TagCloud.php:68 +msgid "Tags" +msgstr "Etiquetas" + +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 +msgid "Contacts" +msgstr "Contactos" + +#: src/Content/Nav.php:289 +msgid "Community" +msgstr "Comunidad" + +#: src/Content/Nav.php:289 +msgid "Conversations on this and other servers" +msgstr "Conversaciones aquí y en otros servidores" + +#: src/Content/Nav.php:296 +msgid "Directory" +msgstr "Directorio" + +#: src/Content/Nav.php:296 +msgid "People directory" +msgstr "Directorio de usuarios" + +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 +msgid "Information" +msgstr "Información" + +#: src/Content/Nav.php:298 +msgid "Information about this friendica instance" +msgstr "Información sobre esta instancia Friendica" + +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 +msgid "Terms of Service" +msgstr "Términos de Servicio" + +#: src/Content/Nav.php:301 +msgid "Terms of Service of this Friendica instance" +msgstr "Términos de Servicio de la Instancia Friendica" + +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +msgid "Network" +msgstr "Red" + +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +msgid "Conversations from your friends" +msgstr "Conversaciones de tus amigos" + +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "Tus publicaciones y conversaciones" + +#: src/Content/Nav.php:312 +msgid "Introductions" +msgstr "Presentaciones" + +#: src/Content/Nav.php:312 +msgid "Friend Requests" +msgstr "Solicitudes de amistad" + +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 +msgid "Notifications" +msgstr "Notificaciones" + +#: src/Content/Nav.php:314 +msgid "See all notifications" +msgstr "Ver todas las notificaciones" + +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Marcar como leído" + +#: src/Content/Nav.php:315 +msgid "Mark all system notifications as seen" +msgstr "" + +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +msgid "Private mail" +msgstr "Correo privado" + +#: src/Content/Nav.php:319 +msgid "Inbox" +msgstr "Entrada" + +#: src/Content/Nav.php:320 +msgid "Outbox" +msgstr "Enviados" + +#: src/Content/Nav.php:324 +msgid "Accounts" +msgstr "Cuentas" + +#: src/Content/Nav.php:324 +msgid "Manage other pages" +msgstr "Administrar otras páginas" + +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:175 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +msgid "Settings" +msgstr "Configuración" + +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +msgid "Account settings" +msgstr "Configurar la cuenta" + +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +msgid "Manage/edit friends and contacts" +msgstr "Administrar/editar amigos y contactos" + +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +msgid "Admin" +msgstr "Admin" + +#: src/Content/Nav.php:334 +msgid "Site setup and configuration" +msgstr "Opciones y configuración del sitio" + +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "" + +#: src/Content/Nav.php:338 +msgid "Navigation" +msgstr "Navegación" + +#: src/Content/Nav.php:338 +msgid "Site map" +msgstr "Mapa del sitio" + +#: src/Content/OEmbed.php:316 +msgid "Embedding disabled" +msgstr "Contenido incrustrado desabilitado" + +#: src/Content/OEmbed.php:440 +msgid "Embedded content" +msgstr "Contenido integrado" + +#: src/Content/Pager.php:216 +msgid "first" +msgstr "primera" + +#: src/Content/Pager.php:221 +msgid "prev" +msgstr "previo" + +#: src/Content/Pager.php:276 +msgid "next" +msgstr "sig." + +#: src/Content/Pager.php:281 +msgid "last" +msgstr "última" + +#: src/Content/Text/BBCode.php:696 src/Content/Text/BBCode.php:1636 +#: src/Content/Text/BBCode.php:1637 +msgid "Image/photo" +msgstr "Imagen/Foto" + +#: src/Content/Text/BBCode.php:914 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: src/Content/Text/BBCode.php:939 src/Model/Item.php:3745 +#: src/Model/Item.php:3751 src/Model/Item.php:3752 +msgid "Link to source" +msgstr "" + +#: src/Content/Text/BBCode.php:1543 src/Content/Text/HTML.php:904 +msgid "Click to open/close" +msgstr "Pulsa para abrir/cerrar" + +#: src/Content/Text/BBCode.php:1576 +msgid "$1 wrote:" +msgstr "$1 escribió:" + +#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642 +msgid "Encrypted content" +msgstr "Contenido cifrado" + +#: src/Content/Text/BBCode.php:1901 +msgid "Invalid source protocol" +msgstr "Protocolo de fuente inválido" + +#: src/Content/Text/BBCode.php:1920 +msgid "Invalid link protocol" +msgstr "Protocolo de enlace inválido" + +#: src/Content/Text/HTML.php:782 +msgid "Loading more entries..." +msgstr "Cargar mas artículos.." + +#: src/Content/Text/HTML.php:783 +msgid "The end" +msgstr "Final" + +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:116 +#: src/Model/Profile.php:461 src/Module/Contact/Profile.php:471 +msgid "Follow" +msgstr "Seguir" + +#: src/Content/Widget.php:51 +msgid "Add New Contact" +msgstr "Añadir nuevo contacto" + +#: src/Content/Widget.php:52 +msgid "Enter address or web location" +msgstr "Escribe la dirección o página web" + +#: src/Content/Widget.php:53 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Ejemplo: miguel@ejemplo.com, http://ejemplo.com/miguel" + +#: src/Content/Widget.php:55 +msgid "Connect" +msgstr "Conectar" + +#: src/Content/Widget.php:72 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitación disponible" +msgstr[1] "%d invitaviones disponibles" +msgstr[2] "%d invitaviones disponibles" + +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +msgid "Find People" +msgstr "Buscar Personas" + +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +msgid "Enter name or interest" +msgstr "Introduce nombre o interés" + +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Ejemplos: Robert Morgenstein, Pesca" + +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 +msgid "Find" +msgstr "Buscar" + +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "Sugerencias de Amistad" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +msgid "Similar Interests" +msgstr "Intereses Similares" + +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +msgid "Random Profile" +msgstr "Perfil Al Azar" + +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +msgid "Invite Friends" +msgstr "Invitar Amigos" + +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 +msgid "Global Directory" +msgstr "Directorio Global" + +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +msgid "Local Directory" +msgstr "Directorio Local" + +#: src/Content/Widget.php:215 src/Model/Circle.php:600 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "" + +#: src/Content/Widget.php:217 +msgid "Everyone" +msgstr "Todos" + +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "" + +#: src/Content/Widget.php:247 +msgid "Relationships" +msgstr "Relaciones" + +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 +msgid "All Contacts" +msgstr "Todos los contactos" + +#: src/Content/Widget.php:288 +msgid "Protocols" +msgstr "Protocolos" + +#: src/Content/Widget.php:290 +msgid "All Protocols" +msgstr "Todos los Protocolos" + +#: src/Content/Widget.php:318 +msgid "Saved Folders" +msgstr "Directorios guardados" + +#: src/Content/Widget.php:320 src/Content/Widget.php:351 +msgid "Everything" +msgstr "Todo" + +#: src/Content/Widget.php:349 +msgid "Categories" +msgstr "Categorías" + +#: src/Content/Widget.php:406 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contacto en común" +msgstr[1] "%d contactos en común" +msgstr[2] "%d contactos en común" + +#: src/Content/Widget.php:506 +msgid "Archives" +msgstr "Archivos" + +#: src/Content/Widget.php:514 +msgid "On this date" +msgstr "" + +#: src/Content/Widget.php:534 +msgid "Persons" +msgstr "Personas" + +#: src/Content/Widget.php:535 +msgid "Organisations" +msgstr "Organizaciones" + +#: src/Content/Widget.php:536 src/Model/Contact.php:1698 +msgid "News" +msgstr "Noticias" + +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 +msgid "Account Types" +msgstr "Tipos de cuenta" + +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 +msgid "All" +msgstr "Todos" + +#: src/Content/Widget.php:573 src/Module/Settings/Display.php:266 +msgid "Channels" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:56 +msgid "Export" +msgstr "Exportar" + +#: src/Content/Widget/CalendarExport.php:57 +msgid "Export calendar as ical" +msgstr "Exportar calendario como ical" + +#: src/Content/Widget/CalendarExport.php:58 +msgid "Export calendar as csv" +msgstr "Exportar calendario como csv" + +#: src/Content/Widget/ContactBlock.php:79 +msgid "No contacts" +msgstr "Sin contactos" + +#: src/Content/Widget/ContactBlock.php:110 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d Contacto" +msgstr[1] "%d Contactos" +msgstr[2] "%d Contactos" + +#: src/Content/Widget/ContactBlock.php:127 +msgid "View Contacts" +msgstr "Ver contactos" + +#: src/Content/Widget/SavedSearches.php:47 +msgid "Remove term" +msgstr "Eliminar término" + +#: src/Content/Widget/SavedSearches.php:60 +msgid "Saved Searches" +msgstr "Búsquedas guardadas" + +#: src/Content/Widget/TrendingTags.php:52 +#, php-format +msgid "Trending Tags (last %d hour)" +msgid_plural "Trending Tags (last %d hours)" +msgstr[0] "Etiquetas tendencia (última %d hora)" +msgstr[1] "Etiquetas tendencia (últimas %d horas)" +msgstr[2] "Etiquetas tendencia (últimas %d horas)" + +#: src/Content/Widget/TrendingTags.php:53 +msgid "More Trending Tags" +msgstr "Mas tendencias" + +#: src/Content/Widget/VCard.php:109 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 +msgid "XMPP:" +msgstr "XMPP:" + +#: src/Content/Widget/VCard.php:110 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 +msgid "Matrix:" +msgstr "" + +#: src/Content/Widget/VCard.php:111 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Localización:" + +#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:474 +#: src/Module/Notifications/Introductions.php:201 +msgid "Network:" +msgstr "Red:" + +#: src/Content/Widget/VCard.php:118 src/Model/Contact.php:1223 +#: src/Model/Contact.php:1234 src/Model/Profile.php:463 +#: src/Module/Contact/Profile.php:463 +msgid "Unfollow" +msgstr "Dejar de Seguir" + +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +msgid "Yourself" +msgstr "Tu mismo" + +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 msgid "Mutuals" msgstr "Mutuos" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:294 msgid "Post to Email" msgstr "Publicar por Correo" -#: src/Core/ACL.php:307 +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 msgid "Public" msgstr "Público" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:322 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "Este contenido se mostrará a tus seguidores y se podrá ver en laspáginas de la Comunidad y por cualquiera con este enlace." -#: src/Core/ACL.php:309 +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 msgid "Limited/Private" msgstr "Limitado/Privado" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:324 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "Este contenido se mostrará solo a personas en el primer recuadro, aexcepción de personas mencionadas en el segundo recuadro. No aparecerápúblicamente." -#: src/Core/ACL.php:311 +#: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." +msgstr "" + +#: src/Core/ACL.php:325 msgid "Show to:" msgstr "Mostrar a:" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:326 msgid "Except to:" msgstr "Excepto a:" -#: src/Core/ACL.php:313 mod/editpost.php:113 +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 msgid "CC: email addresses" msgstr "CC: dirección de correo" -#: src/Core/ACL.php:314 mod/editpost.php:120 +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 msgid "Example: bob@example.com, mary@example.com" msgstr "Ejemplo: juan@ejemplo.com, maria@ejemplo.com" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:329 msgid "Connectors" msgstr "Conectores" -#: src/Core/Update.php:67 +#: src/Core/Installer.php:180 +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 "Archivo de configuración de la BD \"config/local.config.php\" no pudo ser escrito. Utilice el texto adjunto para crear un archivo de configuración en raíz del servidor web." + +#: src/Core/Installer.php:197 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Puede que tengas que importar el archivo \"database.sql\" manualmente usando phpmyadmin o mysql." + +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 +msgid "Please see the file \"doc/INSTALL.md\"." +msgstr "De favor vea el archivo \"doc/INSTALL.md\"." + +#: src/Core/Installer.php:259 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "No se encontró versión de línea de comandos PHP en ruta del servidor web." + +#: src/Core/Installer.php:260 +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 "Si no tienes versión de comando de PHP instalado en tu servidor, no podras correr el proceso de fondo. Ver 'Configurar Worker'" + +#: src/Core/Installer.php:265 +msgid "PHP executable path" +msgstr "Ruta executable PHP" + +#: src/Core/Installer.php:265 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación." + +#: src/Core/Installer.php:270 +msgid "Command line PHP" +msgstr "Línea de comandos PHP" + +#: src/Core/Installer.php:279 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "Ejecutable PHP no es php cli binary (podria ser versión cgi-fgci)" + +#: src/Core/Installer.php:280 +msgid "Found PHP version: " +msgstr "Versión PHP encontrada:" + +#: src/Core/Installer.php:282 +msgid "PHP cli binary" +msgstr "PHP cli binario" + +#: src/Core/Installer.php:295 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versión en línea de comandos de PHP en tu sistema no tiene \"register_argc_argv\" habilitado." + +#: src/Core/Installer.php:296 +msgid "This is required for message delivery to work." +msgstr "Esto es requerido para que funcione la entrega de mensajes." + +#: src/Core/Installer.php:301 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: src/Core/Installer.php:333 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: Función \"openssl_pkey_new\" en este sistema no es capaz de generar claves de cifrado" + +#: src/Core/Installer.php:334 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Si se ejecuta en Windows, por favor consulta la sección \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: src/Core/Installer.php:337 +msgid "Generate encryption keys" +msgstr "Generar claves de encriptación" + +#: src/Core/Installer.php:389 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: El módulo de Apache mod-rewrite es necesario pero no está instalado." + +#: src/Core/Installer.php:394 +msgid "Apache mod_rewrite module" +msgstr "Módulo mod_rewrite de Apache" + +#: src/Core/Installer.php:400 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "Error: Módulo PDO o MySQLi PHP requerido pero no instalado." + +#: src/Core/Installer.php:405 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "Error: El dispositivo MySQL para PDO no está instalado." + +#: src/Core/Installer.php:409 +msgid "PDO or MySQLi PHP module" +msgstr "Módulo PDO o MySQLi PHP" + +#: src/Core/Installer.php:417 +msgid "Error, XML PHP module required but not installed." +msgstr "Error, módulo XML PHP requerido pero no instalado." + +#: src/Core/Installer.php:421 +msgid "XML PHP module" +msgstr "Módulo XML PHP" + +#: src/Core/Installer.php:424 +msgid "libCurl PHP module" +msgstr "Módulo PHP libCurl" + +#: src/Core/Installer.php:425 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: El módulo de PHP libcurl es necesario, pero no está instalado." + +#: src/Core/Installer.php:431 +msgid "GD graphics PHP module" +msgstr "Módulo PHP gráficos GD" + +#: src/Core/Installer.php:432 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: El módulo de de PHP gráficos GD con soporte JPEG es necesario, pero no está instalado." + +#: src/Core/Installer.php:438 +msgid "OpenSSL PHP module" +msgstr "Módulo PHP OpenSSL" + +#: src/Core/Installer.php:439 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: El módulo de PHP openssl es necesario, pero no está instalado." + +#: src/Core/Installer.php:445 +msgid "mb_string PHP module" +msgstr "Módulo PHP mb_string" + +#: src/Core/Installer.php:446 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: El módulo de PHP mb_string es necesario, pero no está instalado." + +#: src/Core/Installer.php:452 +msgid "iconv PHP module" +msgstr "Módulo PHP iconv" + +#: src/Core/Installer.php:453 +msgid "Error: iconv PHP module required but not installed." +msgstr "Error: módulo iconv PHP requerido pero no instalado." + +#: src/Core/Installer.php:459 +msgid "POSIX PHP module" +msgstr "Módulo PHP POSIX" + +#: src/Core/Installer.php:460 +msgid "Error: POSIX PHP module required but not installed." +msgstr "Error: PHP POSIX requerido y no instalado." + +#: src/Core/Installer.php:466 +msgid "Program execution functions" +msgstr "Funciones de ejecución de programa" + +#: src/Core/Installer.php:467 +msgid "" +"Error: Program execution functions (proc_open) required but not enabled." +msgstr "" + +#: src/Core/Installer.php:473 +msgid "JSON PHP module" +msgstr "Módulo PHP JSON" + +#: src/Core/Installer.php:474 +msgid "Error: JSON PHP module required but not installed." +msgstr "Eror: Módulo PHP JSON requerido y no instalado." + +#: src/Core/Installer.php:480 +msgid "File Information PHP module" +msgstr "Módulo PHP Información de Archivo" + +#: src/Core/Installer.php:481 +msgid "Error: File Information PHP module required but not installed." +msgstr "Error: Módulo PHP Información de Archivo requerido y no instalado." + +#: src/Core/Installer.php:487 +msgid "GNU Multiple Precision PHP module" +msgstr "" + +#: src/Core/Installer.php:488 +msgid "Error: GNU Multiple Precision PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:511 +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 "El instalador web debe poder crear un archivo llamado\"local.config.php\" en folder \"config\" de su servidor web y esincapaz de hacerlo." + +#: src/Core/Installer.php:512 +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 "Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú puedas." + +#: src/Core/Installer.php:513 +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 "Al final de este procedimiento, le daremos un texto para guardar en un archivollamado local.config.php en su folder \"config\" de Friendica ." + +#: src/Core/Installer.php:514 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"doc/INSTALL.md\" for instructions." +msgstr "Alternativamente, puede omitir este procedimiento y realizar una instalación manual. Consulte el archivo \"doc/INSTALL.md\" para instrucciones." + +#: src/Core/Installer.php:517 +msgid "config/local.config.php is writable" +msgstr "config/local.config.php es escriturable" + +#: src/Core/Installer.php:537 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica usa el motor de templates Smarty3 para renderizar su visualización web. Smarty3 compila templates PHP para acelerar la velocidad de renderizar." + +#: src/Core/Installer.php:538 +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 "Para poder guardar estos templates compilados, el servidor web necesita acceso de escritura en el directorio /view/smarty3/ en el árbol de raíz de la instalación friendica." + +#: src/Core/Installer.php:539 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Por favor asegure que el usuario que utiliza el servidor web (ejemplo: www-data) tiene permisos de escritura en esta carpeta." + +#: src/Core/Installer.php:540 +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 "Nota: como medida de seguridad deberia dar acceso de escritura solo a /view/smarty3 / → no al los archivos template (.tpl) que contiene." + +#: src/Core/Installer.php:543 +msgid "view/smarty3 is writable" +msgstr "Se puede escribir en /view/smarty3" + +#: src/Core/Installer.php:571 +msgid "" +"Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" +"dist to .htaccess." +msgstr "La reescritura de URL en .htaccess parece no funcionar. Asegúrese de haber copiado .htaccess-dist a .htaccess." + +#: src/Core/Installer.php:572 +msgid "" +"In some circumstances (like running inside containers), you can skip this " +"error." +msgstr "En algunas circunstancias (como ejecutar dentro de contenedores), puede omitir este error." + +#: src/Core/Installer.php:574 +msgid "Error message from Curl when fetching" +msgstr "Mensaje de Error de Curl en lectura" + +#: src/Core/Installer.php:580 +msgid "Url rewrite is working" +msgstr "Reescribiendo la dirección..." + +#: src/Core/Installer.php:609 +msgid "" +"The detection of TLS to secure the communication between the browser and the" +" new Friendica server failed." +msgstr "" + +#: src/Core/Installer.php:610 +msgid "" +"It is highly encouraged to use Friendica only over a secure connection as " +"sensitive information like passwords will be transmitted." +msgstr "" + +#: src/Core/Installer.php:611 +msgid "Please ensure that the connection to the server is secure." +msgstr "" + +#: src/Core/Installer.php:612 +msgid "No TLS detected" +msgstr "" + +#: src/Core/Installer.php:614 +msgid "TLS detected" +msgstr "" + +#: src/Core/Installer.php:641 +msgid "ImageMagick PHP extension is not installed" +msgstr "No está instalada la extensión ImageMagick PHP" + +#: src/Core/Installer.php:643 +msgid "ImageMagick PHP extension is installed" +msgstr "ImageMagick PHP extension is installed" + +#: src/Core/Installer.php:645 +msgid "ImageMagick supports GIF" +msgstr "ImageMagick supporta GIF" + +#: src/Core/Installer.php:667 +msgid "Database already in use." +msgstr "Base de datos ya esta en uso" + +#: src/Core/Installer.php:672 +msgid "Could not connect to database." +msgstr "No es posible conectar con Base Datos." + +#: src/Core/L10n.php:476 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:235 +msgid "Monday" +msgstr "Lunes" + +#: src/Core/L10n.php:476 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:236 +msgid "Tuesday" +msgstr "Martes" + +#: src/Core/L10n.php:476 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:237 +msgid "Wednesday" +msgstr "Miércoles" + +#: src/Core/L10n.php:476 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:238 +msgid "Thursday" +msgstr "Jueves" + +#: src/Core/L10n.php:476 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:239 +msgid "Friday" +msgstr "Viernes" + +#: src/Core/L10n.php:476 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:240 +msgid "Saturday" +msgstr "Sábado" + +#: src/Core/L10n.php:476 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:234 +msgid "Sunday" +msgstr "Domingo" + +#: src/Core/L10n.php:480 src/Model/Event.php:450 +msgid "January" +msgstr "Enero" + +#: src/Core/L10n.php:480 src/Model/Event.php:451 +msgid "February" +msgstr "Febrero" + +#: src/Core/L10n.php:480 src/Model/Event.php:452 +msgid "March" +msgstr "Marzo" + +#: src/Core/L10n.php:480 src/Model/Event.php:453 +msgid "April" +msgstr "Abril" + +#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441 +msgid "May" +msgstr "Mayo" + +#: src/Core/L10n.php:480 src/Model/Event.php:454 +msgid "June" +msgstr "Junio" + +#: src/Core/L10n.php:480 src/Model/Event.php:455 +msgid "July" +msgstr "Julio" + +#: src/Core/L10n.php:480 src/Model/Event.php:456 +msgid "August" +msgstr "Agosto" + +#: src/Core/L10n.php:480 src/Model/Event.php:457 +msgid "September" +msgstr "Septiembre" + +#: src/Core/L10n.php:480 src/Model/Event.php:458 +msgid "October" +msgstr "Octubre" + +#: src/Core/L10n.php:480 src/Model/Event.php:459 +msgid "November" +msgstr "Noviembre" + +#: src/Core/L10n.php:480 src/Model/Event.php:460 +msgid "December" +msgstr "Diciembre" + +#: src/Core/L10n.php:495 src/Model/Event.php:422 +msgid "Mon" +msgstr "Lun" + +#: src/Core/L10n.php:495 src/Model/Event.php:423 +msgid "Tue" +msgstr "Mar" + +#: src/Core/L10n.php:495 src/Model/Event.php:424 +msgid "Wed" +msgstr "Mie" + +#: src/Core/L10n.php:495 src/Model/Event.php:425 +msgid "Thu" +msgstr "Jue" + +#: src/Core/L10n.php:495 src/Model/Event.php:426 +msgid "Fri" +msgstr "Vie" + +#: src/Core/L10n.php:495 src/Model/Event.php:427 +msgid "Sat" +msgstr "Sab" + +#: src/Core/L10n.php:495 src/Model/Event.php:421 +msgid "Sun" +msgstr "Dom" + +#: src/Core/L10n.php:499 src/Model/Event.php:437 +msgid "Jan" +msgstr "Ene" + +#: src/Core/L10n.php:499 src/Model/Event.php:438 +msgid "Feb" +msgstr "Feb" + +#: src/Core/L10n.php:499 src/Model/Event.php:439 +msgid "Mar" +msgstr "Mar" + +#: src/Core/L10n.php:499 src/Model/Event.php:440 +msgid "Apr" +msgstr "Abr" + +#: src/Core/L10n.php:499 src/Model/Event.php:442 +msgid "Jun" +msgstr "Jun" + +#: src/Core/L10n.php:499 src/Model/Event.php:443 +msgid "Jul" +msgstr "Jul" + +#: src/Core/L10n.php:499 src/Model/Event.php:444 +msgid "Aug" +msgstr "Ago" + +#: src/Core/L10n.php:499 +msgid "Sep" +msgstr "Sep" + +#: src/Core/L10n.php:499 src/Model/Event.php:446 +msgid "Oct" +msgstr "Oct" + +#: src/Core/L10n.php:499 src/Model/Event.php:447 +msgid "Nov" +msgstr "Nov" + +#: src/Core/L10n.php:499 src/Model/Event.php:448 +msgid "Dec" +msgstr "Dec" + +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "Tl archivo de log '%s' no se puede usar. No es posible el registro (error: '%s')" + +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "El archivo de log de debugg '%s' no puede usarse. No es posible el registro (error: '%s')" + +#: src/Core/Renderer.php:89 src/Core/Renderer.php:118 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 +msgid "" +"Friendica can't display this page at the moment, please contact the " +"administrator." +msgstr "Friendica no puede mostrar la página actualmente, contacte al administrador." + +#: src/Core/Renderer.php:143 +msgid "template engine cannot be registered without a name." +msgstr "Motor de plantilla no puede registrarse sin nombre." + +#: src/Core/Renderer.php:177 +msgid "template engine is not registered!" +msgstr "Motor de Plantilla no esta registrado!" + +#: src/Core/Storage/Type/FilesystemConfig.php:78 +msgid "Storage base path" +msgstr "Ruta base de Almacenamiento" + +#: src/Core/Storage/Type/FilesystemConfig.php:80 +msgid "" +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "Carpeta para subir archivos guardada. Para mayor seguridad, Deberá ser una ruta fuera del folder del árbol web" + +#: src/Core/Storage/Type/FilesystemConfig.php:93 +msgid "Enter a valid existing folder" +msgstr "Ingresa un folder válido existente" + +#: src/Core/Update.php:80 #, 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 "Las actualizaciones de la versión %s no son compatibles. Actualice al menos a la versión 2021.01 y espere hasta que postupdate finalice con versión 1383." -#: src/Core/Update.php:78 +#: src/Core/Update.php:91 #, 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 "Actualizaciones de postupdate versión %s no soportadas. Actualice al menos a versión 2021.01 y espere hasta que postupdate termine en version 1383." -#: src/Core/Update.php:152 +#: src/Core/Update.php:183 #, php-format msgid "%s: executing pre update %d" msgstr "%s: ejecutando pre update %d " -#: src/Core/Update.php:190 +#: src/Core/Update.php:225 #, php-format msgid "%s: executing post update %d" msgstr "%s: ejecutando post update %d " -#: src/Core/Update.php:259 +#: src/Core/Update.php:299 #, php-format msgid "Update %s failed. See error logs." msgstr "Falló la actualización de %s. Vea los registros de errores." -#: src/Core/Update.php:312 +#: src/Core/Update.php:339 #, php-format msgid "" "\n" @@ -446,1252 +3118,2511 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\tLos desarrolladores liberaron una actualización reciente %s ,\n\t\t\t\tpero cuando se intentó instalar, algo salió mal.\n\t\t\t\tNecesita arreglarse pronto y no se hará automáticamente. Contacta\n\t\t\t\tal developer friendica si no puedes hacerlo tu mismo. La base de datos puede estar errónea." -#: src/Core/Update.php:318 +#: src/Core/Update.php:345 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "El mensaje de error es\\n[pre]%s[/pre]" -#: src/Core/Update.php:322 src/Core/Update.php:364 +#: src/Core/Update.php:349 src/Core/Update.php:377 msgid "[Friendica Notify] Database update" msgstr "[Notificación Friendica] Actualización de Base de Datos" -#: src/Core/Update.php:358 +#: src/Core/Update.php:371 #, php-format msgid "" "\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n\t\t\t\t\tBase de Datos Friendica exitosamente actualizada de %s a %s." +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "" -#: src/Core/L10n.php:371 src/Module/Settings/Display.php:178 -#: src/Model/Event.php:431 -msgid "Monday" -msgstr "Lunes" - -#: src/Core/L10n.php:371 src/Model/Event.php:432 -msgid "Tuesday" -msgstr "Martes" - -#: src/Core/L10n.php:371 src/Model/Event.php:433 -msgid "Wednesday" -msgstr "Miércoles" - -#: src/Core/L10n.php:371 src/Model/Event.php:434 -msgid "Thursday" -msgstr "Jueves" - -#: src/Core/L10n.php:371 src/Model/Event.php:435 -msgid "Friday" -msgstr "Viernes" - -#: src/Core/L10n.php:371 src/Model/Event.php:436 -msgid "Saturday" -msgstr "Sábado" - -#: src/Core/L10n.php:371 src/Module/Settings/Display.php:178 -#: src/Model/Event.php:430 -msgid "Sunday" -msgstr "Domingo" - -#: src/Core/L10n.php:375 src/Model/Event.php:451 -msgid "January" -msgstr "Enero" - -#: src/Core/L10n.php:375 src/Model/Event.php:452 -msgid "February" -msgstr "Febrero" - -#: src/Core/L10n.php:375 src/Model/Event.php:453 -msgid "March" -msgstr "Marzo" - -#: src/Core/L10n.php:375 src/Model/Event.php:454 -msgid "April" -msgstr "Abril" - -#: src/Core/L10n.php:375 src/Core/L10n.php:395 src/Model/Event.php:442 -msgid "May" -msgstr "Mayo" - -#: src/Core/L10n.php:375 src/Model/Event.php:455 -msgid "June" -msgstr "Junio" - -#: src/Core/L10n.php:375 src/Model/Event.php:456 -msgid "July" -msgstr "Julio" - -#: src/Core/L10n.php:375 src/Model/Event.php:457 -msgid "August" -msgstr "Agosto" - -#: src/Core/L10n.php:375 src/Model/Event.php:458 -msgid "September" -msgstr "Septiembre" - -#: src/Core/L10n.php:375 src/Model/Event.php:459 -msgid "October" -msgstr "Octubre" - -#: src/Core/L10n.php:375 src/Model/Event.php:460 -msgid "November" -msgstr "Noviembre" - -#: src/Core/L10n.php:375 src/Model/Event.php:461 -msgid "December" -msgstr "Diciembre" - -#: src/Core/L10n.php:391 src/Model/Event.php:423 -msgid "Mon" -msgstr "Lun" - -#: src/Core/L10n.php:391 src/Model/Event.php:424 -msgid "Tue" -msgstr "Mar" - -#: src/Core/L10n.php:391 src/Model/Event.php:425 -msgid "Wed" -msgstr "Mie" - -#: src/Core/L10n.php:391 src/Model/Event.php:426 -msgid "Thu" -msgstr "Jue" - -#: src/Core/L10n.php:391 src/Model/Event.php:427 -msgid "Fri" -msgstr "Vie" - -#: src/Core/L10n.php:391 src/Model/Event.php:428 -msgid "Sat" -msgstr "Sab" - -#: src/Core/L10n.php:391 src/Model/Event.php:422 -msgid "Sun" -msgstr "Dom" - -#: src/Core/L10n.php:395 src/Model/Event.php:438 -msgid "Jan" -msgstr "Ene" - -#: 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 "Mar" - -#: src/Core/L10n.php:395 src/Model/Event.php:441 -msgid "Apr" -msgstr "Abr" - -#: src/Core/L10n.php:395 src/Model/Event.php:443 -msgid "Jun" -msgstr "Jun" - -#: src/Core/L10n.php:395 src/Model/Event.php:444 -msgid "Jul" -msgstr "Jul" - -#: src/Core/L10n.php:395 src/Model/Event.php:445 -msgid "Aug" -msgstr "Ago" - -#: src/Core/L10n.php:395 -msgid "Sep" -msgstr "Sep" - -#: src/Core/L10n.php:395 src/Model/Event.php:447 -msgid "Oct" -msgstr "Oct" - -#: 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 "empujar" - -#: src/Core/L10n.php:414 -msgid "poked" -msgstr "empujó a" - -#: src/Core/L10n.php:415 -msgid "ping" -msgstr "mandar \"ping\"" - -#: src/Core/L10n.php:415 -msgid "pinged" -msgstr "hizo \"ping\" a" - -#: src/Core/L10n.php:416 -msgid "prod" -msgstr "empujar" - -#: src/Core/L10n.php:416 -msgid "prodded" -msgstr "empujó a" - -#: src/Core/L10n.php:417 -msgid "slap" -msgstr "abofetear" - -#: src/Core/L10n.php:417 -msgid "slapped" -msgstr "abofeteó a" - -#: src/Core/L10n.php:418 -msgid "finger" -msgstr "meter dedo" - -#: src/Core/L10n.php:418 -msgid "fingered" -msgstr "le metió un dedo a" - -#: src/Core/L10n.php:419 -msgid "rebuff" -msgstr "desairar" - -#: src/Core/L10n.php:419 -msgid "rebuffed" -msgstr "desairó a" - -#: 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 "Archivo de configuración de la BD \"config/local.config.php\" no pudo ser escrito. Utilice el texto adjunto para crear un archivo de configuración en raíz del servidor web." - -#: src/Core/Installer.php:198 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Puede que tengas que importar el archivo \"database.sql\" manualmente usando phpmyadmin o mysql." - -#: src/Core/Installer.php:199 src/Module/Install.php:206 -#: src/Module/Install.php:365 -msgid "Please see the file \"doc/INSTALL.md\"." -msgstr "De favor vea el archivo \"doc/INSTALL.md\"." - -#: src/Core/Installer.php:260 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "No se encontró versión de línea de comandos PHP en ruta del servidor web." - -#: 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 "Si no tienes versión de comando de PHP instalado en tu servidor, no podras correr el proceso de fondo. Ver 'Configurar Worker'" - -#: src/Core/Installer.php:266 -msgid "PHP executable path" -msgstr "Ruta executable PHP" - -#: src/Core/Installer.php:266 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación." - -#: src/Core/Installer.php:271 -msgid "Command line PHP" -msgstr "Línea de comandos PHP" - -#: src/Core/Installer.php:280 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "Ejecutable PHP no es php cli binary (podria ser versión cgi-fgci)" - -#: src/Core/Installer.php:281 -msgid "Found PHP version: " -msgstr "Versión PHP encontrada:" - -#: src/Core/Installer.php:283 -msgid "PHP cli binary" -msgstr "PHP cli binario" - -#: src/Core/Installer.php:296 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versión en línea de comandos de PHP en tu sistema no tiene \"register_argc_argv\" habilitado." - -#: src/Core/Installer.php:297 -msgid "This is required for message delivery to work." -msgstr "Esto es requerido para que funcione la entrega de mensajes." - -#: 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 "Error: Función \"openssl_pkey_new\" en este sistema no es capaz de generar claves de cifrado" - -#: src/Core/Installer.php:335 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Si se ejecuta en Windows, por favor consulta la sección \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: src/Core/Installer.php:338 -msgid "Generate encryption keys" -msgstr "Generar claves de encriptación" - -#: src/Core/Installer.php:390 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: El módulo de Apache mod-rewrite es necesario pero no está instalado." - -#: src/Core/Installer.php:395 -msgid "Apache mod_rewrite module" -msgstr "Módulo mod_rewrite de Apache" - -#: src/Core/Installer.php:401 -msgid "Error: PDO or MySQLi PHP module required but not installed." -msgstr "Error: Módulo PDO o MySQLi PHP requerido pero no instalado." - -#: src/Core/Installer.php:406 -msgid "Error: The MySQL driver for PDO is not installed." -msgstr "Error: El dispositivo MySQL para PDO no está instalado." - -#: src/Core/Installer.php:410 -msgid "PDO or MySQLi PHP module" -msgstr "Módulo PDO o MySQLi PHP" - -#: src/Core/Installer.php:418 -msgid "Error, XML PHP module required but not installed." -msgstr "Error, módulo XML PHP requerido pero no instalado." - -#: src/Core/Installer.php:422 -msgid "XML PHP module" -msgstr "Módulo XML PHP" - -#: src/Core/Installer.php:425 -msgid "libCurl PHP module" -msgstr "Módulo PHP libCurl" - -#: src/Core/Installer.php:426 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: El módulo de PHP libcurl es necesario, pero no está instalado." - -#: src/Core/Installer.php:432 -msgid "GD graphics PHP module" -msgstr "Módulo PHP gráficos GD" - -#: src/Core/Installer.php:433 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: El módulo de de PHP gráficos GD con soporte JPEG es necesario, pero no está instalado." - -#: src/Core/Installer.php:439 -msgid "OpenSSL PHP module" -msgstr "Módulo PHP OpenSSL" - -#: src/Core/Installer.php:440 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: El módulo de PHP openssl es necesario, pero no está instalado." - -#: src/Core/Installer.php:446 -msgid "mb_string PHP module" -msgstr "Módulo PHP mb_string" - -#: src/Core/Installer.php:447 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: El módulo de PHP mb_string es necesario, pero no está instalado." - -#: src/Core/Installer.php:453 -msgid "iconv PHP module" -msgstr "Módulo PHP iconv" - -#: src/Core/Installer.php:454 -msgid "Error: iconv PHP module required but not installed." -msgstr "Error: módulo iconv PHP requerido pero no instalado." - -#: src/Core/Installer.php:460 -msgid "POSIX PHP module" -msgstr "Módulo PHP POSIX" - -#: src/Core/Installer.php:461 -msgid "Error: POSIX PHP module required but not installed." -msgstr "Error: PHP POSIX requerido y no instalado." - -#: src/Core/Installer.php:467 -msgid "Program execution functions" -msgstr "Funciones de ejecución de programa" - -#: src/Core/Installer.php:468 -msgid "Error: Program execution functions required but not enabled." -msgstr "Error: Funciones de ejecución de programa requeridas pero no habilitadas." - -#: src/Core/Installer.php:474 -msgid "JSON PHP module" -msgstr "Módulo PHP JSON" - -#: src/Core/Installer.php:475 -msgid "Error: JSON PHP module required but not installed." -msgstr "Eror: Módulo PHP JSON requerido y no instalado." - -#: src/Core/Installer.php:481 -msgid "File Information PHP module" -msgstr "Módulo PHP Información de Archivo" - -#: src/Core/Installer.php:482 -msgid "Error: File Information PHP module required but not installed." -msgstr "Error: Módulo PHP Información de Archivo requerido y no instalado." - -#: 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 "El instalador web debe poder crear un archivo llamado\"local.config.php\" en folder \"config\" de su servidor web y esincapaz de hacerlo." - -#: 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 "Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú puedas." - -#: 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 "Al final de este procedimiento, le daremos un texto para guardar en un archivollamado local.config.php en su folder \"config\" de Friendica ." - -#: 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 "Alternativamente, puede omitir este procedimiento y realizar una instalación manual. Consulte el archivo \"doc/INSTALL.md\" para instrucciones." - -#: src/Core/Installer.php:511 -msgid "config/local.config.php is writable" -msgstr "config/local.config.php es escriturable" - -#: 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 "Friendica usa el motor de templates Smarty3 para renderizar su visualización web. Smarty3 compila templates PHP para acelerar la velocidad de renderizar." - -#: 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 "Para poder guardar estos templates compilados, el servidor web necesita acceso de escritura en el directorio /view/smarty3/ en el árbol de raíz de la instalación friendica." - -#: 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 "Por favor asegure que el usuario que utiliza el servidor web (ejemplo: www-data) tiene permisos de escritura en esta carpeta." - -#: 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 "Nota: como medida de seguridad deberia dar acceso de escritura solo a /view/smarty3 / → no al los archivos template (.tpl) que contiene." - -#: src/Core/Installer.php:537 -msgid "view/smarty3 is writable" -msgstr "Se puede escribir en /view/smarty3" - -#: src/Core/Installer.php:565 -msgid "" -"Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" -"dist to .htaccess." -msgstr "La reescritura de URL en .htaccess parece no funcionar. Asegúrese de haber copiado .htaccess-dist a .htaccess." - -#: src/Core/Installer.php:566 -msgid "" -"In some circumstances (like running inside containers), you can skip this " -"error." -msgstr "En algunas circunstancias (como ejecutar dentro de contenedores), puede omitir este error." - -#: src/Core/Installer.php:568 -msgid "Error message from Curl when fetching" -msgstr "Mensaje de Error de Curl en lectura" - -#: src/Core/Installer.php:574 -msgid "Url rewrite is working" -msgstr "Reescribiendo la dirección..." - -#: src/Core/Installer.php:603 -msgid "ImageMagick PHP extension is not installed" -msgstr "No está instalada la extensión ImageMagick PHP" - -#: src/Core/Installer.php:605 -msgid "ImageMagick PHP extension is installed" -msgstr "ImageMagick PHP extension is installed" - -#: src/Core/Installer.php:607 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick supporta GIF" - -#: src/Core/Installer.php:629 -msgid "Database already in use." -msgstr "Base de datos ya esta en uso" - -#: src/Core/Installer.php:634 -msgid "Could not connect to database." -msgstr "No es posible conectar con Base Datos." - -#: src/Core/UserImport.php:126 -msgid "Error decoding account file" -msgstr "Error decodificando el archivo de cuenta" - -#: src/Core/UserImport.php:132 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta friendica? " - -#: src/Core/UserImport.php:140 +#: src/Database/DBStructure.php:57 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "La cuenta '%s' ya existe en este servidor!" +msgid "The database version had been set to %s." +msgstr "Versión de la Base de Datos establecida a %s." -#: src/Core/UserImport.php:176 -msgid "User creation error" -msgstr "Error al crear la cuenta" - -#: src/Core/UserImport.php:221 +#: src/Database/DBStructure.php:82 #, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contacto no importado" -msgstr[1] "%d contactos no importados" +msgid "" +"The post update is at version %d, it has to be at %d to safely drop the " +"tables." +msgstr "La actualización de la publicación está en versión %d, debe estar en %d para eliminar las tablas de manera segura." -#: src/Core/UserImport.php:274 -msgid "User profile creation error" -msgstr "Error al crear Perfil de Usuario" +#: src/Database/DBStructure.php:95 +msgid "No unused tables found." +msgstr "No hay tablas sin usar." -#: src/Core/UserImport.php:330 -msgid "Done. You can now login with your username and password" -msgstr "Hecho. Ahora podes ingresar con tu usuario y contraseña." +#: src/Database/DBStructure.php:100 +msgid "" +"These tables are not used for friendica and will be deleted when you execute" +" \"dbstructure drop -e\":" +msgstr "Estas tablas no se utilizan por friendica y se eliminarán cuando ejecute \"dbstructure drop -e\":" -#: 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 "Acceso denegado." +#: src/Database/DBStructure.php:137 +msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." +msgstr "No hay tablas en MyISAM o InnoDB con formato Antílope." -#: 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 "Permiso denegado." - -#: 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 "Contacto no encontrado." - -#: src/Module/FriendSuggest.php:65 -msgid "Suggested contact not found." -msgstr "El contacto sugerido no se encontró." - -#: src/Module/FriendSuggest.php:84 -msgid "Friend suggestion sent." -msgstr "Solicitud de amistad enviada." - -#: src/Module/FriendSuggest.php:121 -msgid "Suggest Friends" -msgstr "Sugerencias de amistad" - -#: src/Module/FriendSuggest.php:124 +#: src/Database/DBStructure.php:161 #, php-format -msgid "Suggest a friend for %s" -msgstr "Recomienda un amigo a %s" +msgid "" +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "\n\nError %d ocurrido durante la actualización de la base de datos:\n%s\n" -#: 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 "Enviar" +#: src/Database/DBStructure.php:164 +msgid "Errors encountered performing database changes: " +msgstr "Errores encontrados al realizar cambios en la base de datos: " -#: src/Module/Special/HTTPException.php:49 -msgid "Bad Request" -msgstr "Error en solicitud" +#: src/Database/DBStructure.php:232 +msgid "Another database update is currently running." +msgstr "Otro update de la BD esta corriendo." -#: src/Module/Special/HTTPException.php:50 +#: src/Database/DBStructure.php:236 +#, php-format +msgid "%s: Database update" +msgstr "%s: Actualizar Base de Datos" + +#: src/Database/DBStructure.php:493 +#, php-format +msgid "%s: updating %s table." +msgstr "%s: actualizando %s tabla." + +#: src/Factory/Api/Mastodon/Error.php:55 +msgid "Record not found" +msgstr "Registro no encontrado" + +#: src/Factory/Api/Mastodon/Error.php:65 +msgid "Unprocessable Entity" +msgstr "" + +#: src/Factory/Api/Mastodon/Error.php:75 msgid "Unauthorized" msgstr "No autorizado" -#: src/Module/Special/HTTPException.php:51 -msgid "Forbidden" -msgstr "Prohibido" +#: src/Factory/Api/Mastodon/Error.php:84 +msgid "" +"Token is not authorized with a valid user or is missing a required scope" +msgstr "" -#: src/Module/Special/HTTPException.php:52 -msgid "Not Found" -msgstr "No se encontró" - -#: src/Module/Special/HTTPException.php:53 +#: src/Factory/Api/Mastodon/Error.php:94 msgid "Internal Server Error" msgstr "Error Interno del Servidor" -#: src/Module/Special/HTTPException.php:54 -msgid "Service Unavailable" -msgstr "Servicio no Disponible" +#: src/LegacyModule.php:63 +#, php-format +msgid "Legacy module file not found: %s" +msgstr "Modulo legado no encontrado: %s" -#: src/Module/Special/HTTPException.php:61 +#: src/Model/Circle.php:106 msgid "" -"The server cannot or will not process the request due to an apparent client " -"error." -msgstr "Servidor no puede procesar la solicitud debido a aparente error del navegador." - -#: src/Module/Special/HTTPException.php:62 -msgid "" -"Authentication is required and has failed or has not yet been provided." -msgstr "Se requieren ingresar o falló el intento." - -#: 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 "Solicitud válida, pero el servidor lo rechazó. Podría ser que el Usuario no tenga los permisos necesario, o requiera ingresar con una cuenta." - -#: src/Module/Special/HTTPException.php:64 -msgid "" -"The requested resource could not be found but may be available in the " -"future." -msgstr "El recurso solicitado no se encontró pero podría estar disponible pronto." - -#: src/Module/Special/HTTPException.php:65 -msgid "" -"An unexpected condition was encountered and no more specific message is " -"suitable." -msgstr "Se generó un error inesperado y no tenemos mas detalles." - -#: 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 "El servidor no esta disponible (pude estar sobrecargado o en mantenimiento) Inténtelo después." - -#: src/Module/Special/HTTPException.php:75 src/Content/Nav.php:94 -msgid "Go back" -msgstr "Regresar" - -#: src/Module/Special/HTTPException.php:76 -msgid "Stack trace:" -msgstr "Seguimiento de pila:" - -#: src/Module/Special/HTTPException.php:80 -#, php-format -msgid "Exception thrown in %s:%d" -msgstr "Excepción lanzada en %s:%d" - -#: src/Module/Filer/RemoveTag.php:69 -msgid "Item was not removed" -msgstr "Artículo no fue borrado" - -#: src/Module/Filer/RemoveTag.php:72 -msgid "Item was not deleted" -msgstr "Artículo no fue borrado" - -#: 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 "Debes ingresar para usar este módulo" - -#: src/Module/Filer/SaveTag.php:69 include/conversation.php:1185 -msgid "Save to Folder:" -msgstr "Guardar en directorio:" - -#: src/Module/Filer/SaveTag.php:69 -msgid "- select -" -msgstr "- seleccionar -" - -#: src/Module/Filer/SaveTag.php:70 src/Content/Text/HTML.php:889 -#: mod/editpost.php:88 mod/notes.php:63 -msgid "Save" -msgstr "Guardar" - -#: src/Module/Api/Mastodon/Unimplemented.php:42 -#, php-format -msgid "API endpoint \"%s\" is not implemented" -msgstr "API endpoint \"%s\" no implementada" - -#: src/Module/Api/Mastodon/Unimplemented.php:43 -msgid "" -"The API endpoint is currently not implemented but might be in the future." -msgstr "API endpoint no está implementado actualmente, pero podría estarlo en el futuro." - -#: src/Module/Api/Twitter/ContactEndpoint.php:65 src/Module/Contact.php:400 -msgid "Contact not found" -msgstr "Contacto no Encontrado" - -#: 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 "Usuario no encontrado" - -#: src/Module/Api/Twitter/ContactEndpoint.php:135 -msgid "Profile not found" -msgstr "No se encontró el Perfil" - -#: src/Module/Contact/Poke.php:113 -msgid "Error while sending poke, please retry." -msgstr "Error al enviar empujón, reintentalo." - -#: src/Module/Contact/Poke.php:126 src/Module/Search/Acl.php:55 -msgid "You must be logged in to use this module." -msgstr "Debes ingresar para usar el modulo." - -#: src/Module/Contact/Poke.php:149 -msgid "Poke/Prod" -msgstr "Toque/Empujón" - -#: src/Module/Contact/Poke.php:150 -msgid "poke, prod or do other things to somebody" -msgstr "dar un toque, empujón o similar a alguien" - -#: src/Module/Contact/Poke.php:152 -msgid "Choose what you wish to do to recipient" -msgstr "Elige qué hacer con el receptor" - -#: src/Module/Contact/Poke.php:153 -msgid "Make this post private" -msgstr "Hacer esta publicación privada" - -#: 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 "Cargando..." - -#: src/Module/Contact/Advanced.php:92 -msgid "Contact update failed." -msgstr "Error al actualizar el Contacto." - -#: 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 "ADVERTENCIA: Esto es muy avanzado y si se introduce información incorrecta tu conexión con este contacto puede dejar de funcionar." - -#: 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 "Por favor usa el botón 'Atrás' de tu navegador ahora si no tienes claro qué hacer en esta página." - -#: src/Module/Contact/Advanced.php:130 -msgid "Return to contact editor" -msgstr "Volver al editor de contactos" - -#: 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 "Nombre" - -#: src/Module/Contact/Advanced.php:135 -msgid "Account Nickname" -msgstr "Apodo de cuenta" - -#: src/Module/Contact/Advanced.php:136 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - Sobrescribe el Nombre/Apodo" - -#: src/Module/Contact/Advanced.php:137 -msgid "Account URL" -msgstr "Dirección de cuenta" - -#: src/Module/Contact/Advanced.php:138 -msgid "Account URL Alias" -msgstr "URL Alias de cuenta" - -#: src/Module/Contact/Advanced.php:139 -msgid "Friend Request URL" -msgstr "Dirección de solicitud de amistad" - -#: src/Module/Contact/Advanced.php:140 -msgid "Friend Confirm URL" -msgstr "Dirección de confirmación de amistad " - -#: src/Module/Contact/Advanced.php:141 -msgid "Notification Endpoint URL" -msgstr "Dirección URL de notificación" - -#: src/Module/Contact/Advanced.php:142 -msgid "Poll/Feed URL" -msgstr "Dirección de Sondeo/Fuente" - -#: src/Module/Contact/Advanced.php:143 -msgid "New photo from this URL" -msgstr "Nueva foto de esta URL" - -#: src/Module/Contact/Contacts.php:31 src/Module/Conversation/Network.php:175 -msgid "Invalid contact." -msgstr "Contacto erróneo." - -#: src/Module/Contact/Contacts.php:54 -msgid "No known contacts." -msgstr "No hay contactos conocidos." - -#: src/Module/Contact/Contacts.php:68 src/Module/Profile/Common.php:99 -msgid "No common contacts." -msgstr "Sin contactos comunes." - -#: src/Module/Contact/Contacts.php:80 src/Module/Profile/Contacts.php:97 -#, php-format -msgid "Follower (%s)" -msgid_plural "Followers (%s)" -msgstr[0] "Seguidor (%s)" -msgstr[1] "Seguidores (%s)" - -#: src/Module/Contact/Contacts.php:84 src/Module/Profile/Contacts.php:100 -#, php-format -msgid "Following (%s)" -msgid_plural "Following (%s)" -msgstr[0] "Siguiendo (%s)" -msgstr[1] "Siguiendo (%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] "Amigo mutuo (%s)" -msgstr[1] "Amigos mutuos (%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 "Estos contactos siguen y son seguidos por %s." - -#: 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] "Common contact (%s)" -msgstr[1] "Common contacts (%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 "Tanto %s como usted han interactuado públicamente con estos contactos (seguir, comentar o dar me gusta en publicaciones públicas)." - -#: src/Module/Contact/Contacts.php:104 src/Module/Profile/Contacts.php:111 -#, php-format -msgid "Contact (%s)" -msgid_plural "Contacts (%s)" -msgstr[0] "Contacto (%s)" -msgstr[1] "Contactos (%s)" - -#: src/Module/Friendica.php:61 -msgid "Installed addons/apps:" -msgstr "Añadidos/apps Instalados:" - -#: src/Module/Friendica.php:66 -msgid "No installed addons/apps" -msgstr "Añadidos/apps no instalados" - -#: src/Module/Friendica.php:71 -#, php-format -msgid "Read about the Terms of Service of this node." -msgstr "Leer acerca de Términos de Servicio del nodo." - -#: src/Module/Friendica.php:78 -msgid "On this server the following remote servers are blocked." -msgstr "En este servidor los siguientes servidores remotos están bloqueados." - -#: src/Module/Friendica.php:80 src/Model/Contact.php:2164 -#: mod/dfrn_request.php:361 -msgid "Blocked domain" -msgstr "Dominio bloqueado" - -#: 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 "Razón para el bloqueo" - -#: 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 "Este es Friendica, version %s ejecutándose en ubicación %s. Versión de la BD es %s, la versión después de actualización es %s." - -#: src/Module/Friendica.php:101 -msgid "" -"Please visit Friendi.ca to learn more " -"about the Friendica project." -msgstr "Visite Friendi.ca para aprender más sobre el proyecto Friendica, por favor." - -#: src/Module/Friendica.php:102 -msgid "Bug reports and issues: please visit" -msgstr "Reporte de fallos y problemas: por favor visita" - -#: src/Module/Friendica.php:102 -msgid "the bugtracker at github" -msgstr "aviso de fallas (bugs) en github" - -#: src/Module/Friendica.php:103 -msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -msgstr "Sugerencias, agradecimientos, etc. - envie correo \"info\" at \"friendi - dot - ca" - -#: src/Module/Group.php:61 -msgid "Could not create group." -msgstr "Imposible crear el grupo." - -#: src/Module/Group.php:72 src/Module/Group.php:214 src/Module/Group.php:238 -msgid "Group not found." -msgstr "Grupo no encontrado." - -#: src/Module/Group.php:78 -msgid "Group name was not changed." -msgstr "Nombre de Grupo no modificado." - -#: src/Module/Group.php:100 -msgid "Unknown group." -msgstr "Grupo no existe." - -#: src/Module/Group.php:109 -msgid "Contact is deleted." -msgstr "El contacto se borra." - -#: src/Module/Group.php:115 -msgid "Unable to add the contact to the group." -msgstr "No es posible añadir contacto al grupo." - -#: src/Module/Group.php:118 -msgid "Contact successfully added to group." -msgstr "Se añadió el contacto el grupo." - -#: src/Module/Group.php:122 -msgid "Unable to remove the contact from the group." -msgstr "No es posible borrar contacto del grupo." - -#: src/Module/Group.php:125 -msgid "Contact successfully removed from group." -msgstr "Contacto borrado del grupo." - -#: src/Module/Group.php:128 -msgid "Unknown group command." -msgstr "Comando de grupo desconocido." - -#: src/Module/Group.php:131 -msgid "Bad request." -msgstr "Petición no reconocida" - -#: src/Module/Group.php:170 -msgid "Save Group" -msgstr "Guardar grupo" - -#: src/Module/Group.php:171 -msgid "Filter" -msgstr "Filtro" - -#: src/Module/Group.php:177 -msgid "Create a group of contacts/friends." -msgstr "Crea un grupo de contactos/amigos." - -#: src/Module/Group.php:178 src/Module/Group.php:201 src/Module/Group.php:276 -#: src/Model/Group.php:543 -msgid "Group Name: " -msgstr "Nombre del grupo: " - -#: src/Module/Group.php:193 src/Model/Group.php:540 -msgid "Contacts not in any group" -msgstr "Contactos sin grupo" - -#: src/Module/Group.php:219 -msgid "Unable to remove group." -msgstr "No se puede eliminar el grupo." - -#: src/Module/Group.php:270 -msgid "Delete Group" -msgstr "Borrar grupo" - -#: src/Module/Group.php:280 -msgid "Edit Group Name" -msgstr "Editar nombre de grupo" - -#: src/Module/Group.php:290 -msgid "Members" -msgstr "Miembros" - -#: src/Module/Group.php:292 src/Module/Contact.php:791 -#: src/Content/Widget.php:247 -msgid "All Contacts" -msgstr "Todos los contactos" - -#: src/Module/Group.php:293 -msgid "Group is empty" -msgstr "Grupo está vacío" - -#: src/Module/Group.php:306 -msgid "Remove contact from group" -msgstr "Borrar contacto del grupo" - -#: src/Module/Group.php:327 -msgid "Click on a contact to add or remove." -msgstr "Pulsa en un contacto para añadirlo o eliminarlo." - -#: src/Module/Group.php:341 -msgid "Add contact to group" -msgstr "Añadir contacto a grupo" - -#: src/Module/BaseNotifications.php:139 -#: src/Module/Notifications/Introductions.php:54 src/Content/Nav.php:268 -msgid "Notifications" -msgstr "Notificaciones" - -#: src/Module/HTTPException/MethodNotAllowed.php:32 -msgid "Method Not Allowed." -msgstr "Método no Permitido" - -#: src/Module/Home.php:54 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenido a %s" - -#: src/Module/BaseSearch.php:69 -#, php-format -msgid "People Search - %s" -msgstr "Buscar personas - %s" - -#: src/Module/BaseSearch.php:79 -#, php-format -msgid "Forum Search - %s" -msgstr "Búsqueda de Foros - %s" - -#: src/Module/BaseSearch.php:117 mod/match.php:120 -msgid "No matches" -msgstr "Sin resultados" - -#: src/Module/Notifications/Introductions.php:78 -msgid "Show Ignored Requests" -msgstr "Mostrar peticiones ignoradas" - -#: src/Module/Notifications/Introductions.php:78 -msgid "Hide Ignored Requests" -msgstr "Ocultar peticiones ignoradas" - -#: src/Module/Notifications/Introductions.php:94 -#: src/Module/Notifications/Introductions.php:163 -msgid "Notification type:" -msgstr "Tipo de Notificación:" - -#: src/Module/Notifications/Introductions.php:97 -msgid "Suggested by:" -msgstr "Sugerido por:" - -#: 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 "URL del Perfil" - -#: src/Module/Notifications/Introductions.php:111 -#: src/Module/Notifications/Introductions.php:189 -#: src/Module/Admin/Users/Pending.php:107 src/Model/Contact.php:1001 +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." +msgstr "" + +#: src/Model/Circle.php:543 +msgid "Everybody" +msgstr "Todo el mundo" + +#: src/Model/Circle.php:562 +msgid "edit" +msgstr "editar" + +#: src/Model/Circle.php:599 +msgid "add" +msgstr "añadir" + +#: src/Model/Circle.php:604 +msgid "Edit circle" +msgstr "" + +#: src/Model/Circle.php:605 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "" + +#: src/Model/Circle.php:607 +msgid "Create a new circle" +msgstr "" + +#: src/Model/Circle.php:608 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "" + +#: src/Model/Circle.php:609 +msgid "Edit circles" +msgstr "" + +#: src/Model/Contact.php:1240 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Aprobar" -#: 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 "Ignorar" +#: src/Model/Contact.php:1694 +msgid "Organisation" +msgstr "Organización" -#: 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 "Descartar" +#: src/Model/Contact.php:1702 +msgid "Group" +msgstr "" -#: src/Module/Notifications/Introductions.php:122 -msgid "Claims to be known to you: " -msgstr "Dice conocerte: " +#: src/Model/Contact.php:3005 +msgid "Disallowed profile URL." +msgstr "Dirección de perfil no permitida." -#: src/Module/Notifications/Introductions.php:123 src/Module/Register.php:115 -#: src/Module/Contact.php:456 mod/api.php:127 -msgid "Yes" -msgstr "Sí" +#: src/Model/Contact.php:3010 src/Module/Friendica.php:101 +msgid "Blocked domain" +msgstr "Dominio bloqueado" -#: src/Module/Notifications/Introductions.php:123 src/Module/Register.php:116 -#: mod/api.php:128 -msgid "No" -msgstr "No" +#: src/Model/Contact.php:3015 +msgid "Connect URL missing." +msgstr "Falta el conector URL." -#: src/Module/Notifications/Introductions.php:131 -msgid "Shall your connection be bidirectional or not?" -msgstr "¿Debe la conexión ser bidireccional o no?" - -#: src/Module/Notifications/Introductions.php:132 -#, php-format +#: src/Model/Contact.php:3024 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 "Aceptar a %s como amigo le permite a %s suscribirse a sus publicaciones, y usted también recibirá actualizaciones de ellos en sus noticias." +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "No pudo añadirse el contacto. Consulte las credenciales de red en Ajustes -> Redes Sociales." -#: src/Module/Notifications/Introductions.php:133 +#: src/Model/Contact.php:3042 #, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "" + +#: src/Model/Contact.php:3059 +msgid "The profile address specified does not provide adequate information." +msgstr "La dirección del perfil especificado no proporciona información adecuada." + +#: src/Model/Contact.php:3061 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "No se ha descubierto protocolos de comunicación o fuentes compatibles." + +#: src/Model/Contact.php:3064 +msgid "An author or name was not found." +msgstr "No se ha encontrado un autor o nombre." + +#: src/Model/Contact.php:3067 +msgid "No browser URL could be matched to this address." +msgstr "Ninguna dirección concuerda con la suministrada." + +#: src/Model/Contact.php:3070 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 "Aceptar a %s como suscriptor les permite suscribirse a sus publicaciones, pero usted no recibirá actualizaciones de ellos en sus noticias." +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Imposible identificar la Identidad @-style con algún protocolo conocido o dirección de contacto." -#: src/Module/Notifications/Introductions.php:135 -msgid "Friend" -msgstr "Amigo" +#: src/Model/Contact.php:3071 +msgid "Use mailto: in front of address to force email check." +msgstr "Escribe mailto: al principio de la dirección para forzar el envío." -#: src/Module/Notifications/Introductions.php:136 -msgid "Subscriber" -msgstr "Suscriptor" +#: src/Model/Contact.php:3077 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio." -#: 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 "Localización:" +#: src/Model/Contact.php:3082 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas." -#: src/Module/Notifications/Introductions.php:174 src/Module/Contact.php:650 -#: src/Model/Profile.php:362 +#: src/Model/Contact.php:3148 +msgid "Unable to retrieve contact information." +msgstr "No ha sido posible recibir la información del contacto." + +#: src/Model/Event.php:54 +msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" +msgstr "" + +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 +msgid "Starts:" +msgstr "Inicio:" + +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 +msgid "Finishes:" +msgstr "Final:" + +#: src/Model/Event.php:419 +msgid "all-day" +msgstr "todo el día" + +#: src/Model/Event.php:445 +msgid "Sept" +msgstr "Sept" + +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "hoy" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:245 src/Util/Temporal.php:353 +msgid "month" +msgstr "mes" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:246 src/Util/Temporal.php:354 +msgid "week" +msgstr "semana" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:247 src/Util/Temporal.php:355 +msgid "day" +msgstr "día" + +#: src/Model/Event.php:467 +msgid "No events to display" +msgstr "No hay eventos a mostrar" + +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "El acceso a este perfil ha sido restringido." + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "" + +#: src/Model/Event.php:637 +msgid "l, F j" +msgstr "l, F j" + +#: src/Model/Event.php:664 +msgid "Edit event" +msgstr "Editar evento" + +#: src/Model/Event.php:665 +msgid "Duplicate event" +msgstr "Duplicar evento" + +#: src/Model/Event.php:666 +msgid "Delete event" +msgstr "Borrar evento" + +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: src/Model/Event.php:897 +msgid "D g:i A" +msgstr "D g:i A" + +#: src/Model/Event.php:898 +msgid "g:i A" +msgstr "g:i A" + +#: src/Model/Event.php:964 src/Model/Event.php:966 +msgid "Show map" +msgstr "Mostrar mapa" + +#: src/Model/Event.php:965 +msgid "Hide map" +msgstr "Ocultar mapa" + +#: src/Model/Event.php:1058 +#, php-format +msgid "%s's birthday" +msgstr "Cumpleaños de %s" + +#: src/Model/Event.php:1059 +#, php-format +msgid "Happy Birthday %s" +msgstr "Feliz cumpleaños %s" + +#: src/Model/Item.php:2062 +#, php-format +msgid "Detected languages in this post:\\n%s" +msgstr "Lenguajes detectados en artículo:\\n%s" + +#: src/Model/Item.php:3007 +msgid "activity" +msgstr "Actividad" + +#: src/Model/Item.php:3009 +msgid "comment" +msgstr "" + +#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123 +msgid "post" +msgstr "Publicación" + +#: src/Model/Item.php:3182 +#, php-format +msgid "%s is blocked" +msgstr "" + +#: src/Model/Item.php:3184 +#, php-format +msgid "%s is ignored" +msgstr "" + +#: src/Model/Item.php:3186 +#, php-format +msgid "Content from %s is collapsed" +msgstr "" + +#: src/Model/Item.php:3190 +#, php-format +msgid "Content warning: %s" +msgstr "Advertencia de contenido: %s" + +#: src/Model/Item.php:3652 +msgid "bytes" +msgstr "bytes" + +#: src/Model/Item.php:3683 +#, php-format +msgid "%2$s (%3$d%%, %1$d vote)" +msgid_plural "%2$s (%3$d%%, %1$d votes)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Model/Item.php:3685 +#, php-format +msgid "%2$s (%1$d vote)" +msgid_plural "%2$s (%1$d votes)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Model/Item.php:3690 +#, php-format +msgid "%d voter. Poll end: %s" +msgid_plural "%d voters. Poll end: %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Model/Item.php:3692 +#, php-format +msgid "%d voter." +msgid_plural "%d voters." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Model/Item.php:3694 +#, php-format +msgid "Poll end: %s" +msgstr "" + +#: src/Model/Item.php:3728 src/Model/Item.php:3729 +msgid "View on separate page" +msgstr "Ver en pagina aparte" + +#: src/Model/Mail.php:137 src/Model/Mail.php:266 +msgid "[no subject]" +msgstr "[sin asunto]" + +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Foto del Perfil" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 +msgid "Edit profile" +msgstr "Editar perfil" + +#: src/Model/Profile.php:361 +msgid "Change profile photo" +msgstr "Cambiar foto del perfil" + +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 +msgid "Homepage:" +msgstr "Inicio:" + +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "Acerca de:" -#: src/Module/Notifications/Introductions.php:176 -#: src/Module/Profile/Profile.php:203 src/Module/Contact.php:652 -#: mod/follow.php:150 -msgid "Tags:" -msgstr "Etiquetas:" +#: src/Model/Profile.php:465 +msgid "Atom feed" +msgstr "Atom feed" -#: src/Module/Notifications/Introductions.php:177 src/Module/Contact.php:634 -msgid "Hide this contact from others" -msgstr "Ocultar el contacto a los demás." +#: src/Model/Profile.php:472 +msgid "This website has been verified to belong to the same person." +msgstr "" -#: src/Module/Notifications/Introductions.php:186 src/Module/Contact.php:338 -#: src/Model/Profile.php:451 -msgid "Network:" -msgstr "Red:" +#: src/Model/Profile.php:509 +msgid "F d" +msgstr "F d" -#: src/Module/Notifications/Introductions.php:201 -msgid "No introductions." -msgstr "Sin presentaciones." +#: src/Model/Profile.php:573 src/Model/Profile.php:662 +msgid "[today]" +msgstr "[hoy]" -#: src/Module/Notifications/Introductions.php:202 -#: src/Module/Notifications/Notifications.php:133 +#: src/Model/Profile.php:582 +msgid "Birthday Reminders" +msgstr "Recordatorios de cumpleaños" + +#: src/Model/Profile.php:583 +msgid "Birthdays this week:" +msgstr "Cumpleaños esta semana:" + +#: src/Model/Profile.php:611 +msgid "g A l F d" +msgstr "g A l F d" + +#: src/Model/Profile.php:649 +msgid "[No description]" +msgstr "[Sin descripción]" + +#: src/Model/Profile.php:675 +msgid "Event Reminders" +msgstr "Recordatorios de eventos" + +#: src/Model/Profile.php:676 +msgid "Upcoming events the next 7 days:" +msgstr "Eventos de los próximos 7 dias:" + +#: src/Model/Profile.php:873 #, php-format -msgid "No more %s notifications." -msgstr "No más notificaciones de %s." +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s te da la bienvenida %2$s" -#: src/Module/Notifications/Notifications.php:50 -msgid "Network Notifications" -msgstr "Notificaciones de Red" +#: src/Model/Profile.php:1013 +msgid "Hometown:" +msgstr "Ciudad de origen:" -#: src/Module/Notifications/Notifications.php:58 -msgid "System Notifications" -msgstr "Notificaciones del sistema" +#: src/Model/Profile.php:1014 +msgid "Marital Status:" +msgstr "Estado civil:" -#: src/Module/Notifications/Notifications.php:66 -msgid "Personal Notifications" -msgstr "Notificaciones personales" +#: src/Model/Profile.php:1015 +msgid "With:" +msgstr "Con:" -#: src/Module/Notifications/Notifications.php:74 -msgid "Home Notifications" -msgstr "Notificaciones de Inicio" +#: src/Model/Profile.php:1016 +msgid "Since:" +msgstr "Desde:" -#: src/Module/Notifications/Notifications.php:138 -msgid "Show unread" -msgstr "Mostrar no leído" +#: src/Model/Profile.php:1017 +msgid "Sexual Preference:" +msgstr "Preferencia sexual:" -#: src/Module/Notifications/Notifications.php:138 +#: src/Model/Profile.php:1018 +msgid "Political Views:" +msgstr "Ideas políticas:" + +#: src/Model/Profile.php:1019 +msgid "Religious Views:" +msgstr "Creencias religiosas:" + +#: src/Model/Profile.php:1020 +msgid "Likes:" +msgstr "Me gustan:" + +#: src/Model/Profile.php:1021 +msgid "Dislikes:" +msgstr "No me gustan:" + +#: src/Model/Profile.php:1022 +msgid "Title/Description:" +msgstr "Título/Descripción:" + +#: src/Model/Profile.php:1023 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 +msgid "Summary" +msgstr "Resumen" + +#: src/Model/Profile.php:1024 +msgid "Musical interests" +msgstr "Gustos musicales" + +#: src/Model/Profile.php:1025 +msgid "Books, literature" +msgstr "Libros, literatura" + +#: src/Model/Profile.php:1026 +msgid "Television" +msgstr "Televisión" + +#: src/Model/Profile.php:1027 +msgid "Film/dance/culture/entertainment" +msgstr "Películas/baile/cultura/entretenimiento" + +#: src/Model/Profile.php:1028 +msgid "Hobbies/Interests" +msgstr "Aficiones/Intereses" + +#: src/Model/Profile.php:1029 +msgid "Love/romance" +msgstr "Amor/Romance" + +#: src/Model/Profile.php:1030 +msgid "Work/employment" +msgstr "Trabajo/ocupación" + +#: src/Model/Profile.php:1031 +msgid "School/education" +msgstr "Escuela/estudios" + +#: src/Model/Profile.php:1032 +msgid "Contact information and Social Networks" +msgstr "Informacioń de contacto y Redes sociales" + +#: src/Model/User.php:227 src/Model/User.php:1186 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERROR GRAVE: Generación de claves de seguridad falló." + +#: src/Model/User.php:620 src/Model/User.php:653 +msgid "Login failed" +msgstr "Ingreso fallido" + +#: src/Model/User.php:685 +msgid "Not enough information to authenticate" +msgstr "Falta información para autenticación" + +#: src/Model/User.php:806 +msgid "Password can't be empty" +msgstr "La contraseña es requerida" + +#: src/Model/User.php:848 +msgid "Empty passwords are not allowed." +msgstr "No se permiten contraseñas vacias" + +#: src/Model/User.php:852 +msgid "" +"The new password has been exposed in a public data dump, please choose " +"another." +msgstr "La nueva contraseña ya se ha usado muchas veces, escoja otro." + +#: src/Model/User.php:856 +msgid "The password length is limited to 72 characters." +msgstr "" + +#: src/Model/User.php:860 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "" + +#: src/Model/User.php:1069 +msgid "Passwords do not match. Password unchanged." +msgstr "Las contraseñas no coinciden. La contraseña no ha sido modificada." + +#: src/Model/User.php:1076 +msgid "An invitation is required." +msgstr "Se requiere de invitación." + +#: src/Model/User.php:1080 +msgid "Invitation could not be verified." +msgstr "No se puede verificar la invitación." + +#: src/Model/User.php:1088 +msgid "Invalid OpenID url" +msgstr "Dirección OpenID no válida" + +#: src/Model/User.php:1101 src/Security/Authentication.php:241 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente." + +#: src/Model/User.php:1101 src/Security/Authentication.php:241 +msgid "The error message was:" +msgstr "El mensaje del error fue:" + +#: src/Model/User.php:1107 +msgid "Please enter the required information." +msgstr "Por favor, introduce la información necesaria." + +#: src/Model/User.php:1121 +#, 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) y system.username_max_length (%s) son mutuamente excluyentes, los valores se sobreponen." + +#: src/Model/User.php:1128 +#, php-format +msgid "Username should be at least %s character." +msgid_plural "Username should be at least %s characters." +msgstr[0] "Usuario debe ser al menos %s caracter." +msgstr[1] "Usuario debe ser al menos %s caracteres." +msgstr[2] "Usuario debe ser al menos %s caracteres." + +#: src/Model/User.php:1132 +#, php-format +msgid "Username should be at most %s character." +msgid_plural "Username should be at most %s characters." +msgstr[0] "Usuario debe ser máximo %s caracter." +msgstr[1] "Usuario debe ser máximo %s caracteres." +msgstr[2] "Usuario debe ser máximo %s caracteres." + +#: src/Model/User.php:1140 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "No parece que ese sea tu nombre completo." + +#: src/Model/User.php:1145 +msgid "Your email domain is not among those allowed on this site." +msgstr "Tu dominio de correo no se encuentra entre los permitidos en este sitio." + +#: src/Model/User.php:1149 +msgid "Not a valid email address." +msgstr "No es una dirección de correo electrónico válida." + +#: src/Model/User.php:1152 +msgid "The nickname was blocked from registration by the nodes admin." +msgstr "Ese nombre se bloquea a solicitud del administrador." + +#: src/Model/User.php:1156 src/Model/User.php:1162 +msgid "Cannot use that email." +msgstr "No puede usarse ese correo electrónico." + +#: src/Model/User.php:1168 +msgid "Your nickname can only contain a-z, 0-9 and _." +msgstr "Tu apodo solo puede contener a-z, 0 al 9 y guión bajo (_)." + +#: src/Model/User.php:1176 src/Model/User.php:1233 +msgid "Nickname is already registered. Please choose another." +msgstr "Apodo ya registrado. Por favor, elije otro." + +#: src/Model/User.php:1220 src/Model/User.php:1224 +msgid "An error occurred during registration. Please try again." +msgstr "Se produjo un error durante el registro. Por favor, inténtalo de nuevo." + +#: src/Model/User.php:1247 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo." + +#: src/Model/User.php:1254 +msgid "An error occurred creating your self contact. Please try again." +msgstr "Ocurrió un error creando el contacto. Vuelve a intentar." + +#: src/Model/User.php:1259 +msgid "Friends" +msgstr "Amigos" + +#: src/Model/User.php:1263 +msgid "" +"An error occurred creating your default contact circle. Please try again." +msgstr "" + +#: src/Model/User.php:1307 +msgid "Profile Photos" +msgstr "Fotos del perfil" + +#: src/Model/User.php:1487 +#, 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\tEstimado %1$s,\n\t\t\tel administrador de %2$s te ha establecido una cuenta." + +#: src/Model/User.php:1490 +#, 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/settings/removeme\n" +"\n" +"\t\tThank you and welcome to %4$s." +msgstr "" + +#: src/Model/User.php:1523 src/Model/User.php:1630 +#, php-format +msgid "Registration details for %s" +msgstr "Detalles de registro para %s" + +#: src/Model/User.php:1543 +#, 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\tEstimado %1$s,\n\t\t\t\tGracias por registrarte en %2$s. Tu cuenta esta en aprobación por los Administradores.\n\n\t\t\tTus datos de ingreso son:\n\n\t\t\tSitio - ubicación:\t%3$s\n\t\t\tUsuario:\t\t%4$s\n\t\t\tContraseña:\t\t%5$s\n\t\t" + +#: src/Model/User.php:1562 +#, php-format +msgid "Registration at %s" +msgstr "Registro en %s" + +#: src/Model/User.php:1586 +#, 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\tEstimado %1$s,\n\t\t\t\tGracias por registrarte en %2$s. Tu cuenta fue creada.\n\t\t\t" + +#: src/Model/User.php:1594 +#, 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/settings/removeme\n" +"\n" +"\t\t\tThank you and welcome to %2$s." +msgstr "" + +#: src/Module/Admin/Addons/Details.php:65 +msgid "Addon not found." +msgstr "Añadido no encontrado." + +#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 +#, php-format +msgid "Addon %s disabled." +msgstr "Añadido %s deshabilitado." + +#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 +#, php-format +msgid "Addon %s enabled." +msgstr "Añadido %s habilitado." + +#: src/Module/Admin/Addons/Details.php:88 +#: src/Module/Admin/Themes/Details.php:46 +msgid "Disable" +msgstr "Desactivar" + +#: src/Module/Admin/Addons/Details.php:91 +#: src/Module/Admin/Themes/Details.php:49 +msgid "Enable" +msgstr "Activar" + +#: src/Module/Admin/Addons/Details.php:111 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 +#: src/Module/Admin/Themes/Details.php:90 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 +msgid "Administration" +msgstr "Administración" + +#: src/Module/Admin/Addons/Details.php:112 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:132 +msgid "Addons" +msgstr "Añadidos" + +#: src/Module/Admin/Addons/Details.php:113 +#: src/Module/Admin/Themes/Details.php:92 +msgid "Toggle" +msgstr "Activar" + +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 +msgid "Author: " +msgstr "Autor: " + +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 +msgid "Maintainer: " +msgstr "Mantenedor: " + +#: src/Module/Admin/Addons/Index.php:42 +msgid "Addons reloaded" +msgstr "Añadidos re cargados" + +#: src/Module/Admin/Addons/Index.php:53 +#, php-format +msgid "Addon %s failed to install." +msgstr "Instalación de Añadido %s falló" + +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Guardar configuración" + +#: src/Module/Admin/Addons/Index.php:70 +msgid "Reload active addons" +msgstr "Añadidos activos re cargados" + +#: src/Module/Admin/Addons/Index.php:74 +#, 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 "No hay añadidos disponibles en el nodo. Puedes encontrar el repositorio oficial en %1$s y puedes encontrar otros interesantes en el registro de añadidos en %2$s" + +#: src/Module/Admin/DBSync.php:51 +msgid "Update has been marked successful" +msgstr "La actualización se ha completado con éxito" + +#: src/Module/Admin/DBSync.php:59 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Actualización de base de datos %s fue aplicada con éxito." + +#: src/Module/Admin/DBSync.php:61 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "El paso de actualización de la estructura de la base de datos %s fallo con el mensaje de error: %s" + +#: src/Module/Admin/DBSync.php:76 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Paso %s fallo con el error: %s" + +#: src/Module/Admin/DBSync.php:78 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Actualización %s aplicada con éxito." + +#: src/Module/Admin/DBSync.php:81 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "La actualización %s no ha informado, se desconoce el estado." + +#: src/Module/Admin/DBSync.php:84 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "No había función adicional de actualización %s que necesitaba ser requerida." + +#: src/Module/Admin/DBSync.php:105 +msgid "No failed updates." +msgstr "Actualizaciones sin fallos." + +#: src/Module/Admin/DBSync.php:106 +msgid "Check database structure" +msgstr "Revisar estructura de la base de datos" + +#: src/Module/Admin/DBSync.php:110 +msgid "Failed Updates" +msgstr "Actualizaciones fallidas" + +#: src/Module/Admin/DBSync.php:111 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "No se incluyen las anteriores a la 1139, que no indicaban su estado." + +#: src/Module/Admin/DBSync.php:112 +msgid "Mark success (if update was manually applied)" +msgstr "Marcar como correcta (si actualizaste manualmente)" + +#: src/Module/Admin/DBSync.php:113 +msgid "Attempt to execute this update step automatically" +msgstr "Intentando ejecutar este paso automáticamente" + +#: src/Module/Admin/Features.php:76 +#, php-format +msgid "Lock feature %s" +msgstr "Bloquear opción %s " + +#: src/Module/Admin/Features.php:84 +msgid "Manage Additional Features" +msgstr "Administrar opciones adicionales" + +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 +msgid "Other" +msgstr "Otro" + +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 +msgid "unknown" +msgstr "desconocido" + +#: src/Module/Admin/Federation.php:187 +#, php-format +msgid "%2$s total system" +msgid_plural "%2$s total systems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Admin/Federation.php:188 +#, php-format +msgid "%2$s active user last month" +msgid_plural "%2$s active users last month" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Admin/Federation.php:189 +#, php-format +msgid "%2$s active user last six months" +msgid_plural "%2$s active users last six months" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Admin/Federation.php:190 +#, php-format +msgid "%2$s registered user" +msgid_plural "%2$s registered users" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Admin/Federation.php:191 +#, php-format +msgid "%2$s locally created post or comment" +msgid_plural "%2$s locally created posts and comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Admin/Federation.php:194 +#, php-format +msgid "%2$s post per user" +msgid_plural "%2$s posts per user" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Admin/Federation.php:199 +#, php-format +msgid "%2$s user per system" +msgid_plural "%2$s users per system" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Admin/Federation.php:209 +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 "Esta pagina ofrece algunos datos sobre la red conocida a la que tu nodo friendica esta conectado. Estos nummeros no son completos respecto a las redes federadas, si no refleja los nodos esta instancia conoce." + +#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87 +msgid "Federation Statistics" +msgstr "Estadísticas de federación" + +#: src/Module/Admin/Federation.php:219 +#, php-format +msgid "" +"Currently this node is aware of %2$s node (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgid_plural "" +"Currently this node is aware of %2$s nodes (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Admin/Logs/Settings.php:47 +#, php-format +msgid "The logfile '%s' is not writable. No logging possible" +msgstr "El archivo de Log '%s' no es escriturable. No puede registrar Log." + +#: src/Module/Admin/Logs/Settings.php:77 +msgid "PHP log currently enabled." +msgstr "Registro PHP actualmente disponible." + +#: src/Module/Admin/Logs/Settings.php:79 +msgid "PHP log currently disabled." +msgstr "Registro PHP actualmente deshabilitado." + +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 +msgid "Logs" +msgstr "Registros" + +#: src/Module/Admin/Logs/Settings.php:88 +msgid "Clear" +msgstr "Limpiar" + +#: src/Module/Admin/Logs/Settings.php:91 +msgid "Enable Debugging" +msgstr "Habilitar debugging" + +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:92 +msgid "Log file" +msgstr "Archivo de registro" + +#: src/Module/Admin/Logs/Settings.php:92 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Debes tener permiso de escritura en el servidor. Relacionado con tu directorio de inicio de Friendica." + +#: src/Module/Admin/Logs/Settings.php:93 +msgid "Log level" +msgstr "Nivel de registro" + +#: src/Module/Admin/Logs/Settings.php:95 +msgid "PHP logging" +msgstr "PHP logging" + +#: src/Module/Admin/Logs/Settings.php:96 +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 "Para habilitar temporalmente el registro de errores y advertencias de PHP, puede anteponer lo siguiente al archivo index.php de su instalación. El nombre de archivo establecido en la línea 'error_log' es relativo al directorio de nivel superior de Friendica y debe poder escribirse por el servidor. La opción '1' para 'log_errors' y 'display_errors' es para habilitar estas opciones, establezca en '0' para deshabilitarlas." + +#: src/Module/Admin/Logs/View.php:70 +#, php-format +msgid "" +"Error trying to open %1$s log file.
    Check to see if " +"file %1$s exist and is readable." +msgstr "" + +#: src/Module/Admin/Logs/View.php:79 +#, php-format +msgid "" +"Couldn't open %1$s log file.
    Check to see if file %1$s " +"is readable." +msgstr "" + +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 +msgid "View Logs" +msgstr "Ver registro de depuración" + +#: src/Module/Admin/Logs/View.php:87 +msgid "Search in logs" +msgstr "" + +#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Notifications/Notifications.php:140 msgid "Show all" msgstr "Mostrar todo" -#: src/Module/Notifications/Notification.php:103 -msgid "You must be logged in to show this page." -msgstr "Debes ingresar para ver esa pagina." +#: src/Module/Admin/Logs/View.php:89 +msgid "Date" +msgstr "" -#: src/Module/PermissionTooltip.php:25 +#: src/Module/Admin/Logs/View.php:90 +msgid "Level" +msgstr "" + +#: src/Module/Admin/Logs/View.php:91 +msgid "Context" +msgstr "" + +#: src/Module/Admin/Logs/View.php:93 +msgid "ALL" +msgstr "" + +#: src/Module/Admin/Logs/View.php:94 +msgid "View details" +msgstr "" + +#: src/Module/Admin/Logs/View.php:95 +msgid "Click to view details" +msgstr "" + +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Detalles del evento" + +#: src/Module/Admin/Logs/View.php:97 +msgid "Data" +msgstr "" + +#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Debug/ActivityPubConversion.php:57 +msgid "Source" +msgstr "Fuente" + +#: src/Module/Admin/Logs/View.php:99 +msgid "File" +msgstr "" + +#: src/Module/Admin/Logs/View.php:100 +msgid "Line" +msgstr "" + +#: src/Module/Admin/Logs/View.php:101 +msgid "Function" +msgstr "" + +#: src/Module/Admin/Logs/View.php:102 +msgid "UID" +msgstr "" + +#: src/Module/Admin/Logs/View.php:103 +msgid "Process ID" +msgstr "" + +#: src/Module/Admin/Logs/View.php:104 +msgid "Close" +msgstr "" + +#: src/Module/Admin/Queue.php:50 +msgid "Inspect Deferred Worker Queue" +msgstr "Inspeccionar Cola diferida de Workers" + +#: 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 "Esta página enumera los jobs de los Workers diferidos. Estos son jobs que no se pudieron ejecutar la primera vez." + +#: src/Module/Admin/Queue.php:54 +msgid "Inspect Worker Queue" +msgstr "Inspeccionar Cola de Workers" + +#: 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 "Esta página enumera los jobs de workers actualmente en cola. Estos Jobs son manejados por el cronjob de trabajador que configuró durante la instalación." + +#: src/Module/Admin/Queue.php:75 +msgid "ID" +msgstr "ID" + +#: src/Module/Admin/Queue.php:76 +msgid "Command" +msgstr "" + +#: src/Module/Admin/Queue.php:77 +msgid "Job Parameters" +msgstr "Parámetros del Job" + +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "Creado" + +#: src/Module/Admin/Queue.php:79 +msgid "Priority" +msgstr "Prioridad" + +#: src/Module/Admin/Site.php:212 #, php-format -msgid "Wrong type \"%s\", expected one of: %s" -msgstr "Tipo erróneo \"%s\", se esperaba uno: %s" +msgid "%s is no valid input for maximum image size" +msgstr "" -#: src/Module/PermissionTooltip.php:38 -msgid "Model not found" -msgstr "Modelo no encontrado" +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:178 +msgid "No special theme for mobile devices" +msgstr "No hay tema especial para dispositivos móviles" -#: src/Module/PermissionTooltip.php:60 -msgid "Remote privacy information not available." -msgstr "Privacidad de la información remota no disponible." +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Experimental)" -#: src/Module/PermissionTooltip.php:71 -msgid "Visible to:" -msgstr "Visible para:" +#: src/Module/Admin/Site.php:342 +msgid "No community page" +msgstr "No hay pagina de comunidad" -#: src/Module/Manifest.php:42 -msgid "A Decentralized Social Network" -msgstr "Una Red Social Descentralizada" +#: src/Module/Admin/Site.php:343 +msgid "No community page for visitors" +msgstr "" -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 mod/api.php:112 +#: src/Module/Admin/Site.php:344 +msgid "Public postings from users of this site" +msgstr "Temas públicos de perfiles de este sitio." + +#: src/Module/Admin/Site.php:345 +msgid "Public postings from the federated network" +msgstr "Artículos públicos de Redes Federadas" + +#: src/Module/Admin/Site.php:346 +msgid "Public postings from local users and the federated network" +msgstr "Artículos públicos de Usuarios Locales y Redes Federadas" + +#: src/Module/Admin/Site.php:352 +msgid "Multi user instance" +msgstr "Sesión multi usuario" + +#: src/Module/Admin/Site.php:375 +msgid "Closed" +msgstr "Cerrado" + +#: src/Module/Admin/Site.php:376 +msgid "Requires approval" +msgstr "Requiere aprobación" + +#: src/Module/Admin/Site.php:377 +msgid "Open" +msgstr "Abierto" + +#: src/Module/Admin/Site.php:381 +msgid "Don't check" +msgstr "No verificar" + +#: src/Module/Admin/Site.php:382 +msgid "check the stable version" +msgstr "verifique la versión estable" + +#: src/Module/Admin/Site.php:383 +msgid "check the development version" +msgstr "verifica la versión de desarrollo" + +#: src/Module/Admin/Site.php:387 +msgid "none" +msgstr "ninguno" + +#: src/Module/Admin/Site.php:388 +msgid "Local contacts" +msgstr "Contactos Locales" + +#: src/Module/Admin/Site.php:389 +msgid "Interactors" +msgstr "Interactores" + +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 +msgid "Site" +msgstr "Sitio" + +#: src/Module/Admin/Site.php:400 +msgid "General Information" +msgstr "Información General" + +#: src/Module/Admin/Site.php:402 +msgid "Republish users to directory" +msgstr "Republicar usuarios al Directorio" + +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 +msgid "Registration" +msgstr "Registro" + +#: src/Module/Admin/Site.php:404 +msgid "File upload" +msgstr "Subida de archivo" + +#: src/Module/Admin/Site.php:405 +msgid "Policies" +msgstr "Políticas" + +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "Avanzado" + +#: src/Module/Admin/Site.php:407 +msgid "Auto Discovered Contact Directory" +msgstr "Directorio de contactos descubierto automáticamente" + +#: src/Module/Admin/Site.php:408 +msgid "Performance" +msgstr "Rendimiento" + +#: src/Module/Admin/Site.php:409 +msgid "Worker" +msgstr "Worker" + +#: src/Module/Admin/Site.php:410 +msgid "Message Relay" +msgstr "Retransmisión de Mensajes" + +#: src/Module/Admin/Site.php:411 +msgid "" +"Use the command \"console relay\" in the command line to add or remove " +"relays." +msgstr "" + +#: src/Module/Admin/Site.php:412 +msgid "The system is not subscribed to any relays at the moment." +msgstr "" + +#: src/Module/Admin/Site.php:413 +msgid "The system is currently subscribed to the following relays:" +msgstr "" + +#: src/Module/Admin/Site.php:415 +msgid "Relocate Node" +msgstr "" + +#: src/Module/Admin/Site.php:416 +msgid "" +"Relocating your node enables you to change the DNS domain of this node and " +"keep all the existing users and posts. This process takes a while and can " +"only be started from the relocate console command like this:" +msgstr "" + +#: src/Module/Admin/Site.php:417 +msgid "(Friendica directory)# bin/console relocate https://newdomain.com" +msgstr "" + +#: src/Module/Admin/Site.php:420 +msgid "Site name" +msgstr "Nombre del sitio" + +#: src/Module/Admin/Site.php:421 +msgid "Sender Email" +msgstr "Correo que Envía" + +#: src/Module/Admin/Site.php:421 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "La dirección de correo electrónico que el servidor debería usar como dirección de envío." + +#: src/Module/Admin/Site.php:422 +msgid "Name of the system actor" +msgstr "Nombre del actor del Sistema" + +#: src/Module/Admin/Site.php:422 +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 "Nombre de la cuenta del sistema interno que se utiliza para realizar solicitudes de ActivityPub. Debe ser un nombre de usuario no utilizado. Si se establece, esto no se puede volver a cambiar." + +#: src/Module/Admin/Site.php:423 +msgid "Banner/Logo" +msgstr "Imagen/Logotipo" + +#: src/Module/Admin/Site.php:424 +msgid "Email Banner/Logo" +msgstr "Logo del Correo" + +#: src/Module/Admin/Site.php:425 +msgid "Shortcut icon" +msgstr "Icono del Enlace" + +#: src/Module/Admin/Site.php:425 +msgid "Link to an icon that will be used for browsers." +msgstr "Enlace hacia un icono que sera usado para el navegador." + +#: src/Module/Admin/Site.php:426 +msgid "Touch icon" +msgstr "Icono Tocar" + +#: src/Module/Admin/Site.php:426 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Enlace a un icono que sera usado para tablets y moviles." + +#: src/Module/Admin/Site.php:427 +msgid "Additional Info" +msgstr "Información Adicional" + +#: src/Module/Admin/Site.php:427 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/servers." +msgstr "Servidores Públicos: Puedes añadir información adicional aqui que será listada por los servidores %s/servers." + +#: src/Module/Admin/Site.php:428 +msgid "System language" +msgstr "Lenguaje del Sistema" + +#: src/Module/Admin/Site.php:429 +msgid "System theme" +msgstr "Tema del Sistema" + +#: src/Module/Admin/Site.php:429 +#, php-format +msgid "" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "" + +#: src/Module/Admin/Site.php:430 +msgid "Mobile system theme" +msgstr "Tema de sistema móvil" + +#: src/Module/Admin/Site.php:430 +msgid "Theme for mobile devices" +msgstr "Tema para dispositivos móviles" + +#: src/Module/Admin/Site.php:431 +msgid "Force SSL" +msgstr "Forzar SSL" + +#: src/Module/Admin/Site.php:431 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Forzar todos las consultas No-SSL a SSL. - ATENCIÓN: en algunos sistemas esto puede generar comportamiento recursivo interminable." + +#: src/Module/Admin/Site.php:432 +msgid "Show help entry from navigation menu" +msgstr "" + +#: src/Module/Admin/Site.php:432 +msgid "" +"Displays the menu entry for the Help pages from the navigation menu. It is " +"always accessible by calling /help directly." +msgstr "" + +#: src/Module/Admin/Site.php:433 +msgid "Single user instance" +msgstr "Sesión de usuario único" + +#: src/Module/Admin/Site.php:433 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Haz esta sesión multi-usuario o usuario único para el usuario" + +#: src/Module/Admin/Site.php:435 +msgid "Maximum image size" +msgstr "Tamaño máximo de la imagen" + +#: src/Module/Admin/Site.php:435 +#, php-format +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "" + +#: src/Module/Admin/Site.php:439 +msgid "Maximum image length" +msgstr "Largo máximo de imagen" + +#: src/Module/Admin/Site.php:439 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Longitud máxima en píxeles del lado más largo de las imágenes subidas. Por defecto es -1, que significa que no hay límites." + +#: src/Module/Admin/Site.php:440 +msgid "JPEG image quality" +msgstr "Calidad de imagen JPEG" + +#: src/Module/Admin/Site.php:440 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Los archivos JPEG subidos se guardarán con este ajuste de calidad [0-100]. Por defecto es 100, que es calidad máxima." + +#: src/Module/Admin/Site.php:442 +msgid "Register policy" +msgstr "Política de registros" + +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "" + +#: src/Module/Admin/Site.php:444 +msgid "Maximum Daily Registrations" +msgstr "Registros Máximos Diarios" + +#: src/Module/Admin/Site.php:444 +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 "Si anteriormente se ha permitido el registro, esto establece el número máximo de registro de nuevos usuarios aceptados por día. Si el registro se establece como cerrado, esta opción no tiene efecto." + +#: src/Module/Admin/Site.php:445 +msgid "Register text" +msgstr "Términos" + +#: src/Module/Admin/Site.php:445 +msgid "" +"Will be displayed prominently on the registration page. You can use BBCode " +"here." +msgstr "Se mostrará de forma destacada en la página de registro. Puede utilizar BBCode aquí." + +#: src/Module/Admin/Site.php:446 +msgid "Forbidden Nicknames" +msgstr "Apodos Prohibidos" + +#: src/Module/Admin/Site.php:446 +msgid "" +"Comma separated list of nicknames that are forbidden from registration. " +"Preset is a list of role names according RFC 2142." +msgstr "Lista separada por comas de apodos cuyo registro está prohibido. Lo Preestablecido es una lista de nombres de roles según RFC 2142." + +#: src/Module/Admin/Site.php:447 +msgid "Accounts abandoned after x days" +msgstr "Cuentas abandonadas después de x días" + +#: src/Module/Admin/Site.php:447 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "No gastará recursos del sistema creando sondeos a sitios externos para cuentas abandonadas. Introduce 0 para ningún límite temporal." + +#: src/Module/Admin/Site.php:448 +msgid "Allowed friend domains" +msgstr "Dominios amigos permitidos" + +#: src/Module/Admin/Site.php:448 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Lista separada por comas de los dominios que están autorizados para establecer conexiones con este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio" + +#: src/Module/Admin/Site.php:449 +msgid "Allowed email domains" +msgstr "Dominios de correo permitidos" + +#: src/Module/Admin/Site.php:449 +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 "Lista separada por comas de los dominios que están autorizados en las direcciones de correo para registrarse en este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio" + +#: src/Module/Admin/Site.php:450 +msgid "No OEmbed rich content" +msgstr "No hay contenido enriquecido OEmbed" + +#: src/Module/Admin/Site.php:450 +msgid "" +"Don't show the rich content (e.g. embedded PDF), except from the domains " +"listed below." +msgstr "No muestre el contenido enriquecido (por ejemplo, PDF incrustado), excepto de los dominios que se enumeran a continuación." + +#: src/Module/Admin/Site.php:451 +msgid "Trusted third-party domains" +msgstr "Dominios terceros de confianza" + +#: src/Module/Admin/Site.php:451 +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 "Lista separada por comas de dominios de los que se permite incrustar contenido en publicaciones como con OEmbed. También se permiten todos los subdominios de los dominios enumerados." + +#: src/Module/Admin/Site.php:452 +msgid "Block public" +msgstr "Bloqueo público" + +#: src/Module/Admin/Site.php:452 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Marca para bloquear el acceso público a todas las páginas personales, aún siendo públicas, hasta que no hayas iniciado tu sesión." + +#: src/Module/Admin/Site.php:453 +msgid "Force publish" +msgstr "Forzar publicación" + +#: src/Module/Admin/Site.php:453 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Marca para forzar que todos los perfiles de este sitio sean listados en el directorio del sitio." + +#: src/Module/Admin/Site.php:453 +msgid "Enabling this may violate privacy laws like the GDPR" +msgstr "Habilitar esto puede violar leyes de privacidad como GDPR" + +#: src/Module/Admin/Site.php:454 +msgid "Global directory URL" +msgstr "URL del directorio global." + +#: src/Module/Admin/Site.php:454 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "URL del directorio global. Si se deja este campo vacío, el directorio global sera completamente inaccesible para la instancia." + +#: src/Module/Admin/Site.php:455 +msgid "Private posts by default for new users" +msgstr "Publicaciones privadas por defecto para usuarios nuevos" + +#: src/Module/Admin/Site.php:455 +msgid "" +"Set default post permissions for all new members to the default privacy " +"circle rather than public." +msgstr "" + +#: src/Module/Admin/Site.php:456 +msgid "Don't include post content in email notifications" +msgstr "No incluir el contenido del post en las notificaciones de correo electrónico" + +#: src/Module/Admin/Site.php:456 +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 "No incluye el contenido de un mensaje/comentario/mensaje privado/etc. en las notificaciones de correo electrónico que se envían desde este sitio, como una medida de privacidad." + +#: src/Module/Admin/Site.php:457 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Deshabilitar acceso a addons listados en el menú de aplicaciones." + +#: src/Module/Admin/Site.php:457 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Habilitando esta opción restringe el acceso a addons en el menú de aplicaciones a usuarios identificados." + +#: src/Module/Admin/Site.php:458 +msgid "Don't embed private images in posts" +msgstr "No agregar imágenes privados en las publicaciones" + +#: src/Module/Admin/Site.php:458 +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 "No reemplazar imágenes privadas guardadas localmente en el servidor con imágenes integrados en los envíos. Esto significa que contactos que reciben publicaciones tendrán que autenticarse y cargar cada imagen, lo que puede demorar." + +#: src/Module/Admin/Site.php:459 +msgid "Explicit Content" +msgstr "Contenido Explicito" + +#: src/Module/Admin/Site.php:459 +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 "Configure esto para anunciar si su nodo se usa principalmente para contenido explícito que podría no ser adecuado para menores. Esta información se publicaría en la información del nodo y podría ser utilizada, por ejemplo, por el Directorio Global, para filtrar su nodo de las listas de nodos. Para unirse. Además, se mostrará una nota sobre esto en la página de registro del usuario." + +#: src/Module/Admin/Site.php:460 +msgid "Proxify external content" +msgstr "" + +#: src/Module/Admin/Site.php:460 +msgid "" +"Route external content via the proxy functionality. This is used for example" +" for some OEmbed accesses and in some other rare cases." +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "Cache contact avatars" +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "" +"Locally store the avatar pictures of the contacts. This uses a lot of " +"storage space but it increases the performance." +msgstr "" + +#: src/Module/Admin/Site.php:462 +msgid "Allow Users to set remote_self" +msgstr "Permitir a los usuarios de definir remote_self (yo-remoto)" + +#: src/Module/Admin/Site.php:462 +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 "Al habilitar esta opción, cada perfil tiene el permiso de marcar cualquiera de sus contactos como un perfil_remoto. Habilitar la opción perfil_remoto para un contacto genera que todas las publicaciones de este contacto seran re-publicado en el muro del perfil." + +#: src/Module/Admin/Site.php:463 +msgid "Enable multiple registrations" +msgstr "" + +#: src/Module/Admin/Site.php:463 +msgid "Enable users to register additional accounts for use as pages." +msgstr "" + +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID" +msgstr "" + +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID support for registration and logins." +msgstr "" + +#: src/Module/Admin/Site.php:465 +msgid "Enable Fullname check" +msgstr "" + +#: src/Module/Admin/Site.php:465 +msgid "" +"Enable check to only allow users to register with a space between the first " +"name and the last name in their full name." +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "" + +#: src/Module/Admin/Site.php:467 +msgid "Community pages for visitors" +msgstr "Paginas de Comunidad para Visitantes" + +#: src/Module/Admin/Site.php:467 +msgid "" +"Which community pages should be available for visitors. Local users always " +"see both pages." +msgstr "Que comunidades deben estar disponibles para visitantes. Usuarios locales siempre ven ambas páginas." + +#: src/Module/Admin/Site.php:468 +msgid "Posts per user on community page" +msgstr "Publicaciones por usuario en la pagina de comunidad" + +#: src/Module/Admin/Site.php:468 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"\"Global Community\")" +msgstr "Número máximo de artículos por usuario de página Fediverso. (No válido para \"Fediverso Global\")" + +#: src/Module/Admin/Site.php:470 +msgid "Enable Mail support" +msgstr "" + +#: src/Module/Admin/Site.php:470 +msgid "" +"Enable built-in mail support to poll IMAP folders and to reply via mail." +msgstr "" + +#: src/Module/Admin/Site.php:471 +msgid "" +"Mail support can't be enabled because the PHP IMAP module is not installed." +msgstr "" + +#: src/Module/Admin/Site.php:472 +msgid "Enable OStatus support" +msgstr "" + +#: src/Module/Admin/Site.php:472 +msgid "" +"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public." +msgstr "" + +#: src/Module/Admin/Site.php:474 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "El soporte para Diaspora* no se puede habilitar porque friendica se instalo en un directorio subalterno (sub directory)." + +#: src/Module/Admin/Site.php:475 +msgid "Enable Diaspora support" +msgstr "Habilitar el soporte para Diaspora*" + +#: src/Module/Admin/Site.php:475 +msgid "" +"Enable built-in Diaspora network compatibility for communicating with " +"diaspora servers." +msgstr "" + +#: src/Module/Admin/Site.php:476 +msgid "Verify SSL" +msgstr "Verificar SSL" + +#: src/Module/Admin/Site.php:476 +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 "Si quieres puedes activar la comprobación estricta de certificados. Esto significa que serás incapaz de conectar con ningún sitio que use certificados SSL autofirmados." + +#: src/Module/Admin/Site.php:477 +msgid "Proxy user" +msgstr "Usuario proxy" + +#: src/Module/Admin/Site.php:477 +msgid "User name for the proxy server." +msgstr "" + +#: src/Module/Admin/Site.php:478 +msgid "Proxy URL" +msgstr "Dirección proxy" + +#: src/Module/Admin/Site.php:478 +msgid "" +"If you want to use a proxy server that Friendica should use to connect to " +"the network, put the URL of the proxy here." +msgstr "" + +#: src/Module/Admin/Site.php:479 +msgid "Network timeout" +msgstr "Tiempo de espera de red" + +#: src/Module/Admin/Site.php:479 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valor en segundos. Usar 0 para dejarlo sin límites (no se recomienda)." + +#: src/Module/Admin/Site.php:480 +msgid "Maximum Load Average" +msgstr "Promedio de carga máxima" + +#: src/Module/Admin/Site.php:480 +#, php-format +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default %d." +msgstr "Carga máxima del sistema antes de entrega y envío son retrasados - default %d." + +#: src/Module/Admin/Site.php:481 +msgid "Minimal Memory" +msgstr "Memoria Mínima" + +#: src/Module/Admin/Site.php:481 +msgid "" +"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "Memoria mínima en MB del worker. Necesita acceso a /proc/meminfo - default 0 (desactivado)." + +#: src/Module/Admin/Site.php:482 +msgid "Periodically optimize tables" +msgstr "Periodicamente optimizar tablas" + +#: src/Module/Admin/Site.php:482 +msgid "Periodically optimize tables like the cache and the workerqueue" +msgstr "Periódicamente optimizar tablas como Cache y cola de worker" + +#: src/Module/Admin/Site.php:484 +msgid "Discover followers/followings from contacts" +msgstr "Descubrir seguidores/seguimientos de contactos" + +#: src/Module/Admin/Site.php:484 +msgid "" +"If enabled, contacts are checked for their followers and following contacts." +msgstr "Si lo habilita, se checan contactos por sus seguidores y sus contactos." + +#: src/Module/Admin/Site.php:485 +msgid "None - deactivated" +msgstr "Ninguno - desactivado" + +#: src/Module/Admin/Site.php:486 +msgid "" +"Local contacts - contacts of our local contacts are discovered for their " +"followers/followings." +msgstr "Contactos locales - contactos de nuestros contactos locales buscados por seguidores/seguimientos." + +#: src/Module/Admin/Site.php:487 +msgid "" +"Interactors - contacts of our local contacts and contacts who interacted on " +"locally visible postings are discovered for their followers/followings." +msgstr "Interactores - contactos de contactos locales y contactos que interactuan en artículos locales son buscados por sus seguidores/seguimientos." + +#: src/Module/Admin/Site.php:489 +msgid "Synchronize the contacts with the directory server" +msgstr "Sincronizar los contactos con el servidor de directorio" + +#: src/Module/Admin/Site.php:489 +msgid "" +"if enabled, the system will check periodically for new contacts on the " +"defined directory server." +msgstr "Si habilta, el sistema checará periodicamente por nuevos contactos en el servidor de directorio definido." + +#: src/Module/Admin/Site.php:491 +msgid "Days between requery" +msgstr "Días entre búsquedas" + +#: src/Module/Admin/Site.php:491 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "Cantidad de días hasta que un servidor es consultado por sus contactos." + +#: src/Module/Admin/Site.php:492 +msgid "Discover contacts from other servers" +msgstr "Descubrir contactos de otros servidores" + +#: src/Module/Admin/Site.php:492 +msgid "" +"Periodically query other servers for contacts. The system queries Friendica," +" Mastodon and Hubzilla servers." +msgstr "Periodicamente buscar contactos en servidores. Buscar en Friendica, Mastodon y Hubzilla." + +#: src/Module/Admin/Site.php:493 +msgid "Search the local directory" +msgstr "Buscar el directorio local" + +#: src/Module/Admin/Site.php:493 +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 "Buscar en el directorio local en vez del directorio global. Cuando se busca localmente, cada búsqueda sera efectuada en el directorio global en el background. Esto mejora los resultados de la búsqueda cuando la misma es repetida." + +#: src/Module/Admin/Site.php:495 +msgid "Publish server information" +msgstr "Publicar información del servidor" + +#: src/Module/Admin/Site.php:495 +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 "Si se habilita, se publicarán datos de uso y servidor. Contiene nombre y versión del servidor, usuarios con perfiles públicos, no. de artículos, protocolos activos y conectores. Ver the-federation.info para mas detalles." + +#: src/Module/Admin/Site.php:497 +msgid "Check upstream version" +msgstr "Verifique la versión ascendente" + +#: src/Module/Admin/Site.php:497 +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 "Permite verificar nuevas versiones de Friendica en Github. Si hay una nueva versión, se le informará en el panel de administración." + +#: src/Module/Admin/Site.php:498 +msgid "Suppress Tags" +msgstr "Suprimir etiquetas" + +#: src/Module/Admin/Site.php:498 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Suprimir la lista de tags al final de una publicación." + +#: src/Module/Admin/Site.php:499 +msgid "Clean database" +msgstr "Limpiar Base de Datos" + +#: src/Module/Admin/Site.php:499 +msgid "" +"Remove old remote items, orphaned database records and old content from some" +" other helper tables." +msgstr "Borrar artículos viejos remotos, registros de BD huerfanos y algunos viejos de tablas auxiliares." + +#: src/Module/Admin/Site.php:500 +msgid "Lifespan of remote items" +msgstr "Tiempo de vida de artículos remotos" + +#: src/Module/Admin/Site.php:500 +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 "Cuando habilita limpieza de BD, define los días en que artículos remotos serán borrados. Propios, marcados o archivados son siempre conservados. 0 deshabilita este comportamiento." + +#: src/Module/Admin/Site.php:501 +msgid "Lifespan of unclaimed items" +msgstr "Tiempo de vida de artículos no reclamados" + +#: src/Module/Admin/Site.php:501 +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 "Cuando se habilita limpieza de BD, esto define los dias en que los articulos ignorados remotos (mas que nada contenido del Relay) serán borrados. Valor Default es 90 días. Es default del tiempo de vida general de artículos remotos se setea en 0." + +#: src/Module/Admin/Site.php:502 +msgid "Lifespan of raw conversation data" +msgstr "Tiempo de vida de datos de conversación " + +#: src/Module/Admin/Site.php:502 +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 "Los datos de conversación son usados por ActivityPub y OStatus, también por propósito de Debugg. Debe ser seguro borrarlos después de 14 dias, default es 90 días." + +#: src/Module/Admin/Site.php:503 +msgid "Maximum numbers of comments per post" +msgstr "Numero máximo de respuestas por tema" + +#: src/Module/Admin/Site.php:503 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100." + +#: src/Module/Admin/Site.php:504 +msgid "Maximum numbers of comments per post on the display page" +msgstr "Maximo numero de comentarios por artículo de página de despliegue" + +#: src/Module/Admin/Site.php:504 +msgid "" +"How many comments should be shown on the single view for each post? Default " +"value is 1000." +msgstr "Cuantos comentarios deben ser mostrados en una sola vista por cada uno? Valor default es 1000." + +#: src/Module/Admin/Site.php:505 +msgid "Temp path" +msgstr "Ruta a los temporales" + +#: src/Module/Admin/Site.php:505 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Si tiene un sistema restringido en donde el servidor web no puede acceder la dirección del sistema temp, ingrese una dirección alternativa aquí. " + +#: src/Module/Admin/Site.php:506 +msgid "Only search in tags" +msgstr "Solo buscar en tags" + +#: src/Module/Admin/Site.php:506 +msgid "On large systems the text search can slow down the system extremely." +msgstr "En sistemas grandes, la búsqueda de texto puede enlentecer el sistema gravemente." + +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "" + +#: src/Module/Admin/Site.php:507 +msgid "" +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "" + +#: src/Module/Admin/Site.php:509 +msgid "Maximum number of parallel workers" +msgstr "Numero máximo de trabajos paralelos de fondo." + +#: src/Module/Admin/Site.php:509 +#, php-format +msgid "" +"On shared hosters set this to %d. On larger systems, values of %d are great." +" Default value is %d." +msgstr "En hosts compartidos ponga a %d. En sistemas grandes, valores de %d estan bien. Valor Default es %d." + +#: src/Module/Admin/Site.php:510 +msgid "Enable fastlane" +msgstr "Habilitar ascenso rápido" + +#: src/Module/Admin/Site.php:510 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "Cuando está habilitado, el mecanismo ascenso rápido inicia un trabajador adicional si los procesos de mayor prioridad son bloqueados por prcesos de menor prioridad." + +#: src/Module/Admin/Site.php:512 +msgid "Direct relay transfer" +msgstr "Transferencia directa del Reenvío" + +#: src/Module/Admin/Site.php:512 +msgid "" +"Enables the direct transfer to other servers without using the relay servers" +msgstr "Habilita transferencia directa a otros servidores sin usar servidores de reenvío" + +#: src/Module/Admin/Site.php:513 +msgid "Relay scope" +msgstr "Enfoque del Reenvío" + +#: src/Module/Admin/Site.php:513 +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 "Puede ser \"all\" o \"tags\". \"all\" significa que cada artículo público será recibido. \"tags\" sólo artículos de esas etiquetas deben ser recibidos." + +#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Disabled" +msgstr "Deshabilitado" + +#: src/Module/Admin/Site.php:513 +msgid "all" +msgstr "todas" + +#: src/Module/Admin/Site.php:513 +msgid "tags" +msgstr "etiquetas" + +#: src/Module/Admin/Site.php:514 +msgid "Server tags" +msgstr "Etiquetas del Servidor" + +#: src/Module/Admin/Site.php:514 +msgid "Comma separated list of tags for the \"tags\" subscription." +msgstr "Lista separada por comas de etiquetas de suscripción \"tags\"." + +#: src/Module/Admin/Site.php:515 +msgid "Deny Server tags" +msgstr "Denegar etiquetas de Servidor" + +#: src/Module/Admin/Site.php:515 +msgid "Comma separated list of tags that are rejected." +msgstr "Lista separada por comas de etiquetas denegadas." + +#: src/Module/Admin/Site.php:516 +msgid "Allow user tags" +msgstr "Permitir etiquetas de Usuario" + +#: src/Module/Admin/Site.php:516 +msgid "" +"If enabled, the tags from the saved searches will used for the \"tags\" " +"subscription in addition to the \"relay_server_tags\"." +msgstr "Si se habilita, etiquetas de las búsquedas grabadas serán usadas para suscripción de \"tags\" además de \"relay_server_tags\"." + +#: src/Module/Admin/Site.php:519 +msgid "Start Relocation" +msgstr "Iniciar Relocación" + +#: src/Module/Admin/Storage.php:46 +#, php-format +msgid "Storage backend, %s is invalid." +msgstr "" + +#: src/Module/Admin/Storage.php:73 +#, php-format +msgid "Storage backend %s error: %s" +msgstr "" + +#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +msgid "Invalid storage backend setting value." +msgstr "Valor de configuración de backend de almacenamiento no válido." + +#: src/Module/Admin/Storage.php:139 +msgid "Current Storage Backend" +msgstr "" + +#: src/Module/Admin/Storage.php:140 +msgid "Storage Configuration" +msgstr "" + +#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +msgid "Storage" +msgstr "" + +#: src/Module/Admin/Storage.php:143 +msgid "Save & Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:144 +msgid "Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:145 +msgid "Save & Reload" +msgstr "" + +#: src/Module/Admin/Storage.php:146 +msgid "This backend doesn't have custom settings" +msgstr "" + +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "" + +#: src/Module/Admin/Storage.php:150 +msgid "Database (legacy)" +msgstr "Base de Datos (legada)" + +#: src/Module/Admin/Summary.php:55 +#, php-format +msgid "Template engine (%s) error: %s" +msgstr "Error (%s) en Motor de plantilla: %s" + +#: src/Module/Admin/Summary.php:59 +#, 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 "Tu BD corre con tablas MyISAM. Debes cambiar al motor InnoDB. Pues Friendica usará solo InnoDB en el futuro, debes cambiarlo! Ver esto como guía de ayuda para convertir el motor de tablas. Podrías usar también el comando php bin/console.php dbstructure toinnodb de tu instalación Friendica para conversión automática.
    " + +#: src/Module/Admin/Summary.php:64 +#, 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 "Tu BD corre con tablas InnoDB. En formato de archivo Antelope. Debes cambiar al formato de archivos Barracuda. Friendica usa opciones que no provee el formato Antelope. Ver esto como guía de ayuda para convertir el motor de tablas. Podrías usar también el comando php bin/console.php dbstructure toinnodb de tu instalación Friendica para conversión automática.
    " + +#: src/Module/Admin/Summary.php:74 +#, 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 "El 'table_definition_cache' es muy corto (%d). puede acarrear error de BD \"Sentencia preparada debe ser Re-preparada\". Setealo al menos a %d. Ver here para mas información.
    " + +#: src/Module/Admin/Summary.php:85 +#, php-format +msgid "" +"There is a new version of Friendica available for download. Your current " +"version is %1$s, upstream version is %2$s" +msgstr "Hay una nueva versión de Friendica disponible para descargar. Su versión actual es %1$s, la versión ascendente es %2$s" + +#: src/Module/Admin/Summary.php:94 +msgid "" +"The database update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "Actualización de la BD Falló. Ejecute \"php bin/console.php dbstructure update\" desde línea de comandos y revise los errores que puedan haber ocurrido." + +#: src/Module/Admin/Summary.php:98 +msgid "" +"The last update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear. (Some of the errors are possibly inside the logfile.)" +msgstr "La última actualización falló. Ejecute \"php bin/console.php dbstructure update\" desde línea de comandos y revise los errores que puedan haber ocurrido. (Algunos aparecerán en archivo de log.)" + +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "" + +#: src/Module/Admin/Summary.php:107 +msgid "The worker was never executed. Please check your database structure!" +msgstr "El worker nunca fue ejecutado. ¡Revise la estructura de su BD!" + +#: src/Module/Admin/Summary.php:109 +#, php-format +msgid "" +"The last worker execution was on %s UTC. This is older than one hour. Please" +" check your crontab settings." +msgstr "La última ejecución del trabajador fue a las %s UTC. Anterior a una hora. Revise su configuración de crontab." + +#: src/Module/Admin/Summary.php:114 +#, 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 "Configuración Friendica ahora se almacena en config/local.config.php, copie config/local-sample.config.php y mueva su configuración de .htconfig.php. Ver página de ayuda como ayuda en la transición." + +#: src/Module/Admin/Summary.php:118 +#, 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 "Configuración Friendica ahora se almacena en config/local.config.php, copie config/local-sample.config.php y mueva su configuración de config/local.ini.php. Ver página de ayuda como ayuda en la transición." + +#: src/Module/Admin/Summary.php:124 +#, 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 "%s no se alcanza en tu sistema. Es un error grave en la configuración que evita la comunicación de servidor a servidor. Ver la página de instalación como ayuda." + +#: src/Module/Admin/Summary.php:148 +#, php-format +msgid "" +"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" +" system.basepath from your db to avoid differences." +msgstr "La ruta Friendica system.basepath se actualizó de '%s' a '%s'. Quite la system.basepath de tu BD para evitar diferencias." + +#: src/Module/Admin/Summary.php:156 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is wrong and the config file '%s' " +"isn't used." +msgstr "Ruta actual Friendica system.basepath '%s' es errónea y el archivo de configuración '%s' no se usa." + +#: src/Module/Admin/Summary.php:164 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is not equal to the config file " +"'%s'. Please fix your configuration." +msgstr "Ruta actual de Friendica system.basepath '%s' no es igual al archivo config '%s'. Corrija su configuración." + +#: src/Module/Admin/Summary.php:175 +msgid "Message queues" +msgstr "Cola de mensajes" + +#: src/Module/Admin/Summary.php:181 +msgid "Server Settings" +msgstr "Ajustes del Servidor" + +#: src/Module/Admin/Summary.php:199 +msgid "Version" +msgstr "Versión" + +#: src/Module/Admin/Summary.php:203 +msgid "Active addons" +msgstr "Añadidos Activos" + +#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 +#, php-format +msgid "Theme %s disabled." +msgstr "Tema %s desactivado" + +#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 +#, php-format +msgid "Theme %s successfully enabled." +msgstr "Tema %s activado con éxito." + +#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 +#, php-format +msgid "Theme %s failed to install." +msgstr "El Tema %s no se pudo instalar." + +#: src/Module/Admin/Themes/Details.php:83 +msgid "Screenshot" +msgstr "Captura de pantalla" + +#: src/Module/Admin/Themes/Details.php:91 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 +msgid "Themes" +msgstr "Temas" + +#: src/Module/Admin/Themes/Embed.php:80 +msgid "Unknown theme." +msgstr "Tema desconocido." + +#: src/Module/Admin/Themes/Index.php:51 +msgid "Themes reloaded" +msgstr "Temas reacargados" + +#: src/Module/Admin/Themes/Index.php:114 +msgid "Reload active themes" +msgstr "Recargar Temas activos" + +#: src/Module/Admin/Themes/Index.php:118 +#, php-format +msgid "No themes found on the system. They should be placed in %1$s" +msgstr "No hay Temas en el Sistema, Deben situarse en %1$s" + +#: src/Module/Admin/Themes/Index.php:119 +msgid "[Experimental]" +msgstr "[Experimental]" + +#: src/Module/Admin/Themes/Index.php:120 +msgid "[Unsupported]" +msgstr "[No soportado]" + +#: src/Module/Admin/Tos.php:79 +msgid "Display Terms of Service" +msgstr "Mostrar los Términos de Servicio" + +#: src/Module/Admin/Tos.php:79 +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 "Habilitar la página de los Términos de Servicio. Si esto está activo un enlace a los términos será adicionado al formulario de registro y en la página de información general." + +#: src/Module/Admin/Tos.php:80 +msgid "Display Privacy Statement" +msgstr "Mostrar las Directivas de Privacidad" + +#: src/Module/Admin/Tos.php:80 +#, php-format +msgid "" +"Show some informations regarding the needed information to operate the node " +"according e.g. to EU-GDPR." +msgstr "Muestre información en cuanto a información requerida para operar el nodo de acuerdo ej. para EU-GDPR." + +#: src/Module/Admin/Tos.php:81 +msgid "Privacy Statement Preview" +msgstr "Vista previa de Política de Privacidad" + +#: src/Module/Admin/Tos.php:83 +msgid "The Terms of Service" +msgstr "Los Términos de Servicio" + +#: src/Module/Admin/Tos.php:83 +msgid "" +"Enter the Terms of Service for your node here. You can use BBCode. Headers " +"of sections should be [h2] and below." +msgstr "Introduzca los Términos de Servicio para tu nodo aquí. Puedes usar BBCode. Cabeceras de sección deberían ser [2] e inferior." + +#: src/Module/Admin/Tos.php:84 +msgid "The rules" +msgstr "" + +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." +msgstr "" + +#: src/Module/Api/ApiResponse.php:279 +#, php-format +msgid "API endpoint %s %s is not implemented but might be in the future." +msgstr "" + +#: src/Module/Api/Mastodon/Apps.php:73 +msgid "Missing parameters" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:51 +msgid "Only starting posts can be bookmarked" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +msgid "Only starting posts can be muted" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Reblog.php:56 +#, php-format +msgid "Posts from %s can't be shared" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +msgid "Only starting posts can be unbookmarked" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +msgid "Only starting posts can be unmuted" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:62 +#, php-format +msgid "Posts from %s can't be unshared" +msgstr "" + +#: src/Module/Api/Twitter/ContactEndpoint.php:66 +msgid "Contact not found" +msgstr "Contacto no Encontrado" + +#: src/Module/Apps.php:62 +msgid "No installed applications." +msgstr "Sin aplicaciones instaladas" + +#: src/Module/Apps.php:67 +msgid "Applications" +msgstr "Aplicaciones" + +#: src/Module/Attach.php:49 src/Module/Attach.php:61 +msgid "Item was not found." +msgstr "Elemento no encontrado." + +#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 msgid "Please login to continue." msgstr "Inicia sesión para continuar." @@ -1705,50 +5636,18 @@ msgid "" " as the main account." msgstr "La cuenta subadministrada no puede acceder a las páginas de administración. Vuelva a iniciar sesión como cuenta principal." -#: src/Module/BaseAdmin.php:85 src/Content/Nav.php:253 -msgid "Information" -msgstr "Información" - -#: src/Module/BaseAdmin.php:86 +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 msgid "Overview" msgstr "Resumen" -#: src/Module/BaseAdmin.php:87 src/Module/Admin/Federation.php:142 -msgid "Federation Statistics" -msgstr "Estadísticas de federación" - -#: src/Module/BaseAdmin.php:89 +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 msgid "Configuration" msgstr "Configuración" -#: src/Module/BaseAdmin.php:90 src/Module/Admin/Site.php:580 -msgid "Site" -msgstr "Sitio" - -#: src/Module/BaseAdmin.php:91 src/Module/Admin/Users/Index.php:150 -#: src/Module/Admin/Users/Index.php:160 -msgid "Users" -msgstr "Usuarios" - -#: 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 "Añadidos" - -#: src/Module/BaseAdmin.php:93 src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 -msgid "Themes" -msgstr "Temas" - -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:65 +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 msgid "Additional features" msgstr "Características adicionales" -#: 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 "Términos de Servicio" - #: src/Module/BaseAdmin.php:97 msgid "Database" msgstr "Base de Datos" @@ -1765,840 +5664,1204 @@ msgstr "Workers diferidos Inspeccionados" msgid "Inspect worker Queue" msgstr "Inspeccionar Cola de Workers" -#: src/Module/BaseAdmin.php:102 -msgid "Tools" -msgstr "Herramientas" - -#: src/Module/BaseAdmin.php:103 -msgid "Contact Blocklist" -msgstr "Lista de Contactos Bloqueados" - -#: src/Module/BaseAdmin.php:104 -msgid "Server Blocklist" -msgstr "Lista de Bloqueo del Servidor" - -#: src/Module/BaseAdmin.php:105 src/Module/Admin/Item/Delete.php:66 -msgid "Delete Item" -msgstr "Eliminar Artículo" - -#: src/Module/BaseAdmin.php:107 src/Module/BaseAdmin.php:108 -#: src/Module/Admin/Logs/Settings.php:81 -msgid "Logs" -msgstr "Registros" - -#: src/Module/BaseAdmin.php:109 src/Module/Admin/Logs/View.php:65 -msgid "View Logs" -msgstr "Ver registro de depuración" - -#: src/Module/BaseAdmin.php:111 +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 msgid "Diagnostics" msgstr "Diagnósticos" -#: src/Module/BaseAdmin.php:112 +#: src/Module/BaseAdmin.php:107 msgid "PHP Info" msgstr "Información PHP" -#: src/Module/BaseAdmin.php:113 +#: src/Module/BaseAdmin.php:108 msgid "probe address" msgstr "probar direccion" -#: src/Module/BaseAdmin.php:114 +#: src/Module/BaseAdmin.php:109 msgid "check webfinger" msgstr "Verificar webfinger" -#: src/Module/BaseAdmin.php:115 src/Module/Admin/Item/Source.php:57 -msgid "Item Source" -msgstr "Artículo fuente" - -#: src/Module/BaseAdmin.php:116 +#: src/Module/BaseAdmin.php:110 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:117 src/Module/Debug/ActivityPubConversion.php:138 +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 msgid "ActivityPub Conversion" msgstr "Conversión a ActivityPub" -#: src/Module/BaseAdmin.php:125 src/Content/Nav.php:289 -msgid "Admin" -msgstr "Admin" - -#: src/Module/BaseAdmin.php:126 +#: src/Module/BaseAdmin.php:120 msgid "Addon Features" msgstr "Funciones de los Añadidos" -#: src/Module/BaseAdmin.php:127 +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 msgid "User registrations waiting for confirmation" msgstr "Registro de usuarios esperando la confirmación" -#: 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 "Usuario no encontrado." +#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467 +#: src/Module/BaseApi.php:483 +msgid "Too Many Requests" +msgstr "" -#: 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 +#: src/Module/BaseApi.php:452 #, php-format -msgid "%s's timeline" -msgstr "Estado de %s" +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] "Limite diario de %d publicación alcanzado. La publicación fue rechazada." +msgstr[1] "Limite diario de %d publicaciones alcanzado. La publicación fue rechazada." +msgstr[2] "Limite diario de %d publicaciones alcanzado. La publicación fue rechazada." -#: src/Module/Profile/Status.php:66 src/Module/Profile/Profile.php:323 -#: src/Protocol/Feed.php:944 src/Protocol/OStatus.php:1262 +#: src/Module/BaseApi.php:468 #, php-format -msgid "%s's posts" -msgstr "Artículos de %s" +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] "Limite semanal de %d publicación alcanzado. La publicación fue rechazada." +msgstr[1] "Limite semanal de %d publicaciones alcanzado. La publicación fue rechazada." +msgstr[2] "Limite semanal de %d publicaciones alcanzado. La publicación fue rechazada." -#: src/Module/Profile/Status.php:67 src/Module/Profile/Profile.php:324 -#: src/Protocol/Feed.php:947 src/Protocol/OStatus.php:1265 +#: src/Module/BaseApi.php:484 #, php-format -msgid "%s's comments" -msgstr "Comentarios de %s" +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Monthly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: 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 "El acceso a este perfil ha sido restringido." +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "" -#: src/Module/Profile/Contacts.php:121 -msgid "No contacts." -msgstr "Sin contactos." +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "" -#: src/Module/Profile/Profile.php:82 mod/dfrn_confirm.php:84 -msgid "Profile not found." -msgstr "Perfil no encontrado." +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "" -#: src/Module/Profile/Profile.php:135 +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Usuarios" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "Herramientas" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "Lista de Contactos Bloqueados" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "Lista de Bloqueo del Servidor" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "Eliminar Artículo" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "Artículo fuente" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 +msgid "Profile Details" +msgstr "Detalles del Perfil" + +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "" + +#: src/Module/BaseProfile.php:111 +msgid "Only You Can See This" +msgstr "Únicamente tú puedes ver esto" + +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +msgid "Scheduled Posts" +msgstr "" + +#: src/Module/BaseProfile.php:119 +msgid "Posts that are scheduled for publishing" +msgstr "" + +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +msgid "Tips for New Members" +msgstr "Consejos para nuevos miembros" + +#: src/Module/BaseSearch.php:71 +#, php-format +msgid "People Search - %s" +msgstr "Buscar personas - %s" + +#: src/Module/BaseSearch.php:75 +#, php-format +msgid "Group Search - %s" +msgstr "" + +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "Sin resultados" + +#: src/Module/BaseSearch.php:147 #, php-format msgid "" -"You're currently viewing your profile as %s Cancel" -msgstr "Actualmente estás viendo tu perfil como %s Cancelar" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: src/Module/Profile/Profile.php:144 mod/settings.php:864 -msgid "Full Name:" -msgstr "Nombre Completo:" +#: src/Module/BaseSettings.php:78 +msgid "Account" +msgstr "Cuenta" -#: src/Module/Profile/Profile.php:149 -msgid "Member since:" -msgstr "Miembro desde:" +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 +msgid "Two-factor authentication" +msgstr "Ingreso de 2 factores" -#: src/Module/Profile/Profile.php:155 -msgid "j F, Y" -msgstr "j F, Y" +#: src/Module/BaseSettings.php:118 +msgid "Display" +msgstr "Interfaz del usuario" -#: src/Module/Profile/Profile.php:156 -msgid "j F" -msgstr "j F" +#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "Redes sociales" -#: src/Module/Profile/Profile.php:172 -#: src/Module/Settings/Profile/Index.php:253 mod/events.php:561 -msgid "Description:" -msgstr "Descripción:" +#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172 +msgid "Manage Accounts" +msgstr "Gestionar cuentas" -#: src/Module/Profile/Profile.php:176 src/Module/Contact.php:648 -#: src/Model/Profile.php:363 -msgid "XMPP:" -msgstr "XMPP:" +#: src/Module/BaseSettings.php:146 +msgid "Connected apps" +msgstr "Aplicaciones conectadas" -#: src/Module/Profile/Profile.php:180 src/Module/Directory.php:161 -#: src/Model/Profile.php:361 -msgid "Homepage:" -msgstr "Inicio:" +#: src/Module/BaseSettings.php:153 +msgid "Remote servers" +msgstr "" -#: src/Module/Profile/Profile.php:230 -msgid "Forums:" -msgstr "Foros:" +#: src/Module/BaseSettings.php:160 src/Module/Settings/UserExport.php:98 +msgid "Export personal data" +msgstr "Exportación de datos personales" -#: 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 "Perfil" +#: src/Module/BaseSettings.php:167 +msgid "Remove account" +msgstr "Eliminar cuenta" -#: src/Module/Profile/Profile.php:242 -msgid "View profile as:" -msgstr "Ver perfil como:" +#: src/Module/Bookmarklet.php:54 +msgid "This page is missing a url parameter." +msgstr "A la página le falta URL." -#: src/Module/Profile/Profile.php:244 mod/events.php:576 -msgid "Basic" -msgstr "Basic" +#: src/Module/Bookmarklet.php:66 +msgid "The post was created" +msgstr "El Artículo fue creada" -#: src/Module/Profile/Profile.php:245 src/Module/Contact.php:953 -#: src/Module/Admin/Site.php:587 mod/events.php:577 -msgid "Advanced" -msgstr "Avanzado" +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "" -#: src/Module/Profile/Profile.php:252 src/Module/Profile/Profile.php:254 -#: src/Model/Profile.php:346 -msgid "Edit profile" -msgstr "Editar perfil" +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "" -#: src/Module/Profile/Profile.php:259 -msgid "View as" -msgstr "Ver como" +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "Error al eliminar el evento" -#: src/Module/Register.php:69 -msgid "Only parent users can create additional accounts." -msgstr "Solo usuarios superiores pueden crear mas cuentas." +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "Un evento no puede terminar antes de su inicio." -#: 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 "Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor." +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "Título del evento y hora de inicio requeridas." -#: src/Module/Register.php:101 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking \"Register\"." -msgstr "Puede (opcionalmente) llenar el formulario vía OpenID proporcionando su OpenID y haciendo clic en \"Registrarse\"." +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "Se requiere fecha de comienzo y titulo" -#: 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 "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos." +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "Inicio del evento:" -#: src/Module/Register.php:103 -msgid "Your OpenID (optional): " -msgstr "Tu OpenID (opcional): " - -#: src/Module/Register.php:112 -msgid "Include your profile in member directory?" -msgstr "¿Incluir tu perfil en el directorio de miembros?" - -#: src/Module/Register.php:135 -msgid "Note for the admin" -msgstr "Nota para el administrador" - -#: src/Module/Register.php:135 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo" - -#: 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 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 msgid "Required" msgstr "Obligatorio" -#: src/Module/Register.php:136 -msgid "Membership on this site is by invitation only." -msgstr "Sitio solo accesible mediante invitación." +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "La fecha/hora de finalización no es conocida o es irrelevante." -#: src/Module/Register.php:137 -msgid "Your invitation code: " -msgstr "Tu código de Invitación: " +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "Finalización del evento:" -#: src/Module/Register.php:139 src/Module/Admin/Site.php:584 -msgid "Registration" -msgstr "Registro" +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "" -#: src/Module/Register.php:145 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "Nombre completo (ej. Juan Perez, real o apariencia real):" +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "" -#: src/Module/Register.php:146 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "Tu Correo electrónico: (Información inicial se enviará allí, por lo que debeser una dirección existente.)" +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "" -#: src/Module/Register.php:147 -msgid "Please repeat your e-mail address:" -msgstr "Repite tu correo:" +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Comparte este evento" -#: src/Module/Register.php:149 mod/settings.php:855 -msgid "New Password:" -msgstr "Contraseña Nueva:" +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "Basic" -#: src/Module/Register.php:149 -msgid "Leave empty for an auto generated password." -msgstr "Dejar vacío para autogenerar una contraseña" +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "Este formato de calendario no se soporta" -#: src/Module/Register.php:150 mod/settings.php:856 -msgid "Confirm:" -msgstr "Confirmar:" +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "No hay información exportable" -#: 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 "Elija un apodo de perfil. Que comience con un carácter de texto. Tu dirección de perfil en este sitio será \"nickname@%s\"." +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "calendario" -#: src/Module/Register.php:152 -msgid "Choose a nickname: " -msgstr "Escoge un apodo: " +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Eventos" -#: src/Module/Register.php:155 src/Module/Security/Login.php:102 -#: src/Content/Nav.php:206 -msgid "Register" -msgstr "Registro" +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "Vista" -#: src/Module/Register.php:160 mod/uimport.php:61 -msgid "Import" -msgstr "Importar" +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Crea un evento nuevo" -#: src/Module/Register.php:161 -msgid "Import your profile to this friendica instance" -msgstr "Importar tu perfil a esta instancia de friendica" +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:248 +msgid "list" +msgstr "lista" -#: src/Module/Register.php:168 -msgid "Note: This node explicitly contains adult content" -msgstr "Nota: Este nodo contiene material adulto explicito" +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "" -#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 -msgid "Parent Password:" -msgstr "Contraseña principal:" +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "" -#: 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 "Ingrese la contraseña de la cuenta principal para conformar la solicitud." +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "" -#: src/Module/Register.php:199 -msgid "Password doesn't match." -msgstr "Contraseñas diferentes." +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "" -#: src/Module/Register.php:205 -msgid "Please enter your password." -msgstr "Ingresa tu contraseña." +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "Contacto no encontrado." -#: src/Module/Register.php:247 -msgid "You have entered too much information." -msgstr "Demasiada información." +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "Contacto erróneo." -#: src/Module/Register.php:271 -msgid "Please enter the identical mail address in the second field." -msgstr "Ingresa la misma cuenta de correo en el segundo campo" +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "El contacto se borra." -#: src/Module/Register.php:298 -msgid "The additional account was created." -msgstr "La cuenta adicional fue creada." +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "" -#: src/Module/Register.php:323 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Te has registrado con éxito. Consulta tu correo para más información." +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "" -#: 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 "Error al intentar de enviar mensaje de correo. Aquí los detalles de tu cuenta:
    Usuario: %s
    Contraseña: %s

    Puede cambiar tu contraseña después de ingresar al sitio." +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "" -#: src/Module/Register.php:333 -msgid "Registration successful." -msgstr "Registro exitoso." +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "" -#: src/Module/Register.php:338 src/Module/Register.php:345 -msgid "Your registration can not be processed." -msgstr "Tu registro no se puede procesar." +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "Petición no reconocida" -#: src/Module/Register.php:344 -msgid "You have to leave a request note for the admin." -msgstr "Debes dejar una solicitud al Administrador." +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "" -#: src/Module/Register.php:390 -msgid "Your registration is pending approval by the site owner." -msgstr "Tu registro queda pendiente de aprobación por el dueño del sitio." +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "Filtro" -#: src/Module/Contact.php:94 +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "" + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "" + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "Miembros" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "Pulsa en un contacto para añadirlo o eliminarlo." + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "" + +#: src/Module/Contact.php:97 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "%d contacto editado." msgstr[1] "%d contactos editados." +msgstr[2] "%d contactos editados." -#: src/Module/Contact.php:121 -msgid "Could not access contact record." -msgstr "No se pudo acceder a los datos del contacto." +#: src/Module/Contact.php:348 +msgid "Show all contacts" +msgstr "Mostrar todos los contactos" -#: src/Module/Contact.php:157 mod/dfrn_request.php:428 +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "Pendiente" + +#: src/Module/Contact.php:356 +msgid "Only show pending contacts" +msgstr "Solo mostrar contactos pendientes" + +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Bloqueados" + +#: src/Module/Contact.php:364 +msgid "Only show blocked contacts" +msgstr "Mostrar solo contactos bloqueados" + +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:368 +msgid "Ignored" +msgstr "Ignorados" + +#: src/Module/Contact.php:372 +msgid "Only show ignored contacts" +msgstr "Mostrar solo contactos ignorados" + +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 +msgid "Archived" +msgstr "Archivados" + +#: src/Module/Contact.php:388 +msgid "Only show archived contacts" +msgstr "Mostrar solo contactos archivados" + +#: src/Module/Contact.php:393 src/Module/Contact.php:438 +msgid "Hidden" +msgstr "Ocultos" + +#: src/Module/Contact.php:396 +msgid "Only show hidden contacts" +msgstr "Mostrar solo contactos ocultos" + +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "" + +#: src/Module/Contact.php:459 +msgid "Search your contacts" +msgstr "Buscar en tus contactos" + +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 +#, php-format +msgid "Results for: %s" +msgstr "Resultados para: %s" + +#: src/Module/Contact.php:467 +msgid "Update" +msgstr "Actualizar" + +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Desbloquear" + +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 +msgid "Unignore" +msgstr "Quitar de Ignorados" + +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "" + +#: src/Module/Contact.php:472 +msgid "Batch Actions" +msgstr "Acciones en lote" + +#: src/Module/Contact.php:515 +msgid "Conversations started by this contact" +msgstr "Se iniciaron conversaciones con el contacto" + +#: src/Module/Contact.php:520 +msgid "Posts and Comments" +msgstr "Artículos y Comentarios" + +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "" + +#: src/Module/Contact.php:531 +msgid "Posts containing media objects" +msgstr "" + +#: src/Module/Contact.php:539 +msgid "View all known contacts" +msgstr "Ver contactos conocidos" + +#: src/Module/Contact.php:550 +msgid "Advanced Contact Settings" +msgstr "Configuración avanzada" + +#: src/Module/Contact.php:586 +msgid "Mutual Friendship" +msgstr "Amistad común" + +#: src/Module/Contact.php:590 +msgid "is a fan of yours" +msgstr "es tu seguidor" + +#: src/Module/Contact.php:594 +msgid "you are a fan of" +msgstr "eres seguidor de" + +#: src/Module/Contact.php:612 +msgid "Pending outgoing contact request" +msgstr "Solicitud de Contacto pendiente" + +#: src/Module/Contact.php:614 +msgid "Pending incoming contact request" +msgstr "Solicitud de Contacto pendiente" + +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Ver el perfil de %s [%s]" + +#: src/Module/Contact/Advanced.php:99 +msgid "Contact update failed." +msgstr "Error al actualizar el Contacto." + +#: src/Module/Contact/Advanced.php:130 +msgid "Return to contact editor" +msgstr "Volver al editor de contactos" + +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Nombre" + +#: src/Module/Contact/Advanced.php:135 +msgid "Account Nickname" +msgstr "Apodo de cuenta" + +#: src/Module/Contact/Advanced.php:136 +msgid "Account URL" +msgstr "Dirección de cuenta" + +#: src/Module/Contact/Advanced.php:137 +msgid "Poll/Feed URL" +msgstr "Dirección de Sondeo/Fuente" + +#: src/Module/Contact/Advanced.php:138 +msgid "New photo from this URL" +msgstr "Nueva foto de esta URL" + +#: src/Module/Contact/Contacts.php:89 +msgid "No known contacts." +msgstr "No hay contactos conocidos." + +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +msgid "No common contacts." +msgstr "Sin contactos comunes." + +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#, php-format +msgid "Follower (%s)" +msgid_plural "Followers (%s)" +msgstr[0] "Seguidor (%s)" +msgstr[1] "Seguidores (%s)" +msgstr[2] "Seguidores (%s)" + +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#, php-format +msgid "Following (%s)" +msgid_plural "Following (%s)" +msgstr[0] "Siguiendo (%s)" +msgstr[1] "Siguiendo (%s)" +msgstr[2] "Siguiendo (%s)" + +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#, php-format +msgid "Mutual friend (%s)" +msgid_plural "Mutual friends (%s)" +msgstr[0] "Amigo mutuo (%s)" +msgstr[1] "Amigos mutuos (%s)" +msgstr[2] "Amigos mutuos (%s)" + +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#, php-format +msgid "These contacts both follow and are followed by %s." +msgstr "Estos contactos siguen y son seguidos por %s." + +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#, php-format +msgid "Common contact (%s)" +msgid_plural "Common contacts (%s)" +msgstr[0] "Common contact (%s)" +msgstr[1] "Common contacts (%s)" +msgstr[2] "Common contacts (%s)" + +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#, php-format +msgid "" +"Both %s and yourself have publicly interacted with these " +"contacts (follow, comment or likes on public posts)." +msgstr "Tanto %s como usted han interactuado públicamente con estos contactos (seguir, comentar o dar me gusta en publicaciones públicas)." + +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#, php-format +msgid "Contact (%s)" +msgid_plural "Contacts (%s)" +msgstr[0] "Contacto (%s)" +msgstr[1] "Contactos (%s)" +msgstr[2] "Contactos (%s)" + +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:165 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Acceso denegado." + +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Enviar Solicitud" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "Ya has añadido este contacto." + +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "No se pudo detectar el tipo de red. Contacto no puede ser agregado." + +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado." + +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "El soporte de OStatus no esta habilitado, el contacto no puede ser agregado." + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Por favor responde lo siguiente:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "Dirección de tu Identidad:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "URL del Perfil" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Etiquetas:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "%s te conoce" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Añade una nota personal:" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" +msgstr "" + +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "El contacto no puede añadirse." + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "Consulta invalida" + +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "No hay etiquetas, añade etiquetas a tu perfil." + +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "Coincidencia de Perfil" + +#: src/Module/Contact/Profile.php:140 msgid "Failed to update contact record." msgstr "Error al actualizar el contacto." -#: src/Module/Contact.php:340 src/Model/Profile.php:439 -#: src/Content/Text/HTML.php:889 -msgid "Follow" -msgstr "Seguir" - -#: src/Module/Contact.php:342 src/Model/Profile.php:441 -msgid "Unfollow" -msgstr "Dejar de Seguir" - -#: src/Module/Contact.php:344 src/Model/Profile.php:445 -#: include/conversation.php:1248 mod/editpost.php:132 -msgid "Message" -msgstr "Mensaje" - -#: src/Module/Contact.php:419 -msgid "Contact has been blocked" -msgstr "Contacto ha sido bloqueado" - -#: src/Module/Contact.php:419 +#: src/Module/Contact/Profile.php:190 msgid "Contact has been unblocked" msgstr "Contacto ha sido desbloqueado" -#: src/Module/Contact.php:429 -msgid "Contact has been ignored" -msgstr "Contacto ha sido ignorado" +#: src/Module/Contact/Profile.php:194 +msgid "Contact has been blocked" +msgstr "Contacto ha sido bloqueado" -#: src/Module/Contact.php:429 +#: src/Module/Contact/Profile.php:206 msgid "Contact has been unignored" msgstr "El contacto ya no está ignorado" -#: src/Module/Contact.php:439 -msgid "Contact has been archived" -msgstr "El contacto ha sido archivado" +#: src/Module/Contact/Profile.php:210 +msgid "Contact has been ignored" +msgstr "Contacto ha sido ignorado" -#: src/Module/Contact.php:439 -msgid "Contact has been unarchived" -msgstr "El contacto ya no está archivado" +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" +msgstr "" -#: src/Module/Contact.php:452 -msgid "Drop contact" -msgstr "Eliminar contacto" +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "" -#: src/Module/Contact.php:455 src/Module/Contact.php:879 -msgid "Do you really want to delete this contact?" -msgstr "¿Estás seguro de que quieres eliminar este contacto?" - -#: 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 "Cancelar" - -#: src/Module/Contact.php:468 -msgid "Contact has been removed." -msgstr "El contacto ha sido eliminado" - -#: src/Module/Contact.php:496 +#: src/Module/Contact/Profile.php:254 #, php-format msgid "You are mutual friends with %s" msgstr "Ahora tienes una amistad mutua con %s" -#: src/Module/Contact.php:500 +#: src/Module/Contact/Profile.php:255 #, php-format msgid "You are sharing with %s" msgstr "Estás compartiendo con %s" -#: src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:256 #, php-format msgid "%s is sharing with you" msgstr "%s está compartiendo contigo" -#: src/Module/Contact.php:528 +#: src/Module/Contact/Profile.php:272 msgid "Private communications are not available for this contact." msgstr "Las comunicaciones privadas no está disponibles para este contacto." -#: src/Module/Contact.php:530 +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "" + +#: src/Module/Contact/Profile.php:285 msgid "Never" msgstr "Nunca" -#: src/Module/Contact.php:533 +#: src/Module/Contact/Profile.php:288 msgid "(Update was not successful)" msgstr "(La actualización no se completo)" -#: src/Module/Contact.php:533 +#: src/Module/Contact/Profile.php:288 msgid "(Update was successful)" msgstr "(Actualización exitosa)" -#: src/Module/Contact.php:535 src/Module/Contact.php:1136 +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 msgid "Suggest friends" msgstr "Sugerir amigos" -#: src/Module/Contact.php:539 +#: src/Module/Contact/Profile.php:294 #, php-format msgid "Network type: %s" msgstr "Tipo de red: %s" -#: src/Module/Contact.php:544 +#: src/Module/Contact/Profile.php:299 msgid "Communications lost with this contact!" msgstr "¡Se ha perdido la comunicación con este contacto!" -#: src/Module/Contact.php:550 +#: src/Module/Contact/Profile.php:305 msgid "Fetch further information for feeds" msgstr "Recaudar información complementaria de los feeds" -#: src/Module/Contact.php:552 +#: src/Module/Contact/Profile.php:307 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 "Obtener información como vistas previas, título e intro del artículo. Puedes desactivarlo si el artículo no contiene mucho texto. Etiquetas se toman de la cabecera del artículo y se publican como #etiquetas." -#: 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 "Deshabilitado" - -#: src/Module/Contact.php:555 +#: src/Module/Contact/Profile.php:310 msgid "Fetch information" msgstr "Recuperar información" -#: src/Module/Contact.php:556 +#: src/Module/Contact/Profile.php:311 msgid "Fetch keywords" msgstr "Recuperar etiquetas" -#: src/Module/Contact.php:557 +#: src/Module/Contact/Profile.php:312 msgid "Fetch information and keywords" msgstr "Recuperar información y palabras claves" -#: src/Module/Contact.php:569 src/Module/Contact.php:573 -#: src/Module/Contact.php:576 src/Module/Contact.php:580 +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 msgid "No mirroring" msgstr "No copiar" -#: src/Module/Contact.php:570 -msgid "Mirror as forwarded posting" -msgstr "Copiar como reenvío" - -#: src/Module/Contact.php:571 src/Module/Contact.php:577 -#: src/Module/Contact.php:581 +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 msgid "Mirror as my own posting" msgstr "Copiar como publicación propia" -#: src/Module/Contact.php:574 src/Module/Contact.php:578 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 msgid "Native reshare" msgstr "Reenviar (nativo)" -#: src/Module/Contact.php:593 +#: src/Module/Contact/Profile.php:353 msgid "Contact Information / Notes" msgstr "Información del Contacto / Notas" -#: src/Module/Contact.php:594 +#: src/Module/Contact/Profile.php:354 msgid "Contact Settings" msgstr "Ajustes del contacto" -#: src/Module/Contact.php:602 +#: src/Module/Contact/Profile.php:362 msgid "Contact" msgstr "Contacto" -#: src/Module/Contact.php:606 +#: src/Module/Contact/Profile.php:366 msgid "Their personal note" msgstr "Su nota personal" -#: src/Module/Contact.php:608 +#: src/Module/Contact/Profile.php:368 msgid "Edit contact notes" msgstr "Editar notas del contacto" -#: src/Module/Contact.php:611 src/Module/Contact.php:1104 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Ver el perfil de %s [%s]" - -#: src/Module/Contact.php:612 +#: src/Module/Contact/Profile.php:372 msgid "Block/Unblock contact" msgstr "Boquear/Desbloquear contacto" -#: src/Module/Contact.php:613 +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 msgid "Ignore contact" msgstr "Ignorar contacto" -#: src/Module/Contact.php:614 +#: src/Module/Contact/Profile.php:374 msgid "View conversations" msgstr "Ver conversaciones" -#: src/Module/Contact.php:619 +#: src/Module/Contact/Profile.php:379 msgid "Last update:" msgstr "Última actualización:" -#: src/Module/Contact.php:621 +#: src/Module/Contact/Profile.php:381 msgid "Update public posts" msgstr "Actualizar publicaciones públicas" -#: src/Module/Contact.php:623 src/Module/Contact.php:1146 +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 msgid "Update now" msgstr "Actualizar ahora" -#: 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 "Desbloquear" - -#: 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 "Bloquear" - -#: src/Module/Contact.php:626 src/Module/Contact.php:884 -#: src/Module/Contact.php:1173 -msgid "Unignore" -msgstr "Quitar de Ignorados" - -#: src/Module/Contact.php:630 -msgid "Currently blocked" -msgstr "Bloqueados" - -#: src/Module/Contact.php:631 -msgid "Currently ignored" -msgstr "Ignorados" - -#: src/Module/Contact.php:632 -msgid "Currently archived" -msgstr "Archivados" - -#: src/Module/Contact.php:633 +#: src/Module/Contact/Profile.php:385 msgid "Awaiting connection acknowledge" msgstr "Esperando respuesta de conexión" -#: src/Module/Contact.php:634 +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "Bloqueados" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "Ignorados" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "Archivados" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "" + +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 +msgid "Hide this contact from others" +msgstr "Ocultar el contacto a los demás." + +#: src/Module/Contact/Profile.php:394 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía pueden ser visibles." -#: src/Module/Contact.php:635 +#: src/Module/Contact/Profile.php:395 msgid "Notification for new posts" msgstr "Notificación de nuevos temas." -#: src/Module/Contact.php:635 +#: src/Module/Contact/Profile.php:395 msgid "Send a notification of every new post of this contact" msgstr "Enviar una notificacion por nuevos temas de este contacto." -#: src/Module/Contact.php:637 +#: src/Module/Contact/Profile.php:397 msgid "Keyword Deny List" msgstr "Lista de Etiquetas Prohibidas" -#: src/Module/Contact.php:637 +#: src/Module/Contact/Profile.php:397 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Lista separada por comas de palabras claves que no deberían ser convertidas en #etiquetas cuando \"Recaudar información y palabras claves\" es seleccionado" -#: src/Module/Contact.php:653 src/Module/Settings/TwoFactor/Index.php:132 +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "Actions" msgstr "Acciones" -#: 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 +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 msgid "Status" msgstr "Estado" -#: src/Module/Contact.php:660 +#: src/Module/Contact/Profile.php:423 msgid "Mirror postings from this contact" msgstr "Espejar publicaciones de este contacto" -#: src/Module/Contact.php:662 +#: src/Module/Contact/Profile.php:425 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "Marcar este contacto como perfil_remoto, esto generara que friendica reenvía nuevas publicaciones desde esta cuenta." -#: src/Module/Contact.php:794 -msgid "Show all contacts" -msgstr "Mostrar todos los contactos" +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" +msgstr "" -#: src/Module/Contact.php:799 src/Module/Contact.php:859 -#: src/Module/Admin/BaseUsers.php:66 -msgid "Pending" -msgstr "Pendiente" +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "" -#: src/Module/Contact.php:802 -msgid "Only show pending contacts" -msgstr "Solo mostrar contactos pendientes" +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "" -#: src/Module/Contact.php:807 src/Module/Contact.php:860 -#: src/Module/Admin/BaseUsers.php:74 -msgid "Blocked" -msgstr "Bloqueados" +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "" -#: src/Module/Contact.php:810 -msgid "Only show blocked contacts" -msgstr "Mostrar solo contactos bloqueados" +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "" -#: src/Module/Contact.php:815 src/Module/Contact.php:862 -msgid "Ignored" -msgstr "Ignorados" +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "" -#: src/Module/Contact.php:818 -msgid "Only show ignored contacts" -msgstr "Mostrar solo contactos ignorados" +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "" -#: src/Module/Contact.php:823 src/Module/Contact.php:863 -msgid "Archived" -msgstr "Archivados" +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "" -#: src/Module/Contact.php:826 -msgid "Only show archived contacts" -msgstr "Mostrar solo contactos archivados" +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "" -#: src/Module/Contact.php:831 src/Module/Contact.php:861 -msgid "Hidden" -msgstr "Ocultos" +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "" -#: src/Module/Contact.php:834 -msgid "Only show hidden contacts" -msgstr "Mostrar solo contactos ocultos" +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "" -#: src/Module/Contact.php:839 src/Module/Welcome.php:76 -#: src/Model/Group.php:535 src/Content/Widget.php:214 -msgid "Groups" -msgstr "Grupos" - -#: src/Module/Contact.php:842 -msgid "Organize your contact groups" -msgstr "Organizar tus grupos de contactos" - -#: src/Module/Contact.php:853 src/Content/Widget.php:239 -#: src/BaseModule.php:189 -msgid "Following" -msgstr "Siguiendo" - -#: src/Module/Contact.php:854 src/Content/Widget.php:240 -#: src/BaseModule.php:194 -msgid "Mutual friends" -msgstr "Amigos mutuos" - -#: 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 "Contactos" - -#: src/Module/Contact.php:874 -msgid "Search your contacts" -msgstr "Buscar en tus contactos" - -#: src/Module/Contact.php:875 src/Module/Search/Index.php:193 -#, php-format -msgid "Results for: %s" -msgstr "Resultados para: %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 "Buscar" - -#: src/Module/Contact.php:882 mod/settings.php:92 mod/settings.php:534 -msgid "Update" -msgstr "Actualizar" - -#: src/Module/Contact.php:885 src/Module/Contact.php:1182 -msgid "Archive" -msgstr "Archivo" - -#: src/Module/Contact.php:885 src/Module/Contact.php:1182 -msgid "Unarchive" -msgstr "Sin archivar" - -#: 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 "Eliminar" - -#: src/Module/Contact.php:888 -msgid "Batch Actions" -msgstr "Acciones en lote" - -#: src/Module/Contact.php:923 -msgid "Conversations started by this contact" -msgstr "Se iniciaron conversaciones con el contacto" - -#: src/Module/Contact.php:928 -msgid "Posts and Comments" -msgstr "Artículos y Comentarios" - -#: src/Module/Contact.php:931 src/Module/BaseProfile.php:63 mod/follow.php:171 -#: mod/unfollow.php:113 -msgid "Status Messages and Posts" -msgstr "Mensajes de Estado y Artículos" - -#: src/Module/Contact.php:939 src/Module/BaseProfile.php:55 -msgid "Profile Details" -msgstr "Detalles del Perfil" - -#: src/Module/Contact.php:946 -msgid "View all known contacts" -msgstr "Ver contactos conocidos" - -#: src/Module/Contact.php:956 -msgid "Advanced Contact Settings" -msgstr "Configuración avanzada" - -#: src/Module/Contact.php:1063 -msgid "Mutual Friendship" -msgstr "Amistad común" - -#: src/Module/Contact.php:1067 -msgid "is a fan of yours" -msgstr "es tu seguidor" - -#: src/Module/Contact.php:1071 -msgid "you are a fan of" -msgstr "eres seguidor de" - -#: src/Module/Contact.php:1089 -msgid "Pending outgoing contact request" -msgstr "Solicitud de Contacto pendiente" - -#: src/Module/Contact.php:1091 -msgid "Pending incoming contact request" -msgstr "Solicitud de Contacto pendiente" - -#: 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 "Este eres tú" - -#: src/Module/Contact.php:1156 +#: src/Module/Contact/Profile.php:502 msgid "Refetch contact data" msgstr "Recuperar datos del contacto." -#: src/Module/Contact.php:1167 +#: src/Module/Contact/Profile.php:513 msgid "Toggle Blocked status" msgstr "Cambiar Estatus de Bloqueado" -#: src/Module/Contact.php:1175 +#: src/Module/Contact/Profile.php:521 msgid "Toggle Ignored status" msgstr "Cambiar ignorados" -#: src/Module/Contact.php:1184 -msgid "Toggle Archive status" -msgstr "Cambiar archivados" +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" +msgstr "" -#: src/Module/Contact.php:1192 -msgid "Delete contact" -msgstr "Eliminar contacto" +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 +msgid "Revoke Follow" +msgstr "" -#: src/Module/Debug/Feed.php:63 -msgid "Source URL" -msgstr "URL Fuente" +#: src/Module/Contact/Profile.php:538 +msgid "Revoke the follow from this contact" +msgstr "" -#: 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 "Elemento no encontrado." +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "Petición errónea" + +#: src/Module/Contact/Revoke.php:63 +msgid "Unknown contact." +msgstr "" + +#: src/Module/Contact/Revoke.php:77 +msgid "Contact is being deleted." +msgstr "" + +#: src/Module/Contact/Revoke.php:91 +msgid "Follow was successfully revoked." +msgstr "" + +#: src/Module/Contact/Revoke.php:107 +msgid "" +"Do you really want to revoke this contact's follow? This cannot be undone " +"and they will have to manually follow you back again." +msgstr "" + +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "Yes" +msgstr "Sí" + +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo en 24 horas." + +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "No sigues a este contacto." + +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "Dejar de Seguir no es compatible con tu red." + +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "Desconectar/Dejar de seguir" + +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "" + +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "" + +#: src/Module/Conversation/Channel.php:121 +#: src/Module/Conversation/Community.php:125 src/Module/Search/Index.php:152 +#: src/Module/Search/Index.php:194 +msgid "No results." +msgstr "Sin resultados." + +#: src/Module/Conversation/Channel.php:159 +msgid "Channel not available." +msgstr "" + +#: src/Module/Conversation/Community.php:91 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "Este hilo de la comunidad muestra todas las publicaciones públicas recibidas por este nodo. Puede no reflejar las opiniones de los usuarios de este nodo." + +#: src/Module/Conversation/Community.php:179 +msgid "Community option not available." +msgstr "Fediverso no disponible" + +#: src/Module/Conversation/Community.php:195 +msgid "Not available." +msgstr "No disponible" + +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "" + +#: src/Module/Conversation/Network.php:222 +#, php-format +msgid "Circle: %s" +msgstr "" + +#: src/Module/Conversation/Network.php:317 +msgid "Network feed not available." +msgstr "" + +#: src/Module/Conversation/Timeline.php:158 +msgid "Own Contacts" +msgstr "Contactos propios" + +#: src/Module/Conversation/Timeline.php:162 +msgid "Include" +msgstr "Incluir" + +#: src/Module/Conversation/Timeline.php:163 +msgid "Hide" +msgstr "Ocultar" + +#: src/Module/Credits.php:44 +msgid "Credits" +msgstr "Créditos" + +#: 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 "Friendica es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica.\nGracias a todos! " + +#: src/Module/Debug/ActivityPubConversion.php:53 +msgid "Formatted" +msgstr "Formateado" + +#: src/Module/Debug/ActivityPubConversion.php:65 +msgid "Activity" +msgstr "Actividad" + +#: src/Module/Debug/ActivityPubConversion.php:117 +msgid "Object data" +msgstr "Dato de Objeto" + +#: src/Module/Debug/ActivityPubConversion.php:124 +msgid "Result Item" +msgstr "Artículo resultado" + +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Error" +msgstr[1] "Errores" +msgstr[2] "Errores" + +#: src/Module/Debug/ActivityPubConversion.php:138 +msgid "Source activity" +msgstr "Actividad fuente" #: src/Module/Debug/Babel.php:51 msgid "Source input" @@ -2748,14 +7011,6 @@ msgstr "Convertido" msgid "Converted body" msgstr "Cuerpo convertido" -#: 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] "Error" -msgstr[1] "Errores" - #: src/Module/Debug/Babel.php:294 msgid "Twitter addon is absent from the addon/ folder." msgstr "El Addon de Twitter no existe en folder addon/ ." @@ -2772,10 +7027,6 @@ msgstr "Texto fuente" 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" @@ -2788,30 +7039,14 @@ msgstr "HTML" msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Fuente Twitter / Tweet URL (requiere API key)" -#: src/Module/Debug/WebFinger.php:37 src/Module/Debug/Probe.php:38 -msgid "Only logged in users are permitted to perform a probing." -msgstr "Sólo usuarios registrados pueden realizar exploración." +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:177 +msgid "You must be logged in to use this module" +msgstr "Debes ingresar para usar este módulo" -#: 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 "Acceso público denegado." - -#: src/Module/Debug/WebFinger.php:52 -msgid "Webfinger Diagnostic" -msgstr "Diagnóstico Webfinger" - -#: src/Module/Debug/WebFinger.php:54 -msgid "Lookup address:" -msgstr "Buscar Dirección:" - -#: 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 "l F d, Y \\@ g:i A" +#: src/Module/Debug/Feed.php:77 +msgid "Source URL" +msgstr "URL Fuente" #: src/Module/Debug/Localtime.php:49 msgid "Time Conversion" @@ -2842,151 +7077,467 @@ msgstr "Hora local convertida: %s" msgid "Please select your timezone:" msgstr "Selecciona tu zona horaria:" -#: src/Module/Debug/ActivityPubConversion.php:58 -msgid "Formatted" -msgstr "Formateado" +#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +msgid "Only logged in users are permitted to perform a probing." +msgstr "Sólo usuarios registrados pueden realizar exploración." -#: src/Module/Debug/ActivityPubConversion.php:62 -#: src/Module/Admin/Item/Source.php:73 -msgid "Source" -msgstr "Fuente" - -#: src/Module/Debug/ActivityPubConversion.php:70 -msgid "Activity" -msgstr "Actividad" - -#: src/Module/Debug/ActivityPubConversion.php:118 -msgid "Object data" -msgstr "Dato de Objeto" - -#: src/Module/Debug/ActivityPubConversion.php:125 -msgid "Result Item" -msgstr "Artículo resultado" - -#: src/Module/Debug/ActivityPubConversion.php:139 -msgid "Source activity" -msgstr "Actividad fuente" - -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:52 msgid "Probe Diagnostic" msgstr "Prueba Diagnóstico" -#: src/Module/Debug/Probe.php:54 +#: src/Module/Debug/Probe.php:53 msgid "Output" msgstr "Salida" -#: src/Module/Debug/Probe.php:57 +#: src/Module/Debug/Probe.php:56 msgid "Lookup address" msgstr "Buscar Dirección" -#: src/Module/Item/Compose.php:46 +#: src/Module/Debug/WebFinger.php:50 +msgid "Webfinger Diagnostic" +msgstr "Diagnóstico Webfinger" + +#: src/Module/Debug/WebFinger.php:52 +msgid "Lookup address:" +msgstr "Buscar Dirección:" + +#: src/Module/Delegation.php:110 +#, php-format +msgid "You are now logged in as %s" +msgstr "" + +#: src/Module/Delegation.php:142 +msgid "Switch between your accounts" +msgstr "Cambiar entre tus cuentas" + +#: src/Module/Delegation.php:143 +msgid "Manage your accounts" +msgstr "Administrar tus cuentas" + +#: src/Module/Delegation.php:144 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Cambia entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar" + +#: src/Module/Delegation.php:145 +msgid "Select an identity to manage: " +msgstr "Selecciona una identidad a gestionar:" + +#: src/Module/Directory.php:74 +msgid "No entries (some entries may be hidden)." +msgstr "Sin entradas (algunas pueden que estén ocultas)." + +#: src/Module/Directory.php:90 +msgid "Find on this site" +msgstr "Buscar en este sitio" + +#: src/Module/Directory.php:92 +msgid "Results for:" +msgstr "Resultados para:" + +#: src/Module/Directory.php:94 +msgid "Site Directory" +msgstr "Directorio del sitio" + +#: src/Module/Filer/RemoveTag.php:105 +msgid "Item was not deleted" +msgstr "Artículo no fue borrado" + +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "Artículo no fue borrado" + +#: src/Module/Filer/SaveTag.php:73 +msgid "- select -" +msgstr "- seleccionar -" + +#: src/Module/FriendSuggest.php:82 +msgid "Suggested contact not found." +msgstr "El contacto sugerido no se encontró." + +#: src/Module/FriendSuggest.php:100 +msgid "Friend suggestion sent." +msgstr "Solicitud de amistad enviada." + +#: src/Module/FriendSuggest.php:137 +msgid "Suggest Friends" +msgstr "Sugerencias de amistad" + +#: src/Module/FriendSuggest.php:140 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Recomienda un amigo a %s" + +#: src/Module/Friendica.php:82 +msgid "Installed addons/apps:" +msgstr "Añadidos/apps Instalados:" + +#: src/Module/Friendica.php:87 +msgid "No installed addons/apps" +msgstr "Añadidos/apps no instalados" + +#: src/Module/Friendica.php:92 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "Leer acerca de Términos de Servicio del nodo." + +#: src/Module/Friendica.php:99 +msgid "On this server the following remote servers are blocked." +msgstr "En este servidor los siguientes servidores remotos están bloqueados." + +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +msgid "Reason for the block" +msgstr "Razón para el bloqueo" + +#: src/Module/Friendica.php:104 +msgid "Download this list in CSV format" +msgstr "" + +#: src/Module/Friendica.php:118 +#, 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 "Este es Friendica, version %s ejecutándose en ubicación %s. Versión de la BD es %s, la versión después de actualización es %s." + +#: src/Module/Friendica.php:123 +msgid "" +"Please visit Friendi.ca to learn more " +"about the Friendica project." +msgstr "Visite Friendi.ca para aprender más sobre el proyecto Friendica, por favor." + +#: src/Module/Friendica.php:124 +msgid "Bug reports and issues: please visit" +msgstr "Reporte de fallos y problemas: por favor visita" + +#: src/Module/Friendica.php:124 +msgid "the bugtracker at github" +msgstr "aviso de fallas (bugs) en github" + +#: src/Module/Friendica.php:125 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +msgstr "Sugerencias, agradecimientos, etc. - envie correo \"info\" at \"friendi - dot - ca" + +#: src/Module/HCard.php:45 +msgid "No profile" +msgstr "Ningún perfil" + +#: src/Module/HTTPException/MethodNotAllowed.php:31 +msgid "Method Not Allowed." +msgstr "Método no Permitido" + +#: src/Module/Help.php:60 +msgid "Help:" +msgstr "Ayuda:" + +#: src/Module/Home.php:63 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenido a %s" + +#: src/Module/Install.php:189 +msgid "Friendica Communications Server - Setup" +msgstr "Servidor de Comunicaciones Friendica - Instalación" + +#: src/Module/Install.php:200 +msgid "System check" +msgstr "Verificación del sistema" + +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 +msgid "Requirement not satisfied" +msgstr "Requerimiento no satisfactorio" + +#: src/Module/Install.php:203 +msgid "Optional requirement not satisfied" +msgstr "Requerimiento Opcional no satisfactorio" + +#: src/Module/Install.php:204 +msgid "OK" +msgstr "OK" + +#: src/Module/Install.php:208 +msgid "Next" +msgstr "Siguiente" + +#: src/Module/Install.php:209 +msgid "Check again" +msgstr "Comprobar Nuevamente" + +#: src/Module/Install.php:222 +msgid "Base settings" +msgstr "Configuración Base" + +#: src/Module/Install.php:224 +msgid "Base path to installation" +msgstr "Ruta base para la instalación" + +#: src/Module/Install.php:226 +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 "Si el sistema no puede detectar el acceso correcto a la instalación, ingrese la dirección correcta aquí. Esta configuración solo debería utilizarse si si usa un sistema restringido y enlaces simbolicos a su webroot." + +#: src/Module/Install.php:229 +msgid "The Friendica system URL" +msgstr "" + +#: src/Module/Install.php:231 +msgid "" +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." +msgstr "" + +#: src/Module/Install.php:242 +msgid "Database connection" +msgstr "Conexión con Base de Datos" + +#: src/Module/Install.php:243 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Con el fin de poder instalar Friendica, necesitamos saber cómo conectar con tu base de datos." + +#: src/Module/Install.php:244 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Por favor, contacta con tu proveedor de servicios o con el administrador de la página si tienes alguna pregunta sobre estas configuraciones." + +#: src/Module/Install.php:245 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "La base de datos que especifiques a continuación debería existir ya. Si no es el caso, debes crearla antes de continuar." + +#: src/Module/Install.php:252 +msgid "Database Server Name" +msgstr "Nombre del servidor de la base de datos" + +#: src/Module/Install.php:257 +msgid "Database Login Name" +msgstr "Usuario de la base de datos" + +#: src/Module/Install.php:263 +msgid "Database Login Password" +msgstr "Contraseña de la base de datos" + +#: src/Module/Install.php:265 +msgid "For security reasons the password must not be empty" +msgstr "Por razones de seguridad la contraseña no debe estar vacía" + +#: src/Module/Install.php:268 +msgid "Database Name" +msgstr "Nombre de la base de datos" + +#: src/Module/Install.php:272 src/Module/Install.php:300 +msgid "Please select a default timezone for your website" +msgstr "Por favor, selecciona la zona horaria predeterminada para tu web" + +#: src/Module/Install.php:287 +msgid "Site settings" +msgstr "Configuración de la página web" + +#: src/Module/Install.php:295 +msgid "Site administrator email address" +msgstr "Dirección de correo del administrador de la web" + +#: src/Module/Install.php:297 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "La dirección de correo de tu cuenta debe coincidir con esta para poder usar el panel de administración de la web." + +#: src/Module/Install.php:304 +msgid "System Language:" +msgstr "Sistema de idioma:" + +#: src/Module/Install.php:306 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "Seleccione el idioma por defecto para su interfaz de instalación de Friendica y para enviar correos." + +#: src/Module/Install.php:318 +msgid "Your Friendica site database has been installed." +msgstr "La base de datos de su sitio web de Friendica ha sido instalada." + +#: src/Module/Install.php:328 +msgid "Installation finished" +msgstr "Instalación completa" + +#: src/Module/Install.php:348 +msgid "

    What next

    " +msgstr "

    ¿Que sigue?

    " + +#: src/Module/Install.php:349 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"worker." +msgstr "IMPORTANTE: Debe configurar [manualmente] una Tarea Programada para eltrabajador(Worker)." + +#: src/Module/Install.php:352 +#, 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 "Ve a la Página de Registro de tu nuevo nodo de Friendicay registrate como nuevo usuario. Recuerda utilizar el mismo correo electrónico que ingresaste como correo del administrador. Esto te permitirá ingresar al Panel de Administración del Sitio." + +#: src/Module/Invite.php:57 +msgid "Total invitation limit exceeded." +msgstr "Límite de invitaciones excedido." + +#: src/Module/Invite.php:82 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : No es un correo válido." + +#: src/Module/Invite.php:108 +msgid "Please join us on Friendica" +msgstr "Únete a nosotros en Friendica" + +#: src/Module/Invite.php:117 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Límite de invitaciones sobrepasado. Contacta con el administrador del sitio." + +#: src/Module/Invite.php:121 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Ha fallado la entrega del mensaje." + +#: src/Module/Invite.php:125 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d mensaje enviado." +msgstr[1] "%d mensajes enviados." +msgstr[2] "%d mensajes enviados." + +#: src/Module/Invite.php:143 +msgid "You have no more invitations available" +msgstr "No tienes más invitaciones disponibles" + +#: src/Module/Invite.php:150 +#, 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 "Visita %s para ver una lista de servidores públicos donde puedes darte de alta. Los miembros de otros servidores de Friendica pueden conectarse entre ellos, así como con miembros de otras redes sociales diferentes." + +#: src/Module/Invite.php:152 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Para aceptar la invitación visita y regístrate en %s o en cualquier otro servidor público de Friendica." + +#: src/Module/Invite.php:153 +#, 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 "Los servidores de Friendica están interconectados para crear una enorme red social centrada en la privacidad y controlada por sus miembros. También se puede conectar con muchas redes sociales tradicionales. Mira en %s para poder ver un listado de servidores alternativos de Friendica donde puedes darte de alta." + +#: src/Module/Invite.php:157 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Discúlpanos. Este sistema no está configurado actualmente para conectar con otros servidores públicos o invitar nuevos miembros." + +#: src/Module/Invite.php:160 +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks." +msgstr "Los sitios de Friendica se conectan entre sí para crear una gran red social con privacidad mejorada que es propiedad y está controlada por sus miembros. También pueden conectarse con muchas redes sociales tradicionales." + +#: src/Module/Invite.php:159 +#, php-format +msgid "To accept this invitation, please visit and register at %s." +msgstr "Para aceptar esta invitación, visite y regístrese en%s, por favor." + +#: src/Module/Invite.php:167 +msgid "Send invitations" +msgstr "Enviar invitaciones" + +#: src/Module/Invite.php:168 +msgid "Enter email addresses, one per line:" +msgstr "Introduce las direcciones de correo, una por línea:" + +#: src/Module/Invite.php:172 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Estás cordialmente invitado a unirte a mi y a otros amigos en Friendica, creemos juntos una red social mejor." + +#: src/Module/Invite.php:174 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Tienes que proporcionar el siguiente código: $invite_code" + +#: src/Module/Invite.php:174 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Una vez registrado, por favor contacta conmigo a través de mi página de perfil en:" + +#: src/Module/Invite.php:176 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendi.ca" +msgstr "Para más información sobre el proyecto Friendica y por qué sentimos que es importante, visite http://friendi.ca, por favor" + +#: src/Module/Item/Compose.php:85 msgid "Please enter a post body." msgstr "Ingresa un contenido." -#: src/Module/Item/Compose.php:59 +#: src/Module/Item/Compose.php:98 msgid "This feature is only available with the frio theme." msgstr "Esta opción solo disponible con Tema Frio." -#: src/Module/Item/Compose.php:86 +#: src/Module/Item/Compose.php:122 msgid "Compose new personal note" msgstr "Generar nueva nota personal" -#: src/Module/Item/Compose.php:95 +#: src/Module/Item/Compose.php:131 msgid "Compose new post" msgstr "Generar nuevo artículo" -#: src/Module/Item/Compose.php:135 +#: src/Module/Item/Compose.php:187 msgid "Visibility" msgstr "Visibilidad" -#: src/Module/Item/Compose.php:145 src/Object/Post.php:951 -#: include/conversation.php:1206 -msgid "Bold" -msgstr "Negrita" - -#: src/Module/Item/Compose.php:146 src/Object/Post.php:952 -#: include/conversation.php:1207 -msgid "Italic" -msgstr "Cursiva" - -#: src/Module/Item/Compose.php:147 src/Object/Post.php:953 -#: include/conversation.php:1208 -msgid "Underline" -msgstr "Subrayado" - -#: src/Module/Item/Compose.php:148 src/Object/Post.php:954 -#: include/conversation.php:1209 -msgid "Quote" -msgstr "Cita" - -#: src/Module/Item/Compose.php:149 src/Object/Post.php:955 -#: include/conversation.php:1210 -msgid "Code" -msgstr "Código" - -#: src/Module/Item/Compose.php:150 src/Object/Post.php:956 -#: include/conversation.php:1211 -msgid "Image" -msgstr "Imagen" - -#: src/Module/Item/Compose.php:151 src/Object/Post.php:957 -#: include/conversation.php:1212 -msgid "Link" -msgstr "Enlace" - -#: src/Module/Item/Compose.php:152 src/Object/Post.php:958 -#: include/conversation.php:1213 -msgid "Link or Media" -msgstr "Enlace o Multimedia" - -#: 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 "Escoja una dirección de imágen/video/audio/sitio:" - -#: 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 "Vista previa" - -#: src/Module/Item/Compose.php:155 include/conversation.php:1214 -#: mod/editpost.php:100 -msgid "Set your location" -msgstr "Selecciona tu ubicación" - -#: src/Module/Item/Compose.php:156 +#: src/Module/Item/Compose.php:203 msgid "Clear the location" msgstr "Borrar ubicación" -#: src/Module/Item/Compose.php:157 +#: src/Module/Item/Compose.php:204 msgid "Location services are unavailable on your device" msgstr "Servicios de ubicación no disponibles en tu dispositivo" -#: src/Module/Item/Compose.php:158 +#: src/Module/Item/Compose.php:205 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "Servicios de ubicación no habilitados. Checa los permisos del sitio en tu dispositivo" -#: 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 "Espere" +#: src/Module/Item/Compose.php:211 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "" -#: src/Module/Item/Compose.php:160 include/conversation.php:1219 -#: mod/editpost.php:117 -msgid "Set title" -msgstr "Establecer título" +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "El hilo de este artículo no se encontró" -#: src/Module/Item/Compose.php:161 include/conversation.php:1221 -#: mod/editpost.php:119 -msgid "Categories (comma-separated list)" -msgstr "Categorías (lista separada por comas)" - -#: src/Module/Item/Follow.php:52 +#: src/Module/Item/Follow.php:51 msgid "Unable to follow this item." msgstr "Imposible seguir este artículo." @@ -3001,375 +7552,1456 @@ msgid "" "condition should be temporary, please come back in a few minutes." msgstr "Este nodo de Friendica se encuentra actualmente en modo de mantenimiento, ya sea automáticamente porque se actualiza automáticamente o manualmente por el administrador del nodo. Esta condición debería ser temporal, vuelva en unos minutos." -#: src/Module/Delegation.php:147 -msgid "Switch between your accounts" -msgstr "Cambiar entre tus cuentas" +#: src/Module/Manifest.php:40 +msgid "A Decentralized Social Network" +msgstr "Una Red Social Descentralizada" -#: src/Module/Delegation.php:148 -msgid "Manage your accounts" -msgstr "Administrar tus cuentas" +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "" -#: 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 "Cambia entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar" +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Archivos" -#: src/Module/Delegation.php:150 -msgid "Select an identity to manage: " -msgstr "Selecciona una identidad a gestionar:" +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload" +msgstr "Subir" -#: src/Module/Bookmarklet.php:46 src/Module/Security/Login.php:142 -#: src/Content/Nav.php:171 -msgid "Login" -msgstr "Ingreso" +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Disculpa, posiblemente archivo mas grande que lo permitido por PHP." -#: src/Module/Bookmarklet.php:56 -msgid "This page is missing a url parameter." -msgstr "A la página le falta URL." +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "O - intentó subir un archivo vacío?" -#: src/Module/Bookmarklet.php:78 -msgid "The post was created" -msgstr "El Artículo fue creada" - -#: src/Module/Conversation/Community.php:69 -msgid "Local Community" -msgstr "Comunidad Local" - -#: src/Module/Conversation/Community.php:72 -msgid "Posts from local users on this server" -msgstr "Artículos de usuarios charla! MX" - -#: src/Module/Conversation/Community.php:80 -msgid "Global Community" -msgstr "Comunidad Global" - -#: src/Module/Conversation/Community.php:83 -msgid "Posts from users of the whole federated network" -msgstr "Artículos de usuarios del Fediverso" - -#: src/Module/Conversation/Community.php:116 -msgid "Own Contacts" -msgstr "Contactos propios" - -#: src/Module/Conversation/Community.php:120 -msgid "Include" -msgstr "Incluir" - -#: src/Module/Conversation/Community.php:121 -msgid "Hide" -msgstr "Ocultar" - -#: src/Module/Conversation/Community.php:149 src/Module/Search/Index.php:140 -#: src/Module/Search/Index.php:180 -msgid "No results." -msgstr "Sin resultados." - -#: 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 "Este hilo de la comunidad muestra todas las publicaciones públicas recibidas por este nodo. Puede no reflejar las opiniones de los usuarios de este nodo." - -#: src/Module/Conversation/Community.php:212 -msgid "Community option not available." -msgstr "Fediverso no disponible" - -#: src/Module/Conversation/Community.php:228 -msgid "Not available." -msgstr "No disponible" - -#: src/Module/Conversation/Network.php:161 -msgid "No such group" -msgstr "No existe grupo" - -#: src/Module/Conversation/Network.php:165 +#: src/Module/Media/Attachment/Upload.php:104 #, php-format -msgid "Group: %s" -msgstr "Grupo: %s" +msgid "File exceeds size limit of %s" +msgstr "El archivo excede Tamaño de %s" -#: src/Module/Conversation/Network.php:241 -msgid "Latest Activity" -msgstr "Actividad Reciente" +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "Ha fallado la subida del archivo." -#: src/Module/Conversation/Network.php:244 -msgid "Sort by latest activity" -msgstr "Ordenar por actividad reciente" +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:68 +msgid "Unable to process image." +msgstr "Imposible procesar la imagen." -#: src/Module/Conversation/Network.php:249 -msgid "Latest Posts" -msgstr "Artículos Recientes" +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:95 +msgid "Image upload failed." +msgstr "Error al subir la imagen." -#: src/Module/Conversation/Network.php:252 -msgid "Sort by post received date" -msgstr "Ordenar por fecha de artículo" +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "Lista de todos los usuarios" -#: src/Module/Conversation/Network.php:257 -#: src/Module/Settings/Profile/Index.php:242 -msgid "Personal" -msgstr "Personal" +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "Activos" -#: src/Module/Conversation/Network.php:260 -msgid "Posts that mention or involve you" -msgstr "Publicaciones que te mencionan o involucran" +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "Lista de Cuentas Activas" -#: src/Module/Conversation/Network.php:265 -msgid "Starred" -msgstr "Destacados" +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "Lista de Registros Pendientes" -#: src/Module/Conversation/Network.php:268 -msgid "Favourite Posts" -msgstr "Artículos favoritos" +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "Lista de usuarios bloqueados" -#: src/Module/Install.php:188 -msgid "Friendica Communications Server - Setup" -msgstr "Servidor de Comunicaciones Friendica - Instalación" +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "Borrados" -#: src/Module/Install.php:199 -msgid "System check" -msgstr "Verificación del sistema" +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "Lista de borrados de usuario pendientes" -#: src/Module/Install.php:201 src/Module/Install.php:258 -#: src/Module/Install.php:341 -msgid "Requirement not satisfied" -msgstr "Requerimiento no satisfactorio" +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "Página de Cuenta Normal" -#: src/Module/Install.php:202 -msgid "Optional requirement not satisfied" -msgstr "Requerimiento Opcional no satisfactorio" +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "Página de Tribuna" -#: src/Module/Install.php:203 -msgid "OK" -msgstr "OK" +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "" -#: src/Module/Install.php:207 mod/cal.php:277 mod/events.php:421 -msgid "Next" -msgstr "Siguiente" +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "Página de Amistad Autómatica" -#: src/Module/Install.php:208 -msgid "Check again" -msgstr "Comprobar Nuevamente" +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "" -#: src/Module/Install.php:215 src/Module/Admin/Site.php:522 -msgid "No SSL policy, links will track page SSL state" -msgstr "No existe una política de SSL, los vínculos harán un seguimiento del estado de SSL en la página" +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "Página personal" -#: src/Module/Install.php:216 src/Module/Admin/Site.php:523 -msgid "Force all links to use SSL" -msgstr "Forzar todos los enlaces a utilizar SSL" +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "Página de Organización" -#: src/Module/Install.php:217 src/Module/Admin/Site.php:524 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certificación personal, usa SSL solo para enlaces locales (no recomendado)" +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "Página de Noticias" -#: src/Module/Install.php:223 -msgid "Base settings" -msgstr "Configuración Base" +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "" -#: src/Module/Install.php:225 src/Module/Admin/Site.php:608 -msgid "SSL link policy" -msgstr "Política de enlaces SSL" +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "Retransmisión" -#: src/Module/Install.php:227 src/Module/Admin/Site.php:608 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determina si los enlaces generados deben ser forzados a utilizar SSL" +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "" -#: src/Module/Install.php:230 -msgid "Host name" -msgstr "Nombre de Dominio" +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s Contacto desbloqueado" +msgstr[1] "%s Contactos desbloqueados" +msgstr[2] "%s Contactos desbloqueados" -#: src/Module/Install.php:232 +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "Lista de bloqueo de contactos remotos" + +#: src/Module/Moderation/Blocklist/Contact.php:112 msgid "" -"Overwrite this field in case the determinated hostname isn't right, " -"otherweise leave it as is." -msgstr "Sobre escriba este valor en caso de que el Dominio no sea correcto, caso contrario déjelo así." +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "Esta página le permite evitar que cualquier mensaje de un contacto remoto llegue a su nodo. " -#: src/Module/Install.php:235 -msgid "Base path to installation" -msgstr "Ruta base para la instalación" +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "Bloquear Contacto Remoto" -#: src/Module/Install.php:237 +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "seleccionar todo" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "deseleccionar" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "No se bloquea ningún contacto remoto de este nodo." + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "Contactos remotos bloqueados" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "Bloquear nuevo contacto remoto" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "Foto" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "Motivo" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "%s contacto bloqueado en total" +msgstr[1] "%s contactos bloqueados en total" +msgstr[2] "%s contactos bloqueados en total" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "URL del contacto remoto a bloquear." + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 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 "Si el sistema no puede detectar el acceso correcto a la instalación, ingrese la dirección correcta aquí. Esta configuración solo debería utilizarse si si usa un sistema restringido y enlaces simbolicos a su webroot." +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "" -#: src/Module/Install.php:240 -msgid "Sub path of the URL" -msgstr "Ruta inferior del URL" +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "Razón de bloqueo" -#: src/Module/Install.php:242 +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 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 "Sobrescriba en caso de que la ruta secundaria no sea correcta,de lo contrario, déjelo así. Si lo deja en blanco significará que la instalación esta en la URL base sin ruta secundaria." +"

    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" +"
    " +msgstr "" -#: src/Module/Install.php:253 -msgid "Database connection" -msgstr "Conexión con Base de Datos" +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "" -#: src/Module/Install.php:254 +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "Patrón de Servidor de Dominio" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Con el fin de poder instalar Friendica, necesitamos saber cómo conectar con tu base de datos." +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "" -#: src/Module/Install.php:255 +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Por favor, contacta con tu proveedor de servicios o con el administrador de la página si tienes alguna pregunta sobre estas configuraciones." +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: src/Module/Install.php:256 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "Razón del bloqueo" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "La base de datos que especifiques a continuación debería existir ya. Si no es el caso, debes crearla antes de continuar." +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "" -#: src/Module/Install.php:265 -msgid "Database Server Name" -msgstr "Nombre del servidor de la base de datos" +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "" -#: src/Module/Install.php:270 -msgid "Database Login Name" -msgstr "Usuario de la base de datos" +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "" -#: src/Module/Install.php:276 -msgid "Database Login Password" -msgstr "Contraseña de la base de datos" +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: src/Module/Install.php:278 -msgid "For security reasons the password must not be empty" -msgstr "Por razones de seguridad la contraseña no debe estar vacía" +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "" -#: src/Module/Install.php:281 -msgid "Database Name" -msgstr "Nombre de la base de datos" +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "" -#: src/Module/Install.php:285 src/Module/Install.php:315 -msgid "Please select a default timezone for your website" -msgstr "Por favor, selecciona la zona horaria predeterminada para tu web" - -#: src/Module/Install.php:300 -msgid "Site settings" -msgstr "Configuración de la página web" - -#: src/Module/Install.php:310 -msgid "Site administrator email address" -msgstr "Dirección de correo del administrador de la web" - -#: src/Module/Install.php:312 +#: src/Module/Moderation/Blocklist/Server/Import.php:120 msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "La dirección de correo de tu cuenta debe coincidir con esta para poder usar el panel de administración de la web." +"

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

    " +msgstr "" -#: src/Module/Install.php:319 -msgid "System Language:" -msgstr "Sistema de idioma:" +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "" -#: src/Module/Install.php:321 +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." -msgstr "Seleccione el idioma por defecto para su interfaz de instalación de Friendica y para enviar correos." +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "" -#: src/Module/Install.php:333 -msgid "Your Friendica site database has been installed." -msgstr "La base de datos de su sitio web de Friendica ha sido instalada." +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "" -#: src/Module/Install.php:343 -msgid "Installation finished" -msgstr "Instalación completa" +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "" -#: src/Module/Install.php:363 -msgid "

    What next

    " -msgstr "

    ¿Que sigue?

    " +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +msgid "Blocked server domain pattern" +msgstr "Patrón de Servidor de Dominio Bloqueado" -#: src/Module/Install.php:364 +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "Borrar Patrón de Servidor de Dominio" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "Marca para eliminar esta entrada de Lista de bloqueo" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "Lista de Bloqueo del Patrón de Servidor de Dominio" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"worker." -msgstr "IMPORTANTE: Debe configurar [manualmente] una Tarea Programada para eltrabajador(Worker)." +"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 "Esta página puede servir para definir una lista de bloqueos de patrones de Servidor de Dominios de la Red Federada que no podrán interactuar con el nodo. Por cada patrón de Dominio debes dar la razón de porqué se bloquea." -#: src/Module/Install.php:367 +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +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 "La lista de Patrones de Servidores de Dominio bloqueados será pública en /friendica para que tus usuarios y personas que consulten problemas de comunicación puedan encontrar fácilmente el motivo." + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "Guardar cambios en la lista de bloqueo" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "Entradas actuales en la lista de bloqueo" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "Artículo marcado para eliminación." + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "Eliminar este artículo" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "En esta página, puede eliminar un artículo de su nodo. Si el artículo es una publicación de nivel superior, se eliminará todo el hilo." + +#: src/Module/Moderation/Item/Delete.php:65 +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 "Usted debe conocer el GUID del artículo. Puedes encontrarlo, por ejemplo. mirando la URL visible. La última parte de http://example.com/display/123456 es el GUID, aquí 123456." + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "El GUID del artículo que quiere eliminar." + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "Id de Artículo" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "Item URI" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "Términos" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "Etiqueta" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "Tipo" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "Término" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "Ruta URL" + +#: src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "Mención" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "Mención Implicita" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Elemento no encontrado" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "Clave Guid" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "" + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "" + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Cuenta normal" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "Cuenta de Seguimiento Automático" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Cuenta de amistad automática" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Cuenta de blog" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Usuarios registrados" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Pendientes de registro" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "%s usuario bloqueado" +msgstr[1] "%s usuarios bloqueados" +msgstr[2] "%s usuarios bloqueados" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "No puedes borrar tu usuario" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s usuario eliminado" +msgstr[1] "%s usuarios eliminados" +msgstr[2] "%s usuarios eliminados" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "Usuario \"%s\" borrado" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "Usuario \"%s\" bloqueado" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Fecha de registro" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "Último acceso" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "Último artículo público" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "Cuentas Activas" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "Usuario bloqueado" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "Administrador del Sitio" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "Cuenta caducada" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "Crear nuevo usuario" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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 "¡El usuario {0} será eliminado!\\n\\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "%s usuario desbloqueado" +msgstr[1] "%s usuarios desbloqueados" +msgstr[2] "%s usuarios desbloqueados" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "Usuario \"%s\" desbloqueado" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "Usuarios bloqueados" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "Nuevo usuario" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "Agregar usuario" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "Nombre del nuevo usuario" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "Apodo" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "Apodo del nuevo perfil." + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "Dirección de correo del nuevo perfil." + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "Usuarios en espera de borrado permanente" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "Borrado Permanente" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "Usuario esperando anulación permanente." + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "%s usuario aprobado" +msgstr[1] "%s usuarios aprobados" +msgstr[2] "%s usuarios aprobados" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "%s registro revocado" +msgstr[1] "%s registros revocados" +msgstr[2] "%s registros revocados" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Cuenta aprobada." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "Registro revocado" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "Registro de usuarios en espera de revisión" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Solicitud de fecha" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "Sin registros." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "Nota para el usuario" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Denegado" + +#: src/Module/Notifications/Introductions.php:99 +msgid "Show Ignored Requests" +msgstr "Mostrar peticiones ignoradas" + +#: src/Module/Notifications/Introductions.php:99 +msgid "Hide Ignored Requests" +msgstr "Ocultar peticiones ignoradas" + +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 +msgid "Notification type:" +msgstr "Tipo de Notificación:" + +#: src/Module/Notifications/Introductions.php:118 +msgid "Suggested by:" +msgstr "Sugerido por:" + +#: src/Module/Notifications/Introductions.php:143 +msgid "Claims to be known to you: " +msgstr "Dice conocerte: " + +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "No" +msgstr "No" + +#: src/Module/Notifications/Introductions.php:152 +msgid "Shall your connection be bidirectional or not?" +msgstr "¿Debe la conexión ser bidireccional o no?" + +#: src/Module/Notifications/Introductions.php:153 #, 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 "Ve a la Página de Registro de tu nuevo nodo de Friendicay registrate como nuevo usuario. Recuerda utilizar el mismo correo electrónico que ingresaste como correo del administrador. Esto te permitirá ingresar al Panel de Administración del Sitio." +"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 "Aceptar a %s como amigo le permite a %s suscribirse a sus publicaciones, y usted también recibirá actualizaciones de ellos en sus noticias." -#: src/Module/HoverCard.php:47 -msgid "No profile" -msgstr "Ningún perfil" - -#: src/Module/Credits.php:44 -msgid "Credits" -msgstr "Créditos" - -#: 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 "Friendica es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica.\nGracias a todos! " - -#: src/Module/Search/Saved.php:45 -msgid "Search term was not saved." -msgstr "Término de búsqueda no se grabó." - -#: src/Module/Search/Saved.php:48 -msgid "Search term already saved." -msgstr "Término de búsqueda ya ha sido grabado." - -#: src/Module/Search/Saved.php:54 -msgid "Search term was not removed." -msgstr "Término de búsqueda no fue borrado." - -#: src/Module/Search/Index.php:55 -msgid "Only logged in users are permitted to perform a search." -msgstr "Solo usuarios activos tienen permiso para ejecutar búsquedas." - -#: src/Module/Search/Index.php:77 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "Se permite solo una búsqueda por minuto para usuarios no identificados." - -#: src/Module/Search/Index.php:100 src/Content/Nav.php:220 -#: src/Content/Text/HTML.php:895 -msgid "Search" -msgstr "Buscar" - -#: src/Module/Search/Index.php:191 +#: src/Module/Notifications/Introductions.php:154 #, php-format -msgid "Items tagged with: %s" -msgstr "Objetos taggeado con: %s" +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 "Aceptar a %s como suscriptor les permite suscribirse a sus publicaciones, pero usted no recibirá actualizaciones de ellos en sus noticias." -#: src/Module/RemoteFollow.php:54 mod/dfrn_request.php:243 +#: src/Module/Notifications/Introductions.php:156 +msgid "Friend" +msgstr "Amigo" + +#: src/Module/Notifications/Introductions.php:157 +msgid "Subscriber" +msgstr "Suscriptor" + +#: src/Module/Notifications/Introductions.php:216 +msgid "No introductions." +msgstr "Sin presentaciones." + +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 +#, php-format +msgid "No more %s notifications." +msgstr "No más notificaciones de %s." + +#: src/Module/Notifications/Notification.php:135 +msgid "You must be logged in to show this page." +msgstr "Debes ingresar para ver esa pagina." + +#: src/Module/Notifications/Notifications.php:66 +msgid "Network Notifications" +msgstr "Notificaciones de Red" + +#: src/Module/Notifications/Notifications.php:72 +msgid "System Notifications" +msgstr "Notificaciones del sistema" + +#: src/Module/Notifications/Notifications.php:78 +msgid "Personal Notifications" +msgstr "Notificaciones personales" + +#: src/Module/Notifications/Notifications.php:84 +msgid "Home Notifications" +msgstr "Notificaciones de Inicio" + +#: src/Module/Notifications/Notifications.php:140 +msgid "Show unread" +msgstr "Mostrar no leído" + +#: src/Module/Notifications/Ping.php:246 +msgid "{0} requested registration" +msgstr "{0} solicita registro" + +#: src/Module/Notifications/Ping.php:255 +#, php-format +msgid "{0} and %d others requested registration" +msgstr "{0} y %d otros solicitaron registro" + +#: src/Module/OAuth/Acknowledge.php:51 +msgid "Authorize application connection" +msgstr "Autorizar la conexión de la aplicación" + +#: src/Module/OAuth/Acknowledge.php:53 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?" + +#: src/Module/OAuth/Authorize.php:54 +msgid "Unsupported or missing response type" +msgstr "" + +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +msgid "Incomplete request data" +msgstr "" + +#: 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:83 +msgid "Invalid data or unknown client" +msgstr "" + +#: src/Module/OAuth/Token.php:108 +msgid "Unsupported or missing grant type" +msgstr "" + +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "Resubscribir a contactos de OStatus" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "Manténer la ventana abierta hasta que finalice." + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "No se suministra contacto." + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "No se encuentra la información del contacto." + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "No se encuentran datos de amigos de contacto." + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Hecho" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "éxito!" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "fallido" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "ignorado" + +#: src/Module/PermissionTooltip.php:49 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "Tipo erróneo \"%s\", se esperaba uno: %s" + +#: src/Module/PermissionTooltip.php:79 +msgid "Model not found" +msgstr "Modelo no encontrado" + +#: src/Module/PermissionTooltip.php:94 +msgid "Unlisted" +msgstr "" + +#: src/Module/PermissionTooltip.php:112 +msgid "Remote privacy information not available." +msgstr "Privacidad de la información remota no disponible." + +#: src/Module/PermissionTooltip.php:121 +msgid "Visible to:" +msgstr "Visible para:" + +#: src/Module/PermissionTooltip.php:204 +#, php-format +msgid "Collection (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:208 +#, php-format +msgid "Followers (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:227 +#, php-format +msgid "%d more" +msgstr "" + +#: src/Module/PermissionTooltip.php:231 +#, php-format +msgid "To: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:234 +#, php-format +msgid "CC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:237 +#, php-format +msgid "BCC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "" + +#: src/Module/Photo.php:130 +msgid "The Photo is not available." +msgstr "" + +#: src/Module/Photo.php:155 +#, php-format +msgid "The Photo with id %s is not available." +msgstr "La foto con id %s no esta disponible." + +#: src/Module/Photo.php:192 +#, php-format +msgid "Invalid external resource with url %s." +msgstr "" + +#: src/Module/Photo.php:194 +#, php-format +msgid "Invalid photo with id %s." +msgstr "Foto no válida de Id %s." + +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "" + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Editar publicación" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "enlace web" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Insertar enlace del vídeo" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "enlace de video" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Insertar vínculo del audio" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "enlace de audio" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Eliminar etiqueta" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Selecciona etiqueta a eliminar: " + +#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Eliminar" + +#: src/Module/Profile/Contacts.php:159 +msgid "No contacts." +msgstr "Sin contactos." + +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "Estado de %s" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "Artículos de %s" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "Comentarios de %s" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:59 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Imagen excede el tamaño de %s" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "Subida de imagen no completa, vuelve a intentar" + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "Falta el archivo de imagen" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "El servidor no puede aceptar la carga de archivos nuevos en este momento, comuníquese con el Administrador" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "El archivo de imagen está vacío." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "Ver Álbum" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +msgid "Profile not found." +msgstr "Perfil no encontrado." + +#: src/Module/Profile/Profile.php:158 +#, php-format +msgid "" +"You're currently viewing your profile as %s Cancel" +msgstr "Actualmente estás viendo tu perfil como %s Cancelar" + +#: src/Module/Profile/Profile.php:167 +msgid "Full Name:" +msgstr "Nombre Completo:" + +#: src/Module/Profile/Profile.php:172 +msgid "Member since:" +msgstr "Miembro desde:" + +#: src/Module/Profile/Profile.php:178 +msgid "j F, Y" +msgstr "j F, Y" + +#: src/Module/Profile/Profile.php:179 +msgid "j F" +msgstr "j F" + +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 +msgid "Birthday:" +msgstr "Fecha de Nac:" + +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +msgid "Age: " +msgstr "Edad: " + +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#, php-format +msgid "%d year old" +msgid_plural "%d years old" +msgstr[0] "%d Años" +msgstr[1] "%d Años" +msgstr[2] "%d Años" + +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "Descripción:" + +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "" + +#: src/Module/Profile/Profile.php:273 +msgid "View profile as:" +msgstr "Ver perfil como:" + +#: src/Module/Profile/Profile.php:290 +msgid "View as" +msgstr "Ver como" + +#: src/Module/Profile/RemoteFollow.php:82 msgid "Profile unavailable." msgstr "Perfil no disponible." -#: src/Module/RemoteFollow.php:60 mod/dfrn_request.php:290 +#: src/Module/Profile/RemoteFollow.php:88 msgid "Invalid locator" msgstr "Localizador no válido" -#: src/Module/RemoteFollow.php:67 +#: src/Module/Profile/RemoteFollow.php:95 msgid "The provided profile link doesn't seem to be valid" msgstr "Link del perfil no parece válido." -#: src/Module/RemoteFollow.php:72 mod/dfrn_request.php:480 +#: src/Module/Profile/RemoteFollow.php:100 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema." -#: src/Module/RemoteFollow.php:104 mod/dfrn_request.php:636 +#: src/Module/Profile/RemoteFollow.php:128 msgid "Friend/Connection Request" msgstr "Solicitud de Amistad/Conexión" -#: src/Module/RemoteFollow.php:105 +#: src/Module/Profile/RemoteFollow.php:129 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -3377,164 +9009,2102 @@ msgid "" " or %s directly on your system." msgstr "Digite dirección Webfinger (user@domain.tld) o URL de perfil. Si no fuera aceptado por tu sistema, debes suscribirte a %s o %s directo en tu sistema." -#: src/Module/RemoteFollow.php:106 mod/dfrn_request.php:638 +#: src/Module/Profile/RemoteFollow.php:130 #, 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 "Si aún no eres miembro de la web social gratuita, Sígue este enlace para encontrar un nodo Friendica público y únete hoy." -#: src/Module/RemoteFollow.php:107 mod/dfrn_request.php:639 +#: src/Module/Profile/RemoteFollow.php:131 msgid "Your Webfinger address or profile URL:" msgstr "Tu dirección Webfinger o URL de Perfil:" -#: src/Module/RemoteFollow.php:108 mod/follow.php:147 mod/dfrn_request.php:640 -msgid "Please answer the following:" -msgstr "Por favor responde lo siguiente:" +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "" -#: src/Module/RemoteFollow.php:109 mod/follow.php:74 mod/dfrn_request.php:641 -#: mod/unfollow.php:99 -msgid "Submit Request" -msgstr "Enviar Solicitud" +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "" -#: src/Module/Invite.php:55 -msgid "Total invitation limit exceeded." -msgstr "Límite de invitaciones excedido." +#: src/Module/Profile/Schedule.php:83 +msgid "Scheduled" +msgstr "" -#: src/Module/Invite.php:78 +#: src/Module/Profile/Schedule.php:84 +msgid "Content" +msgstr "" + +#: src/Module/Profile/Schedule.php:85 +msgid "Remove post" +msgstr "" + +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "" + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Imposible comprobar tu servidor de inicio." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "" + +#: src/Module/Profile/UnkMail.php:138 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : No es un correo válido." +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Excedido el número máximo de mensajes para %s. Mensaje fallido." -#: src/Module/Invite.php:105 -msgid "Please join us on Friendica" -msgstr "Únete a nosotros en Friendica" - -#: src/Module/Invite.php:114 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Límite de invitaciones sobrepasado. Contacta con el administrador del sitio." - -#: src/Module/Invite.php:118 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Ha fallado la entrega del mensaje." - -#: src/Module/Invite.php:122 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mensaje enviado." -msgstr[1] "%d mensajes enviados." - -#: src/Module/Invite.php:140 -msgid "You have no more invitations available" -msgstr "No tienes más invitaciones disponibles" - -#: src/Module/Invite.php:147 +#: src/Module/Profile/UnkMail.php:152 #, 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 "Visita %s para ver una lista de servidores públicos donde puedes darte de alta. Los miembros de otros servidores de Friendica pueden conectarse entre ellos, así como con miembros de otras redes sociales diferentes." +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Si quieres que %s te responda, verifica que la configuración de privacidad permite enviar correo privado de desconocidos." -#: src/Module/Invite.php:149 +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "" + +#: src/Module/Register.php:84 +msgid "Only parent users can create additional accounts." +msgstr "Solo usuarios superiores pueden crear mas cuentas." + +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor." + +#: src/Module/Register.php:116 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." +msgstr "Puede (opcionalmente) llenar el formulario vía OpenID proporcionando su OpenID y haciendo clic en \"Registrarse\"." + +#: src/Module/Register.php:117 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos." + +#: src/Module/Register.php:118 +msgid "Your OpenID (optional): " +msgstr "Tu OpenID (opcional): " + +#: src/Module/Register.php:127 +msgid "Include your profile in member directory?" +msgstr "¿Incluir tu perfil en el directorio de miembros?" + +#: src/Module/Register.php:148 +msgid "Note for the admin" +msgstr "Nota para el administrador" + +#: src/Module/Register.php:148 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo" + +#: src/Module/Register.php:149 +msgid "Membership on this site is by invitation only." +msgstr "Sitio solo accesible mediante invitación." + +#: src/Module/Register.php:150 +msgid "Your invitation code: " +msgstr "Tu código de Invitación: " + +#: src/Module/Register.php:158 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Nombre completo (ej. Juan Perez, real o apariencia real):" + +#: src/Module/Register.php:159 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "Tu Correo electrónico: (Información inicial se enviará allí, por lo que debeser una dirección existente.)" + +#: src/Module/Register.php:160 +msgid "Please repeat your e-mail address:" +msgstr "Repite tu correo:" + +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 +msgid "New Password:" +msgstr "Contraseña Nueva:" + +#: src/Module/Register.php:162 +msgid "Leave empty for an auto generated password." +msgstr "Dejar vacío para autogenerar una contraseña" + +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 +msgid "Confirm:" +msgstr "Confirmar:" + +#: src/Module/Register.php:164 #, php-format msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Para aceptar la invitación visita y regístrate en %s o en cualquier otro servidor público de Friendica." +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be \"nickname@%s\"." +msgstr "Elija un apodo de perfil. Que comience con un carácter de texto. Tu dirección de perfil en este sitio será \"nickname@%s\"." -#: src/Module/Invite.php:150 +#: src/Module/Register.php:165 +msgid "Choose a nickname: " +msgstr "Escoge un apodo: " + +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Importar" + +#: src/Module/Register.php:174 +msgid "Import your profile to this friendica instance" +msgstr "Importar tu perfil a esta instancia de friendica" + +#: src/Module/Register.php:181 +msgid "Note: This node explicitly contains adult content" +msgstr "Nota: Este nodo contiene material adulto explicito" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "Parent Password:" +msgstr "Contraseña principal:" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "Ingrese la contraseña de la cuenta principal para conformar la solicitud." + +#: src/Module/Register.php:212 +msgid "Password doesn't match." +msgstr "Contraseñas diferentes." + +#: src/Module/Register.php:218 +msgid "Please enter your password." +msgstr "Ingresa tu contraseña." + +#: src/Module/Register.php:260 +msgid "You have entered too much information." +msgstr "Demasiada información." + +#: src/Module/Register.php:283 +msgid "Please enter the identical mail address in the second field." +msgstr "Ingresa la misma cuenta de correo en el segundo campo" + +#: src/Module/Register.php:310 +msgid "The additional account was created." +msgstr "La cuenta adicional fue creada." + +#: src/Module/Register.php:335 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Te has registrado con éxito. Consulta tu correo para más información." + +#: src/Module/Register.php:342 #, 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 "Los servidores de Friendica están interconectados para crear una enorme red social centrada en la privacidad y controlada por sus miembros. También se puede conectar con muchas redes sociales tradicionales. Mira en %s para poder ver un listado de servidores alternativos de Friendica donde puedes darte de alta." +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "Error al intentar de enviar mensaje de correo. Aquí los detalles de tu cuenta:
    Usuario: %s
    Contraseña: %s

    Puede cambiar tu contraseña después de ingresar al sitio." -#: src/Module/Invite.php:154 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Discúlpanos. Este sistema no está configurado actualmente para conectar con otros servidores públicos o invitar nuevos miembros." +#: src/Module/Register.php:348 +msgid "Registration successful." +msgstr "Registro exitoso." -#: 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 "Los sitios de Friendica se conectan entre sí para crear una gran red social con privacidad mejorada que es propiedad y está controlada por sus miembros. También pueden conectarse con muchas redes sociales tradicionales." +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 +msgid "Your registration can not be processed." +msgstr "Tu registro no se puede procesar." -#: src/Module/Invite.php:156 +#: src/Module/Register.php:363 +msgid "You have to leave a request note for the admin." +msgstr "Debes dejar una solicitud al Administrador." + +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "" + +#: src/Module/Register.php:395 +msgid "Your registration is pending approval by the site owner." +msgstr "Tu registro queda pendiente de aprobación por el dueño del sitio." + +#: src/Module/Search/Acl.php:73 +msgid "You must be logged in to use this module." +msgstr "Debes ingresar para usar el modulo." + +#: src/Module/Search/Index.php:69 +msgid "Only logged in users are permitted to perform a search." +msgstr "Solo usuarios activos tienen permiso para ejecutar búsquedas." + +#: src/Module/Search/Index.php:89 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "Se permite solo una búsqueda por minuto para usuarios no identificados." + +#: src/Module/Search/Index.php:205 #, php-format -msgid "To accept this invitation, please visit and register at %s." -msgstr "Para aceptar esta invitación, visite y regístrese en%s, por favor." +msgid "Items tagged with: %s" +msgstr "Objetos taggeado con: %s" -#: src/Module/Invite.php:164 -msgid "Send invitations" -msgstr "Enviar invitaciones" +#: src/Module/Search/Saved.php:59 +msgid "Search term was not saved." +msgstr "Término de búsqueda no se grabó." -#: src/Module/Invite.php:165 -msgid "Enter email addresses, one per line:" -msgstr "Introduce las direcciones de correo, una por línea:" +#: src/Module/Search/Saved.php:62 +msgid "Search term already saved." +msgstr "Término de búsqueda ya ha sido grabado." -#: src/Module/Invite.php:168 mod/wallmessage.php:151 mod/message.php:199 -#: mod/message.php:367 -msgid "Your message:" -msgstr "Tu mensaje:" +#: src/Module/Search/Saved.php:68 +msgid "Search term was not removed." +msgstr "Término de búsqueda no fue borrado." -#: src/Module/Invite.php:169 +#: src/Module/Security/Login.php:123 +msgid "Create a New Account" +msgstr "Crear Nueva Cuenta" + +#: src/Module/Security/Login.php:142 +msgid "Your OpenID: " +msgstr "Tu OpenID: " + +#: src/Module/Security/Login.php:145 msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Estás cordialmente invitado a unirte a mi y a otros amigos en Friendica, creemos juntos una red social mejor." +"Please enter your username and password to add the OpenID to your existing " +"account." +msgstr "Ingresa tu Usuario y Contraseña para añadir el OpenID a tu cuentaexistente." -#: src/Module/Invite.php:171 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Tienes que proporcionar el siguiente código: $invite_code" +#: src/Module/Security/Login.php:147 +msgid "Or login using OpenID: " +msgstr "O ingresa usando OpenID: " -#: src/Module/Invite.php:171 +#: src/Module/Security/Login.php:161 +msgid "Password: " +msgstr "Contraseña: " + +#: src/Module/Security/Login.php:162 +msgid "Remember me" +msgstr "Recordarme" + +#: src/Module/Security/Login.php:171 +msgid "Forgot your password?" +msgstr "¿Olvidaste la contraseña?" + +#: src/Module/Security/Login.php:174 +msgid "Website Terms of Service" +msgstr "Términos de Servicio del Sitio" + +#: src/Module/Security/Login.php:175 +msgid "terms of service" +msgstr "Términos de Servicio" + +#: src/Module/Security/Login.php:177 +msgid "Website Privacy Policy" +msgstr "Política de Privacidad del Sitio" + +#: src/Module/Security/Login.php:178 +msgid "privacy policy" +msgstr "Política de Privacidad" + +#: src/Module/Security/Logout.php:84 +#: src/Module/Security/TwoFactor/SignOut.php:78 +#: src/Module/Security/TwoFactor/SignOut.php:86 +#: src/Module/Security/TwoFactor/SignOut.php:108 +#: src/Module/Security/TwoFactor/SignOut.php:115 +msgid "Logged out." +msgstr "Desconectado." + +#: src/Module/Security/OpenID.php:54 +msgid "OpenID protocol error. No ID returned" +msgstr "Error de protocolo OpenID. No encuentra ID" + +#: src/Module/Security/OpenID.php:90 msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Una vez registrado, por favor contacta conmigo a través de mi página de perfil en:" +"Account not found. Please login to your existing account to add the OpenID " +"to it." +msgstr "Cuenta no encontrada. Ingresa en tu cuenta existente para agregarle OpenID." -#: src/Module/Invite.php:173 +#: src/Module/Security/OpenID.php:92 msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendi.ca" -msgstr "Para más información sobre el proyecto Friendica y por qué sentimos que es importante, visite http://friendi.ca, por favor" +"Account not found. Please register a new account or login to your existing " +"account to add the OpenID to it." +msgstr "Cuenta no encontrada. Registra una nueva cuenta o ingresa en su cuenta existentepara agregarle OpenID." -#: src/Module/Directory.php:77 -msgid "No entries (some entries may be hidden)." -msgstr "Sin entradas (algunas pueden que estén ocultas)." +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 +msgid "Passwords do not match." +msgstr "No coinciden los passwords" -#: src/Module/Directory.php:97 src/Content/Widget.php:83 -#: view/theme/vier/theme.php:179 -msgid "Global Directory" -msgstr "Directorio Global" +#: src/Module/Security/PasswordTooLong.php:64 +msgid "Password does not need changing." +msgstr "" -#: src/Module/Directory.php:99 -msgid "Find on this site" -msgstr "Buscar en este sitio" +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 +msgid "Password unchanged." +msgstr "Contraseña no modificada" -#: src/Module/Directory.php:101 -msgid "Results for:" -msgstr "Resultados para:" +#: src/Module/Security/PasswordTooLong.php:91 +msgid "Password Too Long" +msgstr "" -#: src/Module/Directory.php:103 -msgid "Site Directory" -msgstr "Directorio del sitio" +#: src/Module/Security/PasswordTooLong.php:92 +msgid "" +"Since version 2022.09, we've realized that any password longer than 72 " +"characters is truncated during hashing. To prevent any confusion about this " +"behavior, please update your password to be fewer or equal to 72 characters." +msgstr "" -#: 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 "Ver Perfil" +#: src/Module/Security/PasswordTooLong.php:93 +msgid "Update Password" +msgstr "" -#: src/Module/Tos.php:46 src/Module/Tos.php:88 +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Current Password:" +msgstr "Contraseña actual:" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Your current password to confirm the changes" +msgstr "Tu contraseña actual para confirmar los cambios." + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces and accentuated letters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 +msgid "Password length is limited to 72 characters." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:74 +#, php-format +msgid "Remaining recovery codes: %d" +msgstr "Códigos de recuperación restantes: %d" + +#: src/Module/Security/TwoFactor/Recovery.php:80 +#: src/Module/Security/TwoFactor/Verify.php:77 +#: src/Module/Settings/TwoFactor/Verify.php:95 +msgid "Invalid code, please retry." +msgstr "Código inválido, reinténtelo" + +#: src/Module/Security/TwoFactor/Recovery.php:99 +msgid "Two-factor recovery" +msgstr "Recuperación de 2 factores" + +#: src/Module/Security/TwoFactor/Recovery.php:100 +msgid "" +"

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

    " +msgstr "

    puedes usar uno de tus códigos de recuperación si pierdes el acceso a tu movil.

    " + +#: src/Module/Security/TwoFactor/Recovery.php:101 +#, php-format +msgid "Don’t have your phone? Enter a two-factor recovery code" +msgstr "No tienes el teléfono? Ingresa código de recuperación" + +#: src/Module/Security/TwoFactor/Recovery.php:102 +msgid "Please enter a recovery code" +msgstr "Ingresa código de recuperación" + +#: src/Module/Security/TwoFactor/Recovery.php:103 +msgid "Submit recovery code and complete login" +msgstr "Enviar código de recuperación e ingresar" + +#: src/Module/Security/TwoFactor/SignOut.php:122 +msgid "Sign out of this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:123 +msgid "" +"

    If you trust this browser, you will not be asked for verification code " +"the next time you sign in.

    " +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:124 +msgid "Sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:126 +msgid "Trust and sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:96 +msgid "Couldn't save browser to Cookie." +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:141 +msgid "Trust this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:142 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:143 +msgid "Not now" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:144 +msgid "Don't trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:145 +msgid "Trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:97 +msgid "" +"

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

    " +msgstr "

    Abra la app de ingreso de 2 factores en su dispositivo y obtenga un código de ingreso para verificar su identidad.

    " + +#: src/Module/Security/TwoFactor/Verify.php:100 +#, php-format +msgid "" +"If you do not have access to your authentication code you can use a two-factor recovery code." +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Please enter a code from your authentication app" +msgstr "Ingresa un código de ingreso desde tu app" + +#: src/Module/Security/TwoFactor/Verify.php:102 +msgid "Verify code and complete login" +msgstr "Verificar código y completar ingreso" + +#: src/Module/Settings/Account.php:96 +msgid "Please use a shorter name." +msgstr "Utiliza un nombre mas corto" + +#: src/Module/Settings/Account.php:99 +msgid "Name too short." +msgstr "Nombre muy corto" + +#: src/Module/Settings/Account.php:108 +msgid "Wrong Password." +msgstr "Password erróneo" + +#: src/Module/Settings/Account.php:113 +msgid "Invalid email." +msgstr "Corréo no válido." + +#: src/Module/Settings/Account.php:117 +msgid "Cannot change to that email." +msgstr "Imposible cambiar a ese correo." + +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 +msgid "Settings were not updated." +msgstr "Configuración no actualizada" + +#: src/Module/Settings/Account.php:364 +msgid "Contact CSV file upload error" +msgstr "Error al subir archivo CSV" + +#: src/Module/Settings/Account.php:383 +msgid "Importing Contacts done" +msgstr "Importación del contacto completada" + +#: src/Module/Settings/Account.php:396 +msgid "Relocate message has been send to your contacts" +msgstr "Mensaje de reubicación enviado a sus contactos." + +#: src/Module/Settings/Account.php:413 +msgid "Unable to find your profile. Please contact your admin." +msgstr "No se encontró tu perfil. Contacta al Administrador." + +#: src/Module/Settings/Account.php:455 +msgid "Personal Page Subtypes" +msgstr "Subtipos de Página Personal" + +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" +msgstr "" + +#: src/Module/Settings/Account.php:466 +msgid "Account for a personal profile." +msgstr "Cuenta para un perfil personal." + +#: src/Module/Settings/Account.php:473 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "Cuenta para una organización que aprueba automáticamente solicitudes de \"Seguidores\"." + +#: src/Module/Settings/Account.php:480 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "Cuenta Reflector de noticias que aprueba automáticamente solicitudes de contacto como \"Seguidores\"." + +#: src/Module/Settings/Account.php:487 +msgid "Account for community discussions." +msgstr "Cuenta para discusiones de la comunidad." + +#: src/Module/Settings/Account.php:494 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "Cuenta para perfil personal regular que requiere aprobación manual de \"Amigos\" and \"Seguidores\"." + +#: src/Module/Settings/Account.php:501 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "Cuenta para un perfil público que aprueba automáticamente las solicitudes de contacto como «Seguidores»." + +#: src/Module/Settings/Account.php:508 +msgid "Automatically approves all contact requests." +msgstr "Aprueba automáticamente las solicitudes de contacto." + +#: src/Module/Settings/Account.php:515 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "Cuenta para un perfil popular que aprueba automáticamente solicitudes de contacto como \"Amigos\"." + +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "" + +#: src/Module/Settings/Account.php:522 +msgid "Requires manual approval of contact requests." +msgstr "Requiere aprobación manual de solicitudes de contacto." + +#: src/Module/Settings/Account.php:531 +msgid "OpenID:" +msgstr "OpenID:" + +#: src/Module/Settings/Account.php:531 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opcional) Permitir a este OpenID acceder a esta cuenta." + +#: src/Module/Settings/Account.php:539 +msgid "Publish your profile in your local site directory?" +msgstr "Publicar tu perfil en tu Directorio Local?" + +#: src/Module/Settings/Account.php:539 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "Tu perfil se publicará en el directorio de nodo local . Los detalles de tu perfil pueden ser públicos según los ajustes del sistema." + +#: src/Module/Settings/Account.php:545 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "Tu perfil también será publicado en Directorios Globales Friendica (ej. %s)." + +#: src/Module/Settings/Account.php:558 +msgid "Account Settings" +msgstr "Configuración de Cuenta" + +#: src/Module/Settings/Account.php:559 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "Tu dirección de Identidad es '%s' o '%s'." + +#: src/Module/Settings/Account.php:566 +msgid "Password Settings" +msgstr "Configuración de Contraseña" + +#: src/Module/Settings/Account.php:568 +msgid "Leave password fields blank unless changing" +msgstr "Deja la contraseña en blanco si no quieres cambiarla" + +#: src/Module/Settings/Account.php:570 +msgid "Password:" +msgstr "Contraseña:" + +#: src/Module/Settings/Account.php:570 +msgid "Your current password to confirm the changes of the email address" +msgstr "Tu contraseña actual para confirmar los cambios de cuenta de corréo." + +#: src/Module/Settings/Account.php:573 +msgid "Delete OpenID URL" +msgstr "Borrar URL de OpenID" + +#: src/Module/Settings/Account.php:575 +msgid "Basic Settings" +msgstr "Configuración Básica" + +#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "Nombre desplegable:" + +#: src/Module/Settings/Account.php:577 +msgid "Email Address:" +msgstr "Dirección de Correo:" + +#: src/Module/Settings/Account.php:578 +msgid "Your Timezone:" +msgstr "Zona horaria:" + +#: src/Module/Settings/Account.php:579 +msgid "Your Language:" +msgstr "Tu idioma:" + +#: src/Module/Settings/Account.php:579 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Selecciona el idioma que usará la interfaz Friendica y para enviarte correos." + +#: src/Module/Settings/Account.php:580 +msgid "Default Post Location:" +msgstr "Ubicación predeterminada:" + +#: src/Module/Settings/Account.php:581 +msgid "Use Browser Location:" +msgstr "Usar localización del navegador:" + +#: src/Module/Settings/Account.php:583 +msgid "Security and Privacy Settings" +msgstr "Configuración de Seguridad y Privacidad" + +#: src/Module/Settings/Account.php:585 +msgid "Maximum Friend Requests/Day:" +msgstr "Número máximo de solicitudes de amistad/día:" + +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 +msgid "(to prevent spam abuse)" +msgstr "(para prevenir abuso de basura)" + +#: src/Module/Settings/Account.php:587 +msgid "Allow your profile to be searchable globally?" +msgstr "¿Permitir tu perfil ser encontrado globalmente?" + +#: src/Module/Settings/Account.php:587 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "Activa esta configuración si quieres que otros te encuentren y sigan fácilmente. Tu perfil se podrá buscar en sistemas remotos. Esta configuración también determina si Friendica informará a los motores de búsqueda que tu perfil debe ser indexado o no." + +#: src/Module/Settings/Account.php:588 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "Esconde tu lista de contactos/amistades de otros a tu perfil?" + +#: src/Module/Settings/Account.php:588 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "Se muestra una lista de tus contactos en tu Perfil. Activar esta opción para deshabilitar la visualización de tu lista de contactos." + +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "" +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "Make public posts unlisted" +msgstr "No listar mis artículos públicos" + +#: src/Module/Settings/Account.php:590 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "Tus publicaciones públicas no aparecerán en páginas de la comunidad ni en búsquedas, ni se enviaran a servidores de retransmisión. Sin embargo, aparecerán en artículos públicos de servidores remotos." + +#: src/Module/Settings/Account.php:591 +msgid "Make all posted pictures accessible" +msgstr "Hacer accesibles todas las fotos" + +#: src/Module/Settings/Account.php:591 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "Esta opción hace accesibles todas las imágenes a través del enlace directo. Este es una solución al problema que la mayoría de las redes no pueden manejar permisos en las imágenes. Las imágenes no públicas aún no serán visibles para elpúblico en tus álbumes de fotos." + +#: src/Module/Settings/Account.php:592 +msgid "Allow friends to post to your profile page?" +msgstr "¿Permitir que tus amigos publiquen en tu página de perfil?" + +#: src/Module/Settings/Account.php:592 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "Tus contactos pueden escribir artículos en tu perfil. Estas publicaciones se distribuirán a tus contactos" + +#: src/Module/Settings/Account.php:593 +msgid "Allow friends to tag your posts?" +msgstr "¿Permitir a los amigos etiquetar tus publicaciones?" + +#: src/Module/Settings/Account.php:593 +msgid "Your contacts can add additional tags to your posts." +msgstr "Tus contactos pueden añadir etiquetas adicionales a tus artículos." + +#: src/Module/Settings/Account.php:594 +msgid "Permit unknown people to send you private mail?" +msgstr "¿Permitir que desconocidos te manden correos privados?" + +#: src/Module/Settings/Account.php:594 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "Usuarios de Friendica pueden enviarte mensajes privados incluso si no están en tu lista de contactos." + +#: src/Module/Settings/Account.php:595 +msgid "Maximum private messages per day from unknown people:" +msgstr "Número máximo de mensajes diarios para desconocidos:" + +#: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "" + +#: src/Module/Settings/Account.php:598 +msgid "Default Post Permissions" +msgstr "Permisos por defecto para publicaciones" + +#: src/Module/Settings/Account.php:602 +msgid "Expiration settings" +msgstr "Configuración de Expiración" + +#: src/Module/Settings/Account.php:603 +msgid "Automatically expire posts after this many days:" +msgstr "Publicaciones caducarán solas después de estos días:" + +#: src/Module/Settings/Account.php:603 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Si dejas vacío no caducarán. Publicaciones caducadas serán borradas" + +#: src/Module/Settings/Account.php:604 +msgid "Expire posts" +msgstr "Caducar artículos" + +#: src/Module/Settings/Account.php:604 +msgid "When activated, posts and comments will be expired." +msgstr "Cuando se activa, artículos y comentarios caducarán." + +#: src/Module/Settings/Account.php:605 +msgid "Expire personal notes" +msgstr "Caducar Anotaciones" + +#: src/Module/Settings/Account.php:605 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "Si se activa, las Anotaciones en tu Perfil caducarán." + +#: src/Module/Settings/Account.php:606 +msgid "Expire starred posts" +msgstr "Caducar artículos Destacados" + +#: src/Module/Settings/Account.php:606 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "Destacar las publicaciones evita que caduquen. Ese comportamiento cambiacon este ajuste." + +#: src/Module/Settings/Account.php:607 +msgid "Only expire posts by others" +msgstr "Solo caducar artículos de otros" + +#: src/Module/Settings/Account.php:607 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "Cuando se activa, publicaciones propias nunca caducan. Esta configuración solo es válida para las artículos recibidas." + +#: src/Module/Settings/Account.php:610 +msgid "Notification Settings" +msgstr "Configuración de Notificaciones" + +#: src/Module/Settings/Account.php:611 +msgid "Send a notification email when:" +msgstr "Enviar notificación por correo cuando:" + +#: src/Module/Settings/Account.php:612 +msgid "You receive an introduction" +msgstr "Recibas una presentación" + +#: src/Module/Settings/Account.php:613 +msgid "Your introductions are confirmed" +msgstr "Tu presentación sea confirmada" + +#: src/Module/Settings/Account.php:614 +msgid "Someone writes on your profile wall" +msgstr "Alguien escriba en tu perfil" + +#: src/Module/Settings/Account.php:615 +msgid "Someone writes a followup comment" +msgstr "Alguien escriba en un comentario que sigo" + +#: src/Module/Settings/Account.php:616 +msgid "You receive a private message" +msgstr "Recibas un mensaje privado" + +#: src/Module/Settings/Account.php:617 +msgid "You receive a friend suggestion" +msgstr "Recibas una sugerencia de amistad" + +#: src/Module/Settings/Account.php:618 +msgid "You are tagged in a post" +msgstr "Seas etiquetado en un artículo" + +#: src/Module/Settings/Account.php:620 +msgid "Create a desktop notification when:" +msgstr "" + +#: src/Module/Settings/Account.php:621 +msgid "Someone tagged you" +msgstr "" + +#: src/Module/Settings/Account.php:622 +msgid "Someone directly commented on your post" +msgstr "" + +#: src/Module/Settings/Account.php:623 +msgid "Someone liked your content" +msgstr "" + +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +msgid "Can only be enabled, when the direct comment notification is enabled." +msgstr "" + +#: src/Module/Settings/Account.php:624 +msgid "Someone shared your content" +msgstr "" + +#: src/Module/Settings/Account.php:625 +msgid "Someone commented in your thread" +msgstr "" + +#: src/Module/Settings/Account.php:626 +msgid "Someone commented in a thread where you commented" +msgstr "" + +#: src/Module/Settings/Account.php:627 +msgid "Someone commented in a thread where you interacted" +msgstr "" + +#: src/Module/Settings/Account.php:629 +msgid "Activate desktop notifications" +msgstr "Activar notificaciones" + +#: src/Module/Settings/Account.php:629 +msgid "Show desktop popup on new notifications" +msgstr "Mostrar notificaciones emergentes en caso de nuevos eventos." + +#: src/Module/Settings/Account.php:633 +msgid "Text-only notification emails" +msgstr "Notificaciones de correo solo en texto" + +#: src/Module/Settings/Account.php:635 +msgid "Send text only notification emails, without the html part" +msgstr "Enviar correo de notificación en formato Solo Texto sin html" + +#: src/Module/Settings/Account.php:639 +msgid "Show detailled notifications" +msgstr "Mostrar notificaciones detalladas" + +#: src/Module/Settings/Account.php:641 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "Por default, notificaciones se condensan en una sola notificación por artículo. Cuando se habilita se muestran cada notificación." + +#: src/Module/Settings/Account.php:645 +msgid "Show notifications of ignored contacts" +msgstr "Mostrar notificación de Contactos Ignorados" + +#: src/Module/Settings/Account.php:647 +msgid "" +"You don't see posts from ignored contacts. But you still see their comments." +" This setting controls if you want to still receive regular notifications " +"that are caused by ignored contacts or not." +msgstr "No ves publicaciones de contactos ignorados. Pero todavía ves sus comentarios. Esta configuración controla si aún desea recibir notificaciones regulares causadas por contactos ignorados o no." + +#: src/Module/Settings/Account.php:650 +msgid "Advanced Account/Page Type Settings" +msgstr "Configuración avanzada de tipo de Cuenta/Página" + +#: src/Module/Settings/Account.php:651 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambiar el comportamiento de esta cuenta para situaciones especiales" + +#: src/Module/Settings/Account.php:654 +msgid "Import Contacts" +msgstr "Importar contactos" + +#: src/Module/Settings/Account.php:655 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "Subir archivo CSV que contenga identificador de tus cuentas seguidas en elprimera columna que exportó desde la cuenta anterior." + +#: src/Module/Settings/Account.php:656 +msgid "Upload File" +msgstr "Subir archivo" + +#: src/Module/Settings/Account.php:659 +msgid "Relocate" +msgstr "Relocalizar" + +#: src/Module/Settings/Account.php:660 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "Si migró este perfil desde otro servidor y algunos contactos no reciben sus publicaciones intente oprimiendo esta opción." + +#: src/Module/Settings/Account.php:661 +msgid "Resend relocate message to contacts" +msgstr "Reenviar mensaje de relocalización a contactos" + +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "Configuración de Añadidos" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "Ningún Añadido configurado" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "Error al conectar con el Correo mediante esa configuración." + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "OStatus (GNU Social)" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "Acceso por correo deshabilitado en este sitio." + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "Ninguno" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "Configuración General de Medios Sociales" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "" + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "Agregar título del link" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "Si se activa, el título del link se añade como titulo en artículos de Diaspora. Esto es bueno con contactos \"remote-self\" que comparten contenido." + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "Reparar subscripciones OStatus" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "Configuración de Correo/Buzón" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Si quieres comunicarte con contactos de correo con este servicio (opcional), especifica cómo conectar con tu buzón." + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "Última comprobación de correo éxitosa:" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "Nombre del servidor IMAP:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "Puerto IMAP:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "Seguridad:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "Usuario de Correo:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "Contraseña de Correo:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "Dirección de respuesta:" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "Enviar notificaciones públicas a todos los correos:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "Acción al importar:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "Mover a un folder" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "Mover al folder:" + +#: src/Module/Settings/Delegation.php:54 +msgid "Delegation successfully granted." +msgstr "Se autorizó delegación." + +#: src/Module/Settings/Delegation.php:56 +msgid "Parent user not found, unavailable or password doesn't match." +msgstr "Usuario padre no encontrado, o no coincide contraseña." + +#: src/Module/Settings/Delegation.php:60 +msgid "Delegation successfully revoked." +msgstr "Delegación revocada con éxito." + +#: src/Module/Settings/Delegation.php:82 +#: src/Module/Settings/Delegation.php:104 +msgid "" +"Delegated administrators can view but not change delegation permissions." +msgstr "Administradores delegados pueden ver pero no cambiar permisos delegados." + +#: src/Module/Settings/Delegation.php:96 +msgid "Delegate user not found." +msgstr "Usuario delegado no encontrado." + +#: src/Module/Settings/Delegation.php:144 +msgid "No parent user" +msgstr "No hay usuario padre" + +#: src/Module/Settings/Delegation.php:155 +#: src/Module/Settings/Delegation.php:166 +msgid "Parent User" +msgstr "Usuario Padre" + +#: src/Module/Settings/Delegation.php:163 +msgid "Additional Accounts" +msgstr "Cuentas adicionales" + +#: src/Module/Settings/Delegation.php:164 +msgid "" +"Register additional accounts that are automatically connected to your " +"existing account so you can manage them from this account." +msgstr "Registre cuentas adicionales que son automáticamente conectadas con tu cuenta existente de forma que puedas manejarlas desde aquí." + +#: src/Module/Settings/Delegation.php:165 +msgid "Register an additional account" +msgstr "Registrar cuenta adicional" + +#: src/Module/Settings/Delegation.php:169 +msgid "" +"Parent users have total control about this account, including the account " +"settings. Please double check whom you give this access." +msgstr "Usuarios padres tendrán control total en esta cuenta, incluyendo ajustes. Cheque doblemente a quien le das acceso." + +#: src/Module/Settings/Delegation.php:173 +msgid "Delegates" +msgstr "Delegados" + +#: src/Module/Settings/Delegation.php:175 +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 "Los delegados tienen la capacidad de gestionar todos los aspectos de esta cuenta/página, excepto los ajustes básicos de la cuenta. Por favor, no delegues tu cuenta personal a nadie en quien no confíes completamente." + +#: src/Module/Settings/Delegation.php:176 +msgid "Existing Page Delegates" +msgstr "Delegados actuales de la página" + +#: src/Module/Settings/Delegation.php:178 +msgid "Potential Delegates" +msgstr "Delegados potenciales" + +#: src/Module/Settings/Delegation.php:181 +msgid "Add" +msgstr "Añadir" + +#: src/Module/Settings/Delegation.php:182 +msgid "No entries." +msgstr "Sin entradas." + +#: src/Module/Settings/Display.php:146 +msgid "The theme you chose isn't available." +msgstr "El tema seleccionado no disponible." + +#: src/Module/Settings/Display.php:186 +#, php-format +msgid "%s - (Unsupported)" +msgstr "%s – (No puede usarse)" + +#: src/Module/Settings/Display.php:221 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:222 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:223 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:224 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:259 +msgid "Display Settings" +msgstr "Configuración Tema/Visualización" + +#: src/Module/Settings/Display.php:261 +msgid "General Theme Settings" +msgstr "Ajustes generales de tema" + +#: src/Module/Settings/Display.php:262 +msgid "Custom Theme Settings" +msgstr "Ajustes personalizados de tema" + +#: src/Module/Settings/Display.php:263 +msgid "Content Settings" +msgstr "Ajustes de contenido" + +#: src/Module/Settings/Display.php:264 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 +msgid "Theme settings" +msgstr "Configuración del Tema" + +#: src/Module/Settings/Display.php:265 +msgid "Timelines" +msgstr "" + +#: src/Module/Settings/Display.php:272 +msgid "Display Theme:" +msgstr "Utilizar tema:" + +#: src/Module/Settings/Display.php:273 +msgid "Mobile Theme:" +msgstr "Tema móvil:" + +#: src/Module/Settings/Display.php:276 +msgid "Number of items to display per page:" +msgstr "Número de elementos a mostrar por página:" + +#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277 +msgid "Maximum of 100 items" +msgstr "Máximo 100 elementos" + +#: src/Module/Settings/Display.php:277 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Cantidad de objetos a visualizar cuando se usa un móvil" + +#: src/Module/Settings/Display.php:278 +msgid "Update browser every xx seconds" +msgstr "Actualizar navegador cada xx segundos" + +#: src/Module/Settings/Display.php:278 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Minimo 10 segundos. Ingrese -1 para deshabilitar." + +#: src/Module/Settings/Display.php:279 +msgid "Display emoticons" +msgstr "" + +#: src/Module/Settings/Display.php:279 +msgid "When enabled, emoticons are replaced with matching symbols." +msgstr "" + +#: src/Module/Settings/Display.php:280 +msgid "Infinite scroll" +msgstr "Pagina infinita (scroll)" + +#: src/Module/Settings/Display.php:280 +msgid "Automatic fetch new items when reaching the page end." +msgstr "Obtener nuevos artículos cuando alcance el final de página." + +#: src/Module/Settings/Display.php:281 +msgid "Enable Smart Threading" +msgstr "" + +#: src/Module/Settings/Display.php:281 +msgid "Enable the automatic suppression of extraneous thread indentation." +msgstr "" + +#: src/Module/Settings/Display.php:282 +msgid "Display the Dislike feature" +msgstr "" + +#: src/Module/Settings/Display.php:282 +msgid "" +"Display the Dislike button and dislike reactions on posts and comments." +msgstr "" + +#: src/Module/Settings/Display.php:283 +msgid "Display the resharer" +msgstr "Desplegar reenviar" + +#: src/Module/Settings/Display.php:283 +msgid "Display the first resharer as icon and text on a reshared item." +msgstr "Desplegar primer reenvío con un icono y texto en artículo reenviado." + +#: src/Module/Settings/Display.php:284 +msgid "Stay local" +msgstr "Quedarse Local" + +#: src/Module/Settings/Display.php:284 +msgid "Don't go to a remote system when following a contact link." +msgstr "No ir a sistema remoto cuando siga a un link de un contacto." + +#: src/Module/Settings/Display.php:285 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:285 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Timelines for the network page:" +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Select all the timelines that you want to see on your network page." +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Channel languages:" +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Select all languages that you want to see in your channels." +msgstr "" + +#: src/Module/Settings/Display.php:290 +msgid "Beginning of week:" +msgstr "Principio de la semana:" + +#: src/Module/Settings/Display.php:291 +msgid "Default calendar view:" +msgstr "" + +#: src/Module/Settings/Display.php:300 src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:312 +#, php-format +msgid "%s: %s" +msgstr "" + +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "Opciones Adicionales" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Aplicaciones conectadas" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "Quitar autorización" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:167 +msgid "Profile couldn't be updated." +msgstr "No puede actualizarse perfil." + +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 +msgid "Label:" +msgstr "Etiqueta:" + +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 +msgid "Value:" +msgstr "Valor:" + +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 +msgid "Field Permissions" +msgstr "Permisos del campo" + +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 +msgid "(click to open/close)" +msgstr "(pulsa para abrir/cerrar)" + +#: src/Module/Settings/Profile/Index.php:224 +msgid "Add a new profile field" +msgstr "Añadir campo de perfil" + +#: src/Module/Settings/Profile/Index.php:247 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:249 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:255 +msgid "Profile Actions" +msgstr "Acciones de perfil" + +#: src/Module/Settings/Profile/Index.php:256 +msgid "Edit Profile Details" +msgstr "Editar detalles de tu perfil" + +#: src/Module/Settings/Profile/Index.php:258 +msgid "Change Profile Photo" +msgstr "Cambiar imagen del Perfil" + +#: src/Module/Settings/Profile/Index.php:261 +msgid "Profile picture" +msgstr "Imagen del perfil" + +#: src/Module/Settings/Profile/Index.php:262 +msgid "Location" +msgstr "Ubicación" + +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 +msgid "Miscellaneous" +msgstr "Varios" + +#: src/Module/Settings/Profile/Index.php:264 +msgid "Custom Profile Fields" +msgstr "Campos personalizados de perfil" + +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +msgid "Upload Profile Photo" +msgstr "Subir foto del Perfil" + +#: src/Module/Settings/Profile/Index.php:266 +#, 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 circles.

    " +msgstr "" + +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "Dirección" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "Localidad/Ciudad:" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "Región/Estado:" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "Código/Zona postal:" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "País" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "Dirección XMPP (Jabber):" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "Dirección de tu página:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "Palabras clave públicas:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Utilizadas para sugerir amigos potenciales, otros pueden verlo)" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "Palabras clave privadas:" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Utilizadas para buscar perfiles, nunca se muestra a otros)" + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 +#: src/Module/Settings/Profile/Photo/Index.php:101 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Ha fallado la reducción de las dimensiones de la imagen [%s]." + +#: src/Module/Settings/Profile/Photo/Crop.php:150 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente." + +#: src/Module/Settings/Profile/Photo/Crop.php:155 +msgid "Unable to process image" +msgstr "Imposible procesar la imagen" + +#: src/Module/Settings/Profile/Photo/Crop.php:174 +msgid "Photo not found." +msgstr "No se encontró foto." + +#: src/Module/Settings/Profile/Photo/Crop.php:196 +msgid "Profile picture successfully updated." +msgstr "Foto de perfil actualizado." + +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 +msgid "Crop Image" +msgstr "Recortar imagen" + +#: src/Module/Settings/Profile/Photo/Crop.php:223 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Por favor, ajusta el recorte de la imagen para optimizarla." + +#: src/Module/Settings/Profile/Photo/Crop.php:225 +msgid "Use Image As Is" +msgstr "Usar imagen como esta" + +#: src/Module/Settings/Profile/Photo/Index.php:45 +msgid "Missing uploaded image." +msgstr "Falta la imágen subida" + +#: src/Module/Settings/Profile/Photo/Index.php:124 +msgid "Profile Picture Settings" +msgstr "Ajustes de Foto del Perfil" + +#: src/Module/Settings/Profile/Photo/Index.php:125 +msgid "Current Profile Picture" +msgstr "Foto de Perfil Actual" + +#: src/Module/Settings/Profile/Photo/Index.php:126 +msgid "Upload Profile Picture" +msgstr "Subir foto del Perfil" + +#: src/Module/Settings/Profile/Photo/Index.php:127 +msgid "Upload Picture:" +msgstr "Subir foto:" + +#: src/Module/Settings/Profile/Photo/Index.php:132 +msgid "or" +msgstr "o" + +#: src/Module/Settings/Profile/Photo/Index.php:134 +msgid "skip this step" +msgstr "saltar este paso" + +#: src/Module/Settings/Profile/Photo/Index.php:136 +msgid "select a photo from your photo albums" +msgstr "elige una foto de tus álbumes" + +#: src/Module/Settings/RemoveMe.php:94 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[Friendica Sistema de Notificaciones]" + +#: src/Module/Settings/RemoveMe.php:94 +msgid "User deleted their account" +msgstr "Usuario borró su cienta" + +#: src/Module/Settings/RemoveMe.php:95 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "En tu nodo de Friendica, un usuario eliminó su cuenta. Asegúrese de quesus datos se eliminan de los respaldos." + +#: src/Module/Settings/RemoveMe.php:96 +#, php-format +msgid "The user id is %d" +msgstr "El Id de Usuario es %d" + +#: src/Module/Settings/RemoveMe.php:108 +msgid "Your user account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:128 +msgid "Remove My Account" +msgstr "Eliminar mi cuenta" + +#: src/Module/Settings/RemoveMe.php:129 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Esto eliminará por completo tu cuenta. Una vez hecho no puede deshacerse." + +#: src/Module/Settings/RemoveMe.php:131 +msgid "Please enter your password for verification:" +msgstr "Introduce tu contraseña para verificación:" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "" + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 +msgid "Please enter your password to access this page." +msgstr "Ingresa tu contraseña para acceder a la página." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 +msgid "App-specific password generation failed: The description is empty." +msgstr "Generación de Contraseña de la App fallida: Sin explicación" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +msgid "" +"App-specific password generation failed: This description already exists." +msgstr "Generación de contraseña de App fallida: Ya existe descripción." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 +msgid "New app-specific password generated." +msgstr "Nueva contraseña de la App generada." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 +msgid "App-specific passwords successfully revoked." +msgstr "Contraseñas de la App fueron revocadas." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 +msgid "App-specific password successfully revoked." +msgstr "Contraseña de la App revocada." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +msgid "Two-factor app-specific passwords" +msgstr "Contraseña de la App de 2 Factores" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 +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 "

    Contraseñas de la App son contraseñas aleatorias que se usan en lugar de la contraseña normal para autenticarte usando Apps de 3ras compañías que no soportan autenticación de 2 factores.

    " + +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +msgid "" +"Make sure to copy your new app-specific password now. You won’t be able to " +"see it again!" +msgstr "Asegurate de copiar tu contraseña de la App ahora. No podrás verla de nuevo!" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +msgid "Description" +msgstr "Descripción" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 +msgid "Last Used" +msgstr "Usada desde" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 +msgid "Revoke" +msgstr "Revocar" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +msgid "Revoke All" +msgstr "Revocar todo" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +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 "Cuando generas nueva contraseña de la App, debes verla de inmediato, se te mostrará solo una vez cuando la generes." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 +msgid "Generate new app-specific password" +msgstr "Generar nueva contraseña de la App" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 +msgid "Friendiqa on my Fairphone 2..." +msgstr "Friendica en mimóvil 2" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +msgid "Generate" +msgstr "Generar" + +#: src/Module/Settings/TwoFactor/Index.php:68 +msgid "Two-factor authentication successfully disabled." +msgstr "La autenticación de dos factores se ha desactivado correctamente." + +#: src/Module/Settings/TwoFactor/Index.php:120 +msgid "" +"

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

    " +msgstr "

    Usa una aplicación en un móvil para obtener códigos de autentificación de 2 factores cuando ingreses.

    " + +#: src/Module/Settings/TwoFactor/Index.php:124 +msgid "Authenticator app" +msgstr "Autenticador" + +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Configured" +msgstr "Configurado" + +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Not Configured" +msgstr "Sin configurar" + +#: src/Module/Settings/TwoFactor/Index.php:126 +msgid "

    You haven't finished configuring your authenticator app.

    " +msgstr "

    No has concluido de configurar tu app Autentificador.

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

    Your authenticator app is correctly configured.

    " +msgstr "

    Tu autenticador está configurado correctamente.

    " + +#: src/Module/Settings/TwoFactor/Index.php:129 +msgid "Recovery codes" +msgstr "Códigos de recuperación" + +#: src/Module/Settings/TwoFactor/Index.php:130 +msgid "Remaining valid codes" +msgstr "Códigos válidos restantes" + +#: src/Module/Settings/TwoFactor/Index.php:132 +msgid "" +"

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

    " +msgstr "

    Estos códigos de una sola vez pueden reemplazar la app Autenticador si perdieras acceso a ella.

    " + +#: src/Module/Settings/TwoFactor/Index.php:134 +msgid "App-specific passwords" +msgstr "Contraseñas específicas de la App" + +#: src/Module/Settings/TwoFactor/Index.php:135 +msgid "Generated app-specific passwords" +msgstr "Generadas contraseñas específicas de App" + +#: src/Module/Settings/TwoFactor/Index.php:137 +msgid "" +"

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

    " +msgstr "

    Estas contraseñas generadas automáticamente te permiten entrar con apps que no permitan Autenticación de 2 factores.

    " + +#: src/Module/Settings/TwoFactor/Index.php:140 +msgid "Current password:" +msgstr "Contraseña actual" + +#: src/Module/Settings/TwoFactor/Index.php:140 +msgid "" +"You need to provide your current password to change two-factor " +"authentication settings." +msgstr "necesitas tu contraseña actual para cambiar los ajustes de autenticación de 2 factores." + +#: src/Module/Settings/TwoFactor/Index.php:141 +msgid "Enable two-factor authentication" +msgstr "Habilitar Autenticación de 2 factores" + +#: src/Module/Settings/TwoFactor/Index.php:142 +msgid "Disable two-factor authentication" +msgstr "Deshabilitar Autenticación de 2 factores" + +#: src/Module/Settings/TwoFactor/Index.php:143 +msgid "Show recovery codes" +msgstr "Mostrar códigos de recuperación" + +#: src/Module/Settings/TwoFactor/Index.php:144 +msgid "Manage app-specific passwords" +msgstr "Administrar contraseñas de la app" + +#: src/Module/Settings/TwoFactor/Index.php:145 +msgid "Manage trusted browsers" +msgstr "Administrar navegadores confiables" + +#: src/Module/Settings/TwoFactor/Index.php:146 +msgid "Finish app configuration" +msgstr "Completar configuración de la App" + +#: src/Module/Settings/TwoFactor/Recovery.php:80 +msgid "New recovery codes successfully generated." +msgstr "Nuevos códigos de recuperación generados." + +#: src/Module/Settings/TwoFactor/Recovery.php:106 +msgid "Two-factor recovery codes" +msgstr "Códigos de recuperación de 2 factores" + +#: src/Module/Settings/TwoFactor/Recovery.php:108 +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 "

    Puedes usar los códigos de recuperación si perdieras acceso al móvil y no pudieras recibir códigos de autenticación de 2 Factores.

    Guarda esto de manera segura! Si perdieras tu móvil sin tener los códigos de recuperación perderías el acceso a tu cuenta.

    " + +#: src/Module/Settings/TwoFactor/Recovery.php:110 +msgid "" +"When you generate new recovery codes, you must copy the new codes. Your old " +"codes won’t work anymore." +msgstr "Cuando generas nuevos códigos de recuperación, debes copiar los nuevos códigos. los anteriores ya no funcionarán." + +#: src/Module/Settings/TwoFactor/Recovery.php:111 +msgid "Generate new recovery codes" +msgstr "Generar nuevos códigos de recuperación" + +#: src/Module/Settings/TwoFactor/Recovery.php:113 +msgid "Next: Verification" +msgstr "Siguiente: Verificación" + +#: src/Module/Settings/TwoFactor/Trusted.php:84 +msgid "Trusted browsers successfully removed." +msgstr "Los navegadores de confianza se eliminaron correctamente." + +#: src/Module/Settings/TwoFactor/Trusted.php:94 +msgid "Trusted browser successfully removed." +msgstr "Navegador de confianza se eliminó correctamente." + +#: src/Module/Settings/TwoFactor/Trusted.php:136 +msgid "Two-factor Trusted Browsers" +msgstr "Navegadores de confianza de dos factores" + +#: src/Module/Settings/TwoFactor/Trusted.php:137 +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 "Los navegadores de confianza son navegadores individuales que eligió para omitir la autenticación de dos factores para acceder a Friendica. Utilice esta función con moderación, ya que puede anular el beneficio de la autenticación de dos factores." + +#: src/Module/Settings/TwoFactor/Trusted.php:138 +msgid "Device" +msgstr "Dispositivo" + +#: src/Module/Settings/TwoFactor/Trusted.php:139 +msgid "OS" +msgstr "OS/SO" + +#: src/Module/Settings/TwoFactor/Trusted.php:141 +msgid "Trusted" +msgstr "Confiable" + +#: src/Module/Settings/TwoFactor/Trusted.php:142 +msgid "Created At" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:143 +msgid "Last Use" +msgstr "Usada desde" + +#: src/Module/Settings/TwoFactor/Trusted.php:145 +msgid "Remove All" +msgstr "Borrar todo" + +#: src/Module/Settings/TwoFactor/Verify.php:91 +msgid "Two-factor authentication successfully activated." +msgstr "Se activó autenticación de 2 Factores." + +#: src/Module/Settings/TwoFactor/Verify.php:125 +#, 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 "

    O puedes ajustar manualmente la autenticación:

    \n
    \n\t
    Solicitante
    \n\t
    %s
    \n\t
    Cuenta
    \n\t
    %s
    \n\t
    Clave Secreta
    \n\t
    %s
    \n\t
    Tipo
    \n\t
    Basado en tiempo
    \n\t
    No. dígitos
    \n\t
    6
    \n\t
    Algoritmo de encriptación
    \n\t
    SHA-1
    \n
    " + +#: src/Module/Settings/TwoFactor/Verify.php:145 +msgid "Two-factor code verification" +msgstr "Verificación de código de 2 Factores" + +#: src/Module/Settings/TwoFactor/Verify.php:147 +msgid "" +"

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

    " +msgstr "

    Escanee este código QR con su aplicación de autenticación y envíe el código proporcionado.

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

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

    %s

    " +msgstr "

    O puede abrir la siguiente URL en su dispositivo móvil:

    %s

    " + +#: src/Module/Settings/TwoFactor/Verify.php:156 +msgid "Verify code and enable two-factor authentication" +msgstr "Verifica código y habilita autenticación de 2 Factores" + +#: src/Module/Settings/UserExport.php:90 +msgid "Export account" +msgstr "Exportar cuenta" + +#: src/Module/Settings/UserExport.php:90 +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 "Exporta la información de tu cuenta y tus contactos. Úsalo para guardar una copia de seguridad de tu cuenta y/o moverla a otro servidor." + +#: src/Module/Settings/UserExport.php:91 +msgid "Export all" +msgstr "Exportar todo" + +#: src/Module/Settings/UserExport.php:91 +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 "Exportar tu info de cuenta, contactos y artículos en formato JSON. Podría ser un archivo grande, y tomar mucho tiempo. Solo usalo para respaldo completo de tu cuenta (fotos no se exportan)" + +#: src/Module/Settings/UserExport.php:92 +msgid "Export Contacts to CSV" +msgstr "Exportar Contactos como archivo CSV" + +#: src/Module/Settings/UserExport.php:92 +msgid "" +"Export the list of the accounts you are following as CSV file. Compatible to" +" e.g. Mastodon." +msgstr "Exportar la lista de cuentas que sigues como archivo CSV. Compatible con ej. Mastodon." + +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:37 +msgid "" +"This node has blocked the top-level author or the author of the shared post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:38 +msgid "" +"You have ignored or blocked the top-level author or the author of the shared" +" post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:39 +msgid "" +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "" + +#: src/Module/Special/HTTPException.php:78 +msgid "Stack trace:" +msgstr "Seguimiento de pila:" + +#: src/Module/Special/HTTPException.php:83 +#, php-format +msgid "Exception thrown in %s:%d" +msgstr "Excepción lanzada en %s:%d" + +#: src/Module/Tos.php:58 src/Module/Tos.php:107 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" @@ -3547,28 +11117,108 @@ msgid "" "settings, it is not necessary for communication." msgstr "En el momento del registro, y para proporcionar comunicaciones entre la cuenta de usuario y sus contactos, el usuario debe proporcionar un nombre para mostrar (seudónimo), un nombre de usuario (apodo) y una dirección de correo que funcione. Los nombres seran visibles en tu página de perfil de la cuenta por cualquier visitante de la página, incluso si no se muestran otros detalles del perfil. La dirección de correo solo se usará para enviar notificaciones al usuario sobre interacciones, pero no será visible. La lista de una cuenta en el directorio de usuarios del nodo o el directorio de usuarios global es opcional y se puede controlar en los Ajustes de Configuración, no es necesario para la comunicación." -#: src/Module/Tos.php:47 src/Module/Tos.php:89 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 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 "Estos datos son necesarios para la comunicación y se transmiten a los nodos de los socios de comunicación y se almacena allí. Los usuarios pueden ingresar datos privados que pueden ser transmitidos a las cuentas de los socios de comunicación." -#: src/Module/Tos.php:48 src/Module/Tos.php:90 +#: src/Module/Tos.php:60 src/Module/Tos.php:109 #, 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 "En cualquier momento, un usuario que haya iniciado sesión puede exportar los datos de su cuenta desde la Configuración de Cuenta. Si el usuario desea eliminar su cuenta, puede hacerlo en %1$s/Borrarme. La eliminación de la cuenta será permanente. La eliminación de los datos también se solicitará desde los nodos de los interlocutores." +"href=\"%1$s/settings/removeme\">%1$s/settings/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 "" -#: src/Module/Tos.php:51 src/Module/Tos.php:87 +#: src/Module/Tos.php:63 src/Module/Tos.php:106 msgid "Privacy Statement" msgstr "Declaración de Privacidad" +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "" + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "El artículo solicitado no existe o fue borrado." + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "Importar usuarios en sitios cerrados solo lo hace el Administrador." + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "Mover cuenta" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "Puedes importar una cuenta desde otro servidor de Friendica." + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "Necesitas exportar tu cuenta del antiguo servidor y subirla aquí. Volveremos a crear tu antigua cuenta con todos tus contactos aquí. También intentaremos de informar a tus amigos de que te has mudado." + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "Característica experimental. No podemos importar contactos desde la red OStatus (statusnet/identi.ca) o desde Diaspora*" + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "Archivo de la cuenta" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Para exportar el perfil vaya a \"Configuración -> Exportar sus datos personales\" y seleccione \"Exportar cuenta\"" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "Error decodificando el archivo de cuenta" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta friendica? " + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "La cuenta '%s' ya existe en este servidor!" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "Error al crear la cuenta" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contacto no importado" +msgstr[1] "%d contactos no importados" +msgstr[2] "%d contactos no importados" + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "Error al crear Perfil de Usuario" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "Hecho. Ahora podes ingresar con tu usuario y contraseña." + #: src/Module/Welcome.php:44 msgid "Welcome to Friendica" msgstr "Bienvenido a Friendica" @@ -3600,12 +11250,6 @@ msgid "" " join." msgstr "En tu página de Inicio Rápido - busca una introducción breve para tus pestañas de perfil y red, haz algunas conexiones nuevas, y busca algunos grupos a los que unirte." -#: 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 "Configuración" - #: src/Module/Welcome.php:53 msgid "Go to Your Settings" msgstr "Ir a tus Ajustes" @@ -3625,10 +11269,6 @@ msgid "" "potential friends know exactly how to find you." msgstr "Revisa las otras configuraciones, especialmente la configuración de privacidad. Un listado de directorio sin publicar es como tener un número de teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que tus amigos y amigos potenciales sepan cómo ponerse en contacto contigo." -#: src/Module/Welcome.php:58 src/Module/Settings/Profile/Index.php:248 -msgid "Upload Profile Photo" -msgstr "Subir foto del Perfil" - #: src/Module/Welcome.php:59 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " @@ -3709,15 +11349,15 @@ msgid "" msgstr "En el panel lateral de la página de Contactos existen varias herramientas para encontrar nuevos amigos. Podemos filtrar personas por sus intereses, buscar personas por nombre o por sus intereses, y ofrecerte sugerencias basadas en sus relaciones de la red. En un sitio nuevo, las sugerencias de amigos por lo general comienzan pasadas las 24 horas." #: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "Agrupa tus contactos" +msgid "Add Your Contacts To Circle" +msgstr "" #: 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 "Una vez que tengas algunos amigos, puedes organizarlos en grupos privados de conversación mediante el memnú en tu página de Contactos y luego puedes interactuar con cada grupo por separado desde tu página de Red." +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "" #: src/Module/Welcome.php:80 msgid "Why Aren't My Posts Public?" @@ -3744,4639 +11384,771 @@ msgid "" " features and resources." msgstr "Puedes consultar nuestra página de Ayuda para más información y recursos de ayuda." -#: src/Module/Settings/Display.php:105 -msgid "The theme you chose isn't available." -msgstr "El tema seleccionado no disponible." +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +msgid "{0} wants to follow you" +msgstr "" -#: src/Module/Settings/Display.php:134 src/Module/Admin/Site.php:449 -msgid "No special theme for mobile devices" -msgstr "No hay tema especial para dispositivos móviles" +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +msgid "{0} has started following you" +msgstr "" -#: src/Module/Settings/Display.php:142 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 #, php-format -msgid "%s - (Unsupported)" -msgstr "%s – (No puede usarse)" +msgid "%s liked %s's post" +msgstr "A %s le gusta el artículo de %s" -#: src/Module/Settings/Display.php:144 src/Module/Admin/Site.php:466 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 #, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Experimental)" +msgid "%s disliked %s's post" +msgstr "A %s no le gusta el artículo de %s" -#: src/Module/Settings/Display.php:188 -msgid "Display Settings" -msgstr "Configuración Tema/Visualización" - -#: 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 "Guardar configuración" - -#: src/Module/Settings/Display.php:190 -msgid "General Theme Settings" -msgstr "Ajustes generales de tema" - -#: src/Module/Settings/Display.php:191 -msgid "Custom Theme Settings" -msgstr "Ajustes personalizados de tema" - -#: src/Module/Settings/Display.php:192 -msgid "Content Settings" -msgstr "Ajustes de contenido" - -#: 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 "Configuración del Tema" - -#: src/Module/Settings/Display.php:194 -msgid "Calendar" -msgstr "Calendario" - -#: src/Module/Settings/Display.php:200 -msgid "Display Theme:" -msgstr "Utilizar tema:" - -#: src/Module/Settings/Display.php:201 -msgid "Mobile Theme:" -msgstr "Tema móvil:" - -#: src/Module/Settings/Display.php:204 -msgid "Number of items to display per page:" -msgstr "Número de elementos a mostrar por página:" - -#: src/Module/Settings/Display.php:204 src/Module/Settings/Display.php:205 -msgid "Maximum of 100 items" -msgstr "Máximo 100 elementos" - -#: src/Module/Settings/Display.php:205 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Cantidad de objetos a visualizar cuando se usa un móvil" - -#: src/Module/Settings/Display.php:206 -msgid "Update browser every xx seconds" -msgstr "Actualizar navegador cada xx segundos" - -#: src/Module/Settings/Display.php:206 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "Minimo 10 segundos. Ingrese -1 para deshabilitar." - -#: src/Module/Settings/Display.php:207 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "Actualizaciones automáticas solo el inicio de las páginas" - -#: 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 "Auto actualizar puede añadir nuevos artículos por encima de las páginas, pudiendo afectar la posición de visualización y afectar tu lectura si sucede en algún punto por encima de la página." - -#: src/Module/Settings/Display.php:208 -msgid "Don't show emoticons" -msgstr "No mostrar emoticones" - -#: src/Module/Settings/Display.php:208 -msgid "" -"Normally emoticons are replaced with matching symbols. This setting disables" -" this behaviour." -msgstr "Los emoticones pueden ser reemplazados por códigos similares. Esto lo deshabilita." - -#: src/Module/Settings/Display.php:209 -msgid "Infinite scroll" -msgstr "Pagina infinita (scroll)" - -#: src/Module/Settings/Display.php:209 -msgid "Automatic fetch new items when reaching the page end." -msgstr "Obtener nuevos artículos cuando alcance el final de página." - -#: src/Module/Settings/Display.php:210 -msgid "Disable Smart Threading" -msgstr "Deshabilitar hilos inteligentes" - -#: src/Module/Settings/Display.php:210 -msgid "Disable the automatic suppression of extraneous thread indentation." -msgstr "Deshabilitar la supresión automática de identación de hilos extras." - -#: src/Module/Settings/Display.php:211 -msgid "Hide the Dislike feature" -msgstr "Ocultar botón de (Disgusta)" - -#: src/Module/Settings/Display.php:211 -msgid "Hides the Dislike button and dislike reactions on posts and comments." -msgstr "Oculta botón (Disgusta) y sus reacciones en artículos y comentarios." - -#: src/Module/Settings/Display.php:212 -msgid "Display the resharer" -msgstr "Desplegar reenviar" - -#: src/Module/Settings/Display.php:212 -msgid "Display the first resharer as icon and text on a reshared item." -msgstr "Desplegar primer reenvío con un icono y texto en artículo reenviado." - -#: src/Module/Settings/Display.php:213 -msgid "Stay local" -msgstr "Quedarse Local" - -#: src/Module/Settings/Display.php:213 -msgid "Don't go to a remote system when following a contact link." -msgstr "No ir a sistema remoto cuando siga a un link de un contacto." - -#: src/Module/Settings/Display.php:215 -msgid "Beginning of week:" -msgstr "Principio de la semana:" - -#: 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 "Ingresa tu contraseña para acceder a la página." - -#: src/Module/Settings/TwoFactor/Verify.php:78 -msgid "Two-factor authentication successfully activated." -msgstr "Se activó autenticación de 2 Factores." - -#: 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 "Código inválido, reinténtelo" - -#: src/Module/Settings/TwoFactor/Verify.php:111 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 #, 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 "

    O puedes ajustar manualmente la autenticación:

    \n
    \n\t
    Solicitante
    \n\t
    %s
    \n\t
    Cuenta
    \n\t
    %s
    \n\t
    Clave Secreta
    \n\t
    %s
    \n\t
    Tipo
    \n\t
    Basado en tiempo
    \n\t
    No. dígitos
    \n\t
    6
    \n\t
    Algoritmo de encriptación
    \n\t
    SHA-1
    \n
    " - -#: src/Module/Settings/TwoFactor/Verify.php:131 -msgid "Two-factor code verification" -msgstr "Verificación de código de 2 Factores" +msgid "%s is attending %s's event" +msgstr "%s atenderá el evento de %s" -#: 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 "Ayuda" - -#: src/Module/Settings/TwoFactor/Verify.php:133 -msgid "" -"

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

    " -msgstr "

    Escanee este código QR con su aplicación de autenticación y envíe el código proporcionado.

    " - -#: src/Module/Settings/TwoFactor/Verify.php:135 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 #, php-format -msgid "" -"

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

    %s

    " -msgstr "

    O puede abrir la siguiente URL en su dispositivo móvil:

    %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 "Ingresa un código de ingreso desde tu app" - -#: src/Module/Settings/TwoFactor/Verify.php:142 -msgid "Verify code and enable two-factor authentication" -msgstr "Verifica código y habilita autenticación de 2 Factores" - -#: src/Module/Settings/TwoFactor/Index.php:67 -msgid "Two-factor authentication successfully disabled." -msgstr "La autenticación de dos factores se ha desactivado correctamente." - -#: src/Module/Settings/TwoFactor/Index.php:93 -msgid "Wrong Password" -msgstr "Contraseña incorrecta" - -#: src/Module/Settings/TwoFactor/Index.php:110 src/Module/BaseSettings.php:50 -#: src/Module/Security/TwoFactor/Verify.php:94 -msgid "Two-factor authentication" -msgstr "Ingreso de 2 factores" - -#: 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 "

    Usa una aplicación en un móvil para obtener códigos de autentificación de 2 factores cuando ingreses.

    " - -#: src/Module/Settings/TwoFactor/Index.php:117 -msgid "Authenticator app" -msgstr "Autenticador" - -#: src/Module/Settings/TwoFactor/Index.php:118 -msgid "Configured" -msgstr "Configurado" - -#: src/Module/Settings/TwoFactor/Index.php:118 -msgid "Not Configured" -msgstr "Sin configurar" - -#: src/Module/Settings/TwoFactor/Index.php:119 -msgid "

    You haven't finished configuring your authenticator app.

    " -msgstr "

    No has concluido de configurar tu app Autentificador.

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

    Your authenticator app is correctly configured.

    " -msgstr "

    Tu autenticador está configurado correctamente.

    " - -#: src/Module/Settings/TwoFactor/Index.php:122 -msgid "Recovery codes" -msgstr "Códigos de recuperación" - -#: src/Module/Settings/TwoFactor/Index.php:123 -msgid "Remaining valid codes" -msgstr "Códigos válidos restantes" - -#: 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 "

    Estos códigos de una sola vez pueden reemplazar la app Autenticador si perdieras acceso a ella.

    " - -#: src/Module/Settings/TwoFactor/Index.php:127 -msgid "App-specific passwords" -msgstr "Contraseñas específicas de la App" - -#: src/Module/Settings/TwoFactor/Index.php:128 -msgid "Generated app-specific passwords" -msgstr "Generadas contraseñas específicas de App" - -#: src/Module/Settings/TwoFactor/Index.php:130 -msgid "" -"

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

    " -msgstr "

    Estas contraseñas generadas automáticamente te permiten entrar con apps que no permitan Autenticación de 2 factores.

    " - -#: src/Module/Settings/TwoFactor/Index.php:133 -msgid "Current password:" -msgstr "Contraseña actual" - -#: src/Module/Settings/TwoFactor/Index.php:133 -msgid "" -"You need to provide your current password to change two-factor " -"authentication settings." -msgstr "necesitas tu contraseña actual para cambiar los ajustes de autenticación de 2 factores." - -#: src/Module/Settings/TwoFactor/Index.php:134 -msgid "Enable two-factor authentication" -msgstr "Habilitar Autenticación de 2 factores" +msgid "%s is not attending %s's event" +msgstr "%s no atenderá el evento %s" -#: src/Module/Settings/TwoFactor/Index.php:135 -msgid "Disable two-factor authentication" -msgstr "Deshabilitar Autenticación de 2 factores" - -#: src/Module/Settings/TwoFactor/Index.php:136 -msgid "Show recovery codes" -msgstr "Mostrar códigos de recuperación" - -#: src/Module/Settings/TwoFactor/Index.php:137 -msgid "Manage app-specific passwords" -msgstr "Administrar contraseñas de la app" - -#: src/Module/Settings/TwoFactor/Index.php:138 -msgid "Manage trusted browsers" -msgstr "Administrar navegadores confiables" - -#: src/Module/Settings/TwoFactor/Index.php:139 -msgid "Finish app configuration" -msgstr "Completar configuración de la App" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:70 -msgid "App-specific password generation failed: The description is empty." -msgstr "Generación de Contraseña de la App fallida: Sin explicación" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:73 -msgid "" -"App-specific password generation failed: This description already exists." -msgstr "Generación de contraseña de App fallida: Ya existe descripción." - -#: src/Module/Settings/TwoFactor/AppSpecific.php:77 -msgid "New app-specific password generated." -msgstr "Nueva contraseña de la App generada." - -#: src/Module/Settings/TwoFactor/AppSpecific.php:83 -msgid "App-specific passwords successfully revoked." -msgstr "Contraseñas de la App fueron revocadas." - -#: src/Module/Settings/TwoFactor/AppSpecific.php:93 -msgid "App-specific password successfully revoked." -msgstr "Contraseña de la App revocada." - -#: src/Module/Settings/TwoFactor/AppSpecific.php:114 -msgid "Two-factor app-specific passwords" -msgstr "Contraseña de la App de 2 Factores" - -#: 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 "

    Contraseñas de la App son contraseñas aleatorias que se usan en lugar de la contraseña normal para autenticarte usando Apps de 3ras compañías que no soportan autenticación de 2 factores.

    " - -#: 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 "Asegurate de copiar tu contraseña de la App ahora. No podrás verla de nuevo!" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:120 -msgid "Description" -msgstr "Descripción" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:121 -msgid "Last Used" -msgstr "Usada desde" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:122 -msgid "Revoke" -msgstr "Revocar" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:123 -msgid "Revoke All" -msgstr "Revocar todo" - -#: 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 "Cuando generas nueva contraseña de la App, debes verla de inmediato, se te mostrará solo una vez cuando la generes." - -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 -msgid "Generate new app-specific password" -msgstr "Generar nueva contraseña de la App" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 -msgid "Friendiqa on my Fairphone 2..." -msgstr "Friendica en mimóvil 2" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 -msgid "Generate" -msgstr "Generar" - -#: src/Module/Settings/TwoFactor/Recovery.php:66 -msgid "New recovery codes successfully generated." -msgstr "Nuevos códigos de recuperación generados." - -#: src/Module/Settings/TwoFactor/Recovery.php:92 -msgid "Two-factor recovery codes" -msgstr "Códigos de recuperación de 2 factores" - -#: 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 "

    Puedes usar los códigos de recuperación si perdieras acceso al móvil y no pudieras recibir códigos de autenticación de 2 Factores.

    Guarda esto de manera segura! Si perdieras tu móvil sin tener los códigos de recuperación perderías el acceso a tu cuenta.

    " - -#: 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 "Cuando generas nuevos códigos de recuperación, debes copiar los nuevos códigos. los anteriores ya no funcionarán." - -#: src/Module/Settings/TwoFactor/Recovery.php:97 -msgid "Generate new recovery codes" -msgstr "Generar nuevos códigos de recuperación" - -#: src/Module/Settings/TwoFactor/Recovery.php:99 -msgid "Next: Verification" -msgstr "Siguiente: Verificación" - -#: src/Module/Settings/TwoFactor/Trusted.php:49 -msgid "Trusted browsers successfully removed." -msgstr "Los navegadores de confianza se eliminaron correctamente." - -#: src/Module/Settings/TwoFactor/Trusted.php:59 -msgid "Trusted browser successfully removed." -msgstr "Navegador de confianza se eliminó correctamente." - -#: src/Module/Settings/TwoFactor/Trusted.php:97 -msgid "Two-factor Trusted Browsers" -msgstr "Navegadores de confianza de dos factores" - -#: 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 "Los navegadores de confianza son navegadores individuales que eligió para omitir la autenticación de dos factores para acceder a Friendica. Utilice esta función con moderación, ya que puede anular el beneficio de la autenticación de dos factores." - -#: src/Module/Settings/TwoFactor/Trusted.php:99 -msgid "Device" -msgstr "Dispositivo" - -#: src/Module/Settings/TwoFactor/Trusted.php:100 -msgid "OS" -msgstr "OS/SO" - -#: src/Module/Settings/TwoFactor/Trusted.php:101 include/conversation.php:1249 -#: mod/editpost.php:133 -msgid "Browser" -msgstr "Navegador" - -#: src/Module/Settings/TwoFactor/Trusted.php:102 -msgid "Trusted" -msgstr "Confiable" - -#: src/Module/Settings/TwoFactor/Trusted.php:103 -msgid "Last Use" -msgstr "Usada desde" - -#: src/Module/Settings/TwoFactor/Trusted.php:104 -#: src/Module/Settings/Delegation.php:179 mod/tagrm.php:126 -msgid "Remove" -msgstr "Eliminar" - -#: src/Module/Settings/TwoFactor/Trusted.php:105 -msgid "Remove All" -msgstr "Borrar todo" - -#: 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 -msgid "Profile Photos" -msgstr "Fotos del perfil" - -#: 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 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 #, php-format -msgid "Image size reduction [%s] failed." -msgstr "Ha fallado la reducción de las dimensiones de la imagen [%s]." - -#: src/Module/Settings/Profile/Photo/Crop.php:139 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente." +msgid "%s may attending %s's event" +msgstr "%s podría asistir al evento de %s" -#: src/Module/Settings/Profile/Photo/Crop.php:147 -msgid "Unable to process image" -msgstr "Imposible procesar la imagen" - -#: src/Module/Settings/Profile/Photo/Crop.php:166 -msgid "Photo not found." -msgstr "No se encontró foto." - -#: src/Module/Settings/Profile/Photo/Crop.php:190 -msgid "Profile picture successfully updated." -msgstr "Foto de perfil actualizado." - -#: src/Module/Settings/Profile/Photo/Crop.php:213 -#: src/Module/Settings/Profile/Photo/Crop.php:217 -msgid "Crop Image" -msgstr "Recortar imagen" - -#: src/Module/Settings/Profile/Photo/Crop.php:214 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Por favor, ajusta el recorte de la imagen para optimizarla." - -#: src/Module/Settings/Profile/Photo/Crop.php:216 -msgid "Use Image As Is" -msgstr "Usar imagen como esta" - -#: src/Module/Settings/Profile/Photo/Index.php:47 -msgid "Missing uploaded image." -msgstr "Falta la imágen subida" - -#: 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 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 #, php-format -msgid "Image exceeds size limit of %s" -msgstr "Imagen excede el tamaño de %s" - -#: src/Module/Settings/Profile/Photo/Index.php:70 mod/wall_upload.php:175 -#: mod/photos.php:725 -msgid "Unable to process image." -msgstr "Imposible procesar la imagen." - -#: src/Module/Settings/Profile/Photo/Index.php:97 mod/wall_upload.php:241 -#: mod/photos.php:754 -msgid "Image upload failed." -msgstr "Error al subir la imagen." - -#: src/Module/Settings/Profile/Photo/Index.php:126 -msgid "Profile Picture Settings" -msgstr "Ajustes de Foto del Perfil" - -#: src/Module/Settings/Profile/Photo/Index.php:127 -msgid "Current Profile Picture" -msgstr "Foto de Perfil Actual" - -#: src/Module/Settings/Profile/Photo/Index.php:128 -msgid "Upload Profile Picture" -msgstr "Subir foto del Perfil" - -#: src/Module/Settings/Profile/Photo/Index.php:129 -msgid "Upload Picture:" -msgstr "Subir foto:" - -#: src/Module/Settings/Profile/Photo/Index.php:130 mod/fbrowser.php:107 -#: mod/fbrowser.php:136 -msgid "Upload" -msgstr "Subir" - -#: src/Module/Settings/Profile/Photo/Index.php:134 -msgid "or" -msgstr "o" - -#: src/Module/Settings/Profile/Photo/Index.php:136 -msgid "skip this step" -msgstr "saltar este paso" +msgid "%s is now friends with %s" +msgstr "%s es ahora amigo de %s" -#: src/Module/Settings/Profile/Photo/Index.php:138 -msgid "select a photo from your photo albums" -msgstr "elige una foto de tus álbumes" - -#: src/Module/Settings/Profile/Index.php:85 -msgid "Profile Name is required." -msgstr "Se necesita un nombre de perfil." - -#: src/Module/Settings/Profile/Index.php:137 -msgid "Profile couldn't be updated." -msgstr "No puede actualizarse perfil." - -#: src/Module/Settings/Profile/Index.php:187 -#: src/Module/Settings/Profile/Index.php:207 -msgid "Label:" -msgstr "Etiqueta:" - -#: src/Module/Settings/Profile/Index.php:188 -#: src/Module/Settings/Profile/Index.php:208 -msgid "Value:" -msgstr "Valor:" - -#: src/Module/Settings/Profile/Index.php:198 -#: src/Module/Settings/Profile/Index.php:218 -msgid "Field Permissions" -msgstr "Permisos del campo" - -#: src/Module/Settings/Profile/Index.php:199 -#: src/Module/Settings/Profile/Index.php:219 -msgid "(click to open/close)" -msgstr "(pulsa para abrir/cerrar)" - -#: src/Module/Settings/Profile/Index.php:205 -msgid "Add a new profile field" -msgstr "Añadir campo de perfil" - -#: src/Module/Settings/Profile/Index.php:235 -msgid "Profile Actions" -msgstr "Acciones de perfil" - -#: src/Module/Settings/Profile/Index.php:236 -msgid "Edit Profile Details" -msgstr "Editar detalles de tu perfil" - -#: src/Module/Settings/Profile/Index.php:238 -msgid "Change Profile Photo" -msgstr "Cambiar imagen del Perfil" - -#: src/Module/Settings/Profile/Index.php:243 -msgid "Profile picture" -msgstr "Imagen del perfil" - -#: src/Module/Settings/Profile/Index.php:244 -msgid "Location" -msgstr "Ubicación" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "Custom Profile Fields" -msgstr "Campos personalizados de perfil" - -#: src/Module/Settings/Profile/Index.php:252 -msgid "Display name:" -msgstr "Nombre desplegable:" - -#: src/Module/Settings/Profile/Index.php:255 -msgid "Street Address:" -msgstr "Dirección" - -#: src/Module/Settings/Profile/Index.php:256 -msgid "Locality/City:" -msgstr "Localidad/Ciudad:" - -#: src/Module/Settings/Profile/Index.php:257 -msgid "Region/State:" -msgstr "Región/Estado:" - -#: src/Module/Settings/Profile/Index.php:258 -msgid "Postal/Zip Code:" -msgstr "Código/Zona postal:" - -#: src/Module/Settings/Profile/Index.php:259 -msgid "Country:" -msgstr "País" - -#: src/Module/Settings/Profile/Index.php:261 -msgid "XMPP (Jabber) address:" -msgstr "Dirección XMPP (Jabber):" - -#: src/Module/Settings/Profile/Index.php:261 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." -msgstr "La dirección XMPP será propagada entre sus contactos para que puedan seguirle." - -#: src/Module/Settings/Profile/Index.php:262 -msgid "Homepage URL:" -msgstr "Dirección de tu página:" - -#: src/Module/Settings/Profile/Index.php:263 -msgid "Public Keywords:" -msgstr "Palabras clave públicas:" - -#: src/Module/Settings/Profile/Index.php:263 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Utilizadas para sugerir amigos potenciales, otros pueden verlo)" - -#: src/Module/Settings/Profile/Index.php:264 -msgid "Private Keywords:" -msgstr "Palabras clave privadas:" - -#: src/Module/Settings/Profile/Index.php:264 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Utilizadas para buscar perfiles, nunca se muestra a otros)" - -#: src/Module/Settings/Profile/Index.php:265 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 #, 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 "

    Campos personalizados aparecen en tu perfil.

    \n\t\t\t\t

    Puedes usar BBCode en los campos.

    \n\t\t\t\t

    Reordenar para arrastrar campo título.

    \n\t\t\t\t

    Vacie la etiqueta para quitar un campo personalizado.

    \n\t\t\t\t

    Campos no públicos solo pueden verse por contactos Friendica seleccionados o contactos Friendica en grupos selecionados.

    " - -#: src/Module/Settings/Delegation.php:53 -msgid "Delegation successfully granted." -msgstr "Se autorizó delegación." - -#: src/Module/Settings/Delegation.php:55 -msgid "Parent user not found, unavailable or password doesn't match." -msgstr "Usuario padre no encontrado, o no coincide contraseña." - -#: src/Module/Settings/Delegation.php:59 -msgid "Delegation successfully revoked." -msgstr "Delegación revocada con éxito." +msgid "%s commented on %s's post" +msgstr "%s comentó el artículo de %s" -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 -msgid "" -"Delegated administrators can view but not change delegation permissions." -msgstr "Administradores delegados pueden ver pero no cambiar permisos delegados." - -#: src/Module/Settings/Delegation.php:95 -msgid "Delegate user not found." -msgstr "Usuario delegado no encontrado." - -#: src/Module/Settings/Delegation.php:143 -msgid "No parent user" -msgstr "No hay usuario padre" - -#: src/Module/Settings/Delegation.php:154 -#: src/Module/Settings/Delegation.php:165 -msgid "Parent User" -msgstr "Usuario Padre" - -#: src/Module/Settings/Delegation.php:162 -msgid "Additional Accounts" -msgstr "Cuentas adicionales" - -#: 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 "Registre cuentas adicionales que son automáticamente conectadas con tu cuenta existente de forma que puedas manejarlas desde aquí." - -#: src/Module/Settings/Delegation.php:164 -msgid "Register an additional account" -msgstr "Registrar cuenta adicional" - -#: 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 "Usuarios padres tendrán control total en esta cuenta, incluyendo ajustes. Cheque doblemente a quien le das acceso." - -#: src/Module/Settings/Delegation.php:171 src/Module/BaseSettings.php:94 -msgid "Manage Accounts" -msgstr "Gestionar cuentas" - -#: src/Module/Settings/Delegation.php:172 -msgid "Delegates" -msgstr "Delegados" +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#, php-format +msgid "%s created a new post" +msgstr "%s creó un nuevo artículo" -#: 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 "Los delegados tienen la capacidad de gestionar todos los aspectos de esta cuenta/página, excepto los ajustes básicos de la cuenta. Por favor, no delegues tu cuenta personal a nadie en quien no confíes completamente." +#: src/Navigation/Notifications/Factory/Introduction.php:133 +msgid "Friend Suggestion" +msgstr "Sugerencia de amistad" -#: src/Module/Settings/Delegation.php:175 -msgid "Existing Page Delegates" -msgstr "Delegados actuales de la página" +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "Friend/Connect Request" +msgstr "Solicitud de Amistad/Conexión" -#: src/Module/Settings/Delegation.php:177 -msgid "Potential Delegates" -msgstr "Delegados potenciales" +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "New Follower" +msgstr "Nuevo seguidor" -#: src/Module/Settings/Delegation.php:180 -msgid "Add" -msgstr "Añadir" +#: src/Navigation/Notifications/Factory/Notification.php:134 +#, php-format +msgid "%1$s wants to follow you" +msgstr "" -#: src/Module/Settings/Delegation.php:181 -msgid "No entries." -msgstr "Sin entradas." +#: src/Navigation/Notifications/Factory/Notification.php:136 +#, php-format +msgid "%1$s has started following you" +msgstr "" -#: src/Module/Settings/UserExport.php:59 -msgid "Export account" -msgstr "Exportar cuenta" +#: src/Navigation/Notifications/Factory/Notification.php:208 +#, php-format +msgid "%1$s liked your comment on %2$s" +msgstr "" -#: 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 "Exporta la información de tu cuenta y tus contactos. Úsalo para guardar una copia de seguridad de tu cuenta y/o moverla a otro servidor." +#: src/Navigation/Notifications/Factory/Notification.php:211 +#, php-format +msgid "%1$s liked your post %2$s" +msgstr "" -#: src/Module/Settings/UserExport.php:60 -msgid "Export all" -msgstr "Exportar todo" +#: src/Navigation/Notifications/Factory/Notification.php:218 +#, php-format +msgid "%1$s disliked your comment on %2$s" +msgstr "" -#: 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 "Exportar tu info de cuenta, contactos y artículos en formato JSON. Podría ser un archivo grande, y tomar mucho tiempo. Solo usalo para respaldo completo de tu cuenta (fotos no se exportan)" +#: src/Navigation/Notifications/Factory/Notification.php:221 +#, php-format +msgid "%1$s disliked your post %2$s" +msgstr "" -#: src/Module/Settings/UserExport.php:61 -msgid "Export Contacts to CSV" -msgstr "Exportar Contactos como archivo CSV" +#: src/Navigation/Notifications/Factory/Notification.php:228 +#, php-format +msgid "%1$s shared your comment %2$s" +msgstr "" -#: 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 "Exportar la lista de cuentas que sigues como archivo CSV. Compatible con ej. Mastodon." +#: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 +#, php-format +msgid "%1$s shared your post %2$s" +msgstr "" -#: src/Module/Settings/UserExport.php:67 src/Module/BaseSettings.php:108 -msgid "Export personal data" -msgstr "Exportación de datos personales" +#: src/Navigation/Notifications/Factory/Notification.php:235 +#: src/Navigation/Notifications/Factory/Notification.php:305 +#, php-format +msgid "%1$s shared the post %2$s from %3$s" +msgstr "" -#: src/Module/Admin/Features.php:76 +#: src/Navigation/Notifications/Factory/Notification.php:237 +#: src/Navigation/Notifications/Factory/Notification.php:307 #, php-format -msgid "Lock feature %s" -msgstr "Bloquear opción %s " +msgid "%1$s shared a post from %3$s" +msgstr "" -#: src/Module/Admin/Features.php:85 -msgid "Manage Additional Features" -msgstr "Administrar opciones adicionales" +#: src/Navigation/Notifications/Factory/Notification.php:239 +#: src/Navigation/Notifications/Factory/Notification.php:309 +#, php-format +msgid "%1$s shared the post %2$s" +msgstr "" -#: src/Module/Admin/DBSync.php:51 -msgid "Update has been marked successful" -msgstr "La actualización se ha completado con éxito" +#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:311 +#, php-format +msgid "%1$s shared a post" +msgstr "" -#: src/Module/Admin/DBSync.php:59 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Actualización de base de datos %s fue aplicada con éxito." +msgid "%1$s wants to attend your event %2$s" +msgstr "" -#: src/Module/Admin/DBSync.php:61 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "El paso de actualización de la estructura de la base de datos %s fallo con el mensaje de error: %s" +msgid "%1$s does not want to attend your event %2$s" +msgstr "" -#: src/Module/Admin/DBSync.php:76 +#: src/Navigation/Notifications/Factory/Notification.php:263 #, php-format -msgid "Executing %s failed with error: %s" -msgstr "Paso %s fallo con el error: %s" +msgid "%1$s maybe wants to attend your event %2$s" +msgstr "" -#: src/Module/Admin/DBSync.php:78 +#: src/Navigation/Notifications/Factory/Notification.php:270 #, php-format -msgid "Update %s was successfully applied." -msgstr "Actualización %s aplicada con éxito." +msgid "%1$s tagged you on %2$s" +msgstr "" -#: src/Module/Admin/DBSync.php:81 +#: src/Navigation/Notifications/Factory/Notification.php:274 #, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "La actualización %s no ha informado, se desconoce el estado." +msgid "%1$s replied to you on %2$s" +msgstr "" -#: src/Module/Admin/DBSync.php:84 +#: src/Navigation/Notifications/Factory/Notification.php:278 #, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "No había función adicional de actualización %s que necesitaba ser requerida." +msgid "%1$s commented in your thread %2$s" +msgstr "" -#: src/Module/Admin/DBSync.php:106 -msgid "No failed updates." -msgstr "Actualizaciones sin fallos." +#: src/Navigation/Notifications/Factory/Notification.php:282 +#, php-format +msgid "%1$s commented on your comment %2$s" +msgstr "" -#: src/Module/Admin/DBSync.php:107 -msgid "Check database structure" -msgstr "Revisar estructura de la base de datos" +#: src/Navigation/Notifications/Factory/Notification.php:289 +#, php-format +msgid "%1$s commented in their thread %2$s" +msgstr "" -#: src/Module/Admin/DBSync.php:112 -msgid "Failed Updates" -msgstr "Actualizaciones fallidas" +#: src/Navigation/Notifications/Factory/Notification.php:291 +#, php-format +msgid "%1$s commented in their thread" +msgstr "" -#: src/Module/Admin/DBSync.php:113 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "No se incluyen las anteriores a la 1139, que no indicaban su estado." +#: src/Navigation/Notifications/Factory/Notification.php:293 +#, php-format +msgid "%1$s commented in the thread %2$s from %3$s" +msgstr "" -#: src/Module/Admin/DBSync.php:114 -msgid "Mark success (if update was manually applied)" -msgstr "Marcar como correcta (si actualizaste manualmente)" +#: src/Navigation/Notifications/Factory/Notification.php:295 +#, php-format +msgid "%1$s commented in the thread from %3$s" +msgstr "" -#: src/Module/Admin/DBSync.php:115 -msgid "Attempt to execute this update step automatically" -msgstr "Intentando ejecutar este paso automáticamente" +#: src/Navigation/Notifications/Factory/Notification.php:300 +#, php-format +msgid "%1$s commented on your thread %2$s" +msgstr "" -#: src/Module/Admin/Addons/Details.php:65 -msgid "Addon not found." -msgstr "Añadido no encontrado." +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 +msgid "[Friendica:Notify]" +msgstr "[Friendica:Notificar]" -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 +#: src/Navigation/Notifications/Repository/Notify.php:293 #, php-format -msgid "Addon %s disabled." -msgstr "Añadido %s deshabilitado." +msgid "%s New mail received at %s" +msgstr "%s Nuevo correo recibido %s" -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 +#: src/Navigation/Notifications/Repository/Notify.php:295 #, php-format -msgid "Addon %s enabled." -msgstr "Añadido %s habilitado." - -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:46 -msgid "Disable" -msgstr "Desactivar" +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s te envió mensaje privado a las %2$s." -#: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 -msgid "Enable" -msgstr "Activar" +#: src/Navigation/Notifications/Repository/Notify.php:296 +msgid "a private message" +msgstr "un mensaje privado" -#: 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 "Administración" - -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:92 -msgid "Toggle" -msgstr "Activar" +#: src/Navigation/Notifications/Repository/Notify.php:296 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s te envió %2$s." -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 -msgid "Author: " -msgstr "Autor: " +#: src/Navigation/Notifications/Repository/Notify.php:298 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Visita %s para ver y/o responder a tus mensajes privados." -#: src/Module/Admin/Addons/Details.php:122 -#: src/Module/Admin/Themes/Details.php:102 -msgid "Maintainer: " -msgstr "Mantenedor: " +#: src/Navigation/Notifications/Repository/Notify.php:328 +#, php-format +msgid "%1$s commented on %2$s's %3$s %4$s" +msgstr "%1$s comentó en %2$s %3$s %4$s" -#: src/Module/Admin/Addons/Index.php:42 -msgid "Addons reloaded" -msgstr "Añadidos re cargados" +#: src/Navigation/Notifications/Repository/Notify.php:333 +#, php-format +msgid "%1$s commented on your %2$s %3$s" +msgstr "%1$s comentó en %2$s %3$s" -#: src/Module/Admin/Addons/Index.php:53 +#: src/Navigation/Notifications/Repository/Notify.php:337 #, php-format -msgid "Addon %s failed to install." -msgstr "Instalación de Añadido %s falló" +msgid "%1$s commented on their %2$s %3$s" +msgstr "%1$s comentó en su %2$s %3$s" -#: src/Module/Admin/Addons/Index.php:70 -msgid "Reload active addons" -msgstr "Añadidos activos re cargados" +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 +#, php-format +msgid "%1$s Comment to conversation #%2$d by %3$s" +msgstr "%1$s Comentó sobre #%2$d by %3$s" -#: src/Module/Admin/Addons/Index.php:75 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, 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 "No hay añadidos disponibles en el nodo. Puedes encontrar el repositorio oficial en %1$s y puedes encontrar otros interesantes en el registro de añadidos en %2$s" +msgid "%s commented on an item/conversation you have been following." +msgstr "%s comentó en una artículo/elemento que sigues." -#: src/Module/Admin/Logs/View.php:40 +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 #, 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 "Error al intentar abrir %1$s archivo del log.\\r\\n
    Checar si el archivo %1$s existe y se puede leer." +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Por favor, visita %s para ver y/o responder a la conversación." -#: src/Module/Admin/Logs/View.php:44 +#: src/Navigation/Notifications/Repository/Notify.php:354 #, php-format -msgid "" -"Couldn't open %1$s log file.\\r\\n
    Check to see if file" -" %1$s is readable." -msgstr "No se pudo abrir %1$s archivo del log.\\r\\n
    Cheque si el archivo %1$s puede leerse." +msgid "%s %s posted to your profile wall" +msgstr "%s %s publicó en tu perfil" -#: src/Module/Admin/Logs/Settings.php:48 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format -msgid "The logfile '%s' is not writable. No logging possible" -msgstr "El archivo de Log '%s' no es escriturable. No puede registrar Log." +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s publicó en tu perfil a las %2$s" -#: src/Module/Admin/Logs/Settings.php:72 -msgid "PHP log currently enabled." -msgstr "Registro PHP actualmente disponible." +#: src/Navigation/Notifications/Repository/Notify.php:357 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s publicó en [url=%2$s]tu perfil[/url]" -#: src/Module/Admin/Logs/Settings.php:74 -msgid "PHP log currently disabled." -msgstr "Registro PHP actualmente deshabilitado." +#: src/Navigation/Notifications/Repository/Notify.php:370 +#, php-format +msgid "%s Introduction received" +msgstr "%s presentación recibida" -#: src/Module/Admin/Logs/Settings.php:83 -msgid "Clear" -msgstr "Limpiar" +#: src/Navigation/Notifications/Repository/Notify.php:372 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Recibiste una presentación de '%1$s' en %2$s" -#: src/Module/Admin/Logs/Settings.php:87 -msgid "Enable Debugging" -msgstr "Habilitar debugging" +#: src/Navigation/Notifications/Repository/Notify.php:373 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Recibiste [url=%1$s]una presentación de [/url] de %2$s." -#: src/Module/Admin/Logs/Settings.php:88 -msgid "Log file" -msgstr "Archivo de registro" +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puedes visitar su perfil en %s" -#: src/Module/Admin/Logs/Settings.php:88 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Debes tener permiso de escritura en el servidor. Relacionado con tu directorio de inicio de Friendica." +#: src/Navigation/Notifications/Repository/Notify.php:380 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Visita %s para aceptar o rechazar la presentación" -#: src/Module/Admin/Logs/Settings.php:89 -msgid "Log level" -msgstr "Nivel de registro" +#: src/Navigation/Notifications/Repository/Notify.php:387 +#, php-format +msgid "%s A new person is sharing with you" +msgstr "%s Una nueva persona comparte contigo" -#: src/Module/Admin/Logs/Settings.php:91 -msgid "PHP logging" -msgstr "PHP logging" +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s comparte contigo en %2$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 "Para habilitar temporalmente el registro de errores y advertencias de PHP, puede anteponer lo siguiente al archivo index.php de su instalación. El nombre de archivo establecido en la línea 'error_log' es relativo al directorio de nivel superior de Friendica y debe poder escribirse por el servidor. La opción '1' para 'log_errors' y 'display_errors' es para habilitar estas opciones, establezca en '0' para deshabilitarlas." +#: src/Navigation/Notifications/Repository/Notify.php:397 +#, php-format +msgid "%s You have a new follower" +msgstr "%s Tienes nuevo seguidor" -#: src/Module/Admin/Queue.php:50 -msgid "Inspect Deferred Worker Queue" -msgstr "Inspeccionar Cola diferida de Workers" +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "Tienes nuevo seguidor en %2$s : %1$s" -#: 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 "Esta página enumera los jobs de los Workers diferidos. Estos son jobs que no se pudieron ejecutar la primera vez." +#: src/Navigation/Notifications/Repository/Notify.php:413 +#, php-format +msgid "%s Friend suggestion received" +msgstr "%s Sugerencia de amistad recibida" -#: src/Module/Admin/Queue.php:54 -msgid "Inspect Worker Queue" -msgstr "Inspeccionar Cola de Workers" +#: src/Navigation/Notifications/Repository/Notify.php:415 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Recibiste una sugerencia de amistad de '%1$s' en %2$s" -#: src/Module/Admin/Queue.php:55 +#: src/Navigation/Notifications/Repository/Notify.php:416 +#, php-format msgid "" -"This page lists the currently queued worker jobs. These jobs are handled by " -"the worker cronjob you've set up during install." -msgstr "Esta página enumera los jobs de workers actualmente en cola. Estos Jobs son manejados por el cronjob de trabajador que configuró durante la instalación." - -#: src/Module/Admin/Queue.php:75 -msgid "ID" -msgstr "ID" - -#: src/Module/Admin/Queue.php:76 -msgid "Job Parameters" -msgstr "Parámetros del Job" - -#: src/Module/Admin/Queue.php:77 -msgid "Created" -msgstr "Creado" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Recibiste [url=%1$s]una sugerencia de amistad[/url] en %2$s de %3$s." -#: src/Module/Admin/Queue.php:78 -msgid "Priority" -msgstr "Prioridad" +#: src/Navigation/Notifications/Repository/Notify.php:422 +msgid "Name:" +msgstr "Nombre: " -#: src/Module/Admin/Summary.php:53 -#, php-format -msgid "Template engine (%s) error: %s" -msgstr "Error (%s) en Motor de plantilla: %s" +#: src/Navigation/Notifications/Repository/Notify.php:423 +msgid "Photo:" +msgstr "Foto: " -#: src/Module/Admin/Summary.php:57 +#: src/Navigation/Notifications/Repository/Notify.php:426 #, 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 "Tu BD corre con tablas MyISAM. Debes cambiar al motor InnoDB. Pues Friendica usará solo InnoDB en el futuro, debes cambiarlo! Ver esto como guía de ayuda para convertir el motor de tablas. Podrías usar también el comando php bin/console.php dbstructure toinnodb de tu instalación Friendica para conversión automática.
    " +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Visita %s para aceptar o rechazar la sugerencia." -#: src/Module/Admin/Summary.php:62 +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 #, 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 "Tu BD corre con tablas InnoDB. En formato de archivo Antelope. Debes cambiar al formato de archivos Barracuda. Friendica usa opciones que no provee el formato Antelope. Ver esto como guía de ayuda para convertir el motor de tablas. Podrías usar también el comando php bin/console.php dbstructure toinnodb de tu instalación Friendica para conversión automática.
    " +msgid "%s Connection accepted" +msgstr "%s Conexión aceptada" -#: src/Module/Admin/Summary.php:72 +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 #, 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 "El 'table_definition_cache' es muy corto (%d). puede acarrear error de BD \"Sentencia preparada debe ser Re-preparada\". Setealo al menos a %d. Ver here para mas información.
    " +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "'%1$s' aceptó tu solicitud de conexión en %2$s" -#: src/Module/Admin/Summary.php:82 +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 #, php-format -msgid "" -"There is a new version of Friendica available for download. Your current " -"version is %1$s, upstream version is %2$s" -msgstr "Hay una nueva versión de Friendica disponible para descargar. Su versión actual es %1$s, la versión ascendente es %2$s" - -#: src/Module/Admin/Summary.php: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 "Actualización de la BD Falló. Ejecute \"php bin/console.php dbstructure update\" desde línea de comandos y revise los errores que puedan haber ocurrido." +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s aceptó tu [url=%1$s]solicitud de conexión[/url]." -#: src/Module/Admin/Summary.php:95 +#: src/Navigation/Notifications/Repository/Notify.php:442 msgid "" -"The last update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear. (Some of the errors are possibly inside the logfile.)" -msgstr "La última actualización falló. Ejecute \"php bin/console.php dbstructure update\" desde línea de comandos y revise los errores que puedan haber ocurrido. (Algunos aparecerán en archivo de log.)" - -#: src/Module/Admin/Summary.php:100 -msgid "The worker was never executed. Please check your database structure!" -msgstr "El worker nunca fue ejecutado. ¡Revise la estructura de su BD!" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "Ahora son amigos mutuos y puede intercambiar actualizaciones, fotos e email sin restricción." -#: src/Module/Admin/Summary.php:102 +#: src/Navigation/Notifications/Repository/Notify.php:444 #, php-format -msgid "" -"The last worker execution was on %s UTC. This is older than one hour. Please" -" check your crontab settings." -msgstr "La última ejecución del trabajador fue a las %s UTC. Anterior a una hora. Revise su configuración de crontab." +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Por favor visite %s si desea hacer algún cambio a su relación." -#: src/Module/Admin/Summary.php:107 +#: src/Navigation/Notifications/Repository/Notify.php:457 #, 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 "Configuración Friendica ahora se almacena en config/local.config.php, copie config/local-sample.config.php y mueva su configuración de .htconfig.php. Ver página de ayuda como ayuda en la transición." +"'%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." +msgstr "'%1$s' te ha aceptado como fan, eso restringe algunas formas de comunicación - como mensajes privados e interacciones de perfil. Si es un famoso o página comunitaria, esos son ajustes automáticos." -#: src/Module/Admin/Summary.php:111 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, 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 "Configuración Friendica ahora se almacena en config/local.config.php, copie config/local-sample.config.php y mueva su configuración de config/local.ini.php. Ver página de ayuda como ayuda en la transición." +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future." +msgstr "'%1$s' puede elegirte para una relación cercana o bidireccional en el futuro." -#: src/Module/Admin/Summary.php:117 +#: src/Navigation/Notifications/Repository/Notify.php:461 #, 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 "%s no se alcanza en tu sistema. Es un error grave en la configuración que evita la comunicación de servidor a servidor. Ver la página de instalación como ayuda." +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Visita %s si deseas hacer algún cambio con este contacto." -#: src/Module/Admin/Summary.php:135 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "Tl archivo de log '%s' no se puede usar. No es posible el registro (error: '%s')" +#: src/Navigation/Notifications/Repository/Notify.php:471 +msgid "registration request" +msgstr "petición de registro" -#: src/Module/Admin/Summary.php:149 +#: src/Navigation/Notifications/Repository/Notify.php:473 #, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "El archivo de log de debugg '%s' no puede usarse. No es posible el registro (error: '%s')" +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "Recibiste una solicitud de registro de '%1$s' en %2$s" -#: src/Module/Admin/Summary.php:165 +#: src/Navigation/Notifications/Repository/Notify.php:474 #, php-format -msgid "" -"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" -" system.basepath from your db to avoid differences." -msgstr "La ruta Friendica system.basepath se actualizó de '%s' a '%s'. Quite la system.basepath de tu BD para evitar diferencias." +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "Recibiste una [url=%1$s]solicitud de registro[/url] de %2$s." -#: src/Module/Admin/Summary.php:173 +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 #, php-format msgid "" -"Friendica's current system.basepath '%s' is wrong and the config file '%s' " -"isn't used." -msgstr "Ruta actual Friendica system.basepath '%s' es errónea y el archivo de configuración '%s' no se usa." +"Full Name:\t%s\n" +"Site Location:\t%s\n" +"Login Name:\t%s (%s)" +msgstr "Nombre Completo:\t%s\nUbicación:\t%s\nNombre de Usuario:\t%s (%s)" -#: src/Module/Admin/Summary.php:181 +#: src/Navigation/Notifications/Repository/Notify.php:485 #, php-format -msgid "" -"Friendica's current system.basepath '%s' is not equal to the config file " -"'%s'. Please fix your configuration." -msgstr "Ruta actual de Friendica system.basepath '%s' no es igual al archivo config '%s'. Corrija su configuración." - -#: src/Module/Admin/Summary.php:188 -msgid "Normal Account" -msgstr "Cuenta normal" - -#: src/Module/Admin/Summary.php:189 -msgid "Automatic Follower Account" -msgstr "Cuenta de Seguimiento Automático" +msgid "Please visit %s to approve or reject the request." +msgstr "Visita %s para aprobar o rechazar la solicitud." -#: src/Module/Admin/Summary.php:190 -msgid "Public Forum Account" -msgstr "Cuenta del Foro Pública" +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" -#: src/Module/Admin/Summary.php:191 -msgid "Automatic Friend Account" -msgstr "Cuenta de amistad automática" - -#: src/Module/Admin/Summary.php:192 -msgid "Blog Account" -msgstr "Cuenta de blog" - -#: src/Module/Admin/Summary.php:193 -msgid "Private Forum Account" -msgstr "Cuenta del Foro Privada" - -#: src/Module/Admin/Summary.php:213 -msgid "Message queues" -msgstr "Cola de mensajes" - -#: src/Module/Admin/Summary.php:219 -msgid "Server Settings" -msgstr "Ajustes del Servidor" - -#: src/Module/Admin/Summary.php:233 src/Repository/ProfileField.php:285 -msgid "Summary" -msgstr "Resumen" - -#: src/Module/Admin/Summary.php:235 -msgid "Registered users" -msgstr "Usuarios registrados" - -#: src/Module/Admin/Summary.php:237 -msgid "Pending registrations" -msgstr "Pendientes de registro" - -#: src/Module/Admin/Summary.php:238 -msgid "Version" -msgstr "Versión" - -#: src/Module/Admin/Summary.php:242 -msgid "Active addons" -msgstr "Añadidos Activos" - -#: src/Module/Admin/Item/Source.php:58 -msgid "Item Guid" -msgstr "Clave Guid" +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" -#: src/Module/Admin/Item/Source.php:63 -msgid "Item Id" -msgstr "Id de Artículo" +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" -#: src/Module/Admin/Item/Source.php:64 -msgid "Item URI" -msgstr "Item URI" +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" -#: src/Module/Admin/Item/Source.php:66 -msgid "Terms" -msgstr "Términos" +#: src/Navigation/Notifications/Repository/Notify.php:780 +#, php-format +msgid "%s %s tagged you" +msgstr "%s %s te etiquetó" -#: src/Module/Admin/Item/Source.php:67 -msgid "Tag" -msgstr "Etiqueta" +#: src/Navigation/Notifications/Repository/Notify.php:783 +#, php-format +msgid "%s %s shared a new post" +msgstr "%s %s compartió nuevo artículo" -#: 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 "Tipo" +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "" -#: src/Module/Admin/Item/Source.php:69 -msgid "Term" -msgstr "Término" - -#: src/Module/Admin/Item/Source.php:70 -msgid "URL" -msgstr "Ruta URL" - -#: src/Module/Admin/Item/Source.php:71 -msgid "Mention" -msgstr "Mención" - -#: src/Module/Admin/Item/Source.php:72 -msgid "Implicit Mention" -msgstr "Mención Implicita" - -#: src/Module/Admin/Item/Delete.php:54 -msgid "Item marked for deletion." -msgstr "Artículo marcado para eliminación." - -#: src/Module/Admin/Item/Delete.php:67 -msgid "Delete this Item" -msgstr "Eliminar este artículo" - -#: 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 "En esta página, puede eliminar un artículo de su nodo. Si el artículo es una publicación de nivel superior, se eliminará todo el hilo." - -#: 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 "Usted debe conocer el GUID del artículo. Puedes encontrarlo, por ejemplo. mirando la URL visible. La última parte de http://example.com/display/123456 es el GUID, aquí 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 "El GUID del artículo que quiere eliminar." - -#: src/Module/Admin/Site.php:69 -msgid "Can not parse base url. Must have at least ://" -msgstr "No se puede resolver la direccion URL base.\nDeberá tener al menos ://" - -#: src/Module/Admin/Site.php:123 -msgid "Relocation started. Could take a while to complete." -msgstr "Relocación iniciada. Podría tomar algo de tiempo completar." - -#: src/Module/Admin/Site.php:249 -msgid "Invalid storage backend setting value." -msgstr "Valor de configuración de backend de almacenamiento no válido." - -#: src/Module/Admin/Site.php:478 -msgid "No community page for local users" -msgstr "No hay página de Comunidad para usuarios locales" - -#: src/Module/Admin/Site.php:479 -msgid "No community page" -msgstr "No hay pagina de comunidad" - -#: src/Module/Admin/Site.php:480 -msgid "Public postings from users of this site" -msgstr "Temas públicos de perfiles de este sitio." - -#: src/Module/Admin/Site.php:481 -msgid "Public postings from the federated network" -msgstr "Artículos públicos de Redes Federadas" - -#: src/Module/Admin/Site.php:482 -msgid "Public postings from local users and the federated network" -msgstr "Artículos públicos de Usuarios Locales y Redes Federadas" - -#: src/Module/Admin/Site.php:488 -msgid "Multi user instance" -msgstr "Sesión multi usuario" - -#: src/Module/Admin/Site.php:516 -msgid "Closed" -msgstr "Cerrado" - -#: src/Module/Admin/Site.php:517 -msgid "Requires approval" -msgstr "Requiere aprobación" - -#: src/Module/Admin/Site.php:518 -msgid "Open" -msgstr "Abierto" - -#: src/Module/Admin/Site.php:528 -msgid "Don't check" -msgstr "No verificar" - -#: src/Module/Admin/Site.php:529 -msgid "check the stable version" -msgstr "verifique la versión estable" - -#: src/Module/Admin/Site.php:530 -msgid "check the development version" -msgstr "verifica la versión de desarrollo" - -#: src/Module/Admin/Site.php:534 -msgid "none" -msgstr "ninguno" - -#: src/Module/Admin/Site.php:535 -msgid "Local contacts" -msgstr "Contactos Locales" - -#: src/Module/Admin/Site.php:536 -msgid "Interactors" -msgstr "Interactores" - -#: src/Module/Admin/Site.php:549 -msgid "Database (legacy)" -msgstr "Base de Datos (legada)" - -#: src/Module/Admin/Site.php:581 -msgid "General Information" -msgstr "Información General" - -#: src/Module/Admin/Site.php:583 -msgid "Republish users to directory" -msgstr "Republicar usuarios al Directorio" - -#: src/Module/Admin/Site.php:585 -msgid "File upload" -msgstr "Subida de archivo" - -#: src/Module/Admin/Site.php:586 -msgid "Policies" -msgstr "Políticas" - -#: src/Module/Admin/Site.php:588 -msgid "Auto Discovered Contact Directory" -msgstr "Directorio de contactos descubierto automáticamente" - -#: src/Module/Admin/Site.php:589 -msgid "Performance" -msgstr "Rendimiento" - -#: src/Module/Admin/Site.php:590 -msgid "Worker" -msgstr "Worker" - -#: src/Module/Admin/Site.php:591 -msgid "Message Relay" -msgstr "Retransmisión de Mensajes" - -#: src/Module/Admin/Site.php:592 -msgid "Relocate Instance" -msgstr "Relocalizar Instancia" - -#: src/Module/Admin/Site.php:593 -msgid "" -"Warning! Advanced function. Could make this server " -"unreachable." -msgstr "Advertencia! Función avanzada. Podría hacer al servidor inalcanzable." - -#: src/Module/Admin/Site.php:597 -msgid "Site name" -msgstr "Nombre del sitio" - -#: src/Module/Admin/Site.php:598 -msgid "Sender Email" -msgstr "Correo que Envía" - -#: src/Module/Admin/Site.php:598 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "La dirección de correo electrónico que el servidor debería usar como dirección de envío." - -#: src/Module/Admin/Site.php:599 -msgid "Name of the system actor" -msgstr "Nombre del actor del Sistema" - -#: 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 "Nombre de la cuenta del sistema interno que se utiliza para realizar solicitudes de ActivityPub. Debe ser un nombre de usuario no utilizado. Si se establece, esto no se puede volver a cambiar." - -#: src/Module/Admin/Site.php:600 -msgid "Banner/Logo" -msgstr "Imagen/Logotipo" - -#: src/Module/Admin/Site.php:601 -msgid "Email Banner/Logo" -msgstr "Logo del Correo" - -#: src/Module/Admin/Site.php:602 -msgid "Shortcut icon" -msgstr "Icono del Enlace" - -#: src/Module/Admin/Site.php:602 -msgid "Link to an icon that will be used for browsers." -msgstr "Enlace hacia un icono que sera usado para el navegador." - -#: src/Module/Admin/Site.php:603 -msgid "Touch icon" -msgstr "Icono Tocar" - -#: src/Module/Admin/Site.php:603 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "Enlace a un icono que sera usado para tablets y moviles." - -#: src/Module/Admin/Site.php:604 -msgid "Additional Info" -msgstr "Información Adicional" - -#: 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 "Servidores Públicos: Puedes añadir información adicional aqui que será listada por los servidores %s/servers." - -#: src/Module/Admin/Site.php:605 -msgid "System language" -msgstr "Lenguaje del Sistema" - -#: src/Module/Admin/Site.php:606 -msgid "System theme" -msgstr "Tema del Sistema" - -#: src/Module/Admin/Site.php:606 -msgid "" -"Default system theme - may be over-ridden by user profiles - Change default theme settings" -msgstr "Tema Default del Sistema – puede sobre escribirse por usuarios - Cambiar ajustes de tema default" - -#: src/Module/Admin/Site.php:607 -msgid "Mobile system theme" -msgstr "Tema de sistema móvil" - -#: src/Module/Admin/Site.php:607 -msgid "Theme for mobile devices" -msgstr "Tema para dispositivos móviles" - -#: src/Module/Admin/Site.php:609 -msgid "Force SSL" -msgstr "Forzar SSL" - -#: 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 "Forzar todos las consultas No-SSL a SSL. - ATENCIÓN: en algunos sistemas esto puede generar comportamiento recursivo interminable." - -#: src/Module/Admin/Site.php:610 -msgid "Hide help entry from navigation menu" -msgstr "Ocultar la ayuda en el menú de navegación" - -#: 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 "Oculta la entrada de las páginas de Ayuda en el menú de navegación. Todavía se puede acceder escribiendo /ayuda directamente." - -#: src/Module/Admin/Site.php:611 -msgid "Single user instance" -msgstr "Sesión de usuario único" - -#: src/Module/Admin/Site.php:611 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Haz esta sesión multi-usuario o usuario único para el usuario" - -#: src/Module/Admin/Site.php:613 -msgid "File storage backend" -msgstr "Almacén de archivos backend" - -#: 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 "El backend utilizado para almacenar los datos cargados. Si cambia el backend de almacenamiento, puede mover manualmente los archivos existentes. Si no lo hace, los archivos subidos antes del cambio seguirán estando disponibles en el backend anterior. Consulte la documentación de configuración para obtener más información sobre las opciones y el procedimiento de traslado." - -#: src/Module/Admin/Site.php:615 -msgid "Maximum image size" -msgstr "Tamaño máximo de la imagen" - -#: src/Module/Admin/Site.php:615 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Tamaño máximo en bytes de las imágenes a subir. Por defecto es 0, que quiere decir que no hay límite." - -#: src/Module/Admin/Site.php:616 -msgid "Maximum image length" -msgstr "Largo máximo de imagen" - -#: 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 "Longitud máxima en píxeles del lado más largo de las imágenes subidas. Por defecto es -1, que significa que no hay límites." - -#: src/Module/Admin/Site.php:617 -msgid "JPEG image quality" -msgstr "Calidad de imagen JPEG" - -#: 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 "Los archivos JPEG subidos se guardarán con este ajuste de calidad [0-100]. Por defecto es 100, que es calidad máxima." - -#: src/Module/Admin/Site.php:619 -msgid "Register policy" -msgstr "Política de registros" - -#: src/Module/Admin/Site.php:620 -msgid "Maximum Daily Registrations" -msgstr "Registros Máximos Diarios" - -#: 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 "Si anteriormente se ha permitido el registro, esto establece el número máximo de registro de nuevos usuarios aceptados por día. Si el registro se establece como cerrado, esta opción no tiene efecto." - -#: src/Module/Admin/Site.php:621 -msgid "Register text" -msgstr "Términos" - -#: src/Module/Admin/Site.php:621 -msgid "" -"Will be displayed prominently on the registration page. You can use BBCode " -"here." -msgstr "Se mostrará de forma destacada en la página de registro. Puede utilizar BBCode aquí." - -#: src/Module/Admin/Site.php:622 -msgid "Forbidden Nicknames" -msgstr "Apodos Prohibidos" - -#: 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 "Lista separada por comas de apodos cuyo registro está prohibido. Lo Preestablecido es una lista de nombres de roles según RFC 2142." - -#: src/Module/Admin/Site.php:623 -msgid "Accounts abandoned after x days" -msgstr "Cuentas abandonadas después de x días" - -#: 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 "No gastará recursos del sistema creando sondeos a sitios externos para cuentas abandonadas. Introduce 0 para ningún límite temporal." - -#: src/Module/Admin/Site.php:624 -msgid "Allowed friend domains" -msgstr "Dominios amigos permitidos" - -#: 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 "Lista separada por comas de los dominios que están autorizados para establecer conexiones con este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio" - -#: src/Module/Admin/Site.php:625 -msgid "Allowed email domains" -msgstr "Dominios de correo permitidos" - -#: 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 "Lista separada por comas de los dominios que están autorizados en las direcciones de correo para registrarse en este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio" - -#: src/Module/Admin/Site.php:626 -msgid "No OEmbed rich content" -msgstr "No hay contenido enriquecido OEmbed" - -#: src/Module/Admin/Site.php:626 -msgid "" -"Don't show the rich content (e.g. embedded PDF), except from the domains " -"listed below." -msgstr "No muestre el contenido enriquecido (por ejemplo, PDF incrustado), excepto de los dominios que se enumeran a continuación." - -#: src/Module/Admin/Site.php:627 -msgid "Trusted third-party domains" -msgstr "Dominios terceros de confianza" - -#: 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 "Lista separada por comas de dominios de los que se permite incrustar contenido en publicaciones como con OEmbed. También se permiten todos los subdominios de los dominios enumerados." - -#: src/Module/Admin/Site.php:628 -msgid "Block public" -msgstr "Bloqueo público" - -#: 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 "Marca para bloquear el acceso público a todas las páginas personales, aún siendo públicas, hasta que no hayas iniciado tu sesión." - -#: src/Module/Admin/Site.php:629 -msgid "Force publish" -msgstr "Forzar publicación" - -#: src/Module/Admin/Site.php:629 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Marca para forzar que todos los perfiles de este sitio sean listados en el directorio del sitio." - -#: src/Module/Admin/Site.php:629 -msgid "Enabling this may violate privacy laws like the GDPR" -msgstr "Habilitar esto puede violar leyes de privacidad como GDPR" - -#: src/Module/Admin/Site.php:630 -msgid "Global directory URL" -msgstr "URL del directorio global." - -#: 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 "URL del directorio global. Si se deja este campo vacío, el directorio global sera completamente inaccesible para la instancia." - -#: src/Module/Admin/Site.php:631 -msgid "Private posts by default for new users" -msgstr "Publicaciones privadas por defecto para usuarios nuevos" - -#: src/Module/Admin/Site.php:631 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Ajusta los permisos de publicación por defecto a los miembros nuevos al grupo privado por defecto en vez del público." - -#: src/Module/Admin/Site.php:632 -msgid "Don't include post content in email notifications" -msgstr "No incluir el contenido del post en las notificaciones de correo electrónico" - -#: 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 "No incluye el contenido de un mensaje/comentario/mensaje privado/etc. en las notificaciones de correo electrónico que se envían desde este sitio, como una medida de privacidad." - -#: src/Module/Admin/Site.php:633 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Deshabilitar acceso a addons listados en el menú de aplicaciones." - -#: src/Module/Admin/Site.php:633 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Habilitando esta opción restringe el acceso a addons en el menú de aplicaciones a usuarios identificados." - -#: src/Module/Admin/Site.php:634 -msgid "Don't embed private images in posts" -msgstr "No agregar imágenes privados en las publicaciones" - -#: 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 "No reemplazar imágenes privadas guardadas localmente en el servidor con imágenes integrados en los envíos. Esto significa que contactos que reciben publicaciones tendrán que autenticarse y cargar cada imagen, lo que puede demorar." - -#: src/Module/Admin/Site.php:635 -msgid "Explicit Content" -msgstr "Contenido Explicito" - -#: 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 "Configure esto para anunciar si su nodo se usa principalmente para contenido explícito que podría no ser adecuado para menores. Esta información se publicaría en la información del nodo y podría ser utilizada, por ejemplo, por el Directorio Global, para filtrar su nodo de las listas de nodos. Para unirse. Además, se mostrará una nota sobre esto en la página de registro del usuario." - -#: src/Module/Admin/Site.php:636 -msgid "Allow Users to set remote_self" -msgstr "Permitir a los usuarios de definir remote_self (yo-remoto)" - -#: 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 "Al habilitar esta opción, cada perfil tiene el permiso de marcar cualquiera de sus contactos como un perfil_remoto. Habilitar la opción perfil_remoto para un contacto genera que todas las publicaciones de este contacto seran re-publicado en el muro del perfil." - -#: src/Module/Admin/Site.php:637 -msgid "Block multiple registrations" -msgstr "Bloquear registros multiples" - -#: src/Module/Admin/Site.php:637 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Impedir que los usuarios registren cuentas adicionales para su uso como páginas." - -#: src/Module/Admin/Site.php:638 -msgid "Disable OpenID" -msgstr "Deshabilitar OpenID" - -#: src/Module/Admin/Site.php:638 -msgid "Disable OpenID support for registration and logins." -msgstr "Deshabilitar soporte OpenID para registro e ingresos." - -#: src/Module/Admin/Site.php:639 -msgid "No Fullname check" -msgstr "No checar nombre completo" - -#: 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 "Permitir que los usuarios se registren sin un espacio entre el nombre y el apellido en su nombre completo." - -#: src/Module/Admin/Site.php:640 -msgid "Community pages for visitors" -msgstr "Paginas de Comunidad para Visitantes" - -#: src/Module/Admin/Site.php:640 -msgid "" -"Which community pages should be available for visitors. Local users always " -"see both pages." -msgstr "Que comunidades deben estar disponibles para visitantes. Usuarios locales siempre ven ambas páginas." - -#: src/Module/Admin/Site.php:641 -msgid "Posts per user on community page" -msgstr "Publicaciones por usuario en la pagina de comunidad" - -#: src/Module/Admin/Site.php:641 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"\"Global Community\")" -msgstr "Número máximo de artículos por usuario de página Fediverso. (No válido para \"Fediverso Global\")" - -#: src/Module/Admin/Site.php:642 -msgid "Disable OStatus support" -msgstr "Deshabilitar soporte OStatus" - -#: 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 "Deshabilitar compatibilidad OStatus (StatusNet, GNU Social etc.). Todas las comunicaciones de OStatus son públicas, advertencias de privacidad serán ocasionalmente mostradas." - -#: src/Module/Admin/Site.php:643 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "Solo se puede habilitar el soporte OStatus si threading (comentarios en fila) se encuentra habilitado." - -#: src/Module/Admin/Site.php:645 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "El soporte para Diaspora* no se puede habilitar porque friendica se instalo en un directorio subalterno (sub directory)." - -#: src/Module/Admin/Site.php:646 -msgid "Enable Diaspora support" -msgstr "Habilitar el soporte para Diaspora*" - -#: src/Module/Admin/Site.php:646 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Provee una compatibilidad con la red de Diaspora." - -#: src/Module/Admin/Site.php:647 -msgid "Only allow Friendica contacts" -msgstr "Permitir solo contactos de Friendica" - -#: src/Module/Admin/Site.php:647 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Todos los contactos deben usar protocolos de Friendica. El resto de protocolos serán desactivados." - -#: src/Module/Admin/Site.php:648 -msgid "Verify SSL" -msgstr "Verificar SSL" - -#: 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 "Si quieres puedes activar la comprobación estricta de certificados. Esto significa que serás incapaz de conectar con ningún sitio que use certificados SSL autofirmados." - -#: src/Module/Admin/Site.php:649 -msgid "Proxy user" -msgstr "Usuario proxy" - -#: src/Module/Admin/Site.php:650 -msgid "Proxy URL" -msgstr "Dirección proxy" - -#: src/Module/Admin/Site.php:651 -msgid "Network timeout" -msgstr "Tiempo de espera de red" - -#: src/Module/Admin/Site.php:651 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valor en segundos. Usar 0 para dejarlo sin límites (no se recomienda)." - -#: src/Module/Admin/Site.php:652 -msgid "Maximum Load Average" -msgstr "Promedio de carga máxima" - -#: src/Module/Admin/Site.php:652 -#, php-format -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default %d." -msgstr "Carga máxima del sistema antes de entrega y envío son retrasados - default %d." - -#: src/Module/Admin/Site.php:653 -msgid "Maximum Load Average (Frontend)" -msgstr "Carga máxima promedio (frontend)" - -#: src/Module/Admin/Site.php:653 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Carga máxima del sistema antes de que el frontend cancele el servicio - por defecto 50." - -#: src/Module/Admin/Site.php:654 -msgid "Minimal Memory" -msgstr "Memoria Mínima" - -#: src/Module/Admin/Site.php:654 -msgid "" -"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " -"default 0 (deactivated)." -msgstr "Memoria mínima en MB del worker. Necesita acceso a /proc/meminfo - default 0 (desactivado)." - -#: src/Module/Admin/Site.php:655 -msgid "Periodically optimize tables" -msgstr "Periodicamente optimizar tablas" - -#: src/Module/Admin/Site.php:655 -msgid "Periodically optimize tables like the cache and the workerqueue" -msgstr "Periódicamente optimizar tablas como Cache y cola de worker" - -#: src/Module/Admin/Site.php:657 -msgid "Discover followers/followings from contacts" -msgstr "Descubrir seguidores/seguimientos de contactos" - -#: src/Module/Admin/Site.php:657 -msgid "" -"If enabled, contacts are checked for their followers and following contacts." -msgstr "Si lo habilita, se checan contactos por sus seguidores y sus contactos." - -#: src/Module/Admin/Site.php:658 -msgid "None - deactivated" -msgstr "Ninguno - desactivado" - -#: src/Module/Admin/Site.php:659 -msgid "" -"Local contacts - contacts of our local contacts are discovered for their " -"followers/followings." -msgstr "Contactos locales - contactos de nuestros contactos locales buscados por seguidores/seguimientos." - -#: 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 "Interactores - contactos de contactos locales y contactos que interactuan en artículos locales son buscados por sus seguidores/seguimientos." - -#: src/Module/Admin/Site.php:662 -msgid "Synchronize the contacts with the directory server" -msgstr "Sincronizar los contactos con el servidor de directorio" - -#: src/Module/Admin/Site.php:662 -msgid "" -"if enabled, the system will check periodically for new contacts on the " -"defined directory server." -msgstr "Si habilta, el sistema checará periodicamente por nuevos contactos en el servidor de directorio definido." - -#: src/Module/Admin/Site.php:664 -msgid "Days between requery" -msgstr "Días entre búsquedas" - -#: src/Module/Admin/Site.php:664 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "Cantidad de días hasta que un servidor es consultado por sus contactos." - -#: src/Module/Admin/Site.php:665 -msgid "Discover contacts from other servers" -msgstr "Descubrir contactos de otros servidores" - -#: src/Module/Admin/Site.php:665 -msgid "" -"Periodically query other servers for contacts. The system queries Friendica," -" Mastodon and Hubzilla servers." -msgstr "Periodicamente buscar contactos en servidores. Buscar en Friendica, Mastodon y Hubzilla." - -#: src/Module/Admin/Site.php:666 -msgid "Search the local directory" -msgstr "Buscar el directorio local" - -#: 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 "Buscar en el directorio local en vez del directorio global. Cuando se busca localmente, cada búsqueda sera efectuada en el directorio global en el background. Esto mejora los resultados de la búsqueda cuando la misma es repetida." - -#: src/Module/Admin/Site.php:668 -msgid "Publish server information" -msgstr "Publicar información del servidor" - -#: 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 "Si se habilita, se publicarán datos de uso y servidor. Contiene nombre y versión del servidor, usuarios con perfiles públicos, no. de artículos, protocolos activos y conectores. Ver the-federation.info para mas detalles." - -#: src/Module/Admin/Site.php:670 -msgid "Check upstream version" -msgstr "Verifique la versión ascendente" - -#: 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 "Permite verificar nuevas versiones de Friendica en Github. Si hay una nueva versión, se le informará en el panel de administración." - -#: src/Module/Admin/Site.php:671 -msgid "Suppress Tags" -msgstr "Suprimir etiquetas" - -#: src/Module/Admin/Site.php:671 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Suprimir la lista de tags al final de una publicación." - -#: src/Module/Admin/Site.php:672 -msgid "Clean database" -msgstr "Limpiar Base de Datos" - -#: src/Module/Admin/Site.php:672 -msgid "" -"Remove old remote items, orphaned database records and old content from some" -" other helper tables." -msgstr "Borrar artículos viejos remotos, registros de BD huerfanos y algunos viejos de tablas auxiliares." - -#: src/Module/Admin/Site.php:673 -msgid "Lifespan of remote items" -msgstr "Tiempo de vida de artículos remotos" - -#: 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 "Cuando habilita limpieza de BD, define los días en que artículos remotos serán borrados. Propios, marcados o archivados son siempre conservados. 0 deshabilita este comportamiento." - -#: src/Module/Admin/Site.php:674 -msgid "Lifespan of unclaimed items" -msgstr "Tiempo de vida de artículos no reclamados" - -#: 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 "Cuando se habilita limpieza de BD, esto define los dias en que los articulos ignorados remotos (mas que nada contenido del Relay) serán borrados. Valor Default es 90 días. Es default del tiempo de vida general de artículos remotos se setea en 0." - -#: src/Module/Admin/Site.php:675 -msgid "Lifespan of raw conversation data" -msgstr "Tiempo de vida de datos de conversación " - -#: 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 "Los datos de conversación son usados por ActivityPub y OStatus, también por propósito de Debugg. Debe ser seguro borrarlos después de 14 dias, default es 90 días." - -#: src/Module/Admin/Site.php:676 -msgid "Path to item cache" -msgstr "Ruta a la caché del objeto" - -#: src/Module/Admin/Site.php:676 -msgid "The item caches buffers generated bbcode and external images." -msgstr "El buffer de cache de items generado para bbcodes e imágenes externas. " - -#: src/Module/Admin/Site.php:677 -msgid "Cache duration in seconds" -msgstr "Duración de la caché en segundos" - -#: 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 "¿Por cuanto tiempo deberían los archivos ser almacenados en el cache? Valor por defecto 86400 segundos (un día). Para deshabilita el item cache, ajuste el valor a -1." - -#: src/Module/Admin/Site.php:678 -msgid "Maximum numbers of comments per post" -msgstr "Numero máximo de respuestas por tema" - -#: src/Module/Admin/Site.php:678 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100." - -#: src/Module/Admin/Site.php:679 -msgid "Maximum numbers of comments per post on the display page" -msgstr "Maximo numero de comentarios por artículo de página de despliegue" - -#: 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 "Cuantos comentarios deben ser mostrados en una sola vista por cada uno? Valor default es 1000." - -#: src/Module/Admin/Site.php:680 -msgid "Temp path" -msgstr "Ruta a los temporales" - -#: 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 "Si tiene un sistema restringido en donde el servidor web no puede acceder la dirección del sistema temp, ingrese una dirección alternativa aquí. " - -#: src/Module/Admin/Site.php:681 -msgid "Disable picture proxy" -msgstr "Deshabilitar proxy de imagen" - -#: 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 "La imagen proxy aumenta el performance y la privacidad. No debe usarse en sistemas con bajo ancho de banda." - -#: src/Module/Admin/Site.php:682 -msgid "Only search in tags" -msgstr "Solo buscar en tags" - -#: src/Module/Admin/Site.php:682 -msgid "On large systems the text search can slow down the system extremely." -msgstr "En sistemas grandes, la búsqueda de texto puede enlentecer el sistema gravemente." - -#: src/Module/Admin/Site.php:684 -msgid "New base url" -msgstr "Nueva URL base" - -#: 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 "Cambiar la URL base para este servidor. Envía un mensaje de reubicación a todos los contactos de Friendica y Diaspora* de todos los usuarios." - -#: src/Module/Admin/Site.php:686 -msgid "RINO Encryption" -msgstr "Encryptado RINO" - -#: src/Module/Admin/Site.php:686 -msgid "Encryption layer between nodes." -msgstr "Capa de encriptación entre nodos." - -#: src/Module/Admin/Site.php:686 -msgid "Enabled" -msgstr "Habilitado" - -#: src/Module/Admin/Site.php:688 -msgid "Maximum number of parallel workers" -msgstr "Numero máximo de trabajos paralelos de fondo." - -#: 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 "En hosts compartidos ponga a %d. En sistemas grandes, valores de %d estan bien. Valor Default es %d." - -#: src/Module/Admin/Site.php:689 -msgid "Enable fastlane" -msgstr "Habilitar ascenso rápido" - -#: 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 "Cuando está habilitado, el mecanismo ascenso rápido inicia un trabajador adicional si los procesos de mayor prioridad son bloqueados por prcesos de menor prioridad." - -#: src/Module/Admin/Site.php:691 -msgid "Use relay servers" -msgstr "Usar servidores de reenvío" - -#: 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 "Habilita la recepción de publicaciones públicas desde servidores de retransmisión. Se incluirán en la búsqueda, en las etiquetas suscritas y en la página de la comunidad global." - -#: src/Module/Admin/Site.php:692 -msgid "\"Social Relay\" server" -msgstr "Servidor de \"Social Relay\" " - -#: 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 "Dirección del servidor \"Social Relay\" donde se deben enviar las publicaciones públicas. Por ejemplo %s. Los servidores ActivityRelay se administran a través del comando de línea de comando \"Console Relay\"." - -#: src/Module/Admin/Site.php:693 -msgid "Direct relay transfer" -msgstr "Transferencia directa del Reenvío" - -#: src/Module/Admin/Site.php:693 -msgid "" -"Enables the direct transfer to other servers without using the relay servers" -msgstr "Habilita transferencia directa a otros servidores sin usar servidores de reenvío" - -#: src/Module/Admin/Site.php:694 -msgid "Relay scope" -msgstr "Enfoque del Reenvío" - -#: 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 "Puede ser \"all\" o \"tags\". \"all\" significa que cada artículo público será recibido. \"tags\" sólo artículos de esas etiquetas deben ser recibidos." - -#: src/Module/Admin/Site.php:694 -msgid "all" -msgstr "todas" - -#: src/Module/Admin/Site.php:694 -msgid "tags" -msgstr "etiquetas" - -#: src/Module/Admin/Site.php:695 -msgid "Server tags" -msgstr "Etiquetas del Servidor" - -#: src/Module/Admin/Site.php:695 -msgid "Comma separated list of tags for the \"tags\" subscription." -msgstr "Lista separada por comas de etiquetas de suscripción \"tags\"." - -#: src/Module/Admin/Site.php:696 -msgid "Deny Server tags" -msgstr "Denegar etiquetas de Servidor" - -#: src/Module/Admin/Site.php:696 -msgid "Comma separated list of tags that are rejected." -msgstr "Lista separada por comas de etiquetas denegadas." - -#: src/Module/Admin/Site.php:697 -msgid "Allow user tags" -msgstr "Permitir etiquetas de Usuario" - -#: 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 "Si se habilita, etiquetas de las búsquedas grabadas serán usadas para suscripción de \"tags\" además de \"relay_server_tags\"." - -#: src/Module/Admin/Site.php:700 -msgid "Start Relocation" -msgstr "Iniciar Relocación" - -#: src/Module/Admin/Blocklist/Server.php:49 -msgid "Server domain pattern added to blocklist." -msgstr "Patrón del Servidor de Dominio añadido a bloqueados" - -#: src/Module/Admin/Blocklist/Server.php:79 -#: src/Module/Admin/Blocklist/Server.php:104 -msgid "Blocked server domain pattern" -msgstr "Patrón de Servidor de Dominio Bloqueado" - -#: src/Module/Admin/Blocklist/Server.php:81 -msgid "Delete server domain pattern" -msgstr "Borrar Patrón de Servidor de Dominio" - -#: src/Module/Admin/Blocklist/Server.php:81 -msgid "Check to delete this entry from the blocklist" -msgstr "Marca para eliminar esta entrada de Lista de bloqueo" - -#: src/Module/Admin/Blocklist/Server.php:89 -msgid "Server Domain Pattern Blocklist" -msgstr "Lista de Bloqueo del Patrón de Servidor de Dominio" - -#: 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 "Esta página puede servir para definir una lista de bloqueos de patrones de Servidor de Dominios de la Red Federada que no podrán interactuar con el nodo. Por cada patrón de Dominio debes dar la razón de porqué se bloquea." - -#: 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 "La lista de Patrones de Servidores de Dominio bloqueados será pública en /friendica para que tus usuarios y personas que consulten problemas de comunicación puedan encontrar fácilmente el motivo." - -#: 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 "

    La sintaxis del patrón de dominio de servidor no es sensible a mayusculas, conformada de los sig. caracteres:

    \n
      \n\t
    • *: Cualquier número de caracteres
    • \n\t
    • ?: Cualquier caracter
    • \n\t
    • [<char1><char2>...]: car1 o car2
    • \n
    " - -#: src/Module/Admin/Blocklist/Server.php:98 -msgid "Add new entry to block list" -msgstr "Agregar nueva entrada a la lista de bloqueo" - -#: src/Module/Admin/Blocklist/Server.php:99 -msgid "Server Domain Pattern" -msgstr "Patrón de Servidor de Dominio" - -#: 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 "El patrón de Dominio del nuevo servidor a añadir a lista de bloqueo. No incluya el protocolo." - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "Block reason" -msgstr "Razón del bloqueo" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "The reason why you blocked this server domain pattern." -msgstr "La razón por la que bloqueó este patrón de servidor de dominio." - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "Add Entry" -msgstr "Añadir Entrada" - -#: src/Module/Admin/Blocklist/Server.php:102 -msgid "Save changes to the blocklist" -msgstr "Guardar cambios en la lista de bloqueo" - -#: src/Module/Admin/Blocklist/Server.php:103 -msgid "Current Entries in the Blocklist" -msgstr "Entradas actuales en la lista de bloqueo" - -#: src/Module/Admin/Blocklist/Server.php:106 -msgid "Delete entry from blocklist" -msgstr "Eliminar entrada de la lista de bloqueo" - -#: src/Module/Admin/Blocklist/Server.php:109 -msgid "Delete entry from blocklist?" -msgstr "¿Eliminar entrada de la lista de bloqueo?" - -#: src/Module/Admin/Blocklist/Contact.php:47 -#: src/Console/GlobalCommunityBlock.php:101 -msgid "The contact has been blocked from the node" -msgstr "El contacto ha sido blockeado del nodo" - -#: 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 "No se ha encontrado ninguna entrada de contacto para esta URL (%s)" - -#: src/Module/Admin/Blocklist/Contact.php:57 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s Contacto desbloqueado" -msgstr[1] "%s Contactos desbloqueados" - -#: src/Module/Admin/Blocklist/Contact.php:79 -msgid "Remote Contact Blocklist" -msgstr "Lista de bloqueo de contactos remotos" - -#: 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 "Esta página le permite evitar que cualquier mensaje de un contacto remoto llegue a su nodo. " - -#: src/Module/Admin/Blocklist/Contact.php:81 -msgid "Block Remote Contact" -msgstr "Bloquear Contacto Remoto" - -#: 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 "seleccionar todo" - -#: src/Module/Admin/Blocklist/Contact.php:83 -msgid "select none" -msgstr "deseleccionar" - -#: src/Module/Admin/Blocklist/Contact.php:86 -msgid "No remote contact is blocked from this node." -msgstr "No se bloquea ningún contacto remoto de este nodo." - -#: src/Module/Admin/Blocklist/Contact.php:88 -msgid "Blocked Remote Contacts" -msgstr "Contactos remotos bloqueados" - -#: src/Module/Admin/Blocklist/Contact.php:89 -msgid "Block New Remote Contact" -msgstr "Bloquear nuevo contacto remoto" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Photo" -msgstr "Foto" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Reason" -msgstr "Motivo" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "%s contacto bloqueado en total" -msgstr[1] "%s contactos bloqueados en total" - -#: src/Module/Admin/Blocklist/Contact.php:100 -msgid "URL of the remote contact to block." -msgstr "URL del contacto remoto a bloquear." - -#: src/Module/Admin/Blocklist/Contact.php:101 -msgid "Block Reason" -msgstr "Razón de bloqueo" - -#: src/Module/Admin/Tos.php:60 -msgid "Display Terms of Service" -msgstr "Mostrar los Términos de Servicio" - -#: 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 "Habilitar la página de los Términos de Servicio. Si esto está activo un enlace a los términos será adicionado al formulario de registro y en la página de información general." - -#: src/Module/Admin/Tos.php:61 -msgid "Display Privacy Statement" -msgstr "Mostrar las Directivas de Privacidad" - -#: 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 "Muestre información en cuanto a información requerida para operar el nodo de acuerdo ej. para EU-GDPR." - -#: src/Module/Admin/Tos.php:62 -msgid "Privacy Statement Preview" -msgstr "Vista previa de Política de Privacidad" - -#: src/Module/Admin/Tos.php:64 -msgid "The Terms of Service" -msgstr "Los Términos de Servicio" - -#: 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 "Introduzca los Términos de Servicio para tu nodo aquí. Puedes usar BBCode. Cabeceras de sección deberían ser [2] e inferior." - -#: src/Module/Admin/Federation.php:54 -msgid "Other" -msgstr "Otro" - -#: src/Module/Admin/Federation.php:108 src/Module/Admin/Federation.php:268 -msgid "unknown" -msgstr "desconocido" - -#: 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 "Esta pagina ofrece algunos datos sobre la red conocida a la que tu nodo friendica esta conectado. Estos nummeros no son completos respecto a las redes federadas, si no refleja los nodos esta instancia conoce." - -#: 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 "Actualmente, este nodo tiene conocimiento de %d nodos con %d usuarios registrados de las siguientes plataformas:" - -#: src/Module/Admin/Users/Create.php:62 -msgid "New User" -msgstr "Nuevo usuario" - -#: src/Module/Admin/Users/Create.php:63 -msgid "Add User" -msgstr "Agregar usuario" - -#: src/Module/Admin/Users/Create.php:71 -msgid "Name of the new user." -msgstr "Nombre del nuevo usuario" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname" -msgstr "Apodo" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname of the new user." -msgstr "Apodo del nuevo perfil." - -#: 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 "Correo" - -#: src/Module/Admin/Users/Create.php:73 -msgid "Email address of the new user." -msgstr "Dirección de correo del nuevo perfil." - -#: 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 usuario bloqueado" -msgstr[1] "%s usuarios bloqueados" - -#: 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 "No puedes borrar tu usuario" - -#: 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 usuario eliminado" -msgstr[1] "%s usuarios eliminados" - -#: 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 "Usuario \"%s\" borrado" - -#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103 -#, php-format -msgid "User \"%s\" blocked" -msgstr "Usuario \"%s\" bloqueado" - -#: 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 "Fecha de registro" - -#: 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 "Último acceso" - -#: 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 "Último artículo público" - -#: src/Module/Admin/Users/Active.php:137 -msgid "Active Accounts" -msgstr "Cuentas Activas" - -#: 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 "Usuario bloqueado" - -#: 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 "Administrador del Sitio" - -#: 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 "Cuenta caducada" - -#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161 -msgid "Create a new user" -msgstr "Crear nuevo usuario" - -#: 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 "¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?" - -#: src/Module/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 "¡El usuario {0} será eliminado!\\n\\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?" - -#: 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 usuario desbloqueado" -msgstr[1] "%s usuarios desbloqueados" - -#: src/Module/Admin/Users/Index.php:109 src/Module/Admin/Users/Blocked.php:96 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "Usuario \"%s\" desbloqueado" - -#: src/Module/Admin/Users/Index.php:152 -msgid "User waiting for permanent deletion" -msgstr "Usuario esperando anulación permanente." - -#: src/Module/Admin/Users/Index.php:162 src/Module/Admin/Users/Deleted.php:88 -msgid "Permanent deletion" -msgstr "Borrado Permanente" - -#: src/Module/Admin/Users/Blocked.php:138 -msgid "Blocked Users" -msgstr "Usuarios bloqueados" - -#: src/Module/Admin/Users/Deleted.php:86 -msgid "Users awaiting permanent deletion" -msgstr "Usuarios en espera de borrado permanente" - -#: src/Module/Admin/Users/Pending.php:48 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "%s usuario aprobado" -msgstr[1] "%s usuarios aprobados" - -#: src/Module/Admin/Users/Pending.php:55 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "%s registro revocado" -msgstr[1] "%s registros revocados" - -#: src/Module/Admin/Users/Pending.php:81 -msgid "Account approved." -msgstr "Cuenta aprobada." - -#: src/Module/Admin/Users/Pending.php:87 -msgid "Registration revoked" -msgstr "Registro revocado" - -#: src/Module/Admin/Users/Pending.php:102 -msgid "User registrations awaiting review" -msgstr "Registro de usuarios en espera de revisión" - -#: src/Module/Admin/Users/Pending.php:104 -msgid "Request date" -msgstr "Solicitud de fecha" - -#: src/Module/Admin/Users/Pending.php:105 -msgid "No registrations." -msgstr "Sin registros." - -#: src/Module/Admin/Users/Pending.php:106 -msgid "Note from the user" -msgstr "Nota para el usuario" - -#: src/Module/Admin/Users/Pending.php:108 -msgid "Deny" -msgstr "Denegado" - -#: src/Module/Admin/BaseUsers.php:50 src/Content/Widget.php:537 -msgid "All" -msgstr "Todos" - -#: src/Module/Admin/BaseUsers.php:53 -msgid "List of all users" -msgstr "Lista de todos los usuarios" - -#: src/Module/Admin/BaseUsers.php:58 -msgid "Active" -msgstr "Activos" - -#: src/Module/Admin/BaseUsers.php:61 -msgid "List of active accounts" -msgstr "Lista de Cuentas Activas" - -#: src/Module/Admin/BaseUsers.php:69 -msgid "List of pending registrations" -msgstr "Lista de Registros Pendientes" - -#: src/Module/Admin/BaseUsers.php:77 -msgid "List of blocked users" -msgstr "Lista de usuarios bloqueados" - -#: src/Module/Admin/BaseUsers.php:82 -msgid "Deleted" -msgstr "Borrados" - -#: src/Module/Admin/BaseUsers.php:85 -msgid "List of pending user deletions" -msgstr "Lista de borrados de usuario pendientes" - -#: src/Module/Admin/BaseUsers.php:99 mod/settings.php:787 -msgid "Normal Account Page" -msgstr "Página de Cuenta Normal" - -#: src/Module/Admin/BaseUsers.php:100 mod/settings.php:791 -msgid "Soapbox Page" -msgstr "Página de Tribuna" - -#: src/Module/Admin/BaseUsers.php:101 mod/settings.php:795 -msgid "Public Forum" -msgstr "Foro Público" - -#: src/Module/Admin/BaseUsers.php:102 mod/settings.php:799 -msgid "Automatic Friend Page" -msgstr "Página de Amistad Autómatica" - -#: src/Module/Admin/BaseUsers.php:103 -msgid "Private Forum" -msgstr "Foro Privado" - -#: src/Module/Admin/BaseUsers.php:106 mod/settings.php:771 -msgid "Personal Page" -msgstr "Página personal" - -#: src/Module/Admin/BaseUsers.php:107 mod/settings.php:775 -msgid "Organisation Page" -msgstr "Página de Organización" - -#: src/Module/Admin/BaseUsers.php:108 mod/settings.php:779 -msgid "News Page" -msgstr "Página de Noticias" - -#: src/Module/Admin/BaseUsers.php:109 mod/settings.php:783 -msgid "Community Forum" -msgstr "Foro de la Comunidad" - -#: src/Module/Admin/BaseUsers.php:110 -msgid "Relay" -msgstr "Retransmisión" - -#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 -#, php-format -msgid "Theme %s disabled." -msgstr "Tema %s desactivado" - -#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 -#, php-format -msgid "Theme %s successfully enabled." -msgstr "Tema %s activado con éxito." - -#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 -#, php-format -msgid "Theme %s failed to install." -msgstr "El Tema %s no se pudo instalar." - -#: src/Module/Admin/Themes/Details.php:83 -msgid "Screenshot" -msgstr "Captura de pantalla" - -#: src/Module/Admin/Themes/Index.php:51 -msgid "Themes reloaded" -msgstr "Temas reacargados" - -#: src/Module/Admin/Themes/Index.php:114 -msgid "Reload active themes" -msgstr "Recargar Temas activos" - -#: src/Module/Admin/Themes/Index.php:119 -#, php-format -msgid "No themes found on the system. They should be placed in %1$s" -msgstr "No hay Temas en el Sistema, Deben situarse en %1$s" - -#: src/Module/Admin/Themes/Index.php:120 -msgid "[Experimental]" -msgstr "[Experimental]" - -#: src/Module/Admin/Themes/Index.php:121 -msgid "[Unsupported]" -msgstr "[No soportado]" - -#: src/Module/Admin/Themes/Embed.php:65 -msgid "Unknown theme." -msgstr "Tema desconocido." - -#: src/Module/Attach.php:50 src/Module/Attach.php:62 -msgid "Item was not found." -msgstr "Elemento no encontrado." - -#: src/Module/Apps.php:47 -msgid "No installed applications." -msgstr "Sin aplicaciones instaladas" - -#: src/Module/Apps.php:52 -msgid "Applications" -msgstr "Aplicaciones" - -#: src/Module/Help.php:62 -msgid "Help:" -msgstr "Ayuda:" - -#: src/Module/BaseProfile.php:68 src/Content/Nav.php:179 -#: view/theme/frio/theme.php:227 mod/fbrowser.php:43 -msgid "Photos" -msgstr "Fotos" - -#: src/Module/BaseProfile.php:71 mod/photos.php:129 -msgid "Photo Albums" -msgstr "Álbum de Fotos" - -#: src/Module/BaseProfile.php:76 src/Module/BaseProfile.php:79 -#: src/Content/Nav.php:180 view/theme/frio/theme.php:228 -msgid "Videos" -msgstr "Videos" - -#: 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 "Eventos" - -#: 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 "Eventos y Calendario" - -#: src/Module/BaseProfile.php:110 mod/notes.php:51 -msgid "Personal Notes" -msgstr "Notas Personales" - -#: src/Module/BaseProfile.php:113 -msgid "Only You Can See This" -msgstr "Únicamente tú puedes ver esto" - -#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 -msgid "Tips for New Members" -msgstr "Consejos para nuevos miembros" - -#: src/Module/Photo.php:93 -#, php-format -msgid "The Photo with id %s is not available." -msgstr "La foto con id %s no esta disponible." - -#: src/Module/Photo.php:111 -#, php-format -msgid "Invalid photo with id %s." -msgstr "Foto no válida de Id %s." - -#: src/Module/BaseSettings.php:37 mod/photos.php:150 -msgid "everybody" -msgstr "todos" - -#: src/Module/BaseSettings.php:43 -msgid "Account" -msgstr "Cuenta" - -#: src/Module/BaseSettings.php:73 -msgid "Display" -msgstr "Interfaz del usuario" - -#: src/Module/BaseSettings.php:80 mod/settings.php:681 -msgid "Social Networks" -msgstr "Redes sociales" - -#: src/Module/BaseSettings.php:101 -msgid "Connected apps" -msgstr "Aplicaciones conectadas" - -#: src/Module/BaseSettings.php:115 -msgid "Remove account" -msgstr "Eliminar cuenta" - -#: src/Module/Security/Logout.php:61 -msgid "Logged out." -msgstr "Desconectado." - -#: src/Module/Security/OpenID.php:54 -msgid "OpenID protocol error. No ID returned" -msgstr "Error de protocolo OpenID. No encuentra ID" - -#: src/Module/Security/OpenID.php:92 -msgid "" -"Account not found. Please login to your existing account to add the OpenID " -"to it." -msgstr "Cuenta no encontrada. Ingresa en tu cuenta existente para agregarle OpenID." - -#: src/Module/Security/OpenID.php:94 -msgid "" -"Account not found. Please register a new account or login to your existing " -"account to add the OpenID to it." -msgstr "Cuenta no encontrada. Registra una nueva cuenta o ingresa en su cuenta existentepara agregarle OpenID." - -#: src/Module/Security/TwoFactor/Verify.php:95 -msgid "" -"

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

    " -msgstr "

    Abra la app de ingreso de 2 factores en su dispositivo y obtenga un código de ingreso para verificar su identidad.

    " - -#: 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 "No tienes el teléfono? Ingresa código de recuperación" - -#: src/Module/Security/TwoFactor/Verify.php:100 -msgid "This is my two-factor authenticator app device" -msgstr "Este es mi app de autenticador de 2 factores en dispositivo" - -#: src/Module/Security/TwoFactor/Verify.php:101 -msgid "Verify code and complete login" -msgstr "Verificar código y completar ingreso" - -#: src/Module/Security/TwoFactor/Recovery.php:60 -#, php-format -msgid "Remaining recovery codes: %d" -msgstr "Códigos de recuperación restantes: %d" - -#: src/Module/Security/TwoFactor/Recovery.php:83 -msgid "Two-factor recovery" -msgstr "Recuperación de 2 factores" - -#: 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 "

    puedes usar uno de tus códigos de recuperación si pierdes el acceso a tu movil.

    " - -#: src/Module/Security/TwoFactor/Recovery.php:86 -msgid "Please enter a recovery code" -msgstr "Ingresa código de recuperación" - -#: src/Module/Security/TwoFactor/Recovery.php:87 -msgid "Submit recovery code and complete login" -msgstr "Enviar código de recuperación e ingresar" - -#: src/Module/Security/Login.php:101 -msgid "Create a New Account" -msgstr "Crear Nueva Cuenta" - -#: src/Module/Security/Login.php:126 -msgid "Your OpenID: " -msgstr "Tu OpenID: " - -#: src/Module/Security/Login.php:129 -msgid "" -"Please enter your username and password to add the OpenID to your existing " -"account." -msgstr "Ingresa tu Usuario y Contraseña para añadir el OpenID a tu cuentaexistente." - -#: src/Module/Security/Login.php:131 -msgid "Or login using OpenID: " -msgstr "O ingresa usando OpenID: " - -#: src/Module/Security/Login.php:141 src/Content/Nav.php:169 -msgid "Logout" -msgstr "Salir" - -#: src/Module/Security/Login.php:144 mod/lostpass.php:130 -msgid "Nickname or Email: " -msgstr "Apodo o Correo electrónico: " - -#: src/Module/Security/Login.php:145 -msgid "Password: " -msgstr "Contraseña: " - -#: src/Module/Security/Login.php:146 -msgid "Remember me" -msgstr "Recordarme" - -#: src/Module/Security/Login.php:155 -msgid "Forgot your password?" -msgstr "¿Olvidaste la contraseña?" - -#: src/Module/Security/Login.php:156 mod/lostpass.php:146 -msgid "Password Reset" -msgstr "Restablecer la contraseña" - -#: src/Module/Security/Login.php:158 -msgid "Website Terms of Service" -msgstr "Términos de Servicio del Sitio" - -#: src/Module/Security/Login.php:159 -msgid "terms of service" -msgstr "Términos de Servicio" - -#: src/Module/Security/Login.php:161 -msgid "Website Privacy Policy" -msgstr "Política de Privacidad del Sitio" - -#: src/Module/Security/Login.php:162 -msgid "privacy policy" -msgstr "Política de Privacidad" - -#: src/Model/Mail.php:120 src/Model/Mail.php:258 -msgid "[no subject]" -msgstr "[sin asunto]" - -#: src/Model/Item.php:1550 -#, php-format -msgid "Detected languages in this post:\\n%s" -msgstr "Lenguajes detectados en artículo:\\n%s" - -#: src/Model/Item.php:2491 include/conversation.php:227 -msgid "event" -msgstr "evento" - -#: src/Model/Item.php:2493 include/conversation.php:235 mod/tagger.php:90 -msgid "photo" -msgstr "foto" - -#: src/Model/Item.php:2495 -msgid "activity" -msgstr "Actividad" - -#: src/Model/Item.php:2497 src/Object/Post.php:545 -msgid "comment" -msgid_plural "comments" -msgstr[0] "Comentario" -msgstr[1] "Comentarios" - -#: src/Model/Item.php:2500 -msgid "post" -msgstr "Publicación" - -#: src/Model/Item.php:2614 -#, php-format -msgid "Content warning: %s" -msgstr "Advertencia de contenido: %s" - -#: src/Model/Item.php:2664 mod/videos.php:252 -msgid "View Video" -msgstr "Ver Video" - -#: src/Model/Item.php:2681 -msgid "bytes" -msgstr "bytes" - -#: src/Model/Item.php:2726 -msgid "View on separate page" -msgstr "Ver en pagina aparte" - -#: src/Model/Item.php:2727 -msgid "view on separate page" -msgstr "ver en pagina aparte" - -#: src/Model/Item.php:2732 src/Model/Item.php:2738 -#: src/Content/Text/BBCode.php:1142 -msgid "link to source" -msgstr "Enlace al original" - -#: src/Model/Event.php:77 src/Model/Event.php:94 src/Model/Event.php:470 -#: src/Model/Event.php:941 -msgid "Starts:" -msgstr "Inicio:" - -#: src/Model/Event.php:80 src/Model/Event.php:100 src/Model/Event.php:471 -#: src/Model/Event.php:945 -msgid "Finishes:" -msgstr "Final:" - -#: src/Model/Event.php:420 -msgid "all-day" -msgstr "todo el día" - -#: src/Model/Event.php:446 -msgid "Sept" -msgstr "Sept" - -#: src/Model/Event.php:463 mod/cal.php:280 mod/events.php:426 -msgid "today" -msgstr "hoy" - -#: src/Model/Event.php:468 -msgid "No events to display" -msgstr "No hay eventos a mostrar" - -#: src/Model/Event.php:587 -msgid "l, F j" -msgstr "l, F j" - -#: src/Model/Event.php:618 -msgid "Edit event" -msgstr "Editar evento" - -#: src/Model/Event.php:619 -msgid "Duplicate event" -msgstr "Duplicar evento" - -#: src/Model/Event.php:620 -msgid "Delete event" -msgstr "Borrar evento" - -#: src/Model/Event.php:872 -msgid "D g:i A" -msgstr "D g:i A" - -#: src/Model/Event.php:873 -msgid "g:i A" -msgstr "g:i A" - -#: src/Model/Event.php:960 src/Model/Event.php:962 -msgid "Show map" -msgstr "Mostrar mapa" - -#: src/Model/Event.php:961 -msgid "Hide map" -msgstr "Ocultar mapa" - -#: src/Model/Event.php:1053 -#, php-format -msgid "%s's birthday" -msgstr "Cumpleaños de %s" - -#: src/Model/Event.php:1054 -#, php-format -msgid "Happy Birthday %s" -msgstr "Feliz cumpleaños %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 "Un grupo eliminado con este nombre fue restablecido. Los permisos existentes pueden aplicarse a este grupo y a sus futuros miembros. Si esto no es lo que pretendes, por favor, crea otro grupo con un nombre diferente." - -#: src/Model/Group.php:451 -msgid "Default privacy group for new contacts" -msgstr "Grupo por defecto para nuevos contactos" - -#: src/Model/Group.php:483 -msgid "Everybody" -msgstr "Todo el mundo" - -#: src/Model/Group.php:502 -msgid "edit" -msgstr "editar" - -#: src/Model/Group.php:534 -msgid "add" -msgstr "añadir" - -#: src/Model/Group.php:539 -msgid "Edit group" -msgstr "Editar grupo" - -#: src/Model/Group.php:542 -msgid "Create a new group" -msgstr "Crear un nuevo grupo" - -#: src/Model/Group.php:544 -msgid "Edit groups" -msgstr "Editar grupo" - -#: src/Model/Contact.php:979 src/Model/Contact.php:989 -#: include/conversation.php:952 -msgid "Network Posts" -msgstr "Artículos de Red" - -#: src/Model/Contact.php:980 src/Model/Contact.php:990 -#: include/conversation.php:953 -msgid "View Contact" -msgstr "Ver contacto" - -#: 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 "Conectar/Seguir" - -#: src/Model/Contact.php:982 src/Model/Contact.php:995 -msgid "UnFollow" -msgstr "Dejar de seguir" - -#: src/Model/Contact.php:986 include/conversation.php:949 -msgid "View Status" -msgstr "Ver Estado" - -#: src/Model/Contact.php:988 include/conversation.php:951 -msgid "View Photos" -msgstr "Ver Fotos" - -#: src/Model/Contact.php:991 -msgid "Drop Contact" -msgstr "Eliminar contacto" - -#: src/Model/Contact.php:992 include/conversation.php:954 -msgid "Send PM" -msgstr "Enviar Privado" - -#: src/Model/Contact.php:993 include/conversation.php:964 -msgid "Poke" -msgstr "Empujar" - -#: src/Model/Contact.php:1406 -msgid "Organisation" -msgstr "Organización" - -#: src/Model/Contact.php:1410 src/Content/Widget.php:532 -msgid "News" -msgstr "Noticias" - -#: src/Model/Contact.php:1414 -msgid "Forum" -msgstr "Foro" - -#: src/Model/Contact.php:2159 mod/dfrn_request.php:355 -msgid "Disallowed profile URL." -msgstr "Dirección de perfil no permitida." - -#: src/Model/Contact.php:2169 -msgid "Connect URL missing." -msgstr "Falta el conector URL." - -#: 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 "No pudo añadirse el contacto. Consulte las credenciales de red en Ajustes -> Redes Sociales." - -#: src/Model/Contact.php:2219 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Este sitio no está configurado para permitir la comunicación con otras redes." - -#: src/Model/Contact.php:2220 src/Model/Contact.php:2233 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "No se ha descubierto protocolos de comunicación o fuentes compatibles." - -#: src/Model/Contact.php:2231 -msgid "The profile address specified does not provide adequate information." -msgstr "La dirección del perfil especificado no proporciona información adecuada." - -#: src/Model/Contact.php:2236 -msgid "An author or name was not found." -msgstr "No se ha encontrado un autor o nombre." - -#: src/Model/Contact.php:2239 -msgid "No browser URL could be matched to this address." -msgstr "Ninguna dirección concuerda con la suministrada." - -#: src/Model/Contact.php:2242 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Imposible identificar la Identidad @-style con algún protocolo conocido o dirección de contacto." - -#: src/Model/Contact.php:2243 -msgid "Use mailto: in front of address to force email check." -msgstr "Escribe mailto: al principio de la dirección para forzar el envío." - -#: src/Model/Contact.php:2249 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio." - -#: src/Model/Contact.php:2254 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas." - -#: src/Model/Contact.php:2313 -msgid "Unable to retrieve contact information." -msgstr "No ha sido posible recibir la información del contacto." - -#: src/Model/Storage/Filesystem.php:100 -#, php-format -msgid "Filesystem storage failed to create \"%s\". Check you write permissions." -msgstr "Sistema de Archivo falló creando \"%s\". Checa los permisos." - -#: src/Model/Storage/Filesystem.php:148 -#, php-format -msgid "" -"Filesystem storage failed to save data to \"%s\". Check your write " -"permissions" -msgstr "Sistema de archivo falló al grabar datos a \"%s\". Checa los permisos de escritura" - -#: src/Model/Storage/Filesystem.php:176 -msgid "Storage base path" -msgstr "Ruta base de Almacenamiento" - -#: 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 "Carpeta para subir archivos guardada. Para mayor seguridad, Deberá ser una ruta fuera del folder del árbol web" - -#: src/Model/Storage/Filesystem.php:191 -msgid "Enter a valid existing folder" -msgstr "Ingresa un folder válido existente" - -#: src/Model/Storage/Database.php:74 -#, php-format -msgid "Database storage failed to update %s" -msgstr "Almacén de BD falló en actualizar %s" - -#: src/Model/Storage/Database.php:82 -msgid "Database storage failed to insert data" -msgstr "Almacén de BD falló al insertar info" - -#: src/Model/User.php:186 src/Model/User.php:931 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERROR GRAVE: Generación de claves de seguridad falló." - -#: src/Model/User.php:549 -msgid "Login failed" -msgstr "Ingreso fallido" - -#: src/Model/User.php:581 -msgid "Not enough information to authenticate" -msgstr "Falta información para autenticación" - -#: src/Model/User.php:676 -msgid "Password can't be empty" -msgstr "La contraseña es requerida" - -#: src/Model/User.php:695 -msgid "Empty passwords are not allowed." -msgstr "No se permiten contraseñas vacias" - -#: src/Model/User.php:699 -msgid "" -"The new password has been exposed in a public data dump, please choose " -"another." -msgstr "La nueva contraseña ya se ha usado muchas veces, escoja otro." - -#: src/Model/User.php:705 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "Contraseña no puede contener acentos, espacios ni dos puntos (:)" - -#: src/Model/User.php:811 -msgid "Passwords do not match. Password unchanged." -msgstr "Las contraseñas no coinciden. La contraseña no ha sido modificada." - -#: src/Model/User.php:818 -msgid "An invitation is required." -msgstr "Se requiere de invitación." - -#: src/Model/User.php:822 -msgid "Invitation could not be verified." -msgstr "No se puede verificar la invitación." - -#: src/Model/User.php:830 -msgid "Invalid OpenID url" -msgstr "Dirección OpenID no válida" - -#: 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 "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente." - -#: src/Model/User.php:843 src/Security/Authentication.php:223 -msgid "The error message was:" -msgstr "El mensaje del error fue:" - -#: src/Model/User.php:849 -msgid "Please enter the required information." -msgstr "Por favor, introduce la información necesaria." - -#: 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 "system.username_min_length (%s) y system.username_max_length (%s) son mutuamente excluyentes, los valores se sobreponen." - -#: 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] "Usuario debe ser al menos %s caracter." -msgstr[1] "Usuario debe ser al menos %s caracteres." - -#: 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] "Usuario debe ser máximo %s caracter." -msgstr[1] "Usuario debe ser máximo %s caracteres." - -#: src/Model/User.php:882 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "No parece que ese sea tu nombre completo." - -#: src/Model/User.php:887 -msgid "Your email domain is not among those allowed on this site." -msgstr "Tu dominio de correo no se encuentra entre los permitidos en este sitio." - -#: src/Model/User.php:891 -msgid "Not a valid email address." -msgstr "No es una dirección de correo electrónico válida." - -#: src/Model/User.php:894 -msgid "The nickname was blocked from registration by the nodes admin." -msgstr "Ese nombre se bloquea a solicitud del administrador." - -#: src/Model/User.php:898 src/Model/User.php:906 -msgid "Cannot use that email." -msgstr "No puede usarse ese correo electrónico." - -#: src/Model/User.php:913 -msgid "Your nickname can only contain a-z, 0-9 and _." -msgstr "Tu apodo solo puede contener a-z, 0 al 9 y guión bajo (_)." - -#: src/Model/User.php:921 src/Model/User.php:978 -msgid "Nickname is already registered. Please choose another." -msgstr "Apodo ya registrado. Por favor, elije otro." - -#: src/Model/User.php:965 src/Model/User.php:969 -msgid "An error occurred during registration. Please try again." -msgstr "Se produjo un error durante el registro. Por favor, inténtalo de nuevo." - -#: src/Model/User.php:992 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo." - -#: src/Model/User.php:999 -msgid "An error occurred creating your self contact. Please try again." -msgstr "Ocurrió un error creando el contacto. Vuelve a intentar." - -#: src/Model/User.php:1004 -msgid "Friends" -msgstr "Amigos" - -#: src/Model/User.php:1008 -msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "Ocurrió un error creando el grupo Default. Vuleve a intentar." - -#: 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\tEstimado %1$s,\n\t\t\tel administrador de %2$s te ha establecido una cuenta." - -#: 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\tLa información de autenticación es:\n\n\t\tSitio - Localidad:\t%1$s\n\t\tUsuario:\t\t%2$s\n\t\tContraseña:\t\t%3$s\n\n\t\tPuedes cambiar la contraseña en página \"Settings\" cuando ingreses\n\n\t\tTómate unos momentos en revisar los ajustes en esa página.\n\n\t\tPodrias añadir información básica en tu Perfil\n\t\t(En página \"Profiles\" ) para que puedan encontrarte.\n\n\t\tTe recomendamos usar nombre completo, añadir foto del Perfil,\n\t\tañadir algunas \"keywords\" (muy útil para hacer amistades) - y\n\t\tquizá en que pais resides; si no quieres ser mas específico\n\t\tque eso.\n\n\t\tRespetamos ampliamente tu privacidad, ningána opción es requerida.\n\t\tSi eres nuevo y no conoces a nadie, eso puede ayudarte a hacer\n\t\tnuevas amistades interesantes.\n\n\t\tSi quisieras borrar tu cuenta, lo podrás hacer en %1$s/removeme\n\n\t\tGracias y Bienvenido a %4$s !." - -#: src/Model/User.php:1235 src/Model/User.php:1342 -#, php-format -msgid "Registration details for %s" -msgstr "Detalles de registro para %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\tEstimado %1$s,\n\t\t\t\tGracias por registrarte en %2$s. Tu cuenta esta en aprobación por los Administradores.\n\n\t\t\tTus datos de ingreso son:\n\n\t\t\tSitio - ubicación:\t%3$s\n\t\t\tUsuario:\t\t%4$s\n\t\t\tContraseña:\t\t%5$s\n\t\t" - -#: src/Model/User.php:1274 -#, php-format -msgid "Registration at %s" -msgstr "Registro en %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\tEstimado %1$s,\n\t\t\t\tGracias por registrarte en %2$s. Tu cuenta fue creada.\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\tLos datos de ingreso son:\n\n\t\t\tSitio - ubicación:\t%3$s\n\t\t\tUsuario:\t\t%1$s\n\t\t\tContraseña:\t\t%5$s\n\n\t\t\tPuedes cambiar la contraseña en página \"Settings\" cuando ingreses.\n\n\t\t\tTómate unos momentos en revisar las otras opciones.\n\n\t\t\tpodrías agregar mas información a tu perfil\n\t\t\t(en la página \"Profiles\" ) Para que puedan encontrarte.\n\n\t\t\tPodemos recomendar nombre completo, foto de perfil,\n\t\t\tañadir algunos \"keywords\" al perfil (muy útil para hacer amistades) - \n\t\t\ty quizá pais en el que vives; si no quieres ser muy específico\n\t\t\tque eso.\n\n\t\t\tRespetamos ampliamente tu privacidad, ninguno de ellos es requerido.\n\t\t\tSi eres nuevo y no conoces a nadie, podrían ayudarte\n\t\t\ta conseguir amistades interesantes.\n\n\t\t\tSi quisieras borrar tu cuenta, podrás hacerlo en %3$s/removeme\n\n\t\t\tGracias y bienvenido a %2$s." - -#: src/Model/Profile.php:348 -msgid "Change profile photo" -msgstr "Cambiar foto del perfil" - -#: src/Model/Profile.php:443 -msgid "Atom feed" -msgstr "Atom feed" - -#: src/Model/Profile.php:481 src/Model/Profile.php:578 -msgid "g A l F d" -msgstr "g A l F d" - -#: src/Model/Profile.php:482 -msgid "F d" -msgstr "F d" - -#: src/Model/Profile.php:544 src/Model/Profile.php:629 -msgid "[today]" -msgstr "[hoy]" - -#: src/Model/Profile.php:554 -msgid "Birthday Reminders" -msgstr "Recordatorios de cumpleaños" - -#: src/Model/Profile.php:555 -msgid "Birthdays this week:" -msgstr "Cumpleaños esta semana:" - -#: src/Model/Profile.php:616 -msgid "[No description]" -msgstr "[Sin descripción]" - -#: src/Model/Profile.php:642 -msgid "Event Reminders" -msgstr "Recordatorios de eventos" - -#: src/Model/Profile.php:643 -msgid "Upcoming events the next 7 days:" -msgstr "Eventos de los próximos 7 dias:" - -#: src/Model/Profile.php:818 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s te da la bienvenida %2$s" - -#: src/LegacyModule.php:49 -#, php-format -msgid "Legacy module file not found: %s" -msgstr "Modulo legado no encontrado: %s" - -#: src/Render/FriendicaSmartyEngine.php:52 -msgid "The folder view/smarty3/ must be writable by webserver." -msgstr "El folder view/smarty3/ debe ser de escritura" - -#: src/Console/ArchiveContact.php:105 -#, php-format -msgid "Could not find any unarchived contact entry for this URL (%s)" -msgstr "No se encontró contacto sin archivar en esa URL (%s)" - -#: src/Console/ArchiveContact.php:108 -msgid "The contact entries have been archived" -msgstr "Entradas del contacto archivadas" - -#: src/Console/PostUpdate.php:87 -#, php-format -msgid "Post update version number has been set to %s." -msgstr "Número de versión actualizado es %s." - -#: src/Console/PostUpdate.php:95 -msgid "Check for pending update actions." -msgstr "Checar acciones de actualización pendientes." - -#: src/Console/PostUpdate.php:97 -msgid "Done." -msgstr "Hecho." - -#: src/Console/PostUpdate.php:99 -msgid "Execute pending post updates." -msgstr "Ejecutar actualizaciones pendientes." - -#: src/Console/PostUpdate.php:105 -msgid "All pending post updates are done." -msgstr "Todas las actualizaciones hechas." - -#: src/Console/User.php:158 -msgid "Enter new password: " -msgstr "Ingrese nueva contraseña: " - -#: src/Console/User.php:166 mod/settings.php:281 -msgid "Password update failed. Please try again." -msgstr "Actualización de contraseña falló. Intente de nuevo." - -#: src/Console/User.php:169 mod/settings.php:284 -msgid "Password changed." -msgstr "Contraseña modificada." - -#: src/Console/User.php:193 -msgid "Enter user name: " -msgstr "Ingrese usuario: " - -#: 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 "Ingrese apodo: " - -#: src/Console/User.php:209 -msgid "Enter user email address: " -msgstr "Ingrese corréo electrónco: " - -#: src/Console/User.php:217 -msgid "Enter a language (optional): " -msgstr "Ingrese lenguaje (pcional): " - -#: src/Console/User.php:255 -msgid "User is not pending." -msgstr "Usuario no pendiente." - -#: src/Console/User.php:313 -msgid "User has already been marked for deletion." -msgstr "Usuario ya fue marcado para borrado." - -#: src/Console/User.php:318 -#, php-format -msgid "Type \"yes\" to delete %s" -msgstr "Escribe \"si\" para borrar %s" - -#: src/Console/User.php:320 -msgid "Deletion aborted." -msgstr "Borrado cancelado." - -#: src/Content/Widget/CalendarExport.php:63 -msgid "Export" -msgstr "Exportar" - -#: src/Content/Widget/CalendarExport.php:64 -msgid "Export calendar as ical" -msgstr "Exportar calendario como ical" - -#: src/Content/Widget/CalendarExport.php:65 -msgid "Export calendar as csv" -msgstr "Exportar calendario como csv" - -#: src/Content/Widget/SavedSearches.php:47 -msgid "Remove term" -msgstr "Eliminar término" - -#: src/Content/Widget/SavedSearches.php:60 -msgid "Saved Searches" -msgstr "Búsquedas guardadas" - -#: src/Content/Widget/ContactBlock.php:73 -msgid "No contacts" -msgstr "Sin contactos" - -#: src/Content/Widget/ContactBlock.php:105 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d Contacto" -msgstr[1] "%d Contactos" - -#: src/Content/Widget/ContactBlock.php:124 -msgid "View Contacts" -msgstr "Ver contactos" - -#: src/Content/Widget/TrendingTags.php:51 -#, php-format -msgid "Trending Tags (last %d hour)" -msgid_plural "Trending Tags (last %d hours)" -msgstr[0] "Etiquetas tendencia (última %d hora)" -msgstr[1] "Etiquetas tendencia (últimas %d horas)" - -#: src/Content/Widget/TrendingTags.php:52 -msgid "More Trending Tags" -msgstr "Mas tendencias" - -#: src/Content/Widget/TagCloud.php:68 src/Content/Nav.php:224 -#: src/Content/Text/HTML.php:905 -msgid "Tags" -msgstr "Etiquetas" - -#: src/Content/ForumManager.php:145 src/Content/Nav.php:229 -#: src/Content/Widget.php:533 src/Content/Text/HTML.php:910 -msgid "Forums" -msgstr "Foros" - -#: src/Content/ForumManager.php:147 -msgid "External link to forum" -msgstr "Enlace externo al foro" - -#: src/Content/ForumManager.php:150 src/Content/Widget.php:512 -msgid "show less" -msgstr "mostrar menos" - -#: src/Content/ForumManager.php:151 src/Content/Widget.php:411 -#: src/Content/Widget.php:513 -msgid "show more" -msgstr "Mostrar más" - -#: src/Content/Nav.php:90 -msgid "Nothing new here" -msgstr "No hay nada nuevo" - -#: src/Content/Nav.php:95 -msgid "Clear notifications" -msgstr "Borrar notificaciones" - -#: src/Content/Nav.php:96 src/Content/Text/HTML.php:897 -msgid "@name, !forum, #tags, content" -msgstr "@name, !forum, #tags, contenido" - -#: src/Content/Nav.php:169 -msgid "End this session" -msgstr "Cerrar sesión" - -#: src/Content/Nav.php:171 -msgid "Sign in" -msgstr "Ingresar" - -#: src/Content/Nav.php:177 src/Content/Nav.php:263 -#: view/theme/frio/theme.php:225 -msgid "Your posts and conversations" -msgstr "Tus publicaciones y conversaciones" - -#: src/Content/Nav.php:178 view/theme/frio/theme.php:226 -msgid "Your profile page" -msgstr "Tu página de perfil" - -#: src/Content/Nav.php:179 view/theme/frio/theme.php:227 -msgid "Your photos" -msgstr "Tus fotos" - -#: src/Content/Nav.php:180 view/theme/frio/theme.php:228 -msgid "Your videos" -msgstr "Tus videos" - -#: src/Content/Nav.php:181 view/theme/frio/theme.php:229 -msgid "Your events" -msgstr "Tus eventos" - -#: src/Content/Nav.php:182 -msgid "Personal notes" -msgstr "Notas personales" - -#: src/Content/Nav.php:182 -msgid "Your personal notes" -msgstr "Tus notas personales" - -#: src/Content/Nav.php:202 src/Content/Nav.php:263 -msgid "Home" -msgstr "Inicio" - -#: src/Content/Nav.php:202 -msgid "Home Page" -msgstr "Página de Inicio" - -#: src/Content/Nav.php:206 -msgid "Create an account" -msgstr "Crea una cuenta" - -#: src/Content/Nav.php:212 -msgid "Help and documentation" -msgstr "Ayuda y documentación" - -#: src/Content/Nav.php:216 -msgid "Apps" -msgstr "Aplicaciones" - -#: src/Content/Nav.php:216 -msgid "Addon applications, utilities, games" -msgstr "Aplicaciones, utilidades, juegos" - -#: src/Content/Nav.php:220 -msgid "Search site content" -msgstr "Buscar contenido en el sitio" - -#: src/Content/Nav.php:223 src/Content/Text/HTML.php:904 -msgid "Full Text" -msgstr "Texto completo" - -#: src/Content/Nav.php:244 -msgid "Community" -msgstr "Comunidad" - -#: src/Content/Nav.php:244 -msgid "Conversations on this and other servers" -msgstr "Conversaciones aquí y en otros servidores" - -#: src/Content/Nav.php:251 -msgid "Directory" -msgstr "Directorio" - -#: src/Content/Nav.php:251 -msgid "People directory" -msgstr "Directorio de usuarios" - -#: src/Content/Nav.php:253 -msgid "Information about this friendica instance" -msgstr "Información sobre esta instancia Friendica" - -#: src/Content/Nav.php:256 -msgid "Terms of Service of this Friendica instance" -msgstr "Términos de Servicio de la Instancia Friendica" - -#: src/Content/Nav.php:261 view/theme/frio/theme.php:232 -msgid "Network" -msgstr "Red" - -#: src/Content/Nav.php:261 view/theme/frio/theme.php:232 -msgid "Conversations from your friends" -msgstr "Conversaciones de tus amigos" - -#: src/Content/Nav.php:267 -msgid "Introductions" -msgstr "Presentaciones" - -#: src/Content/Nav.php:267 -msgid "Friend Requests" -msgstr "Solicitudes de amistad" - -#: src/Content/Nav.php:269 -msgid "See all notifications" -msgstr "Ver todas las notificaciones" - -#: src/Content/Nav.php:270 mod/settings.php:711 -msgid "Mark as seen" -msgstr "Marcar como leído" - -#: src/Content/Nav.php:270 -msgid "Mark all system notifications seen" -msgstr "Marcar todas las notificaciones del sistema como leídas" - -#: src/Content/Nav.php:273 view/theme/frio/theme.php:234 mod/message.php:134 -msgid "Messages" -msgstr "Mensajes" - -#: src/Content/Nav.php:273 view/theme/frio/theme.php:234 -msgid "Private mail" -msgstr "Correo privado" - -#: src/Content/Nav.php:274 -msgid "Inbox" -msgstr "Entrada" - -#: src/Content/Nav.php:275 -msgid "Outbox" -msgstr "Enviados" - -#: src/Content/Nav.php:276 mod/message.php:46 mod/message.php:127 -msgid "New Message" -msgstr "Nuevo Mensaje" - -#: src/Content/Nav.php:279 -msgid "Accounts" -msgstr "Cuentas" - -#: src/Content/Nav.php:279 -msgid "Manage other pages" -msgstr "Administrar otras páginas" - -#: src/Content/Nav.php:282 view/theme/frio/theme.php:235 -msgid "Account settings" -msgstr "Configurar la cuenta" - -#: src/Content/Nav.php:284 view/theme/frio/theme.php:236 -msgid "Manage/edit friends and contacts" -msgstr "Administrar/editar amigos y contactos" - -#: src/Content/Nav.php:289 -msgid "Site setup and configuration" -msgstr "Opciones y configuración del sitio" - -#: src/Content/Nav.php:292 -msgid "Navigation" -msgstr "Navegación" - -#: src/Content/Nav.php:292 -msgid "Site map" -msgstr "Mapa del sitio" - -#: src/Content/ContactSelector.php:51 -msgid "Frequently" -msgstr "Frecuentemente" - -#: src/Content/ContactSelector.php:52 -msgid "Hourly" -msgstr "Cada hora" - -#: src/Content/ContactSelector.php:53 -msgid "Twice daily" -msgstr "Dos veces al dia" - -#: src/Content/ContactSelector.php:54 -msgid "Daily" -msgstr "Diariamente" - -#: src/Content/ContactSelector.php:55 -msgid "Weekly" -msgstr "Semanal" - -#: src/Content/ContactSelector.php:56 -msgid "Monthly" -msgstr "Mensual" - -#: 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 "Conectos Diaspora" - -#: src/Content/ContactSelector.php:137 -msgid "GNU Social Connector" -msgstr "Conector GNU Social" - -#: 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 (a través %s)" - -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 -msgid "newer" -msgstr "más nuevo" - -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 -msgid "older" -msgstr "más antiguo" - -#: src/Content/Widget.php:49 -msgid "Add New Contact" -msgstr "Añadir nuevo contacto" - -#: src/Content/Widget.php:50 -msgid "Enter address or web location" -msgstr "Escribe la dirección o página web" - -#: src/Content/Widget.php:51 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Ejemplo: miguel@ejemplo.com, http://ejemplo.com/miguel" - -#: src/Content/Widget.php:53 -msgid "Connect" -msgstr "Conectar" - -#: src/Content/Widget.php:68 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitación disponible" -msgstr[1] "%d invitaviones disponibles" - -#: src/Content/Widget.php:74 view/theme/vier/theme.php:170 -msgid "Find People" -msgstr "Buscar Personas" - -#: src/Content/Widget.php:75 view/theme/vier/theme.php:171 -msgid "Enter name or interest" -msgstr "Introduce nombre o interés" - -#: src/Content/Widget.php:77 view/theme/vier/theme.php:173 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Ejemplos: Robert Morgenstein, Pesca" - -#: src/Content/Widget.php:79 view/theme/vier/theme.php:175 mod/suggest.php:55 -msgid "Friend Suggestions" -msgstr "Sugerencias de Amistad" - -#: src/Content/Widget.php:80 view/theme/vier/theme.php:176 -msgid "Similar Interests" -msgstr "Intereses Similares" - -#: src/Content/Widget.php:81 view/theme/vier/theme.php:177 -msgid "Random Profile" -msgstr "Perfil Al Azar" - -#: src/Content/Widget.php:82 view/theme/vier/theme.php:178 -msgid "Invite Friends" -msgstr "Invitar Amigos" - -#: src/Content/Widget.php:85 view/theme/vier/theme.php:181 -msgid "Local Directory" -msgstr "Directorio Local" - -#: src/Content/Widget.php:216 -msgid "Everyone" -msgstr "Todos" - -#: src/Content/Widget.php:245 -msgid "Relationships" -msgstr "Relaciones" - -#: src/Content/Widget.php:286 -msgid "Protocols" -msgstr "Protocolos" - -#: src/Content/Widget.php:288 -msgid "All Protocols" -msgstr "Todos los Protocolos" - -#: src/Content/Widget.php:316 -msgid "Saved Folders" -msgstr "Directorios guardados" - -#: src/Content/Widget.php:318 src/Content/Widget.php:352 -msgid "Everything" -msgstr "Todo" - -#: src/Content/Widget.php:350 -msgid "Categories" -msgstr "Categorías" - -#: src/Content/Widget.php:407 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contacto en común" -msgstr[1] "%d contactos en común" - -#: src/Content/Widget.php:506 -msgid "Archives" -msgstr "Archivos" - -#: src/Content/Widget.php:530 -msgid "Persons" -msgstr "Personas" - -#: src/Content/Widget.php:531 -msgid "Organisations" -msgstr "Organizaciones" - -#: src/Content/Widget.php:536 mod/settings.php:762 -msgid "Account Types" -msgstr "Tipos de cuenta" - -#: src/Content/Pager.php:216 mod/match.php:105 -msgid "first" -msgstr "primera" - -#: src/Content/Pager.php:221 -msgid "prev" -msgstr "previo" - -#: src/Content/Pager.php:276 mod/match.php:110 -msgid "next" -msgstr "sig." - -#: src/Content/Pager.php:281 -msgid "last" -msgstr "última" - -#: src/Content/OEmbed.php:292 -msgid "Embedding disabled" -msgstr "Contenido incrustrado desabilitado" - -#: src/Content/OEmbed.php:410 -msgid "Embedded content" -msgstr "Contenido integrado" - -#: src/Content/Text/HTML.php:795 -msgid "Loading more entries..." -msgstr "Cargar mas artículos.." - -#: src/Content/Text/HTML.php:796 -msgid "The end" -msgstr "Final" - -#: src/Content/Text/HTML.php:947 src/Content/Text/BBCode.php:1577 -msgid "Click to open/close" -msgstr "Pulsa para abrir/cerrar" - -#: src/Content/Text/BBCode.php:1015 src/Content/Text/BBCode.php:1659 -#: src/Content/Text/BBCode.php:1660 -msgid "Image/photo" -msgstr "Imagen/Foto" - -#: src/Content/Text/BBCode.php:1117 +#: src/Navigation/Notifications/Repository/Notify.php:794 #, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: src/Content/Text/BBCode.php:1608 -msgid "$1 wrote:" -msgstr "$1 escribió:" - -#: src/Content/Text/BBCode.php:1662 src/Content/Text/BBCode.php:1663 -msgid "Encrypted content" -msgstr "Contenido cifrado" - -#: src/Content/Text/BBCode.php:1876 -msgid "Invalid source protocol" -msgstr "Protocolo de fuente inválido" - -#: src/Content/Text/BBCode.php:1891 -msgid "Invalid link protocol" -msgstr "Protocolo de enlace inválido" - -#: src/Content/Feature.php:96 -msgid "General Features" -msgstr "Opciones generales" - -#: src/Content/Feature.php:98 -msgid "Photo Location" -msgstr "Ubicación de foto" - -#: 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 "Normalmente los meta datos de las imágenes son eliminados. Esto extraerá la localización si presente antes de eliminar los meta datos y enlaza la misma con el mapa." - -#: src/Content/Feature.php:99 -msgid "Trending Tags" -msgstr "Etiquetas tendencia" - -#: src/Content/Feature.php:99 -msgid "" -"Show a community page widget with a list of the most popular tags in recent " -"public posts." -msgstr "Mostrar un widget de comunidad con las etiquetas populares en recientes artículos." - -#: src/Content/Feature.php:104 -msgid "Post Composition Features" -msgstr "Opciones de edición de publicaciones." - -#: src/Content/Feature.php:105 -msgid "Auto-mention Forums" -msgstr "Auto-mencionar foros" - -#: src/Content/Feature.php:105 -msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Añadir/eliminar mención cuando un foro es seleccionado/deseleccionado en la ventana ACL." - -#: src/Content/Feature.php:106 -msgid "Explicit Mentions" -msgstr "Menciones explicitas" - -#: src/Content/Feature.php:106 -msgid "" -"Add explicit mentions to comment box for manual control over who gets " -"mentioned in replies." -msgstr "Añadir menciones explicitas a cuadro de comentarios para control manual sobre quien se menciona en respuestas." - -#: src/Content/Feature.php:111 -msgid "Post/Comment Tools" -msgstr "Herramienta de publicaciones/respuestas" - -#: src/Content/Feature.php:112 -msgid "Post Categories" -msgstr "Categorías de publicaciones" - -#: src/Content/Feature.php:112 -msgid "Add categories to your posts" -msgstr "Agregue categorías a sus publicaciones. Las mismas serán visualizadas en su pagina de inicio." - -#: src/Content/Feature.php:117 -msgid "Advanced Profile Settings" -msgstr "Ajustes avanzados del perfil" - -#: src/Content/Feature.php:118 -msgid "List Forums" -msgstr "Listar foros" - -#: src/Content/Feature.php:118 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Mostrar a los visitantes foros públicos en las que se esta participando en el pagina avanzada de perfiles." - -#: src/Content/Feature.php:119 -msgid "Tag Cloud" -msgstr "Nube de etiquetas" - -#: src/Content/Feature.php:119 -msgid "Provide a personal tag cloud on your profile page" -msgstr "Dar una etiqueta personal en tu página de perfil" - -#: src/Content/Feature.php:120 -msgid "Display Membership Date" -msgstr "Desplegar fecha de membresía" - -#: src/Content/Feature.php:120 -msgid "Display membership date in profile" -msgstr "Desplegar fecha de membresía en perfil" - -#: src/Repository/ProfileField.php:275 -msgid "Hometown:" -msgstr "Ciudad de origen:" - -#: src/Repository/ProfileField.php:276 -msgid "Marital Status:" -msgstr "Estado civil:" - -#: src/Repository/ProfileField.php:277 -msgid "With:" -msgstr "Con:" - -#: src/Repository/ProfileField.php:278 -msgid "Since:" -msgstr "Desde:" - -#: src/Repository/ProfileField.php:279 -msgid "Sexual Preference:" -msgstr "Preferencia sexual:" - -#: src/Repository/ProfileField.php:280 -msgid "Political Views:" -msgstr "Ideas políticas:" - -#: src/Repository/ProfileField.php:281 -msgid "Religious Views:" -msgstr "Creencias religiosas:" - -#: src/Repository/ProfileField.php:282 -msgid "Likes:" -msgstr "Me gustan:" - -#: src/Repository/ProfileField.php:283 -msgid "Dislikes:" -msgstr "No me gustan:" - -#: src/Repository/ProfileField.php:284 -msgid "Title/Description:" -msgstr "Título/Descripción:" - -#: src/Repository/ProfileField.php:286 -msgid "Musical interests" -msgstr "Gustos musicales" - -#: src/Repository/ProfileField.php:287 -msgid "Books, literature" -msgstr "Libros, literatura" - -#: src/Repository/ProfileField.php:288 -msgid "Television" -msgstr "Televisión" - -#: src/Repository/ProfileField.php:289 -msgid "Film/dance/culture/entertainment" -msgstr "Películas/baile/cultura/entretenimiento" - -#: src/Repository/ProfileField.php:290 -msgid "Hobbies/Interests" -msgstr "Aficiones/Intereses" - -#: src/Repository/ProfileField.php:291 -msgid "Love/romance" -msgstr "Amor/Romance" - -#: src/Repository/ProfileField.php:292 -msgid "Work/employment" -msgstr "Trabajo/ocupación" - -#: src/Repository/ProfileField.php:293 -msgid "School/education" -msgstr "Escuela/estudios" - -#: src/Repository/ProfileField.php:294 -msgid "Contact information and Social Networks" -msgstr "Informacioń de contacto y Redes sociales" +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "" -#: src/Object/EMail/ItemCCEMail.php:39 +#: src/Object/EMail/ItemCCEMail.php:42 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "El mensaje te lo ha enviado %s, miembro de Friendica Red Social." -#: src/Object/EMail/ItemCCEMail.php:41 +#: src/Object/EMail/ItemCCEMail.php:44 #, php-format msgid "You may visit them online at %s" msgstr "Puedes visitarlos en línea en %s" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:45 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes." -#: src/Object/EMail/ItemCCEMail.php:46 +#: src/Object/EMail/ItemCCEMail.php:49 #, php-format msgid "%s posted an update." msgstr "%s publicó una actualización." -#: src/Object/Post.php:148 -msgid "This entry was edited" -msgstr "Esta entrada fue editada" - -#: src/Object/Post.php:176 +#: src/Object/Post.php:138 msgid "Private Message" msgstr "Mensaje privado" -#: src/Object/Post.php:192 src/Object/Post.php:194 mod/settings.php:568 +#: src/Object/Post.php:142 +msgid "Public Message" +msgstr "" + +#: src/Object/Post.php:146 +msgid "Unlisted Message" +msgstr "" + +#: src/Object/Post.php:181 +msgid "This entry was edited" +msgstr "Esta entrada fue editada" + +#: src/Object/Post.php:209 +msgid "Connector Message" +msgstr "" + +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Editar" -#: src/Object/Post.php:214 -msgid "pinned item" -msgstr "Mensaje fijado" - -#: src/Object/Post.php:218 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Borrar Globalmente" -#: src/Object/Post.php:218 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Borrar localmente" -#: src/Object/Post.php:226 include/conversation.php:564 mod/photos.php:1470 -msgid "Select" -msgstr "Seleccionar" - -#: src/Object/Post.php:231 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "Bloquear %s" -#: src/Object/Post.php:236 -msgid "save to folder" -msgstr "guardar en directorio" +#: src/Object/Post.php:273 +#, php-format +msgid "Ignore %s" +msgstr "" -#: src/Object/Post.php:270 +#: src/Object/Post.php:278 +#, php-format +msgid "Collapse %s" +msgstr "" + +#: src/Object/Post.php:282 +msgid "Report post" +msgstr "" + +#: src/Object/Post.php:293 +msgid "Save to folder" +msgstr "" + +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Asistiré" -#: src/Object/Post.php:270 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "No asistiré" -#: src/Object/Post.php:270 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Podría asistir" -#: src/Object/Post.php:300 -msgid "ignore thread" -msgstr "ignorar hilo" +#: src/Object/Post.php:363 +msgid "Ignore thread" +msgstr "" -#: src/Object/Post.php:301 -msgid "unignore thread" -msgstr "dejar de ignorar hilo" +#: src/Object/Post.php:364 +msgid "Unignore thread" +msgstr "" -#: src/Object/Post.php:302 -msgid "toggle ignore status" -msgstr "cambiar ignorar estado" +#: src/Object/Post.php:365 +msgid "Toggle ignore status" +msgstr "" -#: src/Object/Post.php:305 mod/ostatus_subscribe.php:98 -msgid "ignored" -msgstr "ignorado" +#: src/Object/Post.php:375 +msgid "Add star" +msgstr "" -#: src/Object/Post.php:314 -msgid "pin" -msgstr "fijar" +#: src/Object/Post.php:376 +msgid "Remove star" +msgstr "" -#: src/Object/Post.php:315 -msgid "unpin" -msgstr "borrar fijado" +#: src/Object/Post.php:377 +msgid "Toggle star status" +msgstr "" -#: src/Object/Post.php:316 -msgid "toggle pin status" -msgstr "cambiar estado fijado" +#: src/Object/Post.php:388 +msgid "Pin" +msgstr "" -#: src/Object/Post.php:319 -msgid "pinned" -msgstr "fijado" +#: src/Object/Post.php:389 +msgid "Unpin" +msgstr "" -#: src/Object/Post.php:326 -msgid "add star" -msgstr "Añadir destacado" +#: src/Object/Post.php:390 +msgid "Toggle pin status" +msgstr "" -#: src/Object/Post.php:327 -msgid "remove star" -msgstr "Quitar destacado" +#: src/Object/Post.php:393 +msgid "Pinned" +msgstr "" -#: src/Object/Post.php:328 -msgid "toggle star status" -msgstr "cambiar estado destacado" +#: src/Object/Post.php:398 +msgid "Add tag" +msgstr "" -#: src/Object/Post.php:331 -msgid "starred" -msgstr "destacado" - -#: src/Object/Post.php:335 -msgid "add tag" -msgstr "añadir etiqueta" - -#: src/Object/Post.php:345 mod/photos.php:1534 -msgid "I like this (toggle)" -msgstr "Me gusta esto (cambiar)" - -#: src/Object/Post.php:345 -msgid "like" -msgstr "me gusta" - -#: src/Object/Post.php:346 mod/photos.php:1537 -msgid "I don't like this (toggle)" -msgstr "No me gusta esto (cambiar)" - -#: src/Object/Post.php:346 -msgid "dislike" -msgstr "no me gusta" - -#: src/Object/Post.php:348 +#: src/Object/Post.php:411 msgid "Quote share this" msgstr "Compartir Comentado esto" -#: src/Object/Post.php:348 +#: src/Object/Post.php:411 msgid "Quote Share" msgstr "Compartir comentado" -#: src/Object/Post.php:351 +#: src/Object/Post.php:414 msgid "Reshare this" msgstr "Compartir esto" -#: src/Object/Post.php:351 +#: src/Object/Post.php:414 msgid "Reshare" msgstr "Compartir" -#: src/Object/Post.php:352 +#: src/Object/Post.php:415 msgid "Cancel your Reshare" msgstr "Cancelar Compartir" -#: src/Object/Post.php:352 +#: src/Object/Post.php:415 msgid "Unshare" msgstr "Dejar de Compartir" -#: src/Object/Post.php:397 +#: src/Object/Post.php:466 #, php-format msgid "%s (Received %s)" msgstr "%s (Recibido %s)" -#: src/Object/Post.php:402 +#: src/Object/Post.php:472 msgid "Comment this item on your system" msgstr "Comentarlo en mi estado" -#: src/Object/Post.php:402 -msgid "remote comment" -msgstr "quitar comentario" +#: src/Object/Post.php:472 +msgid "Remote comment" +msgstr "" -#: src/Object/Post.php:414 -msgid "Pushed" -msgstr "Empujado" +#: src/Object/Post.php:494 +msgid "Share via ..." +msgstr "" -#: src/Object/Post.php:414 -msgid "Pulled" -msgstr "Jalado" +#: src/Object/Post.php:494 +msgid "Share via external services" +msgstr "" -#: src/Object/Post.php:421 include/conversation.php:960 -msgid "Languages" -msgstr "Lenguajes" - -#: src/Object/Post.php:432 include/conversation.php:613 -msgid "Categories:" -msgstr "Categorías:" - -#: src/Object/Post.php:433 include/conversation.php:614 -msgid "Filed under:" -msgstr "Archivado en:" - -#: src/Object/Post.php:444 src/Object/Post.php:445 -#: include/conversation.php:600 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Ver perfil de %s @ %s" - -#: src/Object/Post.php:446 +#: src/Object/Post.php:523 msgid "to" msgstr "a" -#: src/Object/Post.php:447 +#: src/Object/Post.php:524 msgid "via" msgstr "vía" -#: src/Object/Post.php:448 +#: src/Object/Post.php:525 msgid "Wall-to-Wall" msgstr "Perfil-a-Perfil" -#: src/Object/Post.php:449 +#: src/Object/Post.php:526 msgid "via Wall-To-Wall:" msgstr "via Perfil-a-Perfil:" -#: src/Object/Post.php:458 include/conversation.php:621 -#, php-format -msgid "%s from %s" -msgstr "%s de %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 "Comentar" - -#: src/Object/Post.php:487 +#: src/Object/Post.php:573 #, php-format msgid "Reply to %s" msgstr "Responder a %s" -#: src/Object/Post.php:490 +#: src/Object/Post.php:576 msgid "More" msgstr "Mas" -#: src/Object/Post.php:508 +#: src/Object/Post.php:595 msgid "Notifier task is pending" msgstr "Notificador tarea pendiente" -#: src/Object/Post.php:509 +#: src/Object/Post.php:596 msgid "Delivery to remote servers is pending" msgstr "Entrega remota pendiente" -#: src/Object/Post.php:510 +#: src/Object/Post.php:597 msgid "Delivery to remote servers is underway" msgstr "Entrega remota en camino" -#: src/Object/Post.php:511 +#: src/Object/Post.php:598 msgid "Delivery to remote servers is mostly done" msgstr "Entrega remota casi completada" -#: src/Object/Post.php:512 +#: src/Object/Post.php:599 msgid "Delivery to remote servers is done" msgstr "Entrega remota completada" -#: src/Object/Post.php:532 +#: src/Object/Post.php:619 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d comentario" msgstr[1] "%d comentarios" +msgstr[2] "%d comentarios" -#: src/Object/Post.php:533 +#: src/Object/Post.php:620 msgid "Show more" msgstr "Mostrar mas" -#: src/Object/Post.php:534 +#: src/Object/Post.php:621 msgid "Show fewer" msgstr "Mostrar menos" -#: 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 "Token de la ficha de seguridad incorrecto. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo." +#: src/Object/Post.php:657 +#, php-format +msgid "Reshared by: %s" +msgstr "" -#: src/BaseModule.php:179 -msgid "All contacts" -msgstr "Todos los Contactos" +#: src/Object/Post.php:662 +#, php-format +msgid "Viewed by: %s" +msgstr "" -#: src/BaseModule.php:202 -msgid "Common" -msgstr "Común" +#: src/Object/Post.php:667 +#, php-format +msgid "Liked by: %s" +msgstr "" -#: src/Protocol/Diaspora.php:3443 -msgid "Attachments:" -msgstr "Archivos adjuntos:" +#: src/Object/Post.php:672 +#, php-format +msgid "Disliked by: %s" +msgstr "" -#: src/Protocol/OStatus.php:1760 +#: src/Object/Post.php:677 +#, php-format +msgid "Attended by: %s" +msgstr "" + +#: src/Object/Post.php:682 +#, php-format +msgid "Maybe attended by: %s" +msgstr "" + +#: src/Object/Post.php:687 +#, php-format +msgid "Not attended by: %s" +msgstr "" + +#: src/Object/Post.php:692 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "(sin asunto)" + +#: src/Protocol/OStatus.php:1390 #, php-format msgid "%s is now following %s." msgstr "%s sigue ahora a %s." -#: src/Protocol/OStatus.php:1761 +#: src/Protocol/OStatus.php:1391 msgid "following" msgstr "siguiendo" -#: src/Protocol/OStatus.php:1764 +#: src/Protocol/OStatus.php:1394 #, php-format msgid "%s stopped following %s." msgstr "%s dejó de seguir a %s." -#: src/Protocol/OStatus.php:1765 +#: src/Protocol/OStatus.php:1395 msgid "stopped following" msgstr "dejó de seguir" -#: src/App.php:311 -msgid "No system theme config value set." -msgstr "No hay tema configurado." +#: src/Render/FriendicaSmartyEngine.php:56 +#, php-format +msgid "The folder %s must be writable by webserver." +msgstr "" -#: src/Security/Authentication.php:209 src/Security/Authentication.php:261 +#: src/Security/Authentication.php:227 msgid "Login failed." msgstr "Accesso fallido." @@ -8393,71 +12165,294 @@ msgstr "Bienvenido %s" msgid "Please upload a profile photo." msgstr "Por favor sube una foto para el perfil." -#: view/theme/duepuntozero/config.php:52 +#: src/Util/EMailer/MailBuilder.php:260 +msgid "Friendica Notification" +msgstr "Notificación de Friendica" + +#: src/Util/EMailer/NotifyMailBuilder.php:78 +#: src/Util/EMailer/SystemMailBuilder.php:54 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "%1$s, %2$s Administrador" + +#: src/Util/EMailer/NotifyMailBuilder.php:80 +#: src/Util/EMailer/SystemMailBuilder.php:56 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrador" + +#: 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 "gracias" + +#: src/Util/Temporal.php:172 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD o MM-DD" + +#: src/Util/Temporal.php:280 +#, php-format +msgid "Time zone: %s Change in Settings" +msgstr "" + +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +msgid "never" +msgstr "nunca" + +#: src/Util/Temporal.php:343 +msgid "less than a second ago" +msgstr "hace menos de un segundo" + +#: src/Util/Temporal.php:352 +msgid "year" +msgstr "año" + +#: src/Util/Temporal.php:352 +msgid "years" +msgstr "años" + +#: src/Util/Temporal.php:353 +msgid "months" +msgstr "meses" + +#: src/Util/Temporal.php:354 +msgid "weeks" +msgstr "semanas" + +#: src/Util/Temporal.php:355 +msgid "days" +msgstr "días" + +#: src/Util/Temporal.php:356 +msgid "hour" +msgstr "hora" + +#: src/Util/Temporal.php:356 +msgid "hours" +msgstr "horas" + +#: src/Util/Temporal.php:357 +msgid "minute" +msgstr "minuto" + +#: src/Util/Temporal.php:357 +msgid "minutes" +msgstr "minutos" + +#: src/Util/Temporal.php:358 +msgid "second" +msgstr "segundo" + +#: src/Util/Temporal.php:358 +msgid "seconds" +msgstr "segundos" + +#: src/Util/Temporal.php:367 +#, php-format +msgid "in %1$d %2$s" +msgstr "en %1$d %2$s" + +#: src/Util/Temporal.php:370 +#, php-format +msgid "%1$d %2$s ago" +msgstr "hace %1$d %2$s" + +#: src/Worker/PushSubscription.php:110 +msgid "Notification from Friendica" +msgstr "" + +#: src/Worker/PushSubscription.php:111 +msgid "Empty Post" +msgstr "" + +#: view/theme/duepuntozero/config.php:68 msgid "default" msgstr "predeterminado" -#: view/theme/duepuntozero/config.php:53 +#: view/theme/duepuntozero/config.php:69 msgid "greenzero" msgstr "greenzero" -#: view/theme/duepuntozero/config.php:54 +#: view/theme/duepuntozero/config.php:70 msgid "purplezero" msgstr "purplezero" -#: view/theme/duepuntozero/config.php:55 +#: view/theme/duepuntozero/config.php:71 msgid "easterbunny" msgstr "easterbunny" -#: view/theme/duepuntozero/config.php:56 +#: view/theme/duepuntozero/config.php:72 msgid "darkzero" msgstr "darkzero" -#: view/theme/duepuntozero/config.php:57 +#: view/theme/duepuntozero/config.php:73 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:58 +#: view/theme/duepuntozero/config.php:74 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:87 msgid "Variations" msgstr "Variaciones" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/config.php:153 +msgid "Light (Accented)" +msgstr "Luminoso (Acentuado)" + +#: view/theme/frio/config.php:154 +msgid "Dark (Accented)" +msgstr "Oscuro (Acentuado)" + +#: view/theme/frio/config.php:155 +msgid "Black (Accented)" +msgstr "Negro (Acentuado)" + +#: view/theme/frio/config.php:167 +msgid "Note" +msgstr "Nota" + +#: view/theme/frio/config.php:167 +msgid "Check image permissions if all users are allowed to see the image" +msgstr "Checa si todos los usuarios podrían ver esta imágen" + +#: view/theme/frio/config.php:173 +msgid "Custom" +msgstr "Personalizado" + +#: view/theme/frio/config.php:174 +msgid "Legacy" +msgstr "Legado" + +#: view/theme/frio/config.php:175 +msgid "Accented" +msgstr "Acentuado" + +#: view/theme/frio/config.php:176 +msgid "Select color scheme" +msgstr "Seleccionar esquema de color" + +#: view/theme/frio/config.php:177 +msgid "Select scheme accent" +msgstr "Selecciona esquema de Acentuado" + +#: view/theme/frio/config.php:177 +msgid "Blue" +msgstr "Azul" + +#: view/theme/frio/config.php:177 +msgid "Red" +msgstr "Rojo" + +#: view/theme/frio/config.php:177 +msgid "Purple" +msgstr "Púrpura" + +#: view/theme/frio/config.php:177 +msgid "Green" +msgstr "Verde" + +#: view/theme/frio/config.php:177 +msgid "Pink" +msgstr "Rosa" + +#: view/theme/frio/config.php:178 +msgid "Copy or paste schemestring" +msgstr "Copiar o pegar esquema" + +#: view/theme/frio/config.php:178 +msgid "" +"You can copy this string to share your theme with others. Pasting here " +"applies the schemestring" +msgstr "Puede copiar esta cadena para compartir su tema con otros. Pegando aquíAplica el Esquema" + +#: view/theme/frio/config.php:179 +msgid "Navigation bar background color" +msgstr "Color de fondo de barra de navegación" + +#: view/theme/frio/config.php:180 +msgid "Navigation bar icon color " +msgstr "Color de icono de barra de navegación" + +#: view/theme/frio/config.php:181 +msgid "Link color" +msgstr "Color de enlace" + +#: view/theme/frio/config.php:182 +msgid "Set the background color" +msgstr "Selecciona color de fondo" + +#: view/theme/frio/config.php:183 +msgid "Content background opacity" +msgstr "Opacidad del Fondo del Contenido" + +#: view/theme/frio/config.php:184 +msgid "Set the background image" +msgstr "Selecciona imagen de fondo" + +#: view/theme/frio/config.php:185 +msgid "Background image style" +msgstr "Estilo de imagen de fondo" + +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "" + +#: view/theme/frio/config.php:192 +msgid "Login page background image" +msgstr "Imagen de fondo del Ingreso" + +#: view/theme/frio/config.php:196 +msgid "Login page background color" +msgstr "Color de fondo del Ingreso" + +#: view/theme/frio/config.php:196 +msgid "Leave background image and color empty for theme defaults" +msgstr "Deja imagen de fondo y color vacíos para el estándar" + +#: view/theme/frio/php/Image.php:39 msgid "Top Banner" msgstr "Anuncio superior" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:39 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "Cambiar tamaño de la imagen al ancho de pantalla y mostrar color de fondodebajo en Páginas largas." -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:40 msgid "Full screen" msgstr "Pantalla completa" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:40 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "Ajustar imagen a pantalla completa, recortando a la derecha o debajo.." -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:41 msgid "Single row mosaic" msgstr "Mosaico en renglón" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:41 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "Ajustar imagen y repetir en una sola fila, ya sea vertical u horizontal." -#: view/theme/frio/php/Image.php:43 +#: view/theme/frio/php/Image.php:42 msgid "Mosaic" msgstr "Mosaico" -#: view/theme/frio/php/Image.php:43 +#: view/theme/frio/php/Image.php:42 msgid "Repeat image to fill the screen." msgstr "Repetir imagen hasta llenar pantalla." @@ -8469,2484 +12464,78 @@ msgstr "Saltar a contenido principal" msgid "Back to top" msgstr "Ir al Inicio" -#: view/theme/frio/config.php:142 -msgid "Light (Accented)" -msgstr "Luminoso (Acentuado)" - -#: view/theme/frio/config.php:143 -msgid "Dark (Accented)" -msgstr "Oscuro (Acentuado)" - -#: view/theme/frio/config.php:144 -msgid "Black (Accented)" -msgstr "Negro (Acentuado)" - -#: view/theme/frio/config.php:156 -msgid "Note" -msgstr "Nota" - -#: view/theme/frio/config.php:156 -msgid "Check image permissions if all users are allowed to see the image" -msgstr "Checa si todos los usuarios podrían ver esta imágen" - -#: view/theme/frio/config.php:162 -msgid "Custom" -msgstr "Personalizado" - -#: view/theme/frio/config.php:163 -msgid "Legacy" -msgstr "Legado" - -#: view/theme/frio/config.php:164 -msgid "Accented" -msgstr "Acentuado" - -#: view/theme/frio/config.php:165 -msgid "Select color scheme" -msgstr "Seleccionar esquema de color" - -#: view/theme/frio/config.php:166 -msgid "Select scheme accent" -msgstr "Selecciona esquema de Acentuado" - -#: view/theme/frio/config.php:166 -msgid "Blue" -msgstr "Azul" - -#: view/theme/frio/config.php:166 -msgid "Red" -msgstr "Rojo" - -#: view/theme/frio/config.php:166 -msgid "Purple" -msgstr "Púrpura" - -#: view/theme/frio/config.php:166 -msgid "Green" -msgstr "Verde" - -#: view/theme/frio/config.php:166 -msgid "Pink" -msgstr "Rosa" - -#: view/theme/frio/config.php:167 -msgid "Copy or paste schemestring" -msgstr "Copiar o pegar esquema" - -#: view/theme/frio/config.php:167 -msgid "" -"You can copy this string to share your theme with others. Pasting here " -"applies the schemestring" -msgstr "Puede copiar esta cadena para compartir su tema con otros. Pegando aquíAplica el Esquema" - -#: view/theme/frio/config.php:168 -msgid "Navigation bar background color" -msgstr "Color de fondo de barra de navegación" - -#: view/theme/frio/config.php:169 -msgid "Navigation bar icon color " -msgstr "Color de icono de barra de navegación" - -#: view/theme/frio/config.php:170 -msgid "Link color" -msgstr "Color de enlace" - -#: view/theme/frio/config.php:171 -msgid "Set the background color" -msgstr "Selecciona color de fondo" - -#: view/theme/frio/config.php:172 -msgid "Content background opacity" -msgstr "Opacidad del Fondo del Contenido" - -#: view/theme/frio/config.php:173 -msgid "Set the background image" -msgstr "Selecciona imagen de fondo" - -#: view/theme/frio/config.php:174 -msgid "Background image style" -msgstr "Estilo de imagen de fondo" - -#: view/theme/frio/config.php:179 -msgid "Login page background image" -msgstr "Imagen de fondo del Ingreso" - -#: view/theme/frio/config.php:183 -msgid "Login page background color" -msgstr "Color de fondo del Ingreso" - -#: view/theme/frio/config.php:183 -msgid "Leave background image and color empty for theme defaults" -msgstr "Deja imagen de fondo y color vacíos para el estándar" - -#: view/theme/frio/theme.php:207 +#: view/theme/frio/theme.php:211 msgid "Guest" msgstr "Invitado" -#: view/theme/frio/theme.php:210 +#: view/theme/frio/theme.php:214 msgid "Visitor" msgstr "Visitante" -#: view/theme/frio/theme.php:322 include/conversation.php:948 -msgid "Follow Thread" -msgstr "Seguir el hilo" - -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Alignment" msgstr "Alineación" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Left" msgstr "Izquierda" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Center" msgstr "Centrado" -#: view/theme/quattro/config.php:74 +#: view/theme/quattro/config.php:90 msgid "Color scheme" msgstr "Esquema de color" -#: view/theme/quattro/config.php:75 +#: view/theme/quattro/config.php:91 msgid "Posts font size" msgstr "Tamaño de letra de artículos" -#: view/theme/quattro/config.php:76 +#: view/theme/quattro/config.php:92 msgid "Textareas font size" msgstr "Tamaño de letra de áreas de texto" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" -msgstr "Lista separada por comas de foros de ayuda." +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" +msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "don't show" msgstr "no mostrar" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "show" msgstr "mostrar" -#: view/theme/vier/config.php:121 +#: view/theme/vier/config.php:137 msgid "Set style" msgstr "Definir estilo" -#: view/theme/vier/config.php:122 +#: view/theme/vier/config.php:138 msgid "Community Pages" msgstr "Páginas de Comunidad" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:125 +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 msgid "Community Profiles" msgstr "Perfiles de la Comunidad" -#: view/theme/vier/config.php:124 +#: view/theme/vier/config.php:140 msgid "Help or @NewHere ?" msgstr "¿Ayuda o @NewHere?" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:296 +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 msgid "Connect Services" msgstr "Conectar Servicios" -#: view/theme/vier/config.php:126 +#: view/theme/vier/config.php:142 msgid "Find Friends" msgstr "Buscar amistades" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:152 +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 msgid "Last users" msgstr "Últimos usuarios" -#: view/theme/vier/theme.php:211 +#: view/theme/vier/theme.php:234 msgid "Quick Start" msgstr "Inicio rápido" - -#: include/enotify.php:51 -msgid "[Friendica:Notify]" -msgstr "[Friendica:Notificar]" - -#: include/enotify.php:137 -#, php-format -msgid "%s New mail received at %s" -msgstr "%s Nuevo correo recibido %s" - -#: include/enotify.php:139 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s te envió mensaje privado a las %2$s." - -#: include/enotify.php:140 -msgid "a private message" -msgstr "un mensaje privado" - -#: include/enotify.php:140 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s te envió %2$s." - -#: include/enotify.php:142 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Visita %s para ver y/o responder a tus mensajes privados." - -#: include/enotify.php:188 -#, php-format -msgid "%1$s replied to you on %2$s's %3$s %4$s" -msgstr "%1$s te respondió %2$s %3$s %4$s" - -#: include/enotify.php:190 -#, php-format -msgid "%1$s tagged you on %2$s's %3$s %4$s" -msgstr "%1$s te etiquetó en %2$s %3$s %4$s" - -#: include/enotify.php:192 -#, php-format -msgid "%1$s commented on %2$s's %3$s %4$s" -msgstr "%1$s comentó en %2$s %3$s %4$s" - -#: include/enotify.php:202 -#, php-format -msgid "%1$s replied to you on your %2$s %3$s" -msgstr "%1$s respondió en tu %2$s %3$s" - -#: include/enotify.php:204 -#, php-format -msgid "%1$s tagged you on your %2$s %3$s" -msgstr "%1$s te etiquetó en %2$s %3$s" - -#: include/enotify.php:206 -#, php-format -msgid "%1$s commented on your %2$s %3$s" -msgstr "%1$s comentó en %2$s %3$s" - -#: include/enotify.php:213 -#, php-format -msgid "%1$s replied to you on their %2$s %3$s" -msgstr "%1$s respondió en su %2$s %3$s" - -#: include/enotify.php:215 -#, php-format -msgid "%1$s tagged you on their %2$s %3$s" -msgstr "%1$s te etiquetó en su %2$s %3$s" - -#: include/enotify.php:217 -#, php-format -msgid "%1$s commented on their %2$s %3$s" -msgstr "%1$s comentó en su %2$s %3$s" - -#: include/enotify.php:228 -#, php-format -msgid "%s %s tagged you" -msgstr "%s %s te etiquetó" - -#: include/enotify.php:230 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s te etiquetó en %2$s" - -#: include/enotify.php:232 -#, php-format -msgid "%1$s Comment to conversation #%2$d by %3$s" -msgstr "%1$s Comentó sobre #%2$d by %3$s" - -#: include/enotify.php:234 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s comentó en una artículo/elemento que sigues." - -#: include/enotify.php:239 include/enotify.php:254 include/enotify.php:279 -#: include/enotify.php:298 include/enotify.php:314 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Por favor, visita %s para ver y/o responder a la conversación." - -#: include/enotify.php:246 -#, php-format -msgid "%s %s posted to your profile wall" -msgstr "%s %s publicó en tu perfil" - -#: include/enotify.php:248 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s publicó en tu perfil a las %2$s" - -#: include/enotify.php:249 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s publicó en [url=%2$s]tu perfil[/url]" - -#: include/enotify.php:262 -#, php-format -msgid "%s %s shared a new post" -msgstr "%s %s compartió nuevo artículo" - -#: include/enotify.php:264 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s compartió un nuevo artículo a las %2$s" - -#: include/enotify.php:265 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]compartió nuevo artículo[/url]." - -#: include/enotify.php:270 -#, php-format -msgid "%s %s shared a post from %s" -msgstr "%s %s compartió artículo de %s" - -#: include/enotify.php:272 -#, php-format -msgid "%1$s shared a post from %2$s at %3$s" -msgstr "%1$s compartió artículo de %2$s en %3$s" - -#: include/enotify.php:273 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url] from %3$s." -msgstr "%1$s [url=%2$s]compartió artículo[/url] de %3$s." - -#: include/enotify.php:286 -#, php-format -msgid "%1$s %2$s poked you" -msgstr "%1$s %2$s te empujó" - -#: include/enotify.php:288 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s te empujó a las %2$s" - -#: include/enotify.php:289 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]te empujó[/url]." - -#: include/enotify.php:306 -#, php-format -msgid "%s %s tagged your post" -msgstr "%s %s etiquetó tu artículo" - -#: include/enotify.php:308 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s etiquetó tu artículo a las %2$s" - -#: include/enotify.php:309 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s etiquetó [url=%2$s]tu artículo[/url]" - -#: include/enotify.php:321 -#, php-format -msgid "%s Introduction received" -msgstr "%s presentación recibida" - -#: include/enotify.php:323 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Recibiste una presentación de '%1$s' en %2$s" - -#: include/enotify.php:324 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Recibiste [url=%1$s]una presentación de [/url] de %2$s." - -#: include/enotify.php:329 include/enotify.php:375 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Puedes visitar su perfil en %s" - -#: include/enotify.php:331 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Visita %s para aceptar o rechazar la presentación" - -#: include/enotify.php:338 -#, php-format -msgid "%s A new person is sharing with you" -msgstr "%s Una nueva persona comparte contigo" - -#: include/enotify.php:340 include/enotify.php:341 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "%1$s comparte contigo en %2$s" - -#: include/enotify.php:348 -#, php-format -msgid "%s You have a new follower" -msgstr "%s Tienes nuevo seguidor" - -#: include/enotify.php:350 include/enotify.php:351 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "Tienes nuevo seguidor en %2$s : %1$s" - -#: include/enotify.php:364 -#, php-format -msgid "%s Friend suggestion received" -msgstr "%s Sugerencia de amistad recibida" - -#: include/enotify.php:366 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Recibiste una sugerencia de amistad de '%1$s' en %2$s" - -#: include/enotify.php:367 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Recibiste [url=%1$s]una sugerencia de amistad[/url] en %2$s de %3$s." - -#: include/enotify.php:373 -msgid "Name:" -msgstr "Nombre: " - -#: include/enotify.php:374 -msgid "Photo:" -msgstr "Foto: " - -#: include/enotify.php:377 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Visita %s para aceptar o rechazar la sugerencia." - -#: include/enotify.php:385 include/enotify.php:400 -#, php-format -msgid "%s Connection accepted" -msgstr "%s Conexión aceptada" - -#: include/enotify.php:387 include/enotify.php:402 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "'%1$s' aceptó tu solicitud de conexión en %2$s" - -#: include/enotify.php:388 include/enotify.php:403 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "%2$s aceptó tu [url=%1$s]solicitud de conexión[/url]." - -#: include/enotify.php:393 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and " -"email without restriction." -msgstr "Ahora son amigos mutuos y puede intercambiar actualizaciones, fotos e email sin restricción." - -#: include/enotify.php:395 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Por favor visite %s si desea hacer algún cambio a su relación." - -#: include/enotify.php:408 -#, php-format -msgid "" -"'%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." -msgstr "'%1$s' te ha aceptado como fan, eso restringe algunas formas de comunicación - como mensajes privados e interacciones de perfil. Si es un famoso o página comunitaria, esos son ajustes automáticos." - -#: include/enotify.php:410 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future." -msgstr "'%1$s' puede elegirte para una relación cercana o bidireccional en el futuro." - -#: include/enotify.php:412 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Visita %s si deseas hacer algún cambio con este contacto." - -#: include/enotify.php:422 mod/removeme.php:63 -msgid "[Friendica System Notify]" -msgstr "[Friendica Sistema de Notificaciones]" - -#: include/enotify.php:422 -msgid "registration request" -msgstr "petición de registro" - -#: include/enotify.php:424 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "Recibiste una solicitud de registro de '%1$s' en %2$s" - -#: include/enotify.php:425 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "Recibiste una [url=%1$s]solicitud de registro[/url] de %2$s." - -#: include/enotify.php:430 -#, php-format -msgid "" -"Full Name:\t%s\n" -"Site Location:\t%s\n" -"Login Name:\t%s (%s)" -msgstr "Nombre Completo:\t%s\nUbicación:\t%s\nNombre de Usuario:\t%s (%s)" - -#: include/enotify.php:436 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Visita %s para aprobar o rechazar la solicitud." - -#: 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] "Limite diario de %d publicación alcanzado. La publicación fue rechazada." -msgstr[1] "Limite diario de %d publicaciones alcanzado. La publicación fue rechazada." - -#: 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] "Limite semanal de %d publicación alcanzado. La publicación fue rechazada." -msgstr[1] "Limite semanal de %d publicaciones alcanzado. La publicación fue rechazada." - -#: include/api.php:1155 -#, php-format -msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "Limite mensual de %d publicaciones alcanzado. La publicación fue rechazada." - -#: include/conversation.php:195 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s empujó %2$s" - -#: include/conversation.php:230 include/conversation.php:239 mod/tagger.php:90 -msgid "status" -msgstr "estado" - -#: 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 etiquetó %3$s %2$s con %4$s" - -#: include/conversation.php:636 -msgid "View in context" -msgstr "Verlo en contexto" - -#: include/conversation.php:702 -msgid "remove" -msgstr "eliminar" - -#: include/conversation.php:707 -msgid "Delete Selected Items" -msgstr "Eliminar los seleccionados" - -#: 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 "Has sido mencionado (%s)." - -#: include/conversation.php:756 -#, php-format -msgid "You are following %s." -msgstr "Estas siguiendo %s." - -#: include/conversation.php:759 -msgid "Tagged" -msgstr "Etiquetado" - -#: include/conversation.php:772 include/conversation.php:1115 -#: include/conversation.php:1153 -#, php-format -msgid "%s reshared this." -msgstr "%s reenvió esto." - -#: include/conversation.php:774 -msgid "Reshared" -msgstr "Compartido" - -#: include/conversation.php:774 -#, php-format -msgid "Reshared by %s" -msgstr "Compartido por %s" - -#: include/conversation.php:777 -#, php-format -msgid "%s is participating in this thread." -msgstr "%s participa en el hilo." - -#: include/conversation.php:780 -msgid "Stored" -msgstr "Almacenado" - -#: include/conversation.php:783 -msgid "Global" -msgstr "Global" - -#: include/conversation.php:786 -msgid "Relayed" -msgstr "Reenviado" - -#: include/conversation.php:786 -#, php-format -msgid "Relayed by %s." -msgstr "Reenviado por %s." - -#: include/conversation.php:789 -msgid "Fetched" -msgstr "Recuperado" - -#: include/conversation.php:789 -#, php-format -msgid "Fetched because of %s" -msgstr "Recuperado por %s" - -#: include/conversation.php:1100 -#, php-format -msgid "%s likes this." -msgstr "A %s le agrada." - -#: include/conversation.php:1103 -#, php-format -msgid "%s doesn't like this." -msgstr "A %s no le agrada." - -#: include/conversation.php:1106 -#, php-format -msgid "%s attends." -msgstr "%s asiste." - -#: include/conversation.php:1109 -#, php-format -msgid "%s doesn't attend." -msgstr "%s no asiste." - -#: include/conversation.php:1112 -#, php-format -msgid "%s attends maybe." -msgstr "%s quizá asistirá" - -#: include/conversation.php:1121 -msgid "and" -msgstr "y" - -#: include/conversation.php:1124 -#, php-format -msgid "and %d other people" -msgstr "y a otras %d personas" - -#: include/conversation.php:1132 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d personas les agrada" - -#: include/conversation.php:1133 -#, php-format -msgid "%s like this." -msgstr "A %s le agrada." - -#: include/conversation.php:1136 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d personas no les agrada" - -#: include/conversation.php:1137 -#, php-format -msgid "%s don't like this." -msgstr "A %s no le agrada." - -#: include/conversation.php:1140 -#, php-format -msgid "%2$d people attend" -msgstr "%2$d personas asisten" - -#: include/conversation.php:1141 -#, php-format -msgid "%s attend." -msgstr "%s asiste." - -#: include/conversation.php:1144 -#, php-format -msgid "%2$d people don't attend" -msgstr "%2$d personasno asiste." - -#: include/conversation.php:1145 -#, php-format -msgid "%s don't attend." -msgstr "%s no asiste." - -#: include/conversation.php:1148 -#, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d personas quizá asistan." - -#: include/conversation.php:1149 -#, php-format -msgid "%s attend maybe." -msgstr "%s quizás asistirá." - -#: include/conversation.php:1152 -#, php-format -msgid "%2$d people reshared this" -msgstr "%2$d personas reenviaron esto." - -#: include/conversation.php:1182 -msgid "Visible to everybody" -msgstr "Visible para cualquiera" - -#: include/conversation.php:1184 -msgid "Tag term:" -msgstr "Etiqueta:" - -#: include/conversation.php:1186 -msgid "Where are you right now?" -msgstr "¿Dónde estás ahora?" - -#: include/conversation.php:1187 -msgid "Delete item(s)?" -msgstr "¿Borrar artículo(s)?" - -#: include/conversation.php:1197 -msgid "New Post" -msgstr "Nuevo artículo" - -#: include/conversation.php:1200 -msgid "Share" -msgstr "Compartir" - -#: include/conversation.php:1202 mod/editpost.php:90 mod/wallmessage.php:153 -#: mod/message.php:202 mod/message.php:371 -msgid "Upload photo" -msgstr "Subir foto" - -#: include/conversation.php:1203 mod/editpost.php:91 -msgid "upload photo" -msgstr "subir foto" - -#: include/conversation.php:1204 mod/editpost.php:92 -msgid "Attach file" -msgstr "Añadir archivo" - -#: include/conversation.php:1205 mod/editpost.php:93 -msgid "attach file" -msgstr "añadir archivo" - -#: include/conversation.php:1215 mod/editpost.php:101 -msgid "set location" -msgstr "establecer ubicación" - -#: include/conversation.php:1216 mod/editpost.php:102 -msgid "Clear browser location" -msgstr "Borrar ubicación del navegador" - -#: include/conversation.php:1217 mod/editpost.php:103 -msgid "clear location" -msgstr "borrar ubicación" - -#: include/conversation.php:1223 mod/editpost.php:105 -msgid "Permission settings" -msgstr "Configuración de permisos" - -#: include/conversation.php:1224 mod/photos.php:969 mod/photos.php:1335 -#: mod/editpost.php:134 mod/events.php:578 -msgid "Permissions" -msgstr "Permisos" - -#: include/conversation.php:1233 mod/editpost.php:114 -msgid "Public post" -msgstr "Artículo público" - -#: include/conversation.php:1251 mod/editpost.php:136 -msgid "Open Compose page" -msgstr "Abrir página de publicación" - -#: 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 "Consulta invalida" - -#: mod/wall_upload.php:233 -msgid "Wall Photos" -msgstr "Foto del Perfil" - -#: mod/removeme.php:63 -msgid "User deleted their account" -msgstr "Usuario borró su cienta" - -#: mod/removeme.php:64 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "En tu nodo de Friendica, un usuario eliminó su cuenta. Asegúrese de quesus datos se eliminan de los respaldos." - -#: mod/removeme.php:65 -#, php-format -msgid "The user id is %d" -msgstr "El Id de Usuario es %d" - -#: mod/removeme.php:99 mod/removeme.php:102 -msgid "Remove My Account" -msgstr "Eliminar mi cuenta" - -#: mod/removeme.php:100 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Esto eliminará por completo tu cuenta. Una vez hecho no puede deshacerse." - -#: mod/removeme.php:101 -msgid "Please enter your password for verification:" -msgstr "Introduce tu contraseña para verificación:" - -#: mod/ostatus_subscribe.php:35 -msgid "Subscribing to OStatus contacts" -msgstr "Subscribir a Contactos de OStatus" - -#: mod/ostatus_subscribe.php:45 -msgid "No contact provided." -msgstr "No se suministra contacto." - -#: mod/ostatus_subscribe.php:51 -msgid "Couldn't fetch information for contact." -msgstr "No se encuentra la información del contacto." - -#: mod/ostatus_subscribe.php:61 -msgid "Couldn't fetch friends for contact." -msgstr "No se encuentran datos de amigos de contacto." - -#: mod/ostatus_subscribe.php:79 mod/repair_ostatus.php:65 -msgid "Done" -msgstr "Hecho" - -#: mod/ostatus_subscribe.php:93 -msgid "success" -msgstr "éxito!" - -#: mod/ostatus_subscribe.php:95 -msgid "failed" -msgstr "fallido" - -#: mod/ostatus_subscribe.php:103 mod/repair_ostatus.php:71 -msgid "Keep this window open until done." -msgstr "Manténer la ventana abierta hasta que finalice." - -#: mod/photos.php:130 mod/photos.php:1638 -msgid "Recent Photos" -msgstr "Fotos Recientes" - -#: mod/photos.php:132 mod/photos.php:1105 mod/photos.php:1640 -msgid "Upload New Photos" -msgstr "Subir Nuevas Fotos" - -#: mod/photos.php:183 -msgid "Contact information unavailable" -msgstr "Información del contacto no disponible" - -#: mod/photos.php:222 -msgid "Album not found." -msgstr "Álbum no encontrado." - -#: mod/photos.php:280 -msgid "Album successfully deleted" -msgstr "Album borrado con éxito" - -#: mod/photos.php:282 -msgid "Album was empty." -msgstr "El Álbum estaba vacío." - -#: mod/photos.php:314 -msgid "Failed to delete the photo." -msgstr "Error al borrar la Foto" - -#: mod/photos.php:589 -msgid "a photo" -msgstr "una foto" - -#: mod/photos.php:589 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s fue etiquetado en %2$s por %3$s" - -#: mod/photos.php:678 -msgid "Image upload didn't complete, please try again" -msgstr "Subida de imagen no completa, vuelve a intentar" - -#: mod/photos.php:681 -msgid "Image file is missing" -msgstr "Falta el archivo de imagen" - -#: mod/photos.php:686 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "El servidor no puede aceptar la carga de archivos nuevos en este momento, comuníquese con el Administrador" - -#: mod/photos.php:710 -msgid "Image file is empty." -msgstr "El archivo de imagen está vacío." - -#: mod/photos.php:841 -msgid "No photos selected" -msgstr "Ninguna foto seleccionada" - -#: mod/photos.php:907 mod/videos.php:182 -msgid "Access to this item is restricted." -msgstr "Acceso a este elemento está restringido." - -#: mod/photos.php:961 -msgid "Upload Photos" -msgstr "Subir fotos" - -#: mod/photos.php:965 mod/photos.php:1050 -msgid "New album name: " -msgstr "Nombre del nuevo álbum: " - -#: mod/photos.php:966 -msgid "or select existing album:" -msgstr "o seleccione un Álbum:" - -#: mod/photos.php:967 -msgid "Do not show a status post for this upload" -msgstr "No actualizar tu estado con este envío" - -#: mod/photos.php:1033 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "¿Estás seguro de quieres borrar este álbum y todas sus fotos?" - -#: mod/photos.php:1034 mod/photos.php:1055 -msgid "Delete Album" -msgstr "Eliminar álbum" - -#: mod/photos.php:1061 -msgid "Edit Album" -msgstr "Modificar álbum" - -#: mod/photos.php:1062 -msgid "Drop Album" -msgstr "Suelte un Álbum" - -#: mod/photos.php:1067 -msgid "Show Newest First" -msgstr "Mostrar más nuevos primero" - -#: mod/photos.php:1069 -msgid "Show Oldest First" -msgstr "Mostrar más antiguos primero" - -#: mod/photos.php:1090 mod/photos.php:1623 -msgid "View Photo" -msgstr "Ver foto" - -#: mod/photos.php:1127 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." - -#: mod/photos.php:1129 -msgid "Photo not available" -msgstr "Foto no disponible" - -#: mod/photos.php:1139 -msgid "Do you really want to delete this photo?" -msgstr "¿Estás seguro de que quieres borrar esta foto?" - -#: mod/photos.php:1140 mod/photos.php:1340 -msgid "Delete Photo" -msgstr "Eliminar foto" - -#: mod/photos.php:1231 -msgid "View photo" -msgstr "Ver foto" - -#: mod/photos.php:1233 -msgid "Edit photo" -msgstr "Modificar foto" - -#: mod/photos.php:1234 -msgid "Delete photo" -msgstr "Borrar foto" - -#: mod/photos.php:1235 -msgid "Use as profile photo" -msgstr "Usar como foto del perfil" - -#: mod/photos.php:1242 -msgid "Private Photo" -msgstr "Foto privada" - -#: mod/photos.php:1248 -msgid "View Full Size" -msgstr "Ver a tamaño completo" - -#: mod/photos.php:1308 -msgid "Tags: " -msgstr "Etiquetas: " - -#: mod/photos.php:1311 -msgid "[Select tags to remove]" -msgstr "[Seleccionar etiquetas a borrar]" - -#: mod/photos.php:1326 -msgid "New album name" -msgstr "Nuevo nombre del álbum" - -#: mod/photos.php:1327 -msgid "Caption" -msgstr "Título" - -#: mod/photos.php:1328 -msgid "Add a Tag" -msgstr "Añadir una etiqueta" - -#: mod/photos.php:1328 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping" - -#: mod/photos.php:1329 -msgid "Do not rotate" -msgstr "No rotar" - -#: mod/photos.php:1330 -msgid "Rotate CW (right)" -msgstr "Girar a la derecha" - -#: mod/photos.php:1331 -msgid "Rotate CCW (left)" -msgstr "Girar a la izquierda" - -#: mod/photos.php:1533 -msgid "Like" -msgstr "Me gusta" - -#: mod/photos.php:1535 -msgid "Dislike" -msgstr "No me gusta" - -#: mod/photos.php:1559 -msgid "Map" -msgstr "Mapa" - -#: mod/photos.php:1629 mod/videos.php:259 -msgid "View Album" -msgstr "Ver Álbum" - -#: mod/dfrn_confirm.php:140 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Esto puede ocurrir a veces si fuera solicitado por ambas personas y ya hubiera sido aprobada." - -#: mod/dfrn_confirm.php:241 -msgid "Response from remote site was not understood." -msgstr "Respuesta del sitio remoto no se entendió." - -#: mod/dfrn_confirm.php:248 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Respuesta inesperada del sitio remoto: " - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Confirmación completada con éxito." - -#: mod/dfrn_confirm.php:275 -msgid "Temporary failure. Please wait and try again." -msgstr "Falla temporal. Por favor espere y vuelva a intentar." - -#: mod/dfrn_confirm.php:278 -msgid "Introduction failed or was revoked." -msgstr "La presentación fallida o ha sido anulada." - -#: mod/dfrn_confirm.php:283 -msgid "Remote site reported: " -msgstr "Sitio remoto reportó: " - -#: mod/dfrn_confirm.php:388 -#, php-format -msgid "No user record found for '%s' " -msgstr "No hay registros de '%s' " - -#: mod/dfrn_confirm.php:398 -msgid "Our site encryption key is apparently messed up." -msgstr "Nuestro clave de cifrado del sitio aparentemente falló." - -#: mod/dfrn_confirm.php:409 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Se proporcionó una URL vacía o no podemos descrifrarla." - -#: mod/dfrn_confirm.php:425 -msgid "Contact record was not found for you on our site." -msgstr "Tu contacto no se ha encontrado en nuestra base de datos." - -#: mod/dfrn_confirm.php:439 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Clave pública del sitio no disponible en datos del contacto %s." - -#: 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 "El ID de tu sistema es un duplicado en nuestro sistema. Debería funcionar si intentas de nuevo." - -#: mod/dfrn_confirm.php:466 -msgid "Unable to set your contact credentials on our system." -msgstr "Imposible establecer tu contacto en nuestro sistema." - -#: mod/dfrn_confirm.php:522 -msgid "Unable to update your contact profile details on our system" -msgstr "Imposible actualizar tus detalles del perfil en nuestro sistema" - -#: mod/settings.php:90 -msgid "Missing some important data!" -msgstr "¡Información importante faltante!" - -#: mod/settings.php:200 -msgid "Failed to connect with email account using the settings provided." -msgstr "Error al conectar con el Correo mediante esa configuración." - -#: mod/settings.php:229 -msgid "Contact CSV file upload error" -msgstr "Error al subir archivo CSV" - -#: mod/settings.php:248 -msgid "Importing Contacts done" -msgstr "Importación del contacto completada" - -#: mod/settings.php:261 -msgid "Relocate message has been send to your contacts" -msgstr "Mensaje de reubicación enviado a sus contactos." - -#: mod/settings.php:273 -msgid "Passwords do not match." -msgstr "No coinciden los passwords" - -#: mod/settings.php:287 -msgid "Password unchanged." -msgstr "Contraseña no modificada" - -#: mod/settings.php:372 -msgid "Please use a shorter name." -msgstr "Utiliza un nombre mas corto" - -#: mod/settings.php:375 -msgid "Name too short." -msgstr "Nombre muy corto" - -#: mod/settings.php:382 -msgid "Wrong Password." -msgstr "Password erróneo" - -#: mod/settings.php:387 -msgid "Invalid email." -msgstr "Corréo no válido." - -#: mod/settings.php:393 -msgid "Cannot change to that email." -msgstr "Imposible cambiar a ese correo." - -#: mod/settings.php:431 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Foro privado sin permisos de privacidad. Grupo de privacidad por defecto." - -#: mod/settings.php:434 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Foro privado sin permisos ni grupo de privacidad por defecto." - -#: mod/settings.php:451 -msgid "Settings were not updated." -msgstr "Configuración no actualizada" - -#: mod/settings.php:507 mod/settings.php:533 mod/settings.php:567 -msgid "Add application" -msgstr "Agregar aplicación" - -#: mod/settings.php:511 mod/settings.php:537 -msgid "Consumer Key" -msgstr "Clave de Consumidor" - -#: mod/settings.php:512 mod/settings.php:538 -msgid "Consumer Secret" -msgstr "Secreto de Consumidor" - -#: mod/settings.php:513 mod/settings.php:539 -msgid "Redirect" -msgstr "Redirigir" - -#: mod/settings.php:514 mod/settings.php:540 -msgid "Icon url" -msgstr "Dirección del ícono" - -#: mod/settings.php:525 -msgid "You can't edit this application." -msgstr "No puedes editar esta aplicación." - -#: mod/settings.php:566 -msgid "Connected Apps" -msgstr "Aplicaciones conectadas" - -#: mod/settings.php:570 -msgid "Client key starts with" -msgstr "Clave de cliente comienza con" - -#: mod/settings.php:571 -msgid "No name" -msgstr "Sin nombre" - -#: mod/settings.php:572 -msgid "Remove authorization" -msgstr "Quitar autorización" - -#: mod/settings.php:583 -msgid "No Addon settings configured" -msgstr "Ningún Añadido configurado" - -#: mod/settings.php:592 -msgid "Addon Settings" -msgstr "Configuración de Añadidos" - -#: mod/settings.php:613 -msgid "Additional Features" -msgstr "Opciones Adicionales" - -#: mod/settings.php:638 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/settings.php:638 mod/settings.php:639 -msgid "enabled" -msgstr "habilitado" - -#: mod/settings.php:638 mod/settings.php:639 -msgid "disabled" -msgstr "deshabilitado" - -#: mod/settings.php:638 mod/settings.php:639 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Soporte integrado de conexión con %s %s" - -#: mod/settings.php:639 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: mod/settings.php:670 -msgid "Email access is disabled on this site." -msgstr "Acceso por correo deshabilitado en este sitio." - -#: mod/settings.php:675 mod/settings.php:711 -msgid "None" -msgstr "Ninguno" - -#: mod/settings.php:686 -msgid "General Social Media Settings" -msgstr "Configuración General de Medios Sociales" - -#: mod/settings.php:687 -msgid "Accept only top level posts by contacts you follow" -msgstr "Sólo artículos principales de contactos que sigo" - -#: mod/settings.php:687 -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 " -"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." -msgstr "El sistema auto finaliza los hilos cuando llega un comentario. Esto Tiene el efecto secundario que puedes recibir artículos iniciados por un no seguidor, pero han sido comentados por alguien que sigues. Esta configuración lo desactiva. Cuando lo actives, solo recibirásartículos de personas que realmente sigues." - -#: mod/settings.php:688 -msgid "Disable Content Warning" -msgstr "Deshabilitar advertencia de contenido" - -#: mod/settings.php:688 -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 " -"collapsing and sets the content warning as the post title. Doesn't affect " -"any other content filtering you eventually set up." -msgstr "Usuarios de Mastodon o Pleroma pueden establecer una advertencias de contenido para colapsar la publicación por default. Esto desactiva el colapso y establece la advertencia de contenido como título posterior. No afecta otro contenido de filtros que se haya configurado." - -#: mod/settings.php:689 -msgid "Disable intelligent shortening" -msgstr "Deshabilitar recorte inteligente" - -#: mod/settings.php:689 -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 "El sistema intenta encontrar el mejor enlace para agregar a artículos recortados Si habilita la opción, cada envío recortado apuntara siempre al artículo original en Friendica." - -#: mod/settings.php:690 -msgid "Attach the link title" -msgstr "Agregar título del link" - -#: mod/settings.php:690 -msgid "" -"When activated, the title of the attached link will be added as a title on " -"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" -" share feed content." -msgstr "Si se activa, el título del link se añade como titulo en artículos de Diaspora. Esto es bueno con contactos \"remote-self\" que comparten contenido." - -#: mod/settings.php:691 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Automáticamente seguir seguidores/menciones de GNUsocial (OStatus)" - -#: mod/settings.php:691 -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 "Si recibes un mensaje de un perfil desconocido de OStatus, esta opción decide que hacer. Si es habilitado, un nuevo contacto sera creado para cada usuario." - -#: mod/settings.php:692 -msgid "Default group for OStatus contacts" -msgstr "Grupo por defecto para contactos OStatus" - -#: mod/settings.php:693 -msgid "Your legacy GNU Social account" -msgstr "Tu cuenta GNU social origen" - -#: mod/settings.php:693 -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 "Si usas tu nombre de perfil GNUsocial/Statusnet aqui (en el formato de usuario@dominio.tld), sus contactos serán añadidos automáticamente. El campo se vaciará cuando termine. " - -#: mod/settings.php:696 -msgid "Repair OStatus subscriptions" -msgstr "Reparar subscripciones OStatus" - -#: mod/settings.php:700 -msgid "Email/Mailbox Setup" -msgstr "Configuración de Correo/Buzón" - -#: mod/settings.php:701 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Si quieres comunicarte con contactos de correo con este servicio (opcional), especifica cómo conectar con tu buzón." - -#: mod/settings.php:702 -msgid "Last successful email check:" -msgstr "Última comprobación de correo éxitosa:" - -#: mod/settings.php:704 -msgid "IMAP server name:" -msgstr "Nombre del servidor IMAP:" - -#: mod/settings.php:705 -msgid "IMAP port:" -msgstr "Puerto IMAP:" - -#: mod/settings.php:706 -msgid "Security:" -msgstr "Seguridad:" - -#: mod/settings.php:707 -msgid "Email login name:" -msgstr "Usuario de Correo:" - -#: mod/settings.php:708 -msgid "Email password:" -msgstr "Contraseña de Correo:" - -#: mod/settings.php:709 -msgid "Reply-to address:" -msgstr "Dirección de respuesta:" - -#: mod/settings.php:710 -msgid "Send public posts to all email contacts:" -msgstr "Enviar notificaciones públicas a todos los correos:" - -#: mod/settings.php:711 -msgid "Action after import:" -msgstr "Acción al importar:" - -#: mod/settings.php:711 -msgid "Move to folder" -msgstr "Mover a un folder" - -#: mod/settings.php:712 -msgid "Move to folder:" -msgstr "Mover al folder:" - -#: mod/settings.php:726 -msgid "Unable to find your profile. Please contact your admin." -msgstr "No se encontró tu perfil. Contacta al Administrador." - -#: mod/settings.php:763 -msgid "Personal Page Subtypes" -msgstr "Subtipos de Página Personal" - -#: mod/settings.php:764 -msgid "Community Forum Subtypes" -msgstr "Subtipos de Foro de Comunidad" - -#: mod/settings.php:772 -msgid "Account for a personal profile." -msgstr "Cuenta para un perfil personal." - -#: mod/settings.php:776 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "Cuenta para una organización que aprueba automáticamente solicitudes de \"Seguidores\"." - -#: mod/settings.php:780 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "Cuenta Reflector de noticias que aprueba automáticamente solicitudes de contacto como \"Seguidores\"." - -#: mod/settings.php:784 -msgid "Account for community discussions." -msgstr "Cuenta para discusiones de la comunidad." - -#: mod/settings.php:788 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "Cuenta para perfil personal regular que requiere aprobación manual de \"Amigos\" and \"Seguidores\"." - -#: mod/settings.php:792 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "Cuenta para un perfil público que aprueba automáticamente las solicitudes de contacto como «Seguidores»." - -#: mod/settings.php:796 -msgid "Automatically approves all contact requests." -msgstr "Aprueba automáticamente las solicitudes de contacto." - -#: mod/settings.php:800 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "Cuenta para un perfil popular que aprueba automáticamente solicitudes de contacto como \"Amigos\"." - -#: mod/settings.php:803 -msgid "Private Forum [Experimental]" -msgstr "Foro privado [Experimental]" - -#: mod/settings.php:804 -msgid "Requires manual approval of contact requests." -msgstr "Requiere aprobación manual de solicitudes de contacto." - -#: mod/settings.php:815 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:815 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opcional) Permitir a este OpenID acceder a esta cuenta." - -#: mod/settings.php:823 -msgid "Publish your profile in your local site directory?" -msgstr "Publicar tu perfil en tu Directorio Local?" - -#: mod/settings.php:823 -#, php-format -msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "Tu perfil se publicará en el directorio de nodo local . Los detalles de tu perfil pueden ser públicos según los ajustes del sistema." - -#: mod/settings.php:829 -#, php-format -msgid "" -"Your profile will also be published in the global friendica directories " -"(e.g. %s)." -msgstr "Tu perfil también será publicado en Directorios Globales Friendica (ej. %s)." - -#: mod/settings.php:835 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "Tu dirección de Identidad es '%s' o '%s'." - -#: mod/settings.php:846 -msgid "Account Settings" -msgstr "Configuración de Cuenta" - -#: mod/settings.php:854 -msgid "Password Settings" -msgstr "Configuración de Contraseña" - -#: mod/settings.php:855 -msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "Caracteres permitidos de a-z, A-Z, 0-9 y signos especiales excepto espacios, letras con acento y Dos Puntos (:)." - -#: mod/settings.php:856 -msgid "Leave password fields blank unless changing" -msgstr "Deja la contraseña en blanco si no quieres cambiarla" - -#: mod/settings.php:857 -msgid "Current Password:" -msgstr "Contraseña actual:" - -#: mod/settings.php:857 -msgid "Your current password to confirm the changes" -msgstr "Tu contraseña actual para confirmar los cambios." - -#: mod/settings.php:858 -msgid "Password:" -msgstr "Contraseña:" - -#: mod/settings.php:858 -msgid "Your current password to confirm the changes of the email address" -msgstr "Tu contraseña actual para confirmar los cambios de cuenta de corréo." - -#: mod/settings.php:861 -msgid "Delete OpenID URL" -msgstr "Borrar URL de OpenID" - -#: mod/settings.php:863 -msgid "Basic Settings" -msgstr "Configuración Básica" - -#: mod/settings.php:865 -msgid "Email Address:" -msgstr "Dirección de Correo:" - -#: mod/settings.php:866 -msgid "Your Timezone:" -msgstr "Zona horaria:" - -#: mod/settings.php:867 -msgid "Your Language:" -msgstr "Tu idioma:" - -#: mod/settings.php:867 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Selecciona el idioma que usará la interfaz Friendica y para enviarte correos." - -#: mod/settings.php:868 -msgid "Default Post Location:" -msgstr "Ubicación predeterminada:" - -#: mod/settings.php:869 -msgid "Use Browser Location:" -msgstr "Usar localización del navegador:" - -#: mod/settings.php:871 -msgid "Security and Privacy Settings" -msgstr "Configuración de Seguridad y Privacidad" - -#: mod/settings.php:873 -msgid "Maximum Friend Requests/Day:" -msgstr "Número máximo de solicitudes de amistad/día:" - -#: mod/settings.php:873 mod/settings.php:883 -msgid "(to prevent spam abuse)" -msgstr "(para prevenir abuso de basura)" - -#: mod/settings.php:875 -msgid "Allow your profile to be searchable globally?" -msgstr "¿Permitir tu perfil ser encontrado globalmente?" - -#: mod/settings.php:875 -msgid "" -"Activate this setting if you want others to easily find and follow you. Your" -" profile will be searchable on remote systems. This setting also determines " -"whether Friendica will inform search engines that your profile should be " -"indexed or not." -msgstr "Activa esta configuración si quieres que otros te encuentren y sigan fácilmente. Tu perfil se podrá buscar en sistemas remotos. Esta configuración también determina si Friendica informará a los motores de búsqueda que tu perfil debe ser indexado o no." - -#: mod/settings.php:876 -msgid "Hide your contact/friend list from viewers of your profile?" -msgstr "Esconde tu lista de contactos/amistades de otros a tu perfil?" - -#: mod/settings.php:876 -msgid "" -"A list of your contacts is displayed on your profile page. Activate this " -"option to disable the display of your contact list." -msgstr "Se muestra una lista de tus contactos en tu Perfil. Activar esta opción para deshabilitar la visualización de tu lista de contactos." - -#: mod/settings.php:877 -msgid "Hide your profile details from anonymous viewers?" -msgstr "¿Esconder tus detalles de Perfil de usuarios anónimos?" - -#: mod/settings.php:877 -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 "Visitantes anónimos solo verán tu foto de perfil, tu nombre para mostrar y el apodo que usas en tu página de perfil. Tus publicaciones públicas y Las respuestas seguirán accesibles por otros medios." - -#: mod/settings.php:878 -msgid "Make public posts unlisted" -msgstr "No listar mis artículos públicos" - -#: mod/settings.php:878 -msgid "" -"Your public posts will not appear on the community pages or in search " -"results, nor be sent to relay servers. However they can still appear on " -"public feeds on remote servers." -msgstr "Tus publicaciones públicas no aparecerán en páginas de la comunidad ni en búsquedas, ni se enviaran a servidores de retransmisión. Sin embargo, aparecerán en artículos públicos de servidores remotos." - -#: mod/settings.php:879 -msgid "Make all posted pictures accessible" -msgstr "Hacer accesibles todas las fotos" - -#: mod/settings.php:879 -msgid "" -"This option makes every posted picture accessible via the direct link. This " -"is a workaround for the problem that most other networks can't handle " -"permissions on pictures. Non public pictures still won't be visible for the " -"public on your photo albums though." -msgstr "Esta opción hace accesibles todas las imágenes a través del enlace directo. Este es una solución al problema que la mayoría de las redes no pueden manejar permisos en las imágenes. Las imágenes no públicas aún no serán visibles para elpúblico en tus álbumes de fotos." - -#: mod/settings.php:880 -msgid "Allow friends to post to your profile page?" -msgstr "¿Permitir que tus amigos publiquen en tu página de perfil?" - -#: mod/settings.php:880 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "Tus contactos pueden escribir artículos en tu perfil. Estas publicaciones se distribuirán a tus contactos" - -#: mod/settings.php:881 -msgid "Allow friends to tag your posts?" -msgstr "¿Permitir a los amigos etiquetar tus publicaciones?" - -#: mod/settings.php:881 -msgid "Your contacts can add additional tags to your posts." -msgstr "Tus contactos pueden añadir etiquetas adicionales a tus artículos." - -#: mod/settings.php:882 -msgid "Permit unknown people to send you private mail?" -msgstr "¿Permitir que desconocidos te manden correos privados?" - -#: mod/settings.php:882 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "Usuarios de Friendica pueden enviarte mensajes privados incluso si no están en tu lista de contactos." - -#: mod/settings.php:883 -msgid "Maximum private messages per day from unknown people:" -msgstr "Número máximo de mensajes diarios para desconocidos:" - -#: mod/settings.php:885 -msgid "Default Post Permissions" -msgstr "Permisos por defecto para publicaciones" - -#: mod/settings.php:889 -msgid "Expiration settings" -msgstr "Configuración de Expiración" - -#: mod/settings.php:890 -msgid "Automatically expire posts after this many days:" -msgstr "Publicaciones caducarán solas después de estos días:" - -#: mod/settings.php:890 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Si dejas vacío no caducarán. Publicaciones caducadas serán borradas" - -#: mod/settings.php:891 -msgid "Expire posts" -msgstr "Caducar artículos" - -#: mod/settings.php:891 -msgid "When activated, posts and comments will be expired." -msgstr "Cuando se activa, artículos y comentarios caducarán." - -#: mod/settings.php:892 -msgid "Expire personal notes" -msgstr "Caducar Anotaciones" - -#: mod/settings.php:892 -msgid "" -"When activated, the personal notes on your profile page will be expired." -msgstr "Si se activa, las Anotaciones en tu Perfil caducarán." - -#: mod/settings.php:893 -msgid "Expire starred posts" -msgstr "Caducar artículos Destacados" - -#: mod/settings.php:893 -msgid "" -"Starring posts keeps them from being expired. That behaviour is overwritten " -"by this setting." -msgstr "Destacar las publicaciones evita que caduquen. Ese comportamiento cambiacon este ajuste." - -#: mod/settings.php:894 -msgid "Expire photos" -msgstr "Caducar fotos" - -#: mod/settings.php:894 -msgid "When activated, photos will be expired." -msgstr "Cuando se activa, las fotos expirarán." - -#: mod/settings.php:895 -msgid "Only expire posts by others" -msgstr "Solo caducar artículos de otros" - -#: mod/settings.php:895 -msgid "" -"When activated, your own posts never expire. Then the settings above are " -"only valid for posts you received." -msgstr "Cuando se activa, publicaciones propias nunca caducan. Esta configuración solo es válida para las artículos recibidas." - -#: mod/settings.php:898 -msgid "Notification Settings" -msgstr "Configuración de Notificaciones" - -#: mod/settings.php:899 -msgid "Send a notification email when:" -msgstr "Enviar notificación por correo cuando:" - -#: mod/settings.php:900 -msgid "You receive an introduction" -msgstr "Recibas una presentación" - -#: mod/settings.php:901 -msgid "Your introductions are confirmed" -msgstr "Tu presentación sea confirmada" - -#: mod/settings.php:902 -msgid "Someone writes on your profile wall" -msgstr "Alguien escriba en tu perfil" - -#: mod/settings.php:903 -msgid "Someone writes a followup comment" -msgstr "Alguien escriba en un comentario que sigo" - -#: mod/settings.php:904 -msgid "You receive a private message" -msgstr "Recibas un mensaje privado" - -#: mod/settings.php:905 -msgid "You receive a friend suggestion" -msgstr "Recibas una sugerencia de amistad" - -#: mod/settings.php:906 -msgid "You are tagged in a post" -msgstr "Seas etiquetado en un artículo" - -#: mod/settings.php:907 -msgid "You are poked/prodded/etc. in a post" -msgstr "Te han tocado/empujado/etc. en una publicación" - -#: mod/settings.php:909 -msgid "Activate desktop notifications" -msgstr "Activar notificaciones" - -#: mod/settings.php:909 -msgid "Show desktop popup on new notifications" -msgstr "Mostrar notificaciones emergentes en caso de nuevos eventos." - -#: mod/settings.php:911 -msgid "Text-only notification emails" -msgstr "Notificaciones de correo solo en texto" - -#: mod/settings.php:913 -msgid "Send text only notification emails, without the html part" -msgstr "Enviar correo de notificación en formato Solo Texto sin html" - -#: mod/settings.php:915 -msgid "Show detailled notifications" -msgstr "Mostrar notificaciones detalladas" - -#: mod/settings.php:917 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "Por default, notificaciones se condensan en una sola notificación por artículo. Cuando se habilita se muestran cada notificación." - -#: mod/settings.php:919 -msgid "Show notifications of ignored contacts" -msgstr "Mostrar notificación de Contactos Ignorados" - -#: mod/settings.php:921 -msgid "" -"You don't see posts from ignored contacts. But you still see their comments." -" This setting controls if you want to still receive regular notifications " -"that are caused by ignored contacts or not." -msgstr "No ves publicaciones de contactos ignorados. Pero todavía ves sus comentarios. Esta configuración controla si aún desea recibir notificaciones regulares causadas por contactos ignorados o no." - -#: mod/settings.php:923 -msgid "Advanced Account/Page Type Settings" -msgstr "Configuración avanzada de tipo de Cuenta/Página" - -#: mod/settings.php:924 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambiar el comportamiento de esta cuenta para situaciones especiales" - -#: mod/settings.php:927 -msgid "Import Contacts" -msgstr "Importar contactos" - -#: mod/settings.php:928 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "Subir archivo CSV que contenga identificador de tus cuentas seguidas en elprimera columna que exportó desde la cuenta anterior." - -#: mod/settings.php:929 -msgid "Upload File" -msgstr "Subir archivo" - -#: mod/settings.php:931 -msgid "Relocate" -msgstr "Relocalizar" - -#: mod/settings.php:932 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "Si migró este perfil desde otro servidor y algunos contactos no reciben sus publicaciones intente oprimiendo esta opción." - -#: mod/settings.php:933 -msgid "Resend relocate message to contacts" -msgstr "Reenviar mensaje de relocalización a contactos" - -#: mod/editpost.php:44 mod/editpost.php:54 -msgid "Item not found" -msgstr "Elemento no encontrado" - -#: mod/editpost.php:61 -msgid "Edit post" -msgstr "Editar publicación" - -#: mod/editpost.php:94 mod/wallmessage.php:154 mod/message.php:203 -#: mod/message.php:372 -msgid "Insert web link" -msgstr "Insertar enlace" - -#: mod/editpost.php:95 -msgid "web link" -msgstr "enlace web" - -#: mod/editpost.php:96 -msgid "Insert video link" -msgstr "Insertar enlace del vídeo" - -#: mod/editpost.php:97 -msgid "video link" -msgstr "enlace de video" - -#: mod/editpost.php:98 -msgid "Insert audio link" -msgstr "Insertar vínculo del audio" - -#: mod/editpost.php:99 -msgid "audio link" -msgstr "enlace de audio" - -#: mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo en 24 horas." - -#: mod/fbrowser.php:131 -msgid "Files" -msgstr "Archivos" - -#: mod/ping.php:285 -msgid "{0} wants to be your friend" -msgstr "{0} Quiere ser tu amigo" - -#: mod/ping.php:302 -msgid "{0} requested registration" -msgstr "{0} solicita registro" - -#: mod/ping.php:315 -#, php-format -msgid "{0} and %d others requested registration" -msgstr "{0} y %d otros solicitaron registro" - -#: mod/api.php:102 mod/api.php:124 -msgid "Authorize application connection" -msgstr "Autorizar la conexión de la aplicación" - -#: mod/api.php:103 -msgid "Return to your app and insert this Securty Code:" -msgstr "Regresa a tu aplicación e introduce este código de seguridad:" - -#: 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 "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?" - -#: mod/display.php:233 mod/display.php:317 -msgid "The requested item doesn't exist or has been deleted." -msgstr "El artículo solicitado no existe o fue borrado." - -#: mod/display.php:397 -msgid "The feed for this item is unavailable." -msgstr "El hilo de este artículo no se encontró" - -#: mod/wall_attach.php:105 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Disculpa, posiblemente archivo mas grande que lo permitido por PHP." - -#: mod/wall_attach.php:105 -msgid "Or - did you try to upload an empty file?" -msgstr "O - intentó subir un archivo vacío?" - -#: mod/wall_attach.php:116 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "El archivo excede Tamaño de %s" - -#: mod/wall_attach.php:131 -msgid "File upload failed." -msgstr "Ha fallado la subida del archivo." - -#: mod/match.php:62 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "No hay etiquetas, añade etiquetas a tu perfil." - -#: mod/match.php:125 -msgid "Profile Match" -msgstr "Coincidencia de Perfil" - -#: mod/follow.php:84 -msgid "You already added this contact." -msgstr "Ya has añadido este contacto." - -#: mod/follow.php:100 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "No se pudo detectar el tipo de red. Contacto no puede ser agregado." - -#: mod/follow.php:108 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado." - -#: mod/follow.php:113 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "El soporte de OStatus no esta habilitado, el contacto no puede ser agregado." - -#: mod/follow.php:148 mod/unfollow.php:97 -msgid "Your Identity Address:" -msgstr "Dirección de tu Identidad:" - -#: mod/follow.php:161 mod/dfrn_request.php:648 -#, php-format -msgid "%s knows you" -msgstr "%s te conoce" - -#: mod/follow.php:162 mod/dfrn_request.php:649 -msgid "Add a personal note:" -msgstr "Añade una nota personal:" - -#: mod/follow.php:203 -msgid "The contact could not be added." -msgstr "El contacto no puede añadirse." - -#: mod/item.php:134 mod/item.php:138 -msgid "Unable to locate original post." -msgstr "No se encontró la publicación original." - -#: mod/item.php:339 mod/item.php:344 -msgid "Empty post discarded." -msgstr "Publicación vacía descartada." - -#: mod/item.php:705 -msgid "Post updated." -msgstr "Artículo actualizado." - -#: mod/item.php:722 mod/item.php:727 -msgid "Item wasn't stored." -msgstr "Artículo no almacenado." - -#: mod/item.php:738 -msgid "Item couldn't be fetched." -msgstr "Artículo no pudo recuperarse." - -#: mod/dfrn_request.php:113 -msgid "This introduction has already been accepted." -msgstr "Esta presentación ya ha sido aceptada." - -#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 -msgid "Profile location is not valid or does not contain profile information." -msgstr "La dirección del perfil no es válida o no contiene información del perfil." - -#: mod/dfrn_request.php:135 mod/dfrn_request.php:373 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Aviso: La dirección del perfil no tiene un nombre de propietario identificable." - -#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 -msgid "Warning: profile location has no profile photo." -msgstr "Aviso: la dirección del perfil no tiene foto de perfil." - -#: 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] "no se encontró %d parámetro requerido en el lugar determinado" -msgstr[1] "no se encontraron %d parámetros requeridos en el lugar determinado" - -#: mod/dfrn_request.php:180 -msgid "Introduction complete." -msgstr "Presentación completa." - -#: mod/dfrn_request.php:216 -msgid "Unrecoverable protocol error." -msgstr "Error de protocolo irrecuperable." - -#: mod/dfrn_request.php:264 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s ha recibido demasiadas solicitudes de conexión hoy." - -#: mod/dfrn_request.php:265 -msgid "Spam protection measures have been invoked." -msgstr "Han sido activadas las medidas de protección de Spam." - -#: mod/dfrn_request.php:266 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Se avisará a tus amigos para que intenten de nuevo en 24 horas." - -#: mod/dfrn_request.php:326 -msgid "You have already introduced yourself here." -msgstr "Ya te has presentado aquí." - -#: mod/dfrn_request.php:329 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Al parecer, ya eres amigo de %s." - -#: mod/dfrn_request.php:349 -msgid "Invalid profile URL." -msgstr "Dirección de perfil no válida." - -#: mod/dfrn_request.php:448 -msgid "Your introduction has been sent." -msgstr "Tu presentación ha sido enviada." - -#: mod/dfrn_request.php:496 -msgid "Please login to confirm introduction." -msgstr "Inicia sesión para confirmar la presentación." - -#: mod/dfrn_request.php:504 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Sesión iniciada con la identificación incorrecta. Entra en este perfil." - -#: mod/dfrn_request.php:518 mod/dfrn_request.php:533 -msgid "Confirm" -msgstr "Confirmar" - -#: mod/dfrn_request.php:529 -msgid "Hide this contact" -msgstr "Ocultar este contacto" - -#: mod/dfrn_request.php:531 -#, php-format -msgid "Welcome home %s." -msgstr "Bienvenido de nuevo %s" - -#: mod/dfrn_request.php:532 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Por favor, confirma tu solicitud de presentación/conexión con %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 "Ingresa tu dirección Webfinger (usuario@dominio.tld) o URL de Perfil aquí. Si noes compatible con su sistema (por ejemplo, no funciona con Diaspora),tienes que suscribirte a %s directamente en tu sistema" - -#: mod/cal.php:275 mod/events.php:418 -msgid "View" -msgstr "Vista" - -#: mod/cal.php:276 mod/events.php:420 -msgid "Previous" -msgstr "Previo" - -#: mod/cal.php:284 mod/events.php:430 -msgid "list" -msgstr "lista" - -#: mod/cal.php:306 -msgid "This calendar format is not supported" -msgstr "Este formato de calendario no se soporta" - -#: mod/cal.php:308 -msgid "No exportable data found" -msgstr "No hay información exportable" - -#: mod/cal.php:325 -msgid "calendar" -msgstr "calendario" - -#: mod/uimport.php:45 -msgid "User imports on closed servers can only be done by an administrator." -msgstr "Importar usuarios en sitios cerrados solo lo hace el Administrador." - -#: mod/uimport.php:63 -msgid "Move account" -msgstr "Mover cuenta" - -#: mod/uimport.php:64 -msgid "You can import an account from another Friendica server." -msgstr "Puedes importar una cuenta desde otro servidor de Friendica." - -#: mod/uimport.php:65 -msgid "" -"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." -msgstr "Necesitas exportar tu cuenta del antiguo servidor y subirla aquí. Volveremos a crear tu antigua cuenta con todos tus contactos aquí. También intentaremos de informar a tus amigos de que te has mudado." - -#: mod/uimport.php:66 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "Característica experimental. No podemos importar contactos desde la red OStatus (statusnet/identi.ca) o desde Diaspora*" - -#: mod/uimport.php:67 -msgid "Account file" -msgstr "Archivo de la cuenta" - -#: mod/uimport.php:67 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Para exportar el perfil vaya a \"Configuración -> Exportar sus datos personales\" y seleccione \"Exportar cuenta\"" - -#: mod/lostpass.php:40 -msgid "No valid account found." -msgstr "No se encontró cuenta válida" - -#: mod/lostpass.php:52 -msgid "Password reset request issued. Check your email." -msgstr "Contraseña reestablecida enviada. Revisa tu correo." - -#: 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\tEstimado %1$s,\n\t\t\tSe recibió una solicitud \"%2$s\" para resetear el password\n\t\tde tu cuenta. Para confirmar la solicitud, selecciona el link\n\t\tdebajo o cópialo en la dirección de tu navegador.\n\n\t\tSi no lo solicitaste, NO ABRAS el VÍNCULO\n\t\te ignoralo o borra este correo, la solicitud expirará pronto.\n\n\t\ty tu contraseña no cambiará a menos que verifiquemos que tu\n\t\thiciste la petición." - -#: mod/lostpass.php: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\tSigue este vínculo para verificar tu identidad:\n\n\t\t%1$s\n\n\t\tRecibirás un mensaje de seguimiento con la nueva contraseña.\n\t\tPodrás cambiar la contraseña desde la configuración de tu cuenta al ingresar.\n\n\t\tLos detalles de ingreso son:\n\n\t\tSitio:\t%2$s\n\t\tNombre de Usuario:\t%3$s" - -#: mod/lostpass.php:84 -#, php-format -msgid "Password reset requested at %s" -msgstr "Contraseña restablecida enviada a %s" - -#: mod/lostpass.php:100 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La solicitud no puede ser verificada (deberías haberla proporcionado antes). Falló el restablecimiento de la contraseña." - -#: mod/lostpass.php:113 -msgid "Request has expired, please make a new one." -msgstr "La solicitud expiró, solicite una nueva." - -#: mod/lostpass.php:128 -msgid "Forgot your Password?" -msgstr "¿Olvidaste tu contraseña?" - -#: mod/lostpass.php:129 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Introduce tu correo para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales." - -#: mod/lostpass.php:131 -msgid "Reset" -msgstr "Restablecer" - -#: mod/lostpass.php:147 -msgid "Your password has been reset as requested." -msgstr "Tu contraseña ha sido restablecida como solicitaste." - -#: mod/lostpass.php:148 -msgid "Your new password is" -msgstr "Tu nueva contraseña es" - -#: mod/lostpass.php:149 -msgid "Save or copy your new password - and then" -msgstr "Guarda o copia tu nueva contraseña y luego" - -#: mod/lostpass.php:150 -msgid "click here to login" -msgstr "pulsa aquí para acceder" - -#: mod/lostpass.php:151 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puedes cambiar tu contraseña desde la página de Configuración después de acceder con éxito." - -#: mod/lostpass.php:155 -msgid "Your password has been reset." -msgstr "Tu contraseña fue restablecida." - -#: 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\tEstimado %1$s,\n\t\t\t\tTu contraseña ha sido cambiada como solicitaste. Manten esta\n\t\t\tinformación en tu registro (o cambia tu contraseña inmediatamente a\n\t\t\tuna que puedas recordar).\n\t\t" - -#: mod/lostpass.php: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\tTus datos de acceso son los siguientes:\n\n\t\t\tSitio de Acceso:\t%1$s\n\t\t\tNombre de Usuario:\t%2$s\n\t\t\tContraseña:\t%3$s\n\n\t\t\tPuedes cambiar la contraseña desde configuración de la cuenta al ingresar.\n\t\t" - -#: mod/lostpass.php:176 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Tu contraseña se ha cambiado por %s" - -#: mod/events.php:138 mod/events.php:140 -msgid "Event can not end before it has started." -msgstr "Un evento no puede terminar antes de su inicio." - -#: mod/events.php:147 mod/events.php:149 -msgid "Event title and start time are required." -msgstr "Título del evento y hora de inicio requeridas." - -#: mod/events.php:419 -msgid "Create New Event" -msgstr "Crea un evento nuevo" - -#: mod/events.php:531 -msgid "Event details" -msgstr "Detalles del evento" - -#: mod/events.php:532 -msgid "Starting date and Title are required." -msgstr "Se requiere fecha de comienzo y titulo" - -#: mod/events.php:533 mod/events.php:538 -msgid "Event Starts:" -msgstr "Inicio del evento:" - -#: mod/events.php:546 mod/events.php:571 -msgid "Finish date/time is not known or not relevant" -msgstr "La fecha/hora de finalización no es conocida o es irrelevante." - -#: mod/events.php:548 mod/events.php:553 -msgid "Event Finishes:" -msgstr "Finalización del evento:" - -#: mod/events.php:559 mod/events.php:572 -msgid "Adjust for viewer timezone" -msgstr "Ajuste de zona horaria" - -#: mod/events.php:565 mod/events.php:567 -msgid "Title:" -msgstr "Título:" - -#: mod/events.php:568 mod/events.php:569 -msgid "Share this event" -msgstr "Comparte este evento" - -#: mod/events.php:594 -msgid "Failed to remove event" -msgstr "Error al eliminar el evento" - -#: mod/wallmessage.php:68 mod/wallmessage.php:129 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Excedido el número máximo de mensajes para %s. Mensaje fallido." - -#: mod/wallmessage.php:76 mod/message.php:83 -msgid "No recipient selected." -msgstr "Ningún destinatario seleccionado" - -#: mod/wallmessage.php:79 -msgid "Unable to check your home location." -msgstr "Imposible comprobar tu servidor de inicio." - -#: mod/wallmessage.php:82 mod/message.php:90 -msgid "Message could not be sent." -msgstr "El mensaje no ha podido ser enviado." - -#: mod/wallmessage.php:85 mod/message.php:93 -msgid "Message collection failure." -msgstr "Fallo en recolección de mensajes." - -#: mod/wallmessage.php:103 mod/wallmessage.php:112 -msgid "No recipient." -msgstr "Sin receptor." - -#: mod/wallmessage.php:137 mod/message.php:184 mod/message.php:297 -msgid "Please enter a link URL:" -msgstr "Introduce una dirección URL:" - -#: mod/wallmessage.php:142 mod/message.php:193 -msgid "Send Private Message" -msgstr "Enviar Mensaje Privado" - -#: 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 "Si quieres que %s te responda, verifica que la configuración de privacidad permite enviar correo privado de desconocidos." - -#: mod/wallmessage.php:144 mod/message.php:194 mod/message.php:363 -msgid "To:" -msgstr "Para:" - -#: mod/wallmessage.php:145 mod/message.php:195 mod/message.php:364 -msgid "Subject:" -msgstr "Asunto:" - -#: mod/videos.php:134 -msgid "No videos selected" -msgstr "Ningún vídeo seleccionado" - -#: mod/videos.php:267 -msgid "Recent Videos" -msgstr "Vídeos Recientes" - -#: mod/videos.php:269 -msgid "Upload New Videos" -msgstr "Subir Nuevos Videos" - -#: mod/message.php:87 -msgid "Unable to locate contact information." -msgstr "No se encuentra información del contacto." - -#: mod/message.php:147 -msgid "Conversation not found." -msgstr "Conversación no encontrada." - -#: mod/message.php:152 -msgid "Message was not deleted." -msgstr "Mensaje no borrado." - -#: mod/message.php:170 -msgid "Conversation was not removed." -msgstr "Conversación no borrada." - -#: mod/message.php:233 -msgid "No messages." -msgstr "No hay mensajes." - -#: mod/message.php:289 -msgid "Message not available." -msgstr "Mensaje no disponibile." - -#: mod/message.php:339 -msgid "Delete message" -msgstr "Borrar mensaje" - -#: mod/message.php:341 mod/message.php:473 -msgid "D, d M Y - g:i A" -msgstr "D, d M A - g:i A" - -#: mod/message.php:356 mod/message.php:470 -msgid "Delete conversation" -msgstr "Eliminar conversación" - -#: mod/message.php:358 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "No hay comunicaciones seguras disponibles. Podrías responder desde la página de perfil del remitente. " - -#: mod/message.php:362 -msgid "Send Reply" -msgstr "Enviar respuesta" - -#: mod/message.php:444 -#, php-format -msgid "Unknown sender - %s" -msgstr "Remitente desconocido - %s" - -#: mod/message.php:446 -#, php-format -msgid "You and %s" -msgstr "Tú y %s" - -#: mod/message.php:448 -#, php-format -msgid "%s and You" -msgstr "%s y Tú" - -#: mod/message.php:476 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d mensaje" -msgstr[1] "%d mensajes" - -#: mod/tagrm.php:113 -msgid "Remove Item Tag" -msgstr "Eliminar etiqueta" - -#: mod/tagrm.php:115 -msgid "Select a tag to remove: " -msgstr "Selecciona etiqueta a eliminar: " - -#: mod/redir.php:50 mod/redir.php:130 -msgid "Bad Request." -msgstr "Petición errónea" - -#: mod/dfrn_poll.php:135 mod/dfrn_poll.php:506 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s te da la bienvenida a %2$s" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Resubscribir a contactos de OStatus" - -#: mod/unfollow.php:65 mod/unfollow.php:133 -msgid "You aren't following this contact." -msgstr "No sigues a este contacto." - -#: mod/unfollow.php:71 mod/unfollow.php:139 -msgid "Unfollowing is currently not supported by your network." -msgstr "Dejar de Seguir no es compatible con tu red." - -#: mod/unfollow.php:95 -msgid "Disconnect/Unfollow" -msgstr "Desconectar/Dejar de seguir" - -#: mod/notes.php:59 -msgid "Personal notes are visible only by yourself." -msgstr "Notas personales solo puedes verlas tu." diff --git a/view/lang/es/strings.php b/view/lang/es/strings.php index 3450af9f9..4aca4b5c0 100644 --- a/view/lang/es/strings.php +++ b/view/lang/es/strings.php @@ -3,2560 +3,15 @@ if(! function_exists("string_plural_select_es")) { function string_plural_select_es($n){ $n = intval($n); - return intval($n != 1); + if ($n == 1) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else { return 2; } }} -$a->strings['Miscellaneous'] = 'Varios'; -$a->strings['Birthday:'] = 'Fecha de Nac:'; -$a->strings['Age: '] = 'Edad: '; -$a->strings['%d year old'] = [ - 0 => '%d Años', - 1 => '%d Años', -]; -$a->strings['YYYY-MM-DD or MM-DD'] = 'YYYY-MM-DD o MM-DD'; -$a->strings['never'] = 'nunca'; -$a->strings['less than a second ago'] = 'hace menos de un segundo'; -$a->strings['year'] = 'año'; -$a->strings['years'] = 'años'; -$a->strings['month'] = 'mes'; -$a->strings['months'] = 'meses'; -$a->strings['week'] = 'semana'; -$a->strings['weeks'] = 'semanas'; -$a->strings['day'] = 'día'; -$a->strings['days'] = 'días'; -$a->strings['hour'] = 'hora'; -$a->strings['hours'] = 'horas'; -$a->strings['minute'] = 'minuto'; -$a->strings['minutes'] = 'minutos'; -$a->strings['second'] = 'segundo'; -$a->strings['seconds'] = 'segundos'; -$a->strings['in %1$d %2$s'] = 'en %1$d %2$s'; -$a->strings['%1$d %2$s ago'] = 'hace %1$d %2$s'; -$a->strings['%1$s, %2$s Administrator'] = '%1$s, %2$s Administrador'; -$a->strings['%s Administrator'] = '%s Administrador'; -$a->strings['thanks'] = 'gracias'; -$a->strings['Friendica Notification'] = 'Notificación de Friendica'; -$a->strings['You must be logged in to use addons. '] = 'Tienes que estar registrado para tener acceso a los accesorios.'; -$a->strings['Method not allowed for this module. Allowed method(s): %s'] = 'Método no permitido en este módulo. Permitido(s): %s'; -$a->strings['Page not found.'] = 'Pagina no encontrada.'; -$a->strings['Delete this item?'] = '¿Eliminar este elemento?'; -$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.'] = '¿Bloquear a este autor? No podrá seguirte ni ver tus publicaciones públicas, y tú no podrás ver sus publicaciones ni sus notificaciones.'; -$a->strings['toggle mobile'] = 'Cambiar a versión móvil'; -$a->strings['(no subject)'] = '(sin asunto)'; -$a->strings['Record not found'] = 'Registro no encontrado'; -$a->strings['Friend Suggestion'] = 'Sugerencia de amistad'; -$a->strings['Friend/Connect Request'] = 'Solicitud de Amistad/Conexión'; -$a->strings['New Follower'] = 'Nuevo seguidor'; -$a->strings['%s created a new post'] = '%s creó un nuevo artículo'; -$a->strings['%s commented on %s\'s post'] = '%s comentó el artículo de %s'; -$a->strings['%s liked %s\'s post'] = 'A %s le gusta el artículo de %s'; -$a->strings['%s disliked %s\'s post'] = 'A %s no le gusta el artículo de %s'; -$a->strings['%s is attending %s\'s event'] = '%s atenderá el evento de %s'; -$a->strings['%s is not attending %s\'s event'] = '%s no atenderá el evento %s'; -$a->strings['%s may attending %s\'s event'] = '%s podría asistir al evento de %s'; -$a->strings['%s is now friends with %s'] = '%s es ahora amigo de %s'; -$a->strings['The database version had been set to %s.'] = 'Versión de la Base de Datos establecida a %s.'; -$a->strings['The post update is at version %d, it has to be at %d to safely drop the tables.'] = 'La actualización de la publicación está en versión %d, debe estar en %d para eliminar las tablas de manera segura.'; -$a->strings['No unused tables found.'] = 'No hay tablas sin usar.'; -$a->strings['These tables are not used for friendica and will be deleted when you execute "dbstructure drop -e":'] = 'Estas tablas no se utilizan por friendica y se eliminarán cuando ejecute "dbstructure drop -e":'; -$a->strings['There are no tables on MyISAM or InnoDB with the Antelope file format.'] = 'No hay tablas en MyISAM o InnoDB con formato Antílope.'; -$a->strings[' -Error %d occurred during database update: -%s -'] = ' - -Error %d ocurrido durante la actualización de la base de datos: -%s -'; -$a->strings['Errors encountered performing database changes: '] = 'Errores encontrados al realizar cambios en la base de datos: '; -$a->strings['Another database update is currently running.'] = 'Otro update de la BD esta corriendo.'; -$a->strings['%s: Database update'] = '%s: Actualizar Base de Datos'; -$a->strings['%s: updating %s table.'] = '%s: actualizando %s tabla.'; -$a->strings['Friendica can\'t display this page at the moment, please contact the administrator.'] = 'Friendica no puede mostrar la página actualmente, contacte al administrador.'; -$a->strings['template engine cannot be registered without a name.'] = 'Motor de plantilla no puede registrarse sin nombre.'; -$a->strings['template engine is not registered!'] = 'Motor de Plantilla no esta registrado!'; -$a->strings['Yourself'] = 'Tu mismo'; -$a->strings['Followers'] = 'Seguidores'; -$a->strings['Mutuals'] = 'Mutuos'; -$a->strings['Post to Email'] = 'Publicar por Correo'; -$a->strings['Public'] = 'Público'; -$a->strings['This content will be shown to all your followers and can be seen in the community pages and by anyone with its link.'] = 'Este contenido se mostrará a tus seguidores y se podrá ver en laspáginas de la Comunidad y por cualquiera con este enlace.'; -$a->strings['Limited/Private'] = 'Limitado/Privado'; -$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.'] = 'Este contenido se mostrará solo a personas en el primer recuadro, aexcepción de personas mencionadas en el segundo recuadro. No aparecerápúblicamente.'; -$a->strings['Show to:'] = 'Mostrar a:'; -$a->strings['Except to:'] = 'Excepto a:'; -$a->strings['CC: email addresses'] = 'CC: dirección de correo'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Ejemplo: juan@ejemplo.com, maria@ejemplo.com'; -$a->strings['Connectors'] = 'Conectores'; -$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.'] = 'Las actualizaciones de la versión %s no son compatibles. Actualice al menos a la versión 2021.01 y espere hasta que postupdate finalice con versión 1383.'; -$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.'] = 'Actualizaciones de postupdate versión %s no soportadas. Actualice al menos a versión 2021.01 y espere hasta que postupdate termine en version 1383.'; -$a->strings['%s: executing pre update %d'] = '%s: ejecutando pre update %d '; -$a->strings['%s: executing post update %d'] = '%s: ejecutando post update %d '; -$a->strings['Update %s failed. See error logs.'] = 'Falló la actualización de %s. Vea los registros de errores.'; -$a->strings[' - The friendica developers released update %s recently, - but when I tried to install it, something went terribly wrong. - This needs to be fixed soon and I can\'t do it alone. Please contact a - friendica developer if you can not help me on your own. My database might be invalid.'] = ' - Los desarrolladores liberaron una actualización reciente %s , - pero cuando se intentó instalar, algo salió mal. - Necesita arreglarse pronto y no se hará automáticamente. Contacta - al developer friendica si no puedes hacerlo tu mismo. La base de datos puede estar errónea.'; -$a->strings['The error message is\n[pre]%s[/pre]'] = 'El mensaje de error es\n[pre]%s[/pre]'; -$a->strings['[Friendica Notify] Database update'] = '[Notificación Friendica] Actualización de Base de Datos'; -$a->strings[' - The friendica database was successfully updated from %s to %s.'] = ' - Base de Datos Friendica exitosamente actualizada de %s a %s.'; -$a->strings['Monday'] = 'Lunes'; -$a->strings['Tuesday'] = 'Martes'; -$a->strings['Wednesday'] = 'Miércoles'; -$a->strings['Thursday'] = 'Jueves'; -$a->strings['Friday'] = 'Viernes'; -$a->strings['Saturday'] = 'Sábado'; -$a->strings['Sunday'] = 'Domingo'; -$a->strings['January'] = 'Enero'; -$a->strings['February'] = 'Febrero'; -$a->strings['March'] = 'Marzo'; -$a->strings['April'] = 'Abril'; -$a->strings['May'] = 'Mayo'; -$a->strings['June'] = 'Junio'; -$a->strings['July'] = 'Julio'; -$a->strings['August'] = 'Agosto'; -$a->strings['September'] = 'Septiembre'; -$a->strings['October'] = 'Octubre'; -$a->strings['November'] = 'Noviembre'; -$a->strings['December'] = 'Diciembre'; -$a->strings['Mon'] = 'Lun'; -$a->strings['Tue'] = 'Mar'; -$a->strings['Wed'] = 'Mie'; -$a->strings['Thu'] = 'Jue'; -$a->strings['Fri'] = 'Vie'; -$a->strings['Sat'] = 'Sab'; -$a->strings['Sun'] = 'Dom'; -$a->strings['Jan'] = 'Ene'; -$a->strings['Feb'] = 'Feb'; -$a->strings['Mar'] = 'Mar'; -$a->strings['Apr'] = 'Abr'; -$a->strings['Jun'] = 'Jun'; -$a->strings['Jul'] = 'Jul'; -$a->strings['Aug'] = 'Ago'; -$a->strings['Sep'] = 'Sep'; -$a->strings['Oct'] = 'Oct'; -$a->strings['Nov'] = 'Nov'; -$a->strings['Dec'] = 'Dec'; -$a->strings['poke'] = 'empujar'; -$a->strings['poked'] = 'empujó a'; -$a->strings['ping'] = 'mandar "ping"'; -$a->strings['pinged'] = 'hizo "ping" a'; -$a->strings['prod'] = 'empujar'; -$a->strings['prodded'] = 'empujó a'; -$a->strings['slap'] = 'abofetear'; -$a->strings['slapped'] = 'abofeteó a'; -$a->strings['finger'] = 'meter dedo'; -$a->strings['fingered'] = 'le metió un dedo a'; -$a->strings['rebuff'] = 'desairar'; -$a->strings['rebuffed'] = 'desairó a'; -$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.'] = 'Archivo de configuración de la BD "config/local.config.php" no pudo ser escrito. Utilice el texto adjunto para crear un archivo de configuración en raíz del servidor web.'; -$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Puede que tengas que importar el archivo "database.sql" manualmente usando phpmyadmin o mysql.'; -$a->strings['Please see the file "doc/INSTALL.md".'] = 'De favor vea el archivo "doc/INSTALL.md".'; -$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'No se encontró versión de línea de comandos PHP en ruta del servidor web.'; -$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\''] = 'Si no tienes versión de comando de PHP instalado en tu servidor, no podras correr el proceso de fondo. Ver \'Configurar Worker\''; -$a->strings['PHP executable path'] = 'Ruta executable PHP'; -$a->strings['Enter full path to php executable. You can leave this blank to continue the installation.'] = 'Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación.'; -$a->strings['Command line PHP'] = 'Línea de comandos PHP'; -$a->strings['PHP executable is not the php cli binary (could be cgi-fgci version)'] = 'Ejecutable PHP no es php cli binary (podria ser versión cgi-fgci)'; -$a->strings['Found PHP version: '] = 'Versión PHP encontrada:'; -$a->strings['PHP cli binary'] = 'PHP cli binario'; -$a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'La versión en línea de comandos de PHP en tu sistema no tiene "register_argc_argv" habilitado.'; -$a->strings['This is required for message delivery to work.'] = 'Esto es requerido para que funcione la entrega de mensajes.'; -$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'] = 'Error: Función "openssl_pkey_new" en este sistema no es capaz de generar claves de cifrado'; -$a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'Si se ejecuta en Windows, por favor consulta la sección "http://www.php.net/manual/en/openssl.installation.php".'; -$a->strings['Generate encryption keys'] = 'Generar claves de encriptación'; -$a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Error: El módulo de Apache mod-rewrite es necesario pero no está instalado.'; -$a->strings['Apache mod_rewrite module'] = 'Módulo mod_rewrite de Apache'; -$a->strings['Error: PDO or MySQLi PHP module required but not installed.'] = 'Error: Módulo PDO o MySQLi PHP requerido pero no instalado.'; -$a->strings['Error: The MySQL driver for PDO is not installed.'] = 'Error: El dispositivo MySQL para PDO no está instalado.'; -$a->strings['PDO or MySQLi PHP module'] = 'Módulo PDO o MySQLi PHP'; -$a->strings['Error, XML PHP module required but not installed.'] = 'Error, módulo XML PHP requerido pero no instalado.'; -$a->strings['XML PHP module'] = 'Módulo XML PHP'; -$a->strings['libCurl PHP module'] = 'Módulo PHP libCurl'; -$a->strings['Error: libCURL PHP module required but not installed.'] = 'Error: El módulo de PHP libcurl es necesario, pero no está instalado.'; -$a->strings['GD graphics PHP module'] = 'Módulo PHP gráficos GD'; -$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Error: El módulo de de PHP gráficos GD con soporte JPEG es necesario, pero no está instalado.'; -$a->strings['OpenSSL PHP module'] = 'Módulo PHP OpenSSL'; -$a->strings['Error: openssl PHP module required but not installed.'] = 'Error: El módulo de PHP openssl es necesario, pero no está instalado.'; -$a->strings['mb_string PHP module'] = 'Módulo PHP mb_string'; -$a->strings['Error: mb_string PHP module required but not installed.'] = 'Error: El módulo de PHP mb_string es necesario, pero no está instalado.'; -$a->strings['iconv PHP module'] = 'Módulo PHP iconv'; -$a->strings['Error: iconv PHP module required but not installed.'] = 'Error: módulo iconv PHP requerido pero no instalado.'; -$a->strings['POSIX PHP module'] = 'Módulo PHP POSIX'; -$a->strings['Error: POSIX PHP module required but not installed.'] = 'Error: PHP POSIX requerido y no instalado.'; -$a->strings['Program execution functions'] = 'Funciones de ejecución de programa'; -$a->strings['Error: Program execution functions required but not enabled.'] = 'Error: Funciones de ejecución de programa requeridas pero no habilitadas.'; -$a->strings['JSON PHP module'] = 'Módulo PHP JSON'; -$a->strings['Error: JSON PHP module required but not installed.'] = 'Eror: Módulo PHP JSON requerido y no instalado.'; -$a->strings['File Information PHP module'] = 'Módulo PHP Información de Archivo'; -$a->strings['Error: File Information PHP module required but not installed.'] = 'Error: Módulo PHP Información de Archivo requerido y no instalado.'; -$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.'] = 'El instalador web debe poder crear un archivo llamado"local.config.php" en folder "config" de su servidor web y esincapaz de hacerlo.'; -$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.'] = 'Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú puedas.'; -$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.'] = 'Al final de este procedimiento, le daremos un texto para guardar en un archivollamado local.config.php en su folder "config" de Friendica .'; -$a->strings['You can alternatively skip this procedure and perform a manual installation. Please see the file "doc/INSTALL.md" for instructions.'] = 'Alternativamente, puede omitir este procedimiento y realizar una instalación manual. Consulte el archivo "doc/INSTALL.md" para instrucciones.'; -$a->strings['config/local.config.php is writable'] = 'config/local.config.php es escriturable'; -$a->strings['Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.'] = 'Friendica usa el motor de templates Smarty3 para renderizar su visualización web. Smarty3 compila templates PHP para acelerar la velocidad de renderizar.'; -$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.'] = 'Para poder guardar estos templates compilados, el servidor web necesita acceso de escritura en el directorio /view/smarty3/ en el árbol de raíz de la instalación friendica.'; -$a->strings['Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder.'] = 'Por favor asegure que el usuario que utiliza el servidor web (ejemplo: www-data) tiene permisos de escritura en esta carpeta.'; -$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.'] = 'Nota: como medida de seguridad deberia dar acceso de escritura solo a /view/smarty3 / → no al los archivos template (.tpl) que contiene.'; -$a->strings['view/smarty3 is writable'] = 'Se puede escribir en /view/smarty3'; -$a->strings['Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-dist to .htaccess.'] = 'La reescritura de URL en .htaccess parece no funcionar. Asegúrese de haber copiado .htaccess-dist a .htaccess.'; -$a->strings['In some circumstances (like running inside containers), you can skip this error.'] = 'En algunas circunstancias (como ejecutar dentro de contenedores), puede omitir este error.'; -$a->strings['Error message from Curl when fetching'] = 'Mensaje de Error de Curl en lectura'; -$a->strings['Url rewrite is working'] = 'Reescribiendo la dirección...'; -$a->strings['ImageMagick PHP extension is not installed'] = 'No está instalada la extensión ImageMagick PHP'; -$a->strings['ImageMagick PHP extension is installed'] = 'ImageMagick PHP extension is installed'; -$a->strings['ImageMagick supports GIF'] = 'ImageMagick supporta GIF'; -$a->strings['Database already in use.'] = 'Base de datos ya esta en uso'; -$a->strings['Could not connect to database.'] = 'No es posible conectar con Base Datos.'; -$a->strings['Error decoding account file'] = 'Error decodificando el archivo de cuenta'; -$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta friendica? '; -$a->strings['User \'%s\' already exists on this server!'] = 'La cuenta \'%s\' ya existe en este servidor!'; -$a->strings['User creation error'] = 'Error al crear la cuenta'; -$a->strings['%d contact not imported'] = [ - 0 => '%d contacto no importado', - 1 => '%d contactos no importados', -]; -$a->strings['User profile creation error'] = 'Error al crear Perfil de Usuario'; -$a->strings['Done. You can now login with your username and password'] = 'Hecho. Ahora podes ingresar con tu usuario y contraseña.'; -$a->strings['Access denied.'] = 'Acceso denegado.'; -$a->strings['Permission denied.'] = 'Permiso denegado.'; -$a->strings['Contact not found.'] = 'Contacto no encontrado.'; -$a->strings['Suggested contact not found.'] = 'El contacto sugerido no se encontró.'; -$a->strings['Friend suggestion sent.'] = 'Solicitud de amistad enviada.'; -$a->strings['Suggest Friends'] = 'Sugerencias de amistad'; -$a->strings['Suggest a friend for %s'] = 'Recomienda un amigo a %s'; -$a->strings['Submit'] = 'Enviar'; -$a->strings['Bad Request'] = 'Error en solicitud'; -$a->strings['Unauthorized'] = 'No autorizado'; -$a->strings['Forbidden'] = 'Prohibido'; -$a->strings['Not Found'] = 'No se encontró'; -$a->strings['Internal Server Error'] = 'Error Interno del Servidor'; -$a->strings['Service Unavailable'] = 'Servicio no Disponible'; -$a->strings['The server cannot or will not process the request due to an apparent client error.'] = 'Servidor no puede procesar la solicitud debido a aparente error del navegador.'; -$a->strings['Authentication is required and has failed or has not yet been provided.'] = 'Se requieren ingresar o falló el intento.'; -$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.'] = 'Solicitud válida, pero el servidor lo rechazó. Podría ser que el Usuario no tenga los permisos necesario, o requiera ingresar con una cuenta.'; -$a->strings['The requested resource could not be found but may be available in the future.'] = 'El recurso solicitado no se encontró pero podría estar disponible pronto.'; -$a->strings['An unexpected condition was encountered and no more specific message is suitable.'] = 'Se generó un error inesperado y no tenemos mas detalles.'; -$a->strings['The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later.'] = 'El servidor no esta disponible (pude estar sobrecargado o en mantenimiento) Inténtelo después.'; -$a->strings['Go back'] = 'Regresar'; -$a->strings['Stack trace:'] = 'Seguimiento de pila:'; -$a->strings['Exception thrown in %s:%d'] = 'Excepción lanzada en %s:%d'; -$a->strings['Item was not removed'] = 'Artículo no fue borrado'; -$a->strings['Item was not deleted'] = 'Artículo no fue borrado'; -$a->strings['You must be logged in to use this module'] = 'Debes ingresar para usar este módulo'; -$a->strings['Save to Folder:'] = 'Guardar en directorio:'; -$a->strings['- select -'] = '- seleccionar -'; -$a->strings['Save'] = 'Guardar'; -$a->strings['API endpoint "%s" is not implemented'] = 'API endpoint "%s" no implementada'; -$a->strings['The API endpoint is currently not implemented but might be in the future.'] = 'API endpoint no está implementado actualmente, pero podría estarlo en el futuro.'; -$a->strings['Contact not found'] = 'Contacto no Encontrado'; -$a->strings['User not found'] = 'Usuario no encontrado'; -$a->strings['Profile not found'] = 'No se encontró el Perfil'; -$a->strings['Error while sending poke, please retry.'] = 'Error al enviar empujón, reintentalo.'; -$a->strings['You must be logged in to use this module.'] = 'Debes ingresar para usar el modulo.'; -$a->strings['Poke/Prod'] = 'Toque/Empujón'; -$a->strings['poke, prod or do other things to somebody'] = 'dar un toque, empujón o similar a alguien'; -$a->strings['Choose what you wish to do to recipient'] = 'Elige qué hacer con el receptor'; -$a->strings['Make this post private'] = 'Hacer esta publicación privada'; -$a->strings['Loading...'] = 'Cargando...'; -$a->strings['Contact update failed.'] = 'Error al actualizar el Contacto.'; -$a->strings['WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working.'] = 'ADVERTENCIA: Esto es muy avanzado y si se introduce información incorrecta tu conexión con este contacto puede dejar de funcionar.'; -$a->strings['Please use your browser \'Back\' button now if you are uncertain what to do on this page.'] = 'Por favor usa el botón \'Atrás\' de tu navegador ahora si no tienes claro qué hacer en esta página.'; -$a->strings['Return to contact editor'] = 'Volver al editor de contactos'; -$a->strings['Name'] = 'Nombre'; -$a->strings['Account Nickname'] = 'Apodo de cuenta'; -$a->strings['@Tagname - overrides Name/Nickname'] = '@Tagname - Sobrescribe el Nombre/Apodo'; -$a->strings['Account URL'] = 'Dirección de cuenta'; -$a->strings['Account URL Alias'] = 'URL Alias de cuenta'; -$a->strings['Friend Request URL'] = 'Dirección de solicitud de amistad'; -$a->strings['Friend Confirm URL'] = 'Dirección de confirmación de amistad '; -$a->strings['Notification Endpoint URL'] = 'Dirección URL de notificación'; -$a->strings['Poll/Feed URL'] = 'Dirección de Sondeo/Fuente'; -$a->strings['New photo from this URL'] = 'Nueva foto de esta URL'; -$a->strings['Invalid contact.'] = 'Contacto erróneo.'; -$a->strings['No known contacts.'] = 'No hay contactos conocidos.'; -$a->strings['No common contacts.'] = 'Sin contactos comunes.'; -$a->strings['Follower (%s)'] = [ - 0 => 'Seguidor (%s)', - 1 => 'Seguidores (%s)', -]; -$a->strings['Following (%s)'] = [ - 0 => 'Siguiendo (%s)', - 1 => 'Siguiendo (%s)', -]; -$a->strings['Mutual friend (%s)'] = [ - 0 => 'Amigo mutuo (%s)', - 1 => 'Amigos mutuos (%s)', -]; -$a->strings['These contacts both follow and are followed by %s.'] = 'Estos contactos siguen y son seguidos por %s.'; -$a->strings['Common contact (%s)'] = [ - 0 => 'Common contact (%s)', - 1 => 'Common contacts (%s)', -]; -$a->strings['Both %s and yourself have publicly interacted with these contacts (follow, comment or likes on public posts).'] = 'Tanto %s como usted han interactuado públicamente con estos contactos (seguir, comentar o dar me gusta en publicaciones públicas).'; -$a->strings['Contact (%s)'] = [ - 0 => 'Contacto (%s)', - 1 => 'Contactos (%s)', -]; -$a->strings['Installed addons/apps:'] = 'Añadidos/apps Instalados:'; -$a->strings['No installed addons/apps'] = 'Añadidos/apps no instalados'; -$a->strings['Read about the Terms of Service of this node.'] = 'Leer acerca de Términos de Servicio del nodo.'; -$a->strings['On this server the following remote servers are blocked.'] = 'En este servidor los siguientes servidores remotos están bloqueados.'; -$a->strings['Blocked domain'] = 'Dominio bloqueado'; -$a->strings['Reason for the block'] = 'Razón para el bloqueo'; -$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.'] = 'Este es Friendica, version %s ejecutándose en ubicación %s. Versión de la BD es %s, la versión después de actualización es %s.'; -$a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Visite Friendi.ca para aprender más sobre el proyecto Friendica, por favor.'; -$a->strings['Bug reports and issues: please visit'] = 'Reporte de fallos y problemas: por favor visita'; -$a->strings['the bugtracker at github'] = 'aviso de fallas (bugs) en github'; -$a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = 'Sugerencias, agradecimientos, etc. - envie correo "info" at "friendi - dot - ca'; -$a->strings['Could not create group.'] = 'Imposible crear el grupo.'; -$a->strings['Group not found.'] = 'Grupo no encontrado.'; -$a->strings['Group name was not changed.'] = 'Nombre de Grupo no modificado.'; -$a->strings['Unknown group.'] = 'Grupo no existe.'; -$a->strings['Contact is deleted.'] = 'El contacto se borra.'; -$a->strings['Unable to add the contact to the group.'] = 'No es posible añadir contacto al grupo.'; -$a->strings['Contact successfully added to group.'] = 'Se añadió el contacto el grupo.'; -$a->strings['Unable to remove the contact from the group.'] = 'No es posible borrar contacto del grupo.'; -$a->strings['Contact successfully removed from group.'] = 'Contacto borrado del grupo.'; -$a->strings['Unknown group command.'] = 'Comando de grupo desconocido.'; -$a->strings['Bad request.'] = 'Petición no reconocida'; -$a->strings['Save Group'] = 'Guardar grupo'; -$a->strings['Filter'] = 'Filtro'; -$a->strings['Create a group of contacts/friends.'] = 'Crea un grupo de contactos/amigos.'; -$a->strings['Group Name: '] = 'Nombre del grupo: '; -$a->strings['Contacts not in any group'] = 'Contactos sin grupo'; -$a->strings['Unable to remove group.'] = 'No se puede eliminar el grupo.'; -$a->strings['Delete Group'] = 'Borrar grupo'; -$a->strings['Edit Group Name'] = 'Editar nombre de grupo'; -$a->strings['Members'] = 'Miembros'; -$a->strings['All Contacts'] = 'Todos los contactos'; -$a->strings['Group is empty'] = 'Grupo está vacío'; -$a->strings['Remove contact from group'] = 'Borrar contacto del grupo'; -$a->strings['Click on a contact to add or remove.'] = 'Pulsa en un contacto para añadirlo o eliminarlo.'; -$a->strings['Add contact to group'] = 'Añadir contacto a grupo'; -$a->strings['Notifications'] = 'Notificaciones'; -$a->strings['Method Not Allowed.'] = 'Método no Permitido'; -$a->strings['Welcome to %s'] = 'Bienvenido a %s'; -$a->strings['People Search - %s'] = 'Buscar personas - %s'; -$a->strings['Forum Search - %s'] = 'Búsqueda de Foros - %s'; -$a->strings['No matches'] = 'Sin resultados'; -$a->strings['Show Ignored Requests'] = 'Mostrar peticiones ignoradas'; -$a->strings['Hide Ignored Requests'] = 'Ocultar peticiones ignoradas'; -$a->strings['Notification type:'] = 'Tipo de Notificación:'; -$a->strings['Suggested by:'] = 'Sugerido por:'; -$a->strings['Profile URL'] = 'URL del Perfil'; -$a->strings['Approve'] = 'Aprobar'; -$a->strings['Ignore'] = 'Ignorar'; -$a->strings['Discard'] = 'Descartar'; -$a->strings['Claims to be known to you: '] = 'Dice conocerte: '; -$a->strings['Yes'] = 'Sí'; -$a->strings['No'] = 'No'; -$a->strings['Shall your connection be bidirectional or not?'] = '¿Debe la conexión ser bidireccional o no?'; -$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.'] = 'Aceptar a %s como amigo le permite a %s suscribirse a sus publicaciones, y usted también recibirá actualizaciones de ellos en sus noticias.'; -$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.'] = 'Aceptar a %s como suscriptor les permite suscribirse a sus publicaciones, pero usted no recibirá actualizaciones de ellos en sus noticias.'; -$a->strings['Friend'] = 'Amigo'; -$a->strings['Subscriber'] = 'Suscriptor'; -$a->strings['Location:'] = 'Localización:'; -$a->strings['About:'] = 'Acerca de:'; -$a->strings['Tags:'] = 'Etiquetas:'; -$a->strings['Hide this contact from others'] = 'Ocultar el contacto a los demás.'; -$a->strings['Network:'] = 'Red:'; -$a->strings['No introductions.'] = 'Sin presentaciones.'; -$a->strings['No more %s notifications.'] = 'No más notificaciones de %s.'; -$a->strings['Network Notifications'] = 'Notificaciones de Red'; -$a->strings['System Notifications'] = 'Notificaciones del sistema'; -$a->strings['Personal Notifications'] = 'Notificaciones personales'; -$a->strings['Home Notifications'] = 'Notificaciones de Inicio'; -$a->strings['Show unread'] = 'Mostrar no leído'; -$a->strings['Show all'] = 'Mostrar todo'; -$a->strings['You must be logged in to show this page.'] = 'Debes ingresar para ver esa pagina.'; -$a->strings['Wrong type "%s", expected one of: %s'] = 'Tipo erróneo "%s", se esperaba uno: %s'; -$a->strings['Model not found'] = 'Modelo no encontrado'; -$a->strings['Remote privacy information not available.'] = 'Privacidad de la información remota no disponible.'; -$a->strings['Visible to:'] = 'Visible para:'; -$a->strings['A Decentralized Social Network'] = 'Una Red Social Descentralizada'; -$a->strings['Please login to continue.'] = 'Inicia sesión para continuar.'; -$a->strings['You don\'t have access to administration pages.'] = 'No tienes acceso a las páginas de administración.'; -$a->strings['Submanaged account can\'t access the administration pages. Please log back in as the main account.'] = 'La cuenta subadministrada no puede acceder a las páginas de administración. Vuelva a iniciar sesión como cuenta principal.'; -$a->strings['Information'] = 'Información'; -$a->strings['Overview'] = 'Resumen'; -$a->strings['Federation Statistics'] = 'Estadísticas de federación'; -$a->strings['Configuration'] = 'Configuración'; -$a->strings['Site'] = 'Sitio'; -$a->strings['Users'] = 'Usuarios'; -$a->strings['Addons'] = 'Añadidos'; -$a->strings['Themes'] = 'Temas'; -$a->strings['Additional features'] = 'Características adicionales'; -$a->strings['Terms of Service'] = 'Términos de Servicio'; -$a->strings['Database'] = 'Base de Datos'; -$a->strings['DB updates'] = 'Actualizaciones de la Base de Datos'; -$a->strings['Inspect Deferred Workers'] = 'Workers diferidos Inspeccionados'; -$a->strings['Inspect worker Queue'] = 'Inspeccionar Cola de Workers'; -$a->strings['Tools'] = 'Herramientas'; -$a->strings['Contact Blocklist'] = 'Lista de Contactos Bloqueados'; -$a->strings['Server Blocklist'] = 'Lista de Bloqueo del Servidor'; -$a->strings['Delete Item'] = 'Eliminar Artículo'; -$a->strings['Logs'] = 'Registros'; -$a->strings['View Logs'] = 'Ver registro de depuración'; -$a->strings['Diagnostics'] = 'Diagnósticos'; -$a->strings['PHP Info'] = 'Información PHP'; -$a->strings['probe address'] = 'probar direccion'; -$a->strings['check webfinger'] = 'Verificar webfinger'; -$a->strings['Item Source'] = 'Artículo fuente'; -$a->strings['Babel'] = 'Babel'; -$a->strings['ActivityPub Conversion'] = 'Conversión a ActivityPub'; -$a->strings['Admin'] = 'Admin'; -$a->strings['Addon Features'] = 'Funciones de los Añadidos'; -$a->strings['User registrations waiting for confirmation'] = 'Registro de usuarios esperando la confirmación'; -$a->strings['User not found.'] = 'Usuario no encontrado.'; -$a->strings['%s\'s timeline'] = 'Estado de %s'; -$a->strings['%s\'s posts'] = 'Artículos de %s'; -$a->strings['%s\'s comments'] = 'Comentarios de %s'; -$a->strings['Access to this profile has been restricted.'] = 'El acceso a este perfil ha sido restringido.'; -$a->strings['No contacts.'] = 'Sin contactos.'; -$a->strings['Profile not found.'] = 'Perfil no encontrado.'; -$a->strings['You\'re currently viewing your profile as %s Cancel'] = 'Actualmente estás viendo tu perfil como %s Cancelar'; -$a->strings['Full Name:'] = 'Nombre Completo:'; -$a->strings['Member since:'] = 'Miembro desde:'; -$a->strings['j F, Y'] = 'j F, Y'; -$a->strings['j F'] = 'j F'; -$a->strings['Description:'] = 'Descripción:'; -$a->strings['XMPP:'] = 'XMPP:'; -$a->strings['Homepage:'] = 'Inicio:'; -$a->strings['Forums:'] = 'Foros:'; -$a->strings['Profile'] = 'Perfil'; -$a->strings['View profile as:'] = 'Ver perfil como:'; -$a->strings['Basic'] = 'Basic'; -$a->strings['Advanced'] = 'Avanzado'; -$a->strings['Edit profile'] = 'Editar perfil'; -$a->strings['View as'] = 'Ver como'; -$a->strings['Only parent users can create additional accounts.'] = 'Solo usuarios superiores pueden crear mas cuentas.'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor.'; -$a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking "Register".'] = 'Puede (opcionalmente) llenar el formulario vía OpenID proporcionando su OpenID y haciendo clic en "Registrarse".'; -$a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos.'; -$a->strings['Your OpenID (optional): '] = 'Tu OpenID (opcional): '; -$a->strings['Include your profile in member directory?'] = '¿Incluir tu perfil en el directorio de miembros?'; -$a->strings['Note for the admin'] = 'Nota para el administrador'; -$a->strings['Leave a message for the admin, why you want to join this node'] = 'Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo'; -$a->strings['Required'] = 'Obligatorio'; -$a->strings['Membership on this site is by invitation only.'] = 'Sitio solo accesible mediante invitación.'; -$a->strings['Your invitation code: '] = 'Tu código de Invitación: '; -$a->strings['Registration'] = 'Registro'; -$a->strings['Your Full Name (e.g. Joe Smith, real or real-looking): '] = 'Nombre completo (ej. Juan Perez, real o apariencia real):'; -$a->strings['Your Email Address: (Initial information will be send there, so this has to be an existing address.)'] = 'Tu Correo electrónico: (Información inicial se enviará allí, por lo que debeser una dirección existente.)'; -$a->strings['Please repeat your e-mail address:'] = 'Repite tu correo:'; -$a->strings['New Password:'] = 'Contraseña Nueva:'; -$a->strings['Leave empty for an auto generated password.'] = 'Dejar vacío para autogenerar una contraseña'; -$a->strings['Confirm:'] = 'Confirmar:'; -$a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be "nickname@%s".'] = 'Elija un apodo de perfil. Que comience con un carácter de texto. Tu dirección de perfil en este sitio será "nickname@%s".'; -$a->strings['Choose a nickname: '] = 'Escoge un apodo: '; -$a->strings['Register'] = 'Registro'; -$a->strings['Import'] = 'Importar'; -$a->strings['Import your profile to this friendica instance'] = 'Importar tu perfil a esta instancia de friendica'; -$a->strings['Note: This node explicitly contains adult content'] = 'Nota: Este nodo contiene material adulto explicito'; -$a->strings['Parent Password:'] = 'Contraseña principal:'; -$a->strings['Please enter the password of the parent account to legitimize your request.'] = 'Ingrese la contraseña de la cuenta principal para conformar la solicitud.'; -$a->strings['Password doesn\'t match.'] = 'Contraseñas diferentes.'; -$a->strings['Please enter your password.'] = 'Ingresa tu contraseña.'; -$a->strings['You have entered too much information.'] = 'Demasiada información.'; -$a->strings['Please enter the identical mail address in the second field.'] = 'Ingresa la misma cuenta de correo en el segundo campo'; -$a->strings['The additional account was created.'] = 'La cuenta adicional fue creada.'; -$a->strings['Registration successful. Please check your email for further instructions.'] = 'Te has registrado con éxito. Consulta tu correo para más información.'; -$a->strings['Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login.'] = 'Error al intentar de enviar mensaje de correo. Aquí los detalles de tu cuenta:
    Usuario: %s
    Contraseña: %s

    Puede cambiar tu contraseña después de ingresar al sitio.'; -$a->strings['Registration successful.'] = 'Registro exitoso.'; -$a->strings['Your registration can not be processed.'] = 'Tu registro no se puede procesar.'; -$a->strings['You have to leave a request note for the admin.'] = 'Debes dejar una solicitud al Administrador.'; -$a->strings['Your registration is pending approval by the site owner.'] = 'Tu registro queda pendiente de aprobación por el dueño del sitio.'; -$a->strings['%d contact edited.'] = [ - 0 => '%d contacto editado.', - 1 => '%d contactos editados.', -]; -$a->strings['Could not access contact record.'] = 'No se pudo acceder a los datos del contacto.'; -$a->strings['Failed to update contact record.'] = 'Error al actualizar el contacto.'; -$a->strings['Follow'] = 'Seguir'; -$a->strings['Unfollow'] = 'Dejar de Seguir'; -$a->strings['Message'] = 'Mensaje'; -$a->strings['Contact has been blocked'] = 'Contacto ha sido bloqueado'; -$a->strings['Contact has been unblocked'] = 'Contacto ha sido desbloqueado'; -$a->strings['Contact has been ignored'] = 'Contacto ha sido ignorado'; -$a->strings['Contact has been unignored'] = 'El contacto ya no está ignorado'; -$a->strings['Contact has been archived'] = 'El contacto ha sido archivado'; -$a->strings['Contact has been unarchived'] = 'El contacto ya no está archivado'; -$a->strings['Drop contact'] = 'Eliminar contacto'; -$a->strings['Do you really want to delete this contact?'] = '¿Estás seguro de que quieres eliminar este contacto?'; -$a->strings['Cancel'] = 'Cancelar'; -$a->strings['Contact has been removed.'] = 'El contacto ha sido eliminado'; -$a->strings['You are mutual friends with %s'] = 'Ahora tienes una amistad mutua con %s'; -$a->strings['You are sharing with %s'] = 'Estás compartiendo con %s'; -$a->strings['%s is sharing with you'] = '%s está compartiendo contigo'; -$a->strings['Private communications are not available for this contact.'] = 'Las comunicaciones privadas no está disponibles para este contacto.'; -$a->strings['Never'] = 'Nunca'; -$a->strings['(Update was not successful)'] = '(La actualización no se completo)'; -$a->strings['(Update was successful)'] = '(Actualización exitosa)'; -$a->strings['Suggest friends'] = 'Sugerir amigos'; -$a->strings['Network type: %s'] = 'Tipo de red: %s'; -$a->strings['Communications lost with this contact!'] = '¡Se ha perdido la comunicación con este contacto!'; -$a->strings['Fetch further information for feeds'] = 'Recaudar información complementaria de los feeds'; -$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.'] = 'Obtener información como vistas previas, título e intro del artículo. Puedes desactivarlo si el artículo no contiene mucho texto. Etiquetas se toman de la cabecera del artículo y se publican como #etiquetas.'; -$a->strings['Disabled'] = 'Deshabilitado'; -$a->strings['Fetch information'] = 'Recuperar información'; -$a->strings['Fetch keywords'] = 'Recuperar etiquetas'; -$a->strings['Fetch information and keywords'] = 'Recuperar información y palabras claves'; -$a->strings['No mirroring'] = 'No copiar'; -$a->strings['Mirror as forwarded posting'] = 'Copiar como reenvío'; -$a->strings['Mirror as my own posting'] = 'Copiar como publicación propia'; -$a->strings['Native reshare'] = 'Reenviar (nativo)'; -$a->strings['Contact Information / Notes'] = 'Información del Contacto / Notas'; -$a->strings['Contact Settings'] = 'Ajustes del contacto'; -$a->strings['Contact'] = 'Contacto'; -$a->strings['Their personal note'] = 'Su nota personal'; -$a->strings['Edit contact notes'] = 'Editar notas del contacto'; -$a->strings['Visit %s\'s profile [%s]'] = 'Ver el perfil de %s [%s]'; -$a->strings['Block/Unblock contact'] = 'Boquear/Desbloquear contacto'; -$a->strings['Ignore contact'] = 'Ignorar contacto'; -$a->strings['View conversations'] = 'Ver conversaciones'; -$a->strings['Last update:'] = 'Última actualización:'; -$a->strings['Update public posts'] = 'Actualizar publicaciones públicas'; -$a->strings['Update now'] = 'Actualizar ahora'; -$a->strings['Unblock'] = 'Desbloquear'; -$a->strings['Block'] = 'Bloquear'; -$a->strings['Unignore'] = 'Quitar de Ignorados'; -$a->strings['Currently blocked'] = 'Bloqueados'; -$a->strings['Currently ignored'] = 'Ignorados'; -$a->strings['Currently archived'] = 'Archivados'; -$a->strings['Awaiting connection acknowledge'] = 'Esperando respuesta de conexión'; -$a->strings['Replies/likes to your public posts may still be visible'] = 'Los comentarios o "me gusta" en tus publicaciones públicas todavía pueden ser visibles.'; -$a->strings['Notification for new posts'] = 'Notificación de nuevos temas.'; -$a->strings['Send a notification of every new post of this contact'] = 'Enviar una notificacion por nuevos temas de este contacto.'; -$a->strings['Keyword Deny List'] = 'Lista de Etiquetas Prohibidas'; -$a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Lista separada por comas de palabras claves que no deberían ser convertidas en #etiquetas cuando "Recaudar información y palabras claves" es seleccionado'; -$a->strings['Actions'] = 'Acciones'; -$a->strings['Status'] = 'Estado'; -$a->strings['Mirror postings from this contact'] = 'Espejar publicaciones de este contacto'; -$a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'Marcar este contacto como perfil_remoto, esto generara que friendica reenvía nuevas publicaciones desde esta cuenta.'; -$a->strings['Show all contacts'] = 'Mostrar todos los contactos'; -$a->strings['Pending'] = 'Pendiente'; -$a->strings['Only show pending contacts'] = 'Solo mostrar contactos pendientes'; -$a->strings['Blocked'] = 'Bloqueados'; -$a->strings['Only show blocked contacts'] = 'Mostrar solo contactos bloqueados'; -$a->strings['Ignored'] = 'Ignorados'; -$a->strings['Only show ignored contacts'] = 'Mostrar solo contactos ignorados'; -$a->strings['Archived'] = 'Archivados'; -$a->strings['Only show archived contacts'] = 'Mostrar solo contactos archivados'; -$a->strings['Hidden'] = 'Ocultos'; -$a->strings['Only show hidden contacts'] = 'Mostrar solo contactos ocultos'; -$a->strings['Groups'] = 'Grupos'; -$a->strings['Organize your contact groups'] = 'Organizar tus grupos de contactos'; -$a->strings['Following'] = 'Siguiendo'; -$a->strings['Mutual friends'] = 'Amigos mutuos'; -$a->strings['Contacts'] = 'Contactos'; -$a->strings['Search your contacts'] = 'Buscar en tus contactos'; -$a->strings['Results for: %s'] = 'Resultados para: %s'; -$a->strings['Find'] = 'Buscar'; -$a->strings['Update'] = 'Actualizar'; -$a->strings['Archive'] = 'Archivo'; -$a->strings['Unarchive'] = 'Sin archivar'; -$a->strings['Delete'] = 'Eliminar'; -$a->strings['Batch Actions'] = 'Acciones en lote'; -$a->strings['Conversations started by this contact'] = 'Se iniciaron conversaciones con el contacto'; -$a->strings['Posts and Comments'] = 'Artículos y Comentarios'; -$a->strings['Status Messages and Posts'] = 'Mensajes de Estado y Artículos'; -$a->strings['Profile Details'] = 'Detalles del Perfil'; -$a->strings['View all known contacts'] = 'Ver contactos conocidos'; -$a->strings['Advanced Contact Settings'] = 'Configuración avanzada'; -$a->strings['Mutual Friendship'] = 'Amistad común'; -$a->strings['is a fan of yours'] = 'es tu seguidor'; -$a->strings['you are a fan of'] = 'eres seguidor de'; -$a->strings['Pending outgoing contact request'] = 'Solicitud de Contacto pendiente'; -$a->strings['Pending incoming contact request'] = 'Solicitud de Contacto pendiente'; -$a->strings['This is you'] = 'Este eres tú'; -$a->strings['Refetch contact data'] = 'Recuperar datos del contacto.'; -$a->strings['Toggle Blocked status'] = 'Cambiar Estatus de Bloqueado'; -$a->strings['Toggle Ignored status'] = 'Cambiar ignorados'; -$a->strings['Toggle Archive status'] = 'Cambiar archivados'; -$a->strings['Delete contact'] = 'Eliminar contacto'; -$a->strings['Source URL'] = 'URL Fuente'; -$a->strings['Item not found.'] = 'Elemento no encontrado.'; -$a->strings['Source input'] = 'Entrada fuente'; -$a->strings['BBCode::toPlaintext'] = 'BBCode::toPlaintext'; -$a->strings['BBCode::convert (raw HTML)'] = 'BBCode::convert (raw HTML)'; -$a->strings['BBCode::convert (hex)'] = 'BBCode::convert (hex)'; -$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 (raw 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'] = 'Cuerpo'; -$a->strings['Item Tags'] = 'Etiquetas'; -$a->strings['PageInfo::appendToBody'] = 'PageInfo::appendToBody'; -$a->strings['PageInfo::appendToBody => BBCode::convert (raw HTML)'] = 'PageInfo::appendToBody => BBCode::convert (raw HTML)'; -$a->strings['PageInfo::appendToBody => BBCode::convert'] = 'PageInfo::appendToBody => BBCode::convert'; -$a->strings['Source input (Diaspora format)'] = 'Entrada fuente (Formato Diaspora)'; -$a->strings['Source input (Markdown)'] = 'Entrada fuente (Markdown)'; -$a->strings['Markdown::convert (raw HTML)'] = 'Markdown::convert (raw HTML)'; -$a->strings['Markdown::convert'] = 'Markdown::convert'; -$a->strings['Markdown::toBBCode'] = 'Markdown::toBBCode'; -$a->strings['Raw HTML input'] = 'Entrada RAW HTML'; -$a->strings['HTML Input'] = 'Entrada HTML'; -$a->strings['HTML Purified (raw)'] = 'HTML purificado (raw)'; -$a->strings['HTML Purified (hex)'] = 'HTML purificado (hex)'; -$a->strings['HTML Purified'] = 'HTML purificado'; -$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 (raw 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 (compact)'; -$a->strings['Decoded post'] = 'Articulo decodificado'; -$a->strings['Post array before expand entities'] = 'Arreglo sin expandir entidades'; -$a->strings['Post converted'] = 'Convertido'; -$a->strings['Converted body'] = 'Cuerpo convertido'; -$a->strings['Error'] = [ - 0 => 'Error', - 1 => 'Errores', -]; -$a->strings['Twitter addon is absent from the addon/ folder.'] = 'El Addon de Twitter no existe en folder addon/ .'; -$a->strings['Babel Diagnostic'] = 'Diagnóstico Babel'; -$a->strings['Source text'] = 'Texto fuente'; -$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)'] = 'Fuente Twitter / Tweet URL (requiere API key)'; -$a->strings['Only logged in users are permitted to perform a probing.'] = 'Sólo usuarios registrados pueden realizar exploración.'; -$a->strings['Public access denied.'] = 'Acceso público denegado.'; -$a->strings['Webfinger Diagnostic'] = 'Diagnóstico Webfinger'; -$a->strings['Lookup address:'] = 'Buscar Dirección:'; -$a->strings['l F d, Y \@ g:i A'] = 'l F d, Y \@ g:i A'; -$a->strings['Time Conversion'] = 'Conversión horária'; -$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica ofrece este servicio para compartir eventos con otros servidores de Red friendica y amigos en zonas horarias desconocidas.'; -$a->strings['UTC time: %s'] = 'Tiempo UTC: %s'; -$a->strings['Current timezone: %s'] = 'Zona horaria actual: %s'; -$a->strings['Converted localtime: %s'] = 'Hora local convertida: %s'; -$a->strings['Please select your timezone:'] = 'Selecciona tu zona horaria:'; -$a->strings['Formatted'] = 'Formateado'; -$a->strings['Source'] = 'Fuente'; -$a->strings['Activity'] = 'Actividad'; -$a->strings['Object data'] = 'Dato de Objeto'; -$a->strings['Result Item'] = 'Artículo resultado'; -$a->strings['Source activity'] = 'Actividad fuente'; -$a->strings['Probe Diagnostic'] = 'Prueba Diagnóstico'; -$a->strings['Output'] = 'Salida'; -$a->strings['Lookup address'] = 'Buscar Dirección'; -$a->strings['Please enter a post body.'] = 'Ingresa un contenido.'; -$a->strings['This feature is only available with the frio theme.'] = 'Esta opción solo disponible con Tema Frio.'; -$a->strings['Compose new personal note'] = 'Generar nueva nota personal'; -$a->strings['Compose new post'] = 'Generar nuevo artículo'; -$a->strings['Visibility'] = 'Visibilidad'; -$a->strings['Bold'] = 'Negrita'; -$a->strings['Italic'] = 'Cursiva'; -$a->strings['Underline'] = 'Subrayado'; -$a->strings['Quote'] = 'Cita'; -$a->strings['Code'] = 'Código'; -$a->strings['Image'] = 'Imagen'; -$a->strings['Link'] = 'Enlace'; -$a->strings['Link or Media'] = 'Enlace o Multimedia'; -$a->strings['Please enter a image/video/audio/webpage URL:'] = 'Escoja una dirección de imágen/video/audio/sitio:'; -$a->strings['Preview'] = 'Vista previa'; -$a->strings['Set your location'] = 'Selecciona tu ubicación'; -$a->strings['Clear the location'] = 'Borrar ubicación'; -$a->strings['Location services are unavailable on your device'] = 'Servicios de ubicación no disponibles en tu dispositivo'; -$a->strings['Location services are disabled. Please check the website\'s permissions on your device'] = 'Servicios de ubicación no habilitados. Checa los permisos del sitio en tu dispositivo'; -$a->strings['Please wait'] = 'Espere'; -$a->strings['Set title'] = 'Establecer título'; -$a->strings['Categories (comma-separated list)'] = 'Categorías (lista separada por comas)'; -$a->strings['Unable to follow this item.'] = 'Imposible seguir este artículo.'; -$a->strings['System down for maintenance'] = 'Servicio suspendido por mantenimiento'; -$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.'] = 'Este nodo de Friendica se encuentra actualmente en modo de mantenimiento, ya sea automáticamente porque se actualiza automáticamente o manualmente por el administrador del nodo. Esta condición debería ser temporal, vuelva en unos minutos.'; -$a->strings['Switch between your accounts'] = 'Cambiar entre tus cuentas'; -$a->strings['Manage your accounts'] = 'Administrar tus cuentas'; -$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Cambia entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar'; -$a->strings['Select an identity to manage: '] = 'Selecciona una identidad a gestionar:'; -$a->strings['Login'] = 'Ingreso'; -$a->strings['This page is missing a url parameter.'] = 'A la página le falta URL.'; -$a->strings['The post was created'] = 'El Artículo fue creada'; -$a->strings['Local Community'] = 'Comunidad Local'; -$a->strings['Posts from local users on this server'] = 'Artículos de usuarios charla! MX'; -$a->strings['Global Community'] = 'Comunidad Global'; -$a->strings['Posts from users of the whole federated network'] = 'Artículos de usuarios del Fediverso'; -$a->strings['Own Contacts'] = 'Contactos propios'; -$a->strings['Include'] = 'Incluir'; -$a->strings['Hide'] = 'Ocultar'; -$a->strings['No results.'] = 'Sin resultados.'; -$a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'Este hilo de la comunidad muestra todas las publicaciones públicas recibidas por este nodo. Puede no reflejar las opiniones de los usuarios de este nodo.'; -$a->strings['Community option not available.'] = 'Fediverso no disponible'; -$a->strings['Not available.'] = 'No disponible'; -$a->strings['No such group'] = 'No existe grupo'; -$a->strings['Group: %s'] = 'Grupo: %s'; -$a->strings['Latest Activity'] = 'Actividad Reciente'; -$a->strings['Sort by latest activity'] = 'Ordenar por actividad reciente'; -$a->strings['Latest Posts'] = 'Artículos Recientes'; -$a->strings['Sort by post received date'] = 'Ordenar por fecha de artículo'; -$a->strings['Personal'] = 'Personal'; -$a->strings['Posts that mention or involve you'] = 'Publicaciones que te mencionan o involucran'; -$a->strings['Starred'] = 'Destacados'; -$a->strings['Favourite Posts'] = 'Artículos favoritos'; -$a->strings['Friendica Communications Server - Setup'] = 'Servidor de Comunicaciones Friendica - Instalación'; -$a->strings['System check'] = 'Verificación del sistema'; -$a->strings['Requirement not satisfied'] = 'Requerimiento no satisfactorio'; -$a->strings['Optional requirement not satisfied'] = 'Requerimiento Opcional no satisfactorio'; -$a->strings['OK'] = 'OK'; -$a->strings['Next'] = 'Siguiente'; -$a->strings['Check again'] = 'Comprobar Nuevamente'; -$a->strings['No SSL policy, links will track page SSL state'] = 'No existe una política de SSL, los vínculos harán un seguimiento del estado de SSL en la página'; -$a->strings['Force all links to use SSL'] = 'Forzar todos los enlaces a utilizar SSL'; -$a->strings['Self-signed certificate, use SSL for local links only (discouraged)'] = 'Certificación personal, usa SSL solo para enlaces locales (no recomendado)'; -$a->strings['Base settings'] = 'Configuración Base'; -$a->strings['SSL link policy'] = 'Política de enlaces SSL'; -$a->strings['Determines whether generated links should be forced to use SSL'] = 'Determina si los enlaces generados deben ser forzados a utilizar SSL'; -$a->strings['Host name'] = 'Nombre de Dominio'; -$a->strings['Overwrite this field in case the determinated hostname isn\'t right, otherweise leave it as is.'] = 'Sobre escriba este valor en caso de que el Dominio no sea correcto, caso contrario déjelo así.'; -$a->strings['Base path to installation'] = 'Ruta base para la instalación'; -$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.'] = 'Si el sistema no puede detectar el acceso correcto a la instalación, ingrese la dirección correcta aquí. Esta configuración solo debería utilizarse si si usa un sistema restringido y enlaces simbolicos a su webroot.'; -$a->strings['Sub path of the URL'] = 'Ruta inferior del URL'; -$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.'] = 'Sobrescriba en caso de que la ruta secundaria no sea correcta,de lo contrario, déjelo así. Si lo deja en blanco significará que la instalación esta en la URL base sin ruta secundaria.'; -$a->strings['Database connection'] = 'Conexión con Base de Datos'; -$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Con el fin de poder instalar Friendica, necesitamos saber cómo conectar con tu base de datos.'; -$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Por favor, contacta con tu proveedor de servicios o con el administrador de la página si tienes alguna pregunta sobre estas configuraciones.'; -$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'La base de datos que especifiques a continuación debería existir ya. Si no es el caso, debes crearla antes de continuar.'; -$a->strings['Database Server Name'] = 'Nombre del servidor de la base de datos'; -$a->strings['Database Login Name'] = 'Usuario de la base de datos'; -$a->strings['Database Login Password'] = 'Contraseña de la base de datos'; -$a->strings['For security reasons the password must not be empty'] = 'Por razones de seguridad la contraseña no debe estar vacía'; -$a->strings['Database Name'] = 'Nombre de la base de datos'; -$a->strings['Please select a default timezone for your website'] = 'Por favor, selecciona la zona horaria predeterminada para tu web'; -$a->strings['Site settings'] = 'Configuración de la página web'; -$a->strings['Site administrator email address'] = 'Dirección de correo del administrador de la web'; -$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'La dirección de correo de tu cuenta debe coincidir con esta para poder usar el panel de administración de la web.'; -$a->strings['System Language:'] = 'Sistema de idioma:'; -$a->strings['Set the default language for your Friendica installation interface and to send emails.'] = 'Seleccione el idioma por defecto para su interfaz de instalación de Friendica y para enviar correos.'; -$a->strings['Your Friendica site database has been installed.'] = 'La base de datos de su sitio web de Friendica ha sido instalada.'; -$a->strings['Installation finished'] = 'Instalación completa'; -$a->strings['

    What next

    '] = '

    ¿Que sigue?

    '; -$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the worker.'] = 'IMPORTANTE: Debe configurar [manualmente] una Tarea Programada para eltrabajador(Worker).'; -$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.'] = 'Ve a la Página de Registro de tu nuevo nodo de Friendicay registrate como nuevo usuario. Recuerda utilizar el mismo correo electrónico que ingresaste como correo del administrador. Esto te permitirá ingresar al Panel de Administración del Sitio.'; -$a->strings['No profile'] = 'Ningún perfil'; -$a->strings['Credits'] = 'Créditos'; -$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!'] = 'Friendica es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica. -Gracias a todos! '; -$a->strings['Search term was not saved.'] = 'Término de búsqueda no se grabó.'; -$a->strings['Search term already saved.'] = 'Término de búsqueda ya ha sido grabado.'; -$a->strings['Search term was not removed.'] = 'Término de búsqueda no fue borrado.'; -$a->strings['Only logged in users are permitted to perform a search.'] = 'Solo usuarios activos tienen permiso para ejecutar búsquedas.'; -$a->strings['Only one search per minute is permitted for not logged in users.'] = 'Se permite solo una búsqueda por minuto para usuarios no identificados.'; -$a->strings['Search'] = 'Buscar'; -$a->strings['Items tagged with: %s'] = 'Objetos taggeado con: %s'; -$a->strings['Profile unavailable.'] = 'Perfil no disponible.'; -$a->strings['Invalid locator'] = 'Localizador no válido'; -$a->strings['The provided profile link doesn\'t seem to be valid'] = 'Link del perfil no parece válido.'; -$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema.'; -$a->strings['Friend/Connection Request'] = 'Solicitud de Amistad/Conexión'; -$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.'] = 'Digite dirección Webfinger (user@domain.tld) o URL de perfil. Si no fuera aceptado por tu sistema, debes suscribirte a %s o %s directo en tu sistema.'; -$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.'] = 'Si aún no eres miembro de la web social gratuita, Sígue este enlace para encontrar un nodo Friendica público y únete hoy.'; -$a->strings['Your Webfinger address or profile URL:'] = 'Tu dirección Webfinger o URL de Perfil:'; -$a->strings['Please answer the following:'] = 'Por favor responde lo siguiente:'; -$a->strings['Submit Request'] = 'Enviar Solicitud'; -$a->strings['Total invitation limit exceeded.'] = 'Límite de invitaciones excedido.'; -$a->strings['%s : Not a valid email address.'] = '%s : No es un correo válido.'; -$a->strings['Please join us on Friendica'] = 'Únete a nosotros en Friendica'; -$a->strings['Invitation limit exceeded. Please contact your site administrator.'] = 'Límite de invitaciones sobrepasado. Contacta con el administrador del sitio.'; -$a->strings['%s : Message delivery failed.'] = '%s : Ha fallado la entrega del mensaje.'; -$a->strings['%d message sent.'] = [ - 0 => '%d mensaje enviado.', - 1 => '%d mensajes enviados.', -]; -$a->strings['You have no more invitations available'] = 'No tienes más invitaciones disponibles'; -$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.'] = 'Visita %s para ver una lista de servidores públicos donde puedes darte de alta. Los miembros de otros servidores de Friendica pueden conectarse entre ellos, así como con miembros de otras redes sociales diferentes.'; -$a->strings['To accept this invitation, please visit and register at %s or any other public Friendica website.'] = 'Para aceptar la invitación visita y regístrate en %s o en cualquier otro servidor público de Friendica.'; -$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.'] = 'Los servidores de Friendica están interconectados para crear una enorme red social centrada en la privacidad y controlada por sus miembros. También se puede conectar con muchas redes sociales tradicionales. Mira en %s para poder ver un listado de servidores alternativos de Friendica donde puedes darte de alta.'; -$a->strings['Our apologies. This system is not currently configured to connect with other public sites or invite members.'] = 'Discúlpanos. Este sistema no está configurado actualmente para conectar con otros servidores públicos o invitar nuevos miembros.'; -$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.'] = 'Los sitios de Friendica se conectan entre sí para crear una gran red social con privacidad mejorada que es propiedad y está controlada por sus miembros. También pueden conectarse con muchas redes sociales tradicionales.'; -$a->strings['To accept this invitation, please visit and register at %s.'] = 'Para aceptar esta invitación, visite y regístrese en%s, por favor.'; -$a->strings['Send invitations'] = 'Enviar invitaciones'; -$a->strings['Enter email addresses, one per line:'] = 'Introduce las direcciones de correo, una por línea:'; -$a->strings['Your message:'] = 'Tu mensaje:'; -$a->strings['You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.'] = 'Estás cordialmente invitado a unirte a mi y a otros amigos en Friendica, creemos juntos una red social mejor.'; -$a->strings['You will need to supply this invitation code: $invite_code'] = 'Tienes que proporcionar el siguiente código: $invite_code'; -$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Una vez registrado, por favor contacta conmigo a través de mi página de perfil en:'; -$a->strings['For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca'] = 'Para más información sobre el proyecto Friendica y por qué sentimos que es importante, visite http://friendi.ca, por favor'; -$a->strings['No entries (some entries may be hidden).'] = 'Sin entradas (algunas pueden que estén ocultas).'; -$a->strings['Global Directory'] = 'Directorio Global'; -$a->strings['Find on this site'] = 'Buscar en este sitio'; -$a->strings['Results for:'] = 'Resultados para:'; -$a->strings['Site Directory'] = 'Directorio del sitio'; -$a->strings['View Profile'] = 'Ver Perfil'; -$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.'] = 'En el momento del registro, y para proporcionar comunicaciones entre la cuenta de usuario y sus contactos, el usuario debe proporcionar un nombre para mostrar (seudónimo), un nombre de usuario (apodo) y una dirección de correo que funcione. Los nombres seran visibles en tu página de perfil de la cuenta por cualquier visitante de la página, incluso si no se muestran otros detalles del perfil. La dirección de correo solo se usará para enviar notificaciones al usuario sobre interacciones, pero no será visible. La lista de una cuenta en el directorio de usuarios del nodo o el directorio de usuarios global es opcional y se puede controlar en los Ajustes de Configuración, no es necesario para la comunicación.'; -$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.'] = 'Estos datos son necesarios para la comunicación y se transmiten a los nodos de los socios de comunicación y se almacena allí. Los usuarios pueden ingresar datos privados que pueden ser transmitidos a las cuentas de los socios de comunicación.'; -$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.'] = 'En cualquier momento, un usuario que haya iniciado sesión puede exportar los datos de su cuenta desde la Configuración de Cuenta. Si el usuario desea eliminar su cuenta, puede hacerlo en %1$s/Borrarme. La eliminación de la cuenta será permanente. La eliminación de los datos también se solicitará desde los nodos de los interlocutores.'; -$a->strings['Privacy Statement'] = 'Declaración de Privacidad'; -$a->strings['Welcome to Friendica'] = 'Bienvenido a Friendica'; -$a->strings['New Member Checklist'] = 'Nuevos miembros'; -$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.'] = 'Nos gustaría ofrecerte algunos consejos y enlaces para ayudar a hacer tu experiencia más amena. Pulsa en cualquier elemento para visitar la página correspondiente. Un enlace a esta página será visible desde tu página de inicio durante las dos semanas siguientes a tu inscripción y luego desaparecerá.'; -$a->strings['Getting Started'] = 'Iniciando..'; -$a->strings['Friendica Walk-Through'] = 'Visita guiada a Friendica'; -$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.'] = 'En tu página de Inicio Rápido - busca una introducción breve para tus pestañas de perfil y red, haz algunas conexiones nuevas, y busca algunos grupos a los que unirte.'; -$a->strings['Settings'] = 'Configuración'; -$a->strings['Go to Your Settings'] = 'Ir a tus Ajustes'; -$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.'] = 'En la página de Configuración puedes cambiar tu contraseña inicial. También aparece tu ID (Identity Address). Es parecida a una dirección de correo y te servirá para conectar con gente de redes sociales libres.'; -$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.'] = 'Revisa las otras configuraciones, especialmente la configuración de privacidad. Un listado de directorio sin publicar es como tener un número de teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que tus amigos y amigos potenciales sepan cómo ponerse en contacto contigo.'; -$a->strings['Upload Profile Photo'] = 'Subir foto del Perfil'; -$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.'] = 'Sube una foto para tu perfil si no lo has hecho aún. Los estudios han demostrado que la gente que usa fotos suyas reales tienen diez veces más éxito a la hora de entablar amistad que las que no.'; -$a->strings['Edit Your Profile'] = 'Editar tu perfil'; -$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.'] = 'Edita tu perfil predeterminado como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos.'; -$a->strings['Profile Keywords'] = 'Palabras clave del perfil'; -$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.'] = 'Establece algunas palabras clave públicas para tu perfil que describan tus intereses. Podremos encontrar a otras personas con intereses similares y sugerir amistades.'; -$a->strings['Connecting'] = 'Conectando'; -$a->strings['Importing Emails'] = 'Importando correos electrónicos'; -$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'] = 'Introduce la información para acceder a tu correo en la página de Configuración del conector si quieres importar e interactuar con amigos o listas de correos del buzón de entrada de tu correo electrónico.'; -$a->strings['Go to Your Contacts Page'] = 'Ir a tu página de contactos'; -$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.'] = 'Tu página de Contactos es el portal desde donde podrás manejar tus amistades y conectarte con amigos de otras redes. Normalmente introduces su dirección o la dirección de su sitio web en el recuadro "Añadir contacto nuevo".'; -$a->strings['Go to Your Site\'s Directory'] = 'Ir al directorio de tu sitio'; -$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.'] = 'El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de Conectar o Seguir en su perfil. Proporciona tu direción personal si es necesario.'; -$a->strings['Finding New People'] = 'Encontrando nueva gente'; -$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.'] = 'En el panel lateral de la página de Contactos existen varias herramientas para encontrar nuevos amigos. Podemos filtrar personas por sus intereses, buscar personas por nombre o por sus intereses, y ofrecerte sugerencias basadas en sus relaciones de la red. En un sitio nuevo, las sugerencias de amigos por lo general comienzan pasadas las 24 horas.'; -$a->strings['Group Your Contacts'] = 'Agrupa tus contactos'; -$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.'] = 'Una vez que tengas algunos amigos, puedes organizarlos en grupos privados de conversación mediante el memnú en tu página de Contactos y luego puedes interactuar con cada grupo por separado desde tu página de Red.'; -$a->strings['Why Aren\'t My Posts Public?'] = '¿Por qué mis publicaciones no son públicas?'; -$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.'] = 'Friendica respeta tu privacidad. Por defecto, tus publicaciones solo se mostrarán a personas que hayas añadido como amistades. Para más información, mira la sección de ayuda en el enlace de más arriba.'; -$a->strings['Getting Help'] = 'Consiguiendo ayuda'; -$a->strings['Go to the Help Section'] = 'Ir a la sección de ayuda'; -$a->strings['Our help pages may be consulted for detail on other program features and resources.'] = 'Puedes consultar nuestra página de Ayuda para más información y recursos de ayuda.'; -$a->strings['The theme you chose isn\'t available.'] = 'El tema seleccionado no disponible.'; -$a->strings['No special theme for mobile devices'] = 'No hay tema especial para dispositivos móviles'; -$a->strings['%s - (Unsupported)'] = '%s – (No puede usarse)'; -$a->strings['%s - (Experimental)'] = '%s - (Experimental)'; -$a->strings['Display Settings'] = 'Configuración Tema/Visualización'; -$a->strings['Save Settings'] = 'Guardar configuración'; -$a->strings['General Theme Settings'] = 'Ajustes generales de tema'; -$a->strings['Custom Theme Settings'] = 'Ajustes personalizados de tema'; -$a->strings['Content Settings'] = 'Ajustes de contenido'; -$a->strings['Theme settings'] = 'Configuración del Tema'; -$a->strings['Calendar'] = 'Calendario'; -$a->strings['Display Theme:'] = 'Utilizar tema:'; -$a->strings['Mobile Theme:'] = 'Tema móvil:'; -$a->strings['Number of items to display per page:'] = 'Número de elementos a mostrar por página:'; -$a->strings['Maximum of 100 items'] = 'Máximo 100 elementos'; -$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Cantidad de objetos a visualizar cuando se usa un móvil'; -$a->strings['Update browser every xx seconds'] = 'Actualizar navegador cada xx segundos'; -$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Minimo 10 segundos. Ingrese -1 para deshabilitar.'; -$a->strings['Automatic updates only at the top of the post stream pages'] = 'Actualizaciones automáticas solo el inicio de las páginas'; -$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.'] = 'Auto actualizar puede añadir nuevos artículos por encima de las páginas, pudiendo afectar la posición de visualización y afectar tu lectura si sucede en algún punto por encima de la página.'; -$a->strings['Don\'t show emoticons'] = 'No mostrar emoticones'; -$a->strings['Normally emoticons are replaced with matching symbols. This setting disables this behaviour.'] = 'Los emoticones pueden ser reemplazados por códigos similares. Esto lo deshabilita.'; -$a->strings['Infinite scroll'] = 'Pagina infinita (scroll)'; -$a->strings['Automatic fetch new items when reaching the page end.'] = 'Obtener nuevos artículos cuando alcance el final de página.'; -$a->strings['Disable Smart Threading'] = 'Deshabilitar hilos inteligentes'; -$a->strings['Disable the automatic suppression of extraneous thread indentation.'] = 'Deshabilitar la supresión automática de identación de hilos extras.'; -$a->strings['Hide the Dislike feature'] = 'Ocultar botón de (Disgusta)'; -$a->strings['Hides the Dislike button and dislike reactions on posts and comments.'] = 'Oculta botón (Disgusta) y sus reacciones en artículos y comentarios.'; -$a->strings['Display the resharer'] = 'Desplegar reenviar'; -$a->strings['Display the first resharer as icon and text on a reshared item.'] = 'Desplegar primer reenvío con un icono y texto en artículo reenviado.'; -$a->strings['Stay local'] = 'Quedarse Local'; -$a->strings['Don\'t go to a remote system when following a contact link.'] = 'No ir a sistema remoto cuando siga a un link de un contacto.'; -$a->strings['Beginning of week:'] = 'Principio de la semana:'; -$a->strings['Please enter your password to access this page.'] = 'Ingresa tu contraseña para acceder a la página.'; -$a->strings['Two-factor authentication successfully activated.'] = 'Se activó autenticación de 2 Factores.'; -$a->strings['Invalid code, please retry.'] = 'Código inválido, reinténtelo'; -$a->strings['

    Or you can submit the authentication settings manually:

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

    O puedes ajustar manualmente la autenticación:

    -
    -
    Solicitante
    -
    %s
    -
    Cuenta
    -
    %s
    -
    Clave Secreta
    -
    %s
    -
    Tipo
    -
    Basado en tiempo
    -
    No. dígitos
    -
    6
    -
    Algoritmo de encriptación
    -
    SHA-1
    -
    '; -$a->strings['Two-factor code verification'] = 'Verificación de código de 2 Factores'; -$a->strings['Help'] = 'Ayuda'; -$a->strings['

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

    '] = '

    Escanee este código QR con su aplicación de autenticación y envíe el código proporcionado.

    '; -$a->strings['

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

    %s

    '] = '

    O puede abrir la siguiente URL en su dispositivo móvil:

    %s

    '; -$a->strings['Please enter a code from your authentication app'] = 'Ingresa un código de ingreso desde tu app'; -$a->strings['Verify code and enable two-factor authentication'] = 'Verifica código y habilita autenticación de 2 Factores'; -$a->strings['Two-factor authentication successfully disabled.'] = 'La autenticación de dos factores se ha desactivado correctamente.'; -$a->strings['Wrong Password'] = 'Contraseña incorrecta'; -$a->strings['Two-factor authentication'] = 'Ingreso de 2 factores'; -$a->strings['

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

    '] = '

    Usa una aplicación en un móvil para obtener códigos de autentificación de 2 factores cuando ingreses.

    '; -$a->strings['Authenticator app'] = 'Autenticador'; -$a->strings['Configured'] = 'Configurado'; -$a->strings['Not Configured'] = 'Sin configurar'; -$a->strings['

    You haven\'t finished configuring your authenticator app.

    '] = '

    No has concluido de configurar tu app Autentificador.

    '; -$a->strings['

    Your authenticator app is correctly configured.

    '] = '

    Tu autenticador está configurado correctamente.

    '; -$a->strings['Recovery codes'] = 'Códigos de recuperación'; -$a->strings['Remaining valid codes'] = 'Códigos válidos restantes'; -$a->strings['

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

    '] = '

    Estos códigos de una sola vez pueden reemplazar la app Autenticador si perdieras acceso a ella.

    '; -$a->strings['App-specific passwords'] = 'Contraseñas específicas de la App'; -$a->strings['Generated app-specific passwords'] = 'Generadas contraseñas específicas de App'; -$a->strings['

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

    '] = '

    Estas contraseñas generadas automáticamente te permiten entrar con apps que no permitan Autenticación de 2 factores.

    '; -$a->strings['Current password:'] = 'Contraseña actual'; -$a->strings['You need to provide your current password to change two-factor authentication settings.'] = 'necesitas tu contraseña actual para cambiar los ajustes de autenticación de 2 factores.'; -$a->strings['Enable two-factor authentication'] = 'Habilitar Autenticación de 2 factores'; -$a->strings['Disable two-factor authentication'] = 'Deshabilitar Autenticación de 2 factores'; -$a->strings['Show recovery codes'] = 'Mostrar códigos de recuperación'; -$a->strings['Manage app-specific passwords'] = 'Administrar contraseñas de la app'; -$a->strings['Manage trusted browsers'] = 'Administrar navegadores confiables'; -$a->strings['Finish app configuration'] = 'Completar configuración de la App'; -$a->strings['App-specific password generation failed: The description is empty.'] = 'Generación de Contraseña de la App fallida: Sin explicación'; -$a->strings['App-specific password generation failed: This description already exists.'] = 'Generación de contraseña de App fallida: Ya existe descripción.'; -$a->strings['New app-specific password generated.'] = 'Nueva contraseña de la App generada.'; -$a->strings['App-specific passwords successfully revoked.'] = 'Contraseñas de la App fueron revocadas.'; -$a->strings['App-specific password successfully revoked.'] = 'Contraseña de la App revocada.'; -$a->strings['Two-factor app-specific passwords'] = 'Contraseña de la App de 2 Factores'; -$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.

    '] = '

    Contraseñas de la App son contraseñas aleatorias que se usan en lugar de la contraseña normal para autenticarte usando Apps de 3ras compañías que no soportan autenticación de 2 factores.

    '; -$a->strings['Make sure to copy your new app-specific password now. You won’t be able to see it again!'] = 'Asegurate de copiar tu contraseña de la App ahora. No podrás verla de nuevo!'; -$a->strings['Description'] = 'Descripción'; -$a->strings['Last Used'] = 'Usada desde'; -$a->strings['Revoke'] = 'Revocar'; -$a->strings['Revoke All'] = 'Revocar todo'; -$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.'] = 'Cuando generas nueva contraseña de la App, debes verla de inmediato, se te mostrará solo una vez cuando la generes.'; -$a->strings['Generate new app-specific password'] = 'Generar nueva contraseña de la App'; -$a->strings['Friendiqa on my Fairphone 2...'] = 'Friendica en mimóvil 2'; -$a->strings['Generate'] = 'Generar'; -$a->strings['New recovery codes successfully generated.'] = 'Nuevos códigos de recuperación generados.'; -$a->strings['Two-factor recovery codes'] = 'Códigos de recuperación de 2 factores'; -$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.

    '] = '

    Puedes usar los códigos de recuperación si perdieras acceso al móvil y no pudieras recibir códigos de autenticación de 2 Factores.

    Guarda esto de manera segura! Si perdieras tu móvil sin tener los códigos de recuperación perderías el acceso a tu cuenta.

    '; -$a->strings['When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore.'] = 'Cuando generas nuevos códigos de recuperación, debes copiar los nuevos códigos. los anteriores ya no funcionarán.'; -$a->strings['Generate new recovery codes'] = 'Generar nuevos códigos de recuperación'; -$a->strings['Next: Verification'] = 'Siguiente: Verificación'; -$a->strings['Trusted browsers successfully removed.'] = 'Los navegadores de confianza se eliminaron correctamente.'; -$a->strings['Trusted browser successfully removed.'] = 'Navegador de confianza se eliminó correctamente.'; -$a->strings['Two-factor Trusted Browsers'] = 'Navegadores de confianza de dos factores'; -$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.'] = 'Los navegadores de confianza son navegadores individuales que eligió para omitir la autenticación de dos factores para acceder a Friendica. Utilice esta función con moderación, ya que puede anular el beneficio de la autenticación de dos factores.'; -$a->strings['Device'] = 'Dispositivo'; -$a->strings['OS'] = 'OS/SO'; -$a->strings['Browser'] = 'Navegador'; -$a->strings['Trusted'] = 'Confiable'; -$a->strings['Last Use'] = 'Usada desde'; -$a->strings['Remove'] = 'Eliminar'; -$a->strings['Remove All'] = 'Borrar todo'; -$a->strings['Profile Photos'] = 'Fotos del perfil'; -$a->strings['Image size reduction [%s] failed.'] = 'Ha fallado la reducción de las dimensiones de la imagen [%s].'; -$a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente.'; -$a->strings['Unable to process image'] = 'Imposible procesar la imagen'; -$a->strings['Photo not found.'] = 'No se encontró foto.'; -$a->strings['Profile picture successfully updated.'] = 'Foto de perfil actualizado.'; -$a->strings['Crop Image'] = 'Recortar imagen'; -$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Por favor, ajusta el recorte de la imagen para optimizarla.'; -$a->strings['Use Image As Is'] = 'Usar imagen como esta'; -$a->strings['Missing uploaded image.'] = 'Falta la imágen subida'; -$a->strings['Image exceeds size limit of %s'] = 'Imagen excede el tamaño de %s'; -$a->strings['Unable to process image.'] = 'Imposible procesar la imagen.'; -$a->strings['Image upload failed.'] = 'Error al subir la imagen.'; -$a->strings['Profile Picture Settings'] = 'Ajustes de Foto del Perfil'; -$a->strings['Current Profile Picture'] = 'Foto de Perfil Actual'; -$a->strings['Upload Profile Picture'] = 'Subir foto del Perfil'; -$a->strings['Upload Picture:'] = 'Subir foto:'; -$a->strings['Upload'] = 'Subir'; -$a->strings['or'] = 'o'; -$a->strings['skip this step'] = 'saltar este paso'; -$a->strings['select a photo from your photo albums'] = 'elige una foto de tus álbumes'; -$a->strings['Profile Name is required.'] = 'Se necesita un nombre de perfil.'; -$a->strings['Profile couldn\'t be updated.'] = 'No puede actualizarse perfil.'; -$a->strings['Label:'] = 'Etiqueta:'; -$a->strings['Value:'] = 'Valor:'; -$a->strings['Field Permissions'] = 'Permisos del campo'; -$a->strings['(click to open/close)'] = '(pulsa para abrir/cerrar)'; -$a->strings['Add a new profile field'] = 'Añadir campo de perfil'; -$a->strings['Profile Actions'] = 'Acciones de perfil'; -$a->strings['Edit Profile Details'] = 'Editar detalles de tu perfil'; -$a->strings['Change Profile Photo'] = 'Cambiar imagen del Perfil'; -$a->strings['Profile picture'] = 'Imagen del perfil'; -$a->strings['Location'] = 'Ubicación'; -$a->strings['Custom Profile Fields'] = 'Campos personalizados de perfil'; -$a->strings['Display name:'] = 'Nombre desplegable:'; -$a->strings['Street Address:'] = 'Dirección'; -$a->strings['Locality/City:'] = 'Localidad/Ciudad:'; -$a->strings['Region/State:'] = 'Región/Estado:'; -$a->strings['Postal/Zip Code:'] = 'Código/Zona postal:'; -$a->strings['Country:'] = 'País'; -$a->strings['XMPP (Jabber) address:'] = 'Dirección XMPP (Jabber):'; -$a->strings['The XMPP address will be propagated to your contacts so that they can follow you.'] = 'La dirección XMPP será propagada entre sus contactos para que puedan seguirle.'; -$a->strings['Homepage URL:'] = 'Dirección de tu página:'; -$a->strings['Public Keywords:'] = 'Palabras clave públicas:'; -$a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Utilizadas para sugerir amigos potenciales, otros pueden verlo)'; -$a->strings['Private Keywords:'] = 'Palabras clave privadas:'; -$a->strings['(Used for searching profiles, never shown to others)'] = '(Utilizadas para buscar perfiles, nunca se muestra a otros)'; -$a->strings['

    Custom fields appear on your profile page.

    -

    You can use BBCodes in the field values.

    -

    Reorder by dragging the field title.

    -

    Empty the label field to remove a custom field.

    -

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

    '] = '

    Campos personalizados aparecen en tu perfil.

    -

    Puedes usar BBCode en los campos.

    -

    Reordenar para arrastrar campo título.

    -

    Vacie la etiqueta para quitar un campo personalizado.

    -

    Campos no públicos solo pueden verse por contactos Friendica seleccionados o contactos Friendica en grupos selecionados.

    '; -$a->strings['Delegation successfully granted.'] = 'Se autorizó delegación.'; -$a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'Usuario padre no encontrado, o no coincide contraseña.'; -$a->strings['Delegation successfully revoked.'] = 'Delegación revocada con éxito.'; -$a->strings['Delegated administrators can view but not change delegation permissions.'] = 'Administradores delegados pueden ver pero no cambiar permisos delegados.'; -$a->strings['Delegate user not found.'] = 'Usuario delegado no encontrado.'; -$a->strings['No parent user'] = 'No hay usuario padre'; -$a->strings['Parent User'] = 'Usuario Padre'; -$a->strings['Additional Accounts'] = 'Cuentas adicionales'; -$a->strings['Register additional accounts that are automatically connected to your existing account so you can manage them from this account.'] = 'Registre cuentas adicionales que son automáticamente conectadas con tu cuenta existente de forma que puedas manejarlas desde aquí.'; -$a->strings['Register an additional account'] = 'Registrar cuenta adicional'; -$a->strings['Parent users have total control about this account, including the account settings. Please double check whom you give this access.'] = 'Usuarios padres tendrán control total en esta cuenta, incluyendo ajustes. Cheque doblemente a quien le das acceso.'; -$a->strings['Manage Accounts'] = 'Gestionar cuentas'; -$a->strings['Delegates'] = 'Delegados'; -$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.'] = 'Los delegados tienen la capacidad de gestionar todos los aspectos de esta cuenta/página, excepto los ajustes básicos de la cuenta. Por favor, no delegues tu cuenta personal a nadie en quien no confíes completamente.'; -$a->strings['Existing Page Delegates'] = 'Delegados actuales de la página'; -$a->strings['Potential Delegates'] = 'Delegados potenciales'; -$a->strings['Add'] = 'Añadir'; -$a->strings['No entries.'] = 'Sin entradas.'; -$a->strings['Export account'] = 'Exportar cuenta'; -$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.'] = 'Exporta la información de tu cuenta y tus contactos. Úsalo para guardar una copia de seguridad de tu cuenta y/o moverla a otro servidor.'; -$a->strings['Export all'] = 'Exportar todo'; -$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)'] = 'Exportar tu info de cuenta, contactos y artículos en formato JSON. Podría ser un archivo grande, y tomar mucho tiempo. Solo usalo para respaldo completo de tu cuenta (fotos no se exportan)'; -$a->strings['Export Contacts to CSV'] = 'Exportar Contactos como archivo CSV'; -$a->strings['Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon.'] = 'Exportar la lista de cuentas que sigues como archivo CSV. Compatible con ej. Mastodon.'; -$a->strings['Export personal data'] = 'Exportación de datos personales'; -$a->strings['Lock feature %s'] = 'Bloquear opción %s '; -$a->strings['Manage Additional Features'] = 'Administrar opciones adicionales'; -$a->strings['Update has been marked successful'] = 'La actualización se ha completado con éxito'; -$a->strings['Database structure update %s was successfully applied.'] = 'Actualización de base de datos %s fue aplicada con éxito.'; -$a->strings['Executing of database structure update %s failed with error: %s'] = 'El paso de actualización de la estructura de la base de datos %s fallo con el mensaje de error: %s'; -$a->strings['Executing %s failed with error: %s'] = 'Paso %s fallo con el error: %s'; -$a->strings['Update %s was successfully applied.'] = 'Actualización %s aplicada con éxito.'; -$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'La actualización %s no ha informado, se desconoce el estado.'; -$a->strings['There was no additional update function %s that needed to be called.'] = 'No había función adicional de actualización %s que necesitaba ser requerida.'; -$a->strings['No failed updates.'] = 'Actualizaciones sin fallos.'; -$a->strings['Check database structure'] = 'Revisar estructura de la base de datos'; -$a->strings['Failed Updates'] = 'Actualizaciones fallidas'; -$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'No se incluyen las anteriores a la 1139, que no indicaban su estado.'; -$a->strings['Mark success (if update was manually applied)'] = 'Marcar como correcta (si actualizaste manualmente)'; -$a->strings['Attempt to execute this update step automatically'] = 'Intentando ejecutar este paso automáticamente'; -$a->strings['Addon not found.'] = 'Añadido no encontrado.'; -$a->strings['Addon %s disabled.'] = 'Añadido %s deshabilitado.'; -$a->strings['Addon %s enabled.'] = 'Añadido %s habilitado.'; -$a->strings['Disable'] = 'Desactivar'; -$a->strings['Enable'] = 'Activar'; -$a->strings['Administration'] = 'Administración'; -$a->strings['Toggle'] = 'Activar'; -$a->strings['Author: '] = 'Autor: '; -$a->strings['Maintainer: '] = 'Mantenedor: '; -$a->strings['Addons reloaded'] = 'Añadidos re cargados'; -$a->strings['Addon %s failed to install.'] = 'Instalación de Añadido %s falló'; -$a->strings['Reload active addons'] = 'Añadidos activos re cargados'; -$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'] = 'No hay añadidos disponibles en el nodo. Puedes encontrar el repositorio oficial en %1$s y puedes encontrar otros interesantes en el registro de añadidos en %2$s'; -$a->strings['Error trying to open %1$s log file.\r\n
    Check to see if file %1$s exist and is readable.'] = 'Error al intentar abrir %1$s archivo del log.\r\n
    Checar si el archivo %1$s existe y se puede leer.'; -$a->strings['Couldn\'t open %1$s log file.\r\n
    Check to see if file %1$s is readable.'] = 'No se pudo abrir %1$s archivo del log.\r\n
    Cheque si el archivo %1$s puede leerse.'; -$a->strings['The logfile \'%s\' is not writable. No logging possible'] = 'El archivo de Log \'%s\' no es escriturable. No puede registrar Log.'; -$a->strings['PHP log currently enabled.'] = 'Registro PHP actualmente disponible.'; -$a->strings['PHP log currently disabled.'] = 'Registro PHP actualmente deshabilitado.'; -$a->strings['Clear'] = 'Limpiar'; -$a->strings['Enable Debugging'] = 'Habilitar debugging'; -$a->strings['Log file'] = 'Archivo de registro'; -$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Debes tener permiso de escritura en el servidor. Relacionado con tu directorio de inicio de Friendica.'; -$a->strings['Log level'] = 'Nivel de registro'; -$a->strings['PHP logging'] = 'PHP logging'; -$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.'] = 'Para habilitar temporalmente el registro de errores y advertencias de PHP, puede anteponer lo siguiente al archivo index.php de su instalación. El nombre de archivo establecido en la línea \'error_log\' es relativo al directorio de nivel superior de Friendica y debe poder escribirse por el servidor. La opción \'1\' para \'log_errors\' y \'display_errors\' es para habilitar estas opciones, establezca en \'0\' para deshabilitarlas.'; -$a->strings['Inspect Deferred Worker Queue'] = 'Inspeccionar Cola diferida de Workers'; -$a->strings['This page lists the deferred worker jobs. This are jobs that couldn\'t be executed at the first time.'] = 'Esta página enumera los jobs de los Workers diferidos. Estos son jobs que no se pudieron ejecutar la primera vez.'; -$a->strings['Inspect Worker Queue'] = 'Inspeccionar Cola de Workers'; -$a->strings['This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you\'ve set up during install.'] = 'Esta página enumera los jobs de workers actualmente en cola. Estos Jobs son manejados por el cronjob de trabajador que configuró durante la instalación.'; -$a->strings['ID'] = 'ID'; -$a->strings['Job Parameters'] = 'Parámetros del Job'; -$a->strings['Created'] = 'Creado'; -$a->strings['Priority'] = 'Prioridad'; -$a->strings['Template engine (%s) error: %s'] = 'Error (%s) en Motor de plantilla: %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.
    '] = 'Tu BD corre con tablas MyISAM. Debes cambiar al motor InnoDB. Pues Friendica usará solo InnoDB en el futuro, debes cambiarlo! Ver esto como guía de ayuda para convertir el motor de tablas. Podrías usar también el comando php bin/console.php dbstructure toinnodb de tu instalación Friendica para conversión automática.
    '; -$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.
    '] = 'Tu BD corre con tablas InnoDB. En formato de archivo Antelope. Debes cambiar al formato de archivos Barracuda. Friendica usa opciones que no provee el formato Antelope. Ver esto como guía de ayuda para convertir el motor de tablas. Podrías usar también el comando php bin/console.php dbstructure toinnodb de tu instalación Friendica para conversión automática.
    '; -$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.
    '] = 'El \'table_definition_cache\' es muy corto (%d). puede acarrear error de BD "Sentencia preparada debe ser Re-preparada". Setealo al menos a %d. Ver here para mas información.
    '; -$a->strings['There is a new version of Friendica available for download. Your current version is %1$s, upstream version is %2$s'] = 'Hay una nueva versión de Friendica disponible para descargar. Su versión actual es %1$s, la versión ascendente es %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.'] = 'Actualización de la BD Falló. Ejecute "php bin/console.php dbstructure update" desde línea de comandos y revise los errores que puedan haber ocurrido.'; -$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.)'] = 'La última actualización falló. Ejecute "php bin/console.php dbstructure update" desde línea de comandos y revise los errores que puedan haber ocurrido. (Algunos aparecerán en archivo de log.)'; -$a->strings['The worker was never executed. Please check your database structure!'] = 'El worker nunca fue ejecutado. ¡Revise la estructura de su BD!'; -$a->strings['The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings.'] = 'La última ejecución del trabajador fue a las %s UTC. Anterior a una hora. Revise su configuración de crontab.'; -$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.'] = 'Configuración Friendica ahora se almacena en config/local.config.php, copie config/local-sample.config.php y mueva su configuración de .htconfig.php. Ver página de ayuda como ayuda en la transición.'; -$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.'] = 'Configuración Friendica ahora se almacena en config/local.config.php, copie config/local-sample.config.php y mueva su configuración de config/local.ini.php. Ver página de ayuda como ayuda en la transición.'; -$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.'] = '%s no se alcanza en tu sistema. Es un error grave en la configuración que evita la comunicación de servidor a servidor. Ver la página de instalación como ayuda.'; -$a->strings['The logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Tl archivo de log \'%s\' no se puede usar. No es posible el registro (error: \'%s\')'; -$a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'El archivo de log de debugg \'%s\' no puede usarse. No es posible el registro (error: \'%s\')'; -$a->strings['Friendica\'s system.basepath was updated from \'%s\' to \'%s\'. Please remove the system.basepath from your db to avoid differences.'] = 'La ruta Friendica system.basepath se actualizó de \'%s\' a \'%s\'. Quite la system.basepath de tu BD para evitar diferencias.'; -$a->strings['Friendica\'s current system.basepath \'%s\' is wrong and the config file \'%s\' isn\'t used.'] = 'Ruta actual Friendica system.basepath \'%s\' es errónea y el archivo de configuración \'%s\' no se usa.'; -$a->strings['Friendica\'s current system.basepath \'%s\' is not equal to the config file \'%s\'. Please fix your configuration.'] = 'Ruta actual de Friendica system.basepath \'%s\' no es igual al archivo config \'%s\'. Corrija su configuración.'; -$a->strings['Normal Account'] = 'Cuenta normal'; -$a->strings['Automatic Follower Account'] = 'Cuenta de Seguimiento Automático'; -$a->strings['Public Forum Account'] = 'Cuenta del Foro Pública'; -$a->strings['Automatic Friend Account'] = 'Cuenta de amistad automática'; -$a->strings['Blog Account'] = 'Cuenta de blog'; -$a->strings['Private Forum Account'] = 'Cuenta del Foro Privada'; -$a->strings['Message queues'] = 'Cola de mensajes'; -$a->strings['Server Settings'] = 'Ajustes del Servidor'; -$a->strings['Summary'] = 'Resumen'; -$a->strings['Registered users'] = 'Usuarios registrados'; -$a->strings['Pending registrations'] = 'Pendientes de registro'; -$a->strings['Version'] = 'Versión'; -$a->strings['Active addons'] = 'Añadidos Activos'; -$a->strings['Item Guid'] = 'Clave Guid'; -$a->strings['Item Id'] = 'Id de Artículo'; -$a->strings['Item URI'] = 'Item URI'; -$a->strings['Terms'] = 'Términos'; -$a->strings['Tag'] = 'Etiqueta'; -$a->strings['Type'] = 'Tipo'; -$a->strings['Term'] = 'Término'; -$a->strings['URL'] = 'Ruta URL'; -$a->strings['Mention'] = 'Mención'; -$a->strings['Implicit Mention'] = 'Mención Implicita'; -$a->strings['Item marked for deletion.'] = 'Artículo marcado para eliminación.'; -$a->strings['Delete this Item'] = 'Eliminar este artículo'; -$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.'] = 'En esta página, puede eliminar un artículo de su nodo. Si el artículo es una publicación de nivel superior, se eliminará todo el hilo.'; -$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.'] = 'Usted debe conocer el GUID del artículo. Puedes encontrarlo, por ejemplo. mirando la URL visible. La última parte de http://example.com/display/123456 es el GUID, aquí 123456.'; -$a->strings['GUID'] = 'GUID'; -$a->strings['The GUID of the item you want to delete.'] = 'El GUID del artículo que quiere eliminar.'; -$a->strings['Can not parse base url. Must have at least ://'] = 'No se puede resolver la direccion URL base. -Deberá tener al menos ://'; -$a->strings['Relocation started. Could take a while to complete.'] = 'Relocación iniciada. Podría tomar algo de tiempo completar.'; -$a->strings['Invalid storage backend setting value.'] = 'Valor de configuración de backend de almacenamiento no válido.'; -$a->strings['No community page for local users'] = 'No hay página de Comunidad para usuarios locales'; -$a->strings['No community page'] = 'No hay pagina de comunidad'; -$a->strings['Public postings from users of this site'] = 'Temas públicos de perfiles de este sitio.'; -$a->strings['Public postings from the federated network'] = 'Artículos públicos de Redes Federadas'; -$a->strings['Public postings from local users and the federated network'] = 'Artículos públicos de Usuarios Locales y Redes Federadas'; -$a->strings['Multi user instance'] = 'Sesión multi usuario'; -$a->strings['Closed'] = 'Cerrado'; -$a->strings['Requires approval'] = 'Requiere aprobación'; -$a->strings['Open'] = 'Abierto'; -$a->strings['Don\'t check'] = 'No verificar'; -$a->strings['check the stable version'] = 'verifique la versión estable'; -$a->strings['check the development version'] = 'verifica la versión de desarrollo'; -$a->strings['none'] = 'ninguno'; -$a->strings['Local contacts'] = 'Contactos Locales'; -$a->strings['Interactors'] = 'Interactores'; -$a->strings['Database (legacy)'] = 'Base de Datos (legada)'; -$a->strings['General Information'] = 'Información General'; -$a->strings['Republish users to directory'] = 'Republicar usuarios al Directorio'; -$a->strings['File upload'] = 'Subida de archivo'; -$a->strings['Policies'] = 'Políticas'; -$a->strings['Auto Discovered Contact Directory'] = 'Directorio de contactos descubierto automáticamente'; -$a->strings['Performance'] = 'Rendimiento'; -$a->strings['Worker'] = 'Worker'; -$a->strings['Message Relay'] = 'Retransmisión de Mensajes'; -$a->strings['Relocate Instance'] = 'Relocalizar Instancia'; -$a->strings['Warning! Advanced function. Could make this server unreachable.'] = 'Advertencia! Función avanzada. Podría hacer al servidor inalcanzable.'; -$a->strings['Site name'] = 'Nombre del sitio'; -$a->strings['Sender Email'] = 'Correo que Envía'; -$a->strings['The email address your server shall use to send notification emails from.'] = 'La dirección de correo electrónico que el servidor debería usar como dirección de envío.'; -$a->strings['Name of the system actor'] = 'Nombre del actor del Sistema'; -$a->strings['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.'] = 'Nombre de la cuenta del sistema interno que se utiliza para realizar solicitudes de ActivityPub. Debe ser un nombre de usuario no utilizado. Si se establece, esto no se puede volver a cambiar.'; -$a->strings['Banner/Logo'] = 'Imagen/Logotipo'; -$a->strings['Email Banner/Logo'] = 'Logo del Correo'; -$a->strings['Shortcut icon'] = 'Icono del Enlace'; -$a->strings['Link to an icon that will be used for browsers.'] = 'Enlace hacia un icono que sera usado para el navegador.'; -$a->strings['Touch icon'] = 'Icono Tocar'; -$a->strings['Link to an icon that will be used for tablets and mobiles.'] = 'Enlace a un icono que sera usado para tablets y moviles.'; -$a->strings['Additional Info'] = 'Información Adicional'; -$a->strings['For public servers: you can add additional information here that will be listed at %s/servers.'] = 'Servidores Públicos: Puedes añadir información adicional aqui que será listada por los servidores %s/servers.'; -$a->strings['System language'] = 'Lenguaje del Sistema'; -$a->strings['System theme'] = 'Tema del Sistema'; -$a->strings['Default system theme - may be over-ridden by user profiles - Change default theme settings'] = 'Tema Default del Sistema – puede sobre escribirse por usuarios - Cambiar ajustes de tema default'; -$a->strings['Mobile system theme'] = 'Tema de sistema móvil'; -$a->strings['Theme for mobile devices'] = 'Tema para dispositivos móviles'; -$a->strings['Force SSL'] = 'Forzar SSL'; -$a->strings['Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'] = 'Forzar todos las consultas No-SSL a SSL. - ATENCIÓN: en algunos sistemas esto puede generar comportamiento recursivo interminable.'; -$a->strings['Hide help entry from navigation menu'] = 'Ocultar la ayuda en el menú de navegación'; -$a->strings['Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly.'] = 'Oculta la entrada de las páginas de Ayuda en el menú de navegación. Todavía se puede acceder escribiendo /ayuda directamente.'; -$a->strings['Single user instance'] = 'Sesión de usuario único'; -$a->strings['Make this instance multi-user or single-user for the named user'] = 'Haz esta sesión multi-usuario o usuario único para el usuario'; -$a->strings['File storage backend'] = 'Almacén de archivos backend'; -$a->strings['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.'] = 'El backend utilizado para almacenar los datos cargados. Si cambia el backend de almacenamiento, puede mover manualmente los archivos existentes. Si no lo hace, los archivos subidos antes del cambio seguirán estando disponibles en el backend anterior. Consulte la documentación de configuración para obtener más información sobre las opciones y el procedimiento de traslado.'; -$a->strings['Maximum image size'] = 'Tamaño máximo de la imagen'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'Tamaño máximo en bytes de las imágenes a subir. Por defecto es 0, que quiere decir que no hay límite.'; -$a->strings['Maximum image length'] = 'Largo máximo de imagen'; -$a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Longitud máxima en píxeles del lado más largo de las imágenes subidas. Por defecto es -1, que significa que no hay límites.'; -$a->strings['JPEG image quality'] = 'Calidad de imagen JPEG'; -$a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = 'Los archivos JPEG subidos se guardarán con este ajuste de calidad [0-100]. Por defecto es 100, que es calidad máxima.'; -$a->strings['Register policy'] = 'Política de registros'; -$a->strings['Maximum Daily Registrations'] = 'Registros Máximos Diarios'; -$a->strings['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.'] = 'Si anteriormente se ha permitido el registro, esto establece el número máximo de registro de nuevos usuarios aceptados por día. Si el registro se establece como cerrado, esta opción no tiene efecto.'; -$a->strings['Register text'] = 'Términos'; -$a->strings['Will be displayed prominently on the registration page. You can use BBCode here.'] = 'Se mostrará de forma destacada en la página de registro. Puede utilizar BBCode aquí.'; -$a->strings['Forbidden Nicknames'] = 'Apodos Prohibidos'; -$a->strings['Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142.'] = 'Lista separada por comas de apodos cuyo registro está prohibido. Lo Preestablecido es una lista de nombres de roles según RFC 2142.'; -$a->strings['Accounts abandoned after x days'] = 'Cuentas abandonadas después de x días'; -$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = 'No gastará recursos del sistema creando sondeos a sitios externos para cuentas abandonadas. Introduce 0 para ningún límite temporal.'; -$a->strings['Allowed friend domains'] = 'Dominios amigos permitidos'; -$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Lista separada por comas de los dominios que están autorizados para establecer conexiones con este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio'; -$a->strings['Allowed email domains'] = 'Dominios de correo permitidos'; -$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Lista separada por comas de los dominios que están autorizados en las direcciones de correo para registrarse en este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio'; -$a->strings['No OEmbed rich content'] = 'No hay contenido enriquecido OEmbed'; -$a->strings['Don\'t show the rich content (e.g. embedded PDF), except from the domains listed below.'] = 'No muestre el contenido enriquecido (por ejemplo, PDF incrustado), excepto de los dominios que se enumeran a continuación.'; -$a->strings['Trusted third-party domains'] = 'Dominios terceros de confianza'; -$a->strings['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.'] = 'Lista separada por comas de dominios de los que se permite incrustar contenido en publicaciones como con OEmbed. También se permiten todos los subdominios de los dominios enumerados.'; -$a->strings['Block public'] = 'Bloqueo público'; -$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Marca para bloquear el acceso público a todas las páginas personales, aún siendo públicas, hasta que no hayas iniciado tu sesión.'; -$a->strings['Force publish'] = 'Forzar publicación'; -$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Marca para forzar que todos los perfiles de este sitio sean listados en el directorio del sitio.'; -$a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Habilitar esto puede violar leyes de privacidad como GDPR'; -$a->strings['Global directory URL'] = 'URL del directorio global.'; -$a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'URL del directorio global. Si se deja este campo vacío, el directorio global sera completamente inaccesible para la instancia.'; -$a->strings['Private posts by default for new users'] = 'Publicaciones privadas por defecto para usuarios nuevos'; -$a->strings['Set default post permissions for all new members to the default privacy group rather than public.'] = 'Ajusta los permisos de publicación por defecto a los miembros nuevos al grupo privado por defecto en vez del público.'; -$a->strings['Don\'t include post content in email notifications'] = 'No incluir el contenido del post en las notificaciones de correo electrónico'; -$a->strings['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.'] = 'No incluye el contenido de un mensaje/comentario/mensaje privado/etc. en las notificaciones de correo electrónico que se envían desde este sitio, como una medida de privacidad.'; -$a->strings['Disallow public access to addons listed in the apps menu.'] = 'Deshabilitar acceso a addons listados en el menú de aplicaciones.'; -$a->strings['Checking this box will restrict addons listed in the apps menu to members only.'] = 'Habilitando esta opción restringe el acceso a addons en el menú de aplicaciones a usuarios identificados.'; -$a->strings['Don\'t embed private images in posts'] = 'No agregar imágenes privados en las publicaciones'; -$a->strings['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.'] = 'No reemplazar imágenes privadas guardadas localmente en el servidor con imágenes integrados en los envíos. Esto significa que contactos que reciben publicaciones tendrán que autenticarse y cargar cada imagen, lo que puede demorar.'; -$a->strings['Explicit Content'] = 'Contenido Explicito'; -$a->strings['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.'] = 'Configure esto para anunciar si su nodo se usa principalmente para contenido explícito que podría no ser adecuado para menores. Esta información se publicaría en la información del nodo y podría ser utilizada, por ejemplo, por el Directorio Global, para filtrar su nodo de las listas de nodos. Para unirse. Además, se mostrará una nota sobre esto en la página de registro del usuario.'; -$a->strings['Allow Users to set remote_self'] = 'Permitir a los usuarios de definir remote_self (yo-remoto)'; -$a->strings['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.'] = 'Al habilitar esta opción, cada perfil tiene el permiso de marcar cualquiera de sus contactos como un perfil_remoto. Habilitar la opción perfil_remoto para un contacto genera que todas las publicaciones de este contacto seran re-publicado en el muro del perfil.'; -$a->strings['Block multiple registrations'] = 'Bloquear registros multiples'; -$a->strings['Disallow users to register additional accounts for use as pages.'] = 'Impedir que los usuarios registren cuentas adicionales para su uso como páginas.'; -$a->strings['Disable OpenID'] = 'Deshabilitar OpenID'; -$a->strings['Disable OpenID support for registration and logins.'] = 'Deshabilitar soporte OpenID para registro e ingresos.'; -$a->strings['No Fullname check'] = 'No checar nombre completo'; -$a->strings['Allow users to register without a space between the first name and the last name in their full name.'] = 'Permitir que los usuarios se registren sin un espacio entre el nombre y el apellido en su nombre completo.'; -$a->strings['Community pages for visitors'] = 'Paginas de Comunidad para Visitantes'; -$a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = 'Que comunidades deben estar disponibles para visitantes. Usuarios locales siempre ven ambas páginas.'; -$a->strings['Posts per user on community page'] = 'Publicaciones por usuario en la pagina de comunidad'; -$a->strings['The maximum number of posts per user on the community page. (Not valid for "Global Community")'] = 'Número máximo de artículos por usuario de página Fediverso. (No válido para "Fediverso Global")'; -$a->strings['Disable OStatus support'] = 'Deshabilitar soporte OStatus'; -$a->strings['Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed.'] = 'Deshabilitar compatibilidad OStatus (StatusNet, GNU Social etc.). Todas las comunicaciones de OStatus son públicas, advertencias de privacidad serán ocasionalmente mostradas.'; -$a->strings['OStatus support can only be enabled if threading is enabled.'] = 'Solo se puede habilitar el soporte OStatus si threading (comentarios en fila) se encuentra habilitado.'; -$a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'El soporte para Diaspora* no se puede habilitar porque friendica se instalo en un directorio subalterno (sub directory).'; -$a->strings['Enable Diaspora support'] = 'Habilitar el soporte para Diaspora*'; -$a->strings['Provide built-in Diaspora network compatibility.'] = 'Provee una compatibilidad con la red de Diaspora.'; -$a->strings['Only allow Friendica contacts'] = 'Permitir solo contactos de Friendica'; -$a->strings['All contacts must use Friendica protocols. All other built-in communication protocols disabled.'] = 'Todos los contactos deben usar protocolos de Friendica. El resto de protocolos serán desactivados.'; -$a->strings['Verify SSL'] = 'Verificar SSL'; -$a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = 'Si quieres puedes activar la comprobación estricta de certificados. Esto significa que serás incapaz de conectar con ningún sitio que use certificados SSL autofirmados.'; -$a->strings['Proxy user'] = 'Usuario proxy'; -$a->strings['Proxy URL'] = 'Dirección proxy'; -$a->strings['Network timeout'] = 'Tiempo de espera de red'; -$a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Valor en segundos. Usar 0 para dejarlo sin límites (no se recomienda).'; -$a->strings['Maximum Load Average'] = 'Promedio de carga máxima'; -$a->strings['Maximum system load before delivery and poll processes are deferred - default %d.'] = 'Carga máxima del sistema antes de entrega y envío son retrasados - default %d.'; -$a->strings['Maximum Load Average (Frontend)'] = 'Carga máxima promedio (frontend)'; -$a->strings['Maximum system load before the frontend quits service - default 50.'] = 'Carga máxima del sistema antes de que el frontend cancele el servicio - por defecto 50.'; -$a->strings['Minimal Memory'] = 'Memoria Mínima'; -$a->strings['Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).'] = 'Memoria mínima en MB del worker. Necesita acceso a /proc/meminfo - default 0 (desactivado).'; -$a->strings['Periodically optimize tables'] = 'Periodicamente optimizar tablas'; -$a->strings['Periodically optimize tables like the cache and the workerqueue'] = 'Periódicamente optimizar tablas como Cache y cola de worker'; -$a->strings['Discover followers/followings from contacts'] = 'Descubrir seguidores/seguimientos de contactos'; -$a->strings['If enabled, contacts are checked for their followers and following contacts.'] = 'Si lo habilita, se checan contactos por sus seguidores y sus contactos.'; -$a->strings['None - deactivated'] = 'Ninguno - desactivado'; -$a->strings['Local contacts - contacts of our local contacts are discovered for their followers/followings.'] = 'Contactos locales - contactos de nuestros contactos locales buscados por seguidores/seguimientos.'; -$a->strings['Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings.'] = 'Interactores - contactos de contactos locales y contactos que interactuan en artículos locales son buscados por sus seguidores/seguimientos.'; -$a->strings['Synchronize the contacts with the directory server'] = 'Sincronizar los contactos con el servidor de directorio'; -$a->strings['if enabled, the system will check periodically for new contacts on the defined directory server.'] = 'Si habilta, el sistema checará periodicamente por nuevos contactos en el servidor de directorio definido.'; -$a->strings['Days between requery'] = 'Días entre búsquedas'; -$a->strings['Number of days after which a server is requeried for his contacts.'] = 'Cantidad de días hasta que un servidor es consultado por sus contactos.'; -$a->strings['Discover contacts from other servers'] = 'Descubrir contactos de otros servidores'; -$a->strings['Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers.'] = 'Periodicamente buscar contactos en servidores. Buscar en Friendica, Mastodon y Hubzilla.'; -$a->strings['Search the local directory'] = 'Buscar el directorio local'; -$a->strings['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.'] = 'Buscar en el directorio local en vez del directorio global. Cuando se busca localmente, cada búsqueda sera efectuada en el directorio global en el background. Esto mejora los resultados de la búsqueda cuando la misma es repetida.'; -$a->strings['Publish server information'] = 'Publicar información del servidor'; -$a->strings['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.'] = 'Si se habilita, se publicarán datos de uso y servidor. Contiene nombre y versión del servidor, usuarios con perfiles públicos, no. de artículos, protocolos activos y conectores. Ver the-federation.info para mas detalles.'; -$a->strings['Check upstream version'] = 'Verifique la versión ascendente'; -$a->strings['Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview.'] = 'Permite verificar nuevas versiones de Friendica en Github. Si hay una nueva versión, se le informará en el panel de administración.'; -$a->strings['Suppress Tags'] = 'Suprimir etiquetas'; -$a->strings['Suppress showing a list of hashtags at the end of the posting.'] = 'Suprimir la lista de tags al final de una publicación.'; -$a->strings['Clean database'] = 'Limpiar Base de Datos'; -$a->strings['Remove old remote items, orphaned database records and old content from some other helper tables.'] = 'Borrar artículos viejos remotos, registros de BD huerfanos y algunos viejos de tablas auxiliares.'; -$a->strings['Lifespan of remote items'] = 'Tiempo de vida de artículos remotos'; -$a->strings['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.'] = 'Cuando habilita limpieza de BD, define los días en que artículos remotos serán borrados. Propios, marcados o archivados son siempre conservados. 0 deshabilita este comportamiento.'; -$a->strings['Lifespan of unclaimed items'] = 'Tiempo de vida de artículos no reclamados'; -$a->strings['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.'] = 'Cuando se habilita limpieza de BD, esto define los dias en que los articulos ignorados remotos (mas que nada contenido del Relay) serán borrados. Valor Default es 90 días. Es default del tiempo de vida general de artículos remotos se setea en 0.'; -$a->strings['Lifespan of raw conversation data'] = 'Tiempo de vida de datos de conversación '; -$a->strings['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.'] = 'Los datos de conversación son usados por ActivityPub y OStatus, también por propósito de Debugg. Debe ser seguro borrarlos después de 14 dias, default es 90 días.'; -$a->strings['Path to item cache'] = 'Ruta a la caché del objeto'; -$a->strings['The item caches buffers generated bbcode and external images.'] = 'El buffer de cache de items generado para bbcodes e imágenes externas. '; -$a->strings['Cache duration in seconds'] = 'Duración de la caché en segundos'; -$a->strings['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.'] = '¿Por cuanto tiempo deberían los archivos ser almacenados en el cache? Valor por defecto 86400 segundos (un día). Para deshabilita el item cache, ajuste el valor a -1.'; -$a->strings['Maximum numbers of comments per post'] = 'Numero máximo de respuestas por tema'; -$a->strings['How much comments should be shown for each post? Default value is 100.'] = '¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100.'; -$a->strings['Maximum numbers of comments per post on the display page'] = 'Maximo numero de comentarios por artículo de página de despliegue'; -$a->strings['How many comments should be shown on the single view for each post? Default value is 1000.'] = 'Cuantos comentarios deben ser mostrados en una sola vista por cada uno? Valor default es 1000.'; -$a->strings['Temp path'] = 'Ruta a los temporales'; -$a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Si tiene un sistema restringido en donde el servidor web no puede acceder la dirección del sistema temp, ingrese una dirección alternativa aquí. '; -$a->strings['Disable picture proxy'] = 'Deshabilitar proxy de imagen'; -$a->strings['The picture proxy increases performance and privacy. It shouldn\'t be used on systems with very low bandwidth.'] = 'La imagen proxy aumenta el performance y la privacidad. No debe usarse en sistemas con bajo ancho de banda.'; -$a->strings['Only search in tags'] = 'Solo buscar en tags'; -$a->strings['On large systems the text search can slow down the system extremely.'] = 'En sistemas grandes, la búsqueda de texto puede enlentecer el sistema gravemente.'; -$a->strings['New base url'] = 'Nueva URL base'; -$a->strings['Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users.'] = 'Cambiar la URL base para este servidor. Envía un mensaje de reubicación a todos los contactos de Friendica y Diaspora* de todos los usuarios.'; -$a->strings['RINO Encryption'] = 'Encryptado RINO'; -$a->strings['Encryption layer between nodes.'] = 'Capa de encriptación entre nodos.'; -$a->strings['Enabled'] = 'Habilitado'; -$a->strings['Maximum number of parallel workers'] = 'Numero máximo de trabajos paralelos de fondo.'; -$a->strings['On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d.'] = 'En hosts compartidos ponga a %d. En sistemas grandes, valores de %d estan bien. Valor Default es %d.'; -$a->strings['Enable fastlane'] = 'Habilitar ascenso rápido'; -$a->strings['When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.'] = 'Cuando está habilitado, el mecanismo ascenso rápido inicia un trabajador adicional si los procesos de mayor prioridad son bloqueados por prcesos de menor prioridad.'; -$a->strings['Use relay servers'] = 'Usar servidores de reenvío'; -$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.'] = 'Habilita la recepción de publicaciones públicas desde servidores de retransmisión. Se incluirán en la búsqueda, en las etiquetas suscritas y en la página de la comunidad global.'; -$a->strings['"Social Relay" server'] = 'Servidor de "Social Relay" '; -$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.'] = 'Dirección del servidor "Social Relay" donde se deben enviar las publicaciones públicas. Por ejemplo %s. Los servidores ActivityRelay se administran a través del comando de línea de comando "Console Relay".'; -$a->strings['Direct relay transfer'] = 'Transferencia directa del Reenvío'; -$a->strings['Enables the direct transfer to other servers without using the relay servers'] = 'Habilita transferencia directa a otros servidores sin usar servidores de reenvío'; -$a->strings['Relay scope'] = 'Enfoque del Reenvío'; -$a->strings['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.'] = 'Puede ser "all" o "tags". "all" significa que cada artículo público será recibido. "tags" sólo artículos de esas etiquetas deben ser recibidos.'; -$a->strings['all'] = 'todas'; -$a->strings['tags'] = 'etiquetas'; -$a->strings['Server tags'] = 'Etiquetas del Servidor'; -$a->strings['Comma separated list of tags for the "tags" subscription.'] = 'Lista separada por comas de etiquetas de suscripción "tags".'; -$a->strings['Deny Server tags'] = 'Denegar etiquetas de Servidor'; -$a->strings['Comma separated list of tags that are rejected.'] = 'Lista separada por comas de etiquetas denegadas.'; -$a->strings['Allow user tags'] = 'Permitir etiquetas de Usuario'; -$a->strings['If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".'] = 'Si se habilita, etiquetas de las búsquedas grabadas serán usadas para suscripción de "tags" además de "relay_server_tags".'; -$a->strings['Start Relocation'] = 'Iniciar Relocación'; -$a->strings['Server domain pattern added to blocklist.'] = 'Patrón del Servidor de Dominio añadido a bloqueados'; -$a->strings['Blocked server domain pattern'] = 'Patrón de Servidor de Dominio Bloqueado'; -$a->strings['Delete server domain pattern'] = 'Borrar Patrón de Servidor de Dominio'; -$a->strings['Check to delete this entry from the blocklist'] = 'Marca para eliminar esta entrada de Lista de bloqueo'; -$a->strings['Server Domain Pattern Blocklist'] = 'Lista de Bloqueo del Patrón de Servidor de Dominio'; -$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.'] = 'Esta página puede servir para definir una lista de bloqueos de patrones de Servidor de Dominios de la Red Federada que no podrán interactuar con el nodo. Por cada patrón de Dominio debes dar la razón de porqué se bloquea.'; -$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.'] = 'La lista de Patrones de Servidores de Dominio bloqueados será pública en /friendica para que tus usuarios y personas que consulten problemas de comunicación puedan encontrar fácilmente el motivo.'; -$a->strings['

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

    -
      -
    • *: Any number of characters
    • -
    • ?: Any single character
    • -
    • [<char1><char2>...]: char1 or char2
    • -
    '] = '

    La sintaxis del patrón de dominio de servidor no es sensible a mayusculas, conformada de los sig. caracteres:

    -
      -
    • *: Cualquier número de caracteres
    • -
    • ?: Cualquier caracter
    • -
    • [<char1><char2>...]: car1 o car2
    • -
    '; -$a->strings['Add new entry to block list'] = 'Agregar nueva entrada a la lista de bloqueo'; -$a->strings['Server Domain Pattern'] = 'Patrón de Servidor de Dominio'; -$a->strings['The domain pattern of the new server to add to the block list. Do not include the protocol.'] = 'El patrón de Dominio del nuevo servidor a añadir a lista de bloqueo. No incluya el protocolo.'; -$a->strings['Block reason'] = 'Razón del bloqueo'; -$a->strings['The reason why you blocked this server domain pattern.'] = 'La razón por la que bloqueó este patrón de servidor de dominio.'; -$a->strings['Add Entry'] = 'Añadir Entrada'; -$a->strings['Save changes to the blocklist'] = 'Guardar cambios en la lista de bloqueo'; -$a->strings['Current Entries in the Blocklist'] = 'Entradas actuales en la lista de bloqueo'; -$a->strings['Delete entry from blocklist'] = 'Eliminar entrada de la lista de bloqueo'; -$a->strings['Delete entry from blocklist?'] = '¿Eliminar entrada de la lista de bloqueo?'; -$a->strings['The contact has been blocked from the node'] = 'El contacto ha sido blockeado del nodo'; -$a->strings['Could not find any contact entry for this URL (%s)'] = 'No se ha encontrado ninguna entrada de contacto para esta URL (%s)'; -$a->strings['%s contact unblocked'] = [ - 0 => '%s Contacto desbloqueado', - 1 => '%s Contactos desbloqueados', -]; -$a->strings['Remote Contact Blocklist'] = 'Lista de bloqueo de contactos remotos'; -$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'Esta página le permite evitar que cualquier mensaje de un contacto remoto llegue a su nodo. '; -$a->strings['Block Remote Contact'] = 'Bloquear Contacto Remoto'; -$a->strings['select all'] = 'seleccionar todo'; -$a->strings['select none'] = 'deseleccionar'; -$a->strings['No remote contact is blocked from this node.'] = 'No se bloquea ningún contacto remoto de este nodo.'; -$a->strings['Blocked Remote Contacts'] = 'Contactos remotos bloqueados'; -$a->strings['Block New Remote Contact'] = 'Bloquear nuevo contacto remoto'; -$a->strings['Photo'] = 'Foto'; -$a->strings['Reason'] = 'Motivo'; -$a->strings['%s total blocked contact'] = [ - 0 => '%s contacto bloqueado en total', - 1 => '%s contactos bloqueados en total', -]; -$a->strings['URL of the remote contact to block.'] = 'URL del contacto remoto a bloquear.'; -$a->strings['Block Reason'] = 'Razón de bloqueo'; -$a->strings['Display Terms of Service'] = 'Mostrar los Términos de Servicio'; -$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.'] = 'Habilitar la página de los Términos de Servicio. Si esto está activo un enlace a los términos será adicionado al formulario de registro y en la página de información general.'; -$a->strings['Display Privacy Statement'] = 'Mostrar las Directivas de Privacidad'; -$a->strings['Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR.'] = 'Muestre información en cuanto a información requerida para operar el nodo de acuerdo ej. para EU-GDPR.'; -$a->strings['Privacy Statement Preview'] = 'Vista previa de Política de Privacidad'; -$a->strings['The Terms of Service'] = 'Los Términos de Servicio'; -$a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = 'Introduzca los Términos de Servicio para tu nodo aquí. Puedes usar BBCode. Cabeceras de sección deberían ser [2] e inferior.'; -$a->strings['Other'] = 'Otro'; -$a->strings['unknown'] = 'desconocido'; -$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.'] = 'Esta pagina ofrece algunos datos sobre la red conocida a la que tu nodo friendica esta conectado. Estos nummeros no son completos respecto a las redes federadas, si no refleja los nodos esta instancia conoce.'; -$a->strings['Currently this node is aware of %d nodes with %d registered users from the following platforms:'] = 'Actualmente, este nodo tiene conocimiento de %d nodos con %d usuarios registrados de las siguientes plataformas:'; -$a->strings['New User'] = 'Nuevo usuario'; -$a->strings['Add User'] = 'Agregar usuario'; -$a->strings['Name of the new user.'] = 'Nombre del nuevo usuario'; -$a->strings['Nickname'] = 'Apodo'; -$a->strings['Nickname of the new user.'] = 'Apodo del nuevo perfil.'; -$a->strings['Email'] = 'Correo'; -$a->strings['Email address of the new user.'] = 'Dirección de correo del nuevo perfil.'; -$a->strings['%s user blocked'] = [ - 0 => '%s usuario bloqueado', - 1 => '%s usuarios bloqueados', -]; -$a->strings['You can\'t remove yourself'] = 'No puedes borrar tu usuario'; -$a->strings['%s user deleted'] = [ - 0 => '%s usuario eliminado', - 1 => '%s usuarios eliminados', -]; -$a->strings['User "%s" deleted'] = 'Usuario "%s" borrado'; -$a->strings['User "%s" blocked'] = 'Usuario "%s" bloqueado'; -$a->strings['Register date'] = 'Fecha de registro'; -$a->strings['Last login'] = 'Último acceso'; -$a->strings['Last public item'] = 'Último artículo público'; -$a->strings['Active Accounts'] = 'Cuentas Activas'; -$a->strings['User blocked'] = 'Usuario bloqueado'; -$a->strings['Site admin'] = 'Administrador del Sitio'; -$a->strings['Account expired'] = 'Cuenta caducada'; -$a->strings['Create a new user'] = 'Crear nuevo usuario'; -$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = '¡Los usuarios seleccionados serán eliminados!\n\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\n\n¿Estás seguro?'; -$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = '¡El usuario {0} será eliminado!\n\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\n\n¿Estás seguro?'; -$a->strings['%s user unblocked'] = [ - 0 => '%s usuario desbloqueado', - 1 => '%s usuarios desbloqueados', -]; -$a->strings['User "%s" unblocked'] = 'Usuario "%s" desbloqueado'; -$a->strings['User waiting for permanent deletion'] = 'Usuario esperando anulación permanente.'; -$a->strings['Permanent deletion'] = 'Borrado Permanente'; -$a->strings['Blocked Users'] = 'Usuarios bloqueados'; -$a->strings['Users awaiting permanent deletion'] = 'Usuarios en espera de borrado permanente'; -$a->strings['%s user approved'] = [ - 0 => '%s usuario aprobado', - 1 => '%s usuarios aprobados', -]; -$a->strings['%s registration revoked'] = [ - 0 => '%s registro revocado', - 1 => '%s registros revocados', -]; -$a->strings['Account approved.'] = 'Cuenta aprobada.'; -$a->strings['Registration revoked'] = 'Registro revocado'; -$a->strings['User registrations awaiting review'] = 'Registro de usuarios en espera de revisión'; -$a->strings['Request date'] = 'Solicitud de fecha'; -$a->strings['No registrations.'] = 'Sin registros.'; -$a->strings['Note from the user'] = 'Nota para el usuario'; -$a->strings['Deny'] = 'Denegado'; -$a->strings['All'] = 'Todos'; -$a->strings['List of all users'] = 'Lista de todos los usuarios'; -$a->strings['Active'] = 'Activos'; -$a->strings['List of active accounts'] = 'Lista de Cuentas Activas'; -$a->strings['List of pending registrations'] = 'Lista de Registros Pendientes'; -$a->strings['List of blocked users'] = 'Lista de usuarios bloqueados'; -$a->strings['Deleted'] = 'Borrados'; -$a->strings['List of pending user deletions'] = 'Lista de borrados de usuario pendientes'; -$a->strings['Normal Account Page'] = 'Página de Cuenta Normal'; -$a->strings['Soapbox Page'] = 'Página de Tribuna'; -$a->strings['Public Forum'] = 'Foro Público'; -$a->strings['Automatic Friend Page'] = 'Página de Amistad Autómatica'; -$a->strings['Private Forum'] = 'Foro Privado'; -$a->strings['Personal Page'] = 'Página personal'; -$a->strings['Organisation Page'] = 'Página de Organización'; -$a->strings['News Page'] = 'Página de Noticias'; -$a->strings['Community Forum'] = 'Foro de la Comunidad'; -$a->strings['Relay'] = 'Retransmisión'; -$a->strings['Theme %s disabled.'] = 'Tema %s desactivado'; -$a->strings['Theme %s successfully enabled.'] = 'Tema %s activado con éxito.'; -$a->strings['Theme %s failed to install.'] = 'El Tema %s no se pudo instalar.'; -$a->strings['Screenshot'] = 'Captura de pantalla'; -$a->strings['Themes reloaded'] = 'Temas reacargados'; -$a->strings['Reload active themes'] = 'Recargar Temas activos'; -$a->strings['No themes found on the system. They should be placed in %1$s'] = 'No hay Temas en el Sistema, Deben situarse en %1$s'; -$a->strings['[Experimental]'] = '[Experimental]'; -$a->strings['[Unsupported]'] = '[No soportado]'; -$a->strings['Unknown theme.'] = 'Tema desconocido.'; -$a->strings['Item was not found.'] = 'Elemento no encontrado.'; -$a->strings['No installed applications.'] = 'Sin aplicaciones instaladas'; -$a->strings['Applications'] = 'Aplicaciones'; -$a->strings['Help:'] = 'Ayuda:'; -$a->strings['Photos'] = 'Fotos'; -$a->strings['Photo Albums'] = 'Álbum de Fotos'; -$a->strings['Videos'] = 'Videos'; -$a->strings['Events'] = 'Eventos'; -$a->strings['Events and Calendar'] = 'Eventos y Calendario'; -$a->strings['Personal Notes'] = 'Notas Personales'; -$a->strings['Only You Can See This'] = 'Únicamente tú puedes ver esto'; -$a->strings['Tips for New Members'] = 'Consejos para nuevos miembros'; -$a->strings['The Photo with id %s is not available.'] = 'La foto con id %s no esta disponible.'; -$a->strings['Invalid photo with id %s.'] = 'Foto no válida de Id %s.'; -$a->strings['everybody'] = 'todos'; -$a->strings['Account'] = 'Cuenta'; -$a->strings['Display'] = 'Interfaz del usuario'; -$a->strings['Social Networks'] = 'Redes sociales'; -$a->strings['Connected apps'] = 'Aplicaciones conectadas'; -$a->strings['Remove account'] = 'Eliminar cuenta'; -$a->strings['Logged out.'] = 'Desconectado.'; -$a->strings['OpenID protocol error. No ID returned'] = 'Error de protocolo OpenID. No encuentra ID'; -$a->strings['Account not found. Please login to your existing account to add the OpenID to it.'] = 'Cuenta no encontrada. Ingresa en tu cuenta existente para agregarle OpenID.'; -$a->strings['Account not found. Please register a new account or login to your existing account to add the OpenID to it.'] = 'Cuenta no encontrada. Registra una nueva cuenta o ingresa en su cuenta existentepara agregarle OpenID.'; -$a->strings['

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

    '] = '

    Abra la app de ingreso de 2 factores en su dispositivo y obtenga un código de ingreso para verificar su identidad.

    '; -$a->strings['Don’t have your phone? Enter a two-factor recovery code'] = 'No tienes el teléfono? Ingresa código de recuperación'; -$a->strings['This is my two-factor authenticator app device'] = 'Este es mi app de autenticador de 2 factores en dispositivo'; -$a->strings['Verify code and complete login'] = 'Verificar código y completar ingreso'; -$a->strings['Remaining recovery codes: %d'] = 'Códigos de recuperación restantes: %d'; -$a->strings['Two-factor recovery'] = 'Recuperación de 2 factores'; -$a->strings['

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

    '] = '

    puedes usar uno de tus códigos de recuperación si pierdes el acceso a tu movil.

    '; -$a->strings['Please enter a recovery code'] = 'Ingresa código de recuperación'; -$a->strings['Submit recovery code and complete login'] = 'Enviar código de recuperación e ingresar'; -$a->strings['Create a New Account'] = 'Crear Nueva Cuenta'; -$a->strings['Your OpenID: '] = 'Tu OpenID: '; -$a->strings['Please enter your username and password to add the OpenID to your existing account.'] = 'Ingresa tu Usuario y Contraseña para añadir el OpenID a tu cuentaexistente.'; -$a->strings['Or login using OpenID: '] = 'O ingresa usando OpenID: '; -$a->strings['Logout'] = 'Salir'; -$a->strings['Nickname or Email: '] = 'Apodo o Correo electrónico: '; -$a->strings['Password: '] = 'Contraseña: '; -$a->strings['Remember me'] = 'Recordarme'; -$a->strings['Forgot your password?'] = '¿Olvidaste la contraseña?'; -$a->strings['Password Reset'] = 'Restablecer la contraseña'; -$a->strings['Website Terms of Service'] = 'Términos de Servicio del Sitio'; -$a->strings['terms of service'] = 'Términos de Servicio'; -$a->strings['Website Privacy Policy'] = 'Política de Privacidad del Sitio'; -$a->strings['privacy policy'] = 'Política de Privacidad'; -$a->strings['[no subject]'] = '[sin asunto]'; -$a->strings['Detected languages in this post:\n%s'] = 'Lenguajes detectados en artículo:\n%s'; -$a->strings['event'] = 'evento'; -$a->strings['photo'] = 'foto'; -$a->strings['activity'] = 'Actividad'; -$a->strings['comment'] = [ - 0 => 'Comentario', - 1 => 'Comentarios', -]; -$a->strings['post'] = 'Publicación'; -$a->strings['Content warning: %s'] = 'Advertencia de contenido: %s'; -$a->strings['View Video'] = 'Ver Video'; -$a->strings['bytes'] = 'bytes'; -$a->strings['View on separate page'] = 'Ver en pagina aparte'; -$a->strings['view on separate page'] = 'ver en pagina aparte'; -$a->strings['link to source'] = 'Enlace al original'; -$a->strings['Starts:'] = 'Inicio:'; -$a->strings['Finishes:'] = 'Final:'; -$a->strings['all-day'] = 'todo el día'; -$a->strings['Sept'] = 'Sept'; -$a->strings['today'] = 'hoy'; -$a->strings['No events to display'] = 'No hay eventos a mostrar'; -$a->strings['l, F j'] = 'l, F j'; -$a->strings['Edit event'] = 'Editar evento'; -$a->strings['Duplicate event'] = 'Duplicar evento'; -$a->strings['Delete event'] = 'Borrar evento'; -$a->strings['D g:i A'] = 'D g:i A'; -$a->strings['g:i A'] = 'g:i A'; -$a->strings['Show map'] = 'Mostrar mapa'; -$a->strings['Hide map'] = 'Ocultar mapa'; -$a->strings['%s\'s birthday'] = 'Cumpleaños de %s'; -$a->strings['Happy Birthday %s'] = 'Feliz cumpleaños %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.'] = 'Un grupo eliminado con este nombre fue restablecido. Los permisos existentes pueden aplicarse a este grupo y a sus futuros miembros. Si esto no es lo que pretendes, por favor, crea otro grupo con un nombre diferente.'; -$a->strings['Default privacy group for new contacts'] = 'Grupo por defecto para nuevos contactos'; -$a->strings['Everybody'] = 'Todo el mundo'; -$a->strings['edit'] = 'editar'; -$a->strings['add'] = 'añadir'; -$a->strings['Edit group'] = 'Editar grupo'; -$a->strings['Create a new group'] = 'Crear un nuevo grupo'; -$a->strings['Edit groups'] = 'Editar grupo'; -$a->strings['Network Posts'] = 'Artículos de Red'; -$a->strings['View Contact'] = 'Ver contacto'; -$a->strings['Connect/Follow'] = 'Conectar/Seguir'; -$a->strings['UnFollow'] = 'Dejar de seguir'; -$a->strings['View Status'] = 'Ver Estado'; -$a->strings['View Photos'] = 'Ver Fotos'; -$a->strings['Drop Contact'] = 'Eliminar contacto'; -$a->strings['Send PM'] = 'Enviar Privado'; -$a->strings['Poke'] = 'Empujar'; -$a->strings['Organisation'] = 'Organización'; -$a->strings['News'] = 'Noticias'; -$a->strings['Forum'] = 'Foro'; -$a->strings['Disallowed profile URL.'] = 'Dirección de perfil no permitida.'; -$a->strings['Connect URL missing.'] = 'Falta el conector URL.'; -$a->strings['The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.'] = 'No pudo añadirse el contacto. Consulte las credenciales de red en Ajustes -> Redes Sociales.'; -$a->strings['This site is not configured to allow communications with other networks.'] = 'Este sitio no está configurado para permitir la comunicación con otras redes.'; -$a->strings['No compatible communication protocols or feeds were discovered.'] = 'No se ha descubierto protocolos de comunicación o fuentes compatibles.'; -$a->strings['The profile address specified does not provide adequate information.'] = 'La dirección del perfil especificado no proporciona información adecuada.'; -$a->strings['An author or name was not found.'] = 'No se ha encontrado un autor o nombre.'; -$a->strings['No browser URL could be matched to this address.'] = 'Ninguna dirección concuerda con la suministrada.'; -$a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Imposible identificar la Identidad @-style con algún protocolo conocido o dirección de contacto.'; -$a->strings['Use mailto: in front of address to force email check.'] = 'Escribe mailto: al principio de la dirección para forzar el envío.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio.'; -$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas.'; -$a->strings['Unable to retrieve contact information.'] = 'No ha sido posible recibir la información del contacto.'; -$a->strings['Filesystem storage failed to create "%s". Check you write permissions.'] = 'Sistema de Archivo falló creando "%s". Checa los permisos.'; -$a->strings['Filesystem storage failed to save data to "%s". Check your write permissions'] = 'Sistema de archivo falló al grabar datos a "%s". Checa los permisos de escritura'; -$a->strings['Storage base path'] = 'Ruta base de Almacenamiento'; -$a->strings['Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree'] = 'Carpeta para subir archivos guardada. Para mayor seguridad, Deberá ser una ruta fuera del folder del árbol web'; -$a->strings['Enter a valid existing folder'] = 'Ingresa un folder válido existente'; -$a->strings['Database storage failed to update %s'] = 'Almacén de BD falló en actualizar %s'; -$a->strings['Database storage failed to insert data'] = 'Almacén de BD falló al insertar info'; -$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'ERROR GRAVE: Generación de claves de seguridad falló.'; -$a->strings['Login failed'] = 'Ingreso fallido'; -$a->strings['Not enough information to authenticate'] = 'Falta información para autenticación'; -$a->strings['Password can\'t be empty'] = 'La contraseña es requerida'; -$a->strings['Empty passwords are not allowed.'] = 'No se permiten contraseñas vacias'; -$a->strings['The new password has been exposed in a public data dump, please choose another.'] = 'La nueva contraseña ya se ha usado muchas veces, escoja otro.'; -$a->strings['The password can\'t contain accentuated letters, white spaces or colons (:)'] = 'Contraseña no puede contener acentos, espacios ni dos puntos (:)'; -$a->strings['Passwords do not match. Password unchanged.'] = 'Las contraseñas no coinciden. La contraseña no ha sido modificada.'; -$a->strings['An invitation is required.'] = 'Se requiere de invitación.'; -$a->strings['Invitation could not be verified.'] = 'No se puede verificar la invitación.'; -$a->strings['Invalid OpenID url'] = 'Dirección OpenID no válida'; -$a->strings['We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.'] = 'Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente.'; -$a->strings['The error message was:'] = 'El mensaje del error fue:'; -$a->strings['Please enter the required information.'] = 'Por favor, introduce la información necesaria.'; -$a->strings['system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values.'] = 'system.username_min_length (%s) y system.username_max_length (%s) son mutuamente excluyentes, los valores se sobreponen.'; -$a->strings['Username should be at least %s character.'] = [ - 0 => 'Usuario debe ser al menos %s caracter.', - 1 => 'Usuario debe ser al menos %s caracteres.', -]; -$a->strings['Username should be at most %s character.'] = [ - 0 => 'Usuario debe ser máximo %s caracter.', - 1 => 'Usuario debe ser máximo %s caracteres.', -]; -$a->strings['That doesn\'t appear to be your full (First Last) name.'] = 'No parece que ese sea tu nombre completo.'; -$a->strings['Your email domain is not among those allowed on this site.'] = 'Tu dominio de correo no se encuentra entre los permitidos en este sitio.'; -$a->strings['Not a valid email address.'] = 'No es una dirección de correo electrónico válida.'; -$a->strings['The nickname was blocked from registration by the nodes admin.'] = 'Ese nombre se bloquea a solicitud del administrador.'; -$a->strings['Cannot use that email.'] = 'No puede usarse ese correo electrónico.'; -$a->strings['Your nickname can only contain a-z, 0-9 and _.'] = 'Tu apodo solo puede contener a-z, 0 al 9 y guión bajo (_).'; -$a->strings['Nickname is already registered. Please choose another.'] = 'Apodo ya registrado. Por favor, elije otro.'; -$a->strings['An error occurred during registration. Please try again.'] = 'Se produjo un error durante el registro. Por favor, inténtalo de nuevo.'; -$a->strings['An error occurred creating your default profile. Please try again.'] = 'Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo.'; -$a->strings['An error occurred creating your self contact. Please try again.'] = 'Ocurrió un error creando el contacto. Vuelve a intentar.'; -$a->strings['Friends'] = 'Amigos'; -$a->strings['An error occurred creating your default contact group. Please try again.'] = 'Ocurrió un error creando el grupo Default. Vuleve a intentar.'; -$a->strings[' - Dear %1$s, - the administrator of %2$s has set up an account for you.'] = ' - Estimado %1$s, - el administrador de %2$s te ha establecido una cuenta.'; -$a->strings[' - The login details are as follows: - - Site Location: %1$s - Login Name: %2$s - Password: %3$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %1$s/removeme - - Thank you and welcome to %4$s.'] = ' - La información de autenticación es: - - Sitio - Localidad: %1$s - Usuario: %2$s - Contraseña: %3$s - - Puedes cambiar la contraseña en página "Settings" cuando ingreses - - Tómate unos momentos en revisar los ajustes en esa página. - - Podrias añadir información básica en tu Perfil - (En página "Profiles" ) para que puedan encontrarte. - - Te recomendamos usar nombre completo, añadir foto del Perfil, - añadir algunas "keywords" (muy útil para hacer amistades) - y - quizá en que pais resides; si no quieres ser mas específico - que eso. - - Respetamos ampliamente tu privacidad, ningána opción es requerida. - Si eres nuevo y no conoces a nadie, eso puede ayudarte a hacer - nuevas amistades interesantes. - - Si quisieras borrar tu cuenta, lo podrás hacer en %1$s/removeme - - Gracias y Bienvenido a %4$s !.'; -$a->strings['Registration details for %s'] = 'Detalles de registro para %s'; -$a->strings[' - Dear %1$s, - Thank you for registering at %2$s. Your account is pending for approval by the administrator. - - Your login details are as follows: - - Site Location: %3$s - Login Name: %4$s - Password: %5$s - '] = ' - Estimado %1$s, - Gracias por registrarte en %2$s. Tu cuenta esta en aprobación por los Administradores. - - Tus datos de ingreso son: - - Sitio - ubicación: %3$s - Usuario: %4$s - Contraseña: %5$s - '; -$a->strings['Registration at %s'] = 'Registro en %s'; -$a->strings[' - Dear %1$s, - Thank you for registering at %2$s. Your account has been created. - '] = ' - Estimado %1$s, - Gracias por registrarte en %2$s. Tu cuenta fue creada. - '; -$a->strings[' - The login details are as follows: - - Site Location: %3$s - Login Name: %1$s - Password: %5$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %3$s/removeme - - Thank you and welcome to %2$s.'] = ' - Los datos de ingreso son: - - Sitio - ubicación: %3$s - Usuario: %1$s - Contraseña: %5$s - - Puedes cambiar la contraseña en página "Settings" cuando ingreses. - - Tómate unos momentos en revisar las otras opciones. - - podrías agregar mas información a tu perfil - (en la página "Profiles" ) Para que puedan encontrarte. - - Podemos recomendar nombre completo, foto de perfil, - añadir algunos "keywords" al perfil (muy útil para hacer amistades) - - y quizá pais en el que vives; si no quieres ser muy específico - que eso. - - Respetamos ampliamente tu privacidad, ninguno de ellos es requerido. - Si eres nuevo y no conoces a nadie, podrían ayudarte - a conseguir amistades interesantes. - - Si quisieras borrar tu cuenta, podrás hacerlo en %3$s/removeme - - Gracias y bienvenido a %2$s.'; -$a->strings['Change profile photo'] = 'Cambiar foto del perfil'; -$a->strings['Atom feed'] = 'Atom feed'; -$a->strings['g A l F d'] = 'g A l F d'; -$a->strings['F d'] = 'F d'; -$a->strings['[today]'] = '[hoy]'; -$a->strings['Birthday Reminders'] = 'Recordatorios de cumpleaños'; -$a->strings['Birthdays this week:'] = 'Cumpleaños esta semana:'; -$a->strings['[No description]'] = '[Sin descripción]'; -$a->strings['Event Reminders'] = 'Recordatorios de eventos'; -$a->strings['Upcoming events the next 7 days:'] = 'Eventos de los próximos 7 dias:'; -$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s te da la bienvenida %2$s'; -$a->strings['Legacy module file not found: %s'] = 'Modulo legado no encontrado: %s'; -$a->strings['The folder view/smarty3/ must be writable by webserver.'] = 'El folder view/smarty3/ debe ser de escritura'; -$a->strings['Could not find any unarchived contact entry for this URL (%s)'] = 'No se encontró contacto sin archivar en esa URL (%s)'; -$a->strings['The contact entries have been archived'] = 'Entradas del contacto archivadas'; -$a->strings['Post update version number has been set to %s.'] = 'Número de versión actualizado es %s.'; -$a->strings['Check for pending update actions.'] = 'Checar acciones de actualización pendientes.'; -$a->strings['Done.'] = 'Hecho.'; -$a->strings['Execute pending post updates.'] = 'Ejecutar actualizaciones pendientes.'; -$a->strings['All pending post updates are done.'] = 'Todas las actualizaciones hechas.'; -$a->strings['Enter new password: '] = 'Ingrese nueva contraseña: '; -$a->strings['Password update failed. Please try again.'] = 'Actualización de contraseña falló. Intente de nuevo.'; -$a->strings['Password changed.'] = 'Contraseña modificada.'; -$a->strings['Enter user name: '] = 'Ingrese usuario: '; -$a->strings['Enter user nickname: '] = 'Ingrese apodo: '; -$a->strings['Enter user email address: '] = 'Ingrese corréo electrónco: '; -$a->strings['Enter a language (optional): '] = 'Ingrese lenguaje (pcional): '; -$a->strings['User is not pending.'] = 'Usuario no pendiente.'; -$a->strings['User has already been marked for deletion.'] = 'Usuario ya fue marcado para borrado.'; -$a->strings['Type "yes" to delete %s'] = 'Escribe "si" para borrar %s'; -$a->strings['Deletion aborted.'] = 'Borrado cancelado.'; -$a->strings['Export'] = 'Exportar'; -$a->strings['Export calendar as ical'] = 'Exportar calendario como ical'; -$a->strings['Export calendar as csv'] = 'Exportar calendario como csv'; -$a->strings['Remove term'] = 'Eliminar término'; -$a->strings['Saved Searches'] = 'Búsquedas guardadas'; -$a->strings['No contacts'] = 'Sin contactos'; -$a->strings['%d Contact'] = [ - 0 => '%d Contacto', - 1 => '%d Contactos', -]; -$a->strings['View Contacts'] = 'Ver contactos'; -$a->strings['Trending Tags (last %d hour)'] = [ - 0 => 'Etiquetas tendencia (última %d hora)', - 1 => 'Etiquetas tendencia (últimas %d horas)', -]; -$a->strings['More Trending Tags'] = 'Mas tendencias'; -$a->strings['Tags'] = 'Etiquetas'; -$a->strings['Forums'] = 'Foros'; -$a->strings['External link to forum'] = 'Enlace externo al foro'; -$a->strings['show less'] = 'mostrar menos'; -$a->strings['show more'] = 'Mostrar más'; -$a->strings['Nothing new here'] = 'No hay nada nuevo'; -$a->strings['Clear notifications'] = 'Borrar notificaciones'; -$a->strings['@name, !forum, #tags, content'] = '@name, !forum, #tags, contenido'; -$a->strings['End this session'] = 'Cerrar sesión'; -$a->strings['Sign in'] = 'Ingresar'; -$a->strings['Your posts and conversations'] = 'Tus publicaciones y conversaciones'; -$a->strings['Your profile page'] = 'Tu página de perfil'; -$a->strings['Your photos'] = 'Tus fotos'; -$a->strings['Your videos'] = 'Tus videos'; -$a->strings['Your events'] = 'Tus eventos'; -$a->strings['Personal notes'] = 'Notas personales'; -$a->strings['Your personal notes'] = 'Tus notas personales'; -$a->strings['Home'] = 'Inicio'; -$a->strings['Home Page'] = 'Página de Inicio'; -$a->strings['Create an account'] = 'Crea una cuenta'; -$a->strings['Help and documentation'] = 'Ayuda y documentación'; -$a->strings['Apps'] = 'Aplicaciones'; -$a->strings['Addon applications, utilities, games'] = 'Aplicaciones, utilidades, juegos'; -$a->strings['Search site content'] = 'Buscar contenido en el sitio'; -$a->strings['Full Text'] = 'Texto completo'; -$a->strings['Community'] = 'Comunidad'; -$a->strings['Conversations on this and other servers'] = 'Conversaciones aquí y en otros servidores'; -$a->strings['Directory'] = 'Directorio'; -$a->strings['People directory'] = 'Directorio de usuarios'; -$a->strings['Information about this friendica instance'] = 'Información sobre esta instancia Friendica'; -$a->strings['Terms of Service of this Friendica instance'] = 'Términos de Servicio de la Instancia Friendica'; -$a->strings['Network'] = 'Red'; -$a->strings['Conversations from your friends'] = 'Conversaciones de tus amigos'; -$a->strings['Introductions'] = 'Presentaciones'; -$a->strings['Friend Requests'] = 'Solicitudes de amistad'; -$a->strings['See all notifications'] = 'Ver todas las notificaciones'; -$a->strings['Mark as seen'] = 'Marcar como leído'; -$a->strings['Mark all system notifications seen'] = 'Marcar todas las notificaciones del sistema como leídas'; -$a->strings['Messages'] = 'Mensajes'; -$a->strings['Private mail'] = 'Correo privado'; -$a->strings['Inbox'] = 'Entrada'; -$a->strings['Outbox'] = 'Enviados'; -$a->strings['New Message'] = 'Nuevo Mensaje'; -$a->strings['Accounts'] = 'Cuentas'; -$a->strings['Manage other pages'] = 'Administrar otras páginas'; -$a->strings['Account settings'] = 'Configurar la cuenta'; -$a->strings['Manage/edit friends and contacts'] = 'Administrar/editar amigos y contactos'; -$a->strings['Site setup and configuration'] = 'Opciones y configuración del sitio'; -$a->strings['Navigation'] = 'Navegación'; -$a->strings['Site map'] = 'Mapa del sitio'; -$a->strings['Frequently'] = 'Frecuentemente'; -$a->strings['Hourly'] = 'Cada hora'; -$a->strings['Twice daily'] = 'Dos veces al dia'; -$a->strings['Daily'] = 'Diariamente'; -$a->strings['Weekly'] = 'Semanal'; -$a->strings['Monthly'] = 'Mensual'; -$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'] = 'Conectos Diaspora'; -$a->strings['GNU Social Connector'] = 'Conector GNU Social'; -$a->strings['ActivityPub'] = 'ActivityPub'; -$a->strings['pnut'] = 'pnut'; -$a->strings['%s (via %s)'] = '%s (a través %s)'; -$a->strings['newer'] = 'más nuevo'; -$a->strings['older'] = 'más antiguo'; -$a->strings['Add New Contact'] = 'Añadir nuevo contacto'; -$a->strings['Enter address or web location'] = 'Escribe la dirección o página web'; -$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Ejemplo: miguel@ejemplo.com, http://ejemplo.com/miguel'; -$a->strings['Connect'] = 'Conectar'; -$a->strings['%d invitation available'] = [ - 0 => '%d invitación disponible', - 1 => '%d invitaviones disponibles', -]; -$a->strings['Find People'] = 'Buscar Personas'; -$a->strings['Enter name or interest'] = 'Introduce nombre o interés'; -$a->strings['Examples: Robert Morgenstein, Fishing'] = 'Ejemplos: Robert Morgenstein, Pesca'; -$a->strings['Friend Suggestions'] = 'Sugerencias de Amistad'; -$a->strings['Similar Interests'] = 'Intereses Similares'; -$a->strings['Random Profile'] = 'Perfil Al Azar'; -$a->strings['Invite Friends'] = 'Invitar Amigos'; -$a->strings['Local Directory'] = 'Directorio Local'; -$a->strings['Everyone'] = 'Todos'; -$a->strings['Relationships'] = 'Relaciones'; -$a->strings['Protocols'] = 'Protocolos'; -$a->strings['All Protocols'] = 'Todos los Protocolos'; -$a->strings['Saved Folders'] = 'Directorios guardados'; -$a->strings['Everything'] = 'Todo'; -$a->strings['Categories'] = 'Categorías'; -$a->strings['%d contact in common'] = [ - 0 => '%d contacto en común', - 1 => '%d contactos en común', -]; -$a->strings['Archives'] = 'Archivos'; -$a->strings['Persons'] = 'Personas'; -$a->strings['Organisations'] = 'Organizaciones'; -$a->strings['Account Types'] = 'Tipos de cuenta'; -$a->strings['first'] = 'primera'; -$a->strings['prev'] = 'previo'; -$a->strings['next'] = 'sig.'; -$a->strings['last'] = 'última'; -$a->strings['Embedding disabled'] = 'Contenido incrustrado desabilitado'; -$a->strings['Embedded content'] = 'Contenido integrado'; -$a->strings['Loading more entries...'] = 'Cargar mas artículos..'; -$a->strings['The end'] = 'Final'; -$a->strings['Click to open/close'] = 'Pulsa para abrir/cerrar'; -$a->strings['Image/photo'] = 'Imagen/Foto'; -$a->strings['%2$s %3$s'] = '%2$s %3$s'; -$a->strings['$1 wrote:'] = '$1 escribió:'; -$a->strings['Encrypted content'] = 'Contenido cifrado'; -$a->strings['Invalid source protocol'] = 'Protocolo de fuente inválido'; -$a->strings['Invalid link protocol'] = 'Protocolo de enlace inválido'; -$a->strings['General Features'] = 'Opciones generales'; -$a->strings['Photo Location'] = 'Ubicación de foto'; -$a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'Normalmente los meta datos de las imágenes son eliminados. Esto extraerá la localización si presente antes de eliminar los meta datos y enlaza la misma con el mapa.'; -$a->strings['Trending Tags'] = 'Etiquetas tendencia'; -$a->strings['Show a community page widget with a list of the most popular tags in recent public posts.'] = 'Mostrar un widget de comunidad con las etiquetas populares en recientes artículos.'; -$a->strings['Post Composition Features'] = 'Opciones de edición de publicaciones.'; -$a->strings['Auto-mention Forums'] = 'Auto-mencionar foros'; -$a->strings['Add/remove mention when a forum page is selected/deselected in ACL window.'] = 'Añadir/eliminar mención cuando un foro es seleccionado/deseleccionado en la ventana ACL.'; -$a->strings['Explicit Mentions'] = 'Menciones explicitas'; -$a->strings['Add explicit mentions to comment box for manual control over who gets mentioned in replies.'] = 'Añadir menciones explicitas a cuadro de comentarios para control manual sobre quien se menciona en respuestas.'; -$a->strings['Post/Comment Tools'] = 'Herramienta de publicaciones/respuestas'; -$a->strings['Post Categories'] = 'Categorías de publicaciones'; -$a->strings['Add categories to your posts'] = 'Agregue categorías a sus publicaciones. Las mismas serán visualizadas en su pagina de inicio.'; -$a->strings['Advanced Profile Settings'] = 'Ajustes avanzados del perfil'; -$a->strings['List Forums'] = 'Listar foros'; -$a->strings['Show visitors public community forums at the Advanced Profile Page'] = 'Mostrar a los visitantes foros públicos en las que se esta participando en el pagina avanzada de perfiles.'; -$a->strings['Tag Cloud'] = 'Nube de etiquetas'; -$a->strings['Provide a personal tag cloud on your profile page'] = 'Dar una etiqueta personal en tu página de perfil'; -$a->strings['Display Membership Date'] = 'Desplegar fecha de membresía'; -$a->strings['Display membership date in profile'] = 'Desplegar fecha de membresía en perfil'; -$a->strings['Hometown:'] = 'Ciudad de origen:'; -$a->strings['Marital Status:'] = 'Estado civil:'; -$a->strings['With:'] = 'Con:'; -$a->strings['Since:'] = 'Desde:'; -$a->strings['Sexual Preference:'] = 'Preferencia sexual:'; -$a->strings['Political Views:'] = 'Ideas políticas:'; -$a->strings['Religious Views:'] = 'Creencias religiosas:'; -$a->strings['Likes:'] = 'Me gustan:'; -$a->strings['Dislikes:'] = 'No me gustan:'; -$a->strings['Title/Description:'] = 'Título/Descripción:'; -$a->strings['Musical interests'] = 'Gustos musicales'; -$a->strings['Books, literature'] = 'Libros, literatura'; -$a->strings['Television'] = 'Televisión'; -$a->strings['Film/dance/culture/entertainment'] = 'Películas/baile/cultura/entretenimiento'; -$a->strings['Hobbies/Interests'] = 'Aficiones/Intereses'; -$a->strings['Love/romance'] = 'Amor/Romance'; -$a->strings['Work/employment'] = 'Trabajo/ocupación'; -$a->strings['School/education'] = 'Escuela/estudios'; -$a->strings['Contact information and Social Networks'] = 'Informacioń de contacto y Redes sociales'; -$a->strings['This message was sent to you by %s, a member of the Friendica social network.'] = 'El mensaje te lo ha enviado %s, miembro de Friendica Red Social.'; -$a->strings['You may visit them online at %s'] = 'Puedes visitarlos en línea en %s'; -$a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes.'; -$a->strings['%s posted an update.'] = '%s publicó una actualización.'; -$a->strings['This entry was edited'] = 'Esta entrada fue editada'; -$a->strings['Private Message'] = 'Mensaje privado'; -$a->strings['Edit'] = 'Editar'; -$a->strings['pinned item'] = 'Mensaje fijado'; -$a->strings['Delete globally'] = 'Borrar Globalmente'; -$a->strings['Remove locally'] = 'Borrar localmente'; -$a->strings['Select'] = 'Seleccionar'; -$a->strings['Block %s'] = 'Bloquear %s'; -$a->strings['save to folder'] = 'guardar en directorio'; -$a->strings['I will attend'] = 'Asistiré'; -$a->strings['I will not attend'] = 'No asistiré'; -$a->strings['I might attend'] = 'Podría asistir'; -$a->strings['ignore thread'] = 'ignorar hilo'; -$a->strings['unignore thread'] = 'dejar de ignorar hilo'; -$a->strings['toggle ignore status'] = 'cambiar ignorar estado'; -$a->strings['ignored'] = 'ignorado'; -$a->strings['pin'] = 'fijar'; -$a->strings['unpin'] = 'borrar fijado'; -$a->strings['toggle pin status'] = 'cambiar estado fijado'; -$a->strings['pinned'] = 'fijado'; -$a->strings['add star'] = 'Añadir destacado'; -$a->strings['remove star'] = 'Quitar destacado'; -$a->strings['toggle star status'] = 'cambiar estado destacado'; -$a->strings['starred'] = 'destacado'; -$a->strings['add tag'] = 'añadir etiqueta'; -$a->strings['I like this (toggle)'] = 'Me gusta esto (cambiar)'; -$a->strings['like'] = 'me gusta'; -$a->strings['I don\'t like this (toggle)'] = 'No me gusta esto (cambiar)'; -$a->strings['dislike'] = 'no me gusta'; -$a->strings['Quote share this'] = 'Compartir Comentado esto'; -$a->strings['Quote Share'] = 'Compartir comentado'; -$a->strings['Reshare this'] = 'Compartir esto'; -$a->strings['Reshare'] = 'Compartir'; -$a->strings['Cancel your Reshare'] = 'Cancelar Compartir'; -$a->strings['Unshare'] = 'Dejar de Compartir'; -$a->strings['%s (Received %s)'] = '%s (Recibido %s)'; -$a->strings['Comment this item on your system'] = 'Comentarlo en mi estado'; -$a->strings['remote comment'] = 'quitar comentario'; -$a->strings['Pushed'] = 'Empujado'; -$a->strings['Pulled'] = 'Jalado'; -$a->strings['Languages'] = 'Lenguajes'; -$a->strings['Categories:'] = 'Categorías:'; -$a->strings['Filed under:'] = 'Archivado en:'; -$a->strings['View %s\'s profile @ %s'] = 'Ver perfil de %s @ %s'; -$a->strings['to'] = 'a'; -$a->strings['via'] = 'vía'; -$a->strings['Wall-to-Wall'] = 'Perfil-a-Perfil'; -$a->strings['via Wall-To-Wall:'] = 'via Perfil-a-Perfil:'; -$a->strings['%s from %s'] = '%s de %s'; -$a->strings['Comment'] = 'Comentar'; -$a->strings['Reply to %s'] = 'Responder a %s'; -$a->strings['More'] = 'Mas'; -$a->strings['Notifier task is pending'] = 'Notificador tarea pendiente'; -$a->strings['Delivery to remote servers is pending'] = 'Entrega remota pendiente'; -$a->strings['Delivery to remote servers is underway'] = 'Entrega remota en camino'; -$a->strings['Delivery to remote servers is mostly done'] = 'Entrega remota casi completada'; -$a->strings['Delivery to remote servers is done'] = 'Entrega remota completada'; -$a->strings['%d comment'] = [ - 0 => '%d comentario', - 1 => '%d comentarios', -]; -$a->strings['Show more'] = 'Mostrar mas'; -$a->strings['Show fewer'] = 'Mostrar menos'; -$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.'] = 'Token de la ficha de seguridad incorrecto. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo.'; -$a->strings['All contacts'] = 'Todos los Contactos'; -$a->strings['Common'] = 'Común'; -$a->strings['Attachments:'] = 'Archivos adjuntos:'; -$a->strings['%s is now following %s.'] = '%s sigue ahora a %s.'; -$a->strings['following'] = 'siguiendo'; -$a->strings['%s stopped following %s.'] = '%s dejó de seguir a %s.'; -$a->strings['stopped following'] = 'dejó de seguir'; -$a->strings['No system theme config value set.'] = 'No hay tema configurado.'; -$a->strings['Login failed.'] = 'Accesso fallido.'; -$a->strings['Login failed. Please check your credentials.'] = 'Acceso falló. Checa tus credenciales.'; -$a->strings['Welcome %s'] = 'Bienvenido %s'; -$a->strings['Please upload a profile photo.'] = 'Por favor sube una foto para el perfil.'; -$a->strings['default'] = 'predeterminado'; -$a->strings['greenzero'] = 'greenzero'; -$a->strings['purplezero'] = 'purplezero'; -$a->strings['easterbunny'] = 'easterbunny'; -$a->strings['darkzero'] = 'darkzero'; -$a->strings['comix'] = 'comix'; -$a->strings['slackr'] = 'slackr'; -$a->strings['Variations'] = 'Variaciones'; -$a->strings['Top Banner'] = 'Anuncio superior'; -$a->strings['Resize image to the width of the screen and show background color below on long pages.'] = 'Cambiar tamaño de la imagen al ancho de pantalla y mostrar color de fondodebajo en Páginas largas.'; -$a->strings['Full screen'] = 'Pantalla completa'; -$a->strings['Resize image to fill entire screen, clipping either the right or the bottom.'] = 'Ajustar imagen a pantalla completa, recortando a la derecha o debajo..'; -$a->strings['Single row mosaic'] = 'Mosaico en renglón'; -$a->strings['Resize image to repeat it on a single row, either vertical or horizontal.'] = 'Ajustar imagen y repetir en una sola fila, ya sea vertical u horizontal.'; -$a->strings['Mosaic'] = 'Mosaico'; -$a->strings['Repeat image to fill the screen.'] = 'Repetir imagen hasta llenar pantalla.'; -$a->strings['Skip to main content'] = 'Saltar a contenido principal'; -$a->strings['Back to top'] = 'Ir al Inicio'; -$a->strings['Light (Accented)'] = 'Luminoso (Acentuado)'; -$a->strings['Dark (Accented)'] = 'Oscuro (Acentuado)'; -$a->strings['Black (Accented)'] = 'Negro (Acentuado)'; -$a->strings['Note'] = 'Nota'; -$a->strings['Check image permissions if all users are allowed to see the image'] = 'Checa si todos los usuarios podrían ver esta imágen'; -$a->strings['Custom'] = 'Personalizado'; -$a->strings['Legacy'] = 'Legado'; -$a->strings['Accented'] = 'Acentuado'; -$a->strings['Select color scheme'] = 'Seleccionar esquema de color'; -$a->strings['Select scheme accent'] = 'Selecciona esquema de Acentuado'; -$a->strings['Blue'] = 'Azul'; -$a->strings['Red'] = 'Rojo'; -$a->strings['Purple'] = 'Púrpura'; -$a->strings['Green'] = 'Verde'; -$a->strings['Pink'] = 'Rosa'; -$a->strings['Copy or paste schemestring'] = 'Copiar o pegar esquema'; -$a->strings['You can copy this string to share your theme with others. Pasting here applies the schemestring'] = 'Puede copiar esta cadena para compartir su tema con otros. Pegando aquíAplica el Esquema'; -$a->strings['Navigation bar background color'] = 'Color de fondo de barra de navegación'; -$a->strings['Navigation bar icon color '] = 'Color de icono de barra de navegación'; -$a->strings['Link color'] = 'Color de enlace'; -$a->strings['Set the background color'] = 'Selecciona color de fondo'; -$a->strings['Content background opacity'] = 'Opacidad del Fondo del Contenido'; -$a->strings['Set the background image'] = 'Selecciona imagen de fondo'; -$a->strings['Background image style'] = 'Estilo de imagen de fondo'; -$a->strings['Login page background image'] = 'Imagen de fondo del Ingreso'; -$a->strings['Login page background color'] = 'Color de fondo del Ingreso'; -$a->strings['Leave background image and color empty for theme defaults'] = 'Deja imagen de fondo y color vacíos para el estándar'; -$a->strings['Guest'] = 'Invitado'; -$a->strings['Visitor'] = 'Visitante'; -$a->strings['Follow Thread'] = 'Seguir el hilo'; -$a->strings['Alignment'] = 'Alineación'; -$a->strings['Left'] = 'Izquierda'; -$a->strings['Center'] = 'Centrado'; -$a->strings['Color scheme'] = 'Esquema de color'; -$a->strings['Posts font size'] = 'Tamaño de letra de artículos'; -$a->strings['Textareas font size'] = 'Tamaño de letra de áreas de texto'; -$a->strings['Comma separated list of helper forums'] = 'Lista separada por comas de foros de ayuda.'; -$a->strings['don\'t show'] = 'no mostrar'; -$a->strings['show'] = 'mostrar'; -$a->strings['Set style'] = 'Definir estilo'; -$a->strings['Community Pages'] = 'Páginas de Comunidad'; -$a->strings['Community Profiles'] = 'Perfiles de la Comunidad'; -$a->strings['Help or @NewHere ?'] = '¿Ayuda o @NewHere?'; -$a->strings['Connect Services'] = 'Conectar Servicios'; -$a->strings['Find Friends'] = 'Buscar amistades'; -$a->strings['Last users'] = 'Últimos usuarios'; -$a->strings['Quick Start'] = 'Inicio rápido'; -$a->strings['[Friendica:Notify]'] = '[Friendica:Notificar]'; -$a->strings['%s New mail received at %s'] = '%s Nuevo correo recibido %s'; -$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s te envió mensaje privado a las %2$s.'; -$a->strings['a private message'] = 'un mensaje privado'; -$a->strings['%1$s sent you %2$s.'] = '%1$s te envió %2$s.'; -$a->strings['Please visit %s to view and/or reply to your private messages.'] = 'Visita %s para ver y/o responder a tus mensajes privados.'; -$a->strings['%1$s replied to you on %2$s\'s %3$s %4$s'] = '%1$s te respondió %2$s %3$s %4$s'; -$a->strings['%1$s tagged you on %2$s\'s %3$s %4$s'] = '%1$s te etiquetó en %2$s %3$s %4$s'; -$a->strings['%1$s commented on %2$s\'s %3$s %4$s'] = '%1$s comentó en %2$s %3$s %4$s'; -$a->strings['%1$s replied to you on your %2$s %3$s'] = '%1$s respondió en tu %2$s %3$s'; -$a->strings['%1$s tagged you on your %2$s %3$s'] = '%1$s te etiquetó en %2$s %3$s'; -$a->strings['%1$s commented on your %2$s %3$s'] = '%1$s comentó en %2$s %3$s'; -$a->strings['%1$s replied to you on their %2$s %3$s'] = '%1$s respondió en su %2$s %3$s'; -$a->strings['%1$s tagged you on their %2$s %3$s'] = '%1$s te etiquetó en su %2$s %3$s'; -$a->strings['%1$s commented on their %2$s %3$s'] = '%1$s comentó en su %2$s %3$s'; -$a->strings['%s %s tagged you'] = '%s %s te etiquetó'; -$a->strings['%1$s tagged you at %2$s'] = '%1$s te etiquetó en %2$s'; -$a->strings['%1$s Comment to conversation #%2$d by %3$s'] = '%1$s Comentó sobre #%2$d by %3$s'; -$a->strings['%s commented on an item/conversation you have been following.'] = '%s comentó en una artículo/elemento que sigues.'; -$a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Por favor, visita %s para ver y/o responder a la conversación.'; -$a->strings['%s %s posted to your profile wall'] = '%s %s publicó en tu perfil'; -$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s publicó en tu perfil a las %2$s'; -$a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s publicó en [url=%2$s]tu perfil[/url]'; -$a->strings['%s %s shared a new post'] = '%s %s compartió nuevo artículo'; -$a->strings['%1$s shared a new post at %2$s'] = '%1$s compartió un nuevo artículo a las %2$s'; -$a->strings['%1$s [url=%2$s]shared a post[/url].'] = '%1$s [url=%2$s]compartió nuevo artículo[/url].'; -$a->strings['%s %s shared a post from %s'] = '%s %s compartió artículo de %s'; -$a->strings['%1$s shared a post from %2$s at %3$s'] = '%1$s compartió artículo de %2$s en %3$s'; -$a->strings['%1$s [url=%2$s]shared a post[/url] from %3$s.'] = '%1$s [url=%2$s]compartió artículo[/url] de %3$s.'; -$a->strings['%1$s %2$s poked you'] = '%1$s %2$s te empujó'; -$a->strings['%1$s poked you at %2$s'] = '%1$s te empujó a las %2$s'; -$a->strings['%1$s [url=%2$s]poked you[/url].'] = '%1$s [url=%2$s]te empujó[/url].'; -$a->strings['%s %s tagged your post'] = '%s %s etiquetó tu artículo'; -$a->strings['%1$s tagged your post at %2$s'] = '%1$s etiquetó tu artículo a las %2$s'; -$a->strings['%1$s tagged [url=%2$s]your post[/url]'] = '%1$s etiquetó [url=%2$s]tu artículo[/url]'; -$a->strings['%s Introduction received'] = '%s presentación recibida'; -$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Recibiste una presentación de \'%1$s\' en %2$s'; -$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Recibiste [url=%1$s]una presentación de [/url] de %2$s.'; -$a->strings['You may visit their profile at %s'] = 'Puedes visitar su perfil en %s'; -$a->strings['Please visit %s to approve or reject the introduction.'] = 'Visita %s para aceptar o rechazar la presentación'; -$a->strings['%s A new person is sharing with you'] = '%s Una nueva persona comparte contigo'; -$a->strings['%1$s is sharing with you at %2$s'] = '%1$s comparte contigo en %2$s'; -$a->strings['%s You have a new follower'] = '%s Tienes nuevo seguidor'; -$a->strings['You have a new follower at %2$s : %1$s'] = 'Tienes nuevo seguidor en %2$s : %1$s'; -$a->strings['%s Friend suggestion received'] = '%s Sugerencia de amistad recibida'; -$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = 'Recibiste una sugerencia de amistad de \'%1$s\' en %2$s'; -$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = 'Recibiste [url=%1$s]una sugerencia de amistad[/url] en %2$s de %3$s.'; -$a->strings['Name:'] = 'Nombre: '; -$a->strings['Photo:'] = 'Foto: '; -$a->strings['Please visit %s to approve or reject the suggestion.'] = 'Visita %s para aceptar o rechazar la sugerencia.'; -$a->strings['%s Connection accepted'] = '%s Conexión aceptada'; -$a->strings['\'%1$s\' has accepted your connection request at %2$s'] = '\'%1$s\' aceptó tu solicitud de conexión en %2$s'; -$a->strings['%2$s has accepted your [url=%1$s]connection request[/url].'] = '%2$s aceptó tu [url=%1$s]solicitud de conexión[/url].'; -$a->strings['You are now mutual friends and may exchange status updates, photos, and email without restriction.'] = 'Ahora son amigos mutuos y puede intercambiar actualizaciones, fotos e email sin restricción.'; -$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'Por favor visite %s si desea hacer algún cambio a su relación.'; -$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\' te ha aceptado como fan, eso restringe algunas formas de comunicación - como mensajes privados e interacciones de perfil. Si es un famoso o página comunitaria, esos son ajustes automáticos.'; -$a->strings['\'%1$s\' may choose to extend this into a two-way or more permissive relationship in the future.'] = '\'%1$s\' puede elegirte para una relación cercana o bidireccional en el futuro.'; -$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'Visita %s si deseas hacer algún cambio con este contacto.'; -$a->strings['[Friendica System Notify]'] = '[Friendica Sistema de Notificaciones]'; -$a->strings['registration request'] = 'petición de registro'; -$a->strings['You\'ve received a registration request from \'%1$s\' at %2$s'] = 'Recibiste una solicitud de registro de \'%1$s\' en %2$s'; -$a->strings['You\'ve received a [url=%1$s]registration request[/url] from %2$s.'] = 'Recibiste una [url=%1$s]solicitud de registro[/url] de %2$s.'; -$a->strings['Full Name: %s -Site Location: %s -Login Name: %s (%s)'] = 'Nombre Completo: %s -Ubicación: %s -Nombre de Usuario: %s (%s)'; -$a->strings['Please visit %s to approve or reject the request.'] = 'Visita %s para aprobar o rechazar la solicitud.'; -$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Limite diario de %d publicación alcanzado. La publicación fue rechazada.', - 1 => 'Limite diario de %d publicaciones alcanzado. La publicación fue rechazada.', -]; -$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Limite semanal de %d publicación alcanzado. La publicación fue rechazada.', - 1 => 'Limite semanal de %d publicaciones alcanzado. La publicación fue rechazada.', -]; -$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = 'Limite mensual de %d publicaciones alcanzado. La publicación fue rechazada.'; -$a->strings['%1$s poked %2$s'] = '%1$s empujó %2$s'; -$a->strings['status'] = 'estado'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s etiquetó %3$s %2$s con %4$s'; -$a->strings['View in context'] = 'Verlo en contexto'; -$a->strings['remove'] = 'eliminar'; -$a->strings['Delete Selected Items'] = 'Eliminar los seleccionados'; -$a->strings['You had been addressed (%s).'] = 'Has sido mencionado (%s).'; -$a->strings['You are following %s.'] = 'Estas siguiendo %s.'; -$a->strings['Tagged'] = 'Etiquetado'; -$a->strings['%s reshared this.'] = '%s reenvió esto.'; -$a->strings['Reshared'] = 'Compartido'; -$a->strings['Reshared by %s'] = 'Compartido por %s'; -$a->strings['%s is participating in this thread.'] = '%s participa en el hilo.'; -$a->strings['Stored'] = 'Almacenado'; -$a->strings['Global'] = 'Global'; -$a->strings['Relayed'] = 'Reenviado'; -$a->strings['Relayed by %s.'] = 'Reenviado por %s.'; -$a->strings['Fetched'] = 'Recuperado'; -$a->strings['Fetched because of %s'] = 'Recuperado por %s'; -$a->strings['%s likes this.'] = 'A %s le agrada.'; -$a->strings['%s doesn\'t like this.'] = 'A %s no le agrada.'; -$a->strings['%s attends.'] = '%s asiste.'; -$a->strings['%s doesn\'t attend.'] = '%s no asiste.'; -$a->strings['%s attends maybe.'] = '%s quizá asistirá'; -$a->strings['and'] = 'y'; -$a->strings['and %d other people'] = 'y a otras %d personas'; -$a->strings['%2$d people like this'] = '%2$d personas les agrada'; -$a->strings['%s like this.'] = 'A %s le agrada.'; -$a->strings['%2$d people don\'t like this'] = '%2$d personas no les agrada'; -$a->strings['%s don\'t like this.'] = 'A %s no le agrada.'; -$a->strings['%2$d people attend'] = '%2$d personas asisten'; -$a->strings['%s attend.'] = '%s asiste.'; -$a->strings['%2$d people don\'t attend'] = '%2$d personasno asiste.'; -$a->strings['%s don\'t attend.'] = '%s no asiste.'; -$a->strings['%2$d people attend maybe'] = '%2$d personas quizá asistan.'; -$a->strings['%s attend maybe.'] = '%s quizás asistirá.'; -$a->strings['%2$d people reshared this'] = '%2$d personas reenviaron esto.'; -$a->strings['Visible to everybody'] = 'Visible para cualquiera'; -$a->strings['Tag term:'] = 'Etiqueta:'; -$a->strings['Where are you right now?'] = '¿Dónde estás ahora?'; -$a->strings['Delete item(s)?'] = '¿Borrar artículo(s)?'; -$a->strings['New Post'] = 'Nuevo artículo'; -$a->strings['Share'] = 'Compartir'; -$a->strings['Upload photo'] = 'Subir foto'; -$a->strings['upload photo'] = 'subir foto'; -$a->strings['Attach file'] = 'Añadir archivo'; -$a->strings['attach file'] = 'añadir archivo'; -$a->strings['set location'] = 'establecer ubicación'; -$a->strings['Clear browser location'] = 'Borrar ubicación del navegador'; -$a->strings['clear location'] = 'borrar ubicación'; -$a->strings['Permission settings'] = 'Configuración de permisos'; -$a->strings['Permissions'] = 'Permisos'; -$a->strings['Public post'] = 'Artículo público'; -$a->strings['Open Compose page'] = 'Abrir página de publicación'; -$a->strings['Invalid request.'] = 'Consulta invalida'; -$a->strings['Wall Photos'] = 'Foto del Perfil'; -$a->strings['User deleted their account'] = 'Usuario borró su cienta'; -$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'En tu nodo de Friendica, un usuario eliminó su cuenta. Asegúrese de quesus datos se eliminan de los respaldos.'; -$a->strings['The user id is %d'] = 'El Id de Usuario es %d'; -$a->strings['Remove My Account'] = 'Eliminar mi cuenta'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Esto eliminará por completo tu cuenta. Una vez hecho no puede deshacerse.'; -$a->strings['Please enter your password for verification:'] = 'Introduce tu contraseña para verificación:'; -$a->strings['Subscribing to OStatus contacts'] = 'Subscribir a Contactos de OStatus'; -$a->strings['No contact provided.'] = 'No se suministra contacto.'; -$a->strings['Couldn\'t fetch information for contact.'] = 'No se encuentra la información del contacto.'; -$a->strings['Couldn\'t fetch friends for contact.'] = 'No se encuentran datos de amigos de contacto.'; -$a->strings['Done'] = 'Hecho'; -$a->strings['success'] = 'éxito!'; -$a->strings['failed'] = 'fallido'; -$a->strings['Keep this window open until done.'] = 'Manténer la ventana abierta hasta que finalice.'; -$a->strings['Recent Photos'] = 'Fotos Recientes'; -$a->strings['Upload New Photos'] = 'Subir Nuevas Fotos'; -$a->strings['Contact information unavailable'] = 'Información del contacto no disponible'; -$a->strings['Album not found.'] = 'Álbum no encontrado.'; -$a->strings['Album successfully deleted'] = 'Album borrado con éxito'; -$a->strings['Album was empty.'] = 'El Álbum estaba vacío.'; -$a->strings['Failed to delete the photo.'] = 'Error al borrar la Foto'; -$a->strings['a photo'] = 'una foto'; -$a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s fue etiquetado en %2$s por %3$s'; -$a->strings['Image upload didn\'t complete, please try again'] = 'Subida de imagen no completa, vuelve a intentar'; -$a->strings['Image file is missing'] = 'Falta el archivo de imagen'; -$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'El servidor no puede aceptar la carga de archivos nuevos en este momento, comuníquese con el Administrador'; -$a->strings['Image file is empty.'] = 'El archivo de imagen está vacío.'; -$a->strings['No photos selected'] = 'Ninguna foto seleccionada'; -$a->strings['Access to this item is restricted.'] = 'Acceso a este elemento está restringido.'; -$a->strings['Upload Photos'] = 'Subir fotos'; -$a->strings['New album name: '] = 'Nombre del nuevo álbum: '; -$a->strings['or select existing album:'] = 'o seleccione un Álbum:'; -$a->strings['Do not show a status post for this upload'] = 'No actualizar tu estado con este envío'; -$a->strings['Do you really want to delete this photo album and all its photos?'] = '¿Estás seguro de quieres borrar este álbum y todas sus fotos?'; -$a->strings['Delete Album'] = 'Eliminar álbum'; -$a->strings['Edit Album'] = 'Modificar álbum'; -$a->strings['Drop Album'] = 'Suelte un Álbum'; -$a->strings['Show Newest First'] = 'Mostrar más nuevos primero'; -$a->strings['Show Oldest First'] = 'Mostrar más antiguos primero'; -$a->strings['View Photo'] = 'Ver foto'; -$a->strings['Permission denied. Access to this item may be restricted.'] = 'Permiso denegado. El acceso a este elemento puede estar restringido.'; -$a->strings['Photo not available'] = 'Foto no disponible'; -$a->strings['Do you really want to delete this photo?'] = '¿Estás seguro de que quieres borrar esta foto?'; -$a->strings['Delete Photo'] = 'Eliminar foto'; -$a->strings['View photo'] = 'Ver foto'; -$a->strings['Edit photo'] = 'Modificar foto'; -$a->strings['Delete photo'] = 'Borrar foto'; -$a->strings['Use as profile photo'] = 'Usar como foto del perfil'; -$a->strings['Private Photo'] = 'Foto privada'; -$a->strings['View Full Size'] = 'Ver a tamaño completo'; -$a->strings['Tags: '] = 'Etiquetas: '; -$a->strings['[Select tags to remove]'] = '[Seleccionar etiquetas a borrar]'; -$a->strings['New album name'] = 'Nuevo nombre del álbum'; -$a->strings['Caption'] = 'Título'; -$a->strings['Add a Tag'] = 'Añadir una etiqueta'; -$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping'; -$a->strings['Do not rotate'] = 'No rotar'; -$a->strings['Rotate CW (right)'] = 'Girar a la derecha'; -$a->strings['Rotate CCW (left)'] = 'Girar a la izquierda'; -$a->strings['Like'] = 'Me gusta'; -$a->strings['Dislike'] = 'No me gusta'; -$a->strings['Map'] = 'Mapa'; -$a->strings['View Album'] = 'Ver Álbum'; -$a->strings['This may occasionally happen if contact was requested by both persons and it has already been approved.'] = 'Esto puede ocurrir a veces si fuera solicitado por ambas personas y ya hubiera sido aprobada.'; -$a->strings['Response from remote site was not understood.'] = 'Respuesta del sitio remoto no se entendió.'; -$a->strings['Unexpected response from remote site: '] = 'Respuesta inesperada del sitio remoto: '; -$a->strings['Confirmation completed successfully.'] = 'Confirmación completada con éxito.'; -$a->strings['Temporary failure. Please wait and try again.'] = 'Falla temporal. Por favor espere y vuelva a intentar.'; -$a->strings['Introduction failed or was revoked.'] = 'La presentación fallida o ha sido anulada.'; -$a->strings['Remote site reported: '] = 'Sitio remoto reportó: '; -$a->strings['No user record found for \'%s\' '] = 'No hay registros de \'%s\' '; -$a->strings['Our site encryption key is apparently messed up.'] = 'Nuestro clave de cifrado del sitio aparentemente falló.'; -$a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'Se proporcionó una URL vacía o no podemos descrifrarla.'; -$a->strings['Contact record was not found for you on our site.'] = 'Tu contacto no se ha encontrado en nuestra base de datos.'; -$a->strings['Site public key not available in contact record for URL %s.'] = 'Clave pública del sitio no disponible en datos del contacto %s.'; -$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'El ID de tu sistema es un duplicado en nuestro sistema. Debería funcionar si intentas de nuevo.'; -$a->strings['Unable to set your contact credentials on our system.'] = 'Imposible establecer tu contacto en nuestro sistema.'; -$a->strings['Unable to update your contact profile details on our system'] = 'Imposible actualizar tus detalles del perfil en nuestro sistema'; -$a->strings['Missing some important data!'] = '¡Información importante faltante!'; -$a->strings['Failed to connect with email account using the settings provided.'] = 'Error al conectar con el Correo mediante esa configuración.'; -$a->strings['Contact CSV file upload error'] = 'Error al subir archivo CSV'; -$a->strings['Importing Contacts done'] = 'Importación del contacto completada'; -$a->strings['Relocate message has been send to your contacts'] = 'Mensaje de reubicación enviado a sus contactos.'; -$a->strings['Passwords do not match.'] = 'No coinciden los passwords'; -$a->strings['Password unchanged.'] = 'Contraseña no modificada'; -$a->strings['Please use a shorter name.'] = 'Utiliza un nombre mas corto'; -$a->strings['Name too short.'] = 'Nombre muy corto'; -$a->strings['Wrong Password.'] = 'Password erróneo'; -$a->strings['Invalid email.'] = 'Corréo no válido.'; -$a->strings['Cannot change to that email.'] = 'Imposible cambiar a ese correo.'; -$a->strings['Private forum has no privacy permissions. Using default privacy group.'] = 'Foro privado sin permisos de privacidad. Grupo de privacidad por defecto.'; -$a->strings['Private forum has no privacy permissions and no default privacy group.'] = 'Foro privado sin permisos ni grupo de privacidad por defecto.'; -$a->strings['Settings were not updated.'] = 'Configuración no actualizada'; -$a->strings['Add application'] = 'Agregar aplicación'; -$a->strings['Consumer Key'] = 'Clave de Consumidor'; -$a->strings['Consumer Secret'] = 'Secreto de Consumidor'; -$a->strings['Redirect'] = 'Redirigir'; -$a->strings['Icon url'] = 'Dirección del ícono'; -$a->strings['You can\'t edit this application.'] = 'No puedes editar esta aplicación.'; -$a->strings['Connected Apps'] = 'Aplicaciones conectadas'; -$a->strings['Client key starts with'] = 'Clave de cliente comienza con'; -$a->strings['No name'] = 'Sin nombre'; -$a->strings['Remove authorization'] = 'Quitar autorización'; -$a->strings['No Addon settings configured'] = 'Ningún Añadido configurado'; -$a->strings['Addon Settings'] = 'Configuración de Añadidos'; -$a->strings['Additional Features'] = 'Opciones Adicionales'; -$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings['enabled'] = 'habilitado'; -$a->strings['disabled'] = 'deshabilitado'; -$a->strings['Built-in support for %s connectivity is %s'] = 'Soporte integrado de conexión con %s %s'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; -$a->strings['Email access is disabled on this site.'] = 'Acceso por correo deshabilitado en este sitio.'; -$a->strings['None'] = 'Ninguno'; -$a->strings['General Social Media Settings'] = 'Configuración General de Medios Sociales'; -$a->strings['Accept only top level posts by contacts you follow'] = 'Sólo artículos principales de contactos que sigo'; -$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.'] = 'El sistema auto finaliza los hilos cuando llega un comentario. Esto Tiene el efecto secundario que puedes recibir artículos iniciados por un no seguidor, pero han sido comentados por alguien que sigues. Esta configuración lo desactiva. Cuando lo actives, solo recibirásartículos de personas que realmente sigues.'; -$a->strings['Disable Content Warning'] = 'Deshabilitar advertencia de contenido'; -$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.'] = 'Usuarios de Mastodon o Pleroma pueden establecer una advertencias de contenido para colapsar la publicación por default. Esto desactiva el colapso y establece la advertencia de contenido como título posterior. No afecta otro contenido de filtros que se haya configurado.'; -$a->strings['Disable intelligent shortening'] = 'Deshabilitar recorte inteligente'; -$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.'] = 'El sistema intenta encontrar el mejor enlace para agregar a artículos recortados Si habilita la opción, cada envío recortado apuntara siempre al artículo original en Friendica.'; -$a->strings['Attach the link title'] = 'Agregar título del link'; -$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.'] = 'Si se activa, el título del link se añade como titulo en artículos de Diaspora. Esto es bueno con contactos "remote-self" que comparten contenido.'; -$a->strings['Automatically follow any GNU Social (OStatus) followers/mentioners'] = 'Automáticamente seguir seguidores/menciones de GNUsocial (OStatus)'; -$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.'] = 'Si recibes un mensaje de un perfil desconocido de OStatus, esta opción decide que hacer. Si es habilitado, un nuevo contacto sera creado para cada usuario.'; -$a->strings['Default group for OStatus contacts'] = 'Grupo por defecto para contactos OStatus'; -$a->strings['Your legacy GNU Social account'] = 'Tu cuenta GNU social origen'; -$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.'] = 'Si usas tu nombre de perfil GNUsocial/Statusnet aqui (en el formato de usuario@dominio.tld), sus contactos serán añadidos automáticamente. El campo se vaciará cuando termine. '; -$a->strings['Repair OStatus subscriptions'] = 'Reparar subscripciones OStatus'; -$a->strings['Email/Mailbox Setup'] = 'Configuración de Correo/Buzón'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Si quieres comunicarte con contactos de correo con este servicio (opcional), especifica cómo conectar con tu buzón.'; -$a->strings['Last successful email check:'] = 'Última comprobación de correo éxitosa:'; -$a->strings['IMAP server name:'] = 'Nombre del servidor IMAP:'; -$a->strings['IMAP port:'] = 'Puerto IMAP:'; -$a->strings['Security:'] = 'Seguridad:'; -$a->strings['Email login name:'] = 'Usuario de Correo:'; -$a->strings['Email password:'] = 'Contraseña de Correo:'; -$a->strings['Reply-to address:'] = 'Dirección de respuesta:'; -$a->strings['Send public posts to all email contacts:'] = 'Enviar notificaciones públicas a todos los correos:'; -$a->strings['Action after import:'] = 'Acción al importar:'; -$a->strings['Move to folder'] = 'Mover a un folder'; -$a->strings['Move to folder:'] = 'Mover al folder:'; -$a->strings['Unable to find your profile. Please contact your admin.'] = 'No se encontró tu perfil. Contacta al Administrador.'; -$a->strings['Personal Page Subtypes'] = 'Subtipos de Página Personal'; -$a->strings['Community Forum Subtypes'] = 'Subtipos de Foro de Comunidad'; -$a->strings['Account for a personal profile.'] = 'Cuenta para un perfil personal.'; -$a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'Cuenta para una organización que aprueba automáticamente solicitudes de "Seguidores".'; -$a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'Cuenta Reflector de noticias que aprueba automáticamente solicitudes de contacto como "Seguidores".'; -$a->strings['Account for community discussions.'] = 'Cuenta para discusiones de la comunidad.'; -$a->strings['Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'] = 'Cuenta para perfil personal regular que requiere aprobación manual de "Amigos" and "Seguidores".'; -$a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'Cuenta para un perfil público que aprueba automáticamente las solicitudes de contacto como «Seguidores».'; -$a->strings['Automatically approves all contact requests.'] = 'Aprueba automáticamente las solicitudes de contacto.'; -$a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'Cuenta para un perfil popular que aprueba automáticamente solicitudes de contacto como "Amigos".'; -$a->strings['Private Forum [Experimental]'] = 'Foro privado [Experimental]'; -$a->strings['Requires manual approval of contact requests.'] = 'Requiere aprobación manual de solicitudes de contacto.'; -$a->strings['OpenID:'] = 'OpenID:'; -$a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Opcional) Permitir a este OpenID acceder a esta cuenta.'; -$a->strings['Publish your profile in your local site directory?'] = 'Publicar tu perfil en tu Directorio Local?'; -$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.'] = 'Tu perfil se publicará en el directorio de nodo local . Los detalles de tu perfil pueden ser públicos según los ajustes del sistema.'; -$a->strings['Your profile will also be published in the global friendica directories (e.g. %s).'] = 'Tu perfil también será publicado en Directorios Globales Friendica (ej. %s).'; -$a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'Tu dirección de Identidad es \'%s\' o \'%s\'.'; -$a->strings['Account Settings'] = 'Configuración de Cuenta'; -$a->strings['Password Settings'] = 'Configuración de Contraseña'; -$a->strings['Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).'] = 'Caracteres permitidos de a-z, A-Z, 0-9 y signos especiales excepto espacios, letras con acento y Dos Puntos (:).'; -$a->strings['Leave password fields blank unless changing'] = 'Deja la contraseña en blanco si no quieres cambiarla'; -$a->strings['Current Password:'] = 'Contraseña actual:'; -$a->strings['Your current password to confirm the changes'] = 'Tu contraseña actual para confirmar los cambios.'; -$a->strings['Password:'] = 'Contraseña:'; -$a->strings['Your current password to confirm the changes of the email address'] = 'Tu contraseña actual para confirmar los cambios de cuenta de corréo.'; -$a->strings['Delete OpenID URL'] = 'Borrar URL de OpenID'; -$a->strings['Basic Settings'] = 'Configuración Básica'; -$a->strings['Email Address:'] = 'Dirección de Correo:'; -$a->strings['Your Timezone:'] = 'Zona horaria:'; -$a->strings['Your Language:'] = 'Tu idioma:'; -$a->strings['Set the language we use to show you friendica interface and to send you emails'] = 'Selecciona el idioma que usará la interfaz Friendica y para enviarte correos.'; -$a->strings['Default Post Location:'] = 'Ubicación predeterminada:'; -$a->strings['Use Browser Location:'] = 'Usar localización del navegador:'; -$a->strings['Security and Privacy Settings'] = 'Configuración de Seguridad y Privacidad'; -$a->strings['Maximum Friend Requests/Day:'] = 'Número máximo de solicitudes de amistad/día:'; -$a->strings['(to prevent spam abuse)'] = '(para prevenir abuso de basura)'; -$a->strings['Allow your profile to be searchable globally?'] = '¿Permitir tu perfil ser encontrado globalmente?'; -$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.'] = 'Activa esta configuración si quieres que otros te encuentren y sigan fácilmente. Tu perfil se podrá buscar en sistemas remotos. Esta configuración también determina si Friendica informará a los motores de búsqueda que tu perfil debe ser indexado o no.'; -$a->strings['Hide your contact/friend list from viewers of your profile?'] = 'Esconde tu lista de contactos/amistades de otros a tu perfil?'; -$a->strings['A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list.'] = 'Se muestra una lista de tus contactos en tu Perfil. Activar esta opción para deshabilitar la visualización de tu lista de contactos.'; -$a->strings['Hide your profile details from anonymous viewers?'] = '¿Esconder tus detalles de Perfil de usuarios anónimos?'; -$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.'] = 'Visitantes anónimos solo verán tu foto de perfil, tu nombre para mostrar y el apodo que usas en tu página de perfil. Tus publicaciones públicas y Las respuestas seguirán accesibles por otros medios.'; -$a->strings['Make public posts unlisted'] = 'No listar mis artículos públicos'; -$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.'] = 'Tus publicaciones públicas no aparecerán en páginas de la comunidad ni en búsquedas, ni se enviaran a servidores de retransmisión. Sin embargo, aparecerán en artículos públicos de servidores remotos.'; -$a->strings['Make all posted pictures accessible'] = 'Hacer accesibles todas las fotos'; -$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.'] = 'Esta opción hace accesibles todas las imágenes a través del enlace directo. Este es una solución al problema que la mayoría de las redes no pueden manejar permisos en las imágenes. Las imágenes no públicas aún no serán visibles para elpúblico en tus álbumes de fotos.'; -$a->strings['Allow friends to post to your profile page?'] = '¿Permitir que tus amigos publiquen en tu página de perfil?'; -$a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'Tus contactos pueden escribir artículos en tu perfil. Estas publicaciones se distribuirán a tus contactos'; -$a->strings['Allow friends to tag your posts?'] = '¿Permitir a los amigos etiquetar tus publicaciones?'; -$a->strings['Your contacts can add additional tags to your posts.'] = 'Tus contactos pueden añadir etiquetas adicionales a tus artículos.'; -$a->strings['Permit unknown people to send you private mail?'] = '¿Permitir que desconocidos te manden correos privados?'; -$a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Usuarios de Friendica pueden enviarte mensajes privados incluso si no están en tu lista de contactos.'; -$a->strings['Maximum private messages per day from unknown people:'] = 'Número máximo de mensajes diarios para desconocidos:'; -$a->strings['Default Post Permissions'] = 'Permisos por defecto para publicaciones'; -$a->strings['Expiration settings'] = 'Configuración de Expiración'; -$a->strings['Automatically expire posts after this many days:'] = 'Publicaciones caducarán solas después de estos días:'; -$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Si dejas vacío no caducarán. Publicaciones caducadas serán borradas'; -$a->strings['Expire posts'] = 'Caducar artículos'; -$a->strings['When activated, posts and comments will be expired.'] = 'Cuando se activa, artículos y comentarios caducarán.'; -$a->strings['Expire personal notes'] = 'Caducar Anotaciones'; -$a->strings['When activated, the personal notes on your profile page will be expired.'] = 'Si se activa, las Anotaciones en tu Perfil caducarán.'; -$a->strings['Expire starred posts'] = 'Caducar artículos Destacados'; -$a->strings['Starring posts keeps them from being expired. That behaviour is overwritten by this setting.'] = 'Destacar las publicaciones evita que caduquen. Ese comportamiento cambiacon este ajuste.'; -$a->strings['Expire photos'] = 'Caducar fotos'; -$a->strings['When activated, photos will be expired.'] = 'Cuando se activa, las fotos expirarán.'; -$a->strings['Only expire posts by others'] = 'Solo caducar artículos de otros'; -$a->strings['When activated, your own posts never expire. Then the settings above are only valid for posts you received.'] = 'Cuando se activa, publicaciones propias nunca caducan. Esta configuración solo es válida para las artículos recibidas.'; -$a->strings['Notification Settings'] = 'Configuración de Notificaciones'; -$a->strings['Send a notification email when:'] = 'Enviar notificación por correo cuando:'; -$a->strings['You receive an introduction'] = 'Recibas una presentación'; -$a->strings['Your introductions are confirmed'] = 'Tu presentación sea confirmada'; -$a->strings['Someone writes on your profile wall'] = 'Alguien escriba en tu perfil'; -$a->strings['Someone writes a followup comment'] = 'Alguien escriba en un comentario que sigo'; -$a->strings['You receive a private message'] = 'Recibas un mensaje privado'; -$a->strings['You receive a friend suggestion'] = 'Recibas una sugerencia de amistad'; -$a->strings['You are tagged in a post'] = 'Seas etiquetado en un artículo'; -$a->strings['You are poked/prodded/etc. in a post'] = 'Te han tocado/empujado/etc. en una publicación'; -$a->strings['Activate desktop notifications'] = 'Activar notificaciones'; -$a->strings['Show desktop popup on new notifications'] = 'Mostrar notificaciones emergentes en caso de nuevos eventos.'; -$a->strings['Text-only notification emails'] = 'Notificaciones de correo solo en texto'; -$a->strings['Send text only notification emails, without the html part'] = 'Enviar correo de notificación en formato Solo Texto sin html'; -$a->strings['Show detailled notifications'] = 'Mostrar notificaciones detalladas'; -$a->strings['Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.'] = 'Por default, notificaciones se condensan en una sola notificación por artículo. Cuando se habilita se muestran cada notificación.'; -$a->strings['Show notifications of ignored contacts'] = 'Mostrar notificación de Contactos Ignorados'; -$a->strings['You don\'t see posts from ignored contacts. But you still see their comments. This setting controls if you want to still receive regular notifications that are caused by ignored contacts or not.'] = 'No ves publicaciones de contactos ignorados. Pero todavía ves sus comentarios. Esta configuración controla si aún desea recibir notificaciones regulares causadas por contactos ignorados o no.'; -$a->strings['Advanced Account/Page Type Settings'] = 'Configuración avanzada de tipo de Cuenta/Página'; -$a->strings['Change the behaviour of this account for special situations'] = 'Cambiar el comportamiento de esta cuenta para situaciones especiales'; -$a->strings['Import Contacts'] = 'Importar contactos'; -$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Subir archivo CSV que contenga identificador de tus cuentas seguidas en elprimera columna que exportó desde la cuenta anterior.'; -$a->strings['Upload File'] = 'Subir archivo'; -$a->strings['Relocate'] = 'Relocalizar'; -$a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Si migró este perfil desde otro servidor y algunos contactos no reciben sus publicaciones intente oprimiendo esta opción.'; -$a->strings['Resend relocate message to contacts'] = 'Reenviar mensaje de relocalización a contactos'; -$a->strings['Item not found'] = 'Elemento no encontrado'; -$a->strings['Edit post'] = 'Editar publicación'; -$a->strings['Insert web link'] = 'Insertar enlace'; -$a->strings['web link'] = 'enlace web'; -$a->strings['Insert video link'] = 'Insertar enlace del vídeo'; -$a->strings['video link'] = 'enlace de video'; -$a->strings['Insert audio link'] = 'Insertar vínculo del audio'; -$a->strings['audio link'] = 'enlace de audio'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo en 24 horas.'; -$a->strings['Files'] = 'Archivos'; -$a->strings['{0} wants to be your friend'] = '{0} Quiere ser tu amigo'; -$a->strings['{0} requested registration'] = '{0} solicita registro'; -$a->strings['{0} and %d others requested registration'] = '{0} y %d otros solicitaron registro'; -$a->strings['Authorize application connection'] = 'Autorizar la conexión de la aplicación'; -$a->strings['Return to your app and insert this Securty Code:'] = 'Regresa a tu aplicación e introduce este código de seguridad:'; -$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = '¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?'; -$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'El artículo solicitado no existe o fue borrado.'; -$a->strings['The feed for this item is unavailable.'] = 'El hilo de este artículo no se encontró'; -$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Disculpa, posiblemente archivo mas grande que lo permitido por PHP.'; -$a->strings['Or - did you try to upload an empty file?'] = 'O - intentó subir un archivo vacío?'; -$a->strings['File exceeds size limit of %s'] = 'El archivo excede Tamaño de %s'; -$a->strings['File upload failed.'] = 'Ha fallado la subida del archivo.'; -$a->strings['No keywords to match. Please add keywords to your profile.'] = 'No hay etiquetas, añade etiquetas a tu perfil.'; -$a->strings['Profile Match'] = 'Coincidencia de Perfil'; -$a->strings['You already added this contact.'] = 'Ya has añadido este contacto.'; -$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'No se pudo detectar el tipo de red. Contacto no puede ser agregado.'; -$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'El soporte de OStatus no esta habilitado, el contacto no puede ser agregado.'; -$a->strings['Your Identity Address:'] = 'Dirección de tu Identidad:'; -$a->strings['%s knows you'] = '%s te conoce'; -$a->strings['Add a personal note:'] = 'Añade una nota personal:'; -$a->strings['The contact could not be added.'] = 'El contacto no puede añadirse.'; $a->strings['Unable to locate original post.'] = 'No se encontró la publicación original.'; -$a->strings['Empty post discarded.'] = 'Publicación vacía descartada.'; $a->strings['Post updated.'] = 'Artículo actualizado.'; $a->strings['Item wasn\'t stored.'] = 'Artículo no almacenado.'; $a->strings['Item couldn\'t be fetched.'] = 'Artículo no pudo recuperarse.'; -$a->strings['This introduction has already been accepted.'] = 'Esta presentación ya ha sido aceptada.'; -$a->strings['Profile location is not valid or does not contain profile information.'] = 'La dirección del perfil no es válida o no contiene información del perfil.'; -$a->strings['Warning: profile location has no identifiable owner name.'] = 'Aviso: La dirección del perfil no tiene un nombre de propietario identificable.'; -$a->strings['Warning: profile location has no profile photo.'] = 'Aviso: la dirección del perfil no tiene foto de perfil.'; -$a->strings['%d required parameter was not found at the given location'] = [ - 0 => 'no se encontró %d parámetro requerido en el lugar determinado', - 1 => 'no se encontraron %d parámetros requeridos en el lugar determinado', -]; -$a->strings['Introduction complete.'] = 'Presentación completa.'; -$a->strings['Unrecoverable protocol error.'] = 'Error de protocolo irrecuperable.'; -$a->strings['%s has received too many connection requests today.'] = '%s ha recibido demasiadas solicitudes de conexión hoy.'; -$a->strings['Spam protection measures have been invoked.'] = 'Han sido activadas las medidas de protección de Spam.'; -$a->strings['Friends are advised to please try again in 24 hours.'] = 'Se avisará a tus amigos para que intenten de nuevo en 24 horas.'; -$a->strings['You have already introduced yourself here.'] = 'Ya te has presentado aquí.'; -$a->strings['Apparently you are already friends with %s.'] = 'Al parecer, ya eres amigo de %s.'; -$a->strings['Invalid profile URL.'] = 'Dirección de perfil no válida.'; -$a->strings['Your introduction has been sent.'] = 'Tu presentación ha sido enviada.'; -$a->strings['Please login to confirm introduction.'] = 'Inicia sesión para confirmar la presentación.'; -$a->strings['Incorrect identity currently logged in. Please login to this profile.'] = 'Sesión iniciada con la identificación incorrecta. Entra en este perfil.'; -$a->strings['Confirm'] = 'Confirmar'; -$a->strings['Hide this contact'] = 'Ocultar este contacto'; -$a->strings['Welcome home %s.'] = 'Bienvenido de nuevo %s'; -$a->strings['Please confirm your introduction/connection request to %s.'] = 'Por favor, confirma tu solicitud de presentación/conexión con %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'] = 'Ingresa tu dirección Webfinger (usuario@dominio.tld) o URL de Perfil aquí. Si noes compatible con su sistema (por ejemplo, no funciona con Diaspora),tienes que suscribirte a %s directamente en tu sistema'; -$a->strings['View'] = 'Vista'; -$a->strings['Previous'] = 'Previo'; -$a->strings['list'] = 'lista'; -$a->strings['This calendar format is not supported'] = 'Este formato de calendario no se soporta'; -$a->strings['No exportable data found'] = 'No hay información exportable'; -$a->strings['calendar'] = 'calendario'; -$a->strings['User imports on closed servers can only be done by an administrator.'] = 'Importar usuarios en sitios cerrados solo lo hace el Administrador.'; -$a->strings['Move account'] = 'Mover cuenta'; -$a->strings['You can import an account from another Friendica server.'] = 'Puedes importar una cuenta desde otro servidor de Friendica.'; -$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.'] = 'Necesitas exportar tu cuenta del antiguo servidor y subirla aquí. Volveremos a crear tu antigua cuenta con todos tus contactos aquí. También intentaremos de informar a tus amigos de que te has mudado.'; -$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Característica experimental. No podemos importar contactos desde la red OStatus (statusnet/identi.ca) o desde Diaspora*'; -$a->strings['Account file'] = 'Archivo de la cuenta'; -$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Para exportar el perfil vaya a "Configuración -> Exportar sus datos personales" y seleccione "Exportar cuenta"'; +$a->strings['Empty post discarded.'] = 'Publicación vacía descartada.'; +$a->strings['Item not found.'] = 'Elemento no encontrado.'; +$a->strings['Permission denied.'] = 'Permiso denegado.'; $a->strings['No valid account found.'] = 'No se encontró cuenta válida'; $a->strings['Password reset request issued. Check your email.'] = 'Contraseña reestablecida enviada. Revisa tu correo.'; $a->strings[' @@ -2608,7 +63,9 @@ $a->strings['Request could not be verified. (You may have previously submitted i $a->strings['Request has expired, please make a new one.'] = 'La solicitud expiró, solicite una nueva.'; $a->strings['Forgot your Password?'] = '¿Olvidaste tu contraseña?'; $a->strings['Enter your email address and submit to have your password reset. Then check your email for further instructions.'] = 'Introduce tu correo para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales.'; +$a->strings['Nickname or Email: '] = 'Apodo o Correo electrónico: '; $a->strings['Reset'] = 'Restablecer'; +$a->strings['Password Reset'] = 'Restablecer la contraseña'; $a->strings['Your password has been reset as requested.'] = 'Tu contraseña ha sido restablecida como solicitaste.'; $a->strings['Your new password is'] = 'Tu nueva contraseña es'; $a->strings['Save or copy your new password - and then'] = 'Guarda o copia tu nueva contraseña y luego'; @@ -2644,36 +101,25 @@ $a->strings[' Puedes cambiar la contraseña desde configuración de la cuenta al ingresar. '; $a->strings['Your password has been changed at %s'] = 'Tu contraseña se ha cambiado por %s'; -$a->strings['Event can not end before it has started.'] = 'Un evento no puede terminar antes de su inicio.'; -$a->strings['Event title and start time are required.'] = 'Título del evento y hora de inicio requeridas.'; -$a->strings['Create New Event'] = 'Crea un evento nuevo'; -$a->strings['Event details'] = 'Detalles del evento'; -$a->strings['Starting date and Title are required.'] = 'Se requiere fecha de comienzo y titulo'; -$a->strings['Event Starts:'] = 'Inicio del evento:'; -$a->strings['Finish date/time is not known or not relevant'] = 'La fecha/hora de finalización no es conocida o es irrelevante.'; -$a->strings['Event Finishes:'] = 'Finalización del evento:'; -$a->strings['Adjust for viewer timezone'] = 'Ajuste de zona horaria'; -$a->strings['Title:'] = 'Título:'; -$a->strings['Share this event'] = 'Comparte este evento'; -$a->strings['Failed to remove event'] = 'Error al eliminar el evento'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Excedido el número máximo de mensajes para %s. Mensaje fallido.'; +$a->strings['New Message'] = 'Nuevo Mensaje'; $a->strings['No recipient selected.'] = 'Ningún destinatario seleccionado'; -$a->strings['Unable to check your home location.'] = 'Imposible comprobar tu servidor de inicio.'; +$a->strings['Unable to locate contact information.'] = 'No se encuentra información del contacto.'; $a->strings['Message could not be sent.'] = 'El mensaje no ha podido ser enviado.'; $a->strings['Message collection failure.'] = 'Fallo en recolección de mensajes.'; -$a->strings['No recipient.'] = 'Sin receptor.'; -$a->strings['Please enter a link URL:'] = 'Introduce una dirección URL:'; -$a->strings['Send Private Message'] = 'Enviar Mensaje Privado'; -$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Si quieres que %s te responda, verifica que la configuración de privacidad permite enviar correo privado de desconocidos.'; -$a->strings['To:'] = 'Para:'; -$a->strings['Subject:'] = 'Asunto:'; -$a->strings['No videos selected'] = 'Ningún vídeo seleccionado'; -$a->strings['Recent Videos'] = 'Vídeos Recientes'; -$a->strings['Upload New Videos'] = 'Subir Nuevos Videos'; -$a->strings['Unable to locate contact information.'] = 'No se encuentra información del contacto.'; +$a->strings['Discard'] = 'Descartar'; +$a->strings['Messages'] = 'Mensajes'; $a->strings['Conversation not found.'] = 'Conversación no encontrada.'; $a->strings['Message was not deleted.'] = 'Mensaje no borrado.'; $a->strings['Conversation was not removed.'] = 'Conversación no borrada.'; +$a->strings['Please enter a link URL:'] = 'Introduce una dirección URL:'; +$a->strings['Send Private Message'] = 'Enviar Mensaje Privado'; +$a->strings['To:'] = 'Para:'; +$a->strings['Subject:'] = 'Asunto:'; +$a->strings['Your message:'] = 'Tu mensaje:'; +$a->strings['Upload photo'] = 'Subir foto'; +$a->strings['Insert web link'] = 'Insertar enlace'; +$a->strings['Please wait'] = 'Espere'; +$a->strings['Submit'] = 'Enviar'; $a->strings['No messages.'] = 'No hay mensajes.'; $a->strings['Message not available.'] = 'Mensaje no disponibile.'; $a->strings['Delete message'] = 'Borrar mensaje'; @@ -2687,13 +133,2127 @@ $a->strings['%s and You'] = '%s y Tú'; $a->strings['%d message'] = [ 0 => '%d mensaje', 1 => '%d mensajes', + 2 => '%d mensajes', ]; -$a->strings['Remove Item Tag'] = 'Eliminar etiqueta'; -$a->strings['Select a tag to remove: '] = 'Selecciona etiqueta a eliminar: '; +$a->strings['Personal Notes'] = 'Notas Personales'; +$a->strings['Personal notes are visible only by yourself.'] = 'Notas personales solo puedes verlas tu.'; +$a->strings['Save'] = 'Guardar'; +$a->strings['User not found.'] = 'Usuario no encontrado.'; +$a->strings['Photo Albums'] = 'Álbum de Fotos'; +$a->strings['Recent Photos'] = 'Fotos Recientes'; +$a->strings['Upload New Photos'] = 'Subir Nuevas Fotos'; +$a->strings['everybody'] = 'todos'; +$a->strings['Contact information unavailable'] = 'Información del contacto no disponible'; +$a->strings['Album not found.'] = 'Álbum no encontrado.'; +$a->strings['Album successfully deleted'] = 'Album borrado con éxito'; +$a->strings['Album was empty.'] = 'El Álbum estaba vacío.'; +$a->strings['Failed to delete the photo.'] = 'Error al borrar la Foto'; +$a->strings['a photo'] = 'una foto'; +$a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s fue etiquetado en %2$s por %3$s'; +$a->strings['Public access denied.'] = 'Acceso público denegado.'; +$a->strings['No photos selected'] = 'Ninguna foto seleccionada'; +$a->strings['Upload Photos'] = 'Subir fotos'; +$a->strings['New album name: '] = 'Nombre del nuevo álbum: '; +$a->strings['or select existing album:'] = 'o seleccione un Álbum:'; +$a->strings['Do not show a status post for this upload'] = 'No actualizar tu estado con este envío'; +$a->strings['Permissions'] = 'Permisos'; +$a->strings['Do you really want to delete this photo album and all its photos?'] = '¿Estás seguro de quieres borrar este álbum y todas sus fotos?'; +$a->strings['Delete Album'] = 'Eliminar álbum'; +$a->strings['Cancel'] = 'Cancelar'; +$a->strings['Edit Album'] = 'Modificar álbum'; +$a->strings['Drop Album'] = 'Suelte un Álbum'; +$a->strings['Show Newest First'] = 'Mostrar más nuevos primero'; +$a->strings['Show Oldest First'] = 'Mostrar más antiguos primero'; +$a->strings['View Photo'] = 'Ver foto'; +$a->strings['Permission denied. Access to this item may be restricted.'] = 'Permiso denegado. El acceso a este elemento puede estar restringido.'; +$a->strings['Photo not available'] = 'Foto no disponible'; +$a->strings['Do you really want to delete this photo?'] = '¿Estás seguro de que quieres borrar esta foto?'; +$a->strings['Delete Photo'] = 'Eliminar foto'; +$a->strings['View photo'] = 'Ver foto'; +$a->strings['Edit photo'] = 'Modificar foto'; +$a->strings['Delete photo'] = 'Borrar foto'; +$a->strings['Use as profile photo'] = 'Usar como foto del perfil'; +$a->strings['Private Photo'] = 'Foto privada'; +$a->strings['View Full Size'] = 'Ver a tamaño completo'; +$a->strings['Tags: '] = 'Etiquetas: '; +$a->strings['[Select tags to remove]'] = '[Seleccionar etiquetas a borrar]'; +$a->strings['New album name'] = 'Nuevo nombre del álbum'; +$a->strings['Caption'] = 'Título'; +$a->strings['Add a Tag'] = 'Añadir una etiqueta'; +$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping'; +$a->strings['Do not rotate'] = 'No rotar'; +$a->strings['Rotate CW (right)'] = 'Girar a la derecha'; +$a->strings['Rotate CCW (left)'] = 'Girar a la izquierda'; +$a->strings['This is you'] = 'Este eres tú'; +$a->strings['Comment'] = 'Comentar'; +$a->strings['Preview'] = 'Vista previa'; +$a->strings['Loading...'] = 'Cargando...'; +$a->strings['Select'] = 'Seleccionar'; +$a->strings['Delete'] = 'Eliminar'; +$a->strings['Like'] = 'Me gusta'; +$a->strings['I like this (toggle)'] = 'Me gusta esto (cambiar)'; +$a->strings['Dislike'] = 'No me gusta'; +$a->strings['I don\'t like this (toggle)'] = 'No me gusta esto (cambiar)'; +$a->strings['Map'] = 'Mapa'; +$a->strings['No system theme config value set.'] = 'No hay tema configurado.'; +$a->strings['Delete this item?'] = '¿Eliminar este elemento?'; +$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.'] = '¿Bloquear a este autor? No podrá seguirte ni ver tus publicaciones públicas, y tú no podrás ver sus publicaciones ni sus notificaciones.'; +$a->strings['toggle mobile'] = 'Cambiar a versión móvil'; +$a->strings['Method not allowed for this module. Allowed method(s): %s'] = 'Método no permitido en este módulo. Permitido(s): %s'; +$a->strings['Page not found.'] = 'Pagina no encontrada.'; +$a->strings['You must be logged in to use addons. '] = 'Tienes que estar registrado para tener acceso a los accesorios.'; +$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.'] = 'Token de la ficha de seguridad incorrecto. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo.'; +$a->strings['All contacts'] = 'Todos los Contactos'; +$a->strings['Followers'] = 'Seguidores'; +$a->strings['Following'] = 'Siguiendo'; +$a->strings['Mutual friends'] = 'Amigos mutuos'; +$a->strings['Common'] = 'Común'; +$a->strings['Could not find any unarchived contact entry for this URL (%s)'] = 'No se encontró contacto sin archivar en esa URL (%s)'; +$a->strings['The contact entries have been archived'] = 'Entradas del contacto archivadas'; +$a->strings['Could not find any contact entry for this URL (%s)'] = 'No se ha encontrado ninguna entrada de contacto para esta URL (%s)'; +$a->strings['The contact has been blocked from the node'] = 'El contacto ha sido blockeado del nodo'; +$a->strings['Post update version number has been set to %s.'] = 'Número de versión actualizado es %s.'; +$a->strings['Check for pending update actions.'] = 'Checar acciones de actualización pendientes.'; +$a->strings['Done.'] = 'Hecho.'; +$a->strings['Execute pending post updates.'] = 'Ejecutar actualizaciones pendientes.'; +$a->strings['All pending post updates are done.'] = 'Todas las actualizaciones hechas.'; +$a->strings['Enter user nickname: '] = 'Ingrese apodo: '; +$a->strings['User not found'] = 'Usuario no encontrado'; +$a->strings['Enter new password: '] = 'Ingrese nueva contraseña: '; +$a->strings['Password update failed. Please try again.'] = 'Actualización de contraseña falló. Intente de nuevo.'; +$a->strings['Password changed.'] = 'Contraseña modificada.'; +$a->strings['Enter user name: '] = 'Ingrese usuario: '; +$a->strings['Enter user email address: '] = 'Ingrese corréo electrónco: '; +$a->strings['Enter a language (optional): '] = 'Ingrese lenguaje (pcional): '; +$a->strings['User is not pending.'] = 'Usuario no pendiente.'; +$a->strings['User has already been marked for deletion.'] = 'Usuario ya fue marcado para borrado.'; +$a->strings['Type "yes" to delete %s'] = 'Escribe "si" para borrar %s'; +$a->strings['Deletion aborted.'] = 'Borrado cancelado.'; +$a->strings['newer'] = 'más nuevo'; +$a->strings['older'] = 'más antiguo'; +$a->strings['Frequently'] = 'Frecuentemente'; +$a->strings['Hourly'] = 'Cada hora'; +$a->strings['Twice daily'] = 'Dos veces al dia'; +$a->strings['Daily'] = 'Diariamente'; +$a->strings['Weekly'] = 'Semanal'; +$a->strings['Monthly'] = 'Mensual'; +$a->strings['DFRN'] = 'DFRN'; +$a->strings['OStatus'] = 'OStatus'; +$a->strings['RSS/Atom'] = 'RSS/Atom'; +$a->strings['Email'] = 'Correo'; +$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'] = 'Conectos Diaspora'; +$a->strings['GNU Social Connector'] = 'Conector GNU Social'; +$a->strings['ActivityPub'] = 'ActivityPub'; +$a->strings['pnut'] = 'pnut'; +$a->strings['%s (via %s)'] = '%s (a través %s)'; +$a->strings['and'] = 'y'; +$a->strings['and %d other people'] = 'y a otras %d personas'; +$a->strings['Visible to everybody'] = 'Visible para cualquiera'; +$a->strings['Please enter a image/video/audio/webpage URL:'] = 'Escoja una dirección de imágen/video/audio/sitio:'; +$a->strings['Tag term:'] = 'Etiqueta:'; +$a->strings['Save to Folder:'] = 'Guardar en directorio:'; +$a->strings['Where are you right now?'] = '¿Dónde estás ahora?'; +$a->strings['Delete item(s)?'] = '¿Borrar artículo(s)?'; +$a->strings['New Post'] = 'Nuevo artículo'; +$a->strings['Share'] = 'Compartir'; +$a->strings['upload photo'] = 'subir foto'; +$a->strings['Attach file'] = 'Añadir archivo'; +$a->strings['attach file'] = 'añadir archivo'; +$a->strings['Bold'] = 'Negrita'; +$a->strings['Italic'] = 'Cursiva'; +$a->strings['Underline'] = 'Subrayado'; +$a->strings['Quote'] = 'Cita'; +$a->strings['Code'] = 'Código'; +$a->strings['Image'] = 'Imagen'; +$a->strings['Link'] = 'Enlace'; +$a->strings['Link or Media'] = 'Enlace o Multimedia'; +$a->strings['Set your location'] = 'Selecciona tu ubicación'; +$a->strings['set location'] = 'establecer ubicación'; +$a->strings['Clear browser location'] = 'Borrar ubicación del navegador'; +$a->strings['clear location'] = 'borrar ubicación'; +$a->strings['Set title'] = 'Establecer título'; +$a->strings['Categories (comma-separated list)'] = 'Categorías (lista separada por comas)'; +$a->strings['Permission settings'] = 'Configuración de permisos'; +$a->strings['Public post'] = 'Artículo público'; +$a->strings['Message'] = 'Mensaje'; +$a->strings['Browser'] = 'Navegador'; +$a->strings['Open Compose page'] = 'Abrir página de publicación'; +$a->strings['remove'] = 'eliminar'; +$a->strings['Delete Selected Items'] = 'Eliminar los seleccionados'; +$a->strings['You had been addressed (%s).'] = 'Has sido mencionado (%s).'; +$a->strings['You are following %s.'] = 'Estas siguiendo %s.'; +$a->strings['%s reshared this.'] = '%s reenvió esto.'; +$a->strings['Reshared'] = 'Compartido'; +$a->strings['%s is participating in this thread.'] = '%s participa en el hilo.'; +$a->strings['Fetched'] = 'Recuperado'; +$a->strings['View %s\'s profile @ %s'] = 'Ver perfil de %s @ %s'; +$a->strings['Categories:'] = 'Categorías:'; +$a->strings['Filed under:'] = 'Archivado en:'; +$a->strings['%s from %s'] = '%s de %s'; +$a->strings['View in context'] = 'Verlo en contexto'; +$a->strings['Local Community'] = 'Comunidad Local'; +$a->strings['Posts from local users on this server'] = 'Artículos de usuarios charla! MX'; +$a->strings['Global Community'] = 'Comunidad Global'; +$a->strings['Posts from users of the whole federated network'] = 'Artículos de usuarios del Fediverso'; +$a->strings['Latest Activity'] = 'Actividad Reciente'; +$a->strings['Sort by latest activity'] = 'Ordenar por actividad reciente'; +$a->strings['Latest Posts'] = 'Artículos Recientes'; +$a->strings['Sort by post received date'] = 'Ordenar por fecha de artículo'; +$a->strings['Personal'] = 'Personal'; +$a->strings['Posts that mention or involve you'] = 'Publicaciones que te mencionan o involucran'; +$a->strings['Starred'] = 'Destacados'; +$a->strings['Favourite Posts'] = 'Artículos favoritos'; +$a->strings['General Features'] = 'Opciones generales'; +$a->strings['Photo Location'] = 'Ubicación de foto'; +$a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'Normalmente los meta datos de las imágenes son eliminados. Esto extraerá la localización si presente antes de eliminar los meta datos y enlaza la misma con el mapa.'; +$a->strings['Trending Tags'] = 'Etiquetas tendencia'; +$a->strings['Show a community page widget with a list of the most popular tags in recent public posts.'] = 'Mostrar un widget de comunidad con las etiquetas populares en recientes artículos.'; +$a->strings['Post Composition Features'] = 'Opciones de edición de publicaciones.'; +$a->strings['Explicit Mentions'] = 'Menciones explicitas'; +$a->strings['Add explicit mentions to comment box for manual control over who gets mentioned in replies.'] = 'Añadir menciones explicitas a cuadro de comentarios para control manual sobre quien se menciona en respuestas.'; +$a->strings['Post/Comment Tools'] = 'Herramienta de publicaciones/respuestas'; +$a->strings['Post Categories'] = 'Categorías de publicaciones'; +$a->strings['Add categories to your posts'] = 'Agregue categorías a sus publicaciones. Las mismas serán visualizadas en su pagina de inicio.'; +$a->strings['Advanced Profile Settings'] = 'Ajustes avanzados del perfil'; +$a->strings['Tag Cloud'] = 'Nube de etiquetas'; +$a->strings['Provide a personal tag cloud on your profile page'] = 'Dar una etiqueta personal en tu página de perfil'; +$a->strings['Display Membership Date'] = 'Desplegar fecha de membresía'; +$a->strings['Display membership date in profile'] = 'Desplegar fecha de membresía en perfil'; +$a->strings['show less'] = 'mostrar menos'; +$a->strings['show more'] = 'Mostrar más'; +$a->strings['event'] = 'evento'; +$a->strings['status'] = 'estado'; +$a->strings['photo'] = 'foto'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s etiquetó %3$s %2$s con %4$s'; +$a->strings['Follow Thread'] = 'Seguir el hilo'; +$a->strings['View Status'] = 'Ver Estado'; +$a->strings['View Profile'] = 'Ver Perfil'; +$a->strings['View Photos'] = 'Ver Fotos'; +$a->strings['Network Posts'] = 'Artículos de Red'; +$a->strings['View Contact'] = 'Ver contacto'; +$a->strings['Send PM'] = 'Enviar Privado'; +$a->strings['Block'] = 'Bloquear'; +$a->strings['Ignore'] = 'Ignorar'; +$a->strings['Languages'] = 'Lenguajes'; +$a->strings['Connect/Follow'] = 'Conectar/Seguir'; +$a->strings['Nothing new here'] = 'No hay nada nuevo'; +$a->strings['Go back'] = 'Regresar'; +$a->strings['Clear notifications'] = 'Borrar notificaciones'; +$a->strings['Logout'] = 'Salir'; +$a->strings['End this session'] = 'Cerrar sesión'; +$a->strings['Login'] = 'Ingreso'; +$a->strings['Sign in'] = 'Ingresar'; +$a->strings['Profile'] = 'Perfil'; +$a->strings['Your profile page'] = 'Tu página de perfil'; +$a->strings['Photos'] = 'Fotos'; +$a->strings['Your photos'] = 'Tus fotos'; +$a->strings['Calendar'] = 'Calendario'; +$a->strings['Personal notes'] = 'Notas personales'; +$a->strings['Your personal notes'] = 'Tus notas personales'; +$a->strings['Home'] = 'Inicio'; +$a->strings['Home Page'] = 'Página de Inicio'; +$a->strings['Register'] = 'Registro'; +$a->strings['Create an account'] = 'Crea una cuenta'; +$a->strings['Help'] = 'Ayuda'; +$a->strings['Help and documentation'] = 'Ayuda y documentación'; +$a->strings['Apps'] = 'Aplicaciones'; +$a->strings['Addon applications, utilities, games'] = 'Aplicaciones, utilidades, juegos'; +$a->strings['Search'] = 'Buscar'; +$a->strings['Search site content'] = 'Buscar contenido en el sitio'; +$a->strings['Full Text'] = 'Texto completo'; +$a->strings['Tags'] = 'Etiquetas'; +$a->strings['Contacts'] = 'Contactos'; +$a->strings['Community'] = 'Comunidad'; +$a->strings['Conversations on this and other servers'] = 'Conversaciones aquí y en otros servidores'; +$a->strings['Directory'] = 'Directorio'; +$a->strings['People directory'] = 'Directorio de usuarios'; +$a->strings['Information'] = 'Información'; +$a->strings['Information about this friendica instance'] = 'Información sobre esta instancia Friendica'; +$a->strings['Terms of Service'] = 'Términos de Servicio'; +$a->strings['Terms of Service of this Friendica instance'] = 'Términos de Servicio de la Instancia Friendica'; +$a->strings['Network'] = 'Red'; +$a->strings['Conversations from your friends'] = 'Conversaciones de tus amigos'; +$a->strings['Your posts and conversations'] = 'Tus publicaciones y conversaciones'; +$a->strings['Introductions'] = 'Presentaciones'; +$a->strings['Friend Requests'] = 'Solicitudes de amistad'; +$a->strings['Notifications'] = 'Notificaciones'; +$a->strings['See all notifications'] = 'Ver todas las notificaciones'; +$a->strings['Mark as seen'] = 'Marcar como leído'; +$a->strings['Private mail'] = 'Correo privado'; +$a->strings['Inbox'] = 'Entrada'; +$a->strings['Outbox'] = 'Enviados'; +$a->strings['Accounts'] = 'Cuentas'; +$a->strings['Manage other pages'] = 'Administrar otras páginas'; +$a->strings['Settings'] = 'Configuración'; +$a->strings['Account settings'] = 'Configurar la cuenta'; +$a->strings['Manage/edit friends and contacts'] = 'Administrar/editar amigos y contactos'; +$a->strings['Admin'] = 'Admin'; +$a->strings['Site setup and configuration'] = 'Opciones y configuración del sitio'; +$a->strings['Navigation'] = 'Navegación'; +$a->strings['Site map'] = 'Mapa del sitio'; +$a->strings['Embedding disabled'] = 'Contenido incrustrado desabilitado'; +$a->strings['Embedded content'] = 'Contenido integrado'; +$a->strings['first'] = 'primera'; +$a->strings['prev'] = 'previo'; +$a->strings['next'] = 'sig.'; +$a->strings['last'] = 'última'; +$a->strings['Image/photo'] = 'Imagen/Foto'; +$a->strings['%2$s %3$s'] = '%2$s %3$s'; +$a->strings['Click to open/close'] = 'Pulsa para abrir/cerrar'; +$a->strings['$1 wrote:'] = '$1 escribió:'; +$a->strings['Encrypted content'] = 'Contenido cifrado'; +$a->strings['Invalid source protocol'] = 'Protocolo de fuente inválido'; +$a->strings['Invalid link protocol'] = 'Protocolo de enlace inválido'; +$a->strings['Loading more entries...'] = 'Cargar mas artículos..'; +$a->strings['The end'] = 'Final'; +$a->strings['Follow'] = 'Seguir'; +$a->strings['Add New Contact'] = 'Añadir nuevo contacto'; +$a->strings['Enter address or web location'] = 'Escribe la dirección o página web'; +$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Ejemplo: miguel@ejemplo.com, http://ejemplo.com/miguel'; +$a->strings['Connect'] = 'Conectar'; +$a->strings['%d invitation available'] = [ + 0 => '%d invitación disponible', + 1 => '%d invitaviones disponibles', + 2 => '%d invitaviones disponibles', +]; +$a->strings['Find People'] = 'Buscar Personas'; +$a->strings['Enter name or interest'] = 'Introduce nombre o interés'; +$a->strings['Examples: Robert Morgenstein, Fishing'] = 'Ejemplos: Robert Morgenstein, Pesca'; +$a->strings['Find'] = 'Buscar'; +$a->strings['Friend Suggestions'] = 'Sugerencias de Amistad'; +$a->strings['Similar Interests'] = 'Intereses Similares'; +$a->strings['Random Profile'] = 'Perfil Al Azar'; +$a->strings['Invite Friends'] = 'Invitar Amigos'; +$a->strings['Global Directory'] = 'Directorio Global'; +$a->strings['Local Directory'] = 'Directorio Local'; +$a->strings['Everyone'] = 'Todos'; +$a->strings['Relationships'] = 'Relaciones'; +$a->strings['All Contacts'] = 'Todos los contactos'; +$a->strings['Protocols'] = 'Protocolos'; +$a->strings['All Protocols'] = 'Todos los Protocolos'; +$a->strings['Saved Folders'] = 'Directorios guardados'; +$a->strings['Everything'] = 'Todo'; +$a->strings['Categories'] = 'Categorías'; +$a->strings['%d contact in common'] = [ + 0 => '%d contacto en común', + 1 => '%d contactos en común', + 2 => '%d contactos en común', +]; +$a->strings['Archives'] = 'Archivos'; +$a->strings['Persons'] = 'Personas'; +$a->strings['Organisations'] = 'Organizaciones'; +$a->strings['News'] = 'Noticias'; +$a->strings['Account Types'] = 'Tipos de cuenta'; +$a->strings['All'] = 'Todos'; +$a->strings['Export'] = 'Exportar'; +$a->strings['Export calendar as ical'] = 'Exportar calendario como ical'; +$a->strings['Export calendar as csv'] = 'Exportar calendario como csv'; +$a->strings['No contacts'] = 'Sin contactos'; +$a->strings['%d Contact'] = [ + 0 => '%d Contacto', + 1 => '%d Contactos', + 2 => '%d Contactos', +]; +$a->strings['View Contacts'] = 'Ver contactos'; +$a->strings['Remove term'] = 'Eliminar término'; +$a->strings['Saved Searches'] = 'Búsquedas guardadas'; +$a->strings['Trending Tags (last %d hour)'] = [ + 0 => 'Etiquetas tendencia (última %d hora)', + 1 => 'Etiquetas tendencia (últimas %d horas)', + 2 => 'Etiquetas tendencia (últimas %d horas)', +]; +$a->strings['More Trending Tags'] = 'Mas tendencias'; +$a->strings['XMPP:'] = 'XMPP:'; +$a->strings['Location:'] = 'Localización:'; +$a->strings['Network:'] = 'Red:'; +$a->strings['Unfollow'] = 'Dejar de Seguir'; +$a->strings['Yourself'] = 'Tu mismo'; +$a->strings['Mutuals'] = 'Mutuos'; +$a->strings['Post to Email'] = 'Publicar por Correo'; +$a->strings['Public'] = 'Público'; +$a->strings['This content will be shown to all your followers and can be seen in the community pages and by anyone with its link.'] = 'Este contenido se mostrará a tus seguidores y se podrá ver en laspáginas de la Comunidad y por cualquiera con este enlace.'; +$a->strings['Limited/Private'] = 'Limitado/Privado'; +$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.'] = 'Este contenido se mostrará solo a personas en el primer recuadro, aexcepción de personas mencionadas en el segundo recuadro. No aparecerápúblicamente.'; +$a->strings['Show to:'] = 'Mostrar a:'; +$a->strings['Except to:'] = 'Excepto a:'; +$a->strings['CC: email addresses'] = 'CC: dirección de correo'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Ejemplo: juan@ejemplo.com, maria@ejemplo.com'; +$a->strings['Connectors'] = 'Conectores'; +$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.'] = 'Archivo de configuración de la BD "config/local.config.php" no pudo ser escrito. Utilice el texto adjunto para crear un archivo de configuración en raíz del servidor web.'; +$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Puede que tengas que importar el archivo "database.sql" manualmente usando phpmyadmin o mysql.'; +$a->strings['Please see the file "doc/INSTALL.md".'] = 'De favor vea el archivo "doc/INSTALL.md".'; +$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'No se encontró versión de línea de comandos PHP en ruta del servidor web.'; +$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\''] = 'Si no tienes versión de comando de PHP instalado en tu servidor, no podras correr el proceso de fondo. Ver \'Configurar Worker\''; +$a->strings['PHP executable path'] = 'Ruta executable PHP'; +$a->strings['Enter full path to php executable. You can leave this blank to continue the installation.'] = 'Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación.'; +$a->strings['Command line PHP'] = 'Línea de comandos PHP'; +$a->strings['PHP executable is not the php cli binary (could be cgi-fgci version)'] = 'Ejecutable PHP no es php cli binary (podria ser versión cgi-fgci)'; +$a->strings['Found PHP version: '] = 'Versión PHP encontrada:'; +$a->strings['PHP cli binary'] = 'PHP cli binario'; +$a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'La versión en línea de comandos de PHP en tu sistema no tiene "register_argc_argv" habilitado.'; +$a->strings['This is required for message delivery to work.'] = 'Esto es requerido para que funcione la entrega de mensajes.'; +$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'] = 'Error: Función "openssl_pkey_new" en este sistema no es capaz de generar claves de cifrado'; +$a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'Si se ejecuta en Windows, por favor consulta la sección "http://www.php.net/manual/en/openssl.installation.php".'; +$a->strings['Generate encryption keys'] = 'Generar claves de encriptación'; +$a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Error: El módulo de Apache mod-rewrite es necesario pero no está instalado.'; +$a->strings['Apache mod_rewrite module'] = 'Módulo mod_rewrite de Apache'; +$a->strings['Error: PDO or MySQLi PHP module required but not installed.'] = 'Error: Módulo PDO o MySQLi PHP requerido pero no instalado.'; +$a->strings['Error: The MySQL driver for PDO is not installed.'] = 'Error: El dispositivo MySQL para PDO no está instalado.'; +$a->strings['PDO or MySQLi PHP module'] = 'Módulo PDO o MySQLi PHP'; +$a->strings['Error, XML PHP module required but not installed.'] = 'Error, módulo XML PHP requerido pero no instalado.'; +$a->strings['XML PHP module'] = 'Módulo XML PHP'; +$a->strings['libCurl PHP module'] = 'Módulo PHP libCurl'; +$a->strings['Error: libCURL PHP module required but not installed.'] = 'Error: El módulo de PHP libcurl es necesario, pero no está instalado.'; +$a->strings['GD graphics PHP module'] = 'Módulo PHP gráficos GD'; +$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Error: El módulo de de PHP gráficos GD con soporte JPEG es necesario, pero no está instalado.'; +$a->strings['OpenSSL PHP module'] = 'Módulo PHP OpenSSL'; +$a->strings['Error: openssl PHP module required but not installed.'] = 'Error: El módulo de PHP openssl es necesario, pero no está instalado.'; +$a->strings['mb_string PHP module'] = 'Módulo PHP mb_string'; +$a->strings['Error: mb_string PHP module required but not installed.'] = 'Error: El módulo de PHP mb_string es necesario, pero no está instalado.'; +$a->strings['iconv PHP module'] = 'Módulo PHP iconv'; +$a->strings['Error: iconv PHP module required but not installed.'] = 'Error: módulo iconv PHP requerido pero no instalado.'; +$a->strings['POSIX PHP module'] = 'Módulo PHP POSIX'; +$a->strings['Error: POSIX PHP module required but not installed.'] = 'Error: PHP POSIX requerido y no instalado.'; +$a->strings['Program execution functions'] = 'Funciones de ejecución de programa'; +$a->strings['JSON PHP module'] = 'Módulo PHP JSON'; +$a->strings['Error: JSON PHP module required but not installed.'] = 'Eror: Módulo PHP JSON requerido y no instalado.'; +$a->strings['File Information PHP module'] = 'Módulo PHP Información de Archivo'; +$a->strings['Error: File Information PHP module required but not installed.'] = 'Error: Módulo PHP Información de Archivo requerido y no instalado.'; +$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.'] = 'El instalador web debe poder crear un archivo llamado"local.config.php" en folder "config" de su servidor web y esincapaz de hacerlo.'; +$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.'] = 'Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú puedas.'; +$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.'] = 'Al final de este procedimiento, le daremos un texto para guardar en un archivollamado local.config.php en su folder "config" de Friendica .'; +$a->strings['You can alternatively skip this procedure and perform a manual installation. Please see the file "doc/INSTALL.md" for instructions.'] = 'Alternativamente, puede omitir este procedimiento y realizar una instalación manual. Consulte el archivo "doc/INSTALL.md" para instrucciones.'; +$a->strings['config/local.config.php is writable'] = 'config/local.config.php es escriturable'; +$a->strings['Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.'] = 'Friendica usa el motor de templates Smarty3 para renderizar su visualización web. Smarty3 compila templates PHP para acelerar la velocidad de renderizar.'; +$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.'] = 'Para poder guardar estos templates compilados, el servidor web necesita acceso de escritura en el directorio /view/smarty3/ en el árbol de raíz de la instalación friendica.'; +$a->strings['Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder.'] = 'Por favor asegure que el usuario que utiliza el servidor web (ejemplo: www-data) tiene permisos de escritura en esta carpeta.'; +$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.'] = 'Nota: como medida de seguridad deberia dar acceso de escritura solo a /view/smarty3 / → no al los archivos template (.tpl) que contiene.'; +$a->strings['view/smarty3 is writable'] = 'Se puede escribir en /view/smarty3'; +$a->strings['Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-dist to .htaccess.'] = 'La reescritura de URL en .htaccess parece no funcionar. Asegúrese de haber copiado .htaccess-dist a .htaccess.'; +$a->strings['In some circumstances (like running inside containers), you can skip this error.'] = 'En algunas circunstancias (como ejecutar dentro de contenedores), puede omitir este error.'; +$a->strings['Error message from Curl when fetching'] = 'Mensaje de Error de Curl en lectura'; +$a->strings['Url rewrite is working'] = 'Reescribiendo la dirección...'; +$a->strings['ImageMagick PHP extension is not installed'] = 'No está instalada la extensión ImageMagick PHP'; +$a->strings['ImageMagick PHP extension is installed'] = 'ImageMagick PHP extension is installed'; +$a->strings['ImageMagick supports GIF'] = 'ImageMagick supporta GIF'; +$a->strings['Database already in use.'] = 'Base de datos ya esta en uso'; +$a->strings['Could not connect to database.'] = 'No es posible conectar con Base Datos.'; +$a->strings['Monday'] = 'Lunes'; +$a->strings['Tuesday'] = 'Martes'; +$a->strings['Wednesday'] = 'Miércoles'; +$a->strings['Thursday'] = 'Jueves'; +$a->strings['Friday'] = 'Viernes'; +$a->strings['Saturday'] = 'Sábado'; +$a->strings['Sunday'] = 'Domingo'; +$a->strings['January'] = 'Enero'; +$a->strings['February'] = 'Febrero'; +$a->strings['March'] = 'Marzo'; +$a->strings['April'] = 'Abril'; +$a->strings['May'] = 'Mayo'; +$a->strings['June'] = 'Junio'; +$a->strings['July'] = 'Julio'; +$a->strings['August'] = 'Agosto'; +$a->strings['September'] = 'Septiembre'; +$a->strings['October'] = 'Octubre'; +$a->strings['November'] = 'Noviembre'; +$a->strings['December'] = 'Diciembre'; +$a->strings['Mon'] = 'Lun'; +$a->strings['Tue'] = 'Mar'; +$a->strings['Wed'] = 'Mie'; +$a->strings['Thu'] = 'Jue'; +$a->strings['Fri'] = 'Vie'; +$a->strings['Sat'] = 'Sab'; +$a->strings['Sun'] = 'Dom'; +$a->strings['Jan'] = 'Ene'; +$a->strings['Feb'] = 'Feb'; +$a->strings['Mar'] = 'Mar'; +$a->strings['Apr'] = 'Abr'; +$a->strings['Jun'] = 'Jun'; +$a->strings['Jul'] = 'Jul'; +$a->strings['Aug'] = 'Ago'; +$a->strings['Sep'] = 'Sep'; +$a->strings['Oct'] = 'Oct'; +$a->strings['Nov'] = 'Nov'; +$a->strings['Dec'] = 'Dec'; +$a->strings['The logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Tl archivo de log \'%s\' no se puede usar. No es posible el registro (error: \'%s\')'; +$a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'El archivo de log de debugg \'%s\' no puede usarse. No es posible el registro (error: \'%s\')'; +$a->strings['Friendica can\'t display this page at the moment, please contact the administrator.'] = 'Friendica no puede mostrar la página actualmente, contacte al administrador.'; +$a->strings['template engine cannot be registered without a name.'] = 'Motor de plantilla no puede registrarse sin nombre.'; +$a->strings['template engine is not registered!'] = 'Motor de Plantilla no esta registrado!'; +$a->strings['Storage base path'] = 'Ruta base de Almacenamiento'; +$a->strings['Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree'] = 'Carpeta para subir archivos guardada. Para mayor seguridad, Deberá ser una ruta fuera del folder del árbol web'; +$a->strings['Enter a valid existing folder'] = 'Ingresa un folder válido existente'; +$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.'] = 'Las actualizaciones de la versión %s no son compatibles. Actualice al menos a la versión 2021.01 y espere hasta que postupdate finalice con versión 1383.'; +$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.'] = 'Actualizaciones de postupdate versión %s no soportadas. Actualice al menos a versión 2021.01 y espere hasta que postupdate termine en version 1383.'; +$a->strings['%s: executing pre update %d'] = '%s: ejecutando pre update %d '; +$a->strings['%s: executing post update %d'] = '%s: ejecutando post update %d '; +$a->strings['Update %s failed. See error logs.'] = 'Falló la actualización de %s. Vea los registros de errores.'; +$a->strings[' + The friendica developers released update %s recently, + but when I tried to install it, something went terribly wrong. + This needs to be fixed soon and I can\'t do it alone. Please contact a + friendica developer if you can not help me on your own. My database might be invalid.'] = ' + Los desarrolladores liberaron una actualización reciente %s , + pero cuando se intentó instalar, algo salió mal. + Necesita arreglarse pronto y no se hará automáticamente. Contacta + al developer friendica si no puedes hacerlo tu mismo. La base de datos puede estar errónea.'; +$a->strings['The error message is\n[pre]%s[/pre]'] = 'El mensaje de error es\n[pre]%s[/pre]'; +$a->strings['[Friendica Notify] Database update'] = '[Notificación Friendica] Actualización de Base de Datos'; +$a->strings['The database version had been set to %s.'] = 'Versión de la Base de Datos establecida a %s.'; +$a->strings['The post update is at version %d, it has to be at %d to safely drop the tables.'] = 'La actualización de la publicación está en versión %d, debe estar en %d para eliminar las tablas de manera segura.'; +$a->strings['No unused tables found.'] = 'No hay tablas sin usar.'; +$a->strings['These tables are not used for friendica and will be deleted when you execute "dbstructure drop -e":'] = 'Estas tablas no se utilizan por friendica y se eliminarán cuando ejecute "dbstructure drop -e":'; +$a->strings['There are no tables on MyISAM or InnoDB with the Antelope file format.'] = 'No hay tablas en MyISAM o InnoDB con formato Antílope.'; +$a->strings[' +Error %d occurred during database update: +%s +'] = ' + +Error %d ocurrido durante la actualización de la base de datos: +%s +'; +$a->strings['Errors encountered performing database changes: '] = 'Errores encontrados al realizar cambios en la base de datos: '; +$a->strings['Another database update is currently running.'] = 'Otro update de la BD esta corriendo.'; +$a->strings['%s: Database update'] = '%s: Actualizar Base de Datos'; +$a->strings['%s: updating %s table.'] = '%s: actualizando %s tabla.'; +$a->strings['Record not found'] = 'Registro no encontrado'; +$a->strings['Unauthorized'] = 'No autorizado'; +$a->strings['Internal Server Error'] = 'Error Interno del Servidor'; +$a->strings['Legacy module file not found: %s'] = 'Modulo legado no encontrado: %s'; +$a->strings['Everybody'] = 'Todo el mundo'; +$a->strings['edit'] = 'editar'; +$a->strings['add'] = 'añadir'; +$a->strings['Approve'] = 'Aprobar'; +$a->strings['Organisation'] = 'Organización'; +$a->strings['Disallowed profile URL.'] = 'Dirección de perfil no permitida.'; +$a->strings['Blocked domain'] = 'Dominio bloqueado'; +$a->strings['Connect URL missing.'] = 'Falta el conector URL.'; +$a->strings['The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.'] = 'No pudo añadirse el contacto. Consulte las credenciales de red en Ajustes -> Redes Sociales.'; +$a->strings['The profile address specified does not provide adequate information.'] = 'La dirección del perfil especificado no proporciona información adecuada.'; +$a->strings['No compatible communication protocols or feeds were discovered.'] = 'No se ha descubierto protocolos de comunicación o fuentes compatibles.'; +$a->strings['An author or name was not found.'] = 'No se ha encontrado un autor o nombre.'; +$a->strings['No browser URL could be matched to this address.'] = 'Ninguna dirección concuerda con la suministrada.'; +$a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Imposible identificar la Identidad @-style con algún protocolo conocido o dirección de contacto.'; +$a->strings['Use mailto: in front of address to force email check.'] = 'Escribe mailto: al principio de la dirección para forzar el envío.'; +$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio.'; +$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas.'; +$a->strings['Unable to retrieve contact information.'] = 'No ha sido posible recibir la información del contacto.'; +$a->strings['Starts:'] = 'Inicio:'; +$a->strings['Finishes:'] = 'Final:'; +$a->strings['all-day'] = 'todo el día'; +$a->strings['Sept'] = 'Sept'; +$a->strings['today'] = 'hoy'; +$a->strings['month'] = 'mes'; +$a->strings['week'] = 'semana'; +$a->strings['day'] = 'día'; +$a->strings['No events to display'] = 'No hay eventos a mostrar'; +$a->strings['Access to this profile has been restricted.'] = 'El acceso a este perfil ha sido restringido.'; +$a->strings['l, F j'] = 'l, F j'; +$a->strings['Edit event'] = 'Editar evento'; +$a->strings['Duplicate event'] = 'Duplicar evento'; +$a->strings['Delete event'] = 'Borrar evento'; +$a->strings['l F d, Y \@ g:i A'] = 'l F d, Y \@ g:i A'; +$a->strings['D g:i A'] = 'D g:i A'; +$a->strings['g:i A'] = 'g:i A'; +$a->strings['Show map'] = 'Mostrar mapa'; +$a->strings['Hide map'] = 'Ocultar mapa'; +$a->strings['%s\'s birthday'] = 'Cumpleaños de %s'; +$a->strings['Happy Birthday %s'] = 'Feliz cumpleaños %s'; +$a->strings['Detected languages in this post:\n%s'] = 'Lenguajes detectados en artículo:\n%s'; +$a->strings['activity'] = 'Actividad'; +$a->strings['post'] = 'Publicación'; +$a->strings['Content warning: %s'] = 'Advertencia de contenido: %s'; +$a->strings['bytes'] = 'bytes'; +$a->strings['View on separate page'] = 'Ver en pagina aparte'; +$a->strings['[no subject]'] = '[sin asunto]'; +$a->strings['Wall Photos'] = 'Foto del Perfil'; +$a->strings['Edit profile'] = 'Editar perfil'; +$a->strings['Change profile photo'] = 'Cambiar foto del perfil'; +$a->strings['Homepage:'] = 'Inicio:'; +$a->strings['About:'] = 'Acerca de:'; +$a->strings['Atom feed'] = 'Atom feed'; +$a->strings['F d'] = 'F d'; +$a->strings['[today]'] = '[hoy]'; +$a->strings['Birthday Reminders'] = 'Recordatorios de cumpleaños'; +$a->strings['Birthdays this week:'] = 'Cumpleaños esta semana:'; +$a->strings['g A l F d'] = 'g A l F d'; +$a->strings['[No description]'] = '[Sin descripción]'; +$a->strings['Event Reminders'] = 'Recordatorios de eventos'; +$a->strings['Upcoming events the next 7 days:'] = 'Eventos de los próximos 7 dias:'; +$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s te da la bienvenida %2$s'; +$a->strings['Hometown:'] = 'Ciudad de origen:'; +$a->strings['Marital Status:'] = 'Estado civil:'; +$a->strings['With:'] = 'Con:'; +$a->strings['Since:'] = 'Desde:'; +$a->strings['Sexual Preference:'] = 'Preferencia sexual:'; +$a->strings['Political Views:'] = 'Ideas políticas:'; +$a->strings['Religious Views:'] = 'Creencias religiosas:'; +$a->strings['Likes:'] = 'Me gustan:'; +$a->strings['Dislikes:'] = 'No me gustan:'; +$a->strings['Title/Description:'] = 'Título/Descripción:'; +$a->strings['Summary'] = 'Resumen'; +$a->strings['Musical interests'] = 'Gustos musicales'; +$a->strings['Books, literature'] = 'Libros, literatura'; +$a->strings['Television'] = 'Televisión'; +$a->strings['Film/dance/culture/entertainment'] = 'Películas/baile/cultura/entretenimiento'; +$a->strings['Hobbies/Interests'] = 'Aficiones/Intereses'; +$a->strings['Love/romance'] = 'Amor/Romance'; +$a->strings['Work/employment'] = 'Trabajo/ocupación'; +$a->strings['School/education'] = 'Escuela/estudios'; +$a->strings['Contact information and Social Networks'] = 'Informacioń de contacto y Redes sociales'; +$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'ERROR GRAVE: Generación de claves de seguridad falló.'; +$a->strings['Login failed'] = 'Ingreso fallido'; +$a->strings['Not enough information to authenticate'] = 'Falta información para autenticación'; +$a->strings['Password can\'t be empty'] = 'La contraseña es requerida'; +$a->strings['Empty passwords are not allowed.'] = 'No se permiten contraseñas vacias'; +$a->strings['The new password has been exposed in a public data dump, please choose another.'] = 'La nueva contraseña ya se ha usado muchas veces, escoja otro.'; +$a->strings['Passwords do not match. Password unchanged.'] = 'Las contraseñas no coinciden. La contraseña no ha sido modificada.'; +$a->strings['An invitation is required.'] = 'Se requiere de invitación.'; +$a->strings['Invitation could not be verified.'] = 'No se puede verificar la invitación.'; +$a->strings['Invalid OpenID url'] = 'Dirección OpenID no válida'; +$a->strings['We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.'] = 'Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente.'; +$a->strings['The error message was:'] = 'El mensaje del error fue:'; +$a->strings['Please enter the required information.'] = 'Por favor, introduce la información necesaria.'; +$a->strings['system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values.'] = 'system.username_min_length (%s) y system.username_max_length (%s) son mutuamente excluyentes, los valores se sobreponen.'; +$a->strings['Username should be at least %s character.'] = [ + 0 => 'Usuario debe ser al menos %s caracter.', + 1 => 'Usuario debe ser al menos %s caracteres.', + 2 => 'Usuario debe ser al menos %s caracteres.', +]; +$a->strings['Username should be at most %s character.'] = [ + 0 => 'Usuario debe ser máximo %s caracter.', + 1 => 'Usuario debe ser máximo %s caracteres.', + 2 => 'Usuario debe ser máximo %s caracteres.', +]; +$a->strings['That doesn\'t appear to be your full (First Last) name.'] = 'No parece que ese sea tu nombre completo.'; +$a->strings['Your email domain is not among those allowed on this site.'] = 'Tu dominio de correo no se encuentra entre los permitidos en este sitio.'; +$a->strings['Not a valid email address.'] = 'No es una dirección de correo electrónico válida.'; +$a->strings['The nickname was blocked from registration by the nodes admin.'] = 'Ese nombre se bloquea a solicitud del administrador.'; +$a->strings['Cannot use that email.'] = 'No puede usarse ese correo electrónico.'; +$a->strings['Your nickname can only contain a-z, 0-9 and _.'] = 'Tu apodo solo puede contener a-z, 0 al 9 y guión bajo (_).'; +$a->strings['Nickname is already registered. Please choose another.'] = 'Apodo ya registrado. Por favor, elije otro.'; +$a->strings['An error occurred during registration. Please try again.'] = 'Se produjo un error durante el registro. Por favor, inténtalo de nuevo.'; +$a->strings['An error occurred creating your default profile. Please try again.'] = 'Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo.'; +$a->strings['An error occurred creating your self contact. Please try again.'] = 'Ocurrió un error creando el contacto. Vuelve a intentar.'; +$a->strings['Friends'] = 'Amigos'; +$a->strings['Profile Photos'] = 'Fotos del perfil'; +$a->strings[' + Dear %1$s, + the administrator of %2$s has set up an account for you.'] = ' + Estimado %1$s, + el administrador de %2$s te ha establecido una cuenta.'; +$a->strings['Registration details for %s'] = 'Detalles de registro para %s'; +$a->strings[' + Dear %1$s, + Thank you for registering at %2$s. Your account is pending for approval by the administrator. + + Your login details are as follows: + + Site Location: %3$s + Login Name: %4$s + Password: %5$s + '] = ' + Estimado %1$s, + Gracias por registrarte en %2$s. Tu cuenta esta en aprobación por los Administradores. + + Tus datos de ingreso son: + + Sitio - ubicación: %3$s + Usuario: %4$s + Contraseña: %5$s + '; +$a->strings['Registration at %s'] = 'Registro en %s'; +$a->strings[' + Dear %1$s, + Thank you for registering at %2$s. Your account has been created. + '] = ' + Estimado %1$s, + Gracias por registrarte en %2$s. Tu cuenta fue creada. + '; +$a->strings['Addon not found.'] = 'Añadido no encontrado.'; +$a->strings['Addon %s disabled.'] = 'Añadido %s deshabilitado.'; +$a->strings['Addon %s enabled.'] = 'Añadido %s habilitado.'; +$a->strings['Disable'] = 'Desactivar'; +$a->strings['Enable'] = 'Activar'; +$a->strings['Administration'] = 'Administración'; +$a->strings['Addons'] = 'Añadidos'; +$a->strings['Toggle'] = 'Activar'; +$a->strings['Author: '] = 'Autor: '; +$a->strings['Maintainer: '] = 'Mantenedor: '; +$a->strings['Addons reloaded'] = 'Añadidos re cargados'; +$a->strings['Addon %s failed to install.'] = 'Instalación de Añadido %s falló'; +$a->strings['Save Settings'] = 'Guardar configuración'; +$a->strings['Reload active addons'] = 'Añadidos activos re cargados'; +$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'] = 'No hay añadidos disponibles en el nodo. Puedes encontrar el repositorio oficial en %1$s y puedes encontrar otros interesantes en el registro de añadidos en %2$s'; +$a->strings['Update has been marked successful'] = 'La actualización se ha completado con éxito'; +$a->strings['Database structure update %s was successfully applied.'] = 'Actualización de base de datos %s fue aplicada con éxito.'; +$a->strings['Executing of database structure update %s failed with error: %s'] = 'El paso de actualización de la estructura de la base de datos %s fallo con el mensaje de error: %s'; +$a->strings['Executing %s failed with error: %s'] = 'Paso %s fallo con el error: %s'; +$a->strings['Update %s was successfully applied.'] = 'Actualización %s aplicada con éxito.'; +$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'La actualización %s no ha informado, se desconoce el estado.'; +$a->strings['There was no additional update function %s that needed to be called.'] = 'No había función adicional de actualización %s que necesitaba ser requerida.'; +$a->strings['No failed updates.'] = 'Actualizaciones sin fallos.'; +$a->strings['Check database structure'] = 'Revisar estructura de la base de datos'; +$a->strings['Failed Updates'] = 'Actualizaciones fallidas'; +$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'No se incluyen las anteriores a la 1139, que no indicaban su estado.'; +$a->strings['Mark success (if update was manually applied)'] = 'Marcar como correcta (si actualizaste manualmente)'; +$a->strings['Attempt to execute this update step automatically'] = 'Intentando ejecutar este paso automáticamente'; +$a->strings['Lock feature %s'] = 'Bloquear opción %s '; +$a->strings['Manage Additional Features'] = 'Administrar opciones adicionales'; +$a->strings['Other'] = 'Otro'; +$a->strings['unknown'] = 'desconocido'; +$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.'] = 'Esta pagina ofrece algunos datos sobre la red conocida a la que tu nodo friendica esta conectado. Estos nummeros no son completos respecto a las redes federadas, si no refleja los nodos esta instancia conoce.'; +$a->strings['Federation Statistics'] = 'Estadísticas de federación'; +$a->strings['The logfile \'%s\' is not writable. No logging possible'] = 'El archivo de Log \'%s\' no es escriturable. No puede registrar Log.'; +$a->strings['PHP log currently enabled.'] = 'Registro PHP actualmente disponible.'; +$a->strings['PHP log currently disabled.'] = 'Registro PHP actualmente deshabilitado.'; +$a->strings['Logs'] = 'Registros'; +$a->strings['Clear'] = 'Limpiar'; +$a->strings['Enable Debugging'] = 'Habilitar debugging'; +$a->strings['Log file'] = 'Archivo de registro'; +$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Debes tener permiso de escritura en el servidor. Relacionado con tu directorio de inicio de Friendica.'; +$a->strings['Log level'] = 'Nivel de registro'; +$a->strings['PHP logging'] = 'PHP logging'; +$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.'] = 'Para habilitar temporalmente el registro de errores y advertencias de PHP, puede anteponer lo siguiente al archivo index.php de su instalación. El nombre de archivo establecido en la línea \'error_log\' es relativo al directorio de nivel superior de Friendica y debe poder escribirse por el servidor. La opción \'1\' para \'log_errors\' y \'display_errors\' es para habilitar estas opciones, establezca en \'0\' para deshabilitarlas.'; +$a->strings['View Logs'] = 'Ver registro de depuración'; +$a->strings['Show all'] = 'Mostrar todo'; +$a->strings['Event details'] = 'Detalles del evento'; +$a->strings['Source'] = 'Fuente'; +$a->strings['Inspect Deferred Worker Queue'] = 'Inspeccionar Cola diferida de Workers'; +$a->strings['This page lists the deferred worker jobs. This are jobs that couldn\'t be executed at the first time.'] = 'Esta página enumera los jobs de los Workers diferidos. Estos son jobs que no se pudieron ejecutar la primera vez.'; +$a->strings['Inspect Worker Queue'] = 'Inspeccionar Cola de Workers'; +$a->strings['This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you\'ve set up during install.'] = 'Esta página enumera los jobs de workers actualmente en cola. Estos Jobs son manejados por el cronjob de trabajador que configuró durante la instalación.'; +$a->strings['ID'] = 'ID'; +$a->strings['Job Parameters'] = 'Parámetros del Job'; +$a->strings['Created'] = 'Creado'; +$a->strings['Priority'] = 'Prioridad'; +$a->strings['No special theme for mobile devices'] = 'No hay tema especial para dispositivos móviles'; +$a->strings['%s - (Experimental)'] = '%s - (Experimental)'; +$a->strings['No community page'] = 'No hay pagina de comunidad'; +$a->strings['Public postings from users of this site'] = 'Temas públicos de perfiles de este sitio.'; +$a->strings['Public postings from the federated network'] = 'Artículos públicos de Redes Federadas'; +$a->strings['Public postings from local users and the federated network'] = 'Artículos públicos de Usuarios Locales y Redes Federadas'; +$a->strings['Multi user instance'] = 'Sesión multi usuario'; +$a->strings['Closed'] = 'Cerrado'; +$a->strings['Requires approval'] = 'Requiere aprobación'; +$a->strings['Open'] = 'Abierto'; +$a->strings['Don\'t check'] = 'No verificar'; +$a->strings['check the stable version'] = 'verifique la versión estable'; +$a->strings['check the development version'] = 'verifica la versión de desarrollo'; +$a->strings['none'] = 'ninguno'; +$a->strings['Local contacts'] = 'Contactos Locales'; +$a->strings['Interactors'] = 'Interactores'; +$a->strings['Site'] = 'Sitio'; +$a->strings['General Information'] = 'Información General'; +$a->strings['Republish users to directory'] = 'Republicar usuarios al Directorio'; +$a->strings['Registration'] = 'Registro'; +$a->strings['File upload'] = 'Subida de archivo'; +$a->strings['Policies'] = 'Políticas'; +$a->strings['Advanced'] = 'Avanzado'; +$a->strings['Auto Discovered Contact Directory'] = 'Directorio de contactos descubierto automáticamente'; +$a->strings['Performance'] = 'Rendimiento'; +$a->strings['Worker'] = 'Worker'; +$a->strings['Message Relay'] = 'Retransmisión de Mensajes'; +$a->strings['Site name'] = 'Nombre del sitio'; +$a->strings['Sender Email'] = 'Correo que Envía'; +$a->strings['The email address your server shall use to send notification emails from.'] = 'La dirección de correo electrónico que el servidor debería usar como dirección de envío.'; +$a->strings['Name of the system actor'] = 'Nombre del actor del Sistema'; +$a->strings['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.'] = 'Nombre de la cuenta del sistema interno que se utiliza para realizar solicitudes de ActivityPub. Debe ser un nombre de usuario no utilizado. Si se establece, esto no se puede volver a cambiar.'; +$a->strings['Banner/Logo'] = 'Imagen/Logotipo'; +$a->strings['Email Banner/Logo'] = 'Logo del Correo'; +$a->strings['Shortcut icon'] = 'Icono del Enlace'; +$a->strings['Link to an icon that will be used for browsers.'] = 'Enlace hacia un icono que sera usado para el navegador.'; +$a->strings['Touch icon'] = 'Icono Tocar'; +$a->strings['Link to an icon that will be used for tablets and mobiles.'] = 'Enlace a un icono que sera usado para tablets y moviles.'; +$a->strings['Additional Info'] = 'Información Adicional'; +$a->strings['For public servers: you can add additional information here that will be listed at %s/servers.'] = 'Servidores Públicos: Puedes añadir información adicional aqui que será listada por los servidores %s/servers.'; +$a->strings['System language'] = 'Lenguaje del Sistema'; +$a->strings['System theme'] = 'Tema del Sistema'; +$a->strings['Mobile system theme'] = 'Tema de sistema móvil'; +$a->strings['Theme for mobile devices'] = 'Tema para dispositivos móviles'; +$a->strings['Force SSL'] = 'Forzar SSL'; +$a->strings['Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'] = 'Forzar todos las consultas No-SSL a SSL. - ATENCIÓN: en algunos sistemas esto puede generar comportamiento recursivo interminable.'; +$a->strings['Single user instance'] = 'Sesión de usuario único'; +$a->strings['Make this instance multi-user or single-user for the named user'] = 'Haz esta sesión multi-usuario o usuario único para el usuario'; +$a->strings['Maximum image size'] = 'Tamaño máximo de la imagen'; +$a->strings['Maximum image length'] = 'Largo máximo de imagen'; +$a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Longitud máxima en píxeles del lado más largo de las imágenes subidas. Por defecto es -1, que significa que no hay límites.'; +$a->strings['JPEG image quality'] = 'Calidad de imagen JPEG'; +$a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = 'Los archivos JPEG subidos se guardarán con este ajuste de calidad [0-100]. Por defecto es 100, que es calidad máxima.'; +$a->strings['Register policy'] = 'Política de registros'; +$a->strings['Maximum Daily Registrations'] = 'Registros Máximos Diarios'; +$a->strings['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.'] = 'Si anteriormente se ha permitido el registro, esto establece el número máximo de registro de nuevos usuarios aceptados por día. Si el registro se establece como cerrado, esta opción no tiene efecto.'; +$a->strings['Register text'] = 'Términos'; +$a->strings['Will be displayed prominently on the registration page. You can use BBCode here.'] = 'Se mostrará de forma destacada en la página de registro. Puede utilizar BBCode aquí.'; +$a->strings['Forbidden Nicknames'] = 'Apodos Prohibidos'; +$a->strings['Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142.'] = 'Lista separada por comas de apodos cuyo registro está prohibido. Lo Preestablecido es una lista de nombres de roles según RFC 2142.'; +$a->strings['Accounts abandoned after x days'] = 'Cuentas abandonadas después de x días'; +$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = 'No gastará recursos del sistema creando sondeos a sitios externos para cuentas abandonadas. Introduce 0 para ningún límite temporal.'; +$a->strings['Allowed friend domains'] = 'Dominios amigos permitidos'; +$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Lista separada por comas de los dominios que están autorizados para establecer conexiones con este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio'; +$a->strings['Allowed email domains'] = 'Dominios de correo permitidos'; +$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Lista separada por comas de los dominios que están autorizados en las direcciones de correo para registrarse en este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio'; +$a->strings['No OEmbed rich content'] = 'No hay contenido enriquecido OEmbed'; +$a->strings['Don\'t show the rich content (e.g. embedded PDF), except from the domains listed below.'] = 'No muestre el contenido enriquecido (por ejemplo, PDF incrustado), excepto de los dominios que se enumeran a continuación.'; +$a->strings['Trusted third-party domains'] = 'Dominios terceros de confianza'; +$a->strings['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.'] = 'Lista separada por comas de dominios de los que se permite incrustar contenido en publicaciones como con OEmbed. También se permiten todos los subdominios de los dominios enumerados.'; +$a->strings['Block public'] = 'Bloqueo público'; +$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Marca para bloquear el acceso público a todas las páginas personales, aún siendo públicas, hasta que no hayas iniciado tu sesión.'; +$a->strings['Force publish'] = 'Forzar publicación'; +$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Marca para forzar que todos los perfiles de este sitio sean listados en el directorio del sitio.'; +$a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Habilitar esto puede violar leyes de privacidad como GDPR'; +$a->strings['Global directory URL'] = 'URL del directorio global.'; +$a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'URL del directorio global. Si se deja este campo vacío, el directorio global sera completamente inaccesible para la instancia.'; +$a->strings['Private posts by default for new users'] = 'Publicaciones privadas por defecto para usuarios nuevos'; +$a->strings['Don\'t include post content in email notifications'] = 'No incluir el contenido del post en las notificaciones de correo electrónico'; +$a->strings['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.'] = 'No incluye el contenido de un mensaje/comentario/mensaje privado/etc. en las notificaciones de correo electrónico que se envían desde este sitio, como una medida de privacidad.'; +$a->strings['Disallow public access to addons listed in the apps menu.'] = 'Deshabilitar acceso a addons listados en el menú de aplicaciones.'; +$a->strings['Checking this box will restrict addons listed in the apps menu to members only.'] = 'Habilitando esta opción restringe el acceso a addons en el menú de aplicaciones a usuarios identificados.'; +$a->strings['Don\'t embed private images in posts'] = 'No agregar imágenes privados en las publicaciones'; +$a->strings['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.'] = 'No reemplazar imágenes privadas guardadas localmente en el servidor con imágenes integrados en los envíos. Esto significa que contactos que reciben publicaciones tendrán que autenticarse y cargar cada imagen, lo que puede demorar.'; +$a->strings['Explicit Content'] = 'Contenido Explicito'; +$a->strings['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.'] = 'Configure esto para anunciar si su nodo se usa principalmente para contenido explícito que podría no ser adecuado para menores. Esta información se publicaría en la información del nodo y podría ser utilizada, por ejemplo, por el Directorio Global, para filtrar su nodo de las listas de nodos. Para unirse. Además, se mostrará una nota sobre esto en la página de registro del usuario.'; +$a->strings['Allow Users to set remote_self'] = 'Permitir a los usuarios de definir remote_self (yo-remoto)'; +$a->strings['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.'] = 'Al habilitar esta opción, cada perfil tiene el permiso de marcar cualquiera de sus contactos como un perfil_remoto. Habilitar la opción perfil_remoto para un contacto genera que todas las publicaciones de este contacto seran re-publicado en el muro del perfil.'; +$a->strings['Community pages for visitors'] = 'Paginas de Comunidad para Visitantes'; +$a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = 'Que comunidades deben estar disponibles para visitantes. Usuarios locales siempre ven ambas páginas.'; +$a->strings['Posts per user on community page'] = 'Publicaciones por usuario en la pagina de comunidad'; +$a->strings['The maximum number of posts per user on the community page. (Not valid for "Global Community")'] = 'Número máximo de artículos por usuario de página Fediverso. (No válido para "Fediverso Global")'; +$a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'El soporte para Diaspora* no se puede habilitar porque friendica se instalo en un directorio subalterno (sub directory).'; +$a->strings['Enable Diaspora support'] = 'Habilitar el soporte para Diaspora*'; +$a->strings['Verify SSL'] = 'Verificar SSL'; +$a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = 'Si quieres puedes activar la comprobación estricta de certificados. Esto significa que serás incapaz de conectar con ningún sitio que use certificados SSL autofirmados.'; +$a->strings['Proxy user'] = 'Usuario proxy'; +$a->strings['Proxy URL'] = 'Dirección proxy'; +$a->strings['Network timeout'] = 'Tiempo de espera de red'; +$a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Valor en segundos. Usar 0 para dejarlo sin límites (no se recomienda).'; +$a->strings['Maximum Load Average'] = 'Promedio de carga máxima'; +$a->strings['Maximum system load before delivery and poll processes are deferred - default %d.'] = 'Carga máxima del sistema antes de entrega y envío son retrasados - default %d.'; +$a->strings['Minimal Memory'] = 'Memoria Mínima'; +$a->strings['Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).'] = 'Memoria mínima en MB del worker. Necesita acceso a /proc/meminfo - default 0 (desactivado).'; +$a->strings['Periodically optimize tables'] = 'Periodicamente optimizar tablas'; +$a->strings['Periodically optimize tables like the cache and the workerqueue'] = 'Periódicamente optimizar tablas como Cache y cola de worker'; +$a->strings['Discover followers/followings from contacts'] = 'Descubrir seguidores/seguimientos de contactos'; +$a->strings['If enabled, contacts are checked for their followers and following contacts.'] = 'Si lo habilita, se checan contactos por sus seguidores y sus contactos.'; +$a->strings['None - deactivated'] = 'Ninguno - desactivado'; +$a->strings['Local contacts - contacts of our local contacts are discovered for their followers/followings.'] = 'Contactos locales - contactos de nuestros contactos locales buscados por seguidores/seguimientos.'; +$a->strings['Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings.'] = 'Interactores - contactos de contactos locales y contactos que interactuan en artículos locales son buscados por sus seguidores/seguimientos.'; +$a->strings['Synchronize the contacts with the directory server'] = 'Sincronizar los contactos con el servidor de directorio'; +$a->strings['if enabled, the system will check periodically for new contacts on the defined directory server.'] = 'Si habilta, el sistema checará periodicamente por nuevos contactos en el servidor de directorio definido.'; +$a->strings['Days between requery'] = 'Días entre búsquedas'; +$a->strings['Number of days after which a server is requeried for his contacts.'] = 'Cantidad de días hasta que un servidor es consultado por sus contactos.'; +$a->strings['Discover contacts from other servers'] = 'Descubrir contactos de otros servidores'; +$a->strings['Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers.'] = 'Periodicamente buscar contactos en servidores. Buscar en Friendica, Mastodon y Hubzilla.'; +$a->strings['Search the local directory'] = 'Buscar el directorio local'; +$a->strings['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.'] = 'Buscar en el directorio local en vez del directorio global. Cuando se busca localmente, cada búsqueda sera efectuada en el directorio global en el background. Esto mejora los resultados de la búsqueda cuando la misma es repetida.'; +$a->strings['Publish server information'] = 'Publicar información del servidor'; +$a->strings['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.'] = 'Si se habilita, se publicarán datos de uso y servidor. Contiene nombre y versión del servidor, usuarios con perfiles públicos, no. de artículos, protocolos activos y conectores. Ver the-federation.info para mas detalles.'; +$a->strings['Check upstream version'] = 'Verifique la versión ascendente'; +$a->strings['Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview.'] = 'Permite verificar nuevas versiones de Friendica en Github. Si hay una nueva versión, se le informará en el panel de administración.'; +$a->strings['Suppress Tags'] = 'Suprimir etiquetas'; +$a->strings['Suppress showing a list of hashtags at the end of the posting.'] = 'Suprimir la lista de tags al final de una publicación.'; +$a->strings['Clean database'] = 'Limpiar Base de Datos'; +$a->strings['Remove old remote items, orphaned database records and old content from some other helper tables.'] = 'Borrar artículos viejos remotos, registros de BD huerfanos y algunos viejos de tablas auxiliares.'; +$a->strings['Lifespan of remote items'] = 'Tiempo de vida de artículos remotos'; +$a->strings['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.'] = 'Cuando habilita limpieza de BD, define los días en que artículos remotos serán borrados. Propios, marcados o archivados son siempre conservados. 0 deshabilita este comportamiento.'; +$a->strings['Lifespan of unclaimed items'] = 'Tiempo de vida de artículos no reclamados'; +$a->strings['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.'] = 'Cuando se habilita limpieza de BD, esto define los dias en que los articulos ignorados remotos (mas que nada contenido del Relay) serán borrados. Valor Default es 90 días. Es default del tiempo de vida general de artículos remotos se setea en 0.'; +$a->strings['Lifespan of raw conversation data'] = 'Tiempo de vida de datos de conversación '; +$a->strings['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.'] = 'Los datos de conversación son usados por ActivityPub y OStatus, también por propósito de Debugg. Debe ser seguro borrarlos después de 14 dias, default es 90 días.'; +$a->strings['Maximum numbers of comments per post'] = 'Numero máximo de respuestas por tema'; +$a->strings['How much comments should be shown for each post? Default value is 100.'] = '¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100.'; +$a->strings['Maximum numbers of comments per post on the display page'] = 'Maximo numero de comentarios por artículo de página de despliegue'; +$a->strings['How many comments should be shown on the single view for each post? Default value is 1000.'] = 'Cuantos comentarios deben ser mostrados en una sola vista por cada uno? Valor default es 1000.'; +$a->strings['Temp path'] = 'Ruta a los temporales'; +$a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Si tiene un sistema restringido en donde el servidor web no puede acceder la dirección del sistema temp, ingrese una dirección alternativa aquí. '; +$a->strings['Only search in tags'] = 'Solo buscar en tags'; +$a->strings['On large systems the text search can slow down the system extremely.'] = 'En sistemas grandes, la búsqueda de texto puede enlentecer el sistema gravemente.'; +$a->strings['Maximum number of parallel workers'] = 'Numero máximo de trabajos paralelos de fondo.'; +$a->strings['On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d.'] = 'En hosts compartidos ponga a %d. En sistemas grandes, valores de %d estan bien. Valor Default es %d.'; +$a->strings['Enable fastlane'] = 'Habilitar ascenso rápido'; +$a->strings['When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.'] = 'Cuando está habilitado, el mecanismo ascenso rápido inicia un trabajador adicional si los procesos de mayor prioridad son bloqueados por prcesos de menor prioridad.'; +$a->strings['Direct relay transfer'] = 'Transferencia directa del Reenvío'; +$a->strings['Enables the direct transfer to other servers without using the relay servers'] = 'Habilita transferencia directa a otros servidores sin usar servidores de reenvío'; +$a->strings['Relay scope'] = 'Enfoque del Reenvío'; +$a->strings['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.'] = 'Puede ser "all" o "tags". "all" significa que cada artículo público será recibido. "tags" sólo artículos de esas etiquetas deben ser recibidos.'; +$a->strings['Disabled'] = 'Deshabilitado'; +$a->strings['all'] = 'todas'; +$a->strings['tags'] = 'etiquetas'; +$a->strings['Server tags'] = 'Etiquetas del Servidor'; +$a->strings['Comma separated list of tags for the "tags" subscription.'] = 'Lista separada por comas de etiquetas de suscripción "tags".'; +$a->strings['Deny Server tags'] = 'Denegar etiquetas de Servidor'; +$a->strings['Comma separated list of tags that are rejected.'] = 'Lista separada por comas de etiquetas denegadas.'; +$a->strings['Allow user tags'] = 'Permitir etiquetas de Usuario'; +$a->strings['If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".'] = 'Si se habilita, etiquetas de las búsquedas grabadas serán usadas para suscripción de "tags" además de "relay_server_tags".'; +$a->strings['Start Relocation'] = 'Iniciar Relocación'; +$a->strings['Invalid storage backend setting value.'] = 'Valor de configuración de backend de almacenamiento no válido.'; +$a->strings['Database (legacy)'] = 'Base de Datos (legada)'; +$a->strings['Template engine (%s) error: %s'] = 'Error (%s) en Motor de plantilla: %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.
    '] = 'Tu BD corre con tablas MyISAM. Debes cambiar al motor InnoDB. Pues Friendica usará solo InnoDB en el futuro, debes cambiarlo! Ver esto como guía de ayuda para convertir el motor de tablas. Podrías usar también el comando php bin/console.php dbstructure toinnodb de tu instalación Friendica para conversión automática.
    '; +$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.
    '] = 'Tu BD corre con tablas InnoDB. En formato de archivo Antelope. Debes cambiar al formato de archivos Barracuda. Friendica usa opciones que no provee el formato Antelope. Ver esto como guía de ayuda para convertir el motor de tablas. Podrías usar también el comando php bin/console.php dbstructure toinnodb de tu instalación Friendica para conversión automática.
    '; +$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.
    '] = 'El \'table_definition_cache\' es muy corto (%d). puede acarrear error de BD "Sentencia preparada debe ser Re-preparada". Setealo al menos a %d. Ver here para mas información.
    '; +$a->strings['There is a new version of Friendica available for download. Your current version is %1$s, upstream version is %2$s'] = 'Hay una nueva versión de Friendica disponible para descargar. Su versión actual es %1$s, la versión ascendente es %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.'] = 'Actualización de la BD Falló. Ejecute "php bin/console.php dbstructure update" desde línea de comandos y revise los errores que puedan haber ocurrido.'; +$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.)'] = 'La última actualización falló. Ejecute "php bin/console.php dbstructure update" desde línea de comandos y revise los errores que puedan haber ocurrido. (Algunos aparecerán en archivo de log.)'; +$a->strings['The worker was never executed. Please check your database structure!'] = 'El worker nunca fue ejecutado. ¡Revise la estructura de su BD!'; +$a->strings['The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings.'] = 'La última ejecución del trabajador fue a las %s UTC. Anterior a una hora. Revise su configuración de crontab.'; +$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.'] = 'Configuración Friendica ahora se almacena en config/local.config.php, copie config/local-sample.config.php y mueva su configuración de .htconfig.php. Ver página de ayuda como ayuda en la transición.'; +$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.'] = 'Configuración Friendica ahora se almacena en config/local.config.php, copie config/local-sample.config.php y mueva su configuración de config/local.ini.php. Ver página de ayuda como ayuda en la transición.'; +$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.'] = '%s no se alcanza en tu sistema. Es un error grave en la configuración que evita la comunicación de servidor a servidor. Ver la página de instalación como ayuda.'; +$a->strings['Friendica\'s system.basepath was updated from \'%s\' to \'%s\'. Please remove the system.basepath from your db to avoid differences.'] = 'La ruta Friendica system.basepath se actualizó de \'%s\' a \'%s\'. Quite la system.basepath de tu BD para evitar diferencias.'; +$a->strings['Friendica\'s current system.basepath \'%s\' is wrong and the config file \'%s\' isn\'t used.'] = 'Ruta actual Friendica system.basepath \'%s\' es errónea y el archivo de configuración \'%s\' no se usa.'; +$a->strings['Friendica\'s current system.basepath \'%s\' is not equal to the config file \'%s\'. Please fix your configuration.'] = 'Ruta actual de Friendica system.basepath \'%s\' no es igual al archivo config \'%s\'. Corrija su configuración.'; +$a->strings['Message queues'] = 'Cola de mensajes'; +$a->strings['Server Settings'] = 'Ajustes del Servidor'; +$a->strings['Version'] = 'Versión'; +$a->strings['Active addons'] = 'Añadidos Activos'; +$a->strings['Theme %s disabled.'] = 'Tema %s desactivado'; +$a->strings['Theme %s successfully enabled.'] = 'Tema %s activado con éxito.'; +$a->strings['Theme %s failed to install.'] = 'El Tema %s no se pudo instalar.'; +$a->strings['Screenshot'] = 'Captura de pantalla'; +$a->strings['Themes'] = 'Temas'; +$a->strings['Unknown theme.'] = 'Tema desconocido.'; +$a->strings['Themes reloaded'] = 'Temas reacargados'; +$a->strings['Reload active themes'] = 'Recargar Temas activos'; +$a->strings['No themes found on the system. They should be placed in %1$s'] = 'No hay Temas en el Sistema, Deben situarse en %1$s'; +$a->strings['[Experimental]'] = '[Experimental]'; +$a->strings['[Unsupported]'] = '[No soportado]'; +$a->strings['Display Terms of Service'] = 'Mostrar los Términos de Servicio'; +$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.'] = 'Habilitar la página de los Términos de Servicio. Si esto está activo un enlace a los términos será adicionado al formulario de registro y en la página de información general.'; +$a->strings['Display Privacy Statement'] = 'Mostrar las Directivas de Privacidad'; +$a->strings['Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR.'] = 'Muestre información en cuanto a información requerida para operar el nodo de acuerdo ej. para EU-GDPR.'; +$a->strings['Privacy Statement Preview'] = 'Vista previa de Política de Privacidad'; +$a->strings['The Terms of Service'] = 'Los Términos de Servicio'; +$a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = 'Introduzca los Términos de Servicio para tu nodo aquí. Puedes usar BBCode. Cabeceras de sección deberían ser [2] e inferior.'; +$a->strings['Contact not found'] = 'Contacto no Encontrado'; +$a->strings['No installed applications.'] = 'Sin aplicaciones instaladas'; +$a->strings['Applications'] = 'Aplicaciones'; +$a->strings['Item was not found.'] = 'Elemento no encontrado.'; +$a->strings['Please login to continue.'] = 'Inicia sesión para continuar.'; +$a->strings['You don\'t have access to administration pages.'] = 'No tienes acceso a las páginas de administración.'; +$a->strings['Submanaged account can\'t access the administration pages. Please log back in as the main account.'] = 'La cuenta subadministrada no puede acceder a las páginas de administración. Vuelva a iniciar sesión como cuenta principal.'; +$a->strings['Overview'] = 'Resumen'; +$a->strings['Configuration'] = 'Configuración'; +$a->strings['Additional features'] = 'Características adicionales'; +$a->strings['Database'] = 'Base de Datos'; +$a->strings['DB updates'] = 'Actualizaciones de la Base de Datos'; +$a->strings['Inspect Deferred Workers'] = 'Workers diferidos Inspeccionados'; +$a->strings['Inspect worker Queue'] = 'Inspeccionar Cola de Workers'; +$a->strings['Diagnostics'] = 'Diagnósticos'; +$a->strings['PHP Info'] = 'Información PHP'; +$a->strings['probe address'] = 'probar direccion'; +$a->strings['check webfinger'] = 'Verificar webfinger'; +$a->strings['Babel'] = 'Babel'; +$a->strings['ActivityPub Conversion'] = 'Conversión a ActivityPub'; +$a->strings['Addon Features'] = 'Funciones de los Añadidos'; +$a->strings['User registrations waiting for confirmation'] = 'Registro de usuarios esperando la confirmación'; +$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Limite diario de %d publicación alcanzado. La publicación fue rechazada.', + 1 => 'Limite diario de %d publicaciones alcanzado. La publicación fue rechazada.', + 2 => 'Limite diario de %d publicaciones alcanzado. La publicación fue rechazada.', +]; +$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Limite semanal de %d publicación alcanzado. La publicación fue rechazada.', + 1 => 'Limite semanal de %d publicaciones alcanzado. La publicación fue rechazada.', + 2 => 'Limite semanal de %d publicaciones alcanzado. La publicación fue rechazada.', +]; +$a->strings['Users'] = 'Usuarios'; +$a->strings['Tools'] = 'Herramientas'; +$a->strings['Contact Blocklist'] = 'Lista de Contactos Bloqueados'; +$a->strings['Server Blocklist'] = 'Lista de Bloqueo del Servidor'; +$a->strings['Delete Item'] = 'Eliminar Artículo'; +$a->strings['Item Source'] = 'Artículo fuente'; +$a->strings['Profile Details'] = 'Detalles del Perfil'; +$a->strings['Only You Can See This'] = 'Únicamente tú puedes ver esto'; +$a->strings['Tips for New Members'] = 'Consejos para nuevos miembros'; +$a->strings['People Search - %s'] = 'Buscar personas - %s'; +$a->strings['No matches'] = 'Sin resultados'; +$a->strings['Account'] = 'Cuenta'; +$a->strings['Two-factor authentication'] = 'Ingreso de 2 factores'; +$a->strings['Display'] = 'Interfaz del usuario'; +$a->strings['Social Networks'] = 'Redes sociales'; +$a->strings['Manage Accounts'] = 'Gestionar cuentas'; +$a->strings['Connected apps'] = 'Aplicaciones conectadas'; +$a->strings['Export personal data'] = 'Exportación de datos personales'; +$a->strings['Remove account'] = 'Eliminar cuenta'; +$a->strings['This page is missing a url parameter.'] = 'A la página le falta URL.'; +$a->strings['The post was created'] = 'El Artículo fue creada'; +$a->strings['Failed to remove event'] = 'Error al eliminar el evento'; +$a->strings['Event can not end before it has started.'] = 'Un evento no puede terminar antes de su inicio.'; +$a->strings['Event title and start time are required.'] = 'Título del evento y hora de inicio requeridas.'; +$a->strings['Starting date and Title are required.'] = 'Se requiere fecha de comienzo y titulo'; +$a->strings['Event Starts:'] = 'Inicio del evento:'; +$a->strings['Required'] = 'Obligatorio'; +$a->strings['Finish date/time is not known or not relevant'] = 'La fecha/hora de finalización no es conocida o es irrelevante.'; +$a->strings['Event Finishes:'] = 'Finalización del evento:'; +$a->strings['Share this event'] = 'Comparte este evento'; +$a->strings['Basic'] = 'Basic'; +$a->strings['This calendar format is not supported'] = 'Este formato de calendario no se soporta'; +$a->strings['No exportable data found'] = 'No hay información exportable'; +$a->strings['calendar'] = 'calendario'; +$a->strings['Events'] = 'Eventos'; +$a->strings['View'] = 'Vista'; +$a->strings['Create New Event'] = 'Crea un evento nuevo'; +$a->strings['list'] = 'lista'; +$a->strings['Contact not found.'] = 'Contacto no encontrado.'; +$a->strings['Invalid contact.'] = 'Contacto erróneo.'; +$a->strings['Contact is deleted.'] = 'El contacto se borra.'; +$a->strings['Bad request.'] = 'Petición no reconocida'; +$a->strings['Filter'] = 'Filtro'; +$a->strings['Members'] = 'Miembros'; +$a->strings['Click on a contact to add or remove.'] = 'Pulsa en un contacto para añadirlo o eliminarlo.'; +$a->strings['%d contact edited.'] = [ + 0 => '%d contacto editado.', + 1 => '%d contactos editados.', + 2 => '%d contactos editados.', +]; +$a->strings['Show all contacts'] = 'Mostrar todos los contactos'; +$a->strings['Pending'] = 'Pendiente'; +$a->strings['Only show pending contacts'] = 'Solo mostrar contactos pendientes'; +$a->strings['Blocked'] = 'Bloqueados'; +$a->strings['Only show blocked contacts'] = 'Mostrar solo contactos bloqueados'; +$a->strings['Ignored'] = 'Ignorados'; +$a->strings['Only show ignored contacts'] = 'Mostrar solo contactos ignorados'; +$a->strings['Archived'] = 'Archivados'; +$a->strings['Only show archived contacts'] = 'Mostrar solo contactos archivados'; +$a->strings['Hidden'] = 'Ocultos'; +$a->strings['Only show hidden contacts'] = 'Mostrar solo contactos ocultos'; +$a->strings['Search your contacts'] = 'Buscar en tus contactos'; +$a->strings['Results for: %s'] = 'Resultados para: %s'; +$a->strings['Update'] = 'Actualizar'; +$a->strings['Unblock'] = 'Desbloquear'; +$a->strings['Unignore'] = 'Quitar de Ignorados'; +$a->strings['Batch Actions'] = 'Acciones en lote'; +$a->strings['Conversations started by this contact'] = 'Se iniciaron conversaciones con el contacto'; +$a->strings['Posts and Comments'] = 'Artículos y Comentarios'; +$a->strings['View all known contacts'] = 'Ver contactos conocidos'; +$a->strings['Advanced Contact Settings'] = 'Configuración avanzada'; +$a->strings['Mutual Friendship'] = 'Amistad común'; +$a->strings['is a fan of yours'] = 'es tu seguidor'; +$a->strings['you are a fan of'] = 'eres seguidor de'; +$a->strings['Pending outgoing contact request'] = 'Solicitud de Contacto pendiente'; +$a->strings['Pending incoming contact request'] = 'Solicitud de Contacto pendiente'; +$a->strings['Visit %s\'s profile [%s]'] = 'Ver el perfil de %s [%s]'; +$a->strings['Contact update failed.'] = 'Error al actualizar el Contacto.'; +$a->strings['Return to contact editor'] = 'Volver al editor de contactos'; +$a->strings['Name'] = 'Nombre'; +$a->strings['Account Nickname'] = 'Apodo de cuenta'; +$a->strings['Account URL'] = 'Dirección de cuenta'; +$a->strings['Poll/Feed URL'] = 'Dirección de Sondeo/Fuente'; +$a->strings['New photo from this URL'] = 'Nueva foto de esta URL'; +$a->strings['No known contacts.'] = 'No hay contactos conocidos.'; +$a->strings['No common contacts.'] = 'Sin contactos comunes.'; +$a->strings['Follower (%s)'] = [ + 0 => 'Seguidor (%s)', + 1 => 'Seguidores (%s)', + 2 => 'Seguidores (%s)', +]; +$a->strings['Following (%s)'] = [ + 0 => 'Siguiendo (%s)', + 1 => 'Siguiendo (%s)', + 2 => 'Siguiendo (%s)', +]; +$a->strings['Mutual friend (%s)'] = [ + 0 => 'Amigo mutuo (%s)', + 1 => 'Amigos mutuos (%s)', + 2 => 'Amigos mutuos (%s)', +]; +$a->strings['These contacts both follow and are followed by %s.'] = 'Estos contactos siguen y son seguidos por %s.'; +$a->strings['Common contact (%s)'] = [ + 0 => 'Common contact (%s)', + 1 => 'Common contacts (%s)', + 2 => 'Common contacts (%s)', +]; +$a->strings['Both %s and yourself have publicly interacted with these contacts (follow, comment or likes on public posts).'] = 'Tanto %s como usted han interactuado públicamente con estos contactos (seguir, comentar o dar me gusta en publicaciones públicas).'; +$a->strings['Contact (%s)'] = [ + 0 => 'Contacto (%s)', + 1 => 'Contactos (%s)', + 2 => 'Contactos (%s)', +]; +$a->strings['Access denied.'] = 'Acceso denegado.'; +$a->strings['Submit Request'] = 'Enviar Solicitud'; +$a->strings['You already added this contact.'] = 'Ya has añadido este contacto.'; +$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'No se pudo detectar el tipo de red. Contacto no puede ser agregado.'; +$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado.'; +$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'El soporte de OStatus no esta habilitado, el contacto no puede ser agregado.'; +$a->strings['Please answer the following:'] = 'Por favor responde lo siguiente:'; +$a->strings['Your Identity Address:'] = 'Dirección de tu Identidad:'; +$a->strings['Profile URL'] = 'URL del Perfil'; +$a->strings['Tags:'] = 'Etiquetas:'; +$a->strings['%s knows you'] = '%s te conoce'; +$a->strings['Add a personal note:'] = 'Añade una nota personal:'; +$a->strings['The contact could not be added.'] = 'El contacto no puede añadirse.'; +$a->strings['Invalid request.'] = 'Consulta invalida'; +$a->strings['No keywords to match. Please add keywords to your profile.'] = 'No hay etiquetas, añade etiquetas a tu perfil.'; +$a->strings['Profile Match'] = 'Coincidencia de Perfil'; +$a->strings['Failed to update contact record.'] = 'Error al actualizar el contacto.'; +$a->strings['Contact has been unblocked'] = 'Contacto ha sido desbloqueado'; +$a->strings['Contact has been blocked'] = 'Contacto ha sido bloqueado'; +$a->strings['Contact has been unignored'] = 'El contacto ya no está ignorado'; +$a->strings['Contact has been ignored'] = 'Contacto ha sido ignorado'; +$a->strings['You are mutual friends with %s'] = 'Ahora tienes una amistad mutua con %s'; +$a->strings['You are sharing with %s'] = 'Estás compartiendo con %s'; +$a->strings['%s is sharing with you'] = '%s está compartiendo contigo'; +$a->strings['Private communications are not available for this contact.'] = 'Las comunicaciones privadas no está disponibles para este contacto.'; +$a->strings['Never'] = 'Nunca'; +$a->strings['(Update was not successful)'] = '(La actualización no se completo)'; +$a->strings['(Update was successful)'] = '(Actualización exitosa)'; +$a->strings['Suggest friends'] = 'Sugerir amigos'; +$a->strings['Network type: %s'] = 'Tipo de red: %s'; +$a->strings['Communications lost with this contact!'] = '¡Se ha perdido la comunicación con este contacto!'; +$a->strings['Fetch further information for feeds'] = 'Recaudar información complementaria de los feeds'; +$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.'] = 'Obtener información como vistas previas, título e intro del artículo. Puedes desactivarlo si el artículo no contiene mucho texto. Etiquetas se toman de la cabecera del artículo y se publican como #etiquetas.'; +$a->strings['Fetch information'] = 'Recuperar información'; +$a->strings['Fetch keywords'] = 'Recuperar etiquetas'; +$a->strings['Fetch information and keywords'] = 'Recuperar información y palabras claves'; +$a->strings['No mirroring'] = 'No copiar'; +$a->strings['Mirror as my own posting'] = 'Copiar como publicación propia'; +$a->strings['Native reshare'] = 'Reenviar (nativo)'; +$a->strings['Contact Information / Notes'] = 'Información del Contacto / Notas'; +$a->strings['Contact Settings'] = 'Ajustes del contacto'; +$a->strings['Contact'] = 'Contacto'; +$a->strings['Their personal note'] = 'Su nota personal'; +$a->strings['Edit contact notes'] = 'Editar notas del contacto'; +$a->strings['Block/Unblock contact'] = 'Boquear/Desbloquear contacto'; +$a->strings['Ignore contact'] = 'Ignorar contacto'; +$a->strings['View conversations'] = 'Ver conversaciones'; +$a->strings['Last update:'] = 'Última actualización:'; +$a->strings['Update public posts'] = 'Actualizar publicaciones públicas'; +$a->strings['Update now'] = 'Actualizar ahora'; +$a->strings['Awaiting connection acknowledge'] = 'Esperando respuesta de conexión'; +$a->strings['Currently blocked'] = 'Bloqueados'; +$a->strings['Currently ignored'] = 'Ignorados'; +$a->strings['Currently archived'] = 'Archivados'; +$a->strings['Hide this contact from others'] = 'Ocultar el contacto a los demás.'; +$a->strings['Replies/likes to your public posts may still be visible'] = 'Los comentarios o "me gusta" en tus publicaciones públicas todavía pueden ser visibles.'; +$a->strings['Notification for new posts'] = 'Notificación de nuevos temas.'; +$a->strings['Send a notification of every new post of this contact'] = 'Enviar una notificacion por nuevos temas de este contacto.'; +$a->strings['Keyword Deny List'] = 'Lista de Etiquetas Prohibidas'; +$a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Lista separada por comas de palabras claves que no deberían ser convertidas en #etiquetas cuando "Recaudar información y palabras claves" es seleccionado'; +$a->strings['Actions'] = 'Acciones'; +$a->strings['Status'] = 'Estado'; +$a->strings['Mirror postings from this contact'] = 'Espejar publicaciones de este contacto'; +$a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'Marcar este contacto como perfil_remoto, esto generara que friendica reenvía nuevas publicaciones desde esta cuenta.'; +$a->strings['Refetch contact data'] = 'Recuperar datos del contacto.'; +$a->strings['Toggle Blocked status'] = 'Cambiar Estatus de Bloqueado'; +$a->strings['Toggle Ignored status'] = 'Cambiar ignorados'; $a->strings['Bad Request.'] = 'Petición errónea'; -$a->strings['%1$s welcomes %2$s'] = '%1$s te da la bienvenida a %2$s'; -$a->strings['Resubscribing to OStatus contacts'] = 'Resubscribir a contactos de OStatus'; +$a->strings['Yes'] = 'Sí'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo en 24 horas.'; $a->strings['You aren\'t following this contact.'] = 'No sigues a este contacto.'; $a->strings['Unfollowing is currently not supported by your network.'] = 'Dejar de Seguir no es compatible con tu red.'; $a->strings['Disconnect/Unfollow'] = 'Desconectar/Dejar de seguir'; -$a->strings['Personal notes are visible only by yourself.'] = 'Notas personales solo puedes verlas tu.'; +$a->strings['No results.'] = 'Sin resultados.'; +$a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'Este hilo de la comunidad muestra todas las publicaciones públicas recibidas por este nodo. Puede no reflejar las opiniones de los usuarios de este nodo.'; +$a->strings['Community option not available.'] = 'Fediverso no disponible'; +$a->strings['Not available.'] = 'No disponible'; +$a->strings['Own Contacts'] = 'Contactos propios'; +$a->strings['Include'] = 'Incluir'; +$a->strings['Hide'] = 'Ocultar'; +$a->strings['Credits'] = 'Créditos'; +$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!'] = 'Friendica es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica. +Gracias a todos! '; +$a->strings['Formatted'] = 'Formateado'; +$a->strings['Activity'] = 'Actividad'; +$a->strings['Object data'] = 'Dato de Objeto'; +$a->strings['Result Item'] = 'Artículo resultado'; +$a->strings['Error'] = [ + 0 => 'Error', + 1 => 'Errores', + 2 => 'Errores', +]; +$a->strings['Source activity'] = 'Actividad fuente'; +$a->strings['Source input'] = 'Entrada fuente'; +$a->strings['BBCode::toPlaintext'] = 'BBCode::toPlaintext'; +$a->strings['BBCode::convert (raw HTML)'] = 'BBCode::convert (raw HTML)'; +$a->strings['BBCode::convert (hex)'] = 'BBCode::convert (hex)'; +$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 (raw 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'] = 'Cuerpo'; +$a->strings['Item Tags'] = 'Etiquetas'; +$a->strings['PageInfo::appendToBody'] = 'PageInfo::appendToBody'; +$a->strings['PageInfo::appendToBody => BBCode::convert (raw HTML)'] = 'PageInfo::appendToBody => BBCode::convert (raw HTML)'; +$a->strings['PageInfo::appendToBody => BBCode::convert'] = 'PageInfo::appendToBody => BBCode::convert'; +$a->strings['Source input (Diaspora format)'] = 'Entrada fuente (Formato Diaspora)'; +$a->strings['Source input (Markdown)'] = 'Entrada fuente (Markdown)'; +$a->strings['Markdown::convert (raw HTML)'] = 'Markdown::convert (raw HTML)'; +$a->strings['Markdown::convert'] = 'Markdown::convert'; +$a->strings['Markdown::toBBCode'] = 'Markdown::toBBCode'; +$a->strings['Raw HTML input'] = 'Entrada RAW HTML'; +$a->strings['HTML Input'] = 'Entrada HTML'; +$a->strings['HTML Purified (raw)'] = 'HTML purificado (raw)'; +$a->strings['HTML Purified (hex)'] = 'HTML purificado (hex)'; +$a->strings['HTML Purified'] = 'HTML purificado'; +$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 (raw 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 (compact)'; +$a->strings['Decoded post'] = 'Articulo decodificado'; +$a->strings['Post array before expand entities'] = 'Arreglo sin expandir entidades'; +$a->strings['Post converted'] = 'Convertido'; +$a->strings['Converted body'] = 'Cuerpo convertido'; +$a->strings['Twitter addon is absent from the addon/ folder.'] = 'El Addon de Twitter no existe en folder addon/ .'; +$a->strings['Babel Diagnostic'] = 'Diagnóstico Babel'; +$a->strings['Source text'] = 'Texto fuente'; +$a->strings['BBCode'] = 'BBCode'; +$a->strings['Markdown'] = 'Markdown'; +$a->strings['HTML'] = 'HTML'; +$a->strings['Twitter Source / Tweet URL (requires API key)'] = 'Fuente Twitter / Tweet URL (requiere API key)'; +$a->strings['You must be logged in to use this module'] = 'Debes ingresar para usar este módulo'; +$a->strings['Source URL'] = 'URL Fuente'; +$a->strings['Time Conversion'] = 'Conversión horária'; +$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica ofrece este servicio para compartir eventos con otros servidores de Red friendica y amigos en zonas horarias desconocidas.'; +$a->strings['UTC time: %s'] = 'Tiempo UTC: %s'; +$a->strings['Current timezone: %s'] = 'Zona horaria actual: %s'; +$a->strings['Converted localtime: %s'] = 'Hora local convertida: %s'; +$a->strings['Please select your timezone:'] = 'Selecciona tu zona horaria:'; +$a->strings['Only logged in users are permitted to perform a probing.'] = 'Sólo usuarios registrados pueden realizar exploración.'; +$a->strings['Probe Diagnostic'] = 'Prueba Diagnóstico'; +$a->strings['Output'] = 'Salida'; +$a->strings['Lookup address'] = 'Buscar Dirección'; +$a->strings['Webfinger Diagnostic'] = 'Diagnóstico Webfinger'; +$a->strings['Lookup address:'] = 'Buscar Dirección:'; +$a->strings['Switch between your accounts'] = 'Cambiar entre tus cuentas'; +$a->strings['Manage your accounts'] = 'Administrar tus cuentas'; +$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Cambia entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar'; +$a->strings['Select an identity to manage: '] = 'Selecciona una identidad a gestionar:'; +$a->strings['No entries (some entries may be hidden).'] = 'Sin entradas (algunas pueden que estén ocultas).'; +$a->strings['Find on this site'] = 'Buscar en este sitio'; +$a->strings['Results for:'] = 'Resultados para:'; +$a->strings['Site Directory'] = 'Directorio del sitio'; +$a->strings['Item was not deleted'] = 'Artículo no fue borrado'; +$a->strings['Item was not removed'] = 'Artículo no fue borrado'; +$a->strings['- select -'] = '- seleccionar -'; +$a->strings['Suggested contact not found.'] = 'El contacto sugerido no se encontró.'; +$a->strings['Friend suggestion sent.'] = 'Solicitud de amistad enviada.'; +$a->strings['Suggest Friends'] = 'Sugerencias de amistad'; +$a->strings['Suggest a friend for %s'] = 'Recomienda un amigo a %s'; +$a->strings['Installed addons/apps:'] = 'Añadidos/apps Instalados:'; +$a->strings['No installed addons/apps'] = 'Añadidos/apps no instalados'; +$a->strings['Read about the Terms of Service of this node.'] = 'Leer acerca de Términos de Servicio del nodo.'; +$a->strings['On this server the following remote servers are blocked.'] = 'En este servidor los siguientes servidores remotos están bloqueados.'; +$a->strings['Reason for the block'] = 'Razón para el bloqueo'; +$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.'] = 'Este es Friendica, version %s ejecutándose en ubicación %s. Versión de la BD es %s, la versión después de actualización es %s.'; +$a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Visite Friendi.ca para aprender más sobre el proyecto Friendica, por favor.'; +$a->strings['Bug reports and issues: please visit'] = 'Reporte de fallos y problemas: por favor visita'; +$a->strings['the bugtracker at github'] = 'aviso de fallas (bugs) en github'; +$a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = 'Sugerencias, agradecimientos, etc. - envie correo "info" at "friendi - dot - ca'; +$a->strings['No profile'] = 'Ningún perfil'; +$a->strings['Method Not Allowed.'] = 'Método no Permitido'; +$a->strings['Help:'] = 'Ayuda:'; +$a->strings['Welcome to %s'] = 'Bienvenido a %s'; +$a->strings['Friendica Communications Server - Setup'] = 'Servidor de Comunicaciones Friendica - Instalación'; +$a->strings['System check'] = 'Verificación del sistema'; +$a->strings['Requirement not satisfied'] = 'Requerimiento no satisfactorio'; +$a->strings['Optional requirement not satisfied'] = 'Requerimiento Opcional no satisfactorio'; +$a->strings['OK'] = 'OK'; +$a->strings['Next'] = 'Siguiente'; +$a->strings['Check again'] = 'Comprobar Nuevamente'; +$a->strings['Base settings'] = 'Configuración Base'; +$a->strings['Base path to installation'] = 'Ruta base para la instalación'; +$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.'] = 'Si el sistema no puede detectar el acceso correcto a la instalación, ingrese la dirección correcta aquí. Esta configuración solo debería utilizarse si si usa un sistema restringido y enlaces simbolicos a su webroot.'; +$a->strings['Database connection'] = 'Conexión con Base de Datos'; +$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Con el fin de poder instalar Friendica, necesitamos saber cómo conectar con tu base de datos.'; +$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Por favor, contacta con tu proveedor de servicios o con el administrador de la página si tienes alguna pregunta sobre estas configuraciones.'; +$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'La base de datos que especifiques a continuación debería existir ya. Si no es el caso, debes crearla antes de continuar.'; +$a->strings['Database Server Name'] = 'Nombre del servidor de la base de datos'; +$a->strings['Database Login Name'] = 'Usuario de la base de datos'; +$a->strings['Database Login Password'] = 'Contraseña de la base de datos'; +$a->strings['For security reasons the password must not be empty'] = 'Por razones de seguridad la contraseña no debe estar vacía'; +$a->strings['Database Name'] = 'Nombre de la base de datos'; +$a->strings['Please select a default timezone for your website'] = 'Por favor, selecciona la zona horaria predeterminada para tu web'; +$a->strings['Site settings'] = 'Configuración de la página web'; +$a->strings['Site administrator email address'] = 'Dirección de correo del administrador de la web'; +$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'La dirección de correo de tu cuenta debe coincidir con esta para poder usar el panel de administración de la web.'; +$a->strings['System Language:'] = 'Sistema de idioma:'; +$a->strings['Set the default language for your Friendica installation interface and to send emails.'] = 'Seleccione el idioma por defecto para su interfaz de instalación de Friendica y para enviar correos.'; +$a->strings['Your Friendica site database has been installed.'] = 'La base de datos de su sitio web de Friendica ha sido instalada.'; +$a->strings['Installation finished'] = 'Instalación completa'; +$a->strings['

    What next

    '] = '

    ¿Que sigue?

    '; +$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the worker.'] = 'IMPORTANTE: Debe configurar [manualmente] una Tarea Programada para eltrabajador(Worker).'; +$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.'] = 'Ve a la Página de Registro de tu nuevo nodo de Friendicay registrate como nuevo usuario. Recuerda utilizar el mismo correo electrónico que ingresaste como correo del administrador. Esto te permitirá ingresar al Panel de Administración del Sitio.'; +$a->strings['Total invitation limit exceeded.'] = 'Límite de invitaciones excedido.'; +$a->strings['%s : Not a valid email address.'] = '%s : No es un correo válido.'; +$a->strings['Please join us on Friendica'] = 'Únete a nosotros en Friendica'; +$a->strings['Invitation limit exceeded. Please contact your site administrator.'] = 'Límite de invitaciones sobrepasado. Contacta con el administrador del sitio.'; +$a->strings['%s : Message delivery failed.'] = '%s : Ha fallado la entrega del mensaje.'; +$a->strings['%d message sent.'] = [ + 0 => '%d mensaje enviado.', + 1 => '%d mensajes enviados.', + 2 => '%d mensajes enviados.', +]; +$a->strings['You have no more invitations available'] = 'No tienes más invitaciones disponibles'; +$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.'] = 'Visita %s para ver una lista de servidores públicos donde puedes darte de alta. Los miembros de otros servidores de Friendica pueden conectarse entre ellos, así como con miembros de otras redes sociales diferentes.'; +$a->strings['To accept this invitation, please visit and register at %s or any other public Friendica website.'] = 'Para aceptar la invitación visita y regístrate en %s o en cualquier otro servidor público de Friendica.'; +$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.'] = 'Los servidores de Friendica están interconectados para crear una enorme red social centrada en la privacidad y controlada por sus miembros. También se puede conectar con muchas redes sociales tradicionales. Mira en %s para poder ver un listado de servidores alternativos de Friendica donde puedes darte de alta.'; +$a->strings['Our apologies. This system is not currently configured to connect with other public sites or invite members.'] = 'Discúlpanos. Este sistema no está configurado actualmente para conectar con otros servidores públicos o invitar nuevos miembros.'; +$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.'] = 'Los sitios de Friendica se conectan entre sí para crear una gran red social con privacidad mejorada que es propiedad y está controlada por sus miembros. También pueden conectarse con muchas redes sociales tradicionales.'; +$a->strings['To accept this invitation, please visit and register at %s.'] = 'Para aceptar esta invitación, visite y regístrese en%s, por favor.'; +$a->strings['Send invitations'] = 'Enviar invitaciones'; +$a->strings['Enter email addresses, one per line:'] = 'Introduce las direcciones de correo, una por línea:'; +$a->strings['You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.'] = 'Estás cordialmente invitado a unirte a mi y a otros amigos en Friendica, creemos juntos una red social mejor.'; +$a->strings['You will need to supply this invitation code: $invite_code'] = 'Tienes que proporcionar el siguiente código: $invite_code'; +$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Una vez registrado, por favor contacta conmigo a través de mi página de perfil en:'; +$a->strings['For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca'] = 'Para más información sobre el proyecto Friendica y por qué sentimos que es importante, visite http://friendi.ca, por favor'; +$a->strings['Please enter a post body.'] = 'Ingresa un contenido.'; +$a->strings['This feature is only available with the frio theme.'] = 'Esta opción solo disponible con Tema Frio.'; +$a->strings['Compose new personal note'] = 'Generar nueva nota personal'; +$a->strings['Compose new post'] = 'Generar nuevo artículo'; +$a->strings['Visibility'] = 'Visibilidad'; +$a->strings['Clear the location'] = 'Borrar ubicación'; +$a->strings['Location services are unavailable on your device'] = 'Servicios de ubicación no disponibles en tu dispositivo'; +$a->strings['Location services are disabled. Please check the website\'s permissions on your device'] = 'Servicios de ubicación no habilitados. Checa los permisos del sitio en tu dispositivo'; +$a->strings['The feed for this item is unavailable.'] = 'El hilo de este artículo no se encontró'; +$a->strings['Unable to follow this item.'] = 'Imposible seguir este artículo.'; +$a->strings['System down for maintenance'] = 'Servicio suspendido por mantenimiento'; +$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.'] = 'Este nodo de Friendica se encuentra actualmente en modo de mantenimiento, ya sea automáticamente porque se actualiza automáticamente o manualmente por el administrador del nodo. Esta condición debería ser temporal, vuelva en unos minutos.'; +$a->strings['A Decentralized Social Network'] = 'Una Red Social Descentralizada'; +$a->strings['Files'] = 'Archivos'; +$a->strings['Upload'] = 'Subir'; +$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Disculpa, posiblemente archivo mas grande que lo permitido por PHP.'; +$a->strings['Or - did you try to upload an empty file?'] = 'O - intentó subir un archivo vacío?'; +$a->strings['File exceeds size limit of %s'] = 'El archivo excede Tamaño de %s'; +$a->strings['File upload failed.'] = 'Ha fallado la subida del archivo.'; +$a->strings['Unable to process image.'] = 'Imposible procesar la imagen.'; +$a->strings['Image upload failed.'] = 'Error al subir la imagen.'; +$a->strings['List of all users'] = 'Lista de todos los usuarios'; +$a->strings['Active'] = 'Activos'; +$a->strings['List of active accounts'] = 'Lista de Cuentas Activas'; +$a->strings['List of pending registrations'] = 'Lista de Registros Pendientes'; +$a->strings['List of blocked users'] = 'Lista de usuarios bloqueados'; +$a->strings['Deleted'] = 'Borrados'; +$a->strings['List of pending user deletions'] = 'Lista de borrados de usuario pendientes'; +$a->strings['Normal Account Page'] = 'Página de Cuenta Normal'; +$a->strings['Soapbox Page'] = 'Página de Tribuna'; +$a->strings['Automatic Friend Page'] = 'Página de Amistad Autómatica'; +$a->strings['Personal Page'] = 'Página personal'; +$a->strings['Organisation Page'] = 'Página de Organización'; +$a->strings['News Page'] = 'Página de Noticias'; +$a->strings['Relay'] = 'Retransmisión'; +$a->strings['%s contact unblocked'] = [ + 0 => '%s Contacto desbloqueado', + 1 => '%s Contactos desbloqueados', + 2 => '%s Contactos desbloqueados', +]; +$a->strings['Remote Contact Blocklist'] = 'Lista de bloqueo de contactos remotos'; +$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'Esta página le permite evitar que cualquier mensaje de un contacto remoto llegue a su nodo. '; +$a->strings['Block Remote Contact'] = 'Bloquear Contacto Remoto'; +$a->strings['select all'] = 'seleccionar todo'; +$a->strings['select none'] = 'deseleccionar'; +$a->strings['No remote contact is blocked from this node.'] = 'No se bloquea ningún contacto remoto de este nodo.'; +$a->strings['Blocked Remote Contacts'] = 'Contactos remotos bloqueados'; +$a->strings['Block New Remote Contact'] = 'Bloquear nuevo contacto remoto'; +$a->strings['Photo'] = 'Foto'; +$a->strings['Reason'] = 'Motivo'; +$a->strings['%s total blocked contact'] = [ + 0 => '%s contacto bloqueado en total', + 1 => '%s contactos bloqueados en total', + 2 => '%s contactos bloqueados en total', +]; +$a->strings['URL of the remote contact to block.'] = 'URL del contacto remoto a bloquear.'; +$a->strings['Block Reason'] = 'Razón de bloqueo'; +$a->strings['Server Domain Pattern'] = 'Patrón de Servidor de Dominio'; +$a->strings['Block reason'] = 'Razón del bloqueo'; +$a->strings['Blocked server domain pattern'] = 'Patrón de Servidor de Dominio Bloqueado'; +$a->strings['Delete server domain pattern'] = 'Borrar Patrón de Servidor de Dominio'; +$a->strings['Check to delete this entry from the blocklist'] = 'Marca para eliminar esta entrada de Lista de bloqueo'; +$a->strings['Server Domain Pattern Blocklist'] = 'Lista de Bloqueo del Patrón de Servidor de Dominio'; +$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.'] = 'Esta página puede servir para definir una lista de bloqueos de patrones de Servidor de Dominios de la Red Federada que no podrán interactuar con el nodo. Por cada patrón de Dominio debes dar la razón de porqué se bloquea.'; +$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.'] = 'La lista de Patrones de Servidores de Dominio bloqueados será pública en /friendica para que tus usuarios y personas que consulten problemas de comunicación puedan encontrar fácilmente el motivo.'; +$a->strings['Save changes to the blocklist'] = 'Guardar cambios en la lista de bloqueo'; +$a->strings['Current Entries in the Blocklist'] = 'Entradas actuales en la lista de bloqueo'; +$a->strings['Item marked for deletion.'] = 'Artículo marcado para eliminación.'; +$a->strings['Delete this Item'] = 'Eliminar este artículo'; +$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.'] = 'En esta página, puede eliminar un artículo de su nodo. Si el artículo es una publicación de nivel superior, se eliminará todo el hilo.'; +$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.'] = 'Usted debe conocer el GUID del artículo. Puedes encontrarlo, por ejemplo. mirando la URL visible. La última parte de http://example.com/display/123456 es el GUID, aquí 123456.'; +$a->strings['GUID'] = 'GUID'; +$a->strings['The GUID of the item you want to delete.'] = 'El GUID del artículo que quiere eliminar.'; +$a->strings['Item Id'] = 'Id de Artículo'; +$a->strings['Item URI'] = 'Item URI'; +$a->strings['Terms'] = 'Términos'; +$a->strings['Tag'] = 'Etiqueta'; +$a->strings['Type'] = 'Tipo'; +$a->strings['Term'] = 'Término'; +$a->strings['URL'] = 'Ruta URL'; +$a->strings['Mention'] = 'Mención'; +$a->strings['Implicit Mention'] = 'Mención Implicita'; +$a->strings['Item not found'] = 'Elemento no encontrado'; +$a->strings['Item Guid'] = 'Clave Guid'; +$a->strings['Normal Account'] = 'Cuenta normal'; +$a->strings['Automatic Follower Account'] = 'Cuenta de Seguimiento Automático'; +$a->strings['Automatic Friend Account'] = 'Cuenta de amistad automática'; +$a->strings['Blog Account'] = 'Cuenta de blog'; +$a->strings['Registered users'] = 'Usuarios registrados'; +$a->strings['Pending registrations'] = 'Pendientes de registro'; +$a->strings['%s user blocked'] = [ + 0 => '%s usuario bloqueado', + 1 => '%s usuarios bloqueados', + 2 => '%s usuarios bloqueados', +]; +$a->strings['You can\'t remove yourself'] = 'No puedes borrar tu usuario'; +$a->strings['%s user deleted'] = [ + 0 => '%s usuario eliminado', + 1 => '%s usuarios eliminados', + 2 => '%s usuarios eliminados', +]; +$a->strings['User "%s" deleted'] = 'Usuario "%s" borrado'; +$a->strings['User "%s" blocked'] = 'Usuario "%s" bloqueado'; +$a->strings['Register date'] = 'Fecha de registro'; +$a->strings['Last login'] = 'Último acceso'; +$a->strings['Last public item'] = 'Último artículo público'; +$a->strings['Active Accounts'] = 'Cuentas Activas'; +$a->strings['User blocked'] = 'Usuario bloqueado'; +$a->strings['Site admin'] = 'Administrador del Sitio'; +$a->strings['Account expired'] = 'Cuenta caducada'; +$a->strings['Create a new user'] = 'Crear nuevo usuario'; +$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = '¡Los usuarios seleccionados serán eliminados!\n\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\n\n¿Estás seguro?'; +$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = '¡El usuario {0} será eliminado!\n\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\n\n¿Estás seguro?'; +$a->strings['%s user unblocked'] = [ + 0 => '%s usuario desbloqueado', + 1 => '%s usuarios desbloqueados', + 2 => '%s usuarios desbloqueados', +]; +$a->strings['User "%s" unblocked'] = 'Usuario "%s" desbloqueado'; +$a->strings['Blocked Users'] = 'Usuarios bloqueados'; +$a->strings['New User'] = 'Nuevo usuario'; +$a->strings['Add User'] = 'Agregar usuario'; +$a->strings['Name of the new user.'] = 'Nombre del nuevo usuario'; +$a->strings['Nickname'] = 'Apodo'; +$a->strings['Nickname of the new user.'] = 'Apodo del nuevo perfil.'; +$a->strings['Email address of the new user.'] = 'Dirección de correo del nuevo perfil.'; +$a->strings['Users awaiting permanent deletion'] = 'Usuarios en espera de borrado permanente'; +$a->strings['Permanent deletion'] = 'Borrado Permanente'; +$a->strings['User waiting for permanent deletion'] = 'Usuario esperando anulación permanente.'; +$a->strings['%s user approved'] = [ + 0 => '%s usuario aprobado', + 1 => '%s usuarios aprobados', + 2 => '%s usuarios aprobados', +]; +$a->strings['%s registration revoked'] = [ + 0 => '%s registro revocado', + 1 => '%s registros revocados', + 2 => '%s registros revocados', +]; +$a->strings['Account approved.'] = 'Cuenta aprobada.'; +$a->strings['Registration revoked'] = 'Registro revocado'; +$a->strings['User registrations awaiting review'] = 'Registro de usuarios en espera de revisión'; +$a->strings['Request date'] = 'Solicitud de fecha'; +$a->strings['No registrations.'] = 'Sin registros.'; +$a->strings['Note from the user'] = 'Nota para el usuario'; +$a->strings['Deny'] = 'Denegado'; +$a->strings['Show Ignored Requests'] = 'Mostrar peticiones ignoradas'; +$a->strings['Hide Ignored Requests'] = 'Ocultar peticiones ignoradas'; +$a->strings['Notification type:'] = 'Tipo de Notificación:'; +$a->strings['Suggested by:'] = 'Sugerido por:'; +$a->strings['Claims to be known to you: '] = 'Dice conocerte: '; +$a->strings['No'] = 'No'; +$a->strings['Shall your connection be bidirectional or not?'] = '¿Debe la conexión ser bidireccional o no?'; +$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.'] = 'Aceptar a %s como amigo le permite a %s suscribirse a sus publicaciones, y usted también recibirá actualizaciones de ellos en sus noticias.'; +$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.'] = 'Aceptar a %s como suscriptor les permite suscribirse a sus publicaciones, pero usted no recibirá actualizaciones de ellos en sus noticias.'; +$a->strings['Friend'] = 'Amigo'; +$a->strings['Subscriber'] = 'Suscriptor'; +$a->strings['No introductions.'] = 'Sin presentaciones.'; +$a->strings['No more %s notifications.'] = 'No más notificaciones de %s.'; +$a->strings['You must be logged in to show this page.'] = 'Debes ingresar para ver esa pagina.'; +$a->strings['Network Notifications'] = 'Notificaciones de Red'; +$a->strings['System Notifications'] = 'Notificaciones del sistema'; +$a->strings['Personal Notifications'] = 'Notificaciones personales'; +$a->strings['Home Notifications'] = 'Notificaciones de Inicio'; +$a->strings['Show unread'] = 'Mostrar no leído'; +$a->strings['{0} requested registration'] = '{0} solicita registro'; +$a->strings['{0} and %d others requested registration'] = '{0} y %d otros solicitaron registro'; +$a->strings['Authorize application connection'] = 'Autorizar la conexión de la aplicación'; +$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = '¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?'; +$a->strings['Resubscribing to OStatus contacts'] = 'Resubscribir a contactos de OStatus'; +$a->strings['Keep this window open until done.'] = 'Manténer la ventana abierta hasta que finalice.'; +$a->strings['No contact provided.'] = 'No se suministra contacto.'; +$a->strings['Couldn\'t fetch information for contact.'] = 'No se encuentra la información del contacto.'; +$a->strings['Couldn\'t fetch friends for contact.'] = 'No se encuentran datos de amigos de contacto.'; +$a->strings['Done'] = 'Hecho'; +$a->strings['success'] = 'éxito!'; +$a->strings['failed'] = 'fallido'; +$a->strings['ignored'] = 'ignorado'; +$a->strings['Wrong type "%s", expected one of: %s'] = 'Tipo erróneo "%s", se esperaba uno: %s'; +$a->strings['Model not found'] = 'Modelo no encontrado'; +$a->strings['Remote privacy information not available.'] = 'Privacidad de la información remota no disponible.'; +$a->strings['Visible to:'] = 'Visible para:'; +$a->strings['The Photo with id %s is not available.'] = 'La foto con id %s no esta disponible.'; +$a->strings['Invalid photo with id %s.'] = 'Foto no válida de Id %s.'; +$a->strings['Edit post'] = 'Editar publicación'; +$a->strings['web link'] = 'enlace web'; +$a->strings['Insert video link'] = 'Insertar enlace del vídeo'; +$a->strings['video link'] = 'enlace de video'; +$a->strings['Insert audio link'] = 'Insertar vínculo del audio'; +$a->strings['audio link'] = 'enlace de audio'; +$a->strings['Remove Item Tag'] = 'Eliminar etiqueta'; +$a->strings['Select a tag to remove: '] = 'Selecciona etiqueta a eliminar: '; +$a->strings['Remove'] = 'Eliminar'; +$a->strings['No contacts.'] = 'Sin contactos.'; +$a->strings['%s\'s timeline'] = 'Estado de %s'; +$a->strings['%s\'s posts'] = 'Artículos de %s'; +$a->strings['%s\'s comments'] = 'Comentarios de %s'; +$a->strings['Image exceeds size limit of %s'] = 'Imagen excede el tamaño de %s'; +$a->strings['Image upload didn\'t complete, please try again'] = 'Subida de imagen no completa, vuelve a intentar'; +$a->strings['Image file is missing'] = 'Falta el archivo de imagen'; +$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'El servidor no puede aceptar la carga de archivos nuevos en este momento, comuníquese con el Administrador'; +$a->strings['Image file is empty.'] = 'El archivo de imagen está vacío.'; +$a->strings['View Album'] = 'Ver Álbum'; +$a->strings['Profile not found.'] = 'Perfil no encontrado.'; +$a->strings['You\'re currently viewing your profile as %s Cancel'] = 'Actualmente estás viendo tu perfil como %s Cancelar'; +$a->strings['Full Name:'] = 'Nombre Completo:'; +$a->strings['Member since:'] = 'Miembro desde:'; +$a->strings['j F, Y'] = 'j F, Y'; +$a->strings['j F'] = 'j F'; +$a->strings['Birthday:'] = 'Fecha de Nac:'; +$a->strings['Age: '] = 'Edad: '; +$a->strings['%d year old'] = [ + 0 => '%d Años', + 1 => '%d Años', + 2 => '%d Años', +]; +$a->strings['Description:'] = 'Descripción:'; +$a->strings['View profile as:'] = 'Ver perfil como:'; +$a->strings['View as'] = 'Ver como'; +$a->strings['Profile unavailable.'] = 'Perfil no disponible.'; +$a->strings['Invalid locator'] = 'Localizador no válido'; +$a->strings['The provided profile link doesn\'t seem to be valid'] = 'Link del perfil no parece válido.'; +$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema.'; +$a->strings['Friend/Connection Request'] = 'Solicitud de Amistad/Conexión'; +$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.'] = 'Digite dirección Webfinger (user@domain.tld) o URL de perfil. Si no fuera aceptado por tu sistema, debes suscribirte a %s o %s directo en tu sistema.'; +$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.'] = 'Si aún no eres miembro de la web social gratuita, Sígue este enlace para encontrar un nodo Friendica público y únete hoy.'; +$a->strings['Your Webfinger address or profile URL:'] = 'Tu dirección Webfinger o URL de Perfil:'; +$a->strings['Unable to check your home location.'] = 'Imposible comprobar tu servidor de inicio.'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Excedido el número máximo de mensajes para %s. Mensaje fallido.'; +$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Si quieres que %s te responda, verifica que la configuración de privacidad permite enviar correo privado de desconocidos.'; +$a->strings['Only parent users can create additional accounts.'] = 'Solo usuarios superiores pueden crear mas cuentas.'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor.'; +$a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking "Register".'] = 'Puede (opcionalmente) llenar el formulario vía OpenID proporcionando su OpenID y haciendo clic en "Registrarse".'; +$a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos.'; +$a->strings['Your OpenID (optional): '] = 'Tu OpenID (opcional): '; +$a->strings['Include your profile in member directory?'] = '¿Incluir tu perfil en el directorio de miembros?'; +$a->strings['Note for the admin'] = 'Nota para el administrador'; +$a->strings['Leave a message for the admin, why you want to join this node'] = 'Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo'; +$a->strings['Membership on this site is by invitation only.'] = 'Sitio solo accesible mediante invitación.'; +$a->strings['Your invitation code: '] = 'Tu código de Invitación: '; +$a->strings['Your Full Name (e.g. Joe Smith, real or real-looking): '] = 'Nombre completo (ej. Juan Perez, real o apariencia real):'; +$a->strings['Your Email Address: (Initial information will be send there, so this has to be an existing address.)'] = 'Tu Correo electrónico: (Información inicial se enviará allí, por lo que debeser una dirección existente.)'; +$a->strings['Please repeat your e-mail address:'] = 'Repite tu correo:'; +$a->strings['New Password:'] = 'Contraseña Nueva:'; +$a->strings['Leave empty for an auto generated password.'] = 'Dejar vacío para autogenerar una contraseña'; +$a->strings['Confirm:'] = 'Confirmar:'; +$a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be "nickname@%s".'] = 'Elija un apodo de perfil. Que comience con un carácter de texto. Tu dirección de perfil en este sitio será "nickname@%s".'; +$a->strings['Choose a nickname: '] = 'Escoge un apodo: '; +$a->strings['Import'] = 'Importar'; +$a->strings['Import your profile to this friendica instance'] = 'Importar tu perfil a esta instancia de friendica'; +$a->strings['Note: This node explicitly contains adult content'] = 'Nota: Este nodo contiene material adulto explicito'; +$a->strings['Parent Password:'] = 'Contraseña principal:'; +$a->strings['Please enter the password of the parent account to legitimize your request.'] = 'Ingrese la contraseña de la cuenta principal para conformar la solicitud.'; +$a->strings['Password doesn\'t match.'] = 'Contraseñas diferentes.'; +$a->strings['Please enter your password.'] = 'Ingresa tu contraseña.'; +$a->strings['You have entered too much information.'] = 'Demasiada información.'; +$a->strings['Please enter the identical mail address in the second field.'] = 'Ingresa la misma cuenta de correo en el segundo campo'; +$a->strings['The additional account was created.'] = 'La cuenta adicional fue creada.'; +$a->strings['Registration successful. Please check your email for further instructions.'] = 'Te has registrado con éxito. Consulta tu correo para más información.'; +$a->strings['Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login.'] = 'Error al intentar de enviar mensaje de correo. Aquí los detalles de tu cuenta:
    Usuario: %s
    Contraseña: %s

    Puede cambiar tu contraseña después de ingresar al sitio.'; +$a->strings['Registration successful.'] = 'Registro exitoso.'; +$a->strings['Your registration can not be processed.'] = 'Tu registro no se puede procesar.'; +$a->strings['You have to leave a request note for the admin.'] = 'Debes dejar una solicitud al Administrador.'; +$a->strings['Your registration is pending approval by the site owner.'] = 'Tu registro queda pendiente de aprobación por el dueño del sitio.'; +$a->strings['You must be logged in to use this module.'] = 'Debes ingresar para usar el modulo.'; +$a->strings['Only logged in users are permitted to perform a search.'] = 'Solo usuarios activos tienen permiso para ejecutar búsquedas.'; +$a->strings['Only one search per minute is permitted for not logged in users.'] = 'Se permite solo una búsqueda por minuto para usuarios no identificados.'; +$a->strings['Items tagged with: %s'] = 'Objetos taggeado con: %s'; +$a->strings['Search term was not saved.'] = 'Término de búsqueda no se grabó.'; +$a->strings['Search term already saved.'] = 'Término de búsqueda ya ha sido grabado.'; +$a->strings['Search term was not removed.'] = 'Término de búsqueda no fue borrado.'; +$a->strings['Create a New Account'] = 'Crear Nueva Cuenta'; +$a->strings['Your OpenID: '] = 'Tu OpenID: '; +$a->strings['Please enter your username and password to add the OpenID to your existing account.'] = 'Ingresa tu Usuario y Contraseña para añadir el OpenID a tu cuentaexistente.'; +$a->strings['Or login using OpenID: '] = 'O ingresa usando OpenID: '; +$a->strings['Password: '] = 'Contraseña: '; +$a->strings['Remember me'] = 'Recordarme'; +$a->strings['Forgot your password?'] = '¿Olvidaste la contraseña?'; +$a->strings['Website Terms of Service'] = 'Términos de Servicio del Sitio'; +$a->strings['terms of service'] = 'Términos de Servicio'; +$a->strings['Website Privacy Policy'] = 'Política de Privacidad del Sitio'; +$a->strings['privacy policy'] = 'Política de Privacidad'; +$a->strings['Logged out.'] = 'Desconectado.'; +$a->strings['OpenID protocol error. No ID returned'] = 'Error de protocolo OpenID. No encuentra ID'; +$a->strings['Account not found. Please login to your existing account to add the OpenID to it.'] = 'Cuenta no encontrada. Ingresa en tu cuenta existente para agregarle OpenID.'; +$a->strings['Account not found. Please register a new account or login to your existing account to add the OpenID to it.'] = 'Cuenta no encontrada. Registra una nueva cuenta o ingresa en su cuenta existentepara agregarle OpenID.'; +$a->strings['Passwords do not match.'] = 'No coinciden los passwords'; +$a->strings['Password unchanged.'] = 'Contraseña no modificada'; +$a->strings['Current Password:'] = 'Contraseña actual:'; +$a->strings['Your current password to confirm the changes'] = 'Tu contraseña actual para confirmar los cambios.'; +$a->strings['Remaining recovery codes: %d'] = 'Códigos de recuperación restantes: %d'; +$a->strings['Invalid code, please retry.'] = 'Código inválido, reinténtelo'; +$a->strings['Two-factor recovery'] = 'Recuperación de 2 factores'; +$a->strings['

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

    '] = '

    puedes usar uno de tus códigos de recuperación si pierdes el acceso a tu movil.

    '; +$a->strings['Don’t have your phone? Enter a two-factor recovery code'] = 'No tienes el teléfono? Ingresa código de recuperación'; +$a->strings['Please enter a recovery code'] = 'Ingresa código de recuperación'; +$a->strings['Submit recovery code and complete login'] = 'Enviar código de recuperación e ingresar'; +$a->strings['

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

    '] = '

    Abra la app de ingreso de 2 factores en su dispositivo y obtenga un código de ingreso para verificar su identidad.

    '; +$a->strings['Please enter a code from your authentication app'] = 'Ingresa un código de ingreso desde tu app'; +$a->strings['Verify code and complete login'] = 'Verificar código y completar ingreso'; +$a->strings['Please use a shorter name.'] = 'Utiliza un nombre mas corto'; +$a->strings['Name too short.'] = 'Nombre muy corto'; +$a->strings['Wrong Password.'] = 'Password erróneo'; +$a->strings['Invalid email.'] = 'Corréo no válido.'; +$a->strings['Cannot change to that email.'] = 'Imposible cambiar a ese correo.'; +$a->strings['Settings were not updated.'] = 'Configuración no actualizada'; +$a->strings['Contact CSV file upload error'] = 'Error al subir archivo CSV'; +$a->strings['Importing Contacts done'] = 'Importación del contacto completada'; +$a->strings['Relocate message has been send to your contacts'] = 'Mensaje de reubicación enviado a sus contactos.'; +$a->strings['Unable to find your profile. Please contact your admin.'] = 'No se encontró tu perfil. Contacta al Administrador.'; +$a->strings['Personal Page Subtypes'] = 'Subtipos de Página Personal'; +$a->strings['Account for a personal profile.'] = 'Cuenta para un perfil personal.'; +$a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'Cuenta para una organización que aprueba automáticamente solicitudes de "Seguidores".'; +$a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'Cuenta Reflector de noticias que aprueba automáticamente solicitudes de contacto como "Seguidores".'; +$a->strings['Account for community discussions.'] = 'Cuenta para discusiones de la comunidad.'; +$a->strings['Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'] = 'Cuenta para perfil personal regular que requiere aprobación manual de "Amigos" and "Seguidores".'; +$a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'Cuenta para un perfil público que aprueba automáticamente las solicitudes de contacto como «Seguidores».'; +$a->strings['Automatically approves all contact requests.'] = 'Aprueba automáticamente las solicitudes de contacto.'; +$a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'Cuenta para un perfil popular que aprueba automáticamente solicitudes de contacto como "Amigos".'; +$a->strings['Requires manual approval of contact requests.'] = 'Requiere aprobación manual de solicitudes de contacto.'; +$a->strings['OpenID:'] = 'OpenID:'; +$a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Opcional) Permitir a este OpenID acceder a esta cuenta.'; +$a->strings['Publish your profile in your local site directory?'] = 'Publicar tu perfil en tu Directorio Local?'; +$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.'] = 'Tu perfil se publicará en el directorio de nodo local . Los detalles de tu perfil pueden ser públicos según los ajustes del sistema.'; +$a->strings['Your profile will also be published in the global friendica directories (e.g. %s).'] = 'Tu perfil también será publicado en Directorios Globales Friendica (ej. %s).'; +$a->strings['Account Settings'] = 'Configuración de Cuenta'; +$a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'Tu dirección de Identidad es \'%s\' o \'%s\'.'; +$a->strings['Password Settings'] = 'Configuración de Contraseña'; +$a->strings['Leave password fields blank unless changing'] = 'Deja la contraseña en blanco si no quieres cambiarla'; +$a->strings['Password:'] = 'Contraseña:'; +$a->strings['Your current password to confirm the changes of the email address'] = 'Tu contraseña actual para confirmar los cambios de cuenta de corréo.'; +$a->strings['Delete OpenID URL'] = 'Borrar URL de OpenID'; +$a->strings['Basic Settings'] = 'Configuración Básica'; +$a->strings['Display name:'] = 'Nombre desplegable:'; +$a->strings['Email Address:'] = 'Dirección de Correo:'; +$a->strings['Your Timezone:'] = 'Zona horaria:'; +$a->strings['Your Language:'] = 'Tu idioma:'; +$a->strings['Set the language we use to show you friendica interface and to send you emails'] = 'Selecciona el idioma que usará la interfaz Friendica y para enviarte correos.'; +$a->strings['Default Post Location:'] = 'Ubicación predeterminada:'; +$a->strings['Use Browser Location:'] = 'Usar localización del navegador:'; +$a->strings['Security and Privacy Settings'] = 'Configuración de Seguridad y Privacidad'; +$a->strings['Maximum Friend Requests/Day:'] = 'Número máximo de solicitudes de amistad/día:'; +$a->strings['(to prevent spam abuse)'] = '(para prevenir abuso de basura)'; +$a->strings['Allow your profile to be searchable globally?'] = '¿Permitir tu perfil ser encontrado globalmente?'; +$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.'] = 'Activa esta configuración si quieres que otros te encuentren y sigan fácilmente. Tu perfil se podrá buscar en sistemas remotos. Esta configuración también determina si Friendica informará a los motores de búsqueda que tu perfil debe ser indexado o no.'; +$a->strings['Hide your contact/friend list from viewers of your profile?'] = 'Esconde tu lista de contactos/amistades de otros a tu perfil?'; +$a->strings['A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list.'] = 'Se muestra una lista de tus contactos en tu Perfil. Activar esta opción para deshabilitar la visualización de tu lista de contactos.'; +$a->strings['Make public posts unlisted'] = 'No listar mis artículos públicos'; +$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.'] = 'Tus publicaciones públicas no aparecerán en páginas de la comunidad ni en búsquedas, ni se enviaran a servidores de retransmisión. Sin embargo, aparecerán en artículos públicos de servidores remotos.'; +$a->strings['Make all posted pictures accessible'] = 'Hacer accesibles todas las fotos'; +$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.'] = 'Esta opción hace accesibles todas las imágenes a través del enlace directo. Este es una solución al problema que la mayoría de las redes no pueden manejar permisos en las imágenes. Las imágenes no públicas aún no serán visibles para elpúblico en tus álbumes de fotos.'; +$a->strings['Allow friends to post to your profile page?'] = '¿Permitir que tus amigos publiquen en tu página de perfil?'; +$a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'Tus contactos pueden escribir artículos en tu perfil. Estas publicaciones se distribuirán a tus contactos'; +$a->strings['Allow friends to tag your posts?'] = '¿Permitir a los amigos etiquetar tus publicaciones?'; +$a->strings['Your contacts can add additional tags to your posts.'] = 'Tus contactos pueden añadir etiquetas adicionales a tus artículos.'; +$a->strings['Permit unknown people to send you private mail?'] = '¿Permitir que desconocidos te manden correos privados?'; +$a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Usuarios de Friendica pueden enviarte mensajes privados incluso si no están en tu lista de contactos.'; +$a->strings['Maximum private messages per day from unknown people:'] = 'Número máximo de mensajes diarios para desconocidos:'; +$a->strings['Default Post Permissions'] = 'Permisos por defecto para publicaciones'; +$a->strings['Expiration settings'] = 'Configuración de Expiración'; +$a->strings['Automatically expire posts after this many days:'] = 'Publicaciones caducarán solas después de estos días:'; +$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Si dejas vacío no caducarán. Publicaciones caducadas serán borradas'; +$a->strings['Expire posts'] = 'Caducar artículos'; +$a->strings['When activated, posts and comments will be expired.'] = 'Cuando se activa, artículos y comentarios caducarán.'; +$a->strings['Expire personal notes'] = 'Caducar Anotaciones'; +$a->strings['When activated, the personal notes on your profile page will be expired.'] = 'Si se activa, las Anotaciones en tu Perfil caducarán.'; +$a->strings['Expire starred posts'] = 'Caducar artículos Destacados'; +$a->strings['Starring posts keeps them from being expired. That behaviour is overwritten by this setting.'] = 'Destacar las publicaciones evita que caduquen. Ese comportamiento cambiacon este ajuste.'; +$a->strings['Only expire posts by others'] = 'Solo caducar artículos de otros'; +$a->strings['When activated, your own posts never expire. Then the settings above are only valid for posts you received.'] = 'Cuando se activa, publicaciones propias nunca caducan. Esta configuración solo es válida para las artículos recibidas.'; +$a->strings['Notification Settings'] = 'Configuración de Notificaciones'; +$a->strings['Send a notification email when:'] = 'Enviar notificación por correo cuando:'; +$a->strings['You receive an introduction'] = 'Recibas una presentación'; +$a->strings['Your introductions are confirmed'] = 'Tu presentación sea confirmada'; +$a->strings['Someone writes on your profile wall'] = 'Alguien escriba en tu perfil'; +$a->strings['Someone writes a followup comment'] = 'Alguien escriba en un comentario que sigo'; +$a->strings['You receive a private message'] = 'Recibas un mensaje privado'; +$a->strings['You receive a friend suggestion'] = 'Recibas una sugerencia de amistad'; +$a->strings['You are tagged in a post'] = 'Seas etiquetado en un artículo'; +$a->strings['Activate desktop notifications'] = 'Activar notificaciones'; +$a->strings['Show desktop popup on new notifications'] = 'Mostrar notificaciones emergentes en caso de nuevos eventos.'; +$a->strings['Text-only notification emails'] = 'Notificaciones de correo solo en texto'; +$a->strings['Send text only notification emails, without the html part'] = 'Enviar correo de notificación en formato Solo Texto sin html'; +$a->strings['Show detailled notifications'] = 'Mostrar notificaciones detalladas'; +$a->strings['Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.'] = 'Por default, notificaciones se condensan en una sola notificación por artículo. Cuando se habilita se muestran cada notificación.'; +$a->strings['Show notifications of ignored contacts'] = 'Mostrar notificación de Contactos Ignorados'; +$a->strings['You don\'t see posts from ignored contacts. But you still see their comments. This setting controls if you want to still receive regular notifications that are caused by ignored contacts or not.'] = 'No ves publicaciones de contactos ignorados. Pero todavía ves sus comentarios. Esta configuración controla si aún desea recibir notificaciones regulares causadas por contactos ignorados o no.'; +$a->strings['Advanced Account/Page Type Settings'] = 'Configuración avanzada de tipo de Cuenta/Página'; +$a->strings['Change the behaviour of this account for special situations'] = 'Cambiar el comportamiento de esta cuenta para situaciones especiales'; +$a->strings['Import Contacts'] = 'Importar contactos'; +$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Subir archivo CSV que contenga identificador de tus cuentas seguidas en elprimera columna que exportó desde la cuenta anterior.'; +$a->strings['Upload File'] = 'Subir archivo'; +$a->strings['Relocate'] = 'Relocalizar'; +$a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Si migró este perfil desde otro servidor y algunos contactos no reciben sus publicaciones intente oprimiendo esta opción.'; +$a->strings['Resend relocate message to contacts'] = 'Reenviar mensaje de relocalización a contactos'; +$a->strings['Addon Settings'] = 'Configuración de Añadidos'; +$a->strings['No Addon settings configured'] = 'Ningún Añadido configurado'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'Error al conectar con el Correo mediante esa configuración.'; +$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; +$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; +$a->strings['Email access is disabled on this site.'] = 'Acceso por correo deshabilitado en este sitio.'; +$a->strings['None'] = 'Ninguno'; +$a->strings['General Social Media Settings'] = 'Configuración General de Medios Sociales'; +$a->strings['Attach the link title'] = 'Agregar título del link'; +$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.'] = 'Si se activa, el título del link se añade como titulo en artículos de Diaspora. Esto es bueno con contactos "remote-self" que comparten contenido.'; +$a->strings['Repair OStatus subscriptions'] = 'Reparar subscripciones OStatus'; +$a->strings['Email/Mailbox Setup'] = 'Configuración de Correo/Buzón'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Si quieres comunicarte con contactos de correo con este servicio (opcional), especifica cómo conectar con tu buzón.'; +$a->strings['Last successful email check:'] = 'Última comprobación de correo éxitosa:'; +$a->strings['IMAP server name:'] = 'Nombre del servidor IMAP:'; +$a->strings['IMAP port:'] = 'Puerto IMAP:'; +$a->strings['Security:'] = 'Seguridad:'; +$a->strings['Email login name:'] = 'Usuario de Correo:'; +$a->strings['Email password:'] = 'Contraseña de Correo:'; +$a->strings['Reply-to address:'] = 'Dirección de respuesta:'; +$a->strings['Send public posts to all email contacts:'] = 'Enviar notificaciones públicas a todos los correos:'; +$a->strings['Action after import:'] = 'Acción al importar:'; +$a->strings['Move to folder'] = 'Mover a un folder'; +$a->strings['Move to folder:'] = 'Mover al folder:'; +$a->strings['Delegation successfully granted.'] = 'Se autorizó delegación.'; +$a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'Usuario padre no encontrado, o no coincide contraseña.'; +$a->strings['Delegation successfully revoked.'] = 'Delegación revocada con éxito.'; +$a->strings['Delegated administrators can view but not change delegation permissions.'] = 'Administradores delegados pueden ver pero no cambiar permisos delegados.'; +$a->strings['Delegate user not found.'] = 'Usuario delegado no encontrado.'; +$a->strings['No parent user'] = 'No hay usuario padre'; +$a->strings['Parent User'] = 'Usuario Padre'; +$a->strings['Additional Accounts'] = 'Cuentas adicionales'; +$a->strings['Register additional accounts that are automatically connected to your existing account so you can manage them from this account.'] = 'Registre cuentas adicionales que son automáticamente conectadas con tu cuenta existente de forma que puedas manejarlas desde aquí.'; +$a->strings['Register an additional account'] = 'Registrar cuenta adicional'; +$a->strings['Parent users have total control about this account, including the account settings. Please double check whom you give this access.'] = 'Usuarios padres tendrán control total en esta cuenta, incluyendo ajustes. Cheque doblemente a quien le das acceso.'; +$a->strings['Delegates'] = 'Delegados'; +$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.'] = 'Los delegados tienen la capacidad de gestionar todos los aspectos de esta cuenta/página, excepto los ajustes básicos de la cuenta. Por favor, no delegues tu cuenta personal a nadie en quien no confíes completamente.'; +$a->strings['Existing Page Delegates'] = 'Delegados actuales de la página'; +$a->strings['Potential Delegates'] = 'Delegados potenciales'; +$a->strings['Add'] = 'Añadir'; +$a->strings['No entries.'] = 'Sin entradas.'; +$a->strings['The theme you chose isn\'t available.'] = 'El tema seleccionado no disponible.'; +$a->strings['%s - (Unsupported)'] = '%s – (No puede usarse)'; +$a->strings['Display Settings'] = 'Configuración Tema/Visualización'; +$a->strings['General Theme Settings'] = 'Ajustes generales de tema'; +$a->strings['Custom Theme Settings'] = 'Ajustes personalizados de tema'; +$a->strings['Content Settings'] = 'Ajustes de contenido'; +$a->strings['Theme settings'] = 'Configuración del Tema'; +$a->strings['Display Theme:'] = 'Utilizar tema:'; +$a->strings['Mobile Theme:'] = 'Tema móvil:'; +$a->strings['Number of items to display per page:'] = 'Número de elementos a mostrar por página:'; +$a->strings['Maximum of 100 items'] = 'Máximo 100 elementos'; +$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Cantidad de objetos a visualizar cuando se usa un móvil'; +$a->strings['Update browser every xx seconds'] = 'Actualizar navegador cada xx segundos'; +$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Minimo 10 segundos. Ingrese -1 para deshabilitar.'; +$a->strings['Infinite scroll'] = 'Pagina infinita (scroll)'; +$a->strings['Automatic fetch new items when reaching the page end.'] = 'Obtener nuevos artículos cuando alcance el final de página.'; +$a->strings['Display the resharer'] = 'Desplegar reenviar'; +$a->strings['Display the first resharer as icon and text on a reshared item.'] = 'Desplegar primer reenvío con un icono y texto en artículo reenviado.'; +$a->strings['Stay local'] = 'Quedarse Local'; +$a->strings['Don\'t go to a remote system when following a contact link.'] = 'No ir a sistema remoto cuando siga a un link de un contacto.'; +$a->strings['Beginning of week:'] = 'Principio de la semana:'; +$a->strings['Additional Features'] = 'Opciones Adicionales'; +$a->strings['Connected Apps'] = 'Aplicaciones conectadas'; +$a->strings['Remove authorization'] = 'Quitar autorización'; +$a->strings['Profile couldn\'t be updated.'] = 'No puede actualizarse perfil.'; +$a->strings['Label:'] = 'Etiqueta:'; +$a->strings['Value:'] = 'Valor:'; +$a->strings['Field Permissions'] = 'Permisos del campo'; +$a->strings['(click to open/close)'] = '(pulsa para abrir/cerrar)'; +$a->strings['Add a new profile field'] = 'Añadir campo de perfil'; +$a->strings['Profile Actions'] = 'Acciones de perfil'; +$a->strings['Edit Profile Details'] = 'Editar detalles de tu perfil'; +$a->strings['Change Profile Photo'] = 'Cambiar imagen del Perfil'; +$a->strings['Profile picture'] = 'Imagen del perfil'; +$a->strings['Location'] = 'Ubicación'; +$a->strings['Miscellaneous'] = 'Varios'; +$a->strings['Custom Profile Fields'] = 'Campos personalizados de perfil'; +$a->strings['Upload Profile Photo'] = 'Subir foto del Perfil'; +$a->strings['Street Address:'] = 'Dirección'; +$a->strings['Locality/City:'] = 'Localidad/Ciudad:'; +$a->strings['Region/State:'] = 'Región/Estado:'; +$a->strings['Postal/Zip Code:'] = 'Código/Zona postal:'; +$a->strings['Country:'] = 'País'; +$a->strings['XMPP (Jabber) address:'] = 'Dirección XMPP (Jabber):'; +$a->strings['Homepage URL:'] = 'Dirección de tu página:'; +$a->strings['Public Keywords:'] = 'Palabras clave públicas:'; +$a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Utilizadas para sugerir amigos potenciales, otros pueden verlo)'; +$a->strings['Private Keywords:'] = 'Palabras clave privadas:'; +$a->strings['(Used for searching profiles, never shown to others)'] = '(Utilizadas para buscar perfiles, nunca se muestra a otros)'; +$a->strings['Image size reduction [%s] failed.'] = 'Ha fallado la reducción de las dimensiones de la imagen [%s].'; +$a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente.'; +$a->strings['Unable to process image'] = 'Imposible procesar la imagen'; +$a->strings['Photo not found.'] = 'No se encontró foto.'; +$a->strings['Profile picture successfully updated.'] = 'Foto de perfil actualizado.'; +$a->strings['Crop Image'] = 'Recortar imagen'; +$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Por favor, ajusta el recorte de la imagen para optimizarla.'; +$a->strings['Use Image As Is'] = 'Usar imagen como esta'; +$a->strings['Missing uploaded image.'] = 'Falta la imágen subida'; +$a->strings['Profile Picture Settings'] = 'Ajustes de Foto del Perfil'; +$a->strings['Current Profile Picture'] = 'Foto de Perfil Actual'; +$a->strings['Upload Profile Picture'] = 'Subir foto del Perfil'; +$a->strings['Upload Picture:'] = 'Subir foto:'; +$a->strings['or'] = 'o'; +$a->strings['skip this step'] = 'saltar este paso'; +$a->strings['select a photo from your photo albums'] = 'elige una foto de tus álbumes'; +$a->strings['[Friendica System Notify]'] = '[Friendica Sistema de Notificaciones]'; +$a->strings['User deleted their account'] = 'Usuario borró su cienta'; +$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'En tu nodo de Friendica, un usuario eliminó su cuenta. Asegúrese de quesus datos se eliminan de los respaldos.'; +$a->strings['The user id is %d'] = 'El Id de Usuario es %d'; +$a->strings['Remove My Account'] = 'Eliminar mi cuenta'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Esto eliminará por completo tu cuenta. Una vez hecho no puede deshacerse.'; +$a->strings['Please enter your password for verification:'] = 'Introduce tu contraseña para verificación:'; +$a->strings['Please enter your password to access this page.'] = 'Ingresa tu contraseña para acceder a la página.'; +$a->strings['App-specific password generation failed: The description is empty.'] = 'Generación de Contraseña de la App fallida: Sin explicación'; +$a->strings['App-specific password generation failed: This description already exists.'] = 'Generación de contraseña de App fallida: Ya existe descripción.'; +$a->strings['New app-specific password generated.'] = 'Nueva contraseña de la App generada.'; +$a->strings['App-specific passwords successfully revoked.'] = 'Contraseñas de la App fueron revocadas.'; +$a->strings['App-specific password successfully revoked.'] = 'Contraseña de la App revocada.'; +$a->strings['Two-factor app-specific passwords'] = 'Contraseña de la App de 2 Factores'; +$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.

    '] = '

    Contraseñas de la App son contraseñas aleatorias que se usan en lugar de la contraseña normal para autenticarte usando Apps de 3ras compañías que no soportan autenticación de 2 factores.

    '; +$a->strings['Make sure to copy your new app-specific password now. You won’t be able to see it again!'] = 'Asegurate de copiar tu contraseña de la App ahora. No podrás verla de nuevo!'; +$a->strings['Description'] = 'Descripción'; +$a->strings['Last Used'] = 'Usada desde'; +$a->strings['Revoke'] = 'Revocar'; +$a->strings['Revoke All'] = 'Revocar todo'; +$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.'] = 'Cuando generas nueva contraseña de la App, debes verla de inmediato, se te mostrará solo una vez cuando la generes.'; +$a->strings['Generate new app-specific password'] = 'Generar nueva contraseña de la App'; +$a->strings['Friendiqa on my Fairphone 2...'] = 'Friendica en mimóvil 2'; +$a->strings['Generate'] = 'Generar'; +$a->strings['Two-factor authentication successfully disabled.'] = 'La autenticación de dos factores se ha desactivado correctamente.'; +$a->strings['

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

    '] = '

    Usa una aplicación en un móvil para obtener códigos de autentificación de 2 factores cuando ingreses.

    '; +$a->strings['Authenticator app'] = 'Autenticador'; +$a->strings['Configured'] = 'Configurado'; +$a->strings['Not Configured'] = 'Sin configurar'; +$a->strings['

    You haven\'t finished configuring your authenticator app.

    '] = '

    No has concluido de configurar tu app Autentificador.

    '; +$a->strings['

    Your authenticator app is correctly configured.

    '] = '

    Tu autenticador está configurado correctamente.

    '; +$a->strings['Recovery codes'] = 'Códigos de recuperación'; +$a->strings['Remaining valid codes'] = 'Códigos válidos restantes'; +$a->strings['

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

    '] = '

    Estos códigos de una sola vez pueden reemplazar la app Autenticador si perdieras acceso a ella.

    '; +$a->strings['App-specific passwords'] = 'Contraseñas específicas de la App'; +$a->strings['Generated app-specific passwords'] = 'Generadas contraseñas específicas de App'; +$a->strings['

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

    '] = '

    Estas contraseñas generadas automáticamente te permiten entrar con apps que no permitan Autenticación de 2 factores.

    '; +$a->strings['Current password:'] = 'Contraseña actual'; +$a->strings['You need to provide your current password to change two-factor authentication settings.'] = 'necesitas tu contraseña actual para cambiar los ajustes de autenticación de 2 factores.'; +$a->strings['Enable two-factor authentication'] = 'Habilitar Autenticación de 2 factores'; +$a->strings['Disable two-factor authentication'] = 'Deshabilitar Autenticación de 2 factores'; +$a->strings['Show recovery codes'] = 'Mostrar códigos de recuperación'; +$a->strings['Manage app-specific passwords'] = 'Administrar contraseñas de la app'; +$a->strings['Manage trusted browsers'] = 'Administrar navegadores confiables'; +$a->strings['Finish app configuration'] = 'Completar configuración de la App'; +$a->strings['New recovery codes successfully generated.'] = 'Nuevos códigos de recuperación generados.'; +$a->strings['Two-factor recovery codes'] = 'Códigos de recuperación de 2 factores'; +$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.

    '] = '

    Puedes usar los códigos de recuperación si perdieras acceso al móvil y no pudieras recibir códigos de autenticación de 2 Factores.

    Guarda esto de manera segura! Si perdieras tu móvil sin tener los códigos de recuperación perderías el acceso a tu cuenta.

    '; +$a->strings['When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore.'] = 'Cuando generas nuevos códigos de recuperación, debes copiar los nuevos códigos. los anteriores ya no funcionarán.'; +$a->strings['Generate new recovery codes'] = 'Generar nuevos códigos de recuperación'; +$a->strings['Next: Verification'] = 'Siguiente: Verificación'; +$a->strings['Trusted browsers successfully removed.'] = 'Los navegadores de confianza se eliminaron correctamente.'; +$a->strings['Trusted browser successfully removed.'] = 'Navegador de confianza se eliminó correctamente.'; +$a->strings['Two-factor Trusted Browsers'] = 'Navegadores de confianza de dos factores'; +$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.'] = 'Los navegadores de confianza son navegadores individuales que eligió para omitir la autenticación de dos factores para acceder a Friendica. Utilice esta función con moderación, ya que puede anular el beneficio de la autenticación de dos factores.'; +$a->strings['Device'] = 'Dispositivo'; +$a->strings['OS'] = 'OS/SO'; +$a->strings['Trusted'] = 'Confiable'; +$a->strings['Last Use'] = 'Usada desde'; +$a->strings['Remove All'] = 'Borrar todo'; +$a->strings['Two-factor authentication successfully activated.'] = 'Se activó autenticación de 2 Factores.'; +$a->strings['

    Or you can submit the authentication settings manually:

    +
    +
    Issuer
    +
    %s
    +
    Account Name
    +
    %s
    +
    Secret Key
    +
    %s
    +
    Type
    +
    Time-based
    +
    Number of digits
    +
    6
    +
    Hashing algorithm
    +
    SHA-1
    +
    '] = '

    O puedes ajustar manualmente la autenticación:

    +
    +
    Solicitante
    +
    %s
    +
    Cuenta
    +
    %s
    +
    Clave Secreta
    +
    %s
    +
    Tipo
    +
    Basado en tiempo
    +
    No. dígitos
    +
    6
    +
    Algoritmo de encriptación
    +
    SHA-1
    +
    '; +$a->strings['Two-factor code verification'] = 'Verificación de código de 2 Factores'; +$a->strings['

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

    '] = '

    Escanee este código QR con su aplicación de autenticación y envíe el código proporcionado.

    '; +$a->strings['

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

    %s

    '] = '

    O puede abrir la siguiente URL en su dispositivo móvil:

    %s

    '; +$a->strings['Verify code and enable two-factor authentication'] = 'Verifica código y habilita autenticación de 2 Factores'; +$a->strings['Export account'] = 'Exportar cuenta'; +$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.'] = 'Exporta la información de tu cuenta y tus contactos. Úsalo para guardar una copia de seguridad de tu cuenta y/o moverla a otro servidor.'; +$a->strings['Export all'] = 'Exportar todo'; +$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)'] = 'Exportar tu info de cuenta, contactos y artículos en formato JSON. Podría ser un archivo grande, y tomar mucho tiempo. Solo usalo para respaldo completo de tu cuenta (fotos no se exportan)'; +$a->strings['Export Contacts to CSV'] = 'Exportar Contactos como archivo CSV'; +$a->strings['Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon.'] = 'Exportar la lista de cuentas que sigues como archivo CSV. Compatible con ej. Mastodon.'; +$a->strings['Stack trace:'] = 'Seguimiento de pila:'; +$a->strings['Exception thrown in %s:%d'] = 'Excepción lanzada en %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.'] = 'En el momento del registro, y para proporcionar comunicaciones entre la cuenta de usuario y sus contactos, el usuario debe proporcionar un nombre para mostrar (seudónimo), un nombre de usuario (apodo) y una dirección de correo que funcione. Los nombres seran visibles en tu página de perfil de la cuenta por cualquier visitante de la página, incluso si no se muestran otros detalles del perfil. La dirección de correo solo se usará para enviar notificaciones al usuario sobre interacciones, pero no será visible. La lista de una cuenta en el directorio de usuarios del nodo o el directorio de usuarios global es opcional y se puede controlar en los Ajustes de Configuración, no es necesario para la comunicación.'; +$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.'] = 'Estos datos son necesarios para la comunicación y se transmiten a los nodos de los socios de comunicación y se almacena allí. Los usuarios pueden ingresar datos privados que pueden ser transmitidos a las cuentas de los socios de comunicación.'; +$a->strings['Privacy Statement'] = 'Declaración de Privacidad'; +$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'El artículo solicitado no existe o fue borrado.'; +$a->strings['User imports on closed servers can only be done by an administrator.'] = 'Importar usuarios en sitios cerrados solo lo hace el Administrador.'; +$a->strings['Move account'] = 'Mover cuenta'; +$a->strings['You can import an account from another Friendica server.'] = 'Puedes importar una cuenta desde otro servidor de Friendica.'; +$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.'] = 'Necesitas exportar tu cuenta del antiguo servidor y subirla aquí. Volveremos a crear tu antigua cuenta con todos tus contactos aquí. También intentaremos de informar a tus amigos de que te has mudado.'; +$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Característica experimental. No podemos importar contactos desde la red OStatus (statusnet/identi.ca) o desde Diaspora*'; +$a->strings['Account file'] = 'Archivo de la cuenta'; +$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Para exportar el perfil vaya a "Configuración -> Exportar sus datos personales" y seleccione "Exportar cuenta"'; +$a->strings['Error decoding account file'] = 'Error decodificando el archivo de cuenta'; +$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta friendica? '; +$a->strings['User \'%s\' already exists on this server!'] = 'La cuenta \'%s\' ya existe en este servidor!'; +$a->strings['User creation error'] = 'Error al crear la cuenta'; +$a->strings['%d contact not imported'] = [ + 0 => '%d contacto no importado', + 1 => '%d contactos no importados', + 2 => '%d contactos no importados', +]; +$a->strings['User profile creation error'] = 'Error al crear Perfil de Usuario'; +$a->strings['Done. You can now login with your username and password'] = 'Hecho. Ahora podes ingresar con tu usuario y contraseña.'; +$a->strings['Welcome to Friendica'] = 'Bienvenido a Friendica'; +$a->strings['New Member Checklist'] = 'Nuevos miembros'; +$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.'] = 'Nos gustaría ofrecerte algunos consejos y enlaces para ayudar a hacer tu experiencia más amena. Pulsa en cualquier elemento para visitar la página correspondiente. Un enlace a esta página será visible desde tu página de inicio durante las dos semanas siguientes a tu inscripción y luego desaparecerá.'; +$a->strings['Getting Started'] = 'Iniciando..'; +$a->strings['Friendica Walk-Through'] = 'Visita guiada a Friendica'; +$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.'] = 'En tu página de Inicio Rápido - busca una introducción breve para tus pestañas de perfil y red, haz algunas conexiones nuevas, y busca algunos grupos a los que unirte.'; +$a->strings['Go to Your Settings'] = 'Ir a tus Ajustes'; +$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.'] = 'En la página de Configuración puedes cambiar tu contraseña inicial. También aparece tu ID (Identity Address). Es parecida a una dirección de correo y te servirá para conectar con gente de redes sociales libres.'; +$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.'] = 'Revisa las otras configuraciones, especialmente la configuración de privacidad. Un listado de directorio sin publicar es como tener un número de teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que tus amigos y amigos potenciales sepan cómo ponerse en contacto contigo.'; +$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.'] = 'Sube una foto para tu perfil si no lo has hecho aún. Los estudios han demostrado que la gente que usa fotos suyas reales tienen diez veces más éxito a la hora de entablar amistad que las que no.'; +$a->strings['Edit Your Profile'] = 'Editar tu perfil'; +$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.'] = 'Edita tu perfil predeterminado como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos.'; +$a->strings['Profile Keywords'] = 'Palabras clave del perfil'; +$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.'] = 'Establece algunas palabras clave públicas para tu perfil que describan tus intereses. Podremos encontrar a otras personas con intereses similares y sugerir amistades.'; +$a->strings['Connecting'] = 'Conectando'; +$a->strings['Importing Emails'] = 'Importando correos electrónicos'; +$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'] = 'Introduce la información para acceder a tu correo en la página de Configuración del conector si quieres importar e interactuar con amigos o listas de correos del buzón de entrada de tu correo electrónico.'; +$a->strings['Go to Your Contacts Page'] = 'Ir a tu página de contactos'; +$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.'] = 'Tu página de Contactos es el portal desde donde podrás manejar tus amistades y conectarte con amigos de otras redes. Normalmente introduces su dirección o la dirección de su sitio web en el recuadro "Añadir contacto nuevo".'; +$a->strings['Go to Your Site\'s Directory'] = 'Ir al directorio de tu sitio'; +$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.'] = 'El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de Conectar o Seguir en su perfil. Proporciona tu direción personal si es necesario.'; +$a->strings['Finding New People'] = 'Encontrando nueva gente'; +$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.'] = 'En el panel lateral de la página de Contactos existen varias herramientas para encontrar nuevos amigos. Podemos filtrar personas por sus intereses, buscar personas por nombre o por sus intereses, y ofrecerte sugerencias basadas en sus relaciones de la red. En un sitio nuevo, las sugerencias de amigos por lo general comienzan pasadas las 24 horas.'; +$a->strings['Why Aren\'t My Posts Public?'] = '¿Por qué mis publicaciones no son públicas?'; +$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.'] = 'Friendica respeta tu privacidad. Por defecto, tus publicaciones solo se mostrarán a personas que hayas añadido como amistades. Para más información, mira la sección de ayuda en el enlace de más arriba.'; +$a->strings['Getting Help'] = 'Consiguiendo ayuda'; +$a->strings['Go to the Help Section'] = 'Ir a la sección de ayuda'; +$a->strings['Our help pages may be consulted for detail on other program features and resources.'] = 'Puedes consultar nuestra página de Ayuda para más información y recursos de ayuda.'; +$a->strings['%s liked %s\'s post'] = 'A %s le gusta el artículo de %s'; +$a->strings['%s disliked %s\'s post'] = 'A %s no le gusta el artículo de %s'; +$a->strings['%s is attending %s\'s event'] = '%s atenderá el evento de %s'; +$a->strings['%s is not attending %s\'s event'] = '%s no atenderá el evento %s'; +$a->strings['%s may attending %s\'s event'] = '%s podría asistir al evento de %s'; +$a->strings['%s is now friends with %s'] = '%s es ahora amigo de %s'; +$a->strings['%s commented on %s\'s post'] = '%s comentó el artículo de %s'; +$a->strings['%s created a new post'] = '%s creó un nuevo artículo'; +$a->strings['Friend Suggestion'] = 'Sugerencia de amistad'; +$a->strings['Friend/Connect Request'] = 'Solicitud de Amistad/Conexión'; +$a->strings['New Follower'] = 'Nuevo seguidor'; +$a->strings['[Friendica:Notify]'] = '[Friendica:Notificar]'; +$a->strings['%s New mail received at %s'] = '%s Nuevo correo recibido %s'; +$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s te envió mensaje privado a las %2$s.'; +$a->strings['a private message'] = 'un mensaje privado'; +$a->strings['%1$s sent you %2$s.'] = '%1$s te envió %2$s.'; +$a->strings['Please visit %s to view and/or reply to your private messages.'] = 'Visita %s para ver y/o responder a tus mensajes privados.'; +$a->strings['%1$s commented on %2$s\'s %3$s %4$s'] = '%1$s comentó en %2$s %3$s %4$s'; +$a->strings['%1$s commented on your %2$s %3$s'] = '%1$s comentó en %2$s %3$s'; +$a->strings['%1$s commented on their %2$s %3$s'] = '%1$s comentó en su %2$s %3$s'; +$a->strings['%1$s Comment to conversation #%2$d by %3$s'] = '%1$s Comentó sobre #%2$d by %3$s'; +$a->strings['%s commented on an item/conversation you have been following.'] = '%s comentó en una artículo/elemento que sigues.'; +$a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Por favor, visita %s para ver y/o responder a la conversación.'; +$a->strings['%s %s posted to your profile wall'] = '%s %s publicó en tu perfil'; +$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s publicó en tu perfil a las %2$s'; +$a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s publicó en [url=%2$s]tu perfil[/url]'; +$a->strings['%s Introduction received'] = '%s presentación recibida'; +$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Recibiste una presentación de \'%1$s\' en %2$s'; +$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Recibiste [url=%1$s]una presentación de [/url] de %2$s.'; +$a->strings['You may visit their profile at %s'] = 'Puedes visitar su perfil en %s'; +$a->strings['Please visit %s to approve or reject the introduction.'] = 'Visita %s para aceptar o rechazar la presentación'; +$a->strings['%s A new person is sharing with you'] = '%s Una nueva persona comparte contigo'; +$a->strings['%1$s is sharing with you at %2$s'] = '%1$s comparte contigo en %2$s'; +$a->strings['%s You have a new follower'] = '%s Tienes nuevo seguidor'; +$a->strings['You have a new follower at %2$s : %1$s'] = 'Tienes nuevo seguidor en %2$s : %1$s'; +$a->strings['%s Friend suggestion received'] = '%s Sugerencia de amistad recibida'; +$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = 'Recibiste una sugerencia de amistad de \'%1$s\' en %2$s'; +$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = 'Recibiste [url=%1$s]una sugerencia de amistad[/url] en %2$s de %3$s.'; +$a->strings['Name:'] = 'Nombre: '; +$a->strings['Photo:'] = 'Foto: '; +$a->strings['Please visit %s to approve or reject the suggestion.'] = 'Visita %s para aceptar o rechazar la sugerencia.'; +$a->strings['%s Connection accepted'] = '%s Conexión aceptada'; +$a->strings['\'%1$s\' has accepted your connection request at %2$s'] = '\'%1$s\' aceptó tu solicitud de conexión en %2$s'; +$a->strings['%2$s has accepted your [url=%1$s]connection request[/url].'] = '%2$s aceptó tu [url=%1$s]solicitud de conexión[/url].'; +$a->strings['You are now mutual friends and may exchange status updates, photos, and email without restriction.'] = 'Ahora son amigos mutuos y puede intercambiar actualizaciones, fotos e email sin restricción.'; +$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'Por favor visite %s si desea hacer algún cambio a su relación.'; +$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\' te ha aceptado como fan, eso restringe algunas formas de comunicación - como mensajes privados e interacciones de perfil. Si es un famoso o página comunitaria, esos son ajustes automáticos.'; +$a->strings['\'%1$s\' may choose to extend this into a two-way or more permissive relationship in the future.'] = '\'%1$s\' puede elegirte para una relación cercana o bidireccional en el futuro.'; +$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'Visita %s si deseas hacer algún cambio con este contacto.'; +$a->strings['registration request'] = 'petición de registro'; +$a->strings['You\'ve received a registration request from \'%1$s\' at %2$s'] = 'Recibiste una solicitud de registro de \'%1$s\' en %2$s'; +$a->strings['You\'ve received a [url=%1$s]registration request[/url] from %2$s.'] = 'Recibiste una [url=%1$s]solicitud de registro[/url] de %2$s.'; +$a->strings['Full Name: %s +Site Location: %s +Login Name: %s (%s)'] = 'Nombre Completo: %s +Ubicación: %s +Nombre de Usuario: %s (%s)'; +$a->strings['Please visit %s to approve or reject the request.'] = 'Visita %s para aprobar o rechazar la solicitud.'; +$a->strings['%s %s tagged you'] = '%s %s te etiquetó'; +$a->strings['%s %s shared a new post'] = '%s %s compartió nuevo artículo'; +$a->strings['This message was sent to you by %s, a member of the Friendica social network.'] = 'El mensaje te lo ha enviado %s, miembro de Friendica Red Social.'; +$a->strings['You may visit them online at %s'] = 'Puedes visitarlos en línea en %s'; +$a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes.'; +$a->strings['%s posted an update.'] = '%s publicó una actualización.'; +$a->strings['Private Message'] = 'Mensaje privado'; +$a->strings['This entry was edited'] = 'Esta entrada fue editada'; +$a->strings['Edit'] = 'Editar'; +$a->strings['Delete globally'] = 'Borrar Globalmente'; +$a->strings['Remove locally'] = 'Borrar localmente'; +$a->strings['Block %s'] = 'Bloquear %s'; +$a->strings['I will attend'] = 'Asistiré'; +$a->strings['I will not attend'] = 'No asistiré'; +$a->strings['I might attend'] = 'Podría asistir'; +$a->strings['Quote share this'] = 'Compartir Comentado esto'; +$a->strings['Quote Share'] = 'Compartir comentado'; +$a->strings['Reshare this'] = 'Compartir esto'; +$a->strings['Reshare'] = 'Compartir'; +$a->strings['Cancel your Reshare'] = 'Cancelar Compartir'; +$a->strings['Unshare'] = 'Dejar de Compartir'; +$a->strings['%s (Received %s)'] = '%s (Recibido %s)'; +$a->strings['Comment this item on your system'] = 'Comentarlo en mi estado'; +$a->strings['to'] = 'a'; +$a->strings['via'] = 'vía'; +$a->strings['Wall-to-Wall'] = 'Perfil-a-Perfil'; +$a->strings['via Wall-To-Wall:'] = 'via Perfil-a-Perfil:'; +$a->strings['Reply to %s'] = 'Responder a %s'; +$a->strings['More'] = 'Mas'; +$a->strings['Notifier task is pending'] = 'Notificador tarea pendiente'; +$a->strings['Delivery to remote servers is pending'] = 'Entrega remota pendiente'; +$a->strings['Delivery to remote servers is underway'] = 'Entrega remota en camino'; +$a->strings['Delivery to remote servers is mostly done'] = 'Entrega remota casi completada'; +$a->strings['Delivery to remote servers is done'] = 'Entrega remota completada'; +$a->strings['%d comment'] = [ + 0 => '%d comentario', + 1 => '%d comentarios', + 2 => '%d comentarios', +]; +$a->strings['Show more'] = 'Mostrar mas'; +$a->strings['Show fewer'] = 'Mostrar menos'; +$a->strings['(no subject)'] = '(sin asunto)'; +$a->strings['%s is now following %s.'] = '%s sigue ahora a %s.'; +$a->strings['following'] = 'siguiendo'; +$a->strings['%s stopped following %s.'] = '%s dejó de seguir a %s.'; +$a->strings['stopped following'] = 'dejó de seguir'; +$a->strings['Login failed.'] = 'Accesso fallido.'; +$a->strings['Login failed. Please check your credentials.'] = 'Acceso falló. Checa tus credenciales.'; +$a->strings['Welcome %s'] = 'Bienvenido %s'; +$a->strings['Please upload a profile photo.'] = 'Por favor sube una foto para el perfil.'; +$a->strings['Friendica Notification'] = 'Notificación de Friendica'; +$a->strings['%1$s, %2$s Administrator'] = '%1$s, %2$s Administrador'; +$a->strings['%s Administrator'] = '%s Administrador'; +$a->strings['thanks'] = 'gracias'; +$a->strings['YYYY-MM-DD or MM-DD'] = 'YYYY-MM-DD o MM-DD'; +$a->strings['never'] = 'nunca'; +$a->strings['less than a second ago'] = 'hace menos de un segundo'; +$a->strings['year'] = 'año'; +$a->strings['years'] = 'años'; +$a->strings['months'] = 'meses'; +$a->strings['weeks'] = 'semanas'; +$a->strings['days'] = 'días'; +$a->strings['hour'] = 'hora'; +$a->strings['hours'] = 'horas'; +$a->strings['minute'] = 'minuto'; +$a->strings['minutes'] = 'minutos'; +$a->strings['second'] = 'segundo'; +$a->strings['seconds'] = 'segundos'; +$a->strings['in %1$d %2$s'] = 'en %1$d %2$s'; +$a->strings['%1$d %2$s ago'] = 'hace %1$d %2$s'; +$a->strings['default'] = 'predeterminado'; +$a->strings['greenzero'] = 'greenzero'; +$a->strings['purplezero'] = 'purplezero'; +$a->strings['easterbunny'] = 'easterbunny'; +$a->strings['darkzero'] = 'darkzero'; +$a->strings['comix'] = 'comix'; +$a->strings['slackr'] = 'slackr'; +$a->strings['Variations'] = 'Variaciones'; +$a->strings['Light (Accented)'] = 'Luminoso (Acentuado)'; +$a->strings['Dark (Accented)'] = 'Oscuro (Acentuado)'; +$a->strings['Black (Accented)'] = 'Negro (Acentuado)'; +$a->strings['Note'] = 'Nota'; +$a->strings['Check image permissions if all users are allowed to see the image'] = 'Checa si todos los usuarios podrían ver esta imágen'; +$a->strings['Custom'] = 'Personalizado'; +$a->strings['Legacy'] = 'Legado'; +$a->strings['Accented'] = 'Acentuado'; +$a->strings['Select color scheme'] = 'Seleccionar esquema de color'; +$a->strings['Select scheme accent'] = 'Selecciona esquema de Acentuado'; +$a->strings['Blue'] = 'Azul'; +$a->strings['Red'] = 'Rojo'; +$a->strings['Purple'] = 'Púrpura'; +$a->strings['Green'] = 'Verde'; +$a->strings['Pink'] = 'Rosa'; +$a->strings['Copy or paste schemestring'] = 'Copiar o pegar esquema'; +$a->strings['You can copy this string to share your theme with others. Pasting here applies the schemestring'] = 'Puede copiar esta cadena para compartir su tema con otros. Pegando aquíAplica el Esquema'; +$a->strings['Navigation bar background color'] = 'Color de fondo de barra de navegación'; +$a->strings['Navigation bar icon color '] = 'Color de icono de barra de navegación'; +$a->strings['Link color'] = 'Color de enlace'; +$a->strings['Set the background color'] = 'Selecciona color de fondo'; +$a->strings['Content background opacity'] = 'Opacidad del Fondo del Contenido'; +$a->strings['Set the background image'] = 'Selecciona imagen de fondo'; +$a->strings['Background image style'] = 'Estilo de imagen de fondo'; +$a->strings['Login page background image'] = 'Imagen de fondo del Ingreso'; +$a->strings['Login page background color'] = 'Color de fondo del Ingreso'; +$a->strings['Leave background image and color empty for theme defaults'] = 'Deja imagen de fondo y color vacíos para el estándar'; +$a->strings['Top Banner'] = 'Anuncio superior'; +$a->strings['Resize image to the width of the screen and show background color below on long pages.'] = 'Cambiar tamaño de la imagen al ancho de pantalla y mostrar color de fondodebajo en Páginas largas.'; +$a->strings['Full screen'] = 'Pantalla completa'; +$a->strings['Resize image to fill entire screen, clipping either the right or the bottom.'] = 'Ajustar imagen a pantalla completa, recortando a la derecha o debajo..'; +$a->strings['Single row mosaic'] = 'Mosaico en renglón'; +$a->strings['Resize image to repeat it on a single row, either vertical or horizontal.'] = 'Ajustar imagen y repetir en una sola fila, ya sea vertical u horizontal.'; +$a->strings['Mosaic'] = 'Mosaico'; +$a->strings['Repeat image to fill the screen.'] = 'Repetir imagen hasta llenar pantalla.'; +$a->strings['Skip to main content'] = 'Saltar a contenido principal'; +$a->strings['Back to top'] = 'Ir al Inicio'; +$a->strings['Guest'] = 'Invitado'; +$a->strings['Visitor'] = 'Visitante'; +$a->strings['Alignment'] = 'Alineación'; +$a->strings['Left'] = 'Izquierda'; +$a->strings['Center'] = 'Centrado'; +$a->strings['Color scheme'] = 'Esquema de color'; +$a->strings['Posts font size'] = 'Tamaño de letra de artículos'; +$a->strings['Textareas font size'] = 'Tamaño de letra de áreas de texto'; +$a->strings['don\'t show'] = 'no mostrar'; +$a->strings['show'] = 'mostrar'; +$a->strings['Set style'] = 'Definir estilo'; +$a->strings['Community Pages'] = 'Páginas de Comunidad'; +$a->strings['Community Profiles'] = 'Perfiles de la Comunidad'; +$a->strings['Help or @NewHere ?'] = '¿Ayuda o @NewHere?'; +$a->strings['Connect Services'] = 'Conectar Servicios'; +$a->strings['Find Friends'] = 'Buscar amistades'; +$a->strings['Last users'] = 'Últimos usuarios'; +$a->strings['Quick Start'] = 'Inicio rápido'; diff --git a/view/lang/et/messages.po b/view/lang/et/messages.po index 6612fb62a..e22d3e3b2 100644 --- a/view/lang/et/messages.po +++ b/view/lang/et/messages.po @@ -1,562 +1,86 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: -# Rain Hawk, 2019-2021 +# Rain Hawk, 2019-2022 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-27 12:46+0100\n" -"PO-Revision-Date: 2021-12-21 21:18+0000\n" -"Last-Translator: Rain Hawk\n" -"Language-Team: Estonian (http://www.transifex.com/Friendica/friendica/language/et/)\n" +"POT-Creation-Date: 2023-09-18 05:30+0000\n" +"PO-Revision-Date: 2011-05-05 10:19+0000\n" +"Last-Translator: Rain Hawk, 2019-2022\n" +"Language-Team: Estonian (http://app.transifex.com/Friendica/friendica/language/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: include/api.php:771 src/Module/BaseApi.php:275 -#, 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:785 src/Module/BaseApi.php:291 -#, 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:799 src/Module/BaseApi.php:307 -#, php-format -msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "" - -#: mod/cal.php:44 mod/cal.php:48 mod/follow.php:39 mod/redir.php:34 -#: mod/redir.php:175 src/Module/Conversation/Community.php:181 -#: src/Module/Debug/ItemBody.php:37 src/Module/Diaspora/Receive.php:57 -#: 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:43 -msgid "Access denied." -msgstr "Ligipääs keelatud." - -#: mod/cal.php:61 mod/cal.php:78 mod/photos.php:69 mod/photos.php:140 -#: mod/photos.php:804 src/Model/Profile.php:229 src/Module/HCard.php:52 -#: src/Module/Profile/Common.php:41 src/Module/Profile/Common.php:52 -#: src/Module/Profile/Contacts.php:40 src/Module/Profile/Contacts.php:50 -#: src/Module/Profile/Media.php:38 src/Module/Profile/Status.php:58 -#: src/Module/Register.php:266 src/Module/RemoteFollow.php:58 -msgid "User not found." -msgstr "" - -#: mod/cal.php:120 mod/display.php:270 src/Module/Profile/Profile.php:94 -#: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:109 -#: src/Module/Update/Profile.php:56 -msgid "Access to this profile has been restricted." -msgstr "Ligipääs sellele profiilile on piiratud. " - -#: mod/cal.php:242 mod/events.php:377 src/Content/Nav.php:194 -#: src/Content/Nav.php:258 src/Module/BaseProfile.php:84 -#: src/Module/BaseProfile.php:95 view/theme/frio/theme.php:229 -#: view/theme/frio/theme.php:233 -msgid "Events" -msgstr "Sündmused" - -#: mod/cal.php:243 mod/events.php:378 -msgid "View" -msgstr "Vaade" - -#: mod/cal.php:244 mod/events.php:380 -msgid "Previous" -msgstr "Eelmine" - -#: mod/cal.php:245 mod/events.php:381 src/Module/Install.php:214 -msgid "Next" -msgstr "Järgmine" - -#: mod/cal.php:248 mod/events.php:386 src/Model/Event.php:457 -msgid "today" -msgstr "täna" - -#: mod/cal.php:249 mod/events.php:387 src/Model/Event.php:458 -#: src/Util/Temporal.php:334 -msgid "month" -msgstr "kuu" - -#: mod/cal.php:250 mod/events.php:388 src/Model/Event.php:459 -#: src/Util/Temporal.php:335 -msgid "week" -msgstr "nädal" - -#: mod/cal.php:251 mod/events.php:389 src/Model/Event.php:460 -#: src/Util/Temporal.php:336 -msgid "day" -msgstr "päev" - -#: mod/cal.php:252 mod/events.php:390 -msgid "list" -msgstr "" - -#: mod/cal.php:265 src/Console/User.php:182 src/Model/User.php:659 -#: 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:76 -msgid "User not found" -msgstr "Kasutajat ei leitud" - -#: mod/cal.php:274 -msgid "This calendar format is not supported" -msgstr "See kalendriformaat ei ole toetatud" - -#: mod/cal.php:276 -msgid "No exportable data found" -msgstr "Eksporditavaid andmeid ei leitud" - -#: mod/cal.php:293 -msgid "calendar" -msgstr "kalender" - -#: mod/display.php:165 mod/photos.php:808 -#: src/Module/Conversation/Community.php:175 src/Module/Directory.php:48 -#: src/Module/Search/Index.php:49 -msgid "Public access denied." -msgstr "Avalik ligipääs keelatud." - -#: mod/display.php:221 mod/display.php:295 -msgid "The requested item doesn't exist or has been deleted." -msgstr "" - -#: mod/display.php:375 -msgid "The feed for this item is unavailable." -msgstr "" - -#: mod/editpost.php:38 mod/events.php:220 mod/follow.php:56 mod/follow.php:130 -#: mod/item.php:185 mod/item.php:190 mod/item.php:937 mod/message.php:69 -#: mod/message.php:111 mod/notes.php:44 mod/ostatus_subscribe.php:32 -#: mod/photos.php:160 mod/photos.php:897 mod/repair_ostatus.php:31 -#: mod/settings.php:46 mod/settings.php:56 mod/settings.php:410 -#: mod/suggest.php:34 mod/uimport.php:33 mod/unfollow.php:35 -#: mod/unfollow.php:50 mod/unfollow.php:82 mod/wall_attach.php:68 -#: mod/wall_attach.php:71 mod/wall_upload.php:90 mod/wall_upload.php:93 -#: mod/wallmessage.php:36 mod/wallmessage.php:55 mod/wallmessage.php:89 -#: mod/wallmessage.php:109 src/Module/Attach.php:55 src/Module/BaseApi.php:77 -#: src/Module/BaseApi.php:86 src/Module/BaseApi.php:95 -#: src/Module/BaseApi.php:104 src/Module/BaseNotifications.php:97 -#: src/Module/Contact/Advanced.php:60 src/Module/Delegation.php:118 -#: src/Module/FollowConfirm.php:18 src/Module/FriendSuggest.php:56 -#: src/Module/Group.php:42 src/Module/Group.php:85 src/Module/Invite.php:41 -#: src/Module/Invite.php:130 src/Module/Notifications/Notification.php:48 -#: src/Module/Notifications/Notification.php:79 -#: src/Module/Profile/Common.php:56 src/Module/Profile/Contacts.php:56 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:76 src/Module/Register.php:89 -#: src/Module/Register.php:205 src/Module/Register.php:244 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Delegation.php:42 -#: src/Module/Settings/Delegation.php:70 src/Module/Settings/Display.php:42 -#: src/Module/Settings/Display.php:120 -#: src/Module/Settings/Profile/Photo/Crop.php:166 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/UserExport.php:57 src/Module/Settings/UserExport.php:91 -#: src/Module/Settings/UserExport.php:196 -#: src/Module/Settings/UserExport.php:216 -#: src/Module/Settings/UserExport.php:281 -msgid "Permission denied." -msgstr "Õigus puudub." - -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Ei leitud" - -#: mod/editpost.php:64 -msgid "Edit post" -msgstr "Muuda postitust" - -#: mod/editpost.php:91 mod/notes.php:56 src/Content/Text/HTML.php:875 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:73 -msgid "Save" -msgstr "Salvesta" - -#: mod/editpost.php:92 mod/photos.php:1344 src/Content/Conversation.php:326 -#: src/Module/Contact/Poke.php:157 src/Object/Post.php:964 -msgid "Loading..." -msgstr "" - -#: mod/editpost.php:93 mod/message.php:198 mod/message.php:355 -#: mod/wallmessage.php:139 src/Content/Conversation.php:327 -msgid "Upload photo" -msgstr "Lae foto üles" - -#: mod/editpost.php:94 src/Content/Conversation.php:328 -msgid "upload photo" -msgstr "lae foto üles" - -#: mod/editpost.php:95 src/Content/Conversation.php:329 -msgid "Attach file" -msgstr "Manusta fail" - -#: mod/editpost.php:96 src/Content/Conversation.php:330 -msgid "attach file" -msgstr "manusta fail" - -#: mod/editpost.php:97 mod/message.php:199 mod/message.php:356 -#: mod/wallmessage.php:140 -msgid "Insert web link" -msgstr "Lisa hüperlink" - -#: mod/editpost.php:98 -msgid "web link" -msgstr "hüperlink" - -#: mod/editpost.php:99 -msgid "Insert video link" -msgstr "Lisa videolink" - -#: mod/editpost.php:100 -msgid "video link" -msgstr "videolink" - -#: mod/editpost.php:101 -msgid "Insert audio link" -msgstr "Lisa audiolink" - -#: mod/editpost.php:102 -msgid "audio link" -msgstr "audiolink" - -#: mod/editpost.php:103 src/Content/Conversation.php:340 -#: src/Module/Item/Compose.php:161 -msgid "Set your location" -msgstr "Vali oma asukoht" - -#: mod/editpost.php:104 src/Content/Conversation.php:341 -msgid "set location" -msgstr "vali asukoht" - -#: mod/editpost.php:105 src/Content/Conversation.php:342 -msgid "Clear browser location" -msgstr "Kustuta sirviku asukoht" - -#: mod/editpost.php:106 src/Content/Conversation.php:343 -msgid "clear location" -msgstr "kustuta asukoht" - -#: mod/editpost.php:107 mod/message.php:200 mod/message.php:358 -#: mod/photos.php:1495 mod/wallmessage.php:141 -#: src/Content/Conversation.php:355 src/Content/Conversation.php:690 -#: src/Module/Item/Compose.php:165 src/Object/Post.php:502 -msgid "Please wait" -msgstr "Palun oota" - -#: mod/editpost.php:108 src/Content/Conversation.php:356 -msgid "Permission settings" -msgstr "Õiguste sätted" - -#: mod/editpost.php:116 src/Core/ACL.php:325 -msgid "CC: email addresses" -msgstr "CC: emaili addressid" - -#: mod/editpost.php:117 src/Content/Conversation.php:366 -msgid "Public post" -msgstr "Avalik postitus" - -#: mod/editpost.php:120 src/Content/Conversation.php:345 -#: src/Module/Item/Compose.php:166 -msgid "Set title" -msgstr "Pane pealkiri" - -#: mod/editpost.php:122 src/Content/Conversation.php:347 -#: src/Module/Item/Compose.php:167 -msgid "Categories (comma-separated list)" -msgstr "Kategooriad (komaga-eraldatud nimistu)" - -#: mod/editpost.php:123 src/Core/ACL.php:326 -msgid "Example: bob@example.com, mary@example.com" -msgstr "" - -#: mod/editpost.php:128 mod/events.php:517 mod/photos.php:1343 -#: mod/photos.php:1399 mod/photos.php:1473 src/Content/Conversation.php:370 -#: src/Module/Item/Compose.php:160 src/Object/Post.php:974 -msgid "Preview" -msgstr "Eelvaade" - -#: mod/editpost.php:130 mod/fbrowser.php:100 mod/fbrowser.php:127 -#: mod/follow.php:144 mod/photos.php:1010 mod/photos.php:1111 mod/tagrm.php:35 -#: mod/tagrm.php:127 mod/unfollow.php:97 src/Content/Conversation.php:373 -#: src/Module/Contact/Revoke.php:110 src/Module/RemoteFollow.php:127 -msgid "Cancel" -msgstr "Katkesta" - -#: mod/editpost.php:134 src/Content/Conversation.php:331 -#: src/Module/Item/Compose.php:151 src/Object/Post.php:965 -msgid "Bold" -msgstr "Rasvane" - -#: mod/editpost.php:135 src/Content/Conversation.php:332 -#: src/Module/Item/Compose.php:152 src/Object/Post.php:966 -msgid "Italic" -msgstr "" - -#: mod/editpost.php:136 src/Content/Conversation.php:333 -#: src/Module/Item/Compose.php:153 src/Object/Post.php:967 -msgid "Underline" -msgstr "Allajoonitud" - -#: mod/editpost.php:137 src/Content/Conversation.php:334 -#: src/Module/Item/Compose.php:154 src/Object/Post.php:968 -msgid "Quote" -msgstr "Tsitaat" - -#: mod/editpost.php:138 src/Content/Conversation.php:335 -#: src/Module/Item/Compose.php:155 src/Object/Post.php:969 -msgid "Code" -msgstr "Kood" - -#: mod/editpost.php:139 src/Content/Conversation.php:337 -#: src/Module/Item/Compose.php:157 src/Object/Post.php:971 -msgid "Link" -msgstr "" - -#: mod/editpost.php:140 src/Content/Conversation.php:338 -#: src/Module/Item/Compose.php:158 src/Object/Post.php:972 -msgid "Link or Media" -msgstr "Link või meediafail" - -#: mod/editpost.php:143 src/Content/Conversation.php:380 -#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:460 -#: src/Module/Admin/Logs/View.php:92 -msgid "Message" -msgstr "Sõnum" - -#: mod/editpost.php:144 src/Content/Conversation.php:381 -#: src/Module/Settings/TwoFactor/Trusted.php:118 -msgid "Browser" -msgstr "Sirvik" - -#: mod/editpost.php:145 mod/events.php:522 mod/photos.php:945 -#: mod/photos.php:1297 src/Content/Conversation.php:357 -msgid "Permissions" -msgstr "Õigused" - -#: mod/editpost.php:147 src/Content/Conversation.php:383 -msgid "Open Compose page" -msgstr "" - -#: mod/events.php:123 mod/events.php:125 -msgid "Event can not end before it has started." -msgstr "Sündmus ei saa lõppeda enne algamist." - -#: mod/events.php:132 mod/events.php:134 -msgid "Event title and start time are required." -msgstr "Sündmuse pealkiri ja algusaeg nõutavad." - -#: mod/events.php:379 -msgid "Create New Event" -msgstr "Loo uus sündmus" - -#: mod/events.php:478 src/Module/Admin/Logs/View.php:96 -msgid "Event details" -msgstr "Sündmuse detailid" - -#: mod/events.php:479 -msgid "Starting date and Title are required." -msgstr "Alguskuupäev ja Pealkiri nõutavad." - -#: mod/events.php:480 mod/events.php:485 -msgid "Event Starts:" -msgstr "Sündmus algab:" - -#: mod/events.php:480 mod/events.php:510 -#: src/Module/Admin/Blocklist/Server/Add.php:104 -#: src/Module/Admin/Blocklist/Server/Add.php:106 -#: src/Module/Admin/Blocklist/Server/Index.php:68 -#: src/Module/Admin/Blocklist/Server/Index.php:69 -#: src/Module/Admin/Blocklist/Server/Index.php:96 -#: src/Module/Admin/Item/Delete.php:70 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:207 src/Module/Install.php:240 -#: src/Module/Install.php:245 src/Module/Install.php:264 -#: src/Module/Install.php:275 src/Module/Install.php:280 -#: src/Module/Install.php:286 src/Module/Install.php:291 -#: src/Module/Install.php:305 src/Module/Install.php:320 -#: src/Module/Install.php:347 src/Module/Register.php:147 -#: src/Module/Security/TwoFactor/Verify.php:100 -#: src/Module/Settings/TwoFactor/Index.php:133 -#: src/Module/Settings/TwoFactor/Verify.php:153 -msgid "Required" -msgstr "Nõutav" - -#: mod/events.php:493 mod/events.php:516 -msgid "Finish date/time is not known or not relevant" -msgstr "Lõpu kuupäev/aeg pole teada või pole olulised" - -#: mod/events.php:495 mod/events.php:500 -msgid "Event Finishes:" -msgstr "Sündmus lõpeb:" - -#: mod/events.php:506 src/Module/Profile/Profile.php:172 -#: src/Module/Settings/Profile/Index.php:238 -msgid "Description:" -msgstr "Kirjeldus:" - -#: mod/events.php:508 src/Content/Widget/VCard.php:98 src/Model/Event.php:80 -#: src/Model/Event.php:107 src/Model/Event.php:466 src/Model/Event.php:915 -#: src/Model/Profile.php:368 src/Module/Contact/Profile.php:376 -#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:185 -#: src/Module/Profile/Profile.php:194 -msgid "Location:" -msgstr "Asukoht:" - -#: mod/events.php:510 mod/events.php:512 -msgid "Title:" -msgstr "Pealkiri:" - -#: mod/events.php:513 mod/events.php:514 -msgid "Share this event" -msgstr "Jaga seda sündmust" - -#: mod/events.php:519 mod/message.php:201 mod/message.php:357 -#: mod/photos.php:927 mod/photos.php:1031 mod/photos.php:1301 -#: mod/photos.php:1342 mod/photos.php:1398 mod/photos.php:1472 -#: src/Module/Admin/Item/Source.php:65 src/Module/Contact/Advanced.php:147 -#: src/Module/Contact/Poke.php:158 src/Module/Contact/Profile.php:334 -#: src/Module/Debug/ActivityPubConversion.php:141 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:144 -#: src/Module/Install.php:252 src/Module/Install.php:294 -#: src/Module/Install.php:331 src/Module/Invite.php:177 -#: src/Module/Item/Compose.php:150 src/Module/Profile/Profile.php:247 -#: src/Module/Settings/Profile/Index.php:222 src/Object/Post.php:963 -#: 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 "Saada" - -#: mod/events.php:520 src/Module/Profile/Profile.php:248 -msgid "Basic" -msgstr "Peamine" - -#: mod/events.php:521 src/Module/Admin/Site.php:506 src/Module/Contact.php:474 -#: src/Module/Profile/Profile.php:249 -msgid "Advanced" -msgstr "Täpsem" - -#: mod/events.php:538 -msgid "Failed to remove event" -msgstr "Ei õnnestunud sündmust eemaldada" - -#: mod/fbrowser.php:43 src/Content/Nav.php:192 src/Module/BaseProfile.php:64 -#: view/theme/frio/theme.php:227 -msgid "Photos" -msgstr "Fotod" - -#: mod/fbrowser.php:102 mod/fbrowser.php:129 -#: src/Module/Settings/Profile/Photo/Index.php:129 -msgid "Upload" -msgstr "Lae üles" - -#: mod/fbrowser.php:124 -msgid "Files" -msgstr "Failid" - -#: mod/follow.php:74 mod/unfollow.php:96 src/Module/RemoteFollow.php:126 -msgid "Submit Request" -msgstr "Saada taotlus" - -#: mod/follow.php:84 -msgid "You already added this contact." -msgstr "Te juba lisasite selle kontakti." - -#: mod/follow.php:100 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "" - -#: mod/follow.php:108 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Diaspora toetus pole võimaldatud. Kontakti ei saa lisada." - -#: mod/follow.php:113 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatus tugi pole võimaldatud. Kontakti ei saa lisada." - -#: mod/follow.php:138 src/Content/Item.php:463 src/Content/Widget.php:76 -#: src/Model/Contact.php:1042 src/Model/Contact.php:1054 -#: view/theme/vier/theme.php:172 -msgid "Connect/Follow" -msgstr "Ühendu/Järgi" - -#: mod/follow.php:139 src/Module/RemoteFollow.php:125 -msgid "Please answer the following:" -msgstr "Palun vasta järgnevale:" - -#: mod/follow.php:140 mod/unfollow.php:94 -msgid "Your Identity Address:" -msgstr "Sinu ID aadress:" - -#: mod/follow.php:141 mod/unfollow.php:100 -#: src/Module/Admin/Blocklist/Contact.php:116 -#: src/Module/Contact/Profile.php:372 -#: src/Module/Notifications/Introductions.php:127 -#: src/Module/Notifications/Introductions.php:196 -msgid "Profile URL" -msgstr "Profiili URL" - -#: mod/follow.php:142 src/Module/Contact/Profile.php:384 -#: src/Module/Notifications/Introductions.php:189 -#: src/Module/Profile/Profile.php:207 -msgid "Tags:" -msgstr "Tag`id: " - -#: mod/follow.php:153 -#, php-format -msgid "%s knows you" -msgstr "" - -#: mod/follow.php:154 -msgid "Add a personal note:" -msgstr "Lisa personaalne teade:" - -#: mod/follow.php:163 mod/unfollow.php:109 src/Module/BaseProfile.php:59 -#: src/Module/Contact.php:444 -msgid "Status Messages and Posts" -msgstr "Staatussõnumid ja Postitused" - -#: mod/follow.php:191 -msgid "The contact could not be added." -msgstr "Kontakti ei saanud lisada." - -#: mod/item.php:135 mod/item.php:139 +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 msgid "Unable to locate original post." msgstr "Ei leia algset postitust." -#: mod/item.php:341 mod/item.php:346 -msgid "Empty post discarded." -msgstr "Tühi postitus eiratud." - -#: mod/item.php:743 +#: mod/item.php:138 msgid "Post updated." msgstr "" -#: mod/item.php:753 mod/item.php:758 +#: mod/item.php:203 mod/item.php:207 msgid "Item wasn't stored." msgstr "" -#: mod/item.php:769 +#: mod/item.php:217 msgid "Item couldn't be fetched." msgstr "" -#: mod/item.php:915 src/Module/Admin/Themes/Details.php:39 -#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:41 -#: src/Module/Debug/ItemBody.php:56 +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "Tühi postitus eiratud." + +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 +#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Elementi ei leitud" +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:99 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:38 +#: src/Module/FriendSuggest.php:57 src/Module/Invite.php:42 +#: src/Module/Invite.php:131 src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Delegation.php:41 src/Module/Settings/Delegation.php:71 +#: src/Module/Settings/Display.php:73 src/Module/Settings/Display.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:111 +#: src/Module/Settings/RemoveMe.php:117 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Import.php:84 +#: src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "Õigus puudub." + #: mod/lostpass.php:40 msgid "No valid account found." msgstr "Valiidset kontot ei leitud." @@ -623,7 +147,7 @@ msgid "" "your email for further instructions." msgstr "Sisesta oma emaili aadress ja saada, et taaslähtestada oma parool. Siis kontrolli oma meili lisajuhendite saamiseks. " -#: mod/lostpass.php:130 src/Module/Security/Login.php:147 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " msgstr "Hüüdnimi või email:" @@ -631,7 +155,7 @@ msgstr "Hüüdnimi või email:" msgid "Reset" msgstr "Lähtesta" -#: mod/lostpass.php:146 src/Module/Security/Login.php:159 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 msgid "Password Reset" msgstr "Lähtesta parool" @@ -691,23 +215,11 @@ msgstr "" msgid "Your password has been changed at %s" msgstr "" -#: mod/match.php:62 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "" - -#: mod/match.php:93 src/Module/BaseSearch.php:116 -msgid "No matches" -msgstr "Pole kattuvusi" - -#: mod/match.php:98 -msgid "Profile Match" -msgstr "" - -#: mod/message.php:46 mod/message.php:126 src/Content/Nav.php:286 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 msgid "New Message" msgstr "Uus sõnum" -#: mod/message.php:83 mod/wallmessage.php:69 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 msgid "No recipient selected." msgstr "Ühtegi saajat pole valitud." @@ -715,62 +227,102 @@ msgstr "Ühtegi saajat pole valitud." msgid "Unable to locate contact information." msgstr "Ei leia kontakti infot." -#: mod/message.php:90 mod/wallmessage.php:75 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 msgid "Message could not be sent." msgstr "Sõnumit ei saanud saata." -#: mod/message.php:93 mod/wallmessage.php:78 +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 msgid "Message collection failure." msgstr "Sõnumi vastuvõtmise viga." -#: mod/message.php:120 src/Module/Notifications/Introductions.php:133 -#: src/Module/Notifications/Introductions.php:168 -#: src/Module/Notifications/Notification.php:57 +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 msgid "Discard" msgstr "Eira" -#: mod/message.php:133 src/Content/Nav.php:283 view/theme/frio/theme.php:234 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" msgstr "Sõnumid" -#: mod/message.php:146 +#: mod/message.php:148 msgid "Conversation not found." msgstr "Vestlust ei leitud." -#: mod/message.php:151 +#: mod/message.php:153 msgid "Message was not deleted." msgstr "" -#: mod/message.php:166 +#: mod/message.php:168 msgid "Conversation was not removed." msgstr "" -#: mod/message.php:180 mod/message.php:286 mod/wallmessage.php:123 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 msgid "Please enter a link URL:" msgstr "Palun sisesta lingi URL: " -#: mod/message.php:189 mod/wallmessage.php:128 +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 msgid "Send Private Message" msgstr "Saada privaatsõnum" -#: mod/message.php:190 mod/message.php:347 mod/wallmessage.php:130 +#: mod/message.php:191 mod/message.php:346 msgid "To:" msgstr "" -#: mod/message.php:191 mod/message.php:348 mod/wallmessage.php:131 +#: mod/message.php:192 mod/message.php:347 msgid "Subject:" msgstr "Teema:" -#: mod/message.php:195 mod/message.php:351 mod/wallmessage.php:137 -#: src/Module/Invite.php:170 +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 msgid "Your message:" msgstr "Sinu sõnum:" -#: mod/message.php:222 +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "Lae foto üles" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "Lisa hüperlink" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:578 +msgid "Please wait" +msgstr "Palun oota" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:145 +#: src/Module/Install.php:234 src/Module/Install.php:274 +#: src/Module/Install.php:309 src/Module/Invite.php:178 +#: src/Module/Item/Compose.php:189 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Object/Post.php:1095 +#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171 +#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Saada" + +#: mod/message.php:223 msgid "No messages." msgstr "Sõnumeid pole." -#: mod/message.php:278 +#: mod/message.php:279 msgid "Message not available." msgstr "Sõnum pole saadaval. " @@ -778,11 +330,11 @@ msgstr "Sõnum pole saadaval. " msgid "Delete message" msgstr "Kustuta sõnum" -#: mod/message.php:325 mod/message.php:457 +#: mod/message.php:325 mod/message.php:456 msgid "D, d M Y - g:i A" msgstr "" -#: mod/message.php:340 mod/message.php:454 +#: mod/message.php:340 mod/message.php:453 msgid "Delete conversation" msgstr "Kustuta vestlus" @@ -792,1413 +344,481 @@ msgid "" "respond from the sender's profile page." msgstr "Turvaline suhtlus pole saadaval. Vastamine võib õnnestuda saatja profiili lehel. " -#: mod/message.php:346 +#: mod/message.php:345 msgid "Send Reply" msgstr "Saada vastus" -#: mod/message.php:428 +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "Tundmatu saatja - %s" -#: mod/message.php:430 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "Sina ja %s " -#: mod/message.php:432 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "%s ja Sina" -#: mod/message.php:460 +#: mod/message.php:459 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d sõnum" msgstr[1] "%d sõnumid" -#: mod/notes.php:51 src/Module/BaseProfile.php:106 +#: mod/notes.php:52 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "Isiklikud märkmed" -#: mod/notes.php:55 +#: mod/notes.php:56 msgid "Personal notes are visible only by yourself." msgstr "" -#: mod/ostatus_subscribe.php:37 -msgid "Subscribing to contacts" +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 +msgid "Save" +msgstr "Salvesta" + +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." msgstr "" -#: mod/ostatus_subscribe.php:47 -msgid "No contact provided." -msgstr "Kontakti ei esitletud. " - -#: mod/ostatus_subscribe.php:53 -msgid "Couldn't fetch information for contact." -msgstr "Ei saanud infot kontakti tarbeks. " - -#: mod/ostatus_subscribe.php:64 -msgid "Couldn't fetch friends for contact." -msgstr "Ei saanud sõbrainfot kontakti tarbeks. " - -#: mod/ostatus_subscribe.php:70 mod/ostatus_subscribe.php:81 -msgid "Couldn't fetch following contacts." -msgstr "" - -#: mod/ostatus_subscribe.php:76 -msgid "Couldn't fetch remote profile." -msgstr "" - -#: mod/ostatus_subscribe.php:86 -msgid "Unsupported network" -msgstr "" - -#: mod/ostatus_subscribe.php:102 mod/repair_ostatus.php:51 -msgid "Done" -msgstr "Tehtud" - -#: mod/ostatus_subscribe.php:116 -msgid "success" -msgstr "edukas" - -#: mod/ostatus_subscribe.php:118 -msgid "failed" -msgstr "ebaõnnestus" - -#: mod/ostatus_subscribe.php:121 -msgid "ignored" -msgstr "ignoreeritud" - -#: mod/ostatus_subscribe.php:126 mod/repair_ostatus.php:57 -msgid "Keep this window open until done." -msgstr "Hoia see aken lahti kuni kõik tehtud. " - -#: mod/photos.php:108 src/Module/BaseProfile.php:67 +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 msgid "Photo Albums" msgstr "Foto albumid" -#: mod/photos.php:109 mod/photos.php:1590 +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 msgid "Recent Photos" msgstr "Hiljutised fotod" -#: mod/photos.php:111 mod/photos.php:1079 mod/photos.php:1592 +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 msgid "Upload New Photos" msgstr "Lae üles uusi fotosid" -#: mod/photos.php:129 src/Module/BaseSettings.php:35 +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 msgid "everybody" msgstr "igaüks" -#: mod/photos.php:167 +#: mod/photos.php:159 msgid "Contact information unavailable" msgstr "Kontakti infot pole saadaval" -#: mod/photos.php:196 +#: mod/photos.php:188 msgid "Album not found." msgstr "Albumit ei leitud" -#: mod/photos.php:250 +#: mod/photos.php:244 msgid "Album successfully deleted" msgstr "" -#: mod/photos.php:252 +#: mod/photos.php:246 msgid "Album was empty." msgstr "" -#: mod/photos.php:284 +#: mod/photos.php:277 msgid "Failed to delete the photo." msgstr "" -#: mod/photos.php:559 +#: mod/photos.php:545 msgid "a photo" msgstr "see foto" -#: mod/photos.php:559 +#: mod/photos.php:545 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s täägiti kohas %2$s %3$s poolt" -#: mod/photos.php:642 mod/photos.php:645 mod/photos.php:672 -#: mod/wall_upload.php:204 src/Module/Settings/Profile/Photo/Index.php:60 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Pilt ületab suuruse limiidi %s " +#: mod/photos.php:582 src/Module/Conversation/Community.php:159 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Avalik ligipääs keelatud." -#: mod/photos.php:648 -msgid "Image upload didn't complete, please try again" -msgstr "Pildi üleslaadimine ei lõppenud, palun ürita uuesti" - -#: mod/photos.php:651 -msgid "Image file is missing" -msgstr "Pildifail on puudu" - -#: mod/photos.php:656 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "Server ei aktsepteeri hetkel uue faili üleslaadimist. Palun kontakteeru adminniga. " - -#: mod/photos.php:680 -msgid "Image file is empty." -msgstr "Pildifail on tühi" - -#: mod/photos.php:695 mod/wall_upload.php:166 -#: src/Module/Settings/Profile/Photo/Index.php:69 -msgid "Unable to process image." -msgstr "Ei suuda pilti töödelda. " - -#: mod/photos.php:721 mod/wall_upload.php:229 -#: src/Module/Settings/Profile/Photo/Index.php:96 -msgid "Image upload failed." -msgstr "Pildi üleslaadimine nurjus." - -#: mod/photos.php:813 +#: mod/photos.php:587 msgid "No photos selected" msgstr "Fotosid pole valitud" -#: mod/photos.php:882 -msgid "Access to this item is restricted." -msgstr "Ligipääs sellele elemendile on takistatud." +#: mod/photos.php:721 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "" -#: mod/photos.php:937 +#: mod/photos.php:728 msgid "Upload Photos" msgstr "Lae fotod üles" -#: mod/photos.php:941 mod/photos.php:1027 +#: mod/photos.php:732 mod/photos.php:820 msgid "New album name: " msgstr "Uus albuminimi" -#: mod/photos.php:942 +#: mod/photos.php:733 msgid "or select existing album:" msgstr "või vali olemasolev album:" -#: mod/photos.php:943 +#: mod/photos.php:734 msgid "Do not show a status post for this upload" msgstr "Ära näita staatuse postitust selle üleslaadimise kohta" -#: mod/photos.php:1008 +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "Õigused" + +#: mod/photos.php:801 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Kas soovid tõesti kustutada selle fotoalbumi ja kõik fotod?" -#: mod/photos.php:1009 mod/photos.php:1032 +#: mod/photos.php:802 mod/photos.php:825 msgid "Delete Album" msgstr "Kustuta album" -#: mod/photos.php:1036 +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Katkesta" + +#: mod/photos.php:829 msgid "Edit Album" msgstr "Muuda Albumit" -#: mod/photos.php:1037 +#: mod/photos.php:830 msgid "Drop Album" msgstr "" -#: mod/photos.php:1041 +#: mod/photos.php:834 msgid "Show Newest First" msgstr "Uusimad esmalt" -#: mod/photos.php:1043 +#: mod/photos.php:836 msgid "Show Oldest First" msgstr "Vanimad esmalt" -#: mod/photos.php:1064 mod/photos.php:1575 +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 msgid "View Photo" msgstr "Kuva foto" -#: mod/photos.php:1097 +#: mod/photos.php:889 msgid "Permission denied. Access to this item may be restricted." msgstr "Ebapiisavad õigused. Ligipääs siia võib olla piiratud." -#: mod/photos.php:1099 +#: mod/photos.php:891 msgid "Photo not available" msgstr "Foto ei ole saadaval" -#: mod/photos.php:1109 +#: mod/photos.php:901 msgid "Do you really want to delete this photo?" msgstr "Kas soovid tõesti selle foto kustutada?" -#: mod/photos.php:1110 mod/photos.php:1302 +#: mod/photos.php:902 mod/photos.php:1102 msgid "Delete Photo" msgstr "Kustuta foto" -#: mod/photos.php:1200 +#: mod/photos.php:1000 msgid "View photo" msgstr "Kuva foto" -#: mod/photos.php:1202 +#: mod/photos.php:1002 msgid "Edit photo" msgstr "Muuda foto" -#: mod/photos.php:1203 +#: mod/photos.php:1003 msgid "Delete photo" msgstr "" -#: mod/photos.php:1204 +#: mod/photos.php:1004 msgid "Use as profile photo" msgstr "Kasuta profiilipildina" -#: mod/photos.php:1211 +#: mod/photos.php:1011 msgid "Private Photo" msgstr "" -#: mod/photos.php:1217 +#: mod/photos.php:1017 msgid "View Full Size" msgstr "Kuva täismõõdus" -#: mod/photos.php:1270 +#: mod/photos.php:1070 msgid "Tags: " msgstr "" -#: mod/photos.php:1273 +#: mod/photos.php:1073 msgid "[Select tags to remove]" msgstr "[vali tag` id mida eemaldada]" -#: mod/photos.php:1288 +#: mod/photos.php:1088 msgid "New album name" msgstr "Uus albuminimi" -#: mod/photos.php:1289 +#: mod/photos.php:1089 msgid "Caption" msgstr "" -#: mod/photos.php:1290 +#: mod/photos.php:1090 msgid "Add a Tag" msgstr "Lisa Tag" -#: mod/photos.php:1290 +#: mod/photos.php:1090 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Näide: @mati, @Kati_Murutar, @jim@example.com, #Viljandi, #eestimaa, #matkamine" -#: mod/photos.php:1291 +#: mod/photos.php:1091 msgid "Do not rotate" msgstr "Ära pööra" -#: mod/photos.php:1292 +#: mod/photos.php:1092 msgid "Rotate CW (right)" msgstr "Pööra CW (paremale)" -#: mod/photos.php:1293 +#: mod/photos.php:1093 msgid "Rotate CCW (left)" msgstr "Pööra CCW (vasakule)" -#: mod/photos.php:1339 mod/photos.php:1395 mod/photos.php:1469 -#: src/Module/Contact.php:544 src/Module/Item/Compose.php:148 -#: src/Object/Post.php:960 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1092 msgid "This is you" msgstr "See oled sina" -#: mod/photos.php:1341 mod/photos.php:1397 mod/photos.php:1471 -#: src/Object/Post.php:496 src/Object/Post.php:962 +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:572 +#: src/Object/Post.php:1094 msgid "Comment" msgstr "Kommentaar" -#: mod/photos.php:1430 src/Content/Conversation.php:615 -#: src/Object/Post.php:227 +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1108 +msgid "Preview" +msgstr "Eelvaade" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1096 +msgid "Loading..." +msgstr "" + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:260 msgid "Select" msgstr "Vali" -#: mod/photos.php:1431 mod/settings.php:564 src/Content/Conversation.php:616 -#: src/Module/Admin/Users/Active.php:139 -#: src/Module/Admin/Users/Blocked.php:140 src/Module/Admin/Users/Index.php:153 +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 msgid "Delete" msgstr "Kustuta" -#: mod/photos.php:1492 src/Object/Post.php:349 +#: mod/photos.php:1298 src/Object/Post.php:408 msgid "Like" msgstr "" -#: mod/photos.php:1493 src/Object/Post.php:349 +#: mod/photos.php:1299 src/Object/Post.php:408 msgid "I like this (toggle)" msgstr "Mulle meeldib see (toggle)" -#: mod/photos.php:1494 src/Object/Post.php:350 +#: mod/photos.php:1300 src/Object/Post.php:409 msgid "Dislike" msgstr "" -#: mod/photos.php:1496 src/Object/Post.php:350 +#: mod/photos.php:1302 src/Object/Post.php:409 msgid "I don't like this (toggle)" msgstr "Mulle ei meeldi see (toggle)" -#: mod/photos.php:1518 +#: mod/photos.php:1324 msgid "Map" msgstr "Kaart" -#: mod/photos.php:1581 -msgid "View Album" -msgstr "Kuva Album" - -#: mod/ping.php:275 -msgid "{0} wants to be your friend" -msgstr "{0} soovib olla sinu sõber" - -#: mod/ping.php:292 -msgid "{0} requested registration" -msgstr "{0} taotleb registreerimist" - -#: mod/ping.php:305 -#, php-format -msgid "{0} and %d others requested registration" -msgstr "" - -#: mod/redir.php:49 mod/redir.php:102 -msgid "Bad Request." -msgstr "" - -#: mod/redir.php:55 mod/redir.php:129 src/Module/Contact/Advanced.php:70 -#: src/Module/Contact/Advanced.php:119 src/Module/Contact/Contacts.php:36 -#: src/Module/Contact/Conversations.php:80 -#: src/Module/Contact/Conversations.php:85 -#: src/Module/Contact/Conversations.php:90 src/Module/Contact/Media.php:43 -#: src/Module/Contact/Posts.php:74 src/Module/Contact/Posts.php:79 -#: src/Module/Contact/Posts.php:84 src/Module/Contact/Profile.php:148 -#: src/Module/Contact/Profile.php:153 src/Module/Contact/Profile.php:158 -#: src/Module/FriendSuggest.php:70 src/Module/FriendSuggest.php:108 -#: src/Module/Group.php:99 src/Module/Group.php:108 -msgid "Contact not found." -msgstr "Kontakti ei leitud." - -#: mod/removeme.php:63 src/Navigation/Notifications/Repository/Notify.php:454 -msgid "[Friendica System Notify]" -msgstr "[Friendica süsteemiteade]" - -#: mod/removeme.php:63 -msgid "User deleted their account" -msgstr "Kasutaja kustutas oma konto" - -#: mod/removeme.php:64 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "" - -#: mod/removeme.php:65 -#, php-format -msgid "The user id is %d" -msgstr "Kasutajatunnud on %d " - -#: mod/removeme.php:99 mod/removeme.php:102 -msgid "Remove My Account" -msgstr "Eemalda Minu Konto" - -#: mod/removeme.php:100 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "See eemaldab sinu konto täielikult. Kui kord tehtud, siis taastada ei saa. " - -#: mod/removeme.php:101 -msgid "Please enter your password for verification:" -msgstr "Palun sisesta oma parool kontrollimiseks:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "" - -#: mod/repair_ostatus.php:46 src/Module/Debug/ActivityPubConversion.php:130 -#: src/Module/Debug/Babel.php:293 src/Module/Security/TwoFactor/Verify.php:97 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "" -msgstr[1] "" - -#: mod/settings.php:127 -msgid "Failed to connect with email account using the settings provided." -msgstr "E-posti kontoga ei õnnestu antud sätetega ühendust saada." - -#: mod/settings.php:156 -msgid "Contact CSV file upload error" -msgstr "" - -#: mod/settings.php:175 -msgid "Importing Contacts done" -msgstr "" - -#: mod/settings.php:188 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: mod/settings.php:200 -msgid "Passwords do not match." -msgstr "Paroolid ei kattu." - -#: mod/settings.php:208 src/Console/User.php:210 -msgid "Password update failed. Please try again." -msgstr "Parooli uuendus nurjus. Palun proovi uuesti." - -#: mod/settings.php:211 src/Console/User.php:213 -msgid "Password changed." -msgstr "Parool muudetud." - -#: mod/settings.php:214 -msgid "Password unchanged." -msgstr "Parool muutmata. " - -#: mod/settings.php:302 -msgid "Please use a shorter name." -msgstr "" - -#: mod/settings.php:305 -msgid "Name too short." -msgstr "" - -#: mod/settings.php:314 -msgid "Wrong Password." -msgstr "" - -#: mod/settings.php:319 -msgid "Invalid email." -msgstr "" - -#: mod/settings.php:325 -msgid "Cannot change to that email." -msgstr "" - -#: mod/settings.php:366 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Privaatfoorumil puuduvad privaatsussätted. Kasutan baasprivaatsuse grupi sätteid. " - -#: mod/settings.php:369 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Privaatfoorumil puuduvad privaatsussätted ja baasprivaatsusgrupp. " - -#: mod/settings.php:388 -msgid "Settings were not updated." -msgstr "" - -#: mod/settings.php:429 -msgid "Connected Apps" -msgstr "Ühendatud rakendused" - -#: mod/settings.php:430 src/Module/Admin/Blocklist/Contact.php:106 -#: 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:149 -msgid "Name" -msgstr "Nimi" - -#: mod/settings.php:431 src/Content/Nav.php:212 -msgid "Home Page" -msgstr "Koduleht" - -#: mod/settings.php:432 src/Module/Admin/Queue.php:78 -msgid "Created" -msgstr "Loodud" - -#: mod/settings.php:433 -msgid "Remove authorization" -msgstr "" - -#: mod/settings.php:451 -msgid "Addon Settings" -msgstr "Lisade sätted" - -#: mod/settings.php:452 -msgid "No Addon settings configured" -msgstr "" - -#: mod/settings.php:473 -msgid "Additional Features" -msgstr "Lisafunktsioonid" - -#: mod/settings.php:475 mod/settings.php:566 mod/settings.php:703 -#: 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:501 -#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:83 -#: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:193 -msgid "Save Settings" -msgstr "Salvesta Sätted" - -#: mod/settings.php:497 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "" - -#: mod/settings.php:497 mod/settings.php:498 -msgid "enabled" -msgstr "aktiivne" - -#: mod/settings.php:497 mod/settings.php:498 -msgid "disabled" -msgstr "mitteaktiivne" - -#: mod/settings.php:497 mod/settings.php:498 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "" - -#: mod/settings.php:498 -msgid "OStatus (GNU Social)" -msgstr "" - -#: mod/settings.php:524 -msgid "Email access is disabled on this site." -msgstr "" - -#: mod/settings.php:529 mod/settings.php:564 -msgid "None" -msgstr "" - -#: mod/settings.php:535 src/Module/BaseSettings.php:78 -msgid "Social Networks" -msgstr "Sotsiaalvõrgud" - -#: mod/settings.php:540 -msgid "General Social Media Settings" -msgstr "Üldised sotsiaalmeedia sätted" - -#: mod/settings.php:541 -msgid "Accept only top level posts by contacts you follow" -msgstr "" - -#: mod/settings.php:541 -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 " -"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." -msgstr "" - -#: mod/settings.php:542 -msgid "Enable Content Warning" -msgstr "" - -#: mod/settings.php:542 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect any other content filtering you eventually set up." -msgstr "" - -#: mod/settings.php:543 -msgid "Enable intelligent shortening" -msgstr "" - -#: mod/settings.php:543 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If disabled, every shortened post will always point to the original " -"friendica post." -msgstr "" - -#: mod/settings.php:544 -msgid "Enable simple text shortening" -msgstr "" - -#: mod/settings.php:544 -msgid "" -"Normally the system shortens posts at the next line feed. If this option is " -"enabled then the system will shorten the text at the maximum character " -"limit." -msgstr "" - -#: mod/settings.php:545 -msgid "Attach the link title" -msgstr "" - -#: mod/settings.php:545 -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:546 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "" - -#: mod/settings.php:546 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "" - -#: mod/settings.php:549 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: mod/settings.php:553 -msgid "Email/Mailbox Setup" -msgstr "Emaili/Postkasti seadistamine" - -#: mod/settings.php:554 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Kui ühenduda kontaktidega meilitsi kasutades seda teenust (valikuline), siis palun täpsustage kuidas postkastiga ühenduda. " - -#: mod/settings.php:555 -msgid "Last successful email check:" -msgstr "Viimane õnnestunud meilikontroll: " - -#: mod/settings.php:557 -msgid "IMAP server name:" -msgstr "" - -#: mod/settings.php:558 -msgid "IMAP port:" -msgstr "" - -#: mod/settings.php:559 -msgid "Security:" -msgstr "" - -#: mod/settings.php:560 -msgid "Email login name:" -msgstr "" - -#: mod/settings.php:561 -msgid "Email password:" -msgstr "" - -#: mod/settings.php:562 -msgid "Reply-to address:" -msgstr "" - -#: mod/settings.php:563 -msgid "Send public posts to all email contacts:" -msgstr "" - -#: mod/settings.php:564 -msgid "Action after import:" -msgstr "Tegevus peale inporti:" - -#: mod/settings.php:564 src/Content/Nav.php:280 -msgid "Mark as seen" -msgstr "Märgi loetuks" - -#: mod/settings.php:564 -msgid "Move to folder" -msgstr "Liiguta kausta" - -#: mod/settings.php:565 -msgid "Move to folder:" -msgstr "Liiguta kausta:" - -#: mod/settings.php:579 -msgid "Unable to find your profile. Please contact your admin." -msgstr "Ei leia sinu profiili. Palun kontakteeru adminniga. " - -#: mod/settings.php:617 src/Content/Widget.php:526 -msgid "Account Types" -msgstr "Kontode tüübid" - -#: mod/settings.php:618 -msgid "Personal Page Subtypes" -msgstr "Isikliku lehe alltüübid" - -#: mod/settings.php:619 -msgid "Community Forum Subtypes" -msgstr "Kogukonnafoorumi alltüübid" - -#: mod/settings.php:626 src/Module/Admin/BaseUsers.php:106 -msgid "Personal Page" -msgstr "Isiklik leht" - -#: mod/settings.php:627 -msgid "Account for a personal profile." -msgstr "Personaalse profiili konto." - -#: mod/settings.php:630 src/Module/Admin/BaseUsers.php:107 -msgid "Organisation Page" -msgstr "Organisatsiooni leht" - -#: mod/settings.php:631 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "Konto organisatsioonile, mis automaatselt kiidab kontaktitaotlused heaks kui \"Jälgijad\". " - -#: mod/settings.php:634 src/Module/Admin/BaseUsers.php:108 -msgid "News Page" -msgstr "Uudiste leht" - -#: mod/settings.php:635 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "Uudistelevitaja konto, kes automaatselt kiidab kontaktitaotlused heaks kui \"Jälgijad\". " - -#: mod/settings.php:638 src/Module/Admin/BaseUsers.php:109 -msgid "Community Forum" -msgstr "Kogukonna foorum" - -#: mod/settings.php:639 -msgid "Account for community discussions." -msgstr "Kogukondlike arutluste konto." - -#: mod/settings.php:642 src/Module/Admin/BaseUsers.php:99 -msgid "Normal Account Page" -msgstr "Normaalse konto leht" - -#: mod/settings.php:643 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "Tavalise inimese konto, mis nõuab \"Sõprade\" ja \"Jälgijate\" käsitsi heaks kiitmist. " - -#: mod/settings.php:646 src/Module/Admin/BaseUsers.php:100 -msgid "Soapbox Page" -msgstr "" - -#: mod/settings.php:647 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "Avaliku profiili konto, mis kiidab automaatselt heaks kontaktitaotlused kui \"Jälgijad\". " - -#: mod/settings.php:650 src/Module/Admin/BaseUsers.php:101 -msgid "Public Forum" -msgstr "Avalik foorum" - -#: mod/settings.php:651 -msgid "Automatically approves all contact requests." -msgstr "Kiidab automaatselt kõik kontaktitaotlused heaks. " - -#: mod/settings.php:654 src/Module/Admin/BaseUsers.php:102 -msgid "Automatic Friend Page" -msgstr "Automaatne sõbraleht" - -#: mod/settings.php:655 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "Kuulsuse profiili konto, mis kiidab automaatselt kontaktitaotlused heaks kui \"Sõbrad\". " - -#: mod/settings.php:658 -msgid "Private Forum [Experimental]" -msgstr "Privaatne Foorum [Eksperimentaalne]" - -#: mod/settings.php:659 -msgid "Requires manual approval of contact requests." -msgstr "Nõuab käsitsi kontaktitaotluste heakskiitu. " - -#: mod/settings.php:670 -msgid "OpenID:" -msgstr "" - -#: mod/settings.php:670 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "" - -#: mod/settings.php:678 -msgid "Publish your profile in your local site directory?" -msgstr "" - -#: mod/settings.php:678 -#, php-format -msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "" - -#: mod/settings.php:684 -#, php-format -msgid "" -"Your profile will also be published in the global friendica directories " -"(e.g. %s)." -msgstr "" - -#: mod/settings.php:690 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "Sinu ID Aadress on '%s' või '%s'. " - -#: mod/settings.php:701 -msgid "Account Settings" -msgstr "Konto sätted" - -#: mod/settings.php:709 -msgid "Password Settings" -msgstr "Parooli sätted" - -#: mod/settings.php:710 src/Module/Register.php:161 -msgid "New Password:" -msgstr "Uus parool" - -#: mod/settings.php:710 -msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "" - -#: mod/settings.php:711 src/Module/Register.php:162 -msgid "Confirm:" -msgstr "Kinnita:" - -#: mod/settings.php:711 -msgid "Leave password fields blank unless changing" -msgstr "Jäta väljad tühjaks kui sa ei muuda" - -#: mod/settings.php:712 -msgid "Current Password:" -msgstr "Kehtiv parool" - -#: mod/settings.php:712 -msgid "Your current password to confirm the changes" -msgstr "Sinu kehtiv parool muutuste kinnitamiseks" - -#: mod/settings.php:713 -msgid "Password:" -msgstr "Parool:" - -#: mod/settings.php:713 -msgid "Your current password to confirm the changes of the email address" -msgstr "" - -#: mod/settings.php:716 -msgid "Delete OpenID URL" -msgstr "" - -#: mod/settings.php:718 -msgid "Basic Settings" -msgstr "Peamised sätted" - -#: mod/settings.php:719 src/Module/Profile/Profile.php:144 -msgid "Full Name:" -msgstr "Täielik nimi:" - -#: mod/settings.php:720 -msgid "Email Address:" -msgstr "E-posti aadress:" - -#: mod/settings.php:721 -msgid "Your Timezone:" -msgstr "Sinu ajatsoon:" - -#: mod/settings.php:722 -msgid "Your Language:" -msgstr "Sinu keel:" - -#: mod/settings.php:722 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Vali keel friendica kuvamiseks ja sulle e-posti saatmiseks. " - -#: mod/settings.php:723 -msgid "Default Post Location:" -msgstr "Postitamise baasasukoht:" - -#: mod/settings.php:724 -msgid "Use Browser Location:" -msgstr "Kasuta sirviku asukohta:" - -#: mod/settings.php:726 -msgid "Security and Privacy Settings" -msgstr "Turva ja privaatsuse sätted" - -#: mod/settings.php:728 -msgid "Maximum Friend Requests/Day:" -msgstr "Maksimum sõbrakutseid/Päevas:" - -#: mod/settings.php:728 mod/settings.php:738 -msgid "(to prevent spam abuse)" -msgstr "(et rämpspost tõrjuda)" - -#: mod/settings.php:730 -msgid "Allow your profile to be searchable globally?" -msgstr "" - -#: mod/settings.php:730 -msgid "" -"Activate this setting if you want others to easily find and follow you. Your" -" profile will be searchable on remote systems. This setting also determines " -"whether Friendica will inform search engines that your profile should be " -"indexed or not." -msgstr "" - -#: mod/settings.php:731 -msgid "Hide your contact/friend list from viewers of your profile?" -msgstr "" - -#: mod/settings.php:731 -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:732 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Kas peita sinu profiili andmed anonüümsete vaatajate eest?" - -#: mod/settings.php:732 -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 "Anonüümsed külastajad näevad vaid sinu profiilipilti, sinu ekraaninime ja hüüdnime, mida kasutad oma profiililehel. Sinu avalikud postitused on kättesaadavad teistel viisidel. " - -#: mod/settings.php:733 -msgid "Make public posts unlisted" -msgstr "" - -#: mod/settings.php:733 -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:734 -msgid "Make all posted pictures accessible" -msgstr "" - -#: mod/settings.php:734 -msgid "" -"This option makes every posted picture accessible via the direct link. This " -"is a workaround for the problem that most other networks can't handle " -"permissions on pictures. Non public pictures still won't be visible for the " -"public on your photo albums though." -msgstr "" - -#: mod/settings.php:735 -msgid "Allow friends to post to your profile page?" -msgstr "Kas lubada sõpradel sinu profiililehele postitada?" - -#: mod/settings.php:735 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "Sinu kontaktid võivad postitada sinu profiili lehele. Need postitused edastatakse sinu kontaktidele" - -#: mod/settings.php:736 -msgid "Allow friends to tag your posts?" -msgstr "Kas lubada sõpradel sinu postitusi tag`ida?" - -#: mod/settings.php:736 -msgid "Your contacts can add additional tags to your posts." -msgstr "Sinu kontaktid saavad lisada täiendavaid silte su postitustele." - -#: mod/settings.php:737 -msgid "Permit unknown people to send you private mail?" -msgstr "Kas lubada tundmatutel inimestele sulle privaatmeili saata? " - -#: mod/settings.php:737 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "Friendica kasutajad saavad sulle privaatsõnumeid saada isegi siis, kui nad ei ole su kontaktide nimekirjas. " - -#: mod/settings.php:738 -msgid "Maximum private messages per day from unknown people:" -msgstr "Privaatsõnumite maksimum päevas tundmatutelt inimestelt:" - -#: mod/settings.php:740 -msgid "Default Post Permissions" -msgstr "Postituste baasõigused" - -#: mod/settings.php:744 -msgid "Expiration settings" -msgstr "Aegumise sätted" - -#: mod/settings.php:745 -msgid "Automatically expire posts after this many days:" -msgstr "Märgi sõnumid automaatselt loetuks selle hulga päevade möödudes: " - -#: mod/settings.php:745 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Kui väli tühi, siis sõnumid ei aegu. Aegunud sõnumid kustutatakse" - -#: mod/settings.php:746 -msgid "Expire posts" -msgstr "" - -#: mod/settings.php:746 -msgid "When activated, posts and comments will be expired." -msgstr "" - -#: mod/settings.php:747 -msgid "Expire personal notes" -msgstr "" - -#: mod/settings.php:747 -msgid "" -"When activated, the personal notes on your profile page will be expired." -msgstr "" - -#: mod/settings.php:748 -msgid "Expire starred posts" -msgstr "" - -#: mod/settings.php:748 -msgid "" -"Starring posts keeps them from being expired. That behaviour is overwritten " -"by this setting." -msgstr "" - -#: mod/settings.php:749 -msgid "Expire photos" -msgstr "" - -#: mod/settings.php:749 -msgid "When activated, photos will be expired." -msgstr "" - -#: mod/settings.php:750 -msgid "Only expire posts by others" -msgstr "" - -#: mod/settings.php:750 -msgid "" -"When activated, your own posts never expire. Then the settings above are " -"only valid for posts you received." -msgstr "" - -#: mod/settings.php:753 -msgid "Notification Settings" -msgstr "Teadete sätted" - -#: mod/settings.php:754 -msgid "Send a notification email when:" -msgstr "Saada meiliteavitus kui:" - -#: mod/settings.php:755 -msgid "You receive an introduction" -msgstr "Sulle saabub tutvustus" - -#: mod/settings.php:756 -msgid "Your introductions are confirmed" -msgstr "Sinu tutvustused on kinnitatud" - -#: mod/settings.php:757 -msgid "Someone writes on your profile wall" -msgstr "Keegi kirjutab sinu profiili seinale" - -#: mod/settings.php:758 -msgid "Someone writes a followup comment" -msgstr "Keegi kirjutab järgneva kommentaari" - -#: mod/settings.php:759 -msgid "You receive a private message" -msgstr "Saabub privaatsõnum" - -#: mod/settings.php:760 -msgid "You receive a friend suggestion" -msgstr "Saabub sõbrasoovitus" - -#: mod/settings.php:761 -msgid "You are tagged in a post" -msgstr "Sind on postituses tag`itud" - -#: mod/settings.php:762 -msgid "You are poked/prodded/etc. in a post" -msgstr "Sind on postituses müksatud vms. " - -#: mod/settings.php:764 -msgid "Create a desktop notification when:" -msgstr "" - -#: mod/settings.php:765 -msgid "Someone liked your content" -msgstr "" - -#: mod/settings.php:766 -msgid "Someone shared your content" -msgstr "" - -#: mod/settings.php:768 -msgid "Activate desktop notifications" -msgstr "Aktiveeri töölaua teavitused" - -#: mod/settings.php:768 -msgid "Show desktop popup on new notifications" -msgstr "Näita hüpikakent uute teadetega" - -#: mod/settings.php:770 -msgid "Text-only notification emails" -msgstr "Ainult tekstipõhised teavitusmeilid" - -#: mod/settings.php:772 -msgid "Send text only notification emails, without the html part" -msgstr "Saada ainut tekstimeile ilma html-ita" - -#: mod/settings.php:774 -msgid "Show detailled notifications" -msgstr "Kuva detailseid teavitusi" - -#: mod/settings.php:776 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "" - -#: mod/settings.php:778 -msgid "Show notifications of ignored contacts" -msgstr "" - -#: mod/settings.php:780 -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:782 -msgid "Advanced Account/Page Type Settings" -msgstr "Konto/Lehetüübi sätted edasijõudnutele" - -#: mod/settings.php:783 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: mod/settings.php:786 -msgid "Import Contacts" -msgstr "" - -#: mod/settings.php:787 -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:788 -msgid "Upload File" -msgstr "Lae fail üles" - -#: mod/settings.php:790 -msgid "Relocate" -msgstr "" - -#: mod/settings.php:791 -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:792 -msgid "Resend relocate message to contacts" -msgstr "" - -#: mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: mod/suggest.php:55 src/Content/Widget.php:79 view/theme/vier/theme.php:175 -msgid "Friend Suggestions" -msgstr "Sõbrasoovitused" - -#: mod/tagger.php:78 src/Content/Item.php:346 src/Model/Item.php:2626 -msgid "photo" -msgstr "foto" - -#: mod/tagger.php:78 src/Content/Item.php:341 src/Content/Item.php:350 -msgid "status" -msgstr "staatus" - -#: mod/tagger.php:111 src/Content/Item.php:360 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" - -#: mod/tagrm.php:113 -msgid "Remove Item Tag" -msgstr "Eemalda elemendi Silt" - -#: mod/tagrm.php:115 -msgid "Select a tag to remove: " -msgstr "Vali tag mida eemaldada: " - -#: mod/tagrm.php:126 src/Module/Settings/Delegation.php:179 -#: src/Module/Settings/TwoFactor/Trusted.php:121 -msgid "Remove" -msgstr "Eemalda" - -#: mod/uimport.php:46 -msgid "User imports on closed servers can only be done by an administrator." -msgstr "" - -#: mod/uimport.php:55 src/Module/Register.php:98 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: mod/uimport.php:62 src/Module/Register.php:172 -msgid "Import" -msgstr "Impordi" - -#: mod/uimport.php:64 -msgid "Move account" -msgstr "Koli konto" - -#: mod/uimport.php:65 -msgid "You can import an account from another Friendica server." -msgstr "" - -#: mod/uimport.php:66 -msgid "" -"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." -msgstr "" - -#: mod/uimport.php:67 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "" - -#: mod/uimport.php:68 -msgid "Account file" -msgstr "Konto fail" - -#: mod/uimport.php:68 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" - -#: mod/unfollow.php:65 mod/unfollow.php:135 -msgid "You aren't following this contact." -msgstr "Sa ei jälgi seda kontakti." - -#: mod/unfollow.php:71 -msgid "Unfollowing is currently not supported by your network." -msgstr "Mittejälgimine ei ole sinu võrgus hetkel toetatud." - -#: mod/unfollow.php:92 -msgid "Disconnect/Unfollow" -msgstr "Ühenda lahti/Ära jälgi" - -#: mod/unfollow.php:146 -msgid "" -"Unable to unfollow this contact, please retry in a few minutes or contact " -"your administrator." -msgstr "" - -#: mod/unfollow.php:148 -msgid "Contact was successfully unfollowed" -msgstr "" - -#: mod/unfollow.php:152 -msgid "Unable to unfollow this contact, please contact your administrator" -msgstr "" - -#: mod/wall_attach.php:39 mod/wall_attach.php:46 mod/wall_attach.php:77 -#: mod/wall_upload.php:53 mod/wall_upload.php:63 mod/wall_upload.php:99 -#: mod/wall_upload.php:150 mod/wall_upload.php:153 -msgid "Invalid request." -msgstr "" - -#: mod/wall_attach.php:95 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: mod/wall_attach.php:95 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: mod/wall_attach.php:106 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "" - -#: mod/wall_attach.php:121 -msgid "File upload failed." -msgstr "Faili üleslaadimine nurjus." - -#: mod/wall_upload.php:221 src/Model/Photo.php:984 -msgid "Wall Photos" -msgstr "Seina fotod" - -#: mod/wallmessage.php:61 mod/wallmessage.php:115 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "" - -#: mod/wallmessage.php:72 -msgid "Unable to check your home location." -msgstr "" - -#: mod/wallmessage.php:96 mod/wallmessage.php:103 -msgid "No recipient." -msgstr "" - -#: mod/wallmessage.php:129 -#, 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 "" - -#: src/App.php:463 +#: src/App.php:473 msgid "No system theme config value set." msgstr "" -#: src/App/Page.php:250 +#: src/App.php:580 +msgid "Apologies but the website is unavailable at the moment." +msgstr "" + +#: src/App/Page.php:248 msgid "Delete this item?" msgstr "Kustutada see element?" -#: src/App/Page.php:251 +#: src/App/Page.php:249 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "" -#: src/App/Page.php:321 +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "" + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "" + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "" + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "" + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "" + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "" + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "" + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "" + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "" + +#: src/App/Page.php:351 msgid "toggle mobile" msgstr "vaheta mobiilseks" -#: src/App/Router.php:276 +#: src/App/Router.php:309 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "" -#: src/App/Router.php:278 src/Module/HTTPException/PageNotFound.php:33 +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 msgid "Page not found." msgstr "" -#: src/App/Router.php:305 +#: src/App/Router.php:323 msgid "You must be logged in to use addons. " msgstr "Lisade kasutamiseks peate sisse logima" -#: src/BaseModule.php:299 +#: src/BaseModule.php:401 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 "" -#: src/BaseModule.php:326 +#: src/BaseModule.php:428 msgid "All contacts" msgstr "" -#: src/BaseModule.php:331 src/Content/Widget.php:231 src/Core/ACL.php:193 -#: src/Module/Contact.php:367 src/Module/PermissionTooltip.php:79 -#: src/Module/PermissionTooltip.php:101 +#: src/BaseModule.php:433 src/Content/Conversation/Factory/Timeline.php:62 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 msgid "Followers" msgstr "Jälgijad" -#: src/BaseModule.php:336 src/Content/Widget.php:232 -#: src/Module/Contact.php:368 +#: src/BaseModule.php:438 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 msgid "Following" msgstr "" -#: src/BaseModule.php:341 src/Content/Widget.php:233 -#: src/Module/Contact.php:369 +#: src/BaseModule.php:443 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 msgid "Mutual friends" msgstr "Ühised sõbrad" -#: src/BaseModule.php:349 +#: src/BaseModule.php:451 msgid "Common" msgstr "" -#: src/Console/Addon.php:177 src/Console/Addon.php:202 +#: src/Console/Addon.php:175 src/Console/Addon.php:199 msgid "Addon not found" msgstr "" -#: src/Console/Addon.php:181 +#: src/Console/Addon.php:179 msgid "Addon already enabled" msgstr "" -#: src/Console/Addon.php:206 +#: src/Console/Addon.php:203 msgid "Addon already disabled" msgstr "" @@ -2212,16 +832,105 @@ msgid "The contact entries have been archived" msgstr "Selle kontakti kirjed arhiveeritud" #: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "" #: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:66 +#: src/Module/Moderation/Blocklist/Contact.php:82 msgid "The contact has been blocked from the node" msgstr "" +#: src/Console/MergeContacts.php:75 +#, php-format +msgid "%d %s, %d duplicates." +msgstr "" + +#: src/Console/MergeContacts.php:78 +#, php-format +msgid "uri-id is empty for contact %s." +msgstr "" + +#: src/Console/MergeContacts.php:91 +#, php-format +msgid "No valid first contact found for uri-id %d." +msgstr "" + +#: src/Console/MergeContacts.php:102 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:106 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:142 +#, php-format +msgid "Deletion of id %d failed" +msgstr "" + +#: src/Console/MergeContacts.php:144 +#, php-format +msgid "Deletion of id %d was successful" +msgstr "" + +#: src/Console/MergeContacts.php:150 +#, php-format +msgid "Updating \"%s\" in \"%s\" from %d to %d" +msgstr "" + +#: src/Console/MergeContacts.php:152 +msgid " - found" +msgstr "" + +#: src/Console/MergeContacts.php:159 +msgid " - failed" +msgstr "" + +#: src/Console/MergeContacts.php:161 +msgid " - success" +msgstr "" + +#: src/Console/MergeContacts.php:165 +msgid " - deleted" +msgstr "" + +#: src/Console/MergeContacts.php:168 +msgid " - done" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:91 +msgid "The avatar cache needs to be enabled to use this command." +msgstr "" + +#: src/Console/MoveToAvatarCache.php:109 +#, php-format +msgid "no resource in photo %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:137 +#, php-format +msgid "no photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:146 +#, php-format +msgid "no image data for photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:155 +#, php-format +msgid "invalid image for id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:168 +#, php-format +msgid "Quit on invalid photo %s" +msgstr "" + #: src/Console/PostUpdate.php:87 #, php-format msgid "Post update version number has been set to %s." @@ -2247,10 +956,29 @@ msgstr "" msgid "Enter user nickname: " msgstr "" +#: src/Console/User.php:182 src/Model/User.php:711 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "Kasutajat ei leitud" + #: src/Console/User.php:202 msgid "Enter new password: " msgstr "Sisesta uus parool:" +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 +msgid "Password update failed. Please try again." +msgstr "Parooli uuendus nurjus. Palun proovi uuesti." + +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 +msgid "Password changed." +msgstr "Parool muudetud." + #: src/Console/User.php:237 msgid "Enter user name: " msgstr "" @@ -2324,309 +1052,579 @@ msgstr "Nädalas" msgid "Monthly" msgstr "Kuus" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:126 msgid "DFRN" msgstr "" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:127 msgid "OStatus" msgstr "" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:128 msgid "RSS/Atom" msgstr "" -#: 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 +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 msgid "Email" msgstr "Email" -#: src/Content/ContactSelector.php:127 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:131 msgid "Zot!" msgstr "" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:132 msgid "LinkedIn" msgstr "" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:133 msgid "XMPP/IM" msgstr "" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:134 msgid "MySpace" msgstr "" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:135 msgid "Google+" msgstr "" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:136 msgid "pump.io" msgstr "" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:137 msgid "Twitter" msgstr "" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:138 msgid "Discourse" msgstr "" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:139 msgid "Diaspora Connector" msgstr "" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:140 msgid "GNU Social Connector" msgstr "" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:141 msgid "ActivityPub" msgstr "" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:142 msgid "pnut" msgstr "" -#: src/Content/ContactSelector.php:175 +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "" + +#: src/Content/ContactSelector.php:180 #, php-format msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:207 -#, php-format -msgid "%s likes this." -msgstr "" - -#: src/Content/Conversation.php:210 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: src/Content/Conversation.php:213 -#, php-format -msgid "%s attends." -msgstr "" - -#: src/Content/Conversation.php:216 -#, php-format -msgid "%s doesn't attend." -msgstr "" - -#: src/Content/Conversation.php:219 -#, php-format -msgid "%s attends maybe." -msgstr "" - -#: src/Content/Conversation.php:222 src/Content/Conversation.php:260 -#: src/Content/Conversation.php:849 -#, php-format -msgid "%s reshared this." -msgstr "" - -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:226 msgid "and" msgstr "ja" -#: src/Content/Conversation.php:231 +#: src/Content/Conversation.php:229 #, php-format msgid "and %d other people" msgstr "" +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "" +msgstr[1] "" + #: src/Content/Conversation.php:239 #, php-format -msgid "%2$d people like this" -msgstr "" +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:240 +#: src/Content/Conversation.php:241 #, php-format -msgid "%s like this." -msgstr "" +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "" +msgstr[1] "" #: src/Content/Conversation.php:243 #, php-format -msgid "%2$d people don't like this" -msgstr "" +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:244 +#: src/Content/Conversation.php:245 #, php-format -msgid "%s don't like this." -msgstr "" +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:247 +#: src/Content/Conversation.php:274 #, php-format -msgid "%2$d people attend" -msgstr "" +msgid " likes this" +msgid_plural " like this" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:248 +#: src/Content/Conversation.php:277 #, php-format -msgid "%s attend." -msgstr "" +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:251 +#: src/Content/Conversation.php:280 #, php-format -msgid "%2$d people don't attend" -msgstr "" +msgid " attends" +msgid_plural " attend" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:252 +#: src/Content/Conversation.php:283 #, php-format -msgid "%s don't attend." -msgstr "" +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:255 +#: src/Content/Conversation.php:286 #, php-format -msgid "%2$d people attend maybe" -msgstr "" +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:256 +#: src/Content/Conversation.php:289 #, php-format -msgid "%s attend maybe." -msgstr "" +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:259 -#, php-format -msgid "%2$d people reshared this" -msgstr "" - -#: src/Content/Conversation.php:307 +#: src/Content/Conversation.php:336 msgid "Visible to everybody" msgstr "" -#: src/Content/Conversation.php:308 src/Module/Item/Compose.php:159 -#: src/Object/Post.php:973 +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1107 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Palun sisesta pildi/video/audio/veebilehe URL:" -#: src/Content/Conversation.php:309 +#: src/Content/Conversation.php:338 msgid "Tag term:" msgstr "Tag`i tingimus:" -#: src/Content/Conversation.php:310 src/Module/Filer/SaveTag.php:72 +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 msgid "Save to Folder:" msgstr "Salvesta kausta:" -#: src/Content/Conversation.php:311 +#: src/Content/Conversation.php:340 msgid "Where are you right now?" msgstr "Kus sa hetkel oled?" -#: src/Content/Conversation.php:312 +#: src/Content/Conversation.php:341 msgid "Delete item(s)?" msgstr "Kustutada element(id)?" -#: src/Content/Conversation.php:322 +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 +msgid "Created at" +msgstr "" + +#: src/Content/Conversation.php:363 msgid "New Post" msgstr "Uus postitus" -#: src/Content/Conversation.php:325 +#: src/Content/Conversation.php:366 msgid "Share" msgstr "Jaga" -#: src/Content/Conversation.php:336 src/Module/Item/Compose.php:156 -#: src/Object/Post.php:970 +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "lae foto üles" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Manusta fail" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "manusta fail" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1097 +msgid "Bold" +msgstr "Rasvane" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1098 +msgid "Italic" +msgstr "" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1099 +msgid "Underline" +msgstr "Allajoonitud" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1101 +msgid "Quote" +msgstr "Tsitaat" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1102 +msgid "Add emojis" +msgstr "" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1100 +msgid "Content Warning" +msgstr "" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1103 +msgid "Code" +msgstr "Kood" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1104 msgid "Image" msgstr "Pilt" -#: src/Content/Conversation.php:339 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1105 +msgid "Link" +msgstr "" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1106 +msgid "Link or Media" +msgstr "Link või meediafail" + +#: src/Content/Conversation.php:382 msgid "Video" msgstr "" -#: src/Content/Conversation.php:352 src/Module/Item/Compose.php:172 +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "Vali oma asukoht" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "vali asukoht" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "Kustuta sirviku asukoht" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "kustuta asukoht" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Pane pealkiri" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Kategooriad (komaga-eraldatud nimistu)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 msgid "Scheduled at" msgstr "Ajastatud" -#: src/Content/Conversation.php:651 src/Object/Post.php:454 -#: src/Object/Post.php:455 -#, php-format -msgid "View %s's profile @ %s" +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Õiguste sätted" + +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Avalik postitus" + +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:120 +#: src/Model/Profile.php:467 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "Sõnum" + +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Sirvik" + +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" msgstr "" -#: src/Content/Conversation.php:664 src/Object/Post.php:442 -msgid "Categories:" -msgstr "Kategooriad:" - -#: src/Content/Conversation.php:665 src/Object/Post.php:443 -msgid "Filed under:" -msgstr "" - -#: src/Content/Conversation.php:673 src/Object/Post.php:468 -#, php-format -msgid "%s from %s" -msgstr "" - -#: src/Content/Conversation.php:688 -msgid "View in context" -msgstr "" - -#: src/Content/Conversation.php:753 +#: src/Content/Conversation.php:595 msgid "remove" msgstr "eemalda" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:599 msgid "Delete Selected Items" msgstr "Kustuta valitud elemendid" -#: src/Content/Conversation.php:821 src/Content/Conversation.php:824 -#: src/Content/Conversation.php:827 src/Content/Conversation.php:830 +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:833 +#: src/Content/Conversation.php:769 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:836 -msgid "Tagged" +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:851 +#: src/Content/Conversation.php:776 +msgid "You subscribed to one or more tags in this post." +msgstr "" + +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "" + +#: src/Content/Conversation.php:798 msgid "Reshared" msgstr "Taasjagatud" -#: src/Content/Conversation.php:851 +#: src/Content/Conversation.php:798 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:854 +#: src/Content/Conversation.php:801 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:857 -msgid "Stored" +#: src/Content/Conversation.php:804 +msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:860 -msgid "Global" +#: src/Content/Conversation.php:807 +msgid "Global post" msgstr "" -#: src/Content/Conversation.php:863 -msgid "Relayed" +#: src/Content/Conversation.php:810 +msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:863 +#: src/Content/Conversation.php:810 #, php-format -msgid "Relayed by %s <%s>" +msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:866 +#: src/Content/Conversation.php:813 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:866 +#: src/Content/Conversation.php:813 #, php-format msgid "Fetched because of %s <%s>" msgstr "" +#: src/Content/Conversation.php:816 +msgid "Stored because of a child post to complete this thread." +msgstr "" + +#: src/Content/Conversation.php:819 +msgid "Local delivery" +msgstr "" + +#: src/Content/Conversation.php:822 +msgid "Stored because of your activity (like, comment, star, ...)" +msgstr "" + +#: src/Content/Conversation.php:825 +msgid "Distributed" +msgstr "" + +#: src/Content/Conversation.php:828 +msgid "Pushed to us" +msgstr "" + +#: src/Content/Conversation.php:1492 src/Object/Post.php:247 +msgid "Pinned item" +msgstr "" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:521 +#: src/Object/Post.php:522 +#, php-format +msgid "View %s's profile @ %s" +msgstr "" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:509 +msgid "Categories:" +msgstr "Kategooriad:" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:510 +msgid "Filed under:" +msgstr "" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:535 +#, php-format +msgid "%s from %s" +msgstr "" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "For you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "What's Hot" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "Posts with a lot of interactions" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:61 +#, php-format +msgid "Posts in %s" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:62 +msgid "Posts from your followers that you don't follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Sharers of sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Posts with images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Posts with audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Posts with videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Local Community" +msgstr "Kohalik kogukond" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Posts from local users on this server" +msgstr "Selle kohaliku serveri kasutajate postitused" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Global Community" +msgstr "Globaalne kogukond" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Posts from users of the whole federated network" +msgstr "Terve fõderatsiooni võrgu kasutajate postitused" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Latest Activity" +msgstr "Viimased tegevused" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Sort by latest activity" +msgstr "Sorteeri hiljutiste tegevuste järgi" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Latest Posts" +msgstr "Viimased postitused" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Sort by post received date" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Latest Creation" +msgstr "Viimati loodud" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Sort by post creation date" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:106 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "Isiklik" + +#: src/Content/Conversation/Factory/Timeline.php:106 +msgid "Posts that mention or involve you" +msgstr "Postitused, mis mainivad või puudutavad sind" + +#: src/Content/Conversation/Factory/Timeline.php:107 src/Object/Post.php:380 +msgid "Starred" +msgstr "Tähega märgitud" + +#: src/Content/Conversation/Factory/Timeline.php:107 +msgid "Favourite Posts" +msgstr "Lemmikpostitused" + #: src/Content/Feature.php:96 msgid "General Features" msgstr "Üldised funktsioonid" @@ -2656,12 +1654,12 @@ msgid "Post Composition Features" msgstr "" #: src/Content/Feature.php:105 -msgid "Auto-mention Forums" +msgid "Auto-mention Groups" msgstr "" #: src/Content/Feature.php:105 msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." +"Add/remove mention when a group page is selected/deselected in ACL window." msgstr "" #: src/Content/Feature.php:106 @@ -2674,390 +1672,484 @@ msgid "" "mentioned in replies." msgstr "" -#: src/Content/Feature.php:111 +#: src/Content/Feature.php:107 +msgid "Add an abstract from ActivityPub content warnings" +msgstr "" + +#: src/Content/Feature.php:107 +msgid "" +"Add an abstract when commenting on ActivityPub posts with a content warning." +" Abstracts are displayed as content warning on systems like Mastodon or " +"Pleroma." +msgstr "" + +#: src/Content/Feature.php:112 msgid "Post/Comment Tools" msgstr "Postituse/Kommenteerimise tööriistad" -#: src/Content/Feature.php:112 +#: src/Content/Feature.php:113 msgid "Post Categories" msgstr "Postituse kategooriad" -#: src/Content/Feature.php:112 +#: src/Content/Feature.php:113 msgid "Add categories to your posts" msgstr "Lisa kategooriad on postitustele" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:118 msgid "Advanced Profile Settings" msgstr "Täpsemad profiili sätted" -#: src/Content/Feature.php:118 -msgid "List Forums" -msgstr "Foorumite nimistu" - -#: src/Content/Feature.php:118 -msgid "Show visitors public community forums at the Advanced Profile Page" +#: src/Content/Feature.php:119 +msgid "List Groups" msgstr "" #: src/Content/Feature.php:119 +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "" + +#: src/Content/Feature.php:120 msgid "Tag Cloud" msgstr "Sildipilv tag cloud" -#: src/Content/Feature.php:119 +#: src/Content/Feature.php:120 msgid "Provide a personal tag cloud on your profile page" msgstr "Näita personaalset sildipilve oma profiili lehel" -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:121 msgid "Display Membership Date" msgstr "Kuva liitumise kuupäev" -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:121 msgid "Display membership date in profile" msgstr "Kuva liitumiskuupäev oma profiilil" -#: src/Content/ForumManager.php:145 src/Content/Nav.php:239 -#: src/Content/Text/HTML.php:896 src/Content/Widget.php:523 -msgid "Forums" -msgstr "Foorumid" +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "" -#: src/Content/ForumManager.php:147 -msgid "External link to forum" -msgstr "Välimine link foorumisse" +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "" -#: src/Content/ForumManager.php:150 src/Content/Widget.php:502 +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "" + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1273 +msgid "Groups" +msgstr "" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 msgid "show less" msgstr "" -#: src/Content/ForumManager.php:151 src/Content/Widget.php:404 -#: src/Content/Widget.php:503 +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 msgid "show more" msgstr "näita veel" -#: src/Content/Item.php:305 -#, php-format -msgid "%1$s poked %2$s" +#: src/Content/GroupManager.php:160 +msgid "Create new group" msgstr "" -#: src/Content/Item.php:338 src/Model/Item.php:2624 +#: src/Content/Item.php:331 src/Model/Item.php:3003 msgid "event" msgstr "sündmus" -#: src/Content/Item.php:442 view/theme/frio/theme.php:254 +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "staatus" + +#: src/Content/Item.php:340 src/Model/Item.php:3005 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "foto" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 msgid "Follow Thread" msgstr "Jälgi vestlust" -#: src/Content/Item.php:443 src/Model/Contact.php:1047 +#: src/Content/Item.php:429 src/Model/Contact.php:1227 msgid "View Status" msgstr "Vaata staatust" -#: src/Content/Item.php:444 src/Content/Item.php:466 src/Model/Contact.php:981 -#: src/Model/Contact.php:1039 src/Model/Contact.php:1048 -#: src/Module/Directory.php:157 src/Module/Settings/Profile/Index.php:225 +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1219 +#: src/Model/Contact.php:1228 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Vaata profiili" -#: src/Content/Item.php:445 src/Model/Contact.php:1049 +#: src/Content/Item.php:431 src/Model/Contact.php:1229 msgid "View Photos" msgstr "Vaata fotosid" -#: src/Content/Item.php:446 src/Model/Contact.php:1040 -#: src/Model/Contact.php:1050 +#: src/Content/Item.php:432 src/Model/Contact.php:1220 +#: src/Model/Contact.php:1230 msgid "Network Posts" msgstr "Võrgupostitused" -#: src/Content/Item.php:447 src/Model/Contact.php:1041 -#: src/Model/Contact.php:1051 +#: src/Content/Item.php:433 src/Model/Contact.php:1221 +#: src/Model/Contact.php:1231 msgid "View Contact" msgstr "Vaata kontakti" -#: src/Content/Item.php:448 src/Model/Contact.php:1052 +#: src/Content/Item.php:434 src/Model/Contact.php:1232 msgid "Send PM" msgstr "Saada privaatsõnum" -#: src/Content/Item.php:449 src/Module/Admin/Blocklist/Contact.php:100 -#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 -#: src/Module/Contact.php:398 src/Module/Contact/Profile.php:355 -#: src/Module/Contact/Profile.php:456 +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 msgid "Block" msgstr "Blokeeri" -#: src/Content/Item.php:450 src/Module/Contact.php:399 -#: src/Module/Contact/Profile.php:356 src/Module/Contact/Profile.php:464 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 -#: src/Module/Notifications/Notification.php:61 +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 msgid "Ignore" msgstr "Ignoreeri" -#: src/Content/Item.php:454 src/Object/Post.php:429 +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "" + +#: src/Content/Item.php:438 src/Object/Post.php:288 +#, php-format +msgid "Ignore %s server" +msgstr "" + +#: src/Content/Item.php:442 src/Object/Post.php:490 msgid "Languages" msgstr "" -#: src/Content/Item.php:458 src/Model/Contact.php:1053 -msgid "Poke" -msgstr "Müksa" +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1222 src/Model/Contact.php:1233 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Ühendu/Järgi" -#: src/Content/Nav.php:90 +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "" + +#: src/Content/Nav.php:121 msgid "Nothing new here" msgstr "Ei midagi uut siin" -#: src/Content/Nav.php:94 src/Module/Special/HTTPException.php:50 +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 msgid "Go back" msgstr "" -#: src/Content/Nav.php:95 +#: src/Content/Nav.php:126 msgid "Clear notifications" msgstr "Puhasta teated" -#: src/Content/Nav.php:96 src/Content/Text/HTML.php:883 -msgid "@name, !forum, #tags, content" +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" msgstr "" -#: src/Content/Nav.php:183 src/Module/Security/Login.php:144 +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 msgid "Logout" msgstr "Logi välja" -#: src/Content/Nav.php:183 +#: src/Content/Nav.php:222 msgid "End this session" msgstr "Lõpeta see sessioon" -#: src/Content/Nav.php:185 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:145 +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 msgid "Login" msgstr "" -#: src/Content/Nav.php:185 +#: src/Content/Nav.php:224 msgid "Sign in" msgstr "Logi sisse" -#: src/Content/Nav.php:190 src/Module/BaseProfile.php:56 -#: src/Module/Contact.php:433 src/Module/Contact/Profile.php:387 -#: src/Module/Settings/TwoFactor/Index.php:112 view/theme/frio/theme.php:225 -msgid "Status" -msgstr "Staatus" +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "" -#: src/Content/Nav.php:190 src/Content/Nav.php:273 -#: view/theme/frio/theme.php:225 -msgid "Your posts and conversations" -msgstr "Sinu postitused ja vestlused" +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "" -#: src/Content/Nav.php:191 src/Module/BaseProfile.php:48 -#: src/Module/BaseSettings.php:55 src/Module/Contact.php:457 -#: src/Module/Contact/Profile.php:389 src/Module/Profile/Profile.php:241 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:226 +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 msgid "Profile" msgstr "Profiil" -#: src/Content/Nav.php:191 view/theme/frio/theme.php:226 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 msgid "Your profile page" msgstr "Sinu profiili leht" -#: src/Content/Nav.php:192 view/theme/frio/theme.php:227 +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Fotod" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 msgid "Your photos" msgstr "Sinu fotod" -#: src/Content/Nav.php:193 src/Module/BaseProfile.php:72 -#: src/Module/BaseProfile.php:75 src/Module/Contact.php:449 -#: view/theme/frio/theme.php:228 +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 msgid "Media" msgstr "" -#: src/Content/Nav.php:193 view/theme/frio/theme.php:228 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 msgid "Your postings with media" msgstr "" -#: src/Content/Nav.php:194 view/theme/frio/theme.php:229 -msgid "Your events" -msgstr "Sinu sündmused" +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "Kalender" -#: src/Content/Nav.php:195 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "" + +#: src/Content/Nav.php:234 msgid "Personal notes" msgstr "Personaalsed märkmed" -#: src/Content/Nav.php:195 +#: src/Content/Nav.php:234 msgid "Your personal notes" msgstr "Sinu personaalsed märkmed" -#: src/Content/Nav.php:212 src/Content/Nav.php:273 +#: src/Content/Nav.php:251 src/Content/Nav.php:308 msgid "Home" msgstr "Kodu" -#: src/Content/Nav.php:216 src/Module/Register.php:167 -#: src/Module/Security/Login.php:105 +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "Koduleht" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 +#: src/Module/Security/Login.php:124 msgid "Register" msgstr "Registreeri" -#: src/Content/Nav.php:216 +#: src/Content/Nav.php:255 msgid "Create an account" msgstr "Loo konto" -#: src/Content/Nav.php:222 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 -#: src/Module/Settings/TwoFactor/Index.php:111 -#: src/Module/Settings/TwoFactor/Recovery.php:105 -#: src/Module/Settings/TwoFactor/Verify.php:144 view/theme/vier/theme.php:217 +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 msgid "Help" msgstr "Abi" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:261 msgid "Help and documentation" msgstr "Abi ja dokumentatsioon" -#: src/Content/Nav.php:226 +#: src/Content/Nav.php:265 msgid "Apps" msgstr "Rakendused" -#: src/Content/Nav.php:226 +#: src/Content/Nav.php:265 msgid "Addon applications, utilities, games" msgstr "Lisarakendused, utiliidid, mängud" -#: src/Content/Nav.php:230 src/Content/Text/HTML.php:881 -#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:96 +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 msgid "Search" msgstr "Otsi" -#: src/Content/Nav.php:230 +#: src/Content/Nav.php:269 msgid "Search site content" msgstr "Otsi lehe sisust" -#: src/Content/Nav.php:233 src/Content/Text/HTML.php:890 +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 msgid "Full Text" msgstr "Täistekst" -#: src/Content/Nav.php:234 src/Content/Text/HTML.php:891 +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 #: src/Content/Widget/TagCloud.php:68 msgid "Tags" msgstr "Sildid" -#: src/Content/Nav.php:235 src/Content/Nav.php:294 -#: src/Content/Text/HTML.php:892 src/Module/BaseProfile.php:125 -#: src/Module/BaseProfile.php:128 src/Module/Contact.php:370 -#: src/Module/Contact.php:464 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 msgid "Contacts" msgstr "Kontaktid" -#: src/Content/Nav.php:254 +#: src/Content/Nav.php:289 msgid "Community" msgstr "Kogukond" -#: src/Content/Nav.php:254 +#: src/Content/Nav.php:289 msgid "Conversations on this and other servers" msgstr "Vestlused siin ja muudes serverites" -#: src/Content/Nav.php:258 src/Module/BaseProfile.php:87 -#: src/Module/BaseProfile.php:98 view/theme/frio/theme.php:233 -msgid "Events and Calendar" -msgstr "Sündmused ja Kalender" - -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:296 msgid "Directory" msgstr "Kataloog" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:296 msgid "People directory" msgstr "Inimeste kataloog" -#: src/Content/Nav.php:263 src/Module/BaseAdmin.php:85 +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 msgid "Information" msgstr "Info" -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:298 msgid "Information about this friendica instance" msgstr "Info selle friendica instantsi kohta" -#: src/Content/Nav.php:266 src/Module/Admin/Tos.php:76 -#: src/Module/BaseAdmin.php:96 src/Module/Register.php:175 -#: src/Module/Tos.php:87 +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 msgid "Terms of Service" msgstr "" -#: src/Content/Nav.php:266 +#: src/Content/Nav.php:301 msgid "Terms of Service of this Friendica instance" msgstr "Selle Friendica instantsi kasutustingimused" -#: src/Content/Nav.php:271 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Network" msgstr "Võrk" -#: src/Content/Nav.php:271 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Conversations from your friends" msgstr "Vestlused sinu sõpradelt" -#: src/Content/Nav.php:277 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "Sinu postitused ja vestlused" + +#: src/Content/Nav.php:312 msgid "Introductions" msgstr "Tutvustused" -#: src/Content/Nav.php:277 +#: src/Content/Nav.php:312 msgid "Friend Requests" msgstr "Sõbrataotlused" -#: src/Content/Nav.php:278 src/Module/BaseNotifications.php:148 -#: src/Module/Notifications/Introductions.php:73 +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 msgid "Notifications" msgstr "Teavitused" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:314 msgid "See all notifications" msgstr "Vaata kõiki teavitusi" -#: src/Content/Nav.php:280 -msgid "Mark all system notifications seen" -msgstr "Märgi kõik süsteemitevitused loetuks" +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Märgi loetuks" -#: src/Content/Nav.php:283 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:315 +msgid "Mark all system notifications as seen" +msgstr "" + +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Private mail" msgstr "Privaatmeil" -#: src/Content/Nav.php:284 +#: src/Content/Nav.php:319 msgid "Inbox" msgstr "Sisenev" -#: src/Content/Nav.php:285 +#: src/Content/Nav.php:320 msgid "Outbox" msgstr "Väljuv" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:324 msgid "Accounts" msgstr "" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:324 msgid "Manage other pages" msgstr "Halda teisi lehti" -#: src/Content/Nav.php:292 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:122 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:175 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 msgid "Settings" msgstr "Sätted" -#: src/Content/Nav.php:292 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 msgid "Account settings" msgstr "Konto sätted" -#: src/Content/Nav.php:294 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 msgid "Manage/edit friends and contacts" msgstr "Halda/muuda sõpru ja kontakte" -#: src/Content/Nav.php:299 src/Module/BaseAdmin.php:126 +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 msgid "Admin" msgstr "" -#: src/Content/Nav.php:299 +#: src/Content/Nav.php:334 msgid "Site setup and configuration" msgstr "Saidi seadmine ja sätted" -#: src/Content/Nav.php:302 +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "" + +#: src/Content/Nav.php:338 msgid "Navigation" msgstr "Navigatsioon" -#: src/Content/Nav.php:302 +#: src/Content/Nav.php:338 msgid "Site map" msgstr "Lehekaart" -#: src/Content/OEmbed.php:298 +#: src/Content/OEmbed.php:316 msgid "Embedding disabled" msgstr "" -#: src/Content/OEmbed.php:416 +#: src/Content/OEmbed.php:440 msgid "Embedded content" msgstr "" @@ -3077,189 +2169,210 @@ msgstr "järgmine" msgid "last" msgstr "viimane" -#: src/Content/Text/BBCode.php:987 src/Content/Text/BBCode.php:1781 -#: src/Content/Text/BBCode.php:1782 +#: src/Content/Text/BBCode.php:696 src/Content/Text/BBCode.php:1636 +#: src/Content/Text/BBCode.php:1637 msgid "Image/photo" msgstr "pilt/foto" -#: src/Content/Text/BBCode.php:1160 +#: src/Content/Text/BBCode.php:914 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:1185 src/Model/Item.php:3154 -#: src/Model/Item.php:3160 src/Model/Item.php:3161 +#: src/Content/Text/BBCode.php:939 src/Model/Item.php:3745 +#: src/Model/Item.php:3751 src/Model/Item.php:3752 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1699 src/Content/Text/HTML.php:933 +#: src/Content/Text/BBCode.php:1543 src/Content/Text/HTML.php:904 msgid "Click to open/close" msgstr "Klõpsa ava/sulge" -#: src/Content/Text/BBCode.php:1730 +#: src/Content/Text/BBCode.php:1576 msgid "$1 wrote:" msgstr "" -#: src/Content/Text/BBCode.php:1786 src/Content/Text/BBCode.php:1787 +#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642 msgid "Encrypted content" msgstr "Krüptitud sisu" -#: src/Content/Text/BBCode.php:2002 +#: src/Content/Text/BBCode.php:1901 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:2017 +#: src/Content/Text/BBCode.php:1920 msgid "Invalid link protocol" msgstr "" -#: src/Content/Text/HTML.php:797 +#: src/Content/Text/HTML.php:782 msgid "Loading more entries..." msgstr "" -#: src/Content/Text/HTML.php:798 +#: src/Content/Text/HTML.php:783 msgid "The end" msgstr "Lõpp" -#: src/Content/Text/HTML.php:875 src/Content/Widget/VCard.php:103 -#: src/Model/Profile.php:454 +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:116 +#: src/Model/Profile.php:461 src/Module/Contact/Profile.php:471 msgid "Follow" msgstr "Jälgi" -#: src/Content/Widget.php:49 +#: src/Content/Widget.php:51 msgid "Add New Contact" msgstr "Lisa uus kontakt" -#: src/Content/Widget.php:50 +#: src/Content/Widget.php:52 msgid "Enter address or web location" msgstr "Sisesta aadress või veebiasukoht" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:53 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:55 msgid "Connect" msgstr "Ühendu" -#: src/Content/Widget.php:68 +#: src/Content/Widget.php:72 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d kutset saadaval" msgstr[1] "%d kutset saadaval" -#: src/Content/Widget.php:74 view/theme/vier/theme.php:170 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 msgid "Find People" msgstr "Leia inimesi" -#: src/Content/Widget.php:75 view/theme/vier/theme.php:171 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 msgid "Enter name or interest" msgstr "Sissta nimi või huviala" -#: src/Content/Widget.php:77 view/theme/vier/theme.php:173 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: src/Content/Widget.php:78 src/Module/Contact.php:391 -#: src/Module/Directory.php:96 view/theme/vier/theme.php:174 +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 msgid "Find" msgstr "Otsi" -#: src/Content/Widget.php:80 view/theme/vier/theme.php:176 +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "Sõbrasoovitused" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 msgid "Similar Interests" msgstr "Sarnased huvid" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:177 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 msgid "Random Profile" msgstr "Suvaline profiil" -#: src/Content/Widget.php:82 view/theme/vier/theme.php:178 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 msgid "Invite Friends" msgstr "Kutsu sõpru" -#: src/Content/Widget.php:83 src/Module/Directory.php:88 -#: view/theme/vier/theme.php:179 +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 msgid "Global Directory" msgstr "Globaalne kataloog" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:181 +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 msgid "Local Directory" msgstr "Kohalik kataloog" -#: src/Content/Widget.php:207 src/Model/Group.php:507 -#: src/Module/Contact.php:354 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "Grupid" +#: src/Content/Widget.php:215 src/Model/Circle.php:600 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "" -#: src/Content/Widget.php:209 +#: src/Content/Widget.php:217 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:238 +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "" + +#: src/Content/Widget.php:247 msgid "Relationships" msgstr "Suhted" -#: src/Content/Widget.php:240 src/Module/Contact.php:306 -#: src/Module/Group.php:293 +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 msgid "All Contacts" msgstr "Kõik kontaktid" -#: src/Content/Widget.php:279 +#: src/Content/Widget.php:288 msgid "Protocols" msgstr "Protokollid" -#: src/Content/Widget.php:281 +#: src/Content/Widget.php:290 msgid "All Protocols" msgstr "Kõik protokollid" -#: src/Content/Widget.php:309 +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "Salvestatud kaustad" -#: src/Content/Widget.php:311 src/Content/Widget.php:345 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "Kõikvõimalik" -#: src/Content/Widget.php:343 +#: src/Content/Widget.php:349 msgid "Categories" msgstr "Kategooriad" -#: src/Content/Widget.php:400 +#: src/Content/Widget.php:406 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d ühine kontakt" msgstr[1] "%d ühine kontakt" -#: src/Content/Widget.php:496 +#: src/Content/Widget.php:506 msgid "Archives" msgstr "Arhiivid" -#: src/Content/Widget.php:520 +#: src/Content/Widget.php:514 +msgid "On this date" +msgstr "" + +#: src/Content/Widget.php:534 msgid "Persons" msgstr "Isikud" -#: src/Content/Widget.php:521 +#: src/Content/Widget.php:535 msgid "Organisations" msgstr "Organisatsioonid" -#: src/Content/Widget.php:522 src/Model/Contact.php:1476 +#: src/Content/Widget.php:536 src/Model/Contact.php:1698 msgid "News" msgstr "Uudised" -#: src/Content/Widget.php:527 src/Module/Admin/BaseUsers.php:50 +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 +msgid "Account Types" +msgstr "Kontode tüübid" + +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "" -#: src/Content/Widget/CalendarExport.php:54 +#: src/Content/Widget.php:573 src/Module/Settings/Display.php:266 +msgid "Channels" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:56 msgid "Export" msgstr "Eksport" -#: src/Content/Widget/CalendarExport.php:55 +#: src/Content/Widget/CalendarExport.php:57 msgid "Export calendar as ical" msgstr "Ekspordi kalender kui ical" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:58 msgid "Export calendar as csv" msgstr "" @@ -3267,14 +2380,14 @@ msgstr "" msgid "No contacts" msgstr "Kontakte pole" -#: src/Content/Widget/ContactBlock.php:108 +#: src/Content/Widget/ContactBlock.php:110 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d Kontaktid" msgstr[1] "%d Kontaktid" -#: src/Content/Widget/ContactBlock.php:125 +#: src/Content/Widget/ContactBlock.php:127 msgid "View Contacts" msgstr "Kuva kontaktid" @@ -3286,105 +2399,130 @@ msgstr "Eemalda tingimus" msgid "Saved Searches" msgstr "Salvestatud otsingud" -#: src/Content/Widget/TrendingTags.php:51 +#: src/Content/Widget/TrendingTags.php:52 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" msgstr[0] "" msgstr[1] "" -#: src/Content/Widget/TrendingTags.php:52 +#: src/Content/Widget/TrendingTags.php:53 msgid "More Trending Tags" msgstr "Veel trendikaid silte" -#: src/Content/Widget/VCard.php:96 src/Model/Profile.php:373 -#: src/Module/Contact/Profile.php:378 src/Module/Profile/Profile.php:176 +#: src/Content/Widget/VCard.php:109 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 msgid "XMPP:" msgstr "" -#: src/Content/Widget/VCard.php:97 src/Model/Profile.php:374 -#: src/Module/Contact/Profile.php:380 src/Module/Profile/Profile.php:180 +#: src/Content/Widget/VCard.php:110 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:101 src/Model/Profile.php:466 -#: src/Module/Notifications/Introductions.php:199 +#: src/Content/Widget/VCard.php:111 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Asukoht:" + +#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:474 +#: src/Module/Notifications/Introductions.php:201 msgid "Network:" msgstr "Võrk" -#: src/Content/Widget/VCard.php:105 src/Model/Profile.php:456 +#: src/Content/Widget/VCard.php:118 src/Model/Contact.php:1223 +#: src/Model/Contact.php:1234 src/Model/Profile.php:463 +#: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "" -#: src/Core/ACL.php:164 src/Module/Profile/Profile.php:242 +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:200 src/Module/PermissionTooltip.php:85 -#: src/Module/PermissionTooltip.php:107 +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 msgid "Mutuals" msgstr "" -#: src/Core/ACL.php:292 +#: src/Core/ACL.php:294 msgid "Post to Email" msgstr "Postita meilile" -#: src/Core/ACL.php:319 +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 msgid "Public" msgstr "Avalik" -#: src/Core/ACL.php:320 +#: src/Core/ACL.php:322 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "" -#: src/Core/ACL.php:321 +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 msgid "Limited/Private" msgstr "Piiratud/Privaatne" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:324 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "" -#: src/Core/ACL.php:323 +#: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." +msgstr "" + +#: src/Core/ACL.php:325 msgid "Show to:" msgstr "" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:326 msgid "Except to:" msgstr "" -#: src/Core/ACL.php:327 +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "CC: emaili addressid" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "" + +#: src/Core/ACL.php:329 msgid "Connectors" msgstr "" -#: src/Core/Installer.php:183 +#: src/Core/Installer.php:180 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 "" -#: src/Core/Installer.php:202 +#: src/Core/Installer.php:197 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "" -#: src/Core/Installer.php:203 src/Module/Install.php:213 -#: src/Module/Install.php:372 +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "" -#: src/Core/Installer.php:264 +#: src/Core/Installer.php:259 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:260 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 "" -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:265 msgid "PHP executable path" msgstr "" -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:265 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "" -#: src/Core/Installer.php:275 +#: src/Core/Installer.php:270 msgid "Command line PHP" msgstr "" -#: src/Core/Installer.php:284 +#: src/Core/Installer.php:279 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "" -#: src/Core/Installer.php:285 +#: src/Core/Installer.php:280 msgid "Found PHP version: " msgstr "" -#: src/Core/Installer.php:287 +#: src/Core/Installer.php:282 msgid "PHP cli binary" msgstr "" -#: src/Core/Installer.php:300 +#: src/Core/Installer.php:295 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "" -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:296 msgid "This is required for message delivery to work." msgstr "" -#: src/Core/Installer.php:306 +#: src/Core/Installer.php:301 msgid "PHP register_argc_argv" msgstr "" -#: src/Core/Installer.php:338 +#: src/Core/Installer.php:333 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "" -#: src/Core/Installer.php:339 +#: src/Core/Installer.php:334 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "" -#: src/Core/Installer.php:342 +#: src/Core/Installer.php:337 msgid "Generate encryption keys" msgstr "" -#: src/Core/Installer.php:394 +#: src/Core/Installer.php:389 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: src/Core/Installer.php:399 +#: src/Core/Installer.php:394 msgid "Apache mod_rewrite module" msgstr "" -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:400 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:410 +#: src/Core/Installer.php:405 msgid "Error: The MySQL driver for PDO is not installed." msgstr "" -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:409 msgid "PDO or MySQLi PHP module" msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:417 msgid "Error, XML PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:421 msgid "XML PHP module" msgstr "" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:424 msgid "libCurl PHP module" msgstr "" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:425 msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:431 msgid "GD graphics PHP module" msgstr "" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:432 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:438 msgid "OpenSSL PHP module" msgstr "" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:439 msgid "Error: openssl PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:445 msgid "mb_string PHP module" msgstr "" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:446 msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:452 msgid "iconv PHP module" msgstr "" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:453 msgid "Error: iconv PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:459 msgid "POSIX PHP module" msgstr "" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:460 msgid "Error: POSIX PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:466 msgid "Program execution functions" msgstr "" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:467 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:473 msgid "JSON PHP module" msgstr "" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:474 msgid "Error: JSON PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:480 msgid "File Information PHP module" msgstr "" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:481 msgid "Error: File Information PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:509 +#: src/Core/Installer.php:487 +msgid "GNU Multiple Precision PHP module" +msgstr "" + +#: src/Core/Installer.php:488 +msgid "Error: GNU Multiple Precision PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:511 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 "" -#: src/Core/Installer.php:510 +#: src/Core/Installer.php:512 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 "" -#: src/Core/Installer.php:511 +#: src/Core/Installer.php:513 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 "" -#: src/Core/Installer.php:512 +#: src/Core/Installer.php:514 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "" -#: src/Core/Installer.php:515 +#: src/Core/Installer.php:517 msgid "config/local.config.php is writable" msgstr "" -#: src/Core/Installer.php:535 +#: src/Core/Installer.php:537 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "" -#: src/Core/Installer.php:536 +#: src/Core/Installer.php:538 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 "" -#: src/Core/Installer.php:537 +#: src/Core/Installer.php:539 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "" -#: src/Core/Installer.php:538 +#: src/Core/Installer.php:540 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 "" -#: src/Core/Installer.php:541 +#: src/Core/Installer.php:543 msgid "view/smarty3 is writable" msgstr "" -#: src/Core/Installer.php:569 +#: src/Core/Installer.php:571 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "" -#: src/Core/Installer.php:570 +#: src/Core/Installer.php:572 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "" -#: src/Core/Installer.php:572 +#: src/Core/Installer.php:574 msgid "Error message from Curl when fetching" msgstr "" -#: src/Core/Installer.php:578 +#: src/Core/Installer.php:580 msgid "Url rewrite is working" msgstr "" -#: src/Core/Installer.php:607 +#: src/Core/Installer.php:609 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "" -#: src/Core/Installer.php:608 +#: src/Core/Installer.php:610 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "" -#: src/Core/Installer.php:609 +#: src/Core/Installer.php:611 msgid "Please ensure that the connection to the server is secure." msgstr "" -#: src/Core/Installer.php:610 +#: src/Core/Installer.php:612 msgid "No TLS detected" msgstr "" -#: src/Core/Installer.php:612 +#: src/Core/Installer.php:614 msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:639 +#: src/Core/Installer.php:641 msgid "ImageMagick PHP extension is not installed" msgstr "" -#: src/Core/Installer.php:641 +#: src/Core/Installer.php:643 msgid "ImageMagick PHP extension is installed" msgstr "" -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:645 msgid "ImageMagick supports GIF" msgstr "" -#: src/Core/Installer.php:665 +#: src/Core/Installer.php:667 msgid "Database already in use." msgstr "" -#: src/Core/Installer.php:670 +#: src/Core/Installer.php:672 msgid "Could not connect to database." msgstr "" -#: src/Core/L10n.php:377 src/Model/Event.php:425 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:476 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:235 msgid "Monday" msgstr "Esmaspäev" -#: src/Core/L10n.php:377 src/Model/Event.php:426 +#: src/Core/L10n.php:476 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:236 msgid "Tuesday" msgstr "Teisipäev" -#: src/Core/L10n.php:377 src/Model/Event.php:427 +#: src/Core/L10n.php:476 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:237 msgid "Wednesday" msgstr "Kolmapäev" -#: src/Core/L10n.php:377 src/Model/Event.php:428 +#: src/Core/L10n.php:476 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:238 msgid "Thursday" msgstr "Neljapäev" -#: src/Core/L10n.php:377 src/Model/Event.php:429 +#: src/Core/L10n.php:476 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:239 msgid "Friday" msgstr "Reede" -#: src/Core/L10n.php:377 src/Model/Event.php:430 +#: src/Core/L10n.php:476 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:240 msgid "Saturday" msgstr "Laupäev" -#: src/Core/L10n.php:377 src/Model/Event.php:424 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:476 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:234 msgid "Sunday" msgstr "Pühapäev" -#: src/Core/L10n.php:381 src/Model/Event.php:445 +#: src/Core/L10n.php:480 src/Model/Event.php:450 msgid "January" msgstr "Jaanuar" -#: src/Core/L10n.php:381 src/Model/Event.php:446 +#: src/Core/L10n.php:480 src/Model/Event.php:451 msgid "February" msgstr "Veebruar" -#: src/Core/L10n.php:381 src/Model/Event.php:447 +#: src/Core/L10n.php:480 src/Model/Event.php:452 msgid "March" msgstr "Märts" -#: src/Core/L10n.php:381 src/Model/Event.php:448 +#: src/Core/L10n.php:480 src/Model/Event.php:453 msgid "April" msgstr "Aprill" -#: src/Core/L10n.php:381 src/Core/L10n.php:401 src/Model/Event.php:436 +#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441 msgid "May" msgstr "Mai" -#: src/Core/L10n.php:381 src/Model/Event.php:449 +#: src/Core/L10n.php:480 src/Model/Event.php:454 msgid "June" msgstr "Juuni" -#: src/Core/L10n.php:381 src/Model/Event.php:450 +#: src/Core/L10n.php:480 src/Model/Event.php:455 msgid "July" msgstr "Juuli" -#: src/Core/L10n.php:381 src/Model/Event.php:451 +#: src/Core/L10n.php:480 src/Model/Event.php:456 msgid "August" msgstr "August" -#: src/Core/L10n.php:381 src/Model/Event.php:452 +#: src/Core/L10n.php:480 src/Model/Event.php:457 msgid "September" msgstr "" -#: src/Core/L10n.php:381 src/Model/Event.php:453 +#: src/Core/L10n.php:480 src/Model/Event.php:458 msgid "October" msgstr "Oktoober" -#: src/Core/L10n.php:381 src/Model/Event.php:454 +#: src/Core/L10n.php:480 src/Model/Event.php:459 msgid "November" msgstr "" -#: src/Core/L10n.php:381 src/Model/Event.php:455 +#: src/Core/L10n.php:480 src/Model/Event.php:460 msgid "December" msgstr "Detsember" -#: src/Core/L10n.php:397 src/Model/Event.php:417 +#: src/Core/L10n.php:495 src/Model/Event.php:422 msgid "Mon" msgstr "Esm" -#: src/Core/L10n.php:397 src/Model/Event.php:418 +#: src/Core/L10n.php:495 src/Model/Event.php:423 msgid "Tue" msgstr "Tei" -#: src/Core/L10n.php:397 src/Model/Event.php:419 +#: src/Core/L10n.php:495 src/Model/Event.php:424 msgid "Wed" msgstr "Kol" -#: src/Core/L10n.php:397 src/Model/Event.php:420 +#: src/Core/L10n.php:495 src/Model/Event.php:425 msgid "Thu" msgstr "Nel" -#: src/Core/L10n.php:397 src/Model/Event.php:421 +#: src/Core/L10n.php:495 src/Model/Event.php:426 msgid "Fri" msgstr "Ree" -#: src/Core/L10n.php:397 src/Model/Event.php:422 +#: src/Core/L10n.php:495 src/Model/Event.php:427 msgid "Sat" msgstr "Lau" -#: src/Core/L10n.php:397 src/Model/Event.php:416 +#: src/Core/L10n.php:495 src/Model/Event.php:421 msgid "Sun" msgstr "Püh" -#: src/Core/L10n.php:401 src/Model/Event.php:432 +#: src/Core/L10n.php:499 src/Model/Event.php:437 msgid "Jan" msgstr "" -#: src/Core/L10n.php:401 src/Model/Event.php:433 +#: src/Core/L10n.php:499 src/Model/Event.php:438 msgid "Feb" msgstr "" -#: src/Core/L10n.php:401 src/Model/Event.php:434 +#: src/Core/L10n.php:499 src/Model/Event.php:439 msgid "Mar" msgstr "" -#: src/Core/L10n.php:401 src/Model/Event.php:435 +#: src/Core/L10n.php:499 src/Model/Event.php:440 msgid "Apr" msgstr "" -#: src/Core/L10n.php:401 src/Model/Event.php:437 +#: src/Core/L10n.php:499 src/Model/Event.php:442 msgid "Jun" msgstr "" -#: src/Core/L10n.php:401 src/Model/Event.php:438 +#: src/Core/L10n.php:499 src/Model/Event.php:443 msgid "Jul" msgstr "" -#: src/Core/L10n.php:401 src/Model/Event.php:439 +#: src/Core/L10n.php:499 src/Model/Event.php:444 msgid "Aug" msgstr "" -#: src/Core/L10n.php:401 +#: src/Core/L10n.php:499 msgid "Sep" msgstr "" -#: src/Core/L10n.php:401 src/Model/Event.php:441 +#: src/Core/L10n.php:499 src/Model/Event.php:446 msgid "Oct" msgstr "" -#: src/Core/L10n.php:401 src/Model/Event.php:442 +#: src/Core/L10n.php:499 src/Model/Event.php:447 msgid "Nov" msgstr "" -#: src/Core/L10n.php:401 src/Model/Event.php:443 +#: src/Core/L10n.php:499 src/Model/Event.php:448 msgid "Dec" msgstr "" -#: src/Core/L10n.php:420 -msgid "poke" -msgstr "müksa" - -#: src/Core/L10n.php:420 -msgid "poked" -msgstr "müksatud" - -#: src/Core/L10n.php:421 -msgid "ping" -msgstr "pingi" - -#: src/Core/L10n.php:421 -msgid "pinged" -msgstr "pingitud" - -#: src/Core/L10n.php:422 -msgid "prod" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/L10n.php:422 -msgid "prodded" -msgstr "" - -#: src/Core/L10n.php:423 -msgid "slap" -msgstr "laksa" - -#: src/Core/L10n.php:423 -msgid "slapped" -msgstr "laksatud" - -#: src/Core/L10n.php:424 -msgid "finger" -msgstr "" - -#: src/Core/L10n.php:424 -msgid "fingered" -msgstr "" - -#: src/Core/L10n.php:425 -msgid "rebuff" -msgstr "" - -#: src/Core/L10n.php:425 -msgid "rebuffed" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" #: src/Core/Renderer.php:89 src/Core/Renderer.php:118 -#: src/Core/Renderer.php:145 src/Core/Renderer.php:179 -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "" -#: src/Core/Renderer.php:141 +#: src/Core/Renderer.php:143 msgid "template engine cannot be registered without a name." msgstr "" -#: src/Core/Renderer.php:175 +#: src/Core/Renderer.php:177 msgid "template engine is not registered!" msgstr "" @@ -3901,36 +3015,36 @@ msgstr "" msgid "Enter a valid existing folder" msgstr "" -#: src/Core/Update.php:67 +#: src/Core/Update.php:80 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:78 +#: src/Core/Update.php:91 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:152 +#: src/Core/Update.php:183 #, php-format msgid "%s: executing pre update %d" msgstr "" -#: src/Core/Update.php:190 +#: src/Core/Update.php:225 #, php-format msgid "%s: executing post update %d" msgstr "" -#: src/Core/Update.php:261 +#: src/Core/Update.php:299 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: src/Core/Update.php:314 +#: src/Core/Update.php:339 #, php-format msgid "" "\n" @@ -3940,81 +3054,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "" -#: src/Core/Update.php:320 +#: src/Core/Update.php:345 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "" -#: src/Core/Update.php:324 src/Core/Update.php:366 +#: src/Core/Update.php:349 src/Core/Update.php:377 msgid "[Friendica Notify] Database update" msgstr "" -#: src/Core/Update.php:360 +#: src/Core/Update.php:371 #, php-format msgid "" "\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." +"\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" -#: src/Core/UserImport.php:125 -msgid "Error decoding account file" -msgstr "" - -#: src/Core/UserImport.php:131 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: src/Core/UserImport.php:139 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "" - -#: src/Core/UserImport.php:175 -msgid "User creation error" -msgstr "" - -#: src/Core/UserImport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" - -#: src/Core/UserImport.php:273 -msgid "User profile creation error" -msgstr "" - -#: src/Core/UserImport.php:326 -msgid "Done. You can now login with your username and password" -msgstr "" - -#: src/Database/DBStructure.php:65 +#: src/Database/DBStructure.php:57 #, php-format msgid "The database version had been set to %s." msgstr "" -#: src/Database/DBStructure.php:78 +#: src/Database/DBStructure.php:82 #, 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:91 +#: src/Database/DBStructure.php:95 msgid "No unused tables found." msgstr "" -#: src/Database/DBStructure.php:96 +#: src/Database/DBStructure.php:100 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "" -#: src/Database/DBStructure.php:134 +#: src/Database/DBStructure.php:137 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Database/DBStructure.php:158 +#: src/Database/DBStructure.php:161 #, php-format msgid "" "\n" @@ -4022,20 +3104,20 @@ msgid "" "%s\n" msgstr "" -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:164 msgid "Errors encountered performing database changes: " msgstr "" -#: src/Database/DBStructure.php:549 +#: src/Database/DBStructure.php:232 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:553 +#: src/Database/DBStructure.php:236 #, php-format msgid "%s: Database update" msgstr "" -#: src/Database/DBStructure.php:803 +#: src/Database/DBStructure.php:493 #, php-format msgid "%s: updating %s table." msgstr "" @@ -4052,12 +3134,12 @@ msgstr "" msgid "Unauthorized" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:85 +#: src/Factory/Api/Mastodon/Error.php:84 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:95 +#: src/Factory/Api/Mastodon/Error.php:94 msgid "Internal Server Error" msgstr "" @@ -4066,510 +3148,597 @@ msgstr "" msgid "Legacy module file not found: %s" msgstr "" -#: src/Model/Contact.php:1043 src/Model/Contact.php:1055 -msgid "UnFollow" +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." msgstr "" -#: src/Model/Contact.php:1061 src/Module/Admin/Users/Pending.php:107 -#: src/Module/Notifications/Introductions.php:130 -#: src/Module/Notifications/Introductions.php:202 +#: src/Model/Circle.php:543 +msgid "Everybody" +msgstr "Igaüks" + +#: src/Model/Circle.php:562 +msgid "edit" +msgstr "muuda" + +#: src/Model/Circle.php:599 +msgid "add" +msgstr "lisa" + +#: src/Model/Circle.php:604 +msgid "Edit circle" +msgstr "" + +#: src/Model/Circle.php:605 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "" + +#: src/Model/Circle.php:607 +msgid "Create a new circle" +msgstr "" + +#: src/Model/Circle.php:608 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "" + +#: src/Model/Circle.php:609 +msgid "Edit circles" +msgstr "" + +#: src/Model/Contact.php:1240 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "" -#: src/Model/Contact.php:1472 +#: src/Model/Contact.php:1694 msgid "Organisation" msgstr "Organisatsioon" -#: src/Model/Contact.php:1480 -msgid "Forum" -msgstr "Foorum" +#: src/Model/Contact.php:1702 +msgid "Group" +msgstr "" -#: src/Model/Contact.php:2350 +#: src/Model/Contact.php:3005 msgid "Disallowed profile URL." msgstr "Mittelubatud profiili URL." -#: src/Model/Contact.php:2355 src/Module/Friendica.php:81 +#: src/Model/Contact.php:3010 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "" -#: src/Model/Contact.php:2360 +#: src/Model/Contact.php:3015 msgid "Connect URL missing." msgstr "" -#: src/Model/Contact.php:2369 +#: src/Model/Contact.php:3024 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:2406 +#: src/Model/Contact.php:3042 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "" + +#: src/Model/Contact.php:3059 msgid "The profile address specified does not provide adequate information." msgstr "" -#: src/Model/Contact.php:2408 +#: src/Model/Contact.php:3061 msgid "No compatible communication protocols or feeds were discovered." msgstr "" -#: src/Model/Contact.php:2411 +#: src/Model/Contact.php:3064 msgid "An author or name was not found." msgstr "" -#: src/Model/Contact.php:2414 +#: src/Model/Contact.php:3067 msgid "No browser URL could be matched to this address." msgstr "" -#: src/Model/Contact.php:2417 +#: src/Model/Contact.php:3070 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "" -#: src/Model/Contact.php:2418 +#: src/Model/Contact.php:3071 msgid "Use mailto: in front of address to force email check." msgstr "" -#: src/Model/Contact.php:2424 +#: src/Model/Contact.php:3077 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "" -#: src/Model/Contact.php:2429 +#: src/Model/Contact.php:3082 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "" -#: src/Model/Contact.php:2488 +#: src/Model/Contact.php:3148 msgid "Unable to retrieve contact information." msgstr "" -#: src/Model/Event.php:52 +#: src/Model/Event.php:54 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:73 src/Model/Event.php:90 src/Model/Event.php:464 -#: src/Model/Event.php:897 +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 msgid "Starts:" msgstr "Algab:" -#: src/Model/Event.php:76 src/Model/Event.php:96 src/Model/Event.php:465 -#: src/Model/Event.php:901 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 msgid "Finishes:" msgstr "Lõpeb:" -#: src/Model/Event.php:414 +#: src/Model/Event.php:419 msgid "all-day" msgstr "terve päev" -#: src/Model/Event.php:440 +#: src/Model/Event.php:445 msgid "Sept" msgstr "" -#: src/Model/Event.php:462 +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "täna" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:245 src/Util/Temporal.php:353 +msgid "month" +msgstr "kuu" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:246 src/Util/Temporal.php:354 +msgid "week" +msgstr "nädal" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:247 src/Util/Temporal.php:355 +msgid "day" +msgstr "päev" + +#: src/Model/Event.php:467 msgid "No events to display" msgstr "Pole üritusi kuvamiseks" -#: src/Model/Event.php:578 +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "Ligipääs sellele profiilile on piiratud. " + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "" + +#: src/Model/Event.php:637 msgid "l, F j" msgstr "" -#: src/Model/Event.php:609 +#: src/Model/Event.php:664 msgid "Edit event" msgstr "Muuda sündmust" -#: src/Model/Event.php:610 +#: src/Model/Event.php:665 msgid "Duplicate event" msgstr "Dubleeri sündmus" -#: src/Model/Event.php:611 +#: src/Model/Event.php:666 msgid "Delete event" msgstr "Kustuta sündmus" -#: src/Model/Event.php:853 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 msgid "l F d, Y \\@ g:i A" msgstr "" -#: src/Model/Event.php:854 +#: src/Model/Event.php:897 msgid "D g:i A" msgstr "" -#: src/Model/Event.php:855 +#: src/Model/Event.php:898 msgid "g:i A" msgstr "" -#: src/Model/Event.php:916 src/Model/Event.php:918 +#: src/Model/Event.php:964 src/Model/Event.php:966 msgid "Show map" msgstr "Näita kaarti" -#: src/Model/Event.php:917 +#: src/Model/Event.php:965 msgid "Hide map" msgstr "Peida kaart" -#: src/Model/Event.php:1009 +#: src/Model/Event.php:1058 #, php-format msgid "%s's birthday" msgstr "%s sünnipäev" -#: src/Model/Event.php:1010 +#: src/Model/Event.php:1059 #, php-format msgid "Happy Birthday %s" msgstr "Palju Õnne %s " -#: src/Model/Group.php:94 -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 "" - -#: src/Model/Group.php:423 -msgid "Default privacy group for new contacts" -msgstr "Baas turvalisuse grupp uutele kontaktidele" - -#: src/Model/Group.php:455 -msgid "Everybody" -msgstr "Igaüks" - -#: src/Model/Group.php:474 -msgid "edit" -msgstr "muuda" - -#: src/Model/Group.php:506 -msgid "add" -msgstr "lisa" - -#: src/Model/Group.php:511 -msgid "Edit group" -msgstr "Muuda gruppi" - -#: src/Model/Group.php:512 src/Module/Group.php:194 -msgid "Contacts not in any group" -msgstr "Mitteüheski grupis olevad kontaktid" - -#: src/Model/Group.php:514 -msgid "Create a new group" -msgstr "Loo uus grupp" - -#: src/Model/Group.php:515 src/Module/Group.php:179 src/Module/Group.php:202 -#: src/Module/Group.php:277 -msgid "Group Name: " -msgstr "Grupi nimi:" - -#: src/Model/Group.php:516 -msgid "Edit groups" -msgstr "Muuda gruppe" - -#: src/Model/Item.php:1677 +#: src/Model/Item.php:2062 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "" -#: src/Model/Item.php:2628 +#: src/Model/Item.php:3007 msgid "activity" msgstr "tegevused" -#: src/Model/Item.php:2630 +#: src/Model/Item.php:3009 msgid "comment" msgstr "" -#: src/Model/Item.php:2633 +#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "postitus" -#: src/Model/Item.php:2770 +#: src/Model/Item.php:3182 +#, php-format +msgid "%s is blocked" +msgstr "" + +#: src/Model/Item.php:3184 +#, php-format +msgid "%s is ignored" +msgstr "" + +#: src/Model/Item.php:3186 +#, php-format +msgid "Content from %s is collapsed" +msgstr "" + +#: src/Model/Item.php:3190 #, php-format msgid "Content warning: %s" msgstr "" -#: src/Model/Item.php:3119 +#: src/Model/Item.php:3652 msgid "bytes" msgstr "" -#: src/Model/Item.php:3148 src/Model/Item.php:3149 +#: src/Model/Item.php:3683 +#, php-format +msgid "%2$s (%3$d%%, %1$d vote)" +msgid_plural "%2$s (%3$d%%, %1$d votes)" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3685 +#, php-format +msgid "%2$s (%1$d vote)" +msgid_plural "%2$s (%1$d votes)" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3690 +#, php-format +msgid "%d voter. Poll end: %s" +msgid_plural "%d voters. Poll end: %s" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3692 +#, php-format +msgid "%d voter." +msgid_plural "%d voters." +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3694 +#, php-format +msgid "Poll end: %s" +msgstr "" + +#: src/Model/Item.php:3728 src/Model/Item.php:3729 msgid "View on separate page" msgstr "Kuva eraldi lehel" -#: src/Model/Mail.php:134 src/Model/Mail.php:266 +#: src/Model/Mail.php:137 src/Model/Mail.php:266 msgid "[no subject]" msgstr "[teema puudub] " -#: src/Model/Profile.php:356 src/Module/Profile/Profile.php:256 -#: src/Module/Profile/Profile.php:258 +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Seina fotod" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 msgid "Edit profile" msgstr "Muuda profiili" -#: src/Model/Profile.php:358 +#: src/Model/Profile.php:361 msgid "Change profile photo" msgstr "Muuda profiilifoto" -#: src/Model/Profile.php:371 src/Module/Directory.php:152 -#: src/Module/Profile/Profile.php:184 +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 msgid "Homepage:" msgstr "Koduleht:" -#: src/Model/Profile.php:372 src/Module/Contact/Profile.php:382 -#: src/Module/Notifications/Introductions.php:187 +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "Minust:" -#: src/Model/Profile.php:458 +#: src/Model/Profile.php:465 msgid "Atom feed" msgstr "" -#: src/Model/Profile.php:496 src/Model/Profile.php:593 -msgid "g A l F d" +#: src/Model/Profile.php:472 +msgid "This website has been verified to belong to the same person." msgstr "" -#: src/Model/Profile.php:497 +#: src/Model/Profile.php:509 msgid "F d" msgstr "" -#: src/Model/Profile.php:559 src/Model/Profile.php:644 +#: src/Model/Profile.php:573 src/Model/Profile.php:662 msgid "[today]" msgstr "[täna]" -#: src/Model/Profile.php:569 +#: src/Model/Profile.php:582 msgid "Birthday Reminders" msgstr "Sünnipäeva meeldetuletused" -#: src/Model/Profile.php:570 +#: src/Model/Profile.php:583 msgid "Birthdays this week:" msgstr "Sünnipäevad sel nädalal:" -#: src/Model/Profile.php:631 +#: src/Model/Profile.php:611 +msgid "g A l F d" +msgstr "" + +#: src/Model/Profile.php:649 msgid "[No description]" msgstr "[kirjeldus puudub]" -#: src/Model/Profile.php:657 +#: src/Model/Profile.php:675 msgid "Event Reminders" msgstr "Sündmuste meeldetuletused" -#: src/Model/Profile.php:658 +#: src/Model/Profile.php:676 msgid "Upcoming events the next 7 days:" msgstr "Eelseisvad sündmused järgneval 7 päeval: " -#: src/Model/Profile.php:846 +#: src/Model/Profile.php:873 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "" -#: src/Model/Profile.php:978 +#: src/Model/Profile.php:1013 msgid "Hometown:" msgstr "Kodulinn:" -#: src/Model/Profile.php:979 +#: src/Model/Profile.php:1014 msgid "Marital Status:" msgstr "" -#: src/Model/Profile.php:980 +#: src/Model/Profile.php:1015 msgid "With:" msgstr "" -#: src/Model/Profile.php:981 +#: src/Model/Profile.php:1016 msgid "Since:" msgstr "" -#: src/Model/Profile.php:982 +#: src/Model/Profile.php:1017 msgid "Sexual Preference:" msgstr "Seksuaalne eelistus:" -#: src/Model/Profile.php:983 +#: src/Model/Profile.php:1018 msgid "Political Views:" msgstr "Poliitilised vaated:" -#: src/Model/Profile.php:984 +#: src/Model/Profile.php:1019 msgid "Religious Views:" msgstr "Usulised vaated:" -#: src/Model/Profile.php:985 +#: src/Model/Profile.php:1020 msgid "Likes:" msgstr "Meeldimised:" -#: src/Model/Profile.php:986 +#: src/Model/Profile.php:1021 msgid "Dislikes:" msgstr "Mittemeeldimised:" -#: src/Model/Profile.php:987 +#: src/Model/Profile.php:1022 msgid "Title/Description:" msgstr "Tiitel/Kirjeldus:" -#: src/Model/Profile.php:988 src/Module/Admin/Summary.php:233 +#: src/Model/Profile.php:1023 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 msgid "Summary" msgstr "Kokkuvõte" -#: src/Model/Profile.php:989 +#: src/Model/Profile.php:1024 msgid "Musical interests" msgstr "Muusikalised huvid" -#: src/Model/Profile.php:990 +#: src/Model/Profile.php:1025 msgid "Books, literature" msgstr "Raamatud, kirjandus" -#: src/Model/Profile.php:991 +#: src/Model/Profile.php:1026 msgid "Television" msgstr "Televisioon" -#: src/Model/Profile.php:992 +#: src/Model/Profile.php:1027 msgid "Film/dance/culture/entertainment" msgstr "Film/tants/kultuur/meelelehutus" -#: src/Model/Profile.php:993 +#: src/Model/Profile.php:1028 msgid "Hobbies/Interests" msgstr "Hobid/Huvid" -#: src/Model/Profile.php:994 +#: src/Model/Profile.php:1029 msgid "Love/romance" msgstr "Armastus/Romantika" -#: src/Model/Profile.php:995 +#: src/Model/Profile.php:1030 msgid "Work/employment" msgstr "Töö/Ametitegevus" -#: src/Model/Profile.php:996 +#: src/Model/Profile.php:1031 msgid "School/education" msgstr "Kool/Haridus" -#: src/Model/Profile.php:997 +#: src/Model/Profile.php:1032 msgid "Contact information and Social Networks" msgstr "Kontaktinfo ja Sotsiaalvõrgustikud" -#: src/Model/User.php:208 src/Model/User.php:1029 +#: src/Model/User.php:227 src/Model/User.php:1186 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "" -#: src/Model/User.php:568 src/Model/User.php:601 +#: src/Model/User.php:620 src/Model/User.php:653 msgid "Login failed" msgstr "" -#: src/Model/User.php:633 +#: src/Model/User.php:685 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:728 +#: src/Model/User.php:806 msgid "Password can't be empty" msgstr "Parool ei saa olla tühi " -#: src/Model/User.php:747 +#: src/Model/User.php:848 msgid "Empty passwords are not allowed." msgstr "Tühjad paroolid pole lubatud" -#: src/Model/User.php:751 +#: src/Model/User.php:852 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Uus parool on juba kasutuses, palun vali midagi muud. " -#: src/Model/User.php:757 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" +#: src/Model/User.php:856 +msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:909 +#: src/Model/User.php:860 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "" + +#: src/Model/User.php:1069 msgid "Passwords do not match. Password unchanged." msgstr "Paroolid ei kattu" -#: src/Model/User.php:916 +#: src/Model/User.php:1076 msgid "An invitation is required." msgstr "Kutse on nõutav." -#: src/Model/User.php:920 +#: src/Model/User.php:1080 msgid "Invitation could not be verified." msgstr "Kutset ei õnnestu kontrollida." -#: src/Model/User.php:928 +#: src/Model/User.php:1088 msgid "Invalid OpenID url" msgstr "" -#: src/Model/User.php:941 src/Security/Authentication.php:235 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 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:941 src/Security/Authentication.php:235 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "" -#: src/Model/User.php:947 +#: src/Model/User.php:1107 msgid "Please enter the required information." msgstr "" -#: src/Model/User.php:961 +#: src/Model/User.php:1121 #, 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:968 +#: src/Model/User.php:1128 #, 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:972 +#: src/Model/User.php:1132 #, 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:980 +#: src/Model/User.php:1140 msgid "That doesn't appear to be your full (First Last) name." msgstr "" -#: src/Model/User.php:985 +#: src/Model/User.php:1145 msgid "Your email domain is not among those allowed on this site." msgstr "" -#: src/Model/User.php:989 +#: src/Model/User.php:1149 msgid "Not a valid email address." msgstr "" -#: src/Model/User.php:992 +#: src/Model/User.php:1152 msgid "The nickname was blocked from registration by the nodes admin." msgstr "" -#: src/Model/User.php:996 src/Model/User.php:1004 +#: src/Model/User.php:1156 src/Model/User.php:1162 msgid "Cannot use that email." msgstr "" -#: src/Model/User.php:1011 +#: src/Model/User.php:1168 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "" -#: src/Model/User.php:1019 src/Model/User.php:1076 +#: src/Model/User.php:1176 src/Model/User.php:1233 msgid "Nickname is already registered. Please choose another." msgstr "" -#: src/Model/User.php:1063 src/Model/User.php:1067 +#: src/Model/User.php:1220 src/Model/User.php:1224 msgid "An error occurred during registration. Please try again." msgstr "" -#: src/Model/User.php:1090 +#: src/Model/User.php:1247 msgid "An error occurred creating your default profile. Please try again." msgstr "" -#: src/Model/User.php:1097 +#: src/Model/User.php:1254 msgid "An error occurred creating your self contact. Please try again." msgstr "" -#: src/Model/User.php:1102 +#: src/Model/User.php:1259 msgid "Friends" msgstr "Sõbrad" -#: src/Model/User.php:1106 +#: src/Model/User.php:1263 msgid "" -"An error occurred creating your default contact group. Please try again." +"An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1144 +#: src/Model/User.php:1307 msgid "Profile Photos" msgstr "Profiilifotod" -#: src/Model/User.php:1338 +#: src/Model/User.php:1487 #, php-format msgid "" "\n" @@ -4577,7 +3746,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1341 +#: src/Model/User.php:1490 #, php-format msgid "" "\n" @@ -4604,17 +3773,17 @@ msgid "" "\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" +"\t\tIf you ever want to delete your account, you can do so at %1$s/settings/removeme\n" "\n" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1374 src/Model/User.php:1481 +#: src/Model/User.php:1523 src/Model/User.php:1630 #, php-format msgid "Registration details for %s" msgstr "" -#: src/Model/User.php:1394 +#: src/Model/User.php:1543 #, php-format msgid "" "\n" @@ -4629,12 +3798,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:1413 +#: src/Model/User.php:1562 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:1437 +#: src/Model/User.php:1586 #, php-format msgid "" "\n" @@ -4643,7 +3812,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1445 +#: src/Model/User.php:1594 #, php-format msgid "" "\n" @@ -4670,7 +3839,7 @@ msgid "" "\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" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." msgstr "" @@ -4700,26 +3869,20 @@ msgid "Enable" msgstr "" #: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:94 -#: src/Module/Admin/Blocklist/Server/Add.php:89 -#: src/Module/Admin/Blocklist/Server/Index.php:78 -#: 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:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:498 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:232 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:75 -#: 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 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 msgid "Administration" msgstr "" #: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:93 -#: src/Module/BaseSettings.php:85 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:132 msgid "Addons" msgstr "Lisad" @@ -4728,13 +3891,13 @@ msgstr "Lisad" msgid "Toggle" msgstr "" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 msgid "Author: " msgstr "" -#: src/Module/Admin/Addons/Details.php:122 -#: src/Module/Admin/Themes/Details.php:102 +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 msgid "Maintainer: " msgstr "" @@ -4747,11 +3910,22 @@ msgstr "" msgid "Addon %s failed to install." msgstr "" +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Salvesta Sätted" + #: src/Module/Admin/Addons/Index.php:70 msgid "Reload active addons" msgstr "" -#: src/Module/Admin/Addons/Index.php:75 +#: src/Module/Admin/Addons/Index.php:74 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4759,295 +3933,6 @@ msgid "" " the open addon registry at %2$s" msgstr "" -#: src/Module/Admin/BaseUsers.php:53 -msgid "List of all users" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:58 -msgid "Active" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:61 -msgid "List of active accounts" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:66 src/Module/Contact.php:314 -#: src/Module/Contact.php:374 -msgid "Pending" -msgstr "Ootel" - -#: src/Module/Admin/BaseUsers.php:69 -msgid "List of pending registrations" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:74 src/Module/Contact.php:322 -#: src/Module/Contact.php:375 -msgid "Blocked" -msgstr "Blokeeritud" - -#: src/Module/Admin/BaseUsers.php:77 -msgid "List of blocked users" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:82 -msgid "Deleted" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:85 -msgid "List of pending user deletions" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:103 -msgid "Private Forum" -msgstr "Privaatne foorum" - -#: src/Module/Admin/BaseUsers.php:110 -msgid "Relay" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:54 -msgid "You can't block a local contact, please block the user instead" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:73 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Blocklist/Contact.php:95 -msgid "Remote Contact Blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:96 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:97 -msgid "Block Remote Contact" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#: 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 "" - -#: src/Module/Admin/Blocklist/Contact.php:99 -msgid "select none" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:101 -#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156 -#: src/Module/Contact.php:398 src/Module/Contact/Profile.php:355 -#: src/Module/Contact/Profile.php:456 -msgid "Unblock" -msgstr "Võta blokk maha" - -#: src/Module/Admin/Blocklist/Contact.php:102 -msgid "No remote contact is blocked from this node." -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:104 -msgid "Blocked Remote Contacts" -msgstr "Blokeeritud kaugkontaktid" - -#: src/Module/Admin/Blocklist/Contact.php:105 -msgid "Block New Remote Contact" -msgstr "Blokeeri kaugkontakt" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Photo" -msgstr "Foto" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Reason" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:114 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Blocklist/Contact.php:116 -msgid "URL of the remote contact to block." -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "Also purge contact" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "" -"Removes all content related to this contact from the node. Keeps the contact" -" record. This action canoot be undone." -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:118 -msgid "Block Reason" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:55 -msgid "Server domain pattern added to the blocklist." -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:63 -#, php-format -msgid "%s server scheduled to be purged." -msgid_plural "%s servers scheduled to be purged." -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Blocklist/Server/Add.php:88 -msgid "← Return to the list" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:90 -msgid "Block A New Server Domain Pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:91 -#: src/Module/Admin/Blocklist/Server/Index.php:82 -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" -"
    " -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:96 -#: src/Module/Admin/Blocklist/Server/Index.php:88 -msgid "Check pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:97 -msgid "Matching known servers" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:98 -msgid "Server Name" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:99 -msgid "Server Domain" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:100 -msgid "Known Contacts" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:101 -#, php-format -msgid "%d known server" -msgid_plural "%d known servers" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Blocklist/Server/Add.php:102 -msgid "Add pattern to the blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:104 -#: src/Module/Admin/Blocklist/Server/Index.php:96 -msgid "Server Domain Pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:104 -#: src/Module/Admin/Blocklist/Server/Index.php:96 -msgid "" -"The domain pattern of the new server to add to the blocklist. Do not include" -" the protocol." -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:105 -msgid "Purge server" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:105 -msgid "" -"Also purges all the locally stored content authored by the known contacts " -"registered on that server. Keeps the contacts and the server records. This " -"action cannot be undone." -msgid_plural "" -"Also purges all the locally stored content authored by the known contacts " -"registered on these servers. Keeps the contacts and the servers records. " -"This action cannot be undone." -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Blocklist/Server/Add.php:106 -msgid "Block reason" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:106 -msgid "" -"The reason why you blocked this server domain pattern. This reason will be " -"shown publicly in the server information page." -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:68 -#: src/Module/Admin/Blocklist/Server/Index.php:91 -msgid "Blocked server domain pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:69 -#: src/Module/Admin/Blocklist/Server/Index.php:92 src/Module/Friendica.php:82 -msgid "Reason for the block" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:70 -msgid "Delete server domain pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:70 -msgid "Check to delete this entry from the blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:79 -msgid "Server Domain Pattern Blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:80 -msgid "" -"This page can be used to define a blocklist of server domain patterns from " -"the federated network that are not allowed to interact with your node. For " -"each domain pattern you should also provide the reason why you block it." -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:81 -msgid "" -"The list of blocked server domain patterns will be made publically available" -" on the /friendica page so that your users and " -"people investigating communication problems can find the reason easily." -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:87 -msgid "Add new entry to the blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:89 -msgid "Save changes to the blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:90 -msgid "Current Entries in the Blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:93 -msgid "Delete entry from the blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:94 -msgid "Delete entry from the blocklist?" -msgstr "" - #: src/Module/Admin/DBSync.php:51 msgid "Update has been marked successful" msgstr "" @@ -5082,28 +3967,28 @@ msgstr "" msgid "There was no additional update function %s that needed to be called." msgstr "" -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:105 msgid "No failed updates." msgstr "" -#: src/Module/Admin/DBSync.php:107 +#: src/Module/Admin/DBSync.php:106 msgid "Check database structure" msgstr "" -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:110 msgid "Failed Updates" msgstr "" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:111 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "" -#: src/Module/Admin/DBSync.php:114 +#: src/Module/Admin/DBSync.php:112 msgid "Mark success (if update was manually applied)" msgstr "" -#: src/Module/Admin/DBSync.php:115 +#: src/Module/Admin/DBSync.php:113 msgid "Attempt to execute this update step automatically" msgstr "" @@ -5112,164 +3997,145 @@ msgstr "" msgid "Lock feature %s" msgstr "" -#: src/Module/Admin/Features.php:85 +#: src/Module/Admin/Features.php:84 msgid "Manage Additional Features" msgstr "Halda lisafunktsioone" -#: src/Module/Admin/Federation.php:56 +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 msgid "Other" msgstr "" -#: src/Module/Admin/Federation.php:118 src/Module/Admin/Federation.php:348 +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 msgid "unknown" msgstr "" -#: src/Module/Admin/Federation.php:154 +#: src/Module/Admin/Federation.php:187 +#, php-format +msgid "%2$s total system" +msgid_plural "%2$s total systems" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:188 +#, php-format +msgid "%2$s active user last month" +msgid_plural "%2$s active users last month" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:189 +#, php-format +msgid "%2$s active user last six months" +msgid_plural "%2$s active users last six months" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:190 +#, php-format +msgid "%2$s registered user" +msgid_plural "%2$s registered users" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:191 +#, php-format +msgid "%2$s locally created post or comment" +msgid_plural "%2$s locally created posts and comments" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:194 +#, php-format +msgid "%2$s post per user" +msgid_plural "%2$s posts per user" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:199 +#, php-format +msgid "%2$s user per system" +msgid_plural "%2$s users per system" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:209 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:160 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "" -#: src/Module/Admin/Federation.php:164 +#: src/Module/Admin/Federation.php:219 #, php-format msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " +"Currently this node is aware of %2$s node (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " "following platforms:" -msgstr "" +msgid_plural "" +"Currently this node is aware of %2$s nodes (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgstr[0] "" +msgstr[1] "" -#: src/Module/Admin/Item/Delete.php:54 -msgid "Item marked for deletion." -msgstr "Element kustutamiseks märgitud" - -#: src/Module/Admin/Item/Delete.php:66 src/Module/BaseAdmin.php:106 -msgid "Delete Item" -msgstr "Kustuta element" - -#: src/Module/Admin/Item/Delete.php:67 -msgid "Delete this Item" -msgstr "Kustuta see element" - -#: 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 "" - -#: 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 "" - -#: src/Module/Admin/Item/Delete.php:70 -msgid "GUID" -msgstr "" - -#: src/Module/Admin/Item/Delete.php:70 -msgid "The GUID of the item you want to delete." -msgstr "" - -#: src/Module/Admin/Item/Source.php:57 src/Module/BaseAdmin.php:116 -msgid "Item Source" -msgstr "" - -#: src/Module/Admin/Item/Source.php:58 -msgid "Item Guid" -msgstr "" - -#: src/Module/Admin/Item/Source.php:63 -msgid "Item Id" -msgstr "" - -#: src/Module/Admin/Item/Source.php:64 -msgid "Item URI" -msgstr "" - -#: src/Module/Admin/Item/Source.php:66 -msgid "Terms" -msgstr "" - -#: src/Module/Admin/Item/Source.php:67 -msgid "Tag" -msgstr "" - -#: 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üüp" - -#: src/Module/Admin/Item/Source.php:69 -msgid "Term" -msgstr "" - -#: src/Module/Admin/Item/Source.php:70 -msgid "URL" -msgstr "" - -#: src/Module/Admin/Item/Source.php:71 -msgid "Mention" -msgstr "" - -#: src/Module/Admin/Item/Source.php:72 -msgid "Implicit Mention" -msgstr "" - -#: src/Module/Admin/Item/Source.php:73 src/Module/Admin/Logs/View.php:98 -#: src/Module/Debug/ActivityPubConversion.php:62 -msgid "Source" -msgstr "" - -#: src/Module/Admin/Logs/Settings.php:48 +#: src/Module/Admin/Logs/Settings.php:47 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "" -#: src/Module/Admin/Logs/Settings.php:72 +#: src/Module/Admin/Logs/Settings.php:77 msgid "PHP log currently enabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/Settings.php:79 msgid "PHP log currently disabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:81 src/Module/BaseAdmin.php:108 -#: src/Module/BaseAdmin.php:109 +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 msgid "Logs" msgstr "" -#: src/Module/Admin/Logs/Settings.php:83 +#: src/Module/Admin/Logs/Settings.php:88 msgid "Clear" msgstr "" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:91 msgid "Enable Debugging" msgstr "" -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:92 msgid "Log file" msgstr "" -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:92 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "" -#: src/Module/Admin/Logs/Settings.php:89 +#: src/Module/Admin/Logs/Settings.php:93 msgid "Log level" msgstr "" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:95 msgid "PHP logging" msgstr "" -#: src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:96 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 " @@ -5292,7 +4158,7 @@ msgid "" "is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:110 +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 msgid "View Logs" msgstr "" @@ -5301,7 +4167,7 @@ msgid "Search in logs" msgstr "" #: src/Module/Admin/Logs/View.php:88 -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Notifications/Notifications.php:140 msgid "Show all" msgstr "Näita kõik" @@ -5329,10 +4195,19 @@ msgstr "" msgid "Click to view details" msgstr "" +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Sündmuse detailid" + #: src/Module/Admin/Logs/View.php:97 msgid "Data" msgstr "" +#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Debug/ActivityPubConversion.php:57 +msgid "Source" +msgstr "" + #: src/Module/Admin/Logs/View.php:99 msgid "File" msgstr "" @@ -5389,465 +4264,472 @@ msgstr "" msgid "Job Parameters" msgstr "" +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "Loodud" + #: src/Module/Admin/Queue.php:79 msgid "Priority" msgstr "" -#: src/Module/Admin/Site.php:71 -msgid "Can not parse base url. Must have at least ://" +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:125 -msgid "Relocation started. Could take a while to complete." -msgstr "" - -#: src/Module/Admin/Site.php:403 src/Module/Settings/Display.php:138 +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:178 msgid "No special theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:420 src/Module/Settings/Display.php:148 +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188 #, php-format msgid "%s - (Experimental)" msgstr "" -#: src/Module/Admin/Site.php:432 -msgid "No community page for local users" -msgstr "" - -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:342 msgid "No community page" msgstr "" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:343 +msgid "No community page for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:344 msgid "Public postings from users of this site" msgstr "" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:345 msgid "Public postings from the federated network" msgstr "" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:346 msgid "Public postings from local users and the federated network" msgstr "" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:352 msgid "Multi user instance" msgstr "" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:375 msgid "Closed" msgstr "Suletud" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:376 msgid "Requires approval" msgstr "Vajab heakskiitu" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:377 msgid "Open" msgstr "Avatud" -#: src/Module/Admin/Site.php:475 src/Module/Install.php:222 -msgid "No SSL policy, links will track page SSL state" -msgstr "" - -#: src/Module/Admin/Site.php:476 src/Module/Install.php:223 -msgid "Force all links to use SSL" -msgstr "" - -#: src/Module/Admin/Site.php:477 src/Module/Install.php:224 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" - -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:381 msgid "Don't check" msgstr "Ära kontrolli" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:382 msgid "check the stable version" msgstr "kontrolli stabiilset versiooni" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:383 msgid "check the development version" msgstr "" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:387 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:388 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:389 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:499 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:400 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:402 msgid "Republish users to directory" msgstr "" -#: src/Module/Admin/Site.php:503 src/Module/Register.php:151 +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 msgid "Registration" msgstr "Registreerimine" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:404 msgid "File upload" msgstr "" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:405 msgid "Policies" msgstr "" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "Täpsem" + +#: src/Module/Admin/Site.php:407 msgid "Auto Discovered Contact Directory" msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:408 msgid "Performance" msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:409 msgid "Worker" msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:410 msgid "Message Relay" msgstr "" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:411 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:412 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:413 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:515 -msgid "Relocate Instance" +#: src/Module/Admin/Site.php:415 +msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:416 msgid "" -"Warning! Advanced function. Could make this server " -"unreachable." +"Relocating your node enables you to change the DNS domain of this node and " +"keep all the existing users and posts. This process takes a while and can " +"only be started from the relocate console command like this:" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:417 +msgid "(Friendica directory)# bin/console relocate https://newdomain.com" +msgstr "" + +#: src/Module/Admin/Site.php:420 msgid "Site name" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:421 msgid "Sender Email" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:421 msgid "" "The email address your server shall use to send notification emails from." msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:422 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:422 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:523 +#: src/Module/Admin/Site.php:423 msgid "Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:424 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:425 msgid "Shortcut icon" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:425 msgid "Link to an icon that will be used for browsers." msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:426 msgid "Touch icon" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:426 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:427 msgid "Additional Info" msgstr "Lisainfo" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:427 #, 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:528 +#: src/Module/Admin/Site.php:428 msgid "System language" msgstr "Süsteemi keel" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:429 msgid "System theme" msgstr "Süsteemi teema" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:429 +#, php-format msgid "" -"Default system theme - may be over-ridden by user profiles - Change default theme settings" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:430 msgid "Mobile system theme" msgstr "Mobiilne süsttemi teema" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:430 msgid "Theme for mobile devices" msgstr "Teema mobiilseadmetele" -#: src/Module/Admin/Site.php:531 src/Module/Install.php:232 -msgid "SSL link policy" -msgstr "" - -#: src/Module/Admin/Site.php:531 src/Module/Install.php:234 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "" - -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:431 msgid "Force SSL" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:431 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:432 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:432 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:433 msgid "Single user instance" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:433 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:435 msgid "Maximum image size" msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:435 +#, php-format msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:439 msgid "Maximum image length" msgstr "" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:439 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:538 +#: src/Module/Admin/Site.php:440 msgid "JPEG image quality" msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:440 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:540 +#: src/Module/Admin/Site.php:442 msgid "Register policy" msgstr "" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "" + +#: src/Module/Admin/Site.php:444 msgid "Maximum Daily Registrations" msgstr "" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:444 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:542 +#: src/Module/Admin/Site.php:445 msgid "Register text" msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:445 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:446 msgid "Forbidden Nicknames" msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:446 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:544 +#: src/Module/Admin/Site.php:447 msgid "Accounts abandoned after x days" msgstr "" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:447 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:448 msgid "Allowed friend domains" msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:448 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:546 +#: src/Module/Admin/Site.php:449 msgid "Allowed email domains" msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:449 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:547 +#: src/Module/Admin/Site.php:450 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:450 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:451 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:451 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:549 +#: src/Module/Admin/Site.php:452 msgid "Block public" msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:452 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:550 +#: src/Module/Admin/Site.php:453 msgid "Force publish" msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:453 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:453 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:454 msgid "Global directory URL" msgstr "" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:454 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:552 +#: src/Module/Admin/Site.php:455 msgid "Private posts by default for new users" msgstr "" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:455 msgid "" "Set default post permissions for all new members to the default privacy " -"group rather than public." +"circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:456 msgid "Don't include post content in email notifications" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:456 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:554 +#: src/Module/Admin/Site.php:457 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:457 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:458 msgid "Don't embed private images in posts" msgstr "" -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:458 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 " @@ -5855,11 +4737,11 @@ msgid "" "while." msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:459 msgid "Explicit Content" msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:459 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 " @@ -5868,247 +4750,267 @@ msgid "" "will be shown at the user registration page." msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:460 msgid "Proxify external content" msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:460 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:461 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:461 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:462 msgid "Allow Users to set remote_self" msgstr "" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:462 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:560 +#: src/Module/Admin/Site.php:463 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:463 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:561 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:561 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:465 msgid "Enable Fullname check" msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:465 msgid "" "Enable check to only allow users to register with a space between the first " "name and the last name in their full name." msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "" + +#: src/Module/Admin/Site.php:467 msgid "Community pages for visitors" msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:467 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:468 msgid "Posts per user on community page" msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:468 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "\"Global Community\")" msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:470 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:470 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:471 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:472 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:472 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:474 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:475 msgid "Enable Diaspora support" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:475 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:476 msgid "Verify SSL" msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:476 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:573 +#: src/Module/Admin/Site.php:477 msgid "Proxy user" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:477 +msgid "User name for the proxy server." +msgstr "" + +#: src/Module/Admin/Site.php:478 msgid "Proxy URL" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:478 +msgid "" +"If you want to use a proxy server that Friendica should use to connect to " +"the network, put the URL of the proxy here." +msgstr "" + +#: src/Module/Admin/Site.php:479 msgid "Network timeout" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:479 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:480 msgid "Maximum Load Average" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:480 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:481 msgid "Minimal Memory" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:481 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "" -#: src/Module/Admin/Site.php:578 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:578 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:484 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:484 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:485 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:486 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:487 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:585 +#: src/Module/Admin/Site.php:489 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:489 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:491 msgid "Days between requery" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:491 msgid "Number of days after which a server is requeried for his contacts." msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:492 msgid "Discover contacts from other servers" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:492 msgid "" "Periodically query other servers for contacts. The system queries Friendica," " Mastodon and Hubzilla servers." msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:493 msgid "Search the local directory" msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:493 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:591 +#: src/Module/Admin/Site.php:495 msgid "Publish server information" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:495 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 " @@ -6116,50 +5018,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:497 msgid "Check upstream version" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:497 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:594 +#: src/Module/Admin/Site.php:498 msgid "Suppress Tags" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:498 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:499 msgid "Clean database" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:499 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "" -#: src/Module/Admin/Site.php:596 +#: src/Module/Admin/Site.php:500 msgid "Lifespan of remote items" msgstr "" -#: src/Module/Admin/Site.php:596 +#: src/Module/Admin/Site.php:500 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:597 +#: src/Module/Admin/Site.php:501 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:501 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -6167,144 +5069,144 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:502 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:502 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:599 +#: src/Module/Admin/Site.php:503 msgid "Maximum numbers of comments per post" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:503 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:504 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:504 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:505 msgid "Temp path" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:505 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:602 +#: src/Module/Admin/Site.php:506 msgid "Only search in tags" msgstr "" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:506 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: src/Module/Admin/Site.php:604 -msgid "New base url" +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:507 msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." +"On systems with users that heavily use contact circles the query can be very" +" expensive." msgstr "" -#: src/Module/Admin/Site.php:606 +#: src/Module/Admin/Site.php:509 msgid "Maximum number of parallel workers" msgstr "" -#: src/Module/Admin/Site.php:606 +#: src/Module/Admin/Site.php:509 #, 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:607 +#: src/Module/Admin/Site.php:510 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:607 +#: src/Module/Admin/Site.php:510 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:609 +#: src/Module/Admin/Site.php:512 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:609 +#: src/Module/Admin/Site.php:512 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "" -#: src/Module/Admin/Site.php:610 +#: src/Module/Admin/Site.php:513 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:610 +#: src/Module/Admin/Site.php:513 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:610 src/Module/Contact/Profile.php:280 -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Disabled" msgstr "" -#: src/Module/Admin/Site.php:610 +#: src/Module/Admin/Site.php:513 msgid "all" msgstr "" -#: src/Module/Admin/Site.php:610 +#: src/Module/Admin/Site.php:513 msgid "tags" msgstr "" -#: src/Module/Admin/Site.php:611 +#: src/Module/Admin/Site.php:514 msgid "Server tags" msgstr "" -#: src/Module/Admin/Site.php:611 +#: src/Module/Admin/Site.php:514 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:612 +#: src/Module/Admin/Site.php:515 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:612 +#: src/Module/Admin/Site.php:515 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:613 +#: src/Module/Admin/Site.php:516 msgid "Allow user tags" msgstr "" -#: src/Module/Admin/Site.php:613 +#: src/Module/Admin/Site.php:516 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:616 +#: src/Module/Admin/Site.php:519 msgid "Start Relocation" msgstr "" @@ -6350,16 +5252,22 @@ msgstr "" msgid "This backend doesn't have custom settings" msgstr "" -#: src/Module/Admin/Storage.php:149 +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "" + +#: src/Module/Admin/Storage.php:150 msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:53 +#: src/Module/Admin/Summary.php:55 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:57 +#: src/Module/Admin/Summary.php:59 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -6370,7 +5278,7 @@ msgid "" " an automatic conversion.
    " msgstr "" -#: src/Module/Admin/Summary.php:62 +#: src/Module/Admin/Summary.php:64 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -6381,7 +5289,7 @@ msgid "" " installation for an automatic conversion.
    " msgstr "" -#: src/Module/Admin/Summary.php:72 +#: src/Module/Admin/Summary.php:74 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -6389,39 +5297,46 @@ msgid "" " to %d. See here for more information.
    " msgstr "" -#: src/Module/Admin/Summary.php:82 +#: src/Module/Admin/Summary.php:85 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "" -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:94 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "" -#: src/Module/Admin/Summary.php:95 +#: src/Module/Admin/Summary.php:98 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "" -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "" + +#: src/Module/Admin/Summary.php:107 msgid "The worker was never executed. Please check your database structure!" msgstr "" -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:109 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:114 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6430,7 +5345,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:111 +#: src/Module/Admin/Summary.php:118 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6439,7 +5354,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:117 +#: src/Module/Admin/Summary.php:124 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -6447,83 +5362,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:135 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:149 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:165 +#: src/Module/Admin/Summary.php:148 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "" -#: src/Module/Admin/Summary.php:173 +#: src/Module/Admin/Summary.php:156 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:164 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "" -#: src/Module/Admin/Summary.php:188 -msgid "Normal Account" -msgstr "Normaalne konto" - -#: src/Module/Admin/Summary.php:189 -msgid "Automatic Follower Account" -msgstr "Automaatse jälgija konto" - -#: src/Module/Admin/Summary.php:190 -msgid "Public Forum Account" -msgstr "Avaliku foorumi konto" - -#: src/Module/Admin/Summary.php:191 -msgid "Automatic Friend Account" -msgstr "Automaatse sõbra konto" - -#: src/Module/Admin/Summary.php:192 -msgid "Blog Account" -msgstr "Blogikonto" - -#: src/Module/Admin/Summary.php:193 -msgid "Private Forum Account" -msgstr "Privaatfoorumi konto" - -#: src/Module/Admin/Summary.php:213 +#: src/Module/Admin/Summary.php:175 msgid "Message queues" msgstr "" -#: src/Module/Admin/Summary.php:219 +#: src/Module/Admin/Summary.php:181 msgid "Server Settings" msgstr "Serveri sätted" -#: src/Module/Admin/Summary.php:235 -msgid "Registered users" -msgstr "Registreeritud kasutajad" - -#: src/Module/Admin/Summary.php:237 -msgid "Pending registrations" -msgstr "Ootel registreeringud" - -#: src/Module/Admin/Summary.php:238 +#: src/Module/Admin/Summary.php:199 msgid "Version" msgstr "Versioon" -#: src/Module/Admin/Summary.php:242 +#: src/Module/Admin/Summary.php:203 msgid "Active addons" msgstr "Aktiveeritud lisad" @@ -6547,11 +5419,11 @@ msgid "Screenshot" msgstr "" #: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:94 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 msgid "Themes" msgstr "Teemad" -#: src/Module/Admin/Themes/Embed.php:79 +#: src/Module/Admin/Themes/Embed.php:80 msgid "Unknown theme." msgstr "" @@ -6563,34 +5435,34 @@ msgstr "" msgid "Reload active themes" msgstr "" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:118 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:119 msgid "[Experimental]" msgstr "" -#: src/Module/Admin/Themes/Index.php:121 +#: src/Module/Admin/Themes/Index.php:120 msgid "[Unsupported]" msgstr "" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 msgid "Display Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 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 "" -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 msgid "Display Privacy Statement" msgstr "" -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -6598,220 +5470,34 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:81 msgid "Privacy Statement Preview" msgstr "" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "The Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "" -#: src/Module/Admin/Users/Active.php:45 src/Module/Admin/Users/Index.php:45 +#: src/Module/Admin/Tos.php:84 +msgid "The rules" +msgstr "" + +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." +msgstr "" + +#: src/Module/Api/ApiResponse.php:279 #, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "" -msgstr[1] "" - -#: 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 "Iseend eemaldada ei saa" - -#: 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] "" -msgstr[1] "" - -#: 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" +msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103 -#, php-format -msgid "User \"%s\" blocked" -msgstr "" - -#: 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 "Registreerimisaeg" - -#: 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 "Viimane login" - -#: 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 "" - -#: src/Module/Admin/Users/Active.php:137 -msgid "Active Accounts" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: 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 "" - -#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161 -msgid "Create a new user" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: 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] "" -msgstr[1] "" - -#: src/Module/Admin/Users/Blocked.php:96 src/Module/Admin/Users/Index.php:109 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "" - -#: src/Module/Admin/Users/Blocked.php:138 -msgid "Blocked Users" -msgstr "" - -#: src/Module/Admin/Users/Create.php:62 -msgid "New User" -msgstr "" - -#: src/Module/Admin/Users/Create.php:63 -msgid "Add User" -msgstr "Lisa kasutaja" - -#: src/Module/Admin/Users/Create.php:71 -msgid "Name of the new user." -msgstr "" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname" -msgstr "" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname of the new user." -msgstr "" - -#: src/Module/Admin/Users/Create.php:73 -msgid "Email address of the new user." -msgstr "" - -#: src/Module/Admin/Users/Deleted.php:86 -msgid "Users awaiting permanent deletion" -msgstr "" - -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:162 -msgid "Permanent deletion" -msgstr "" - -#: src/Module/Admin/Users/Index.php:150 src/Module/Admin/Users/Index.php:160 -#: src/Module/BaseAdmin.php:92 -msgid "Users" -msgstr "Kasutajad" - -#: src/Module/Admin/Users/Index.php:152 -msgid "User waiting for permanent deletion" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:48 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users/Pending.php:55 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users/Pending.php:81 -msgid "Account approved." -msgstr "Konto heaks kiidetud:" - -#: src/Module/Admin/Users/Pending.php:87 -msgid "Registration revoked" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:102 -msgid "User registrations awaiting review" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:104 -msgid "Request date" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:105 -msgid "No registrations." -msgstr "" - -#: src/Module/Admin/Users/Pending.php:106 -msgid "Note from the user" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:108 -msgid "Deny" -msgstr "" - -#: src/Module/Api/ApiResponse.php:243 -#, php-format -msgid "API endpoint %s %s is not implemented" -msgstr "" - -#: src/Module/Api/ApiResponse.php:244 -msgid "" -"The API endpoint is currently not implemented but might be in the future." -msgstr "" - -#: src/Module/Api/Mastodon/Apps.php:57 +#: src/Module/Api/Mastodon/Apps.php:73 msgid "Missing parameters" msgstr "" @@ -6819,16 +5505,11 @@ msgstr "" msgid "Only starting posts can be bookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Mute.php:50 +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 msgid "Only starting posts can be muted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Pin.php:50 -#: src/Module/Api/Mastodon/Statuses/Unpin.php:50 -msgid "Only starting posts can be pinned" -msgstr "" - -#: src/Module/Api/Mastodon/Statuses/Reblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:56 #, php-format msgid "Posts from %s can't be shared" msgstr "" @@ -6837,24 +5518,24 @@ msgstr "" msgid "Only starting posts can be unbookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:50 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 msgid "Only starting posts can be unmuted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:62 #, php-format msgid "Posts from %s can't be unshared" msgstr "" -#: src/Module/Api/Twitter/ContactEndpoint.php:68 +#: src/Module/Api/Twitter/ContactEndpoint.php:66 msgid "Contact not found" msgstr "" -#: src/Module/Apps.php:54 +#: src/Module/Apps.php:62 msgid "No installed applications." msgstr "Paigaldatud rakendusi pole." -#: src/Module/Apps.php:59 +#: src/Module/Apps.php:67 msgid "Applications" msgstr "Rakendused" @@ -6863,6 +5544,7 @@ msgid "Item was not found." msgstr "Elementi ei leitud." #: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 msgid "Please login to continue." msgstr "Jätkamiseks logi sisse" @@ -6876,139 +5558,218 @@ msgid "" " as the main account." msgstr "" -#: src/Module/BaseAdmin.php:86 +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 msgid "Overview" msgstr "Ülevaade" -#: src/Module/BaseAdmin.php:89 +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 msgid "Configuration" msgstr "Konfiguratsioon" -#: src/Module/BaseAdmin.php:95 src/Module/BaseSettings.php:63 +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 msgid "Additional features" msgstr "Lisafunktsioonid" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:97 msgid "Database" msgstr "Andmebaas" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:98 msgid "DB updates" msgstr "" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:99 msgid "Inspect Deferred Workers" msgstr "" -#: src/Module/BaseAdmin.php:101 +#: src/Module/BaseAdmin.php:100 msgid "Inspect worker Queue" msgstr "" -#: src/Module/BaseAdmin.php:103 -msgid "Tools" -msgstr "Tööriistad" - -#: src/Module/BaseAdmin.php:104 -msgid "Contact Blocklist" -msgstr "" - -#: src/Module/BaseAdmin.php:105 -msgid "Server Blocklist" -msgstr "" - -#: src/Module/BaseAdmin.php:112 +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 msgid "Diagnostics" msgstr "" -#: src/Module/BaseAdmin.php:113 +#: src/Module/BaseAdmin.php:107 msgid "PHP Info" msgstr "" -#: src/Module/BaseAdmin.php:114 +#: src/Module/BaseAdmin.php:108 msgid "probe address" msgstr "" -#: src/Module/BaseAdmin.php:115 +#: src/Module/BaseAdmin.php:109 msgid "check webfinger" msgstr "" -#: src/Module/BaseAdmin.php:117 +#: src/Module/BaseAdmin.php:110 msgid "Babel" msgstr "" -#: src/Module/BaseAdmin.php:118 src/Module/Debug/ActivityPubConversion.php:138 +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 msgid "ActivityPub Conversion" msgstr "" -#: src/Module/BaseAdmin.php:127 +#: src/Module/BaseAdmin.php:120 msgid "Addon Features" msgstr "" -#: src/Module/BaseAdmin.php:128 +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 msgid "User registrations waiting for confirmation" msgstr "" -#: src/Module/BaseApi.php:274 src/Module/BaseApi.php:290 -#: src/Module/BaseApi.php:306 +#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467 +#: src/Module/BaseApi.php:483 msgid "Too Many Requests" msgstr "" -#: src/Module/BaseProfile.php:51 src/Module/Contact.php:460 +#: src/Module/BaseApi.php:452 +#, php-format +msgid "Daily posting limit of %d post reached. The post was rejected." +msgid_plural "Daily posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseApi.php:468 +#, php-format +msgid "Weekly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Weekly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseApi.php:484 +#, php-format +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Monthly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "" + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "" + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Kasutajad" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "Tööriistad" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "Kustuta element" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 msgid "Profile Details" msgstr "Profiili detailid" -#: src/Module/BaseProfile.php:109 +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "" + +#: src/Module/BaseProfile.php:111 msgid "Only You Can See This" msgstr "Ainult Sina saad seda näha" -#: src/Module/BaseProfile.php:114 src/Module/Profile/Schedule.php:82 +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 msgid "Scheduled Posts" msgstr "Ajastatud postitused" -#: src/Module/BaseProfile.php:117 +#: src/Module/BaseProfile.php:119 msgid "Posts that are scheduled for publishing" msgstr "Avaldamiseks ajastatud postitused" -#: src/Module/BaseProfile.php:136 src/Module/BaseProfile.php:139 +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 msgid "Tips for New Members" msgstr "Näpunäiteid uutele liikmetele" -#: src/Module/BaseSearch.php:68 +#: src/Module/BaseSearch.php:71 #, php-format msgid "People Search - %s" msgstr "Inimeste otsing - %s" -#: src/Module/BaseSearch.php:78 +#: src/Module/BaseSearch.php:75 #, php-format -msgid "Forum Search - %s" -msgstr "Foorumi otsing - %s" +msgid "Group Search - %s" +msgstr "" -#: src/Module/BaseSettings.php:41 +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "Pole kattuvusi" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseSettings.php:78 msgid "Account" msgstr "Konto" -#: src/Module/BaseSettings.php:48 src/Module/Security/TwoFactor/Verify.php:95 -#: src/Module/Settings/TwoFactor/Index.php:110 +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 msgid "Two-factor authentication" msgstr "" -#: src/Module/BaseSettings.php:71 +#: src/Module/BaseSettings.php:118 msgid "Display" msgstr "Kuva" -#: src/Module/BaseSettings.php:92 src/Module/Settings/Delegation.php:171 +#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "Sotsiaalvõrgud" + +#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172 msgid "Manage Accounts" msgstr "Halda kontosid" -#: src/Module/BaseSettings.php:99 +#: src/Module/BaseSettings.php:146 msgid "Connected apps" msgstr "Ühendatud rakendused" -#: src/Module/BaseSettings.php:106 src/Module/Settings/UserExport.php:75 +#: src/Module/BaseSettings.php:153 +msgid "Remote servers" +msgstr "" + +#: src/Module/BaseSettings.php:160 src/Module/Settings/UserExport.php:98 msgid "Export personal data" msgstr "Ekspordi isiklikud andmed" -#: src/Module/BaseSettings.php:113 +#: src/Module/BaseSettings.php:167 msgid "Remove account" msgstr "Eemalda konto" @@ -7020,617 +5781,959 @@ msgstr "" msgid "The post was created" msgstr "Postitus loodi" -#: src/Module/Contact.php:88 +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "" + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "Ei õnnestunud sündmust eemaldada" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "Sündmus ei saa lõppeda enne algamist." + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "Sündmuse pealkiri ja algusaeg nõutavad." + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "Alguskuupäev ja Pealkiri nõutavad." + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "Sündmus algab:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Nõutav" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "Lõpu kuupäev/aeg pole teada või pole olulised" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "Sündmus lõpeb:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Jaga seda sündmust" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "Peamine" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "See kalendriformaat ei ole toetatud" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "Eksporditavaid andmeid ei leitud" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "kalender" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Sündmused" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "Vaade" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Loo uus sündmus" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:248 +msgid "list" +msgstr "" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "" + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "" + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "" + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "" + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "Kontakti ei leitud." + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "Mittevaliidne kontakt." + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "" + +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "" + +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "" + +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "" + +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "" + +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "" + +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "" + +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "" + +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "" + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "" + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "Liikmed" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "Lisamiseks või eemaldamiseks klõpsa kontaktil." + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "" + +#: src/Module/Contact.php:97 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "%d kontakt muudetud. " msgstr[1] "%d kontakti muudetud. " -#: src/Module/Contact.php:309 +#: src/Module/Contact.php:348 msgid "Show all contacts" msgstr "Kuva kõiki kontakte" -#: src/Module/Contact.php:317 +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "Ootel" + +#: src/Module/Contact.php:356 msgid "Only show pending contacts" msgstr "Näita ainult ootel kontakte" -#: src/Module/Contact.php:325 +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Blokeeritud" + +#: src/Module/Contact.php:364 msgid "Only show blocked contacts" msgstr "Näita ainult blokeeritud kontakte" -#: src/Module/Contact.php:330 src/Module/Contact.php:377 -#: src/Object/Post.php:309 +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:368 msgid "Ignored" msgstr "Ignoreeritud" -#: src/Module/Contact.php:333 +#: src/Module/Contact.php:372 msgid "Only show ignored contacts" msgstr "Näita ainult ignoreeritud kontakte" -#: src/Module/Contact.php:338 src/Module/Contact.php:378 +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 msgid "Archived" msgstr "Arhiveeritud" -#: src/Module/Contact.php:341 +#: src/Module/Contact.php:388 msgid "Only show archived contacts" msgstr "Näita ainult arhiveeritud kontakte" -#: src/Module/Contact.php:346 src/Module/Contact.php:376 +#: src/Module/Contact.php:393 src/Module/Contact.php:438 msgid "Hidden" msgstr "Peidetud" -#: src/Module/Contact.php:349 +#: src/Module/Contact.php:396 msgid "Only show hidden contacts" msgstr "Näita ainult peidetud kontakte" -#: src/Module/Contact.php:357 -msgid "Organize your contact groups" -msgstr "Organiseeri oma kontaktgruppe" +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "" -#: src/Module/Contact.php:389 +#: src/Module/Contact.php:459 msgid "Search your contacts" msgstr "Otsi oma kontakte" -#: src/Module/Contact.php:390 src/Module/Search/Index.php:191 +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 #, php-format msgid "Results for: %s" msgstr "Tulemused: %s " -#: src/Module/Contact.php:397 +#: src/Module/Contact.php:467 msgid "Update" msgstr "Uuenda" -#: src/Module/Contact.php:399 src/Module/Contact/Profile.php:356 -#: src/Module/Contact/Profile.php:464 +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Võta blokk maha" + +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 msgid "Unignore" msgstr "Äraignoreeri" -#: src/Module/Contact.php:401 +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "" + +#: src/Module/Contact.php:472 msgid "Batch Actions" msgstr "Multitegevused" -#: src/Module/Contact.php:436 +#: src/Module/Contact.php:515 msgid "Conversations started by this contact" msgstr "Selle kontakti alustatud vestlused" -#: src/Module/Contact.php:441 +#: src/Module/Contact.php:520 msgid "Posts and Comments" msgstr "Postitused ja Kommentaarid" -#: src/Module/Contact.php:452 +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "" + +#: src/Module/Contact.php:531 msgid "Posts containing media objects" msgstr "" -#: src/Module/Contact.php:467 +#: src/Module/Contact.php:539 msgid "View all known contacts" msgstr "" -#: src/Module/Contact.php:477 +#: src/Module/Contact.php:550 msgid "Advanced Contact Settings" msgstr "Täiendavad Kontakti sätted" -#: src/Module/Contact.php:511 +#: src/Module/Contact.php:586 msgid "Mutual Friendship" msgstr "Ühine sõprus" -#: src/Module/Contact.php:515 +#: src/Module/Contact.php:590 msgid "is a fan of yours" msgstr "" -#: src/Module/Contact.php:519 +#: src/Module/Contact.php:594 msgid "you are a fan of" msgstr "" -#: src/Module/Contact.php:537 +#: src/Module/Contact.php:612 msgid "Pending outgoing contact request" msgstr "Ootel väljuv kontaktitaotlus" -#: src/Module/Contact.php:539 +#: src/Module/Contact.php:614 msgid "Pending incoming contact request" msgstr "Ootel sisenev kontaktitaotlus" -#: src/Module/Contact.php:552 src/Module/Contact/Profile.php:341 +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 #, php-format msgid "Visit %s's profile [%s]" msgstr "Külasta %s profiili [%s] " -#: src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Advanced.php:99 msgid "Contact update failed." msgstr "Kontakti uuendamine nurjus." -#: src/Module/Contact/Advanced.php:124 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "" - -#: src/Module/Contact/Advanced.php:125 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "" - -#: src/Module/Contact/Advanced.php:145 +#: src/Module/Contact/Advanced.php:130 msgid "Return to contact editor" msgstr "" -#: src/Module/Contact/Advanced.php:150 +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Nimi" + +#: src/Module/Contact/Advanced.php:135 msgid "Account Nickname" msgstr "Konto hüüdnimi" -#: src/Module/Contact/Advanced.php:151 -msgid "@Tagname - overrides Name/Nickname" -msgstr "" - -#: src/Module/Contact/Advanced.php:152 +#: src/Module/Contact/Advanced.php:136 msgid "Account URL" msgstr "Konto URL" -#: src/Module/Contact/Advanced.php:153 -msgid "Account URL Alias" -msgstr "Konto URL-i Alias" - -#: src/Module/Contact/Advanced.php:154 -msgid "Friend Request URL" -msgstr "Sõbrataotluse URL" - -#: src/Module/Contact/Advanced.php:155 -msgid "Friend Confirm URL" -msgstr "Sõbra kinnitamise URL" - -#: src/Module/Contact/Advanced.php:156 -msgid "Notification Endpoint URL" -msgstr "" - -#: src/Module/Contact/Advanced.php:157 +#: src/Module/Contact/Advanced.php:137 msgid "Poll/Feed URL" msgstr "" -#: src/Module/Contact/Advanced.php:158 +#: src/Module/Contact/Advanced.php:138 msgid "New photo from this URL" msgstr "" -#: src/Module/Contact/Contacts.php:31 src/Module/Conversation/Network.php:168 -#: src/Module/Group.php:103 -msgid "Invalid contact." -msgstr "Mittevaliidne kontakt." - -#: src/Module/Contact/Contacts.php:54 +#: src/Module/Contact/Contacts.php:89 msgid "No known contacts." msgstr "" -#: src/Module/Contact/Contacts.php:68 src/Module/Profile/Common.php:98 +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 msgid "No common contacts." msgstr "" -#: src/Module/Contact/Contacts.php:80 src/Module/Profile/Contacts.php:96 +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:84 src/Module/Profile/Contacts.php:99 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:88 src/Module/Profile/Contacts.php:102 +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:90 src/Module/Profile/Contacts.php:104 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "" -#: src/Module/Contact/Contacts.php:96 src/Module/Profile/Common.php:86 +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:98 src/Module/Profile/Common.php:88 +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "" -#: src/Module/Contact/Contacts.php:104 src/Module/Profile/Contacts.php:110 +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Poke.php:116 -msgid "Error while sending poke, please retry." +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:165 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Ligipääs keelatud." + +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Saada taotlus" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "Te juba lisasite selle kontakti." + +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." msgstr "" -#: src/Module/Contact/Poke.php:129 src/Module/Search/Acl.php:54 -msgid "You must be logged in to use this module." +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Diaspora toetus pole võimaldatud. Kontakti ei saa lisada." + +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "OStatus tugi pole võimaldatud. Kontakti ei saa lisada." + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Palun vasta järgnevale:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "Sinu ID aadress:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "Profiili URL" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Tag`id: " + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" msgstr "" -#: src/Module/Contact/Poke.php:152 -msgid "Poke/Prod" +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Lisa personaalne teade:" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" msgstr "" -#: src/Module/Contact/Poke.php:153 -msgid "poke, prod or do other things to somebody" +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "Kontakti ei saanud lisada." + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." msgstr "" -#: src/Module/Contact/Poke.php:155 -msgid "Choose what you wish to do to recipient" -msgstr "Vali, mida soovid saajaga teha" +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "" -#: src/Module/Contact/Poke.php:156 -msgid "Make this post private" -msgstr "Muuda see postitus privaatseks" +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "" -#: src/Module/Contact/Profile.php:134 +#: src/Module/Contact/Profile.php:140 msgid "Failed to update contact record." msgstr "Kontakti andmete uuendamine ebaõnnestus." -#: src/Module/Contact/Profile.php:184 +#: src/Module/Contact/Profile.php:190 msgid "Contact has been unblocked" msgstr "Kontakti blokeering tühistatud" -#: src/Module/Contact/Profile.php:188 +#: src/Module/Contact/Profile.php:194 msgid "Contact has been blocked" msgstr "Kontakt blokeeritud" -#: src/Module/Contact/Profile.php:200 +#: src/Module/Contact/Profile.php:206 msgid "Contact has been unignored" msgstr "Kontakti ei ignoreerita enam" -#: src/Module/Contact/Profile.php:204 +#: src/Module/Contact/Profile.php:210 msgid "Contact has been ignored" msgstr "Kontakti ignoreeritakse" -#: src/Module/Contact/Profile.php:236 +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:254 #, php-format msgid "You are mutual friends with %s" msgstr "Oled ühine sõber %s ga" -#: src/Module/Contact/Profile.php:237 +#: src/Module/Contact/Profile.php:255 #, php-format msgid "You are sharing with %s" msgstr "Sa jagad %s ga" -#: src/Module/Contact/Profile.php:238 +#: src/Module/Contact/Profile.php:256 #, php-format msgid "%s is sharing with you" msgstr "%s jagab sinuga" -#: src/Module/Contact/Profile.php:254 +#: src/Module/Contact/Profile.php:272 msgid "Private communications are not available for this contact." msgstr "Privaatkommunikatsioon ei ole selle kontaktiga saadaval. " -#: src/Module/Contact/Profile.php:256 +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "" + +#: src/Module/Contact/Profile.php:285 msgid "Never" msgstr "Mitte kunagi" -#: src/Module/Contact/Profile.php:259 +#: src/Module/Contact/Profile.php:288 msgid "(Update was not successful)" msgstr "(Uuendus ei õnnestunud)" -#: src/Module/Contact/Profile.php:259 +#: src/Module/Contact/Profile.php:288 msgid "(Update was successful)" msgstr "(Uuendus õnnestus)" -#: src/Module/Contact/Profile.php:261 src/Module/Contact/Profile.php:427 +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 msgid "Suggest friends" msgstr "Soovita sõpru" -#: src/Module/Contact/Profile.php:265 +#: src/Module/Contact/Profile.php:294 #, php-format msgid "Network type: %s" msgstr "Võrgutüüp: %s " -#: src/Module/Contact/Profile.php:270 +#: src/Module/Contact/Profile.php:299 msgid "Communications lost with this contact!" msgstr "Suhtlus selle kontaktiga katkes! " -#: src/Module/Contact/Profile.php:276 +#: src/Module/Contact/Profile.php:305 msgid "Fetch further information for feeds" msgstr "" -#: src/Module/Contact/Profile.php:278 +#: src/Module/Contact/Profile.php:307 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 "" -#: src/Module/Contact/Profile.php:281 +#: src/Module/Contact/Profile.php:310 msgid "Fetch information" msgstr "" -#: src/Module/Contact/Profile.php:282 +#: src/Module/Contact/Profile.php:311 msgid "Fetch keywords" msgstr "" -#: src/Module/Contact/Profile.php:283 +#: src/Module/Contact/Profile.php:312 msgid "Fetch information and keywords" msgstr "" -#: src/Module/Contact/Profile.php:293 src/Module/Contact/Profile.php:299 -#: src/Module/Contact/Profile.php:304 src/Module/Contact/Profile.php:310 +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 msgid "No mirroring" msgstr "" -#: src/Module/Contact/Profile.php:294 -msgid "Mirror as forwarded posting" -msgstr "" - -#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:305 -#: src/Module/Contact/Profile.php:311 +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 msgid "Mirror as my own posting" msgstr "" -#: src/Module/Contact/Profile.php:300 src/Module/Contact/Profile.php:306 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 msgid "Native reshare" msgstr "" -#: src/Module/Contact/Profile.php:323 +#: src/Module/Contact/Profile.php:353 msgid "Contact Information / Notes" msgstr "Kontaktinfo/Märkmed" -#: src/Module/Contact/Profile.php:324 +#: src/Module/Contact/Profile.php:354 msgid "Contact Settings" msgstr "Kontakti sätted" -#: src/Module/Contact/Profile.php:332 +#: src/Module/Contact/Profile.php:362 msgid "Contact" msgstr "Kontakt" -#: src/Module/Contact/Profile.php:336 +#: src/Module/Contact/Profile.php:366 msgid "Their personal note" msgstr "Nende personaalne märge" -#: src/Module/Contact/Profile.php:338 +#: src/Module/Contact/Profile.php:368 msgid "Edit contact notes" msgstr "Muuda kontakti märkmeid" -#: src/Module/Contact/Profile.php:342 +#: src/Module/Contact/Profile.php:372 msgid "Block/Unblock contact" msgstr "Blokeeri/Vabasta kontakt" -#: src/Module/Contact/Profile.php:343 +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 msgid "Ignore contact" msgstr "Ignoreeri kontakti" -#: src/Module/Contact/Profile.php:344 +#: src/Module/Contact/Profile.php:374 msgid "View conversations" msgstr "Kuva vestlusi" -#: src/Module/Contact/Profile.php:349 +#: src/Module/Contact/Profile.php:379 msgid "Last update:" msgstr "Viimane uuendus:" -#: src/Module/Contact/Profile.php:351 +#: src/Module/Contact/Profile.php:381 msgid "Update public posts" msgstr "Uuenda avalikke postitusi" -#: src/Module/Contact/Profile.php:353 src/Module/Contact/Profile.php:437 +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 msgid "Update now" msgstr "Uuenda nüüd" -#: src/Module/Contact/Profile.php:360 -msgid "Currently blocked" -msgstr "Hetkel blokitud" - -#: src/Module/Contact/Profile.php:361 -msgid "Currently ignored" -msgstr "Hetkel ingnoreeritud" - -#: src/Module/Contact/Profile.php:362 -msgid "Currently archived" -msgstr "Hetkel arhiveeritud" - -#: src/Module/Contact/Profile.php:363 +#: src/Module/Contact/Profile.php:385 msgid "Awaiting connection acknowledge" msgstr "" -#: src/Module/Contact/Profile.php:364 -#: src/Module/Notifications/Introductions.php:190 +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "Hetkel blokitud" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "Hetkel ingnoreeritud" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "Hetkel arhiveeritud" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "" + +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 msgid "Hide this contact from others" msgstr "Peida see kontakt teiste eest" -#: src/Module/Contact/Profile.php:364 +#: src/Module/Contact/Profile.php:394 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Vastused/meeldimised sinu avalikele postitustele võivad ikka nähtavad olla" -#: src/Module/Contact/Profile.php:365 +#: src/Module/Contact/Profile.php:395 msgid "Notification for new posts" msgstr "Teavitus uutest postitustest" -#: src/Module/Contact/Profile.php:365 +#: src/Module/Contact/Profile.php:395 msgid "Send a notification of every new post of this contact" msgstr "Saada selle kontakti igast postitusest mulle teavitus" -#: src/Module/Contact/Profile.php:367 +#: src/Module/Contact/Profile.php:397 msgid "Keyword Deny List" msgstr "" -#: src/Module/Contact/Profile.php:367 +#: src/Module/Contact/Profile.php:397 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "" -#: src/Module/Contact/Profile.php:385 -#: src/Module/Settings/TwoFactor/Index.php:132 +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "Actions" msgstr "Tegevused" -#: src/Module/Contact/Profile.php:393 +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "Staatus" + +#: src/Module/Contact/Profile.php:423 msgid "Mirror postings from this contact" msgstr "" -#: src/Module/Contact/Profile.php:395 +#: src/Module/Contact/Profile.php:425 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "" -#: src/Module/Contact/Profile.php:447 +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" +msgstr "" + +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "" + +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "" + +#: src/Module/Contact/Profile.php:502 msgid "Refetch contact data" msgstr "" -#: src/Module/Contact/Profile.php:458 +#: src/Module/Contact/Profile.php:513 msgid "Toggle Blocked status" msgstr "Vaheta Bloki staatust" -#: src/Module/Contact/Profile.php:466 +#: src/Module/Contact/Profile.php:521 msgid "Toggle Ignored status" msgstr "Vahea Ignoreeritud staatust" -#: src/Module/Contact/Profile.php:473 src/Module/Contact/Revoke.php:107 +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" +msgstr "" + +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 msgid "Revoke Follow" msgstr "" -#: src/Module/Contact/Profile.php:475 +#: src/Module/Contact/Profile.php:538 msgid "Revoke the follow from this contact" msgstr "" -#: src/Module/Contact/Revoke.php:59 +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "" + +#: src/Module/Contact/Revoke.php:63 msgid "Unknown contact." msgstr "" -#: src/Module/Contact/Revoke.php:69 src/Module/Group.php:112 -msgid "Contact is deleted." -msgstr "" - -#: src/Module/Contact/Revoke.php:73 +#: src/Module/Contact/Revoke.php:77 msgid "Contact is being deleted." msgstr "" -#: src/Module/Contact/Revoke.php:87 +#: src/Module/Contact/Revoke.php:91 msgid "Follow was successfully revoked." msgstr "" -#: src/Module/Contact/Revoke.php:89 -msgid "" -"Follow was successfully revoked, however the remote contact won't be aware " -"of this revokation." -msgstr "" - -#: src/Module/Contact/Revoke.php:91 -msgid "" -"Unable to revoke follow, please try again later or contact the " -"administrator." -msgstr "" - -#: src/Module/Contact/Revoke.php:108 +#: src/Module/Contact/Revoke.php:107 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "" -#: src/Module/Contact/Revoke.php:109 -#: src/Module/Notifications/Introductions.php:142 -#: src/Module/OAuth/Acknowledge.php:47 src/Module/Register.php:129 +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "Yes" msgstr "Jah" -#: src/Module/Conversation/Community.php:68 -msgid "Local Community" -msgstr "Kohalik kogukond" - -#: src/Module/Conversation/Community.php:71 -msgid "Posts from local users on this server" -msgstr "Selle kohaliku serveri kasutajate postitused" - -#: src/Module/Conversation/Community.php:79 -msgid "Global Community" -msgstr "Globaalne kogukond" - -#: src/Module/Conversation/Community.php:82 -msgid "Posts from users of the whole federated network" -msgstr "Terve fõderatsiooni võrgu kasutajate postitused" - -#: src/Module/Conversation/Community.php:115 -msgid "Own Contacts" +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: src/Module/Conversation/Community.php:119 -msgid "Include" +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "Sa ei jälgi seda kontakti." + +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "Mittejälgimine ei ole sinu võrgus hetkel toetatud." + +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "Ühenda lahti/Ära jälgi" + +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" msgstr "" -#: src/Module/Conversation/Community.php:120 -msgid "Hide" +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" msgstr "" -#: src/Module/Conversation/Community.php:137 src/Module/Search/Index.php:136 -#: src/Module/Search/Index.php:178 +#: src/Module/Conversation/Channel.php:121 +#: src/Module/Conversation/Community.php:125 src/Module/Search/Index.php:152 +#: src/Module/Search/Index.php:194 msgid "No results." msgstr "Pole tulemusi." -#: src/Module/Conversation/Community.php:162 +#: src/Module/Conversation/Channel.php:159 +msgid "Channel not available." +msgstr "" + +#: src/Module/Conversation/Community.php:91 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "" -#: src/Module/Conversation/Community.php:199 +#: src/Module/Conversation/Community.php:179 msgid "Community option not available." msgstr "Kogukondlik valik pole saadaval. " -#: src/Module/Conversation/Community.php:215 +#: src/Module/Conversation/Community.php:195 msgid "Not available." msgstr "Pole saadaval." -#: src/Module/Conversation/Network.php:154 -msgid "No such group" -msgstr "Sellist gruppi pole" - -#: src/Module/Conversation/Network.php:158 -#, php-format -msgid "Group: %s" -msgstr "Grupp: %s " - -#: src/Module/Conversation/Network.php:234 -msgid "Latest Activity" -msgstr "Viimased tegevused" - -#: src/Module/Conversation/Network.php:237 -msgid "Sort by latest activity" -msgstr "Sorteeri hiljutiste tegevuste järgi" - -#: src/Module/Conversation/Network.php:242 -msgid "Latest Posts" -msgstr "Viimased postitused" - -#: src/Module/Conversation/Network.php:245 -msgid "Sort by post received date" +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:250 -#: src/Module/Settings/Profile/Index.php:227 -msgid "Personal" -msgstr "Isiklik" +#: src/Module/Conversation/Network.php:222 +#, php-format +msgid "Circle: %s" +msgstr "" -#: src/Module/Conversation/Network.php:253 -msgid "Posts that mention or involve you" -msgstr "Postitused, mis mainivad või puudutavad sind" +#: src/Module/Conversation/Network.php:317 +msgid "Network feed not available." +msgstr "" -#: src/Module/Conversation/Network.php:258 src/Object/Post.php:321 -msgid "Starred" -msgstr "Tähega märgitud" +#: src/Module/Conversation/Timeline.php:158 +msgid "Own Contacts" +msgstr "" -#: src/Module/Conversation/Network.php:261 -msgid "Favourite Posts" -msgstr "Lemmikpostitused" +#: src/Module/Conversation/Timeline.php:162 +msgid "Include" +msgstr "" + +#: src/Module/Conversation/Timeline.php:163 +msgid "Hide" +msgstr "" #: src/Module/Credits.php:44 msgid "Credits" @@ -7643,23 +6746,31 @@ msgid "" "code or the translation of Friendica. Thank you all!" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:58 +#: src/Module/Debug/ActivityPubConversion.php:53 msgid "Formatted" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:70 +#: src/Module/Debug/ActivityPubConversion.php:65 msgid "Activity" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:118 +#: src/Module/Debug/ActivityPubConversion.php:117 msgid "Object data" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:125 +#: src/Module/Debug/ActivityPubConversion.php:124 msgid "Result Item" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:139 +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Debug/ActivityPubConversion.php:138 msgid "Source activity" msgstr "" @@ -7839,12 +6950,12 @@ msgstr "" msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" -#: src/Module/Debug/Feed.php:50 src/Module/Filer/SaveTag.php:46 -#: src/Module/Settings/Profile/Index.php:141 +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:177 msgid "You must be logged in to use this module" msgstr "Selle mooduli kasutamiseks tuleb sisse logida" -#: src/Module/Debug/Feed.php:75 +#: src/Module/Debug/Feed.php:77 msgid "Source URL" msgstr "Allika URL" @@ -7901,6 +7012,11 @@ msgstr "" msgid "Lookup address:" msgstr "" +#: src/Module/Delegation.php:110 +#, php-format +msgid "You are now logged in as %s" +msgstr "" + #: src/Module/Delegation.php:142 msgid "Switch between your accounts" msgstr "" @@ -7935,162 +7051,92 @@ msgstr "Tulemused:" msgid "Site Directory" msgstr "Lehe kataloog" -#: src/Module/Filer/RemoveTag.php:68 -msgid "Item was not removed" -msgstr "" - -#: src/Module/Filer/RemoveTag.php:71 +#: src/Module/Filer/RemoveTag.php:105 msgid "Item was not deleted" msgstr "" -#: src/Module/Filer/SaveTag.php:72 +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "" + +#: src/Module/Filer/SaveTag.php:73 msgid "- select -" msgstr "-vali-" -#: src/Module/FriendSuggest.php:81 +#: src/Module/FriendSuggest.php:82 msgid "Suggested contact not found." msgstr "" -#: src/Module/FriendSuggest.php:99 +#: src/Module/FriendSuggest.php:100 msgid "Friend suggestion sent." msgstr "Sõbrasoovitus saadetud." -#: src/Module/FriendSuggest.php:136 +#: src/Module/FriendSuggest.php:137 msgid "Suggest Friends" msgstr "Soovita sõpru" -#: src/Module/FriendSuggest.php:139 +#: src/Module/FriendSuggest.php:140 #, php-format msgid "Suggest a friend for %s" msgstr "Soovita kasutaja %s -le sõpra. " -#: src/Module/Friendica.php:62 +#: src/Module/Friendica.php:82 msgid "Installed addons/apps:" msgstr "" -#: src/Module/Friendica.php:67 +#: src/Module/Friendica.php:87 msgid "No installed addons/apps" msgstr "" -#: src/Module/Friendica.php:72 +#: src/Module/Friendica.php:92 #, php-format msgid "Read about the Terms of Service of this node." msgstr "" -#: src/Module/Friendica.php:79 +#: src/Module/Friendica.php:99 msgid "On this server the following remote servers are blocked." msgstr "" -#: src/Module/Friendica.php:97 +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +msgid "Reason for the block" +msgstr "" + +#: src/Module/Friendica.php:104 +msgid "Download this list in CSV format" +msgstr "" + +#: src/Module/Friendica.php:118 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "" -#: src/Module/Friendica.php:102 +#: src/Module/Friendica.php:123 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:124 msgid "Bug reports and issues: please visit" msgstr "" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:124 msgid "the bugtracker at github" msgstr "" -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:125 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "" -#: src/Module/Group.php:58 -msgid "Could not create group." -msgstr "Ei õnnestunud gruppi luua." - -#: src/Module/Group.php:69 src/Module/Group.php:215 src/Module/Group.php:239 -msgid "Group not found." -msgstr "Gruppi ei leitud." - -#: src/Module/Group.php:75 -msgid "Group name was not changed." -msgstr "" - -#: src/Module/Group.php:93 -msgid "Unknown group." -msgstr "" - -#: src/Module/Group.php:118 -msgid "Unable to add the contact to the group." -msgstr "" - -#: src/Module/Group.php:121 -msgid "Contact successfully added to group." -msgstr "" - -#: src/Module/Group.php:125 -msgid "Unable to remove the contact from the group." -msgstr "" - -#: src/Module/Group.php:128 -msgid "Contact successfully removed from group." -msgstr "" - -#: src/Module/Group.php:132 -msgid "Bad request." -msgstr "" - -#: src/Module/Group.php:171 -msgid "Save Group" -msgstr "Salvesta grupp" - -#: src/Module/Group.php:172 -msgid "Filter" -msgstr "" - -#: src/Module/Group.php:178 -msgid "Create a group of contacts/friends." -msgstr "Loo grupp kontaktidest/sõpradest." - -#: src/Module/Group.php:220 -msgid "Unable to remove group." -msgstr "Ei saa gruppi eemaldada." - -#: src/Module/Group.php:271 -msgid "Delete Group" -msgstr "Kustuta grupp" - -#: src/Module/Group.php:281 -msgid "Edit Group Name" -msgstr "Muud grupi nime" - -#: src/Module/Group.php:291 -msgid "Members" -msgstr "Liikmed" - -#: src/Module/Group.php:294 -msgid "Group is empty" -msgstr "Grupp on tühi" - -#: src/Module/Group.php:307 -msgid "Remove contact from group" -msgstr "Eemalda kontakt grupist" - -#: src/Module/Group.php:328 -msgid "Click on a contact to add or remove." -msgstr "Lisamiseks või eemaldamiseks klõpsa kontaktil." - -#: src/Module/Group.php:342 -msgid "Add contact to group" -msgstr "Lisa kontakt gruppi" - -#: src/Module/HCard.php:46 +#: src/Module/HCard.php:45 msgid "No profile" msgstr "Profiili ei ole" -#: src/Module/HTTPException/MethodNotAllowed.php:32 +#: src/Module/HTTPException/MethodNotAllowed.php:31 msgid "Method Not Allowed." msgstr "" @@ -8098,161 +7144,154 @@ msgstr "" msgid "Help:" msgstr "Abi:" -#: src/Module/Home.php:54 +#: src/Module/Home.php:63 #, php-format msgid "Welcome to %s" msgstr "" -#: src/Module/Install.php:195 +#: src/Module/Install.php:189 msgid "Friendica Communications Server - Setup" msgstr "" -#: src/Module/Install.php:206 +#: src/Module/Install.php:200 msgid "System check" msgstr "" -#: src/Module/Install.php:208 src/Module/Install.php:265 -#: src/Module/Install.php:348 +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 msgid "Requirement not satisfied" msgstr "" -#: src/Module/Install.php:209 +#: src/Module/Install.php:203 msgid "Optional requirement not satisfied" msgstr "" -#: src/Module/Install.php:210 +#: src/Module/Install.php:204 msgid "OK" msgstr "" -#: src/Module/Install.php:215 +#: src/Module/Install.php:208 +msgid "Next" +msgstr "Järgmine" + +#: src/Module/Install.php:209 msgid "Check again" msgstr "" -#: src/Module/Install.php:230 +#: src/Module/Install.php:222 msgid "Base settings" msgstr "Baassätted" -#: src/Module/Install.php:237 -msgid "Host name" -msgstr "" - -#: src/Module/Install.php:239 -msgid "" -"Overwrite this field in case the determinated hostname isn't right, " -"otherweise leave it as is." -msgstr "" - -#: src/Module/Install.php:242 +#: src/Module/Install.php:224 msgid "Base path to installation" msgstr "" -#: src/Module/Install.php:244 +#: src/Module/Install.php:226 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "" -#: src/Module/Install.php:247 -msgid "Sub path of the URL" +#: src/Module/Install.php:229 +msgid "The Friendica system URL" msgstr "" -#: src/Module/Install.php:249 +#: src/Module/Install.php:231 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." +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." msgstr "" -#: src/Module/Install.php:260 +#: src/Module/Install.php:242 msgid "Database connection" msgstr "" -#: src/Module/Install.php:261 +#: src/Module/Install.php:243 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "" -#: src/Module/Install.php:262 +#: src/Module/Install.php:244 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "" -#: src/Module/Install.php:263 +#: src/Module/Install.php:245 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "" -#: src/Module/Install.php:272 +#: src/Module/Install.php:252 msgid "Database Server Name" msgstr "" -#: src/Module/Install.php:277 +#: src/Module/Install.php:257 msgid "Database Login Name" msgstr "" -#: src/Module/Install.php:283 +#: src/Module/Install.php:263 msgid "Database Login Password" msgstr "" -#: src/Module/Install.php:285 +#: src/Module/Install.php:265 msgid "For security reasons the password must not be empty" msgstr "" -#: src/Module/Install.php:288 +#: src/Module/Install.php:268 msgid "Database Name" msgstr "" -#: src/Module/Install.php:292 src/Module/Install.php:322 +#: src/Module/Install.php:272 src/Module/Install.php:300 msgid "Please select a default timezone for your website" msgstr "" -#: src/Module/Install.php:307 +#: src/Module/Install.php:287 msgid "Site settings" msgstr "" -#: src/Module/Install.php:317 +#: src/Module/Install.php:295 msgid "Site administrator email address" msgstr "" -#: src/Module/Install.php:319 +#: src/Module/Install.php:297 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "" -#: src/Module/Install.php:326 +#: src/Module/Install.php:304 msgid "System Language:" msgstr "" -#: src/Module/Install.php:328 +#: src/Module/Install.php:306 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "" -#: src/Module/Install.php:340 +#: src/Module/Install.php:318 msgid "Your Friendica site database has been installed." msgstr "" -#: src/Module/Install.php:350 +#: src/Module/Install.php:328 msgid "Installation finished" msgstr "" -#: src/Module/Install.php:370 +#: src/Module/Install.php:348 msgid "

    What next

    " msgstr "" -#: src/Module/Install.php:371 +#: src/Module/Install.php:349 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "" -#: src/Module/Install.php:374 +#: src/Module/Install.php:352 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -8260,40 +7299,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "" -#: src/Module/Invite.php:56 +#: src/Module/Invite.php:57 msgid "Total invitation limit exceeded." msgstr "Totaalne kutsungite limiit ületatud." -#: src/Module/Invite.php:81 +#: src/Module/Invite.php:82 #, php-format msgid "%s : Not a valid email address." msgstr "%s : Mittevaliidne meiliaadress." -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:108 msgid "Please join us on Friendica" msgstr "Palun ühine meiega Friendicas" -#: src/Module/Invite.php:116 +#: src/Module/Invite.php:117 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Kutsumiste limiit ületatud. Palun kontakteeru oma lehe adminniga." -#: src/Module/Invite.php:120 +#: src/Module/Invite.php:121 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Sõnumi saatmine nurjus." -#: src/Module/Invite.php:124 +#: src/Module/Invite.php:125 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d sõnum saadetud." msgstr[1] "%d sõnumid saadetud." -#: src/Module/Invite.php:142 +#: src/Module/Invite.php:143 msgid "You have no more invitations available" msgstr "Sul ei ole rohkem kutseid" -#: src/Module/Invite.php:149 +#: src/Module/Invite.php:150 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -8301,14 +7340,14 @@ msgid "" " other social networks." msgstr "Külasta %s avalike saitide nimistut kus saad liituda. Friendica liikmed teistel saitidel saavad kõik üksteisega ühenduda ja samuti saavad seda ka paljude teiste sotsiaalvõrkude liikmed. " -#: src/Module/Invite.php:151 +#: src/Module/Invite.php:152 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Et seda kutset vastu võtta külasta palun saiti %s ja registreeri või siis registreeri ükskõik millisel Friendica avalikul veebilehel. " -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:153 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -8317,88 +7356,98 @@ msgid "" "sites you can join." msgstr "Kõik Friendica saidid on omavahel ühenduses ja moodustavad tohutu turvatäiustatud sotsiaalvõrgustiku, mida omavad ja kontrollivad selle liikmed. Nad saavad samuti ühenduda paljude teiste sotsiaalvõrkudga. Vaata nimekirja alternatiivsetest saitidest, kus saad liituda. \n%s " -#: src/Module/Invite.php:156 +#: src/Module/Invite.php:157 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Meie vabandused. See süsteem ei ole hetkel seadistatud ühenduseks teiste avalike saitidega või liikmete vastuvõtuks. " -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:160 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "Kõik Friendica saidid on omavahel ühenduses ja moodustavad tohutu \nturvatäiustatud sotsiaalvõrgustiku, mida omavad ja kontrollivad selle \nliikmed. Nad saavad samuti ühenduda paljude teiste sotsiaalvõrkudga." -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:159 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Et seda kutset vastu võtta, külasta palun %s ja registreeri. " -#: src/Module/Invite.php:166 +#: src/Module/Invite.php:167 msgid "Send invitations" msgstr "Saada kutseid" -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:168 msgid "Enter email addresses, one per line:" msgstr "Lisa e-posti aadresse, üks iga rea kohta:" -#: src/Module/Invite.php:171 +#: src/Module/Invite.php:172 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Oled kutsutud ühinema minu ei teiste sõpradega Freindicas - et saaksime koos luua parema sotsiaalvõrgustiku. " -#: src/Module/Invite.php:173 +#: src/Module/Invite.php:174 msgid "You will need to supply this invitation code: $invite_code" msgstr "Peate sisestama selle kutse koodi: $invite_code " -#: src/Module/Invite.php:173 +#: src/Module/Invite.php:174 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Kui olete registreerunud, kontakteeruge minuga mu profiili lehel: " -#: src/Module/Invite.php:175 +#: src/Module/Invite.php:176 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "Rohkema info jaoks Friendica projekti kohta, külastage palun http://friendi.ca " -#: src/Module/Item/Compose.php:50 +#: src/Module/Item/Compose.php:85 msgid "Please enter a post body." msgstr "" -#: src/Module/Item/Compose.php:63 +#: src/Module/Item/Compose.php:98 msgid "This feature is only available with the frio theme." msgstr "" -#: src/Module/Item/Compose.php:90 +#: src/Module/Item/Compose.php:122 msgid "Compose new personal note" msgstr "" -#: src/Module/Item/Compose.php:99 +#: src/Module/Item/Compose.php:131 msgid "Compose new post" msgstr "Koosta uus postitus" -#: src/Module/Item/Compose.php:141 +#: src/Module/Item/Compose.php:187 msgid "Visibility" msgstr "Nähtavus" -#: src/Module/Item/Compose.php:162 +#: src/Module/Item/Compose.php:203 msgid "Clear the location" msgstr "" -#: src/Module/Item/Compose.php:163 +#: src/Module/Item/Compose.php:204 msgid "Location services are unavailable on your device" msgstr "" -#: src/Module/Item/Compose.php:164 +#: src/Module/Item/Compose.php:205 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "" -#: src/Module/Item/Follow.php:52 +#: src/Module/Item/Compose.php:211 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "" + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "" + +#: src/Module/Item/Follow.php:51 msgid "Unable to follow this item." msgstr "" @@ -8413,101 +7462,1096 @@ msgid "" "condition should be temporary, please come back in a few minutes." msgstr "" -#: src/Module/Manifest.php:42 +#: src/Module/Manifest.php:40 msgid "A Decentralized Social Network" msgstr "" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Failid" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload" +msgstr "Lae üles" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "Faili üleslaadimine nurjus." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:68 +msgid "Unable to process image." +msgstr "Ei suuda pilti töödelda. " + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:95 +msgid "Image upload failed." +msgstr "Pildi üleslaadimine nurjus." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "Normaalse konto leht" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "Automaatne sõbraleht" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "Isiklik leht" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "Organisatsiooni leht" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "Uudiste leht" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "Blokeeritud kaugkontaktid" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "Blokeeri kaugkontakt" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "Foto" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +msgid "Blocked server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "Element kustutamiseks märgitud" + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "Kustuta see element" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "" + +#: src/Module/Moderation/Item/Delete.php:65 +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 "" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "Tüüp" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Ei leitud" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "" + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "" + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Normaalne konto" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "Automaatse jälgija konto" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Automaatse sõbra konto" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Blogikonto" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Registreeritud kasutajad" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Ootel registreeringud" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "Iseend eemaldada ei saa" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Registreerimisaeg" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "Viimane login" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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 "" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "Lisa kasutaja" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "" + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "" + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Konto heaks kiidetud:" + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "" + +#: src/Module/Notifications/Introductions.php:99 msgid "Show Ignored Requests" msgstr "Näita ignoreeritud taotlusi" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Notifications/Introductions.php:99 msgid "Hide Ignored Requests" msgstr "Peida ignoreeritud taotlused" -#: src/Module/Notifications/Introductions.php:113 -#: src/Module/Notifications/Introductions.php:176 +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 msgid "Notification type:" msgstr "Teavituse tüüp:" -#: src/Module/Notifications/Introductions.php:116 +#: src/Module/Notifications/Introductions.php:118 msgid "Suggested by:" msgstr "Soovitas:" -#: src/Module/Notifications/Introductions.php:141 +#: src/Module/Notifications/Introductions.php:143 msgid "Claims to be known to you: " msgstr "Väidab, et on sulle tuttav:" -#: src/Module/Notifications/Introductions.php:142 -#: src/Module/OAuth/Acknowledge.php:48 src/Module/Register.php:130 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "No" msgstr "" -#: src/Module/Notifications/Introductions.php:150 +#: src/Module/Notifications/Introductions.php:152 msgid "Shall your connection be bidirectional or not?" msgstr "Kas teie ühendus on kahesuunaline või mitte?" -#: src/Module/Notifications/Introductions.php:151 +#: src/Module/Notifications/Introductions.php:153 #, 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 "Aktsepteerides %s oma sõbrana võimaldab %s tellida sinu postitusi ja saad nende uuendustest oma ajajoonele teavitusi. " -#: src/Module/Notifications/Introductions.php:152 +#: src/Module/Notifications/Introductions.php:154 #, 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 "Aktsepteerides %s kui järgijat saavad nad tellida endale sinu postitusi, aga sa ei näe nende uuendusi oma ajajoonel. " -#: src/Module/Notifications/Introductions.php:154 +#: src/Module/Notifications/Introductions.php:156 msgid "Friend" msgstr "Sõber" -#: src/Module/Notifications/Introductions.php:155 +#: src/Module/Notifications/Introductions.php:157 msgid "Subscriber" msgstr "Jälgija" -#: src/Module/Notifications/Introductions.php:214 +#: src/Module/Notifications/Introductions.php:216 msgid "No introductions." msgstr "" -#: src/Module/Notifications/Introductions.php:215 -#: src/Module/Notifications/Notifications.php:134 +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 #, php-format msgid "No more %s notifications." msgstr "Ei taha enam %s teateid. " -#: src/Module/Notifications/Notification.php:107 +#: src/Module/Notifications/Notification.php:135 msgid "You must be logged in to show this page." msgstr "" -#: src/Module/Notifications/Notifications.php:65 +#: src/Module/Notifications/Notifications.php:66 msgid "Network Notifications" msgstr "Võrgu teavitused" -#: src/Module/Notifications/Notifications.php:71 +#: src/Module/Notifications/Notifications.php:72 msgid "System Notifications" msgstr "Süsteemi teavitused" -#: src/Module/Notifications/Notifications.php:77 +#: src/Module/Notifications/Notifications.php:78 msgid "Personal Notifications" msgstr "Isiklikud teavitused" -#: src/Module/Notifications/Notifications.php:83 +#: src/Module/Notifications/Notifications.php:84 msgid "Home Notifications" msgstr "Kodu teavitused" -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Notifications/Notifications.php:140 msgid "Show unread" msgstr "Näita lugemata" -#: src/Module/OAuth/Acknowledge.php:44 +#: src/Module/Notifications/Ping.php:246 +msgid "{0} requested registration" +msgstr "{0} taotleb registreerimist" + +#: src/Module/Notifications/Ping.php:255 +#, php-format +msgid "{0} and %d others requested registration" +msgstr "" + +#: src/Module/OAuth/Acknowledge.php:51 msgid "Authorize application connection" msgstr "" -#: src/Module/OAuth/Acknowledge.php:46 +#: src/Module/OAuth/Acknowledge.php:53 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" @@ -8517,7 +8561,7 @@ msgstr "" msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:65 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 msgid "Incomplete request data" msgstr "" @@ -8528,290 +8572,332 @@ msgid "" "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:89 +#: src/Module/OAuth/Token.php:83 +msgid "Invalid data or unknown client" +msgstr "" + +#: src/Module/OAuth/Token.php:108 msgid "Unsupported or missing grant type" msgstr "" -#: src/Module/PermissionTooltip.php:25 +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "Hoia see aken lahti kuni kõik tehtud. " + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "Kontakti ei esitletud. " + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "Ei saanud infot kontakti tarbeks. " + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "Ei saanud sõbrainfot kontakti tarbeks. " + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Tehtud" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "edukas" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "ebaõnnestus" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "ignoreeritud" + +#: src/Module/PermissionTooltip.php:49 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "" -#: src/Module/PermissionTooltip.php:42 +#: src/Module/PermissionTooltip.php:79 msgid "Model not found" msgstr "" -#: src/Module/PermissionTooltip.php:64 +#: src/Module/PermissionTooltip.php:94 +msgid "Unlisted" +msgstr "" + +#: src/Module/PermissionTooltip.php:112 msgid "Remote privacy information not available." msgstr "Kaugturvainfo pole kättesaadav." -#: src/Module/PermissionTooltip.php:73 +#: src/Module/PermissionTooltip.php:121 msgid "Visible to:" msgstr "Nähtav: " -#: src/Module/Photo.php:123 +#: src/Module/PermissionTooltip.php:204 +#, php-format +msgid "Collection (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:208 +#, php-format +msgid "Followers (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:227 +#, php-format +msgid "%d more" +msgstr "" + +#: src/Module/PermissionTooltip.php:231 +#, php-format +msgid "To: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:234 +#, php-format +msgid "CC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:237 +#, php-format +msgid "BCC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "" + +#: src/Module/Photo.php:130 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:136 +#: src/Module/Photo.php:155 #, php-format msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:169 +#: src/Module/Photo.php:192 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:171 +#: src/Module/Photo.php:194 #, php-format msgid "Invalid photo with id %s." msgstr "" -#: src/Module/Profile/Contacts.php:120 +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "" + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Muuda postitust" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "hüperlink" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Lisa videolink" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "videolink" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Lisa audiolink" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "audiolink" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Eemalda elemendi Silt" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Vali tag mida eemaldada: " + +#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Eemalda" + +#: src/Module/Profile/Contacts.php:159 msgid "No contacts." msgstr "Kontakte pole." -#: src/Module/Profile/Profile.php:82 +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "%s ajajoon" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "%s postitused" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "%s kommentaarid" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:59 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Pilt ületab suuruse limiidi %s " + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "Pildi üleslaadimine ei lõppenud, palun ürita uuesti" + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "Pildifail on puudu" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "Server ei aktsepteeri hetkel uue faili üleslaadimist. Palun kontakteeru adminniga. " + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "Pildifail on tühi" + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "Kuva Album" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 msgid "Profile not found." msgstr "Profiili ei leitud." -#: src/Module/Profile/Profile.php:135 +#: src/Module/Profile/Profile.php:158 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "" -#: src/Module/Profile/Profile.php:149 +#: src/Module/Profile/Profile.php:167 +msgid "Full Name:" +msgstr "Täielik nimi:" + +#: src/Module/Profile/Profile.php:172 msgid "Member since:" msgstr "Liige alates: " -#: src/Module/Profile/Profile.php:155 +#: src/Module/Profile/Profile.php:178 msgid "j F, Y" msgstr "" -#: src/Module/Profile/Profile.php:156 +#: src/Module/Profile/Profile.php:179 msgid "j F" msgstr "" -#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 msgid "Birthday:" msgstr "Sünnipäev:" -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 msgid "Age: " msgstr "Vanus:" -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "" msgstr[1] "" -#: src/Module/Profile/Profile.php:234 -msgid "Forums:" -msgstr "Foorumid:" +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "Kirjeldus:" -#: src/Module/Profile/Profile.php:246 +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "" + +#: src/Module/Profile/Profile.php:273 msgid "View profile as:" msgstr "" -#: src/Module/Profile/Profile.php:263 +#: src/Module/Profile/Profile.php:290 msgid "View as" msgstr "" -#: src/Module/Profile/Profile.php:326 src/Module/Profile/Profile.php:329 -#: src/Module/Profile/Status.php:65 src/Module/Profile/Status.php:68 -#: src/Protocol/Feed.php:953 src/Protocol/OStatus.php:1242 -#, php-format -msgid "%s's timeline" -msgstr "%s ajajoon" - -#: src/Module/Profile/Profile.php:327 src/Module/Profile/Status.php:66 -#: src/Protocol/Feed.php:957 src/Protocol/OStatus.php:1246 -#, php-format -msgid "%s's posts" -msgstr "%s postitused" - -#: src/Module/Profile/Profile.php:328 src/Module/Profile/Status.php:67 -#: src/Protocol/Feed.php:960 src/Protocol/OStatus.php:1249 -#, php-format -msgid "%s's comments" -msgstr "%s kommentaarid" - -#: src/Module/Profile/Schedule.php:84 -msgid "Scheduled" -msgstr "" - -#: src/Module/Profile/Schedule.php:85 -msgid "Content" -msgstr "" - -#: src/Module/Profile/Schedule.php:86 -msgid "Remove post" -msgstr "" - -#: src/Module/Register.php:83 -msgid "Only parent users can create additional accounts." -msgstr "" - -#: src/Module/Register.php:115 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking \"Register\"." -msgstr "" - -#: src/Module/Register.php:116 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "" - -#: src/Module/Register.php:117 -msgid "Your OpenID (optional): " -msgstr "" - -#: src/Module/Register.php:126 -msgid "Include your profile in member directory?" -msgstr "Lisame su profiili liikmete kataloogi?" - -#: src/Module/Register.php:147 -msgid "Note for the admin" -msgstr "Teade adminnile" - -#: src/Module/Register.php:147 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "Jäta teade adminnile, miks soovid selle nodega liituda" - -#: src/Module/Register.php:148 -msgid "Membership on this site is by invitation only." -msgstr "Selle saidi liikmeks saab ainult kutsetega." - -#: src/Module/Register.php:149 -msgid "Your invitation code: " -msgstr "Sinu kutse kood:" - -#: src/Module/Register.php:157 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "" - -#: src/Module/Register.php:158 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "" - -#: src/Module/Register.php:159 -msgid "Please repeat your e-mail address:" -msgstr "" - -#: src/Module/Register.php:161 -msgid "Leave empty for an auto generated password." -msgstr "" - -#: src/Module/Register.php:163 -#, php-format -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be \"nickname@%s\"." -msgstr "" - -#: src/Module/Register.php:164 -msgid "Choose a nickname: " -msgstr "" - -#: src/Module/Register.php:173 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: src/Module/Register.php:180 -msgid "Note: This node explicitly contains adult content" -msgstr "" - -#: src/Module/Register.php:182 src/Module/Settings/Delegation.php:155 -msgid "Parent Password:" -msgstr "Peaparool" - -#: src/Module/Register.php:182 src/Module/Settings/Delegation.php:155 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "Palun sisestage vanemkonto parool, et kinnitada oma päring." - -#: src/Module/Register.php:211 -msgid "Password doesn't match." -msgstr "" - -#: src/Module/Register.php:217 -msgid "Please enter your password." -msgstr "" - -#: src/Module/Register.php:259 -msgid "You have entered too much information." -msgstr "" - -#: src/Module/Register.php:282 -msgid "Please enter the identical mail address in the second field." -msgstr "" - -#: src/Module/Register.php:309 -msgid "The additional account was created." -msgstr "Lisakonto loodud" - -#: src/Module/Register.php:334 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "" - -#: src/Module/Register.php:338 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
    login: %s
    " -"password: %s

    You can change your password after login." -msgstr "" - -#: src/Module/Register.php:344 -msgid "Registration successful." -msgstr "" - -#: src/Module/Register.php:349 src/Module/Register.php:356 -msgid "Your registration can not be processed." -msgstr "" - -#: src/Module/Register.php:355 -msgid "You have to leave a request note for the admin." -msgstr "" - -#: src/Module/Register.php:401 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: src/Module/RemoteFollow.php:71 +#: src/Module/Profile/RemoteFollow.php:82 msgid "Profile unavailable." msgstr "Profiil pole saadaval." -#: src/Module/RemoteFollow.php:77 +#: src/Module/Profile/RemoteFollow.php:88 msgid "Invalid locator" msgstr "" -#: src/Module/RemoteFollow.php:84 +#: src/Module/Profile/RemoteFollow.php:95 msgid "The provided profile link doesn't seem to be valid" msgstr "" -#: src/Module/RemoteFollow.php:89 +#: src/Module/Profile/RemoteFollow.php:100 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "Kaugliitumist ei saa teostada Teie võrguga. Palun liituge otse oma süsteemis. " -#: src/Module/RemoteFollow.php:121 +#: src/Module/Profile/RemoteFollow.php:128 msgid "Friend/Connection Request" msgstr "Sõbra/Ühenduse taotlus" -#: src/Module/RemoteFollow.php:122 +#: src/Module/Profile/RemoteFollow.php:129 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -8819,89 +8905,314 @@ msgid "" " or %s directly on your system." msgstr "" -#: src/Module/RemoteFollow.php:123 +#: src/Module/Profile/RemoteFollow.php:130 #, 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 "" -#: src/Module/RemoteFollow.php:124 +#: src/Module/Profile/RemoteFollow.php:131 msgid "Your Webfinger address or profile URL:" msgstr "" -#: src/Module/Search/Index.php:53 +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "" + +#: src/Module/Profile/Schedule.php:83 +msgid "Scheduled" +msgstr "" + +#: src/Module/Profile/Schedule.php:84 +msgid "Content" +msgstr "" + +#: src/Module/Profile/Schedule.php:85 +msgid "Remove post" +msgstr "" + +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "" + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "" + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "" + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "" + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "" + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "" + +#: src/Module/Register.php:84 +msgid "Only parent users can create additional accounts." +msgstr "" + +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: src/Module/Register.php:116 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." +msgstr "" + +#: src/Module/Register.php:117 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "" + +#: src/Module/Register.php:118 +msgid "Your OpenID (optional): " +msgstr "" + +#: src/Module/Register.php:127 +msgid "Include your profile in member directory?" +msgstr "Lisame su profiili liikmete kataloogi?" + +#: src/Module/Register.php:148 +msgid "Note for the admin" +msgstr "Teade adminnile" + +#: src/Module/Register.php:148 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Jäta teade adminnile, miks soovid selle nodega liituda" + +#: src/Module/Register.php:149 +msgid "Membership on this site is by invitation only." +msgstr "Selle saidi liikmeks saab ainult kutsetega." + +#: src/Module/Register.php:150 +msgid "Your invitation code: " +msgstr "Sinu kutse kood:" + +#: src/Module/Register.php:158 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: src/Module/Register.php:159 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "" + +#: src/Module/Register.php:160 +msgid "Please repeat your e-mail address:" +msgstr "" + +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 +msgid "New Password:" +msgstr "Uus parool" + +#: src/Module/Register.php:162 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 +msgid "Confirm:" +msgstr "Kinnita:" + +#: src/Module/Register.php:164 +#, php-format +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be \"nickname@%s\"." +msgstr "" + +#: src/Module/Register.php:165 +msgid "Choose a nickname: " +msgstr "" + +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Impordi" + +#: src/Module/Register.php:174 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: src/Module/Register.php:181 +msgid "Note: This node explicitly contains adult content" +msgstr "" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "Parent Password:" +msgstr "Peaparool" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "Palun sisestage vanemkonto parool, et kinnitada oma päring." + +#: src/Module/Register.php:212 +msgid "Password doesn't match." +msgstr "" + +#: src/Module/Register.php:218 +msgid "Please enter your password." +msgstr "" + +#: src/Module/Register.php:260 +msgid "You have entered too much information." +msgstr "" + +#: src/Module/Register.php:283 +msgid "Please enter the identical mail address in the second field." +msgstr "" + +#: src/Module/Register.php:310 +msgid "The additional account was created." +msgstr "Lisakonto loodud" + +#: src/Module/Register.php:335 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "" + +#: src/Module/Register.php:342 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "" + +#: src/Module/Register.php:348 +msgid "Registration successful." +msgstr "" + +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 +msgid "Your registration can not be processed." +msgstr "" + +#: src/Module/Register.php:363 +msgid "You have to leave a request note for the admin." +msgstr "" + +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "" + +#: src/Module/Register.php:395 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: src/Module/Search/Acl.php:73 +msgid "You must be logged in to use this module." +msgstr "" + +#: src/Module/Search/Index.php:69 msgid "Only logged in users are permitted to perform a search." msgstr "Ainult sisselogitud kasutajad võivad otsingut kasutada." -#: src/Module/Search/Index.php:73 +#: src/Module/Search/Index.php:89 msgid "Only one search per minute is permitted for not logged in users." msgstr "Ainult üks otsing minuti kohta on sisselogimata kasutajatele lubatud. " -#: src/Module/Search/Index.php:189 +#: src/Module/Search/Index.php:205 #, php-format msgid "Items tagged with: %s" msgstr "Elemendid %s sildiga" -#: src/Module/Search/Saved.php:58 +#: src/Module/Search/Saved.php:59 msgid "Search term was not saved." msgstr "" -#: src/Module/Search/Saved.php:61 +#: src/Module/Search/Saved.php:62 msgid "Search term already saved." msgstr "" -#: src/Module/Search/Saved.php:67 +#: src/Module/Search/Saved.php:68 msgid "Search term was not removed." msgstr "" -#: src/Module/Security/Login.php:104 +#: src/Module/Security/Login.php:123 msgid "Create a New Account" msgstr "Loo uus konto" -#: src/Module/Security/Login.php:129 +#: src/Module/Security/Login.php:142 msgid "Your OpenID: " msgstr "" -#: src/Module/Security/Login.php:132 +#: src/Module/Security/Login.php:145 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "" -#: src/Module/Security/Login.php:134 +#: src/Module/Security/Login.php:147 msgid "Or login using OpenID: " msgstr "" -#: src/Module/Security/Login.php:148 +#: src/Module/Security/Login.php:161 msgid "Password: " msgstr "Parool:" -#: src/Module/Security/Login.php:149 +#: src/Module/Security/Login.php:162 msgid "Remember me" msgstr "Mäleta mind" -#: src/Module/Security/Login.php:158 +#: src/Module/Security/Login.php:171 msgid "Forgot your password?" msgstr "Unustasid parooli?" -#: src/Module/Security/Login.php:161 +#: src/Module/Security/Login.php:174 msgid "Website Terms of Service" msgstr "" -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:175 msgid "terms of service" msgstr "" -#: src/Module/Security/Login.php:164 +#: src/Module/Security/Login.php:177 msgid "Website Privacy Policy" msgstr "" -#: src/Module/Security/Login.php:165 +#: src/Module/Security/Login.php:178 msgid "privacy policy" msgstr "" -#: src/Module/Security/Logout.php:87 +#: src/Module/Security/Logout.php:84 +#: src/Module/Security/TwoFactor/SignOut.php:78 +#: src/Module/Security/TwoFactor/SignOut.php:86 +#: src/Module/Security/TwoFactor/SignOut.php:108 +#: src/Module/Security/TwoFactor/SignOut.php:115 msgid "Logged out." msgstr "Välja logitud." @@ -8909,669 +9220,1599 @@ msgstr "Välja logitud." msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:90 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "" -#: src/Module/Security/OpenID.php:94 +#: src/Module/Security/OpenID.php:92 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:73 +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 +msgid "Passwords do not match." +msgstr "Paroolid ei kattu." + +#: src/Module/Security/PasswordTooLong.php:64 +msgid "Password does not need changing." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 +msgid "Password unchanged." +msgstr "Parool muutmata. " + +#: src/Module/Security/PasswordTooLong.php:91 +msgid "Password Too Long" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:92 +msgid "" +"Since version 2022.09, we've realized that any password longer than 72 " +"characters is truncated during hashing. To prevent any confusion about this " +"behavior, please update your password to be fewer or equal to 72 characters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:93 +msgid "Update Password" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Current Password:" +msgstr "Kehtiv parool" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Your current password to confirm the changes" +msgstr "Sinu kehtiv parool muutuste kinnitamiseks" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces and accentuated letters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 +msgid "Password length is limited to 72 characters." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:74 #, php-format msgid "Remaining recovery codes: %d" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:77 -#: src/Module/Security/TwoFactor/Verify.php:76 -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Security/TwoFactor/Recovery.php:80 +#: src/Module/Security/TwoFactor/Verify.php:77 +#: src/Module/Settings/TwoFactor/Verify.php:95 msgid "Invalid code, please retry." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:96 +#: src/Module/Security/TwoFactor/Recovery.php:99 msgid "Two-factor recovery" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:97 +#: src/Module/Security/TwoFactor/Recovery.php:100 msgid "" "

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

    " msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:98 -#: src/Module/Security/TwoFactor/Verify.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:101 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:102 msgid "Please enter a recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:103 msgid "Submit recovery code and complete login" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Security/TwoFactor/SignOut.php:122 +msgid "Sign out of this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:123 +msgid "" +"

    If you trust this browser, you will not be asked for verification code " +"the next time you sign in.

    " +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:124 +msgid "Sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:126 +msgid "Trust and sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:96 +msgid "Couldn't save browser to Cookie." +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:141 +msgid "Trust this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:142 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:143 +msgid "Not now" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:144 +msgid "Don't trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:145 +msgid "Trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:97 msgid "" "

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

    " msgstr "" #: src/Module/Security/TwoFactor/Verify.php:100 -#: src/Module/Settings/TwoFactor/Verify.php:153 -msgid "Please enter a code from your authentication app" +#, php-format +msgid "" +"If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" #: src/Module/Security/TwoFactor/Verify.php:101 -msgid "This is my two-factor authenticator app device" +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Please enter a code from your authentication app" msgstr "" #: src/Module/Security/TwoFactor/Verify.php:102 msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Delegation.php:53 +#: src/Module/Settings/Account.php:96 +msgid "Please use a shorter name." +msgstr "" + +#: src/Module/Settings/Account.php:99 +msgid "Name too short." +msgstr "" + +#: src/Module/Settings/Account.php:108 +msgid "Wrong Password." +msgstr "" + +#: src/Module/Settings/Account.php:113 +msgid "Invalid email." +msgstr "" + +#: src/Module/Settings/Account.php:117 +msgid "Cannot change to that email." +msgstr "" + +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 +msgid "Settings were not updated." +msgstr "" + +#: src/Module/Settings/Account.php:364 +msgid "Contact CSV file upload error" +msgstr "" + +#: src/Module/Settings/Account.php:383 +msgid "Importing Contacts done" +msgstr "" + +#: src/Module/Settings/Account.php:396 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: src/Module/Settings/Account.php:413 +msgid "Unable to find your profile. Please contact your admin." +msgstr "Ei leia sinu profiili. Palun kontakteeru adminniga. " + +#: src/Module/Settings/Account.php:455 +msgid "Personal Page Subtypes" +msgstr "Isikliku lehe alltüübid" + +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" +msgstr "" + +#: src/Module/Settings/Account.php:466 +msgid "Account for a personal profile." +msgstr "Personaalse profiili konto." + +#: src/Module/Settings/Account.php:473 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "Konto organisatsioonile, mis automaatselt kiidab kontaktitaotlused heaks kui \"Jälgijad\". " + +#: src/Module/Settings/Account.php:480 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "Uudistelevitaja konto, kes automaatselt kiidab kontaktitaotlused heaks kui \"Jälgijad\". " + +#: src/Module/Settings/Account.php:487 +msgid "Account for community discussions." +msgstr "Kogukondlike arutluste konto." + +#: src/Module/Settings/Account.php:494 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "Tavalise inimese konto, mis nõuab \"Sõprade\" ja \"Jälgijate\" käsitsi heaks kiitmist. " + +#: src/Module/Settings/Account.php:501 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "Avaliku profiili konto, mis kiidab automaatselt heaks kontaktitaotlused kui \"Jälgijad\". " + +#: src/Module/Settings/Account.php:508 +msgid "Automatically approves all contact requests." +msgstr "Kiidab automaatselt kõik kontaktitaotlused heaks. " + +#: src/Module/Settings/Account.php:515 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "Kuulsuse profiili konto, mis kiidab automaatselt kontaktitaotlused heaks kui \"Sõbrad\". " + +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "" + +#: src/Module/Settings/Account.php:522 +msgid "Requires manual approval of contact requests." +msgstr "Nõuab käsitsi kontaktitaotluste heakskiitu. " + +#: src/Module/Settings/Account.php:531 +msgid "OpenID:" +msgstr "" + +#: src/Module/Settings/Account.php:531 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "" + +#: src/Module/Settings/Account.php:539 +msgid "Publish your profile in your local site directory?" +msgstr "" + +#: src/Module/Settings/Account.php:539 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "" + +#: src/Module/Settings/Account.php:545 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "" + +#: src/Module/Settings/Account.php:558 +msgid "Account Settings" +msgstr "Konto sätted" + +#: src/Module/Settings/Account.php:559 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "Sinu ID Aadress on '%s' või '%s'. " + +#: src/Module/Settings/Account.php:566 +msgid "Password Settings" +msgstr "Parooli sätted" + +#: src/Module/Settings/Account.php:568 +msgid "Leave password fields blank unless changing" +msgstr "Jäta väljad tühjaks kui sa ei muuda" + +#: src/Module/Settings/Account.php:570 +msgid "Password:" +msgstr "Parool:" + +#: src/Module/Settings/Account.php:570 +msgid "Your current password to confirm the changes of the email address" +msgstr "" + +#: src/Module/Settings/Account.php:573 +msgid "Delete OpenID URL" +msgstr "" + +#: src/Module/Settings/Account.php:575 +msgid "Basic Settings" +msgstr "Peamised sätted" + +#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "" + +#: src/Module/Settings/Account.php:577 +msgid "Email Address:" +msgstr "E-posti aadress:" + +#: src/Module/Settings/Account.php:578 +msgid "Your Timezone:" +msgstr "Sinu ajatsoon:" + +#: src/Module/Settings/Account.php:579 +msgid "Your Language:" +msgstr "Sinu keel:" + +#: src/Module/Settings/Account.php:579 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Vali keel friendica kuvamiseks ja sulle e-posti saatmiseks. " + +#: src/Module/Settings/Account.php:580 +msgid "Default Post Location:" +msgstr "Postitamise baasasukoht:" + +#: src/Module/Settings/Account.php:581 +msgid "Use Browser Location:" +msgstr "Kasuta sirviku asukohta:" + +#: src/Module/Settings/Account.php:583 +msgid "Security and Privacy Settings" +msgstr "Turva ja privaatsuse sätted" + +#: src/Module/Settings/Account.php:585 +msgid "Maximum Friend Requests/Day:" +msgstr "Maksimum sõbrakutseid/Päevas:" + +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 +msgid "(to prevent spam abuse)" +msgstr "(et rämpspost tõrjuda)" + +#: src/Module/Settings/Account.php:587 +msgid "Allow your profile to be searchable globally?" +msgstr "" + +#: src/Module/Settings/Account.php:587 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "" + +#: src/Module/Settings/Account.php:588 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "" + +#: src/Module/Settings/Account.php:588 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "" +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "Make public posts unlisted" +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "" + +#: src/Module/Settings/Account.php:591 +msgid "Make all posted pictures accessible" +msgstr "" + +#: src/Module/Settings/Account.php:591 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "" + +#: src/Module/Settings/Account.php:592 +msgid "Allow friends to post to your profile page?" +msgstr "Kas lubada sõpradel sinu profiililehele postitada?" + +#: src/Module/Settings/Account.php:592 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "Sinu kontaktid võivad postitada sinu profiili lehele. Need postitused edastatakse sinu kontaktidele" + +#: src/Module/Settings/Account.php:593 +msgid "Allow friends to tag your posts?" +msgstr "Kas lubada sõpradel sinu postitusi tag`ida?" + +#: src/Module/Settings/Account.php:593 +msgid "Your contacts can add additional tags to your posts." +msgstr "Sinu kontaktid saavad lisada täiendavaid silte su postitustele." + +#: src/Module/Settings/Account.php:594 +msgid "Permit unknown people to send you private mail?" +msgstr "Kas lubada tundmatutel inimestele sulle privaatmeili saata? " + +#: src/Module/Settings/Account.php:594 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "Friendica kasutajad saavad sulle privaatsõnumeid saada isegi siis, kui nad ei ole su kontaktide nimekirjas. " + +#: src/Module/Settings/Account.php:595 +msgid "Maximum private messages per day from unknown people:" +msgstr "Privaatsõnumite maksimum päevas tundmatutelt inimestelt:" + +#: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "" + +#: src/Module/Settings/Account.php:598 +msgid "Default Post Permissions" +msgstr "Postituste baasõigused" + +#: src/Module/Settings/Account.php:602 +msgid "Expiration settings" +msgstr "Aegumise sätted" + +#: src/Module/Settings/Account.php:603 +msgid "Automatically expire posts after this many days:" +msgstr "Märgi sõnumid automaatselt loetuks selle hulga päevade möödudes: " + +#: src/Module/Settings/Account.php:603 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Kui väli tühi, siis sõnumid ei aegu. Aegunud sõnumid kustutatakse" + +#: src/Module/Settings/Account.php:604 +msgid "Expire posts" +msgstr "" + +#: src/Module/Settings/Account.php:604 +msgid "When activated, posts and comments will be expired." +msgstr "" + +#: src/Module/Settings/Account.php:605 +msgid "Expire personal notes" +msgstr "" + +#: src/Module/Settings/Account.php:605 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "" + +#: src/Module/Settings/Account.php:606 +msgid "Expire starred posts" +msgstr "" + +#: src/Module/Settings/Account.php:606 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "" + +#: src/Module/Settings/Account.php:607 +msgid "Only expire posts by others" +msgstr "" + +#: src/Module/Settings/Account.php:607 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "" + +#: src/Module/Settings/Account.php:610 +msgid "Notification Settings" +msgstr "Teadete sätted" + +#: src/Module/Settings/Account.php:611 +msgid "Send a notification email when:" +msgstr "Saada meiliteavitus kui:" + +#: src/Module/Settings/Account.php:612 +msgid "You receive an introduction" +msgstr "Sulle saabub tutvustus" + +#: src/Module/Settings/Account.php:613 +msgid "Your introductions are confirmed" +msgstr "Sinu tutvustused on kinnitatud" + +#: src/Module/Settings/Account.php:614 +msgid "Someone writes on your profile wall" +msgstr "Keegi kirjutab sinu profiili seinale" + +#: src/Module/Settings/Account.php:615 +msgid "Someone writes a followup comment" +msgstr "Keegi kirjutab järgneva kommentaari" + +#: src/Module/Settings/Account.php:616 +msgid "You receive a private message" +msgstr "Saabub privaatsõnum" + +#: src/Module/Settings/Account.php:617 +msgid "You receive a friend suggestion" +msgstr "Saabub sõbrasoovitus" + +#: src/Module/Settings/Account.php:618 +msgid "You are tagged in a post" +msgstr "Sind on postituses tag`itud" + +#: src/Module/Settings/Account.php:620 +msgid "Create a desktop notification when:" +msgstr "" + +#: src/Module/Settings/Account.php:621 +msgid "Someone tagged you" +msgstr "" + +#: src/Module/Settings/Account.php:622 +msgid "Someone directly commented on your post" +msgstr "" + +#: src/Module/Settings/Account.php:623 +msgid "Someone liked your content" +msgstr "" + +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +msgid "Can only be enabled, when the direct comment notification is enabled." +msgstr "" + +#: src/Module/Settings/Account.php:624 +msgid "Someone shared your content" +msgstr "" + +#: src/Module/Settings/Account.php:625 +msgid "Someone commented in your thread" +msgstr "" + +#: src/Module/Settings/Account.php:626 +msgid "Someone commented in a thread where you commented" +msgstr "" + +#: src/Module/Settings/Account.php:627 +msgid "Someone commented in a thread where you interacted" +msgstr "" + +#: src/Module/Settings/Account.php:629 +msgid "Activate desktop notifications" +msgstr "Aktiveeri töölaua teavitused" + +#: src/Module/Settings/Account.php:629 +msgid "Show desktop popup on new notifications" +msgstr "Näita hüpikakent uute teadetega" + +#: src/Module/Settings/Account.php:633 +msgid "Text-only notification emails" +msgstr "Ainult tekstipõhised teavitusmeilid" + +#: src/Module/Settings/Account.php:635 +msgid "Send text only notification emails, without the html part" +msgstr "Saada ainut tekstimeile ilma html-ita" + +#: src/Module/Settings/Account.php:639 +msgid "Show detailled notifications" +msgstr "Kuva detailseid teavitusi" + +#: src/Module/Settings/Account.php:641 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "" + +#: src/Module/Settings/Account.php:645 +msgid "Show notifications of ignored contacts" +msgstr "" + +#: src/Module/Settings/Account.php:647 +msgid "" +"You don't see posts from ignored contacts. But you still see their comments." +" This setting controls if you want to still receive regular notifications " +"that are caused by ignored contacts or not." +msgstr "" + +#: src/Module/Settings/Account.php:650 +msgid "Advanced Account/Page Type Settings" +msgstr "Konto/Lehetüübi sätted edasijõudnutele" + +#: src/Module/Settings/Account.php:651 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: src/Module/Settings/Account.php:654 +msgid "Import Contacts" +msgstr "" + +#: src/Module/Settings/Account.php:655 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "" + +#: src/Module/Settings/Account.php:656 +msgid "Upload File" +msgstr "Lae fail üles" + +#: src/Module/Settings/Account.php:659 +msgid "Relocate" +msgstr "" + +#: src/Module/Settings/Account.php:660 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: src/Module/Settings/Account.php:661 +msgid "Resend relocate message to contacts" +msgstr "" + +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "Lisade sätted" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "E-posti kontoga ei õnnestu antud sätetega ühendust saada." + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "" + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "Üldised sotsiaalmeedia sätted" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "" + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "Emaili/Postkasti seadistamine" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Kui ühenduda kontaktidega meilitsi kasutades seda teenust (valikuline), siis palun täpsustage kuidas postkastiga ühenduda. " + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "Viimane õnnestunud meilikontroll: " + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "Tegevus peale inporti:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "Liiguta kausta" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "Liiguta kausta:" + +#: src/Module/Settings/Delegation.php:54 msgid "Delegation successfully granted." msgstr "" -#: src/Module/Settings/Delegation.php:55 +#: src/Module/Settings/Delegation.php:56 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:59 +#: src/Module/Settings/Delegation.php:60 msgid "Delegation successfully revoked." msgstr "" -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 +#: src/Module/Settings/Delegation.php:82 +#: src/Module/Settings/Delegation.php:104 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:95 +#: src/Module/Settings/Delegation.php:96 msgid "Delegate user not found." msgstr "" -#: src/Module/Settings/Delegation.php:143 +#: src/Module/Settings/Delegation.php:144 msgid "No parent user" msgstr "Vanemkasutajad ei ole" -#: src/Module/Settings/Delegation.php:154 -#: src/Module/Settings/Delegation.php:165 +#: src/Module/Settings/Delegation.php:155 +#: src/Module/Settings/Delegation.php:166 msgid "Parent User" msgstr "Vanemkasutaja" -#: src/Module/Settings/Delegation.php:162 +#: src/Module/Settings/Delegation.php:163 msgid "Additional Accounts" msgstr "Lisakontod" -#: src/Module/Settings/Delegation.php:163 +#: src/Module/Settings/Delegation.php:164 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:164 +#: src/Module/Settings/Delegation.php:165 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:168 +#: src/Module/Settings/Delegation.php:169 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Vanematel on täielik kontroll selle konto üle, kaasa arvatud konto sätted. Palun mõelge kaks korda enne, kui annate ligipääsu. " -#: src/Module/Settings/Delegation.php:172 +#: src/Module/Settings/Delegation.php:173 msgid "Delegates" msgstr "Delegaadid" -#: src/Module/Settings/Delegation.php:174 +#: src/Module/Settings/Delegation.php:175 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 "Delegaadid saavad manageerida kõiki selle konto/lehe aspekte v.a. konto baassätteid. Palun ärge delegeerige oma personaalset kontot mitte kellelegi, keda te täielikult ei usalda. " -#: src/Module/Settings/Delegation.php:175 +#: src/Module/Settings/Delegation.php:176 msgid "Existing Page Delegates" msgstr "Olemasolevad lehe Delegaadid" -#: src/Module/Settings/Delegation.php:177 +#: src/Module/Settings/Delegation.php:178 msgid "Potential Delegates" msgstr "Potsentsiaalsed lehe Delegaadid" -#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:181 msgid "Add" msgstr "Lisa" -#: src/Module/Settings/Delegation.php:181 +#: src/Module/Settings/Delegation.php:182 msgid "No entries." msgstr "Kirjeid pole." -#: src/Module/Settings/Display.php:107 +#: src/Module/Settings/Display.php:146 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:146 +#: src/Module/Settings/Display.php:186 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Pole toetatud)" -#: src/Module/Settings/Display.php:192 +#: src/Module/Settings/Display.php:221 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:222 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:223 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:224 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:259 msgid "Display Settings" msgstr "Kuvasätted" -#: src/Module/Settings/Display.php:194 +#: src/Module/Settings/Display.php:261 msgid "General Theme Settings" msgstr "Üldised teemasätted" -#: src/Module/Settings/Display.php:195 +#: src/Module/Settings/Display.php:262 msgid "Custom Theme Settings" msgstr "Kohandatud teema sätted" -#: src/Module/Settings/Display.php:196 +#: src/Module/Settings/Display.php:263 msgid "Content Settings" msgstr "Sisu sätted" -#: src/Module/Settings/Display.php:197 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:161 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 +#: src/Module/Settings/Display.php:264 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Teema sätted" -#: src/Module/Settings/Display.php:198 -msgid "Calendar" -msgstr "Kalender" +#: src/Module/Settings/Display.php:265 +msgid "Timelines" +msgstr "" -#: src/Module/Settings/Display.php:204 +#: src/Module/Settings/Display.php:272 msgid "Display Theme:" msgstr "Kuvatateema:" -#: src/Module/Settings/Display.php:205 +#: src/Module/Settings/Display.php:273 msgid "Mobile Theme:" msgstr "Mobiilne teema:" -#: src/Module/Settings/Display.php:208 +#: src/Module/Settings/Display.php:276 msgid "Number of items to display per page:" msgstr "Elementide arv, mida lehel kuvatakse:" -#: src/Module/Settings/Display.php:208 src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277 msgid "Maximum of 100 items" msgstr "Maksimaalselt 100 elementi" -#: src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:277 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Mobiilse seadme puhul lehel kuvatav elementide arv:" -#: src/Module/Settings/Display.php:210 +#: src/Module/Settings/Display.php:278 msgid "Update browser every xx seconds" msgstr "Värskenda sirviku sisu iga xx sekundi tagant" -#: src/Module/Settings/Display.php:210 +#: src/Module/Settings/Display.php:278 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Miinimum on 10 sekundit. Sisesta -1 väljalülitamiseks. " -#: src/Module/Settings/Display.php:211 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "" - -#: src/Module/Settings/Display.php:211 -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 "" - -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:279 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:279 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:280 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:280 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:281 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:281 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:282 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:282 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:283 msgid "Display the resharer" msgstr "Kuva taasjagaja" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:283 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:284 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:284 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:219 +#: src/Module/Settings/Display.php:285 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:285 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Timelines for the network page:" +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Select all the timelines that you want to see on your network page." +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Channel languages:" +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Select all languages that you want to see in your channels." +msgstr "" + +#: src/Module/Settings/Display.php:290 msgid "Beginning of week:" msgstr "Nädala algus:" -#: src/Module/Settings/Profile/Index.php:83 -msgid "Profile Name is required." -msgstr "Profiili Nimi nõutav." +#: src/Module/Settings/Display.php:291 +msgid "Default calendar view:" +msgstr "" -#: src/Module/Settings/Profile/Index.php:131 +#: src/Module/Settings/Display.php:300 src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:312 +#, php-format +msgid "%s: %s" +msgstr "" + +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "Lisafunktsioonid" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Ühendatud rakendused" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:167 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:172 -#: src/Module/Settings/Profile/Index.php:192 +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:173 -#: src/Module/Settings/Profile/Index.php:193 +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:183 -#: src/Module/Settings/Profile/Index.php:203 +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:184 -#: src/Module/Settings/Profile/Index.php:204 +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 msgid "(click to open/close)" msgstr "(klõpsa ava/sulge)" -#: src/Module/Settings/Profile/Index.php:190 +#: src/Module/Settings/Profile/Index.php:224 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:220 +#: src/Module/Settings/Profile/Index.php:247 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:249 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:255 msgid "Profile Actions" msgstr "Profiili tegevused" -#: src/Module/Settings/Profile/Index.php:221 +#: src/Module/Settings/Profile/Index.php:256 msgid "Edit Profile Details" msgstr "Muuda profiili detaile" -#: src/Module/Settings/Profile/Index.php:223 +#: src/Module/Settings/Profile/Index.php:258 msgid "Change Profile Photo" msgstr "Muud profiili foto" -#: src/Module/Settings/Profile/Index.php:228 +#: src/Module/Settings/Profile/Index.php:261 msgid "Profile picture" msgstr "Profiilipilt" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:262 msgid "Location" msgstr "Asukoht" -#: src/Module/Settings/Profile/Index.php:230 src/Util/Temporal.php:93 -#: src/Util/Temporal.php:95 +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 msgid "Miscellaneous" msgstr "" -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:264 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:233 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 msgid "Upload Profile Photo" msgstr "Lae üles profiilifoto" -#: src/Module/Settings/Profile/Index.php:237 -msgid "Display name:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:240 -msgid "Street Address:" -msgstr "Tänava aadress:" - -#: src/Module/Settings/Profile/Index.php:241 -msgid "Locality/City:" -msgstr "Asupaik/Linn:" - -#: src/Module/Settings/Profile/Index.php:242 -msgid "Region/State:" -msgstr "Regioon/Maakond:" - -#: src/Module/Settings/Profile/Index.php:243 -msgid "Postal/Zip Code:" -msgstr "Postiindeks:" - -#: src/Module/Settings/Profile/Index.php:244 -msgid "Country:" -msgstr "Riik:" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "XMPP (Jabber) address:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "" -"The XMPP address will be published so that people can follow you there." -msgstr "" - -#: src/Module/Settings/Profile/Index.php:247 -msgid "Matrix (Element) address:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:247 -msgid "" -"The Matrix address will be published so that people can follow you there." -msgstr "" - -#: src/Module/Settings/Profile/Index.php:248 -msgid "Homepage URL:" -msgstr "Kodulehe URL: " - -#: src/Module/Settings/Profile/Index.php:249 -msgid "Public Keywords:" -msgstr "Avalikud märksõnad:" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(kasutatakse soovitamaks potentsiaalseid sõpru ja on teistele nähtav)" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "Private Keywords:" -msgstr "Privaatsed märksõnad:" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Kasutused profiilide otsingul, ei näidata mitte kunagi teistele)" - -#: src/Module/Settings/Profile/Index.php:251 +#: src/Module/Settings/Profile/Index.php:266 #, 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.

    " +"\t\t\t\t

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

    " msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:108 -#: src/Module/Settings/Profile/Photo/Crop.php:126 -#: src/Module/Settings/Profile/Photo/Crop.php:144 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "Tänava aadress:" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "Asupaik/Linn:" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "Regioon/Maakond:" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "Postiindeks:" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "Riik:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "Kodulehe URL: " + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "Avalikud märksõnad:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(kasutatakse soovitamaks potentsiaalseid sõpru ja on teistele nähtav)" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "Privaatsed märksõnad:" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Kasutused profiilide otsingul, ei näidata mitte kunagi teistele)" + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 +#: src/Module/Settings/Profile/Photo/Index.php:101 #, php-format msgid "Image size reduction [%s] failed." msgstr "Pildi suuruse vähendamine [%s] nurjus. " -#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Crop.php:150 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:156 +#: src/Module/Settings/Profile/Photo/Crop.php:155 msgid "Unable to process image" msgstr "Ei saa pilti töödelda" -#: src/Module/Settings/Profile/Photo/Crop.php:175 +#: src/Module/Settings/Profile/Photo/Crop.php:174 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:197 +#: src/Module/Settings/Profile/Photo/Crop.php:196 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:223 -#: src/Module/Settings/Profile/Photo/Crop.php:227 +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 msgid "Crop Image" msgstr "Vähenda pilti" -#: src/Module/Settings/Profile/Photo/Crop.php:224 +#: src/Module/Settings/Profile/Photo/Crop.php:223 msgid "Please adjust the image cropping for optimum viewing." msgstr "Palun säti pildi vähendamine optimaalseks kuvamiseks." -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:225 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:45 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:132 msgid "or" msgstr "või " -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:134 msgid "skip this step" msgstr "jäta vahele" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:136 msgid "select a photo from your photo albums" msgstr "vali foto oma albumitest" -#: src/Module/Settings/TwoFactor/AppSpecific.php:64 -#: src/Module/Settings/TwoFactor/Recovery.php:62 -#: src/Module/Settings/TwoFactor/Trusted.php:46 -#: src/Module/Settings/TwoFactor/Verify.php:68 +#: src/Module/Settings/RemoveMe.php:94 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[Friendica süsteemiteade]" + +#: src/Module/Settings/RemoveMe.php:94 +msgid "User deleted their account" +msgstr "Kasutaja kustutas oma konto" + +#: src/Module/Settings/RemoveMe.php:95 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "" + +#: src/Module/Settings/RemoveMe.php:96 +#, php-format +msgid "The user id is %d" +msgstr "Kasutajatunnud on %d " + +#: src/Module/Settings/RemoveMe.php:108 +msgid "Your user account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:128 +msgid "Remove My Account" +msgstr "Eemalda Minu Konto" + +#: src/Module/Settings/RemoveMe.php:129 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "See eemaldab sinu konto täielikult. Kui kord tehtud, siis taastada ei saa. " + +#: src/Module/Settings/RemoveMe.php:131 +msgid "Please enter your password for verification:" +msgstr "Palun sisesta oma parool kontrollimiseks:" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "" + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 msgid "Please enter your password to access this page." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:82 +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:85 +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:89 +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:95 +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:105 +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 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 "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 msgid "Description" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:135 +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 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 "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:141 +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 msgid "Generate" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:67 +#: src/Module/Settings/TwoFactor/Index.php:68 msgid "Two-factor authentication successfully disabled." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:93 -msgid "Wrong Password" -msgstr "Vale parool" - -#: src/Module/Settings/TwoFactor/Index.php:113 +#: src/Module/Settings/TwoFactor/Index.php:120 msgid "" "

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

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:117 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Authenticator app" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Not Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:119 +#: src/Module/Settings/TwoFactor/Index.php:126 msgid "

    You haven't finished configuring your authenticator app.

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

    Your authenticator app is correctly configured.

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:122 +#: src/Module/Settings/TwoFactor/Index.php:129 msgid "Recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:123 +#: src/Module/Settings/TwoFactor/Index.php:130 msgid "Remaining valid codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "" "

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

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:127 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:128 +#: src/Module/Settings/TwoFactor/Index.php:135 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:130 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "" "

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

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "Current password:" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:134 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "Enable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:135 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Disable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:136 +#: src/Module/Settings/TwoFactor/Index.php:143 msgid "Show recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:137 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/Settings/TwoFactor/Index.php:145 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:139 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:78 +#: src/Module/Settings/TwoFactor/Recovery.php:80 msgid "New recovery codes successfully generated." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:104 +#: src/Module/Settings/TwoFactor/Recovery.php:106 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:106 +#: src/Module/Settings/TwoFactor/Recovery.php:108 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 " @@ -9580,64 +10821,68 @@ msgid "" "account.

    " msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:108 +#: src/Module/Settings/TwoFactor/Recovery.php:110 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:111 msgid "Generate new recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "Next: Verification" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:63 +#: src/Module/Settings/TwoFactor/Trusted.php:84 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:73 +#: src/Module/Settings/TwoFactor/Trusted.php:94 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:114 +#: src/Module/Settings/TwoFactor/Trusted.php:136 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:115 +#: src/Module/Settings/TwoFactor/Trusted.php:137 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 "" -#: src/Module/Settings/TwoFactor/Trusted.php:116 +#: src/Module/Settings/TwoFactor/Trusted.php:138 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:117 +#: src/Module/Settings/TwoFactor/Trusted.php:139 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:119 +#: src/Module/Settings/TwoFactor/Trusted.php:141 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:120 +#: src/Module/Settings/TwoFactor/Trusted.php:142 +msgid "Created At" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:143 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:122 +#: src/Module/Settings/TwoFactor/Trusted.php:145 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:90 +#: src/Module/Settings/TwoFactor/Verify.php:91 msgid "Two-factor authentication successfully activated." msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:123 +#: src/Module/Settings/TwoFactor/Verify.php:125 #, php-format msgid "" "

    Or you can submit the authentication settings manually:

    \n" @@ -9657,68 +10902,105 @@ msgid "" "" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:143 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Two-factor code verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:145 +#: src/Module/Settings/TwoFactor/Verify.php:147 msgid "" "

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

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

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

    %s

    " msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:154 +#: src/Module/Settings/TwoFactor/Verify.php:156 msgid "Verify code and enable two-factor authentication" msgstr "" -#: src/Module/Settings/UserExport.php:67 +#: src/Module/Settings/UserExport.php:90 msgid "Export account" msgstr "Ekpordi konto" -#: src/Module/Settings/UserExport.php:67 +#: src/Module/Settings/UserExport.php:90 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 "" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:91 msgid "Export all" msgstr "Ekspordi kõik" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:91 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 "" -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:92 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:92 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/HTTPException.php:51 +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:37 +msgid "" +"This node has blocked the top-level author or the author of the shared post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:38 +msgid "" +"You have ignored or blocked the top-level author or the author of the shared" +" post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:39 +msgid "" +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "" + +#: src/Module/Special/HTTPException.php:78 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:55 +#: src/Module/Special/HTTPException.php:83 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:57 src/Module/Tos.php:91 +#: src/Module/Tos.php:58 src/Module/Tos.php:107 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" @@ -9731,28 +11013,107 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:92 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 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 "" -#: src/Module/Tos.php:59 src/Module/Tos.php:93 +#: src/Module/Tos.php:60 src/Module/Tos.php:109 #, 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." +"href=\"%1$s/settings/removeme\">%1$s/settings/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 "" -#: src/Module/Tos.php:62 src/Module/Tos.php:90 +#: src/Module/Tos.php:63 src/Module/Tos.php:106 msgid "Privacy Statement" msgstr "" +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "" + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "" + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "" + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "Koli konto" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "" + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "" + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "" + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "Konto fail" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "" + #: src/Module/Welcome.php:44 msgid "Welcome to Friendica" msgstr "Tere tulemast Friendicasse" @@ -9883,15 +11244,15 @@ msgid "" msgstr "Kontaktide lehe küljepaneelil on mitmeid tööriistu uute sõprade leidmiseks. Me saame sidustada inimesi huvide, huvide ja nime järgi või saame soovitada vastavalt võrgusuhtlusele. Päris uuel lehel tulevad soovitused 24 tunni möödudes. " #: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "Grupeeri oma Kontaktid" +msgid "Add Your Contacts To Circle" +msgstr "" #: 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 "Kui oled mõned sõbrad leidnud, organiseeri nad privaatsuhtluse gruppidesse oma Kontaktide lehe külgpaanil. Siis saad iga grupiga privaatselt oma Võrgulehel suhelda. " +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "" #: src/Module/Welcome.php:80 msgid "Why Aren't My Posts Public?" @@ -9918,43 +11279,51 @@ msgid "" " features and resources." msgstr "Meie abi lehed sisaldavad detailset infot programmi võimaluste ja ressursside kohta. " -#: src/Navigation/Notifications/Factory/FormattedNotification.php:89 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +msgid "{0} wants to follow you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +msgid "{0} has started following you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 #, php-format msgid "%s liked %s's post" msgstr "%s meeldib %s postitus" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:101 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 #, php-format msgid "%s disliked %s's post" msgstr "%s ei meeldi %s postitus" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:113 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 #, php-format msgid "%s is attending %s's event" msgstr "%s osaleb %s sündmusel" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:125 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 #, php-format msgid "%s is not attending %s's event" msgstr "%s ei osale %s sündmusel" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:137 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:167 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 #, php-format msgid "%s is now friends with %s" msgstr "%s on nüüd sõber %s ga " -#: src/Navigation/Notifications/Factory/FormattedNotification.php:334 -#: src/Navigation/Notifications/Factory/FormattedNotification.php:372 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 #, php-format msgid "%s commented on %s's post" msgstr "%s kommenteeris %s postitust " -#: src/Navigation/Notifications/Factory/FormattedNotification.php:371 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 #, php-format msgid "%s created a new post" msgstr "%s tegi uue postituse" @@ -9971,311 +11340,315 @@ msgstr "Sõbra/Ühenduse taotlus" msgid "New Follower" msgstr "Uus jälgija" -#: src/Navigation/Notifications/Factory/Notification.php:74 +#: src/Navigation/Notifications/Factory/Notification.php:134 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:76 +#: src/Navigation/Notifications/Factory/Notification.php:136 #, php-format -msgid "%1$s had started following you" +msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:141 +#: src/Navigation/Notifications/Factory/Notification.php:208 #, php-format -msgid "%1$s liked your comment %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:144 -#, php-format -msgid "%1$s liked your post %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:151 -#, php-format -msgid "%1$s disliked your comment %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:154 -#, php-format -msgid "%1$s disliked your post %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:161 -#, php-format -msgid "%1$s shared your comment %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:164 -#, php-format -msgid "%1$s shared your post %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:171 -#, php-format -msgid "%1$s tagged you on %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:175 -#, php-format -msgid "%1$s replied to you on %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:179 -#, php-format -msgid "%1$s commented in your thread %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:183 -#, php-format -msgid "%1$s commented on your comment %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:189 -#, php-format -msgid "%1$s commented in their thread %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:191 -#, php-format -msgid "%1$s commented in their thread" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:193 -#, php-format -msgid "%1$s commented in the thread %2$s from %3$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:195 -#, php-format -msgid "%1$s commented in the thread from %3$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:200 -#, php-format -msgid "%1$s commented on your thread %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:205 -#, php-format -msgid "%1$s shared the post %2$s from %3$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:207 -#, php-format -msgid "%1$s shared a post from %3$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:209 -#, php-format -msgid "%1$s shared the post %2$s" +msgid "%1$s liked your comment on %2$s" msgstr "" #: src/Navigation/Notifications/Factory/Notification.php:211 #, php-format +msgid "%1$s liked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:218 +#, php-format +msgid "%1$s disliked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:221 +#, php-format +msgid "%1$s disliked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:228 +#, php-format +msgid "%1$s shared your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 +#, php-format +msgid "%1$s shared your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:235 +#: src/Navigation/Notifications/Factory/Notification.php:305 +#, php-format +msgid "%1$s shared the post %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:237 +#: src/Navigation/Notifications/Factory/Notification.php:307 +#, php-format +msgid "%1$s shared a post from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:239 +#: src/Navigation/Notifications/Factory/Notification.php:309 +#, php-format +msgid "%1$s shared the post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:311 +#, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:192 -#: src/Navigation/Notifications/Repository/Notify.php:675 +#: src/Navigation/Notifications/Factory/Notification.php:249 +#, php-format +msgid "%1$s wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:256 +#, php-format +msgid "%1$s does not want to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:263 +#, php-format +msgid "%1$s maybe wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:270 +#, php-format +msgid "%1$s tagged you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:274 +#, php-format +msgid "%1$s replied to you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:278 +#, php-format +msgid "%1$s commented in your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:282 +#, php-format +msgid "%1$s commented on your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:289 +#, php-format +msgid "%1$s commented in their thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:291 +#, php-format +msgid "%1$s commented in their thread" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:293 +#, php-format +msgid "%1$s commented in the thread %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:295 +#, php-format +msgid "%1$s commented in the thread from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:300 +#, php-format +msgid "%1$s commented on your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:256 +#: src/Navigation/Notifications/Repository/Notify.php:293 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:258 +#: src/Navigation/Notifications/Repository/Notify.php:295 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:259 +#: src/Navigation/Notifications/Repository/Notify.php:296 msgid "a private message" msgstr "privaatsõnum" -#: src/Navigation/Notifications/Repository/Notify.php:259 +#: src/Navigation/Notifications/Repository/Notify.php:296 #, php-format msgid "%1$s sent you %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:261 +#: src/Navigation/Notifications/Repository/Notify.php:298 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:292 +#: src/Navigation/Notifications/Repository/Notify.php:328 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:297 +#: src/Navigation/Notifications/Repository/Notify.php:333 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:301 +#: src/Navigation/Notifications/Repository/Notify.php:337 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:305 -#: src/Navigation/Notifications/Repository/Notify.php:710 +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:307 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s kommenteeris elementi/vestlust mida jälgid." -#: src/Navigation/Notifications/Repository/Notify.php:311 -#: src/Navigation/Notifications/Repository/Notify.php:326 -#: src/Navigation/Notifications/Repository/Notify.php:345 -#: src/Navigation/Notifications/Repository/Notify.php:725 +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:318 +#: src/Navigation/Notifications/Repository/Notify.php:354 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:320 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:321 +#: src/Navigation/Notifications/Repository/Notify.php:357 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 -#, php-format -msgid "%1$s %2$s poked you" -msgstr "" - -#: src/Navigation/Notifications/Repository/Notify.php:335 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "" - -#: src/Navigation/Notifications/Repository/Notify.php:336 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" - -#: src/Navigation/Notifications/Repository/Notify.php:353 +#: src/Navigation/Notifications/Repository/Notify.php:370 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:355 +#: src/Navigation/Notifications/Repository/Notify.php:372 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:361 -#: src/Navigation/Notifications/Repository/Notify.php:407 +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 #, php-format msgid "You may visit their profile at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:363 +#: src/Navigation/Notifications/Repository/Notify.php:380 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:387 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:372 -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:397 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:382 -#: src/Navigation/Notifications/Repository/Notify.php:383 +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:396 +#: src/Navigation/Notifications/Repository/Notify.php:413 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:398 +#: src/Navigation/Notifications/Repository/Notify.php:415 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:416 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:405 +#: src/Navigation/Notifications/Repository/Notify.php:422 msgid "Name:" msgstr "Nimi:" -#: src/Navigation/Notifications/Repository/Notify.php:406 +#: src/Navigation/Notifications/Repository/Notify.php:423 msgid "Photo:" msgstr "Foto:" -#: src/Navigation/Notifications/Repository/Notify.php:409 +#: src/Navigation/Notifications/Repository/Notify.php:426 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:417 -#: src/Navigation/Notifications/Repository/Notify.php:432 +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:419 -#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:420 -#: src/Navigation/Notifications/Repository/Notify.php:435 +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:425 +#: src/Navigation/Notifications/Repository/Notify.php:442 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Olete nüüd sõbrad ja saate vahetada staatuseuuendusi, fotosid ja emaile ilma piiranguteta. " -#: src/Navigation/Notifications/Repository/Notify.php:427 +#: src/Navigation/Notifications/Repository/Notify.php:444 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:440 +#: src/Navigation/Notifications/Repository/Notify.php:457 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -10284,33 +11657,34 @@ msgid "" "automatically." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:461 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:454 +#: src/Navigation/Notifications/Repository/Notify.php:471 msgid "registration request" msgstr "registreerimise taotlus" -#: src/Navigation/Notifications/Repository/Notify.php:456 +#: src/Navigation/Notifications/Repository/Notify.php:473 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:474 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:462 +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 #, php-format msgid "" "Full Name:\t%s\n" @@ -10318,21 +11692,50 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:468 +#: src/Navigation/Notifications/Repository/Notify.php:485 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:704 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:780 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:707 +#: src/Navigation/Notifications/Repository/Notify.php:783 #, php-format msgid "%s %s shared a new post" msgstr "" +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "" + #: src/Object/EMail/ItemCCEMail.php:42 #, php-format msgid "" @@ -10356,244 +11759,307 @@ msgstr "Palun kontakteeruge saatjaga vastates sellele postitusele, kui ei soovi msgid "%s posted an update." msgstr "%s postitas uuenduse." -#: src/Object/Post.php:149 -msgid "This entry was edited" -msgstr "See kanne on muudetud" - -#: src/Object/Post.php:177 +#: src/Object/Post.php:138 msgid "Private Message" msgstr "Pirvaatsõnum" -#: src/Object/Post.php:193 src/Object/Post.php:195 +#: src/Object/Post.php:142 +msgid "Public Message" +msgstr "" + +#: src/Object/Post.php:146 +msgid "Unlisted Message" +msgstr "" + +#: src/Object/Post.php:181 +msgid "This entry was edited" +msgstr "See kanne on muudetud" + +#: src/Object/Post.php:209 +msgid "Connector Message" +msgstr "" + +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Muuda" -#: src/Object/Post.php:215 -msgid "Pinned item" -msgstr "" - -#: src/Object/Post.php:219 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Kustuta globaalselt" -#: src/Object/Post.php:219 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Eemalda lokaalselt" -#: src/Object/Post.php:235 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:240 +#: src/Object/Post.php:273 +#, php-format +msgid "Ignore %s" +msgstr "" + +#: src/Object/Post.php:278 +#, php-format +msgid "Collapse %s" +msgstr "" + +#: src/Object/Post.php:282 +msgid "Report post" +msgstr "" + +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:274 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Ma osalen" -#: src/Object/Post.php:274 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Ma ei osale" -#: src/Object/Post.php:274 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Ma ehk osalen" -#: src/Object/Post.php:304 +#: src/Object/Post.php:363 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:305 +#: src/Object/Post.php:364 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:306 +#: src/Object/Post.php:365 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:316 +#: src/Object/Post.php:375 msgid "Add star" msgstr "" -#: src/Object/Post.php:317 +#: src/Object/Post.php:376 msgid "Remove star" msgstr "" -#: src/Object/Post.php:318 +#: src/Object/Post.php:377 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:329 +#: src/Object/Post.php:388 msgid "Pin" msgstr "" -#: src/Object/Post.php:330 +#: src/Object/Post.php:389 msgid "Unpin" msgstr "" -#: src/Object/Post.php:331 +#: src/Object/Post.php:390 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:393 msgid "Pinned" msgstr "" -#: src/Object/Post.php:339 +#: src/Object/Post.php:398 msgid "Add tag" msgstr "" -#: src/Object/Post.php:352 +#: src/Object/Post.php:411 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:352 +#: src/Object/Post.php:411 msgid "Quote Share" msgstr "Tsitaadiga jagamine" -#: src/Object/Post.php:355 +#: src/Object/Post.php:414 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:355 +#: src/Object/Post.php:414 msgid "Reshare" msgstr "Taasjaga" -#: src/Object/Post.php:356 +#: src/Object/Post.php:415 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:356 +#: src/Object/Post.php:415 msgid "Unshare" msgstr "" -#: src/Object/Post.php:401 +#: src/Object/Post.php:466 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:472 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:472 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:422 -msgid "Pushed" +#: src/Object/Post.php:494 +msgid "Share via ..." msgstr "" -#: src/Object/Post.php:422 -msgid "Pulled" +#: src/Object/Post.php:494 +msgid "Share via external services" msgstr "" -#: src/Object/Post.php:456 +#: src/Object/Post.php:523 msgid "to" msgstr "" -#: src/Object/Post.php:457 +#: src/Object/Post.php:524 msgid "via" msgstr "" -#: src/Object/Post.php:458 +#: src/Object/Post.php:525 msgid "Wall-to-Wall" msgstr "Seinalt Seinale" -#: src/Object/Post.php:459 +#: src/Object/Post.php:526 msgid "via Wall-To-Wall:" msgstr "läbi Seinalt Seinale:" -#: src/Object/Post.php:497 +#: src/Object/Post.php:573 #, php-format msgid "Reply to %s" msgstr "Vasta %s le" -#: src/Object/Post.php:500 +#: src/Object/Post.php:576 msgid "More" msgstr "Rohkem" -#: src/Object/Post.php:518 +#: src/Object/Post.php:595 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:519 +#: src/Object/Post.php:596 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:597 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:521 +#: src/Object/Post.php:598 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:522 +#: src/Object/Post.php:599 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:542 +#: src/Object/Post.php:619 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: src/Object/Post.php:543 +#: src/Object/Post.php:620 msgid "Show more" msgstr "Näita rohkem " -#: src/Object/Post.php:544 +#: src/Object/Post.php:621 msgid "Show fewer" msgstr "Näita vähem" -#: src/Protocol/Diaspora.php:3414 -msgid "Attachments:" -msgstr "Manused:" +#: src/Object/Post.php:657 +#, php-format +msgid "Reshared by: %s" +msgstr "" -#: src/Protocol/OStatus.php:1645 +#: src/Object/Post.php:662 +#, php-format +msgid "Viewed by: %s" +msgstr "" + +#: src/Object/Post.php:667 +#, php-format +msgid "Liked by: %s" +msgstr "" + +#: src/Object/Post.php:672 +#, php-format +msgid "Disliked by: %s" +msgstr "" + +#: src/Object/Post.php:677 +#, php-format +msgid "Attended by: %s" +msgstr "" + +#: src/Object/Post.php:682 +#, php-format +msgid "Maybe attended by: %s" +msgstr "" + +#: src/Object/Post.php:687 +#, php-format +msgid "Not attended by: %s" +msgstr "" + +#: src/Object/Post.php:692 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "" + +#: src/Protocol/OStatus.php:1390 #, php-format msgid "%s is now following %s." msgstr "%s jälgib nüüd %s ." -#: src/Protocol/OStatus.php:1646 +#: src/Protocol/OStatus.php:1391 msgid "following" msgstr "jälgib" -#: src/Protocol/OStatus.php:1649 +#: src/Protocol/OStatus.php:1394 #, php-format msgid "%s stopped following %s." msgstr "%slõpetas %s jälgimise" -#: src/Protocol/OStatus.php:1650 +#: src/Protocol/OStatus.php:1395 msgid "stopped following" msgstr "lõpetas jälgimise" -#: src/Render/FriendicaSmartyEngine.php:52 -msgid "The folder view/smarty3/ must be writable by webserver." +#: src/Render/FriendicaSmartyEngine.php:56 +#, php-format +msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:221 +#: src/Security/Authentication.php:227 msgid "Login failed." msgstr "" -#: src/Security/Authentication.php:262 +#: src/Security/Authentication.php:272 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:360 +#: src/Security/Authentication.php:391 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:361 +#: src/Security/Authentication.php:392 msgid "Please upload a profile photo." msgstr "Palun lae profiilifoto üles" -#: src/Util/EMailer/MailBuilder.php:259 +#: src/Util/EMailer/MailBuilder.php:260 msgid "Friendica Notification" msgstr "" @@ -10616,264 +12082,271 @@ msgstr "" msgid "thanks" msgstr "" -#: src/Util/Temporal.php:167 +#: src/Util/Temporal.php:172 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:275 +#: src/Util/Temporal.php:280 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:318 +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 msgid "never" msgstr "" -#: src/Util/Temporal.php:325 +#: src/Util/Temporal.php:343 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:352 msgid "year" msgstr "" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:352 msgid "years" msgstr "" -#: src/Util/Temporal.php:334 +#: src/Util/Temporal.php:353 msgid "months" msgstr "" -#: src/Util/Temporal.php:335 +#: src/Util/Temporal.php:354 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:336 +#: src/Util/Temporal.php:355 msgid "days" msgstr "" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:356 msgid "hour" msgstr "" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:356 msgid "hours" msgstr "" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:357 msgid "minute" msgstr "" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:357 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:358 msgid "second" msgstr "" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:358 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:349 +#: src/Util/Temporal.php:367 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:370 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/Delivery.php:525 -msgid "(no subject)" -msgstr "" - -#: src/Worker/PushSubscription.php:103 +#: src/Worker/PushSubscription.php:110 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:104 +#: src/Worker/PushSubscription.php:111 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:52 +#: view/theme/duepuntozero/config.php:68 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:53 +#: view/theme/duepuntozero/config.php:69 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:54 +#: view/theme/duepuntozero/config.php:70 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:55 +#: view/theme/duepuntozero/config.php:71 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:56 +#: view/theme/duepuntozero/config.php:72 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:57 +#: view/theme/duepuntozero/config.php:73 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:58 +#: view/theme/duepuntozero/config.php:74 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:87 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:142 +#: view/theme/frio/config.php:153 msgid "Light (Accented)" msgstr "" -#: view/theme/frio/config.php:143 +#: view/theme/frio/config.php:154 msgid "Dark (Accented)" msgstr "" -#: view/theme/frio/config.php:144 +#: view/theme/frio/config.php:155 msgid "Black (Accented)" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Note" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:162 +#: view/theme/frio/config.php:173 msgid "Custom" msgstr "" -#: view/theme/frio/config.php:163 +#: view/theme/frio/config.php:174 msgid "Legacy" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:175 msgid "Accented" msgstr "" -#: view/theme/frio/config.php:165 +#: view/theme/frio/config.php:176 msgid "Select color scheme" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Select scheme accent" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Red" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Green" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:179 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:169 +#: view/theme/frio/config.php:180 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:170 +#: view/theme/frio/config.php:181 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:171 +#: view/theme/frio/config.php:182 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:183 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:173 +#: view/theme/frio/config.php:184 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:174 +#: view/theme/frio/config.php:185 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "" + +#: view/theme/frio/config.php:192 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:39 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:39 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:40 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:40 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:41 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:41 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:43 +#: view/theme/frio/php/Image.php:42 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:43 +#: view/theme/frio/php/Image.php:42 msgid "Repeat image to fill the screen." msgstr "" @@ -10885,78 +12358,78 @@ msgstr "" msgid "Back to top" msgstr "" -#: view/theme/frio/theme.php:207 +#: view/theme/frio/theme.php:211 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:210 +#: view/theme/frio/theme.php:214 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:74 +#: view/theme/quattro/config.php:90 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:75 +#: view/theme/quattro/config.php:91 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:76 +#: view/theme/quattro/config.php:92 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "show" msgstr "" -#: view/theme/vier/config.php:121 +#: view/theme/vier/config.php:137 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:122 +#: view/theme/vier/config.php:138 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:125 +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:124 +#: view/theme/vier/config.php:140 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:296 +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:126 +#: view/theme/vier/config.php:142 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:152 +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:211 +#: view/theme/vier/theme.php:234 msgid "Quick Start" msgstr "" diff --git a/view/lang/et/strings.php b/view/lang/et/strings.php index ac74cc590..0fa8251d6 100644 --- a/view/lang/et/strings.php +++ b/view/lang/et/strings.php @@ -5,90 +5,10 @@ function string_plural_select_et($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Access denied.'] = 'Ligipääs keelatud.'; -$a->strings['Access to this profile has been restricted.'] = 'Ligipääs sellele profiilile on piiratud. '; -$a->strings['Events'] = 'Sündmused'; -$a->strings['View'] = 'Vaade'; -$a->strings['Previous'] = 'Eelmine'; -$a->strings['Next'] = 'Järgmine'; -$a->strings['today'] = 'täna'; -$a->strings['month'] = 'kuu'; -$a->strings['week'] = 'nädal'; -$a->strings['day'] = 'päev'; -$a->strings['User not found'] = 'Kasutajat ei leitud'; -$a->strings['This calendar format is not supported'] = 'See kalendriformaat ei ole toetatud'; -$a->strings['No exportable data found'] = 'Eksporditavaid andmeid ei leitud'; -$a->strings['calendar'] = 'kalender'; -$a->strings['Public access denied.'] = 'Avalik ligipääs keelatud.'; -$a->strings['Permission denied.'] = 'Õigus puudub.'; -$a->strings['Item not found'] = 'Ei leitud'; -$a->strings['Edit post'] = 'Muuda postitust'; -$a->strings['Save'] = 'Salvesta'; -$a->strings['Upload photo'] = 'Lae foto üles'; -$a->strings['upload photo'] = 'lae foto üles'; -$a->strings['Attach file'] = 'Manusta fail'; -$a->strings['attach file'] = 'manusta fail'; -$a->strings['Insert web link'] = 'Lisa hüperlink'; -$a->strings['web link'] = 'hüperlink'; -$a->strings['Insert video link'] = 'Lisa videolink'; -$a->strings['video link'] = 'videolink'; -$a->strings['Insert audio link'] = 'Lisa audiolink'; -$a->strings['audio link'] = 'audiolink'; -$a->strings['Set your location'] = 'Vali oma asukoht'; -$a->strings['set location'] = 'vali asukoht'; -$a->strings['Clear browser location'] = 'Kustuta sirviku asukoht'; -$a->strings['clear location'] = 'kustuta asukoht'; -$a->strings['Please wait'] = 'Palun oota'; -$a->strings['Permission settings'] = 'Õiguste sätted'; -$a->strings['CC: email addresses'] = 'CC: emaili addressid'; -$a->strings['Public post'] = 'Avalik postitus'; -$a->strings['Set title'] = 'Pane pealkiri'; -$a->strings['Categories (comma-separated list)'] = 'Kategooriad (komaga-eraldatud nimistu)'; -$a->strings['Preview'] = 'Eelvaade'; -$a->strings['Cancel'] = 'Katkesta'; -$a->strings['Bold'] = 'Rasvane'; -$a->strings['Underline'] = 'Allajoonitud'; -$a->strings['Quote'] = 'Tsitaat'; -$a->strings['Code'] = 'Kood'; -$a->strings['Link or Media'] = 'Link või meediafail'; -$a->strings['Message'] = 'Sõnum'; -$a->strings['Browser'] = 'Sirvik'; -$a->strings['Permissions'] = 'Õigused'; -$a->strings['Event can not end before it has started.'] = 'Sündmus ei saa lõppeda enne algamist.'; -$a->strings['Event title and start time are required.'] = 'Sündmuse pealkiri ja algusaeg nõutavad.'; -$a->strings['Create New Event'] = 'Loo uus sündmus'; -$a->strings['Event details'] = 'Sündmuse detailid'; -$a->strings['Starting date and Title are required.'] = 'Alguskuupäev ja Pealkiri nõutavad.'; -$a->strings['Event Starts:'] = 'Sündmus algab:'; -$a->strings['Required'] = 'Nõutav'; -$a->strings['Finish date/time is not known or not relevant'] = 'Lõpu kuupäev/aeg pole teada või pole olulised'; -$a->strings['Event Finishes:'] = 'Sündmus lõpeb:'; -$a->strings['Description:'] = 'Kirjeldus:'; -$a->strings['Location:'] = 'Asukoht:'; -$a->strings['Title:'] = 'Pealkiri:'; -$a->strings['Share this event'] = 'Jaga seda sündmust'; -$a->strings['Submit'] = 'Saada'; -$a->strings['Basic'] = 'Peamine'; -$a->strings['Advanced'] = 'Täpsem'; -$a->strings['Failed to remove event'] = 'Ei õnnestunud sündmust eemaldada'; -$a->strings['Photos'] = 'Fotod'; -$a->strings['Upload'] = 'Lae üles'; -$a->strings['Files'] = 'Failid'; -$a->strings['Submit Request'] = 'Saada taotlus'; -$a->strings['You already added this contact.'] = 'Te juba lisasite selle kontakti.'; -$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Diaspora toetus pole võimaldatud. Kontakti ei saa lisada.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus tugi pole võimaldatud. Kontakti ei saa lisada.'; -$a->strings['Connect/Follow'] = 'Ühendu/Järgi'; -$a->strings['Please answer the following:'] = 'Palun vasta järgnevale:'; -$a->strings['Your Identity Address:'] = 'Sinu ID aadress:'; -$a->strings['Profile URL'] = 'Profiili URL'; -$a->strings['Tags:'] = 'Tag`id: '; -$a->strings['Add a personal note:'] = 'Lisa personaalne teade:'; -$a->strings['Status Messages and Posts'] = 'Staatussõnumid ja Postitused'; -$a->strings['The contact could not be added.'] = 'Kontakti ei saanud lisada.'; $a->strings['Unable to locate original post.'] = 'Ei leia algset postitust.'; $a->strings['Empty post discarded.'] = 'Tühi postitus eiratud.'; $a->strings['Item not found.'] = 'Elementi ei leitud'; +$a->strings['Permission denied.'] = 'Õigus puudub.'; $a->strings['No valid account found.'] = 'Valiidset kontot ei leitud.'; $a->strings['Password reset request issued. Check your email.'] = 'Paroolimuutmise taotlus teostusel. Kontrolli oma e-posti. '; $a->strings['Forgot your Password?'] = 'Unustasid oma parooli?'; @@ -101,7 +21,6 @@ $a->strings['Your new password is'] = 'Sinu uus parool on'; $a->strings['Save or copy your new password - and then'] = 'Salvesta või kopeeri oma uus parool - ja siis'; $a->strings['click here to login'] = 'vajuta siia sisselogimiseks'; $a->strings['Your password may be changed from the Settings page after successful login.'] = 'Su parool on muudetav Seaded lehel peale edukat sisselogimist.'; -$a->strings['No matches'] = 'Pole kattuvusi'; $a->strings['New Message'] = 'Uus sõnum'; $a->strings['No recipient selected.'] = 'Ühtegi saajat pole valitud.'; $a->strings['Unable to locate contact information.'] = 'Ei leia kontakti infot.'; @@ -114,6 +33,10 @@ $a->strings['Please enter a link URL:'] = 'Palun sisesta lingi URL: '; $a->strings['Send Private Message'] = 'Saada privaatsõnum'; $a->strings['Subject:'] = 'Teema:'; $a->strings['Your message:'] = 'Sinu sõnum:'; +$a->strings['Upload photo'] = 'Lae foto üles'; +$a->strings['Insert web link'] = 'Lisa hüperlink'; +$a->strings['Please wait'] = 'Palun oota'; +$a->strings['Submit'] = 'Saada'; $a->strings['No messages.'] = 'Sõnumeid pole.'; $a->strings['Message not available.'] = 'Sõnum pole saadaval. '; $a->strings['Delete message'] = 'Kustuta sõnum'; @@ -128,14 +51,7 @@ $a->strings['%d message'] = [ 1 => '%d sõnumid', ]; $a->strings['Personal Notes'] = 'Isiklikud märkmed'; -$a->strings['No contact provided.'] = 'Kontakti ei esitletud. '; -$a->strings['Couldn\'t fetch information for contact.'] = 'Ei saanud infot kontakti tarbeks. '; -$a->strings['Couldn\'t fetch friends for contact.'] = 'Ei saanud sõbrainfot kontakti tarbeks. '; -$a->strings['Done'] = 'Tehtud'; -$a->strings['success'] = 'edukas'; -$a->strings['failed'] = 'ebaõnnestus'; -$a->strings['ignored'] = 'ignoreeritud'; -$a->strings['Keep this window open until done.'] = 'Hoia see aken lahti kuni kõik tehtud. '; +$a->strings['Save'] = 'Salvesta'; $a->strings['Photo Albums'] = 'Foto albumid'; $a->strings['Recent Photos'] = 'Hiljutised fotod'; $a->strings['Upload New Photos'] = 'Lae üles uusi fotosid'; @@ -144,21 +60,16 @@ $a->strings['Contact information unavailable'] = 'Kontakti infot pole saadaval'; $a->strings['Album not found.'] = 'Albumit ei leitud'; $a->strings['a photo'] = 'see foto'; $a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s täägiti kohas %2$s %3$s poolt'; -$a->strings['Image exceeds size limit of %s'] = 'Pilt ületab suuruse limiidi %s '; -$a->strings['Image upload didn\'t complete, please try again'] = 'Pildi üleslaadimine ei lõppenud, palun ürita uuesti'; -$a->strings['Image file is missing'] = 'Pildifail on puudu'; -$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Server ei aktsepteeri hetkel uue faili üleslaadimist. Palun kontakteeru adminniga. '; -$a->strings['Image file is empty.'] = 'Pildifail on tühi'; -$a->strings['Unable to process image.'] = 'Ei suuda pilti töödelda. '; -$a->strings['Image upload failed.'] = 'Pildi üleslaadimine nurjus.'; +$a->strings['Public access denied.'] = 'Avalik ligipääs keelatud.'; $a->strings['No photos selected'] = 'Fotosid pole valitud'; -$a->strings['Access to this item is restricted.'] = 'Ligipääs sellele elemendile on takistatud.'; $a->strings['Upload Photos'] = 'Lae fotod üles'; $a->strings['New album name: '] = 'Uus albuminimi'; $a->strings['or select existing album:'] = 'või vali olemasolev album:'; $a->strings['Do not show a status post for this upload'] = 'Ära näita staatuse postitust selle üleslaadimise kohta'; +$a->strings['Permissions'] = 'Õigused'; $a->strings['Do you really want to delete this photo album and all its photos?'] = 'Kas soovid tõesti kustutada selle fotoalbumi ja kõik fotod?'; $a->strings['Delete Album'] = 'Kustuta album'; +$a->strings['Cancel'] = 'Katkesta'; $a->strings['Edit Album'] = 'Muuda Albumit'; $a->strings['Show Newest First'] = 'Uusimad esmalt'; $a->strings['Show Oldest First'] = 'Vanimad esmalt'; @@ -180,131 +91,12 @@ $a->strings['Rotate CW (right)'] = 'Pööra CW (paremale)'; $a->strings['Rotate CCW (left)'] = 'Pööra CCW (vasakule)'; $a->strings['This is you'] = 'See oled sina'; $a->strings['Comment'] = 'Kommentaar'; +$a->strings['Preview'] = 'Eelvaade'; $a->strings['Select'] = 'Vali'; $a->strings['Delete'] = 'Kustuta'; $a->strings['I like this (toggle)'] = 'Mulle meeldib see (toggle)'; $a->strings['I don\'t like this (toggle)'] = 'Mulle ei meeldi see (toggle)'; $a->strings['Map'] = 'Kaart'; -$a->strings['View Album'] = 'Kuva Album'; -$a->strings['{0} wants to be your friend'] = '{0} soovib olla sinu sõber'; -$a->strings['{0} requested registration'] = '{0} taotleb registreerimist'; -$a->strings['Contact not found.'] = 'Kontakti ei leitud.'; -$a->strings['[Friendica System Notify]'] = '[Friendica süsteemiteade]'; -$a->strings['User deleted their account'] = 'Kasutaja kustutas oma konto'; -$a->strings['The user id is %d'] = 'Kasutajatunnud on %d '; -$a->strings['Remove My Account'] = 'Eemalda Minu Konto'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'See eemaldab sinu konto täielikult. Kui kord tehtud, siis taastada ei saa. '; -$a->strings['Please enter your password for verification:'] = 'Palun sisesta oma parool kontrollimiseks:'; -$a->strings['Failed to connect with email account using the settings provided.'] = 'E-posti kontoga ei õnnestu antud sätetega ühendust saada.'; -$a->strings['Passwords do not match.'] = 'Paroolid ei kattu.'; -$a->strings['Password update failed. Please try again.'] = 'Parooli uuendus nurjus. Palun proovi uuesti.'; -$a->strings['Password changed.'] = 'Parool muudetud.'; -$a->strings['Password unchanged.'] = 'Parool muutmata. '; -$a->strings['Private forum has no privacy permissions. Using default privacy group.'] = 'Privaatfoorumil puuduvad privaatsussätted. Kasutan baasprivaatsuse grupi sätteid. '; -$a->strings['Private forum has no privacy permissions and no default privacy group.'] = 'Privaatfoorumil puuduvad privaatsussätted ja baasprivaatsusgrupp. '; -$a->strings['Connected Apps'] = 'Ühendatud rakendused'; -$a->strings['Name'] = 'Nimi'; -$a->strings['Home Page'] = 'Koduleht'; -$a->strings['Created'] = 'Loodud'; -$a->strings['Addon Settings'] = 'Lisade sätted'; -$a->strings['Additional Features'] = 'Lisafunktsioonid'; -$a->strings['Save Settings'] = 'Salvesta Sätted'; -$a->strings['enabled'] = 'aktiivne'; -$a->strings['disabled'] = 'mitteaktiivne'; -$a->strings['Social Networks'] = 'Sotsiaalvõrgud'; -$a->strings['General Social Media Settings'] = 'Üldised sotsiaalmeedia sätted'; -$a->strings['Email/Mailbox Setup'] = 'Emaili/Postkasti seadistamine'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Kui ühenduda kontaktidega meilitsi kasutades seda teenust (valikuline), siis palun täpsustage kuidas postkastiga ühenduda. '; -$a->strings['Last successful email check:'] = 'Viimane õnnestunud meilikontroll: '; -$a->strings['Action after import:'] = 'Tegevus peale inporti:'; -$a->strings['Mark as seen'] = 'Märgi loetuks'; -$a->strings['Move to folder'] = 'Liiguta kausta'; -$a->strings['Move to folder:'] = 'Liiguta kausta:'; -$a->strings['Unable to find your profile. Please contact your admin.'] = 'Ei leia sinu profiili. Palun kontakteeru adminniga. '; -$a->strings['Account Types'] = 'Kontode tüübid'; -$a->strings['Personal Page Subtypes'] = 'Isikliku lehe alltüübid'; -$a->strings['Community Forum Subtypes'] = 'Kogukonnafoorumi alltüübid'; -$a->strings['Personal Page'] = 'Isiklik leht'; -$a->strings['Account for a personal profile.'] = 'Personaalse profiili konto.'; -$a->strings['Organisation Page'] = 'Organisatsiooni leht'; -$a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'Konto organisatsioonile, mis automaatselt kiidab kontaktitaotlused heaks kui "Jälgijad". '; -$a->strings['News Page'] = 'Uudiste leht'; -$a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'Uudistelevitaja konto, kes automaatselt kiidab kontaktitaotlused heaks kui "Jälgijad". '; -$a->strings['Community Forum'] = 'Kogukonna foorum'; -$a->strings['Account for community discussions.'] = 'Kogukondlike arutluste konto.'; -$a->strings['Normal Account Page'] = 'Normaalse konto leht'; -$a->strings['Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'] = 'Tavalise inimese konto, mis nõuab "Sõprade" ja "Jälgijate" käsitsi heaks kiitmist. '; -$a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'Avaliku profiili konto, mis kiidab automaatselt heaks kontaktitaotlused kui "Jälgijad". '; -$a->strings['Public Forum'] = 'Avalik foorum'; -$a->strings['Automatically approves all contact requests.'] = 'Kiidab automaatselt kõik kontaktitaotlused heaks. '; -$a->strings['Automatic Friend Page'] = 'Automaatne sõbraleht'; -$a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'Kuulsuse profiili konto, mis kiidab automaatselt kontaktitaotlused heaks kui "Sõbrad". '; -$a->strings['Private Forum [Experimental]'] = 'Privaatne Foorum [Eksperimentaalne]'; -$a->strings['Requires manual approval of contact requests.'] = 'Nõuab käsitsi kontaktitaotluste heakskiitu. '; -$a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'Sinu ID Aadress on \'%s\' või \'%s\'. '; -$a->strings['Account Settings'] = 'Konto sätted'; -$a->strings['Password Settings'] = 'Parooli sätted'; -$a->strings['New Password:'] = 'Uus parool'; -$a->strings['Confirm:'] = 'Kinnita:'; -$a->strings['Leave password fields blank unless changing'] = 'Jäta väljad tühjaks kui sa ei muuda'; -$a->strings['Current Password:'] = 'Kehtiv parool'; -$a->strings['Your current password to confirm the changes'] = 'Sinu kehtiv parool muutuste kinnitamiseks'; -$a->strings['Password:'] = 'Parool:'; -$a->strings['Basic Settings'] = 'Peamised sätted'; -$a->strings['Full Name:'] = 'Täielik nimi:'; -$a->strings['Email Address:'] = 'E-posti aadress:'; -$a->strings['Your Timezone:'] = 'Sinu ajatsoon:'; -$a->strings['Your Language:'] = 'Sinu keel:'; -$a->strings['Set the language we use to show you friendica interface and to send you emails'] = 'Vali keel friendica kuvamiseks ja sulle e-posti saatmiseks. '; -$a->strings['Default Post Location:'] = 'Postitamise baasasukoht:'; -$a->strings['Use Browser Location:'] = 'Kasuta sirviku asukohta:'; -$a->strings['Security and Privacy Settings'] = 'Turva ja privaatsuse sätted'; -$a->strings['Maximum Friend Requests/Day:'] = 'Maksimum sõbrakutseid/Päevas:'; -$a->strings['(to prevent spam abuse)'] = '(et rämpspost tõrjuda)'; -$a->strings['Hide your profile details from anonymous viewers?'] = 'Kas peita sinu profiili andmed anonüümsete vaatajate eest?'; -$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.'] = 'Anonüümsed külastajad näevad vaid sinu profiilipilti, sinu ekraaninime ja hüüdnime, mida kasutad oma profiililehel. Sinu avalikud postitused on kättesaadavad teistel viisidel. '; -$a->strings['Allow friends to post to your profile page?'] = 'Kas lubada sõpradel sinu profiililehele postitada?'; -$a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'Sinu kontaktid võivad postitada sinu profiili lehele. Need postitused edastatakse sinu kontaktidele'; -$a->strings['Allow friends to tag your posts?'] = 'Kas lubada sõpradel sinu postitusi tag`ida?'; -$a->strings['Your contacts can add additional tags to your posts.'] = 'Sinu kontaktid saavad lisada täiendavaid silte su postitustele.'; -$a->strings['Permit unknown people to send you private mail?'] = 'Kas lubada tundmatutel inimestele sulle privaatmeili saata? '; -$a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Friendica kasutajad saavad sulle privaatsõnumeid saada isegi siis, kui nad ei ole su kontaktide nimekirjas. '; -$a->strings['Maximum private messages per day from unknown people:'] = 'Privaatsõnumite maksimum päevas tundmatutelt inimestelt:'; -$a->strings['Default Post Permissions'] = 'Postituste baasõigused'; -$a->strings['Expiration settings'] = 'Aegumise sätted'; -$a->strings['Automatically expire posts after this many days:'] = 'Märgi sõnumid automaatselt loetuks selle hulga päevade möödudes: '; -$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Kui väli tühi, siis sõnumid ei aegu. Aegunud sõnumid kustutatakse'; -$a->strings['Notification Settings'] = 'Teadete sätted'; -$a->strings['Send a notification email when:'] = 'Saada meiliteavitus kui:'; -$a->strings['You receive an introduction'] = 'Sulle saabub tutvustus'; -$a->strings['Your introductions are confirmed'] = 'Sinu tutvustused on kinnitatud'; -$a->strings['Someone writes on your profile wall'] = 'Keegi kirjutab sinu profiili seinale'; -$a->strings['Someone writes a followup comment'] = 'Keegi kirjutab järgneva kommentaari'; -$a->strings['You receive a private message'] = 'Saabub privaatsõnum'; -$a->strings['You receive a friend suggestion'] = 'Saabub sõbrasoovitus'; -$a->strings['You are tagged in a post'] = 'Sind on postituses tag`itud'; -$a->strings['You are poked/prodded/etc. in a post'] = 'Sind on postituses müksatud vms. '; -$a->strings['Activate desktop notifications'] = 'Aktiveeri töölaua teavitused'; -$a->strings['Show desktop popup on new notifications'] = 'Näita hüpikakent uute teadetega'; -$a->strings['Text-only notification emails'] = 'Ainult tekstipõhised teavitusmeilid'; -$a->strings['Send text only notification emails, without the html part'] = 'Saada ainut tekstimeile ilma html-ita'; -$a->strings['Show detailled notifications'] = 'Kuva detailseid teavitusi'; -$a->strings['Advanced Account/Page Type Settings'] = 'Konto/Lehetüübi sätted edasijõudnutele'; -$a->strings['Upload File'] = 'Lae fail üles'; -$a->strings['Friend Suggestions'] = 'Sõbrasoovitused'; -$a->strings['photo'] = 'foto'; -$a->strings['status'] = 'staatus'; -$a->strings['Remove Item Tag'] = 'Eemalda elemendi Silt'; -$a->strings['Select a tag to remove: '] = 'Vali tag mida eemaldada: '; -$a->strings['Remove'] = 'Eemalda'; -$a->strings['Import'] = 'Impordi'; -$a->strings['Move account'] = 'Koli konto'; -$a->strings['Account file'] = 'Konto fail'; -$a->strings['You aren\'t following this contact.'] = 'Sa ei jälgi seda kontakti.'; -$a->strings['Unfollowing is currently not supported by your network.'] = 'Mittejälgimine ei ole sinu võrgus hetkel toetatud.'; -$a->strings['Disconnect/Unfollow'] = 'Ühenda lahti/Ära jälgi'; -$a->strings['File upload failed.'] = 'Faili üleslaadimine nurjus.'; -$a->strings['Wall Photos'] = 'Seina fotod'; $a->strings['Delete this item?'] = 'Kustutada see element?'; $a->strings['toggle mobile'] = 'vaheta mobiilseks'; $a->strings['You must be logged in to use addons. '] = 'Lisade kasutamiseks peate sisse logima'; @@ -312,7 +104,10 @@ $a->strings['Followers'] = 'Jälgijad'; $a->strings['Mutual friends'] = 'Ühised sõbrad'; $a->strings['The contact entries have been archived'] = 'Selle kontakti kirjed arhiveeritud'; $a->strings['Done.'] = 'Tehtud.'; +$a->strings['User not found'] = 'Kasutajat ei leitud'; $a->strings['Enter new password: '] = 'Sisesta uus parool:'; +$a->strings['Password update failed. Please try again.'] = 'Parooli uuendus nurjus. Palun proovi uuesti.'; +$a->strings['Password changed.'] = 'Parool muudetud.'; $a->strings['newer'] = 'ei kunagi'; $a->strings['older'] = 'vanem'; $a->strings['Frequently'] = 'Sageli'; @@ -331,27 +126,56 @@ $a->strings['Where are you right now?'] = 'Kus sa hetkel oled?'; $a->strings['Delete item(s)?'] = 'Kustutada element(id)?'; $a->strings['New Post'] = 'Uus postitus'; $a->strings['Share'] = 'Jaga'; +$a->strings['upload photo'] = 'lae foto üles'; +$a->strings['Attach file'] = 'Manusta fail'; +$a->strings['attach file'] = 'manusta fail'; +$a->strings['Bold'] = 'Rasvane'; +$a->strings['Underline'] = 'Allajoonitud'; +$a->strings['Quote'] = 'Tsitaat'; +$a->strings['Code'] = 'Kood'; $a->strings['Image'] = 'Pilt'; +$a->strings['Link or Media'] = 'Link või meediafail'; +$a->strings['Set your location'] = 'Vali oma asukoht'; +$a->strings['set location'] = 'vali asukoht'; +$a->strings['Clear browser location'] = 'Kustuta sirviku asukoht'; +$a->strings['clear location'] = 'kustuta asukoht'; +$a->strings['Set title'] = 'Pane pealkiri'; +$a->strings['Categories (comma-separated list)'] = 'Kategooriad (komaga-eraldatud nimistu)'; $a->strings['Scheduled at'] = 'Ajastatud'; -$a->strings['Categories:'] = 'Kategooriad:'; +$a->strings['Permission settings'] = 'Õiguste sätted'; +$a->strings['Public post'] = 'Avalik postitus'; +$a->strings['Message'] = 'Sõnum'; +$a->strings['Browser'] = 'Sirvik'; $a->strings['remove'] = 'eemalda'; $a->strings['Delete Selected Items'] = 'Kustuta valitud elemendid'; $a->strings['Reshared'] = 'Taasjagatud'; +$a->strings['Categories:'] = 'Kategooriad:'; +$a->strings['Local Community'] = 'Kohalik kogukond'; +$a->strings['Posts from local users on this server'] = 'Selle kohaliku serveri kasutajate postitused'; +$a->strings['Global Community'] = 'Globaalne kogukond'; +$a->strings['Posts from users of the whole federated network'] = 'Terve fõderatsiooni võrgu kasutajate postitused'; +$a->strings['Latest Activity'] = 'Viimased tegevused'; +$a->strings['Sort by latest activity'] = 'Sorteeri hiljutiste tegevuste järgi'; +$a->strings['Latest Posts'] = 'Viimased postitused'; +$a->strings['Latest Creation'] = 'Viimati loodud'; +$a->strings['Personal'] = 'Isiklik'; +$a->strings['Posts that mention or involve you'] = 'Postitused, mis mainivad või puudutavad sind'; +$a->strings['Starred'] = 'Tähega märgitud'; +$a->strings['Favourite Posts'] = 'Lemmikpostitused'; $a->strings['General Features'] = 'Üldised funktsioonid'; $a->strings['Photo Location'] = 'Foto asukoht'; $a->strings['Post/Comment Tools'] = 'Postituse/Kommenteerimise tööriistad'; $a->strings['Post Categories'] = 'Postituse kategooriad'; $a->strings['Add categories to your posts'] = 'Lisa kategooriad on postitustele'; $a->strings['Advanced Profile Settings'] = 'Täpsemad profiili sätted'; -$a->strings['List Forums'] = 'Foorumite nimistu'; $a->strings['Tag Cloud'] = 'Sildipilv tag cloud'; $a->strings['Provide a personal tag cloud on your profile page'] = 'Näita personaalset sildipilve oma profiili lehel'; $a->strings['Display Membership Date'] = 'Kuva liitumise kuupäev'; $a->strings['Display membership date in profile'] = 'Kuva liitumiskuupäev oma profiilil'; -$a->strings['Forums'] = 'Foorumid'; -$a->strings['External link to forum'] = 'Välimine link foorumisse'; $a->strings['show more'] = 'näita veel'; $a->strings['event'] = 'sündmus'; +$a->strings['status'] = 'staatus'; +$a->strings['photo'] = 'foto'; $a->strings['Follow Thread'] = 'Jälgi vestlust'; $a->strings['View Status'] = 'Vaata staatust'; $a->strings['View Profile'] = 'Vaata profiili'; @@ -361,21 +185,21 @@ $a->strings['View Contact'] = 'Vaata kontakti'; $a->strings['Send PM'] = 'Saada privaatsõnum'; $a->strings['Block'] = 'Blokeeri'; $a->strings['Ignore'] = 'Ignoreeri'; -$a->strings['Poke'] = 'Müksa'; +$a->strings['Connect/Follow'] = 'Ühendu/Järgi'; $a->strings['Nothing new here'] = 'Ei midagi uut siin'; $a->strings['Clear notifications'] = 'Puhasta teated'; $a->strings['Logout'] = 'Logi välja'; $a->strings['End this session'] = 'Lõpeta see sessioon'; $a->strings['Sign in'] = 'Logi sisse'; -$a->strings['Status'] = 'Staatus'; -$a->strings['Your posts and conversations'] = 'Sinu postitused ja vestlused'; $a->strings['Profile'] = 'Profiil'; $a->strings['Your profile page'] = 'Sinu profiili leht'; +$a->strings['Photos'] = 'Fotod'; $a->strings['Your photos'] = 'Sinu fotod'; -$a->strings['Your events'] = 'Sinu sündmused'; +$a->strings['Calendar'] = 'Kalender'; $a->strings['Personal notes'] = 'Personaalsed märkmed'; $a->strings['Your personal notes'] = 'Sinu personaalsed märkmed'; $a->strings['Home'] = 'Kodu'; +$a->strings['Home Page'] = 'Koduleht'; $a->strings['Register'] = 'Registreeri'; $a->strings['Create an account'] = 'Loo konto'; $a->strings['Help'] = 'Abi'; @@ -389,7 +213,6 @@ $a->strings['Tags'] = 'Sildid'; $a->strings['Contacts'] = 'Kontaktid'; $a->strings['Community'] = 'Kogukond'; $a->strings['Conversations on this and other servers'] = 'Vestlused siin ja muudes serverites'; -$a->strings['Events and Calendar'] = 'Sündmused ja Kalender'; $a->strings['Directory'] = 'Kataloog'; $a->strings['People directory'] = 'Inimeste kataloog'; $a->strings['Information'] = 'Info'; @@ -397,11 +220,12 @@ $a->strings['Information about this friendica instance'] = 'Info selle friendica $a->strings['Terms of Service of this Friendica instance'] = 'Selle Friendica instantsi kasutustingimused'; $a->strings['Network'] = 'Võrk'; $a->strings['Conversations from your friends'] = 'Vestlused sinu sõpradelt'; +$a->strings['Your posts and conversations'] = 'Sinu postitused ja vestlused'; $a->strings['Introductions'] = 'Tutvustused'; $a->strings['Friend Requests'] = 'Sõbrataotlused'; $a->strings['Notifications'] = 'Teavitused'; $a->strings['See all notifications'] = 'Vaata kõiki teavitusi'; -$a->strings['Mark all system notifications seen'] = 'Märgi kõik süsteemitevitused loetuks'; +$a->strings['Mark as seen'] = 'Märgi loetuks'; $a->strings['Private mail'] = 'Privaatmeil'; $a->strings['Inbox'] = 'Sisenev'; $a->strings['Outbox'] = 'Väljuv'; @@ -431,12 +255,12 @@ $a->strings['%d invitation available'] = [ $a->strings['Find People'] = 'Leia inimesi'; $a->strings['Enter name or interest'] = 'Sissta nimi või huviala'; $a->strings['Find'] = 'Otsi'; +$a->strings['Friend Suggestions'] = 'Sõbrasoovitused'; $a->strings['Similar Interests'] = 'Sarnased huvid'; $a->strings['Random Profile'] = 'Suvaline profiil'; $a->strings['Invite Friends'] = 'Kutsu sõpru'; $a->strings['Global Directory'] = 'Globaalne kataloog'; $a->strings['Local Directory'] = 'Kohalik kataloog'; -$a->strings['Groups'] = 'Grupid'; $a->strings['Relationships'] = 'Suhted'; $a->strings['All Contacts'] = 'Kõik kontaktid'; $a->strings['Protocols'] = 'Protokollid'; @@ -452,6 +276,7 @@ $a->strings['Archives'] = 'Arhiivid'; $a->strings['Persons'] = 'Isikud'; $a->strings['Organisations'] = 'Organisatsioonid'; $a->strings['News'] = 'Uudised'; +$a->strings['Account Types'] = 'Kontode tüübid'; $a->strings['Export'] = 'Eksport'; $a->strings['Export calendar as ical'] = 'Ekspordi kalender kui ical'; $a->strings['No contacts'] = 'Kontakte pole'; @@ -463,10 +288,12 @@ $a->strings['View Contacts'] = 'Kuva kontaktid'; $a->strings['Remove term'] = 'Eemalda tingimus'; $a->strings['Saved Searches'] = 'Salvestatud otsingud'; $a->strings['More Trending Tags'] = 'Veel trendikaid silte'; +$a->strings['Location:'] = 'Asukoht:'; $a->strings['Network:'] = 'Võrk'; $a->strings['Post to Email'] = 'Postita meilile'; $a->strings['Public'] = 'Avalik'; $a->strings['Limited/Private'] = 'Piiratud/Privaatne'; +$a->strings['CC: email addresses'] = 'CC: emaili addressid'; $a->strings['Monday'] = 'Esmaspäev'; $a->strings['Tuesday'] = 'Teisipäev'; $a->strings['Wednesday'] = 'Kolmapäev'; @@ -491,19 +318,20 @@ $a->strings['Thu'] = 'Nel'; $a->strings['Fri'] = 'Ree'; $a->strings['Sat'] = 'Lau'; $a->strings['Sun'] = 'Püh'; -$a->strings['poke'] = 'müksa'; -$a->strings['poked'] = 'müksatud'; -$a->strings['ping'] = 'pingi'; -$a->strings['pinged'] = 'pingitud'; -$a->strings['slap'] = 'laksa'; -$a->strings['slapped'] = 'laksatud'; +$a->strings['Everybody'] = 'Igaüks'; +$a->strings['edit'] = 'muuda'; +$a->strings['add'] = 'lisa'; $a->strings['Organisation'] = 'Organisatsioon'; -$a->strings['Forum'] = 'Foorum'; $a->strings['Disallowed profile URL.'] = 'Mittelubatud profiili URL.'; $a->strings['Starts:'] = 'Algab:'; $a->strings['Finishes:'] = 'Lõpeb:'; $a->strings['all-day'] = 'terve päev'; +$a->strings['today'] = 'täna'; +$a->strings['month'] = 'kuu'; +$a->strings['week'] = 'nädal'; +$a->strings['day'] = 'päev'; $a->strings['No events to display'] = 'Pole üritusi kuvamiseks'; +$a->strings['Access to this profile has been restricted.'] = 'Ligipääs sellele profiilile on piiratud. '; $a->strings['Edit event'] = 'Muuda sündmust'; $a->strings['Duplicate event'] = 'Dubleeri sündmus'; $a->strings['Delete event'] = 'Kustuta sündmus'; @@ -511,19 +339,11 @@ $a->strings['Show map'] = 'Näita kaarti'; $a->strings['Hide map'] = 'Peida kaart'; $a->strings['%s\'s birthday'] = '%s sünnipäev'; $a->strings['Happy Birthday %s'] = 'Palju Õnne %s '; -$a->strings['Default privacy group for new contacts'] = 'Baas turvalisuse grupp uutele kontaktidele'; -$a->strings['Everybody'] = 'Igaüks'; -$a->strings['edit'] = 'muuda'; -$a->strings['add'] = 'lisa'; -$a->strings['Edit group'] = 'Muuda gruppi'; -$a->strings['Contacts not in any group'] = 'Mitteüheski grupis olevad kontaktid'; -$a->strings['Create a new group'] = 'Loo uus grupp'; -$a->strings['Group Name: '] = 'Grupi nimi:'; -$a->strings['Edit groups'] = 'Muuda gruppe'; $a->strings['activity'] = 'tegevused'; $a->strings['post'] = 'postitus'; $a->strings['View on separate page'] = 'Kuva eraldi lehel'; $a->strings['[no subject]'] = '[teema puudub] '; +$a->strings['Wall Photos'] = 'Seina fotod'; $a->strings['Edit profile'] = 'Muuda profiili'; $a->strings['Change profile photo'] = 'Muuda profiilifoto'; $a->strings['Homepage:'] = 'Koduleht:'; @@ -560,49 +380,28 @@ $a->strings['Invitation could not be verified.'] = 'Kutset ei õnnestu kontrolli $a->strings['Friends'] = 'Sõbrad'; $a->strings['Profile Photos'] = 'Profiilifotod'; $a->strings['Addons'] = 'Lisad'; -$a->strings['Pending'] = 'Ootel'; -$a->strings['Blocked'] = 'Blokeeritud'; -$a->strings['Private Forum'] = 'Privaatne foorum'; -$a->strings['Unblock'] = 'Võta blokk maha'; -$a->strings['Blocked Remote Contacts'] = 'Blokeeritud kaugkontaktid'; -$a->strings['Block New Remote Contact'] = 'Blokeeri kaugkontakt'; -$a->strings['Photo'] = 'Foto'; +$a->strings['Save Settings'] = 'Salvesta Sätted'; $a->strings['Manage Additional Features'] = 'Halda lisafunktsioone'; -$a->strings['Item marked for deletion.'] = 'Element kustutamiseks märgitud'; -$a->strings['Delete Item'] = 'Kustuta element'; -$a->strings['Delete this Item'] = 'Kustuta see element'; -$a->strings['Type'] = 'Tüüp'; $a->strings['Show all'] = 'Näita kõik'; +$a->strings['Event details'] = 'Sündmuse detailid'; $a->strings['ID'] = 'ID'; +$a->strings['Created'] = 'Loodud'; $a->strings['Closed'] = 'Suletud'; $a->strings['Requires approval'] = 'Vajab heakskiitu'; $a->strings['Open'] = 'Avatud'; $a->strings['Don\'t check'] = 'Ära kontrolli'; $a->strings['check the stable version'] = 'kontrolli stabiilset versiooni'; $a->strings['Registration'] = 'Registreerimine'; +$a->strings['Advanced'] = 'Täpsem'; $a->strings['Additional Info'] = 'Lisainfo'; $a->strings['System language'] = 'Süsteemi keel'; $a->strings['System theme'] = 'Süsteemi teema'; $a->strings['Mobile system theme'] = 'Mobiilne süsttemi teema'; $a->strings['Theme for mobile devices'] = 'Teema mobiilseadmetele'; -$a->strings['Normal Account'] = 'Normaalne konto'; -$a->strings['Automatic Follower Account'] = 'Automaatse jälgija konto'; -$a->strings['Public Forum Account'] = 'Avaliku foorumi konto'; -$a->strings['Automatic Friend Account'] = 'Automaatse sõbra konto'; -$a->strings['Blog Account'] = 'Blogikonto'; -$a->strings['Private Forum Account'] = 'Privaatfoorumi konto'; $a->strings['Server Settings'] = 'Serveri sätted'; -$a->strings['Registered users'] = 'Registreeritud kasutajad'; -$a->strings['Pending registrations'] = 'Ootel registreeringud'; $a->strings['Version'] = 'Versioon'; $a->strings['Active addons'] = 'Aktiveeritud lisad'; $a->strings['Themes'] = 'Teemad'; -$a->strings['You can\'t remove yourself'] = 'Iseend eemaldada ei saa'; -$a->strings['Register date'] = 'Registreerimisaeg'; -$a->strings['Last login'] = 'Viimane login'; -$a->strings['Add User'] = 'Lisa kasutaja'; -$a->strings['Users'] = 'Kasutajad'; -$a->strings['Account approved.'] = 'Konto heaks kiidetud:'; $a->strings['No installed applications.'] = 'Paigaldatud rakendusi pole.'; $a->strings['Applications'] = 'Rakendused'; $a->strings['Item was not found.'] = 'Elementi ei leitud.'; @@ -611,27 +410,52 @@ $a->strings['Overview'] = 'Ülevaade'; $a->strings['Configuration'] = 'Konfiguratsioon'; $a->strings['Additional features'] = 'Lisafunktsioonid'; $a->strings['Database'] = 'Andmebaas'; +$a->strings['Users'] = 'Kasutajad'; $a->strings['Tools'] = 'Tööriistad'; +$a->strings['Delete Item'] = 'Kustuta element'; $a->strings['Profile Details'] = 'Profiili detailid'; $a->strings['Only You Can See This'] = 'Ainult Sina saad seda näha'; $a->strings['Scheduled Posts'] = 'Ajastatud postitused'; $a->strings['Posts that are scheduled for publishing'] = 'Avaldamiseks ajastatud postitused'; $a->strings['Tips for New Members'] = 'Näpunäiteid uutele liikmetele'; $a->strings['People Search - %s'] = 'Inimeste otsing - %s'; -$a->strings['Forum Search - %s'] = 'Foorumi otsing - %s'; +$a->strings['No matches'] = 'Pole kattuvusi'; $a->strings['Account'] = 'Konto'; $a->strings['Display'] = 'Kuva'; +$a->strings['Social Networks'] = 'Sotsiaalvõrgud'; $a->strings['Manage Accounts'] = 'Halda kontosid'; $a->strings['Connected apps'] = 'Ühendatud rakendused'; $a->strings['Export personal data'] = 'Ekspordi isiklikud andmed'; $a->strings['Remove account'] = 'Eemalda konto'; $a->strings['The post was created'] = 'Postitus loodi'; +$a->strings['Failed to remove event'] = 'Ei õnnestunud sündmust eemaldada'; +$a->strings['Event can not end before it has started.'] = 'Sündmus ei saa lõppeda enne algamist.'; +$a->strings['Event title and start time are required.'] = 'Sündmuse pealkiri ja algusaeg nõutavad.'; +$a->strings['Starting date and Title are required.'] = 'Alguskuupäev ja Pealkiri nõutavad.'; +$a->strings['Event Starts:'] = 'Sündmus algab:'; +$a->strings['Required'] = 'Nõutav'; +$a->strings['Finish date/time is not known or not relevant'] = 'Lõpu kuupäev/aeg pole teada või pole olulised'; +$a->strings['Event Finishes:'] = 'Sündmus lõpeb:'; +$a->strings['Share this event'] = 'Jaga seda sündmust'; +$a->strings['Basic'] = 'Peamine'; +$a->strings['This calendar format is not supported'] = 'See kalendriformaat ei ole toetatud'; +$a->strings['No exportable data found'] = 'Eksporditavaid andmeid ei leitud'; +$a->strings['calendar'] = 'kalender'; +$a->strings['Events'] = 'Sündmused'; +$a->strings['View'] = 'Vaade'; +$a->strings['Create New Event'] = 'Loo uus sündmus'; +$a->strings['Contact not found.'] = 'Kontakti ei leitud.'; +$a->strings['Invalid contact.'] = 'Mittevaliidne kontakt.'; +$a->strings['Members'] = 'Liikmed'; +$a->strings['Click on a contact to add or remove.'] = 'Lisamiseks või eemaldamiseks klõpsa kontaktil.'; $a->strings['%d contact edited.'] = [ 0 => '%d kontakt muudetud. ', 1 => '%d kontakti muudetud. ', ]; $a->strings['Show all contacts'] = 'Kuva kõiki kontakte'; +$a->strings['Pending'] = 'Ootel'; $a->strings['Only show pending contacts'] = 'Näita ainult ootel kontakte'; +$a->strings['Blocked'] = 'Blokeeritud'; $a->strings['Only show blocked contacts'] = 'Näita ainult blokeeritud kontakte'; $a->strings['Ignored'] = 'Ignoreeritud'; $a->strings['Only show ignored contacts'] = 'Näita ainult ignoreeritud kontakte'; @@ -639,10 +463,10 @@ $a->strings['Archived'] = 'Arhiveeritud'; $a->strings['Only show archived contacts'] = 'Näita ainult arhiveeritud kontakte'; $a->strings['Hidden'] = 'Peidetud'; $a->strings['Only show hidden contacts'] = 'Näita ainult peidetud kontakte'; -$a->strings['Organize your contact groups'] = 'Organiseeri oma kontaktgruppe'; $a->strings['Search your contacts'] = 'Otsi oma kontakte'; $a->strings['Results for: %s'] = 'Tulemused: %s '; $a->strings['Update'] = 'Uuenda'; +$a->strings['Unblock'] = 'Võta blokk maha'; $a->strings['Unignore'] = 'Äraignoreeri'; $a->strings['Batch Actions'] = 'Multitegevused'; $a->strings['Conversations started by this contact'] = 'Selle kontakti alustatud vestlused'; @@ -653,14 +477,20 @@ $a->strings['Pending outgoing contact request'] = 'Ootel väljuv kontaktitaotlus $a->strings['Pending incoming contact request'] = 'Ootel sisenev kontaktitaotlus'; $a->strings['Visit %s\'s profile [%s]'] = 'Külasta %s profiili [%s] '; $a->strings['Contact update failed.'] = 'Kontakti uuendamine nurjus.'; +$a->strings['Name'] = 'Nimi'; $a->strings['Account Nickname'] = 'Konto hüüdnimi'; $a->strings['Account URL'] = 'Konto URL'; -$a->strings['Account URL Alias'] = 'Konto URL-i Alias'; -$a->strings['Friend Request URL'] = 'Sõbrataotluse URL'; -$a->strings['Friend Confirm URL'] = 'Sõbra kinnitamise URL'; -$a->strings['Invalid contact.'] = 'Mittevaliidne kontakt.'; -$a->strings['Choose what you wish to do to recipient'] = 'Vali, mida soovid saajaga teha'; -$a->strings['Make this post private'] = 'Muuda see postitus privaatseks'; +$a->strings['Access denied.'] = 'Ligipääs keelatud.'; +$a->strings['Submit Request'] = 'Saada taotlus'; +$a->strings['You already added this contact.'] = 'Te juba lisasite selle kontakti.'; +$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Diaspora toetus pole võimaldatud. Kontakti ei saa lisada.'; +$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus tugi pole võimaldatud. Kontakti ei saa lisada.'; +$a->strings['Please answer the following:'] = 'Palun vasta järgnevale:'; +$a->strings['Your Identity Address:'] = 'Sinu ID aadress:'; +$a->strings['Profile URL'] = 'Profiili URL'; +$a->strings['Tags:'] = 'Tag`id: '; +$a->strings['Add a personal note:'] = 'Lisa personaalne teade:'; +$a->strings['The contact could not be added.'] = 'Kontakti ei saanud lisada.'; $a->strings['Failed to update contact record.'] = 'Kontakti andmete uuendamine ebaõnnestus.'; $a->strings['Contact has been unblocked'] = 'Kontakti blokeering tühistatud'; $a->strings['Contact has been blocked'] = 'Kontakt blokeeritud'; @@ -695,25 +525,16 @@ $a->strings['Replies/likes to your public posts may still be vi $a->strings['Notification for new posts'] = 'Teavitus uutest postitustest'; $a->strings['Send a notification of every new post of this contact'] = 'Saada selle kontakti igast postitusest mulle teavitus'; $a->strings['Actions'] = 'Tegevused'; +$a->strings['Status'] = 'Staatus'; $a->strings['Toggle Blocked status'] = 'Vaheta Bloki staatust'; $a->strings['Toggle Ignored status'] = 'Vahea Ignoreeritud staatust'; $a->strings['Yes'] = 'Jah'; -$a->strings['Local Community'] = 'Kohalik kogukond'; -$a->strings['Posts from local users on this server'] = 'Selle kohaliku serveri kasutajate postitused'; -$a->strings['Global Community'] = 'Globaalne kogukond'; -$a->strings['Posts from users of the whole federated network'] = 'Terve fõderatsiooni võrgu kasutajate postitused'; +$a->strings['You aren\'t following this contact.'] = 'Sa ei jälgi seda kontakti.'; +$a->strings['Unfollowing is currently not supported by your network.'] = 'Mittejälgimine ei ole sinu võrgus hetkel toetatud.'; +$a->strings['Disconnect/Unfollow'] = 'Ühenda lahti/Ära jälgi'; $a->strings['No results.'] = 'Pole tulemusi.'; $a->strings['Community option not available.'] = 'Kogukondlik valik pole saadaval. '; $a->strings['Not available.'] = 'Pole saadaval.'; -$a->strings['No such group'] = 'Sellist gruppi pole'; -$a->strings['Group: %s'] = 'Grupp: %s '; -$a->strings['Latest Activity'] = 'Viimased tegevused'; -$a->strings['Sort by latest activity'] = 'Sorteeri hiljutiste tegevuste järgi'; -$a->strings['Latest Posts'] = 'Viimased postitused'; -$a->strings['Personal'] = 'Isiklik'; -$a->strings['Posts that mention or involve you'] = 'Postitused, mis mainivad või puudutavad sind'; -$a->strings['Starred'] = 'Tähega märgitud'; -$a->strings['Favourite Posts'] = 'Lemmikpostitused'; $a->strings['You must be logged in to use this module'] = 'Selle mooduli kasutamiseks tuleb sisse logida'; $a->strings['Source URL'] = 'Allika URL'; $a->strings['UTC time: %s'] = 'UTC aeg: %s '; @@ -729,20 +550,9 @@ $a->strings['- select -'] = '-vali-'; $a->strings['Friend suggestion sent.'] = 'Sõbrasoovitus saadetud.'; $a->strings['Suggest Friends'] = 'Soovita sõpru'; $a->strings['Suggest a friend for %s'] = 'Soovita kasutaja %s -le sõpra. '; -$a->strings['Could not create group.'] = 'Ei õnnestunud gruppi luua.'; -$a->strings['Group not found.'] = 'Gruppi ei leitud.'; -$a->strings['Save Group'] = 'Salvesta grupp'; -$a->strings['Create a group of contacts/friends.'] = 'Loo grupp kontaktidest/sõpradest.'; -$a->strings['Unable to remove group.'] = 'Ei saa gruppi eemaldada.'; -$a->strings['Delete Group'] = 'Kustuta grupp'; -$a->strings['Edit Group Name'] = 'Muud grupi nime'; -$a->strings['Members'] = 'Liikmed'; -$a->strings['Group is empty'] = 'Grupp on tühi'; -$a->strings['Remove contact from group'] = 'Eemalda kontakt grupist'; -$a->strings['Click on a contact to add or remove.'] = 'Lisamiseks või eemaldamiseks klõpsa kontaktil.'; -$a->strings['Add contact to group'] = 'Lisa kontakt gruppi'; $a->strings['No profile'] = 'Profiili ei ole'; $a->strings['Help:'] = 'Abi:'; +$a->strings['Next'] = 'Järgmine'; $a->strings['Base settings'] = 'Baassätted'; $a->strings['Total invitation limit exceeded.'] = 'Totaalne kutsungite limiit ületatud.'; $a->strings['%s : Not a valid email address.'] = '%s : Mittevaliidne meiliaadress.'; @@ -772,6 +582,34 @@ $a->strings['For more information about the Friendica project and why we feel it $a->strings['Compose new post'] = 'Koosta uus postitus'; $a->strings['Visibility'] = 'Nähtavus'; $a->strings['System down for maintenance'] = 'Süsteem hooldusrežiimis'; +$a->strings['Files'] = 'Failid'; +$a->strings['Upload'] = 'Lae üles'; +$a->strings['File upload failed.'] = 'Faili üleslaadimine nurjus.'; +$a->strings['Unable to process image.'] = 'Ei suuda pilti töödelda. '; +$a->strings['Image upload failed.'] = 'Pildi üleslaadimine nurjus.'; +$a->strings['Normal Account Page'] = 'Normaalse konto leht'; +$a->strings['Automatic Friend Page'] = 'Automaatne sõbraleht'; +$a->strings['Personal Page'] = 'Isiklik leht'; +$a->strings['Organisation Page'] = 'Organisatsiooni leht'; +$a->strings['News Page'] = 'Uudiste leht'; +$a->strings['Blocked Remote Contacts'] = 'Blokeeritud kaugkontaktid'; +$a->strings['Block New Remote Contact'] = 'Blokeeri kaugkontakt'; +$a->strings['Photo'] = 'Foto'; +$a->strings['Item marked for deletion.'] = 'Element kustutamiseks märgitud'; +$a->strings['Delete this Item'] = 'Kustuta see element'; +$a->strings['Type'] = 'Tüüp'; +$a->strings['Item not found'] = 'Ei leitud'; +$a->strings['Normal Account'] = 'Normaalne konto'; +$a->strings['Automatic Follower Account'] = 'Automaatse jälgija konto'; +$a->strings['Automatic Friend Account'] = 'Automaatse sõbra konto'; +$a->strings['Blog Account'] = 'Blogikonto'; +$a->strings['Registered users'] = 'Registreeritud kasutajad'; +$a->strings['Pending registrations'] = 'Ootel registreeringud'; +$a->strings['You can\'t remove yourself'] = 'Iseend eemaldada ei saa'; +$a->strings['Register date'] = 'Registreerimisaeg'; +$a->strings['Last login'] = 'Viimane login'; +$a->strings['Add User'] = 'Lisa kasutaja'; +$a->strings['Account approved.'] = 'Konto heaks kiidetud:'; $a->strings['Show Ignored Requests'] = 'Näita ignoreeritud taotlusi'; $a->strings['Hide Ignored Requests'] = 'Peida ignoreeritud taotlused'; $a->strings['Notification type:'] = 'Teavituse tüüp:'; @@ -788,28 +626,56 @@ $a->strings['System Notifications'] = 'Süsteemi teavitused'; $a->strings['Personal Notifications'] = 'Isiklikud teavitused'; $a->strings['Home Notifications'] = 'Kodu teavitused'; $a->strings['Show unread'] = 'Näita lugemata'; +$a->strings['{0} requested registration'] = '{0} taotleb registreerimist'; +$a->strings['Keep this window open until done.'] = 'Hoia see aken lahti kuni kõik tehtud. '; +$a->strings['No contact provided.'] = 'Kontakti ei esitletud. '; +$a->strings['Couldn\'t fetch information for contact.'] = 'Ei saanud infot kontakti tarbeks. '; +$a->strings['Couldn\'t fetch friends for contact.'] = 'Ei saanud sõbrainfot kontakti tarbeks. '; +$a->strings['Done'] = 'Tehtud'; +$a->strings['success'] = 'edukas'; +$a->strings['failed'] = 'ebaõnnestus'; +$a->strings['ignored'] = 'ignoreeritud'; $a->strings['Remote privacy information not available.'] = 'Kaugturvainfo pole kättesaadav.'; $a->strings['Visible to:'] = 'Nähtav: '; +$a->strings['Edit post'] = 'Muuda postitust'; +$a->strings['web link'] = 'hüperlink'; +$a->strings['Insert video link'] = 'Lisa videolink'; +$a->strings['video link'] = 'videolink'; +$a->strings['Insert audio link'] = 'Lisa audiolink'; +$a->strings['audio link'] = 'audiolink'; +$a->strings['Remove Item Tag'] = 'Eemalda elemendi Silt'; +$a->strings['Select a tag to remove: '] = 'Vali tag mida eemaldada: '; +$a->strings['Remove'] = 'Eemalda'; $a->strings['No contacts.'] = 'Kontakte pole.'; -$a->strings['Profile not found.'] = 'Profiili ei leitud.'; -$a->strings['Member since:'] = 'Liige alates: '; -$a->strings['Birthday:'] = 'Sünnipäev:'; -$a->strings['Age: '] = 'Vanus:'; -$a->strings['Forums:'] = 'Foorumid:'; $a->strings['%s\'s timeline'] = '%s ajajoon'; $a->strings['%s\'s posts'] = '%s postitused'; $a->strings['%s\'s comments'] = '%s kommentaarid'; +$a->strings['Image exceeds size limit of %s'] = 'Pilt ületab suuruse limiidi %s '; +$a->strings['Image upload didn\'t complete, please try again'] = 'Pildi üleslaadimine ei lõppenud, palun ürita uuesti'; +$a->strings['Image file is missing'] = 'Pildifail on puudu'; +$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Server ei aktsepteeri hetkel uue faili üleslaadimist. Palun kontakteeru adminniga. '; +$a->strings['Image file is empty.'] = 'Pildifail on tühi'; +$a->strings['View Album'] = 'Kuva Album'; +$a->strings['Profile not found.'] = 'Profiili ei leitud.'; +$a->strings['Full Name:'] = 'Täielik nimi:'; +$a->strings['Member since:'] = 'Liige alates: '; +$a->strings['Birthday:'] = 'Sünnipäev:'; +$a->strings['Age: '] = 'Vanus:'; +$a->strings['Description:'] = 'Kirjeldus:'; +$a->strings['Profile unavailable.'] = 'Profiil pole saadaval.'; +$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'Kaugliitumist ei saa teostada Teie võrguga. Palun liituge otse oma süsteemis. '; +$a->strings['Friend/Connection Request'] = 'Sõbra/Ühenduse taotlus'; $a->strings['Include your profile in member directory?'] = 'Lisame su profiili liikmete kataloogi?'; $a->strings['Note for the admin'] = 'Teade adminnile'; $a->strings['Leave a message for the admin, why you want to join this node'] = 'Jäta teade adminnile, miks soovid selle nodega liituda'; $a->strings['Membership on this site is by invitation only.'] = 'Selle saidi liikmeks saab ainult kutsetega.'; $a->strings['Your invitation code: '] = 'Sinu kutse kood:'; +$a->strings['New Password:'] = 'Uus parool'; +$a->strings['Confirm:'] = 'Kinnita:'; +$a->strings['Import'] = 'Impordi'; $a->strings['Parent Password:'] = 'Peaparool'; $a->strings['Please enter the password of the parent account to legitimize your request.'] = 'Palun sisestage vanemkonto parool, et kinnitada oma päring.'; $a->strings['The additional account was created.'] = 'Lisakonto loodud'; -$a->strings['Profile unavailable.'] = 'Profiil pole saadaval.'; -$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'Kaugliitumist ei saa teostada Teie võrguga. Palun liituge otse oma süsteemis. '; -$a->strings['Friend/Connection Request'] = 'Sõbra/Ühenduse taotlus'; $a->strings['Only logged in users are permitted to perform a search.'] = 'Ainult sisselogitud kasutajad võivad otsingut kasutada.'; $a->strings['Only one search per minute is permitted for not logged in users.'] = 'Ainult üks otsing minuti kohta on sisselogimata kasutajatele lubatud. '; $a->strings['Items tagged with: %s'] = 'Elemendid %s sildiga'; @@ -818,6 +684,72 @@ $a->strings['Password: '] = 'Parool:'; $a->strings['Remember me'] = 'Mäleta mind'; $a->strings['Forgot your password?'] = 'Unustasid parooli?'; $a->strings['Logged out.'] = 'Välja logitud.'; +$a->strings['Passwords do not match.'] = 'Paroolid ei kattu.'; +$a->strings['Password unchanged.'] = 'Parool muutmata. '; +$a->strings['Current Password:'] = 'Kehtiv parool'; +$a->strings['Your current password to confirm the changes'] = 'Sinu kehtiv parool muutuste kinnitamiseks'; +$a->strings['Unable to find your profile. Please contact your admin.'] = 'Ei leia sinu profiili. Palun kontakteeru adminniga. '; +$a->strings['Personal Page Subtypes'] = 'Isikliku lehe alltüübid'; +$a->strings['Account for a personal profile.'] = 'Personaalse profiili konto.'; +$a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'Konto organisatsioonile, mis automaatselt kiidab kontaktitaotlused heaks kui "Jälgijad". '; +$a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'Uudistelevitaja konto, kes automaatselt kiidab kontaktitaotlused heaks kui "Jälgijad". '; +$a->strings['Account for community discussions.'] = 'Kogukondlike arutluste konto.'; +$a->strings['Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'] = 'Tavalise inimese konto, mis nõuab "Sõprade" ja "Jälgijate" käsitsi heaks kiitmist. '; +$a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'Avaliku profiili konto, mis kiidab automaatselt heaks kontaktitaotlused kui "Jälgijad". '; +$a->strings['Automatically approves all contact requests.'] = 'Kiidab automaatselt kõik kontaktitaotlused heaks. '; +$a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'Kuulsuse profiili konto, mis kiidab automaatselt kontaktitaotlused heaks kui "Sõbrad". '; +$a->strings['Requires manual approval of contact requests.'] = 'Nõuab käsitsi kontaktitaotluste heakskiitu. '; +$a->strings['Account Settings'] = 'Konto sätted'; +$a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'Sinu ID Aadress on \'%s\' või \'%s\'. '; +$a->strings['Password Settings'] = 'Parooli sätted'; +$a->strings['Leave password fields blank unless changing'] = 'Jäta väljad tühjaks kui sa ei muuda'; +$a->strings['Password:'] = 'Parool:'; +$a->strings['Basic Settings'] = 'Peamised sätted'; +$a->strings['Email Address:'] = 'E-posti aadress:'; +$a->strings['Your Timezone:'] = 'Sinu ajatsoon:'; +$a->strings['Your Language:'] = 'Sinu keel:'; +$a->strings['Set the language we use to show you friendica interface and to send you emails'] = 'Vali keel friendica kuvamiseks ja sulle e-posti saatmiseks. '; +$a->strings['Default Post Location:'] = 'Postitamise baasasukoht:'; +$a->strings['Use Browser Location:'] = 'Kasuta sirviku asukohta:'; +$a->strings['Security and Privacy Settings'] = 'Turva ja privaatsuse sätted'; +$a->strings['Maximum Friend Requests/Day:'] = 'Maksimum sõbrakutseid/Päevas:'; +$a->strings['(to prevent spam abuse)'] = '(et rämpspost tõrjuda)'; +$a->strings['Allow friends to post to your profile page?'] = 'Kas lubada sõpradel sinu profiililehele postitada?'; +$a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'Sinu kontaktid võivad postitada sinu profiili lehele. Need postitused edastatakse sinu kontaktidele'; +$a->strings['Allow friends to tag your posts?'] = 'Kas lubada sõpradel sinu postitusi tag`ida?'; +$a->strings['Your contacts can add additional tags to your posts.'] = 'Sinu kontaktid saavad lisada täiendavaid silte su postitustele.'; +$a->strings['Permit unknown people to send you private mail?'] = 'Kas lubada tundmatutel inimestele sulle privaatmeili saata? '; +$a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Friendica kasutajad saavad sulle privaatsõnumeid saada isegi siis, kui nad ei ole su kontaktide nimekirjas. '; +$a->strings['Maximum private messages per day from unknown people:'] = 'Privaatsõnumite maksimum päevas tundmatutelt inimestelt:'; +$a->strings['Default Post Permissions'] = 'Postituste baasõigused'; +$a->strings['Expiration settings'] = 'Aegumise sätted'; +$a->strings['Automatically expire posts after this many days:'] = 'Märgi sõnumid automaatselt loetuks selle hulga päevade möödudes: '; +$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Kui väli tühi, siis sõnumid ei aegu. Aegunud sõnumid kustutatakse'; +$a->strings['Notification Settings'] = 'Teadete sätted'; +$a->strings['Send a notification email when:'] = 'Saada meiliteavitus kui:'; +$a->strings['You receive an introduction'] = 'Sulle saabub tutvustus'; +$a->strings['Your introductions are confirmed'] = 'Sinu tutvustused on kinnitatud'; +$a->strings['Someone writes on your profile wall'] = 'Keegi kirjutab sinu profiili seinale'; +$a->strings['Someone writes a followup comment'] = 'Keegi kirjutab järgneva kommentaari'; +$a->strings['You receive a private message'] = 'Saabub privaatsõnum'; +$a->strings['You receive a friend suggestion'] = 'Saabub sõbrasoovitus'; +$a->strings['You are tagged in a post'] = 'Sind on postituses tag`itud'; +$a->strings['Activate desktop notifications'] = 'Aktiveeri töölaua teavitused'; +$a->strings['Show desktop popup on new notifications'] = 'Näita hüpikakent uute teadetega'; +$a->strings['Text-only notification emails'] = 'Ainult tekstipõhised teavitusmeilid'; +$a->strings['Send text only notification emails, without the html part'] = 'Saada ainut tekstimeile ilma html-ita'; +$a->strings['Show detailled notifications'] = 'Kuva detailseid teavitusi'; +$a->strings['Advanced Account/Page Type Settings'] = 'Konto/Lehetüübi sätted edasijõudnutele'; +$a->strings['Upload File'] = 'Lae fail üles'; +$a->strings['Addon Settings'] = 'Lisade sätted'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'E-posti kontoga ei õnnestu antud sätetega ühendust saada.'; +$a->strings['General Social Media Settings'] = 'Üldised sotsiaalmeedia sätted'; +$a->strings['Email/Mailbox Setup'] = 'Emaili/Postkasti seadistamine'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Kui ühenduda kontaktidega meilitsi kasutades seda teenust (valikuline), siis palun täpsustage kuidas postkastiga ühenduda. '; +$a->strings['Last successful email check:'] = 'Viimane õnnestunud meilikontroll: '; +$a->strings['Action after import:'] = 'Tegevus peale inporti:'; +$a->strings['Move to folder'] = 'Liiguta kausta'; +$a->strings['Move to folder:'] = 'Liiguta kausta:'; $a->strings['No parent user'] = 'Vanemkasutajad ei ole'; $a->strings['Parent User'] = 'Vanemkasutaja'; $a->strings['Additional Accounts'] = 'Lisakontod'; @@ -834,7 +766,6 @@ $a->strings['General Theme Settings'] = 'Üldised teemasätted'; $a->strings['Custom Theme Settings'] = 'Kohandatud teema sätted'; $a->strings['Content Settings'] = 'Sisu sätted'; $a->strings['Theme settings'] = 'Teema sätted'; -$a->strings['Calendar'] = 'Kalender'; $a->strings['Display Theme:'] = 'Kuvatateema:'; $a->strings['Mobile Theme:'] = 'Mobiilne teema:'; $a->strings['Number of items to display per page:'] = 'Elementide arv, mida lehel kuvatakse:'; @@ -844,7 +775,8 @@ $a->strings['Update browser every xx seconds'] = 'Värskenda sirviku sisu iga xx $a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Miinimum on 10 sekundit. Sisesta -1 väljalülitamiseks. '; $a->strings['Display the resharer'] = 'Kuva taasjagaja'; $a->strings['Beginning of week:'] = 'Nädala algus:'; -$a->strings['Profile Name is required.'] = 'Profiili Nimi nõutav.'; +$a->strings['Additional Features'] = 'Lisafunktsioonid'; +$a->strings['Connected Apps'] = 'Ühendatud rakendused'; $a->strings['(click to open/close)'] = '(klõpsa ava/sulge)'; $a->strings['Profile Actions'] = 'Profiili tegevused'; $a->strings['Edit Profile Details'] = 'Muuda profiili detaile'; @@ -869,9 +801,16 @@ $a->strings['Please adjust the image cropping for optimum viewing.'] = 'Palun s $a->strings['or'] = 'või '; $a->strings['skip this step'] = 'jäta vahele'; $a->strings['select a photo from your photo albums'] = 'vali foto oma albumitest'; -$a->strings['Wrong Password'] = 'Vale parool'; +$a->strings['[Friendica System Notify]'] = '[Friendica süsteemiteade]'; +$a->strings['User deleted their account'] = 'Kasutaja kustutas oma konto'; +$a->strings['The user id is %d'] = 'Kasutajatunnud on %d '; +$a->strings['Remove My Account'] = 'Eemalda Minu Konto'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'See eemaldab sinu konto täielikult. Kui kord tehtud, siis taastada ei saa. '; +$a->strings['Please enter your password for verification:'] = 'Palun sisesta oma parool kontrollimiseks:'; $a->strings['Export account'] = 'Ekpordi konto'; $a->strings['Export all'] = 'Ekspordi kõik'; +$a->strings['Move account'] = 'Koli konto'; +$a->strings['Account file'] = 'Konto fail'; $a->strings['Welcome to Friendica'] = 'Tere tulemast Friendicasse'; $a->strings['Friendica Walk-Through'] = 'Friendica lühiabi'; $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.'] = 'Oma Quick Start lehel - leiad kiirtutvustuse oma profiili ja võrgu sakkide (tab) kohta. Loo paar uut ühendust ja leia mõni grupp, millega liituda. '; @@ -890,8 +829,6 @@ $a->strings['Go to Your Site\'s Directory'] = 'Mine oma Lehe Kataloogi'; $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.'] = 'Kataloogi leht aitab leida teisi selles võrgus ja teistes seotud võrkudes. Otsi Ühendu või Jälgi linki nende profiili lehel. Anna sinna oma ID aadress kui küsitud. '; $a->strings['Finding New People'] = 'Uute inimeste leidmine'; $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.'] = 'Kontaktide lehe küljepaneelil on mitmeid tööriistu uute sõprade leidmiseks. Me saame sidustada inimesi huvide, huvide ja nime järgi või saame soovitada vastavalt võrgusuhtlusele. Päris uuel lehel tulevad soovitused 24 tunni möödudes. '; -$a->strings['Group Your Contacts'] = 'Grupeeri oma Kontaktid'; -$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.'] = 'Kui oled mõned sõbrad leidnud, organiseeri nad privaatsuhtluse gruppidesse oma Kontaktide lehe külgpaanil. Siis saad iga grupiga privaatselt oma Võrgulehel suhelda. '; $a->strings['Why Aren\'t My Posts Public?'] = 'Miks mu postitused avalikud ei ole?'; $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.'] = 'Friendica austab sinu privaatsust. Algseadena näevad sinu postitusi inimesed, kelle oled sõbrana lisanud. Lisainfot saad abiinfost lingilt ülalpool. '; $a->strings['Getting Help'] = 'Kuidas saada abi'; @@ -917,8 +854,8 @@ $a->strings['This message was sent to you by %s, a member of the Friendica socia $a->strings['You may visit them online at %s'] = 'Võite kohtuda nendega online %s '; $a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Palun kontakteeruge saatjaga vastates sellele postitusele, kui ei soovi neid sõnumeid saada. '; $a->strings['%s posted an update.'] = '%s postitas uuenduse.'; -$a->strings['This entry was edited'] = 'See kanne on muudetud'; $a->strings['Private Message'] = 'Pirvaatsõnum'; +$a->strings['This entry was edited'] = 'See kanne on muudetud'; $a->strings['Edit'] = 'Muuda'; $a->strings['Delete globally'] = 'Kustuta globaalselt'; $a->strings['Remove locally'] = 'Eemalda lokaalselt'; @@ -933,7 +870,6 @@ $a->strings['Reply to %s'] = 'Vasta %s le'; $a->strings['More'] = 'Rohkem'; $a->strings['Show more'] = 'Näita rohkem '; $a->strings['Show fewer'] = 'Näita vähem'; -$a->strings['Attachments:'] = 'Manused:'; $a->strings['%s is now following %s.'] = '%s jälgib nüüd %s .'; $a->strings['following'] = 'jälgib'; $a->strings['%s stopped following %s.'] = '%slõpetas %s jälgimise'; diff --git a/view/lang/fi-fi/messages.po b/view/lang/fi-fi/messages.po index a08ee4f37..535bc3ba9 100644 --- a/view/lang/fi-fi/messages.po +++ b/view/lang/fi-fi/messages.po @@ -1,8 +1,9 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: +# Henrik Härkönen, 2023 # Ilmari , 2013 # Kris, 2018 # Kris, 2018 @@ -15,2706 +16,88 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-06-02 08:49+0200\n" -"PO-Revision-Date: 2018-06-06 15:02+0000\n" -"Last-Translator: Kris\n" -"Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" +"POT-Creation-Date: 2023-06-01 19:00-0400\n" +"PO-Revision-Date: 2011-05-05 10:19+0000\n" +"Last-Translator: Henrik Härkönen, 2023\n" +"Language-Team: Finnish (Finland) (http://app.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: include/enotify.php:31 -msgid "Friendica Notification" -msgstr "Friendica-huomautus" +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 +msgid "Unable to locate original post." +msgstr "Alkuperäinen julkaisu ei löydy." -#: include/enotify.php:34 -msgid "Thank You," -msgstr "Kiitos," - -#: include/enotify.php:37 -#, php-format -msgid "%s Administrator" -msgstr "%s Ylläpitäjä" - -#: include/enotify.php:39 -#, php-format -msgid "%1$s, %2$s Administrator" -msgstr "%1$s, %2$s Ylläpitäjä" - -#: include/enotify.php:95 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notify] Uusi viesti, katso %s" - -#: include/enotify.php:97 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s lähetti sinulle uuden yksityisviestin kohteessa %2$s." - -#: include/enotify.php:98 -msgid "a private message" -msgstr "yksityisviesti" - -#: include/enotify.php:98 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s lähetti sinulle %2$s." - -#: include/enotify.php:100 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Katso yksityisviestisi kohteessa %s." - -#: include/enotify.php:138 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s kommentoi [url=%2$s] %3$s[/url]" - -#: include/enotify.php:146 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +#: mod/item.php:138 +msgid "Post updated." msgstr "" -#: include/enotify.php:156 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +#: mod/item.php:203 mod/item.php:207 +msgid "Item wasn't stored." msgstr "" -#: include/enotify.php:168 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Notify] %2$s kommentoi keskustelussa #%1$d" - -#: include/enotify.php:170 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s kommentoi kohteessa/keskustelussa jota seuraat." - -#: include/enotify.php:173 include/enotify.php:188 include/enotify.php:203 -#: include/enotify.php:218 include/enotify.php:237 include/enotify.php:252 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Käy %s nähdäksesi keskustelun ja/tai vastataksesi siihen" - -#: include/enotify.php:180 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notify] %s kirjoitti profiiliseinällesi" - -#: include/enotify.php:182 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s kirjoitti seinällesi kohteessa %2$s" - -#: include/enotify.php:183 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s kirjoitti [url=%2$s]seinällesi[/url]" - -#: include/enotify.php:195 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notify] %s merkitsi sinut" - -#: include/enotify.php:197 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s merkitsi sinut kohteessa %2$s" - -#: include/enotify.php:198 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]merkitsi sinut[/url]." - -#: include/enotify.php:210 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica:Notify] %s jakoi uuden julkaisun" - -#: include/enotify.php:212 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s jakoi uuden julkaisun %2$s" - -#: include/enotify.php:213 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]jakoi julkaisun[/url]." - -#: include/enotify.php:225 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notify] %1$s tökkäsi sinua." - -#: include/enotify.php:227 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s tökkäsi sinua kohteessa %2$s" - -#: include/enotify.php:228 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]tökkasi sinua[/url]." - -#: include/enotify.php:244 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notify] %s merkitsi julkaisusi" - -#: include/enotify.php:246 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s merkitsi julkaisusi kohteessa %2$s" - -#: include/enotify.php:247 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s merkitsi [url=%2$s]julkaisusi[/url]" - -#: include/enotify.php:259 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notify] Esittely vastaanotettu" - -#: include/enotify.php:261 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Olet vastaanottanut kaverikutsun henkilöltä '%1$s' kohteessa %2$s" - -#: include/enotify.php:262 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Olet vastaanottanut [url=%1$s]kaverikutsun[/url] henkilöltä %2$s." - -#: include/enotify.php:267 include/enotify.php:313 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Voit vierailla hänen profiilissaan kohteessa %s" - -#: include/enotify.php:269 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Hyväksy tai hylkää esittely %s-sivustossa" - -#: include/enotify.php:277 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "[Friendica:Notify] Uusi henkilö jakaa päivityksensä kanssasi" - -#: include/enotify.php:279 include/enotify.php:280 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "%1$s jakaa päivityksensä kanssasi kohteessa %2$s" - -#: include/enotify.php:287 -msgid "[Friendica:Notify] You have a new follower" -msgstr "[Friendica:Notify] Sinulla on uusi seuraaja" - -#: include/enotify.php:289 include/enotify.php:290 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "Sinulla on uusi seuraaja sivustolla %2$s : %1$s" - -#: include/enotify.php:302 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notify] Kaveripyyntö vastaanotettu" - -#: include/enotify.php:304 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Sait kaverikutsun henkilöltä '%1$s' (%2$s)" - -#: include/enotify.php:305 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Sait [url=%1$s] kaveriehdotuksen[/url] %2$s käyttäjältä %3$s." - -#: include/enotify.php:311 -msgid "Name:" -msgstr "Nimi:" - -#: include/enotify.php:312 -msgid "Photo:" -msgstr "Kuva:" - -#: include/enotify.php:315 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Hyväksy tai hylkää ehdotus %s-sivustossa" - -#: include/enotify.php:323 include/enotify.php:338 -msgid "[Friendica:Notify] Connection accepted" -msgstr "[Friendica:Notify] Yhteys hyväksytty" - -#: include/enotify.php:325 include/enotify.php:340 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "'%1$s' on hyväksynyt kaverikutsusi kohteessa %2$s" - -#: include/enotify.php:326 include/enotify.php:341 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "%2$s hyväksyi [url=%1$s]kaverikutsusi[/url]." - -#: include/enotify.php:331 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and " -"email without restriction." -msgstr "Olette nyt yhteiset ystävät ja voitte lähettää toisillenne tilapäivityksiä, kuvia ja sähköposteja ilman rajoituksia." - -#: include/enotify.php:333 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta." - -#: include/enotify.php:346 -#, php-format -msgid "" -"'%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." -msgstr "'%1$s' on hyväksynyt sinut faniksi. Tämä rajoittaa joitain kommunikointitapoja - kuten yksityisviestiettely ja joitain profiilitoimintoja. Jos tämä on julkisuuden henkilö tai yhteisösivu, asetukset on valittu automaattisesti." - -#: include/enotify.php:348 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future." -msgstr "'%1$s' voi halutessaan laajentaa suhteenne kahdenväliseksi." - -#: include/enotify.php:350 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta." - -#: include/enotify.php:360 mod/removeme.php:45 -msgid "[Friendica System Notify]" -msgstr "[Friendica Järjestelmäilmoitus]" - -#: include/enotify.php:360 -msgid "registration request" -msgstr "rekisteröintipyyntö" - -#: include/enotify.php:362 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "Olet vastaanottanut rekisteröintipyynnön henkilöltä '%1$s' kohteessa %2$s" - -#: include/enotify.php:363 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "Olet vastaanottanut [url=%1$s]rekisteröintipyynnön[/url] henkilöltä %2$s." - -#: include/enotify.php:368 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "Koko nimi:\t%1$s\\nSivusto:\t%2$s\\nKäyttäjätunnus:\t%3$s (%4$s)" - -#: include/enotify.php:374 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Hyväksy tai hylkää pyyntö %s-sivustossa." - -#: include/api.php:1202 -#, 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] "Päivittäinen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty." -msgstr[1] "Päivittäinen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty." - -#: include/api.php:1226 -#, 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] "Viikottainen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty." -msgstr[1] "Viikottainen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty." - -#: include/api.php:1250 -#, php-format -msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "Kuukausittainen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty." - -#: include/api.php:4521 mod/profile_photo.php:85 mod/profile_photo.php:93 -#: mod/profile_photo.php:101 mod/profile_photo.php:211 -#: mod/profile_photo.php:302 mod/profile_photo.php:312 mod/photos.php:88 -#: mod/photos.php:194 mod/photos.php:710 mod/photos.php:1137 -#: mod/photos.php:1154 mod/photos.php:1678 src/Model/User.php:555 -#: src/Model/User.php:563 src/Model/User.php:571 -msgid "Profile Photos" -msgstr "Profiilin valokuvat" - -#: include/conversation.php:144 include/conversation.php:279 -#: include/text.php:1749 src/Model/Item.php:2002 -msgid "event" -msgstr "tapahtuma" - -#: include/conversation.php:147 include/conversation.php:157 -#: include/conversation.php:282 include/conversation.php:291 -#: mod/subthread.php:101 mod/tagger.php:72 src/Model/Item.php:2000 -#: src/Protocol/Diaspora.php:1957 -msgid "status" -msgstr "tila" - -#: include/conversation.php:152 include/conversation.php:287 -#: include/text.php:1751 mod/subthread.php:101 mod/tagger.php:72 -#: src/Model/Item.php:2000 -msgid "photo" -msgstr "kuva" - -#: include/conversation.php:164 src/Model/Item.php:1873 -#: src/Protocol/Diaspora.php:1953 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s tykkää käyttäjän %2$s %3$s" - -#: include/conversation.php:166 src/Model/Item.php:1878 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" +#: mod/item.php:217 +msgid "Item couldn't be fetched." msgstr "" -#: include/conversation.php:168 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "%1$s osallistuu tapahtumaan %3$s, jonka järjestää %2$s" +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "Tyhjä julkaisu hylätty." -#: include/conversation.php:170 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "%1$s ei osallistu tapahtumaan %3$s, jonka järjestää %2$s" - -#: include/conversation.php:172 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "%1$s ehkä osallistuu tapahtumaan %3$s, jonka järjestää %2$s" - -#: include/conversation.php:206 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s ja %2$s ovat kavereita" - -#: include/conversation.php:247 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s tökkäsi %2$s" - -#: include/conversation.php:301 mod/tagger.php:110 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" - -#: include/conversation.php:328 -msgid "post/item" -msgstr "julkaisu/kohde" - -#: include/conversation.php:329 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "" - -#: include/conversation.php:609 mod/photos.php:1495 mod/profiles.php:355 -msgid "Likes" -msgstr "Tykkäyksiä" - -#: include/conversation.php:609 mod/photos.php:1495 mod/profiles.php:359 -msgid "Dislikes" -msgstr "Inhokit" - -#: include/conversation.php:610 include/conversation.php:1638 -#: mod/photos.php:1496 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Osallistuu" -msgstr[1] "Osallistuu" - -#: include/conversation.php:610 mod/photos.php:1496 -msgid "Not attending" -msgstr "Ei osallistu" - -#: include/conversation.php:610 mod/photos.php:1496 -msgid "Might attend" -msgstr "Ehkä" - -#: include/conversation.php:722 mod/photos.php:1563 src/Object/Post.php:192 -msgid "Select" -msgstr "Valitse" - -#: include/conversation.php:723 mod/contacts.php:830 mod/contacts.php:1035 -#: mod/admin.php:1832 mod/photos.php:1564 mod/settings.php:730 -msgid "Delete" -msgstr "Poista" - -#: include/conversation.php:761 src/Object/Post.php:371 -#: src/Object/Post.php:372 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Katso %s-henkilön profiilia @ %s" - -#: include/conversation.php:773 src/Object/Post.php:359 -msgid "Categories:" -msgstr "Luokat:" - -#: include/conversation.php:774 src/Object/Post.php:360 -msgid "Filed under:" -msgstr "Arkistoitu kansioon:" - -#: include/conversation.php:781 src/Object/Post.php:385 -#, php-format -msgid "%s from %s" -msgstr "%s sovelluksesta %s" - -#: include/conversation.php:796 -msgid "View in context" -msgstr "Näytä kontekstissa" - -#: include/conversation.php:798 include/conversation.php:1313 -#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:245 -#: mod/message.php:414 mod/photos.php:1467 src/Object/Post.php:410 -msgid "Please wait" -msgstr "Odota" - -#: include/conversation.php:869 -msgid "remove" -msgstr "poista" - -#: include/conversation.php:873 -msgid "Delete Selected Items" -msgstr "Poista valitut kohteet" - -#: include/conversation.php:1018 view/theme/frio/theme.php:352 -msgid "Follow Thread" -msgstr "Seuraa ketjua" - -#: include/conversation.php:1019 src/Model/Contact.php:662 -msgid "View Status" -msgstr "Näytä tila" - -#: include/conversation.php:1020 include/conversation.php:1036 -#: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89 -#: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:602 -#: src/Model/Contact.php:615 src/Model/Contact.php:663 -msgid "View Profile" -msgstr "Näytä profiilia" - -#: include/conversation.php:1021 src/Model/Contact.php:664 -msgid "View Photos" -msgstr "Näytä kuvia" - -#: include/conversation.php:1022 src/Model/Contact.php:665 -msgid "Network Posts" -msgstr "Uutisvirtajulkaisut" - -#: include/conversation.php:1023 src/Model/Contact.php:666 -msgid "View Contact" -msgstr "Näytä kontaktia" - -#: include/conversation.php:1024 src/Model/Contact.php:668 -msgid "Send PM" -msgstr "Lähetä yksityisviesti" - -#: include/conversation.php:1028 src/Model/Contact.php:669 -msgid "Poke" -msgstr "Tökkää" - -#: include/conversation.php:1033 mod/allfriends.php:74 mod/suggest.php:83 -#: mod/match.php:90 mod/contacts.php:596 mod/dirfind.php:218 -#: mod/follow.php:143 view/theme/vier/theme.php:201 src/Content/Widget.php:61 -#: src/Model/Contact.php:616 -msgid "Connect/Follow" -msgstr "Yhdistä/Seuraa" - -#: include/conversation.php:1152 -#, php-format -msgid "%s likes this." -msgstr "%s tykkää tästä." - -#: include/conversation.php:1155 -#, php-format -msgid "%s doesn't like this." -msgstr "%s ei tykkää tästä." - -#: include/conversation.php:1158 -#, php-format -msgid "%s attends." -msgstr "%s osallistuu." - -#: include/conversation.php:1161 -#, php-format -msgid "%s doesn't attend." -msgstr "%s ei osallistu." - -#: include/conversation.php:1164 -#, php-format -msgid "%s attends maybe." -msgstr "%s ehkä osallistuu." - -#: include/conversation.php:1175 -msgid "and" -msgstr "ja" - -#: include/conversation.php:1181 -#, php-format -msgid "and %d other people" -msgstr "ja %d muuta ihmistä" - -#: include/conversation.php:1190 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d ihmistä tykkää tästä" - -#: include/conversation.php:1191 -#, php-format -msgid "%s like this." -msgstr "%s tykkää tästä." - -#: include/conversation.php:1194 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d ihmistä ei tykkää tästä." - -#: include/conversation.php:1195 -#, php-format -msgid "%s don't like this." -msgstr "%s ei tykkää tästä." - -#: include/conversation.php:1198 -#, php-format -msgid "%2$d people attend" -msgstr "%2$d ihmistä osallistuu" - -#: include/conversation.php:1199 -#, php-format -msgid "%s attend." -msgstr "%s osallistuu." - -#: include/conversation.php:1202 -#, php-format -msgid "%2$d people don't attend" -msgstr "%2$d ihmistä ei osallistu" - -#: include/conversation.php:1203 -#, php-format -msgid "%s don't attend." -msgstr "%s ei osallistu." - -#: include/conversation.php:1206 -#, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d ihmistä ehkä osallistuu" - -#: include/conversation.php:1207 -#, php-format -msgid "%s attend maybe." -msgstr "%s ehkä osallistuu." - -#: include/conversation.php:1237 include/conversation.php:1253 -msgid "Visible to everybody" -msgstr "Näkyy kaikille" - -#: include/conversation.php:1238 include/conversation.php:1254 -#: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:181 -#: mod/message.php:188 mod/message.php:324 mod/message.php:331 -msgid "Please enter a link URL:" -msgstr "Lisää URL-linkki:" - -#: include/conversation.php:1239 include/conversation.php:1255 -msgid "Please enter a video link/URL:" -msgstr "Lisää video URL-linkki:" - -#: include/conversation.php:1240 include/conversation.php:1256 -msgid "Please enter an audio link/URL:" -msgstr "Lisää ääni URL-linkki:" - -#: include/conversation.php:1241 include/conversation.php:1257 -msgid "Tag term:" -msgstr "Tunniste:" - -#: include/conversation.php:1242 include/conversation.php:1258 -#: mod/filer.php:34 -msgid "Save to Folder:" -msgstr "Tallenna kansioon:" - -#: include/conversation.php:1243 include/conversation.php:1259 -msgid "Where are you right now?" -msgstr "Mikä on sijaintisi?" - -#: include/conversation.php:1244 -msgid "Delete item(s)?" -msgstr "Poista kohde/kohteet?" - -#: include/conversation.php:1291 -msgid "New Post" -msgstr "Uusi julkaisu" - -#: include/conversation.php:1294 -msgid "Share" -msgstr "Jaa" - -#: include/conversation.php:1295 mod/wallmessage.php:143 mod/editpost.php:111 -#: mod/message.php:243 mod/message.php:411 -msgid "Upload photo" -msgstr "Lähetä kuva" - -#: include/conversation.php:1296 mod/editpost.php:112 -msgid "upload photo" -msgstr "lähetä kuva" - -#: include/conversation.php:1297 mod/editpost.php:113 -msgid "Attach file" -msgstr "Liitä tiedosto" - -#: include/conversation.php:1298 mod/editpost.php:114 -msgid "attach file" -msgstr "liitä tiedosto" - -#: include/conversation.php:1299 mod/wallmessage.php:144 mod/editpost.php:115 -#: mod/message.php:244 mod/message.php:412 -msgid "Insert web link" -msgstr "Lisää linkki" - -#: include/conversation.php:1300 mod/editpost.php:116 -msgid "web link" -msgstr "WWW-linkki" - -#: include/conversation.php:1301 mod/editpost.php:117 -msgid "Insert video link" -msgstr "Lisää videolinkki" - -#: include/conversation.php:1302 mod/editpost.php:118 -msgid "video link" -msgstr "videolinkki" - -#: include/conversation.php:1303 mod/editpost.php:119 -msgid "Insert audio link" -msgstr "Lisää äänilinkki" - -#: include/conversation.php:1304 mod/editpost.php:120 -msgid "audio link" -msgstr "äänilinkki" - -#: include/conversation.php:1305 mod/editpost.php:121 -msgid "Set your location" -msgstr "Aseta sijaintisi" - -#: include/conversation.php:1306 mod/editpost.php:122 -msgid "set location" -msgstr "aseta sijainti" - -#: include/conversation.php:1307 mod/editpost.php:123 -msgid "Clear browser location" -msgstr "Tyhjennä selaimen sijainti" - -#: include/conversation.php:1308 mod/editpost.php:124 -msgid "clear location" -msgstr "tyhjennä sijainti" - -#: include/conversation.php:1310 mod/editpost.php:138 -msgid "Set title" -msgstr "Aseta otsikko" - -#: include/conversation.php:1312 mod/editpost.php:140 -msgid "Categories (comma-separated list)" -msgstr "Luokat (pilkuilla eroteltu luettelo)" - -#: include/conversation.php:1314 mod/editpost.php:126 -msgid "Permission settings" -msgstr "Käyttöoikeusasetukset" - -#: include/conversation.php:1315 mod/editpost.php:155 -msgid "permissions" -msgstr "käyttöoikeudet" - -#: include/conversation.php:1323 mod/editpost.php:135 -msgid "Public post" -msgstr "Julkinen viesti" - -#: include/conversation.php:1327 mod/editpost.php:146 mod/events.php:529 -#: mod/photos.php:1486 mod/photos.php:1525 mod/photos.php:1598 -#: src/Object/Post.php:813 -msgid "Preview" -msgstr "Esikatselu" - -#: include/conversation.php:1331 include/items.php:388 mod/fbrowser.php:103 -#: mod/fbrowser.php:134 mod/suggest.php:41 mod/tagrm.php:19 mod/tagrm.php:99 -#: mod/editpost.php:149 mod/contacts.php:475 mod/unfollow.php:117 -#: mod/follow.php:161 mod/message.php:141 mod/dfrn_request.php:658 -#: mod/photos.php:248 mod/photos.php:317 mod/settings.php:670 -#: mod/settings.php:696 mod/videos.php:147 -msgid "Cancel" -msgstr "Peru" - -#: include/conversation.php:1336 -msgid "Post to Groups" -msgstr "Lähetä ryhmiin" - -#: include/conversation.php:1337 -msgid "Post to Contacts" -msgstr "Lähetä kontakteille" - -#: include/conversation.php:1338 -msgid "Private post" -msgstr "Yksityinen julkaisu" - -#: include/conversation.php:1343 mod/editpost.php:153 -#: src/Model/Profile.php:338 -msgid "Message" -msgstr "Viesti" - -#: include/conversation.php:1344 mod/editpost.php:154 -msgid "Browser" -msgstr "Selain" - -#: include/conversation.php:1609 -msgid "View all" -msgstr "Näytä kaikki" - -#: include/conversation.php:1632 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Tykkäys" -msgstr[1] "Tykkäyksiä" - -#: include/conversation.php:1635 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Inhokki" -msgstr[1] "Inhokit" - -#: include/conversation.php:1641 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Ei osallistu" -msgstr[1] "Ei osallistu" - -#: include/conversation.php:1644 src/Content/ContactSelector.php:125 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "En ole varma" -msgstr[1] "En ole varma" - -#: include/items.php:343 mod/notice.php:22 mod/viewsrc.php:21 -#: mod/admin.php:277 mod/admin.php:1888 mod/admin.php:2136 mod/display.php:72 -#: mod/display.php:255 mod/display.php:356 +#: mod/item.php:427 src/Module/Admin/Themes/Details.php:39 +#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Kohdetta ei löytynyt." -#: include/items.php:383 -msgid "Do you really want to delete this item?" -msgstr "Haluatko varmasti poistaa tämän kohteen?" - -#: include/items.php:385 mod/api.php:110 mod/suggest.php:38 -#: mod/contacts.php:472 mod/follow.php:150 mod/message.php:138 -#: mod/dfrn_request.php:648 mod/profiles.php:543 mod/profiles.php:546 -#: mod/profiles.php:568 mod/register.php:238 mod/settings.php:1094 -#: mod/settings.php:1100 mod/settings.php:1107 mod/settings.php:1111 -#: mod/settings.php:1115 mod/settings.php:1119 mod/settings.php:1123 -#: mod/settings.php:1127 mod/settings.php:1147 mod/settings.php:1148 -#: mod/settings.php:1149 mod/settings.php:1150 mod/settings.php:1151 -msgid "Yes" -msgstr "Kyllä" - -#: include/items.php:402 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40 -#: mod/attach.php:38 mod/common.php:26 mod/nogroup.php:28 -#: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28 -#: mod/manage.php:131 mod/wall_attach.php:74 mod/wall_attach.php:77 -#: mod/poke.php:150 mod/regmod.php:108 mod/viewcontacts.php:57 -#: mod/wall_upload.php:103 mod/wall_upload.php:106 mod/wallmessage.php:16 -#: mod/wallmessage.php:40 mod/wallmessage.php:79 mod/wallmessage.php:103 -#: mod/editpost.php:18 mod/fsuggest.php:80 mod/cal.php:304 -#: mod/contacts.php:386 mod/delegate.php:25 mod/delegate.php:43 -#: mod/delegate.php:54 mod/ostatus_subscribe.php:16 mod/profile_photo.php:30 -#: mod/profile_photo.php:176 mod/profile_photo.php:187 -#: mod/profile_photo.php:200 mod/unfollow.php:15 mod/unfollow.php:57 -#: mod/unfollow.php:90 mod/dirfind.php:25 mod/follow.php:17 mod/follow.php:54 -#: mod/follow.php:118 mod/invite.php:20 mod/invite.php:111 mod/crepair.php:98 -#: mod/message.php:59 mod/message.php:104 mod/dfrn_confirm.php:68 -#: mod/events.php:194 mod/group.php:26 mod/item.php:160 mod/network.php:32 -#: mod/notes.php:30 mod/notifications.php:73 mod/photos.php:174 -#: mod/photos.php:1039 mod/profiles.php:182 mod/profiles.php:513 -#: mod/register.php:54 mod/settings.php:43 mod/settings.php:142 -#: mod/settings.php:659 index.php:436 +#: mod/item.php:451 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:667 src/Model/Event.php:522 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:99 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:52 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:40 src/Module/Circle.php:83 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:38 +#: src/Module/FriendSuggest.php:57 src/Module/Invite.php:42 +#: src/Module/Invite.php:131 src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:407 +#: src/Module/Settings/Delegation.php:41 src/Module/Settings/Delegation.php:71 +#: src/Module/Settings/Display.php:69 src/Module/Settings/Display.php:151 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:111 +#: src/Module/Settings/RemoveMe.php:117 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Import.php:84 +#: src/Module/User/Import.php:91 msgid "Permission denied." msgstr "Käyttöoikeus evätty." -#: include/items.php:472 src/Content/Feature.php:96 -msgid "Archives" -msgstr "Arkisto" - -#: include/items.php:478 view/theme/vier/theme.php:258 -#: src/Content/ForumManager.php:130 src/Content/Widget.php:317 -#: src/Object/Post.php:438 src/App.php:527 -msgid "show more" -msgstr "näytä lisää" - -#: include/security.php:81 -msgid "Welcome " -msgstr "Tervetuloa" - -#: include/security.php:82 -msgid "Please upload a profile photo." -msgstr "Lataa profiilikuva." - -#: include/security.php:84 -msgid "Welcome back " -msgstr "Tervetuloa takaisin" - -#: include/security.php:449 -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 "Lomakkeen turvallisuusavain oli väärin. Tämä voi johtua siitä, että lomake on ollut avoinna liian kauan (>3 tuntia) ennen sen lähettämistä." - -#: include/text.php:302 -msgid "newer" -msgstr "uudempi" - -#: include/text.php:303 -msgid "older" -msgstr "vanhempi" - -#: include/text.php:308 -msgid "first" -msgstr "ensimmäinen" - -#: include/text.php:309 -msgid "prev" -msgstr "edellinen" - -#: include/text.php:343 -msgid "next" -msgstr "seuraava" - -#: include/text.php:344 -msgid "last" -msgstr "viimeinen" - -#: include/text.php:398 -msgid "Loading more entries..." -msgstr "Merkinnät ladataan..." - -#: include/text.php:399 -msgid "The end" -msgstr "Loppu" - -#: include/text.php:884 -msgid "No contacts" -msgstr "Ei kontakteja" - -#: include/text.php:908 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d kontakti" -msgstr[1] "%d kontakteja" - -#: include/text.php:921 -msgid "View Contacts" -msgstr "Näytä kontaktit" - -#: include/text.php:1010 mod/filer.php:35 mod/editpost.php:110 -#: mod/notes.php:67 -msgid "Save" -msgstr "Tallenna" - -#: include/text.php:1010 -msgid "Follow" -msgstr "Seuraa" - -#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142 -msgid "Search" -msgstr "Haku" - -#: include/text.php:1019 src/Content/Nav.php:58 -msgid "@name, !forum, #tags, content" -msgstr "@nimi, !foorumi, #tunnisteet, sisältö" - -#: include/text.php:1025 src/Content/Nav.php:145 -msgid "Full Text" -msgstr "Koko teksti" - -#: include/text.php:1026 src/Content/Widget/TagCloud.php:54 -#: src/Content/Nav.php:146 -msgid "Tags" -msgstr "Tunnisteet" - -#: include/text.php:1027 mod/viewcontacts.php:131 mod/contacts.php:814 -#: mod/contacts.php:875 view/theme/frio/theme.php:270 src/Content/Nav.php:147 -#: src/Content/Nav.php:213 src/Model/Profile.php:955 src/Model/Profile.php:958 -msgid "Contacts" -msgstr "Yhteystiedot" - -#: include/text.php:1030 view/theme/vier/theme.php:253 -#: src/Content/ForumManager.php:125 src/Content/Nav.php:151 -msgid "Forums" -msgstr "Foorumit" - -#: include/text.php:1074 -msgid "poke" -msgstr "töki" - -#: include/text.php:1074 -msgid "poked" -msgstr "tökkäsi" - -#: include/text.php:1075 -msgid "ping" -msgstr "pingaa" - -#: include/text.php:1075 -msgid "pinged" -msgstr "pingasi" - -#: include/text.php:1076 -msgid "prod" -msgstr "töki" - -#: include/text.php:1076 -msgid "prodded" -msgstr "tökkäsi" - -#: include/text.php:1077 -msgid "slap" -msgstr "läimäytä" - -#: include/text.php:1077 -msgid "slapped" -msgstr "läimäsi" - -#: include/text.php:1078 -msgid "finger" -msgstr "näytä keskisormea" - -#: include/text.php:1078 -msgid "fingered" -msgstr "näytti keskisormea" - -#: include/text.php:1079 -msgid "rebuff" -msgstr "torju" - -#: include/text.php:1079 -msgid "rebuffed" -msgstr "torjui" - -#: include/text.php:1093 mod/settings.php:935 src/Model/Event.php:379 -msgid "Monday" -msgstr "Maanantai" - -#: include/text.php:1093 src/Model/Event.php:380 -msgid "Tuesday" -msgstr "Tiistai" - -#: include/text.php:1093 src/Model/Event.php:381 -msgid "Wednesday" -msgstr "Keskiviikko" - -#: include/text.php:1093 src/Model/Event.php:382 -msgid "Thursday" -msgstr "Torstai" - -#: include/text.php:1093 src/Model/Event.php:383 -msgid "Friday" -msgstr "Perjantai" - -#: include/text.php:1093 src/Model/Event.php:384 -msgid "Saturday" -msgstr "Lauantai" - -#: include/text.php:1093 mod/settings.php:935 src/Model/Event.php:378 -msgid "Sunday" -msgstr "Sunnuntai" - -#: include/text.php:1097 src/Model/Event.php:399 -msgid "January" -msgstr "Tammikuu" - -#: include/text.php:1097 src/Model/Event.php:400 -msgid "February" -msgstr "Helmikuu" - -#: include/text.php:1097 src/Model/Event.php:401 -msgid "March" -msgstr "Maaliskuu" - -#: include/text.php:1097 src/Model/Event.php:402 -msgid "April" -msgstr "Huhtikuu" - -#: include/text.php:1097 include/text.php:1114 src/Model/Event.php:390 -#: src/Model/Event.php:403 -msgid "May" -msgstr "Toukokuu" - -#: include/text.php:1097 src/Model/Event.php:404 -msgid "June" -msgstr "Kesäkuu" - -#: include/text.php:1097 src/Model/Event.php:405 -msgid "July" -msgstr "Heinäkuu" - -#: include/text.php:1097 src/Model/Event.php:406 -msgid "August" -msgstr "Elokuu" - -#: include/text.php:1097 src/Model/Event.php:407 -msgid "September" -msgstr "Syyskuu" - -#: include/text.php:1097 src/Model/Event.php:408 -msgid "October" -msgstr "Lokakuu" - -#: include/text.php:1097 src/Model/Event.php:409 -msgid "November" -msgstr "Marraskuu" - -#: include/text.php:1097 src/Model/Event.php:410 -msgid "December" -msgstr "Joulukuu" - -#: include/text.php:1111 src/Model/Event.php:371 -msgid "Mon" -msgstr "Ma" - -#: include/text.php:1111 src/Model/Event.php:372 -msgid "Tue" -msgstr "Ti" - -#: include/text.php:1111 src/Model/Event.php:373 -msgid "Wed" -msgstr "Ke" - -#: include/text.php:1111 src/Model/Event.php:374 -msgid "Thu" -msgstr "To" - -#: include/text.php:1111 src/Model/Event.php:375 -msgid "Fri" -msgstr "Pe" - -#: include/text.php:1111 src/Model/Event.php:376 -msgid "Sat" -msgstr "La" - -#: include/text.php:1111 src/Model/Event.php:370 -msgid "Sun" -msgstr "Su" - -#: include/text.php:1114 src/Model/Event.php:386 -msgid "Jan" -msgstr "Tam." - -#: include/text.php:1114 src/Model/Event.php:387 -msgid "Feb" -msgstr "Hel." - -#: include/text.php:1114 src/Model/Event.php:388 -msgid "Mar" -msgstr "Maa." - -#: include/text.php:1114 src/Model/Event.php:389 -msgid "Apr" -msgstr "Huh." - -#: include/text.php:1114 src/Model/Event.php:392 -msgid "Jul" -msgstr "Tou." - -#: include/text.php:1114 src/Model/Event.php:393 -msgid "Aug" -msgstr "Elo." - -#: include/text.php:1114 -msgid "Sep" -msgstr "Syy." - -#: include/text.php:1114 src/Model/Event.php:395 -msgid "Oct" -msgstr "Lok." - -#: include/text.php:1114 src/Model/Event.php:396 -msgid "Nov" -msgstr "Mar." - -#: include/text.php:1114 src/Model/Event.php:397 -msgid "Dec" -msgstr "Jou." - -#: include/text.php:1254 -#, php-format -msgid "Content warning: %s" -msgstr "Sisältövaroitus: %s" - -#: include/text.php:1324 mod/videos.php:380 -msgid "View Video" -msgstr "Katso video" - -#: include/text.php:1341 -msgid "bytes" -msgstr "tavua" - -#: include/text.php:1374 include/text.php:1385 include/text.php:1418 -msgid "Click to open/close" -msgstr "Klikkaa auki/kiinni" - -#: include/text.php:1533 -msgid "View on separate page" -msgstr "Katso erillisellä sivulla" - -#: include/text.php:1534 -msgid "view on separate page" -msgstr "katso erillisellä sivulla" - -#: include/text.php:1539 include/text.php:1546 src/Model/Event.php:594 -msgid "link to source" -msgstr "linkki lähteeseen" - -#: include/text.php:1753 -msgid "activity" -msgstr "toiminta" - -#: include/text.php:1755 src/Object/Post.php:437 src/Object/Post.php:449 -msgid "comment" -msgid_plural "comments" -msgstr[0] "kommentoi" -msgstr[1] "kommentoi" - -#: include/text.php:1758 -msgid "post" -msgstr "julkaisu" - -#: include/text.php:1916 -msgid "Item filed" -msgstr "Kohde arkistoitu" - -#: mod/allfriends.php:51 -msgid "No friends to display." -msgstr "Ei näytettäviä kavereita." - -#: mod/allfriends.php:90 mod/suggest.php:101 mod/match.php:105 -#: mod/dirfind.php:215 src/Content/Widget.php:37 src/Model/Profile.php:293 -msgid "Connect" -msgstr "Yhdistä" - -#: mod/api.php:85 mod/api.php:107 -msgid "Authorize application connection" -msgstr "Vahvista sovellusyhteys" - -#: mod/api.php:86 -msgid "Return to your app and insert this Securty Code:" -msgstr "Palaa takaisin sovellukseen ja lisää tämä turvakoodi:" - -#: mod/api.php:95 -msgid "Please login to continue." -msgstr "Ole hyvä ja kirjaudu jatkaaksesi." - -#: mod/api.php:109 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Haluatko antaa tälle sovellukselle luvan hakea viestejäsi ja yhteystietojasi ja/tai luoda uusia viestejä?" - -#: mod/api.php:111 mod/follow.php:150 mod/dfrn_request.php:648 -#: mod/profiles.php:543 mod/profiles.php:547 mod/profiles.php:568 -#: mod/register.php:239 mod/settings.php:1094 mod/settings.php:1100 -#: mod/settings.php:1107 mod/settings.php:1111 mod/settings.php:1115 -#: mod/settings.php:1119 mod/settings.php:1123 mod/settings.php:1127 -#: mod/settings.php:1147 mod/settings.php:1148 mod/settings.php:1149 -#: mod/settings.php:1150 mod/settings.php:1151 -msgid "No" -msgstr "Ei" - -#: mod/apps.php:14 index.php:265 -msgid "You must be logged in to use addons. " -msgstr "Sinun pitää kirjautua sisään, jotta voit käyttää lisäosia" - -#: mod/apps.php:19 -msgid "Applications" -msgstr "Sovellukset" - -#: mod/apps.php:22 -msgid "No installed applications." -msgstr "Ei asennettuja sovelluksia." - -#: mod/attach.php:15 -msgid "Item not available." -msgstr "Kohde ei saatavilla." - -#: mod/attach.php:25 -msgid "Item was not found." -msgstr "Kohdetta ei löytynyt." - -#: mod/common.php:91 -msgid "No contacts in common." -msgstr "Ei yhteisiä kontakteja." - -#: mod/common.php:140 mod/contacts.php:886 -msgid "Common Friends" -msgstr "Yhteisiä kavereita" - -#: mod/credits.php:18 -msgid "Credits" -msgstr "Lopputekstit" - -#: mod/credits.php:19 -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 "" - -#: mod/fbrowser.php:34 view/theme/frio/theme.php:261 src/Content/Nav.php:102 -#: src/Model/Profile.php:902 -msgid "Photos" -msgstr "Kuvat" - -#: mod/fbrowser.php:43 mod/fbrowser.php:68 mod/photos.php:194 -#: mod/photos.php:1050 mod/photos.php:1137 mod/photos.php:1154 -#: mod/photos.php:1653 mod/photos.php:1667 src/Model/Photo.php:244 -#: src/Model/Photo.php:253 -msgid "Contact Photos" -msgstr "Kontaktin valokuvat" - -#: mod/fbrowser.php:105 mod/fbrowser.php:136 mod/profile_photo.php:250 -msgid "Upload" -msgstr "Lähetä" - -#: mod/fbrowser.php:131 -msgid "Files" -msgstr "Tiedostot" - -#: mod/fetch.php:16 mod/fetch.php:52 mod/fetch.php:65 mod/p.php:21 -#: mod/p.php:48 mod/p.php:57 mod/help.php:60 index.php:312 -msgid "Not Found" -msgstr "Ei löydetty" - -#: mod/hcard.php:18 -msgid "No profile" -msgstr "Ei profiilia" - -#: mod/home.php:39 -#, php-format -msgid "Welcome to %s" -msgstr "Tervetuloa %s" - -#: mod/lockview.php:38 mod/lockview.php:46 -msgid "Remote privacy information not available." -msgstr "Yksityisyyden etätietoja ei saatavilla." - -#: mod/lockview.php:55 -msgid "Visible to:" -msgstr "Näkyvissä:" - -#: mod/maintenance.php:24 -msgid "System down for maintenance" -msgstr "Järjestelmä poiskytketty huoltoa varten" - -#: mod/newmember.php:11 -msgid "Welcome to Friendica" -msgstr "Tervetuloa Friendicaan" - -#: mod/newmember.php:12 -msgid "New Member Checklist" -msgstr "Uuden jäsenen tarkistuslista" - -#: mod/newmember.php:14 -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 "" - -#: mod/newmember.php:15 -msgid "Getting Started" -msgstr "Ensiaskeleet" - -#: mod/newmember.php:17 -msgid "Friendica Walk-Through" -msgstr "Friendica -läpikäynti" - -#: mod/newmember.php:17 -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 "" - -#: mod/newmember.php:19 mod/admin.php:1940 mod/admin.php:2210 -#: mod/settings.php:124 view/theme/frio/theme.php:269 src/Content/Nav.php:207 -msgid "Settings" -msgstr "Asetukset" - -#: mod/newmember.php:21 -msgid "Go to Your Settings" -msgstr "Omat Asetukset" - -#: mod/newmember.php:21 -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 "" - -#: mod/newmember.php:22 -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 "" - -#: mod/newmember.php:24 mod/profperm.php:113 mod/contacts.php:671 -#: mod/contacts.php:863 view/theme/frio/theme.php:260 src/Content/Nav.php:101 -#: src/Model/Profile.php:728 src/Model/Profile.php:861 -#: src/Model/Profile.php:894 -msgid "Profile" -msgstr "Profiili" - -#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:598 -msgid "Upload Profile Photo" -msgstr "Lataa profiilikuva" - -#: mod/newmember.php:26 -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 "" - -#: mod/newmember.php:27 -msgid "Edit Your Profile" -msgstr "Muokkaa profiilisi" - -#: mod/newmember.php:27 -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 "" - -#: mod/newmember.php:28 -msgid "Profile Keywords" -msgstr "Profiilin avainsanat" - -#: mod/newmember.php:28 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "" - -#: mod/newmember.php:30 -msgid "Connecting" -msgstr "Yhdistetään" - -#: mod/newmember.php:36 -msgid "Importing Emails" -msgstr "Sähköpostin tuominen" - -#: mod/newmember.php:36 -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 "" - -#: mod/newmember.php:39 -msgid "Go to Your Contacts Page" -msgstr "Näytä minun kontaktit" - -#: mod/newmember.php:39 -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 "" - -#: mod/newmember.php:40 -msgid "Go to Your Site's Directory" -msgstr "Näytä oman sivuston luettelo" - -#: mod/newmember.php:40 -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 "" - -#: mod/newmember.php:41 -msgid "Finding New People" -msgstr "Kavereiden hankkiminen" - -#: mod/newmember.php:41 -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 "" - -#: mod/newmember.php:43 src/Model/Group.php:414 -msgid "Groups" -msgstr "Ryhmät" - -#: mod/newmember.php:45 -msgid "Group Your Contacts" -msgstr "Järjestä kontaktit ryhmiin" - -#: mod/newmember.php:45 -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 "" - -#: mod/newmember.php:48 -msgid "Why Aren't My Posts Public?" -msgstr "Miksi julkaisuni eivät ole julkisia?" - -#: mod/newmember.php:48 -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 "" - -#: mod/newmember.php:52 -msgid "Getting Help" -msgstr "Avun saaminen" - -#: mod/newmember.php:54 -msgid "Go to the Help Section" -msgstr "Näytä ohjeet" - -#: mod/newmember.php:54 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "" - -#: mod/nogroup.php:42 mod/viewcontacts.php:112 mod/contacts.php:619 -#: mod/contacts.php:959 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Näytä %s-käyttäjän profiili [%s]" - -#: mod/nogroup.php:43 mod/contacts.php:960 -msgid "Edit contact" -msgstr "Muokkaa kontaktia" - -#: mod/nogroup.php:63 -msgid "Contacts who are not members of a group" -msgstr "Kontaktit jotka eivät kuulu ryhmään" - -#: mod/p.php:14 -msgid "Not Extended" -msgstr "Ei laajennettu" - -#: mod/repair_ostatus.php:18 -msgid "Resubscribing to OStatus contacts" -msgstr "OStatus -kontaktien uudelleentilaus" - -#: mod/repair_ostatus.php:34 -msgid "Error" -msgstr "Virhe" - -#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64 -msgid "Done" -msgstr "Valmis" - -#: mod/repair_ostatus.php:54 mod/ostatus_subscribe.php:88 -msgid "Keep this window open until done." -msgstr "Pidä tämä ikkuna auki kunnes kaikki tehtävät on suoritettu." - -#: mod/suggest.php:36 -msgid "Do you really want to delete this suggestion?" -msgstr "Haluatko varmasti poistaa ehdotuksen?" - -#: mod/suggest.php:73 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Ehdotuksia ei löydy. Jos tämä on uusi sivusto, kokeile uudelleen vuorokauden kuluttua." - -#: mod/suggest.php:84 mod/suggest.php:104 -msgid "Ignore/Hide" -msgstr "Jätä huomiotta/piilota" - -#: mod/suggest.php:114 view/theme/vier/theme.php:204 src/Content/Widget.php:64 -msgid "Friend Suggestions" -msgstr "Ystäväehdotukset" - -#: mod/uimport.php:55 mod/register.php:192 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Sivuston päivittäinen rekisteröintiraja ylitetty. Yritä uudelleen huomenna." - -#: mod/uimport.php:70 mod/register.php:288 -msgid "Import" -msgstr "Tuo" - -#: mod/uimport.php:72 -msgid "Move account" -msgstr "Siirrä tili" - -#: mod/uimport.php:73 -msgid "You can import an account from another Friendica server." -msgstr "Voit tuoda käyttäjätilin toiselta Friendica -palvelimelta." - -#: mod/uimport.php:74 -msgid "" -"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." -msgstr "" - -#: mod/uimport.php:75 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "Tämä on kokeellinen ominaisuus. Emme voi tuoda kontakteja OStatus-verkolta (GNU social/Statusnet) tai Diasporalta." - -#: mod/uimport.php:76 -msgid "Account file" -msgstr "Tilitiedosto" - -#: mod/uimport.php:76 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" - -#: mod/match.php:48 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Avainsanat puuttuu. Lisää avainsanoja oletusprofiiliisi." - -#: mod/match.php:104 -msgid "is interested in:" -msgstr "on kiinnostunut seuraavista aiheista:" - -#: mod/match.php:120 -msgid "Profile Match" -msgstr "Vastaavien profiilien haku" - -#: mod/match.php:125 mod/dirfind.php:253 -msgid "No matches" -msgstr "Ei täsmääviä profiileja" - -#: mod/manage.php:180 -msgid "Manage Identities and/or Pages" -msgstr "Hallitse identiteetit ja/tai sivut" - -#: mod/manage.php:181 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "" - -#: mod/manage.php:182 -msgid "Select an identity to manage: " -msgstr "Valitse identiteetti hallitavaksi:" - -#: mod/manage.php:184 mod/localtime.php:56 mod/poke.php:199 -#: mod/fsuggest.php:114 mod/contacts.php:610 mod/invite.php:154 -#: mod/crepair.php:148 mod/install.php:198 mod/install.php:237 -#: mod/message.php:246 mod/message.php:413 mod/events.php:531 -#: mod/photos.php:1068 mod/photos.php:1148 mod/photos.php:1439 -#: mod/photos.php:1485 mod/photos.php:1524 mod/photos.php:1597 -#: mod/profiles.php:579 view/theme/duepuntozero/config.php:71 -#: view/theme/frio/config.php:118 view/theme/quattro/config.php:73 -#: view/theme/vier/config.php:119 src/Object/Post.php:804 -msgid "Submit" -msgstr "Lähetä" - -#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83 -#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112 -#: mod/wall_upload.php:155 mod/wall_upload.php:158 -msgid "Invalid request." -msgstr "Virheellinen pyyntö." - -#: mod/wall_attach.php:101 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: mod/wall_attach.php:101 -msgid "Or - did you try to upload an empty file?" -msgstr "Yrititkö ladata tyhjän tiedoston?" - -#: mod/wall_attach.php:112 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Tiedosto ylittää kokorajoituksen %s" - -#: mod/wall_attach.php:136 mod/wall_attach.php:152 -msgid "File upload failed." -msgstr "Tiedoston lähettäminen epäonnistui." - -#: mod/filer.php:34 -msgid "- select -" -msgstr "- valitse -" - -#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814 -msgid "l F d, Y \\@ g:i A" -msgstr "l j.n.Y \\@ H:i" - -#: mod/localtime.php:33 -msgid "Time Conversion" -msgstr "Aikamuunnos" - -#: mod/localtime.php:35 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "" - -#: mod/localtime.php:39 -#, php-format -msgid "UTC time: %s" -msgstr "UTC-aika: %s" - -#: mod/localtime.php:42 -#, php-format -msgid "Current timezone: %s" -msgstr "Aikavyöhyke: %s" - -#: mod/localtime.php:46 -#, php-format -msgid "Converted localtime: %s" -msgstr "Muunnettu paikallisaika: %s" - -#: mod/localtime.php:52 -msgid "Please select your timezone:" -msgstr "Valitse aikavyöhykkeesi:" - -#: mod/notify.php:77 -msgid "No more system notifications." -msgstr "Ei enää järjestelmäilmoituksia." - -#: mod/notify.php:81 mod/notifications.php:113 -msgid "System Notifications" -msgstr "Järjestelmäilmoitukset" - -#: mod/ping.php:292 -msgid "{0} wants to be your friend" -msgstr "{0} lähetti kaveripyynnön" - -#: mod/ping.php:307 -msgid "{0} sent you a message" -msgstr "{0} lähetti sinulle viestin" - -#: mod/ping.php:322 -msgid "{0} requested registration" -msgstr "{0} jätti rekisteröintipyynnön" - -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Tökkää" - -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: mod/poke.php:194 -msgid "Recipient" -msgstr "Vastaanottaja" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Valitse mitä haluat tehdä vastaanottajalle" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Muuta julkaisu yksityiseksi" - -#: mod/probe.php:13 mod/viewcontacts.php:45 mod/webfinger.php:16 -#: mod/directory.php:42 mod/community.php:27 mod/dfrn_request.php:602 -#: mod/display.php:203 mod/photos.php:920 mod/search.php:98 mod/search.php:104 -#: mod/videos.php:199 -msgid "Public access denied." -msgstr "Julkinen käyttö estetty." - -#: mod/probe.php:14 mod/webfinger.php:17 -msgid "Only logged in users are permitted to perform a probing." -msgstr "" - -#: mod/profperm.php:28 mod/group.php:83 index.php:435 -msgid "Permission denied" -msgstr "Käyttöoikeus evätty" - -#: mod/profperm.php:34 mod/profperm.php:65 -msgid "Invalid profile identifier." -msgstr "Virheellinen profiilitunniste." - -#: mod/profperm.php:111 -msgid "Profile Visibility Editor" -msgstr "Profiilin näkyvyyden muokkaaminen" - -#: mod/profperm.php:115 mod/group.php:265 -msgid "Click on a contact to add or remove." -msgstr "Valitse kontakti, jota haluat poistaa tai lisätä." - -#: mod/profperm.php:124 -msgid "Visible To" -msgstr "Näkyvyys" - -#: mod/profperm.php:140 -msgid "All Contacts (with secure profile access)" -msgstr "" - -#: mod/regmod.php:68 -msgid "Account approved." -msgstr "Tili hyväksytty." - -#: mod/regmod.php:93 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: mod/regmod.php:102 -msgid "Please login." -msgstr "Ole hyvä ja kirjaudu." - -#: mod/tagrm.php:47 -msgid "Tag removed" -msgstr "Tägi poistettiin" - -#: mod/tagrm.php:85 -msgid "Remove Item Tag" -msgstr "Poista tägi" - -#: mod/tagrm.php:87 -msgid "Select a tag to remove: " -msgstr "Valitse tägi poistamista varten:" - -#: mod/tagrm.php:98 mod/delegate.php:177 -msgid "Remove" -msgstr "Poista" - -#: mod/uexport.php:44 -msgid "Export account" -msgstr "Vie tili" - -#: mod/uexport.php:44 -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 "Vie tilin tiedot ja yhteystiedot. Käytä tätä tilisi varmuuskopiointiin ja/tai siirtämiseen toiselle palvelimelle." - -#: mod/uexport.php:45 -msgid "Export all" -msgstr "Vie kaikki" - -#: mod/uexport.php:45 -msgid "" -"Export your accout 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 "Vie tilin tiedot, yhteystiedot ja kaikki nimikkeesi json-muodossa. Saattaa luoda hyvin suuren tiedoston ja kestää todella pitkään. Tämän avulla voit ottaa täydellisen varmuuskopion tilistäsi (valokuvia ei viedä)" - -#: mod/uexport.php:52 mod/settings.php:108 -msgid "Export personal data" -msgstr "Vie henkilökohtaiset tiedot" - -#: mod/viewcontacts.php:87 -msgid "No contacts." -msgstr "Ei kontakteja." - -#: mod/viewsrc.php:12 mod/community.php:34 -msgid "Access denied." -msgstr "Käyttö estetty." - -#: mod/wall_upload.php:186 mod/profile_photo.php:153 mod/photos.php:751 -#: mod/photos.php:754 mod/photos.php:783 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Kuva ylittää kokorajoituksen %s" - -#: mod/wall_upload.php:200 mod/profile_photo.php:162 mod/photos.php:806 -msgid "Unable to process image." -msgstr "Kuvan käsitteleminen epäonnistui." - -#: mod/wall_upload.php:231 mod/item.php:471 src/Object/Image.php:953 -#: src/Object/Image.php:969 src/Object/Image.php:977 src/Object/Image.php:1002 -msgid "Wall Photos" -msgstr "Seinäkuvat" - -#: mod/wall_upload.php:239 mod/profile_photo.php:307 mod/photos.php:835 -msgid "Image upload failed." -msgstr "Kuvan lähettäminen epäonnistui." - -#: mod/wallmessage.php:49 mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "%s-käyttäjän päivittäinen seinäviestiraja ylitetty. Viestin lähettäminen epäonnistui." - -#: mod/wallmessage.php:57 mod/message.php:73 -msgid "No recipient selected." -msgstr "Vastaanottaja puuttuu." - -#: mod/wallmessage.php:60 -msgid "Unable to check your home location." -msgstr "Kotisijaintisi ei voitu tarkistaa." - -#: mod/wallmessage.php:63 mod/message.php:80 -msgid "Message could not be sent." -msgstr "Viestiä ei voitu lähettää." - -#: mod/wallmessage.php:66 mod/message.php:83 -msgid "Message collection failure." -msgstr "Viestin noutaminen epäonnistui." - -#: mod/wallmessage.php:69 mod/message.php:86 -msgid "Message sent." -msgstr "Viesti lähetetty." - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Vastaanottaja puuttuu." - -#: mod/wallmessage.php:132 mod/message.php:231 -msgid "Send Private Message" -msgstr "Lähetä yksityisviesti" - -#: mod/wallmessage.php:133 -#, 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 "" - -#: mod/wallmessage.php:134 mod/message.php:232 mod/message.php:402 -msgid "To:" -msgstr "Vastaanottaja:" - -#: mod/wallmessage.php:135 mod/message.php:236 mod/message.php:404 -msgid "Subject:" -msgstr "Aihe:" - -#: mod/wallmessage.php:141 mod/invite.php:149 mod/message.php:240 -#: mod/message.php:407 -msgid "Your message:" -msgstr "Viestisi:" - -#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:313 -msgid "Login" -msgstr "Kirjaudu sisään" - -#: mod/bookmarklet.php:51 -msgid "The post was created" -msgstr "Julkaisu luotu" - -#: mod/editpost.php:25 mod/editpost.php:35 -msgid "Item not found" -msgstr "Kohdetta ei löytynyt" - -#: mod/editpost.php:42 -msgid "Edit post" -msgstr "Muokkaa viestiä" - -#: mod/editpost.php:134 src/Core/ACL.php:315 -msgid "CC: email addresses" -msgstr "Kopio: sähköpostiosoitteet" - -#: mod/editpost.php:141 src/Core/ACL.php:316 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Esimerkki: bob@example.com, mary@example.com" - -#: mod/fsuggest.php:30 mod/fsuggest.php:96 mod/crepair.php:110 -#: mod/dfrn_confirm.php:129 -msgid "Contact not found." -msgstr "Kontaktia ei ole." - -#: mod/fsuggest.php:72 -msgid "Friend suggestion sent." -msgstr "Ystäväehdotus lähetettiin." - -#: mod/fsuggest.php:101 -msgid "Suggest Friends" -msgstr "Ehdota ystäviä" - -#: mod/fsuggest.php:103 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Ehdota ystävää ystävälle %s" - -#: mod/cal.php:142 mod/display.php:316 mod/profile.php:174 -msgid "Access to this profile has been restricted." -msgstr "Pääsy tähän profiiliin on rajoitettu" - -#: mod/cal.php:274 mod/events.php:391 view/theme/frio/theme.php:263 -#: view/theme/frio/theme.php:267 src/Content/Nav.php:104 -#: src/Content/Nav.php:170 src/Model/Profile.php:922 src/Model/Profile.php:933 -msgid "Events" -msgstr "Tapahtumat" - -#: mod/cal.php:275 mod/events.php:392 -msgid "View" -msgstr "Katso" - -#: mod/cal.php:276 mod/events.php:394 -msgid "Previous" -msgstr "Edellinen" - -#: mod/cal.php:277 mod/install.php:156 mod/events.php:395 -msgid "Next" -msgstr "Seuraava" - -#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412 -msgid "today" -msgstr "tänään" - -#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304 -#: src/Model/Event.php:413 -msgid "month" -msgstr "kuukausi" - -#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305 -#: src/Model/Event.php:414 -msgid "week" -msgstr "viikko" - -#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306 -#: src/Model/Event.php:415 -msgid "day" -msgstr "päivä" - -#: mod/cal.php:284 mod/events.php:404 -msgid "list" -msgstr "luettelo" - -#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214 -msgid "User not found" -msgstr "Käyttäjää ei löydy" - -#: mod/cal.php:313 -msgid "This calendar format is not supported" -msgstr "Tätä kalenteriformaattia ei tueta" - -#: mod/cal.php:315 -msgid "No exportable data found" -msgstr "Vientikelpoista dataa ei löytynyt" - -#: mod/cal.php:332 -msgid "calendar" -msgstr "kalenteri" - -#: mod/contacts.php:71 mod/notifications.php:259 src/Model/Profile.php:516 -msgid "Network:" -msgstr "Uutisvirta:" - -#: mod/contacts.php:157 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "%d kontakti muokattu" -msgstr[1] "%d kontakteja muokattu" - -#: mod/contacts.php:184 mod/contacts.php:400 -msgid "Could not access contact record." -msgstr "Yhteystietoon ei päästä käsiksi." - -#: mod/contacts.php:194 -msgid "Could not locate selected profile." -msgstr "Valittua profiilia ei löydy." - -#: mod/contacts.php:228 -msgid "Contact updated." -msgstr "Yhteystietopäivitys onnistui." - -#: mod/contacts.php:230 mod/dfrn_request.php:415 -msgid "Failed to update contact record." -msgstr "Kontaktitietojen päivitys epäonnistui." - -#: mod/contacts.php:421 -msgid "Contact has been blocked" -msgstr "Henkilö on estetty" - -#: mod/contacts.php:421 -msgid "Contact has been unblocked" -msgstr "Henkilö on jälleen sallittu" - -#: mod/contacts.php:432 -msgid "Contact has been ignored" -msgstr "Henkilöä ei enää huomioida" - -#: mod/contacts.php:432 -msgid "Contact has been unignored" -msgstr "Henkilö on jälleen huomioituna." - -#: mod/contacts.php:443 -msgid "Contact has been archived" -msgstr "Henkilö on arkistoitu." - -#: mod/contacts.php:443 -msgid "Contact has been unarchived" -msgstr "Henkilö on otettu pois arkistosta." - -#: mod/contacts.php:467 -msgid "Drop contact" -msgstr "Poista kontakti" - -#: mod/contacts.php:470 mod/contacts.php:823 -msgid "Do you really want to delete this contact?" -msgstr "Haluatko todella poistaa tämän yhteystiedon?" - -#: mod/contacts.php:488 -msgid "Contact has been removed." -msgstr "Yhteystieto on poistettu." - -#: mod/contacts.php:519 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Olet kaveri %s kanssa." - -#: mod/contacts.php:523 -#, php-format -msgid "You are sharing with %s" -msgstr "Olet jakanut jotakin %s:n kanssa" - -#: mod/contacts.php:527 -#, php-format -msgid "%s is sharing with you" -msgstr "%s jakaa sinulle jotakin." - -#: mod/contacts.php:547 -msgid "Private communications are not available for this contact." -msgstr "Yksityiskeskustelu ei ole käytettävissä tälle henkilölle." - -#: mod/contacts.php:549 -msgid "Never" -msgstr "Ei koskaan" - -#: mod/contacts.php:552 -msgid "(Update was successful)" -msgstr "(Päivitys onnistui)" - -#: mod/contacts.php:552 -msgid "(Update was not successful)" -msgstr "(Päivitys epäonnistui)" - -#: mod/contacts.php:554 mod/contacts.php:992 -msgid "Suggest friends" -msgstr "Ehdota ystäviä" - -#: mod/contacts.php:558 -#, php-format -msgid "Network type: %s" -msgstr "Verkkotyyppi: %s" - -#: mod/contacts.php:563 -msgid "Communications lost with this contact!" -msgstr "Yhteys tähän henkilöön menetettiin!" - -#: mod/contacts.php:569 -msgid "Fetch further information for feeds" -msgstr "" - -#: mod/contacts.php:571 -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 "" - -#: mod/contacts.php:572 mod/admin.php:1284 mod/admin.php:1449 -#: mod/admin.php:1459 -msgid "Disabled" -msgstr "Pois käytöstä" - -#: mod/contacts.php:573 -msgid "Fetch information" -msgstr "Nouda tiedot" - -#: mod/contacts.php:574 -msgid "Fetch keywords" -msgstr "Nouda avainsanat" - -#: mod/contacts.php:575 -msgid "Fetch information and keywords" -msgstr "Nouda tiedot ja avainsanat" - -#: mod/contacts.php:599 mod/unfollow.php:100 -msgid "Disconnect/Unfollow" -msgstr "Katkaise / Lopeta seuraaminen" - -#: mod/contacts.php:608 -msgid "Contact" -msgstr "Kontakti" - -#: mod/contacts.php:611 -msgid "Profile Visibility" -msgstr "Profiilin näkyvyys" - -#: mod/contacts.php:612 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Valitse profiili, jonka haluat näyttää %s:lle, kun hän haluaa katsoa profiiliasi turvallisesti." - -#: mod/contacts.php:613 -msgid "Contact Information / Notes" -msgstr "Yhteystiedot / Muistiinpanot" - -#: mod/contacts.php:614 -msgid "Their personal note" -msgstr "" - -#: mod/contacts.php:616 -msgid "Edit contact notes" -msgstr "Muokkaa yhteystietojen muistiinpanoja" - -#: mod/contacts.php:620 -msgid "Block/Unblock contact" -msgstr "Estä/salli henkilö" - -#: mod/contacts.php:621 -msgid "Ignore contact" -msgstr "Jätä henkilö huomiotta" - -#: mod/contacts.php:622 -msgid "Repair URL settings" -msgstr "Korjaa URL-asetukset" - -#: mod/contacts.php:623 -msgid "View conversations" -msgstr "Katso keskusteluja" - -#: mod/contacts.php:628 -msgid "Last update:" -msgstr "Viimeksi päivitetty:" - -#: mod/contacts.php:630 -msgid "Update public posts" -msgstr "Päivitä julkiset postaukset" - -#: mod/contacts.php:632 mod/contacts.php:1002 -msgid "Update now" -msgstr "Päivitä nyt" - -#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011 -#: mod/admin.php:489 mod/admin.php:1834 -msgid "Unblock" -msgstr "Salli" - -#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011 -#: mod/admin.php:488 mod/admin.php:1833 -msgid "Block" -msgstr "Estä" - -#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019 -msgid "Unignore" -msgstr "Ota huomioon" - -#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019 -#: mod/notifications.php:62 mod/notifications.php:181 -#: mod/notifications.php:264 -msgid "Ignore" -msgstr "Jätä huomiotta" - -#: mod/contacts.php:642 -msgid "Currently blocked" -msgstr "Estetty tällä hetkellä" - -#: mod/contacts.php:643 -msgid "Currently ignored" -msgstr "Jätetty huomiotta tällä hetkellä" - -#: mod/contacts.php:644 -msgid "Currently archived" -msgstr "Arkistoitu tällä hetkellä" - -#: mod/contacts.php:645 -msgid "Awaiting connection acknowledge" -msgstr "Odotetaan yhteyden kuittausta" - -#: mod/contacts.php:646 mod/notifications.php:175 mod/notifications.php:253 -msgid "Hide this contact from others" -msgstr "Piilota kontakti muilta" - -#: mod/contacts.php:646 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "" - -#: mod/contacts.php:647 -msgid "Notification for new posts" -msgstr "Uusien postausten ilmoitus" - -#: mod/contacts.php:647 -msgid "Send a notification of every new post of this contact" -msgstr "Lähetä ilmoitus tälle henkilölle kaikista uusista postauksista" - -#: mod/contacts.php:650 -msgid "Blacklisted keywords" -msgstr "Kielletyt avainsanat" - -#: mod/contacts.php:650 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: mod/contacts.php:656 mod/unfollow.php:122 mod/follow.php:166 -#: mod/admin.php:494 mod/admin.php:504 mod/notifications.php:256 -msgid "Profile URL" -msgstr "Profiilin URL" - -#: mod/contacts.php:660 mod/directory.php:148 mod/events.php:519 -#: mod/notifications.php:246 src/Model/Event.php:60 src/Model/Event.php:85 -#: src/Model/Event.php:421 src/Model/Event.php:900 src/Model/Profile.php:413 -msgid "Location:" -msgstr "Sijainti:" - -#: mod/contacts.php:662 src/Model/Profile.php:420 -msgid "XMPP:" -msgstr "XMPP:" - -#: mod/contacts.php:664 mod/directory.php:154 mod/notifications.php:248 -#: src/Model/Profile.php:419 src/Model/Profile.php:804 -msgid "About:" -msgstr "Lisätietoja:" - -#: mod/contacts.php:666 mod/follow.php:174 mod/notifications.php:250 -#: src/Model/Profile.php:792 -msgid "Tags:" -msgstr "Tunnisteet:" - -#: mod/contacts.php:667 -msgid "Actions" -msgstr "Toimenpiteet" - -#: mod/contacts.php:669 mod/contacts.php:855 view/theme/frio/theme.php:259 -#: src/Content/Nav.php:100 src/Model/Profile.php:886 -msgid "Status" -msgstr "Tila" - -#: mod/contacts.php:670 -msgid "Contact Settings" -msgstr "Yhteystietoasetukset" - -#: mod/contacts.php:711 -msgid "Suggestions" -msgstr "Ehdotukset" - -#: mod/contacts.php:714 -msgid "Suggest potential friends" -msgstr "Ehdota mahdollisille ystäville" - -#: mod/contacts.php:719 mod/group.php:215 -msgid "All Contacts" -msgstr "Kaikki yhteystiedot" - -#: mod/contacts.php:722 -msgid "Show all contacts" -msgstr "Näytä kaikki yhteystiedot" - -#: mod/contacts.php:727 -msgid "Unblocked" -msgstr "Sallittu" - -#: mod/contacts.php:730 -msgid "Only show unblocked contacts" -msgstr "Näytä vain sallitut henkilöt" - -#: mod/contacts.php:735 -msgid "Blocked" -msgstr "Estetty" - -#: mod/contacts.php:738 -msgid "Only show blocked contacts" -msgstr "Näytä vain estetyt henkilöt" - -#: mod/contacts.php:743 -msgid "Ignored" -msgstr "Jätetty huomiotta" - -#: mod/contacts.php:746 -msgid "Only show ignored contacts" -msgstr "Näytä vain henkilöt, jotka jätetty huomiotta" - -#: mod/contacts.php:751 -msgid "Archived" -msgstr "Arkistoitu" - -#: mod/contacts.php:754 -msgid "Only show archived contacts" -msgstr "Näytä vain arkistoidut henkilöt" - -#: mod/contacts.php:759 -msgid "Hidden" -msgstr "Piilotettu" - -#: mod/contacts.php:762 -msgid "Only show hidden contacts" -msgstr "Näytä vain piilotetut henkilöt" - -#: mod/contacts.php:818 -msgid "Search your contacts" -msgstr "Etsi henkilöitä" - -#: mod/contacts.php:819 mod/search.php:236 -#, php-format -msgid "Results for: %s" -msgstr "Tulokset haulla: %s" - -#: mod/contacts.php:820 mod/directory.php:209 view/theme/vier/theme.php:203 -#: src/Content/Widget.php:63 -msgid "Find" -msgstr "Etsi" - -#: mod/contacts.php:826 mod/settings.php:169 mod/settings.php:695 -msgid "Update" -msgstr "Päivitä" - -#: mod/contacts.php:829 mod/contacts.php:1027 -msgid "Archive" -msgstr "Arkistoi" - -#: mod/contacts.php:829 mod/contacts.php:1027 -msgid "Unarchive" -msgstr "Poista arkistosta" - -#: mod/contacts.php:832 -msgid "Batch Actions" -msgstr "" - -#: mod/contacts.php:858 mod/unfollow.php:132 mod/follow.php:186 -#: src/Model/Profile.php:889 -msgid "Status Messages and Posts" -msgstr "Statusviestit ja postaukset" - -#: mod/contacts.php:866 src/Model/Profile.php:897 -msgid "Profile Details" -msgstr "Profiilitiedot" - -#: mod/contacts.php:878 -msgid "View all contacts" -msgstr "Näytä kaikki kontaktit" - -#: mod/contacts.php:889 -msgid "View all common friends" -msgstr "Näytä kaikki yhteiset kaverit" - -#: mod/contacts.php:895 mod/admin.php:1362 mod/events.php:533 -#: src/Model/Profile.php:863 -msgid "Advanced" -msgstr "" - -#: mod/contacts.php:898 -msgid "Advanced Contact Settings" -msgstr "Kontakti-lisäasetukset" - -#: mod/contacts.php:930 -msgid "Mutual Friendship" -msgstr "Yhteinen kaveruus" - -#: mod/contacts.php:934 -msgid "is a fan of yours" -msgstr "on fanisi" - -#: mod/contacts.php:938 -msgid "you are a fan of" -msgstr "fanitat" - -#: mod/contacts.php:953 mod/photos.php:1482 mod/photos.php:1521 -#: mod/photos.php:1594 src/Object/Post.php:801 -msgid "This is you" -msgstr "Tämä olet sinä" - -#: mod/contacts.php:1013 -msgid "Toggle Blocked status" -msgstr "Estetty tila päälle/pois" - -#: mod/contacts.php:1021 -msgid "Toggle Ignored status" -msgstr "Sivuuta/seuraa" - -#: mod/contacts.php:1029 -msgid "Toggle Archive status" -msgstr "Arkistotila päälle/pois" - -#: mod/contacts.php:1037 -msgid "Delete contact" -msgstr "Poista kontakti" - -#: mod/delegate.php:37 -msgid "Parent user not found." -msgstr "" - -#: mod/delegate.php:144 -msgid "No parent user" -msgstr "" - -#: mod/delegate.php:159 -msgid "Parent Password:" -msgstr "" - -#: mod/delegate.php:159 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "" - -#: mod/delegate.php:164 -msgid "Parent User" -msgstr "" - -#: mod/delegate.php:167 -msgid "" -"Parent users have total control about this account, including the account " -"settings. Please double check whom you give this access." -msgstr "" - -#: mod/delegate.php:168 mod/admin.php:311 mod/admin.php:1357 -#: mod/admin.php:1999 mod/admin.php:2253 mod/admin.php:2327 mod/admin.php:2474 -#: mod/settings.php:669 mod/settings.php:776 mod/settings.php:864 -#: mod/settings.php:953 mod/settings.php:1183 -msgid "Save Settings" -msgstr "Tallenna asetukset" - -#: mod/delegate.php:169 src/Content/Nav.php:205 -msgid "Delegate Page Management" -msgstr "Delegoi sivunhallinta" - -#: mod/delegate.php:170 -msgid "Delegates" -msgstr "Valtuutetut" - -#: mod/delegate.php:172 -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 "" - -#: mod/delegate.php:173 -msgid "Existing Page Delegates" -msgstr "Sivun valtuutetut" - -#: mod/delegate.php:175 -msgid "Potential Delegates" -msgstr "Mahdolliset valtuutetut" - -#: mod/delegate.php:178 -msgid "Add" -msgstr "Lisää" - -#: mod/delegate.php:179 -msgid "No entries." -msgstr "Ei kohteita." - -#: mod/feedtest.php:20 -msgid "You must be logged in to use this module" -msgstr "Sinun pitää kirjautua sisään, jotta voit käyttää tätä moduulia" - -#: mod/feedtest.php:48 -msgid "Source URL" -msgstr "Lähde URL" - -#: mod/oexchange.php:30 -msgid "Post successful." -msgstr "Viestin lähetys onnistui." - -#: mod/ostatus_subscribe.php:21 -msgid "Subscribing to OStatus contacts" -msgstr "OStatus -kontaktien tilaaminen" - -#: mod/ostatus_subscribe.php:33 -msgid "No contact provided." -msgstr "Kontakti puuttuu." - -#: mod/ostatus_subscribe.php:40 -msgid "Couldn't fetch information for contact." -msgstr "Kontaktin tietoja ei voitu hakea." - -#: mod/ostatus_subscribe.php:50 -msgid "Couldn't fetch friends for contact." -msgstr "Ei voitu hakea kontaktin kaverit." - -#: mod/ostatus_subscribe.php:78 -msgid "success" -msgstr "onnistui" - -#: mod/ostatus_subscribe.php:80 -msgid "failed" -msgstr "epäonnistui" - -#: mod/ostatus_subscribe.php:83 src/Object/Post.php:287 -msgid "ignored" -msgstr "ohitettu" - -#: mod/profile_photo.php:55 -msgid "Image uploaded but image cropping failed." -msgstr "Kuva ladattu mutta kuvan rajaus epäonnistui." - -#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104 -#: mod/profile_photo.php:315 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Kuvan pienentäminen [%s] epäonnistui." - -#: mod/profile_photo.php:125 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Jos kuva ei näy heti, lataa sivu uudelleen tai tyhjennä selaimen välimuisti." - -#: mod/profile_photo.php:134 -msgid "Unable to process image" -msgstr "Kuvan käsitteleminen epäonnistui" - -#: mod/profile_photo.php:247 -msgid "Upload File:" -msgstr "Lähetä tiedosto:" - -#: mod/profile_photo.php:248 -msgid "Select a profile:" -msgstr "Valitse profiili:" - -#: mod/profile_photo.php:253 -msgid "or" -msgstr "tai" - -#: mod/profile_photo.php:253 -msgid "skip this step" -msgstr "ohita tämä vaihe" - -#: mod/profile_photo.php:253 -msgid "select a photo from your photo albums" -msgstr "valitse kuva albumeistasi" - -#: mod/profile_photo.php:266 -msgid "Crop Image" -msgstr "Rajaa kuva" - -#: mod/profile_photo.php:267 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Rajaa kuva sopivasti." - -#: mod/profile_photo.php:269 -msgid "Done Editing" -msgstr "Lopeta muokkaus" - -#: mod/profile_photo.php:305 -msgid "Image uploaded successfully." -msgstr "Kuvan lähettäminen onnistui." - -#: mod/unfollow.php:34 -msgid "Contact wasn't found or can't be unfollowed." -msgstr "" - -#: mod/unfollow.php:47 -msgid "Contact unfollowed" -msgstr "Kontaktia ei enää seurata" - -#: mod/unfollow.php:65 mod/follow.php:62 mod/dfrn_request.php:657 -msgid "Submit Request" -msgstr "Lähetä pyyntö" - -#: mod/unfollow.php:73 -msgid "You aren't a friend of this contact." -msgstr "Et ole kontaktin kaveri." - -#: mod/unfollow.php:79 -msgid "Unfollowing is currently not supported by your network." -msgstr "Seuraamisen lopettaminen ei tällä hetkellä tueta verkossasi." - -#: mod/unfollow.php:113 mod/follow.php:157 mod/dfrn_request.php:655 -msgid "Your Identity Address:" -msgstr "Identiteettisi osoite:" - -#: mod/directory.php:151 mod/notifications.php:252 src/Model/Profile.php:416 -#: src/Model/Profile.php:743 -msgid "Gender:" -msgstr "Sukupuoli:" - -#: mod/directory.php:152 src/Model/Profile.php:417 src/Model/Profile.php:767 -msgid "Status:" -msgstr "Tila:" - -#: mod/directory.php:153 src/Model/Profile.php:418 src/Model/Profile.php:784 -msgid "Homepage:" -msgstr "Kotisivu:" - -#: mod/directory.php:202 view/theme/vier/theme.php:208 -#: src/Content/Widget.php:68 -msgid "Global Directory" -msgstr "Maailmanlaajuinen hakemisto" - -#: mod/directory.php:204 -msgid "Find on this site" -msgstr "" - -#: mod/directory.php:206 -msgid "Results for:" -msgstr "Tulokset haulla:" - -#: mod/directory.php:208 -msgid "Site Directory" -msgstr "Sivuston luettelo" - -#: mod/directory.php:213 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: mod/dirfind.php:49 -#, php-format -msgid "People Search - %s" -msgstr "Käyttäjähaku - %s" - -#: mod/dirfind.php:60 -#, php-format -msgid "Forum Search - %s" -msgstr "Foorumihaku - %s" - -#: mod/follow.php:45 -msgid "The contact could not be added." -msgstr "Kontaktia ei voitu lisätä." - -#: mod/follow.php:73 -msgid "You already added this contact." -msgstr "Olet jo lisännyt tämän kontaktin." - -#: mod/follow.php:83 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Diaspora -tuki ei ole käytössä. Kontaktia ei voi lisätä." - -#: mod/follow.php:90 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatus -tuki ei ole käytössä. Kontaktia ei voi lisätä." - -#: mod/follow.php:97 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "Verkkotyyppiä ei voitu havaita. Kontaktia ei voitu lisätä." - -#: mod/follow.php:149 mod/dfrn_request.php:647 -msgid "Please answer the following:" -msgstr "Vastaa seuraavaan:" - -#: mod/follow.php:150 mod/dfrn_request.php:648 -#, php-format -msgid "Does %s know you?" -msgstr "Tunteeko %s sinut?" - -#: mod/follow.php:151 mod/dfrn_request.php:649 -msgid "Add a personal note:" -msgstr "Lisää oma merkintä:" - -#: mod/lostpass.php:27 +#: mod/lostpass.php:40 msgid "No valid account found." msgstr "Voimassa olevaa tiliä ei löytynyt." -#: mod/lostpass.php:39 +#: mod/lostpass.php:52 msgid "Password reset request issued. Check your email." msgstr "Salasanan nollauspyyntö lähetetty. Tarkista sähköpostisi." -#: mod/lostpass.php:45 +#: mod/lostpass.php:58 #, php-format msgid "" "\n" @@ -2730,7 +113,7 @@ msgid "" "\t\tissued this request." msgstr "" -#: mod/lostpass.php:56 +#: mod/lostpass.php:69 #, php-format msgid "" "\n" @@ -2747,66 +130,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "" -#: mod/lostpass.php:73 +#: mod/lostpass.php:84 #, php-format msgid "Password reset requested at %s" msgstr "Salasanan nollauspyyntö kohteessa %s" -#: mod/lostpass.php:89 +#: mod/lostpass.php:100 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Pyyntöä ei voitu vahvistaa. (Saatoit lähettää pyyntöä aikaisemmin.) Salasanan nollaus epäonnistui." -#: mod/lostpass.php:102 +#: mod/lostpass.php:113 msgid "Request has expired, please make a new one." msgstr "Pyyntö on vanhentunut, tehkää uusi pyyntö." -#: mod/lostpass.php:117 +#: mod/lostpass.php:128 msgid "Forgot your Password?" msgstr "Unohditko salasanasi?" -#: mod/lostpass.php:118 +#: mod/lostpass.php:129 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Syötä sähköpostiosoitteesi salasanan nollausta varten. Lisäohjeet lähetetään sähköpostitse." -#: mod/lostpass.php:119 src/Module/Login.php:315 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " msgstr "Lempinimi tai sähköposti:" -#: mod/lostpass.php:120 +#: mod/lostpass.php:131 msgid "Reset" msgstr "Nollaus" -#: mod/lostpass.php:136 src/Module/Login.php:327 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 msgid "Password Reset" msgstr "Salasanan nollaus" -#: mod/lostpass.php:137 +#: mod/lostpass.php:147 msgid "Your password has been reset as requested." msgstr "Salasanasi on nollattu pyynnöstäsi." -#: mod/lostpass.php:138 +#: mod/lostpass.php:148 msgid "Your new password is" msgstr "Uusi salasanasi on" -#: mod/lostpass.php:139 +#: mod/lostpass.php:149 msgid "Save or copy your new password - and then" msgstr "Tallenna tai kopioi uusi salasanasi, ja sitten" -#: mod/lostpass.php:140 +#: mod/lostpass.php:150 msgid "click here to login" msgstr "kirjaudu klikkaamalla tästä" -#: mod/lostpass.php:141 +#: mod/lostpass.php:151 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Salsanaa voi vaihtaa asetussivulta kirjautumisen jälkeen." -#: mod/lostpass.php:149 +#: mod/lostpass.php:155 +msgid "Your password has been reset." +msgstr "" + +#: mod/lostpass.php:158 #, php-format msgid "" "\n" @@ -2817,7 +204,7 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:155 +#: mod/lostpass.php:164 #, php-format msgid "" "\n" @@ -2831,5976 +218,2670 @@ msgid "" "\t\t" msgstr "\n\t\t\tKäyttäjätilisi tiedot:\n\n\t\t\tSivuston osoite:\t%1$s\n\t\t\tKäyttäjätunnus:\t%2$s\n\t\t\tSalasana:\t%3$s\n\n\t\t\tVoit vaihtaa salasanasi kirjautumisen jälkeen asetussivulta.\n\t\t" -#: mod/lostpass.php:169 +#: mod/lostpass.php:176 #, php-format msgid "Your password has been changed at %s" msgstr "Salasanasi on vaihdettu sivustolla %s" -#: mod/babel.php:22 -msgid "Source input" -msgstr "" - -#: mod/babel.php:28 -msgid "BBCode::toPlaintext" -msgstr "BBCode::toPlaintext" - -#: mod/babel.php:34 -msgid "BBCode::convert (raw HTML)" -msgstr "BBCode::convert (raaka HTML)" - -#: mod/babel.php:39 -msgid "BBCode::convert" -msgstr "BBCode::convert" - -#: mod/babel.php:45 -msgid "BBCode::convert => HTML::toBBCode" -msgstr "BBCode::convert => HTML::toBBCode" - -#: mod/babel.php:51 -msgid "BBCode::toMarkdown" -msgstr "BBCode::toMarkdown" - -#: mod/babel.php:57 -msgid "BBCode::toMarkdown => Markdown::convert" -msgstr "BBCode::toMarkdown => Markdown::convert" - -#: mod/babel.php:63 -msgid "BBCode::toMarkdown => Markdown::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::toBBCode" - -#: mod/babel.php:69 -msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" - -#: mod/babel.php:76 -msgid "Source input \\x28Diaspora format\\x29" -msgstr "" - -#: mod/babel.php:82 -msgid "Markdown::toBBCode" -msgstr "Markdown::toBBCode" - -#: mod/babel.php:89 -msgid "Raw HTML input" -msgstr "Raaka HTML-syöte" - -#: mod/babel.php:94 -msgid "HTML Input" -msgstr "HTML-syöte" - -#: mod/babel.php:100 -msgid "HTML::toBBCode" -msgstr "HTML::toBBCode" - -#: mod/babel.php:106 -msgid "HTML::toPlaintext" -msgstr "HTML::toPlaintext" - -#: mod/babel.php:114 -msgid "Source text" -msgstr "Lähdeteksti" - -#: mod/babel.php:115 -msgid "BBCode" -msgstr "BBCode" - -#: mod/babel.php:116 -msgid "Markdown" -msgstr "Markdown" - -#: mod/babel.php:117 -msgid "HTML" -msgstr "HTML" - -#: mod/friendica.php:77 -msgid "This is Friendica, version" -msgstr "Tämä on Friendica, versio" - -#: mod/friendica.php:78 -msgid "running at web location" -msgstr "käynnissä osoitteessa" - -#: mod/friendica.php:82 -msgid "" -"Please visit Friendi.ca to learn more " -"about the Friendica project." -msgstr "Vieraile osoitteessa Friendi.ca saadaksesi lisätietoja Friendica- projektista." - -#: mod/friendica.php:86 -msgid "Bug reports and issues: please visit" -msgstr "Bugiraportit ja kysymykset: vieraile osoitteessa" - -#: mod/friendica.php:86 -msgid "the bugtracker at github" -msgstr "githubin bugtrackeri" - -#: mod/friendica.php:89 -msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -msgstr "Ehdotukset ja palaute: lähetä sähköposti osoitteeseen \"info\" at \"friendi - piste - ca" - -#: mod/friendica.php:103 -msgid "Installed addons/apps:" -msgstr "Asennettu lisäosat/sovellukset:" - -#: mod/friendica.php:117 -msgid "No installed addons/apps" -msgstr "Ei asennettuja lisäosia/sovelluksia" - -#: mod/friendica.php:122 -#, php-format -msgid "Read about the Terms of Service of this node." -msgstr "Lue tämän solmun käyttöehdot." - -#: mod/friendica.php:127 -msgid "On this server the following remote servers are blocked." -msgstr "Tällä palvelimella seuraavat etäpalvelimet ovat estetty." - -#: mod/friendica.php:128 mod/admin.php:357 mod/admin.php:375 -#: mod/dfrn_request.php:347 src/Model/Contact.php:1281 -msgid "Blocked domain" -msgstr "Estetty verkkotunnus" - -#: mod/friendica.php:128 mod/admin.php:358 mod/admin.php:376 -msgid "Reason for the block" -msgstr "Eston syy" - -#: mod/invite.php:33 -msgid "Total invitation limit exceeded." -msgstr "Kutsuraja ylitetty." - -#: mod/invite.php:55 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Virheellinen sähköpostiosoite." - -#: mod/invite.php:87 -msgid "Please join us on Friendica" -msgstr "Tervetuloa Friendicaan" - -#: mod/invite.php:96 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Kutsuraja ylitetty. Ota yhteyttä ylläpitäjään." - -#: mod/invite.php:100 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Viestin toimitus epäonnistui." - -#: mod/invite.php:104 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d viesti lähetetty." -msgstr[1] "%d viestiä lähetetty." - -#: mod/invite.php:122 -msgid "You have no more invitations available" -msgstr "Sinulla ei ole kutsuja jäljellä" - -#: mod/invite.php:130 -#, 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 "" - -#: mod/invite.php:132 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Hyväksyäksesi tämän kutsun, rekisteröidy sivustolla %s tai millä tahansa muulla Friendica -sivustolla." - -#: mod/invite.php:133 -#, 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 "" - -#: mod/invite.php:137 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "" - -#: mod/invite.php:141 -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 "" - -#: mod/invite.php:140 -#, php-format -msgid "To accept this invitation, please visit and register at %s." -msgstr "Hyväksyäksesi tämän kutsun, rekisteröidy sivustolla %s." - -#: mod/invite.php:147 -msgid "Send invitations" -msgstr "Lähetä kutsut" - -#: mod/invite.php:148 -msgid "Enter email addresses, one per line:" -msgstr "Syötä sähköpostiosoitteet, yksi riviä kohden:" - -#: mod/invite.php:149 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "" - -#: mod/invite.php:151 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "" - -#: mod/invite.php:151 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Kun olet rekisteröitynyt, lähetä minulle kaverikutsun profiilisivuni kautta:" - -#: mod/invite.php:153 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendi.ca" -msgstr "" - -#: mod/crepair.php:87 -msgid "Contact settings applied." -msgstr "Kontaktiasetukset tallennettu." - -#: mod/crepair.php:89 -msgid "Contact update failed." -msgstr "Kontaktipäivitys epäonnistui." - -#: mod/crepair.php:114 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "VAROITUS: Tämä on erittäin vaativaa ja jos kirjoitat virheellisiä tietoja, viestintäsi tämän henkilön kanssa voi lakata toimimasta." - -#: mod/crepair.php:115 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Ole hyvä ja paina selaimesi 'Takaisin'-painiketta nyt, jos olet epävarma tämän sivun toiminnoista." - -#: mod/crepair.php:129 mod/crepair.php:131 -msgid "No mirroring" -msgstr "Ei peilausta" - -#: mod/crepair.php:129 -msgid "Mirror as forwarded posting" -msgstr "Peilaa välitettynä julkaisuna" - -#: mod/crepair.php:129 mod/crepair.php:131 -msgid "Mirror as my own posting" -msgstr "Peilaa omana julkaisuna" - -#: mod/crepair.php:144 -msgid "Return to contact editor" -msgstr "Palaa kontaktin muokkaamiseen" - -#: mod/crepair.php:146 -msgid "Refetch contact data" -msgstr "" - -#: mod/crepair.php:149 -msgid "Remote Self" -msgstr "" - -#: mod/crepair.php:152 -msgid "Mirror postings from this contact" -msgstr "Peilaa tämän kontaktin julkaisut" - -#: mod/crepair.php:154 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - -#: mod/crepair.php:158 mod/admin.php:494 mod/admin.php:1816 mod/admin.php:1827 -#: mod/admin.php:1840 mod/admin.php:1856 mod/settings.php:671 -#: mod/settings.php:697 -msgid "Name" -msgstr "Nimi" - -#: mod/crepair.php:159 -msgid "Account Nickname" -msgstr "Tilin lempinimi" - -#: mod/crepair.php:160 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - ohittaa Nimen/Nimimerkin" - -#: mod/crepair.php:161 -msgid "Account URL" -msgstr "Tilin URL-osoite" - -#: mod/crepair.php:162 -msgid "Friend Request URL" -msgstr "URL kaveripyyntöä varten" - -#: mod/crepair.php:163 -msgid "Friend Confirm URL" -msgstr "URL kaverin vahvistusta varten" - -#: mod/crepair.php:164 -msgid "Notification Endpoint URL" -msgstr "URL huomautuksia varten" - -#: mod/crepair.php:165 -msgid "Poll/Feed URL" -msgstr "URL äänestyksiä/syötteitä varten" - -#: mod/crepair.php:166 -msgid "New photo from this URL" -msgstr "Uusi kuva osoitteesta" - -#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:539 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s toivottaa tervetulleeksi ystävän %2$s" - -#: mod/help.php:48 -msgid "Help:" -msgstr "Ohje:" - -#: mod/help.php:54 view/theme/vier/theme.php:297 src/Content/Nav.php:134 -msgid "Help" -msgstr "Ohje" - -#: mod/help.php:63 index.php:317 -msgid "Page not found." -msgstr "Sivua ei löytynyt." - -#: mod/install.php:87 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica viestinnän palvelin - asetukset" - -#: mod/install.php:93 -msgid "Could not connect to database." -msgstr "Tietokantaan ei saada yhteyttä." - -#: mod/install.php:97 -msgid "Could not create table." -msgstr "Taulun luominen epäonnistui." - -#: mod/install.php:103 -msgid "Your Friendica site database has been installed." -msgstr "Friendica-sivustosi tietokanta on asennettu." - -#: mod/install.php:108 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Sinun on ehkä tuotava tiedosto \"database.sql\" manuaalisesti käyttämällä phpMyAdminia tai MySQL:ää." - -#: mod/install.php:109 mod/install.php:155 mod/install.php:267 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Lue tiedosto \"INSTALL.txt\"." - -#: mod/install.php:121 -msgid "Database already in use." -msgstr "Tietokanta on jo käytössä." - -#: mod/install.php:152 -msgid "System check" -msgstr "Järjestelmän tarkistus" - -#: mod/install.php:157 -msgid "Check again" -msgstr "Tarkista uudelleen" - -#: mod/install.php:177 -msgid "Database connection" -msgstr "Tietokantayhteys" - -#: mod/install.php:178 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Jotta voit asentaa Friendican, tarvitaan tieto siitä, miten tietokantaasi saa yhteyden." - -#: mod/install.php:179 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Ota yhteyttä web-palveluntarjoajaasi tai sivuston ylläpitäjään, jos sinulla on näihin asetuksiin liittyviä kysymyksiä." - -#: mod/install.php:180 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Alla määritetyn tietokannan tulisi olla jo olemassa. Jos se ei ole, luo se ennen kuin jatkat." - -#: mod/install.php:184 -msgid "Database Server Name" -msgstr "Tietokannan palvelimen nimi" - -#: mod/install.php:185 -msgid "Database Login Name" -msgstr "Tietokannan käyttäjän nimi" - -#: mod/install.php:186 -msgid "Database Login Password" -msgstr "Tietokannan käyttäjän salasana" - -#: mod/install.php:186 -msgid "For security reasons the password must not be empty" -msgstr "Turvallisuussyistä salasanakenttä ei saa olla tyhjä" - -#: mod/install.php:187 -msgid "Database Name" -msgstr "Tietokannan nimi" - -#: mod/install.php:188 mod/install.php:228 -msgid "Site administrator email address" -msgstr "Sivuston ylläpitäjän sähköpostiosoite" - -#: mod/install.php:188 mod/install.php:228 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Tilisi sähköpostiosoitteen on vastattava tätä, jotta voit käyttää ylläpitokäyttöliittymää." - -#: mod/install.php:192 mod/install.php:231 -msgid "Please select a default timezone for your website" -msgstr "Valitse oletusaikavyöhyke sivustollesi" - -#: mod/install.php:218 -msgid "Site settings" -msgstr "Sivuston asetukset" - -#: mod/install.php:232 -msgid "System Language:" -msgstr "Järjestelmän kieli:" - -#: mod/install.php:232 -msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." -msgstr "Valitse Friendica-sivustosi oletuskieli." - -#: mod/install.php:248 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Tietokannan asetustiedostoa \".htconfig.php\" ei pystytty kirjoittamaan. Käytä mukaanliitettyä tekstiä luomaan asetustiedosto web-palvelimesi juureen." - -#: mod/install.php:265 -msgid "

    What next

    " -msgstr "

    Mitä seuraavaksi

    " - -#: mod/install.php:266 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"worker." -msgstr "TÄRKEÄÄ: Sinun pitää asettaa [manuaalisesti] ajastettu tehtävä Workerille." - -#: mod/install.php:269 -#, 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 "" - -#: mod/message.php:30 src/Content/Nav.php:199 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:319 msgid "New Message" msgstr "Uusi viesti" -#: mod/message.php:77 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 +msgid "No recipient selected." +msgstr "Vastaanottaja puuttuu." + +#: mod/message.php:87 msgid "Unable to locate contact information." msgstr "Kontaktin tiedot ei löydy." -#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:196 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 +msgid "Message could not be sent." +msgstr "Viestiä ei voitu lähettää." + +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 +msgid "Message collection failure." +msgstr "Viestin noutaminen epäonnistui." + +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 +msgid "Discard" +msgstr "Hylkää" + +#: mod/message.php:135 src/Content/Nav.php:316 view/theme/frio/theme.php:241 msgid "Messages" msgstr "Viestit" -#: mod/message.php:136 -msgid "Do you really want to delete this message?" -msgstr "Haluatko varmasti poistaa viestin?" +#: mod/message.php:148 +msgid "Conversation not found." +msgstr "" -#: mod/message.php:152 -msgid "Message deleted." -msgstr "Viesti poistettu." +#: mod/message.php:153 +msgid "Message was not deleted." +msgstr "" -#: mod/message.php:166 -msgid "Conversation removed." -msgstr "Keskustelu poistettu." +#: mod/message.php:168 +msgid "Conversation was not removed." +msgstr "" -#: mod/message.php:272 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 +msgid "Please enter a link URL:" +msgstr "Lisää URL-linkki:" + +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 +msgid "Send Private Message" +msgstr "Lähetä yksityisviesti" + +#: mod/message.php:191 mod/message.php:346 +msgid "To:" +msgstr "Vastaanottaja:" + +#: mod/message.php:192 mod/message.php:347 +msgid "Subject:" +msgstr "Aihe:" + +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 +msgid "Your message:" +msgstr "Viestisi:" + +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:360 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "Lähetä kuva" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "Lisää linkki" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1289 +#: src/Content/Conversation.php:390 src/Content/Conversation.php:734 +#: src/Module/Item/Compose.php:205 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:557 +msgid "Please wait" +msgstr "Odota" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:700 +#: mod/photos.php:817 mod/photos.php:1095 mod/photos.php:1136 +#: mod/photos.php:1192 mod/photos.php:1266 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:339 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:145 +#: src/Module/Install.php:234 src/Module/Install.php:274 +#: src/Module/Install.php:309 src/Module/Invite.php:178 +#: src/Module/Item/Compose.php:189 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:230 src/Object/Post.php:1070 +#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171 +#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Lähetä" + +#: mod/message.php:223 msgid "No messages." msgstr "Ei viestejä." -#: mod/message.php:311 +#: mod/message.php:279 msgid "Message not available." msgstr "Viesti ei saatavilla." -#: mod/message.php:378 +#: mod/message.php:323 msgid "Delete message" msgstr "Poista viesti" -#: mod/message.php:380 mod/message.php:481 +#: mod/message.php:325 mod/message.php:456 msgid "D, d M Y - g:i A" msgstr "D, j.n.Y - H:i" -#: mod/message.php:395 mod/message.php:478 +#: mod/message.php:340 mod/message.php:453 msgid "Delete conversation" msgstr "Poista keskustelu" -#: mod/message.php:397 +#: mod/message.php:342 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "" -#: mod/message.php:401 +#: mod/message.php:345 msgid "Send Reply" msgstr "Lähetä vastaus" -#: mod/message.php:452 +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "Tuntematon lähettäjä - %s" -#: mod/message.php:454 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "Sinä ja %s" -#: mod/message.php:456 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "%s ja sinä" -#: mod/message.php:484 +#: mod/message.php:459 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d viesti" msgstr[1] "%d viestiä" -#: mod/admin.php:107 -msgid "Theme settings updated." -msgstr "Teeman asetukset päivitetty." - -#: mod/admin.php:180 src/Content/Nav.php:175 -msgid "Information" -msgstr "Tietoja" - -#: mod/admin.php:181 -msgid "Overview" -msgstr "Yleiskatsaus" - -#: mod/admin.php:182 mod/admin.php:717 -msgid "Federation Statistics" -msgstr "Liiton tilastotiedot" - -#: mod/admin.php:183 -msgid "Configuration" -msgstr "Kokoonpano" - -#: mod/admin.php:184 mod/admin.php:1356 -msgid "Site" -msgstr "Sivusto" - -#: mod/admin.php:185 mod/admin.php:1285 mod/admin.php:1822 mod/admin.php:1838 -msgid "Users" -msgstr "Käyttäjät" - -#: mod/admin.php:186 mod/admin.php:1938 mod/admin.php:1998 mod/settings.php:87 -msgid "Addons" -msgstr "Lisäosat" - -#: mod/admin.php:187 mod/admin.php:2208 mod/admin.php:2252 -msgid "Themes" -msgstr "Teemat" - -#: mod/admin.php:188 mod/settings.php:65 -msgid "Additional features" -msgstr "Lisäominaisuuksia" - -#: mod/admin.php:189 mod/admin.php:304 mod/register.php:291 -#: src/Content/Nav.php:178 src/Module/Tos.php:70 -msgid "Terms of Service" -msgstr "Käyttöehdot" - -#: mod/admin.php:190 -msgid "Database" -msgstr "Tietokanta" - -#: mod/admin.php:191 -msgid "DB updates" -msgstr "Tietokannan päivitykset" - -#: mod/admin.php:192 mod/admin.php:752 -msgid "Inspect Queue" -msgstr "Tarkista jono" - -#: mod/admin.php:193 -msgid "Tools" -msgstr "Työkalut" - -#: mod/admin.php:194 -msgid "Contact Blocklist" -msgstr "Kontaktien estolista" - -#: mod/admin.php:195 mod/admin.php:366 -msgid "Server Blocklist" -msgstr "Palvelimien estolista" - -#: mod/admin.php:196 mod/admin.php:525 -msgid "Delete Item" -msgstr "Poista kohde" - -#: mod/admin.php:197 mod/admin.php:198 mod/admin.php:2326 -msgid "Logs" -msgstr "Lokit" - -#: mod/admin.php:199 mod/admin.php:2393 -msgid "View Logs" -msgstr "Katso lokit" - -#: mod/admin.php:201 -msgid "Diagnostics" -msgstr "Diagnostiikka" - -#: mod/admin.php:202 -msgid "PHP Info" -msgstr "PHP tietoja" - -#: mod/admin.php:203 -msgid "probe address" -msgstr "" - -#: mod/admin.php:204 -msgid "check webfinger" -msgstr "Tarkista webfinger" - -#: mod/admin.php:223 src/Content/Nav.php:218 -msgid "Admin" -msgstr "Ylläpitäjä" - -#: mod/admin.php:224 -msgid "Addon Features" -msgstr "Lisäosaominaisuudet" - -#: mod/admin.php:225 -msgid "User registrations waiting for confirmation" -msgstr "Käyttäjärekisteröinnit odottavat hyväksyntää" - -#: mod/admin.php:303 mod/admin.php:365 mod/admin.php:482 mod/admin.php:524 -#: mod/admin.php:716 mod/admin.php:751 mod/admin.php:847 mod/admin.php:1355 -#: mod/admin.php:1821 mod/admin.php:1937 mod/admin.php:1997 mod/admin.php:2207 -#: mod/admin.php:2251 mod/admin.php:2325 mod/admin.php:2392 -msgid "Administration" -msgstr "Ylläpito" - -#: mod/admin.php:305 -msgid "Display Terms of Service" -msgstr "Näytä käyttöehdot" - -#: mod/admin.php:305 -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 "" - -#: mod/admin.php:306 -msgid "Display Privacy Statement" -msgstr "Näytä tietosuojalausunto" - -#: mod/admin.php:306 -#, php-format -msgid "" -"Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." -msgstr "" - -#: mod/admin.php:307 -msgid "Privacy Statement Preview" -msgstr "" - -#: mod/admin.php:309 -msgid "The Terms of Service" -msgstr "Käyttöehdot" - -#: mod/admin.php:309 -msgid "" -"Enter the Terms of Service for your node here. You can use BBCode. Headers " -"of sections should be [h2] and below." -msgstr "" - -#: mod/admin.php:357 -msgid "The blocked domain" -msgstr "Estetty verkkotunnus" - -#: mod/admin.php:358 mod/admin.php:371 -msgid "The reason why you blocked this domain." -msgstr "Verkkotunnuksen estosyy." - -#: mod/admin.php:359 -msgid "Delete domain" -msgstr "Poista verkkotunnus" - -#: mod/admin.php:359 -msgid "Check to delete this entry from the blocklist" -msgstr "Laita rasti poistaaksesi kohde estolistalta" - -#: mod/admin.php:367 -msgid "" -"This page can be used to define a black list of servers from the federated " -"network that are not allowed to interact with your node. For all entered " -"domains you should also give a reason why you have blocked the remote " -"server." -msgstr "" - -#: mod/admin.php:368 -msgid "" -"The list of blocked servers will be made publically available on the " -"/friendica page so that your users and people investigating communication " -"problems can find the reason easily." -msgstr "" - -#: mod/admin.php:369 -msgid "Add new entry to block list" -msgstr "Lisää uusi kohde estolistaan" - -#: mod/admin.php:370 -msgid "Server Domain" -msgstr "Palvelimen verkkotunnus" - -#: mod/admin.php:370 -msgid "" -"The domain of the new server to add to the block list. Do not include the " -"protocol." -msgstr "" - -#: mod/admin.php:371 -msgid "Block reason" -msgstr "Estosyy" - -#: mod/admin.php:372 -msgid "Add Entry" -msgstr "Lisää merkintä" - -#: mod/admin.php:373 -msgid "Save changes to the blocklist" -msgstr "Tallenna muutoksia estolistaan" - -#: mod/admin.php:374 -msgid "Current Entries in the Blocklist" -msgstr "Nykyinen estolista" - -#: mod/admin.php:377 -msgid "Delete entry from blocklist" -msgstr "Poista kohde estolistalta" - -#: mod/admin.php:380 -msgid "Delete entry from blocklist?" -msgstr "Poista kohde estolistalta?" - -#: mod/admin.php:406 -msgid "Server added to blocklist." -msgstr "Palvelin lisätty estolistalle" - -#: mod/admin.php:422 -msgid "Site blocklist updated." -msgstr "Sivuston estolista päivitetty." - -#: mod/admin.php:445 src/Core/Console/GlobalCommunityBlock.php:72 -msgid "The contact has been blocked from the node" -msgstr "Kontakti on estetty tällä solmulla" - -#: mod/admin.php:447 src/Core/Console/GlobalCommunityBlock.php:69 -#, php-format -msgid "Could not find any contact entry for this URL (%s)" -msgstr "" - -#: mod/admin.php:454 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s kontakti poistettu estolistalta" -msgstr[1] "%s kontaktia poistettu estolistalta" - -#: mod/admin.php:483 -msgid "Remote Contact Blocklist" -msgstr "Etäkontakti estolista" - -#: mod/admin.php:484 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "" - -#: mod/admin.php:485 -msgid "Block Remote Contact" -msgstr "Estä etäkontakti" - -#: mod/admin.php:486 mod/admin.php:1824 -msgid "select all" -msgstr "valitse kaikki" - -#: mod/admin.php:487 -msgid "select none" -msgstr "älä valitse mitään" - -#: mod/admin.php:490 -msgid "No remote contact is blocked from this node." -msgstr "" - -#: mod/admin.php:492 -msgid "Blocked Remote Contacts" -msgstr "Estetty etäkontaktit" - -#: mod/admin.php:493 -msgid "Block New Remote Contact" -msgstr "Estä uusi etäkontakti" - -#: mod/admin.php:494 -msgid "Photo" -msgstr "Kuva" - -#: mod/admin.php:494 mod/profiles.php:394 -msgid "Address" -msgstr "Osoite" - -#: mod/admin.php:502 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "Yhteensä %s estetty kontakti" -msgstr[1] "Yhteensä %s estettyjä kontakteja" - -#: mod/admin.php:504 -msgid "URL of the remote contact to block." -msgstr "Estettävän etäkontaktin URL-osoite" - -#: mod/admin.php:526 -msgid "Delete this Item" -msgstr "Poista tämä kohde" - -#: mod/admin.php:527 -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 "" - -#: mod/admin.php:528 -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 "" - -#: mod/admin.php:529 -msgid "GUID" -msgstr "GUID" - -#: mod/admin.php:529 -msgid "The GUID of the item you want to delete." -msgstr "Poistettavan kohteen GUID." - -#: mod/admin.php:563 -msgid "Item marked for deletion." -msgstr "Kohde merkitty poistettavaksi." - -#: mod/admin.php:634 -msgid "unknown" -msgstr "tuntematon" - -#: mod/admin.php:710 -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 "" - -#: mod/admin.php:711 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "" - -#: mod/admin.php:723 -#, php-format -msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " -"following platforms:" -msgstr "Tällä hetkellä tämä solmu havaitsee %d muita solmuja joissa %d rekisteröityneitä käyttäjiä. Tarkemmat tiedot:" - -#: mod/admin.php:754 -msgid "ID" -msgstr "" - -#: mod/admin.php:755 -msgid "Recipient Name" -msgstr "Vastaanottajan nimi" - -#: mod/admin.php:756 -msgid "Recipient Profile" -msgstr "Vastaanottajan profiili" - -#: mod/admin.php:757 view/theme/frio/theme.php:266 -#: src/Core/NotificationsManager.php:178 src/Content/Nav.php:183 -msgid "Network" -msgstr "Uutisvirta" - -#: mod/admin.php:758 -msgid "Created" -msgstr "Luotu" - -#: mod/admin.php:759 -msgid "Last Tried" -msgstr "Viimeksi yritetty" - -#: mod/admin.php:760 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "" - -#: mod/admin.php:784 -#, 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 "" - -#: mod/admin.php:791 -#, 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 "" - -#: mod/admin.php:801 -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 "Tietokannan päivitys epäonnistui. Suorita komento \"php bin/console.php dbstructure update\" komentoriviltä ja lue mahdolliset virheviestit." - -#: mod/admin.php:807 -msgid "The worker was never executed. Please check your database structure!" -msgstr "Workeriä ei ole otettu käyttöön. Tarkista tietokantasi rakenne!" - -#: mod/admin.php:810 -#, php-format -msgid "" -"The last worker execution was on %s UTC. This is older than one hour. Please" -" check your crontab settings." -msgstr "Viimeisin worker -käynnistys tapahtui klo %s UTC, eli yli tunti sitten. Tarkista crontab -asetukset." - -#: mod/admin.php:815 -msgid "Normal Account" -msgstr "Perustili" - -#: mod/admin.php:816 -msgid "Automatic Follower Account" -msgstr "Automaattinen seuraajatili" - -#: mod/admin.php:817 -msgid "Public Forum Account" -msgstr "Julkinen foorumitili" - -#: mod/admin.php:818 -msgid "Automatic Friend Account" -msgstr "Automaattinen kaveritili" - -#: mod/admin.php:819 -msgid "Blog Account" -msgstr "Blogitili" - -#: mod/admin.php:820 -msgid "Private Forum Account" -msgstr "Yksityinen foorumitili" - -#: mod/admin.php:842 -msgid "Message queues" -msgstr "Viestijonot" - -#: mod/admin.php:848 -msgid "Summary" -msgstr "Yhteenveto" - -#: mod/admin.php:850 -msgid "Registered users" -msgstr "Rekisteröityneet käyttäjät" - -#: mod/admin.php:852 -msgid "Pending registrations" -msgstr "Vireillä olevat rekisteröinnit" - -#: mod/admin.php:853 -msgid "Version" -msgstr "Versio" - -#: mod/admin.php:858 -msgid "Active addons" -msgstr "Käytössäolevat lisäosat" - -#: mod/admin.php:889 -msgid "Can not parse base url. Must have at least ://" -msgstr "Ei voitu jäsentää perusosoitetta. Täytyy sisältää ainakin ://" - -#: mod/admin.php:1220 -msgid "Site settings updated." -msgstr "Sivuston asetukset päivitettiin." - -#: mod/admin.php:1247 mod/settings.php:897 -msgid "No special theme for mobile devices" -msgstr "Ei mobiiliteemaa" - -#: mod/admin.php:1276 -msgid "No community page for local users" -msgstr "" - -#: mod/admin.php:1277 -msgid "No community page" -msgstr "Ei yhteisösivua" - -#: mod/admin.php:1278 -msgid "Public postings from users of this site" -msgstr "Julkiset julkaisut tämän sivuston käyttäjiltä" - -#: mod/admin.php:1279 -msgid "Public postings from the federated network" -msgstr "Julkiset julkaisut liittoutuneelta verkolta" - -#: mod/admin.php:1280 -msgid "Public postings from local users and the federated network" -msgstr "Julkiset julkaisut tältä sivustolta ja liittoutuneelta verkolta" - -#: mod/admin.php:1286 -msgid "Users, Global Contacts" -msgstr "Käyttäjät, maailmanlaajuiset kontaktit" - -#: mod/admin.php:1287 -msgid "Users, Global Contacts/fallback" -msgstr "" - -#: mod/admin.php:1291 -msgid "One month" -msgstr "Yksi kuukausi" - -#: mod/admin.php:1292 -msgid "Three months" -msgstr "Kolme kuukautta" - -#: mod/admin.php:1293 -msgid "Half a year" -msgstr "Puoli vuotta" - -#: mod/admin.php:1294 -msgid "One year" -msgstr "Yksi vuosi" - -#: mod/admin.php:1299 -msgid "Multi user instance" -msgstr "Monen käyttäjän instanssi" - -#: mod/admin.php:1325 -msgid "Closed" -msgstr "Suljettu" - -#: mod/admin.php:1326 -msgid "Requires approval" -msgstr "Edellyttää hyväksyntää" - -#: mod/admin.php:1327 -msgid "Open" -msgstr "Avoin" - -#: mod/admin.php:1331 -msgid "No SSL policy, links will track page SSL state" -msgstr "" - -#: mod/admin.php:1332 -msgid "Force all links to use SSL" -msgstr "Pakota kaikki linkit käyttämään SSL-yhteyttä" - -#: mod/admin.php:1333 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" - -#: mod/admin.php:1337 -msgid "Don't check" -msgstr "Älä tarkista" - -#: mod/admin.php:1338 -msgid "check the stable version" -msgstr "" - -#: mod/admin.php:1339 -msgid "check the development version" -msgstr "" - -#: mod/admin.php:1358 -msgid "Republish users to directory" -msgstr "" - -#: mod/admin.php:1359 mod/register.php:267 -msgid "Registration" -msgstr "Rekisteröityminen" - -#: mod/admin.php:1360 -msgid "File upload" -msgstr "Tiedoston lataus" - -#: mod/admin.php:1361 -msgid "Policies" -msgstr "Käytännöt" - -#: mod/admin.php:1363 -msgid "Auto Discovered Contact Directory" -msgstr "" - -#: mod/admin.php:1364 -msgid "Performance" -msgstr "Suoritus" - -#: mod/admin.php:1365 -msgid "Worker" -msgstr "Worker" - -#: mod/admin.php:1366 -msgid "Message Relay" -msgstr "Viestirele" - -#: mod/admin.php:1367 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" - -#: mod/admin.php:1370 -msgid "Site name" -msgstr "Sivuston nimi" - -#: mod/admin.php:1371 -msgid "Host name" -msgstr "Palvelimen nimi" - -#: mod/admin.php:1372 -msgid "Sender Email" -msgstr "Lähettäjän sähköposti" - -#: mod/admin.php:1372 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "Lähettäjän sähköpostiosoite palvelimen ilmoitussähköposteissa." - -#: mod/admin.php:1373 -msgid "Banner/Logo" -msgstr "Banneri/logo" - -#: mod/admin.php:1374 -msgid "Shortcut icon" -msgstr "Pikakuvake" - -#: mod/admin.php:1374 -msgid "Link to an icon that will be used for browsers." -msgstr "Linkki kuvakkeeseen jota selaimet saa käyttää." - -#: mod/admin.php:1375 -msgid "Touch icon" -msgstr "Kosketusnäyttökuvake" - -#: mod/admin.php:1375 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "Linkki kuvakkeeseen jota tabletit ja matkapuhelimet saa käyttää." - -#: mod/admin.php:1376 -msgid "Additional Info" -msgstr "Lisätietoja" - -#: mod/admin.php:1376 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/servers." -msgstr "" - -#: mod/admin.php:1377 -msgid "System language" -msgstr "Järjestelmän kieli" - -#: mod/admin.php:1378 -msgid "System theme" -msgstr "Järjestelmäteema" - -#: mod/admin.php:1378 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: mod/admin.php:1379 -msgid "Mobile system theme" -msgstr "Mobiili järjestelmäteema" - -#: mod/admin.php:1379 -msgid "Theme for mobile devices" -msgstr "Mobiiliteema" - -#: mod/admin.php:1380 -msgid "SSL link policy" -msgstr "SSL-linkkikäytäntö" - -#: mod/admin.php:1380 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Määrittää pakotetaanko tuotetut linkit käyttämään SSL-yhteyttä." - -#: mod/admin.php:1381 -msgid "Force SSL" -msgstr "Pakoita SSL-yhteyden käyttöä" - -#: mod/admin.php:1381 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "" - -#: mod/admin.php:1382 -msgid "Hide help entry from navigation menu" -msgstr "" - -#: mod/admin.php:1382 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "" - -#: mod/admin.php:1383 -msgid "Single user instance" -msgstr "Yksittäisen käyttäjän instanssi" - -#: mod/admin.php:1383 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "" - -#: mod/admin.php:1384 -msgid "Maximum image size" -msgstr "Suurin kuvakoko" - -#: mod/admin.php:1384 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Ladattavan kuvatiedoston enimmäiskoko tavuina. Oletusarvo on 0, eli ei enimmäiskokoa." - -#: mod/admin.php:1385 -msgid "Maximum image length" -msgstr "Suurin kuvapituus" - -#: mod/admin.php:1385 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Ladattavan kuvatiedoston enimmäispituus pikseleinä. Oletusarvo on -1, eli ei enimmäispituutta." - -#: mod/admin.php:1386 -msgid "JPEG image quality" -msgstr "JPEG-kuvanlaatu" - -#: mod/admin.php:1386 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Ladatut JPEG-kuvat tallennetaan tällä laatuasetuksella [0-100]. Oletus on 100, eli korkein laatu." - -#: mod/admin.php:1388 -msgid "Register policy" -msgstr "Rekisteröintipolitiikka" - -#: mod/admin.php:1389 -msgid "Maximum Daily Registrations" -msgstr "Päivittäinen rekisteröitymisraja" - -#: mod/admin.php:1389 -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 "Mikäli rekisteröityminen on sallittu, tämä asettaa enimmäismäärä uusia rekisteröitymisiä päivässä. Jos reksiteröityminen ei ole sallittu, tällä asetuksella ei ole vaikutusta." - -#: mod/admin.php:1390 -msgid "Register text" -msgstr "Rekisteröitymisteksti" - -#: mod/admin.php:1390 -msgid "" -"Will be displayed prominently on the registration page. You can use BBCode " -"here." -msgstr "Näkyvästi esillä rekisteröitymissivulla. Voit käyttää BBCodeia." - -#: mod/admin.php:1391 -msgid "Accounts abandoned after x days" -msgstr "Käyttäjätilit hylätään X päivän jälkeen" - -#: mod/admin.php:1391 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: mod/admin.php:1392 -msgid "Allowed friend domains" -msgstr "Sallittuja kaveri-verkkotunnuksia" - -#: mod/admin.php:1392 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "" - -#: mod/admin.php:1393 -msgid "Allowed email domains" -msgstr "Sallittuja sähköposti-verkkotunnuksia" - -#: mod/admin.php:1393 -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 "" - -#: mod/admin.php:1394 -msgid "No OEmbed rich content" -msgstr "" - -#: mod/admin.php:1394 -msgid "" -"Don't show the rich content (e.g. embedded PDF), except from the domains " -"listed below." -msgstr "" - -#: mod/admin.php:1395 -msgid "Allowed OEmbed domains" -msgstr "Sallittuja OEmbed -verkkotunnuksia" - -#: mod/admin.php:1395 -msgid "" -"Comma separated list of domains which oembed content is allowed to be " -"displayed. Wildcards are accepted." -msgstr "" - -#: mod/admin.php:1396 -msgid "Block public" -msgstr "Estä vierailijat" - -#: mod/admin.php:1396 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "" - -#: mod/admin.php:1397 -msgid "Force publish" -msgstr "" - -#: mod/admin.php:1397 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: mod/admin.php:1397 -msgid "Enabling this may violate privacy laws like the GDPR" -msgstr "" - -#: mod/admin.php:1398 -msgid "Global directory URL" -msgstr "Maailmanlaajuisen hakemiston URL-osoite" - -#: mod/admin.php:1398 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "" - -#: mod/admin.php:1399 -msgid "Private posts by default for new users" -msgstr "" - -#: mod/admin.php:1399 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "" - -#: mod/admin.php:1400 -msgid "Don't include post content in email notifications" -msgstr "Älä lisää julkaisun sisältö sähköposti-ilmoitukseen" - -#: mod/admin.php:1400 -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 "" - -#: mod/admin.php:1401 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "" - -#: mod/admin.php:1401 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "" - -#: mod/admin.php:1402 -msgid "Don't embed private images in posts" -msgstr "Älä upota yksityisiä kuvia julkaisuissa" - -#: mod/admin.php:1402 -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 "" - -#: mod/admin.php:1403 -msgid "Allow Users to set remote_self" -msgstr "" - -#: mod/admin.php:1403 -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 "" - -#: mod/admin.php:1404 -msgid "Block multiple registrations" -msgstr "" - -#: mod/admin.php:1404 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "" - -#: mod/admin.php:1405 -msgid "OpenID support" -msgstr "OpenID-tuki" - -#: mod/admin.php:1405 -msgid "OpenID support for registration and logins." -msgstr "OpenID-tuki rekisteröitymiseen ja kirjautumiseen" - -#: mod/admin.php:1406 -msgid "Fullname check" -msgstr "Koko nimi tarkistus" - -#: mod/admin.php:1406 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "" - -#: mod/admin.php:1407 -msgid "Community pages for visitors" -msgstr "Yhteisösivu vieraille" - -#: mod/admin.php:1407 -msgid "" -"Which community pages should be available for visitors. Local users always " -"see both pages." -msgstr "" - -#: mod/admin.php:1408 -msgid "Posts per user on community page" -msgstr "" - -#: mod/admin.php:1408 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "Enimmäismäärä julkaisuja käyttäjää kohden yhteisösivulla. (Ei koske maailmanlaajuista yhteisösivua.)" - -#: mod/admin.php:1409 -msgid "Enable OStatus support" -msgstr "Salli OStatus-tuki" - -#: mod/admin.php:1409 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "" - -#: mod/admin.php:1410 -msgid "Only import OStatus threads from our contacts" -msgstr "Ainoastaan tuo OStatus -ketjuja kontakteiltamme" - -#: mod/admin.php:1410 -msgid "" -"Normally we import every content from our OStatus contacts. With this option" -" we only store threads that are started by a contact that is known on our " -"system." -msgstr "" - -#: mod/admin.php:1411 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "OStatus-tuki voidaan ottaa käyttöön ainoastaan jos ketjuttaminen on jo otettu käyttöön." - -#: mod/admin.php:1413 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "Diaspora -tukea ei voitu ottaa käyttöön koska Friendica on asennettu alihakemistoon." - -#: mod/admin.php:1414 -msgid "Enable Diaspora support" -msgstr "Salli Diaspora-tuki" - -#: mod/admin.php:1414 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Ota käyttöön Diaspora-yhteensopivuus" - -#: mod/admin.php:1415 -msgid "Only allow Friendica contacts" -msgstr "Salli ainoastaan Friendica -kontakteja" - -#: mod/admin.php:1415 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Kaikkien kontaktien on käytettävä Friendica-protokollaa. Kaikki muut protokollat poistetaan käytöstä." - -#: mod/admin.php:1416 -msgid "Verify SSL" -msgstr "Vahvista SSL" - -#: mod/admin.php:1416 -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 "" - -#: mod/admin.php:1417 -msgid "Proxy user" -msgstr "Välityspalvelimen käyttäjä" - -#: mod/admin.php:1418 -msgid "Proxy URL" -msgstr "Välityspalvelimen osoite" - -#: mod/admin.php:1419 -msgid "Network timeout" -msgstr "Verkon aikakatkaisu" - -#: mod/admin.php:1419 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: mod/admin.php:1420 -msgid "Maximum Load Average" -msgstr "Kuorman enimmäiskeksiarvo" - -#: mod/admin.php:1420 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Järjestelmäkuormitus jolloin lähetys- ja kyselyprosessit lykätään (oletusarvo 50)." - -#: mod/admin.php:1421 -msgid "Maximum Load Average (Frontend)" -msgstr "Kuorman enimmäiskeskiarvo (Frontend)" - -#: mod/admin.php:1421 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Järjestelmäkuormitus jolloin Frontend poistetaan käytöstä (oletusarvo 50)." - -#: mod/admin.php:1422 -msgid "Minimal Memory" -msgstr "" - -#: mod/admin.php:1422 -msgid "" -"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " -"default 0 (deactivated)." -msgstr "" - -#: mod/admin.php:1423 -msgid "Maximum table size for optimization" -msgstr "Taulukon enimmäiskoko optimointia varten" - -#: mod/admin.php:1423 -msgid "" -"Maximum table size (in MB) for the automatic optimization. Enter -1 to " -"disable it." -msgstr "" - -#: mod/admin.php:1424 -msgid "Minimum level of fragmentation" -msgstr "" - -#: mod/admin.php:1424 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "" - -#: mod/admin.php:1426 -msgid "Periodical check of global contacts" -msgstr "" - -#: mod/admin.php:1426 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "" - -#: mod/admin.php:1427 -msgid "Days between requery" -msgstr "" - -#: mod/admin.php:1427 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "" - -#: mod/admin.php:1428 -msgid "Discover contacts from other servers" -msgstr "Etsi kontakteja muilta palvelimilta" - -#: mod/admin.php:1428 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." -msgstr "" - -#: mod/admin.php:1429 -msgid "Timeframe for fetching global contacts" -msgstr "" - -#: mod/admin.php:1429 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "" - -#: mod/admin.php:1430 -msgid "Search the local directory" -msgstr "Paikallisluettelohaku" - -#: mod/admin.php:1430 -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 "" - -#: mod/admin.php:1432 -msgid "Publish server information" -msgstr "Julkaise palvelintiedot" - -#: mod/admin.php:1432 -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 "" - -#: mod/admin.php:1434 -msgid "Check upstream version" -msgstr "" - -#: mod/admin.php:1434 -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 "" - -#: mod/admin.php:1435 -msgid "Suppress Tags" -msgstr "Piilota tunnisteet" - -#: mod/admin.php:1435 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Piilota tunnistelista julkaisun lopussa." - -#: mod/admin.php:1436 -msgid "Clean database" -msgstr "Siivoa tietokanta" - -#: mod/admin.php:1436 -msgid "" -"Remove old remote items, orphaned database records and old content from some" -" other helper tables." -msgstr "" - -#: mod/admin.php:1437 -msgid "Lifespan of remote items" -msgstr "" - -#: mod/admin.php:1437 -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 "" - -#: mod/admin.php:1438 -msgid "Lifespan of unclaimed items" -msgstr "" - -#: mod/admin.php:1438 -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 "" - -#: mod/admin.php:1439 -msgid "Path to item cache" -msgstr "" - -#: mod/admin.php:1439 -msgid "The item caches buffers generated bbcode and external images." -msgstr "" - -#: mod/admin.php:1440 -msgid "Cache duration in seconds" -msgstr "Välimuistin kesto sekunteina" - -#: mod/admin.php:1440 -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 "" - -#: mod/admin.php:1441 -msgid "Maximum numbers of comments per post" -msgstr "Julkaisun kommentiraja" - -#: mod/admin.php:1441 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: mod/admin.php:1442 -msgid "Temp path" -msgstr "Väliaikaistiedostojen polku" - -#: mod/admin.php:1442 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "Mikäli verkkopalvelimesi ei voi käyttää järjestelmän väliaikaistiedostojen polkua, syötä toinen polku tähän." - -#: mod/admin.php:1443 -msgid "Base path to installation" -msgstr "Asennuksen peruspolku" - -#: mod/admin.php:1443 -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 "" - -#: mod/admin.php:1444 -msgid "Disable picture proxy" -msgstr "" - -#: mod/admin.php:1444 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwidth." -msgstr "" - -#: mod/admin.php:1445 -msgid "Only search in tags" -msgstr "Tunnistehaku" - -#: mod/admin.php:1445 -msgid "On large systems the text search can slow down the system extremely." -msgstr "" - -#: mod/admin.php:1447 -msgid "New base url" -msgstr "Uusi perusosoite" - -#: mod/admin.php:1447 -msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." -msgstr "Vaihtaa tämän palvelimen perus-URL-osoitteen. Lähettää uudelleensijoitusviestit käyttäjien kaikille kontakteille Friendicassa ja Diasporassa*." - -#: mod/admin.php:1449 -msgid "RINO Encryption" -msgstr "RINO-salaus" - -#: mod/admin.php:1449 -msgid "Encryption layer between nodes." -msgstr "Salauskerros solmujen välillä." - -#: mod/admin.php:1449 -msgid "Enabled" -msgstr "Käytössä" - -#: mod/admin.php:1451 -msgid "Maximum number of parallel workers" -msgstr "Enimmäismäärä rinnakkaisia workereitä" - -#: mod/admin.php:1451 -msgid "" -"On shared hosters set this to 2. On larger systems, values of 10 are great. " -"Default value is 4." -msgstr "" - -#: mod/admin.php:1452 -msgid "Don't use 'proc_open' with the worker" -msgstr "" - -#: mod/admin.php:1452 -msgid "" -"Enable this if your system doesn't allow the use of 'proc_open'. This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of worker calls in your crontab." -msgstr "" - -#: mod/admin.php:1453 -msgid "Enable fastlane" -msgstr "Käytä fastlane" - -#: mod/admin.php:1453 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes" -" with higher priority are blocked by processes of lower priority." -msgstr "" - -#: mod/admin.php:1454 -msgid "Enable frontend worker" -msgstr "Ota Frontend Worker käyttöön" - -#: mod/admin.php:1454 -#, php-format -msgid "" -"When enabled the Worker process is triggered when backend access is " -"performed \\x28e.g. messages being delivered\\x29. On smaller sites you " -"might want to call %s/worker on a regular basis via an external cron job. " -"You should only enable this option if you cannot utilize cron/scheduled jobs" -" on your server." -msgstr "" - -#: mod/admin.php:1456 -msgid "Subscribe to relay" -msgstr "Relen tilaus" - -#: mod/admin.php:1456 -msgid "" -"Enables the receiving of public posts from the relay. They will be included " -"in the search, subscribed tags and on the global community page." -msgstr "" - -#: mod/admin.php:1457 -msgid "Relay server" -msgstr "Relepalvelin" - -#: mod/admin.php:1457 -msgid "" -"Address of the relay server where public posts should be send to. For " -"example https://relay.diasp.org" -msgstr "" - -#: mod/admin.php:1458 -msgid "Direct relay transfer" -msgstr "Suora releen siirto" - -#: mod/admin.php:1458 -msgid "" -"Enables the direct transfer to other servers without using the relay servers" -msgstr "" - -#: mod/admin.php:1459 -msgid "Relay scope" -msgstr "Relen soveltamisala" - -#: mod/admin.php:1459 -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 "" - -#: mod/admin.php:1459 -msgid "all" -msgstr "kaikki" - -#: mod/admin.php:1459 -msgid "tags" -msgstr "tunnisteet" - -#: mod/admin.php:1460 -msgid "Server tags" -msgstr "palvelintunnisteet" - -#: mod/admin.php:1460 -msgid "Comma separated list of tags for the 'tags' subscription." -msgstr "Pilkulla erotettu tunnistelista tunnistetilausta varten." - -#: mod/admin.php:1461 -msgid "Allow user tags" -msgstr "Salli käyttäjien tunnisteet" - -#: mod/admin.php:1461 -msgid "" -"If enabled, the tags from the saved searches will used for the 'tags' " -"subscription in addition to the 'relay_server_tags'." -msgstr "Jos otettu käyttöön, tunnisteet tallennetuista hauista käytetään tunnistetilaukseen 'relay_server_tags'in lisäksi." - -#: mod/admin.php:1489 -msgid "Update has been marked successful" -msgstr "" - -#: mod/admin.php:1496 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Tietokannan rakenteen %s-päivitys onnistui." - -#: mod/admin.php:1499 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "Tietokannan rakennepäivitys %s epäonnistui virheviestillä %s" - -#: mod/admin.php:1515 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "" - -#: mod/admin.php:1517 -#, php-format -msgid "Update %s was successfully applied." -msgstr "%s-päivitys onnistui." - -#: mod/admin.php:1520 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: mod/admin.php:1523 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" - -#: mod/admin.php:1546 -msgid "No failed updates." -msgstr "Ei epäonnistuineita päivityksiä." - -#: mod/admin.php:1547 -msgid "Check database structure" -msgstr "Tarkista tietokannan rakenne" - -#: mod/admin.php:1552 -msgid "Failed Updates" -msgstr "Epäonnistuineita päivityksiä" - -#: mod/admin.php:1553 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "" - -#: mod/admin.php:1554 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: mod/admin.php:1555 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: mod/admin.php:1594 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" - -#: mod/admin.php:1597 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$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 %1$s/removeme\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "" - -#: mod/admin.php:1631 src/Model/User.php:665 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: mod/admin.php:1641 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s käyttäjä estetty / poistettu estolistalta" -msgstr[1] "%s käyttäjää estetty / poistettu estolistalta" - -#: mod/admin.php:1647 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s käyttäjä poistettu" -msgstr[1] "%s käyttäjää poistettu" - -#: mod/admin.php:1694 -#, php-format -msgid "User '%s' deleted" -msgstr "Käyttäjä '%s' poistettu" - -#: mod/admin.php:1702 -#, php-format -msgid "User '%s' unblocked" -msgstr "Käyttäjä '%s' poistettu estolistalta" - -#: mod/admin.php:1702 -#, php-format -msgid "User '%s' blocked" -msgstr "Käyttäjä '%s' estetty" - -#: mod/admin.php:1759 mod/settings.php:1058 -msgid "Normal Account Page" -msgstr "Tavallinen käyttäjätili" - -#: mod/admin.php:1760 mod/settings.php:1062 -msgid "Soapbox Page" -msgstr "Saarnatuoli sivu" - -#: mod/admin.php:1761 mod/settings.php:1066 -msgid "Public Forum" -msgstr "Julkinen foorumi" - -#: mod/admin.php:1762 mod/settings.php:1070 -msgid "Automatic Friend Page" -msgstr "" - -#: mod/admin.php:1763 -msgid "Private Forum" -msgstr "Yksityisfoorumi" - -#: mod/admin.php:1766 mod/settings.php:1042 -msgid "Personal Page" -msgstr "Henkilökohtainen sivu" - -#: mod/admin.php:1767 mod/settings.php:1046 -msgid "Organisation Page" -msgstr "Järjestön sivu" - -#: mod/admin.php:1768 mod/settings.php:1050 -msgid "News Page" -msgstr "Uutissivu" - -#: mod/admin.php:1769 mod/settings.php:1054 -msgid "Community Forum" -msgstr "Yhteisöfoorumi" - -#: mod/admin.php:1816 mod/admin.php:1827 mod/admin.php:1840 mod/admin.php:1858 -#: src/Content/ContactSelector.php:82 -msgid "Email" -msgstr "Sähköposti" - -#: mod/admin.php:1816 mod/admin.php:1840 -msgid "Register date" -msgstr "Rekisteripäivämäärä" - -#: mod/admin.php:1816 mod/admin.php:1840 -msgid "Last login" -msgstr "Viimeisin kirjautuminen" - -#: mod/admin.php:1816 mod/admin.php:1840 -msgid "Last item" -msgstr "Viimeisin kohde" - -#: mod/admin.php:1816 -msgid "Type" -msgstr "Tyyppi" - -#: mod/admin.php:1823 -msgid "Add User" -msgstr "Lisää käyttäjä" - -#: mod/admin.php:1825 -msgid "User registrations waiting for confirm" -msgstr "" - -#: mod/admin.php:1826 -msgid "User waiting for permanent deletion" -msgstr "" - -#: mod/admin.php:1827 -msgid "Request date" -msgstr "Pyynnön päivämäärä" - -#: mod/admin.php:1828 -msgid "No registrations." -msgstr "Ei rekisteröintejä." - -#: mod/admin.php:1829 -msgid "Note from the user" -msgstr "" - -#: mod/admin.php:1830 mod/notifications.php:178 mod/notifications.php:262 -msgid "Approve" -msgstr "Hyväksy" - -#: mod/admin.php:1831 -msgid "Deny" -msgstr "Kieltäydy" - -#: mod/admin.php:1835 -msgid "Site admin" -msgstr "Sivuston ylläpito" - -#: mod/admin.php:1836 -msgid "Account expired" -msgstr "Tili vanhentunut" - -#: mod/admin.php:1839 -msgid "New User" -msgstr "Uusi käyttäjä" - -#: mod/admin.php:1840 -msgid "Deleted since" -msgstr "Poistettu" - -#: mod/admin.php:1845 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: mod/admin.php:1846 -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 "" - -#: mod/admin.php:1856 -msgid "Name of the new user." -msgstr "Uuden käyttäjän nimi." - -#: mod/admin.php:1857 -msgid "Nickname" -msgstr "Lempinimi" - -#: mod/admin.php:1857 -msgid "Nickname of the new user." -msgstr "Uuden käyttäjän lempinimi" - -#: mod/admin.php:1858 -msgid "Email address of the new user." -msgstr "Uuden käyttäjän sähköpostiosoite." - -#: mod/admin.php:1900 -#, php-format -msgid "Addon %s disabled." -msgstr "Lisäosa %s poistettu käytöstä." - -#: mod/admin.php:1904 -#, php-format -msgid "Addon %s enabled." -msgstr "Lisäosa %s käytössä." - -#: mod/admin.php:1914 mod/admin.php:2163 -msgid "Disable" -msgstr "Poista käytöstä" - -#: mod/admin.php:1917 mod/admin.php:2166 -msgid "Enable" -msgstr "Ota käyttöön" - -#: mod/admin.php:1939 mod/admin.php:2209 -msgid "Toggle" -msgstr "Vaihda" - -#: mod/admin.php:1947 mod/admin.php:2218 -msgid "Author: " -msgstr "Tekijä" - -#: mod/admin.php:1948 mod/admin.php:2219 -msgid "Maintainer: " -msgstr "Ylläpitäjä:" - -#: mod/admin.php:2000 -msgid "Reload active addons" -msgstr "" - -#: mod/admin.php:2005 -#, 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 "" - -#: mod/admin.php:2125 -msgid "No themes found." -msgstr "Teemoja ei löytynyt." - -#: mod/admin.php:2200 -msgid "Screenshot" -msgstr "Kuvakaappaus" - -#: mod/admin.php:2254 -msgid "Reload active themes" -msgstr "Lataa aktiiviset teemat uudelleen" - -#: mod/admin.php:2259 -#, php-format -msgid "No themes found on the system. They should be placed in %1$s" -msgstr "Teemoja ei löytynyt järjestelmästä. Teemat tulisi laittaa kansioon %1$s" - -#: mod/admin.php:2260 -msgid "[Experimental]" -msgstr "[Kokeellinen]" - -#: mod/admin.php:2261 -msgid "[Unsupported]" -msgstr "[Ei tueta]" - -#: mod/admin.php:2285 -msgid "Log settings updated." -msgstr "Lokiasetukset päivitetty." - -#: mod/admin.php:2317 -msgid "PHP log currently enabled." -msgstr "PHP-loki käytössä" - -#: mod/admin.php:2319 -msgid "PHP log currently disabled." -msgstr "PHP-loki pois käytöstä" - -#: mod/admin.php:2328 -msgid "Clear" -msgstr "Tyhjennä" - -#: mod/admin.php:2332 -msgid "Enable Debugging" -msgstr "Ota virheenkorjaustila käyttöön" - -#: mod/admin.php:2333 -msgid "Log file" -msgstr "Lokitiedosto" - -#: mod/admin.php:2333 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "" - -#: mod/admin.php:2334 -msgid "Log level" -msgstr "Lokitaso" - -#: mod/admin.php:2336 -msgid "PHP logging" -msgstr "PHP-loki" - -#: mod/admin.php:2337 -msgid "" -"To enable logging of PHP errors and warnings you can add the following to " -"the .htconfig.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 "" - -#: mod/admin.php:2368 -#, 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 "" - -#: mod/admin.php:2372 -#, php-format -msgid "" -"Couldn't open %1$s log file.\\r\\n
    Check to see if file" -" %1$s is readable." -msgstr "" - -#: mod/admin.php:2463 mod/admin.php:2464 mod/settings.php:767 -msgid "Off" -msgstr "Pois päältä" - -#: mod/admin.php:2463 mod/admin.php:2464 mod/settings.php:767 -msgid "On" -msgstr "Päällä" - -#: mod/admin.php:2464 -#, php-format -msgid "Lock feature %s" -msgstr "Lukitse ominaisuus %s" - -#: mod/admin.php:2472 -msgid "Manage Additional Features" -msgstr "Hallitse lisäominaisuudet" - -#: mod/community.php:51 -msgid "Community option not available." -msgstr "Yhteisö vaihtoehto ei saatavilla." - -#: mod/community.php:68 -msgid "Not available." -msgstr "Ei saatavilla." - -#: mod/community.php:81 -msgid "Local Community" -msgstr "Paikallinen yhteisö" - -#: mod/community.php:84 -msgid "Posts from local users on this server" -msgstr "Tämän palvelimen julkaisut" - -#: mod/community.php:92 -msgid "Global Community" -msgstr "Maailmanlaajuinen yhteisö" - -#: mod/community.php:95 -msgid "Posts from users of the whole federated network" -msgstr "Maailmanlaajuisen verkon julkaisut" - -#: mod/community.php:141 mod/search.php:228 -msgid "No results." -msgstr "Ei tuloksia." - -#: mod/community.php:185 -msgid "" -"This community stream shows all public posts received by this node. They may" -" not reflect the opinions of this node’s users." -msgstr "" - -#: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149 -#: mod/profiles.php:196 mod/profiles.php:525 -msgid "Profile not found." -msgstr "Profiilia ei löytynyt." - -#: mod/dfrn_confirm.php:130 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "" - -#: mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Etäsivuston vastaus oli epäselvä." - -#: mod/dfrn_confirm.php:247 mod/dfrn_confirm.php:252 -msgid "Unexpected response from remote site: " -msgstr "Odottamaton vastaus etäsivustolta:" - -#: mod/dfrn_confirm.php:261 -msgid "Confirmation completed successfully." -msgstr "Vahvistus onnistui." - -#: mod/dfrn_confirm.php:273 -msgid "Temporary failure. Please wait and try again." -msgstr "Tilapäinen vika. Yritä myöhemmin uudelleen." - -#: mod/dfrn_confirm.php:276 -msgid "Introduction failed or was revoked." -msgstr "Kaverikutsu epäonnistui tai oli peruutettu." - -#: mod/dfrn_confirm.php:281 -msgid "Remote site reported: " -msgstr "" - -#: mod/dfrn_confirm.php:392 -msgid "Unable to set contact photo." -msgstr "Kontaktin kuvaa ei voitu asettaa" - -#: mod/dfrn_confirm.php:450 -#, php-format -msgid "No user record found for '%s' " -msgstr "" - -#: mod/dfrn_confirm.php:460 -msgid "Our site encryption key is apparently messed up." -msgstr "Sivustomme salausavain on sekaisin." - -#: mod/dfrn_confirm.php:471 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "" - -#: mod/dfrn_confirm.php:487 -msgid "Contact record was not found for you on our site." -msgstr "" - -#: mod/dfrn_confirm.php:501 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "" - -#: mod/dfrn_confirm.php:517 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "" - -#: mod/dfrn_confirm.php:528 -msgid "Unable to set your contact credentials on our system." -msgstr "" - -#: mod/dfrn_confirm.php:583 -msgid "Unable to update your contact profile details on our system" -msgstr "" - -#: mod/dfrn_confirm.php:613 mod/dfrn_request.php:564 -#: src/Model/Contact.php:1578 -msgid "[Name Withheld]" -msgstr "[Nimi jätetty pois]" - -#: mod/dfrn_request.php:94 -msgid "This introduction has already been accepted." -msgstr "Tämä esittely on jo hyväksytty." - -#: mod/dfrn_request.php:112 mod/dfrn_request.php:355 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profiilin sijainti on viallinen tai se ei sisällä profiilitietoja." - -#: mod/dfrn_request.php:116 mod/dfrn_request.php:359 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Varoitus: profiilin sijainnissa ei ole tunnistettavaa omistajan nimeä." - -#: mod/dfrn_request.php:119 mod/dfrn_request.php:362 -msgid "Warning: profile location has no profile photo." -msgstr "Varoitus: profiilin sijainnissa ei ole profiilikuvaa." - -#: mod/dfrn_request.php:123 mod/dfrn_request.php:366 -#, 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] "" -msgstr[1] "" - -#: mod/dfrn_request.php:162 -msgid "Introduction complete." -msgstr "Esittely valmis." - -#: mod/dfrn_request.php:199 -msgid "Unrecoverable protocol error." -msgstr "Vakava protokollavirhe." - -#: mod/dfrn_request.php:226 -msgid "Profile unavailable." -msgstr "Profiili ei saatavilla." - -#: mod/dfrn_request.php:248 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s on saanut liikaa yhteyspyyntöjä tänään." - -#: mod/dfrn_request.php:249 -msgid "Spam protection measures have been invoked." -msgstr "Roskapostisuojaukset otettu käyttöön." - -#: mod/dfrn_request.php:250 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Ystäviä suositellaan yrittämään uudelleen vuorokauden sisällä." - -#: mod/dfrn_request.php:276 -msgid "Invalid locator" -msgstr "Viallinen paikannin" - -#: mod/dfrn_request.php:312 -msgid "You have already introduced yourself here." -msgstr "Olet jo esitellyt itsesi täällä." - -#: mod/dfrn_request.php:315 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Ilmeisesti olet jo ystävystynyt henkilön %s kanssa." - -#: mod/dfrn_request.php:335 -msgid "Invalid profile URL." -msgstr "Viallinen profiiliosoite." - -#: mod/dfrn_request.php:341 src/Model/Contact.php:1276 -msgid "Disallowed profile URL." -msgstr "Kielletty profiiliosoite." - -#: mod/dfrn_request.php:435 -msgid "Your introduction has been sent." -msgstr "Esittelysi lähetettiin." - -#: mod/dfrn_request.php:473 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "" - -#: mod/dfrn_request.php:489 -msgid "Please login to confirm introduction." -msgstr "Kirjaudu vahvistaaksesi esittelysi." - -#: mod/dfrn_request.php:497 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Väärä identiteetti kirjautuneena sisään. Kirjaudu tähän profiiliin." - -#: mod/dfrn_request.php:511 mod/dfrn_request.php:528 -msgid "Confirm" -msgstr "Vahvista" - -#: mod/dfrn_request.php:523 -msgid "Hide this contact" -msgstr "Piilota kontakti" - -#: mod/dfrn_request.php:526 -#, php-format -msgid "Welcome home %s." -msgstr "Tervetuloa kotiin %s." - -#: mod/dfrn_request.php:527 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Vahvista esittelysi/yhteyspyyntösi henkilölle %s." - -#: mod/dfrn_request.php:637 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Anna \"henkilöllisyysosoitteesi\" joissakin seuraavista tuetuista viestintäverkoista:" - -#: mod/dfrn_request.php:640 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow " -"this link to find a public Friendica site and join us today." -msgstr "" - -#: mod/dfrn_request.php:645 -msgid "Friend/Connection Request" -msgstr "Ystävä/yhteyspyyntö" - -#: mod/dfrn_request.php:646 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@gnusocial.de" -msgstr "Esim. jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de" - -#: mod/dfrn_request.php:651 src/Content/ContactSelector.php:79 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:652 -msgid "GNU Social (Pleroma, Mastodon)" -msgstr "GNU Social (Pleroma, Mastodon)" - -#: mod/dfrn_request.php:653 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/dfrn_request.php:654 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - älä käytä tätä lomaketta. Kirjoita sen sijaan %s Diaspora-hakupalkkiisi." - -#: mod/events.php:105 mod/events.php:107 -msgid "Event can not end before it has started." -msgstr "Tapahtuma ei voi päättyä ennen kuin on alkanut." - -#: mod/events.php:114 mod/events.php:116 -msgid "Event title and start time are required." -msgstr "Tapahtuman nimi ja alkamisaika vaaditaan." - -#: mod/events.php:393 -msgid "Create New Event" -msgstr "Luo uusi tapahtuma" - -#: mod/events.php:507 -msgid "Event details" -msgstr "Tapahtuman tiedot" - -#: mod/events.php:508 -msgid "Starting date and Title are required." -msgstr "Aloituspvm ja otsikko vaaditaan." - -#: mod/events.php:509 mod/events.php:510 -msgid "Event Starts:" -msgstr "Tapahtuma alkaa:" - -#: mod/events.php:509 mod/events.php:521 mod/profiles.php:607 -msgid "Required" -msgstr "Vaaditaan" - -#: mod/events.php:511 mod/events.php:527 -msgid "Finish date/time is not known or not relevant" -msgstr "Päättymispvm ja kellonaika ei ole tiedossa tai niillä ei ole merkitystä" - -#: mod/events.php:513 mod/events.php:514 -msgid "Event Finishes:" -msgstr "Tapahtuma päättyy:" - -#: mod/events.php:515 mod/events.php:528 -msgid "Adjust for viewer timezone" -msgstr "Ota huomioon katsojan aikavyöhyke" - -#: mod/events.php:517 -msgid "Description:" -msgstr "Kuvaus:" - -#: mod/events.php:521 mod/events.php:523 -msgid "Title:" -msgstr "Otsikko:" - -#: mod/events.php:524 mod/events.php:525 -msgid "Share this event" -msgstr "Jaa tämä tapahtuma" - -#: mod/events.php:532 src/Model/Profile.php:862 -msgid "Basic" -msgstr "" - -#: mod/events.php:534 mod/photos.php:1086 mod/photos.php:1435 -#: src/Core/ACL.php:318 -msgid "Permissions" -msgstr "Käyttöoikeudet" - -#: mod/events.php:553 -msgid "Failed to remove event" -msgstr "Tapahtuman poisto epäonnistui" - -#: mod/events.php:555 -msgid "Event removed" -msgstr "Tapahtuma poistettu" - -#: mod/group.php:36 -msgid "Group created." -msgstr "Ryhmä luotu." - -#: mod/group.php:42 -msgid "Could not create group." -msgstr "Ryhmää ei voitu luoda." - -#: mod/group.php:56 mod/group.php:157 -msgid "Group not found." -msgstr "Ryhmää ei löytynyt." - -#: mod/group.php:70 -msgid "Group name changed." -msgstr "Ryhmän nimi muutettu." - -#: mod/group.php:97 -msgid "Save Group" -msgstr "Tallenna ryhmä" - -#: mod/group.php:102 -msgid "Create a group of contacts/friends." -msgstr "Luo kontakti/kaveriryhmä" - -#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421 -msgid "Group Name: " -msgstr "Ryhmän nimi:" - -#: mod/group.php:127 -msgid "Group removed." -msgstr "Ryhmä poistettu." - -#: mod/group.php:129 -msgid "Unable to remove group." -msgstr "Ryhmää ei voida poistaa." - -#: mod/group.php:192 -msgid "Delete Group" -msgstr "Poista ryhmä" - -#: mod/group.php:198 -msgid "Group Editor" -msgstr "Ryhmien muokkausta" - -#: mod/group.php:203 -msgid "Edit Group Name" -msgstr "Muokkaa ryhmän nimeä" - -#: mod/group.php:213 -msgid "Members" -msgstr "Jäsenet" - -#: mod/group.php:216 mod/network.php:639 -msgid "Group is empty" -msgstr "Ryhmä on tyhjä" - -#: mod/group.php:229 -msgid "Remove contact from group" -msgstr "Poista kontakti ryhmästä" - -#: mod/group.php:253 -msgid "Add contact to group" -msgstr "Lisää kontakti ryhmään" - -#: mod/item.php:114 -msgid "Unable to locate original post." -msgstr "Alkuperäinen julkaisu ei löydy." - -#: mod/item.php:274 -msgid "Empty post discarded." -msgstr "Tyhjä julkaisu hylätty." - -#: mod/item.php:804 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Viestin lähetti %s Friendica sosiaaliverkoston kautta." - -#: mod/item.php:806 -#, php-format -msgid "You may visit them online at %s" -msgstr "" - -#: mod/item.php:807 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "" - -#: mod/item.php:811 -#, php-format -msgid "%s posted an update." -msgstr "%s julkaisi päivityksen." - -#: mod/network.php:194 mod/search.php:37 -msgid "Remove term" -msgstr "Poista kohde" - -#: mod/network.php:201 mod/search.php:46 src/Content/Feature.php:100 -msgid "Saved Searches" -msgstr "Tallennetut haut" - -#: mod/network.php:202 src/Model/Group.php:413 -msgid "add" -msgstr "lisää" - -#: mod/network.php:547 -#, php-format -msgid "" -"Warning: This group contains %s member from a network that doesn't allow non" -" public messages." -msgid_plural "" -"Warning: This group contains %s members from a network that doesn't allow " -"non public messages." -msgstr[0] "" -msgstr[1] "" - -#: mod/network.php:550 -msgid "Messages in this group won't be send to these receivers." -msgstr "" - -#: mod/network.php:618 -msgid "No such group" -msgstr "Ryhmä ei ole olemassa" - -#: mod/network.php:643 -#, php-format -msgid "Group: %s" -msgstr "Ryhmä: %s" - -#: mod/network.php:669 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Yksityisviestit lähetetty tälle henkilölle saattaa näkyä muillekin." - -#: mod/network.php:672 -msgid "Invalid contact." -msgstr "Virheellinen kontakti." - -#: mod/network.php:943 -msgid "Commented Order" -msgstr "Järjestä viimeisimpien kommenttien mukaan" - -#: mod/network.php:946 -msgid "Sort by Comment Date" -msgstr "Kommentit päivämäärän mukaan" - -#: mod/network.php:951 -msgid "Posted Order" -msgstr "Järjestä julkaisupäivämäärän mukaan" - -#: mod/network.php:954 -msgid "Sort by Post Date" -msgstr "Julkaisut päivämäärän mukaan" - -#: mod/network.php:962 mod/profiles.php:594 -#: src/Core/NotificationsManager.php:185 -msgid "Personal" -msgstr "Henkilökohtainen" - -#: mod/network.php:965 -msgid "Posts that mention or involve you" -msgstr "Julkaisut jotka liittyvät sinuun" - -#: mod/network.php:973 -msgid "New" -msgstr "Uusi" - -#: mod/network.php:976 -msgid "Activity Stream - by date" -msgstr "" - -#: mod/network.php:984 -msgid "Shared Links" -msgstr "Jaetut linkit" - -#: mod/network.php:987 -msgid "Interesting Links" -msgstr "Kiinnostavat linkit" - -#: mod/network.php:995 -msgid "Starred" -msgstr "Tähtimerkitty" - -#: mod/network.php:998 -msgid "Favourite Posts" -msgstr "Lempijulkaisut" - -#: mod/notes.php:52 src/Model/Profile.php:944 +#: mod/notes.php:52 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "Henkilökohtaiset tiedot" -#: mod/notifications.php:37 -msgid "Invalid request identifier." -msgstr "Virheellinen pyyntötunniste." - -#: mod/notifications.php:46 mod/notifications.php:182 -#: mod/notifications.php:229 -msgid "Discard" -msgstr "Hylkää" - -#: mod/notifications.php:98 src/Content/Nav.php:191 -msgid "Notifications" -msgstr "Huomautukset" - -#: mod/notifications.php:107 -msgid "Network Notifications" -msgstr "Uutisvirtailmoitukset" - -#: mod/notifications.php:119 -msgid "Personal Notifications" -msgstr "Henkilökohtaiset ilmoitukset" - -#: mod/notifications.php:125 -msgid "Home Notifications" -msgstr "Koti-ilmoitukset" - -#: mod/notifications.php:155 -msgid "Show Ignored Requests" -msgstr "Näytä ohitetut pyynnöt" - -#: mod/notifications.php:155 -msgid "Hide Ignored Requests" -msgstr "Piilota ohitetut pyynnöt" - -#: mod/notifications.php:167 mod/notifications.php:236 -msgid "Notification type: " -msgstr "Ilmoitustyyppi:" - -#: mod/notifications.php:170 -#, php-format -msgid "suggested by %s" -msgstr "ehdottaa %s" - -#: mod/notifications.php:197 -msgid "Claims to be known to you: " -msgstr "Väittää tuntevansa sinut:" - -#: mod/notifications.php:198 -msgid "yes" -msgstr "kyllä" - -#: mod/notifications.php:198 -msgid "no" -msgstr "ei" - -#: mod/notifications.php:199 mod/notifications.php:204 -msgid "Shall your connection be bidirectional or not?" -msgstr "Kaksisuuntainen yhteys?" - -#: mod/notifications.php:200 mod/notifications.php:205 -#, 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." +#: mod/notes.php:56 +msgid "Personal notes are visible only by yourself." msgstr "" -#: mod/notifications.php:201 -#, 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." +#: mod/notes.php:57 src/Content/Text/HTML.php:856 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 +msgid "Save" +msgstr "Tallenna" + +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:575 +#: src/Model/Event.php:514 src/Model/Profile.php:234 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." msgstr "" -#: mod/notifications.php:206 -#, php-format -msgid "" -"Accepting %s as a sharer allows them to subscribe to your posts, but you " -"will not receive updates from them in your news feed." -msgstr "" - -#: mod/notifications.php:217 -msgid "Friend" -msgstr "Kaveri" - -#: mod/notifications.php:218 -msgid "Sharer" -msgstr "Jakaja" - -#: mod/notifications.php:218 -msgid "Subscriber" -msgstr "Tilaaja" - -#: mod/notifications.php:273 -msgid "No introductions." -msgstr "Ei esittelyjä." - -#: mod/notifications.php:314 -msgid "Show unread" -msgstr "Näytä lukemattomat" - -#: mod/notifications.php:314 -msgid "Show all" -msgstr "Näytä kaikki" - -#: mod/notifications.php:320 -#, php-format -msgid "No more %s notifications." -msgstr "Ei muita %s ilmoituksia." - -#: mod/openid.php:29 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID -protokollavirhe. Tunnusta ei vastaanotettu." - -#: mod/openid.php:66 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Käyttäjätiliä ei löytynyt. Rekisteröityminen OpenID:n kautta ei ole sallittua tällä sivustolla." - -#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:135 -msgid "Login failed." -msgstr "Kirjautuminen epäonnistui" - -#: mod/photos.php:108 src/Model/Profile.php:905 +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 msgid "Photo Albums" msgstr "Valokuva-albumit" -#: mod/photos.php:109 mod/photos.php:1708 +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 msgid "Recent Photos" msgstr "Viimeaikaisia kuvia" -#: mod/photos.php:112 mod/photos.php:1198 mod/photos.php:1710 +#: mod/photos.php:109 mod/photos.php:865 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 msgid "Upload New Photos" msgstr "Lähetä uusia kuvia" -#: mod/photos.php:126 mod/settings.php:51 +#: mod/photos.php:121 src/Module/BaseSettings.php:74 +#: src/Module/Profile/Photos.php:363 msgid "everybody" msgstr "kaikki" -#: mod/photos.php:184 +#: mod/photos.php:159 msgid "Contact information unavailable" msgstr "Kontaktin tietoja ei saatavilla" -#: mod/photos.php:204 +#: mod/photos.php:188 msgid "Album not found." msgstr "Albumia ei ole." -#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1149 -msgid "Delete Album" -msgstr "Poista albumi" +#: mod/photos.php:242 +msgid "Album successfully deleted" +msgstr "" -#: mod/photos.php:243 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Haluatko varmasti poistaa tämän albumin ja kaikki sen kuvat?" +#: mod/photos.php:244 +msgid "Album was empty." +msgstr "" -#: mod/photos.php:303 mod/photos.php:314 mod/photos.php:1440 -msgid "Delete Photo" -msgstr "Poista valokuva" +#: mod/photos.php:276 +msgid "Failed to delete the photo." +msgstr "" -#: mod/photos.php:312 -msgid "Do you really want to delete this photo?" -msgstr "Haluatko varmasti poistaa kuvan?" - -#: mod/photos.php:655 +#: mod/photos.php:542 msgid "a photo" msgstr "valokuva" -#: mod/photos.php:655 +#: mod/photos.php:542 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s merkattiin kuvaan %2$s ystävän %3$s toimesta" -#: mod/photos.php:757 -msgid "Image upload didn't complete, please try again" -msgstr "Kuvan lataus ei onnistunut, yritä uudelleen" +#: mod/photos.php:579 src/Module/Conversation/Community.php:188 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Julkinen käyttö estetty." -#: mod/photos.php:760 -msgid "Image file is missing" -msgstr "Kuvatiedosto puuttuu" - -#: mod/photos.php:765 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "" - -#: mod/photos.php:791 -msgid "Image file is empty." -msgstr "Kuvatiedosto on tyhjä." - -#: mod/photos.php:928 +#: mod/photos.php:584 msgid "No photos selected" msgstr "Ei valittuja kuvia" -#: mod/photos.php:1024 mod/videos.php:309 -msgid "Access to this item is restricted." -msgstr "Pääsy kohteeseen on rajoitettu." +#: mod/photos.php:716 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "" -#: mod/photos.php:1078 +#: mod/photos.php:723 msgid "Upload Photos" msgstr "Lähetä kuvia" -#: mod/photos.php:1082 mod/photos.php:1144 +#: mod/photos.php:727 mod/photos.php:813 msgid "New album name: " msgstr "Albumin uusi nimi: " -#: mod/photos.php:1083 -msgid "or existing album name: " -msgstr "tai olemassaolevan albumin nimi: " +#: mod/photos.php:728 +msgid "or select existing album:" +msgstr "" -#: mod/photos.php:1084 +#: mod/photos.php:729 msgid "Do not show a status post for this upload" msgstr "Älä näytä tilaviestiä tälle lähetykselle" -#: mod/photos.php:1094 mod/photos.php:1443 mod/settings.php:1218 -msgid "Show to Groups" -msgstr "Näytä ryhmille" +#: mod/photos.php:731 mod/photos.php:1091 src/Content/Conversation.php:392 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "Käyttöoikeudet" -#: mod/photos.php:1095 mod/photos.php:1444 mod/settings.php:1219 -msgid "Show to Contacts" -msgstr "Näytä kontakteille" +#: mod/photos.php:794 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Haluatko varmasti poistaa tämän albumin ja kaikki sen kuvat?" -#: mod/photos.php:1155 +#: mod/photos.php:795 mod/photos.php:818 +msgid "Delete Album" +msgstr "Poista albumi" + +#: mod/photos.php:796 mod/photos.php:897 src/Content/Conversation.php:408 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Peru" + +#: mod/photos.php:822 msgid "Edit Album" msgstr "Muokkaa albumia" -#: mod/photos.php:1160 +#: mod/photos.php:823 +msgid "Drop Album" +msgstr "" + +#: mod/photos.php:827 msgid "Show Newest First" msgstr "Näytä uusin ensin" -#: mod/photos.php:1162 +#: mod/photos.php:829 msgid "Show Oldest First" msgstr "Näytä vanhin ensin" -#: mod/photos.php:1183 mod/photos.php:1693 +#: mod/photos.php:850 src/Module/Profile/Photos.php:350 msgid "View Photo" msgstr "Näytä kuva" -#: mod/photos.php:1224 +#: mod/photos.php:883 msgid "Permission denied. Access to this item may be restricted." msgstr "Estetty. Tämän kohteen käyttöä on saatettu rajoittaa." -#: mod/photos.php:1226 +#: mod/photos.php:885 msgid "Photo not available" msgstr "Kuva ei ole saatavilla" -#: mod/photos.php:1294 +#: mod/photos.php:895 +msgid "Do you really want to delete this photo?" +msgstr "Haluatko varmasti poistaa kuvan?" + +#: mod/photos.php:896 mod/photos.php:1096 +msgid "Delete Photo" +msgstr "Poista valokuva" + +#: mod/photos.php:994 msgid "View photo" msgstr "Näytä kuva" -#: mod/photos.php:1294 +#: mod/photos.php:996 msgid "Edit photo" msgstr "Muokkaa kuvaa" -#: mod/photos.php:1295 +#: mod/photos.php:997 +msgid "Delete photo" +msgstr "" + +#: mod/photos.php:998 msgid "Use as profile photo" msgstr "Käytä profiilikuvana" -#: mod/photos.php:1301 src/Object/Post.php:149 -msgid "Private Message" -msgstr "Yksityisviesti" +#: mod/photos.php:1005 +msgid "Private Photo" +msgstr "" -#: mod/photos.php:1321 +#: mod/photos.php:1011 msgid "View Full Size" msgstr "Näytä täysikokoisena" -#: mod/photos.php:1408 +#: mod/photos.php:1064 msgid "Tags: " msgstr "Merkinnät:" -#: mod/photos.php:1411 -msgid "[Remove any tag]" -msgstr "[Poista mikä tahansa merkintä]" +#: mod/photos.php:1067 +msgid "[Select tags to remove]" +msgstr "" -#: mod/photos.php:1426 +#: mod/photos.php:1082 msgid "New album name" msgstr "Uusi nimi albumille" -#: mod/photos.php:1427 +#: mod/photos.php:1083 msgid "Caption" msgstr "Kuvateksti" -#: mod/photos.php:1428 +#: mod/photos.php:1084 msgid "Add a Tag" msgstr "Lisää merkintä" -#: mod/photos.php:1428 +#: mod/photos.php:1084 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Esimerkki: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1429 +#: mod/photos.php:1085 msgid "Do not rotate" msgstr "Älä kierrä" -#: mod/photos.php:1430 +#: mod/photos.php:1086 msgid "Rotate CW (right)" msgstr "Käännä oikealle" -#: mod/photos.php:1431 +#: mod/photos.php:1087 msgid "Rotate CCW (left)" msgstr "Käännä vasemmalle" -#: mod/photos.php:1465 src/Object/Post.php:304 -msgid "I like this (toggle)" -msgstr "Tykkään tästä (vaihda)" +#: mod/photos.php:1133 mod/photos.php:1189 mod/photos.php:1263 +#: src/Module/Contact.php:597 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1067 +msgid "This is you" +msgstr "Tämä olet sinä" -#: mod/photos.php:1466 src/Object/Post.php:305 -msgid "I don't like this (toggle)" -msgstr "En tykkää tästä (vaihda)" - -#: mod/photos.php:1484 mod/photos.php:1523 mod/photos.php:1596 -#: src/Object/Post.php:407 src/Object/Post.php:803 +#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1265 +#: src/Object/Post.php:551 src/Object/Post.php:1069 msgid "Comment" msgstr "Kommentti" -#: mod/photos.php:1628 +#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1267 +#: src/Content/Conversation.php:405 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:200 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1082 +msgid "Preview" +msgstr "Esikatselu" + +#: mod/photos.php:1138 src/Content/Conversation.php:359 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1071 +msgid "Loading..." +msgstr "" + +#: mod/photos.php:1224 src/Content/Conversation.php:650 +#: src/Object/Post.php:258 +msgid "Select" +msgstr "Valitse" + +#: mod/photos.php:1225 src/Content/Conversation.php:651 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +msgid "Delete" +msgstr "Poista" + +#: mod/photos.php:1286 src/Object/Post.php:391 +msgid "Like" +msgstr "" + +#: mod/photos.php:1287 src/Object/Post.php:391 +msgid "I like this (toggle)" +msgstr "Tykkään tästä (vaihda)" + +#: mod/photos.php:1288 src/Object/Post.php:392 +msgid "Dislike" +msgstr "" + +#: mod/photos.php:1290 src/Object/Post.php:392 +msgid "I don't like this (toggle)" +msgstr "En tykkää tästä (vaihda)" + +#: mod/photos.php:1312 msgid "Map" msgstr "Kartta" -#: mod/photos.php:1699 mod/videos.php:387 -msgid "View Album" -msgstr "Näytä albumi" +#: src/App.php:473 +msgid "No system theme config value set." +msgstr "" -#: mod/profile.php:37 src/Model/Profile.php:118 -msgid "Requested profile is not available." -msgstr "Pyydettyä profiilia ei saatavilla." +#: src/App.php:577 +msgid "Apologies but the website is unavailable at the moment." +msgstr "" -#: mod/profile.php:78 mod/profile.php:81 src/Protocol/OStatus.php:1250 +#: src/App/Page.php:247 +msgid "Delete this item?" +msgstr "Poista tämä kohde?" + +#: src/App/Page.php:248 +msgid "" +"Block this author? They won't be able to follow you nor see your public " +"posts, and you won't be able to see their posts and their notifications." +msgstr "" + +#: src/App/Page.php:249 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "" + +#: src/App/Page.php:250 +msgid "Collapse this author's posts?" +msgstr "" + +#: src/App/Page.php:252 +msgid "Like not successful" +msgstr "" + +#: src/App/Page.php:253 +msgid "Dislike not successful" +msgstr "" + +#: src/App/Page.php:254 +msgid "Sharing not successful" +msgstr "" + +#: src/App/Page.php:255 +msgid "Attendance unsuccessful" +msgstr "" + +#: src/App/Page.php:256 +msgid "Backend error" +msgstr "" + +#: src/App/Page.php:257 +msgid "Network error" +msgstr "" + +#: src/App/Page.php:260 +msgid "Drop files here to upload" +msgstr "" + +#: src/App/Page.php:261 +msgid "Your browser does not support drag and drop file uploads." +msgstr "" + +#: src/App/Page.php:262 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "" + +#: src/App/Page.php:263 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "" + +#: src/App/Page.php:264 +msgid "You can't upload files of this type." +msgstr "" + +#: src/App/Page.php:265 +msgid "Server responded with {{statusCode}} code." +msgstr "" + +#: src/App/Page.php:266 +msgid "Cancel upload" +msgstr "" + +#: src/App/Page.php:267 +msgid "Upload canceled." +msgstr "" + +#: src/App/Page.php:268 +msgid "Are you sure you want to cancel this upload?" +msgstr "" + +#: src/App/Page.php:269 +msgid "Remove file" +msgstr "" + +#: src/App/Page.php:270 +msgid "You can't upload any more files." +msgstr "" + +#: src/App/Page.php:348 +msgid "toggle mobile" +msgstr "Mobiilisivusto päälle/pois" + +#: src/App/Router.php:309 #, php-format -msgid "%s's timeline" -msgstr "%s: aikajana" - -#: mod/profile.php:79 src/Protocol/OStatus.php:1251 -#, php-format -msgid "%s's posts" -msgstr "%s: julkaisut" - -#: mod/profile.php:80 src/Protocol/OStatus.php:1252 -#, php-format -msgid "%s's comments" -msgstr "%s: kommentit" - -#: mod/profile.php:195 -msgid "Tips for New Members" -msgstr "Vinkkejä uusille käyttäjille" - -#: mod/profiles.php:58 -msgid "Profile deleted." -msgstr "Profiili poistettiin." - -#: mod/profiles.php:74 mod/profiles.php:110 -msgid "Profile-" -msgstr "Profiili-" - -#: mod/profiles.php:93 mod/profiles.php:132 -msgid "New profile created." -msgstr "Uusi profiili luotu." - -#: mod/profiles.php:116 -msgid "Profile unavailable to clone." -msgstr "Profiili ei saatavilla kloonattavaksi." - -#: mod/profiles.php:206 -msgid "Profile Name is required." -msgstr "Profiilinimi on pakollinen." - -#: mod/profiles.php:347 -msgid "Marital Status" -msgstr "Siviilisääty" - -#: mod/profiles.php:351 -msgid "Romantic Partner" -msgstr "Romanttinen kumppani" - -#: mod/profiles.php:363 -msgid "Work/Employment" -msgstr "Työ" - -#: mod/profiles.php:366 -msgid "Religion" -msgstr "Uskonto" - -#: mod/profiles.php:370 -msgid "Political Views" -msgstr "Poliittiset näkemykset" - -#: mod/profiles.php:374 -msgid "Gender" -msgstr "Sukupuoli" - -#: mod/profiles.php:378 -msgid "Sexual Preference" -msgstr "Seksuaalinen suuntautuminen" - -#: mod/profiles.php:382 -msgid "XMPP" -msgstr "XMPP" - -#: mod/profiles.php:386 -msgid "Homepage" -msgstr "Kotisivu" - -#: mod/profiles.php:390 mod/profiles.php:593 -msgid "Interests" -msgstr "Kiinnostukset" - -#: mod/profiles.php:401 mod/profiles.php:589 -msgid "Location" -msgstr "Sijainti" - -#: mod/profiles.php:483 -msgid "Profile updated." -msgstr "Profiili päivitettiin." - -#: mod/profiles.php:540 -msgid "Hide contacts and friends:" -msgstr "Piilota kontaktit ja kaverit:" - -#: mod/profiles.php:545 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Piilota tämän profiilin kontakti/kaverilista?" - -#: mod/profiles.php:565 -msgid "Show more profile fields:" -msgstr "Näytä lisää profiilikenttiä:" - -#: mod/profiles.php:577 -msgid "Profile Actions" +msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "" -#: mod/profiles.php:578 -msgid "Edit Profile Details" -msgstr "Muokkaa profiilin yksityiskohdat" +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +msgid "Page not found." +msgstr "Sivua ei löytynyt." -#: mod/profiles.php:580 -msgid "Change Profile Photo" -msgstr "Vaihda profiilikuva" +#: src/App/Router.php:323 +msgid "You must be logged in to use addons. " +msgstr "Sinun pitää kirjautua sisään, jotta voit käyttää lisäosia" -#: mod/profiles.php:581 -msgid "View this profile" -msgstr "Näytä profiilia" - -#: mod/profiles.php:582 mod/profiles.php:677 src/Model/Profile.php:389 -msgid "Edit visibility" -msgstr "Muokkaa näkyvyyttä" - -#: mod/profiles.php:583 -msgid "Create a new profile using these settings" -msgstr "Luo uusi profiili näillä asetuksilla" - -#: mod/profiles.php:584 -msgid "Clone this profile" -msgstr "Kloonaa tämä profiili" - -#: mod/profiles.php:585 -msgid "Delete this profile" -msgstr "Poista tämä profiili" - -#: mod/profiles.php:587 -msgid "Basic information" -msgstr "Perustiedot" - -#: mod/profiles.php:588 -msgid "Profile picture" -msgstr "Profiilikuva" - -#: mod/profiles.php:590 -msgid "Preferences" -msgstr "Mieltymykset" - -#: mod/profiles.php:591 -msgid "Status information" -msgstr "Tilatiedot" - -#: mod/profiles.php:592 -msgid "Additional information" -msgstr "Lisätietoja" - -#: mod/profiles.php:595 -msgid "Relation" -msgstr "Suhde" - -#: mod/profiles.php:596 src/Util/Temporal.php:81 src/Util/Temporal.php:83 -msgid "Miscellaneous" -msgstr "Sekalaista" - -#: mod/profiles.php:599 -msgid "Your Gender:" -msgstr "Sukupuoli:" - -#: mod/profiles.php:600 -msgid " Marital Status:" -msgstr " Siviilisääty:" - -#: mod/profiles.php:601 src/Model/Profile.php:780 -msgid "Sexual Preference:" -msgstr "Seksuaalinen suuntautuminen:" - -#: mod/profiles.php:602 -msgid "Example: fishing photography software" -msgstr "Esimerkki: kalastus valokuvaus ohjelmistot" - -#: mod/profiles.php:607 -msgid "Profile Name:" -msgstr "Profiilinimi:" - -#: mod/profiles.php:609 +#: src/BaseModule.php:400 msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "" - -#: mod/profiles.php:610 -msgid "Your Full Name:" -msgstr "Koko nimi:" - -#: mod/profiles.php:611 -msgid "Title/Description:" -msgstr "Otsikko/kuvaus:" - -#: mod/profiles.php:614 -msgid "Street Address:" -msgstr "Katuosoite:" - -#: mod/profiles.php:615 -msgid "Locality/City:" -msgstr "Kaupunki:" - -#: mod/profiles.php:616 -msgid "Region/State:" -msgstr "Alue/osavaltio:" - -#: mod/profiles.php:617 -msgid "Postal/Zip Code:" -msgstr "Postinumero:" - -#: mod/profiles.php:618 -msgid "Country:" -msgstr "Maa:" - -#: mod/profiles.php:619 src/Util/Temporal.php:149 -msgid "Age: " -msgstr "Ikä:" - -#: mod/profiles.php:622 -msgid "Who: (if applicable)" -msgstr "Kuka: (tarvittaessa)" - -#: mod/profiles.php:622 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Esimerkkejä: cathy123, Cathy Williams, cathy@example.com" - -#: mod/profiles.php:623 -msgid "Since [date]:" -msgstr "Lähtien [päivämäärä]:" - -#: mod/profiles.php:625 -msgid "Tell us about yourself..." -msgstr "Kerro vähän itsestäsi..." +"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 "Lomakkeen turvallisuusavain oli väärin. Tämä voi johtua siitä, että lomake on ollut avoinna liian kauan (>3 tuntia) ennen sen lähettämistä." -#: mod/profiles.php:626 -msgid "XMPP (Jabber) address:" -msgstr "XMPP (Jabber) osoite:" - -#: mod/profiles.php:626 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." +#: src/BaseModule.php:427 +msgid "All contacts" msgstr "" -#: mod/profiles.php:627 -msgid "Homepage URL:" -msgstr "Kotisivun URL-osoite:" - -#: mod/profiles.php:628 src/Model/Profile.php:788 -msgid "Hometown:" -msgstr "Kotikaupunki:" - -#: mod/profiles.php:629 src/Model/Profile.php:796 -msgid "Political Views:" -msgstr "Politiikka:" - -#: mod/profiles.php:630 -msgid "Religious Views:" -msgstr "Uskonto:" - -#: mod/profiles.php:631 -msgid "Public Keywords:" -msgstr "Julkiset avainsanat:" - -#: mod/profiles.php:631 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Käytetään kaveriehdotuksia varten, näkyy muille)" - -#: mod/profiles.php:632 -msgid "Private Keywords:" -msgstr "Yksityiset avainsanat:" - -#: mod/profiles.php:632 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Käytetään profiilihakua varten, ei näy muille)" - -#: mod/profiles.php:633 src/Model/Profile.php:812 -msgid "Likes:" -msgstr "Tykkäykset:" - -#: mod/profiles.php:634 src/Model/Profile.php:816 -msgid "Dislikes:" -msgstr "Ei tykkää:" - -#: mod/profiles.php:635 -msgid "Musical interests" -msgstr "Musiikki" - -#: mod/profiles.php:636 -msgid "Books, literature" -msgstr "Kirjat, kirjallisuus" - -#: mod/profiles.php:637 -msgid "Television" -msgstr "Televisio" - -#: mod/profiles.php:638 -msgid "Film/dance/culture/entertainment" -msgstr "Elokuvat/tanssi/kulttuuri/viihde" - -#: mod/profiles.php:639 -msgid "Hobbies/Interests" -msgstr "Harrastukset" - -#: mod/profiles.php:640 -msgid "Love/romance" -msgstr "Rakkaus/romanssi" - -#: mod/profiles.php:641 -msgid "Work/employment" -msgstr "Työ:" - -#: mod/profiles.php:642 -msgid "School/education" -msgstr "Koulutus:" - -#: mod/profiles.php:643 -msgid "Contact information and Social Networks" -msgstr "Yhteystiedot ja sosiaalinen media" - -#: mod/profiles.php:674 src/Model/Profile.php:385 -msgid "Profile Image" -msgstr "Profiilikuva" - -#: mod/profiles.php:676 src/Model/Profile.php:388 -msgid "visible to everybody" -msgstr "näkyvissä kaikille" - -#: mod/profiles.php:683 -msgid "Edit/Manage Profiles" -msgstr "Muokkaa/hallitse profiilit" - -#: mod/profiles.php:684 src/Model/Profile.php:375 src/Model/Profile.php:397 -msgid "Change profile photo" -msgstr "Vaihda profiilikuva" - -#: mod/profiles.php:685 src/Model/Profile.php:376 -msgid "Create New Profile" -msgstr "Luo uusi profiili" - -#: mod/register.php:100 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Rekisteröityminen onnistui. Saat kohta lisäohjeita sähköpostitse." - -#: mod/register.php:104 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
    login: %s
    " -"password: %s

    You can change your password after login." +#: src/BaseModule.php:432 src/Content/Widget.php:243 src/Core/ACL.php:195 +#: src/Module/Contact.php:415 src/Module/PermissionTooltip.php:127 +#: src/Module/PermissionTooltip.php:149 +msgid "Followers" msgstr "" -#: mod/register.php:111 -msgid "Registration successful." -msgstr "Rekisteröityminen onnistui." - -#: mod/register.php:116 -msgid "Your registration can not be processed." -msgstr "Rekisteröintisi ei voida käsitellä." - -#: mod/register.php:163 -msgid "Your registration is pending approval by the site owner." -msgstr "Rekisteröintisi odottaa ylläpitäjän hyväksyntää." - -#: mod/register.php:221 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." +#: src/BaseModule.php:437 src/Content/Widget.php:244 +#: src/Module/Contact.php:416 +msgid "Following" msgstr "" -#: mod/register.php:222 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Jos OpenID ei ole tuttu, jätä kenttä tyhjäksi." - -#: mod/register.php:223 -msgid "Your OpenID (optional): " -msgstr "OpenID -tunnus (valinnainen):" - -#: mod/register.php:235 -msgid "Include your profile in member directory?" -msgstr "Lisää profiilisi jäsenluetteloon?" - -#: mod/register.php:262 -msgid "Note for the admin" -msgstr "Viesti ylläpidolle" - -#: mod/register.php:262 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "Kerro yllåpitäjälle miksi haluat liittyä tähän Friendica -sivustoon" - -#: mod/register.php:263 -msgid "Membership on this site is by invitation only." -msgstr "Tähän sivustoon voi liittyä vain kutsusta." - -#: mod/register.php:264 -msgid "Your invitation code: " -msgstr "Kutsukoodisi:" - -#: mod/register.php:273 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "Koko nimi (esim. Matti Meikäläinen, Aku Ankka):" - -#: mod/register.php:274 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "Sähköpostiosoite: (pitää olla toimiva osoite että rekisteröityminen onnistuu)" - -#: mod/register.php:276 mod/settings.php:1190 -msgid "New Password:" -msgstr "Uusi salasana:" - -#: mod/register.php:276 -msgid "Leave empty for an auto generated password." -msgstr "Jätä tyhjäksi jos haluat automaattisesti luotu salasanan." - -#: mod/register.php:277 mod/settings.php:1191 -msgid "Confirm:" -msgstr "Vahvista:" - -#: mod/register.php:278 -#, 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 "" - -#: mod/register.php:279 -msgid "Choose a nickname: " -msgstr "Valitse lempinimi:" - -#: mod/register.php:282 src/Content/Nav.php:128 src/Module/Login.php:284 -msgid "Register" -msgstr "Rekisteröidy" - -#: mod/register.php:289 -msgid "Import your profile to this friendica instance" -msgstr "Tuo profiilisi tähän Friendica -instanssiin." - -#: mod/removeme.php:45 -msgid "User deleted their account" -msgstr "Käyttäjä poisti tilinsä" - -#: mod/removeme.php:46 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "Friendica -solmullasi käyttäjä poisti tilinsä. Varmista että hänen tiedot poistetaan myös varmuuskopioista." - -#: mod/removeme.php:47 -#, php-format -msgid "The user id is %d" -msgstr "Käyttäjätunnus on %d" - -#: mod/removeme.php:78 mod/removeme.php:81 -msgid "Remove My Account" -msgstr "Poista tilini" - -#: mod/removeme.php:79 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Tämä poistaa käyttäjätilisi pysyvästi. Poistoa ei voi perua myöhemmin." - -#: mod/removeme.php:80 -msgid "Please enter your password for verification:" -msgstr "Syötä salasanasi varmistusta varten:" - -#: mod/search.php:105 -msgid "Only logged in users are permitted to perform a search." -msgstr "" - -#: mod/search.php:129 -msgid "Too Many Requests" -msgstr "Liian monta pyyntöä" - -#: mod/search.php:130 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "" - -#: mod/search.php:234 -#, php-format -msgid "Items tagged with: %s" -msgstr "Kohteet joilla tunnisteet: %s" - -#: mod/settings.php:56 -msgid "Account" -msgstr "Tili" - -#: mod/settings.php:73 -msgid "Display" -msgstr "Ulkonäkö" - -#: mod/settings.php:80 mod/settings.php:834 -msgid "Social Networks" -msgstr "Sosiaalinen media" - -#: mod/settings.php:94 src/Content/Nav.php:205 -msgid "Delegations" -msgstr "" - -#: mod/settings.php:101 -msgid "Connected apps" -msgstr "Yhdistetyt sovellukset" - -#: mod/settings.php:115 -msgid "Remove account" -msgstr "Poista tili" - -#: mod/settings.php:167 -msgid "Missing some important data!" -msgstr "Tärkeää dataa puuttuu!" - -#: mod/settings.php:278 -msgid "Failed to connect with email account using the settings provided." +#: src/BaseModule.php:442 src/Content/Widget.php:245 +#: src/Module/Contact.php:417 +msgid "Mutual friends" msgstr "" -#: mod/settings.php:283 -msgid "Email settings updated." -msgstr "Sähköpostin asetukset päivitettiin." - -#: mod/settings.php:299 -msgid "Features updated" -msgstr "Ominaisuudet päivitetty" - -#: mod/settings.php:372 -msgid "Relocate message has been send to your contacts" +#: src/BaseModule.php:450 +msgid "Common" msgstr "" -#: mod/settings.php:384 src/Model/User.php:340 -msgid "Passwords do not match. Password unchanged." -msgstr "Salasanat eivät täsmää. Salasana ennallaan." - -#: mod/settings.php:389 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Tyhjä salasanakenttä ei ole sallittu. Salasana ennallaan." - -#: mod/settings.php:394 src/Core/Console/NewPassword.php:87 -msgid "" -"The new password has been exposed in a public data dump, please choose " -"another." +#: src/Console/Addon.php:175 src/Console/Addon.php:199 +msgid "Addon not found" msgstr "" -#: mod/settings.php:400 -msgid "Wrong password." -msgstr "Väärä salasana." - -#: mod/settings.php:407 src/Core/Console/NewPassword.php:94 -msgid "Password changed." -msgstr "Salasana vaihdettu." - -#: mod/settings.php:409 src/Core/Console/NewPassword.php:91 -msgid "Password update failed. Please try again." -msgstr "Salasanan vaihto epäonnistui. Yritä uudelleen." - -#: mod/settings.php:493 -msgid " Please use a shorter name." -msgstr "Käytä lyhyempää nimeä." - -#: mod/settings.php:496 -msgid " Name too short." -msgstr "Nimi on liian lyhyt." - -#: mod/settings.php:504 -msgid "Wrong Password" -msgstr "Väärä salasana" - -#: mod/settings.php:509 -msgid "Invalid email." -msgstr "Virheellinen sähköposti." - -#: mod/settings.php:516 -msgid "Cannot change to that email." -msgstr "" - -#: mod/settings.php:566 -msgid "Private forum has no privacy permissions. Using default privacy group." +#: src/Console/Addon.php:179 +msgid "Addon already enabled" msgstr "" -#: mod/settings.php:569 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" - -#: mod/settings.php:609 -msgid "Settings updated." -msgstr "Asetukset päivitetty." - -#: mod/settings.php:668 mod/settings.php:694 mod/settings.php:728 -msgid "Add application" -msgstr "Lisää sovellus" - -#: mod/settings.php:672 mod/settings.php:698 -msgid "Consumer Key" -msgstr "Kuluttajan avain" - -#: mod/settings.php:673 mod/settings.php:699 -msgid "Consumer Secret" -msgstr "Kuluttajasalaisuus" - -#: mod/settings.php:674 mod/settings.php:700 -msgid "Redirect" -msgstr "Uudelleenohjaus" - -#: mod/settings.php:675 mod/settings.php:701 -msgid "Icon url" -msgstr "Kuvakkeen URL-osoite" - -#: mod/settings.php:686 -msgid "You can't edit this application." -msgstr "Et voi muokata tätä sovellusta." - -#: mod/settings.php:727 -msgid "Connected Apps" -msgstr "Yhdistetyt sovellukset" - -#: mod/settings.php:729 src/Object/Post.php:155 src/Object/Post.php:157 -msgid "Edit" -msgstr "Muokkaa" - -#: mod/settings.php:731 -msgid "Client key starts with" -msgstr "Asiakasavain alkaa" - -#: mod/settings.php:732 -msgid "No name" -msgstr "Ei nimeä" - -#: mod/settings.php:733 -msgid "Remove authorization" -msgstr "Poista lupa" - -#: mod/settings.php:744 -msgid "No Addon settings configured" -msgstr "Lisäosa-asetukset puuttuvat" - -#: mod/settings.php:753 -msgid "Addon Settings" -msgstr "Lisäosa-asetukset" - -#: mod/settings.php:774 -msgid "Additional Features" -msgstr "Lisäominaisuuksia" - -#: mod/settings.php:797 src/Content/ContactSelector.php:83 -msgid "Diaspora" -msgstr "Diaspora" - -#: mod/settings.php:797 mod/settings.php:798 -msgid "enabled" -msgstr "käytössä" - -#: mod/settings.php:797 mod/settings.php:798 -msgid "disabled" -msgstr "pois käytöstä" - -#: mod/settings.php:797 mod/settings.php:798 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Sisäänrakennettu tuki palvelulle %s on %s" - -#: mod/settings.php:798 -msgid "GNU Social (OStatus)" -msgstr "GNU Social (OStatus)" - -#: mod/settings.php:829 -msgid "Email access is disabled on this site." -msgstr "" - -#: mod/settings.php:839 -msgid "General Social Media Settings" -msgstr "Yleiset some asetukset" - -#: mod/settings.php:840 -msgid "Disable Content Warning" -msgstr "Poista sisältövaroitus käytöstä" - -#: mod/settings.php:840 -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 " -"collapsing and sets the content warning as the post title. Doesn't affect " -"any other content filtering you eventually set up." -msgstr "" - -#: mod/settings.php:841 -msgid "Disable intelligent shortening" -msgstr "Poista alykäs lyhentäminen käytöstä" - -#: mod/settings.php:841 -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:842 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Automaattisesti seuraa GNU social (OStatus) seuraajat/mainitsijat" - -#: mod/settings.php:842 -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:843 -msgid "Default group for OStatus contacts" -msgstr "Oletusryhmä OStatus kontakteille" - -#: mod/settings.php:844 -msgid "Your legacy GNU Social account" -msgstr "Vanha GNU social käyttäjätilisi" - -#: mod/settings.php:844 -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:847 -msgid "Repair OStatus subscriptions" -msgstr "Korjaa OStatus tilaukset" - -#: mod/settings.php:851 -msgid "Email/Mailbox Setup" -msgstr "Sähköpostin asennus" - -#: mod/settings.php:852 -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:853 -msgid "Last successful email check:" -msgstr "Viimeisin onnistunut sähköpostitarkistus:" - -#: mod/settings.php:855 -msgid "IMAP server name:" -msgstr "IMAP-palvelimen nimi:" - -#: mod/settings.php:856 -msgid "IMAP port:" -msgstr "IMAP-porttti:" - -#: mod/settings.php:857 -msgid "Security:" -msgstr "Turvallisuus:" - -#: mod/settings.php:857 mod/settings.php:862 -msgid "None" -msgstr "Ei mitään" - -#: mod/settings.php:858 -msgid "Email login name:" -msgstr "Sähköpostitilin käyttäjätunnus:" - -#: mod/settings.php:859 -msgid "Email password:" -msgstr "Sähköpostin salasana:" - -#: mod/settings.php:860 -msgid "Reply-to address:" -msgstr "Vastausosoite:" - -#: mod/settings.php:861 -msgid "Send public posts to all email contacts:" -msgstr "Lähetä julkiset julkaisut kaikille kontakteille:" - -#: mod/settings.php:862 -msgid "Action after import:" -msgstr "Toiminta tuonnin jälkeen:" - -#: mod/settings.php:862 src/Content/Nav.php:193 -msgid "Mark as seen" -msgstr "Merkitse luetuksi" - -#: mod/settings.php:862 -msgid "Move to folder" -msgstr "Siirrä kansioon" - -#: mod/settings.php:863 -msgid "Move to folder:" -msgstr "Siirrä kansioon:" - -#: mod/settings.php:906 -#, php-format -msgid "%s - (Unsupported)" -msgstr "%s - (Ei tueta)" - -#: mod/settings.php:908 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Kokeellinen)" - -#: mod/settings.php:951 -msgid "Display Settings" -msgstr "Näyttöasetukset" - -#: mod/settings.php:957 mod/settings.php:981 -msgid "Display Theme:" -msgstr "Käyttöliittymän teema:" - -#: mod/settings.php:958 -msgid "Mobile Theme:" -msgstr "Mobiiliteema:" - -#: mod/settings.php:959 -msgid "Suppress warning of insecure networks" -msgstr "" - -#: mod/settings.php:959 -msgid "" -"Should the system suppress the warning that the current group contains " -"members of networks that can't receive non public postings." -msgstr "" - -#: mod/settings.php:960 -msgid "Update browser every xx seconds" -msgstr "Päivitä selain xx sekunnin välein" - -#: mod/settings.php:960 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "Vähintään 10 sekuntia. -1 poistaa ominaisuuden käytöstä." - -#: mod/settings.php:961 -msgid "Number of items to display per page:" -msgstr "" - -#: mod/settings.php:961 mod/settings.php:962 -msgid "Maximum of 100 items" -msgstr "Enintään 100 kohdetta" - -#: mod/settings.php:962 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" - -#: mod/settings.php:963 -msgid "Don't show emoticons" -msgstr "Piilota hymiöt" - -#: mod/settings.php:964 -msgid "Calendar" -msgstr "Kalenteri" - -#: mod/settings.php:965 -msgid "Beginning of week:" -msgstr "Viikon alku:" - -#: mod/settings.php:966 -msgid "Don't show notices" -msgstr "" - -#: mod/settings.php:967 -msgid "Infinite scroll" -msgstr "Loputon selaaminen" - -#: mod/settings.php:968 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: mod/settings.php:968 -msgid "" -"When disabled, the network page is updated all the time, which could be " -"confusing while reading." -msgstr "" - -#: mod/settings.php:969 -msgid "Bandwidth Saver Mode" -msgstr "" - -#: mod/settings.php:969 -msgid "" -"When enabled, embedded content is not displayed on automatic updates, they " -"only show on page reload." -msgstr "" - -#: mod/settings.php:970 -msgid "Smart Threading" -msgstr "" - -#: mod/settings.php:970 -msgid "" -"When enabled, suppress extraneous thread indentation while keeping it where " -"it matters. Only works if threading is available and enabled." -msgstr "" - -#: mod/settings.php:972 -msgid "General Theme Settings" -msgstr "Yleiset teeman asetukset" - -#: mod/settings.php:973 -msgid "Custom Theme Settings" -msgstr "Mukautetut teema-asetukset" - -#: mod/settings.php:974 -msgid "Content Settings" -msgstr "Sisältöasetukset" - -#: mod/settings.php:975 view/theme/duepuntozero/config.php:73 -#: view/theme/frio/config.php:120 view/theme/quattro/config.php:75 -#: view/theme/vier/config.php:121 -msgid "Theme settings" -msgstr "Teeman asetukset" - -#: mod/settings.php:994 -msgid "Unable to find your profile. Please contact your admin." -msgstr "Profiilisi ei löytynyt. Ota yhteyttä ylläpitäjään." - -#: mod/settings.php:1033 -msgid "Account Types" -msgstr "Tilityypit" - -#: mod/settings.php:1034 -msgid "Personal Page Subtypes" -msgstr "Henkilökohtaisen sivun alatyypit" - -#: mod/settings.php:1035 -msgid "Community Forum Subtypes" -msgstr "Yhteisöfoorumin alatyypit" - -#: mod/settings.php:1043 -msgid "Account for a personal profile." -msgstr "Henkilökohtaisen profiilin käyttäjätili." - -#: mod/settings.php:1047 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "" - -#: mod/settings.php:1051 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "" - -#: mod/settings.php:1055 -msgid "Account for community discussions." -msgstr "" - -#: mod/settings.php:1059 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "" - -#: mod/settings.php:1063 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "" - -#: mod/settings.php:1067 -msgid "Automatically approves all contact requests." -msgstr "Automaattisesti hyväksyy kaikki kontaktipyynnöt" - -#: mod/settings.php:1071 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." +#: src/Console/Addon.php:203 +msgid "Addon already disabled" msgstr "" -#: mod/settings.php:1074 -msgid "Private Forum [Experimental]" -msgstr "Yksityisfoorumi [kokeellinen]" - -#: mod/settings.php:1075 -msgid "Requires manual approval of contact requests." -msgstr "" - -#: mod/settings.php:1086 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1086 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "" - -#: mod/settings.php:1094 -msgid "Publish your default profile in your local site directory?" -msgstr "Julkaise oletusprofiilisi tämän sivuston paikallisluettelossa?" - -#: mod/settings.php:1094 -#, php-format -msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "" - -#: mod/settings.php:1100 -msgid "Publish your default profile in the global social directory?" -msgstr "Julkaise oletusprofiilisi maailmanlaajuisessa sosiaaliluettelossa?" - -#: mod/settings.php:1100 -#, php-format -msgid "" -"Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public." -msgstr "" - -#: mod/settings.php:1107 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "" - -#: mod/settings.php:1107 -msgid "" -"Your contact list won't be shown in your default profile page. You can " -"decide to show your contact list separately for each additional profile you " -"create" -msgstr "" - -#: mod/settings.php:1111 -msgid "Hide your profile details from anonymous viewers?" -msgstr "" - -#: mod/settings.php:1111 -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:1115 -msgid "Allow friends to post to your profile page?" -msgstr "Anna kavereiden julkaista profiilisivullasi?" - -#: mod/settings.php:1115 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "" - -#: mod/settings.php:1119 -msgid "Allow friends to tag your posts?" -msgstr "Anna kavereiden lisätä tunnisteita julkaisuusi?" - -#: mod/settings.php:1119 -msgid "Your contacts can add additional tags to your posts." -msgstr "Kontaktisi voi lisätä ylimääräisiä tunnisteita julkaisuusi." - -#: mod/settings.php:1123 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: mod/settings.php:1123 -msgid "" -"If you like, Friendica may suggest new members to add you as a contact." -msgstr "" - -#: mod/settings.php:1127 -msgid "Permit unknown people to send you private mail?" -msgstr "Salli yksityisviesit tuntemattomilta?" - -#: mod/settings.php:1127 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "" - -#: mod/settings.php:1131 -msgid "Profile is not published." -msgstr "Profiili ei ole julkaistu." - -#: mod/settings.php:1137 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "Identiteettisi osoite on '%s' tai '%s'." - -#: mod/settings.php:1144 -msgid "Automatically expire posts after this many days:" -msgstr "" - -#: mod/settings.php:1144 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Jos kenttä jää tyhjäksi, julkaisut eivät vanhene. Vanhentuneet julkaisut poistetaan." - -#: mod/settings.php:1145 -msgid "Advanced expiration settings" -msgstr "" - -#: mod/settings.php:1146 -msgid "Advanced Expiration" -msgstr "" - -#: mod/settings.php:1147 -msgid "Expire posts:" -msgstr "Julkaisujen vanheneminen:" - -#: mod/settings.php:1148 -msgid "Expire personal notes:" -msgstr "" - -#: mod/settings.php:1149 -msgid "Expire starred posts:" -msgstr "Tähtimerkityt julkaisut vanhenee:" - -#: mod/settings.php:1150 -msgid "Expire photos:" -msgstr "Kuvat vanhenee:" - -#: mod/settings.php:1151 -msgid "Only expire posts by others:" -msgstr "" - -#: mod/settings.php:1181 -msgid "Account Settings" -msgstr "Tiliasetukset" - -#: mod/settings.php:1189 -msgid "Password Settings" -msgstr "Salasana-asetukset" - -#: mod/settings.php:1191 -msgid "Leave password fields blank unless changing" -msgstr "Jätä salasana kenttää tyhjäksi jos et halua vaihtaa salasanaa" - -#: mod/settings.php:1192 -msgid "Current Password:" -msgstr "Nykyinen salasana:" - -#: mod/settings.php:1192 mod/settings.php:1193 -msgid "Your current password to confirm the changes" -msgstr "Syötä nykyinen salasanasi vahvistaaksesi muutokset" - -#: mod/settings.php:1193 -msgid "Password:" -msgstr "Salasana:" - -#: mod/settings.php:1197 -msgid "Basic Settings" -msgstr "Perusasetukset" - -#: mod/settings.php:1198 src/Model/Profile.php:736 -msgid "Full Name:" -msgstr "Koko nimi:" - -#: mod/settings.php:1199 -msgid "Email Address:" -msgstr "Sähköpostiosoite:" - -#: mod/settings.php:1200 -msgid "Your Timezone:" -msgstr "Aikavyöhyke:" - -#: mod/settings.php:1201 -msgid "Your Language:" -msgstr "Kieli:" - -#: mod/settings.php:1201 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Aseta Friendican käyttöliittymän ja sähköpostiviestien kieli" - -#: mod/settings.php:1202 -msgid "Default Post Location:" -msgstr "Julkaisun oletussijainti:" - -#: mod/settings.php:1203 -msgid "Use Browser Location:" -msgstr "Käytä selaimen sijainti:" - -#: mod/settings.php:1206 -msgid "Security and Privacy Settings" -msgstr "Turvallisuus ja tietosuoja-asetukset" - -#: mod/settings.php:1208 -msgid "Maximum Friend Requests/Day:" -msgstr "Kaveripyyntöraja päivässä:" - -#: mod/settings.php:1208 mod/settings.php:1237 -msgid "(to prevent spam abuse)" -msgstr "(roskapostin estämiseksi)" - -#: mod/settings.php:1209 -msgid "Default Post Permissions" -msgstr "Julkaisun oletuskäyttöoikeudet:" - -#: mod/settings.php:1210 -msgid "(click to open/close)" -msgstr "(klikkaa auki/kiinni)" - -#: mod/settings.php:1220 -msgid "Default Private Post" -msgstr "" - -#: mod/settings.php:1221 -msgid "Default Public Post" -msgstr "" - -#: mod/settings.php:1225 -msgid "Default Permissions for New Posts" -msgstr "Uuden julkaisun oletuskäyttöoikeudet" - -#: mod/settings.php:1237 -msgid "Maximum private messages per day from unknown people:" -msgstr "Enimmäismäärä yksityisviestejä päivässä tuntemattomilta henkilöiltä:" - -#: mod/settings.php:1240 -msgid "Notification Settings" -msgstr "Huomautusasetukset" - -#: mod/settings.php:1241 -msgid "Send a notification email when:" -msgstr "Lähetä sähköposti-ilmoitus kun:" - -#: mod/settings.php:1242 -msgid "You receive an introduction" -msgstr "Vastaanotat kaverikutsun" - -#: mod/settings.php:1243 -msgid "Your introductions are confirmed" -msgstr "Kaverikutsusi on hyväksytty" - -#: mod/settings.php:1244 -msgid "Someone writes on your profile wall" -msgstr "Joku kirjoittaa profiiliseinällesi" - -#: mod/settings.php:1245 -msgid "Someone writes a followup comment" -msgstr "Joku vastaa kommenttiin" - -#: mod/settings.php:1246 -msgid "You receive a private message" -msgstr "Vastaanotat yksityisviestin" - -#: mod/settings.php:1247 -msgid "You receive a friend suggestion" -msgstr "Vastaanotat kaveriehdotuksen" - -#: mod/settings.php:1248 -msgid "You are tagged in a post" -msgstr "Sinut on merkitty julkaisuun" - -#: mod/settings.php:1249 -msgid "You are poked/prodded/etc. in a post" -msgstr "sinut on tökätty tms. julkaisussa" - -#: mod/settings.php:1251 -msgid "Activate desktop notifications" -msgstr "Ota työpöytäilmoitukset käyttöön" - -#: mod/settings.php:1251 -msgid "Show desktop popup on new notifications" -msgstr "Näytä uudet ilmoitukset ponnahdusikkunassa" - -#: mod/settings.php:1253 -msgid "Text-only notification emails" -msgstr "Ilmoitussähköposteissa vain tekstiä" - -#: mod/settings.php:1255 -msgid "Send text only notification emails, without the html part" -msgstr "Lähetä ilmoitussähköposteissa vain tekstiä ilman HTML-koodia" - -#: mod/settings.php:1257 -msgid "Show detailled notifications" -msgstr "Näytä yksityiskohtaiset ilmoitukset" - -#: mod/settings.php:1259 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "" - -#: mod/settings.php:1261 -msgid "Advanced Account/Page Type Settings" -msgstr "Käyttäjätili/sivutyyppi lisäasetuksia" - -#: mod/settings.php:1262 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: mod/settings.php:1265 -msgid "Relocate" -msgstr "Uudelleensijoitus" - -#: mod/settings.php:1266 -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:1267 -msgid "Resend relocate message to contacts" -msgstr "" - -#: mod/subthread.php:117 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: mod/update_community.php:27 mod/update_display.php:27 -#: mod/update_network.php:33 mod/update_notes.php:40 mod/update_profile.php:39 -msgid "[Embedded content - reload page to view]" -msgstr "[Upotettu sisältö - näet sen päivittämällä sivun]" - -#: mod/videos.php:139 -msgid "Do you really want to delete this video?" -msgstr "Haluatko varmasti poistaa tämän videon?" - -#: mod/videos.php:144 -msgid "Delete Video" -msgstr "Poista video" - -#: mod/videos.php:207 -msgid "No videos selected" -msgstr "Ei videoita valittuna" - -#: mod/videos.php:396 -msgid "Recent Videos" -msgstr "Viimeisimmät videot" - -#: mod/videos.php:398 -msgid "Upload New Videos" -msgstr "Lataa uusia videoita" - -#: view/theme/duepuntozero/config.php:54 src/Model/User.php:504 -msgid "default" -msgstr "oletus" - -#: view/theme/duepuntozero/config.php:55 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:56 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:57 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:58 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:59 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:60 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:74 -msgid "Variations" -msgstr "Muunnelmat" - -#: view/theme/frio/php/Image.php:24 -msgid "Top Banner" -msgstr "Yläpalkki" - -#: view/theme/frio/php/Image.php:24 -msgid "" -"Resize image to the width of the screen and show background color below on " -"long pages." -msgstr "" - -#: view/theme/frio/php/Image.php:25 -msgid "Full screen" -msgstr "Koko näyttö" - -#: view/theme/frio/php/Image.php:25 -msgid "" -"Resize image to fill entire screen, clipping either the right or the bottom." -msgstr "" - -#: view/theme/frio/php/Image.php:26 -msgid "Single row mosaic" -msgstr "" - -#: view/theme/frio/php/Image.php:26 -msgid "" -"Resize image to repeat it on a single row, either vertical or horizontal." -msgstr "" - -#: view/theme/frio/php/Image.php:27 -msgid "Mosaic" -msgstr "Mosaiikki" - -#: view/theme/frio/php/Image.php:27 -msgid "Repeat image to fill the screen." -msgstr "" - -#: view/theme/frio/config.php:102 -msgid "Custom" -msgstr "" - -#: view/theme/frio/config.php:114 -msgid "Note" -msgstr "Muistiinpano" - -#: view/theme/frio/config.php:114 -msgid "Check image permissions if all users are allowed to see the image" -msgstr "" - -#: view/theme/frio/config.php:121 -msgid "Select color scheme" -msgstr "Valitse värimalli" - -#: view/theme/frio/config.php:122 -msgid "Navigation bar background color" -msgstr "Navigointipalkin taustaväri" - -#: view/theme/frio/config.php:123 -msgid "Navigation bar icon color " -msgstr "Navigointipalkin kuvakkeiden väri" - -#: view/theme/frio/config.php:124 -msgid "Link color" -msgstr "Linkin väri" - -#: view/theme/frio/config.php:125 -msgid "Set the background color" -msgstr "Valitse taustaväri" - -#: view/theme/frio/config.php:126 -msgid "Content background opacity" -msgstr "Sisällön taustasameus" - -#: view/theme/frio/config.php:127 -msgid "Set the background image" -msgstr "Valitse taustakuva" - -#: view/theme/frio/config.php:128 -msgid "Background image style" -msgstr "Taustakuvan tyyli" - -#: view/theme/frio/config.php:133 -msgid "Login page background image" -msgstr "Sisäänkirjautumissivun taustakuva" - -#: view/theme/frio/config.php:137 -msgid "Login page background color" -msgstr "Sisäänkirjautumissivun taustaväri" - -#: view/theme/frio/config.php:137 -msgid "Leave background image and color empty for theme defaults" -msgstr "Jätä taustakuva ja väri tyhjäksi käyttääksesi teeman oletuksia" - -#: view/theme/frio/theme.php:238 -msgid "Guest" -msgstr "Vieras" - -#: view/theme/frio/theme.php:243 -msgid "Visitor" -msgstr "Vierailija" - -#: view/theme/frio/theme.php:256 src/Content/Nav.php:97 -#: src/Module/Login.php:312 -msgid "Logout" -msgstr "Kirjaudu ulos" - -#: view/theme/frio/theme.php:256 src/Content/Nav.php:97 -msgid "End this session" -msgstr "Lopeta istunto" - -#: view/theme/frio/theme.php:259 src/Content/Nav.php:100 -#: src/Content/Nav.php:186 -msgid "Your posts and conversations" -msgstr "Omat julkaisut ja keskustelut" - -#: view/theme/frio/theme.php:260 src/Content/Nav.php:101 -msgid "Your profile page" -msgstr "Oma profiilisivu" - -#: view/theme/frio/theme.php:261 src/Content/Nav.php:102 -msgid "Your photos" -msgstr "Omat kuvat" - -#: view/theme/frio/theme.php:262 src/Content/Nav.php:103 -#: src/Model/Profile.php:910 src/Model/Profile.php:913 -msgid "Videos" -msgstr "Videot" - -#: view/theme/frio/theme.php:262 src/Content/Nav.php:103 -msgid "Your videos" -msgstr "Omat videot" - -#: view/theme/frio/theme.php:263 src/Content/Nav.php:104 -msgid "Your events" -msgstr "Omat tapahtumat" - -#: view/theme/frio/theme.php:266 src/Content/Nav.php:183 -msgid "Conversations from your friends" -msgstr "Kavereiden keskustelut" - -#: view/theme/frio/theme.php:267 src/Content/Nav.php:170 -#: src/Model/Profile.php:925 src/Model/Profile.php:936 -msgid "Events and Calendar" -msgstr "Tapahtumat ja kalenteri" - -#: view/theme/frio/theme.php:268 src/Content/Nav.php:196 -msgid "Private mail" -msgstr "Yksityinen posti" - -#: view/theme/frio/theme.php:269 src/Content/Nav.php:207 -msgid "Account settings" -msgstr "Tiliasetukset" - -#: view/theme/frio/theme.php:270 src/Content/Nav.php:213 -msgid "Manage/edit friends and contacts" -msgstr "Hallitse/muokkaa kaverit ja kontaktit" - -#: view/theme/quattro/config.php:76 -msgid "Alignment" -msgstr "Kohdistaminen" - -#: view/theme/quattro/config.php:76 -msgid "Left" -msgstr "Vasemmalle" - -#: view/theme/quattro/config.php:76 -msgid "Center" -msgstr "Keskelle" - -#: view/theme/quattro/config.php:77 -msgid "Color scheme" -msgstr "Värimalli" - -#: view/theme/quattro/config.php:78 -msgid "Posts font size" -msgstr "Julkaisujen fonttikoko" - -#: view/theme/quattro/config.php:79 -msgid "Textareas font size" -msgstr "Tekstikenttien fonttikoko" - -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" -msgstr "" - -#: view/theme/vier/config.php:115 src/Core/ACL.php:309 -msgid "don't show" -msgstr "älä näytä" - -#: view/theme/vier/config.php:115 src/Core/ACL.php:308 -msgid "show" -msgstr "näytä" - -#: view/theme/vier/config.php:122 -msgid "Set style" -msgstr "Aseta tyyli" - -#: view/theme/vier/config.php:123 -msgid "Community Pages" -msgstr "Yhteisösivut" - -#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150 -msgid "Community Profiles" -msgstr "Yhteisöprofiilit" - -#: view/theme/vier/config.php:125 -msgid "Help or @NewHere ?" -msgstr "" - -#: view/theme/vier/config.php:126 view/theme/vier/theme.php:388 -msgid "Connect Services" -msgstr "Yhdistä palvelut" - -#: view/theme/vier/config.php:127 -msgid "Find Friends" -msgstr "Etsi kavereita" - -#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181 -msgid "Last users" -msgstr "Viimeisimmät käyttäjät" - -#: view/theme/vier/theme.php:199 src/Content/Widget.php:59 -msgid "Find People" -msgstr "Löydä ihmisiä" - -#: view/theme/vier/theme.php:200 src/Content/Widget.php:60 -msgid "Enter name or interest" -msgstr "Syötä nimi tai harrastus" - -#: view/theme/vier/theme.php:202 src/Content/Widget.php:62 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Esim. Matti Meikäläinen, kalastus yms." - -#: view/theme/vier/theme.php:205 src/Content/Widget.php:65 -msgid "Similar Interests" -msgstr "Yhteiset harrastukset" - -#: view/theme/vier/theme.php:206 src/Content/Widget.php:66 -msgid "Random Profile" -msgstr "Satunnainen profiili" - -#: view/theme/vier/theme.php:207 src/Content/Widget.php:67 -msgid "Invite Friends" -msgstr "Kutsu kavereita" - -#: view/theme/vier/theme.php:210 src/Content/Widget.php:70 -msgid "Local Directory" -msgstr "Paikallinen hakemisto" - -#: view/theme/vier/theme.php:255 src/Content/ForumManager.php:127 -msgid "External link to forum" -msgstr "Ulkoinen linkki foorumiin" - -#: view/theme/vier/theme.php:291 -msgid "Quick Start" -msgstr "Pika-aloitus" - -#: src/Core/UserImport.php:104 -msgid "Error decoding account file" -msgstr "Tilitiedoston tulkinnassa tapahtui virhe" - -#: src/Core/UserImport.php:110 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Virhe: tiedostosta puuttuu versiotiedot! Saattaa olla että tämä ei ole Friendica -tilitiedosto?" - -#: src/Core/UserImport.php:118 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "Käyttäjä '%s' on jo olemassa tällä palvelimella!" - -#: src/Core/UserImport.php:151 -msgid "User creation error" -msgstr "Virhe käyttäjän luomisessa" - -#: src/Core/UserImport.php:169 -msgid "User profile creation error" -msgstr "Virhe käyttäjäprofiilin luomisessa" - -#: src/Core/UserImport.php:213 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d kontakti ei tuotu" -msgstr[1] "%d kontakteja ei tuotu" - -#: src/Core/UserImport.php:278 -msgid "Done. You can now login with your username and password" -msgstr "Suoritettu. Voit nyt kirjautua sisään käyttäjätunnuksellasi." - -#: src/Core/ACL.php:295 -msgid "Post to Email" -msgstr "Viesti sähköpostiin" - -#: src/Core/ACL.php:301 -msgid "Hide your profile details from unknown viewers?" -msgstr "Piilota profiilitietosi tuntemattomilta?" - -#: src/Core/ACL.php:300 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: src/Core/ACL.php:307 -msgid "Visible to everybody" -msgstr "Näkyvissä kaikille" - -#: src/Core/ACL.php:319 -msgid "Close" -msgstr "Sulje" - -#: src/Core/Console/NewPassword.php:78 -msgid "Enter new password: " -msgstr "Syötä uusi salasana:" - -#: src/Core/Console/NewPassword.php:83 src/Model/User.php:262 -msgid "Password can't be empty" -msgstr "Salasanakenttä ei voi olla tyhjä" - -#: src/Core/Console/ArchiveContact.php:67 +#: src/Console/ArchiveContact.php:106 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "" -#: src/Core/Console/ArchiveContact.php:72 +#: src/Console/ArchiveContact.php:109 msgid "The contact entries have been archived" msgstr "" -#: src/Core/NotificationsManager.php:171 -msgid "System" -msgstr "Järjestelmä" - -#: src/Core/NotificationsManager.php:192 src/Content/Nav.php:124 -#: src/Content/Nav.php:186 -msgid "Home" -msgstr "Koti" - -#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:190 -msgid "Introductions" -msgstr "Esittelyt" - -#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268 +#: src/Console/GlobalCommunityBlock.php:96 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format -msgid "%s commented on %s's post" -msgstr "%s kommentoi julkaisuun jonka kirjoitti %s" - -#: src/Core/NotificationsManager.php:267 -#, php-format -msgid "%s created a new post" -msgstr "%s loi uuden julkaisun" - -#: src/Core/NotificationsManager.php:281 -#, php-format -msgid "%s liked %s's post" -msgstr "%s tykkäsi julkaisusta jonka kirjoitti %s" - -#: src/Core/NotificationsManager.php:294 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s ei tykännyt julkaisusta jonka kirjoitti %s" - -#: src/Core/NotificationsManager.php:307 -#, php-format -msgid "%s is attending %s's event" -msgstr "%s osallistuu tapahtumaan jonka järjestää %s" - -#: src/Core/NotificationsManager.php:320 -#, php-format -msgid "%s is not attending %s's event" -msgstr "%s ei osallistu tapahtumaan jonka järjestää %s" - -#: src/Core/NotificationsManager.php:333 -#, php-format -msgid "%s may attend %s's event" -msgstr "%s ehkä osallistuu tapahtumaan jonka järjestää %s" - -#: src/Core/NotificationsManager.php:350 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s ja %s ovat kavereita" - -#: src/Core/NotificationsManager.php:825 -msgid "Friend Suggestion" -msgstr "Kaveriehdotus" - -#: src/Core/NotificationsManager.php:851 -msgid "Friend/Connect Request" -msgstr "Ystävä/yhteyspyyntö" - -#: src/Core/NotificationsManager.php:851 -msgid "New Follower" -msgstr "Uusi seuraaja" - -#: src/Core/Install.php:157 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Komentoriviversiota PHP:stä ei löytynyt web-palvelimen PATH:ista." - -#: src/Core/Install.php:158 -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'" +msgid "Could not find any contact entry for this URL (%s)" msgstr "" -#: src/Core/Install.php:162 -msgid "PHP executable path" -msgstr "Polku PHP-ohjelmaan" +#: src/Console/GlobalCommunityBlock.php:101 +#: src/Module/Moderation/Blocklist/Contact.php:82 +msgid "The contact has been blocked from the node" +msgstr "Kontakti on estetty tällä solmulla" -#: src/Core/Install.php:162 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Kirjoita koko polku PHP-ohjelmaan. Voit jättää sen tyhjäksi, jos haluat jatkaa asennusta." - -#: src/Core/Install.php:167 -msgid "Command line PHP" -msgstr "Komentorivi-PHP" - -#: src/Core/Install.php:176 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: src/Core/Install.php:177 -msgid "Found PHP version: " -msgstr "PHP-versio löydetty:" - -#: src/Core/Install.php:179 -msgid "PHP cli binary" -msgstr "PHP cli -binääritiedosto" - -#: src/Core/Install.php:189 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Järjestelmäsi komentorivi-PHP:ssä ei ole käytössä asetusta \"register_argc_argv\"." - -#: src/Core/Install.php:190 -msgid "This is required for message delivery to work." -msgstr "Asetus vaaditaan viestien lähettämiseen." - -#: src/Core/Install.php:192 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: src/Core/Install.php:220 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Virhe: järjestelmäsi \"openssl_pkey_new\" -funktio ei pysty generoimaan salausavaimia." - -#: src/Core/Install.php:221 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Jos on kyse Windows-pavelimesta, katso \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: src/Core/Install.php:223 -msgid "Generate encryption keys" -msgstr "Luo salausavaimet" - -#: src/Core/Install.php:244 -msgid "libCurl PHP module" -msgstr "PHP-moduuli libCurl" - -#: src/Core/Install.php:245 -msgid "GD graphics PHP module" -msgstr "PHP-moduuli GD graphics" - -#: src/Core/Install.php:246 -msgid "OpenSSL PHP module" -msgstr "PHP-moduuli OpenSSL" - -#: src/Core/Install.php:247 -msgid "PDO or MySQLi PHP module" -msgstr "PDO tai MySQLi PHP-moduuli" - -#: src/Core/Install.php:248 -msgid "mb_string PHP module" -msgstr "PHP-moduuli mb_string" - -#: src/Core/Install.php:249 -msgid "XML PHP module" -msgstr "XML PHP-moduuli" - -#: src/Core/Install.php:250 -msgid "iconv PHP module" -msgstr "iconv PHP-moduuli" - -#: src/Core/Install.php:251 -msgid "POSIX PHP module" -msgstr "POSIX PHP-moduuli" - -#: src/Core/Install.php:255 src/Core/Install.php:257 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite -moduuli" - -#: src/Core/Install.php:255 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Virhe: Apache-palvelimen mod-rewrite -moduuli vaaditaan, mutta sitä ei ole asennettu." - -#: src/Core/Install.php:263 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Virhe: libCURL PHP -moduuli vaaditaan, mutta sitä ei ole asennettu." - -#: src/Core/Install.php:267 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Virhe: GD graphics PHP -moduuli JPEG-tuella vaaditaan, mutta sitä ei ole asennettu." - -#: src/Core/Install.php:271 -msgid "Error: openssl PHP module required but not installed." -msgstr "Virhe: openssl PHP -moduuli vaaditaan, mutta sitä ei ole asennettu." - -#: src/Core/Install.php:275 -msgid "Error: PDO or MySQLi PHP module required but not installed." -msgstr "Virhe: PDO tai MySQLi PHP-moduuli vaaditaan, mutta sitä ei ole asennettu." - -#: src/Core/Install.php:279 -msgid "Error: The MySQL driver for PDO is not installed." -msgstr "Virhe: PDO:n MySQL-ajuri ei ole asennettu" - -#: src/Core/Install.php:283 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Virhe: PHP-moduuli mb_string vaaditaan, mutta sitä ei ole asennettu." - -#: src/Core/Install.php:287 -msgid "Error: iconv PHP module required but not installed." -msgstr "Virhe: iconv PHP-moduuli vaaditaan, mutta sitä ei ole asennettu." - -#: src/Core/Install.php:291 -msgid "Error: POSIX PHP module required but not installed." -msgstr "Virhe: POSIX PHP-moduuli vaadittaan, mutta sitä ei ole asennettu." - -#: src/Core/Install.php:301 -msgid "Error, XML PHP module required but not installed." -msgstr "Virhe: XML PHP-moduuli vaaditaan, mutta sitä ei ole asennettu." - -#: src/Core/Install.php:320 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "Web-asennuksen pitäisi pystyä luomaan tiedosto nimeltä \".htconfig.php\" palvelimesi ylimpään kansioon, mutta se ei nyt onnistu." - -#: src/Core/Install.php:321 -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 "Tämä on yleensä käyttöoikeusasetus, jolloin web-palvelimesi ei pysty kirjoittamaan tiedostoja kansioosi, vaikka itse siihen pystyisit." - -#: src/Core/Install.php:322 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Tämän menettelyn lopussa annamme sinulle tekstin tallennettavaksi tiedostoon nimeltä .htconfig.php Friendican ylätason kansiossa." - -#: src/Core/Install.php:323 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "" - -#: src/Core/Install.php:326 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php on kirjoitettava" - -#: src/Core/Install.php:344 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" - -#: src/Core/Install.php:345 -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 "" - -#: src/Core/Install.php:346 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "" - -#: src/Core/Install.php:347 -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 "" - -#: src/Core/Install.php:350 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 on kirjoitettava" - -#: src/Core/Install.php:375 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "URL-osoitteen uudelleenkirjoitus .htaccess-tiedostossa ei toimi. Tarkista palvelimen asetukset." - -#: src/Core/Install.php:377 -msgid "Error message from Curl when fetching" -msgstr "" - -#: src/Core/Install.php:381 -msgid "Url rewrite is working" -msgstr "URL-osoitteen uudellenkirjoitus toimii" - -#: src/Core/Install.php:408 -msgid "ImageMagick PHP extension is not installed" -msgstr "ImageMagick PHP-laajennus ei ole asetettu" - -#: src/Core/Install.php:410 -msgid "ImageMagick PHP extension is installed" -msgstr "ImageMagick PHP-laajennus on asetettu" - -#: src/Core/Install.php:412 -msgid "ImageMagick supports GIF" -msgstr "ImageMagik tukee GIF-formaattia" - -#: src/Util/Temporal.php:147 src/Model/Profile.php:756 -msgid "Birthday:" -msgstr "Syntymäpäivä:" - -#: src/Util/Temporal.php:151 -msgid "YYYY-MM-DD or MM-DD" -msgstr "VVVV-KK-PP tai KK-PP" - -#: src/Util/Temporal.php:294 -msgid "never" -msgstr "ei ikinä" - -#: src/Util/Temporal.php:300 -msgid "less than a second ago" -msgstr "alle sekunti sitten" - -#: src/Util/Temporal.php:303 -msgid "year" -msgstr "vuosi" - -#: src/Util/Temporal.php:303 -msgid "years" -msgstr "vuotta" - -#: src/Util/Temporal.php:304 -msgid "months" -msgstr "kuukautta" - -#: src/Util/Temporal.php:305 -msgid "weeks" -msgstr "viikkoa" - -#: src/Util/Temporal.php:306 -msgid "days" -msgstr "päivää" - -#: src/Util/Temporal.php:307 -msgid "hour" -msgstr "tunti" - -#: src/Util/Temporal.php:307 -msgid "hours" -msgstr "tuntia" - -#: src/Util/Temporal.php:308 -msgid "minute" -msgstr "minuutti" - -#: src/Util/Temporal.php:308 -msgid "minutes" -msgstr "inuuttia" - -#: src/Util/Temporal.php:309 -msgid "second" -msgstr "sekunti" - -#: src/Util/Temporal.php:309 -msgid "seconds" -msgstr "sekuntia" - -#: src/Util/Temporal.php:318 +#: src/Console/MergeContacts.php:75 #, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s sitten" +msgid "%d %s, %d duplicates." +msgstr "" -#: src/Content/Text/BBCode.php:426 -msgid "view full size" -msgstr "näytä täysikokoisena" - -#: src/Content/Text/BBCode.php:852 src/Content/Text/BBCode.php:1621 -#: src/Content/Text/BBCode.php:1622 -msgid "Image/photo" -msgstr "Kuva/valokuva" - -#: src/Content/Text/BBCode.php:990 +#: src/Console/MergeContacts.php:78 #, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" +msgid "uri-id is empty for contact %s." +msgstr "" -#: src/Content/Text/BBCode.php:1548 src/Content/Text/BBCode.php:1570 -msgid "$1 wrote:" -msgstr "$1 kirjoitti:" +#: src/Console/MergeContacts.php:91 +#, php-format +msgid "No valid first contact found for uri-id %d." +msgstr "" -#: src/Content/Text/BBCode.php:1630 src/Content/Text/BBCode.php:1631 -msgid "Encrypted content" -msgstr "Salattu sisältö" +#: src/Console/MergeContacts.php:102 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." +msgstr "" -#: src/Content/Text/BBCode.php:1750 -msgid "Invalid source protocol" -msgstr "Virheellinen lähdeprotokolla" +#: src/Console/MergeContacts.php:106 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." +msgstr "" -#: src/Content/Text/BBCode.php:1761 -msgid "Invalid link protocol" -msgstr "Virheellinen linkkiprotokolla" +#: src/Console/MergeContacts.php:142 +#, php-format +msgid "Deletion of id %d failed" +msgstr "" -#: src/Content/OEmbed.php:253 -msgid "Embedding disabled" -msgstr "Upottaminen poistettu käytöstä" +#: src/Console/MergeContacts.php:144 +#, php-format +msgid "Deletion of id %d was successful" +msgstr "" -#: src/Content/OEmbed.php:373 -msgid "Embedded content" -msgstr "Upotettu sisältö" +#: src/Console/MergeContacts.php:150 +#, php-format +msgid "Updating \"%s\" in \"%s\" from %d to %d" +msgstr "" -#: src/Content/Widget/CalendarExport.php:61 -msgid "Export" -msgstr "Vie" +#: src/Console/MergeContacts.php:152 +msgid " - found" +msgstr "" -#: src/Content/Widget/CalendarExport.php:62 -msgid "Export calendar as ical" -msgstr "Vie kalenteri ical -tiedostona" +#: src/Console/MergeContacts.php:159 +msgid " - failed" +msgstr "" -#: src/Content/Widget/CalendarExport.php:63 -msgid "Export calendar as csv" -msgstr "Vie kalenteri csv-tiedostona" +#: src/Console/MergeContacts.php:161 +msgid " - success" +msgstr "" -#: src/Content/ContactSelector.php:55 +#: src/Console/MergeContacts.php:165 +msgid " - deleted" +msgstr "" + +#: src/Console/MergeContacts.php:168 +msgid " - done" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:91 +msgid "The avatar cache needs to be enabled to use this command." +msgstr "" + +#: src/Console/MoveToAvatarCache.php:109 +#, php-format +msgid "no resource in photo %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:137 +#, php-format +msgid "no photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:146 +#, php-format +msgid "no image data for photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:155 +#, php-format +msgid "invalid image for id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:168 +#, php-format +msgid "Quit on invalid photo %s" +msgstr "" + +#: src/Console/PostUpdate.php:87 +#, php-format +msgid "Post update version number has been set to %s." +msgstr "" + +#: src/Console/PostUpdate.php:95 +msgid "Check for pending update actions." +msgstr "" + +#: src/Console/PostUpdate.php:97 +msgid "Done." +msgstr "" + +#: src/Console/PostUpdate.php:99 +msgid "Execute pending post updates." +msgstr "" + +#: src/Console/PostUpdate.php:105 +msgid "All pending post updates are done." +msgstr "" + +#: src/Console/User.php:158 src/Console/User.php:245 +msgid "Enter user nickname: " +msgstr "" + +#: src/Console/User.php:182 src/Model/User.php:663 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "Käyttäjää ei löydy" + +#: src/Console/User.php:202 +msgid "Enter new password: " +msgstr "Syötä uusi salasana:" + +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 +msgid "Password update failed. Please try again." +msgstr "Salasanan vaihto epäonnistui. Yritä uudelleen." + +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 +msgid "Password changed." +msgstr "Salasana vaihdettu." + +#: src/Console/User.php:237 +msgid "Enter user name: " +msgstr "" + +#: src/Console/User.php:253 +msgid "Enter user email address: " +msgstr "" + +#: src/Console/User.php:261 +msgid "Enter a language (optional): " +msgstr "" + +#: src/Console/User.php:286 +msgid "User is not pending." +msgstr "" + +#: src/Console/User.php:318 +msgid "User has already been marked for deletion." +msgstr "" + +#: src/Console/User.php:323 +#, php-format +msgid "Type \"yes\" to delete %s" +msgstr "" + +#: src/Console/User.php:325 +msgid "Deletion aborted." +msgstr "" + +#: src/Console/User.php:450 +msgid "Enter category: " +msgstr "" + +#: src/Console/User.php:460 +msgid "Enter key: " +msgstr "" + +#: src/Console/User.php:494 +msgid "Enter value: " +msgstr "" + +#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +msgid "newer" +msgstr "uudempi" + +#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +msgid "older" +msgstr "vanhempi" + +#: src/Content/ContactSelector.php:51 msgid "Frequently" msgstr "Usein" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:52 msgid "Hourly" msgstr "Tunneittain" -#: src/Content/ContactSelector.php:57 +#: src/Content/ContactSelector.php:53 msgid "Twice daily" msgstr "Kahdesti päivässä" -#: src/Content/ContactSelector.php:58 +#: src/Content/ContactSelector.php:54 msgid "Daily" msgstr "Päivittäin" -#: src/Content/ContactSelector.php:59 +#: src/Content/ContactSelector.php:55 msgid "Weekly" msgstr "Viikottain" -#: src/Content/ContactSelector.php:60 +#: src/Content/ContactSelector.php:56 msgid "Monthly" msgstr "Kuukausittain" -#: src/Content/ContactSelector.php:80 +#: src/Content/ContactSelector.php:126 +msgid "DFRN" +msgstr "" + +#: src/Content/ContactSelector.php:127 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:81 +#: src/Content/ContactSelector.php:128 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:84 -msgid "Facebook" -msgstr "Facebook" +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Email" +msgstr "Sähköposti" -#: src/Content/ContactSelector.php:85 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +msgid "Diaspora" +msgstr "Diaspora" + +#: src/Content/ContactSelector.php:131 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:86 +#: src/Content/ContactSelector.php:132 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:87 +#: src/Content/ContactSelector.php:133 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:88 +#: src/Content/ContactSelector.php:134 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:89 +#: src/Content/ContactSelector.php:135 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:90 +#: src/Content/ContactSelector.php:136 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:91 +#: src/Content/ContactSelector.php:137 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:92 +#: src/Content/ContactSelector.php:138 +msgid "Discourse" +msgstr "" + +#: src/Content/ContactSelector.php:139 msgid "Diaspora Connector" msgstr "Diaspora -liitin" -#: src/Content/ContactSelector.php:93 +#: src/Content/ContactSelector.php:140 msgid "GNU Social Connector" msgstr "GNU social -liitin" -#: src/Content/ContactSelector.php:94 +#: src/Content/ContactSelector.php:141 +msgid "ActivityPub" +msgstr "" + +#: src/Content/ContactSelector.php:142 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:95 -msgid "App.net" -msgstr "App.net" - -#: src/Content/ContactSelector.php:125 -msgid "Male" -msgstr "Mies" - -#: src/Content/ContactSelector.php:125 -msgid "Female" -msgstr "Nainen" - -#: src/Content/ContactSelector.php:125 -msgid "Currently Male" -msgstr "Tällä hetkellä mies" - -#: src/Content/ContactSelector.php:125 -msgid "Currently Female" -msgstr "Tällä hetkellä nainen" - -#: src/Content/ContactSelector.php:125 -msgid "Mostly Male" -msgstr "Enimmäkseen mies" - -#: src/Content/ContactSelector.php:125 -msgid "Mostly Female" -msgstr "Enimmäkseen nainen" - -#: src/Content/ContactSelector.php:125 -msgid "Transgender" -msgstr "Transsukupuolinen" - -#: src/Content/ContactSelector.php:125 -msgid "Intersex" -msgstr "Intersukupuolinen" - -#: src/Content/ContactSelector.php:125 -msgid "Transsexual" -msgstr "Transsukupuolinen" - -#: src/Content/ContactSelector.php:125 -msgid "Hermaphrodite" -msgstr "Hermafrodiitti" - -#: src/Content/ContactSelector.php:125 -msgid "Neuter" -msgstr "Neutri" - -#: src/Content/ContactSelector.php:125 -msgid "Non-specific" -msgstr "Ei-binäärinen" - -#: src/Content/ContactSelector.php:125 -msgid "Other" -msgstr "Toinen" - -#: src/Content/ContactSelector.php:147 -msgid "Males" -msgstr "Miehet" - -#: src/Content/ContactSelector.php:147 -msgid "Females" -msgstr "Naiset" - -#: src/Content/ContactSelector.php:147 -msgid "Gay" -msgstr "Homo" - -#: src/Content/ContactSelector.php:147 -msgid "Lesbian" -msgstr "Lesbo" - -#: src/Content/ContactSelector.php:147 -msgid "No Preference" +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:147 -msgid "Bisexual" -msgstr "Biseksuaali" - -#: src/Content/ContactSelector.php:147 -msgid "Autosexual" -msgstr "Autoseksuaalinen" - -#: src/Content/ContactSelector.php:147 -msgid "Abstinent" -msgstr "Selibaatissa elävä" - -#: src/Content/ContactSelector.php:147 -msgid "Virgin" -msgstr "Neitsyt" - -#: src/Content/ContactSelector.php:147 -msgid "Deviant" +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" msgstr "" -#: src/Content/ContactSelector.php:147 -msgid "Fetish" -msgstr "Fetissi" - -#: src/Content/ContactSelector.php:147 -msgid "Oodles" +#: src/Content/ContactSelector.php:180 +#, php-format +msgid "%s (via %s)" msgstr "" -#: src/Content/ContactSelector.php:147 -msgid "Nonsexual" -msgstr "Aseksuaali" +#: src/Content/Conversation.php:218 +msgid "and" +msgstr "ja" -#: src/Content/ContactSelector.php:169 -msgid "Single" -msgstr "Sinkku" +#: src/Content/Conversation.php:221 +#, php-format +msgid "and %d other people" +msgstr "ja %d muuta ihmistä" -#: src/Content/ContactSelector.php:169 -msgid "Lonely" -msgstr "Yksinäinen" +#: src/Content/Conversation.php:227 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Available" -msgstr "Saatavilla" +#: src/Content/Conversation.php:229 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Unavailable" -msgstr "Ei saatavilla" +#: src/Content/Conversation.php:231 +#, php-format +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Has crush" -msgstr "Ihastunut" +#: src/Content/Conversation.php:233 +#, php-format +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Infatuated" -msgstr "Hullaantunut" +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Dating" -msgstr "Seurustelee" +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Unfaithful" -msgstr "Uskoton" +#: src/Content/Conversation.php:266 +#, php-format +msgid " likes this" +msgid_plural " like this" +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Sex Addict" -msgstr "Sekririippuvainen" +#: src/Content/Conversation.php:269 +#, php-format +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 src/Model/User.php:521 -msgid "Friends" -msgstr "Kaverit" +#: src/Content/Conversation.php:272 +#, php-format +msgid " attends" +msgid_plural " attend" +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Friends/Benefits" -msgstr "Kaverit eduilla" +#: src/Content/Conversation.php:275 +#, php-format +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Casual" -msgstr "Tavallinen" +#: src/Content/Conversation.php:278 +#, php-format +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Engaged" -msgstr "Kihloissa" +#: src/Content/Conversation.php:281 +#, php-format +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Married" -msgstr "Naimisissa" +#: src/Content/Conversation.php:328 +msgid "Visible to everybody" +msgstr "Näkyy kaikille" -#: src/Content/ContactSelector.php:169 -msgid "Imaginarily married" +#: src/Content/Conversation.php:329 src/Module/Item/Compose.php:199 +#: src/Object/Post.php:1081 +msgid "Please enter a image/video/audio/webpage URL:" msgstr "" -#: src/Content/ContactSelector.php:169 -msgid "Partners" -msgstr "Kumppanit" +#: src/Content/Conversation.php:330 +msgid "Tag term:" +msgstr "Tunniste:" -#: src/Content/ContactSelector.php:169 -msgid "Cohabiting" -msgstr "Avoliitossa" +#: src/Content/Conversation.php:331 src/Module/Filer/SaveTag.php:73 +msgid "Save to Folder:" +msgstr "Tallenna kansioon:" -#: src/Content/ContactSelector.php:169 -msgid "Common law" -msgstr "Avoliitossa" +#: src/Content/Conversation.php:332 +msgid "Where are you right now?" +msgstr "Mikä on sijaintisi?" -#: src/Content/ContactSelector.php:169 -msgid "Happy" -msgstr "Iloinen" +#: src/Content/Conversation.php:333 +msgid "Delete item(s)?" +msgstr "Poista kohde/kohteet?" -#: src/Content/ContactSelector.php:169 -msgid "Not looking" -msgstr "Ei etsi" - -#: src/Content/ContactSelector.php:169 -msgid "Swinger" -msgstr "Parinvaihtaja" - -#: src/Content/ContactSelector.php:169 -msgid "Betrayed" -msgstr "Petetty" - -#: src/Content/ContactSelector.php:169 -msgid "Separated" -msgstr "Asumuserossa" - -#: src/Content/ContactSelector.php:169 -msgid "Unstable" -msgstr "Epävakaa" - -#: src/Content/ContactSelector.php:169 -msgid "Divorced" -msgstr "Eronnut" - -#: src/Content/ContactSelector.php:169 -msgid "Imaginarily divorced" +#: src/Content/Conversation.php:345 src/Module/Item/Compose.php:175 +msgid "Created at" msgstr "" -#: src/Content/ContactSelector.php:169 -msgid "Widowed" -msgstr "Leski" +#: src/Content/Conversation.php:355 +msgid "New Post" +msgstr "Uusi julkaisu" -#: src/Content/ContactSelector.php:169 -msgid "Uncertain" -msgstr "Epävarma" +#: src/Content/Conversation.php:358 +msgid "Share" +msgstr "Jaa" -#: src/Content/ContactSelector.php:169 -msgid "It's complicated" -msgstr "Se on monimutkaista" +#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "lähetä kuva" -#: src/Content/ContactSelector.php:169 -msgid "Don't care" -msgstr "Ei ole väliä" +#: src/Content/Conversation.php:362 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Liitä tiedosto" -#: src/Content/ContactSelector.php:169 -msgid "Ask me" -msgstr "Kysy minulta" +#: src/Content/Conversation.php:363 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "liitä tiedosto" -#: src/Content/Widget.php:33 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1072 +msgid "Bold" +msgstr "Lihavoitu" + +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1073 +msgid "Italic" +msgstr "Kursivoitu" + +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1074 +msgid "Underline" +msgstr "Alleviivaus" + +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1075 +msgid "Quote" +msgstr "Lainaus" + +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1076 +msgid "Add emojis" +msgstr "" + +#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1077 +msgid "Code" +msgstr "Koodi" + +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:196 +#: src/Object/Post.php:1078 +msgid "Image" +msgstr "Kuva" + +#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:197 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1079 +msgid "Link" +msgstr "Linkki" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1080 +msgid "Link or Media" +msgstr "" + +#: src/Content/Conversation.php:373 +msgid "Video" +msgstr "" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "Aseta sijaintisi" + +#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "aseta sijainti" + +#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "Tyhjennä selaimen sijainti" + +#: src/Content/Conversation.php:377 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "tyhjennä sijainti" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:206 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Aseta otsikko" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Luokat (pilkuilla eroteltu luettelo)" + +#: src/Content/Conversation.php:386 src/Module/Item/Compose.php:223 +msgid "Scheduled at" +msgstr "" + +#: src/Content/Conversation.php:391 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Käyttöoikeusasetukset" + +#: src/Content/Conversation.php:401 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Julkinen viesti" + +#: src/Content/Conversation.php:415 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:469 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "Viesti" + +#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Selain" + +#: src/Content/Conversation.php:418 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "" + +#: src/Content/Conversation.php:678 src/Object/Post.php:244 +msgid "Pinned item" +msgstr "" + +#: src/Content/Conversation.php:694 src/Object/Post.php:502 +#: src/Object/Post.php:503 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Katso %s-henkilön profiilia @ %s" + +#: src/Content/Conversation.php:707 src/Object/Post.php:490 +msgid "Categories:" +msgstr "Luokat:" + +#: src/Content/Conversation.php:708 src/Object/Post.php:491 +msgid "Filed under:" +msgstr "Arkistoitu kansioon:" + +#: src/Content/Conversation.php:716 src/Object/Post.php:516 +#, php-format +msgid "%s from %s" +msgstr "%s sovelluksesta %s" + +#: src/Content/Conversation.php:732 +msgid "View in context" +msgstr "Näytä kontekstissa" + +#: src/Content/Conversation.php:797 +msgid "remove" +msgstr "poista" + +#: src/Content/Conversation.php:801 +msgid "Delete Selected Items" +msgstr "Poista valitut kohteet" + +#: src/Content/Conversation.php:866 src/Content/Conversation.php:869 +#: src/Content/Conversation.php:872 src/Content/Conversation.php:875 +#: src/Content/Conversation.php:878 +#, php-format +msgid "You had been addressed (%s)." +msgstr "" + +#: src/Content/Conversation.php:881 +#, php-format +msgid "You are following %s." +msgstr "" + +#: src/Content/Conversation.php:884 +msgid "You subscribed to one or more tags in this post." +msgstr "" + +#: src/Content/Conversation.php:897 +#, php-format +msgid "%s reshared this." +msgstr "" + +#: src/Content/Conversation.php:899 +msgid "Reshared" +msgstr "" + +#: src/Content/Conversation.php:899 +#, php-format +msgid "Reshared by %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:902 +#, php-format +msgid "%s is participating in this thread." +msgstr "" + +#: src/Content/Conversation.php:905 +msgid "Stored for general reasons" +msgstr "" + +#: src/Content/Conversation.php:908 +msgid "Global post" +msgstr "" + +#: src/Content/Conversation.php:911 +msgid "Sent via an relay server" +msgstr "" + +#: src/Content/Conversation.php:911 +#, php-format +msgid "Sent via the relay server %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:914 +msgid "Fetched" +msgstr "" + +#: src/Content/Conversation.php:914 +#, php-format +msgid "Fetched because of %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:917 +msgid "Stored because of a child post to complete this thread." +msgstr "" + +#: src/Content/Conversation.php:920 +msgid "Local delivery" +msgstr "" + +#: src/Content/Conversation.php:923 +msgid "Stored because of your activity (like, comment, star, ...)" +msgstr "" + +#: src/Content/Conversation.php:926 +msgid "Distributed" +msgstr "" + +#: src/Content/Conversation.php:929 +msgid "Pushed to us" +msgstr "" + +#: src/Content/Feature.php:96 +msgid "General Features" +msgstr "Yleiset ominaisuudet" + +#: src/Content/Feature.php:98 +msgid "Photo Location" +msgstr "Kuvan sijainti" + +#: 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 "Kuvan metadata poistetaan normaalisti. Tämä ottaa paikkatiedon (jos olemassa) ennen poistoa ja linkittää sen karttaan." + +#: src/Content/Feature.php:99 +msgid "Trending Tags" +msgstr "" + +#: src/Content/Feature.php:99 +msgid "" +"Show a community page widget with a list of the most popular tags in recent " +"public posts." +msgstr "" + +#: src/Content/Feature.php:104 +msgid "Post Composition Features" +msgstr "Kirjoittamisen ominaisuudet" + +#: src/Content/Feature.php:105 +msgid "Auto-mention Groups" +msgstr "" + +#: src/Content/Feature.php:105 +msgid "" +"Add/remove mention when a group page is selected/deselected in ACL window." +msgstr "" + +#: src/Content/Feature.php:106 +msgid "Explicit Mentions" +msgstr "" + +#: src/Content/Feature.php:106 +msgid "" +"Add explicit mentions to comment box for manual control over who gets " +"mentioned in replies." +msgstr "" + +#: src/Content/Feature.php:107 +msgid "Add an abstract from ActivityPub content warnings" +msgstr "" + +#: src/Content/Feature.php:107 +msgid "" +"Add an abstract when commenting on ActivityPub posts with a content warning." +" Abstracts are displayed as content warning on systems like Mastodon or " +"Pleroma." +msgstr "" + +#: src/Content/Feature.php:112 +msgid "Post/Comment Tools" +msgstr "Julkaisu/kommentti työkalut" + +#: src/Content/Feature.php:113 +msgid "Post Categories" +msgstr "Julkaisuluokat" + +#: src/Content/Feature.php:113 +msgid "Add categories to your posts" +msgstr "Luokittele julkaisusi" + +#: src/Content/Feature.php:118 +msgid "Advanced Profile Settings" +msgstr "Profiilin lisäasetukset" + +#: src/Content/Feature.php:119 +msgid "List Groups" +msgstr "" + +#: src/Content/Feature.php:119 +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "" + +#: src/Content/Feature.php:120 +msgid "Tag Cloud" +msgstr "Tunnistepilvi" + +#: src/Content/Feature.php:120 +msgid "Provide a personal tag cloud on your profile page" +msgstr "Näytä henkilökohtainen tunnistepilvi profiilisivullasi" + +#: src/Content/Feature.php:121 +msgid "Display Membership Date" +msgstr "Näytä liittymispäivämäärä" + +#: src/Content/Feature.php:121 +msgid "Display membership date in profile" +msgstr "Näytä liittymispäivämäärä profiilissa" + +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "" + +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "" + +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "" + +#: src/Content/GroupManager.php:151 src/Content/Nav.php:276 +#: src/Content/Text/HTML.php:877 src/Content/Widget.php:533 +msgid "Groups" +msgstr "" + +#: src/Content/GroupManager.php:153 +msgid "External link to group" +msgstr "" + +#: src/Content/GroupManager.php:156 src/Content/Widget.php:512 +msgid "show less" +msgstr "" + +#: src/Content/GroupManager.php:157 src/Content/Widget.php:414 +#: src/Content/Widget.php:513 +msgid "show more" +msgstr "näytä lisää" + +#: src/Content/Item.php:327 src/Model/Item.php:2931 +msgid "event" +msgstr "tapahtuma" + +#: src/Content/Item.php:330 src/Content/Item.php:340 +msgid "status" +msgstr "tila" + +#: src/Content/Item.php:336 src/Model/Item.php:2933 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "kuva" + +#: src/Content/Item.php:350 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + +#: src/Content/Item.php:418 view/theme/frio/theme.php:262 +msgid "Follow Thread" +msgstr "Seuraa ketjua" + +#: src/Content/Item.php:419 src/Model/Contact.php:1199 +msgid "View Status" +msgstr "Näytä tila" + +#: src/Content/Item.php:420 src/Content/Item.php:440 +#: src/Model/Contact.php:1148 src/Model/Contact.php:1191 +#: src/Model/Contact.php:1200 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:233 +msgid "View Profile" +msgstr "Näytä profiilia" + +#: src/Content/Item.php:421 src/Model/Contact.php:1201 +msgid "View Photos" +msgstr "Näytä kuvia" + +#: src/Content/Item.php:422 src/Model/Contact.php:1192 +#: src/Model/Contact.php:1202 +msgid "Network Posts" +msgstr "Uutisvirtajulkaisut" + +#: src/Content/Item.php:423 src/Model/Contact.php:1193 +#: src/Model/Contact.php:1203 +msgid "View Contact" +msgstr "Näytä kontaktia" + +#: src/Content/Item.php:424 src/Model/Contact.php:1204 +msgid "Send PM" +msgstr "Lähetä yksityisviesti" + +#: src/Content/Item.php:425 src/Module/Contact.php:448 +#: src/Module/Contact/Profile.php:477 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 +msgid "Block" +msgstr "Estä" + +#: src/Content/Item.php:426 src/Module/Contact.php:449 +#: src/Module/Contact/Profile.php:485 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 +msgid "Ignore" +msgstr "Jätä huomiotta" + +#: src/Content/Item.php:427 src/Module/Contact.php:450 +#: src/Module/Contact/Profile.php:493 +msgid "Collapse" +msgstr "" + +#: src/Content/Item.php:431 src/Object/Post.php:471 +msgid "Languages" +msgstr "" + +#: src/Content/Item.php:437 src/Content/Widget.php:80 +#: src/Model/Contact.php:1194 src/Model/Contact.php:1205 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Yhdistä/Seuraa" + +#: src/Content/Item.php:862 +msgid "Unable to fetch user." +msgstr "" + +#: src/Content/Nav.php:120 +msgid "Nothing new here" +msgstr "Täällä ei ole mitään uutta" + +#: src/Content/Nav.php:124 src/Module/Special/HTTPException.php:77 +msgid "Go back" +msgstr "" + +#: src/Content/Nav.php:125 +msgid "Clear notifications" +msgstr "Tyhjennä ilmoitukset" + +#: src/Content/Nav.php:126 src/Content/Text/HTML.php:864 +msgid "@name, !group, #tags, content" +msgstr "" + +#: src/Content/Nav.php:220 src/Module/Security/Login.php:157 +msgid "Logout" +msgstr "Kirjaudu ulos" + +#: src/Content/Nav.php:220 +msgid "End this session" +msgstr "Lopeta istunto" + +#: src/Content/Nav.php:222 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 +msgid "Login" +msgstr "Kirjaudu sisään" + +#: src/Content/Nav.php:222 +msgid "Sign in" +msgstr "Kirjaudu sisään" + +#: src/Content/Nav.php:227 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:492 +msgid "Conversations" +msgstr "" + +#: src/Content/Nav.php:227 +msgid "Conversations you started" +msgstr "" + +#: src/Content/Nav.php:228 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:100 src/Module/Contact.php:484 +#: src/Module/Contact/Profile.php:392 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +msgid "Profile" +msgstr "Profiili" + +#: src/Content/Nav.php:228 view/theme/frio/theme.php:230 +msgid "Your profile page" +msgstr "Oma profiilisivu" + +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Kuvat" + +#: src/Content/Nav.php:229 view/theme/frio/theme.php:234 +msgid "Your photos" +msgstr "Omat kuvat" + +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:508 +#: view/theme/frio/theme.php:235 +msgid "Media" +msgstr "" + +#: src/Content/Nav.php:230 view/theme/frio/theme.php:235 +msgid "Your postings with media" +msgstr "" + +#: src/Content/Nav.php:231 src/Content/Nav.php:291 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:252 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "Kalenteri" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "" + +#: src/Content/Nav.php:232 +msgid "Personal notes" +msgstr "Henkilökohtaiset merkinnät" + +#: src/Content/Nav.php:232 +msgid "Your personal notes" +msgstr "Henkilökohtaiset merkintäsi" + +#: src/Content/Nav.php:249 src/Content/Nav.php:306 +msgid "Home" +msgstr "Koti" + +#: src/Content/Nav.php:249 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "Kotisivu" + +#: src/Content/Nav.php:253 src/Module/Register.php:168 +#: src/Module/Security/Login.php:124 +msgid "Register" +msgstr "Rekisteröidy" + +#: src/Content/Nav.php:253 +msgid "Create an account" +msgstr "Luo tili" + +#: src/Content/Nav.php:259 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 +msgid "Help" +msgstr "Ohje" + +#: src/Content/Nav.php:259 +msgid "Help and documentation" +msgstr "Ohjeet ja dokmentointi" + +#: src/Content/Nav.php:263 +msgid "Apps" +msgstr "Sovellukset" + +#: src/Content/Nav.php:263 +msgid "Addon applications, utilities, games" +msgstr "Lisäosa sovelluksia, apuohjelmia, pelejä" + +#: src/Content/Nav.php:267 src/Content/Text/HTML.php:862 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 +msgid "Search" +msgstr "Haku" + +#: src/Content/Nav.php:267 +msgid "Search site content" +msgstr "Sivustohaku" + +#: src/Content/Nav.php:270 src/Content/Text/HTML.php:871 +msgid "Full Text" +msgstr "Koko teksti" + +#: src/Content/Nav.php:271 src/Content/Text/HTML.php:872 +#: src/Content/Widget/TagCloud.php:68 +msgid "Tags" +msgstr "Tunnisteet" + +#: src/Content/Nav.php:272 src/Content/Nav.php:327 +#: src/Content/Text/HTML.php:873 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:419 +#: src/Module/Contact.php:515 view/theme/frio/theme.php:243 +msgid "Contacts" +msgstr "Yhteystiedot" + +#: src/Content/Nav.php:287 +msgid "Community" +msgstr "Yhteisö" + +#: src/Content/Nav.php:287 +msgid "Conversations on this and other servers" +msgstr "Keskustelut täällä ja muilla palvelimilla" + +#: src/Content/Nav.php:294 +msgid "Directory" +msgstr "Luettelo" + +#: src/Content/Nav.php:294 +msgid "People directory" +msgstr "Henkilöluettelo" + +#: src/Content/Nav.php:296 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 +msgid "Information" +msgstr "Tietoja" + +#: src/Content/Nav.php:296 +msgid "Information about this friendica instance" +msgstr "Lisätietoja tästä Friendica -instanssista" + +#: src/Content/Nav.php:299 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:100 +msgid "Terms of Service" +msgstr "Käyttöehdot" + +#: src/Content/Nav.php:299 +msgid "Terms of Service of this Friendica instance" +msgstr "" + +#: src/Content/Nav.php:304 view/theme/frio/theme.php:239 +msgid "Network" +msgstr "Uutisvirta" + +#: src/Content/Nav.php:304 view/theme/frio/theme.php:239 +msgid "Conversations from your friends" +msgstr "Kavereiden keskustelut" + +#: src/Content/Nav.php:306 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "Omat julkaisut ja keskustelut" + +#: src/Content/Nav.php:310 +msgid "Introductions" +msgstr "Esittelyt" + +#: src/Content/Nav.php:310 +msgid "Friend Requests" +msgstr "Kaveripyynnöt" + +#: src/Content/Nav.php:311 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 +msgid "Notifications" +msgstr "Huomautukset" + +#: src/Content/Nav.php:312 +msgid "See all notifications" +msgstr "Näytä kaikki ilmoitukset" + +#: src/Content/Nav.php:313 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Merkitse luetuksi" + +#: src/Content/Nav.php:313 +msgid "Mark all system notifications as seen" +msgstr "" + +#: src/Content/Nav.php:316 view/theme/frio/theme.php:241 +msgid "Private mail" +msgstr "Yksityinen posti" + +#: src/Content/Nav.php:317 +msgid "Inbox" +msgstr "Saapuneet" + +#: src/Content/Nav.php:318 +msgid "Outbox" +msgstr "Lähtevät" + +#: src/Content/Nav.php:322 +msgid "Accounts" +msgstr "" + +#: src/Content/Nav.php:322 +msgid "Manage other pages" +msgstr "Hallitse muita sivuja" + +#: src/Content/Nav.php:325 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:170 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +msgid "Settings" +msgstr "Asetukset" + +#: src/Content/Nav.php:325 view/theme/frio/theme.php:242 +msgid "Account settings" +msgstr "Tiliasetukset" + +#: src/Content/Nav.php:327 view/theme/frio/theme.php:243 +msgid "Manage/edit friends and contacts" +msgstr "Hallitse/muokkaa kaverit ja kontaktit" + +#: src/Content/Nav.php:332 src/Module/BaseAdmin.php:119 +msgid "Admin" +msgstr "Ylläpitäjä" + +#: src/Content/Nav.php:332 +msgid "Site setup and configuration" +msgstr "Sivuston asennus ja asetukset" + +#: src/Content/Nav.php:333 src/Module/BaseModeration.php:127 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "" + +#: src/Content/Nav.php:333 +msgid "Content and user moderation" +msgstr "" + +#: src/Content/Nav.php:336 +msgid "Navigation" +msgstr "Navigointi" + +#: src/Content/Nav.php:336 +msgid "Site map" +msgstr "Sivustokartta" + +#: src/Content/OEmbed.php:317 +msgid "Embedding disabled" +msgstr "Upottaminen poistettu käytöstä" + +#: src/Content/OEmbed.php:441 +msgid "Embedded content" +msgstr "Upotettu sisältö" + +#: src/Content/Pager.php:216 +msgid "first" +msgstr "ensimmäinen" + +#: src/Content/Pager.php:221 +msgid "prev" +msgstr "edellinen" + +#: src/Content/Pager.php:276 +msgid "next" +msgstr "seuraava" + +#: src/Content/Pager.php:281 +msgid "last" +msgstr "viimeinen" + +#: src/Content/Text/BBCode.php:694 src/Content/Text/BBCode.php:1600 +#: src/Content/Text/BBCode.php:1601 +msgid "Image/photo" +msgstr "Kuva/valokuva" + +#: src/Content/Text/BBCode.php:912 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: src/Content/Text/BBCode.php:937 src/Model/Item.php:3649 +#: src/Model/Item.php:3655 src/Model/Item.php:3656 +msgid "Link to source" +msgstr "" + +#: src/Content/Text/BBCode.php:1507 src/Content/Text/HTML.php:901 +msgid "Click to open/close" +msgstr "Klikkaa auki/kiinni" + +#: src/Content/Text/BBCode.php:1540 +msgid "$1 wrote:" +msgstr "$1 kirjoitti:" + +#: src/Content/Text/BBCode.php:1605 src/Content/Text/BBCode.php:1606 +msgid "Encrypted content" +msgstr "Salattu sisältö" + +#: src/Content/Text/BBCode.php:1870 +msgid "Invalid source protocol" +msgstr "Virheellinen lähdeprotokolla" + +#: src/Content/Text/BBCode.php:1889 +msgid "Invalid link protocol" +msgstr "Virheellinen linkkiprotokolla" + +#: src/Content/Text/HTML.php:779 +msgid "Loading more entries..." +msgstr "Merkinnät ladataan..." + +#: src/Content/Text/HTML.php:780 +msgid "The end" +msgstr "Loppu" + +#: src/Content/Text/HTML.php:856 src/Content/Widget/VCard.php:109 +#: src/Model/Profile.php:463 src/Module/Contact/Profile.php:437 +msgid "Follow" +msgstr "Seuraa" + +#: src/Content/Widget.php:51 msgid "Add New Contact" msgstr "Lisää uusi kontakti" -#: src/Content/Widget.php:34 +#: src/Content/Widget.php:52 msgid "Enter address or web location" msgstr "Syötä verkko-osoite" -#: src/Content/Widget.php:35 +#: src/Content/Widget.php:53 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Esimerkki: bob@example.com, http://example.com/barbara" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:55 +msgid "Connect" +msgstr "Yhdistä" + +#: src/Content/Widget.php:72 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d kutsu saatavilla" msgstr[1] "%d kutsuja saatavilla" -#: src/Content/Widget.php:164 -msgid "Networks" -msgstr "Verkot" +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +msgid "Find People" +msgstr "Löydä ihmisiä" -#: src/Content/Widget.php:167 -msgid "All Networks" -msgstr "Kaikki verkot" +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +msgid "Enter name or interest" +msgstr "Syötä nimi tai harrastus" -#: src/Content/Widget.php:205 src/Content/Feature.php:118 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Esim. Matti Meikäläinen, kalastus yms." + +#: src/Content/Widget.php:82 src/Module/Contact.php:441 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 +msgid "Find" +msgstr "Etsi" + +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "Ystäväehdotukset" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +msgid "Similar Interests" +msgstr "Yhteiset harrastukset" + +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +msgid "Random Profile" +msgstr "Satunnainen profiili" + +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +msgid "Invite Friends" +msgstr "Kutsu kavereita" + +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 +msgid "Global Directory" +msgstr "Maailmanlaajuinen hakemisto" + +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +msgid "Local Directory" +msgstr "Paikallinen hakemisto" + +#: src/Content/Widget.php:219 src/Model/Circle.php:596 +#: src/Module/Contact.php:402 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "" + +#: src/Content/Widget.php:221 +msgid "Everyone" +msgstr "" + +#: src/Content/Widget.php:246 src/Module/Contact.php:418 +msgid "No relationship" +msgstr "" + +#: src/Content/Widget.php:251 +msgid "Relationships" +msgstr "" + +#: src/Content/Widget.php:253 src/Module/Circle.php:293 +#: src/Module/Contact.php:346 +msgid "All Contacts" +msgstr "Kaikki yhteystiedot" + +#: src/Content/Widget.php:292 +msgid "Protocols" +msgstr "" + +#: src/Content/Widget.php:294 +msgid "All Protocols" +msgstr "" + +#: src/Content/Widget.php:322 msgid "Saved Folders" msgstr "Tallennetut kansiot" -#: src/Content/Widget.php:208 src/Content/Widget.php:248 +#: src/Content/Widget.php:324 src/Content/Widget.php:355 msgid "Everything" msgstr "Kaikki" -#: src/Content/Widget.php:245 +#: src/Content/Widget.php:353 msgid "Categories" msgstr "Luokat" -#: src/Content/Widget.php:312 +#: src/Content/Widget.php:410 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d yhteinen kontakti" msgstr[1] "%d yhteistä kontaktia" -#: src/Content/Feature.php:79 -msgid "General Features" -msgstr "Yleiset ominaisuudet" +#: src/Content/Widget.php:506 +msgid "Archives" +msgstr "Arkisto" -#: src/Content/Feature.php:81 -msgid "Multiple Profiles" -msgstr "Monia profiileja" +#: src/Content/Widget.php:530 +msgid "Persons" +msgstr "" -#: src/Content/Feature.php:81 -msgid "Ability to create multiple profiles" -msgstr "Mahdollisuus luoda useita profiileja" +#: src/Content/Widget.php:531 +msgid "Organisations" +msgstr "" -#: src/Content/Feature.php:82 -msgid "Photo Location" -msgstr "Kuvan sijainti" +#: src/Content/Widget.php:532 src/Model/Contact.php:1651 +msgid "News" +msgstr "Uutiset" -#: src/Content/Feature.php:82 +#: src/Content/Widget.php:536 src/Module/Settings/Account.php:453 +msgid "Account Types" +msgstr "Tilityypit" + +#: src/Content/Widget.php:537 src/Module/Moderation/BaseUsers.php:69 +msgid "All" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:56 +msgid "Export" +msgstr "Vie" + +#: src/Content/Widget/CalendarExport.php:57 +msgid "Export calendar as ical" +msgstr "Vie kalenteri ical -tiedostona" + +#: src/Content/Widget/CalendarExport.php:58 +msgid "Export calendar as csv" +msgstr "Vie kalenteri csv-tiedostona" + +#: src/Content/Widget/ContactBlock.php:79 +msgid "No contacts" +msgstr "Ei kontakteja" + +#: src/Content/Widget/ContactBlock.php:110 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d kontakti" +msgstr[1] "%d kontakteja" + +#: src/Content/Widget/ContactBlock.php:127 +msgid "View Contacts" +msgstr "Näytä kontaktit" + +#: src/Content/Widget/SavedSearches.php:47 +msgid "Remove term" +msgstr "Poista kohde" + +#: src/Content/Widget/SavedSearches.php:60 +msgid "Saved Searches" +msgstr "Tallennetut haut" + +#: src/Content/Widget/TrendingTags.php:52 +#, php-format +msgid "Trending Tags (last %d hour)" +msgid_plural "Trending Tags (last %d hours)" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Widget/TrendingTags.php:53 +msgid "More Trending Tags" +msgstr "" + +#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:378 +#: src/Module/Contact/Profile.php:381 src/Module/Profile/Profile.php:199 +msgid "XMPP:" +msgstr "XMPP:" + +#: src/Content/Widget/VCard.php:103 src/Model/Profile.php:379 +#: src/Module/Contact/Profile.php:383 src/Module/Profile/Profile.php:203 +msgid "Matrix:" +msgstr "" + +#: src/Content/Widget/VCard.php:104 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:473 src/Model/Event.php:958 +#: src/Model/Profile.php:373 src/Module/Contact/Profile.php:379 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Sijainti:" + +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:476 +#: src/Module/Notifications/Introductions.php:201 +msgid "Network:" +msgstr "Uutisvirta:" + +#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1195 +#: src/Model/Contact.php:1206 src/Model/Profile.php:465 +#: src/Module/Contact/Profile.php:429 +msgid "Unfollow" +msgstr "" + +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +msgid "Yourself" +msgstr "" + +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 +msgid "Mutuals" +msgstr "" + +#: src/Core/ACL.php:294 +msgid "Post to Email" +msgstr "Viesti sähköpostiin" + +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 +msgid "Public" +msgstr "" + +#: src/Core/ACL.php:322 msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "Kuvan metadata poistetaan normaalisti. Tämä ottaa paikkatiedon (jos olemassa) ennen poistoa ja linkittää sen karttaan." - -#: src/Content/Feature.php:83 -msgid "Export Public Calendar" -msgstr "Vie julkinen kalenteri" - -#: src/Content/Feature.php:83 -msgid "Ability for visitors to download the public calendar" -msgstr "Vierailijoiden mahdollisuus ladata julkinen kalenteri" - -#: src/Content/Feature.php:88 -msgid "Post Composition Features" -msgstr "Kirjoittamisen ominaisuudet" - -#: src/Content/Feature.php:89 -msgid "Post Preview" -msgstr "Viestin esikatselu" - -#: src/Content/Feature.php:89 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Mahdollistaa viestien esikatselun ennen niiden julkaisua" - -#: src/Content/Feature.php:90 -msgid "Auto-mention Forums" +"This content will be shown to all your followers and can be seen in the " +"community pages and by anyone with its link." msgstr "" -#: src/Content/Feature.php:90 +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 +msgid "Limited/Private" +msgstr "" + +#: src/Core/ACL.php:324 msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." +"This content will be shown only to the people in the first box, to the " +"exception of the people mentioned in the second box. It won't appear " +"anywhere public." msgstr "" -#: src/Content/Feature.php:95 -msgid "Network Sidebar" -msgstr "Uutisvirran sivupalkki" - -#: src/Content/Feature.php:96 -msgid "Ability to select posts by date ranges" -msgstr "Mahdollisuus valita viestejä päivämäärärajauksella" - -#: src/Content/Feature.php:97 src/Content/Feature.php:127 -msgid "List Forums" -msgstr "Näytä foorumit" - -#: src/Content/Feature.php:97 -msgid "Enable widget to display the forums your are connected with" +#: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "" -#: src/Content/Feature.php:98 -msgid "Group Filter" -msgstr "Ryhmäsuodatin" - -#: src/Content/Feature.php:98 -msgid "Enable widget to display Network posts only from selected group" +#: src/Core/ACL.php:325 +msgid "Show to:" msgstr "" -#: src/Content/Feature.php:99 -msgid "Network Filter" -msgstr "Uutisvirtasuodatin" - -#: src/Content/Feature.php:99 -msgid "Enable widget to display Network posts only from selected network" +#: src/Core/ACL.php:326 +msgid "Except to:" msgstr "" -#: src/Content/Feature.php:100 -msgid "Save search terms for re-use" -msgstr "Tallenna hakutermit myöhempää käyttöä varten" +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "Kopio: sähköpostiosoitteet" -#: src/Content/Feature.php:105 -msgid "Network Tabs" -msgstr "Uutisvirta välilehdet" +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Esimerkki: bob@example.com, mary@example.com" -#: src/Content/Feature.php:106 -msgid "Network Personal Tab" -msgstr "Henkilökohtainen uutisvirtavälilehti" - -#: src/Content/Feature.php:106 -msgid "Enable tab to display only Network posts that you've interacted on" +#: src/Core/ACL.php:329 +msgid "Connectors" msgstr "" -#: src/Content/Feature.php:107 -msgid "Network New Tab" -msgstr "Uusimmat uutisvirtajulkaisut" - -#: src/Content/Feature.php:107 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" +#: src/Core/Installer.php:180 +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 "" -#: src/Content/Feature.php:108 -msgid "Network Shared Links Tab" +#: src/Core/Installer.php:197 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Sinun on ehkä tuotava tiedosto \"database.sql\" manuaalisesti käyttämällä phpMyAdminia tai MySQL:ää." + +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 +msgid "Please see the file \"doc/INSTALL.md\"." msgstr "" -#: src/Content/Feature.php:108 -msgid "Enable tab to display only Network posts with links in them" +#: src/Core/Installer.php:259 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Komentoriviversiota PHP:stä ei löytynyt web-palvelimen PATH:ista." + +#: src/Core/Installer.php:260 +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 "" -#: src/Content/Feature.php:113 -msgid "Post/Comment Tools" -msgstr "Julkaisu/kommentti työkalut" +#: src/Core/Installer.php:265 +msgid "PHP executable path" +msgstr "Polku PHP-ohjelmaan" -#: src/Content/Feature.php:114 -msgid "Multiple Deletion" +#: src/Core/Installer.php:265 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Kirjoita koko polku PHP-ohjelmaan. Voit jättää sen tyhjäksi, jos haluat jatkaa asennusta." + +#: src/Core/Installer.php:270 +msgid "Command line PHP" +msgstr "Komentorivi-PHP" + +#: src/Core/Installer.php:279 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "" -#: src/Content/Feature.php:114 -msgid "Select and delete multiple posts/comments at once" -msgstr "Valitse ja poista monta julkaisua/kommentia yhtaikaa" +#: src/Core/Installer.php:280 +msgid "Found PHP version: " +msgstr "PHP-versio löydetty:" -#: src/Content/Feature.php:115 -msgid "Edit Sent Posts" -msgstr "Muokkaa lähetetyt julkaisut" +#: src/Core/Installer.php:282 +msgid "PHP cli binary" +msgstr "PHP cli -binääritiedosto" -#: src/Content/Feature.php:115 -msgid "Edit and correct posts and comments after sending" -msgstr "Muokkaa ja korjaa julkaisuja ja kommenteja julkaisun jälkeen" +#: src/Core/Installer.php:295 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Järjestelmäsi komentorivi-PHP:ssä ei ole käytössä asetusta \"register_argc_argv\"." -#: src/Content/Feature.php:116 -msgid "Tagging" -msgstr "Tunnisteet" +#: src/Core/Installer.php:296 +msgid "This is required for message delivery to work." +msgstr "Asetus vaaditaan viestien lähettämiseen." -#: src/Content/Feature.php:116 -msgid "Ability to tag existing posts" -msgstr "Saa merkitä olemassa olevia julkaisuja" +#: src/Core/Installer.php:301 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: src/Content/Feature.php:117 -msgid "Post Categories" -msgstr "Julkaisuluokat" +#: src/Core/Installer.php:333 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Virhe: järjestelmäsi \"openssl_pkey_new\" -funktio ei pysty generoimaan salausavaimia." -#: src/Content/Feature.php:117 -msgid "Add categories to your posts" -msgstr "Luokittele julkaisusi" +#: src/Core/Installer.php:334 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Jos on kyse Windows-pavelimesta, katso \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Content/Feature.php:118 -msgid "Ability to file posts under folders" -msgstr "Mahdollisuus tallettaa viestejä kansioihin" +#: src/Core/Installer.php:337 +msgid "Generate encryption keys" +msgstr "Luo salausavaimet" -#: src/Content/Feature.php:119 -msgid "Dislike Posts" -msgstr "Inhoa viestejä" +#: src/Core/Installer.php:389 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Virhe: Apache-palvelimen mod-rewrite -moduuli vaaditaan, mutta sitä ei ole asennettu." -#: src/Content/Feature.php:119 -msgid "Ability to dislike posts/comments" -msgstr "Mahdollisuus inhota viestejä/kommentteja" +#: src/Core/Installer.php:394 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite -moduuli" -#: src/Content/Feature.php:120 -msgid "Star Posts" -msgstr "Tähtimerkityt julkaisut" +#: src/Core/Installer.php:400 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "Virhe: PDO tai MySQLi PHP-moduuli vaaditaan, mutta sitä ei ole asennettu." -#: src/Content/Feature.php:120 -msgid "Ability to mark special posts with a star indicator" -msgstr "Salli julkaisujen tähtimerkintä" +#: src/Core/Installer.php:405 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "Virhe: PDO:n MySQL-ajuri ei ole asennettu" -#: src/Content/Feature.php:121 -msgid "Mute Post Notifications" -msgstr "Mykistä julkaisuilmoitukset" +#: src/Core/Installer.php:409 +msgid "PDO or MySQLi PHP module" +msgstr "PDO tai MySQLi PHP-moduuli" -#: src/Content/Feature.php:121 -msgid "Ability to mute notifications for a thread" +#: src/Core/Installer.php:417 +msgid "Error, XML PHP module required but not installed." +msgstr "Virhe: XML PHP-moduuli vaaditaan, mutta sitä ei ole asennettu." + +#: src/Core/Installer.php:421 +msgid "XML PHP module" +msgstr "XML PHP-moduuli" + +#: src/Core/Installer.php:424 +msgid "libCurl PHP module" +msgstr "PHP-moduuli libCurl" + +#: src/Core/Installer.php:425 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Virhe: libCURL PHP -moduuli vaaditaan, mutta sitä ei ole asennettu." + +#: src/Core/Installer.php:431 +msgid "GD graphics PHP module" +msgstr "PHP-moduuli GD graphics" + +#: src/Core/Installer.php:432 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Virhe: GD graphics PHP -moduuli JPEG-tuella vaaditaan, mutta sitä ei ole asennettu." + +#: src/Core/Installer.php:438 +msgid "OpenSSL PHP module" +msgstr "PHP-moduuli OpenSSL" + +#: src/Core/Installer.php:439 +msgid "Error: openssl PHP module required but not installed." +msgstr "Virhe: openssl PHP -moduuli vaaditaan, mutta sitä ei ole asennettu." + +#: src/Core/Installer.php:445 +msgid "mb_string PHP module" +msgstr "PHP-moduuli mb_string" + +#: src/Core/Installer.php:446 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Virhe: PHP-moduuli mb_string vaaditaan, mutta sitä ei ole asennettu." + +#: src/Core/Installer.php:452 +msgid "iconv PHP module" +msgstr "iconv PHP-moduuli" + +#: src/Core/Installer.php:453 +msgid "Error: iconv PHP module required but not installed." +msgstr "Virhe: iconv PHP-moduuli vaaditaan, mutta sitä ei ole asennettu." + +#: src/Core/Installer.php:459 +msgid "POSIX PHP module" +msgstr "POSIX PHP-moduuli" + +#: src/Core/Installer.php:460 +msgid "Error: POSIX PHP module required but not installed." +msgstr "Virhe: POSIX PHP-moduuli vaadittaan, mutta sitä ei ole asennettu." + +#: src/Core/Installer.php:466 +msgid "Program execution functions" msgstr "" -#: src/Content/Feature.php:126 -msgid "Advanced Profile Settings" -msgstr "Profiilin lisäasetukset" - -#: src/Content/Feature.php:127 -msgid "Show visitors public community forums at the Advanced Profile Page" +#: src/Core/Installer.php:467 +msgid "" +"Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Content/Feature.php:128 -msgid "Tag Cloud" -msgstr "Tunnistepilvi" - -#: src/Content/Feature.php:128 -msgid "Provide a personal tag cloud on your profile page" -msgstr "Näytä henkilökohtainen tunnistepilvi profiilisivullasi" - -#: src/Content/Feature.php:129 -msgid "Display Membership Date" -msgstr "Näytä liittymispäivämäärä" - -#: src/Content/Feature.php:129 -msgid "Display membership date in profile" -msgstr "Näytä liittymispäivämäärä profiilissa" - -#: src/Content/Nav.php:53 -msgid "Nothing new here" -msgstr "Täällä ei ole mitään uutta" - -#: src/Content/Nav.php:57 -msgid "Clear notifications" -msgstr "Tyhjennä ilmoitukset" - -#: src/Content/Nav.php:105 -msgid "Personal notes" -msgstr "Henkilökohtaiset merkinnät" - -#: src/Content/Nav.php:105 -msgid "Your personal notes" -msgstr "Henkilökohtaiset merkintäsi" - -#: src/Content/Nav.php:114 -msgid "Sign in" -msgstr "Kirjaudu sisään" - -#: src/Content/Nav.php:124 -msgid "Home Page" -msgstr "Kotisivu" - -#: src/Content/Nav.php:128 -msgid "Create an account" -msgstr "Luo tili" - -#: src/Content/Nav.php:134 -msgid "Help and documentation" -msgstr "Ohjeet ja dokmentointi" - -#: src/Content/Nav.php:138 -msgid "Apps" -msgstr "Sovellukset" - -#: src/Content/Nav.php:138 -msgid "Addon applications, utilities, games" -msgstr "Lisäosa sovelluksia, apuohjelmia, pelejä" - -#: src/Content/Nav.php:142 -msgid "Search site content" -msgstr "Sivustohaku" - -#: src/Content/Nav.php:166 -msgid "Community" -msgstr "Yhteisö" - -#: src/Content/Nav.php:166 -msgid "Conversations on this and other servers" -msgstr "Keskustelut täällä ja muilla palvelimilla" - -#: src/Content/Nav.php:173 -msgid "Directory" -msgstr "Luettelo" - -#: src/Content/Nav.php:173 -msgid "People directory" -msgstr "Henkilöluettelo" - -#: src/Content/Nav.php:175 -msgid "Information about this friendica instance" -msgstr "Lisätietoja tästä Friendica -instanssista" - -#: src/Content/Nav.php:178 -msgid "Terms of Service of this Friendica instance" +#: src/Core/Installer.php:473 +msgid "JSON PHP module" msgstr "" -#: src/Content/Nav.php:184 -msgid "Network Reset" -msgstr "Verkon nollaus" +#: src/Core/Installer.php:474 +msgid "Error: JSON PHP module required but not installed." +msgstr "" -#: src/Content/Nav.php:184 -msgid "Load Network page with no filters" -msgstr "Lataa verkkosivu ilman suotimia" +#: src/Core/Installer.php:480 +msgid "File Information PHP module" +msgstr "" -#: src/Content/Nav.php:190 -msgid "Friend Requests" -msgstr "Kaveripyynnöt" +#: src/Core/Installer.php:481 +msgid "Error: File Information PHP module required but not installed." +msgstr "" -#: src/Content/Nav.php:192 -msgid "See all notifications" -msgstr "Näytä kaikki ilmoitukset" +#: src/Core/Installer.php:487 +msgid "GNU Multiple Precision PHP module" +msgstr "" -#: src/Content/Nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Merkitse kaikki järjestelmäviestit nähdyiksi" +#: src/Core/Installer.php:488 +msgid "Error: GNU Multiple Precision PHP module required but not installed." +msgstr "" -#: src/Content/Nav.php:197 -msgid "Inbox" -msgstr "Saapuneet" +#: src/Core/Installer.php:511 +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 "" -#: src/Content/Nav.php:198 -msgid "Outbox" -msgstr "Lähtevät" +#: src/Core/Installer.php:512 +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 "Tämä on yleensä käyttöoikeusasetus, jolloin web-palvelimesi ei pysty kirjoittamaan tiedostoja kansioosi, vaikka itse siihen pystyisit." -#: src/Content/Nav.php:202 -msgid "Manage" -msgstr "Hallitse" +#: src/Core/Installer.php:513 +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 "" -#: src/Content/Nav.php:202 -msgid "Manage other pages" -msgstr "Hallitse muita sivuja" +#: src/Core/Installer.php:514 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"doc/INSTALL.md\" for instructions." +msgstr "" -#: src/Content/Nav.php:210 src/Model/Profile.php:368 -msgid "Profiles" -msgstr "Profiilit" +#: src/Core/Installer.php:517 +msgid "config/local.config.php is writable" +msgstr "" -#: src/Content/Nav.php:210 -msgid "Manage/Edit Profiles" -msgstr "Hallitse/muokka profiilit" +#: src/Core/Installer.php:537 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "" -#: src/Content/Nav.php:218 -msgid "Site setup and configuration" -msgstr "Sivuston asennus ja asetukset" +#: src/Core/Installer.php:538 +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 "" -#: src/Content/Nav.php:221 -msgid "Navigation" -msgstr "Navigointi" +#: src/Core/Installer.php:539 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "" -#: src/Content/Nav.php:221 -msgid "Site map" -msgstr "Sivustokartta" +#: src/Core/Installer.php:540 +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 "" -#: src/Database/DBStructure.php:32 -msgid "There are no tables on MyISAM." -msgstr "MyISAMissa ei ole taulukoita." +#: src/Core/Installer.php:543 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 on kirjoitettava" -#: src/Database/DBStructure.php:75 +#: src/Core/Installer.php:571 +msgid "" +"Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" +"dist to .htaccess." +msgstr "" + +#: src/Core/Installer.php:572 +msgid "" +"In some circumstances (like running inside containers), you can skip this " +"error." +msgstr "" + +#: src/Core/Installer.php:574 +msgid "Error message from Curl when fetching" +msgstr "" + +#: src/Core/Installer.php:580 +msgid "Url rewrite is working" +msgstr "URL-osoitteen uudellenkirjoitus toimii" + +#: src/Core/Installer.php:609 +msgid "" +"The detection of TLS to secure the communication between the browser and the" +" new Friendica server failed." +msgstr "" + +#: src/Core/Installer.php:610 +msgid "" +"It is highly encouraged to use Friendica only over a secure connection as " +"sensitive information like passwords will be transmitted." +msgstr "" + +#: src/Core/Installer.php:611 +msgid "Please ensure that the connection to the server is secure." +msgstr "" + +#: src/Core/Installer.php:612 +msgid "No TLS detected" +msgstr "" + +#: src/Core/Installer.php:614 +msgid "TLS detected" +msgstr "" + +#: src/Core/Installer.php:641 +msgid "ImageMagick PHP extension is not installed" +msgstr "ImageMagick PHP-laajennus ei ole asetettu" + +#: src/Core/Installer.php:643 +msgid "ImageMagick PHP extension is installed" +msgstr "ImageMagick PHP-laajennus on asetettu" + +#: src/Core/Installer.php:645 +msgid "ImageMagick supports GIF" +msgstr "ImageMagik tukee GIF-formaattia" + +#: src/Core/Installer.php:667 +msgid "Database already in use." +msgstr "Tietokanta on jo käytössä." + +#: src/Core/Installer.php:672 +msgid "Could not connect to database." +msgstr "Tietokantaan ei saada yhteyttä." + +#: src/Core/L10n.php:408 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:222 +msgid "Monday" +msgstr "Maanantai" + +#: src/Core/L10n.php:408 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:223 +msgid "Tuesday" +msgstr "Tiistai" + +#: src/Core/L10n.php:408 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:224 +msgid "Wednesday" +msgstr "Keskiviikko" + +#: src/Core/L10n.php:408 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:225 +msgid "Thursday" +msgstr "Torstai" + +#: src/Core/L10n.php:408 src/Model/Event.php:436 +#: src/Module/Settings/Display.php:226 +msgid "Friday" +msgstr "Perjantai" + +#: src/Core/L10n.php:408 src/Model/Event.php:437 +#: src/Module/Settings/Display.php:227 +msgid "Saturday" +msgstr "Lauantai" + +#: src/Core/L10n.php:408 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:221 +msgid "Sunday" +msgstr "Sunnuntai" + +#: src/Core/L10n.php:412 src/Model/Event.php:452 +msgid "January" +msgstr "Tammikuu" + +#: src/Core/L10n.php:412 src/Model/Event.php:453 +msgid "February" +msgstr "Helmikuu" + +#: src/Core/L10n.php:412 src/Model/Event.php:454 +msgid "March" +msgstr "Maaliskuu" + +#: src/Core/L10n.php:412 src/Model/Event.php:455 +msgid "April" +msgstr "Huhtikuu" + +#: src/Core/L10n.php:412 src/Core/L10n.php:431 src/Model/Event.php:443 +msgid "May" +msgstr "Toukokuu" + +#: src/Core/L10n.php:412 src/Model/Event.php:456 +msgid "June" +msgstr "Kesäkuu" + +#: src/Core/L10n.php:412 src/Model/Event.php:457 +msgid "July" +msgstr "Heinäkuu" + +#: src/Core/L10n.php:412 src/Model/Event.php:458 +msgid "August" +msgstr "Elokuu" + +#: src/Core/L10n.php:412 src/Model/Event.php:459 +msgid "September" +msgstr "Syyskuu" + +#: src/Core/L10n.php:412 src/Model/Event.php:460 +msgid "October" +msgstr "Lokakuu" + +#: src/Core/L10n.php:412 src/Model/Event.php:461 +msgid "November" +msgstr "Marraskuu" + +#: src/Core/L10n.php:412 src/Model/Event.php:462 +msgid "December" +msgstr "Joulukuu" + +#: src/Core/L10n.php:427 src/Model/Event.php:424 +msgid "Mon" +msgstr "Ma" + +#: src/Core/L10n.php:427 src/Model/Event.php:425 +msgid "Tue" +msgstr "Ti" + +#: src/Core/L10n.php:427 src/Model/Event.php:426 +msgid "Wed" +msgstr "Ke" + +#: src/Core/L10n.php:427 src/Model/Event.php:427 +msgid "Thu" +msgstr "To" + +#: src/Core/L10n.php:427 src/Model/Event.php:428 +msgid "Fri" +msgstr "Pe" + +#: src/Core/L10n.php:427 src/Model/Event.php:429 +msgid "Sat" +msgstr "La" + +#: src/Core/L10n.php:427 src/Model/Event.php:423 +msgid "Sun" +msgstr "Su" + +#: src/Core/L10n.php:431 src/Model/Event.php:439 +msgid "Jan" +msgstr "Tam." + +#: src/Core/L10n.php:431 src/Model/Event.php:440 +msgid "Feb" +msgstr "Hel." + +#: src/Core/L10n.php:431 src/Model/Event.php:441 +msgid "Mar" +msgstr "Maa." + +#: src/Core/L10n.php:431 src/Model/Event.php:442 +msgid "Apr" +msgstr "Huh." + +#: src/Core/L10n.php:431 src/Model/Event.php:444 +msgid "Jun" +msgstr "Kes." + +#: src/Core/L10n.php:431 src/Model/Event.php:445 +msgid "Jul" +msgstr "Tou." + +#: src/Core/L10n.php:431 src/Model/Event.php:446 +msgid "Aug" +msgstr "Elo." + +#: src/Core/L10n.php:431 +msgid "Sep" +msgstr "Syy." + +#: src/Core/L10n.php:431 src/Model/Event.php:448 +msgid "Oct" +msgstr "Lok." + +#: src/Core/L10n.php:431 src/Model/Event.php:449 +msgid "Nov" +msgstr "Mar." + +#: src/Core/L10n.php:431 src/Model/Event.php:450 +msgid "Dec" +msgstr "Jou." + +#: src/Core/Renderer.php:89 src/Core/Renderer.php:118 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 +msgid "" +"Friendica can't display this page at the moment, please contact the " +"administrator." +msgstr "" + +#: src/Core/Renderer.php:143 +msgid "template engine cannot be registered without a name." +msgstr "" + +#: src/Core/Renderer.php:177 +msgid "template engine is not registered!" +msgstr "" + +#: src/Core/Storage/Type/FilesystemConfig.php:78 +msgid "Storage base path" +msgstr "" + +#: src/Core/Storage/Type/FilesystemConfig.php:80 +msgid "" +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "" + +#: src/Core/Storage/Type/FilesystemConfig.php:93 +msgid "Enter a valid existing folder" +msgstr "" + +#: src/Core/Update.php:80 +#, php-format +msgid "" +"Updates from version %s are not supported. Please update at least to version" +" 2021.01 and wait until the postupdate finished version 1383." +msgstr "" + +#: src/Core/Update.php:91 +#, php-format +msgid "" +"Updates from postupdate version %s are not supported. Please update at least" +" to version 2021.01 and wait until the postupdate finished version 1383." +msgstr "" + +#: src/Core/Update.php:183 +#, php-format +msgid "%s: executing pre update %d" +msgstr "" + +#: src/Core/Update.php:225 +#, php-format +msgid "%s: executing post update %d" +msgstr "" + +#: src/Core/Update.php:299 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "%s päivitys epäonnistui, katso virhelokit." + +#: src/Core/Update.php:339 #, php-format msgid "" "\n" @@ -8810,14 +2891,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\tFriendican kehittäjät askettäin julkaisi %s-päivityksen,\n\t\t\t\tmutta asennuksessa jotain meni pahasti pieleen.\n\t\t\t\tTämä on korjattava pian, ja en voi korjata sitä itse. Ota yhteyttä\n\t\t\t\tFriendica -kehittäjään jos et voi auttaa. Tietokantani saattaa olla virheellinen." -#: src/Database/DBStructure.php:80 +#: src/Core/Update.php:345 +#, php-format +msgid "The error message is\\n[pre]%s[/pre]" +msgstr "" + +#: src/Core/Update.php:349 src/Core/Update.php:377 +msgid "[Friendica Notify] Database update" +msgstr "" + +#: src/Core/Update.php:371 #, php-format msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Virheviesti on\n[pre]%s[/pre]" +"\n" +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "" -#: src/Database/DBStructure.php:191 +#: src/Database/DBStructure.php:57 +#, php-format +msgid "The database version had been set to %s." +msgstr "" + +#: src/Database/DBStructure.php:82 +#, 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:95 +msgid "No unused tables found." +msgstr "" + +#: src/Database/DBStructure.php:100 +msgid "" +"These tables are not used for friendica and will be deleted when you execute" +" \"dbstructure drop -e\":" +msgstr "" + +#: src/Database/DBStructure.php:137 +msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." +msgstr "" + +#: src/Database/DBStructure.php:161 #, php-format msgid "" "\n" @@ -8825,444 +2941,718 @@ msgid "" "%s\n" msgstr "\n%d virhe tapahtui tietokannan päivityksen aikana:\n%s\n" -#: src/Database/DBStructure.php:194 +#: src/Database/DBStructure.php:164 msgid "Errors encountered performing database changes: " msgstr "Tietokannan muokkauksessa tapahtui virheitä:" -#: src/Database/DBStructure.php:210 +#: src/Database/DBStructure.php:232 +msgid "Another database update is currently running." +msgstr "" + +#: src/Database/DBStructure.php:236 #, php-format msgid "%s: Database update" msgstr "%s: Tietokantapäivitys" -#: src/Database/DBStructure.php:460 +#: src/Database/DBStructure.php:493 #, php-format msgid "%s: updating %s table." msgstr "%s: päivitetään %s-taulukkoa." -#: src/Model/Mail.php:40 src/Model/Mail.php:174 -msgid "[no subject]" -msgstr "[ei aihetta]" - -#: src/Model/Group.php:44 -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." +#: src/Factory/Api/Mastodon/Error.php:55 +msgid "Record not found" msgstr "" -#: src/Model/Group.php:341 -msgid "Default privacy group for new contacts" -msgstr "Oletusryhmä uusille kontakteille" +#: src/Factory/Api/Mastodon/Error.php:65 +msgid "Unprocessable Entity" +msgstr "" -#: src/Model/Group.php:374 +#: src/Factory/Api/Mastodon/Error.php:75 +msgid "Unauthorized" +msgstr "" + +#: src/Factory/Api/Mastodon/Error.php:84 +msgid "" +"Token is not authorized with a valid user or is missing a required scope" +msgstr "" + +#: src/Factory/Api/Mastodon/Error.php:94 +msgid "Internal Server Error" +msgstr "" + +#: src/LegacyModule.php:63 +#, php-format +msgid "Legacy module file not found: %s" +msgstr "" + +#: src/Model/Circle.php:105 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." +msgstr "" + +#: src/Model/Circle.php:512 +msgid "Default privacy circle for new contacts" +msgstr "" + +#: src/Model/Circle.php:544 msgid "Everybody" msgstr "Kaikki" -#: src/Model/Group.php:394 +#: src/Model/Circle.php:563 msgid "edit" msgstr "muokkaa" -#: src/Model/Group.php:418 -msgid "Edit group" -msgstr "Muokkaa ryhmää" +#: src/Model/Circle.php:595 +msgid "add" +msgstr "lisää" -#: src/Model/Group.php:419 -msgid "Contacts not in any group" -msgstr "Kontaktit ilman ryhmää" +#: src/Model/Circle.php:600 +msgid "Edit circle" +msgstr "" -#: src/Model/Group.php:420 -msgid "Create a new group" -msgstr "Luo uusi ryhmä" +#: src/Model/Circle.php:601 src/Module/Circle.php:194 +msgid "Contacts not in any circle" +msgstr "" -#: src/Model/Group.php:422 -msgid "Edit groups" -msgstr "Muokkaa ryhmiä" +#: src/Model/Circle.php:603 +msgid "Create a new circle" +msgstr "" -#: src/Model/Contact.php:667 -msgid "Drop Contact" -msgstr "Poista kontakti" +#: src/Model/Circle.php:604 src/Module/Circle.php:179 +#: src/Module/Circle.php:202 src/Module/Circle.php:277 +msgid "Circle Name: " +msgstr "" -#: src/Model/Contact.php:1101 +#: src/Model/Circle.php:605 +msgid "Edit circles" +msgstr "" + +#: src/Model/Contact.php:1212 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 +msgid "Approve" +msgstr "Hyväksy" + +#: src/Model/Contact.php:1647 msgid "Organisation" msgstr "Järjestö" -#: src/Model/Contact.php:1104 -msgid "News" -msgstr "Uutiset" +#: src/Model/Contact.php:1655 +msgid "Group" +msgstr "" -#: src/Model/Contact.php:1107 -msgid "Forum" -msgstr "Keskustelupalsta" +#: src/Model/Contact.php:2951 +msgid "Disallowed profile URL." +msgstr "Kielletty profiiliosoite." -#: src/Model/Contact.php:1286 +#: src/Model/Contact.php:2956 src/Module/Friendica.php:83 +msgid "Blocked domain" +msgstr "Estetty verkkotunnus" + +#: src/Model/Contact.php:2961 msgid "Connect URL missing." msgstr "Yhteys URL-linkki puuttuu." -#: src/Model/Contact.php:1295 +#: src/Model/Contact.php:2970 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Kontaktia ei pystytty lisäämään. Tarkista verkkoasetukset omista asetuksistasi (Settings -> Social Networks)." -#: src/Model/Contact.php:1342 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Tämä sivusto ei salli yhteyksiä muiden verkkojen kanssa.." +#: src/Model/Contact.php:2988 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "" -#: src/Model/Contact.php:1343 src/Model/Contact.php:1357 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Yhteensopivia viestintäprotokolleja tai syötteitä ei löytynyt." - -#: src/Model/Contact.php:1355 +#: src/Model/Contact.php:3005 msgid "The profile address specified does not provide adequate information." msgstr "Annettu profiiliosoite ei sisällä riittävästi tietoa." -#: src/Model/Contact.php:1360 +#: src/Model/Contact.php:3007 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Yhteensopivia viestintäprotokolleja tai syötteitä ei löytynyt." + +#: src/Model/Contact.php:3010 msgid "An author or name was not found." msgstr "Julkaisija tai nimi puuttuu." -#: src/Model/Contact.php:1363 +#: src/Model/Contact.php:3013 msgid "No browser URL could be matched to this address." msgstr "" -#: src/Model/Contact.php:1366 +#: src/Model/Contact.php:3016 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "" -#: src/Model/Contact.php:1367 +#: src/Model/Contact.php:3017 msgid "Use mailto: in front of address to force email check." msgstr "Käytä \"mailto:\" osoitteen edessä pakottaaksesi sähköpostin tarkastuksen." -#: src/Model/Contact.php:1373 +#: src/Model/Contact.php:3023 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "Profiilin osoite kuuluu verkkoon, joka on poistettu tältä sivustolta." -#: src/Model/Contact.php:1378 +#: src/Model/Contact.php:3028 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Rajoitettu profiili. Tämä henkilö ei pysty/tule saamaan suoria/henkilökohtaisia ilmoituksia sinulta." -#: src/Model/Contact.php:1429 +#: src/Model/Contact.php:3093 msgid "Unable to retrieve contact information." msgstr "Kontaktin tietoja ei voitu hakea." -#: src/Model/Contact.php:1646 src/Protocol/DFRN.php:1515 +#: src/Model/Event.php:54 +msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" +msgstr "" + +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:471 +#: src/Model/Event.php:940 +msgid "Starts:" +msgstr "Alkaa:" + +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:472 +#: src/Model/Event.php:944 +msgid "Finishes:" +msgstr "Päättyy:" + +#: src/Model/Event.php:421 +msgid "all-day" +msgstr "koko päivä" + +#: src/Model/Event.php:447 +msgid "Sept" +msgstr "Syy." + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "tänään" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:232 src/Util/Temporal.php:353 +msgid "month" +msgstr "kuukausi" + +#: src/Model/Event.php:466 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:233 src/Util/Temporal.php:354 +msgid "week" +msgstr "viikko" + +#: src/Model/Event.php:467 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:234 src/Util/Temporal.php:355 +msgid "day" +msgstr "päivä" + +#: src/Model/Event.php:469 +msgid "No events to display" +msgstr "Ei näytettäviä tapahtumia." + +#: src/Model/Event.php:518 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "Pääsy tähän profiiliin on rajoitettu" + +#: src/Model/Event.php:559 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "" + +#: src/Model/Event.php:637 +msgid "l, F j" +msgstr "l, F j" + +#: src/Model/Event.php:664 +msgid "Edit event" +msgstr "Muokkaa tapahtumaa" + +#: src/Model/Event.php:665 +msgid "Duplicate event" +msgstr "Monista tapahtuma" + +#: src/Model/Event.php:666 +msgid "Delete event" +msgstr "Poista tapahtuma" + +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +msgid "l F d, Y \\@ g:i A" +msgstr "l j.n.Y \\@ H:i" + +#: src/Model/Event.php:897 +msgid "D g:i A" +msgstr "D H:i" + +#: src/Model/Event.php:898 +msgid "g:i A" +msgstr "H:i" + +#: src/Model/Event.php:959 src/Model/Event.php:961 +msgid "Show map" +msgstr "Näytä kartta" + +#: src/Model/Event.php:960 +msgid "Hide map" +msgstr "Piilota kartta" + +#: src/Model/Event.php:1053 #, php-format msgid "%s's birthday" msgstr "%s: syntymäpäivä" -#: src/Model/Contact.php:1647 src/Protocol/DFRN.php:1516 +#: src/Model/Event.php:1054 #, php-format msgid "Happy Birthday %s" msgstr "Hyvää syntymäpäivää %s" -#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419 -#: src/Model/Event.php:882 -msgid "Starts:" -msgstr "Alkaa:" - -#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420 -#: src/Model/Event.php:886 -msgid "Finishes:" -msgstr "Päättyy:" - -#: src/Model/Event.php:368 -msgid "all-day" -msgstr "koko päivä" - -#: src/Model/Event.php:391 -msgid "Jun" -msgstr "Kes." - -#: src/Model/Event.php:394 -msgid "Sept" -msgstr "Syy." - -#: src/Model/Event.php:417 -msgid "No events to display" -msgstr "Ei näytettäviä tapahtumia." - -#: src/Model/Event.php:543 -msgid "l, F j" -msgstr "l, F j" - -#: src/Model/Event.php:566 -msgid "Edit event" -msgstr "Muokkaa tapahtumaa" - -#: src/Model/Event.php:567 -msgid "Duplicate event" -msgstr "Monista tapahtuma" - -#: src/Model/Event.php:568 -msgid "Delete event" -msgstr "Poista tapahtuma" - -#: src/Model/Event.php:815 -msgid "D g:i A" -msgstr "D H:i" - -#: src/Model/Event.php:816 -msgid "g:i A" -msgstr "H:i" - -#: src/Model/Event.php:901 src/Model/Event.php:903 -msgid "Show map" -msgstr "Näytä kartta" - -#: src/Model/Event.php:902 -msgid "Hide map" -msgstr "Piilota kartta" - -#: src/Model/Item.php:1883 +#: src/Model/Item.php:2023 #, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s osallistuu tapahtumaan %3$s, jonka järjestää %2$s" +msgid "Detected languages in this post:\\n%s" +msgstr "" -#: src/Model/Item.php:1888 +#: src/Model/Item.php:2935 +msgid "activity" +msgstr "toiminta" + +#: src/Model/Item.php:2937 +msgid "comment" +msgstr "" + +#: src/Model/Item.php:2940 src/Module/Post/Tag/Add.php:123 +msgid "post" +msgstr "julkaisu" + +#: src/Model/Item.php:3109 #, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s ei osallistu tapahtumaan %3$s, jonka järjestää %2$s" +msgid "%s is blocked" +msgstr "" -#: src/Model/Item.php:1893 +#: src/Model/Item.php:3111 #, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s ehkä osallistuu tapahtumaan %3$s, jonka järjestää %2$s" +msgid "%s is ignored" +msgstr "" -#: src/Model/Profile.php:97 -msgid "Requested account is not available." -msgstr "Pyydetty käyttäjätili ei ole saatavilla." +#: src/Model/Item.php:3113 +#, php-format +msgid "Content from %s is collapsed" +msgstr "" -#: src/Model/Profile.php:164 src/Model/Profile.php:395 -#: src/Model/Profile.php:857 +#: src/Model/Item.php:3117 +#, php-format +msgid "Content warning: %s" +msgstr "Sisältövaroitus: %s" + +#: src/Model/Item.php:3561 +msgid "bytes" +msgstr "tavua" + +#: src/Model/Item.php:3592 +#, php-format +msgid "%2$s (%3$d%%, %1$d vote)" +msgid_plural "%2$s (%3$d%%, %1$d votes)" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3594 +#, php-format +msgid "%2$s (%1$d vote)" +msgid_plural "%2$s (%1$d votes)" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3599 +#, php-format +msgid "%d voter. Poll end: %s" +msgid_plural "%d voters. Poll end: %s" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3601 +#, php-format +msgid "%d voter." +msgid_plural "%d voters." +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3603 +#, php-format +msgid "Poll end: %s" +msgstr "" + +#: src/Model/Item.php:3637 src/Model/Item.php:3638 +msgid "View on separate page" +msgstr "Katso erillisellä sivulla" + +#: src/Model/Mail.php:137 src/Model/Mail.php:266 +msgid "[no subject]" +msgstr "[ei aihetta]" + +#: src/Model/Photo.php:1184 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Seinäkuvat" + +#: src/Model/Profile.php:361 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 msgid "Edit profile" msgstr "Muokkaa profiilia" -#: src/Model/Profile.php:332 +#: src/Model/Profile.php:363 +msgid "Change profile photo" +msgstr "Vaihda profiilikuva" + +#: src/Model/Profile.php:376 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 +msgid "Homepage:" +msgstr "Kotisivu:" + +#: src/Model/Profile.php:377 src/Module/Contact/Profile.php:385 +#: src/Module/Notifications/Introductions.php:189 +msgid "About:" +msgstr "Lisätietoja:" + +#: src/Model/Profile.php:467 msgid "Atom feed" msgstr "Atom -syöte" -#: src/Model/Profile.php:368 -msgid "Manage/edit profiles" -msgstr "Hallitse/muokkaa profiilit" +#: src/Model/Profile.php:474 +msgid "This website has been verified to belong to the same person." +msgstr "" -#: src/Model/Profile.php:546 src/Model/Profile.php:639 -msgid "g A l F d" -msgstr "g A l F d" - -#: src/Model/Profile.php:547 +#: src/Model/Profile.php:511 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:604 src/Model/Profile.php:701 +#: src/Model/Profile.php:575 src/Model/Profile.php:664 msgid "[today]" msgstr "[tänään]" -#: src/Model/Profile.php:615 +#: src/Model/Profile.php:584 msgid "Birthday Reminders" msgstr "Syntymäpäivämuistutukset" -#: src/Model/Profile.php:616 +#: src/Model/Profile.php:585 msgid "Birthdays this week:" msgstr "Syntymäpäiviä tällä viikolla:" -#: src/Model/Profile.php:688 +#: src/Model/Profile.php:613 +msgid "g A l F d" +msgstr "g A l F d" + +#: src/Model/Profile.php:651 msgid "[No description]" msgstr "[Ei kuvausta]" -#: src/Model/Profile.php:715 +#: src/Model/Profile.php:677 msgid "Event Reminders" msgstr "Tapahtumamuistutukset" -#: src/Model/Profile.php:716 -msgid "Events this week:" -msgstr "Tapahtumia tällä viikolla:" +#: src/Model/Profile.php:678 +msgid "Upcoming events the next 7 days:" +msgstr "" -#: src/Model/Profile.php:739 -msgid "Member since:" -msgstr "Liittymispäivämäärä:" - -#: src/Model/Profile.php:747 -msgid "j F, Y" -msgstr "j F, Y" - -#: src/Model/Profile.php:748 -msgid "j F" -msgstr "j F" - -#: src/Model/Profile.php:763 -msgid "Age:" -msgstr "Ikä:" - -#: src/Model/Profile.php:776 +#: src/Model/Profile.php:875 #, php-format -msgid "for %1$d %2$s" -msgstr "%1$d%2$s" +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" -#: src/Model/Profile.php:800 -msgid "Religion:" +#: src/Model/Profile.php:1015 +msgid "Hometown:" +msgstr "Kotikaupunki:" + +#: src/Model/Profile.php:1016 +msgid "Marital Status:" +msgstr "" + +#: src/Model/Profile.php:1017 +msgid "With:" +msgstr "" + +#: src/Model/Profile.php:1018 +msgid "Since:" +msgstr "" + +#: src/Model/Profile.php:1019 +msgid "Sexual Preference:" +msgstr "Seksuaalinen suuntautuminen:" + +#: src/Model/Profile.php:1020 +msgid "Political Views:" +msgstr "Politiikka:" + +#: src/Model/Profile.php:1021 +msgid "Religious Views:" msgstr "Uskonto:" -#: src/Model/Profile.php:808 -msgid "Hobbies/Interests:" -msgstr "Harrastukset:" +#: src/Model/Profile.php:1022 +msgid "Likes:" +msgstr "Tykkäykset:" -#: src/Model/Profile.php:820 -msgid "Contact information and Social Networks:" -msgstr "Yhteystiedot ja sosiaalinen media:" +#: src/Model/Profile.php:1023 +msgid "Dislikes:" +msgstr "Ei tykkää:" -#: src/Model/Profile.php:824 -msgid "Musical interests:" -msgstr "Musiikki:" +#: src/Model/Profile.php:1024 +msgid "Title/Description:" +msgstr "Otsikko/kuvaus:" -#: src/Model/Profile.php:828 -msgid "Books, literature:" -msgstr "Kirjat, kirjallisuus:" +#: src/Model/Profile.php:1025 src/Module/Admin/Summary.php:221 +#: src/Module/Moderation/Summary.php:77 +msgid "Summary" +msgstr "Yhteenveto" -#: src/Model/Profile.php:832 -msgid "Television:" -msgstr "Televisio:" +#: src/Model/Profile.php:1026 +msgid "Musical interests" +msgstr "Musiikki" -#: src/Model/Profile.php:836 -msgid "Film/dance/culture/entertainment:" -msgstr "Elokuvat/tanssit/kulttuuri/viihde:" +#: src/Model/Profile.php:1027 +msgid "Books, literature" +msgstr "Kirjat, kirjallisuus" -#: src/Model/Profile.php:840 -msgid "Love/Romance:" -msgstr "Rakkaus/romanssi:" +#: src/Model/Profile.php:1028 +msgid "Television" +msgstr "Televisio" -#: src/Model/Profile.php:844 -msgid "Work/employment:" +#: src/Model/Profile.php:1029 +msgid "Film/dance/culture/entertainment" +msgstr "Elokuvat/tanssi/kulttuuri/viihde" + +#: src/Model/Profile.php:1030 +msgid "Hobbies/Interests" +msgstr "Harrastukset" + +#: src/Model/Profile.php:1031 +msgid "Love/romance" +msgstr "Rakkaus/romanssi" + +#: src/Model/Profile.php:1032 +msgid "Work/employment" msgstr "Työ:" -#: src/Model/Profile.php:848 -msgid "School/education:" +#: src/Model/Profile.php:1033 +msgid "School/education" msgstr "Koulutus:" -#: src/Model/Profile.php:853 -msgid "Forums:" -msgstr "Foorumit:" +#: src/Model/Profile.php:1034 +msgid "Contact information and Social Networks" +msgstr "Yhteystiedot ja sosiaalinen media" -#: src/Model/Profile.php:947 -msgid "Only You Can See This" -msgstr "Vain sinä näet tämän" +#: src/Model/User.php:214 src/Model/User.php:1124 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "VAKAVA VIRHE: Salausavainten luominen epäonnistui." -#: src/Model/User.php:154 +#: src/Model/User.php:572 src/Model/User.php:605 msgid "Login failed" msgstr "Kirjautuminen epäonnistui" -#: src/Model/User.php:185 +#: src/Model/User.php:637 msgid "Not enough information to authenticate" msgstr "Ei tarpeeksi tietoja kirjautumiseen" -#: src/Model/User.php:347 +#: src/Model/User.php:758 +msgid "Password can't be empty" +msgstr "Salasanakenttä ei voi olla tyhjä" + +#: src/Model/User.php:800 +msgid "Empty passwords are not allowed." +msgstr "" + +#: src/Model/User.php:804 +msgid "" +"The new password has been exposed in a public data dump, please choose " +"another." +msgstr "" + +#: src/Model/User.php:808 +msgid "The password length is limited to 72 characters." +msgstr "" + +#: src/Model/User.php:812 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "" + +#: src/Model/User.php:1007 +msgid "Passwords do not match. Password unchanged." +msgstr "Salasanat eivät täsmää. Salasana ennallaan." + +#: src/Model/User.php:1014 msgid "An invitation is required." msgstr "Vaaditaa kutsu." -#: src/Model/User.php:351 +#: src/Model/User.php:1018 msgid "Invitation could not be verified." msgstr "Kutsua ei voitu vahvistaa." -#: src/Model/User.php:358 +#: src/Model/User.php:1026 msgid "Invalid OpenID url" msgstr "Virheellinen OpenID url-osoite" -#: src/Model/User.php:371 src/Module/Login.php:101 +#: src/Model/User.php:1039 src/Security/Authentication.php:241 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Kohtasimme ongelman antamasi OpenID:n kanssa. Ole hyvä ja tarkista ID:n oikea kirjoitusasu." -#: src/Model/User.php:371 src/Module/Login.php:101 +#: src/Model/User.php:1039 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "Virheviesti oli:" -#: src/Model/User.php:377 +#: src/Model/User.php:1045 msgid "Please enter the required information." msgstr "Syötä tarvittavat tiedot." -#: src/Model/User.php:390 -msgid "Please use a shorter name." -msgstr "Käytä lyhyempää nimeä." +#: src/Model/User.php:1059 +#, 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:393 -msgid "Name too short." -msgstr "Nimi on liian lyhyt." +#: src/Model/User.php:1066 +#, 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:401 +#: src/Model/User.php:1070 +#, 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:1078 msgid "That doesn't appear to be your full (First Last) name." msgstr "Tuo ei vakuta täydeltä nimeltäsi (Etunimi Sukunimi)." -#: src/Model/User.php:406 +#: src/Model/User.php:1083 msgid "Your email domain is not among those allowed on this site." msgstr "Sähköpostiosoitteesi verkkotunnus on tämän sivuston estolistalla." -#: src/Model/User.php:410 +#: src/Model/User.php:1087 msgid "Not a valid email address." msgstr "Virheellinen sähköpostiosoite." -#: src/Model/User.php:414 src/Model/User.php:422 +#: src/Model/User.php:1090 +msgid "The nickname was blocked from registration by the nodes admin." +msgstr "" + +#: src/Model/User.php:1094 src/Model/User.php:1100 msgid "Cannot use that email." msgstr "Sähköpostiosoitetta ei voitu käyttää." -#: src/Model/User.php:429 +#: src/Model/User.php:1106 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Nimimerkki voi sisältää a-z, 0-9 ja _." -#: src/Model/User.php:436 src/Model/User.php:493 +#: src/Model/User.php:1114 src/Model/User.php:1171 msgid "Nickname is already registered. Please choose another." msgstr "Valitsemasi nimimerkki on jo käytössä. Valitse toinen nimimerkki." -#: src/Model/User.php:446 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "VAKAVA VIRHE: Salausavainten luominen epäonnistui." - -#: src/Model/User.php:480 src/Model/User.php:484 +#: src/Model/User.php:1158 src/Model/User.php:1162 msgid "An error occurred during registration. Please try again." msgstr "Rekisteröityminen epäonnistui. Yritä uudelleen." -#: src/Model/User.php:509 +#: src/Model/User.php:1185 msgid "An error occurred creating your default profile. Please try again." msgstr "Oletusprofiilin luominen epäonnistui. Yritä uudelleen." -#: src/Model/User.php:516 +#: src/Model/User.php:1192 msgid "An error occurred creating your self contact. Please try again." msgstr "Yhteystietojesi luonti epäonnistui. Yritä uudelleen." -#: src/Model/User.php:525 -msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "Oletusryhmäsi luonti epäonnistui. Yritä uudelleen." +#: src/Model/User.php:1197 +msgid "Friends" +msgstr "Kaverit" -#: src/Model/User.php:599 +#: src/Model/User.php:1201 +msgid "" +"An error occurred creating your default contact circle. Please try again." +msgstr "" + +#: src/Model/User.php:1240 +msgid "Profile Photos" +msgstr "Profiilin valokuvat" + +#: src/Model/User.php:1435 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: src/Model/User.php:1438 +#, 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/settings/removeme\n" +"\n" +"\t\tThank you and welcome to %4$s." +msgstr "" + +#: src/Model/User.php:1471 src/Model/User.php:1578 +#, php-format +msgid "Registration details for %s" +msgstr "" + +#: src/Model/User.php:1491 #, 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\tHei %1$s,\n\t\t\t\tKiitoksia rekisteröitymisestä sivustolle %2$s. Tilisi on odottamassa ylläpidon hyväksyntää.\n\t\t" +msgstr "" -#: src/Model/User.php:609 +#: src/Model/User.php:1510 #, php-format msgid "Registration at %s" msgstr "Rekisteröityminen kohteessa %s" -#: src/Model/User.php:627 +#: src/Model/User.php:1534 #, php-format msgid "" "\n" -"\t\t\tDear %1$s,\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" -msgstr "\n\t\t\tHei %1$s,\n\t\t\t\tKiitoksia rekisteröinnistä sivustolle %2$s. Tilisi on luotu.\n\t\t" +"\t\t\t" +msgstr "" -#: src/Model/User.php:631 +#: src/Model/User.php:1542 #, php-format msgid "" "\n" @@ -9289,82 +3679,6818 @@ msgid "" "\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" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Protocol/Diaspora.php:2521 -msgid "Sharing notification from Diaspora network" -msgstr "Ilmoitus Diaspora -verkosta tapahtuneesta jakamisesta." +#: src/Module/Admin/Addons/Details.php:65 +msgid "Addon not found." +msgstr "" -#: src/Protocol/Diaspora.php:3609 -msgid "Attachments:" -msgstr "Liitteitä:" - -#: src/Protocol/OStatus.php:1798 +#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 #, php-format -msgid "%s is now following %s." -msgstr "%s seuraa %s." +msgid "Addon %s disabled." +msgstr "Lisäosa %s poistettu käytöstä." -#: src/Protocol/OStatus.php:1799 -msgid "following" -msgstr "seuraa" - -#: src/Protocol/OStatus.php:1802 +#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 #, php-format -msgid "%s stopped following %s." -msgstr "%s ei enää seuraa %s." +msgid "Addon %s enabled." +msgstr "Lisäosa %s käytössä." -#: src/Protocol/OStatus.php:1803 -msgid "stopped following" -msgstr "ei enää seuraa" +#: src/Module/Admin/Addons/Details.php:88 +#: src/Module/Admin/Themes/Details.php:46 +msgid "Disable" +msgstr "Poista käytöstä" -#: src/Worker/Delivery.php:415 -msgid "(no subject)" -msgstr "(ei aihetta)" +#: src/Module/Admin/Addons/Details.php:91 +#: src/Module/Admin/Themes/Details.php:49 +msgid "Enable" +msgstr "Ota käyttöön" -#: src/Module/Logout.php:28 -msgid "Logged out." -msgstr "Kirjautunut ulos." +#: src/Module/Admin/Addons/Details.php:111 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:209 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:220 +#: src/Module/Admin/Themes/Details.php:90 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 +msgid "Administration" +msgstr "Ylläpito" -#: src/Module/Login.php:283 +#: src/Module/Admin/Addons/Details.php:112 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:134 +msgid "Addons" +msgstr "Lisäosat" + +#: src/Module/Admin/Addons/Details.php:113 +#: src/Module/Admin/Themes/Details.php:92 +msgid "Toggle" +msgstr "Vaihda" + +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 +msgid "Author: " +msgstr "Tekijä" + +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 +msgid "Maintainer: " +msgstr "Ylläpitäjä:" + +#: src/Module/Admin/Addons/Index.php:42 +msgid "Addons reloaded" +msgstr "" + +#: src/Module/Admin/Addons/Index.php:53 +#, php-format +msgid "Addon %s failed to install." +msgstr "" + +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:560 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:247 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Tallenna asetukset" + +#: src/Module/Admin/Addons/Index.php:70 +msgid "Reload active addons" +msgstr "" + +#: src/Module/Admin/Addons/Index.php:74 +#, 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 "" + +#: src/Module/Admin/DBSync.php:51 +msgid "Update has been marked successful" +msgstr "" + +#: src/Module/Admin/DBSync.php:59 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Tietokannan rakenteen %s-päivitys onnistui." + +#: src/Module/Admin/DBSync.php:61 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Tietokannan rakennepäivitys %s epäonnistui virheviestillä %s" + +#: src/Module/Admin/DBSync.php:76 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: src/Module/Admin/DBSync.php:78 +#, php-format +msgid "Update %s was successfully applied." +msgstr "%s-päivitys onnistui." + +#: src/Module/Admin/DBSync.php:81 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: src/Module/Admin/DBSync.php:84 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: src/Module/Admin/DBSync.php:105 +msgid "No failed updates." +msgstr "Ei epäonnistuineita päivityksiä." + +#: src/Module/Admin/DBSync.php:106 +msgid "Check database structure" +msgstr "Tarkista tietokannan rakenne" + +#: src/Module/Admin/DBSync.php:110 +msgid "Failed Updates" +msgstr "Epäonnistuineita päivityksiä" + +#: src/Module/Admin/DBSync.php:111 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "" + +#: src/Module/Admin/DBSync.php:112 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: src/Module/Admin/DBSync.php:113 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: src/Module/Admin/Features.php:76 +#, php-format +msgid "Lock feature %s" +msgstr "Lukitse ominaisuus %s" + +#: src/Module/Admin/Features.php:84 +msgid "Manage Additional Features" +msgstr "Hallitse lisäominaisuudet" + +#: src/Module/Admin/Federation.php:75 +msgid "Other" +msgstr "Toinen" + +#: src/Module/Admin/Federation.php:149 src/Module/Admin/Federation.php:398 +msgid "unknown" +msgstr "tuntematon" + +#: src/Module/Admin/Federation.php:182 +#, php-format +msgid "%2$s total system" +msgid_plural "%2$s total systems" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:183 +#, php-format +msgid "%2$s active user last month" +msgid_plural "%2$s active users last month" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:184 +#, php-format +msgid "%2$s active user last six months" +msgid_plural "%2$s active users last six months" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:185 +#, php-format +msgid "%2$s registered user" +msgid_plural "%2$s registered users" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:186 +#, php-format +msgid "%2$s locally created post or comment" +msgid_plural "%2$s locally created posts and comments" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:189 +#, php-format +msgid "%2$s post per user" +msgid_plural "%2$s posts per user" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:194 +#, php-format +msgid "%2$s user per system" +msgid_plural "%2$s users per system" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:204 +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:210 src/Module/BaseAdmin.php:87 +msgid "Federation Statistics" +msgstr "Liiton tilastotiedot" + +#: src/Module/Admin/Federation.php:214 +#, php-format +msgid "" +"Currently this node is aware of %2$s node (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgid_plural "" +"Currently this node is aware of %2$s nodes (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Logs/Settings.php:47 +#, php-format +msgid "The logfile '%s' is not writable. No logging possible" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:77 +msgid "PHP log currently enabled." +msgstr "PHP-loki käytössä" + +#: src/Module/Admin/Logs/Settings.php:79 +msgid "PHP log currently disabled." +msgstr "PHP-loki pois käytöstä" + +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 +msgid "Logs" +msgstr "Lokit" + +#: src/Module/Admin/Logs/Settings.php:88 +msgid "Clear" +msgstr "Tyhjennä" + +#: src/Module/Admin/Logs/Settings.php:91 +msgid "Enable Debugging" +msgstr "Ota virheenkorjaustila käyttöön" + +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:92 +msgid "Log file" +msgstr "Lokitiedosto" + +#: src/Module/Admin/Logs/Settings.php:92 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:93 +msgid "Log level" +msgstr "Lokitaso" + +#: src/Module/Admin/Logs/Settings.php:95 +msgid "PHP logging" +msgstr "PHP-loki" + +#: src/Module/Admin/Logs/Settings.php:96 +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 "" + +#: src/Module/Admin/Logs/View.php:70 +#, php-format +msgid "" +"Error trying to open %1$s log file.
    Check to see if " +"file %1$s exist and is readable." +msgstr "" + +#: src/Module/Admin/Logs/View.php:79 +#, php-format +msgid "" +"Couldn't open %1$s log file.
    Check to see if file %1$s " +"is readable." +msgstr "" + +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 +msgid "View Logs" +msgstr "Katso lokit" + +#: src/Module/Admin/Logs/View.php:87 +msgid "Search in logs" +msgstr "" + +#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Notifications/Notifications.php:140 +msgid "Show all" +msgstr "Näytä kaikki" + +#: src/Module/Admin/Logs/View.php:89 +msgid "Date" +msgstr "" + +#: src/Module/Admin/Logs/View.php:90 +msgid "Level" +msgstr "" + +#: src/Module/Admin/Logs/View.php:91 +msgid "Context" +msgstr "" + +#: src/Module/Admin/Logs/View.php:93 +msgid "ALL" +msgstr "" + +#: src/Module/Admin/Logs/View.php:94 +msgid "View details" +msgstr "" + +#: src/Module/Admin/Logs/View.php:95 +msgid "Click to view details" +msgstr "" + +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Tapahtuman tiedot" + +#: src/Module/Admin/Logs/View.php:97 +msgid "Data" +msgstr "" + +#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Debug/ActivityPubConversion.php:57 +msgid "Source" +msgstr "" + +#: src/Module/Admin/Logs/View.php:99 +msgid "File" +msgstr "" + +#: src/Module/Admin/Logs/View.php:100 +msgid "Line" +msgstr "" + +#: src/Module/Admin/Logs/View.php:101 +msgid "Function" +msgstr "" + +#: src/Module/Admin/Logs/View.php:102 +msgid "UID" +msgstr "" + +#: src/Module/Admin/Logs/View.php:103 +msgid "Process ID" +msgstr "" + +#: src/Module/Admin/Logs/View.php:104 +msgid "Close" +msgstr "" + +#: src/Module/Admin/Queue.php:50 +msgid "Inspect Deferred Worker Queue" +msgstr "" + +#: 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 "" + +#: src/Module/Admin/Queue.php:54 +msgid "Inspect Worker Queue" +msgstr "" + +#: 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 "" + +#: src/Module/Admin/Queue.php:75 +msgid "ID" +msgstr "" + +#: src/Module/Admin/Queue.php:76 +msgid "Command" +msgstr "" + +#: src/Module/Admin/Queue.php:77 +msgid "Job Parameters" +msgstr "" + +#: src/Module/Admin/Queue.php:78 src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "Luotu" + +#: src/Module/Admin/Queue.php:79 +msgid "Priority" +msgstr "" + +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" +msgstr "" + +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:169 +msgid "No special theme for mobile devices" +msgstr "Ei mobiiliteemaa" + +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:179 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Kokeellinen)" + +#: src/Module/Admin/Site.php:342 +msgid "No community page" +msgstr "Ei yhteisösivua" + +#: src/Module/Admin/Site.php:343 +msgid "No community page for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:344 +msgid "Public postings from users of this site" +msgstr "Julkiset julkaisut tämän sivuston käyttäjiltä" + +#: src/Module/Admin/Site.php:345 +msgid "Public postings from the federated network" +msgstr "Julkiset julkaisut liittoutuneelta verkolta" + +#: src/Module/Admin/Site.php:346 +msgid "Public postings from local users and the federated network" +msgstr "Julkiset julkaisut tältä sivustolta ja liittoutuneelta verkolta" + +#: src/Module/Admin/Site.php:352 +msgid "Multi user instance" +msgstr "Monen käyttäjän instanssi" + +#: src/Module/Admin/Site.php:375 +msgid "Closed" +msgstr "Suljettu" + +#: src/Module/Admin/Site.php:376 +msgid "Requires approval" +msgstr "Edellyttää hyväksyntää" + +#: src/Module/Admin/Site.php:377 +msgid "Open" +msgstr "Avoin" + +#: src/Module/Admin/Site.php:381 +msgid "Don't check" +msgstr "Älä tarkista" + +#: src/Module/Admin/Site.php:382 +msgid "check the stable version" +msgstr "" + +#: src/Module/Admin/Site.php:383 +msgid "check the development version" +msgstr "" + +#: src/Module/Admin/Site.php:387 +msgid "none" +msgstr "" + +#: src/Module/Admin/Site.php:388 +msgid "Local contacts" +msgstr "" + +#: src/Module/Admin/Site.php:389 +msgid "Interactors" +msgstr "" + +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 +msgid "Site" +msgstr "Sivusto" + +#: src/Module/Admin/Site.php:400 +msgid "General Information" +msgstr "" + +#: src/Module/Admin/Site.php:402 +msgid "Republish users to directory" +msgstr "" + +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 +msgid "Registration" +msgstr "Rekisteröityminen" + +#: src/Module/Admin/Site.php:404 +msgid "File upload" +msgstr "Tiedoston lataus" + +#: src/Module/Admin/Site.php:405 +msgid "Policies" +msgstr "Käytännöt" + +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:525 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "" + +#: src/Module/Admin/Site.php:407 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: src/Module/Admin/Site.php:408 +msgid "Performance" +msgstr "Suoritus" + +#: src/Module/Admin/Site.php:409 +msgid "Worker" +msgstr "Worker" + +#: src/Module/Admin/Site.php:410 +msgid "Message Relay" +msgstr "Viestirele" + +#: src/Module/Admin/Site.php:411 +msgid "" +"Use the command \"console relay\" in the command line to add or remove " +"relays." +msgstr "" + +#: src/Module/Admin/Site.php:412 +msgid "The system is not subscribed to any relays at the moment." +msgstr "" + +#: src/Module/Admin/Site.php:413 +msgid "The system is currently subscribed to the following relays:" +msgstr "" + +#: src/Module/Admin/Site.php:415 +msgid "Relocate Node" +msgstr "" + +#: src/Module/Admin/Site.php:416 +msgid "" +"Relocating your node enables you to change the DNS domain of this node and " +"keep all the existing users and posts. This process takes a while and can " +"only be started from the relocate console command like this:" +msgstr "" + +#: src/Module/Admin/Site.php:417 +msgid "(Friendica directory)# bin/console relocate https://newdomain.com" +msgstr "" + +#: src/Module/Admin/Site.php:420 +msgid "Site name" +msgstr "Sivuston nimi" + +#: src/Module/Admin/Site.php:421 +msgid "Sender Email" +msgstr "Lähettäjän sähköposti" + +#: src/Module/Admin/Site.php:421 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "Lähettäjän sähköpostiosoite palvelimen ilmoitussähköposteissa." + +#: src/Module/Admin/Site.php:422 +msgid "Name of the system actor" +msgstr "" + +#: src/Module/Admin/Site.php:422 +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:423 +msgid "Banner/Logo" +msgstr "Banneri/logo" + +#: src/Module/Admin/Site.php:424 +msgid "Email Banner/Logo" +msgstr "" + +#: src/Module/Admin/Site.php:425 +msgid "Shortcut icon" +msgstr "Pikakuvake" + +#: src/Module/Admin/Site.php:425 +msgid "Link to an icon that will be used for browsers." +msgstr "Linkki kuvakkeeseen jota selaimet saa käyttää." + +#: src/Module/Admin/Site.php:426 +msgid "Touch icon" +msgstr "Kosketusnäyttökuvake" + +#: src/Module/Admin/Site.php:426 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Linkki kuvakkeeseen jota tabletit ja matkapuhelimet saa käyttää." + +#: src/Module/Admin/Site.php:427 +msgid "Additional Info" +msgstr "Lisätietoja" + +#: src/Module/Admin/Site.php:427 +#, 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:428 +msgid "System language" +msgstr "Järjestelmän kieli" + +#: src/Module/Admin/Site.php:429 +msgid "System theme" +msgstr "Järjestelmäteema" + +#: src/Module/Admin/Site.php:429 +#, php-format +msgid "" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "" + +#: src/Module/Admin/Site.php:430 +msgid "Mobile system theme" +msgstr "Mobiili järjestelmäteema" + +#: src/Module/Admin/Site.php:430 +msgid "Theme for mobile devices" +msgstr "Mobiiliteema" + +#: src/Module/Admin/Site.php:431 +msgid "Force SSL" +msgstr "Pakoita SSL-yhteyden käyttöä" + +#: src/Module/Admin/Site.php:431 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" + +#: src/Module/Admin/Site.php:432 +msgid "Show help entry from navigation menu" +msgstr "" + +#: src/Module/Admin/Site.php:432 +msgid "" +"Displays the menu entry for the Help pages from the navigation menu. It is " +"always accessible by calling /help directly." +msgstr "" + +#: src/Module/Admin/Site.php:433 +msgid "Single user instance" +msgstr "Yksittäisen käyttäjän instanssi" + +#: src/Module/Admin/Site.php:433 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "" + +#: src/Module/Admin/Site.php:435 +msgid "Maximum image size" +msgstr "Suurin kuvakoko" + +#: src/Module/Admin/Site.php:435 +#, php-format +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "" + +#: src/Module/Admin/Site.php:439 +msgid "Maximum image length" +msgstr "Suurin kuvapituus" + +#: src/Module/Admin/Site.php:439 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Ladattavan kuvatiedoston enimmäispituus pikseleinä. Oletusarvo on -1, eli ei enimmäispituutta." + +#: src/Module/Admin/Site.php:440 +msgid "JPEG image quality" +msgstr "JPEG-kuvanlaatu" + +#: src/Module/Admin/Site.php:440 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Ladatut JPEG-kuvat tallennetaan tällä laatuasetuksella [0-100]. Oletus on 100, eli korkein laatu." + +#: src/Module/Admin/Site.php:442 +msgid "Register policy" +msgstr "Rekisteröintipolitiikka" + +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "" + +#: src/Module/Admin/Site.php:444 +msgid "Maximum Daily Registrations" +msgstr "Päivittäinen rekisteröitymisraja" + +#: src/Module/Admin/Site.php:444 +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 "Mikäli rekisteröityminen on sallittu, tämä asettaa enimmäismäärä uusia rekisteröitymisiä päivässä. Jos reksiteröityminen ei ole sallittu, tällä asetuksella ei ole vaikutusta." + +#: src/Module/Admin/Site.php:445 +msgid "Register text" +msgstr "Rekisteröitymisteksti" + +#: src/Module/Admin/Site.php:445 +msgid "" +"Will be displayed prominently on the registration page. You can use BBCode " +"here." +msgstr "Näkyvästi esillä rekisteröitymissivulla. Voit käyttää BBCodeia." + +#: src/Module/Admin/Site.php:446 +msgid "Forbidden Nicknames" +msgstr "" + +#: src/Module/Admin/Site.php:446 +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:447 +msgid "Accounts abandoned after x days" +msgstr "Käyttäjätilit hylätään X päivän jälkeen" + +#: src/Module/Admin/Site.php:447 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: src/Module/Admin/Site.php:448 +msgid "Allowed friend domains" +msgstr "Sallittuja kaveri-verkkotunnuksia" + +#: src/Module/Admin/Site.php:448 +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:449 +msgid "Allowed email domains" +msgstr "Sallittuja sähköposti-verkkotunnuksia" + +#: src/Module/Admin/Site.php:449 +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:450 +msgid "No OEmbed rich content" +msgstr "" + +#: src/Module/Admin/Site.php:450 +msgid "" +"Don't show the rich content (e.g. embedded PDF), except from the domains " +"listed below." +msgstr "" + +#: src/Module/Admin/Site.php:451 +msgid "Trusted third-party domains" +msgstr "" + +#: src/Module/Admin/Site.php:451 +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:452 +msgid "Block public" +msgstr "Estä vierailijat" + +#: src/Module/Admin/Site.php:452 +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:453 +msgid "Force publish" +msgstr "" + +#: src/Module/Admin/Site.php:453 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: src/Module/Admin/Site.php:453 +msgid "Enabling this may violate privacy laws like the GDPR" +msgstr "" + +#: src/Module/Admin/Site.php:454 +msgid "Global directory URL" +msgstr "Maailmanlaajuisen hakemiston URL-osoite" + +#: src/Module/Admin/Site.php:454 +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:455 +msgid "Private posts by default for new users" +msgstr "" + +#: src/Module/Admin/Site.php:455 +msgid "" +"Set default post permissions for all new members to the default privacy " +"circle rather than public." +msgstr "" + +#: src/Module/Admin/Site.php:456 +msgid "Don't include post content in email notifications" +msgstr "Älä lisää julkaisun sisältö sähköposti-ilmoitukseen" + +#: src/Module/Admin/Site.php:456 +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:457 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "" + +#: src/Module/Admin/Site.php:457 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: src/Module/Admin/Site.php:458 +msgid "Don't embed private images in posts" +msgstr "Älä upota yksityisiä kuvia julkaisuissa" + +#: src/Module/Admin/Site.php:458 +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:459 +msgid "Explicit Content" +msgstr "" + +#: src/Module/Admin/Site.php:459 +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 "" + +#: src/Module/Admin/Site.php:460 +msgid "Proxify external content" +msgstr "" + +#: src/Module/Admin/Site.php:460 +msgid "" +"Route external content via the proxy functionality. This is used for example" +" for some OEmbed accesses and in some other rare cases." +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "Cache contact avatars" +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "" +"Locally store the avatar pictures of the contacts. This uses a lot of " +"storage space but it increases the performance." +msgstr "" + +#: src/Module/Admin/Site.php:462 +msgid "Allow Users to set remote_self" +msgstr "" + +#: src/Module/Admin/Site.php:462 +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:463 +msgid "Enable multiple registrations" +msgstr "" + +#: src/Module/Admin/Site.php:463 +msgid "Enable users to register additional accounts for use as pages." +msgstr "" + +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID" +msgstr "" + +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID support for registration and logins." +msgstr "" + +#: src/Module/Admin/Site.php:465 +msgid "Enable Fullname check" +msgstr "" + +#: src/Module/Admin/Site.php:465 +msgid "" +"Enable check to only allow users to register with a space between the first " +"name and the last name in their full name." +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "" + +#: src/Module/Admin/Site.php:467 +msgid "Community pages for visitors" +msgstr "Yhteisösivu vieraille" + +#: src/Module/Admin/Site.php:467 +msgid "" +"Which community pages should be available for visitors. Local users always " +"see both pages." +msgstr "" + +#: src/Module/Admin/Site.php:468 +msgid "Posts per user on community page" +msgstr "" + +#: src/Module/Admin/Site.php:468 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"\"Global Community\")" +msgstr "" + +#: src/Module/Admin/Site.php:470 +msgid "Enable Mail support" +msgstr "" + +#: src/Module/Admin/Site.php:470 +msgid "" +"Enable built-in mail support to poll IMAP folders and to reply via mail." +msgstr "" + +#: src/Module/Admin/Site.php:471 +msgid "" +"Mail support can't be enabled because the PHP IMAP module is not installed." +msgstr "" + +#: src/Module/Admin/Site.php:472 +msgid "Enable OStatus support" +msgstr "" + +#: src/Module/Admin/Site.php:472 +msgid "" +"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public." +msgstr "" + +#: src/Module/Admin/Site.php:474 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "Diaspora -tukea ei voitu ottaa käyttöön koska Friendica on asennettu alihakemistoon." + +#: src/Module/Admin/Site.php:475 +msgid "Enable Diaspora support" +msgstr "Salli Diaspora-tuki" + +#: src/Module/Admin/Site.php:475 +msgid "" +"Enable built-in Diaspora network compatibility for communicating with " +"diaspora servers." +msgstr "" + +#: src/Module/Admin/Site.php:476 +msgid "Verify SSL" +msgstr "Vahvista SSL" + +#: src/Module/Admin/Site.php:476 +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:477 +msgid "Proxy user" +msgstr "Välityspalvelimen käyttäjä" + +#: src/Module/Admin/Site.php:477 +msgid "User name for the proxy server." +msgstr "" + +#: src/Module/Admin/Site.php:478 +msgid "Proxy URL" +msgstr "Välityspalvelimen osoite" + +#: src/Module/Admin/Site.php:478 +msgid "" +"If you want to use a proxy server that Friendica should use to connect to " +"the network, put the URL of the proxy here." +msgstr "" + +#: src/Module/Admin/Site.php:479 +msgid "Network timeout" +msgstr "Verkon aikakatkaisu" + +#: src/Module/Admin/Site.php:479 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: src/Module/Admin/Site.php:480 +msgid "Maximum Load Average" +msgstr "Kuorman enimmäiskeksiarvo" + +#: src/Module/Admin/Site.php:480 +#, php-format +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default %d." +msgstr "" + +#: src/Module/Admin/Site.php:481 +msgid "Minimal Memory" +msgstr "" + +#: src/Module/Admin/Site.php:481 +msgid "" +"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "" + +#: src/Module/Admin/Site.php:482 +msgid "Periodically optimize tables" +msgstr "" + +#: src/Module/Admin/Site.php:482 +msgid "Periodically optimize tables like the cache and the workerqueue" +msgstr "" + +#: src/Module/Admin/Site.php:484 +msgid "Discover followers/followings from contacts" +msgstr "" + +#: src/Module/Admin/Site.php:484 +msgid "" +"If enabled, contacts are checked for their followers and following contacts." +msgstr "" + +#: src/Module/Admin/Site.php:485 +msgid "None - deactivated" +msgstr "" + +#: src/Module/Admin/Site.php:486 +msgid "" +"Local contacts - contacts of our local contacts are discovered for their " +"followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:487 +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:489 +msgid "Synchronize the contacts with the directory server" +msgstr "" + +#: src/Module/Admin/Site.php:489 +msgid "" +"if enabled, the system will check periodically for new contacts on the " +"defined directory server." +msgstr "" + +#: src/Module/Admin/Site.php:491 +msgid "Days between requery" +msgstr "" + +#: src/Module/Admin/Site.php:491 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: src/Module/Admin/Site.php:492 +msgid "Discover contacts from other servers" +msgstr "Etsi kontakteja muilta palvelimilta" + +#: src/Module/Admin/Site.php:492 +msgid "" +"Periodically query other servers for contacts. The system queries Friendica," +" Mastodon and Hubzilla servers." +msgstr "" + +#: src/Module/Admin/Site.php:493 +msgid "Search the local directory" +msgstr "Paikallisluettelohaku" + +#: src/Module/Admin/Site.php:493 +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:495 +msgid "Publish server information" +msgstr "Julkaise palvelintiedot" + +#: src/Module/Admin/Site.php:495 +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 "" + +#: src/Module/Admin/Site.php:497 +msgid "Check upstream version" +msgstr "" + +#: src/Module/Admin/Site.php:497 +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:498 +msgid "Suppress Tags" +msgstr "Piilota tunnisteet" + +#: src/Module/Admin/Site.php:498 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Piilota tunnistelista julkaisun lopussa." + +#: src/Module/Admin/Site.php:499 +msgid "Clean database" +msgstr "Siivoa tietokanta" + +#: src/Module/Admin/Site.php:499 +msgid "" +"Remove old remote items, orphaned database records and old content from some" +" other helper tables." +msgstr "" + +#: src/Module/Admin/Site.php:500 +msgid "Lifespan of remote items" +msgstr "" + +#: src/Module/Admin/Site.php:500 +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:501 +msgid "Lifespan of unclaimed items" +msgstr "" + +#: src/Module/Admin/Site.php:501 +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 "" + +#: src/Module/Admin/Site.php:502 +msgid "Lifespan of raw conversation data" +msgstr "" + +#: src/Module/Admin/Site.php:502 +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:503 +msgid "Maximum numbers of comments per post" +msgstr "Julkaisun kommentiraja" + +#: src/Module/Admin/Site.php:503 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: src/Module/Admin/Site.php:504 +msgid "Maximum numbers of comments per post on the display page" +msgstr "" + +#: src/Module/Admin/Site.php:504 +msgid "" +"How many comments should be shown on the single view for each post? Default " +"value is 1000." +msgstr "" + +#: src/Module/Admin/Site.php:505 +msgid "Temp path" +msgstr "Väliaikaistiedostojen polku" + +#: src/Module/Admin/Site.php:505 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Mikäli verkkopalvelimesi ei voi käyttää järjestelmän väliaikaistiedostojen polkua, syötä toinen polku tähän." + +#: src/Module/Admin/Site.php:506 +msgid "Only search in tags" +msgstr "Tunnistehaku" + +#: src/Module/Admin/Site.php:506 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "" + +#: src/Module/Admin/Site.php:507 +msgid "" +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "" + +#: src/Module/Admin/Site.php:509 +msgid "Maximum number of parallel workers" +msgstr "Enimmäismäärä rinnakkaisia workereitä" + +#: src/Module/Admin/Site.php:509 +#, 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:510 +msgid "Enable fastlane" +msgstr "Käytä fastlane" + +#: src/Module/Admin/Site.php:510 +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:512 +msgid "Direct relay transfer" +msgstr "Suora releen siirto" + +#: src/Module/Admin/Site.php:512 +msgid "" +"Enables the direct transfer to other servers without using the relay servers" +msgstr "" + +#: src/Module/Admin/Site.php:513 +msgid "Relay scope" +msgstr "Relen soveltamisala" + +#: src/Module/Admin/Site.php:513 +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:513 src/Module/Contact/Profile.php:286 +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Disabled" +msgstr "Pois käytöstä" + +#: src/Module/Admin/Site.php:513 +msgid "all" +msgstr "kaikki" + +#: src/Module/Admin/Site.php:513 +msgid "tags" +msgstr "tunnisteet" + +#: src/Module/Admin/Site.php:514 +msgid "Server tags" +msgstr "palvelintunnisteet" + +#: src/Module/Admin/Site.php:514 +msgid "Comma separated list of tags for the \"tags\" subscription." +msgstr "" + +#: src/Module/Admin/Site.php:515 +msgid "Deny Server tags" +msgstr "" + +#: src/Module/Admin/Site.php:515 +msgid "Comma separated list of tags that are rejected." +msgstr "" + +#: src/Module/Admin/Site.php:516 +msgid "Allow user tags" +msgstr "Salli käyttäjien tunnisteet" + +#: src/Module/Admin/Site.php:516 +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:519 +msgid "Start Relocation" +msgstr "" + +#: src/Module/Admin/Storage.php:46 +#, php-format +msgid "Storage backend, %s is invalid." +msgstr "" + +#: src/Module/Admin/Storage.php:73 +#, php-format +msgid "Storage backend %s error: %s" +msgstr "" + +#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +msgid "Invalid storage backend setting value." +msgstr "" + +#: src/Module/Admin/Storage.php:139 +msgid "Current Storage Backend" +msgstr "" + +#: src/Module/Admin/Storage.php:140 +msgid "Storage Configuration" +msgstr "" + +#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +msgid "Storage" +msgstr "" + +#: src/Module/Admin/Storage.php:143 +msgid "Save & Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:144 +msgid "Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:145 +msgid "Save & Reload" +msgstr "" + +#: src/Module/Admin/Storage.php:146 +msgid "This backend doesn't have custom settings" +msgstr "" + +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "" + +#: src/Module/Admin/Storage.php:150 +msgid "Database (legacy)" +msgstr "" + +#: src/Module/Admin/Summary.php:55 +#, php-format +msgid "Template engine (%s) error: %s" +msgstr "" + +#: src/Module/Admin/Summary.php:59 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"bin/console.php dbstructure toinnodb of your Friendica installation for" +" an automatic conversion.
    " +msgstr "" + +#: src/Module/Admin/Summary.php:64 +#, php-format +msgid "" +"Your DB still runs with InnoDB tables in the Antelope file format. You " +"should change the file format to Barracuda. Friendica is using features that" +" are not provided by the Antelope format. See here for a " +"guide that may be helpful converting the table engines. You may also use the" +" command php bin/console.php dbstructure toinnodb of your Friendica" +" installation for an automatic conversion.
    " +msgstr "" + +#: src/Module/Admin/Summary.php:74 +#, php-format +msgid "" +"Your table_definition_cache is too low (%d). This can lead to the database " +"error \"Prepared statement needs to be re-prepared\". Please set it at least" +" to %d. See here for more information.
    " +msgstr "" + +#: src/Module/Admin/Summary.php:85 +#, php-format +msgid "" +"There is a new version of Friendica available for download. Your current " +"version is %1$s, upstream version is %2$s" +msgstr "" + +#: src/Module/Admin/Summary.php:94 +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 "Tietokannan päivitys epäonnistui. Suorita komento \"php bin/console.php dbstructure update\" komentoriviltä ja lue mahdolliset virheviestit." + +#: src/Module/Admin/Summary.php:98 +msgid "" +"The last update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear. (Some of the errors are possibly inside the logfile.)" +msgstr "" + +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "" + +#: src/Module/Admin/Summary.php:107 +msgid "The worker was never executed. Please check your database structure!" +msgstr "Workeriä ei ole otettu käyttöön. Tarkista tietokantasi rakenne!" + +#: src/Module/Admin/Summary.php:109 +#, php-format +msgid "" +"The last worker execution was on %s UTC. This is older than one hour. Please" +" check your crontab settings." +msgstr "Viimeisin worker -käynnistys tapahtui klo %s UTC, eli yli tunti sitten. Tarkista crontab -asetukset." + +#: src/Module/Admin/Summary.php:114 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +".htconfig.php. See the Config help page for " +"help with the transition." +msgstr "" + +#: src/Module/Admin/Summary.php:118 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +"config/local.ini.php. See the Config help " +"page for help with the transition." +msgstr "" + +#: src/Module/Admin/Summary.php:124 +#, php-format +msgid "" +"%s is not reachable on your system. This is a severe " +"configuration issue that prevents server to server communication. See the installation page for help." +msgstr "" + +#: src/Module/Admin/Summary.php:142 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Module/Admin/Summary.php:156 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Module/Admin/Summary.php:172 +#, php-format +msgid "" +"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" +" system.basepath from your db to avoid differences." +msgstr "" + +#: src/Module/Admin/Summary.php:180 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is wrong and the config file '%s' " +"isn't used." +msgstr "" + +#: src/Module/Admin/Summary.php:188 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is not equal to the config file " +"'%s'. Please fix your configuration." +msgstr "" + +#: src/Module/Admin/Summary.php:199 +msgid "Message queues" +msgstr "Viestijonot" + +#: src/Module/Admin/Summary.php:205 +msgid "Server Settings" +msgstr "" + +#: src/Module/Admin/Summary.php:223 +msgid "Version" +msgstr "Versio" + +#: src/Module/Admin/Summary.php:227 +msgid "Active addons" +msgstr "Käytössäolevat lisäosat" + +#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 +#, php-format +msgid "Theme %s disabled." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 +#, php-format +msgid "Theme %s successfully enabled." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 +#, php-format +msgid "Theme %s failed to install." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:83 +msgid "Screenshot" +msgstr "Kuvakaappaus" + +#: src/Module/Admin/Themes/Details.php:91 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 +msgid "Themes" +msgstr "Teemat" + +#: src/Module/Admin/Themes/Embed.php:80 +msgid "Unknown theme." +msgstr "" + +#: src/Module/Admin/Themes/Index.php:51 +msgid "Themes reloaded" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:114 +msgid "Reload active themes" +msgstr "Lataa aktiiviset teemat uudelleen" + +#: src/Module/Admin/Themes/Index.php:118 +#, php-format +msgid "No themes found on the system. They should be placed in %1$s" +msgstr "Teemoja ei löytynyt järjestelmästä. Teemat tulisi laittaa kansioon %1$s" + +#: src/Module/Admin/Themes/Index.php:119 +msgid "[Experimental]" +msgstr "[Kokeellinen]" + +#: src/Module/Admin/Themes/Index.php:120 +msgid "[Unsupported]" +msgstr "[Ei tueta]" + +#: src/Module/Admin/Tos.php:79 +msgid "Display Terms of Service" +msgstr "Näytä käyttöehdot" + +#: src/Module/Admin/Tos.php:79 +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 "" + +#: src/Module/Admin/Tos.php:80 +msgid "Display Privacy Statement" +msgstr "Näytä tietosuojalausunto" + +#: src/Module/Admin/Tos.php:80 +#, php-format +msgid "" +"Show some informations regarding the needed information to operate the node " +"according e.g. to EU-GDPR." +msgstr "" + +#: src/Module/Admin/Tos.php:81 +msgid "Privacy Statement Preview" +msgstr "" + +#: src/Module/Admin/Tos.php:83 +msgid "The Terms of Service" +msgstr "Käyttöehdot" + +#: src/Module/Admin/Tos.php:83 +msgid "" +"Enter the Terms of Service for your node here. You can use BBCode. Headers " +"of sections should be [h2] and below." +msgstr "" + +#: src/Module/Admin/Tos.php:84 +msgid "The rules" +msgstr "" + +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." +msgstr "" + +#: src/Module/Api/ApiResponse.php:279 +#, php-format +msgid "API endpoint %s %s is not implemented but might be in the future." +msgstr "" + +#: src/Module/Api/Mastodon/Apps.php:73 +msgid "Missing parameters" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:51 +msgid "Only starting posts can be bookmarked" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +msgid "Only starting posts can be muted" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Reblog.php:56 +#, php-format +msgid "Posts from %s can't be shared" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +msgid "Only starting posts can be unbookmarked" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +msgid "Only starting posts can be unmuted" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:62 +#, php-format +msgid "Posts from %s can't be unshared" +msgstr "" + +#: src/Module/Api/Twitter/ContactEndpoint.php:66 +msgid "Contact not found" +msgstr "" + +#: src/Module/Apps.php:62 +msgid "No installed applications." +msgstr "Ei asennettuja sovelluksia." + +#: src/Module/Apps.php:67 +msgid "Applications" +msgstr "Sovellukset" + +#: src/Module/Attach.php:49 src/Module/Attach.php:61 +msgid "Item was not found." +msgstr "Kohdetta ei löytynyt." + +#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +msgid "Please login to continue." +msgstr "Ole hyvä ja kirjaudu jatkaaksesi." + +#: src/Module/BaseAdmin.php:63 src/Module/BaseModeration.php:86 +msgid "You don't have access to administration pages." +msgstr "" + +#: src/Module/BaseAdmin.php:67 src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the administration pages. Please log back in" +" as the main account." +msgstr "" + +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +msgid "Overview" +msgstr "Yleiskatsaus" + +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:111 +msgid "Configuration" +msgstr "Kokoonpano" + +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:112 +msgid "Additional features" +msgstr "Lisäominaisuuksia" + +#: src/Module/BaseAdmin.php:97 +msgid "Database" +msgstr "Tietokanta" + +#: src/Module/BaseAdmin.php:98 +msgid "DB updates" +msgstr "Tietokannan päivitykset" + +#: src/Module/BaseAdmin.php:99 +msgid "Inspect Deferred Workers" +msgstr "" + +#: src/Module/BaseAdmin.php:100 +msgid "Inspect worker Queue" +msgstr "" + +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:119 +msgid "Diagnostics" +msgstr "Diagnostiikka" + +#: src/Module/BaseAdmin.php:107 +msgid "PHP Info" +msgstr "PHP tietoja" + +#: src/Module/BaseAdmin.php:108 +msgid "probe address" +msgstr "" + +#: src/Module/BaseAdmin.php:109 +msgid "check webfinger" +msgstr "Tarkista webfinger" + +#: src/Module/BaseAdmin.php:110 +msgid "Babel" +msgstr "" + +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 +msgid "ActivityPub Conversion" +msgstr "" + +#: src/Module/BaseAdmin.php:120 +msgid "Addon Features" +msgstr "Lisäosaominaisuudet" + +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:128 +msgid "User registrations waiting for confirmation" +msgstr "Käyttäjärekisteröinnit odottavat hyväksyntää" + +#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467 +#: src/Module/BaseApi.php:483 +msgid "Too Many Requests" +msgstr "" + +#: src/Module/BaseApi.php:452 +#, 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] "Päivittäinen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty." +msgstr[1] "Päivittäinen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty." + +#: src/Module/BaseApi.php:468 +#, 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] "Viikottainen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty." +msgstr[1] "Viikottainen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty." + +#: src/Module/BaseApi.php:484 +#, php-format +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Monthly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseModeration.php:112 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Käyttäjät" + +#: src/Module/BaseModeration.php:114 +msgid "Tools" +msgstr "Työkalut" + +#: src/Module/BaseModeration.php:115 +msgid "Contact Blocklist" +msgstr "Kontaktien estolista" + +#: src/Module/BaseModeration.php:116 +msgid "Server Blocklist" +msgstr "Palvelimien estolista" + +#: src/Module/BaseModeration.php:117 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "Poista kohde" + +#: src/Module/BaseModeration.php:120 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:487 +msgid "Profile Details" +msgstr "Profiilitiedot" + +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "" + +#: src/Module/BaseProfile.php:111 +msgid "Only You Can See This" +msgstr "Vain sinä näet tämän" + +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +msgid "Scheduled Posts" +msgstr "" + +#: src/Module/BaseProfile.php:119 +msgid "Posts that are scheduled for publishing" +msgstr "" + +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +msgid "Tips for New Members" +msgstr "Vinkkejä uusille käyttäjille" + +#: src/Module/BaseSearch.php:71 +#, php-format +msgid "People Search - %s" +msgstr "Käyttäjähaku - %s" + +#: src/Module/BaseSearch.php:75 +#, php-format +msgid "Group Search - %s" +msgstr "" + +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "Ei täsmääviä profiileja" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseSettings.php:80 +msgid "Account" +msgstr "Tili" + +#: src/Module/BaseSettings.php:87 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 +msgid "Two-factor authentication" +msgstr "" + +#: src/Module/BaseSettings.php:120 +msgid "Display" +msgstr "Ulkonäkö" + +#: src/Module/BaseSettings.php:127 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "Sosiaalinen media" + +#: src/Module/BaseSettings.php:141 src/Module/Settings/Delegation.php:172 +msgid "Manage Accounts" +msgstr "" + +#: src/Module/BaseSettings.php:148 +msgid "Connected apps" +msgstr "Yhdistetyt sovellukset" + +#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:98 +msgid "Export personal data" +msgstr "Vie henkilökohtaiset tiedot" + +#: src/Module/BaseSettings.php:162 +msgid "Remove account" +msgstr "Poista tili" + +#: src/Module/Bookmarklet.php:54 +msgid "This page is missing a url parameter." +msgstr "" + +#: src/Module/Bookmarklet.php:66 +msgid "The post was created" +msgstr "Julkaisu luotu" + +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "" + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "Tapahtuman poisto epäonnistui" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "Tapahtuma ei voi päättyä ennen kuin on alkanut." + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "Tapahtuman nimi ja alkamisaika vaaditaan." + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "Aloituspvm ja otsikko vaaditaan." + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "Tapahtuma alkaa:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Vaaditaan" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "Päättymispvm ja kellonaika ei ole tiedossa tai niillä ei ole merkitystä" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "Tapahtuma päättyy:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Jaa tämä tapahtuma" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "Tätä kalenteriformaattia ei tueta" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "Vientikelpoista dataa ei löytynyt" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "kalenteri" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Tapahtumat" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "Katso" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Luo uusi tapahtuma" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:235 +msgid "list" +msgstr "luettelo" + +#: src/Module/Circle.php:56 +msgid "Could not create circle." +msgstr "" + +#: src/Module/Circle.php:67 src/Module/Circle.php:215 +#: src/Module/Circle.php:239 +msgid "Circle not found." +msgstr "" + +#: src/Module/Circle.php:73 +msgid "Circle name was not changed." +msgstr "" + +#: src/Module/Circle.php:91 +msgid "Unknown circle." +msgstr "" + +#: src/Module/Circle.php:97 src/Module/Circle.php:106 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:142 +#: src/Module/Contact/Profile.php:147 src/Module/Contact/Profile.php:152 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "Kontaktia ei ole." + +#: src/Module/Circle.php:101 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:189 +msgid "Invalid contact." +msgstr "Virheellinen kontakti." + +#: src/Module/Circle.php:110 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "" + +#: src/Module/Circle.php:116 +msgid "Unable to add the contact to the circle." +msgstr "" + +#: src/Module/Circle.php:119 +msgid "Contact successfully added to circle." +msgstr "" + +#: src/Module/Circle.php:123 +msgid "Unable to remove the contact from the circle." +msgstr "" + +#: src/Module/Circle.php:126 +msgid "Contact successfully removed from circle." +msgstr "" + +#: src/Module/Circle.php:130 +msgid "Bad request." +msgstr "" + +#: src/Module/Circle.php:171 +msgid "Save Circle" +msgstr "" + +#: src/Module/Circle.php:172 +msgid "Filter" +msgstr "" + +#: src/Module/Circle.php:178 +msgid "Create a circle of contacts/friends." +msgstr "" + +#: src/Module/Circle.php:220 +msgid "Unable to remove circle." +msgstr "" + +#: src/Module/Circle.php:271 +msgid "Delete Circle" +msgstr "" + +#: src/Module/Circle.php:281 +msgid "Edit Circle Name" +msgstr "" + +#: src/Module/Circle.php:291 +msgid "Members" +msgstr "Jäsenet" + +#: src/Module/Circle.php:294 +msgid "Circle is empty" +msgstr "" + +#: src/Module/Circle.php:307 +msgid "Remove contact from circle" +msgstr "" + +#: src/Module/Circle.php:328 +msgid "Click on a contact to add or remove." +msgstr "Valitse kontakti, jota haluat poistaa tai lisätä." + +#: src/Module/Circle.php:342 +msgid "Add contact to circle" +msgstr "" + +#: src/Module/Contact.php:97 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "%d kontakti muokattu" +msgstr[1] "%d kontakteja muokattu" + +#: src/Module/Contact.php:349 +msgid "Show all contacts" +msgstr "Näytä kaikki yhteystiedot" + +#: src/Module/Contact.php:354 src/Module/Contact.php:423 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "" + +#: src/Module/Contact.php:357 +msgid "Only show pending contacts" +msgstr "" + +#: src/Module/Contact.php:362 src/Module/Contact.php:424 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Estetty" + +#: src/Module/Contact.php:365 +msgid "Only show blocked contacts" +msgstr "Näytä vain estetyt henkilöt" + +#: src/Module/Contact.php:370 src/Module/Contact.php:426 +#: src/Object/Post.php:351 +msgid "Ignored" +msgstr "Jätetty huomiotta" + +#: src/Module/Contact.php:373 +msgid "Only show ignored contacts" +msgstr "Näytä vain henkilöt, jotka jätetty huomiotta" + +#: src/Module/Contact.php:378 src/Module/Contact.php:427 +msgid "Collapsed" +msgstr "" + +#: src/Module/Contact.php:381 +msgid "Only show collapsed contacts" +msgstr "" + +#: src/Module/Contact.php:386 src/Module/Contact.php:428 +msgid "Archived" +msgstr "Arkistoitu" + +#: src/Module/Contact.php:389 +msgid "Only show archived contacts" +msgstr "Näytä vain arkistoidut henkilöt" + +#: src/Module/Contact.php:394 src/Module/Contact.php:425 +msgid "Hidden" +msgstr "Piilotettu" + +#: src/Module/Contact.php:397 +msgid "Only show hidden contacts" +msgstr "Näytä vain piilotetut henkilöt" + +#: src/Module/Contact.php:405 +msgid "Organize your contact circles" +msgstr "" + +#: src/Module/Contact.php:439 +msgid "Search your contacts" +msgstr "Etsi henkilöitä" + +#: src/Module/Contact.php:440 src/Module/Search/Index.php:207 +#, php-format +msgid "Results for: %s" +msgstr "Tulokset haulla: %s" + +#: src/Module/Contact.php:447 +msgid "Update" +msgstr "Päivitä" + +#: src/Module/Contact.php:448 src/Module/Contact/Profile.php:477 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Salli" + +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:485 +msgid "Unignore" +msgstr "Ota huomioon" + +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:493 +msgid "Uncollapse" +msgstr "" + +#: src/Module/Contact.php:452 +msgid "Batch Actions" +msgstr "" + +#: src/Module/Contact.php:495 +msgid "Conversations started by this contact" +msgstr "" + +#: src/Module/Contact.php:500 +msgid "Posts and Comments" +msgstr "" + +#: src/Module/Contact.php:503 +msgid "Individual Posts and Replies" +msgstr "" + +#: src/Module/Contact.php:511 +msgid "Posts containing media objects" +msgstr "" + +#: src/Module/Contact.php:518 +msgid "View all known contacts" +msgstr "" + +#: src/Module/Contact.php:528 +msgid "Advanced Contact Settings" +msgstr "Kontakti-lisäasetukset" + +#: src/Module/Contact.php:564 +msgid "Mutual Friendship" +msgstr "Yhteinen kaveruus" + +#: src/Module/Contact.php:568 +msgid "is a fan of yours" +msgstr "on fanisi" + +#: src/Module/Contact.php:572 +msgid "you are a fan of" +msgstr "fanitat" + +#: src/Module/Contact.php:590 +msgid "Pending outgoing contact request" +msgstr "" + +#: src/Module/Contact.php:592 +msgid "Pending incoming contact request" +msgstr "" + +#: src/Module/Contact.php:605 src/Module/Contact/Profile.php:346 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Näytä %s-käyttäjän profiili [%s]" + +#: src/Module/Contact/Advanced.php:99 +msgid "Contact update failed." +msgstr "Kontaktipäivitys epäonnistui." + +#: src/Module/Contact/Advanced.php:130 +msgid "Return to contact editor" +msgstr "Palaa kontaktin muokkaamiseen" + +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Nimi" + +#: src/Module/Contact/Advanced.php:135 +msgid "Account Nickname" +msgstr "Tilin lempinimi" + +#: src/Module/Contact/Advanced.php:136 +msgid "Account URL" +msgstr "Tilin URL-osoite" + +#: src/Module/Contact/Advanced.php:137 +msgid "Poll/Feed URL" +msgstr "URL äänestyksiä/syötteitä varten" + +#: src/Module/Contact/Advanced.php:138 +msgid "New photo from this URL" +msgstr "Uusi kuva osoitteesta" + +#: src/Module/Contact/Contacts.php:89 +msgid "No known contacts." +msgstr "" + +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +msgid "No common contacts." +msgstr "" + +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#, php-format +msgid "Follower (%s)" +msgid_plural "Followers (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#, php-format +msgid "Following (%s)" +msgid_plural "Following (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#, php-format +msgid "Mutual friend (%s)" +msgid_plural "Mutual friends (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#, php-format +msgid "These contacts both follow and are followed by %s." +msgstr "" + +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#, php-format +msgid "Common contact (%s)" +msgid_plural "Common contacts (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#, php-format +msgid "" +"Both %s and yourself have publicly interacted with these " +"contacts (follow, comment or likes on public posts)." +msgstr "" + +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#, php-format +msgid "Contact (%s)" +msgid_plural "Contacts (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:194 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Käyttö estetty." + +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Lähetä pyyntö" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "Olet jo lisännyt tämän kontaktin." + +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Verkkotyyppiä ei voitu havaita. Kontaktia ei voitu lisätä." + +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Diaspora -tuki ei ole käytössä. Kontaktia ei voi lisätä." + +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "OStatus -tuki ei ole käytössä. Kontaktia ei voi lisätä." + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Vastaa seuraavaan:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "Identiteettisi osoite:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:375 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "Profiilin URL" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:387 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Tunnisteet:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Lisää oma merkintä:" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" +msgstr "" + +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "Kontaktia ei voitu lisätä." + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "Virheellinen pyyntö." + +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "" + +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "Vastaavien profiilien haku" + +#: src/Module/Contact/Profile.php:128 +msgid "Failed to update contact record." +msgstr "Kontaktitietojen päivitys epäonnistui." + +#: src/Module/Contact/Profile.php:178 +msgid "Contact has been unblocked" +msgstr "Henkilö on jälleen sallittu" + +#: src/Module/Contact/Profile.php:182 +msgid "Contact has been blocked" +msgstr "Henkilö on estetty" + +#: src/Module/Contact/Profile.php:194 +msgid "Contact has been unignored" +msgstr "Henkilö on jälleen huomioituna." + +#: src/Module/Contact/Profile.php:198 +msgid "Contact has been ignored" +msgstr "Henkilöä ei enää huomioida" + +#: src/Module/Contact/Profile.php:210 +msgid "Contact has been uncollapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:214 +msgid "Contact has been collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:242 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Olet kaveri %s kanssa." + +#: src/Module/Contact/Profile.php:243 +#, php-format +msgid "You are sharing with %s" +msgstr "Olet jakanut jotakin %s:n kanssa" + +#: src/Module/Contact/Profile.php:244 +#, php-format +msgid "%s is sharing with you" +msgstr "%s jakaa sinulle jotakin." + +#: src/Module/Contact/Profile.php:260 +msgid "Private communications are not available for this contact." +msgstr "Yksityiskeskustelu ei ole käytettävissä tälle henkilölle." + +#: src/Module/Contact/Profile.php:262 +msgid "Never" +msgstr "Ei koskaan" + +#: src/Module/Contact/Profile.php:265 +msgid "(Update was not successful)" +msgstr "(Päivitys epäonnistui)" + +#: src/Module/Contact/Profile.php:265 +msgid "(Update was successful)" +msgstr "(Päivitys onnistui)" + +#: src/Module/Contact/Profile.php:267 src/Module/Contact/Profile.php:448 +msgid "Suggest friends" +msgstr "Ehdota ystäviä" + +#: src/Module/Contact/Profile.php:271 +#, php-format +msgid "Network type: %s" +msgstr "Verkkotyyppi: %s" + +#: src/Module/Contact/Profile.php:276 +msgid "Communications lost with this contact!" +msgstr "Yhteys tähän henkilöön menetettiin!" + +#: src/Module/Contact/Profile.php:282 +msgid "Fetch further information for feeds" +msgstr "" + +#: src/Module/Contact/Profile.php:284 +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 "" + +#: src/Module/Contact/Profile.php:287 +msgid "Fetch information" +msgstr "Nouda tiedot" + +#: src/Module/Contact/Profile.php:288 +msgid "Fetch keywords" +msgstr "Nouda avainsanat" + +#: src/Module/Contact/Profile.php:289 +msgid "Fetch information and keywords" +msgstr "Nouda tiedot ja avainsanat" + +#: src/Module/Contact/Profile.php:299 src/Module/Contact/Profile.php:304 +#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:315 +msgid "No mirroring" +msgstr "Ei peilausta" + +#: src/Module/Contact/Profile.php:300 src/Module/Contact/Profile.php:310 +#: src/Module/Contact/Profile.php:316 +msgid "Mirror as my own posting" +msgstr "Peilaa omana julkaisuna" + +#: src/Module/Contact/Profile.php:305 src/Module/Contact/Profile.php:311 +msgid "Native reshare" +msgstr "" + +#: src/Module/Contact/Profile.php:328 +msgid "Contact Information / Notes" +msgstr "Yhteystiedot / Muistiinpanot" + +#: src/Module/Contact/Profile.php:329 +msgid "Contact Settings" +msgstr "Yhteystietoasetukset" + +#: src/Module/Contact/Profile.php:337 +msgid "Contact" +msgstr "Kontakti" + +#: src/Module/Contact/Profile.php:341 +msgid "Their personal note" +msgstr "" + +#: src/Module/Contact/Profile.php:343 +msgid "Edit contact notes" +msgstr "Muokkaa yhteystietojen muistiinpanoja" + +#: src/Module/Contact/Profile.php:347 +msgid "Block/Unblock contact" +msgstr "Estä/salli henkilö" + +#: src/Module/Contact/Profile.php:348 +msgid "Ignore contact" +msgstr "Jätä henkilö huomiotta" + +#: src/Module/Contact/Profile.php:349 +msgid "View conversations" +msgstr "Katso keskusteluja" + +#: src/Module/Contact/Profile.php:354 +msgid "Last update:" +msgstr "Viimeksi päivitetty:" + +#: src/Module/Contact/Profile.php:356 +msgid "Update public posts" +msgstr "Päivitä julkiset postaukset" + +#: src/Module/Contact/Profile.php:358 src/Module/Contact/Profile.php:458 +msgid "Update now" +msgstr "Päivitä nyt" + +#: src/Module/Contact/Profile.php:360 +msgid "Awaiting connection acknowledge" +msgstr "Odotetaan yhteyden kuittausta" + +#: src/Module/Contact/Profile.php:361 +msgid "Currently blocked" +msgstr "Estetty tällä hetkellä" + +#: src/Module/Contact/Profile.php:362 +msgid "Currently ignored" +msgstr "Jätetty huomiotta tällä hetkellä" + +#: src/Module/Contact/Profile.php:363 +msgid "Currently collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:364 +msgid "Currently archived" +msgstr "Arkistoitu tällä hetkellä" + +#: src/Module/Contact/Profile.php:367 +#: src/Module/Notifications/Introductions.php:192 +msgid "Hide this contact from others" +msgstr "Piilota kontakti muilta" + +#: src/Module/Contact/Profile.php:367 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "" + +#: src/Module/Contact/Profile.php:368 +msgid "Notification for new posts" +msgstr "Uusien postausten ilmoitus" + +#: src/Module/Contact/Profile.php:368 +msgid "Send a notification of every new post of this contact" +msgstr "Lähetä ilmoitus tälle henkilölle kaikista uusista postauksista" + +#: src/Module/Contact/Profile.php:370 +msgid "Keyword Deny List" +msgstr "" + +#: src/Module/Contact/Profile.php:370 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" + +#: src/Module/Contact/Profile.php:388 +#: src/Module/Settings/TwoFactor/Index.php:139 +msgid "Actions" +msgstr "Toimenpiteet" + +#: src/Module/Contact/Profile.php:390 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "Tila" + +#: src/Module/Contact/Profile.php:396 +msgid "Mirror postings from this contact" +msgstr "Peilaa tämän kontaktin julkaisut" + +#: src/Module/Contact/Profile.php:398 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: src/Module/Contact/Profile.php:468 +msgid "Refetch contact data" +msgstr "" + +#: src/Module/Contact/Profile.php:479 +msgid "Toggle Blocked status" +msgstr "Estetty tila päälle/pois" + +#: src/Module/Contact/Profile.php:487 +msgid "Toggle Ignored status" +msgstr "Sivuuta/seuraa" + +#: src/Module/Contact/Profile.php:495 +msgid "Toggle Collapsed status" +msgstr "" + +#: src/Module/Contact/Profile.php:502 src/Module/Contact/Revoke.php:106 +msgid "Revoke Follow" +msgstr "" + +#: src/Module/Contact/Profile.php:504 +msgid "Revoke the follow from this contact" +msgstr "" + +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "" + +#: src/Module/Contact/Revoke.php:63 +msgid "Unknown contact." +msgstr "" + +#: src/Module/Contact/Revoke.php:77 +msgid "Contact is being deleted." +msgstr "" + +#: src/Module/Contact/Revoke.php:91 +msgid "Follow was successfully revoked." +msgstr "" + +#: src/Module/Contact/Revoke.php:107 +msgid "" +"Do you really want to revoke this contact's follow? This cannot be undone " +"and they will have to manually follow you back again." +msgstr "" + +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "Yes" +msgstr "Kyllä" + +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Ehdotuksia ei löydy. Jos tämä on uusi sivusto, kokeile uudelleen vuorokauden kuluttua." + +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "" + +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "Seuraamisen lopettaminen ei tällä hetkellä tueta verkossasi." + +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "Katkaise / Lopeta seuraaminen" + +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "" + +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "" + +#: src/Module/Conversation/Community.php:74 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "" + +#: src/Module/Conversation/Community.php:87 +msgid "Local Community" +msgstr "Paikallinen yhteisö" + +#: src/Module/Conversation/Community.php:90 +msgid "Posts from local users on this server" +msgstr "Tämän palvelimen julkaisut" + +#: src/Module/Conversation/Community.php:98 +msgid "Global Community" +msgstr "Maailmanlaajuinen yhteisö" + +#: src/Module/Conversation/Community.php:101 +msgid "Posts from users of the whole federated network" +msgstr "Maailmanlaajuisen verkon julkaisut" + +#: src/Module/Conversation/Community.php:134 +msgid "Own Contacts" +msgstr "" + +#: src/Module/Conversation/Community.php:138 +msgid "Include" +msgstr "" + +#: src/Module/Conversation/Community.php:139 +msgid "Hide" +msgstr "" + +#: src/Module/Conversation/Community.php:156 src/Module/Search/Index.php:152 +#: src/Module/Search/Index.php:194 +msgid "No results." +msgstr "Ei tuloksia." + +#: src/Module/Conversation/Community.php:212 +msgid "Community option not available." +msgstr "Yhteisö vaihtoehto ei saatavilla." + +#: src/Module/Conversation/Community.php:228 +msgid "Not available." +msgstr "Ei saatavilla." + +#: src/Module/Conversation/Network.php:175 +msgid "No such circle" +msgstr "" + +#: src/Module/Conversation/Network.php:179 +#, php-format +msgid "Circle: %s" +msgstr "" + +#: src/Module/Conversation/Network.php:257 +msgid "Latest Activity" +msgstr "" + +#: src/Module/Conversation/Network.php:260 +msgid "Sort by latest activity" +msgstr "" + +#: src/Module/Conversation/Network.php:265 +msgid "Latest Posts" +msgstr "" + +#: src/Module/Conversation/Network.php:268 +msgid "Sort by post received date" +msgstr "" + +#: src/Module/Conversation/Network.php:273 +msgid "Latest Creation" +msgstr "" + +#: src/Module/Conversation/Network.php:276 +msgid "Sort by post creation date" +msgstr "" + +#: src/Module/Conversation/Network.php:281 +#: src/Module/Settings/Profile/Index.php:235 +msgid "Personal" +msgstr "Henkilökohtainen" + +#: src/Module/Conversation/Network.php:284 +msgid "Posts that mention or involve you" +msgstr "Julkaisut jotka liittyvät sinuun" + +#: src/Module/Conversation/Network.php:289 src/Object/Post.php:363 +msgid "Starred" +msgstr "Tähtimerkitty" + +#: src/Module/Conversation/Network.php:292 +msgid "Favourite Posts" +msgstr "Lempijulkaisut" + +#: src/Module/Credits.php:44 +msgid "Credits" +msgstr "Lopputekstit" + +#: 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 "" + +#: src/Module/Debug/ActivityPubConversion.php:53 +msgid "Formatted" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:65 +msgid "Activity" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:117 +msgid "Object data" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:124 +msgid "Result Item" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Debug/ActivityPubConversion.php:138 +msgid "Source activity" +msgstr "" + +#: src/Module/Debug/Babel.php:51 +msgid "Source input" +msgstr "" + +#: 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 (raaka HTML)" + +#: src/Module/Debug/Babel.php:68 +msgid "BBCode::convert (hex)" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: src/Module/Debug/Babel.php:119 +msgid "Item Tags" +msgstr "" + +#: src/Module/Debug/Babel.php:125 +msgid "PageInfo::appendToBody" +msgstr "" + +#: src/Module/Debug/Babel.php:130 +msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:134 +msgid "PageInfo::appendToBody => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:141 +msgid "Source input (Diaspora format)" +msgstr "" + +#: src/Module/Debug/Babel.php:150 +msgid "Source input (Markdown)" +msgstr "" + +#: src/Module/Debug/Babel.php:156 +msgid "Markdown::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:161 +msgid "Markdown::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:167 +msgid "Markdown::toBBCode" +msgstr "Markdown::toBBCode" + +#: src/Module/Debug/Babel.php:174 +msgid "Raw HTML input" +msgstr "Raaka HTML-syöte" + +#: src/Module/Debug/Babel.php:179 +msgid "HTML Input" +msgstr "HTML-syöte" + +#: src/Module/Debug/Babel.php:186 +msgid "HTML Purified (raw)" +msgstr "" + +#: src/Module/Debug/Babel.php:191 +msgid "HTML Purified (hex)" +msgstr "" + +#: src/Module/Debug/Babel.php:196 +msgid "HTML Purified" +msgstr "" + +#: src/Module/Debug/Babel.php:202 +msgid "HTML::toBBCode" +msgstr "HTML::toBBCode" + +#: src/Module/Debug/Babel.php:208 +msgid "HTML::toBBCode => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:213 +msgid "HTML::toBBCode => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:219 +msgid "HTML::toBBCode => BBCode::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:225 +msgid "HTML::toMarkdown" +msgstr "" + +#: src/Module/Debug/Babel.php:231 +msgid "HTML::toPlaintext" +msgstr "HTML::toPlaintext" + +#: src/Module/Debug/Babel.php:237 +msgid "HTML::toPlaintext (compact)" +msgstr "" + +#: src/Module/Debug/Babel.php:255 +msgid "Decoded post" +msgstr "" + +#: src/Module/Debug/Babel.php:276 +msgid "Post array before expand entities" +msgstr "" + +#: src/Module/Debug/Babel.php:283 +msgid "Post converted" +msgstr "" + +#: src/Module/Debug/Babel.php:288 +msgid "Converted body" +msgstr "" + +#: src/Module/Debug/Babel.php:294 +msgid "Twitter addon is absent from the addon/ folder." +msgstr "" + +#: src/Module/Debug/Babel.php:304 +msgid "Babel Diagnostic" +msgstr "" + +#: src/Module/Debug/Babel.php:305 +msgid "Source text" +msgstr "Lähdeteksti" + +#: 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 "" + +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:144 +msgid "You must be logged in to use this module" +msgstr "Sinun pitää kirjautua sisään, jotta voit käyttää tätä moduulia" + +#: src/Module/Debug/Feed.php:77 +msgid "Source URL" +msgstr "Lähde URL" + +#: src/Module/Debug/Localtime.php:49 +msgid "Time Conversion" +msgstr "Aikamuunnos" + +#: src/Module/Debug/Localtime.php:50 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "" + +#: src/Module/Debug/Localtime.php:51 +#, php-format +msgid "UTC time: %s" +msgstr "UTC-aika: %s" + +#: src/Module/Debug/Localtime.php:54 +#, php-format +msgid "Current timezone: %s" +msgstr "Aikavyöhyke: %s" + +#: src/Module/Debug/Localtime.php:58 +#, php-format +msgid "Converted localtime: %s" +msgstr "Muunnettu paikallisaika: %s" + +#: src/Module/Debug/Localtime.php:62 +msgid "Please select your timezone:" +msgstr "Valitse aikavyöhykkeesi:" + +#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +msgid "Only logged in users are permitted to perform a probing." +msgstr "" + +#: src/Module/Debug/Probe.php:52 +msgid "Probe Diagnostic" +msgstr "" + +#: src/Module/Debug/Probe.php:53 +msgid "Output" +msgstr "" + +#: src/Module/Debug/Probe.php:56 +msgid "Lookup address" +msgstr "" + +#: src/Module/Debug/WebFinger.php:50 +msgid "Webfinger Diagnostic" +msgstr "" + +#: src/Module/Debug/WebFinger.php:52 +msgid "Lookup address:" +msgstr "" + +#: src/Module/Delegation.php:110 +#, php-format +msgid "You are now logged in as %s" +msgstr "" + +#: src/Module/Delegation.php:142 +msgid "Switch between your accounts" +msgstr "" + +#: src/Module/Delegation.php:143 +msgid "Manage your accounts" +msgstr "" + +#: src/Module/Delegation.php:144 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "" + +#: src/Module/Delegation.php:145 +msgid "Select an identity to manage: " +msgstr "Valitse identiteetti hallitavaksi:" + +#: src/Module/Directory.php:74 +msgid "No entries (some entries may be hidden)." +msgstr "" + +#: src/Module/Directory.php:90 +msgid "Find on this site" +msgstr "" + +#: src/Module/Directory.php:92 +msgid "Results for:" +msgstr "Tulokset haulla:" + +#: src/Module/Directory.php:94 +msgid "Site Directory" +msgstr "Sivuston luettelo" + +#: src/Module/Filer/RemoveTag.php:105 +msgid "Item was not deleted" +msgstr "" + +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "" + +#: src/Module/Filer/SaveTag.php:73 +msgid "- select -" +msgstr "- valitse -" + +#: src/Module/FriendSuggest.php:82 +msgid "Suggested contact not found." +msgstr "" + +#: src/Module/FriendSuggest.php:100 +msgid "Friend suggestion sent." +msgstr "Ystäväehdotus lähetettiin." + +#: src/Module/FriendSuggest.php:137 +msgid "Suggest Friends" +msgstr "Ehdota ystäviä" + +#: src/Module/FriendSuggest.php:140 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Ehdota ystävää ystävälle %s" + +#: src/Module/Friendica.php:64 +msgid "Installed addons/apps:" +msgstr "Asennettu lisäosat/sovellukset:" + +#: src/Module/Friendica.php:69 +msgid "No installed addons/apps" +msgstr "Ei asennettuja lisäosia/sovelluksia" + +#: src/Module/Friendica.php:74 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "Lue tämän solmun käyttöehdot." + +#: src/Module/Friendica.php:81 +msgid "On this server the following remote servers are blocked." +msgstr "Tällä palvelimella seuraavat etäpalvelimet ovat estetty." + +#: src/Module/Friendica.php:84 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +msgid "Reason for the block" +msgstr "Eston syy" + +#: src/Module/Friendica.php:86 +msgid "Download this list in CSV format" +msgstr "" + +#: src/Module/Friendica.php:100 +#, php-format +msgid "" +"This is Friendica, version %s that is running at the web location %s. The " +"database version is %s, the post update version is %s." +msgstr "" + +#: src/Module/Friendica.php:105 +msgid "" +"Please visit Friendi.ca to learn more " +"about the Friendica project." +msgstr "Vieraile osoitteessa Friendi.ca saadaksesi lisätietoja Friendica- projektista." + +#: src/Module/Friendica.php:106 +msgid "Bug reports and issues: please visit" +msgstr "Bugiraportit ja kysymykset: vieraile osoitteessa" + +#: src/Module/Friendica.php:106 +msgid "the bugtracker at github" +msgstr "githubin bugtrackeri" + +#: src/Module/Friendica.php:107 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +msgstr "Ehdotukset ja palaute: lähetä sähköposti osoitteeseen \"info\" at \"friendi - piste - ca" + +#: src/Module/HCard.php:45 +msgid "No profile" +msgstr "Ei profiilia" + +#: src/Module/HTTPException/MethodNotAllowed.php:31 +msgid "Method Not Allowed." +msgstr "" + +#: src/Module/Help.php:60 +msgid "Help:" +msgstr "Ohje:" + +#: src/Module/Home.php:63 +#, php-format +msgid "Welcome to %s" +msgstr "Tervetuloa %s" + +#: src/Module/Install.php:189 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: src/Module/Install.php:200 +msgid "System check" +msgstr "Järjestelmän tarkistus" + +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 +msgid "Requirement not satisfied" +msgstr "" + +#: src/Module/Install.php:203 +msgid "Optional requirement not satisfied" +msgstr "" + +#: src/Module/Install.php:204 +msgid "OK" +msgstr "" + +#: src/Module/Install.php:208 +msgid "Next" +msgstr "Seuraava" + +#: src/Module/Install.php:209 +msgid "Check again" +msgstr "Tarkista uudelleen" + +#: src/Module/Install.php:222 +msgid "Base settings" +msgstr "" + +#: src/Module/Install.php:224 +msgid "Base path to installation" +msgstr "Asennuksen peruspolku" + +#: src/Module/Install.php:226 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: src/Module/Install.php:229 +msgid "The Friendica system URL" +msgstr "" + +#: src/Module/Install.php:231 +msgid "" +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." +msgstr "" + +#: src/Module/Install.php:242 +msgid "Database connection" +msgstr "Tietokantayhteys" + +#: src/Module/Install.php:243 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Jotta voit asentaa Friendican, tarvitaan tieto siitä, miten tietokantaasi saa yhteyden." + +#: src/Module/Install.php:244 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Ota yhteyttä web-palveluntarjoajaasi tai sivuston ylläpitäjään, jos sinulla on näihin asetuksiin liittyviä kysymyksiä." + +#: src/Module/Install.php:245 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Alla määritetyn tietokannan tulisi olla jo olemassa. Jos se ei ole, luo se ennen kuin jatkat." + +#: src/Module/Install.php:252 +msgid "Database Server Name" +msgstr "Tietokannan palvelimen nimi" + +#: src/Module/Install.php:257 +msgid "Database Login Name" +msgstr "Tietokannan käyttäjän nimi" + +#: src/Module/Install.php:263 +msgid "Database Login Password" +msgstr "Tietokannan käyttäjän salasana" + +#: src/Module/Install.php:265 +msgid "For security reasons the password must not be empty" +msgstr "Turvallisuussyistä salasanakenttä ei saa olla tyhjä" + +#: src/Module/Install.php:268 +msgid "Database Name" +msgstr "Tietokannan nimi" + +#: src/Module/Install.php:272 src/Module/Install.php:300 +msgid "Please select a default timezone for your website" +msgstr "Valitse oletusaikavyöhyke sivustollesi" + +#: src/Module/Install.php:287 +msgid "Site settings" +msgstr "Sivuston asetukset" + +#: src/Module/Install.php:295 +msgid "Site administrator email address" +msgstr "Sivuston ylläpitäjän sähköpostiosoite" + +#: src/Module/Install.php:297 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Tilisi sähköpostiosoitteen on vastattava tätä, jotta voit käyttää ylläpitokäyttöliittymää." + +#: src/Module/Install.php:304 +msgid "System Language:" +msgstr "Järjestelmän kieli:" + +#: src/Module/Install.php:306 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "Valitse Friendica-sivustosi oletuskieli." + +#: src/Module/Install.php:318 +msgid "Your Friendica site database has been installed." +msgstr "Friendica-sivustosi tietokanta on asennettu." + +#: src/Module/Install.php:328 +msgid "Installation finished" +msgstr "" + +#: src/Module/Install.php:348 +msgid "

    What next

    " +msgstr "

    Mitä seuraavaksi

    " + +#: src/Module/Install.php:349 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"worker." +msgstr "TÄRKEÄÄ: Sinun pitää asettaa [manuaalisesti] ajastettu tehtävä Workerille." + +#: src/Module/Install.php:352 +#, php-format +msgid "" +"Go to your new Friendica node registration page " +"and register as new user. Remember to use the same email you have entered as" +" administrator email. This will allow you to enter the site admin panel." +msgstr "" + +#: src/Module/Invite.php:57 +msgid "Total invitation limit exceeded." +msgstr "Kutsuraja ylitetty." + +#: src/Module/Invite.php:82 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Virheellinen sähköpostiosoite." + +#: src/Module/Invite.php:108 +msgid "Please join us on Friendica" +msgstr "Tervetuloa Friendicaan" + +#: src/Module/Invite.php:117 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Kutsuraja ylitetty. Ota yhteyttä ylläpitäjään." + +#: src/Module/Invite.php:121 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Viestin toimitus epäonnistui." + +#: src/Module/Invite.php:125 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d viesti lähetetty." +msgstr[1] "%d viestiä lähetetty." + +#: src/Module/Invite.php:143 +msgid "You have no more invitations available" +msgstr "Sinulla ei ole kutsuja jäljellä" + +#: src/Module/Invite.php:150 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "" + +#: src/Module/Invite.php:152 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Hyväksyäksesi tämän kutsun, rekisteröidy sivustolla %s tai millä tahansa muulla Friendica -sivustolla." + +#: src/Module/Invite.php:153 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "" + +#: src/Module/Invite.php:157 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "" + +#: src/Module/Invite.php:160 +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks." +msgstr "" + +#: src/Module/Invite.php:159 +#, php-format +msgid "To accept this invitation, please visit and register at %s." +msgstr "Hyväksyäksesi tämän kutsun, rekisteröidy sivustolla %s." + +#: src/Module/Invite.php:167 +msgid "Send invitations" +msgstr "Lähetä kutsut" + +#: src/Module/Invite.php:168 +msgid "Enter email addresses, one per line:" +msgstr "Syötä sähköpostiosoitteet, yksi riviä kohden:" + +#: src/Module/Invite.php:172 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "" + +#: src/Module/Invite.php:174 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "" + +#: src/Module/Invite.php:174 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Kun olet rekisteröitynyt, lähetä minulle kaverikutsun profiilisivuni kautta:" + +#: src/Module/Invite.php:176 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendi.ca" +msgstr "" + +#: src/Module/Item/Compose.php:85 +msgid "Please enter a post body." +msgstr "" + +#: src/Module/Item/Compose.php:98 +msgid "This feature is only available with the frio theme." +msgstr "" + +#: src/Module/Item/Compose.php:122 +msgid "Compose new personal note" +msgstr "" + +#: src/Module/Item/Compose.php:131 +msgid "Compose new post" +msgstr "" + +#: src/Module/Item/Compose.php:187 +msgid "Visibility" +msgstr "" + +#: src/Module/Item/Compose.php:202 +msgid "Clear the location" +msgstr "" + +#: src/Module/Item/Compose.php:203 +msgid "Location services are unavailable on your device" +msgstr "" + +#: src/Module/Item/Compose.php:204 +msgid "" +"Location services are disabled. Please check the website's permissions on " +"your device" +msgstr "" + +#: src/Module/Item/Compose.php:210 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "" + +#: src/Module/Item/Display.php:136 src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "" + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "" + +#: src/Module/Item/Follow.php:51 +msgid "Unable to follow this item." +msgstr "" + +#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +msgid "System down for maintenance" +msgstr "Järjestelmä poiskytketty huoltoa varten" + +#: 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 "" + +#: src/Module/Manifest.php:40 +msgid "A Decentralized Social Network" +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Tiedostot" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload" +msgstr "Lähetä" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "Yrititkö ladata tyhjän tiedoston?" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Tiedosto ylittää kokorajoituksen %s" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "Tiedoston lähettäminen epäonnistui." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:68 +msgid "Unable to process image." +msgstr "Kuvan käsitteleminen epäonnistui." + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:95 +msgid "Image upload failed." +msgstr "Kuvan lähettäminen epäonnistui." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:491 +msgid "Normal Account Page" +msgstr "Tavallinen käyttäjätili" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:498 +msgid "Soapbox Page" +msgstr "Saarnatuoli sivu" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:505 +msgid "Public Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:512 +msgid "Automatic Friend Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:463 +msgid "Personal Page" +msgstr "Henkilökohtainen sivu" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:470 +msgid "Organisation Page" +msgstr "Järjestön sivu" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:477 +msgid "News Page" +msgstr "Uutissivu" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:484 +msgid "Community Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s kontakti poistettu estolistalta" +msgstr[1] "%s kontaktia poistettu estolistalta" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "Etäkontakti estolista" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "Estä etäkontakti" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "valitse kaikki" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "älä valitse mitään" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "Estetty etäkontaktit" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "Estä uusi etäkontakti" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Photo" +msgstr "Kuva" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "Yhteensä %s estetty kontakti" +msgstr[1] "Yhteensä %s estettyjä kontakteja" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "Estettävän etäkontaktin URL-osoite" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +msgid "Server Name" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "Estosyy" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +msgid "Blocked server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "Laita rasti poistaaksesi kohde estolistalta" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "Tallenna muutoksia estolistaan" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "Nykyinen estolista" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "Kohde merkitty poistettavaksi." + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "Poista tämä kohde" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "" + +#: src/Module/Moderation/Item/Delete.php:65 +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 "" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "Poistettavan kohteen GUID." + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "Tyyppi" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Kohdetta ei löytynyt" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Perustili" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "Automaattinen seuraajatili" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Automaattinen kaveritili" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Blogitili" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Rekisteröityneet käyttäjät" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Vireillä olevat rekisteröinnit" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s käyttäjä poistettu" +msgstr[1] "%s käyttäjää poistettu" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Rekisteripäivämäärä" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "Viimeisin kirjautuminen" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "Sivuston ylläpito" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "Tili vanhentunut" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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 "" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "Uusi käyttäjä" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "Lisää käyttäjä" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "Uuden käyttäjän nimi." + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "Lempinimi" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "Uuden käyttäjän lempinimi" + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "Uuden käyttäjän sähköpostiosoite." + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Tili hyväksytty." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Pyynnön päivämäärä" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "Ei rekisteröintejä." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Kieltäydy" + +#: src/Module/Notifications/Introductions.php:99 +msgid "Show Ignored Requests" +msgstr "Näytä ohitetut pyynnöt" + +#: src/Module/Notifications/Introductions.php:99 +msgid "Hide Ignored Requests" +msgstr "Piilota ohitetut pyynnöt" + +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 +msgid "Notification type:" +msgstr "" + +#: src/Module/Notifications/Introductions.php:118 +msgid "Suggested by:" +msgstr "" + +#: src/Module/Notifications/Introductions.php:143 +msgid "Claims to be known to you: " +msgstr "Väittää tuntevansa sinut:" + +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "No" +msgstr "Ei" + +#: src/Module/Notifications/Introductions.php:152 +msgid "Shall your connection be bidirectional or not?" +msgstr "Kaksisuuntainen yhteys?" + +#: src/Module/Notifications/Introductions.php:153 +#, 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 "" + +#: src/Module/Notifications/Introductions.php:154 +#, 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 "" + +#: src/Module/Notifications/Introductions.php:156 +msgid "Friend" +msgstr "Kaveri" + +#: src/Module/Notifications/Introductions.php:157 +msgid "Subscriber" +msgstr "Tilaaja" + +#: src/Module/Notifications/Introductions.php:216 +msgid "No introductions." +msgstr "Ei esittelyjä." + +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 +#, php-format +msgid "No more %s notifications." +msgstr "Ei muita %s ilmoituksia." + +#: src/Module/Notifications/Notification.php:135 +msgid "You must be logged in to show this page." +msgstr "" + +#: src/Module/Notifications/Notifications.php:66 +msgid "Network Notifications" +msgstr "Uutisvirtailmoitukset" + +#: src/Module/Notifications/Notifications.php:72 +msgid "System Notifications" +msgstr "Järjestelmäilmoitukset" + +#: src/Module/Notifications/Notifications.php:78 +msgid "Personal Notifications" +msgstr "Henkilökohtaiset ilmoitukset" + +#: src/Module/Notifications/Notifications.php:84 +msgid "Home Notifications" +msgstr "Koti-ilmoitukset" + +#: src/Module/Notifications/Notifications.php:140 +msgid "Show unread" +msgstr "Näytä lukemattomat" + +#: src/Module/Notifications/Ping.php:245 +msgid "{0} requested registration" +msgstr "{0} jätti rekisteröintipyynnön" + +#: src/Module/Notifications/Ping.php:254 +#, php-format +msgid "{0} and %d others requested registration" +msgstr "" + +#: src/Module/OAuth/Acknowledge.php:51 +msgid "Authorize application connection" +msgstr "Vahvista sovellusyhteys" + +#: src/Module/OAuth/Acknowledge.php:53 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Haluatko antaa tälle sovellukselle luvan hakea viestejäsi ja yhteystietojasi ja/tai luoda uusia viestejä?" + +#: src/Module/OAuth/Authorize.php:54 +msgid "Unsupported or missing response type" +msgstr "" + +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:77 +msgid "Incomplete request data" +msgstr "" + +#: 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 "Invalid data or unknown client" +msgstr "" + +#: src/Module/OAuth/Token.php:104 +msgid "Unsupported or missing grant type" +msgstr "" + +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "OStatus -kontaktien uudelleentilaus" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "Pidä tämä ikkuna auki kunnes kaikki tehtävät on suoritettu." + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "Kontakti puuttuu." + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "Kontaktin tietoja ei voitu hakea." + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "Ei voitu hakea kontaktin kaverit." + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Valmis" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "onnistui" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "epäonnistui" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "ohitettu" + +#: src/Module/PermissionTooltip.php:49 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "" + +#: src/Module/PermissionTooltip.php:79 +msgid "Model not found" +msgstr "" + +#: src/Module/PermissionTooltip.php:94 +msgid "Unlisted" +msgstr "" + +#: src/Module/PermissionTooltip.php:112 +msgid "Remote privacy information not available." +msgstr "Yksityisyyden etätietoja ei saatavilla." + +#: src/Module/PermissionTooltip.php:121 +msgid "Visible to:" +msgstr "Näkyvissä:" + +#: src/Module/PermissionTooltip.php:204 +#, php-format +msgid "Collection (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:208 +#, php-format +msgid "Followers (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:227 +#, php-format +msgid "%d more" +msgstr "" + +#: src/Module/PermissionTooltip.php:231 +#, php-format +msgid "To: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:234 +#, php-format +msgid "CC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:237 +#, php-format +msgid "BCC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "" + +#: src/Module/Photo.php:129 +msgid "The Photo is not available." +msgstr "" + +#: src/Module/Photo.php:154 +#, php-format +msgid "The Photo with id %s is not available." +msgstr "" + +#: src/Module/Photo.php:191 +#, php-format +msgid "Invalid external resource with url %s." +msgstr "" + +#: src/Module/Photo.php:193 +#, php-format +msgid "Invalid photo with id %s." +msgstr "" + +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "" + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Muokkaa viestiä" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "WWW-linkki" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Lisää videolinkki" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "videolinkki" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Lisää äänilinkki" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "äänilinkki" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Poista tägi" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Valitse tägi poistamista varten:" + +#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Poista" + +#: src/Module/Profile/Contacts.php:159 +msgid "No contacts." +msgstr "Ei kontakteja." + +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1090 +#: src/Protocol/OStatus.php:1007 +#, php-format +msgid "%s's timeline" +msgstr "%s: aikajana" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1094 src/Protocol/OStatus.php:1012 +#, php-format +msgid "%s's posts" +msgstr "%s: julkaisut" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1097 src/Protocol/OStatus.php:1016 +#, php-format +msgid "%s's comments" +msgstr "%s: kommentit" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:59 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Kuva ylittää kokorajoituksen %s" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "Kuvan lataus ei onnistunut, yritä uudelleen" + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "Kuvatiedosto puuttuu" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "Kuvatiedosto on tyhjä." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "Näytä albumi" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +msgid "Profile not found." +msgstr "Profiilia ei löytynyt." + +#: src/Module/Profile/Profile.php:158 +#, php-format +msgid "" +"You're currently viewing your profile as %s Cancel" +msgstr "" + +#: src/Module/Profile/Profile.php:167 src/Module/Settings/Account.php:575 +msgid "Full Name:" +msgstr "Koko nimi:" + +#: src/Module/Profile/Profile.php:172 +msgid "Member since:" +msgstr "Liittymispäivämäärä:" + +#: src/Module/Profile/Profile.php:178 +msgid "j F, Y" +msgstr "j F, Y" + +#: src/Module/Profile/Profile.php:179 +msgid "j F" +msgstr "j F" + +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 +msgid "Birthday:" +msgstr "Syntymäpäivä:" + +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170 +msgid "Age: " +msgstr "Ikä:" + +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170 +#, php-format +msgid "%d year old" +msgid_plural "%d years old" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:246 +msgid "Description:" +msgstr "Kuvaus:" + +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "" + +#: src/Module/Profile/Profile.php:273 +msgid "View profile as:" +msgstr "" + +#: src/Module/Profile/Profile.php:290 +msgid "View as" +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "Profiili ei saatavilla." + +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "Viallinen paikannin" + +#: src/Module/Profile/RemoteFollow.php:95 +msgid "The provided profile link doesn't seem to be valid" +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:100 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:128 +msgid "Friend/Connection Request" +msgstr "Ystävä/yhteyspyyntö" + +#: src/Module/Profile/RemoteFollow.php:129 +#, 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 "" + +#: src/Module/Profile/RemoteFollow.php:130 +#, 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 "" + +#: src/Module/Profile/RemoteFollow.php:131 +msgid "Your Webfinger address or profile URL:" +msgstr "" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "" + +#: src/Module/Profile/Schedule.php:83 +msgid "Scheduled" +msgstr "" + +#: src/Module/Profile/Schedule.php:84 +msgid "Content" +msgstr "" + +#: src/Module/Profile/Schedule.php:85 +msgid "Remove post" +msgstr "" + +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "" + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Kotisijaintisi ei voitu tarkistaa." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "" + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "%s-käyttäjän päivittäinen seinäviestiraja ylitetty. Viestin lähettäminen epäonnistui." + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "" + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "" + +#: src/Module/Register.php:84 +msgid "Only parent users can create additional accounts." +msgstr "" + +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Sivuston päivittäinen rekisteröintiraja ylitetty. Yritä uudelleen huomenna." + +#: src/Module/Register.php:116 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." +msgstr "" + +#: src/Module/Register.php:117 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Jos OpenID ei ole tuttu, jätä kenttä tyhjäksi." + +#: src/Module/Register.php:118 +msgid "Your OpenID (optional): " +msgstr "OpenID -tunnus (valinnainen):" + +#: src/Module/Register.php:127 +msgid "Include your profile in member directory?" +msgstr "Lisää profiilisi jäsenluetteloon?" + +#: src/Module/Register.php:148 +msgid "Note for the admin" +msgstr "Viesti ylläpidolle" + +#: src/Module/Register.php:148 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Kerro yllåpitäjälle miksi haluat liittyä tähän Friendica -sivustoon" + +#: src/Module/Register.php:149 +msgid "Membership on this site is by invitation only." +msgstr "Tähän sivustoon voi liittyä vain kutsusta." + +#: src/Module/Register.php:150 +msgid "Your invitation code: " +msgstr "Kutsukoodisi:" + +#: src/Module/Register.php:158 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Koko nimi (esim. Matti Meikäläinen, Aku Ankka):" + +#: src/Module/Register.php:159 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "Sähköpostiosoite: (pitää olla toimiva osoite että rekisteröityminen onnistuu)" + +#: src/Module/Register.php:160 +msgid "Please repeat your e-mail address:" +msgstr "" + +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:566 +msgid "New Password:" +msgstr "Uusi salasana:" + +#: src/Module/Register.php:162 +msgid "Leave empty for an auto generated password." +msgstr "Jätä tyhjäksi jos haluat automaattisesti luotu salasanan." + +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:567 +msgid "Confirm:" +msgstr "Vahvista:" + +#: src/Module/Register.php:164 +#, php-format +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be \"nickname@%s\"." +msgstr "" + +#: src/Module/Register.php:165 +msgid "Choose a nickname: " +msgstr "Valitse lempinimi:" + +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Tuo" + +#: src/Module/Register.php:174 +msgid "Import your profile to this friendica instance" +msgstr "Tuo profiilisi tähän Friendica -instanssiin." + +#: src/Module/Register.php:181 +msgid "Note: This node explicitly contains adult content" +msgstr "" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "Parent Password:" +msgstr "" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "" + +#: src/Module/Register.php:212 +msgid "Password doesn't match." +msgstr "" + +#: src/Module/Register.php:218 +msgid "Please enter your password." +msgstr "" + +#: src/Module/Register.php:260 +msgid "You have entered too much information." +msgstr "" + +#: src/Module/Register.php:283 +msgid "Please enter the identical mail address in the second field." +msgstr "" + +#: src/Module/Register.php:310 +msgid "The additional account was created." +msgstr "" + +#: src/Module/Register.php:335 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Rekisteröityminen onnistui. Saat kohta lisäohjeita sähköpostitse." + +#: src/Module/Register.php:342 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "" + +#: src/Module/Register.php:348 +msgid "Registration successful." +msgstr "Rekisteröityminen onnistui." + +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 +msgid "Your registration can not be processed." +msgstr "Rekisteröintisi ei voida käsitellä." + +#: src/Module/Register.php:363 +msgid "You have to leave a request note for the admin." +msgstr "" + +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "" + +#: src/Module/Register.php:395 +msgid "Your registration is pending approval by the site owner." +msgstr "Rekisteröintisi odottaa ylläpitäjän hyväksyntää." + +#: src/Module/Search/Acl.php:73 +msgid "You must be logged in to use this module." +msgstr "" + +#: src/Module/Search/Index.php:69 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: src/Module/Search/Index.php:89 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: src/Module/Search/Index.php:205 +#, php-format +msgid "Items tagged with: %s" +msgstr "Kohteet joilla tunnisteet: %s" + +#: src/Module/Search/Saved.php:59 +msgid "Search term was not saved." +msgstr "" + +#: src/Module/Search/Saved.php:62 +msgid "Search term already saved." +msgstr "" + +#: src/Module/Search/Saved.php:68 +msgid "Search term was not removed." +msgstr "" + +#: src/Module/Security/Login.php:123 msgid "Create a New Account" msgstr "Luo uusi käyttäjätili" -#: src/Module/Login.php:316 -msgid "Password: " -msgstr "Salasana:" +#: src/Module/Security/Login.php:142 +msgid "Your OpenID: " +msgstr "" -#: src/Module/Login.php:317 -msgid "Remember me" -msgstr "Muista minut" +#: src/Module/Security/Login.php:145 +msgid "" +"Please enter your username and password to add the OpenID to your existing " +"account." +msgstr "" -#: src/Module/Login.php:320 +#: src/Module/Security/Login.php:147 msgid "Or login using OpenID: " msgstr "Kirjaudu sisään OpenID -tunnuksella:" -#: src/Module/Login.php:326 +#: src/Module/Security/Login.php:161 +msgid "Password: " +msgstr "Salasana:" + +#: src/Module/Security/Login.php:162 +msgid "Remember me" +msgstr "Muista minut" + +#: src/Module/Security/Login.php:171 msgid "Forgot your password?" msgstr "Unohditko salasanasi?" -#: src/Module/Login.php:329 +#: src/Module/Security/Login.php:174 msgid "Website Terms of Service" msgstr "Verkkosivun käyttöehdot" -#: src/Module/Login.php:330 +#: src/Module/Security/Login.php:175 msgid "terms of service" msgstr "käyttöehdot" -#: src/Module/Login.php:332 +#: src/Module/Security/Login.php:177 msgid "Website Privacy Policy" msgstr "Sivuston tietosuojakäytäntö" -#: src/Module/Login.php:333 +#: src/Module/Security/Login.php:178 msgid "privacy policy" msgstr "tietosuojakäytäntö" -#: src/Module/Tos.php:34 src/Module/Tos.php:74 +#: src/Module/Security/Logout.php:84 +#: src/Module/Security/TwoFactor/SignOut.php:78 +#: src/Module/Security/TwoFactor/SignOut.php:86 +#: src/Module/Security/TwoFactor/SignOut.php:108 +#: src/Module/Security/TwoFactor/SignOut.php:115 +msgid "Logged out." +msgstr "Kirjautunut ulos." + +#: src/Module/Security/OpenID.php:54 +msgid "OpenID protocol error. No ID returned" +msgstr "" + +#: src/Module/Security/OpenID.php:90 +msgid "" +"Account not found. Please login to your existing account to add the OpenID " +"to it." +msgstr "" + +#: src/Module/Security/OpenID.php:92 +msgid "" +"Account not found. Please register a new account or login to your existing " +"account to add the OpenID to it." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 +msgid "Passwords do not match." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:64 +msgid "Password does not need changing." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 +msgid "Password unchanged." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:91 +msgid "Password Too Long" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:92 +msgid "" +"Since version 2022.09, we've realized that any password longer than 72 " +"characters is truncated during hashing. To prevent any confusion about this " +"behavior, please update your password to be fewer or equal to 72 characters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:93 +msgid "Update Password" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:568 +msgid "Current Password:" +msgstr "Nykyinen salasana:" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:568 +msgid "Your current password to confirm the changes" +msgstr "Syötä nykyinen salasanasi vahvistaaksesi muutokset" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:552 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces and accentuated letters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 +msgid "Password length is limited to 72 characters." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:74 +#, php-format +msgid "Remaining recovery codes: %d" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:80 +#: src/Module/Security/TwoFactor/Verify.php:77 +#: src/Module/Settings/TwoFactor/Verify.php:95 +msgid "Invalid code, please retry." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:99 +msgid "Two-factor recovery" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:100 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:101 +#, php-format +msgid "Don’t have your phone? Enter a two-factor recovery code" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:102 +msgid "Please enter a recovery code" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:103 +msgid "Submit recovery code and complete login" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:122 +msgid "Sign out of this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:123 +msgid "" +"

    If you trust this browser, you will not be asked for verification code " +"the next time you sign in.

    " +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:124 +msgid "Sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:126 +msgid "Trust and sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:96 +msgid "Couldn't save browser to Cookie." +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:141 +msgid "Trust this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:142 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:143 +msgid "Not now" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:144 +msgid "Don't trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:145 +msgid "Trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:97 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:100 +#, php-format +msgid "" +"If you do not have access to your authentication code you can use a two-factor recovery code." +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Please enter a code from your authentication app" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:102 +msgid "Verify code and complete login" +msgstr "" + +#: src/Module/Settings/Account.php:96 +msgid "Please use a shorter name." +msgstr "" + +#: src/Module/Settings/Account.php:99 +msgid "Name too short." +msgstr "" + +#: src/Module/Settings/Account.php:108 +msgid "Wrong Password." +msgstr "" + +#: src/Module/Settings/Account.php:113 +msgid "Invalid email." +msgstr "Virheellinen sähköposti." + +#: src/Module/Settings/Account.php:117 +msgid "Cannot change to that email." +msgstr "" + +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:198 +#: src/Module/Settings/Account.php:218 src/Module/Settings/Account.php:302 +#: src/Module/Settings/Account.php:351 +msgid "Settings were not updated." +msgstr "" + +#: src/Module/Settings/Account.php:363 +msgid "Contact CSV file upload error" +msgstr "" + +#: src/Module/Settings/Account.php:382 +msgid "Importing Contacts done" +msgstr "" + +#: src/Module/Settings/Account.php:395 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: src/Module/Settings/Account.php:412 +msgid "Unable to find your profile. Please contact your admin." +msgstr "Profiilisi ei löytynyt. Ota yhteyttä ylläpitäjään." + +#: src/Module/Settings/Account.php:454 +msgid "Personal Page Subtypes" +msgstr "Henkilökohtaisen sivun alatyypit" + +#: src/Module/Settings/Account.php:455 +msgid "Community Group Subtypes" +msgstr "" + +#: src/Module/Settings/Account.php:465 +msgid "Account for a personal profile." +msgstr "Henkilökohtaisen profiilin käyttäjätili." + +#: src/Module/Settings/Account.php:472 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:479 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:486 +msgid "Account for community discussions." +msgstr "" + +#: src/Module/Settings/Account.php:493 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:500 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:507 +msgid "Automatically approves all contact requests." +msgstr "Automaattisesti hyväksyy kaikki kontaktipyynnöt" + +#: src/Module/Settings/Account.php:514 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "" + +#: src/Module/Settings/Account.php:519 +msgid "Private Group [Experimental]" +msgstr "" + +#: src/Module/Settings/Account.php:521 +msgid "Requires manual approval of contact requests." +msgstr "" + +#: src/Module/Settings/Account.php:530 +msgid "OpenID:" +msgstr "OpenID:" + +#: src/Module/Settings/Account.php:530 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "" + +#: src/Module/Settings/Account.php:538 +msgid "Publish your profile in your local site directory?" +msgstr "" + +#: src/Module/Settings/Account.php:538 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "" + +#: src/Module/Settings/Account.php:544 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "" + +#: src/Module/Settings/Account.php:557 +msgid "Account Settings" +msgstr "Tiliasetukset" + +#: src/Module/Settings/Account.php:558 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "Identiteettisi osoite on '%s' tai '%s'." + +#: src/Module/Settings/Account.php:565 +msgid "Password Settings" +msgstr "Salasana-asetukset" + +#: src/Module/Settings/Account.php:567 +msgid "Leave password fields blank unless changing" +msgstr "Jätä salasana kenttää tyhjäksi jos et halua vaihtaa salasanaa" + +#: src/Module/Settings/Account.php:569 +msgid "Password:" +msgstr "Salasana:" + +#: src/Module/Settings/Account.php:569 +msgid "Your current password to confirm the changes of the email address" +msgstr "" + +#: src/Module/Settings/Account.php:572 +msgid "Delete OpenID URL" +msgstr "" + +#: src/Module/Settings/Account.php:574 +msgid "Basic Settings" +msgstr "Perusasetukset" + +#: src/Module/Settings/Account.php:576 +msgid "Email Address:" +msgstr "Sähköpostiosoite:" + +#: src/Module/Settings/Account.php:577 +msgid "Your Timezone:" +msgstr "Aikavyöhyke:" + +#: src/Module/Settings/Account.php:578 +msgid "Your Language:" +msgstr "Kieli:" + +#: src/Module/Settings/Account.php:578 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Aseta Friendican käyttöliittymän ja sähköpostiviestien kieli" + +#: src/Module/Settings/Account.php:579 +msgid "Default Post Location:" +msgstr "Julkaisun oletussijainti:" + +#: src/Module/Settings/Account.php:580 +msgid "Use Browser Location:" +msgstr "Käytä selaimen sijainti:" + +#: src/Module/Settings/Account.php:582 +msgid "Security and Privacy Settings" +msgstr "Turvallisuus ja tietosuoja-asetukset" + +#: src/Module/Settings/Account.php:584 +msgid "Maximum Friend Requests/Day:" +msgstr "Kaveripyyntöraja päivässä:" + +#: src/Module/Settings/Account.php:584 src/Module/Settings/Account.php:594 +msgid "(to prevent spam abuse)" +msgstr "(roskapostin estämiseksi)" + +#: src/Module/Settings/Account.php:586 +msgid "Allow your profile to be searchable globally?" +msgstr "" + +#: src/Module/Settings/Account.php:586 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "" + +#: src/Module/Settings/Account.php:587 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "" + +#: src/Module/Settings/Account.php:587 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "" + +#: src/Module/Settings/Account.php:588 +msgid "Hide your public content from anonymous viewers" +msgstr "" + +#: src/Module/Settings/Account.php:588 +msgid "" +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "Make public posts unlisted" +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "Make all posted pictures accessible" +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "" + +#: src/Module/Settings/Account.php:591 +msgid "Allow friends to post to your profile page?" +msgstr "Anna kavereiden julkaista profiilisivullasi?" + +#: src/Module/Settings/Account.php:591 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "" + +#: src/Module/Settings/Account.php:592 +msgid "Allow friends to tag your posts?" +msgstr "Anna kavereiden lisätä tunnisteita julkaisuusi?" + +#: src/Module/Settings/Account.php:592 +msgid "Your contacts can add additional tags to your posts." +msgstr "Kontaktisi voi lisätä ylimääräisiä tunnisteita julkaisuusi." + +#: src/Module/Settings/Account.php:593 +msgid "Permit unknown people to send you private mail?" +msgstr "Salli yksityisviesit tuntemattomilta?" + +#: src/Module/Settings/Account.php:593 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "" + +#: src/Module/Settings/Account.php:594 +msgid "Maximum private messages per day from unknown people:" +msgstr "Enimmäismäärä yksityisviestejä päivässä tuntemattomilta henkilöiltä:" + +#: src/Module/Settings/Account.php:596 +msgid "Default Post Permissions" +msgstr "Julkaisun oletuskäyttöoikeudet:" + +#: src/Module/Settings/Account.php:600 +msgid "Expiration settings" +msgstr "" + +#: src/Module/Settings/Account.php:601 +msgid "Automatically expire posts after this many days:" +msgstr "" + +#: src/Module/Settings/Account.php:601 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Jos kenttä jää tyhjäksi, julkaisut eivät vanhene. Vanhentuneet julkaisut poistetaan." + +#: src/Module/Settings/Account.php:602 +msgid "Expire posts" +msgstr "" + +#: src/Module/Settings/Account.php:602 +msgid "When activated, posts and comments will be expired." +msgstr "" + +#: src/Module/Settings/Account.php:603 +msgid "Expire personal notes" +msgstr "" + +#: src/Module/Settings/Account.php:603 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "" + +#: src/Module/Settings/Account.php:604 +msgid "Expire starred posts" +msgstr "" + +#: src/Module/Settings/Account.php:604 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "" + +#: src/Module/Settings/Account.php:605 +msgid "Only expire posts by others" +msgstr "" + +#: src/Module/Settings/Account.php:605 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "" + +#: src/Module/Settings/Account.php:608 +msgid "Notification Settings" +msgstr "Huomautusasetukset" + +#: src/Module/Settings/Account.php:609 +msgid "Send a notification email when:" +msgstr "Lähetä sähköposti-ilmoitus kun:" + +#: src/Module/Settings/Account.php:610 +msgid "You receive an introduction" +msgstr "Vastaanotat kaverikutsun" + +#: src/Module/Settings/Account.php:611 +msgid "Your introductions are confirmed" +msgstr "Kaverikutsusi on hyväksytty" + +#: src/Module/Settings/Account.php:612 +msgid "Someone writes on your profile wall" +msgstr "Joku kirjoittaa profiiliseinällesi" + +#: src/Module/Settings/Account.php:613 +msgid "Someone writes a followup comment" +msgstr "Joku vastaa kommenttiin" + +#: src/Module/Settings/Account.php:614 +msgid "You receive a private message" +msgstr "Vastaanotat yksityisviestin" + +#: src/Module/Settings/Account.php:615 +msgid "You receive a friend suggestion" +msgstr "Vastaanotat kaveriehdotuksen" + +#: src/Module/Settings/Account.php:616 +msgid "You are tagged in a post" +msgstr "Sinut on merkitty julkaisuun" + +#: src/Module/Settings/Account.php:618 +msgid "Create a desktop notification when:" +msgstr "" + +#: src/Module/Settings/Account.php:619 +msgid "Someone tagged you" +msgstr "" + +#: src/Module/Settings/Account.php:620 +msgid "Someone directly commented on your post" +msgstr "" + +#: src/Module/Settings/Account.php:621 +msgid "Someone liked your content" +msgstr "" + +#: src/Module/Settings/Account.php:621 src/Module/Settings/Account.php:622 +msgid "Can only be enabled, when the direct comment notification is enabled." +msgstr "" + +#: src/Module/Settings/Account.php:622 +msgid "Someone shared your content" +msgstr "" + +#: src/Module/Settings/Account.php:623 +msgid "Someone commented in your thread" +msgstr "" + +#: src/Module/Settings/Account.php:624 +msgid "Someone commented in a thread where you commented" +msgstr "" + +#: src/Module/Settings/Account.php:625 +msgid "Someone commented in a thread where you interacted" +msgstr "" + +#: src/Module/Settings/Account.php:627 +msgid "Activate desktop notifications" +msgstr "Ota työpöytäilmoitukset käyttöön" + +#: src/Module/Settings/Account.php:627 +msgid "Show desktop popup on new notifications" +msgstr "Näytä uudet ilmoitukset ponnahdusikkunassa" + +#: src/Module/Settings/Account.php:631 +msgid "Text-only notification emails" +msgstr "Ilmoitussähköposteissa vain tekstiä" + +#: src/Module/Settings/Account.php:633 +msgid "Send text only notification emails, without the html part" +msgstr "Lähetä ilmoitussähköposteissa vain tekstiä ilman HTML-koodia" + +#: src/Module/Settings/Account.php:637 +msgid "Show detailled notifications" +msgstr "Näytä yksityiskohtaiset ilmoitukset" + +#: src/Module/Settings/Account.php:639 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "" + +#: src/Module/Settings/Account.php:643 +msgid "Show notifications of ignored contacts" +msgstr "" + +#: src/Module/Settings/Account.php:645 +msgid "" +"You don't see posts from ignored contacts. But you still see their comments." +" This setting controls if you want to still receive regular notifications " +"that are caused by ignored contacts or not." +msgstr "" + +#: src/Module/Settings/Account.php:648 +msgid "Advanced Account/Page Type Settings" +msgstr "Käyttäjätili/sivutyyppi lisäasetuksia" + +#: src/Module/Settings/Account.php:649 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: src/Module/Settings/Account.php:652 +msgid "Import Contacts" +msgstr "" + +#: src/Module/Settings/Account.php:653 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "" + +#: src/Module/Settings/Account.php:654 +msgid "Upload File" +msgstr "" + +#: src/Module/Settings/Account.php:657 +msgid "Relocate" +msgstr "Uudelleensijoitus" + +#: src/Module/Settings/Account.php:658 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: src/Module/Settings/Account.php:659 +msgid "Resend relocate message to contacts" +msgstr "" + +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "Lisäosa-asetukset" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "Lisäosa-asetukset puuttuvat" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "" + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "Ei mitään" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "Yleiset some asetukset" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "" + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "Korjaa OStatus tilaukset" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "Sähköpostin asennus" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "" + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "Viimeisin onnistunut sähköpostitarkistus:" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "IMAP-palvelimen nimi:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "IMAP-porttti:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "Turvallisuus:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "Sähköpostitilin käyttäjätunnus:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "Sähköpostin salasana:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "Vastausosoite:" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "Lähetä julkiset julkaisut kaikille kontakteille:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "Toiminta tuonnin jälkeen:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "Siirrä kansioon" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "Siirrä kansioon:" + +#: src/Module/Settings/Delegation.php:54 +msgid "Delegation successfully granted." +msgstr "" + +#: src/Module/Settings/Delegation.php:56 +msgid "Parent user not found, unavailable or password doesn't match." +msgstr "" + +#: src/Module/Settings/Delegation.php:60 +msgid "Delegation successfully revoked." +msgstr "" + +#: src/Module/Settings/Delegation.php:82 +#: src/Module/Settings/Delegation.php:104 +msgid "" +"Delegated administrators can view but not change delegation permissions." +msgstr "" + +#: src/Module/Settings/Delegation.php:96 +msgid "Delegate user not found." +msgstr "" + +#: src/Module/Settings/Delegation.php:144 +msgid "No parent user" +msgstr "" + +#: src/Module/Settings/Delegation.php:155 +#: src/Module/Settings/Delegation.php:166 +msgid "Parent User" +msgstr "" + +#: src/Module/Settings/Delegation.php:163 +msgid "Additional Accounts" +msgstr "" + +#: src/Module/Settings/Delegation.php:164 +msgid "" +"Register additional accounts that are automatically connected to your " +"existing account so you can manage them from this account." +msgstr "" + +#: src/Module/Settings/Delegation.php:165 +msgid "Register an additional account" +msgstr "" + +#: src/Module/Settings/Delegation.php:169 +msgid "" +"Parent users have total control about this account, including the account " +"settings. Please double check whom you give this access." +msgstr "" + +#: src/Module/Settings/Delegation.php:173 +msgid "Delegates" +msgstr "Valtuutetut" + +#: src/Module/Settings/Delegation.php:175 +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 "" + +#: src/Module/Settings/Delegation.php:176 +msgid "Existing Page Delegates" +msgstr "Sivun valtuutetut" + +#: src/Module/Settings/Delegation.php:178 +msgid "Potential Delegates" +msgstr "Mahdolliset valtuutetut" + +#: src/Module/Settings/Delegation.php:181 +msgid "Add" +msgstr "Lisää" + +#: src/Module/Settings/Delegation.php:182 +msgid "No entries." +msgstr "Ei kohteita." + +#: src/Module/Settings/Display.php:137 +msgid "The theme you chose isn't available." +msgstr "" + +#: src/Module/Settings/Display.php:177 +#, php-format +msgid "%s - (Unsupported)" +msgstr "%s - (Ei tueta)" + +#: src/Module/Settings/Display.php:212 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:213 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:214 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:215 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:246 +msgid "Display Settings" +msgstr "Näyttöasetukset" + +#: src/Module/Settings/Display.php:248 +msgid "General Theme Settings" +msgstr "Yleiset teeman asetukset" + +#: src/Module/Settings/Display.php:249 +msgid "Custom Theme Settings" +msgstr "Mukautetut teema-asetukset" + +#: src/Module/Settings/Display.php:250 +msgid "Content Settings" +msgstr "Sisältöasetukset" + +#: src/Module/Settings/Display.php:251 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 +msgid "Theme settings" +msgstr "Teeman asetukset" + +#: src/Module/Settings/Display.php:257 +msgid "Display Theme:" +msgstr "Käyttöliittymän teema:" + +#: src/Module/Settings/Display.php:258 +msgid "Mobile Theme:" +msgstr "Mobiiliteema:" + +#: src/Module/Settings/Display.php:261 +msgid "Number of items to display per page:" +msgstr "" + +#: src/Module/Settings/Display.php:261 src/Module/Settings/Display.php:262 +msgid "Maximum of 100 items" +msgstr "Enintään 100 kohdetta" + +#: src/Module/Settings/Display.php:262 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: src/Module/Settings/Display.php:263 +msgid "Update browser every xx seconds" +msgstr "Päivitä selain xx sekunnin välein" + +#: src/Module/Settings/Display.php:263 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Vähintään 10 sekuntia. -1 poistaa ominaisuuden käytöstä." + +#: src/Module/Settings/Display.php:264 +msgid "Display emoticons" +msgstr "" + +#: src/Module/Settings/Display.php:264 +msgid "When enabled, emoticons are replaced with matching symbols." +msgstr "" + +#: src/Module/Settings/Display.php:265 +msgid "Infinite scroll" +msgstr "Loputon selaaminen" + +#: src/Module/Settings/Display.php:265 +msgid "Automatic fetch new items when reaching the page end." +msgstr "" + +#: src/Module/Settings/Display.php:266 +msgid "Enable Smart Threading" +msgstr "" + +#: src/Module/Settings/Display.php:266 +msgid "Enable the automatic suppression of extraneous thread indentation." +msgstr "" + +#: src/Module/Settings/Display.php:267 +msgid "Display the Dislike feature" +msgstr "" + +#: src/Module/Settings/Display.php:267 +msgid "" +"Display the Dislike button and dislike reactions on posts and comments." +msgstr "" + +#: src/Module/Settings/Display.php:268 +msgid "Display the resharer" +msgstr "" + +#: src/Module/Settings/Display.php:268 +msgid "Display the first resharer as icon and text on a reshared item." +msgstr "" + +#: src/Module/Settings/Display.php:269 +msgid "Stay local" +msgstr "" + +#: src/Module/Settings/Display.php:269 +msgid "Don't go to a remote system when following a contact link." +msgstr "" + +#: src/Module/Settings/Display.php:270 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:270 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "" + +#: src/Module/Settings/Display.php:272 +msgid "Beginning of week:" +msgstr "Viikon alku:" + +#: src/Module/Settings/Display.php:273 +msgid "Default calendar view:" +msgstr "" + +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "Lisäominaisuuksia" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Yhdistetyt sovellukset" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "Poista lupa" + +#: src/Module/Settings/Profile/Index.php:84 +msgid "Profile Name is required." +msgstr "Profiilinimi on pakollinen." + +#: src/Module/Settings/Profile/Index.php:134 +msgid "Profile couldn't be updated." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:175 +#: src/Module/Settings/Profile/Index.php:195 +msgid "Label:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:176 +#: src/Module/Settings/Profile/Index.php:196 +msgid "Value:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:186 +#: src/Module/Settings/Profile/Index.php:206 +msgid "Field Permissions" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:187 +#: src/Module/Settings/Profile/Index.php:207 +msgid "(click to open/close)" +msgstr "(klikkaa auki/kiinni)" + +#: src/Module/Settings/Profile/Index.php:193 +msgid "Add a new profile field" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:216 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:218 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:228 +msgid "Profile Actions" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:229 +msgid "Edit Profile Details" +msgstr "Muokkaa profiilin yksityiskohdat" + +#: src/Module/Settings/Profile/Index.php:231 +msgid "Change Profile Photo" +msgstr "Vaihda profiilikuva" + +#: src/Module/Settings/Profile/Index.php:236 +msgid "Profile picture" +msgstr "Profiilikuva" + +#: src/Module/Settings/Profile/Index.php:237 +msgid "Location" +msgstr "Sijainti" + +#: src/Module/Settings/Profile/Index.php:238 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 +msgid "Miscellaneous" +msgstr "Sekalaista" + +#: src/Module/Settings/Profile/Index.php:239 +msgid "Custom Profile Fields" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:241 src/Module/Welcome.php:58 +msgid "Upload Profile Photo" +msgstr "Lataa profiilikuva" + +#: src/Module/Settings/Profile/Index.php:245 +msgid "Display name:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:248 +msgid "Street Address:" +msgstr "Katuosoite:" + +#: src/Module/Settings/Profile/Index.php:249 +msgid "Locality/City:" +msgstr "Kaupunki:" + +#: src/Module/Settings/Profile/Index.php:250 +msgid "Region/State:" +msgstr "Alue/osavaltio:" + +#: src/Module/Settings/Profile/Index.php:251 +msgid "Postal/Zip Code:" +msgstr "Postinumero:" + +#: src/Module/Settings/Profile/Index.php:252 +msgid "Country:" +msgstr "Maa:" + +#: src/Module/Settings/Profile/Index.php:254 +msgid "XMPP (Jabber) address:" +msgstr "XMPP (Jabber) osoite:" + +#: src/Module/Settings/Profile/Index.php:254 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:255 +msgid "Matrix (Element) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:255 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:256 +msgid "Homepage URL:" +msgstr "Kotisivun URL-osoite:" + +#: src/Module/Settings/Profile/Index.php:257 +msgid "Public Keywords:" +msgstr "Julkiset avainsanat:" + +#: src/Module/Settings/Profile/Index.php:257 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Käytetään kaveriehdotuksia varten, näkyy muille)" + +#: src/Module/Settings/Profile/Index.php:258 +msgid "Private Keywords:" +msgstr "Yksityiset avainsanat:" + +#: src/Module/Settings/Profile/Index.php:258 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Käytetään profiilihakua varten, ei näy muille)" + +#: src/Module/Settings/Profile/Index.php:259 +#, 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 circles.

    " +msgstr "" + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 +#: src/Module/Settings/Profile/Photo/Index.php:101 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Kuvan pienentäminen [%s] epäonnistui." + +#: src/Module/Settings/Profile/Photo/Crop.php:150 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Jos kuva ei näy heti, lataa sivu uudelleen tai tyhjennä selaimen välimuisti." + +#: src/Module/Settings/Profile/Photo/Crop.php:155 +msgid "Unable to process image" +msgstr "Kuvan käsitteleminen epäonnistui" + +#: src/Module/Settings/Profile/Photo/Crop.php:174 +msgid "Photo not found." +msgstr "" + +#: src/Module/Settings/Profile/Photo/Crop.php:196 +msgid "Profile picture successfully updated." +msgstr "" + +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 +msgid "Crop Image" +msgstr "Rajaa kuva" + +#: src/Module/Settings/Profile/Photo/Crop.php:223 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Rajaa kuva sopivasti." + +#: src/Module/Settings/Profile/Photo/Crop.php:225 +msgid "Use Image As Is" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:45 +msgid "Missing uploaded image." +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:124 +msgid "Profile Picture Settings" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:125 +msgid "Current Profile Picture" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:126 +msgid "Upload Profile Picture" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:127 +msgid "Upload Picture:" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:132 +msgid "or" +msgstr "tai" + +#: src/Module/Settings/Profile/Photo/Index.php:134 +msgid "skip this step" +msgstr "ohita tämä vaihe" + +#: src/Module/Settings/Profile/Photo/Index.php:136 +msgid "select a photo from your photo albums" +msgstr "valitse kuva albumeistasi" + +#: src/Module/Settings/RemoveMe.php:94 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[Friendica Järjestelmäilmoitus]" + +#: src/Module/Settings/RemoveMe.php:94 +msgid "User deleted their account" +msgstr "Käyttäjä poisti tilinsä" + +#: src/Module/Settings/RemoveMe.php:95 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "Friendica -solmullasi käyttäjä poisti tilinsä. Varmista että hänen tiedot poistetaan myös varmuuskopioista." + +#: src/Module/Settings/RemoveMe.php:96 +#, php-format +msgid "The user id is %d" +msgstr "Käyttäjätunnus on %d" + +#: src/Module/Settings/RemoveMe.php:108 +msgid "Your user account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:128 +msgid "Remove My Account" +msgstr "Poista tilini" + +#: src/Module/Settings/RemoveMe.php:129 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Tämä poistaa käyttäjätilisi pysyvästi. Poistoa ei voi perua myöhemmin." + +#: src/Module/Settings/RemoveMe.php:131 +msgid "Please enter your password for verification:" +msgstr "Syötä salasanasi varmistusta varten:" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 +msgid "Please enter your password to access this page." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 +msgid "App-specific password generation failed: The description is empty." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +msgid "" +"App-specific password generation failed: This description already exists." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 +msgid "New app-specific password generated." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 +msgid "App-specific passwords successfully revoked." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 +msgid "App-specific password successfully revoked." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +msgid "Two-factor app-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 +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 "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +msgid "" +"Make sure to copy your new app-specific password now. You won’t be able to " +"see it again!" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +msgid "Description" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 +msgid "Last Used" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 +msgid "Revoke" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +msgid "Revoke All" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +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 "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 +msgid "Generate new app-specific password" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 +msgid "Friendiqa on my Fairphone 2..." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +msgid "Generate" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:68 +msgid "Two-factor authentication successfully disabled." +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:124 +msgid "Authenticator app" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Configured" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Not Configured" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:126 +msgid "

    You haven't finished configuring your authenticator app.

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

    Your authenticator app is correctly configured.

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:129 +msgid "Recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:130 +msgid "Remaining valid codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:132 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:134 +msgid "App-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:135 +msgid "Generated app-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:137 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:140 +msgid "Current password:" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:140 +msgid "" +"You need to provide your current password to change two-factor " +"authentication settings." +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:141 +msgid "Enable two-factor authentication" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:142 +msgid "Disable two-factor authentication" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:143 +msgid "Show recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:144 +msgid "Manage app-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:145 +msgid "Manage trusted browsers" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:146 +msgid "Finish app configuration" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:80 +msgid "New recovery codes successfully generated." +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:106 +msgid "Two-factor recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:108 +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 "" + +#: src/Module/Settings/TwoFactor/Recovery.php:110 +msgid "" +"When you generate new recovery codes, you must copy the new codes. Your old " +"codes won’t work anymore." +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:111 +msgid "Generate new recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:113 +msgid "Next: Verification" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:84 +msgid "Trusted browsers successfully removed." +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:94 +msgid "Trusted browser successfully removed." +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:136 +msgid "Two-factor Trusted Browsers" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:137 +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 "" + +#: src/Module/Settings/TwoFactor/Trusted.php:138 +msgid "Device" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:139 +msgid "OS" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:141 +msgid "Trusted" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:142 +msgid "Created At" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:143 +msgid "Last Use" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:145 +msgid "Remove All" +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:91 +msgid "Two-factor authentication successfully activated." +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:125 +#, 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 "" + +#: src/Module/Settings/TwoFactor/Verify.php:145 +msgid "Two-factor code verification" +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:147 +msgid "" +"

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

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

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

    %s

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:156 +msgid "Verify code and enable two-factor authentication" +msgstr "" + +#: src/Module/Settings/UserExport.php:90 +msgid "Export account" +msgstr "Vie tili" + +#: src/Module/Settings/UserExport.php:90 +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 "Vie tilin tiedot ja yhteystiedot. Käytä tätä tilisi varmuuskopiointiin ja/tai siirtämiseen toiselle palvelimelle." + +#: src/Module/Settings/UserExport.php:91 +msgid "Export all" +msgstr "Vie kaikki" + +#: src/Module/Settings/UserExport.php:91 +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 "" + +#: src/Module/Settings/UserExport.php:92 +msgid "Export Contacts to CSV" +msgstr "" + +#: src/Module/Settings/UserExport.php:92 +msgid "" +"Export the list of the accounts you are following as CSV file. Compatible to" +" e.g. Mastodon." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:37 +msgid "Not Found" +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:38 +msgid "" +"

    Unfortunately, the requested conversation isn't available to you.

    \n" +"

    Possible reasons include:

    \n" +"
      \n" +"\t
    • The top-level post isn't visible.
    • \n" +"\t
    • The top-level post was deleted.
    • \n" +"\t
    • The node has blocked the top-level author or the author of the shared post.
    • \n" +"\t
    • You have ignored or blocked the top-level author or the author of the shared post.
    • \n" +"
    " +msgstr "" + +#: src/Module/Special/HTTPException.php:78 +msgid "Stack trace:" +msgstr "" + +#: src/Module/Special/HTTPException.php:83 +#, php-format +msgid "Exception thrown in %s:%d" +msgstr "" + +#: src/Module/Tos.php:57 src/Module/Tos.php:106 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" @@ -9377,181 +10503,1415 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:35 src/Module/Tos.php:75 +#: src/Module/Tos.php:58 src/Module/Tos.php:107 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 "" -#: src/Module/Tos.php:36 src/Module/Tos.php:76 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 #, 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." +" account settings. If the user " +"wants to delete their account they can do so at %1$s/settings/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 "" -#: src/Module/Tos.php:39 src/Module/Tos.php:73 +#: src/Module/Tos.php:62 src/Module/Tos.php:105 msgid "Privacy Statement" msgstr "Tietosuojalausunto" -#: src/Object/Post.php:128 +#: src/Module/Tos.php:102 +msgid "Rules" +msgstr "" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "" + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "" + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "Siirrä tili" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "Voit tuoda käyttäjätilin toiselta Friendica -palvelimelta." + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "" + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "Tämä on kokeellinen ominaisuus. Emme voi tuoda kontakteja OStatus-verkolta (GNU social/Statusnet) tai Diasporalta." + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "Tilitiedosto" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "Tilitiedoston tulkinnassa tapahtui virhe" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Virhe: tiedostosta puuttuu versiotiedot! Saattaa olla että tämä ei ole Friendica -tilitiedosto?" + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Käyttäjä '%s' on jo olemassa tällä palvelimella!" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "Virhe käyttäjän luomisessa" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d kontakti ei tuotu" +msgstr[1] "%d kontakteja ei tuotu" + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "Virhe käyttäjäprofiilin luomisessa" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "Suoritettu. Voit nyt kirjautua sisään käyttäjätunnuksellasi." + +#: src/Module/Welcome.php:44 +msgid "Welcome to Friendica" +msgstr "Tervetuloa Friendicaan" + +#: src/Module/Welcome.php:45 +msgid "New Member Checklist" +msgstr "Uuden jäsenen tarkistuslista" + +#: 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 "" + +#: src/Module/Welcome.php:48 +msgid "Getting Started" +msgstr "Ensiaskeleet" + +#: src/Module/Welcome.php:49 +msgid "Friendica Walk-Through" +msgstr "Friendica -läpikäynti" + +#: 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 "" + +#: src/Module/Welcome.php:53 +msgid "Go to Your Settings" +msgstr "Omat Asetukset" + +#: 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 "" + +#: 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 "" + +#: 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 "" + +#: src/Module/Welcome.php:60 +msgid "Edit Your Profile" +msgstr "Muokkaa profiilisi" + +#: 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 "" + +#: src/Module/Welcome.php:62 +msgid "Profile Keywords" +msgstr "Profiilin avainsanat" + +#: 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 "" + +#: src/Module/Welcome.php:65 +msgid "Connecting" +msgstr "Yhdistetään" + +#: src/Module/Welcome.php:67 +msgid "Importing Emails" +msgstr "Sähköpostin tuominen" + +#: 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 "" + +#: src/Module/Welcome.php:69 +msgid "Go to Your Contacts Page" +msgstr "Näytä minun kontaktit" + +#: 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 "" + +#: src/Module/Welcome.php:71 +msgid "Go to Your Site's Directory" +msgstr "Näytä oman sivuston luettelo" + +#: 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 "" + +#: src/Module/Welcome.php:73 +msgid "Finding New People" +msgstr "Kavereiden hankkiminen" + +#: 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 "" + +#: src/Module/Welcome.php:77 +msgid "Add Your Contacts To Circle" +msgstr "" + +#: src/Module/Welcome.php:78 +msgid "" +"Once you have made some friends, organize them into private conversation " +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "" + +#: src/Module/Welcome.php:80 +msgid "Why Aren't My Posts Public?" +msgstr "Miksi julkaisuni eivät ole julkisia?" + +#: 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 "" + +#: src/Module/Welcome.php:83 +msgid "Getting Help" +msgstr "Avun saaminen" + +#: src/Module/Welcome.php:84 +msgid "Go to the Help Section" +msgstr "Näytä ohjeet" + +#: src/Module/Welcome.php:85 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +msgid "{0} wants to follow you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +msgid "{0} has started following you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#, php-format +msgid "%s liked %s's post" +msgstr "%s tykkäsi julkaisusta jonka kirjoitti %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s ei tykännyt julkaisusta jonka kirjoitti %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#, php-format +msgid "%s is attending %s's event" +msgstr "%s osallistuu tapahtumaan jonka järjestää %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#, php-format +msgid "%s is not attending %s's event" +msgstr "%s ei osallistu tapahtumaan jonka järjestää %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#, php-format +msgid "%s may attending %s's event" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s ja %s ovat kavereita" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s kommentoi julkaisuun jonka kirjoitti %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#, php-format +msgid "%s created a new post" +msgstr "%s loi uuden julkaisun" + +#: src/Navigation/Notifications/Factory/Introduction.php:133 +msgid "Friend Suggestion" +msgstr "Kaveriehdotus" + +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "Friend/Connect Request" +msgstr "Ystävä/yhteyspyyntö" + +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "New Follower" +msgstr "Uusi seuraaja" + +#: src/Navigation/Notifications/Factory/Notification.php:134 +#, php-format +msgid "%1$s wants to follow you" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:136 +#, php-format +msgid "%1$s has started following you" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:208 +#, php-format +msgid "%1$s liked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:211 +#, php-format +msgid "%1$s liked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:218 +#, php-format +msgid "%1$s disliked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:221 +#, php-format +msgid "%1$s disliked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:228 +#, php-format +msgid "%1$s shared your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 +#, php-format +msgid "%1$s shared your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:235 +#: src/Navigation/Notifications/Factory/Notification.php:305 +#, php-format +msgid "%1$s shared the post %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:237 +#: src/Navigation/Notifications/Factory/Notification.php:307 +#, php-format +msgid "%1$s shared a post from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:239 +#: src/Navigation/Notifications/Factory/Notification.php:309 +#, php-format +msgid "%1$s shared the post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:311 +#, php-format +msgid "%1$s shared a post" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:249 +#, php-format +msgid "%1$s wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:256 +#, php-format +msgid "%1$s does not want to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:263 +#, php-format +msgid "%1$s maybe wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:270 +#, php-format +msgid "%1$s tagged you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:274 +#, php-format +msgid "%1$s replied to you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:278 +#, php-format +msgid "%1$s commented in your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:282 +#, php-format +msgid "%1$s commented on your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:289 +#, php-format +msgid "%1$s commented in their thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:291 +#, php-format +msgid "%1$s commented in their thread" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:293 +#, php-format +msgid "%1$s commented in the thread %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:295 +#, php-format +msgid "%1$s commented in the thread from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:300 +#, php-format +msgid "%1$s commented on your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 +msgid "[Friendica:Notify]" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:293 +#, php-format +msgid "%s New mail received at %s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:295 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s lähetti sinulle uuden yksityisviestin kohteessa %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:296 +msgid "a private message" +msgstr "yksityisviesti" + +#: src/Navigation/Notifications/Repository/Notify.php:296 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s lähetti sinulle %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:298 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Katso yksityisviestisi kohteessa %s." + +#: src/Navigation/Notifications/Repository/Notify.php:328 +#, php-format +msgid "%1$s commented on %2$s's %3$s %4$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:333 +#, php-format +msgid "%1$s commented on your %2$s %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:337 +#, php-format +msgid "%1$s commented on their %2$s %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 +#, php-format +msgid "%1$s Comment to conversation #%2$d by %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:343 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s kommentoi kohteessa/keskustelussa jota seuraat." + +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Käy %s nähdäksesi keskustelun ja/tai vastataksesi siihen" + +#: src/Navigation/Notifications/Repository/Notify.php:354 +#, php-format +msgid "%s %s posted to your profile wall" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:356 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s kirjoitti seinällesi kohteessa %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:357 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s kirjoitti [url=%2$s]seinällesi[/url]" + +#: src/Navigation/Notifications/Repository/Notify.php:370 +#, php-format +msgid "%s Introduction received" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:372 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Olet vastaanottanut kaverikutsun henkilöltä '%1$s' kohteessa %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:373 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Olet vastaanottanut [url=%1$s]kaverikutsun[/url] henkilöltä %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Voit vierailla hänen profiilissaan kohteessa %s" + +#: src/Navigation/Notifications/Repository/Notify.php:380 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Hyväksy tai hylkää esittely %s-sivustossa" + +#: src/Navigation/Notifications/Repository/Notify.php:387 +#, php-format +msgid "%s A new person is sharing with you" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s jakaa päivityksensä kanssasi kohteessa %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:397 +#, php-format +msgid "%s You have a new follower" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "Sinulla on uusi seuraaja sivustolla %2$s : %1$s" + +#: src/Navigation/Notifications/Repository/Notify.php:413 +#, php-format +msgid "%s Friend suggestion received" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:415 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Sait kaverikutsun henkilöltä '%1$s' (%2$s)" + +#: src/Navigation/Notifications/Repository/Notify.php:416 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Sait [url=%1$s] kaveriehdotuksen[/url] %2$s käyttäjältä %3$s." + +#: src/Navigation/Notifications/Repository/Notify.php:422 +msgid "Name:" +msgstr "Nimi:" + +#: src/Navigation/Notifications/Repository/Notify.php:423 +msgid "Photo:" +msgstr "Kuva:" + +#: src/Navigation/Notifications/Repository/Notify.php:426 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Hyväksy tai hylkää ehdotus %s-sivustossa" + +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 +#, php-format +msgid "%s Connection accepted" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "'%1$s' on hyväksynyt kaverikutsusi kohteessa %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s hyväksyi [url=%1$s]kaverikutsusi[/url]." + +#: src/Navigation/Notifications/Repository/Notify.php:442 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "Olette nyt yhteiset ystävät ja voitte lähettää toisillenne tilapäivityksiä, kuvia ja sähköposteja ilman rajoituksia." + +#: src/Navigation/Notifications/Repository/Notify.php:444 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta." + +#: src/Navigation/Notifications/Repository/Notify.php:457 +#, php-format +msgid "" +"'%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." +msgstr "'%1$s' on hyväksynyt sinut faniksi. Tämä rajoittaa joitain kommunikointitapoja - kuten yksityisviestiettely ja joitain profiilitoimintoja. Jos tämä on julkisuuden henkilö tai yhteisösivu, asetukset on valittu automaattisesti." + +#: src/Navigation/Notifications/Repository/Notify.php:459 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future." +msgstr "'%1$s' voi halutessaan laajentaa suhteenne kahdenväliseksi." + +#: src/Navigation/Notifications/Repository/Notify.php:461 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta." + +#: src/Navigation/Notifications/Repository/Notify.php:471 +msgid "registration request" +msgstr "rekisteröintipyyntö" + +#: src/Navigation/Notifications/Repository/Notify.php:473 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "Olet vastaanottanut rekisteröintipyynnön henkilöltä '%1$s' kohteessa %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:474 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "Olet vastaanottanut [url=%1$s]rekisteröintipyynnön[/url] henkilöltä %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 +#, php-format +msgid "" +"Full Name:\t%s\n" +"Site Location:\t%s\n" +"Login Name:\t%s (%s)" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:485 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Hyväksy tai hylkää pyyntö %s-sivustossa." + +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:780 +#, php-format +msgid "%s %s tagged you" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:783 +#, php-format +msgid "%s %s shared a new post" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "" + +#: src/Object/EMail/ItemCCEMail.php:42 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Viestin lähetti %s Friendica sosiaaliverkoston kautta." + +#: src/Object/EMail/ItemCCEMail.php:44 +#, php-format +msgid "You may visit them online at %s" +msgstr "" + +#: src/Object/EMail/ItemCCEMail.php:45 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "" + +#: src/Object/EMail/ItemCCEMail.php:49 +#, php-format +msgid "%s posted an update." +msgstr "%s julkaisi päivityksen." + +#: src/Object/Post.php:135 +msgid "Private Message" +msgstr "Yksityisviesti" + +#: src/Object/Post.php:139 +msgid "Public Message" +msgstr "" + +#: src/Object/Post.php:143 +msgid "Unlisted Message" +msgstr "" + +#: src/Object/Post.php:178 msgid "This entry was edited" msgstr "Tämä kohde oli muokattu" -#: src/Object/Post.php:187 +#: src/Object/Post.php:206 +msgid "Connector Message" +msgstr "" + +#: src/Object/Post.php:222 src/Object/Post.php:224 +msgid "Edit" +msgstr "Muokkaa" + +#: src/Object/Post.php:248 msgid "Delete globally" msgstr "" -#: src/Object/Post.php:187 +#: src/Object/Post.php:248 msgid "Remove locally" msgstr "" -#: src/Object/Post.php:200 -msgid "save to folder" -msgstr "tallenna kansioon" +#: src/Object/Post.php:266 +#, php-format +msgid "Block %s" +msgstr "" -#: src/Object/Post.php:243 +#: src/Object/Post.php:271 +#, php-format +msgid "Ignore %s" +msgstr "" + +#: src/Object/Post.php:276 +#, php-format +msgid "Collapse %s" +msgstr "" + +#: src/Object/Post.php:281 +msgid "Save to folder" +msgstr "" + +#: src/Object/Post.php:316 msgid "I will attend" msgstr "Osallistun" -#: src/Object/Post.php:243 +#: src/Object/Post.php:316 msgid "I will not attend" msgstr "En aio osallistua" -#: src/Object/Post.php:243 +#: src/Object/Post.php:316 msgid "I might attend" msgstr "Ehkä osallistun" -#: src/Object/Post.php:271 -msgid "add star" -msgstr "lisää tähti" +#: src/Object/Post.php:346 +msgid "Ignore thread" +msgstr "" -#: src/Object/Post.php:272 -msgid "remove star" -msgstr "poista tähti" +#: src/Object/Post.php:347 +msgid "Unignore thread" +msgstr "" -#: src/Object/Post.php:273 -msgid "toggle star status" -msgstr "Tähtitila päälle/pois" +#: src/Object/Post.php:348 +msgid "Toggle ignore status" +msgstr "" -#: src/Object/Post.php:276 -msgid "starred" -msgstr "tähtimerkitty" +#: src/Object/Post.php:358 +msgid "Add star" +msgstr "" -#: src/Object/Post.php:282 -msgid "ignore thread" -msgstr "Sivuuta keskustelu" +#: src/Object/Post.php:359 +msgid "Remove star" +msgstr "" -#: src/Object/Post.php:283 -msgid "unignore thread" -msgstr "Seuraa keskustelua" +#: src/Object/Post.php:360 +msgid "Toggle star status" +msgstr "" -#: src/Object/Post.php:284 -msgid "toggle ignore status" -msgstr "Sivuuta/seuraa" +#: src/Object/Post.php:371 +msgid "Pin" +msgstr "" -#: src/Object/Post.php:293 -msgid "add tag" -msgstr "lisää tägi" - -#: src/Object/Post.php:304 -msgid "like" -msgstr "tykkää" - -#: src/Object/Post.php:305 -msgid "dislike" -msgstr "en tykkää" - -#: src/Object/Post.php:308 -msgid "Share this" -msgstr "Jaa tämä" - -#: src/Object/Post.php:308 -msgid "share" -msgstr "jaa" +#: src/Object/Post.php:372 +msgid "Unpin" +msgstr "" #: src/Object/Post.php:373 +msgid "Toggle pin status" +msgstr "" + +#: src/Object/Post.php:376 +msgid "Pinned" +msgstr "" + +#: src/Object/Post.php:381 +msgid "Add tag" +msgstr "" + +#: src/Object/Post.php:394 +msgid "Quote share this" +msgstr "" + +#: src/Object/Post.php:394 +msgid "Quote Share" +msgstr "" + +#: src/Object/Post.php:397 +msgid "Reshare this" +msgstr "" + +#: src/Object/Post.php:397 +msgid "Reshare" +msgstr "" + +#: src/Object/Post.php:398 +msgid "Cancel your Reshare" +msgstr "" + +#: src/Object/Post.php:398 +msgid "Unshare" +msgstr "" + +#: src/Object/Post.php:449 +#, php-format +msgid "%s (Received %s)" +msgstr "" + +#: src/Object/Post.php:454 +msgid "Comment this item on your system" +msgstr "" + +#: src/Object/Post.php:454 +msgid "Remote comment" +msgstr "" + +#: src/Object/Post.php:475 +msgid "Share via ..." +msgstr "" + +#: src/Object/Post.php:475 +msgid "Share via external services" +msgstr "" + +#: src/Object/Post.php:504 msgid "to" msgstr "henkilölle" -#: src/Object/Post.php:374 +#: src/Object/Post.php:505 msgid "via" msgstr "kautta" -#: src/Object/Post.php:375 +#: src/Object/Post.php:506 msgid "Wall-to-Wall" msgstr "Seinäjulkaisu" -#: src/Object/Post.php:376 +#: src/Object/Post.php:507 msgid "via Wall-To-Wall:" msgstr "seinäjulkaisun kautta" -#: src/Object/Post.php:435 +#: src/Object/Post.php:552 +#, php-format +msgid "Reply to %s" +msgstr "" + +#: src/Object/Post.php:555 +msgid "More" +msgstr "" + +#: src/Object/Post.php:573 +msgid "Notifier task is pending" +msgstr "" + +#: src/Object/Post.php:574 +msgid "Delivery to remote servers is pending" +msgstr "" + +#: src/Object/Post.php:575 +msgid "Delivery to remote servers is underway" +msgstr "" + +#: src/Object/Post.php:576 +msgid "Delivery to remote servers is mostly done" +msgstr "" + +#: src/Object/Post.php:577 +msgid "Delivery to remote servers is done" +msgstr "" + +#: src/Object/Post.php:597 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d kommentti" msgstr[1] "%d kommentteja" -#: src/Object/Post.php:805 -msgid "Bold" -msgstr "Lihavoitu" - -#: src/Object/Post.php:806 -msgid "Italic" -msgstr "Kursivoitu" - -#: src/Object/Post.php:807 -msgid "Underline" -msgstr "Alleviivaus" - -#: src/Object/Post.php:808 -msgid "Quote" -msgstr "Lainaus" - -#: src/Object/Post.php:809 -msgid "Code" -msgstr "Koodi" - -#: src/Object/Post.php:810 -msgid "Image" -msgstr "Kuva" - -#: src/Object/Post.php:811 -msgid "Link" -msgstr "Linkki" - -#: src/Object/Post.php:812 -msgid "Video" -msgstr "Video" - -#: src/App.php:526 -msgid "Delete this item?" -msgstr "Poista tämä kohde?" - -#: src/App.php:528 -msgid "show fewer" -msgstr "näytä vähemmän" - -#: src/App.php:1117 -msgid "No system theme config value set." +#: src/Object/Post.php:598 +msgid "Show more" msgstr "" -#: index.php:464 -msgid "toggle mobile" -msgstr "Mobiilisivusto päälle/pois" - -#: boot.php:796 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "%s päivitys epäonnistui, katso virhelokit." - -#: update.php:193 -#, php-format -msgid "%s: Updating author-id and owner-id in item and thread table. " +#: src/Object/Post.php:599 +msgid "Show fewer" +msgstr "" + +#: src/Object/Post.php:635 +#, php-format +msgid "Reshared by: %s" +msgstr "" + +#: src/Object/Post.php:640 +#, php-format +msgid "Viewed by: %s" +msgstr "" + +#: src/Object/Post.php:645 +#, php-format +msgid "Liked by: %s" +msgstr "" + +#: src/Object/Post.php:650 +#, php-format +msgid "Disliked by: %s" +msgstr "" + +#: src/Object/Post.php:655 +#, php-format +msgid "Attended by: %s" +msgstr "" + +#: src/Object/Post.php:660 +#, php-format +msgid "Maybe attended by: %s" +msgstr "" + +#: src/Object/Post.php:665 +#, php-format +msgid "Not attended by: %s" +msgstr "" + +#: src/Object/Post.php:670 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "" + +#: src/Protocol/OStatus.php:1388 +#, php-format +msgid "%s is now following %s." +msgstr "%s seuraa %s." + +#: src/Protocol/OStatus.php:1389 +msgid "following" +msgstr "seuraa" + +#: src/Protocol/OStatus.php:1392 +#, php-format +msgid "%s stopped following %s." +msgstr "%s ei enää seuraa %s." + +#: src/Protocol/OStatus.php:1393 +msgid "stopped following" +msgstr "ei enää seuraa" + +#: src/Render/FriendicaSmartyEngine.php:56 +#, php-format +msgid "The folder %s must be writable by webserver." +msgstr "" + +#: src/Security/Authentication.php:227 +msgid "Login failed." +msgstr "Kirjautuminen epäonnistui" + +#: src/Security/Authentication.php:272 +msgid "Login failed. Please check your credentials." +msgstr "" + +#: src/Security/Authentication.php:391 +#, php-format +msgid "Welcome %s" +msgstr "" + +#: src/Security/Authentication.php:392 +msgid "Please upload a profile photo." +msgstr "Lataa profiilikuva." + +#: src/Util/EMailer/MailBuilder.php:260 +msgid "Friendica Notification" +msgstr "" + +#: src/Util/EMailer/NotifyMailBuilder.php:78 +#: src/Util/EMailer/SystemMailBuilder.php:54 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "" + +#: src/Util/EMailer/NotifyMailBuilder.php:80 +#: src/Util/EMailer/SystemMailBuilder.php:56 +#, php-format +msgid "%s Administrator" +msgstr "" + +#: 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 "" + +#: src/Util/Temporal.php:172 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: src/Util/Temporal.php:280 +#, php-format +msgid "Time zone: %s Change in Settings" +msgstr "" + +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +msgid "never" +msgstr "" + +#: src/Util/Temporal.php:343 +msgid "less than a second ago" +msgstr "" + +#: src/Util/Temporal.php:352 +msgid "year" +msgstr "" + +#: src/Util/Temporal.php:352 +msgid "years" +msgstr "" + +#: src/Util/Temporal.php:353 +msgid "months" +msgstr "" + +#: src/Util/Temporal.php:354 +msgid "weeks" +msgstr "" + +#: src/Util/Temporal.php:355 +msgid "days" +msgstr "" + +#: src/Util/Temporal.php:356 +msgid "hour" +msgstr "" + +#: src/Util/Temporal.php:356 +msgid "hours" +msgstr "" + +#: src/Util/Temporal.php:357 +msgid "minute" +msgstr "" + +#: src/Util/Temporal.php:357 +msgid "minutes" +msgstr "minuuttia" + +#: src/Util/Temporal.php:358 +msgid "second" +msgstr "" + +#: src/Util/Temporal.php:358 +msgid "seconds" +msgstr "" + +#: src/Util/Temporal.php:367 +#, php-format +msgid "in %1$d %2$s" +msgstr "" + +#: src/Util/Temporal.php:370 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: src/Worker/PushSubscription.php:110 +msgid "Notification from Friendica" +msgstr "" + +#: src/Worker/PushSubscription.php:111 +msgid "Empty Post" +msgstr "" + +#: view/theme/duepuntozero/config.php:68 +msgid "default" +msgstr "" + +#: view/theme/duepuntozero/config.php:69 +msgid "greenzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:70 +msgid "purplezero" +msgstr "" + +#: view/theme/duepuntozero/config.php:71 +msgid "easterbunny" +msgstr "" + +#: view/theme/duepuntozero/config.php:72 +msgid "darkzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:73 +msgid "comix" +msgstr "" + +#: view/theme/duepuntozero/config.php:74 +msgid "slackr" +msgstr "" + +#: view/theme/duepuntozero/config.php:87 +msgid "Variations" +msgstr "" + +#: view/theme/frio/config.php:153 +msgid "Light (Accented)" +msgstr "" + +#: view/theme/frio/config.php:154 +msgid "Dark (Accented)" +msgstr "" + +#: view/theme/frio/config.php:155 +msgid "Black (Accented)" +msgstr "" + +#: view/theme/frio/config.php:167 +msgid "Note" +msgstr "" + +#: view/theme/frio/config.php:167 +msgid "Check image permissions if all users are allowed to see the image" +msgstr "" + +#: view/theme/frio/config.php:173 +msgid "Custom" +msgstr "" + +#: view/theme/frio/config.php:174 +msgid "Legacy" +msgstr "" + +#: view/theme/frio/config.php:175 +msgid "Accented" +msgstr "" + +#: view/theme/frio/config.php:176 +msgid "Select color scheme" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Select scheme accent" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Blue" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Red" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Purple" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Green" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Pink" +msgstr "" + +#: view/theme/frio/config.php:178 +msgid "Copy or paste schemestring" +msgstr "" + +#: view/theme/frio/config.php:178 +msgid "" +"You can copy this string to share your theme with others. Pasting here " +"applies the schemestring" +msgstr "" + +#: view/theme/frio/config.php:179 +msgid "Navigation bar background color" +msgstr "" + +#: view/theme/frio/config.php:180 +msgid "Navigation bar icon color " +msgstr "" + +#: view/theme/frio/config.php:181 +msgid "Link color" +msgstr "" + +#: view/theme/frio/config.php:182 +msgid "Set the background color" +msgstr "" + +#: view/theme/frio/config.php:183 +msgid "Content background opacity" +msgstr "" + +#: view/theme/frio/config.php:184 +msgid "Set the background image" +msgstr "" + +#: view/theme/frio/config.php:185 +msgid "Background image style" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "" + +#: view/theme/frio/config.php:192 +msgid "Login page background image" +msgstr "" + +#: view/theme/frio/config.php:196 +msgid "Login page background color" +msgstr "" + +#: view/theme/frio/config.php:196 +msgid "Leave background image and color empty for theme defaults" +msgstr "" + +#: view/theme/frio/php/Image.php:39 +msgid "Top Banner" +msgstr "" + +#: view/theme/frio/php/Image.php:39 +msgid "" +"Resize image to the width of the screen and show background color below on " +"long pages." +msgstr "" + +#: view/theme/frio/php/Image.php:40 +msgid "Full screen" +msgstr "" + +#: view/theme/frio/php/Image.php:40 +msgid "" +"Resize image to fill entire screen, clipping either the right or the bottom." +msgstr "" + +#: view/theme/frio/php/Image.php:41 +msgid "Single row mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:41 +msgid "" +"Resize image to repeat it on a single row, either vertical or horizontal." +msgstr "" + +#: view/theme/frio/php/Image.php:42 +msgid "Mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:42 +msgid "Repeat image to fill the screen." +msgstr "" + +#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +msgid "Skip to main content" +msgstr "" + +#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +msgid "Back to top" +msgstr "" + +#: view/theme/frio/theme.php:211 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:214 +msgid "Visitor" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Alignment" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Left" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Center" +msgstr "" + +#: view/theme/quattro/config.php:90 +msgid "Color scheme" +msgstr "" + +#: view/theme/quattro/config.php:91 +msgid "Posts font size" +msgstr "" + +#: view/theme/quattro/config.php:92 +msgid "Textareas font size" +msgstr "" + +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" +msgstr "" + +#: view/theme/vier/config.php:131 +msgid "don't show" +msgstr "" + +#: view/theme/vier/config.php:131 +msgid "show" +msgstr "" + +#: view/theme/vier/config.php:137 +msgid "Set style" +msgstr "" + +#: view/theme/vier/config.php:138 +msgid "Community Pages" +msgstr "" + +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +msgid "Community Profiles" +msgstr "" + +#: view/theme/vier/config.php:140 +msgid "Help or @NewHere ?" +msgstr "" + +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +msgid "Connect Services" +msgstr "" + +#: view/theme/vier/config.php:142 +msgid "Find Friends" +msgstr "" + +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +msgid "Last users" +msgstr "" + +#: view/theme/vier/theme.php:234 +msgid "Quick Start" msgstr "" diff --git a/view/lang/fi-fi/strings.php b/view/lang/fi-fi/strings.php index cc02c4d2c..b9cd894a2 100644 --- a/view/lang/fi-fi/strings.php +++ b/view/lang/fi-fi/strings.php @@ -5,571 +5,10 @@ function string_plural_select_fi_fi($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Friendica Notification'] = 'Friendica-huomautus'; -$a->strings['Thank You,'] = 'Kiitos,'; -$a->strings['%s Administrator'] = '%s Ylläpitäjä'; -$a->strings['%1$s, %2$s Administrator'] = '%1$s, %2$s Ylläpitäjä'; -$a->strings['[Friendica:Notify] New mail received at %s'] = '[Friendica:Notify] Uusi viesti, katso %s'; -$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s lähetti sinulle uuden yksityisviestin kohteessa %2$s.'; -$a->strings['a private message'] = 'yksityisviesti'; -$a->strings['%1$s sent you %2$s.'] = '%1$s lähetti sinulle %2$s.'; -$a->strings['Please visit %s to view and/or reply to your private messages.'] = 'Katso yksityisviestisi kohteessa %s.'; -$a->strings['%1$s commented on [url=%2$s]a %3$s[/url]'] = '%1$s kommentoi [url=%2$s] %3$s[/url]'; -$a->strings['[Friendica:Notify] Comment to conversation #%1$d by %2$s'] = '[Friendica:Notify] %2$s kommentoi keskustelussa #%1$d'; -$a->strings['%s commented on an item/conversation you have been following.'] = '%s kommentoi kohteessa/keskustelussa jota seuraat.'; -$a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Käy %s nähdäksesi keskustelun ja/tai vastataksesi siihen'; -$a->strings['[Friendica:Notify] %s posted to your profile wall'] = '[Friendica:Notify] %s kirjoitti profiiliseinällesi'; -$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s kirjoitti seinällesi kohteessa %2$s'; -$a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s kirjoitti [url=%2$s]seinällesi[/url]'; -$a->strings['[Friendica:Notify] %s tagged you'] = '[Friendica:Notify] %s merkitsi sinut'; -$a->strings['%1$s tagged you at %2$s'] = '%1$s merkitsi sinut kohteessa %2$s'; -$a->strings['%1$s [url=%2$s]tagged you[/url].'] = '%1$s [url=%2$s]merkitsi sinut[/url].'; -$a->strings['[Friendica:Notify] %s shared a new post'] = '[Friendica:Notify] %s jakoi uuden julkaisun'; -$a->strings['%1$s shared a new post at %2$s'] = '%1$s jakoi uuden julkaisun %2$s'; -$a->strings['%1$s [url=%2$s]shared a post[/url].'] = '%1$s [url=%2$s]jakoi julkaisun[/url].'; -$a->strings['[Friendica:Notify] %1$s poked you'] = '[Friendica:Notify] %1$s tökkäsi sinua.'; -$a->strings['%1$s poked you at %2$s'] = '%1$s tökkäsi sinua kohteessa %2$s'; -$a->strings['%1$s [url=%2$s]poked you[/url].'] = '%1$s [url=%2$s]tökkasi sinua[/url].'; -$a->strings['[Friendica:Notify] %s tagged your post'] = '[Friendica:Notify] %s merkitsi julkaisusi'; -$a->strings['%1$s tagged your post at %2$s'] = '%1$s merkitsi julkaisusi kohteessa %2$s'; -$a->strings['%1$s tagged [url=%2$s]your post[/url]'] = '%1$s merkitsi [url=%2$s]julkaisusi[/url]'; -$a->strings['[Friendica:Notify] Introduction received'] = '[Friendica:Notify] Esittely vastaanotettu'; -$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Olet vastaanottanut kaverikutsun henkilöltä \'%1$s\' kohteessa %2$s'; -$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Olet vastaanottanut [url=%1$s]kaverikutsun[/url] henkilöltä %2$s.'; -$a->strings['You may visit their profile at %s'] = 'Voit vierailla hänen profiilissaan kohteessa %s'; -$a->strings['Please visit %s to approve or reject the introduction.'] = 'Hyväksy tai hylkää esittely %s-sivustossa'; -$a->strings['[Friendica:Notify] A new person is sharing with you'] = '[Friendica:Notify] Uusi henkilö jakaa päivityksensä kanssasi'; -$a->strings['%1$s is sharing with you at %2$s'] = '%1$s jakaa päivityksensä kanssasi kohteessa %2$s'; -$a->strings['[Friendica:Notify] You have a new follower'] = '[Friendica:Notify] Sinulla on uusi seuraaja'; -$a->strings['You have a new follower at %2$s : %1$s'] = 'Sinulla on uusi seuraaja sivustolla %2$s : %1$s'; -$a->strings['[Friendica:Notify] Friend suggestion received'] = '[Friendica:Notify] Kaveripyyntö vastaanotettu'; -$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = 'Sait kaverikutsun henkilöltä \'%1$s\' (%2$s)'; -$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = 'Sait [url=%1$s] kaveriehdotuksen[/url] %2$s käyttäjältä %3$s.'; -$a->strings['Name:'] = 'Nimi:'; -$a->strings['Photo:'] = 'Kuva:'; -$a->strings['Please visit %s to approve or reject the suggestion.'] = 'Hyväksy tai hylkää ehdotus %s-sivustossa'; -$a->strings['[Friendica:Notify] Connection accepted'] = '[Friendica:Notify] Yhteys hyväksytty'; -$a->strings['\'%1$s\' has accepted your connection request at %2$s'] = '\'%1$s\' on hyväksynyt kaverikutsusi kohteessa %2$s'; -$a->strings['%2$s has accepted your [url=%1$s]connection request[/url].'] = '%2$s hyväksyi [url=%1$s]kaverikutsusi[/url].'; -$a->strings['You are now mutual friends and may exchange status updates, photos, and email without restriction.'] = 'Olette nyt yhteiset ystävät ja voitte lähettää toisillenne tilapäivityksiä, kuvia ja sähköposteja ilman rajoituksia.'; -$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta.'; -$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\' on hyväksynyt sinut faniksi. Tämä rajoittaa joitain kommunikointitapoja - kuten yksityisviestiettely ja joitain profiilitoimintoja. Jos tämä on julkisuuden henkilö tai yhteisösivu, asetukset on valittu automaattisesti.'; -$a->strings['\'%1$s\' may choose to extend this into a two-way or more permissive relationship in the future.'] = '\'%1$s\' voi halutessaan laajentaa suhteenne kahdenväliseksi.'; -$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta.'; -$a->strings['[Friendica System Notify]'] = '[Friendica Järjestelmäilmoitus]'; -$a->strings['registration request'] = 'rekisteröintipyyntö'; -$a->strings['You\'ve received a registration request from \'%1$s\' at %2$s'] = 'Olet vastaanottanut rekisteröintipyynnön henkilöltä \'%1$s\' kohteessa %2$s'; -$a->strings['You\'ve received a [url=%1$s]registration request[/url] from %2$s.'] = 'Olet vastaanottanut [url=%1$s]rekisteröintipyynnön[/url] henkilöltä %2$s.'; -$a->strings['Full Name: %1$s\nSite Location: %2$s\nLogin Name: %3$s (%4$s)'] = 'Koko nimi: %1$s\nSivusto: %2$s\nKäyttäjätunnus: %3$s (%4$s)'; -$a->strings['Please visit %s to approve or reject the request.'] = 'Hyväksy tai hylkää pyyntö %s-sivustossa.'; -$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Päivittäinen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty.', - 1 => 'Päivittäinen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty.', -]; -$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Viikottainen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty.', - 1 => 'Viikottainen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty.', -]; -$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = 'Kuukausittainen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty.'; -$a->strings['Profile Photos'] = 'Profiilin valokuvat'; -$a->strings['event'] = 'tapahtuma'; -$a->strings['status'] = 'tila'; -$a->strings['photo'] = 'kuva'; -$a->strings['%1$s likes %2$s\'s %3$s'] = '%1$s tykkää käyttäjän %2$s %3$s'; -$a->strings['%1$s attends %2$s\'s %3$s'] = '%1$s osallistuu tapahtumaan %3$s, jonka järjestää %2$s'; -$a->strings['%1$s doesn\'t attend %2$s\'s %3$s'] = '%1$s ei osallistu tapahtumaan %3$s, jonka järjestää %2$s'; -$a->strings['%1$s attends maybe %2$s\'s %3$s'] = '%1$s ehkä osallistuu tapahtumaan %3$s, jonka järjestää %2$s'; -$a->strings['%1$s is now friends with %2$s'] = '%1$s ja %2$s ovat kavereita'; -$a->strings['%1$s poked %2$s'] = '%1$s tökkäsi %2$s'; -$a->strings['post/item'] = 'julkaisu/kohde'; -$a->strings['Likes'] = 'Tykkäyksiä'; -$a->strings['Dislikes'] = 'Inhokit'; -$a->strings['Attending'] = [ - 0 => 'Osallistuu', - 1 => 'Osallistuu', -]; -$a->strings['Not attending'] = 'Ei osallistu'; -$a->strings['Might attend'] = 'Ehkä'; -$a->strings['Select'] = 'Valitse'; -$a->strings['Delete'] = 'Poista'; -$a->strings['View %s\'s profile @ %s'] = 'Katso %s-henkilön profiilia @ %s'; -$a->strings['Categories:'] = 'Luokat:'; -$a->strings['Filed under:'] = 'Arkistoitu kansioon:'; -$a->strings['%s from %s'] = '%s sovelluksesta %s'; -$a->strings['View in context'] = 'Näytä kontekstissa'; -$a->strings['Please wait'] = 'Odota'; -$a->strings['remove'] = 'poista'; -$a->strings['Delete Selected Items'] = 'Poista valitut kohteet'; -$a->strings['Follow Thread'] = 'Seuraa ketjua'; -$a->strings['View Status'] = 'Näytä tila'; -$a->strings['View Profile'] = 'Näytä profiilia'; -$a->strings['View Photos'] = 'Näytä kuvia'; -$a->strings['Network Posts'] = 'Uutisvirtajulkaisut'; -$a->strings['View Contact'] = 'Näytä kontaktia'; -$a->strings['Send PM'] = 'Lähetä yksityisviesti'; -$a->strings['Poke'] = 'Tökkää'; -$a->strings['Connect/Follow'] = 'Yhdistä/Seuraa'; -$a->strings['%s likes this.'] = '%s tykkää tästä.'; -$a->strings['%s doesn\'t like this.'] = '%s ei tykkää tästä.'; -$a->strings['%s attends.'] = '%s osallistuu.'; -$a->strings['%s doesn\'t attend.'] = '%s ei osallistu.'; -$a->strings['%s attends maybe.'] = '%s ehkä osallistuu.'; -$a->strings['and'] = 'ja'; -$a->strings['and %d other people'] = 'ja %d muuta ihmistä'; -$a->strings['%2$d people like this'] = '%2$d ihmistä tykkää tästä'; -$a->strings['%s like this.'] = '%s tykkää tästä.'; -$a->strings['%2$d people don\'t like this'] = '%2$d ihmistä ei tykkää tästä.'; -$a->strings['%s don\'t like this.'] = '%s ei tykkää tästä.'; -$a->strings['%2$d people attend'] = '%2$d ihmistä osallistuu'; -$a->strings['%s attend.'] = '%s osallistuu.'; -$a->strings['%2$d people don\'t attend'] = '%2$d ihmistä ei osallistu'; -$a->strings['%s don\'t attend.'] = '%s ei osallistu.'; -$a->strings['%2$d people attend maybe'] = '%2$d ihmistä ehkä osallistuu'; -$a->strings['%s attend maybe.'] = '%s ehkä osallistuu.'; -$a->strings['Visible to everybody'] = 'Näkyy kaikille'; -$a->strings['Please enter a link URL:'] = 'Lisää URL-linkki:'; -$a->strings['Please enter a video link/URL:'] = 'Lisää video URL-linkki:'; -$a->strings['Please enter an audio link/URL:'] = 'Lisää ääni URL-linkki:'; -$a->strings['Tag term:'] = 'Tunniste:'; -$a->strings['Save to Folder:'] = 'Tallenna kansioon:'; -$a->strings['Where are you right now?'] = 'Mikä on sijaintisi?'; -$a->strings['Delete item(s)?'] = 'Poista kohde/kohteet?'; -$a->strings['New Post'] = 'Uusi julkaisu'; -$a->strings['Share'] = 'Jaa'; -$a->strings['Upload photo'] = 'Lähetä kuva'; -$a->strings['upload photo'] = 'lähetä kuva'; -$a->strings['Attach file'] = 'Liitä tiedosto'; -$a->strings['attach file'] = 'liitä tiedosto'; -$a->strings['Insert web link'] = 'Lisää linkki'; -$a->strings['web link'] = 'WWW-linkki'; -$a->strings['Insert video link'] = 'Lisää videolinkki'; -$a->strings['video link'] = 'videolinkki'; -$a->strings['Insert audio link'] = 'Lisää äänilinkki'; -$a->strings['audio link'] = 'äänilinkki'; -$a->strings['Set your location'] = 'Aseta sijaintisi'; -$a->strings['set location'] = 'aseta sijainti'; -$a->strings['Clear browser location'] = 'Tyhjennä selaimen sijainti'; -$a->strings['clear location'] = 'tyhjennä sijainti'; -$a->strings['Set title'] = 'Aseta otsikko'; -$a->strings['Categories (comma-separated list)'] = 'Luokat (pilkuilla eroteltu luettelo)'; -$a->strings['Permission settings'] = 'Käyttöoikeusasetukset'; -$a->strings['permissions'] = 'käyttöoikeudet'; -$a->strings['Public post'] = 'Julkinen viesti'; -$a->strings['Preview'] = 'Esikatselu'; -$a->strings['Cancel'] = 'Peru'; -$a->strings['Post to Groups'] = 'Lähetä ryhmiin'; -$a->strings['Post to Contacts'] = 'Lähetä kontakteille'; -$a->strings['Private post'] = 'Yksityinen julkaisu'; -$a->strings['Message'] = 'Viesti'; -$a->strings['Browser'] = 'Selain'; -$a->strings['View all'] = 'Näytä kaikki'; -$a->strings['Like'] = [ - 0 => 'Tykkäys', - 1 => 'Tykkäyksiä', -]; -$a->strings['Dislike'] = [ - 0 => 'Inhokki', - 1 => 'Inhokit', -]; -$a->strings['Not Attending'] = [ - 0 => 'Ei osallistu', - 1 => 'Ei osallistu', -]; -$a->strings['Undecided'] = [ - 0 => 'En ole varma', - 1 => 'En ole varma', -]; +$a->strings['Unable to locate original post.'] = 'Alkuperäinen julkaisu ei löydy.'; +$a->strings['Empty post discarded.'] = 'Tyhjä julkaisu hylätty.'; $a->strings['Item not found.'] = 'Kohdetta ei löytynyt.'; -$a->strings['Do you really want to delete this item?'] = 'Haluatko varmasti poistaa tämän kohteen?'; -$a->strings['Yes'] = 'Kyllä'; $a->strings['Permission denied.'] = 'Käyttöoikeus evätty.'; -$a->strings['Archives'] = 'Arkisto'; -$a->strings['show more'] = 'näytä lisää'; -$a->strings['Welcome '] = 'Tervetuloa'; -$a->strings['Please upload a profile photo.'] = 'Lataa profiilikuva.'; -$a->strings['Welcome back '] = 'Tervetuloa takaisin'; -$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.'] = 'Lomakkeen turvallisuusavain oli väärin. Tämä voi johtua siitä, että lomake on ollut avoinna liian kauan (>3 tuntia) ennen sen lähettämistä.'; -$a->strings['newer'] = 'uudempi'; -$a->strings['older'] = 'vanhempi'; -$a->strings['first'] = 'ensimmäinen'; -$a->strings['prev'] = 'edellinen'; -$a->strings['next'] = 'seuraava'; -$a->strings['last'] = 'viimeinen'; -$a->strings['Loading more entries...'] = 'Merkinnät ladataan...'; -$a->strings['The end'] = 'Loppu'; -$a->strings['No contacts'] = 'Ei kontakteja'; -$a->strings['%d Contact'] = [ - 0 => '%d kontakti', - 1 => '%d kontakteja', -]; -$a->strings['View Contacts'] = 'Näytä kontaktit'; -$a->strings['Save'] = 'Tallenna'; -$a->strings['Follow'] = 'Seuraa'; -$a->strings['Search'] = 'Haku'; -$a->strings['@name, !forum, #tags, content'] = '@nimi, !foorumi, #tunnisteet, sisältö'; -$a->strings['Full Text'] = 'Koko teksti'; -$a->strings['Tags'] = 'Tunnisteet'; -$a->strings['Contacts'] = 'Yhteystiedot'; -$a->strings['Forums'] = 'Foorumit'; -$a->strings['poke'] = 'töki'; -$a->strings['poked'] = 'tökkäsi'; -$a->strings['ping'] = 'pingaa'; -$a->strings['pinged'] = 'pingasi'; -$a->strings['prod'] = 'töki'; -$a->strings['prodded'] = 'tökkäsi'; -$a->strings['slap'] = 'läimäytä'; -$a->strings['slapped'] = 'läimäsi'; -$a->strings['finger'] = 'näytä keskisormea'; -$a->strings['fingered'] = 'näytti keskisormea'; -$a->strings['rebuff'] = 'torju'; -$a->strings['rebuffed'] = 'torjui'; -$a->strings['Monday'] = 'Maanantai'; -$a->strings['Tuesday'] = 'Tiistai'; -$a->strings['Wednesday'] = 'Keskiviikko'; -$a->strings['Thursday'] = 'Torstai'; -$a->strings['Friday'] = 'Perjantai'; -$a->strings['Saturday'] = 'Lauantai'; -$a->strings['Sunday'] = 'Sunnuntai'; -$a->strings['January'] = 'Tammikuu'; -$a->strings['February'] = 'Helmikuu'; -$a->strings['March'] = 'Maaliskuu'; -$a->strings['April'] = 'Huhtikuu'; -$a->strings['May'] = 'Toukokuu'; -$a->strings['June'] = 'Kesäkuu'; -$a->strings['July'] = 'Heinäkuu'; -$a->strings['August'] = 'Elokuu'; -$a->strings['September'] = 'Syyskuu'; -$a->strings['October'] = 'Lokakuu'; -$a->strings['November'] = 'Marraskuu'; -$a->strings['December'] = 'Joulukuu'; -$a->strings['Mon'] = 'Ma'; -$a->strings['Tue'] = 'Ti'; -$a->strings['Wed'] = 'Ke'; -$a->strings['Thu'] = 'To'; -$a->strings['Fri'] = 'Pe'; -$a->strings['Sat'] = 'La'; -$a->strings['Sun'] = 'Su'; -$a->strings['Jan'] = 'Tam.'; -$a->strings['Feb'] = 'Hel.'; -$a->strings['Mar'] = 'Maa.'; -$a->strings['Apr'] = 'Huh.'; -$a->strings['Jul'] = 'Tou.'; -$a->strings['Aug'] = 'Elo.'; -$a->strings['Sep'] = 'Syy.'; -$a->strings['Oct'] = 'Lok.'; -$a->strings['Nov'] = 'Mar.'; -$a->strings['Dec'] = 'Jou.'; -$a->strings['Content warning: %s'] = 'Sisältövaroitus: %s'; -$a->strings['View Video'] = 'Katso video'; -$a->strings['bytes'] = 'tavua'; -$a->strings['Click to open/close'] = 'Klikkaa auki/kiinni'; -$a->strings['View on separate page'] = 'Katso erillisellä sivulla'; -$a->strings['view on separate page'] = 'katso erillisellä sivulla'; -$a->strings['link to source'] = 'linkki lähteeseen'; -$a->strings['activity'] = 'toiminta'; -$a->strings['comment'] = [ - 0 => 'kommentoi', - 1 => 'kommentoi', -]; -$a->strings['post'] = 'julkaisu'; -$a->strings['Item filed'] = 'Kohde arkistoitu'; -$a->strings['No friends to display.'] = 'Ei näytettäviä kavereita.'; -$a->strings['Connect'] = 'Yhdistä'; -$a->strings['Authorize application connection'] = 'Vahvista sovellusyhteys'; -$a->strings['Return to your app and insert this Securty Code:'] = 'Palaa takaisin sovellukseen ja lisää tämä turvakoodi:'; -$a->strings['Please login to continue.'] = 'Ole hyvä ja kirjaudu jatkaaksesi.'; -$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Haluatko antaa tälle sovellukselle luvan hakea viestejäsi ja yhteystietojasi ja/tai luoda uusia viestejä?'; -$a->strings['No'] = 'Ei'; -$a->strings['You must be logged in to use addons. '] = 'Sinun pitää kirjautua sisään, jotta voit käyttää lisäosia'; -$a->strings['Applications'] = 'Sovellukset'; -$a->strings['No installed applications.'] = 'Ei asennettuja sovelluksia.'; -$a->strings['Item not available.'] = 'Kohde ei saatavilla.'; -$a->strings['Item was not found.'] = 'Kohdetta ei löytynyt.'; -$a->strings['No contacts in common.'] = 'Ei yhteisiä kontakteja.'; -$a->strings['Common Friends'] = 'Yhteisiä kavereita'; -$a->strings['Credits'] = 'Lopputekstit'; -$a->strings['Photos'] = 'Kuvat'; -$a->strings['Contact Photos'] = 'Kontaktin valokuvat'; -$a->strings['Upload'] = 'Lähetä'; -$a->strings['Files'] = 'Tiedostot'; -$a->strings['Not Found'] = 'Ei löydetty'; -$a->strings['No profile'] = 'Ei profiilia'; -$a->strings['Welcome to %s'] = 'Tervetuloa %s'; -$a->strings['Remote privacy information not available.'] = 'Yksityisyyden etätietoja ei saatavilla.'; -$a->strings['Visible to:'] = 'Näkyvissä:'; -$a->strings['System down for maintenance'] = 'Järjestelmä poiskytketty huoltoa varten'; -$a->strings['Welcome to Friendica'] = 'Tervetuloa Friendicaan'; -$a->strings['New Member Checklist'] = 'Uuden jäsenen tarkistuslista'; -$a->strings['Getting Started'] = 'Ensiaskeleet'; -$a->strings['Friendica Walk-Through'] = 'Friendica -läpikäynti'; -$a->strings['Settings'] = 'Asetukset'; -$a->strings['Go to Your Settings'] = 'Omat Asetukset'; -$a->strings['Profile'] = 'Profiili'; -$a->strings['Upload Profile Photo'] = 'Lataa profiilikuva'; -$a->strings['Edit Your Profile'] = 'Muokkaa profiilisi'; -$a->strings['Profile Keywords'] = 'Profiilin avainsanat'; -$a->strings['Connecting'] = 'Yhdistetään'; -$a->strings['Importing Emails'] = 'Sähköpostin tuominen'; -$a->strings['Go to Your Contacts Page'] = 'Näytä minun kontaktit'; -$a->strings['Go to Your Site\'s Directory'] = 'Näytä oman sivuston luettelo'; -$a->strings['Finding New People'] = 'Kavereiden hankkiminen'; -$a->strings['Groups'] = 'Ryhmät'; -$a->strings['Group Your Contacts'] = 'Järjestä kontaktit ryhmiin'; -$a->strings['Why Aren\'t My Posts Public?'] = 'Miksi julkaisuni eivät ole julkisia?'; -$a->strings['Getting Help'] = 'Avun saaminen'; -$a->strings['Go to the Help Section'] = 'Näytä ohjeet'; -$a->strings['Visit %s\'s profile [%s]'] = 'Näytä %s-käyttäjän profiili [%s]'; -$a->strings['Edit contact'] = 'Muokkaa kontaktia'; -$a->strings['Contacts who are not members of a group'] = 'Kontaktit jotka eivät kuulu ryhmään'; -$a->strings['Not Extended'] = 'Ei laajennettu'; -$a->strings['Resubscribing to OStatus contacts'] = 'OStatus -kontaktien uudelleentilaus'; -$a->strings['Error'] = 'Virhe'; -$a->strings['Done'] = 'Valmis'; -$a->strings['Keep this window open until done.'] = 'Pidä tämä ikkuna auki kunnes kaikki tehtävät on suoritettu.'; -$a->strings['Do you really want to delete this suggestion?'] = 'Haluatko varmasti poistaa ehdotuksen?'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Ehdotuksia ei löydy. Jos tämä on uusi sivusto, kokeile uudelleen vuorokauden kuluttua.'; -$a->strings['Ignore/Hide'] = 'Jätä huomiotta/piilota'; -$a->strings['Friend Suggestions'] = 'Ystäväehdotukset'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Sivuston päivittäinen rekisteröintiraja ylitetty. Yritä uudelleen huomenna.'; -$a->strings['Import'] = 'Tuo'; -$a->strings['Move account'] = 'Siirrä tili'; -$a->strings['You can import an account from another Friendica server.'] = 'Voit tuoda käyttäjätilin toiselta Friendica -palvelimelta.'; -$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Tämä on kokeellinen ominaisuus. Emme voi tuoda kontakteja OStatus-verkolta (GNU social/Statusnet) tai Diasporalta.'; -$a->strings['Account file'] = 'Tilitiedosto'; -$a->strings['No keywords to match. Please add keywords to your default profile.'] = 'Avainsanat puuttuu. Lisää avainsanoja oletusprofiiliisi.'; -$a->strings['is interested in:'] = 'on kiinnostunut seuraavista aiheista:'; -$a->strings['Profile Match'] = 'Vastaavien profiilien haku'; -$a->strings['No matches'] = 'Ei täsmääviä profiileja'; -$a->strings['Manage Identities and/or Pages'] = 'Hallitse identiteetit ja/tai sivut'; -$a->strings['Select an identity to manage: '] = 'Valitse identiteetti hallitavaksi:'; -$a->strings['Submit'] = 'Lähetä'; -$a->strings['Invalid request.'] = 'Virheellinen pyyntö.'; -$a->strings['Or - did you try to upload an empty file?'] = 'Yrititkö ladata tyhjän tiedoston?'; -$a->strings['File exceeds size limit of %s'] = 'Tiedosto ylittää kokorajoituksen %s'; -$a->strings['File upload failed.'] = 'Tiedoston lähettäminen epäonnistui.'; -$a->strings['- select -'] = '- valitse -'; -$a->strings['l F d, Y \@ g:i A'] = 'l j.n.Y \@ H:i'; -$a->strings['Time Conversion'] = 'Aikamuunnos'; -$a->strings['UTC time: %s'] = 'UTC-aika: %s'; -$a->strings['Current timezone: %s'] = 'Aikavyöhyke: %s'; -$a->strings['Converted localtime: %s'] = 'Muunnettu paikallisaika: %s'; -$a->strings['Please select your timezone:'] = 'Valitse aikavyöhykkeesi:'; -$a->strings['No more system notifications.'] = 'Ei enää järjestelmäilmoituksia.'; -$a->strings['System Notifications'] = 'Järjestelmäilmoitukset'; -$a->strings['{0} wants to be your friend'] = '{0} lähetti kaveripyynnön'; -$a->strings['{0} sent you a message'] = '{0} lähetti sinulle viestin'; -$a->strings['{0} requested registration'] = '{0} jätti rekisteröintipyynnön'; -$a->strings['Poke/Prod'] = 'Tökkää'; -$a->strings['Recipient'] = 'Vastaanottaja'; -$a->strings['Choose what you wish to do to recipient'] = 'Valitse mitä haluat tehdä vastaanottajalle'; -$a->strings['Make this post private'] = 'Muuta julkaisu yksityiseksi'; -$a->strings['Public access denied.'] = 'Julkinen käyttö estetty.'; -$a->strings['Permission denied'] = 'Käyttöoikeus evätty'; -$a->strings['Invalid profile identifier.'] = 'Virheellinen profiilitunniste.'; -$a->strings['Profile Visibility Editor'] = 'Profiilin näkyvyyden muokkaaminen'; -$a->strings['Click on a contact to add or remove.'] = 'Valitse kontakti, jota haluat poistaa tai lisätä.'; -$a->strings['Visible To'] = 'Näkyvyys'; -$a->strings['Account approved.'] = 'Tili hyväksytty.'; -$a->strings['Please login.'] = 'Ole hyvä ja kirjaudu.'; -$a->strings['Tag removed'] = 'Tägi poistettiin'; -$a->strings['Remove Item Tag'] = 'Poista tägi'; -$a->strings['Select a tag to remove: '] = 'Valitse tägi poistamista varten:'; -$a->strings['Remove'] = 'Poista'; -$a->strings['Export account'] = 'Vie tili'; -$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.'] = 'Vie tilin tiedot ja yhteystiedot. Käytä tätä tilisi varmuuskopiointiin ja/tai siirtämiseen toiselle palvelimelle.'; -$a->strings['Export all'] = 'Vie kaikki'; -$a->strings['Export your accout 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)'] = 'Vie tilin tiedot, yhteystiedot ja kaikki nimikkeesi json-muodossa. Saattaa luoda hyvin suuren tiedoston ja kestää todella pitkään. Tämän avulla voit ottaa täydellisen varmuuskopion tilistäsi (valokuvia ei viedä)'; -$a->strings['Export personal data'] = 'Vie henkilökohtaiset tiedot'; -$a->strings['No contacts.'] = 'Ei kontakteja.'; -$a->strings['Access denied.'] = 'Käyttö estetty.'; -$a->strings['Image exceeds size limit of %s'] = 'Kuva ylittää kokorajoituksen %s'; -$a->strings['Unable to process image.'] = 'Kuvan käsitteleminen epäonnistui.'; -$a->strings['Wall Photos'] = 'Seinäkuvat'; -$a->strings['Image upload failed.'] = 'Kuvan lähettäminen epäonnistui.'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = '%s-käyttäjän päivittäinen seinäviestiraja ylitetty. Viestin lähettäminen epäonnistui.'; -$a->strings['No recipient selected.'] = 'Vastaanottaja puuttuu.'; -$a->strings['Unable to check your home location.'] = 'Kotisijaintisi ei voitu tarkistaa.'; -$a->strings['Message could not be sent.'] = 'Viestiä ei voitu lähettää.'; -$a->strings['Message collection failure.'] = 'Viestin noutaminen epäonnistui.'; -$a->strings['Message sent.'] = 'Viesti lähetetty.'; -$a->strings['No recipient.'] = 'Vastaanottaja puuttuu.'; -$a->strings['Send Private Message'] = 'Lähetä yksityisviesti'; -$a->strings['To:'] = 'Vastaanottaja:'; -$a->strings['Subject:'] = 'Aihe:'; -$a->strings['Your message:'] = 'Viestisi:'; -$a->strings['Login'] = 'Kirjaudu sisään'; -$a->strings['The post was created'] = 'Julkaisu luotu'; -$a->strings['Item not found'] = 'Kohdetta ei löytynyt'; -$a->strings['Edit post'] = 'Muokkaa viestiä'; -$a->strings['CC: email addresses'] = 'Kopio: sähköpostiosoitteet'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Esimerkki: bob@example.com, mary@example.com'; -$a->strings['Contact not found.'] = 'Kontaktia ei ole.'; -$a->strings['Friend suggestion sent.'] = 'Ystäväehdotus lähetettiin.'; -$a->strings['Suggest Friends'] = 'Ehdota ystäviä'; -$a->strings['Suggest a friend for %s'] = 'Ehdota ystävää ystävälle %s'; -$a->strings['Access to this profile has been restricted.'] = 'Pääsy tähän profiiliin on rajoitettu'; -$a->strings['Events'] = 'Tapahtumat'; -$a->strings['View'] = 'Katso'; -$a->strings['Previous'] = 'Edellinen'; -$a->strings['Next'] = 'Seuraava'; -$a->strings['today'] = 'tänään'; -$a->strings['month'] = 'kuukausi'; -$a->strings['week'] = 'viikko'; -$a->strings['day'] = 'päivä'; -$a->strings['list'] = 'luettelo'; -$a->strings['User not found'] = 'Käyttäjää ei löydy'; -$a->strings['This calendar format is not supported'] = 'Tätä kalenteriformaattia ei tueta'; -$a->strings['No exportable data found'] = 'Vientikelpoista dataa ei löytynyt'; -$a->strings['calendar'] = 'kalenteri'; -$a->strings['Network:'] = 'Uutisvirta:'; -$a->strings['%d contact edited.'] = [ - 0 => '%d kontakti muokattu', - 1 => '%d kontakteja muokattu', -]; -$a->strings['Could not access contact record.'] = 'Yhteystietoon ei päästä käsiksi.'; -$a->strings['Could not locate selected profile.'] = 'Valittua profiilia ei löydy.'; -$a->strings['Contact updated.'] = 'Yhteystietopäivitys onnistui.'; -$a->strings['Failed to update contact record.'] = 'Kontaktitietojen päivitys epäonnistui.'; -$a->strings['Contact has been blocked'] = 'Henkilö on estetty'; -$a->strings['Contact has been unblocked'] = 'Henkilö on jälleen sallittu'; -$a->strings['Contact has been ignored'] = 'Henkilöä ei enää huomioida'; -$a->strings['Contact has been unignored'] = 'Henkilö on jälleen huomioituna.'; -$a->strings['Contact has been archived'] = 'Henkilö on arkistoitu.'; -$a->strings['Contact has been unarchived'] = 'Henkilö on otettu pois arkistosta.'; -$a->strings['Drop contact'] = 'Poista kontakti'; -$a->strings['Do you really want to delete this contact?'] = 'Haluatko todella poistaa tämän yhteystiedon?'; -$a->strings['Contact has been removed.'] = 'Yhteystieto on poistettu.'; -$a->strings['You are mutual friends with %s'] = 'Olet kaveri %s kanssa.'; -$a->strings['You are sharing with %s'] = 'Olet jakanut jotakin %s:n kanssa'; -$a->strings['%s is sharing with you'] = '%s jakaa sinulle jotakin.'; -$a->strings['Private communications are not available for this contact.'] = 'Yksityiskeskustelu ei ole käytettävissä tälle henkilölle.'; -$a->strings['Never'] = 'Ei koskaan'; -$a->strings['(Update was successful)'] = '(Päivitys onnistui)'; -$a->strings['(Update was not successful)'] = '(Päivitys epäonnistui)'; -$a->strings['Suggest friends'] = 'Ehdota ystäviä'; -$a->strings['Network type: %s'] = 'Verkkotyyppi: %s'; -$a->strings['Communications lost with this contact!'] = 'Yhteys tähän henkilöön menetettiin!'; -$a->strings['Disabled'] = 'Pois käytöstä'; -$a->strings['Fetch information'] = 'Nouda tiedot'; -$a->strings['Fetch keywords'] = 'Nouda avainsanat'; -$a->strings['Fetch information and keywords'] = 'Nouda tiedot ja avainsanat'; -$a->strings['Disconnect/Unfollow'] = 'Katkaise / Lopeta seuraaminen'; -$a->strings['Contact'] = 'Kontakti'; -$a->strings['Profile Visibility'] = 'Profiilin näkyvyys'; -$a->strings['Please choose the profile you would like to display to %s when viewing your profile securely.'] = 'Valitse profiili, jonka haluat näyttää %s:lle, kun hän haluaa katsoa profiiliasi turvallisesti.'; -$a->strings['Contact Information / Notes'] = 'Yhteystiedot / Muistiinpanot'; -$a->strings['Edit contact notes'] = 'Muokkaa yhteystietojen muistiinpanoja'; -$a->strings['Block/Unblock contact'] = 'Estä/salli henkilö'; -$a->strings['Ignore contact'] = 'Jätä henkilö huomiotta'; -$a->strings['Repair URL settings'] = 'Korjaa URL-asetukset'; -$a->strings['View conversations'] = 'Katso keskusteluja'; -$a->strings['Last update:'] = 'Viimeksi päivitetty:'; -$a->strings['Update public posts'] = 'Päivitä julkiset postaukset'; -$a->strings['Update now'] = 'Päivitä nyt'; -$a->strings['Unblock'] = 'Salli'; -$a->strings['Block'] = 'Estä'; -$a->strings['Unignore'] = 'Ota huomioon'; -$a->strings['Ignore'] = 'Jätä huomiotta'; -$a->strings['Currently blocked'] = 'Estetty tällä hetkellä'; -$a->strings['Currently ignored'] = 'Jätetty huomiotta tällä hetkellä'; -$a->strings['Currently archived'] = 'Arkistoitu tällä hetkellä'; -$a->strings['Awaiting connection acknowledge'] = 'Odotetaan yhteyden kuittausta'; -$a->strings['Hide this contact from others'] = 'Piilota kontakti muilta'; -$a->strings['Notification for new posts'] = 'Uusien postausten ilmoitus'; -$a->strings['Send a notification of every new post of this contact'] = 'Lähetä ilmoitus tälle henkilölle kaikista uusista postauksista'; -$a->strings['Blacklisted keywords'] = 'Kielletyt avainsanat'; -$a->strings['Profile URL'] = 'Profiilin URL'; -$a->strings['Location:'] = 'Sijainti:'; -$a->strings['XMPP:'] = 'XMPP:'; -$a->strings['About:'] = 'Lisätietoja:'; -$a->strings['Tags:'] = 'Tunnisteet:'; -$a->strings['Actions'] = 'Toimenpiteet'; -$a->strings['Status'] = 'Tila'; -$a->strings['Contact Settings'] = 'Yhteystietoasetukset'; -$a->strings['Suggestions'] = 'Ehdotukset'; -$a->strings['Suggest potential friends'] = 'Ehdota mahdollisille ystäville'; -$a->strings['All Contacts'] = 'Kaikki yhteystiedot'; -$a->strings['Show all contacts'] = 'Näytä kaikki yhteystiedot'; -$a->strings['Unblocked'] = 'Sallittu'; -$a->strings['Only show unblocked contacts'] = 'Näytä vain sallitut henkilöt'; -$a->strings['Blocked'] = 'Estetty'; -$a->strings['Only show blocked contacts'] = 'Näytä vain estetyt henkilöt'; -$a->strings['Ignored'] = 'Jätetty huomiotta'; -$a->strings['Only show ignored contacts'] = 'Näytä vain henkilöt, jotka jätetty huomiotta'; -$a->strings['Archived'] = 'Arkistoitu'; -$a->strings['Only show archived contacts'] = 'Näytä vain arkistoidut henkilöt'; -$a->strings['Hidden'] = 'Piilotettu'; -$a->strings['Only show hidden contacts'] = 'Näytä vain piilotetut henkilöt'; -$a->strings['Search your contacts'] = 'Etsi henkilöitä'; -$a->strings['Results for: %s'] = 'Tulokset haulla: %s'; -$a->strings['Find'] = 'Etsi'; -$a->strings['Update'] = 'Päivitä'; -$a->strings['Archive'] = 'Arkistoi'; -$a->strings['Unarchive'] = 'Poista arkistosta'; -$a->strings['Status Messages and Posts'] = 'Statusviestit ja postaukset'; -$a->strings['Profile Details'] = 'Profiilitiedot'; -$a->strings['View all contacts'] = 'Näytä kaikki kontaktit'; -$a->strings['View all common friends'] = 'Näytä kaikki yhteiset kaverit'; -$a->strings['Advanced Contact Settings'] = 'Kontakti-lisäasetukset'; -$a->strings['Mutual Friendship'] = 'Yhteinen kaveruus'; -$a->strings['is a fan of yours'] = 'on fanisi'; -$a->strings['you are a fan of'] = 'fanitat'; -$a->strings['This is you'] = 'Tämä olet sinä'; -$a->strings['Toggle Blocked status'] = 'Estetty tila päälle/pois'; -$a->strings['Toggle Ignored status'] = 'Sivuuta/seuraa'; -$a->strings['Toggle Archive status'] = 'Arkistotila päälle/pois'; -$a->strings['Delete contact'] = 'Poista kontakti'; -$a->strings['Save Settings'] = 'Tallenna asetukset'; -$a->strings['Delegate Page Management'] = 'Delegoi sivunhallinta'; -$a->strings['Delegates'] = 'Valtuutetut'; -$a->strings['Existing Page Delegates'] = 'Sivun valtuutetut'; -$a->strings['Potential Delegates'] = 'Mahdolliset valtuutetut'; -$a->strings['Add'] = 'Lisää'; -$a->strings['No entries.'] = 'Ei kohteita.'; -$a->strings['You must be logged in to use this module'] = 'Sinun pitää kirjautua sisään, jotta voit käyttää tätä moduulia'; -$a->strings['Source URL'] = 'Lähde URL'; -$a->strings['Post successful.'] = 'Viestin lähetys onnistui.'; -$a->strings['Subscribing to OStatus contacts'] = 'OStatus -kontaktien tilaaminen'; -$a->strings['No contact provided.'] = 'Kontakti puuttuu.'; -$a->strings['Couldn\'t fetch information for contact.'] = 'Kontaktin tietoja ei voitu hakea.'; -$a->strings['Couldn\'t fetch friends for contact.'] = 'Ei voitu hakea kontaktin kaverit.'; -$a->strings['success'] = 'onnistui'; -$a->strings['failed'] = 'epäonnistui'; -$a->strings['ignored'] = 'ohitettu'; -$a->strings['Image uploaded but image cropping failed.'] = 'Kuva ladattu mutta kuvan rajaus epäonnistui.'; -$a->strings['Image size reduction [%s] failed.'] = 'Kuvan pienentäminen [%s] epäonnistui.'; -$a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Jos kuva ei näy heti, lataa sivu uudelleen tai tyhjennä selaimen välimuisti.'; -$a->strings['Unable to process image'] = 'Kuvan käsitteleminen epäonnistui'; -$a->strings['Upload File:'] = 'Lähetä tiedosto:'; -$a->strings['Select a profile:'] = 'Valitse profiili:'; -$a->strings['or'] = 'tai'; -$a->strings['skip this step'] = 'ohita tämä vaihe'; -$a->strings['select a photo from your photo albums'] = 'valitse kuva albumeistasi'; -$a->strings['Crop Image'] = 'Rajaa kuva'; -$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Rajaa kuva sopivasti.'; -$a->strings['Done Editing'] = 'Lopeta muokkaus'; -$a->strings['Image uploaded successfully.'] = 'Kuvan lähettäminen onnistui.'; -$a->strings['Contact unfollowed'] = 'Kontaktia ei enää seurata'; -$a->strings['Submit Request'] = 'Lähetä pyyntö'; -$a->strings['You aren\'t a friend of this contact.'] = 'Et ole kontaktin kaveri.'; -$a->strings['Unfollowing is currently not supported by your network.'] = 'Seuraamisen lopettaminen ei tällä hetkellä tueta verkossasi.'; -$a->strings['Your Identity Address:'] = 'Identiteettisi osoite:'; -$a->strings['Gender:'] = 'Sukupuoli:'; -$a->strings['Status:'] = 'Tila:'; -$a->strings['Homepage:'] = 'Kotisivu:'; -$a->strings['Global Directory'] = 'Maailmanlaajuinen hakemisto'; -$a->strings['Results for:'] = 'Tulokset haulla:'; -$a->strings['Site Directory'] = 'Sivuston luettelo'; -$a->strings['People Search - %s'] = 'Käyttäjähaku - %s'; -$a->strings['Forum Search - %s'] = 'Foorumihaku - %s'; -$a->strings['The contact could not be added.'] = 'Kontaktia ei voitu lisätä.'; -$a->strings['You already added this contact.'] = 'Olet jo lisännyt tämän kontaktin.'; -$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Diaspora -tuki ei ole käytössä. Kontaktia ei voi lisätä.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus -tuki ei ole käytössä. Kontaktia ei voi lisätä.'; -$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Verkkotyyppiä ei voitu havaita. Kontaktia ei voitu lisätä.'; -$a->strings['Please answer the following:'] = 'Vastaa seuraavaan:'; -$a->strings['Does %s know you?'] = 'Tunteeko %s sinut?'; -$a->strings['Add a personal note:'] = 'Lisää oma merkintä:'; $a->strings['No valid account found.'] = 'Voimassa olevaa tiliä ei löytynyt.'; $a->strings['Password reset request issued. Check your email.'] = 'Salasanan nollauspyyntö lähetetty. Tarkista sähköpostisi.'; $a->strings['Password reset requested at %s'] = 'Salasanan nollauspyyntö kohteessa %s'; @@ -603,6 +42,768 @@ $a->strings[' Voit vaihtaa salasanasi kirjautumisen jälkeen asetussivulta. '; $a->strings['Your password has been changed at %s'] = 'Salasanasi on vaihdettu sivustolla %s'; +$a->strings['New Message'] = 'Uusi viesti'; +$a->strings['No recipient selected.'] = 'Vastaanottaja puuttuu.'; +$a->strings['Unable to locate contact information.'] = 'Kontaktin tiedot ei löydy.'; +$a->strings['Message could not be sent.'] = 'Viestiä ei voitu lähettää.'; +$a->strings['Message collection failure.'] = 'Viestin noutaminen epäonnistui.'; +$a->strings['Discard'] = 'Hylkää'; +$a->strings['Messages'] = 'Viestit'; +$a->strings['Please enter a link URL:'] = 'Lisää URL-linkki:'; +$a->strings['Send Private Message'] = 'Lähetä yksityisviesti'; +$a->strings['To:'] = 'Vastaanottaja:'; +$a->strings['Subject:'] = 'Aihe:'; +$a->strings['Your message:'] = 'Viestisi:'; +$a->strings['Upload photo'] = 'Lähetä kuva'; +$a->strings['Insert web link'] = 'Lisää linkki'; +$a->strings['Please wait'] = 'Odota'; +$a->strings['Submit'] = 'Lähetä'; +$a->strings['No messages.'] = 'Ei viestejä.'; +$a->strings['Message not available.'] = 'Viesti ei saatavilla.'; +$a->strings['Delete message'] = 'Poista viesti'; +$a->strings['D, d M Y - g:i A'] = 'D, j.n.Y - H:i'; +$a->strings['Delete conversation'] = 'Poista keskustelu'; +$a->strings['Send Reply'] = 'Lähetä vastaus'; +$a->strings['Unknown sender - %s'] = 'Tuntematon lähettäjä - %s'; +$a->strings['You and %s'] = 'Sinä ja %s'; +$a->strings['%s and You'] = '%s ja sinä'; +$a->strings['%d message'] = [ + 0 => '%d viesti', + 1 => '%d viestiä', +]; +$a->strings['Personal Notes'] = 'Henkilökohtaiset tiedot'; +$a->strings['Save'] = 'Tallenna'; +$a->strings['Photo Albums'] = 'Valokuva-albumit'; +$a->strings['Recent Photos'] = 'Viimeaikaisia kuvia'; +$a->strings['Upload New Photos'] = 'Lähetä uusia kuvia'; +$a->strings['everybody'] = 'kaikki'; +$a->strings['Contact information unavailable'] = 'Kontaktin tietoja ei saatavilla'; +$a->strings['Album not found.'] = 'Albumia ei ole.'; +$a->strings['a photo'] = 'valokuva'; +$a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s merkattiin kuvaan %2$s ystävän %3$s toimesta'; +$a->strings['Public access denied.'] = 'Julkinen käyttö estetty.'; +$a->strings['No photos selected'] = 'Ei valittuja kuvia'; +$a->strings['Upload Photos'] = 'Lähetä kuvia'; +$a->strings['New album name: '] = 'Albumin uusi nimi: '; +$a->strings['Do not show a status post for this upload'] = 'Älä näytä tilaviestiä tälle lähetykselle'; +$a->strings['Permissions'] = 'Käyttöoikeudet'; +$a->strings['Do you really want to delete this photo album and all its photos?'] = 'Haluatko varmasti poistaa tämän albumin ja kaikki sen kuvat?'; +$a->strings['Delete Album'] = 'Poista albumi'; +$a->strings['Cancel'] = 'Peru'; +$a->strings['Edit Album'] = 'Muokkaa albumia'; +$a->strings['Show Newest First'] = 'Näytä uusin ensin'; +$a->strings['Show Oldest First'] = 'Näytä vanhin ensin'; +$a->strings['View Photo'] = 'Näytä kuva'; +$a->strings['Permission denied. Access to this item may be restricted.'] = 'Estetty. Tämän kohteen käyttöä on saatettu rajoittaa.'; +$a->strings['Photo not available'] = 'Kuva ei ole saatavilla'; +$a->strings['Do you really want to delete this photo?'] = 'Haluatko varmasti poistaa kuvan?'; +$a->strings['Delete Photo'] = 'Poista valokuva'; +$a->strings['View photo'] = 'Näytä kuva'; +$a->strings['Edit photo'] = 'Muokkaa kuvaa'; +$a->strings['Use as profile photo'] = 'Käytä profiilikuvana'; +$a->strings['View Full Size'] = 'Näytä täysikokoisena'; +$a->strings['Tags: '] = 'Merkinnät:'; +$a->strings['New album name'] = 'Uusi nimi albumille'; +$a->strings['Caption'] = 'Kuvateksti'; +$a->strings['Add a Tag'] = 'Lisää merkintä'; +$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Esimerkki: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'; +$a->strings['Do not rotate'] = 'Älä kierrä'; +$a->strings['Rotate CW (right)'] = 'Käännä oikealle'; +$a->strings['Rotate CCW (left)'] = 'Käännä vasemmalle'; +$a->strings['This is you'] = 'Tämä olet sinä'; +$a->strings['Comment'] = 'Kommentti'; +$a->strings['Preview'] = 'Esikatselu'; +$a->strings['Select'] = 'Valitse'; +$a->strings['Delete'] = 'Poista'; +$a->strings['I like this (toggle)'] = 'Tykkään tästä (vaihda)'; +$a->strings['I don\'t like this (toggle)'] = 'En tykkää tästä (vaihda)'; +$a->strings['Map'] = 'Kartta'; +$a->strings['Delete this item?'] = 'Poista tämä kohde?'; +$a->strings['toggle mobile'] = 'Mobiilisivusto päälle/pois'; +$a->strings['Page not found.'] = 'Sivua ei löytynyt.'; +$a->strings['You must be logged in to use addons. '] = 'Sinun pitää kirjautua sisään, jotta voit käyttää lisäosia'; +$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.'] = 'Lomakkeen turvallisuusavain oli väärin. Tämä voi johtua siitä, että lomake on ollut avoinna liian kauan (>3 tuntia) ennen sen lähettämistä.'; +$a->strings['The contact has been blocked from the node'] = 'Kontakti on estetty tällä solmulla'; +$a->strings['User not found'] = 'Käyttäjää ei löydy'; +$a->strings['Enter new password: '] = 'Syötä uusi salasana:'; +$a->strings['Password update failed. Please try again.'] = 'Salasanan vaihto epäonnistui. Yritä uudelleen.'; +$a->strings['Password changed.'] = 'Salasana vaihdettu.'; +$a->strings['newer'] = 'uudempi'; +$a->strings['older'] = 'vanhempi'; +$a->strings['Frequently'] = 'Usein'; +$a->strings['Hourly'] = 'Tunneittain'; +$a->strings['Twice daily'] = 'Kahdesti päivässä'; +$a->strings['Daily'] = 'Päivittäin'; +$a->strings['Weekly'] = 'Viikottain'; +$a->strings['Monthly'] = 'Kuukausittain'; +$a->strings['OStatus'] = 'OStatus'; +$a->strings['RSS/Atom'] = 'RSS/Atom'; +$a->strings['Email'] = 'Sähköposti'; +$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['Diaspora Connector'] = 'Diaspora -liitin'; +$a->strings['GNU Social Connector'] = 'GNU social -liitin'; +$a->strings['pnut'] = 'pnut'; +$a->strings['and'] = 'ja'; +$a->strings['and %d other people'] = 'ja %d muuta ihmistä'; +$a->strings['Visible to everybody'] = 'Näkyy kaikille'; +$a->strings['Tag term:'] = 'Tunniste:'; +$a->strings['Save to Folder:'] = 'Tallenna kansioon:'; +$a->strings['Where are you right now?'] = 'Mikä on sijaintisi?'; +$a->strings['Delete item(s)?'] = 'Poista kohde/kohteet?'; +$a->strings['New Post'] = 'Uusi julkaisu'; +$a->strings['Share'] = 'Jaa'; +$a->strings['upload photo'] = 'lähetä kuva'; +$a->strings['Attach file'] = 'Liitä tiedosto'; +$a->strings['attach file'] = 'liitä tiedosto'; +$a->strings['Bold'] = 'Lihavoitu'; +$a->strings['Italic'] = 'Kursivoitu'; +$a->strings['Underline'] = 'Alleviivaus'; +$a->strings['Quote'] = 'Lainaus'; +$a->strings['Code'] = 'Koodi'; +$a->strings['Image'] = 'Kuva'; +$a->strings['Link'] = 'Linkki'; +$a->strings['Set your location'] = 'Aseta sijaintisi'; +$a->strings['set location'] = 'aseta sijainti'; +$a->strings['Clear browser location'] = 'Tyhjennä selaimen sijainti'; +$a->strings['clear location'] = 'tyhjennä sijainti'; +$a->strings['Set title'] = 'Aseta otsikko'; +$a->strings['Categories (comma-separated list)'] = 'Luokat (pilkuilla eroteltu luettelo)'; +$a->strings['Permission settings'] = 'Käyttöoikeusasetukset'; +$a->strings['Public post'] = 'Julkinen viesti'; +$a->strings['Message'] = 'Viesti'; +$a->strings['Browser'] = 'Selain'; +$a->strings['View %s\'s profile @ %s'] = 'Katso %s-henkilön profiilia @ %s'; +$a->strings['Categories:'] = 'Luokat:'; +$a->strings['Filed under:'] = 'Arkistoitu kansioon:'; +$a->strings['%s from %s'] = '%s sovelluksesta %s'; +$a->strings['View in context'] = 'Näytä kontekstissa'; +$a->strings['remove'] = 'poista'; +$a->strings['Delete Selected Items'] = 'Poista valitut kohteet'; +$a->strings['General Features'] = 'Yleiset ominaisuudet'; +$a->strings['Photo Location'] = 'Kuvan sijainti'; +$a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'Kuvan metadata poistetaan normaalisti. Tämä ottaa paikkatiedon (jos olemassa) ennen poistoa ja linkittää sen karttaan.'; +$a->strings['Post Composition Features'] = 'Kirjoittamisen ominaisuudet'; +$a->strings['Post/Comment Tools'] = 'Julkaisu/kommentti työkalut'; +$a->strings['Post Categories'] = 'Julkaisuluokat'; +$a->strings['Add categories to your posts'] = 'Luokittele julkaisusi'; +$a->strings['Advanced Profile Settings'] = 'Profiilin lisäasetukset'; +$a->strings['Tag Cloud'] = 'Tunnistepilvi'; +$a->strings['Provide a personal tag cloud on your profile page'] = 'Näytä henkilökohtainen tunnistepilvi profiilisivullasi'; +$a->strings['Display Membership Date'] = 'Näytä liittymispäivämäärä'; +$a->strings['Display membership date in profile'] = 'Näytä liittymispäivämäärä profiilissa'; +$a->strings['show more'] = 'näytä lisää'; +$a->strings['event'] = 'tapahtuma'; +$a->strings['status'] = 'tila'; +$a->strings['photo'] = 'kuva'; +$a->strings['Follow Thread'] = 'Seuraa ketjua'; +$a->strings['View Status'] = 'Näytä tila'; +$a->strings['View Profile'] = 'Näytä profiilia'; +$a->strings['View Photos'] = 'Näytä kuvia'; +$a->strings['Network Posts'] = 'Uutisvirtajulkaisut'; +$a->strings['View Contact'] = 'Näytä kontaktia'; +$a->strings['Send PM'] = 'Lähetä yksityisviesti'; +$a->strings['Block'] = 'Estä'; +$a->strings['Ignore'] = 'Jätä huomiotta'; +$a->strings['Connect/Follow'] = 'Yhdistä/Seuraa'; +$a->strings['Nothing new here'] = 'Täällä ei ole mitään uutta'; +$a->strings['Clear notifications'] = 'Tyhjennä ilmoitukset'; +$a->strings['Logout'] = 'Kirjaudu ulos'; +$a->strings['End this session'] = 'Lopeta istunto'; +$a->strings['Login'] = 'Kirjaudu sisään'; +$a->strings['Sign in'] = 'Kirjaudu sisään'; +$a->strings['Profile'] = 'Profiili'; +$a->strings['Your profile page'] = 'Oma profiilisivu'; +$a->strings['Photos'] = 'Kuvat'; +$a->strings['Your photos'] = 'Omat kuvat'; +$a->strings['Calendar'] = 'Kalenteri'; +$a->strings['Personal notes'] = 'Henkilökohtaiset merkinnät'; +$a->strings['Your personal notes'] = 'Henkilökohtaiset merkintäsi'; +$a->strings['Home'] = 'Koti'; +$a->strings['Home Page'] = 'Kotisivu'; +$a->strings['Register'] = 'Rekisteröidy'; +$a->strings['Create an account'] = 'Luo tili'; +$a->strings['Help'] = 'Ohje'; +$a->strings['Help and documentation'] = 'Ohjeet ja dokmentointi'; +$a->strings['Apps'] = 'Sovellukset'; +$a->strings['Addon applications, utilities, games'] = 'Lisäosa sovelluksia, apuohjelmia, pelejä'; +$a->strings['Search'] = 'Haku'; +$a->strings['Search site content'] = 'Sivustohaku'; +$a->strings['Full Text'] = 'Koko teksti'; +$a->strings['Tags'] = 'Tunnisteet'; +$a->strings['Contacts'] = 'Yhteystiedot'; +$a->strings['Community'] = 'Yhteisö'; +$a->strings['Conversations on this and other servers'] = 'Keskustelut täällä ja muilla palvelimilla'; +$a->strings['Directory'] = 'Luettelo'; +$a->strings['People directory'] = 'Henkilöluettelo'; +$a->strings['Information'] = 'Tietoja'; +$a->strings['Information about this friendica instance'] = 'Lisätietoja tästä Friendica -instanssista'; +$a->strings['Terms of Service'] = 'Käyttöehdot'; +$a->strings['Network'] = 'Uutisvirta'; +$a->strings['Conversations from your friends'] = 'Kavereiden keskustelut'; +$a->strings['Your posts and conversations'] = 'Omat julkaisut ja keskustelut'; +$a->strings['Introductions'] = 'Esittelyt'; +$a->strings['Friend Requests'] = 'Kaveripyynnöt'; +$a->strings['Notifications'] = 'Huomautukset'; +$a->strings['See all notifications'] = 'Näytä kaikki ilmoitukset'; +$a->strings['Mark as seen'] = 'Merkitse luetuksi'; +$a->strings['Private mail'] = 'Yksityinen posti'; +$a->strings['Inbox'] = 'Saapuneet'; +$a->strings['Outbox'] = 'Lähtevät'; +$a->strings['Manage other pages'] = 'Hallitse muita sivuja'; +$a->strings['Settings'] = 'Asetukset'; +$a->strings['Account settings'] = 'Tiliasetukset'; +$a->strings['Manage/edit friends and contacts'] = 'Hallitse/muokkaa kaverit ja kontaktit'; +$a->strings['Admin'] = 'Ylläpitäjä'; +$a->strings['Site setup and configuration'] = 'Sivuston asennus ja asetukset'; +$a->strings['Navigation'] = 'Navigointi'; +$a->strings['Site map'] = 'Sivustokartta'; +$a->strings['Embedding disabled'] = 'Upottaminen poistettu käytöstä'; +$a->strings['Embedded content'] = 'Upotettu sisältö'; +$a->strings['first'] = 'ensimmäinen'; +$a->strings['prev'] = 'edellinen'; +$a->strings['next'] = 'seuraava'; +$a->strings['last'] = 'viimeinen'; +$a->strings['Image/photo'] = 'Kuva/valokuva'; +$a->strings['Click to open/close'] = 'Klikkaa auki/kiinni'; +$a->strings['$1 wrote:'] = '$1 kirjoitti:'; +$a->strings['Encrypted content'] = 'Salattu sisältö'; +$a->strings['Invalid source protocol'] = 'Virheellinen lähdeprotokolla'; +$a->strings['Invalid link protocol'] = 'Virheellinen linkkiprotokolla'; +$a->strings['Loading more entries...'] = 'Merkinnät ladataan...'; +$a->strings['The end'] = 'Loppu'; +$a->strings['Follow'] = 'Seuraa'; +$a->strings['Add New Contact'] = 'Lisää uusi kontakti'; +$a->strings['Enter address or web location'] = 'Syötä verkko-osoite'; +$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Esimerkki: bob@example.com, http://example.com/barbara'; +$a->strings['Connect'] = 'Yhdistä'; +$a->strings['%d invitation available'] = [ + 0 => '%d kutsu saatavilla', + 1 => '%d kutsuja saatavilla', +]; +$a->strings['Find People'] = 'Löydä ihmisiä'; +$a->strings['Enter name or interest'] = 'Syötä nimi tai harrastus'; +$a->strings['Examples: Robert Morgenstein, Fishing'] = 'Esim. Matti Meikäläinen, kalastus yms.'; +$a->strings['Find'] = 'Etsi'; +$a->strings['Friend Suggestions'] = 'Ystäväehdotukset'; +$a->strings['Similar Interests'] = 'Yhteiset harrastukset'; +$a->strings['Random Profile'] = 'Satunnainen profiili'; +$a->strings['Invite Friends'] = 'Kutsu kavereita'; +$a->strings['Global Directory'] = 'Maailmanlaajuinen hakemisto'; +$a->strings['Local Directory'] = 'Paikallinen hakemisto'; +$a->strings['All Contacts'] = 'Kaikki yhteystiedot'; +$a->strings['Saved Folders'] = 'Tallennetut kansiot'; +$a->strings['Everything'] = 'Kaikki'; +$a->strings['Categories'] = 'Luokat'; +$a->strings['%d contact in common'] = [ + 0 => '%d yhteinen kontakti', + 1 => '%d yhteistä kontaktia', +]; +$a->strings['Archives'] = 'Arkisto'; +$a->strings['News'] = 'Uutiset'; +$a->strings['Account Types'] = 'Tilityypit'; +$a->strings['Export'] = 'Vie'; +$a->strings['Export calendar as ical'] = 'Vie kalenteri ical -tiedostona'; +$a->strings['Export calendar as csv'] = 'Vie kalenteri csv-tiedostona'; +$a->strings['No contacts'] = 'Ei kontakteja'; +$a->strings['%d Contact'] = [ + 0 => '%d kontakti', + 1 => '%d kontakteja', +]; +$a->strings['View Contacts'] = 'Näytä kontaktit'; +$a->strings['Remove term'] = 'Poista kohde'; +$a->strings['Saved Searches'] = 'Tallennetut haut'; +$a->strings['XMPP:'] = 'XMPP:'; +$a->strings['Location:'] = 'Sijainti:'; +$a->strings['Network:'] = 'Uutisvirta:'; +$a->strings['Post to Email'] = 'Viesti sähköpostiin'; +$a->strings['CC: email addresses'] = 'Kopio: sähköpostiosoitteet'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Esimerkki: bob@example.com, mary@example.com'; +$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Sinun on ehkä tuotava tiedosto "database.sql" manuaalisesti käyttämällä phpMyAdminia tai MySQL:ää.'; +$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Komentoriviversiota PHP:stä ei löytynyt web-palvelimen PATH:ista.'; +$a->strings['PHP executable path'] = 'Polku PHP-ohjelmaan'; +$a->strings['Enter full path to php executable. You can leave this blank to continue the installation.'] = 'Kirjoita koko polku PHP-ohjelmaan. Voit jättää sen tyhjäksi, jos haluat jatkaa asennusta.'; +$a->strings['Command line PHP'] = 'Komentorivi-PHP'; +$a->strings['Found PHP version: '] = 'PHP-versio löydetty:'; +$a->strings['PHP cli binary'] = 'PHP cli -binääritiedosto'; +$a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'Järjestelmäsi komentorivi-PHP:ssä ei ole käytössä asetusta "register_argc_argv".'; +$a->strings['This is required for message delivery to work.'] = 'Asetus vaaditaan viestien lähettämiseen.'; +$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'] = 'Virhe: järjestelmäsi "openssl_pkey_new" -funktio ei pysty generoimaan salausavaimia.'; +$a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'Jos on kyse Windows-pavelimesta, katso "http://www.php.net/manual/en/openssl.installation.php".'; +$a->strings['Generate encryption keys'] = 'Luo salausavaimet'; +$a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Virhe: Apache-palvelimen mod-rewrite -moduuli vaaditaan, mutta sitä ei ole asennettu.'; +$a->strings['Apache mod_rewrite module'] = 'Apache mod_rewrite -moduuli'; +$a->strings['Error: PDO or MySQLi PHP module required but not installed.'] = 'Virhe: PDO tai MySQLi PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.'; +$a->strings['Error: The MySQL driver for PDO is not installed.'] = 'Virhe: PDO:n MySQL-ajuri ei ole asennettu'; +$a->strings['PDO or MySQLi PHP module'] = 'PDO tai MySQLi PHP-moduuli'; +$a->strings['Error, XML PHP module required but not installed.'] = 'Virhe: XML PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.'; +$a->strings['XML PHP module'] = 'XML PHP-moduuli'; +$a->strings['libCurl PHP module'] = 'PHP-moduuli libCurl'; +$a->strings['Error: libCURL PHP module required but not installed.'] = 'Virhe: libCURL PHP -moduuli vaaditaan, mutta sitä ei ole asennettu.'; +$a->strings['GD graphics PHP module'] = 'PHP-moduuli GD graphics'; +$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Virhe: GD graphics PHP -moduuli JPEG-tuella vaaditaan, mutta sitä ei ole asennettu.'; +$a->strings['OpenSSL PHP module'] = 'PHP-moduuli OpenSSL'; +$a->strings['Error: openssl PHP module required but not installed.'] = 'Virhe: openssl PHP -moduuli vaaditaan, mutta sitä ei ole asennettu.'; +$a->strings['mb_string PHP module'] = 'PHP-moduuli mb_string'; +$a->strings['Error: mb_string PHP module required but not installed.'] = 'Virhe: PHP-moduuli mb_string vaaditaan, mutta sitä ei ole asennettu.'; +$a->strings['iconv PHP module'] = 'iconv PHP-moduuli'; +$a->strings['Error: iconv PHP module required but not installed.'] = 'Virhe: iconv PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.'; +$a->strings['POSIX PHP module'] = 'POSIX PHP-moduuli'; +$a->strings['Error: POSIX PHP module required but not installed.'] = 'Virhe: POSIX PHP-moduuli vaadittaan, mutta sitä ei ole asennettu.'; +$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.'] = 'Tämä on yleensä käyttöoikeusasetus, jolloin web-palvelimesi ei pysty kirjoittamaan tiedostoja kansioosi, vaikka itse siihen pystyisit.'; +$a->strings['view/smarty3 is writable'] = 'view/smarty3 on kirjoitettava'; +$a->strings['Url rewrite is working'] = 'URL-osoitteen uudellenkirjoitus toimii'; +$a->strings['ImageMagick PHP extension is not installed'] = 'ImageMagick PHP-laajennus ei ole asetettu'; +$a->strings['ImageMagick PHP extension is installed'] = 'ImageMagick PHP-laajennus on asetettu'; +$a->strings['ImageMagick supports GIF'] = 'ImageMagik tukee GIF-formaattia'; +$a->strings['Database already in use.'] = 'Tietokanta on jo käytössä.'; +$a->strings['Could not connect to database.'] = 'Tietokantaan ei saada yhteyttä.'; +$a->strings['Monday'] = 'Maanantai'; +$a->strings['Tuesday'] = 'Tiistai'; +$a->strings['Wednesday'] = 'Keskiviikko'; +$a->strings['Thursday'] = 'Torstai'; +$a->strings['Friday'] = 'Perjantai'; +$a->strings['Saturday'] = 'Lauantai'; +$a->strings['Sunday'] = 'Sunnuntai'; +$a->strings['January'] = 'Tammikuu'; +$a->strings['February'] = 'Helmikuu'; +$a->strings['March'] = 'Maaliskuu'; +$a->strings['April'] = 'Huhtikuu'; +$a->strings['May'] = 'Toukokuu'; +$a->strings['June'] = 'Kesäkuu'; +$a->strings['July'] = 'Heinäkuu'; +$a->strings['August'] = 'Elokuu'; +$a->strings['September'] = 'Syyskuu'; +$a->strings['October'] = 'Lokakuu'; +$a->strings['November'] = 'Marraskuu'; +$a->strings['December'] = 'Joulukuu'; +$a->strings['Mon'] = 'Ma'; +$a->strings['Tue'] = 'Ti'; +$a->strings['Wed'] = 'Ke'; +$a->strings['Thu'] = 'To'; +$a->strings['Fri'] = 'Pe'; +$a->strings['Sat'] = 'La'; +$a->strings['Sun'] = 'Su'; +$a->strings['Jan'] = 'Tam.'; +$a->strings['Feb'] = 'Hel.'; +$a->strings['Mar'] = 'Maa.'; +$a->strings['Apr'] = 'Huh.'; +$a->strings['Jun'] = 'Kes.'; +$a->strings['Jul'] = 'Tou.'; +$a->strings['Aug'] = 'Elo.'; +$a->strings['Sep'] = 'Syy.'; +$a->strings['Oct'] = 'Lok.'; +$a->strings['Nov'] = 'Mar.'; +$a->strings['Dec'] = 'Jou.'; +$a->strings['Update %s failed. See error logs.'] = '%s päivitys epäonnistui, katso virhelokit.'; +$a->strings[' + The friendica developers released update %s recently, + but when I tried to install it, something went terribly wrong. + This needs to be fixed soon and I can\'t do it alone. Please contact a + friendica developer if you can not help me on your own. My database might be invalid.'] = ' + Friendican kehittäjät askettäin julkaisi %s-päivityksen, + mutta asennuksessa jotain meni pahasti pieleen. + Tämä on korjattava pian, ja en voi korjata sitä itse. Ota yhteyttä + Friendica -kehittäjään jos et voi auttaa. Tietokantani saattaa olla virheellinen.'; +$a->strings[' +Error %d occurred during database update: +%s +'] = ' +%d virhe tapahtui tietokannan päivityksen aikana: +%s +'; +$a->strings['Errors encountered performing database changes: '] = 'Tietokannan muokkauksessa tapahtui virheitä:'; +$a->strings['%s: Database update'] = '%s: Tietokantapäivitys'; +$a->strings['%s: updating %s table.'] = '%s: päivitetään %s-taulukkoa.'; +$a->strings['Everybody'] = 'Kaikki'; +$a->strings['edit'] = 'muokkaa'; +$a->strings['add'] = 'lisää'; +$a->strings['Approve'] = 'Hyväksy'; +$a->strings['Organisation'] = 'Järjestö'; +$a->strings['Disallowed profile URL.'] = 'Kielletty profiiliosoite.'; +$a->strings['Blocked domain'] = 'Estetty verkkotunnus'; +$a->strings['Connect URL missing.'] = 'Yhteys URL-linkki puuttuu.'; +$a->strings['The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.'] = 'Kontaktia ei pystytty lisäämään. Tarkista verkkoasetukset omista asetuksistasi (Settings -> Social Networks).'; +$a->strings['The profile address specified does not provide adequate information.'] = 'Annettu profiiliosoite ei sisällä riittävästi tietoa.'; +$a->strings['No compatible communication protocols or feeds were discovered.'] = 'Yhteensopivia viestintäprotokolleja tai syötteitä ei löytynyt.'; +$a->strings['An author or name was not found.'] = 'Julkaisija tai nimi puuttuu.'; +$a->strings['Use mailto: in front of address to force email check.'] = 'Käytä "mailto:" osoitteen edessä pakottaaksesi sähköpostin tarkastuksen.'; +$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Profiilin osoite kuuluu verkkoon, joka on poistettu tältä sivustolta.'; +$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Rajoitettu profiili. Tämä henkilö ei pysty/tule saamaan suoria/henkilökohtaisia ilmoituksia sinulta.'; +$a->strings['Unable to retrieve contact information.'] = 'Kontaktin tietoja ei voitu hakea.'; +$a->strings['Starts:'] = 'Alkaa:'; +$a->strings['Finishes:'] = 'Päättyy:'; +$a->strings['all-day'] = 'koko päivä'; +$a->strings['Sept'] = 'Syy.'; +$a->strings['today'] = 'tänään'; +$a->strings['month'] = 'kuukausi'; +$a->strings['week'] = 'viikko'; +$a->strings['day'] = 'päivä'; +$a->strings['No events to display'] = 'Ei näytettäviä tapahtumia.'; +$a->strings['Access to this profile has been restricted.'] = 'Pääsy tähän profiiliin on rajoitettu'; +$a->strings['l, F j'] = 'l, F j'; +$a->strings['Edit event'] = 'Muokkaa tapahtumaa'; +$a->strings['Duplicate event'] = 'Monista tapahtuma'; +$a->strings['Delete event'] = 'Poista tapahtuma'; +$a->strings['l F d, Y \@ g:i A'] = 'l j.n.Y \@ H:i'; +$a->strings['D g:i A'] = 'D H:i'; +$a->strings['g:i A'] = 'H:i'; +$a->strings['Show map'] = 'Näytä kartta'; +$a->strings['Hide map'] = 'Piilota kartta'; +$a->strings['%s\'s birthday'] = '%s: syntymäpäivä'; +$a->strings['Happy Birthday %s'] = 'Hyvää syntymäpäivää %s'; +$a->strings['activity'] = 'toiminta'; +$a->strings['post'] = 'julkaisu'; +$a->strings['Content warning: %s'] = 'Sisältövaroitus: %s'; +$a->strings['bytes'] = 'tavua'; +$a->strings['View on separate page'] = 'Katso erillisellä sivulla'; +$a->strings['[no subject]'] = '[ei aihetta]'; +$a->strings['Wall Photos'] = 'Seinäkuvat'; +$a->strings['Edit profile'] = 'Muokkaa profiilia'; +$a->strings['Change profile photo'] = 'Vaihda profiilikuva'; +$a->strings['Homepage:'] = 'Kotisivu:'; +$a->strings['About:'] = 'Lisätietoja:'; +$a->strings['Atom feed'] = 'Atom -syöte'; +$a->strings['F d'] = 'F d'; +$a->strings['[today]'] = '[tänään]'; +$a->strings['Birthday Reminders'] = 'Syntymäpäivämuistutukset'; +$a->strings['Birthdays this week:'] = 'Syntymäpäiviä tällä viikolla:'; +$a->strings['g A l F d'] = 'g A l F d'; +$a->strings['[No description]'] = '[Ei kuvausta]'; +$a->strings['Event Reminders'] = 'Tapahtumamuistutukset'; +$a->strings['Hometown:'] = 'Kotikaupunki:'; +$a->strings['Sexual Preference:'] = 'Seksuaalinen suuntautuminen:'; +$a->strings['Political Views:'] = 'Politiikka:'; +$a->strings['Religious Views:'] = 'Uskonto:'; +$a->strings['Likes:'] = 'Tykkäykset:'; +$a->strings['Dislikes:'] = 'Ei tykkää:'; +$a->strings['Title/Description:'] = 'Otsikko/kuvaus:'; +$a->strings['Summary'] = 'Yhteenveto'; +$a->strings['Musical interests'] = 'Musiikki'; +$a->strings['Books, literature'] = 'Kirjat, kirjallisuus'; +$a->strings['Television'] = 'Televisio'; +$a->strings['Film/dance/culture/entertainment'] = 'Elokuvat/tanssi/kulttuuri/viihde'; +$a->strings['Hobbies/Interests'] = 'Harrastukset'; +$a->strings['Love/romance'] = 'Rakkaus/romanssi'; +$a->strings['Work/employment'] = 'Työ:'; +$a->strings['School/education'] = 'Koulutus:'; +$a->strings['Contact information and Social Networks'] = 'Yhteystiedot ja sosiaalinen media'; +$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'VAKAVA VIRHE: Salausavainten luominen epäonnistui.'; +$a->strings['Login failed'] = 'Kirjautuminen epäonnistui'; +$a->strings['Not enough information to authenticate'] = 'Ei tarpeeksi tietoja kirjautumiseen'; +$a->strings['Password can\'t be empty'] = 'Salasanakenttä ei voi olla tyhjä'; +$a->strings['Passwords do not match. Password unchanged.'] = 'Salasanat eivät täsmää. Salasana ennallaan.'; +$a->strings['An invitation is required.'] = 'Vaaditaa kutsu.'; +$a->strings['Invitation could not be verified.'] = 'Kutsua ei voitu vahvistaa.'; +$a->strings['Invalid OpenID url'] = 'Virheellinen OpenID url-osoite'; +$a->strings['We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.'] = 'Kohtasimme ongelman antamasi OpenID:n kanssa. Ole hyvä ja tarkista ID:n oikea kirjoitusasu.'; +$a->strings['The error message was:'] = 'Virheviesti oli:'; +$a->strings['Please enter the required information.'] = 'Syötä tarvittavat tiedot.'; +$a->strings['That doesn\'t appear to be your full (First Last) name.'] = 'Tuo ei vakuta täydeltä nimeltäsi (Etunimi Sukunimi).'; +$a->strings['Your email domain is not among those allowed on this site.'] = 'Sähköpostiosoitteesi verkkotunnus on tämän sivuston estolistalla.'; +$a->strings['Not a valid email address.'] = 'Virheellinen sähköpostiosoite.'; +$a->strings['Cannot use that email.'] = 'Sähköpostiosoitetta ei voitu käyttää.'; +$a->strings['Your nickname can only contain a-z, 0-9 and _.'] = 'Nimimerkki voi sisältää a-z, 0-9 ja _.'; +$a->strings['Nickname is already registered. Please choose another.'] = 'Valitsemasi nimimerkki on jo käytössä. Valitse toinen nimimerkki.'; +$a->strings['An error occurred during registration. Please try again.'] = 'Rekisteröityminen epäonnistui. Yritä uudelleen.'; +$a->strings['An error occurred creating your default profile. Please try again.'] = 'Oletusprofiilin luominen epäonnistui. Yritä uudelleen.'; +$a->strings['An error occurred creating your self contact. Please try again.'] = 'Yhteystietojesi luonti epäonnistui. Yritä uudelleen.'; +$a->strings['Friends'] = 'Kaverit'; +$a->strings['Profile Photos'] = 'Profiilin valokuvat'; +$a->strings['Registration at %s'] = 'Rekisteröityminen kohteessa %s'; +$a->strings['Addon %s disabled.'] = 'Lisäosa %s poistettu käytöstä.'; +$a->strings['Addon %s enabled.'] = 'Lisäosa %s käytössä.'; +$a->strings['Disable'] = 'Poista käytöstä'; +$a->strings['Enable'] = 'Ota käyttöön'; +$a->strings['Administration'] = 'Ylläpito'; +$a->strings['Addons'] = 'Lisäosat'; +$a->strings['Toggle'] = 'Vaihda'; +$a->strings['Author: '] = 'Tekijä'; +$a->strings['Maintainer: '] = 'Ylläpitäjä:'; +$a->strings['Save Settings'] = 'Tallenna asetukset'; +$a->strings['Database structure update %s was successfully applied.'] = 'Tietokannan rakenteen %s-päivitys onnistui.'; +$a->strings['Executing of database structure update %s failed with error: %s'] = 'Tietokannan rakennepäivitys %s epäonnistui virheviestillä %s'; +$a->strings['Update %s was successfully applied.'] = '%s-päivitys onnistui.'; +$a->strings['No failed updates.'] = 'Ei epäonnistuineita päivityksiä.'; +$a->strings['Check database structure'] = 'Tarkista tietokannan rakenne'; +$a->strings['Failed Updates'] = 'Epäonnistuineita päivityksiä'; +$a->strings['Lock feature %s'] = 'Lukitse ominaisuus %s'; +$a->strings['Manage Additional Features'] = 'Hallitse lisäominaisuudet'; +$a->strings['Other'] = 'Toinen'; +$a->strings['unknown'] = 'tuntematon'; +$a->strings['Federation Statistics'] = 'Liiton tilastotiedot'; +$a->strings['PHP log currently enabled.'] = 'PHP-loki käytössä'; +$a->strings['PHP log currently disabled.'] = 'PHP-loki pois käytöstä'; +$a->strings['Logs'] = 'Lokit'; +$a->strings['Clear'] = 'Tyhjennä'; +$a->strings['Enable Debugging'] = 'Ota virheenkorjaustila käyttöön'; +$a->strings['Log file'] = 'Lokitiedosto'; +$a->strings['Log level'] = 'Lokitaso'; +$a->strings['PHP logging'] = 'PHP-loki'; +$a->strings['View Logs'] = 'Katso lokit'; +$a->strings['Show all'] = 'Näytä kaikki'; +$a->strings['Event details'] = 'Tapahtuman tiedot'; +$a->strings['Created'] = 'Luotu'; +$a->strings['No special theme for mobile devices'] = 'Ei mobiiliteemaa'; +$a->strings['%s - (Experimental)'] = '%s - (Kokeellinen)'; +$a->strings['No community page'] = 'Ei yhteisösivua'; +$a->strings['Public postings from users of this site'] = 'Julkiset julkaisut tämän sivuston käyttäjiltä'; +$a->strings['Public postings from the federated network'] = 'Julkiset julkaisut liittoutuneelta verkolta'; +$a->strings['Public postings from local users and the federated network'] = 'Julkiset julkaisut tältä sivustolta ja liittoutuneelta verkolta'; +$a->strings['Multi user instance'] = 'Monen käyttäjän instanssi'; +$a->strings['Closed'] = 'Suljettu'; +$a->strings['Requires approval'] = 'Edellyttää hyväksyntää'; +$a->strings['Open'] = 'Avoin'; +$a->strings['Don\'t check'] = 'Älä tarkista'; +$a->strings['Site'] = 'Sivusto'; +$a->strings['Registration'] = 'Rekisteröityminen'; +$a->strings['File upload'] = 'Tiedoston lataus'; +$a->strings['Policies'] = 'Käytännöt'; +$a->strings['Performance'] = 'Suoritus'; +$a->strings['Worker'] = 'Worker'; +$a->strings['Message Relay'] = 'Viestirele'; +$a->strings['Site name'] = 'Sivuston nimi'; +$a->strings['Sender Email'] = 'Lähettäjän sähköposti'; +$a->strings['The email address your server shall use to send notification emails from.'] = 'Lähettäjän sähköpostiosoite palvelimen ilmoitussähköposteissa.'; +$a->strings['Banner/Logo'] = 'Banneri/logo'; +$a->strings['Shortcut icon'] = 'Pikakuvake'; +$a->strings['Link to an icon that will be used for browsers.'] = 'Linkki kuvakkeeseen jota selaimet saa käyttää.'; +$a->strings['Touch icon'] = 'Kosketusnäyttökuvake'; +$a->strings['Link to an icon that will be used for tablets and mobiles.'] = 'Linkki kuvakkeeseen jota tabletit ja matkapuhelimet saa käyttää.'; +$a->strings['Additional Info'] = 'Lisätietoja'; +$a->strings['System language'] = 'Järjestelmän kieli'; +$a->strings['System theme'] = 'Järjestelmäteema'; +$a->strings['Mobile system theme'] = 'Mobiili järjestelmäteema'; +$a->strings['Theme for mobile devices'] = 'Mobiiliteema'; +$a->strings['Force SSL'] = 'Pakoita SSL-yhteyden käyttöä'; +$a->strings['Single user instance'] = 'Yksittäisen käyttäjän instanssi'; +$a->strings['Maximum image size'] = 'Suurin kuvakoko'; +$a->strings['Maximum image length'] = 'Suurin kuvapituus'; +$a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Ladattavan kuvatiedoston enimmäispituus pikseleinä. Oletusarvo on -1, eli ei enimmäispituutta.'; +$a->strings['JPEG image quality'] = 'JPEG-kuvanlaatu'; +$a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = 'Ladatut JPEG-kuvat tallennetaan tällä laatuasetuksella [0-100]. Oletus on 100, eli korkein laatu.'; +$a->strings['Register policy'] = 'Rekisteröintipolitiikka'; +$a->strings['Maximum Daily Registrations'] = 'Päivittäinen rekisteröitymisraja'; +$a->strings['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.'] = 'Mikäli rekisteröityminen on sallittu, tämä asettaa enimmäismäärä uusia rekisteröitymisiä päivässä. Jos reksiteröityminen ei ole sallittu, tällä asetuksella ei ole vaikutusta.'; +$a->strings['Register text'] = 'Rekisteröitymisteksti'; +$a->strings['Will be displayed prominently on the registration page. You can use BBCode here.'] = 'Näkyvästi esillä rekisteröitymissivulla. Voit käyttää BBCodeia.'; +$a->strings['Accounts abandoned after x days'] = 'Käyttäjätilit hylätään X päivän jälkeen'; +$a->strings['Allowed friend domains'] = 'Sallittuja kaveri-verkkotunnuksia'; +$a->strings['Allowed email domains'] = 'Sallittuja sähköposti-verkkotunnuksia'; +$a->strings['Block public'] = 'Estä vierailijat'; +$a->strings['Global directory URL'] = 'Maailmanlaajuisen hakemiston URL-osoite'; +$a->strings['Don\'t include post content in email notifications'] = 'Älä lisää julkaisun sisältö sähköposti-ilmoitukseen'; +$a->strings['Don\'t embed private images in posts'] = 'Älä upota yksityisiä kuvia julkaisuissa'; +$a->strings['Community pages for visitors'] = 'Yhteisösivu vieraille'; +$a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Diaspora -tukea ei voitu ottaa käyttöön koska Friendica on asennettu alihakemistoon.'; +$a->strings['Enable Diaspora support'] = 'Salli Diaspora-tuki'; +$a->strings['Verify SSL'] = 'Vahvista SSL'; +$a->strings['Proxy user'] = 'Välityspalvelimen käyttäjä'; +$a->strings['Proxy URL'] = 'Välityspalvelimen osoite'; +$a->strings['Network timeout'] = 'Verkon aikakatkaisu'; +$a->strings['Maximum Load Average'] = 'Kuorman enimmäiskeksiarvo'; +$a->strings['Discover contacts from other servers'] = 'Etsi kontakteja muilta palvelimilta'; +$a->strings['Search the local directory'] = 'Paikallisluettelohaku'; +$a->strings['Publish server information'] = 'Julkaise palvelintiedot'; +$a->strings['Suppress Tags'] = 'Piilota tunnisteet'; +$a->strings['Suppress showing a list of hashtags at the end of the posting.'] = 'Piilota tunnistelista julkaisun lopussa.'; +$a->strings['Clean database'] = 'Siivoa tietokanta'; +$a->strings['Maximum numbers of comments per post'] = 'Julkaisun kommentiraja'; +$a->strings['Temp path'] = 'Väliaikaistiedostojen polku'; +$a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Mikäli verkkopalvelimesi ei voi käyttää järjestelmän väliaikaistiedostojen polkua, syötä toinen polku tähän.'; +$a->strings['Only search in tags'] = 'Tunnistehaku'; +$a->strings['Maximum number of parallel workers'] = 'Enimmäismäärä rinnakkaisia workereitä'; +$a->strings['Enable fastlane'] = 'Käytä fastlane'; +$a->strings['Direct relay transfer'] = 'Suora releen siirto'; +$a->strings['Relay scope'] = 'Relen soveltamisala'; +$a->strings['Disabled'] = 'Pois käytöstä'; +$a->strings['all'] = 'kaikki'; +$a->strings['tags'] = 'tunnisteet'; +$a->strings['Server tags'] = 'palvelintunnisteet'; +$a->strings['Allow user tags'] = 'Salli käyttäjien tunnisteet'; +$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.'] = 'Tietokannan päivitys epäonnistui. Suorita komento "php bin/console.php dbstructure update" komentoriviltä ja lue mahdolliset virheviestit.'; +$a->strings['The worker was never executed. Please check your database structure!'] = 'Workeriä ei ole otettu käyttöön. Tarkista tietokantasi rakenne!'; +$a->strings['The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings.'] = 'Viimeisin worker -käynnistys tapahtui klo %s UTC, eli yli tunti sitten. Tarkista crontab -asetukset.'; +$a->strings['Message queues'] = 'Viestijonot'; +$a->strings['Version'] = 'Versio'; +$a->strings['Active addons'] = 'Käytössäolevat lisäosat'; +$a->strings['Screenshot'] = 'Kuvakaappaus'; +$a->strings['Themes'] = 'Teemat'; +$a->strings['Reload active themes'] = 'Lataa aktiiviset teemat uudelleen'; +$a->strings['No themes found on the system. They should be placed in %1$s'] = 'Teemoja ei löytynyt järjestelmästä. Teemat tulisi laittaa kansioon %1$s'; +$a->strings['[Experimental]'] = '[Kokeellinen]'; +$a->strings['[Unsupported]'] = '[Ei tueta]'; +$a->strings['Display Terms of Service'] = 'Näytä käyttöehdot'; +$a->strings['Display Privacy Statement'] = 'Näytä tietosuojalausunto'; +$a->strings['The Terms of Service'] = 'Käyttöehdot'; +$a->strings['No installed applications.'] = 'Ei asennettuja sovelluksia.'; +$a->strings['Applications'] = 'Sovellukset'; +$a->strings['Item was not found.'] = 'Kohdetta ei löytynyt.'; +$a->strings['Please login to continue.'] = 'Ole hyvä ja kirjaudu jatkaaksesi.'; +$a->strings['Overview'] = 'Yleiskatsaus'; +$a->strings['Configuration'] = 'Kokoonpano'; +$a->strings['Additional features'] = 'Lisäominaisuuksia'; +$a->strings['Database'] = 'Tietokanta'; +$a->strings['DB updates'] = 'Tietokannan päivitykset'; +$a->strings['Diagnostics'] = 'Diagnostiikka'; +$a->strings['PHP Info'] = 'PHP tietoja'; +$a->strings['check webfinger'] = 'Tarkista webfinger'; +$a->strings['Addon Features'] = 'Lisäosaominaisuudet'; +$a->strings['User registrations waiting for confirmation'] = 'Käyttäjärekisteröinnit odottavat hyväksyntää'; +$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Päivittäinen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty.', + 1 => 'Päivittäinen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty.', +]; +$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Viikottainen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty.', + 1 => 'Viikottainen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty.', +]; +$a->strings['Users'] = 'Käyttäjät'; +$a->strings['Tools'] = 'Työkalut'; +$a->strings['Contact Blocklist'] = 'Kontaktien estolista'; +$a->strings['Server Blocklist'] = 'Palvelimien estolista'; +$a->strings['Delete Item'] = 'Poista kohde'; +$a->strings['Profile Details'] = 'Profiilitiedot'; +$a->strings['Only You Can See This'] = 'Vain sinä näet tämän'; +$a->strings['Tips for New Members'] = 'Vinkkejä uusille käyttäjille'; +$a->strings['People Search - %s'] = 'Käyttäjähaku - %s'; +$a->strings['No matches'] = 'Ei täsmääviä profiileja'; +$a->strings['Account'] = 'Tili'; +$a->strings['Display'] = 'Ulkonäkö'; +$a->strings['Social Networks'] = 'Sosiaalinen media'; +$a->strings['Connected apps'] = 'Yhdistetyt sovellukset'; +$a->strings['Export personal data'] = 'Vie henkilökohtaiset tiedot'; +$a->strings['Remove account'] = 'Poista tili'; +$a->strings['The post was created'] = 'Julkaisu luotu'; +$a->strings['Failed to remove event'] = 'Tapahtuman poisto epäonnistui'; +$a->strings['Event can not end before it has started.'] = 'Tapahtuma ei voi päättyä ennen kuin on alkanut.'; +$a->strings['Event title and start time are required.'] = 'Tapahtuman nimi ja alkamisaika vaaditaan.'; +$a->strings['Starting date and Title are required.'] = 'Aloituspvm ja otsikko vaaditaan.'; +$a->strings['Event Starts:'] = 'Tapahtuma alkaa:'; +$a->strings['Required'] = 'Vaaditaan'; +$a->strings['Finish date/time is not known or not relevant'] = 'Päättymispvm ja kellonaika ei ole tiedossa tai niillä ei ole merkitystä'; +$a->strings['Event Finishes:'] = 'Tapahtuma päättyy:'; +$a->strings['Share this event'] = 'Jaa tämä tapahtuma'; +$a->strings['This calendar format is not supported'] = 'Tätä kalenteriformaattia ei tueta'; +$a->strings['No exportable data found'] = 'Vientikelpoista dataa ei löytynyt'; +$a->strings['calendar'] = 'kalenteri'; +$a->strings['Events'] = 'Tapahtumat'; +$a->strings['View'] = 'Katso'; +$a->strings['Create New Event'] = 'Luo uusi tapahtuma'; +$a->strings['list'] = 'luettelo'; +$a->strings['Contact not found.'] = 'Kontaktia ei ole.'; +$a->strings['Invalid contact.'] = 'Virheellinen kontakti.'; +$a->strings['Members'] = 'Jäsenet'; +$a->strings['Click on a contact to add or remove.'] = 'Valitse kontakti, jota haluat poistaa tai lisätä.'; +$a->strings['%d contact edited.'] = [ + 0 => '%d kontakti muokattu', + 1 => '%d kontakteja muokattu', +]; +$a->strings['Show all contacts'] = 'Näytä kaikki yhteystiedot'; +$a->strings['Blocked'] = 'Estetty'; +$a->strings['Only show blocked contacts'] = 'Näytä vain estetyt henkilöt'; +$a->strings['Ignored'] = 'Jätetty huomiotta'; +$a->strings['Only show ignored contacts'] = 'Näytä vain henkilöt, jotka jätetty huomiotta'; +$a->strings['Archived'] = 'Arkistoitu'; +$a->strings['Only show archived contacts'] = 'Näytä vain arkistoidut henkilöt'; +$a->strings['Hidden'] = 'Piilotettu'; +$a->strings['Only show hidden contacts'] = 'Näytä vain piilotetut henkilöt'; +$a->strings['Search your contacts'] = 'Etsi henkilöitä'; +$a->strings['Results for: %s'] = 'Tulokset haulla: %s'; +$a->strings['Update'] = 'Päivitä'; +$a->strings['Unblock'] = 'Salli'; +$a->strings['Unignore'] = 'Ota huomioon'; +$a->strings['Advanced Contact Settings'] = 'Kontakti-lisäasetukset'; +$a->strings['Mutual Friendship'] = 'Yhteinen kaveruus'; +$a->strings['is a fan of yours'] = 'on fanisi'; +$a->strings['you are a fan of'] = 'fanitat'; +$a->strings['Visit %s\'s profile [%s]'] = 'Näytä %s-käyttäjän profiili [%s]'; +$a->strings['Contact update failed.'] = 'Kontaktipäivitys epäonnistui.'; +$a->strings['Return to contact editor'] = 'Palaa kontaktin muokkaamiseen'; +$a->strings['Name'] = 'Nimi'; +$a->strings['Account Nickname'] = 'Tilin lempinimi'; +$a->strings['Account URL'] = 'Tilin URL-osoite'; +$a->strings['Poll/Feed URL'] = 'URL äänestyksiä/syötteitä varten'; +$a->strings['New photo from this URL'] = 'Uusi kuva osoitteesta'; +$a->strings['Access denied.'] = 'Käyttö estetty.'; +$a->strings['Submit Request'] = 'Lähetä pyyntö'; +$a->strings['You already added this contact.'] = 'Olet jo lisännyt tämän kontaktin.'; +$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Verkkotyyppiä ei voitu havaita. Kontaktia ei voitu lisätä.'; +$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Diaspora -tuki ei ole käytössä. Kontaktia ei voi lisätä.'; +$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus -tuki ei ole käytössä. Kontaktia ei voi lisätä.'; +$a->strings['Please answer the following:'] = 'Vastaa seuraavaan:'; +$a->strings['Your Identity Address:'] = 'Identiteettisi osoite:'; +$a->strings['Profile URL'] = 'Profiilin URL'; +$a->strings['Tags:'] = 'Tunnisteet:'; +$a->strings['Add a personal note:'] = 'Lisää oma merkintä:'; +$a->strings['The contact could not be added.'] = 'Kontaktia ei voitu lisätä.'; +$a->strings['Invalid request.'] = 'Virheellinen pyyntö.'; +$a->strings['Profile Match'] = 'Vastaavien profiilien haku'; +$a->strings['Failed to update contact record.'] = 'Kontaktitietojen päivitys epäonnistui.'; +$a->strings['Contact has been unblocked'] = 'Henkilö on jälleen sallittu'; +$a->strings['Contact has been blocked'] = 'Henkilö on estetty'; +$a->strings['Contact has been unignored'] = 'Henkilö on jälleen huomioituna.'; +$a->strings['Contact has been ignored'] = 'Henkilöä ei enää huomioida'; +$a->strings['You are mutual friends with %s'] = 'Olet kaveri %s kanssa.'; +$a->strings['You are sharing with %s'] = 'Olet jakanut jotakin %s:n kanssa'; +$a->strings['%s is sharing with you'] = '%s jakaa sinulle jotakin.'; +$a->strings['Private communications are not available for this contact.'] = 'Yksityiskeskustelu ei ole käytettävissä tälle henkilölle.'; +$a->strings['Never'] = 'Ei koskaan'; +$a->strings['(Update was not successful)'] = '(Päivitys epäonnistui)'; +$a->strings['(Update was successful)'] = '(Päivitys onnistui)'; +$a->strings['Suggest friends'] = 'Ehdota ystäviä'; +$a->strings['Network type: %s'] = 'Verkkotyyppi: %s'; +$a->strings['Communications lost with this contact!'] = 'Yhteys tähän henkilöön menetettiin!'; +$a->strings['Fetch information'] = 'Nouda tiedot'; +$a->strings['Fetch keywords'] = 'Nouda avainsanat'; +$a->strings['Fetch information and keywords'] = 'Nouda tiedot ja avainsanat'; +$a->strings['No mirroring'] = 'Ei peilausta'; +$a->strings['Mirror as my own posting'] = 'Peilaa omana julkaisuna'; +$a->strings['Contact Information / Notes'] = 'Yhteystiedot / Muistiinpanot'; +$a->strings['Contact Settings'] = 'Yhteystietoasetukset'; +$a->strings['Contact'] = 'Kontakti'; +$a->strings['Edit contact notes'] = 'Muokkaa yhteystietojen muistiinpanoja'; +$a->strings['Block/Unblock contact'] = 'Estä/salli henkilö'; +$a->strings['Ignore contact'] = 'Jätä henkilö huomiotta'; +$a->strings['View conversations'] = 'Katso keskusteluja'; +$a->strings['Last update:'] = 'Viimeksi päivitetty:'; +$a->strings['Update public posts'] = 'Päivitä julkiset postaukset'; +$a->strings['Update now'] = 'Päivitä nyt'; +$a->strings['Awaiting connection acknowledge'] = 'Odotetaan yhteyden kuittausta'; +$a->strings['Currently blocked'] = 'Estetty tällä hetkellä'; +$a->strings['Currently ignored'] = 'Jätetty huomiotta tällä hetkellä'; +$a->strings['Currently archived'] = 'Arkistoitu tällä hetkellä'; +$a->strings['Hide this contact from others'] = 'Piilota kontakti muilta'; +$a->strings['Notification for new posts'] = 'Uusien postausten ilmoitus'; +$a->strings['Send a notification of every new post of this contact'] = 'Lähetä ilmoitus tälle henkilölle kaikista uusista postauksista'; +$a->strings['Actions'] = 'Toimenpiteet'; +$a->strings['Status'] = 'Tila'; +$a->strings['Mirror postings from this contact'] = 'Peilaa tämän kontaktin julkaisut'; +$a->strings['Toggle Blocked status'] = 'Estetty tila päälle/pois'; +$a->strings['Toggle Ignored status'] = 'Sivuuta/seuraa'; +$a->strings['Yes'] = 'Kyllä'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Ehdotuksia ei löydy. Jos tämä on uusi sivusto, kokeile uudelleen vuorokauden kuluttua.'; +$a->strings['Unfollowing is currently not supported by your network.'] = 'Seuraamisen lopettaminen ei tällä hetkellä tueta verkossasi.'; +$a->strings['Disconnect/Unfollow'] = 'Katkaise / Lopeta seuraaminen'; +$a->strings['Local Community'] = 'Paikallinen yhteisö'; +$a->strings['Posts from local users on this server'] = 'Tämän palvelimen julkaisut'; +$a->strings['Global Community'] = 'Maailmanlaajuinen yhteisö'; +$a->strings['Posts from users of the whole federated network'] = 'Maailmanlaajuisen verkon julkaisut'; +$a->strings['No results.'] = 'Ei tuloksia.'; +$a->strings['Community option not available.'] = 'Yhteisö vaihtoehto ei saatavilla.'; +$a->strings['Not available.'] = 'Ei saatavilla.'; +$a->strings['Personal'] = 'Henkilökohtainen'; +$a->strings['Posts that mention or involve you'] = 'Julkaisut jotka liittyvät sinuun'; +$a->strings['Starred'] = 'Tähtimerkitty'; +$a->strings['Favourite Posts'] = 'Lempijulkaisut'; +$a->strings['Credits'] = 'Lopputekstit'; $a->strings['BBCode::toPlaintext'] = 'BBCode::toPlaintext'; $a->strings['BBCode::convert (raw HTML)'] = 'BBCode::convert (raaka HTML)'; $a->strings['BBCode::convert'] = 'BBCode::convert'; @@ -620,18 +821,54 @@ $a->strings['Source text'] = 'Lähdeteksti'; $a->strings['BBCode'] = 'BBCode'; $a->strings['Markdown'] = 'Markdown'; $a->strings['HTML'] = 'HTML'; -$a->strings['This is Friendica, version'] = 'Tämä on Friendica, versio'; -$a->strings['running at web location'] = 'käynnissä osoitteessa'; -$a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Vieraile osoitteessa Friendi.ca saadaksesi lisätietoja Friendica- projektista.'; -$a->strings['Bug reports and issues: please visit'] = 'Bugiraportit ja kysymykset: vieraile osoitteessa'; -$a->strings['the bugtracker at github'] = 'githubin bugtrackeri'; -$a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = 'Ehdotukset ja palaute: lähetä sähköposti osoitteeseen "info" at "friendi - piste - ca'; +$a->strings['You must be logged in to use this module'] = 'Sinun pitää kirjautua sisään, jotta voit käyttää tätä moduulia'; +$a->strings['Source URL'] = 'Lähde URL'; +$a->strings['Time Conversion'] = 'Aikamuunnos'; +$a->strings['UTC time: %s'] = 'UTC-aika: %s'; +$a->strings['Current timezone: %s'] = 'Aikavyöhyke: %s'; +$a->strings['Converted localtime: %s'] = 'Muunnettu paikallisaika: %s'; +$a->strings['Please select your timezone:'] = 'Valitse aikavyöhykkeesi:'; +$a->strings['Select an identity to manage: '] = 'Valitse identiteetti hallitavaksi:'; +$a->strings['Results for:'] = 'Tulokset haulla:'; +$a->strings['Site Directory'] = 'Sivuston luettelo'; +$a->strings['- select -'] = '- valitse -'; +$a->strings['Friend suggestion sent.'] = 'Ystäväehdotus lähetettiin.'; +$a->strings['Suggest Friends'] = 'Ehdota ystäviä'; +$a->strings['Suggest a friend for %s'] = 'Ehdota ystävää ystävälle %s'; $a->strings['Installed addons/apps:'] = 'Asennettu lisäosat/sovellukset:'; $a->strings['No installed addons/apps'] = 'Ei asennettuja lisäosia/sovelluksia'; $a->strings['Read about the Terms of Service of this node.'] = 'Lue tämän solmun käyttöehdot.'; $a->strings['On this server the following remote servers are blocked.'] = 'Tällä palvelimella seuraavat etäpalvelimet ovat estetty.'; -$a->strings['Blocked domain'] = 'Estetty verkkotunnus'; $a->strings['Reason for the block'] = 'Eston syy'; +$a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Vieraile osoitteessa Friendi.ca saadaksesi lisätietoja Friendica- projektista.'; +$a->strings['Bug reports and issues: please visit'] = 'Bugiraportit ja kysymykset: vieraile osoitteessa'; +$a->strings['the bugtracker at github'] = 'githubin bugtrackeri'; +$a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = 'Ehdotukset ja palaute: lähetä sähköposti osoitteeseen "info" at "friendi - piste - ca'; +$a->strings['No profile'] = 'Ei profiilia'; +$a->strings['Help:'] = 'Ohje:'; +$a->strings['Welcome to %s'] = 'Tervetuloa %s'; +$a->strings['System check'] = 'Järjestelmän tarkistus'; +$a->strings['Next'] = 'Seuraava'; +$a->strings['Check again'] = 'Tarkista uudelleen'; +$a->strings['Base path to installation'] = 'Asennuksen peruspolku'; +$a->strings['Database connection'] = 'Tietokantayhteys'; +$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Jotta voit asentaa Friendican, tarvitaan tieto siitä, miten tietokantaasi saa yhteyden.'; +$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Ota yhteyttä web-palveluntarjoajaasi tai sivuston ylläpitäjään, jos sinulla on näihin asetuksiin liittyviä kysymyksiä.'; +$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'Alla määritetyn tietokannan tulisi olla jo olemassa. Jos se ei ole, luo se ennen kuin jatkat.'; +$a->strings['Database Server Name'] = 'Tietokannan palvelimen nimi'; +$a->strings['Database Login Name'] = 'Tietokannan käyttäjän nimi'; +$a->strings['Database Login Password'] = 'Tietokannan käyttäjän salasana'; +$a->strings['For security reasons the password must not be empty'] = 'Turvallisuussyistä salasanakenttä ei saa olla tyhjä'; +$a->strings['Database Name'] = 'Tietokannan nimi'; +$a->strings['Please select a default timezone for your website'] = 'Valitse oletusaikavyöhyke sivustollesi'; +$a->strings['Site settings'] = 'Sivuston asetukset'; +$a->strings['Site administrator email address'] = 'Sivuston ylläpitäjän sähköpostiosoite'; +$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'Tilisi sähköpostiosoitteen on vastattava tätä, jotta voit käyttää ylläpitokäyttöliittymää.'; +$a->strings['System Language:'] = 'Järjestelmän kieli:'; +$a->strings['Set the default language for your Friendica installation interface and to send emails.'] = 'Valitse Friendica-sivustosi oletuskieli.'; +$a->strings['Your Friendica site database has been installed.'] = 'Friendica-sivustosi tietokanta on asennettu.'; +$a->strings['

    What next

    '] = '

    Mitä seuraavaksi

    '; +$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the worker.'] = 'TÄRKEÄÄ: Sinun pitää asettaa [manuaalisesti] ajastettu tehtävä Workerille.'; $a->strings['Total invitation limit exceeded.'] = 'Kutsuraja ylitetty.'; $a->strings['%s : Not a valid email address.'] = '%s : Virheellinen sähköpostiosoite.'; $a->strings['Please join us on Friendica'] = 'Tervetuloa Friendicaan'; @@ -647,119 +884,19 @@ $a->strings['To accept this invitation, please visit and register at %s.'] = 'Hy $a->strings['Send invitations'] = 'Lähetä kutsut'; $a->strings['Enter email addresses, one per line:'] = 'Syötä sähköpostiosoitteet, yksi riviä kohden:'; $a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Kun olet rekisteröitynyt, lähetä minulle kaverikutsun profiilisivuni kautta:'; -$a->strings['Contact settings applied.'] = 'Kontaktiasetukset tallennettu.'; -$a->strings['Contact update failed.'] = 'Kontaktipäivitys epäonnistui.'; -$a->strings['WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working.'] = 'VAROITUS: Tämä on erittäin vaativaa ja jos kirjoitat virheellisiä tietoja, viestintäsi tämän henkilön kanssa voi lakata toimimasta.'; -$a->strings['Please use your browser \'Back\' button now if you are uncertain what to do on this page.'] = 'Ole hyvä ja paina selaimesi \'Takaisin\'-painiketta nyt, jos olet epävarma tämän sivun toiminnoista.'; -$a->strings['No mirroring'] = 'Ei peilausta'; -$a->strings['Mirror as forwarded posting'] = 'Peilaa välitettynä julkaisuna'; -$a->strings['Mirror as my own posting'] = 'Peilaa omana julkaisuna'; -$a->strings['Return to contact editor'] = 'Palaa kontaktin muokkaamiseen'; -$a->strings['Mirror postings from this contact'] = 'Peilaa tämän kontaktin julkaisut'; -$a->strings['Name'] = 'Nimi'; -$a->strings['Account Nickname'] = 'Tilin lempinimi'; -$a->strings['@Tagname - overrides Name/Nickname'] = '@Tagname - ohittaa Nimen/Nimimerkin'; -$a->strings['Account URL'] = 'Tilin URL-osoite'; -$a->strings['Friend Request URL'] = 'URL kaveripyyntöä varten'; -$a->strings['Friend Confirm URL'] = 'URL kaverin vahvistusta varten'; -$a->strings['Notification Endpoint URL'] = 'URL huomautuksia varten'; -$a->strings['Poll/Feed URL'] = 'URL äänestyksiä/syötteitä varten'; -$a->strings['New photo from this URL'] = 'Uusi kuva osoitteesta'; -$a->strings['%1$s welcomes %2$s'] = '%1$s toivottaa tervetulleeksi ystävän %2$s'; -$a->strings['Help:'] = 'Ohje:'; -$a->strings['Help'] = 'Ohje'; -$a->strings['Page not found.'] = 'Sivua ei löytynyt.'; -$a->strings['Friendica Communications Server - Setup'] = 'Friendica viestinnän palvelin - asetukset'; -$a->strings['Could not connect to database.'] = 'Tietokantaan ei saada yhteyttä.'; -$a->strings['Could not create table.'] = 'Taulun luominen epäonnistui.'; -$a->strings['Your Friendica site database has been installed.'] = 'Friendica-sivustosi tietokanta on asennettu.'; -$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Sinun on ehkä tuotava tiedosto "database.sql" manuaalisesti käyttämällä phpMyAdminia tai MySQL:ää.'; -$a->strings['Please see the file "INSTALL.txt".'] = 'Lue tiedosto "INSTALL.txt".'; -$a->strings['Database already in use.'] = 'Tietokanta on jo käytössä.'; -$a->strings['System check'] = 'Järjestelmän tarkistus'; -$a->strings['Check again'] = 'Tarkista uudelleen'; -$a->strings['Database connection'] = 'Tietokantayhteys'; -$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Jotta voit asentaa Friendican, tarvitaan tieto siitä, miten tietokantaasi saa yhteyden.'; -$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Ota yhteyttä web-palveluntarjoajaasi tai sivuston ylläpitäjään, jos sinulla on näihin asetuksiin liittyviä kysymyksiä.'; -$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'Alla määritetyn tietokannan tulisi olla jo olemassa. Jos se ei ole, luo se ennen kuin jatkat.'; -$a->strings['Database Server Name'] = 'Tietokannan palvelimen nimi'; -$a->strings['Database Login Name'] = 'Tietokannan käyttäjän nimi'; -$a->strings['Database Login Password'] = 'Tietokannan käyttäjän salasana'; -$a->strings['For security reasons the password must not be empty'] = 'Turvallisuussyistä salasanakenttä ei saa olla tyhjä'; -$a->strings['Database Name'] = 'Tietokannan nimi'; -$a->strings['Site administrator email address'] = 'Sivuston ylläpitäjän sähköpostiosoite'; -$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'Tilisi sähköpostiosoitteen on vastattava tätä, jotta voit käyttää ylläpitokäyttöliittymää.'; -$a->strings['Please select a default timezone for your website'] = 'Valitse oletusaikavyöhyke sivustollesi'; -$a->strings['Site settings'] = 'Sivuston asetukset'; -$a->strings['System Language:'] = 'Järjestelmän kieli:'; -$a->strings['Set the default language for your Friendica installation interface and to send emails.'] = 'Valitse Friendica-sivustosi oletuskieli.'; -$a->strings['The database configuration file ".htconfig.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.'] = 'Tietokannan asetustiedostoa ".htconfig.php" ei pystytty kirjoittamaan. Käytä mukaanliitettyä tekstiä luomaan asetustiedosto web-palvelimesi juureen.'; -$a->strings['

    What next

    '] = '

    Mitä seuraavaksi

    '; -$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the worker.'] = 'TÄRKEÄÄ: Sinun pitää asettaa [manuaalisesti] ajastettu tehtävä Workerille.'; -$a->strings['New Message'] = 'Uusi viesti'; -$a->strings['Unable to locate contact information.'] = 'Kontaktin tiedot ei löydy.'; -$a->strings['Messages'] = 'Viestit'; -$a->strings['Do you really want to delete this message?'] = 'Haluatko varmasti poistaa viestin?'; -$a->strings['Message deleted.'] = 'Viesti poistettu.'; -$a->strings['Conversation removed.'] = 'Keskustelu poistettu.'; -$a->strings['No messages.'] = 'Ei viestejä.'; -$a->strings['Message not available.'] = 'Viesti ei saatavilla.'; -$a->strings['Delete message'] = 'Poista viesti'; -$a->strings['D, d M Y - g:i A'] = 'D, j.n.Y - H:i'; -$a->strings['Delete conversation'] = 'Poista keskustelu'; -$a->strings['Send Reply'] = 'Lähetä vastaus'; -$a->strings['Unknown sender - %s'] = 'Tuntematon lähettäjä - %s'; -$a->strings['You and %s'] = 'Sinä ja %s'; -$a->strings['%s and You'] = '%s ja sinä'; -$a->strings['%d message'] = [ - 0 => '%d viesti', - 1 => '%d viestiä', -]; -$a->strings['Theme settings updated.'] = 'Teeman asetukset päivitetty.'; -$a->strings['Information'] = 'Tietoja'; -$a->strings['Overview'] = 'Yleiskatsaus'; -$a->strings['Federation Statistics'] = 'Liiton tilastotiedot'; -$a->strings['Configuration'] = 'Kokoonpano'; -$a->strings['Site'] = 'Sivusto'; -$a->strings['Users'] = 'Käyttäjät'; -$a->strings['Addons'] = 'Lisäosat'; -$a->strings['Themes'] = 'Teemat'; -$a->strings['Additional features'] = 'Lisäominaisuuksia'; -$a->strings['Terms of Service'] = 'Käyttöehdot'; -$a->strings['Database'] = 'Tietokanta'; -$a->strings['DB updates'] = 'Tietokannan päivitykset'; -$a->strings['Inspect Queue'] = 'Tarkista jono'; -$a->strings['Tools'] = 'Työkalut'; -$a->strings['Contact Blocklist'] = 'Kontaktien estolista'; -$a->strings['Server Blocklist'] = 'Palvelimien estolista'; -$a->strings['Delete Item'] = 'Poista kohde'; -$a->strings['Logs'] = 'Lokit'; -$a->strings['View Logs'] = 'Katso lokit'; -$a->strings['Diagnostics'] = 'Diagnostiikka'; -$a->strings['PHP Info'] = 'PHP tietoja'; -$a->strings['check webfinger'] = 'Tarkista webfinger'; -$a->strings['Admin'] = 'Ylläpitäjä'; -$a->strings['Addon Features'] = 'Lisäosaominaisuudet'; -$a->strings['User registrations waiting for confirmation'] = 'Käyttäjärekisteröinnit odottavat hyväksyntää'; -$a->strings['Administration'] = 'Ylläpito'; -$a->strings['Display Terms of Service'] = 'Näytä käyttöehdot'; -$a->strings['Display Privacy Statement'] = 'Näytä tietosuojalausunto'; -$a->strings['The Terms of Service'] = 'Käyttöehdot'; -$a->strings['The blocked domain'] = 'Estetty verkkotunnus'; -$a->strings['The reason why you blocked this domain.'] = 'Verkkotunnuksen estosyy.'; -$a->strings['Delete domain'] = 'Poista verkkotunnus'; -$a->strings['Check to delete this entry from the blocklist'] = 'Laita rasti poistaaksesi kohde estolistalta'; -$a->strings['Add new entry to block list'] = 'Lisää uusi kohde estolistaan'; -$a->strings['Server Domain'] = 'Palvelimen verkkotunnus'; -$a->strings['Block reason'] = 'Estosyy'; -$a->strings['Add Entry'] = 'Lisää merkintä'; -$a->strings['Save changes to the blocklist'] = 'Tallenna muutoksia estolistaan'; -$a->strings['Current Entries in the Blocklist'] = 'Nykyinen estolista'; -$a->strings['Delete entry from blocklist'] = 'Poista kohde estolistalta'; -$a->strings['Delete entry from blocklist?'] = 'Poista kohde estolistalta?'; -$a->strings['Server added to blocklist.'] = 'Palvelin lisätty estolistalle'; -$a->strings['Site blocklist updated.'] = 'Sivuston estolista päivitetty.'; -$a->strings['The contact has been blocked from the node'] = 'Kontakti on estetty tällä solmulla'; +$a->strings['System down for maintenance'] = 'Järjestelmä poiskytketty huoltoa varten'; +$a->strings['Files'] = 'Tiedostot'; +$a->strings['Upload'] = 'Lähetä'; +$a->strings['Or - did you try to upload an empty file?'] = 'Yrititkö ladata tyhjän tiedoston?'; +$a->strings['File exceeds size limit of %s'] = 'Tiedosto ylittää kokorajoituksen %s'; +$a->strings['File upload failed.'] = 'Tiedoston lähettäminen epäonnistui.'; +$a->strings['Unable to process image.'] = 'Kuvan käsitteleminen epäonnistui.'; +$a->strings['Image upload failed.'] = 'Kuvan lähettäminen epäonnistui.'; +$a->strings['Normal Account Page'] = 'Tavallinen käyttäjätili'; +$a->strings['Soapbox Page'] = 'Saarnatuoli sivu'; +$a->strings['Personal Page'] = 'Henkilökohtainen sivu'; +$a->strings['Organisation Page'] = 'Järjestön sivu'; +$a->strings['News Page'] = 'Uutissivu'; $a->strings['%s contact unblocked'] = [ 0 => '%s kontakti poistettu estolistalta', 1 => '%s kontaktia poistettu estolistalta', @@ -771,476 +908,105 @@ $a->strings['select none'] = 'älä valitse mitään'; $a->strings['Blocked Remote Contacts'] = 'Estetty etäkontaktit'; $a->strings['Block New Remote Contact'] = 'Estä uusi etäkontakti'; $a->strings['Photo'] = 'Kuva'; -$a->strings['Address'] = 'Osoite'; $a->strings['%s total blocked contact'] = [ 0 => 'Yhteensä %s estetty kontakti', 1 => 'Yhteensä %s estettyjä kontakteja', ]; $a->strings['URL of the remote contact to block.'] = 'Estettävän etäkontaktin URL-osoite'; +$a->strings['Block reason'] = 'Estosyy'; +$a->strings['Check to delete this entry from the blocklist'] = 'Laita rasti poistaaksesi kohde estolistalta'; +$a->strings['Save changes to the blocklist'] = 'Tallenna muutoksia estolistaan'; +$a->strings['Current Entries in the Blocklist'] = 'Nykyinen estolista'; +$a->strings['Item marked for deletion.'] = 'Kohde merkitty poistettavaksi.'; $a->strings['Delete this Item'] = 'Poista tämä kohde'; $a->strings['GUID'] = 'GUID'; $a->strings['The GUID of the item you want to delete.'] = 'Poistettavan kohteen GUID.'; -$a->strings['Item marked for deletion.'] = 'Kohde merkitty poistettavaksi.'; -$a->strings['unknown'] = 'tuntematon'; -$a->strings['Currently this node is aware of %d nodes with %d registered users from the following platforms:'] = 'Tällä hetkellä tämä solmu havaitsee %d muita solmuja joissa %d rekisteröityneitä käyttäjiä. Tarkemmat tiedot:'; -$a->strings['Recipient Name'] = 'Vastaanottajan nimi'; -$a->strings['Recipient Profile'] = 'Vastaanottajan profiili'; -$a->strings['Network'] = 'Uutisvirta'; -$a->strings['Created'] = 'Luotu'; -$a->strings['Last Tried'] = 'Viimeksi yritetty'; -$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.'] = 'Tietokannan päivitys epäonnistui. Suorita komento "php bin/console.php dbstructure update" komentoriviltä ja lue mahdolliset virheviestit.'; -$a->strings['The worker was never executed. Please check your database structure!'] = 'Workeriä ei ole otettu käyttöön. Tarkista tietokantasi rakenne!'; -$a->strings['The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings.'] = 'Viimeisin worker -käynnistys tapahtui klo %s UTC, eli yli tunti sitten. Tarkista crontab -asetukset.'; +$a->strings['Type'] = 'Tyyppi'; +$a->strings['Item not found'] = 'Kohdetta ei löytynyt'; $a->strings['Normal Account'] = 'Perustili'; $a->strings['Automatic Follower Account'] = 'Automaattinen seuraajatili'; -$a->strings['Public Forum Account'] = 'Julkinen foorumitili'; $a->strings['Automatic Friend Account'] = 'Automaattinen kaveritili'; $a->strings['Blog Account'] = 'Blogitili'; -$a->strings['Private Forum Account'] = 'Yksityinen foorumitili'; -$a->strings['Message queues'] = 'Viestijonot'; -$a->strings['Summary'] = 'Yhteenveto'; $a->strings['Registered users'] = 'Rekisteröityneet käyttäjät'; $a->strings['Pending registrations'] = 'Vireillä olevat rekisteröinnit'; -$a->strings['Version'] = 'Versio'; -$a->strings['Active addons'] = 'Käytössäolevat lisäosat'; -$a->strings['Can not parse base url. Must have at least ://'] = 'Ei voitu jäsentää perusosoitetta. Täytyy sisältää ainakin ://'; -$a->strings['Site settings updated.'] = 'Sivuston asetukset päivitettiin.'; -$a->strings['No special theme for mobile devices'] = 'Ei mobiiliteemaa'; -$a->strings['No community page'] = 'Ei yhteisösivua'; -$a->strings['Public postings from users of this site'] = 'Julkiset julkaisut tämän sivuston käyttäjiltä'; -$a->strings['Public postings from the federated network'] = 'Julkiset julkaisut liittoutuneelta verkolta'; -$a->strings['Public postings from local users and the federated network'] = 'Julkiset julkaisut tältä sivustolta ja liittoutuneelta verkolta'; -$a->strings['Users, Global Contacts'] = 'Käyttäjät, maailmanlaajuiset kontaktit'; -$a->strings['One month'] = 'Yksi kuukausi'; -$a->strings['Three months'] = 'Kolme kuukautta'; -$a->strings['Half a year'] = 'Puoli vuotta'; -$a->strings['One year'] = 'Yksi vuosi'; -$a->strings['Multi user instance'] = 'Monen käyttäjän instanssi'; -$a->strings['Closed'] = 'Suljettu'; -$a->strings['Requires approval'] = 'Edellyttää hyväksyntää'; -$a->strings['Open'] = 'Avoin'; -$a->strings['Force all links to use SSL'] = 'Pakota kaikki linkit käyttämään SSL-yhteyttä'; -$a->strings['Don\'t check'] = 'Älä tarkista'; -$a->strings['Registration'] = 'Rekisteröityminen'; -$a->strings['File upload'] = 'Tiedoston lataus'; -$a->strings['Policies'] = 'Käytännöt'; -$a->strings['Performance'] = 'Suoritus'; -$a->strings['Worker'] = 'Worker'; -$a->strings['Message Relay'] = 'Viestirele'; -$a->strings['Site name'] = 'Sivuston nimi'; -$a->strings['Host name'] = 'Palvelimen nimi'; -$a->strings['Sender Email'] = 'Lähettäjän sähköposti'; -$a->strings['The email address your server shall use to send notification emails from.'] = 'Lähettäjän sähköpostiosoite palvelimen ilmoitussähköposteissa.'; -$a->strings['Banner/Logo'] = 'Banneri/logo'; -$a->strings['Shortcut icon'] = 'Pikakuvake'; -$a->strings['Link to an icon that will be used for browsers.'] = 'Linkki kuvakkeeseen jota selaimet saa käyttää.'; -$a->strings['Touch icon'] = 'Kosketusnäyttökuvake'; -$a->strings['Link to an icon that will be used for tablets and mobiles.'] = 'Linkki kuvakkeeseen jota tabletit ja matkapuhelimet saa käyttää.'; -$a->strings['Additional Info'] = 'Lisätietoja'; -$a->strings['System language'] = 'Järjestelmän kieli'; -$a->strings['System theme'] = 'Järjestelmäteema'; -$a->strings['Mobile system theme'] = 'Mobiili järjestelmäteema'; -$a->strings['Theme for mobile devices'] = 'Mobiiliteema'; -$a->strings['SSL link policy'] = 'SSL-linkkikäytäntö'; -$a->strings['Determines whether generated links should be forced to use SSL'] = 'Määrittää pakotetaanko tuotetut linkit käyttämään SSL-yhteyttä.'; -$a->strings['Force SSL'] = 'Pakoita SSL-yhteyden käyttöä'; -$a->strings['Single user instance'] = 'Yksittäisen käyttäjän instanssi'; -$a->strings['Maximum image size'] = 'Suurin kuvakoko'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'Ladattavan kuvatiedoston enimmäiskoko tavuina. Oletusarvo on 0, eli ei enimmäiskokoa.'; -$a->strings['Maximum image length'] = 'Suurin kuvapituus'; -$a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Ladattavan kuvatiedoston enimmäispituus pikseleinä. Oletusarvo on -1, eli ei enimmäispituutta.'; -$a->strings['JPEG image quality'] = 'JPEG-kuvanlaatu'; -$a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = 'Ladatut JPEG-kuvat tallennetaan tällä laatuasetuksella [0-100]. Oletus on 100, eli korkein laatu.'; -$a->strings['Register policy'] = 'Rekisteröintipolitiikka'; -$a->strings['Maximum Daily Registrations'] = 'Päivittäinen rekisteröitymisraja'; -$a->strings['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.'] = 'Mikäli rekisteröityminen on sallittu, tämä asettaa enimmäismäärä uusia rekisteröitymisiä päivässä. Jos reksiteröityminen ei ole sallittu, tällä asetuksella ei ole vaikutusta.'; -$a->strings['Register text'] = 'Rekisteröitymisteksti'; -$a->strings['Will be displayed prominently on the registration page. You can use BBCode here.'] = 'Näkyvästi esillä rekisteröitymissivulla. Voit käyttää BBCodeia.'; -$a->strings['Accounts abandoned after x days'] = 'Käyttäjätilit hylätään X päivän jälkeen'; -$a->strings['Allowed friend domains'] = 'Sallittuja kaveri-verkkotunnuksia'; -$a->strings['Allowed email domains'] = 'Sallittuja sähköposti-verkkotunnuksia'; -$a->strings['Allowed OEmbed domains'] = 'Sallittuja OEmbed -verkkotunnuksia'; -$a->strings['Block public'] = 'Estä vierailijat'; -$a->strings['Global directory URL'] = 'Maailmanlaajuisen hakemiston URL-osoite'; -$a->strings['Don\'t include post content in email notifications'] = 'Älä lisää julkaisun sisältö sähköposti-ilmoitukseen'; -$a->strings['Don\'t embed private images in posts'] = 'Älä upota yksityisiä kuvia julkaisuissa'; -$a->strings['OpenID support'] = 'OpenID-tuki'; -$a->strings['OpenID support for registration and logins.'] = 'OpenID-tuki rekisteröitymiseen ja kirjautumiseen'; -$a->strings['Fullname check'] = 'Koko nimi tarkistus'; -$a->strings['Community pages for visitors'] = 'Yhteisösivu vieraille'; -$a->strings['The maximum number of posts per user on the community page. (Not valid for \'Global Community\')'] = 'Enimmäismäärä julkaisuja käyttäjää kohden yhteisösivulla. (Ei koske maailmanlaajuista yhteisösivua.)'; -$a->strings['Enable OStatus support'] = 'Salli OStatus-tuki'; -$a->strings['Only import OStatus threads from our contacts'] = 'Ainoastaan tuo OStatus -ketjuja kontakteiltamme'; -$a->strings['OStatus support can only be enabled if threading is enabled.'] = 'OStatus-tuki voidaan ottaa käyttöön ainoastaan jos ketjuttaminen on jo otettu käyttöön.'; -$a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Diaspora -tukea ei voitu ottaa käyttöön koska Friendica on asennettu alihakemistoon.'; -$a->strings['Enable Diaspora support'] = 'Salli Diaspora-tuki'; -$a->strings['Provide built-in Diaspora network compatibility.'] = 'Ota käyttöön Diaspora-yhteensopivuus'; -$a->strings['Only allow Friendica contacts'] = 'Salli ainoastaan Friendica -kontakteja'; -$a->strings['All contacts must use Friendica protocols. All other built-in communication protocols disabled.'] = 'Kaikkien kontaktien on käytettävä Friendica-protokollaa. Kaikki muut protokollat poistetaan käytöstä.'; -$a->strings['Verify SSL'] = 'Vahvista SSL'; -$a->strings['Proxy user'] = 'Välityspalvelimen käyttäjä'; -$a->strings['Proxy URL'] = 'Välityspalvelimen osoite'; -$a->strings['Network timeout'] = 'Verkon aikakatkaisu'; -$a->strings['Maximum Load Average'] = 'Kuorman enimmäiskeksiarvo'; -$a->strings['Maximum system load before delivery and poll processes are deferred - default 50.'] = 'Järjestelmäkuormitus jolloin lähetys- ja kyselyprosessit lykätään (oletusarvo 50).'; -$a->strings['Maximum Load Average (Frontend)'] = 'Kuorman enimmäiskeskiarvo (Frontend)'; -$a->strings['Maximum system load before the frontend quits service - default 50.'] = 'Järjestelmäkuormitus jolloin Frontend poistetaan käytöstä (oletusarvo 50).'; -$a->strings['Maximum table size for optimization'] = 'Taulukon enimmäiskoko optimointia varten'; -$a->strings['Discover contacts from other servers'] = 'Etsi kontakteja muilta palvelimilta'; -$a->strings['Search the local directory'] = 'Paikallisluettelohaku'; -$a->strings['Publish server information'] = 'Julkaise palvelintiedot'; -$a->strings['Suppress Tags'] = 'Piilota tunnisteet'; -$a->strings['Suppress showing a list of hashtags at the end of the posting.'] = 'Piilota tunnistelista julkaisun lopussa.'; -$a->strings['Clean database'] = 'Siivoa tietokanta'; -$a->strings['Cache duration in seconds'] = 'Välimuistin kesto sekunteina'; -$a->strings['Maximum numbers of comments per post'] = 'Julkaisun kommentiraja'; -$a->strings['Temp path'] = 'Väliaikaistiedostojen polku'; -$a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Mikäli verkkopalvelimesi ei voi käyttää järjestelmän väliaikaistiedostojen polkua, syötä toinen polku tähän.'; -$a->strings['Base path to installation'] = 'Asennuksen peruspolku'; -$a->strings['Only search in tags'] = 'Tunnistehaku'; -$a->strings['New base url'] = 'Uusi perusosoite'; -$a->strings['Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users.'] = 'Vaihtaa tämän palvelimen perus-URL-osoitteen. Lähettää uudelleensijoitusviestit käyttäjien kaikille kontakteille Friendicassa ja Diasporassa*.'; -$a->strings['RINO Encryption'] = 'RINO-salaus'; -$a->strings['Encryption layer between nodes.'] = 'Salauskerros solmujen välillä.'; -$a->strings['Enabled'] = 'Käytössä'; -$a->strings['Maximum number of parallel workers'] = 'Enimmäismäärä rinnakkaisia workereitä'; -$a->strings['Enable fastlane'] = 'Käytä fastlane'; -$a->strings['Enable frontend worker'] = 'Ota Frontend Worker käyttöön'; -$a->strings['Subscribe to relay'] = 'Relen tilaus'; -$a->strings['Relay server'] = 'Relepalvelin'; -$a->strings['Direct relay transfer'] = 'Suora releen siirto'; -$a->strings['Relay scope'] = 'Relen soveltamisala'; -$a->strings['all'] = 'kaikki'; -$a->strings['tags'] = 'tunnisteet'; -$a->strings['Server tags'] = 'palvelintunnisteet'; -$a->strings['Comma separated list of tags for the \'tags\' subscription.'] = 'Pilkulla erotettu tunnistelista tunnistetilausta varten.'; -$a->strings['Allow user tags'] = 'Salli käyttäjien tunnisteet'; -$a->strings['If enabled, the tags from the saved searches will used for the \'tags\' subscription in addition to the \'relay_server_tags\'.'] = 'Jos otettu käyttöön, tunnisteet tallennetuista hauista käytetään tunnistetilaukseen \'relay_server_tags\'in lisäksi.'; -$a->strings['Database structure update %s was successfully applied.'] = 'Tietokannan rakenteen %s-päivitys onnistui.'; -$a->strings['Executing of database structure update %s failed with error: %s'] = 'Tietokannan rakennepäivitys %s epäonnistui virheviestillä %s'; -$a->strings['Update %s was successfully applied.'] = '%s-päivitys onnistui.'; -$a->strings['No failed updates.'] = 'Ei epäonnistuineita päivityksiä.'; -$a->strings['Check database structure'] = 'Tarkista tietokannan rakenne'; -$a->strings['Failed Updates'] = 'Epäonnistuineita päivityksiä'; -$a->strings['%s user blocked/unblocked'] = [ - 0 => '%s käyttäjä estetty / poistettu estolistalta', - 1 => '%s käyttäjää estetty / poistettu estolistalta', -]; $a->strings['%s user deleted'] = [ 0 => '%s käyttäjä poistettu', 1 => '%s käyttäjää poistettu', ]; -$a->strings['User \'%s\' deleted'] = 'Käyttäjä \'%s\' poistettu'; -$a->strings['User \'%s\' unblocked'] = 'Käyttäjä \'%s\' poistettu estolistalta'; -$a->strings['User \'%s\' blocked'] = 'Käyttäjä \'%s\' estetty'; -$a->strings['Normal Account Page'] = 'Tavallinen käyttäjätili'; -$a->strings['Soapbox Page'] = 'Saarnatuoli sivu'; -$a->strings['Public Forum'] = 'Julkinen foorumi'; -$a->strings['Private Forum'] = 'Yksityisfoorumi'; -$a->strings['Personal Page'] = 'Henkilökohtainen sivu'; -$a->strings['Organisation Page'] = 'Järjestön sivu'; -$a->strings['News Page'] = 'Uutissivu'; -$a->strings['Community Forum'] = 'Yhteisöfoorumi'; -$a->strings['Email'] = 'Sähköposti'; $a->strings['Register date'] = 'Rekisteripäivämäärä'; $a->strings['Last login'] = 'Viimeisin kirjautuminen'; -$a->strings['Last item'] = 'Viimeisin kohde'; -$a->strings['Type'] = 'Tyyppi'; -$a->strings['Add User'] = 'Lisää käyttäjä'; -$a->strings['Request date'] = 'Pyynnön päivämäärä'; -$a->strings['No registrations.'] = 'Ei rekisteröintejä.'; -$a->strings['Approve'] = 'Hyväksy'; -$a->strings['Deny'] = 'Kieltäydy'; $a->strings['Site admin'] = 'Sivuston ylläpito'; $a->strings['Account expired'] = 'Tili vanhentunut'; $a->strings['New User'] = 'Uusi käyttäjä'; -$a->strings['Deleted since'] = 'Poistettu'; +$a->strings['Add User'] = 'Lisää käyttäjä'; $a->strings['Name of the new user.'] = 'Uuden käyttäjän nimi.'; $a->strings['Nickname'] = 'Lempinimi'; $a->strings['Nickname of the new user.'] = 'Uuden käyttäjän lempinimi'; $a->strings['Email address of the new user.'] = 'Uuden käyttäjän sähköpostiosoite.'; -$a->strings['Addon %s disabled.'] = 'Lisäosa %s poistettu käytöstä.'; -$a->strings['Addon %s enabled.'] = 'Lisäosa %s käytössä.'; -$a->strings['Disable'] = 'Poista käytöstä'; -$a->strings['Enable'] = 'Ota käyttöön'; -$a->strings['Toggle'] = 'Vaihda'; -$a->strings['Author: '] = 'Tekijä'; -$a->strings['Maintainer: '] = 'Ylläpitäjä:'; -$a->strings['No themes found.'] = 'Teemoja ei löytynyt.'; -$a->strings['Screenshot'] = 'Kuvakaappaus'; -$a->strings['Reload active themes'] = 'Lataa aktiiviset teemat uudelleen'; -$a->strings['No themes found on the system. They should be placed in %1$s'] = 'Teemoja ei löytynyt järjestelmästä. Teemat tulisi laittaa kansioon %1$s'; -$a->strings['[Experimental]'] = '[Kokeellinen]'; -$a->strings['[Unsupported]'] = '[Ei tueta]'; -$a->strings['Log settings updated.'] = 'Lokiasetukset päivitetty.'; -$a->strings['PHP log currently enabled.'] = 'PHP-loki käytössä'; -$a->strings['PHP log currently disabled.'] = 'PHP-loki pois käytöstä'; -$a->strings['Clear'] = 'Tyhjennä'; -$a->strings['Enable Debugging'] = 'Ota virheenkorjaustila käyttöön'; -$a->strings['Log file'] = 'Lokitiedosto'; -$a->strings['Log level'] = 'Lokitaso'; -$a->strings['PHP logging'] = 'PHP-loki'; -$a->strings['Off'] = 'Pois päältä'; -$a->strings['On'] = 'Päällä'; -$a->strings['Lock feature %s'] = 'Lukitse ominaisuus %s'; -$a->strings['Manage Additional Features'] = 'Hallitse lisäominaisuudet'; -$a->strings['Community option not available.'] = 'Yhteisö vaihtoehto ei saatavilla.'; -$a->strings['Not available.'] = 'Ei saatavilla.'; -$a->strings['Local Community'] = 'Paikallinen yhteisö'; -$a->strings['Posts from local users on this server'] = 'Tämän palvelimen julkaisut'; -$a->strings['Global Community'] = 'Maailmanlaajuinen yhteisö'; -$a->strings['Posts from users of the whole federated network'] = 'Maailmanlaajuisen verkon julkaisut'; -$a->strings['No results.'] = 'Ei tuloksia.'; -$a->strings['Profile not found.'] = 'Profiilia ei löytynyt.'; -$a->strings['Response from remote site was not understood.'] = 'Etäsivuston vastaus oli epäselvä.'; -$a->strings['Unexpected response from remote site: '] = 'Odottamaton vastaus etäsivustolta:'; -$a->strings['Confirmation completed successfully.'] = 'Vahvistus onnistui.'; -$a->strings['Temporary failure. Please wait and try again.'] = 'Tilapäinen vika. Yritä myöhemmin uudelleen.'; -$a->strings['Introduction failed or was revoked.'] = 'Kaverikutsu epäonnistui tai oli peruutettu.'; -$a->strings['Unable to set contact photo.'] = 'Kontaktin kuvaa ei voitu asettaa'; -$a->strings['Our site encryption key is apparently messed up.'] = 'Sivustomme salausavain on sekaisin.'; -$a->strings['[Name Withheld]'] = '[Nimi jätetty pois]'; -$a->strings['This introduction has already been accepted.'] = 'Tämä esittely on jo hyväksytty.'; -$a->strings['Profile location is not valid or does not contain profile information.'] = 'Profiilin sijainti on viallinen tai se ei sisällä profiilitietoja.'; -$a->strings['Warning: profile location has no identifiable owner name.'] = 'Varoitus: profiilin sijainnissa ei ole tunnistettavaa omistajan nimeä.'; -$a->strings['Warning: profile location has no profile photo.'] = 'Varoitus: profiilin sijainnissa ei ole profiilikuvaa.'; -$a->strings['Introduction complete.'] = 'Esittely valmis.'; -$a->strings['Unrecoverable protocol error.'] = 'Vakava protokollavirhe.'; -$a->strings['Profile unavailable.'] = 'Profiili ei saatavilla.'; -$a->strings['%s has received too many connection requests today.'] = '%s on saanut liikaa yhteyspyyntöjä tänään.'; -$a->strings['Spam protection measures have been invoked.'] = 'Roskapostisuojaukset otettu käyttöön.'; -$a->strings['Friends are advised to please try again in 24 hours.'] = 'Ystäviä suositellaan yrittämään uudelleen vuorokauden sisällä.'; -$a->strings['Invalid locator'] = 'Viallinen paikannin'; -$a->strings['You have already introduced yourself here.'] = 'Olet jo esitellyt itsesi täällä.'; -$a->strings['Apparently you are already friends with %s.'] = 'Ilmeisesti olet jo ystävystynyt henkilön %s kanssa.'; -$a->strings['Invalid profile URL.'] = 'Viallinen profiiliosoite.'; -$a->strings['Disallowed profile URL.'] = 'Kielletty profiiliosoite.'; -$a->strings['Your introduction has been sent.'] = 'Esittelysi lähetettiin.'; -$a->strings['Please login to confirm introduction.'] = 'Kirjaudu vahvistaaksesi esittelysi.'; -$a->strings['Incorrect identity currently logged in. Please login to this profile.'] = 'Väärä identiteetti kirjautuneena sisään. Kirjaudu tähän profiiliin.'; -$a->strings['Confirm'] = 'Vahvista'; -$a->strings['Hide this contact'] = 'Piilota kontakti'; -$a->strings['Welcome home %s.'] = 'Tervetuloa kotiin %s.'; -$a->strings['Please confirm your introduction/connection request to %s.'] = 'Vahvista esittelysi/yhteyspyyntösi henkilölle %s.'; -$a->strings['Please enter your \'Identity Address\' from one of the following supported communications networks:'] = 'Anna "henkilöllisyysosoitteesi" joissakin seuraavista tuetuista viestintäverkoista:'; -$a->strings['Friend/Connection Request'] = 'Ystävä/yhteyspyyntö'; -$a->strings['Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de'] = 'Esim. jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de'; -$a->strings['Friendica'] = 'Friendica'; -$a->strings['GNU Social (Pleroma, Mastodon)'] = 'GNU Social (Pleroma, Mastodon)'; -$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings[' - please do not use this form. Instead, enter %s into your Diaspora search bar.'] = ' - älä käytä tätä lomaketta. Kirjoita sen sijaan %s Diaspora-hakupalkkiisi.'; -$a->strings['Event can not end before it has started.'] = 'Tapahtuma ei voi päättyä ennen kuin on alkanut.'; -$a->strings['Event title and start time are required.'] = 'Tapahtuman nimi ja alkamisaika vaaditaan.'; -$a->strings['Create New Event'] = 'Luo uusi tapahtuma'; -$a->strings['Event details'] = 'Tapahtuman tiedot'; -$a->strings['Starting date and Title are required.'] = 'Aloituspvm ja otsikko vaaditaan.'; -$a->strings['Event Starts:'] = 'Tapahtuma alkaa:'; -$a->strings['Required'] = 'Vaaditaan'; -$a->strings['Finish date/time is not known or not relevant'] = 'Päättymispvm ja kellonaika ei ole tiedossa tai niillä ei ole merkitystä'; -$a->strings['Event Finishes:'] = 'Tapahtuma päättyy:'; -$a->strings['Adjust for viewer timezone'] = 'Ota huomioon katsojan aikavyöhyke'; -$a->strings['Description:'] = 'Kuvaus:'; -$a->strings['Title:'] = 'Otsikko:'; -$a->strings['Share this event'] = 'Jaa tämä tapahtuma'; -$a->strings['Permissions'] = 'Käyttöoikeudet'; -$a->strings['Failed to remove event'] = 'Tapahtuman poisto epäonnistui'; -$a->strings['Event removed'] = 'Tapahtuma poistettu'; -$a->strings['Group created.'] = 'Ryhmä luotu.'; -$a->strings['Could not create group.'] = 'Ryhmää ei voitu luoda.'; -$a->strings['Group not found.'] = 'Ryhmää ei löytynyt.'; -$a->strings['Group name changed.'] = 'Ryhmän nimi muutettu.'; -$a->strings['Save Group'] = 'Tallenna ryhmä'; -$a->strings['Create a group of contacts/friends.'] = 'Luo kontakti/kaveriryhmä'; -$a->strings['Group Name: '] = 'Ryhmän nimi:'; -$a->strings['Group removed.'] = 'Ryhmä poistettu.'; -$a->strings['Unable to remove group.'] = 'Ryhmää ei voida poistaa.'; -$a->strings['Delete Group'] = 'Poista ryhmä'; -$a->strings['Group Editor'] = 'Ryhmien muokkausta'; -$a->strings['Edit Group Name'] = 'Muokkaa ryhmän nimeä'; -$a->strings['Members'] = 'Jäsenet'; -$a->strings['Group is empty'] = 'Ryhmä on tyhjä'; -$a->strings['Remove contact from group'] = 'Poista kontakti ryhmästä'; -$a->strings['Add contact to group'] = 'Lisää kontakti ryhmään'; -$a->strings['Unable to locate original post.'] = 'Alkuperäinen julkaisu ei löydy.'; -$a->strings['Empty post discarded.'] = 'Tyhjä julkaisu hylätty.'; -$a->strings['This message was sent to you by %s, a member of the Friendica social network.'] = 'Viestin lähetti %s Friendica sosiaaliverkoston kautta.'; -$a->strings['%s posted an update.'] = '%s julkaisi päivityksen.'; -$a->strings['Remove term'] = 'Poista kohde'; -$a->strings['Saved Searches'] = 'Tallennetut haut'; -$a->strings['add'] = 'lisää'; -$a->strings['No such group'] = 'Ryhmä ei ole olemassa'; -$a->strings['Group: %s'] = 'Ryhmä: %s'; -$a->strings['Private messages to this person are at risk of public disclosure.'] = 'Yksityisviestit lähetetty tälle henkilölle saattaa näkyä muillekin.'; -$a->strings['Invalid contact.'] = 'Virheellinen kontakti.'; -$a->strings['Commented Order'] = 'Järjestä viimeisimpien kommenttien mukaan'; -$a->strings['Sort by Comment Date'] = 'Kommentit päivämäärän mukaan'; -$a->strings['Posted Order'] = 'Järjestä julkaisupäivämäärän mukaan'; -$a->strings['Sort by Post Date'] = 'Julkaisut päivämäärän mukaan'; -$a->strings['Personal'] = 'Henkilökohtainen'; -$a->strings['Posts that mention or involve you'] = 'Julkaisut jotka liittyvät sinuun'; -$a->strings['New'] = 'Uusi'; -$a->strings['Shared Links'] = 'Jaetut linkit'; -$a->strings['Interesting Links'] = 'Kiinnostavat linkit'; -$a->strings['Starred'] = 'Tähtimerkitty'; -$a->strings['Favourite Posts'] = 'Lempijulkaisut'; -$a->strings['Personal Notes'] = 'Henkilökohtaiset tiedot'; -$a->strings['Invalid request identifier.'] = 'Virheellinen pyyntötunniste.'; -$a->strings['Discard'] = 'Hylkää'; -$a->strings['Notifications'] = 'Huomautukset'; -$a->strings['Network Notifications'] = 'Uutisvirtailmoitukset'; -$a->strings['Personal Notifications'] = 'Henkilökohtaiset ilmoitukset'; -$a->strings['Home Notifications'] = 'Koti-ilmoitukset'; +$a->strings['Account approved.'] = 'Tili hyväksytty.'; +$a->strings['Request date'] = 'Pyynnön päivämäärä'; +$a->strings['No registrations.'] = 'Ei rekisteröintejä.'; +$a->strings['Deny'] = 'Kieltäydy'; $a->strings['Show Ignored Requests'] = 'Näytä ohitetut pyynnöt'; $a->strings['Hide Ignored Requests'] = 'Piilota ohitetut pyynnöt'; -$a->strings['Notification type: '] = 'Ilmoitustyyppi:'; -$a->strings['suggested by %s'] = 'ehdottaa %s'; $a->strings['Claims to be known to you: '] = 'Väittää tuntevansa sinut:'; -$a->strings['yes'] = 'kyllä'; -$a->strings['no'] = 'ei'; +$a->strings['No'] = 'Ei'; $a->strings['Shall your connection be bidirectional or not?'] = 'Kaksisuuntainen yhteys?'; $a->strings['Friend'] = 'Kaveri'; -$a->strings['Sharer'] = 'Jakaja'; $a->strings['Subscriber'] = 'Tilaaja'; $a->strings['No introductions.'] = 'Ei esittelyjä.'; -$a->strings['Show unread'] = 'Näytä lukemattomat'; -$a->strings['Show all'] = 'Näytä kaikki'; $a->strings['No more %s notifications.'] = 'Ei muita %s ilmoituksia.'; -$a->strings['OpenID protocol error. No ID returned.'] = 'OpenID -protokollavirhe. Tunnusta ei vastaanotettu.'; -$a->strings['Account not found and OpenID registration is not permitted on this site.'] = 'Käyttäjätiliä ei löytynyt. Rekisteröityminen OpenID:n kautta ei ole sallittua tällä sivustolla.'; -$a->strings['Login failed.'] = 'Kirjautuminen epäonnistui'; -$a->strings['Photo Albums'] = 'Valokuva-albumit'; -$a->strings['Recent Photos'] = 'Viimeaikaisia kuvia'; -$a->strings['Upload New Photos'] = 'Lähetä uusia kuvia'; -$a->strings['everybody'] = 'kaikki'; -$a->strings['Contact information unavailable'] = 'Kontaktin tietoja ei saatavilla'; -$a->strings['Album not found.'] = 'Albumia ei ole.'; -$a->strings['Delete Album'] = 'Poista albumi'; -$a->strings['Do you really want to delete this photo album and all its photos?'] = 'Haluatko varmasti poistaa tämän albumin ja kaikki sen kuvat?'; -$a->strings['Delete Photo'] = 'Poista valokuva'; -$a->strings['Do you really want to delete this photo?'] = 'Haluatko varmasti poistaa kuvan?'; -$a->strings['a photo'] = 'valokuva'; -$a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s merkattiin kuvaan %2$s ystävän %3$s toimesta'; -$a->strings['Image upload didn\'t complete, please try again'] = 'Kuvan lataus ei onnistunut, yritä uudelleen'; -$a->strings['Image file is missing'] = 'Kuvatiedosto puuttuu'; -$a->strings['Image file is empty.'] = 'Kuvatiedosto on tyhjä.'; -$a->strings['No photos selected'] = 'Ei valittuja kuvia'; -$a->strings['Access to this item is restricted.'] = 'Pääsy kohteeseen on rajoitettu.'; -$a->strings['Upload Photos'] = 'Lähetä kuvia'; -$a->strings['New album name: '] = 'Albumin uusi nimi: '; -$a->strings['or existing album name: '] = 'tai olemassaolevan albumin nimi: '; -$a->strings['Do not show a status post for this upload'] = 'Älä näytä tilaviestiä tälle lähetykselle'; -$a->strings['Show to Groups'] = 'Näytä ryhmille'; -$a->strings['Show to Contacts'] = 'Näytä kontakteille'; -$a->strings['Edit Album'] = 'Muokkaa albumia'; -$a->strings['Show Newest First'] = 'Näytä uusin ensin'; -$a->strings['Show Oldest First'] = 'Näytä vanhin ensin'; -$a->strings['View Photo'] = 'Näytä kuva'; -$a->strings['Permission denied. Access to this item may be restricted.'] = 'Estetty. Tämän kohteen käyttöä on saatettu rajoittaa.'; -$a->strings['Photo not available'] = 'Kuva ei ole saatavilla'; -$a->strings['View photo'] = 'Näytä kuva'; -$a->strings['Edit photo'] = 'Muokkaa kuvaa'; -$a->strings['Use as profile photo'] = 'Käytä profiilikuvana'; -$a->strings['Private Message'] = 'Yksityisviesti'; -$a->strings['View Full Size'] = 'Näytä täysikokoisena'; -$a->strings['Tags: '] = 'Merkinnät:'; -$a->strings['[Remove any tag]'] = '[Poista mikä tahansa merkintä]'; -$a->strings['New album name'] = 'Uusi nimi albumille'; -$a->strings['Caption'] = 'Kuvateksti'; -$a->strings['Add a Tag'] = 'Lisää merkintä'; -$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Esimerkki: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'; -$a->strings['Do not rotate'] = 'Älä kierrä'; -$a->strings['Rotate CW (right)'] = 'Käännä oikealle'; -$a->strings['Rotate CCW (left)'] = 'Käännä vasemmalle'; -$a->strings['I like this (toggle)'] = 'Tykkään tästä (vaihda)'; -$a->strings['I don\'t like this (toggle)'] = 'En tykkää tästä (vaihda)'; -$a->strings['Comment'] = 'Kommentti'; -$a->strings['Map'] = 'Kartta'; -$a->strings['View Album'] = 'Näytä albumi'; -$a->strings['Requested profile is not available.'] = 'Pyydettyä profiilia ei saatavilla.'; +$a->strings['Network Notifications'] = 'Uutisvirtailmoitukset'; +$a->strings['System Notifications'] = 'Järjestelmäilmoitukset'; +$a->strings['Personal Notifications'] = 'Henkilökohtaiset ilmoitukset'; +$a->strings['Home Notifications'] = 'Koti-ilmoitukset'; +$a->strings['Show unread'] = 'Näytä lukemattomat'; +$a->strings['{0} requested registration'] = '{0} jätti rekisteröintipyynnön'; +$a->strings['Authorize application connection'] = 'Vahvista sovellusyhteys'; +$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Haluatko antaa tälle sovellukselle luvan hakea viestejäsi ja yhteystietojasi ja/tai luoda uusia viestejä?'; +$a->strings['Resubscribing to OStatus contacts'] = 'OStatus -kontaktien uudelleentilaus'; +$a->strings['Keep this window open until done.'] = 'Pidä tämä ikkuna auki kunnes kaikki tehtävät on suoritettu.'; +$a->strings['No contact provided.'] = 'Kontakti puuttuu.'; +$a->strings['Couldn\'t fetch information for contact.'] = 'Kontaktin tietoja ei voitu hakea.'; +$a->strings['Couldn\'t fetch friends for contact.'] = 'Ei voitu hakea kontaktin kaverit.'; +$a->strings['Done'] = 'Valmis'; +$a->strings['success'] = 'onnistui'; +$a->strings['failed'] = 'epäonnistui'; +$a->strings['ignored'] = 'ohitettu'; +$a->strings['Remote privacy information not available.'] = 'Yksityisyyden etätietoja ei saatavilla.'; +$a->strings['Visible to:'] = 'Näkyvissä:'; +$a->strings['Edit post'] = 'Muokkaa viestiä'; +$a->strings['web link'] = 'WWW-linkki'; +$a->strings['Insert video link'] = 'Lisää videolinkki'; +$a->strings['video link'] = 'videolinkki'; +$a->strings['Insert audio link'] = 'Lisää äänilinkki'; +$a->strings['audio link'] = 'äänilinkki'; +$a->strings['Remove Item Tag'] = 'Poista tägi'; +$a->strings['Select a tag to remove: '] = 'Valitse tägi poistamista varten:'; +$a->strings['Remove'] = 'Poista'; +$a->strings['No contacts.'] = 'Ei kontakteja.'; $a->strings['%s\'s timeline'] = '%s: aikajana'; $a->strings['%s\'s posts'] = '%s: julkaisut'; $a->strings['%s\'s comments'] = '%s: kommentit'; -$a->strings['Tips for New Members'] = 'Vinkkejä uusille käyttäjille'; -$a->strings['Profile deleted.'] = 'Profiili poistettiin.'; -$a->strings['Profile-'] = 'Profiili-'; -$a->strings['New profile created.'] = 'Uusi profiili luotu.'; -$a->strings['Profile unavailable to clone.'] = 'Profiili ei saatavilla kloonattavaksi.'; -$a->strings['Profile Name is required.'] = 'Profiilinimi on pakollinen.'; -$a->strings['Marital Status'] = 'Siviilisääty'; -$a->strings['Romantic Partner'] = 'Romanttinen kumppani'; -$a->strings['Work/Employment'] = 'Työ'; -$a->strings['Religion'] = 'Uskonto'; -$a->strings['Political Views'] = 'Poliittiset näkemykset'; -$a->strings['Gender'] = 'Sukupuoli'; -$a->strings['Sexual Preference'] = 'Seksuaalinen suuntautuminen'; -$a->strings['XMPP'] = 'XMPP'; -$a->strings['Homepage'] = 'Kotisivu'; -$a->strings['Interests'] = 'Kiinnostukset'; -$a->strings['Location'] = 'Sijainti'; -$a->strings['Profile updated.'] = 'Profiili päivitettiin.'; -$a->strings['Hide contacts and friends:'] = 'Piilota kontaktit ja kaverit:'; -$a->strings['Hide your contact/friend list from viewers of this profile?'] = 'Piilota tämän profiilin kontakti/kaverilista?'; -$a->strings['Show more profile fields:'] = 'Näytä lisää profiilikenttiä:'; -$a->strings['Edit Profile Details'] = 'Muokkaa profiilin yksityiskohdat'; -$a->strings['Change Profile Photo'] = 'Vaihda profiilikuva'; -$a->strings['View this profile'] = 'Näytä profiilia'; -$a->strings['Edit visibility'] = 'Muokkaa näkyvyyttä'; -$a->strings['Create a new profile using these settings'] = 'Luo uusi profiili näillä asetuksilla'; -$a->strings['Clone this profile'] = 'Kloonaa tämä profiili'; -$a->strings['Delete this profile'] = 'Poista tämä profiili'; -$a->strings['Basic information'] = 'Perustiedot'; -$a->strings['Profile picture'] = 'Profiilikuva'; -$a->strings['Preferences'] = 'Mieltymykset'; -$a->strings['Status information'] = 'Tilatiedot'; -$a->strings['Additional information'] = 'Lisätietoja'; -$a->strings['Relation'] = 'Suhde'; -$a->strings['Miscellaneous'] = 'Sekalaista'; -$a->strings['Your Gender:'] = 'Sukupuoli:'; -$a->strings[' Marital Status:'] = ' Siviilisääty:'; -$a->strings['Sexual Preference:'] = 'Seksuaalinen suuntautuminen:'; -$a->strings['Example: fishing photography software'] = 'Esimerkki: kalastus valokuvaus ohjelmistot'; -$a->strings['Profile Name:'] = 'Profiilinimi:'; -$a->strings['Your Full Name:'] = 'Koko nimi:'; -$a->strings['Title/Description:'] = 'Otsikko/kuvaus:'; -$a->strings['Street Address:'] = 'Katuosoite:'; -$a->strings['Locality/City:'] = 'Kaupunki:'; -$a->strings['Region/State:'] = 'Alue/osavaltio:'; -$a->strings['Postal/Zip Code:'] = 'Postinumero:'; -$a->strings['Country:'] = 'Maa:'; +$a->strings['Image exceeds size limit of %s'] = 'Kuva ylittää kokorajoituksen %s'; +$a->strings['Image upload didn\'t complete, please try again'] = 'Kuvan lataus ei onnistunut, yritä uudelleen'; +$a->strings['Image file is missing'] = 'Kuvatiedosto puuttuu'; +$a->strings['Image file is empty.'] = 'Kuvatiedosto on tyhjä.'; +$a->strings['View Album'] = 'Näytä albumi'; +$a->strings['Profile not found.'] = 'Profiilia ei löytynyt.'; +$a->strings['Full Name:'] = 'Koko nimi:'; +$a->strings['Member since:'] = 'Liittymispäivämäärä:'; +$a->strings['j F, Y'] = 'j F, Y'; +$a->strings['j F'] = 'j F'; +$a->strings['Birthday:'] = 'Syntymäpäivä:'; $a->strings['Age: '] = 'Ikä:'; -$a->strings['Who: (if applicable)'] = 'Kuka: (tarvittaessa)'; -$a->strings['Examples: cathy123, Cathy Williams, cathy@example.com'] = 'Esimerkkejä: cathy123, Cathy Williams, cathy@example.com'; -$a->strings['Since [date]:'] = 'Lähtien [päivämäärä]:'; -$a->strings['Tell us about yourself...'] = 'Kerro vähän itsestäsi...'; -$a->strings['XMPP (Jabber) address:'] = 'XMPP (Jabber) osoite:'; -$a->strings['Homepage URL:'] = 'Kotisivun URL-osoite:'; -$a->strings['Hometown:'] = 'Kotikaupunki:'; -$a->strings['Political Views:'] = 'Politiikka:'; -$a->strings['Religious Views:'] = 'Uskonto:'; -$a->strings['Public Keywords:'] = 'Julkiset avainsanat:'; -$a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Käytetään kaveriehdotuksia varten, näkyy muille)'; -$a->strings['Private Keywords:'] = 'Yksityiset avainsanat:'; -$a->strings['(Used for searching profiles, never shown to others)'] = '(Käytetään profiilihakua varten, ei näy muille)'; -$a->strings['Likes:'] = 'Tykkäykset:'; -$a->strings['Dislikes:'] = 'Ei tykkää:'; -$a->strings['Musical interests'] = 'Musiikki'; -$a->strings['Books, literature'] = 'Kirjat, kirjallisuus'; -$a->strings['Television'] = 'Televisio'; -$a->strings['Film/dance/culture/entertainment'] = 'Elokuvat/tanssi/kulttuuri/viihde'; -$a->strings['Hobbies/Interests'] = 'Harrastukset'; -$a->strings['Love/romance'] = 'Rakkaus/romanssi'; -$a->strings['Work/employment'] = 'Työ:'; -$a->strings['School/education'] = 'Koulutus:'; -$a->strings['Contact information and Social Networks'] = 'Yhteystiedot ja sosiaalinen media'; -$a->strings['Profile Image'] = 'Profiilikuva'; -$a->strings['visible to everybody'] = 'näkyvissä kaikille'; -$a->strings['Edit/Manage Profiles'] = 'Muokkaa/hallitse profiilit'; -$a->strings['Change profile photo'] = 'Vaihda profiilikuva'; -$a->strings['Create New Profile'] = 'Luo uusi profiili'; -$a->strings['Registration successful. Please check your email for further instructions.'] = 'Rekisteröityminen onnistui. Saat kohta lisäohjeita sähköpostitse.'; -$a->strings['Registration successful.'] = 'Rekisteröityminen onnistui.'; -$a->strings['Your registration can not be processed.'] = 'Rekisteröintisi ei voida käsitellä.'; -$a->strings['Your registration is pending approval by the site owner.'] = 'Rekisteröintisi odottaa ylläpitäjän hyväksyntää.'; +$a->strings['Description:'] = 'Kuvaus:'; +$a->strings['Profile unavailable.'] = 'Profiili ei saatavilla.'; +$a->strings['Invalid locator'] = 'Viallinen paikannin'; +$a->strings['Friend/Connection Request'] = 'Ystävä/yhteyspyyntö'; +$a->strings['Unable to check your home location.'] = 'Kotisijaintisi ei voitu tarkistaa.'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = '%s-käyttäjän päivittäinen seinäviestiraja ylitetty. Viestin lähettäminen epäonnistui.'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Sivuston päivittäinen rekisteröintiraja ylitetty. Yritä uudelleen huomenna.'; $a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Jos OpenID ei ole tuttu, jätä kenttä tyhjäksi.'; $a->strings['Your OpenID (optional): '] = 'OpenID -tunnus (valinnainen):'; $a->strings['Include your profile in member directory?'] = 'Lisää profiilisi jäsenluetteloon?'; @@ -1254,118 +1020,37 @@ $a->strings['New Password:'] = 'Uusi salasana:'; $a->strings['Leave empty for an auto generated password.'] = 'Jätä tyhjäksi jos haluat automaattisesti luotu salasanan.'; $a->strings['Confirm:'] = 'Vahvista:'; $a->strings['Choose a nickname: '] = 'Valitse lempinimi:'; -$a->strings['Register'] = 'Rekisteröidy'; +$a->strings['Import'] = 'Tuo'; $a->strings['Import your profile to this friendica instance'] = 'Tuo profiilisi tähän Friendica -instanssiin.'; -$a->strings['User deleted their account'] = 'Käyttäjä poisti tilinsä'; -$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Friendica -solmullasi käyttäjä poisti tilinsä. Varmista että hänen tiedot poistetaan myös varmuuskopioista.'; -$a->strings['The user id is %d'] = 'Käyttäjätunnus on %d'; -$a->strings['Remove My Account'] = 'Poista tilini'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Tämä poistaa käyttäjätilisi pysyvästi. Poistoa ei voi perua myöhemmin.'; -$a->strings['Please enter your password for verification:'] = 'Syötä salasanasi varmistusta varten:'; -$a->strings['Too Many Requests'] = 'Liian monta pyyntöä'; +$a->strings['Registration successful. Please check your email for further instructions.'] = 'Rekisteröityminen onnistui. Saat kohta lisäohjeita sähköpostitse.'; +$a->strings['Registration successful.'] = 'Rekisteröityminen onnistui.'; +$a->strings['Your registration can not be processed.'] = 'Rekisteröintisi ei voida käsitellä.'; +$a->strings['Your registration is pending approval by the site owner.'] = 'Rekisteröintisi odottaa ylläpitäjän hyväksyntää.'; $a->strings['Items tagged with: %s'] = 'Kohteet joilla tunnisteet: %s'; -$a->strings['Account'] = 'Tili'; -$a->strings['Display'] = 'Ulkonäkö'; -$a->strings['Social Networks'] = 'Sosiaalinen media'; -$a->strings['Connected apps'] = 'Yhdistetyt sovellukset'; -$a->strings['Remove account'] = 'Poista tili'; -$a->strings['Missing some important data!'] = 'Tärkeää dataa puuttuu!'; -$a->strings['Email settings updated.'] = 'Sähköpostin asetukset päivitettiin.'; -$a->strings['Features updated'] = 'Ominaisuudet päivitetty'; -$a->strings['Passwords do not match. Password unchanged.'] = 'Salasanat eivät täsmää. Salasana ennallaan.'; -$a->strings['Empty passwords are not allowed. Password unchanged.'] = 'Tyhjä salasanakenttä ei ole sallittu. Salasana ennallaan.'; -$a->strings['Wrong password.'] = 'Väärä salasana.'; -$a->strings['Password changed.'] = 'Salasana vaihdettu.'; -$a->strings['Password update failed. Please try again.'] = 'Salasanan vaihto epäonnistui. Yritä uudelleen.'; -$a->strings[' Please use a shorter name.'] = 'Käytä lyhyempää nimeä.'; -$a->strings[' Name too short.'] = 'Nimi on liian lyhyt.'; -$a->strings['Wrong Password'] = 'Väärä salasana'; -$a->strings['Invalid email.'] = 'Virheellinen sähköposti.'; -$a->strings['Settings updated.'] = 'Asetukset päivitetty.'; -$a->strings['Add application'] = 'Lisää sovellus'; -$a->strings['Consumer Key'] = 'Kuluttajan avain'; -$a->strings['Consumer Secret'] = 'Kuluttajasalaisuus'; -$a->strings['Redirect'] = 'Uudelleenohjaus'; -$a->strings['Icon url'] = 'Kuvakkeen URL-osoite'; -$a->strings['You can\'t edit this application.'] = 'Et voi muokata tätä sovellusta.'; -$a->strings['Connected Apps'] = 'Yhdistetyt sovellukset'; -$a->strings['Edit'] = 'Muokkaa'; -$a->strings['Client key starts with'] = 'Asiakasavain alkaa'; -$a->strings['No name'] = 'Ei nimeä'; -$a->strings['Remove authorization'] = 'Poista lupa'; -$a->strings['No Addon settings configured'] = 'Lisäosa-asetukset puuttuvat'; -$a->strings['Addon Settings'] = 'Lisäosa-asetukset'; -$a->strings['Additional Features'] = 'Lisäominaisuuksia'; -$a->strings['Diaspora'] = 'Diaspora'; -$a->strings['enabled'] = 'käytössä'; -$a->strings['disabled'] = 'pois käytöstä'; -$a->strings['Built-in support for %s connectivity is %s'] = 'Sisäänrakennettu tuki palvelulle %s on %s'; -$a->strings['GNU Social (OStatus)'] = 'GNU Social (OStatus)'; -$a->strings['General Social Media Settings'] = 'Yleiset some asetukset'; -$a->strings['Disable Content Warning'] = 'Poista sisältövaroitus käytöstä'; -$a->strings['Disable intelligent shortening'] = 'Poista alykäs lyhentäminen käytöstä'; -$a->strings['Automatically follow any GNU Social (OStatus) followers/mentioners'] = 'Automaattisesti seuraa GNU social (OStatus) seuraajat/mainitsijat'; -$a->strings['Default group for OStatus contacts'] = 'Oletusryhmä OStatus kontakteille'; -$a->strings['Your legacy GNU Social account'] = 'Vanha GNU social käyttäjätilisi'; -$a->strings['Repair OStatus subscriptions'] = 'Korjaa OStatus tilaukset'; -$a->strings['Email/Mailbox Setup'] = 'Sähköpostin asennus'; -$a->strings['Last successful email check:'] = 'Viimeisin onnistunut sähköpostitarkistus:'; -$a->strings['IMAP server name:'] = 'IMAP-palvelimen nimi:'; -$a->strings['IMAP port:'] = 'IMAP-porttti:'; -$a->strings['Security:'] = 'Turvallisuus:'; -$a->strings['None'] = 'Ei mitään'; -$a->strings['Email login name:'] = 'Sähköpostitilin käyttäjätunnus:'; -$a->strings['Email password:'] = 'Sähköpostin salasana:'; -$a->strings['Reply-to address:'] = 'Vastausosoite:'; -$a->strings['Send public posts to all email contacts:'] = 'Lähetä julkiset julkaisut kaikille kontakteille:'; -$a->strings['Action after import:'] = 'Toiminta tuonnin jälkeen:'; -$a->strings['Mark as seen'] = 'Merkitse luetuksi'; -$a->strings['Move to folder'] = 'Siirrä kansioon'; -$a->strings['Move to folder:'] = 'Siirrä kansioon:'; -$a->strings['%s - (Unsupported)'] = '%s - (Ei tueta)'; -$a->strings['%s - (Experimental)'] = '%s - (Kokeellinen)'; -$a->strings['Display Settings'] = 'Näyttöasetukset'; -$a->strings['Display Theme:'] = 'Käyttöliittymän teema:'; -$a->strings['Mobile Theme:'] = 'Mobiiliteema:'; -$a->strings['Update browser every xx seconds'] = 'Päivitä selain xx sekunnin välein'; -$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Vähintään 10 sekuntia. -1 poistaa ominaisuuden käytöstä.'; -$a->strings['Maximum of 100 items'] = 'Enintään 100 kohdetta'; -$a->strings['Don\'t show emoticons'] = 'Piilota hymiöt'; -$a->strings['Calendar'] = 'Kalenteri'; -$a->strings['Beginning of week:'] = 'Viikon alku:'; -$a->strings['Infinite scroll'] = 'Loputon selaaminen'; -$a->strings['General Theme Settings'] = 'Yleiset teeman asetukset'; -$a->strings['Custom Theme Settings'] = 'Mukautetut teema-asetukset'; -$a->strings['Content Settings'] = 'Sisältöasetukset'; -$a->strings['Theme settings'] = 'Teeman asetukset'; -$a->strings['Unable to find your profile. Please contact your admin.'] = 'Profiilisi ei löytynyt. Ota yhteyttä ylläpitäjään.'; -$a->strings['Account Types'] = 'Tilityypit'; -$a->strings['Personal Page Subtypes'] = 'Henkilökohtaisen sivun alatyypit'; -$a->strings['Community Forum Subtypes'] = 'Yhteisöfoorumin alatyypit'; -$a->strings['Account for a personal profile.'] = 'Henkilökohtaisen profiilin käyttäjätili.'; -$a->strings['Automatically approves all contact requests.'] = 'Automaattisesti hyväksyy kaikki kontaktipyynnöt'; -$a->strings['Private Forum [Experimental]'] = 'Yksityisfoorumi [kokeellinen]'; -$a->strings['OpenID:'] = 'OpenID:'; -$a->strings['Publish your default profile in your local site directory?'] = 'Julkaise oletusprofiilisi tämän sivuston paikallisluettelossa?'; -$a->strings['Publish your default profile in the global social directory?'] = 'Julkaise oletusprofiilisi maailmanlaajuisessa sosiaaliluettelossa?'; -$a->strings['Allow friends to post to your profile page?'] = 'Anna kavereiden julkaista profiilisivullasi?'; -$a->strings['Allow friends to tag your posts?'] = 'Anna kavereiden lisätä tunnisteita julkaisuusi?'; -$a->strings['Your contacts can add additional tags to your posts.'] = 'Kontaktisi voi lisätä ylimääräisiä tunnisteita julkaisuusi.'; -$a->strings['Permit unknown people to send you private mail?'] = 'Salli yksityisviesit tuntemattomilta?'; -$a->strings['Profile is not published.'] = 'Profiili ei ole julkaistu.'; -$a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'Identiteettisi osoite on \'%s\' tai \'%s\'.'; -$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Jos kenttä jää tyhjäksi, julkaisut eivät vanhene. Vanhentuneet julkaisut poistetaan.'; -$a->strings['Expire posts:'] = 'Julkaisujen vanheneminen:'; -$a->strings['Expire starred posts:'] = 'Tähtimerkityt julkaisut vanhenee:'; -$a->strings['Expire photos:'] = 'Kuvat vanhenee:'; -$a->strings['Account Settings'] = 'Tiliasetukset'; -$a->strings['Password Settings'] = 'Salasana-asetukset'; -$a->strings['Leave password fields blank unless changing'] = 'Jätä salasana kenttää tyhjäksi jos et halua vaihtaa salasanaa'; +$a->strings['Create a New Account'] = 'Luo uusi käyttäjätili'; +$a->strings['Or login using OpenID: '] = 'Kirjaudu sisään OpenID -tunnuksella:'; +$a->strings['Password: '] = 'Salasana:'; +$a->strings['Remember me'] = 'Muista minut'; +$a->strings['Forgot your password?'] = 'Unohditko salasanasi?'; +$a->strings['Website Terms of Service'] = 'Verkkosivun käyttöehdot'; +$a->strings['terms of service'] = 'käyttöehdot'; +$a->strings['Website Privacy Policy'] = 'Sivuston tietosuojakäytäntö'; +$a->strings['privacy policy'] = 'tietosuojakäytäntö'; +$a->strings['Logged out.'] = 'Kirjautunut ulos.'; $a->strings['Current Password:'] = 'Nykyinen salasana:'; $a->strings['Your current password to confirm the changes'] = 'Syötä nykyinen salasanasi vahvistaaksesi muutokset'; +$a->strings['Invalid email.'] = 'Virheellinen sähköposti.'; +$a->strings['Unable to find your profile. Please contact your admin.'] = 'Profiilisi ei löytynyt. Ota yhteyttä ylläpitäjään.'; +$a->strings['Personal Page Subtypes'] = 'Henkilökohtaisen sivun alatyypit'; +$a->strings['Account for a personal profile.'] = 'Henkilökohtaisen profiilin käyttäjätili.'; +$a->strings['Automatically approves all contact requests.'] = 'Automaattisesti hyväksyy kaikki kontaktipyynnöt'; +$a->strings['OpenID:'] = 'OpenID:'; +$a->strings['Account Settings'] = 'Tiliasetukset'; +$a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'Identiteettisi osoite on \'%s\' tai \'%s\'.'; +$a->strings['Password Settings'] = 'Salasana-asetukset'; +$a->strings['Leave password fields blank unless changing'] = 'Jätä salasana kenttää tyhjäksi jos et halua vaihtaa salasanaa'; $a->strings['Password:'] = 'Salasana:'; $a->strings['Basic Settings'] = 'Perusasetukset'; -$a->strings['Full Name:'] = 'Koko nimi:'; $a->strings['Email Address:'] = 'Sähköpostiosoite:'; $a->strings['Your Timezone:'] = 'Aikavyöhyke:'; $a->strings['Your Language:'] = 'Kieli:'; @@ -1375,10 +1060,13 @@ $a->strings['Use Browser Location:'] = 'Käytä selaimen sijainti:'; $a->strings['Security and Privacy Settings'] = 'Turvallisuus ja tietosuoja-asetukset'; $a->strings['Maximum Friend Requests/Day:'] = 'Kaveripyyntöraja päivässä:'; $a->strings['(to prevent spam abuse)'] = '(roskapostin estämiseksi)'; -$a->strings['Default Post Permissions'] = 'Julkaisun oletuskäyttöoikeudet:'; -$a->strings['(click to open/close)'] = '(klikkaa auki/kiinni)'; -$a->strings['Default Permissions for New Posts'] = 'Uuden julkaisun oletuskäyttöoikeudet'; +$a->strings['Allow friends to post to your profile page?'] = 'Anna kavereiden julkaista profiilisivullasi?'; +$a->strings['Allow friends to tag your posts?'] = 'Anna kavereiden lisätä tunnisteita julkaisuusi?'; +$a->strings['Your contacts can add additional tags to your posts.'] = 'Kontaktisi voi lisätä ylimääräisiä tunnisteita julkaisuusi.'; +$a->strings['Permit unknown people to send you private mail?'] = 'Salli yksityisviesit tuntemattomilta?'; $a->strings['Maximum private messages per day from unknown people:'] = 'Enimmäismäärä yksityisviestejä päivässä tuntemattomilta henkilöiltä:'; +$a->strings['Default Post Permissions'] = 'Julkaisun oletuskäyttöoikeudet:'; +$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Jos kenttä jää tyhjäksi, julkaisut eivät vanhene. Vanhentuneet julkaisut poistetaan.'; $a->strings['Notification Settings'] = 'Huomautusasetukset'; $a->strings['Send a notification email when:'] = 'Lähetä sähköposti-ilmoitus kun:'; $a->strings['You receive an introduction'] = 'Vastaanotat kaverikutsun'; @@ -1388,7 +1076,6 @@ $a->strings['Someone writes a followup comment'] = 'Joku vastaa kommenttiin'; $a->strings['You receive a private message'] = 'Vastaanotat yksityisviestin'; $a->strings['You receive a friend suggestion'] = 'Vastaanotat kaveriehdotuksen'; $a->strings['You are tagged in a post'] = 'Sinut on merkitty julkaisuun'; -$a->strings['You are poked/prodded/etc. in a post'] = 'sinut on tökätty tms. julkaisussa'; $a->strings['Activate desktop notifications'] = 'Ota työpöytäilmoitukset käyttöön'; $a->strings['Show desktop popup on new notifications'] = 'Näytä uudet ilmoitukset ponnahdusikkunassa'; $a->strings['Text-only notification emails'] = 'Ilmoitussähköposteissa vain tekstiä'; @@ -1396,492 +1083,160 @@ $a->strings['Send text only notification emails, without the html part'] = 'Läh $a->strings['Show detailled notifications'] = 'Näytä yksityiskohtaiset ilmoitukset'; $a->strings['Advanced Account/Page Type Settings'] = 'Käyttäjätili/sivutyyppi lisäasetuksia'; $a->strings['Relocate'] = 'Uudelleensijoitus'; -$a->strings['[Embedded content - reload page to view]'] = '[Upotettu sisältö - näet sen päivittämällä sivun]'; -$a->strings['Do you really want to delete this video?'] = 'Haluatko varmasti poistaa tämän videon?'; -$a->strings['Delete Video'] = 'Poista video'; -$a->strings['No videos selected'] = 'Ei videoita valittuna'; -$a->strings['Recent Videos'] = 'Viimeisimmät videot'; -$a->strings['Upload New Videos'] = 'Lataa uusia videoita'; -$a->strings['default'] = 'oletus'; -$a->strings['greenzero'] = 'greenzero'; -$a->strings['purplezero'] = 'purplezero'; -$a->strings['easterbunny'] = 'easterbunny'; -$a->strings['darkzero'] = 'darkzero'; -$a->strings['comix'] = 'comix'; -$a->strings['slackr'] = 'slackr'; -$a->strings['Variations'] = 'Muunnelmat'; -$a->strings['Top Banner'] = 'Yläpalkki'; -$a->strings['Full screen'] = 'Koko näyttö'; -$a->strings['Mosaic'] = 'Mosaiikki'; -$a->strings['Note'] = 'Muistiinpano'; -$a->strings['Select color scheme'] = 'Valitse värimalli'; -$a->strings['Navigation bar background color'] = 'Navigointipalkin taustaväri'; -$a->strings['Navigation bar icon color '] = 'Navigointipalkin kuvakkeiden väri'; -$a->strings['Link color'] = 'Linkin väri'; -$a->strings['Set the background color'] = 'Valitse taustaväri'; -$a->strings['Content background opacity'] = 'Sisällön taustasameus'; -$a->strings['Set the background image'] = 'Valitse taustakuva'; -$a->strings['Background image style'] = 'Taustakuvan tyyli'; -$a->strings['Login page background image'] = 'Sisäänkirjautumissivun taustakuva'; -$a->strings['Login page background color'] = 'Sisäänkirjautumissivun taustaväri'; -$a->strings['Leave background image and color empty for theme defaults'] = 'Jätä taustakuva ja väri tyhjäksi käyttääksesi teeman oletuksia'; -$a->strings['Guest'] = 'Vieras'; -$a->strings['Visitor'] = 'Vierailija'; -$a->strings['Logout'] = 'Kirjaudu ulos'; -$a->strings['End this session'] = 'Lopeta istunto'; -$a->strings['Your posts and conversations'] = 'Omat julkaisut ja keskustelut'; -$a->strings['Your profile page'] = 'Oma profiilisivu'; -$a->strings['Your photos'] = 'Omat kuvat'; -$a->strings['Videos'] = 'Videot'; -$a->strings['Your videos'] = 'Omat videot'; -$a->strings['Your events'] = 'Omat tapahtumat'; -$a->strings['Conversations from your friends'] = 'Kavereiden keskustelut'; -$a->strings['Events and Calendar'] = 'Tapahtumat ja kalenteri'; -$a->strings['Private mail'] = 'Yksityinen posti'; -$a->strings['Account settings'] = 'Tiliasetukset'; -$a->strings['Manage/edit friends and contacts'] = 'Hallitse/muokkaa kaverit ja kontaktit'; -$a->strings['Alignment'] = 'Kohdistaminen'; -$a->strings['Left'] = 'Vasemmalle'; -$a->strings['Center'] = 'Keskelle'; -$a->strings['Color scheme'] = 'Värimalli'; -$a->strings['Posts font size'] = 'Julkaisujen fonttikoko'; -$a->strings['Textareas font size'] = 'Tekstikenttien fonttikoko'; -$a->strings['don\'t show'] = 'älä näytä'; -$a->strings['show'] = 'näytä'; -$a->strings['Set style'] = 'Aseta tyyli'; -$a->strings['Community Pages'] = 'Yhteisösivut'; -$a->strings['Community Profiles'] = 'Yhteisöprofiilit'; -$a->strings['Connect Services'] = 'Yhdistä palvelut'; -$a->strings['Find Friends'] = 'Etsi kavereita'; -$a->strings['Last users'] = 'Viimeisimmät käyttäjät'; -$a->strings['Find People'] = 'Löydä ihmisiä'; -$a->strings['Enter name or interest'] = 'Syötä nimi tai harrastus'; -$a->strings['Examples: Robert Morgenstein, Fishing'] = 'Esim. Matti Meikäläinen, kalastus yms.'; -$a->strings['Similar Interests'] = 'Yhteiset harrastukset'; -$a->strings['Random Profile'] = 'Satunnainen profiili'; -$a->strings['Invite Friends'] = 'Kutsu kavereita'; -$a->strings['Local Directory'] = 'Paikallinen hakemisto'; -$a->strings['External link to forum'] = 'Ulkoinen linkki foorumiin'; -$a->strings['Quick Start'] = 'Pika-aloitus'; +$a->strings['Addon Settings'] = 'Lisäosa-asetukset'; +$a->strings['No Addon settings configured'] = 'Lisäosa-asetukset puuttuvat'; +$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; +$a->strings['None'] = 'Ei mitään'; +$a->strings['General Social Media Settings'] = 'Yleiset some asetukset'; +$a->strings['Repair OStatus subscriptions'] = 'Korjaa OStatus tilaukset'; +$a->strings['Email/Mailbox Setup'] = 'Sähköpostin asennus'; +$a->strings['Last successful email check:'] = 'Viimeisin onnistunut sähköpostitarkistus:'; +$a->strings['IMAP server name:'] = 'IMAP-palvelimen nimi:'; +$a->strings['IMAP port:'] = 'IMAP-porttti:'; +$a->strings['Security:'] = 'Turvallisuus:'; +$a->strings['Email login name:'] = 'Sähköpostitilin käyttäjätunnus:'; +$a->strings['Email password:'] = 'Sähköpostin salasana:'; +$a->strings['Reply-to address:'] = 'Vastausosoite:'; +$a->strings['Send public posts to all email contacts:'] = 'Lähetä julkiset julkaisut kaikille kontakteille:'; +$a->strings['Action after import:'] = 'Toiminta tuonnin jälkeen:'; +$a->strings['Move to folder'] = 'Siirrä kansioon'; +$a->strings['Move to folder:'] = 'Siirrä kansioon:'; +$a->strings['Delegates'] = 'Valtuutetut'; +$a->strings['Existing Page Delegates'] = 'Sivun valtuutetut'; +$a->strings['Potential Delegates'] = 'Mahdolliset valtuutetut'; +$a->strings['Add'] = 'Lisää'; +$a->strings['No entries.'] = 'Ei kohteita.'; +$a->strings['%s - (Unsupported)'] = '%s - (Ei tueta)'; +$a->strings['Display Settings'] = 'Näyttöasetukset'; +$a->strings['General Theme Settings'] = 'Yleiset teeman asetukset'; +$a->strings['Custom Theme Settings'] = 'Mukautetut teema-asetukset'; +$a->strings['Content Settings'] = 'Sisältöasetukset'; +$a->strings['Theme settings'] = 'Teeman asetukset'; +$a->strings['Display Theme:'] = 'Käyttöliittymän teema:'; +$a->strings['Mobile Theme:'] = 'Mobiiliteema:'; +$a->strings['Maximum of 100 items'] = 'Enintään 100 kohdetta'; +$a->strings['Update browser every xx seconds'] = 'Päivitä selain xx sekunnin välein'; +$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Vähintään 10 sekuntia. -1 poistaa ominaisuuden käytöstä.'; +$a->strings['Infinite scroll'] = 'Loputon selaaminen'; +$a->strings['Beginning of week:'] = 'Viikon alku:'; +$a->strings['Additional Features'] = 'Lisäominaisuuksia'; +$a->strings['Connected Apps'] = 'Yhdistetyt sovellukset'; +$a->strings['Remove authorization'] = 'Poista lupa'; +$a->strings['Profile Name is required.'] = 'Profiilinimi on pakollinen.'; +$a->strings['(click to open/close)'] = '(klikkaa auki/kiinni)'; +$a->strings['Edit Profile Details'] = 'Muokkaa profiilin yksityiskohdat'; +$a->strings['Change Profile Photo'] = 'Vaihda profiilikuva'; +$a->strings['Profile picture'] = 'Profiilikuva'; +$a->strings['Location'] = 'Sijainti'; +$a->strings['Miscellaneous'] = 'Sekalaista'; +$a->strings['Upload Profile Photo'] = 'Lataa profiilikuva'; +$a->strings['Street Address:'] = 'Katuosoite:'; +$a->strings['Locality/City:'] = 'Kaupunki:'; +$a->strings['Region/State:'] = 'Alue/osavaltio:'; +$a->strings['Postal/Zip Code:'] = 'Postinumero:'; +$a->strings['Country:'] = 'Maa:'; +$a->strings['XMPP (Jabber) address:'] = 'XMPP (Jabber) osoite:'; +$a->strings['Homepage URL:'] = 'Kotisivun URL-osoite:'; +$a->strings['Public Keywords:'] = 'Julkiset avainsanat:'; +$a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Käytetään kaveriehdotuksia varten, näkyy muille)'; +$a->strings['Private Keywords:'] = 'Yksityiset avainsanat:'; +$a->strings['(Used for searching profiles, never shown to others)'] = '(Käytetään profiilihakua varten, ei näy muille)'; +$a->strings['Image size reduction [%s] failed.'] = 'Kuvan pienentäminen [%s] epäonnistui.'; +$a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Jos kuva ei näy heti, lataa sivu uudelleen tai tyhjennä selaimen välimuisti.'; +$a->strings['Unable to process image'] = 'Kuvan käsitteleminen epäonnistui'; +$a->strings['Crop Image'] = 'Rajaa kuva'; +$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Rajaa kuva sopivasti.'; +$a->strings['or'] = 'tai'; +$a->strings['skip this step'] = 'ohita tämä vaihe'; +$a->strings['select a photo from your photo albums'] = 'valitse kuva albumeistasi'; +$a->strings['[Friendica System Notify]'] = '[Friendica Järjestelmäilmoitus]'; +$a->strings['User deleted their account'] = 'Käyttäjä poisti tilinsä'; +$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Friendica -solmullasi käyttäjä poisti tilinsä. Varmista että hänen tiedot poistetaan myös varmuuskopioista.'; +$a->strings['The user id is %d'] = 'Käyttäjätunnus on %d'; +$a->strings['Remove My Account'] = 'Poista tilini'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Tämä poistaa käyttäjätilisi pysyvästi. Poistoa ei voi perua myöhemmin.'; +$a->strings['Please enter your password for verification:'] = 'Syötä salasanasi varmistusta varten:'; +$a->strings['Export account'] = 'Vie tili'; +$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.'] = 'Vie tilin tiedot ja yhteystiedot. Käytä tätä tilisi varmuuskopiointiin ja/tai siirtämiseen toiselle palvelimelle.'; +$a->strings['Export all'] = 'Vie kaikki'; +$a->strings['Privacy Statement'] = 'Tietosuojalausunto'; +$a->strings['Move account'] = 'Siirrä tili'; +$a->strings['You can import an account from another Friendica server.'] = 'Voit tuoda käyttäjätilin toiselta Friendica -palvelimelta.'; +$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Tämä on kokeellinen ominaisuus. Emme voi tuoda kontakteja OStatus-verkolta (GNU social/Statusnet) tai Diasporalta.'; +$a->strings['Account file'] = 'Tilitiedosto'; $a->strings['Error decoding account file'] = 'Tilitiedoston tulkinnassa tapahtui virhe'; $a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Virhe: tiedostosta puuttuu versiotiedot! Saattaa olla että tämä ei ole Friendica -tilitiedosto?'; $a->strings['User \'%s\' already exists on this server!'] = 'Käyttäjä \'%s\' on jo olemassa tällä palvelimella!'; $a->strings['User creation error'] = 'Virhe käyttäjän luomisessa'; -$a->strings['User profile creation error'] = 'Virhe käyttäjäprofiilin luomisessa'; $a->strings['%d contact not imported'] = [ 0 => '%d kontakti ei tuotu', 1 => '%d kontakteja ei tuotu', ]; +$a->strings['User profile creation error'] = 'Virhe käyttäjäprofiilin luomisessa'; $a->strings['Done. You can now login with your username and password'] = 'Suoritettu. Voit nyt kirjautua sisään käyttäjätunnuksellasi.'; -$a->strings['Post to Email'] = 'Viesti sähköpostiin'; -$a->strings['Hide your profile details from unknown viewers?'] = 'Piilota profiilitietosi tuntemattomilta?'; -$a->strings['Visible to everybody'] = 'Näkyvissä kaikille'; -$a->strings['Close'] = 'Sulje'; -$a->strings['Enter new password: '] = 'Syötä uusi salasana:'; -$a->strings['Password can\'t be empty'] = 'Salasanakenttä ei voi olla tyhjä'; -$a->strings['System'] = 'Järjestelmä'; -$a->strings['Home'] = 'Koti'; -$a->strings['Introductions'] = 'Esittelyt'; -$a->strings['%s commented on %s\'s post'] = '%s kommentoi julkaisuun jonka kirjoitti %s'; -$a->strings['%s created a new post'] = '%s loi uuden julkaisun'; +$a->strings['Welcome to Friendica'] = 'Tervetuloa Friendicaan'; +$a->strings['New Member Checklist'] = 'Uuden jäsenen tarkistuslista'; +$a->strings['Getting Started'] = 'Ensiaskeleet'; +$a->strings['Friendica Walk-Through'] = 'Friendica -läpikäynti'; +$a->strings['Go to Your Settings'] = 'Omat Asetukset'; +$a->strings['Edit Your Profile'] = 'Muokkaa profiilisi'; +$a->strings['Profile Keywords'] = 'Profiilin avainsanat'; +$a->strings['Connecting'] = 'Yhdistetään'; +$a->strings['Importing Emails'] = 'Sähköpostin tuominen'; +$a->strings['Go to Your Contacts Page'] = 'Näytä minun kontaktit'; +$a->strings['Go to Your Site\'s Directory'] = 'Näytä oman sivuston luettelo'; +$a->strings['Finding New People'] = 'Kavereiden hankkiminen'; +$a->strings['Why Aren\'t My Posts Public?'] = 'Miksi julkaisuni eivät ole julkisia?'; +$a->strings['Getting Help'] = 'Avun saaminen'; +$a->strings['Go to the Help Section'] = 'Näytä ohjeet'; $a->strings['%s liked %s\'s post'] = '%s tykkäsi julkaisusta jonka kirjoitti %s'; $a->strings['%s disliked %s\'s post'] = '%s ei tykännyt julkaisusta jonka kirjoitti %s'; $a->strings['%s is attending %s\'s event'] = '%s osallistuu tapahtumaan jonka järjestää %s'; $a->strings['%s is not attending %s\'s event'] = '%s ei osallistu tapahtumaan jonka järjestää %s'; -$a->strings['%s may attend %s\'s event'] = '%s ehkä osallistuu tapahtumaan jonka järjestää %s'; $a->strings['%s is now friends with %s'] = '%s ja %s ovat kavereita'; +$a->strings['%s commented on %s\'s post'] = '%s kommentoi julkaisuun jonka kirjoitti %s'; +$a->strings['%s created a new post'] = '%s loi uuden julkaisun'; $a->strings['Friend Suggestion'] = 'Kaveriehdotus'; $a->strings['Friend/Connect Request'] = 'Ystävä/yhteyspyyntö'; $a->strings['New Follower'] = 'Uusi seuraaja'; -$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Komentoriviversiota PHP:stä ei löytynyt web-palvelimen PATH:ista.'; -$a->strings['PHP executable path'] = 'Polku PHP-ohjelmaan'; -$a->strings['Enter full path to php executable. You can leave this blank to continue the installation.'] = 'Kirjoita koko polku PHP-ohjelmaan. Voit jättää sen tyhjäksi, jos haluat jatkaa asennusta.'; -$a->strings['Command line PHP'] = 'Komentorivi-PHP'; -$a->strings['Found PHP version: '] = 'PHP-versio löydetty:'; -$a->strings['PHP cli binary'] = 'PHP cli -binääritiedosto'; -$a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'Järjestelmäsi komentorivi-PHP:ssä ei ole käytössä asetusta "register_argc_argv".'; -$a->strings['This is required for message delivery to work.'] = 'Asetus vaaditaan viestien lähettämiseen.'; -$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'] = 'Virhe: järjestelmäsi "openssl_pkey_new" -funktio ei pysty generoimaan salausavaimia.'; -$a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'Jos on kyse Windows-pavelimesta, katso "http://www.php.net/manual/en/openssl.installation.php".'; -$a->strings['Generate encryption keys'] = 'Luo salausavaimet'; -$a->strings['libCurl PHP module'] = 'PHP-moduuli libCurl'; -$a->strings['GD graphics PHP module'] = 'PHP-moduuli GD graphics'; -$a->strings['OpenSSL PHP module'] = 'PHP-moduuli OpenSSL'; -$a->strings['PDO or MySQLi PHP module'] = 'PDO tai MySQLi PHP-moduuli'; -$a->strings['mb_string PHP module'] = 'PHP-moduuli mb_string'; -$a->strings['XML PHP module'] = 'XML PHP-moduuli'; -$a->strings['iconv PHP module'] = 'iconv PHP-moduuli'; -$a->strings['POSIX PHP module'] = 'POSIX PHP-moduuli'; -$a->strings['Apache mod_rewrite module'] = 'Apache mod_rewrite -moduuli'; -$a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Virhe: Apache-palvelimen mod-rewrite -moduuli vaaditaan, mutta sitä ei ole asennettu.'; -$a->strings['Error: libCURL PHP module required but not installed.'] = 'Virhe: libCURL PHP -moduuli vaaditaan, mutta sitä ei ole asennettu.'; -$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Virhe: GD graphics PHP -moduuli JPEG-tuella vaaditaan, mutta sitä ei ole asennettu.'; -$a->strings['Error: openssl PHP module required but not installed.'] = 'Virhe: openssl PHP -moduuli vaaditaan, mutta sitä ei ole asennettu.'; -$a->strings['Error: PDO or MySQLi PHP module required but not installed.'] = 'Virhe: PDO tai MySQLi PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.'; -$a->strings['Error: The MySQL driver for PDO is not installed.'] = 'Virhe: PDO:n MySQL-ajuri ei ole asennettu'; -$a->strings['Error: mb_string PHP module required but not installed.'] = 'Virhe: PHP-moduuli mb_string vaaditaan, mutta sitä ei ole asennettu.'; -$a->strings['Error: iconv PHP module required but not installed.'] = 'Virhe: iconv PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.'; -$a->strings['Error: POSIX PHP module required but not installed.'] = 'Virhe: POSIX PHP-moduuli vaadittaan, mutta sitä ei ole asennettu.'; -$a->strings['Error, XML PHP module required but not installed.'] = 'Virhe: XML PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.'; -$a->strings['The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.'] = 'Web-asennuksen pitäisi pystyä luomaan tiedosto nimeltä ".htconfig.php" palvelimesi ylimpään kansioon, mutta se ei nyt onnistu.'; -$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.'] = 'Tämä on yleensä käyttöoikeusasetus, jolloin web-palvelimesi ei pysty kirjoittamaan tiedostoja kansioosi, vaikka itse siihen pystyisit.'; -$a->strings['At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder.'] = 'Tämän menettelyn lopussa annamme sinulle tekstin tallennettavaksi tiedostoon nimeltä .htconfig.php Friendican ylätason kansiossa.'; -$a->strings['.htconfig.php is writable'] = '.htconfig.php on kirjoitettava'; -$a->strings['view/smarty3 is writable'] = 'view/smarty3 on kirjoitettava'; -$a->strings['Url rewrite in .htaccess is not working. Check your server configuration.'] = 'URL-osoitteen uudelleenkirjoitus .htaccess-tiedostossa ei toimi. Tarkista palvelimen asetukset.'; -$a->strings['Url rewrite is working'] = 'URL-osoitteen uudellenkirjoitus toimii'; -$a->strings['ImageMagick PHP extension is not installed'] = 'ImageMagick PHP-laajennus ei ole asetettu'; -$a->strings['ImageMagick PHP extension is installed'] = 'ImageMagick PHP-laajennus on asetettu'; -$a->strings['ImageMagick supports GIF'] = 'ImageMagik tukee GIF-formaattia'; -$a->strings['Birthday:'] = 'Syntymäpäivä:'; -$a->strings['YYYY-MM-DD or MM-DD'] = 'VVVV-KK-PP tai KK-PP'; -$a->strings['never'] = 'ei ikinä'; -$a->strings['less than a second ago'] = 'alle sekunti sitten'; -$a->strings['year'] = 'vuosi'; -$a->strings['years'] = 'vuotta'; -$a->strings['months'] = 'kuukautta'; -$a->strings['weeks'] = 'viikkoa'; -$a->strings['days'] = 'päivää'; -$a->strings['hour'] = 'tunti'; -$a->strings['hours'] = 'tuntia'; -$a->strings['minute'] = 'minuutti'; -$a->strings['minutes'] = 'inuuttia'; -$a->strings['second'] = 'sekunti'; -$a->strings['seconds'] = 'sekuntia'; -$a->strings['%1$d %2$s ago'] = '%1$d %2$s sitten'; -$a->strings['view full size'] = 'näytä täysikokoisena'; -$a->strings['Image/photo'] = 'Kuva/valokuva'; -$a->strings['%2$s %3$s'] = '%2$s %3$s'; -$a->strings['$1 wrote:'] = '$1 kirjoitti:'; -$a->strings['Encrypted content'] = 'Salattu sisältö'; -$a->strings['Invalid source protocol'] = 'Virheellinen lähdeprotokolla'; -$a->strings['Invalid link protocol'] = 'Virheellinen linkkiprotokolla'; -$a->strings['Embedding disabled'] = 'Upottaminen poistettu käytöstä'; -$a->strings['Embedded content'] = 'Upotettu sisältö'; -$a->strings['Export'] = 'Vie'; -$a->strings['Export calendar as ical'] = 'Vie kalenteri ical -tiedostona'; -$a->strings['Export calendar as csv'] = 'Vie kalenteri csv-tiedostona'; -$a->strings['Frequently'] = 'Usein'; -$a->strings['Hourly'] = 'Tunneittain'; -$a->strings['Twice daily'] = 'Kahdesti päivässä'; -$a->strings['Daily'] = 'Päivittäin'; -$a->strings['Weekly'] = 'Viikottain'; -$a->strings['Monthly'] = 'Kuukausittain'; -$a->strings['OStatus'] = 'OStatus'; -$a->strings['RSS/Atom'] = 'RSS/Atom'; -$a->strings['Facebook'] = 'Facebook'; -$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['Diaspora Connector'] = 'Diaspora -liitin'; -$a->strings['GNU Social Connector'] = 'GNU social -liitin'; -$a->strings['pnut'] = 'pnut'; -$a->strings['App.net'] = 'App.net'; -$a->strings['Male'] = 'Mies'; -$a->strings['Female'] = 'Nainen'; -$a->strings['Currently Male'] = 'Tällä hetkellä mies'; -$a->strings['Currently Female'] = 'Tällä hetkellä nainen'; -$a->strings['Mostly Male'] = 'Enimmäkseen mies'; -$a->strings['Mostly Female'] = 'Enimmäkseen nainen'; -$a->strings['Transgender'] = 'Transsukupuolinen'; -$a->strings['Intersex'] = 'Intersukupuolinen'; -$a->strings['Transsexual'] = 'Transsukupuolinen'; -$a->strings['Hermaphrodite'] = 'Hermafrodiitti'; -$a->strings['Neuter'] = 'Neutri'; -$a->strings['Non-specific'] = 'Ei-binäärinen'; -$a->strings['Other'] = 'Toinen'; -$a->strings['Males'] = 'Miehet'; -$a->strings['Females'] = 'Naiset'; -$a->strings['Gay'] = 'Homo'; -$a->strings['Lesbian'] = 'Lesbo'; -$a->strings['Bisexual'] = 'Biseksuaali'; -$a->strings['Autosexual'] = 'Autoseksuaalinen'; -$a->strings['Abstinent'] = 'Selibaatissa elävä'; -$a->strings['Virgin'] = 'Neitsyt'; -$a->strings['Fetish'] = 'Fetissi'; -$a->strings['Nonsexual'] = 'Aseksuaali'; -$a->strings['Single'] = 'Sinkku'; -$a->strings['Lonely'] = 'Yksinäinen'; -$a->strings['Available'] = 'Saatavilla'; -$a->strings['Unavailable'] = 'Ei saatavilla'; -$a->strings['Has crush'] = 'Ihastunut'; -$a->strings['Infatuated'] = 'Hullaantunut'; -$a->strings['Dating'] = 'Seurustelee'; -$a->strings['Unfaithful'] = 'Uskoton'; -$a->strings['Sex Addict'] = 'Sekririippuvainen'; -$a->strings['Friends'] = 'Kaverit'; -$a->strings['Friends/Benefits'] = 'Kaverit eduilla'; -$a->strings['Casual'] = 'Tavallinen'; -$a->strings['Engaged'] = 'Kihloissa'; -$a->strings['Married'] = 'Naimisissa'; -$a->strings['Partners'] = 'Kumppanit'; -$a->strings['Cohabiting'] = 'Avoliitossa'; -$a->strings['Common law'] = 'Avoliitossa'; -$a->strings['Happy'] = 'Iloinen'; -$a->strings['Not looking'] = 'Ei etsi'; -$a->strings['Swinger'] = 'Parinvaihtaja'; -$a->strings['Betrayed'] = 'Petetty'; -$a->strings['Separated'] = 'Asumuserossa'; -$a->strings['Unstable'] = 'Epävakaa'; -$a->strings['Divorced'] = 'Eronnut'; -$a->strings['Widowed'] = 'Leski'; -$a->strings['Uncertain'] = 'Epävarma'; -$a->strings['It\'s complicated'] = 'Se on monimutkaista'; -$a->strings['Don\'t care'] = 'Ei ole väliä'; -$a->strings['Ask me'] = 'Kysy minulta'; -$a->strings['Add New Contact'] = 'Lisää uusi kontakti'; -$a->strings['Enter address or web location'] = 'Syötä verkko-osoite'; -$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Esimerkki: bob@example.com, http://example.com/barbara'; -$a->strings['%d invitation available'] = [ - 0 => '%d kutsu saatavilla', - 1 => '%d kutsuja saatavilla', -]; -$a->strings['Networks'] = 'Verkot'; -$a->strings['All Networks'] = 'Kaikki verkot'; -$a->strings['Saved Folders'] = 'Tallennetut kansiot'; -$a->strings['Everything'] = 'Kaikki'; -$a->strings['Categories'] = 'Luokat'; -$a->strings['%d contact in common'] = [ - 0 => '%d yhteinen kontakti', - 1 => '%d yhteistä kontaktia', -]; -$a->strings['General Features'] = 'Yleiset ominaisuudet'; -$a->strings['Multiple Profiles'] = 'Monia profiileja'; -$a->strings['Ability to create multiple profiles'] = 'Mahdollisuus luoda useita profiileja'; -$a->strings['Photo Location'] = 'Kuvan sijainti'; -$a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'Kuvan metadata poistetaan normaalisti. Tämä ottaa paikkatiedon (jos olemassa) ennen poistoa ja linkittää sen karttaan.'; -$a->strings['Export Public Calendar'] = 'Vie julkinen kalenteri'; -$a->strings['Ability for visitors to download the public calendar'] = 'Vierailijoiden mahdollisuus ladata julkinen kalenteri'; -$a->strings['Post Composition Features'] = 'Kirjoittamisen ominaisuudet'; -$a->strings['Post Preview'] = 'Viestin esikatselu'; -$a->strings['Allow previewing posts and comments before publishing them'] = 'Mahdollistaa viestien esikatselun ennen niiden julkaisua'; -$a->strings['Network Sidebar'] = 'Uutisvirran sivupalkki'; -$a->strings['Ability to select posts by date ranges'] = 'Mahdollisuus valita viestejä päivämäärärajauksella'; -$a->strings['List Forums'] = 'Näytä foorumit'; -$a->strings['Group Filter'] = 'Ryhmäsuodatin'; -$a->strings['Network Filter'] = 'Uutisvirtasuodatin'; -$a->strings['Save search terms for re-use'] = 'Tallenna hakutermit myöhempää käyttöä varten'; -$a->strings['Network Tabs'] = 'Uutisvirta välilehdet'; -$a->strings['Network Personal Tab'] = 'Henkilökohtainen uutisvirtavälilehti'; -$a->strings['Network New Tab'] = 'Uusimmat uutisvirtajulkaisut'; -$a->strings['Post/Comment Tools'] = 'Julkaisu/kommentti työkalut'; -$a->strings['Select and delete multiple posts/comments at once'] = 'Valitse ja poista monta julkaisua/kommentia yhtaikaa'; -$a->strings['Edit Sent Posts'] = 'Muokkaa lähetetyt julkaisut'; -$a->strings['Edit and correct posts and comments after sending'] = 'Muokkaa ja korjaa julkaisuja ja kommenteja julkaisun jälkeen'; -$a->strings['Tagging'] = 'Tunnisteet'; -$a->strings['Ability to tag existing posts'] = 'Saa merkitä olemassa olevia julkaisuja'; -$a->strings['Post Categories'] = 'Julkaisuluokat'; -$a->strings['Add categories to your posts'] = 'Luokittele julkaisusi'; -$a->strings['Ability to file posts under folders'] = 'Mahdollisuus tallettaa viestejä kansioihin'; -$a->strings['Dislike Posts'] = 'Inhoa viestejä'; -$a->strings['Ability to dislike posts/comments'] = 'Mahdollisuus inhota viestejä/kommentteja'; -$a->strings['Star Posts'] = 'Tähtimerkityt julkaisut'; -$a->strings['Ability to mark special posts with a star indicator'] = 'Salli julkaisujen tähtimerkintä'; -$a->strings['Mute Post Notifications'] = 'Mykistä julkaisuilmoitukset'; -$a->strings['Advanced Profile Settings'] = 'Profiilin lisäasetukset'; -$a->strings['Tag Cloud'] = 'Tunnistepilvi'; -$a->strings['Provide a personal tag cloud on your profile page'] = 'Näytä henkilökohtainen tunnistepilvi profiilisivullasi'; -$a->strings['Display Membership Date'] = 'Näytä liittymispäivämäärä'; -$a->strings['Display membership date in profile'] = 'Näytä liittymispäivämäärä profiilissa'; -$a->strings['Nothing new here'] = 'Täällä ei ole mitään uutta'; -$a->strings['Clear notifications'] = 'Tyhjennä ilmoitukset'; -$a->strings['Personal notes'] = 'Henkilökohtaiset merkinnät'; -$a->strings['Your personal notes'] = 'Henkilökohtaiset merkintäsi'; -$a->strings['Sign in'] = 'Kirjaudu sisään'; -$a->strings['Home Page'] = 'Kotisivu'; -$a->strings['Create an account'] = 'Luo tili'; -$a->strings['Help and documentation'] = 'Ohjeet ja dokmentointi'; -$a->strings['Apps'] = 'Sovellukset'; -$a->strings['Addon applications, utilities, games'] = 'Lisäosa sovelluksia, apuohjelmia, pelejä'; -$a->strings['Search site content'] = 'Sivustohaku'; -$a->strings['Community'] = 'Yhteisö'; -$a->strings['Conversations on this and other servers'] = 'Keskustelut täällä ja muilla palvelimilla'; -$a->strings['Directory'] = 'Luettelo'; -$a->strings['People directory'] = 'Henkilöluettelo'; -$a->strings['Information about this friendica instance'] = 'Lisätietoja tästä Friendica -instanssista'; -$a->strings['Network Reset'] = 'Verkon nollaus'; -$a->strings['Load Network page with no filters'] = 'Lataa verkkosivu ilman suotimia'; -$a->strings['Friend Requests'] = 'Kaveripyynnöt'; -$a->strings['See all notifications'] = 'Näytä kaikki ilmoitukset'; -$a->strings['Mark all system notifications seen'] = 'Merkitse kaikki järjestelmäviestit nähdyiksi'; -$a->strings['Inbox'] = 'Saapuneet'; -$a->strings['Outbox'] = 'Lähtevät'; -$a->strings['Manage'] = 'Hallitse'; -$a->strings['Manage other pages'] = 'Hallitse muita sivuja'; -$a->strings['Profiles'] = 'Profiilit'; -$a->strings['Manage/Edit Profiles'] = 'Hallitse/muokka profiilit'; -$a->strings['Site setup and configuration'] = 'Sivuston asennus ja asetukset'; -$a->strings['Navigation'] = 'Navigointi'; -$a->strings['Site map'] = 'Sivustokartta'; -$a->strings['There are no tables on MyISAM.'] = 'MyISAMissa ei ole taulukoita.'; -$a->strings[' - The friendica developers released update %s recently, - but when I tried to install it, something went terribly wrong. - This needs to be fixed soon and I can\'t do it alone. Please contact a - friendica developer if you can not help me on your own. My database might be invalid.'] = ' - Friendican kehittäjät askettäin julkaisi %s-päivityksen, - mutta asennuksessa jotain meni pahasti pieleen. - Tämä on korjattava pian, ja en voi korjata sitä itse. Ota yhteyttä - Friendica -kehittäjään jos et voi auttaa. Tietokantani saattaa olla virheellinen.'; -$a->strings['The error message is -[pre]%s[/pre]'] = 'Virheviesti on -[pre]%s[/pre]'; -$a->strings[' -Error %d occurred during database update: -%s -'] = ' -%d virhe tapahtui tietokannan päivityksen aikana: -%s -'; -$a->strings['Errors encountered performing database changes: '] = 'Tietokannan muokkauksessa tapahtui virheitä:'; -$a->strings['%s: Database update'] = '%s: Tietokantapäivitys'; -$a->strings['%s: updating %s table.'] = '%s: päivitetään %s-taulukkoa.'; -$a->strings['[no subject]'] = '[ei aihetta]'; -$a->strings['Default privacy group for new contacts'] = 'Oletusryhmä uusille kontakteille'; -$a->strings['Everybody'] = 'Kaikki'; -$a->strings['edit'] = 'muokkaa'; -$a->strings['Edit group'] = 'Muokkaa ryhmää'; -$a->strings['Contacts not in any group'] = 'Kontaktit ilman ryhmää'; -$a->strings['Create a new group'] = 'Luo uusi ryhmä'; -$a->strings['Edit groups'] = 'Muokkaa ryhmiä'; -$a->strings['Drop Contact'] = 'Poista kontakti'; -$a->strings['Organisation'] = 'Järjestö'; -$a->strings['News'] = 'Uutiset'; -$a->strings['Forum'] = 'Keskustelupalsta'; -$a->strings['Connect URL missing.'] = 'Yhteys URL-linkki puuttuu.'; -$a->strings['The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.'] = 'Kontaktia ei pystytty lisäämään. Tarkista verkkoasetukset omista asetuksistasi (Settings -> Social Networks).'; -$a->strings['This site is not configured to allow communications with other networks.'] = 'Tämä sivusto ei salli yhteyksiä muiden verkkojen kanssa..'; -$a->strings['No compatible communication protocols or feeds were discovered.'] = 'Yhteensopivia viestintäprotokolleja tai syötteitä ei löytynyt.'; -$a->strings['The profile address specified does not provide adequate information.'] = 'Annettu profiiliosoite ei sisällä riittävästi tietoa.'; -$a->strings['An author or name was not found.'] = 'Julkaisija tai nimi puuttuu.'; -$a->strings['Use mailto: in front of address to force email check.'] = 'Käytä "mailto:" osoitteen edessä pakottaaksesi sähköpostin tarkastuksen.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Profiilin osoite kuuluu verkkoon, joka on poistettu tältä sivustolta.'; -$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Rajoitettu profiili. Tämä henkilö ei pysty/tule saamaan suoria/henkilökohtaisia ilmoituksia sinulta.'; -$a->strings['Unable to retrieve contact information.'] = 'Kontaktin tietoja ei voitu hakea.'; -$a->strings['%s\'s birthday'] = '%s: syntymäpäivä'; -$a->strings['Happy Birthday %s'] = 'Hyvää syntymäpäivää %s'; -$a->strings['Starts:'] = 'Alkaa:'; -$a->strings['Finishes:'] = 'Päättyy:'; -$a->strings['all-day'] = 'koko päivä'; -$a->strings['Jun'] = 'Kes.'; -$a->strings['Sept'] = 'Syy.'; -$a->strings['No events to display'] = 'Ei näytettäviä tapahtumia.'; -$a->strings['l, F j'] = 'l, F j'; -$a->strings['Edit event'] = 'Muokkaa tapahtumaa'; -$a->strings['Duplicate event'] = 'Monista tapahtuma'; -$a->strings['Delete event'] = 'Poista tapahtuma'; -$a->strings['D g:i A'] = 'D H:i'; -$a->strings['g:i A'] = 'H:i'; -$a->strings['Show map'] = 'Näytä kartta'; -$a->strings['Hide map'] = 'Piilota kartta'; -$a->strings['%1$s is attending %2$s\'s %3$s'] = '%1$s osallistuu tapahtumaan %3$s, jonka järjestää %2$s'; -$a->strings['%1$s is not attending %2$s\'s %3$s'] = '%1$s ei osallistu tapahtumaan %3$s, jonka järjestää %2$s'; -$a->strings['%1$s may attend %2$s\'s %3$s'] = '%1$s ehkä osallistuu tapahtumaan %3$s, jonka järjestää %2$s'; -$a->strings['Requested account is not available.'] = 'Pyydetty käyttäjätili ei ole saatavilla.'; -$a->strings['Edit profile'] = 'Muokkaa profiilia'; -$a->strings['Atom feed'] = 'Atom -syöte'; -$a->strings['Manage/edit profiles'] = 'Hallitse/muokkaa profiilit'; -$a->strings['g A l F d'] = 'g A l F d'; -$a->strings['F d'] = 'F d'; -$a->strings['[today]'] = '[tänään]'; -$a->strings['Birthday Reminders'] = 'Syntymäpäivämuistutukset'; -$a->strings['Birthdays this week:'] = 'Syntymäpäiviä tällä viikolla:'; -$a->strings['[No description]'] = '[Ei kuvausta]'; -$a->strings['Event Reminders'] = 'Tapahtumamuistutukset'; -$a->strings['Events this week:'] = 'Tapahtumia tällä viikolla:'; -$a->strings['Member since:'] = 'Liittymispäivämäärä:'; -$a->strings['j F, Y'] = 'j F, Y'; -$a->strings['j F'] = 'j F'; -$a->strings['Age:'] = 'Ikä:'; -$a->strings['for %1$d %2$s'] = '%1$d%2$s'; -$a->strings['Religion:'] = 'Uskonto:'; -$a->strings['Hobbies/Interests:'] = 'Harrastukset:'; -$a->strings['Contact information and Social Networks:'] = 'Yhteystiedot ja sosiaalinen media:'; -$a->strings['Musical interests:'] = 'Musiikki:'; -$a->strings['Books, literature:'] = 'Kirjat, kirjallisuus:'; -$a->strings['Television:'] = 'Televisio:'; -$a->strings['Film/dance/culture/entertainment:'] = 'Elokuvat/tanssit/kulttuuri/viihde:'; -$a->strings['Love/Romance:'] = 'Rakkaus/romanssi:'; -$a->strings['Work/employment:'] = 'Työ:'; -$a->strings['School/education:'] = 'Koulutus:'; -$a->strings['Forums:'] = 'Foorumit:'; -$a->strings['Only You Can See This'] = 'Vain sinä näet tämän'; -$a->strings['Login failed'] = 'Kirjautuminen epäonnistui'; -$a->strings['Not enough information to authenticate'] = 'Ei tarpeeksi tietoja kirjautumiseen'; -$a->strings['An invitation is required.'] = 'Vaaditaa kutsu.'; -$a->strings['Invitation could not be verified.'] = 'Kutsua ei voitu vahvistaa.'; -$a->strings['Invalid OpenID url'] = 'Virheellinen OpenID url-osoite'; -$a->strings['We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.'] = 'Kohtasimme ongelman antamasi OpenID:n kanssa. Ole hyvä ja tarkista ID:n oikea kirjoitusasu.'; -$a->strings['The error message was:'] = 'Virheviesti oli:'; -$a->strings['Please enter the required information.'] = 'Syötä tarvittavat tiedot.'; -$a->strings['Please use a shorter name.'] = 'Käytä lyhyempää nimeä.'; -$a->strings['Name too short.'] = 'Nimi on liian lyhyt.'; -$a->strings['That doesn\'t appear to be your full (First Last) name.'] = 'Tuo ei vakuta täydeltä nimeltäsi (Etunimi Sukunimi).'; -$a->strings['Your email domain is not among those allowed on this site.'] = 'Sähköpostiosoitteesi verkkotunnus on tämän sivuston estolistalla.'; -$a->strings['Not a valid email address.'] = 'Virheellinen sähköpostiosoite.'; -$a->strings['Cannot use that email.'] = 'Sähköpostiosoitetta ei voitu käyttää.'; -$a->strings['Your nickname can only contain a-z, 0-9 and _.'] = 'Nimimerkki voi sisältää a-z, 0-9 ja _.'; -$a->strings['Nickname is already registered. Please choose another.'] = 'Valitsemasi nimimerkki on jo käytössä. Valitse toinen nimimerkki.'; -$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'VAKAVA VIRHE: Salausavainten luominen epäonnistui.'; -$a->strings['An error occurred during registration. Please try again.'] = 'Rekisteröityminen epäonnistui. Yritä uudelleen.'; -$a->strings['An error occurred creating your default profile. Please try again.'] = 'Oletusprofiilin luominen epäonnistui. Yritä uudelleen.'; -$a->strings['An error occurred creating your self contact. Please try again.'] = 'Yhteystietojesi luonti epäonnistui. Yritä uudelleen.'; -$a->strings['An error occurred creating your default contact group. Please try again.'] = 'Oletusryhmäsi luonti epäonnistui. Yritä uudelleen.'; -$a->strings[' - Dear %1$s, - Thank you for registering at %2$s. Your account is pending for approval by the administrator. - '] = ' - Hei %1$s, - Kiitoksia rekisteröitymisestä sivustolle %2$s. Tilisi on odottamassa ylläpidon hyväksyntää. - '; -$a->strings['Registration at %s'] = 'Rekisteröityminen kohteessa %s'; -$a->strings[' - Dear %1$s, - Thank you for registering at %2$s. Your account has been created. - '] = ' - Hei %1$s, - Kiitoksia rekisteröinnistä sivustolle %2$s. Tilisi on luotu. - '; -$a->strings['Sharing notification from Diaspora network'] = 'Ilmoitus Diaspora -verkosta tapahtuneesta jakamisesta.'; -$a->strings['Attachments:'] = 'Liitteitä:'; -$a->strings['%s is now following %s.'] = '%s seuraa %s.'; -$a->strings['following'] = 'seuraa'; -$a->strings['%s stopped following %s.'] = '%s ei enää seuraa %s.'; -$a->strings['stopped following'] = 'ei enää seuraa'; -$a->strings['(no subject)'] = '(ei aihetta)'; -$a->strings['Logged out.'] = 'Kirjautunut ulos.'; -$a->strings['Create a New Account'] = 'Luo uusi käyttäjätili'; -$a->strings['Password: '] = 'Salasana:'; -$a->strings['Remember me'] = 'Muista minut'; -$a->strings['Or login using OpenID: '] = 'Kirjaudu sisään OpenID -tunnuksella:'; -$a->strings['Forgot your password?'] = 'Unohditko salasanasi?'; -$a->strings['Website Terms of Service'] = 'Verkkosivun käyttöehdot'; -$a->strings['terms of service'] = 'käyttöehdot'; -$a->strings['Website Privacy Policy'] = 'Sivuston tietosuojakäytäntö'; -$a->strings['privacy policy'] = 'tietosuojakäytäntö'; -$a->strings['Privacy Statement'] = 'Tietosuojalausunto'; +$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s lähetti sinulle uuden yksityisviestin kohteessa %2$s.'; +$a->strings['a private message'] = 'yksityisviesti'; +$a->strings['%1$s sent you %2$s.'] = '%1$s lähetti sinulle %2$s.'; +$a->strings['Please visit %s to view and/or reply to your private messages.'] = 'Katso yksityisviestisi kohteessa %s.'; +$a->strings['%s commented on an item/conversation you have been following.'] = '%s kommentoi kohteessa/keskustelussa jota seuraat.'; +$a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Käy %s nähdäksesi keskustelun ja/tai vastataksesi siihen'; +$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s kirjoitti seinällesi kohteessa %2$s'; +$a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s kirjoitti [url=%2$s]seinällesi[/url]'; +$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Olet vastaanottanut kaverikutsun henkilöltä \'%1$s\' kohteessa %2$s'; +$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Olet vastaanottanut [url=%1$s]kaverikutsun[/url] henkilöltä %2$s.'; +$a->strings['You may visit their profile at %s'] = 'Voit vierailla hänen profiilissaan kohteessa %s'; +$a->strings['Please visit %s to approve or reject the introduction.'] = 'Hyväksy tai hylkää esittely %s-sivustossa'; +$a->strings['%1$s is sharing with you at %2$s'] = '%1$s jakaa päivityksensä kanssasi kohteessa %2$s'; +$a->strings['You have a new follower at %2$s : %1$s'] = 'Sinulla on uusi seuraaja sivustolla %2$s : %1$s'; +$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = 'Sait kaverikutsun henkilöltä \'%1$s\' (%2$s)'; +$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = 'Sait [url=%1$s] kaveriehdotuksen[/url] %2$s käyttäjältä %3$s.'; +$a->strings['Name:'] = 'Nimi:'; +$a->strings['Photo:'] = 'Kuva:'; +$a->strings['Please visit %s to approve or reject the suggestion.'] = 'Hyväksy tai hylkää ehdotus %s-sivustossa'; +$a->strings['\'%1$s\' has accepted your connection request at %2$s'] = '\'%1$s\' on hyväksynyt kaverikutsusi kohteessa %2$s'; +$a->strings['%2$s has accepted your [url=%1$s]connection request[/url].'] = '%2$s hyväksyi [url=%1$s]kaverikutsusi[/url].'; +$a->strings['You are now mutual friends and may exchange status updates, photos, and email without restriction.'] = 'Olette nyt yhteiset ystävät ja voitte lähettää toisillenne tilapäivityksiä, kuvia ja sähköposteja ilman rajoituksia.'; +$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta.'; +$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\' on hyväksynyt sinut faniksi. Tämä rajoittaa joitain kommunikointitapoja - kuten yksityisviestiettely ja joitain profiilitoimintoja. Jos tämä on julkisuuden henkilö tai yhteisösivu, asetukset on valittu automaattisesti.'; +$a->strings['\'%1$s\' may choose to extend this into a two-way or more permissive relationship in the future.'] = '\'%1$s\' voi halutessaan laajentaa suhteenne kahdenväliseksi.'; +$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta.'; +$a->strings['registration request'] = 'rekisteröintipyyntö'; +$a->strings['You\'ve received a registration request from \'%1$s\' at %2$s'] = 'Olet vastaanottanut rekisteröintipyynnön henkilöltä \'%1$s\' kohteessa %2$s'; +$a->strings['You\'ve received a [url=%1$s]registration request[/url] from %2$s.'] = 'Olet vastaanottanut [url=%1$s]rekisteröintipyynnön[/url] henkilöltä %2$s.'; +$a->strings['Please visit %s to approve or reject the request.'] = 'Hyväksy tai hylkää pyyntö %s-sivustossa.'; +$a->strings['This message was sent to you by %s, a member of the Friendica social network.'] = 'Viestin lähetti %s Friendica sosiaaliverkoston kautta.'; +$a->strings['%s posted an update.'] = '%s julkaisi päivityksen.'; +$a->strings['Private Message'] = 'Yksityisviesti'; $a->strings['This entry was edited'] = 'Tämä kohde oli muokattu'; -$a->strings['save to folder'] = 'tallenna kansioon'; +$a->strings['Edit'] = 'Muokkaa'; $a->strings['I will attend'] = 'Osallistun'; $a->strings['I will not attend'] = 'En aio osallistua'; $a->strings['I might attend'] = 'Ehkä osallistun'; -$a->strings['add star'] = 'lisää tähti'; -$a->strings['remove star'] = 'poista tähti'; -$a->strings['toggle star status'] = 'Tähtitila päälle/pois'; -$a->strings['starred'] = 'tähtimerkitty'; -$a->strings['ignore thread'] = 'Sivuuta keskustelu'; -$a->strings['unignore thread'] = 'Seuraa keskustelua'; -$a->strings['toggle ignore status'] = 'Sivuuta/seuraa'; -$a->strings['add tag'] = 'lisää tägi'; -$a->strings['like'] = 'tykkää'; -$a->strings['dislike'] = 'en tykkää'; -$a->strings['Share this'] = 'Jaa tämä'; -$a->strings['share'] = 'jaa'; $a->strings['to'] = 'henkilölle'; $a->strings['via'] = 'kautta'; $a->strings['Wall-to-Wall'] = 'Seinäjulkaisu'; @@ -1890,15 +1245,10 @@ $a->strings['%d comment'] = [ 0 => '%d kommentti', 1 => '%d kommentteja', ]; -$a->strings['Bold'] = 'Lihavoitu'; -$a->strings['Italic'] = 'Kursivoitu'; -$a->strings['Underline'] = 'Alleviivaus'; -$a->strings['Quote'] = 'Lainaus'; -$a->strings['Code'] = 'Koodi'; -$a->strings['Image'] = 'Kuva'; -$a->strings['Link'] = 'Linkki'; -$a->strings['Video'] = 'Video'; -$a->strings['Delete this item?'] = 'Poista tämä kohde?'; -$a->strings['show fewer'] = 'näytä vähemmän'; -$a->strings['toggle mobile'] = 'Mobiilisivusto päälle/pois'; -$a->strings['Update %s failed. See error logs.'] = '%s päivitys epäonnistui, katso virhelokit.'; +$a->strings['%s is now following %s.'] = '%s seuraa %s.'; +$a->strings['following'] = 'seuraa'; +$a->strings['%s stopped following %s.'] = '%s ei enää seuraa %s.'; +$a->strings['stopped following'] = 'ei enää seuraa'; +$a->strings['Login failed.'] = 'Kirjautuminen epäonnistui'; +$a->strings['Please upload a profile photo.'] = 'Lataa profiilikuva.'; +$a->strings['minutes'] = 'minuuttia'; diff --git a/view/lang/fr/messages.po b/view/lang/fr/messages.po index 266a89962..428a907d6 100644 --- a/view/lang/fr/messages.po +++ b/view/lang/fr/messages.po @@ -1,5 +1,5 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: @@ -9,13 +9,14 @@ # Damien Goutte-Gattat , 2015-2016 # Damien Goutte-Gattat , 2015 # Domovoy , 2012 +# Florent C., 2023 # Hypolite Petovan , 2019-2022 # Hypolite Petovan , 2016 # ddea8f3e14f60a9d025fc4f71a37997c_495639b <0e9b63e0a53589b1b93671e612021fcb_249620>, 2014 # Lionel Triay , 2013 # Thecross, 2017 # Marie Olive , 2018 -# Nicolas Derive, 2022 +# Nicolas Derive, 2022-2023 # 2813eb64a13683f23a92f264357cfba0_d450340, 2012 # Olivier , 2011-2012 # PerigGouanvic , 2015 @@ -34,539 +35,80 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-17 09:33+0000\n" +"POT-Creation-Date: 2023-10-15 13:49+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" -"Last-Translator: Nicolas Derive, 2022\n" -"Language-Team: French (http://www.transifex.com/Friendica/friendica/language/fr/)\n" +"Last-Translator: Florent C., 2023\n" +"Language-Team: French (http://app.transifex.com/Friendica/friendica/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:39 mod/redir.php:36 -#: mod/redir.php:177 src/Module/Conversation/Community.php:196 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: 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:43 -msgid "Access denied." -msgstr "Accès refusé." - -#: mod/cal.php:63 mod/cal.php:80 mod/photos.php:69 mod/photos.php:140 -#: mod/photos.php:798 src/Model/Profile.php:235 src/Module/Feed.php:72 -#: src/Module/HCard.php:52 src/Module/Profile/Common.php:41 -#: src/Module/Profile/Common.php:52 src/Module/Profile/Contacts.php:40 -#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Media.php:38 -#: src/Module/Profile/Status.php:59 src/Module/Register.php:267 -#: src/Module/RemoteFollow.php:58 -msgid "User not found." -msgstr "Utilisateur introuvable." - -#: mod/cal.php:122 mod/display.php:262 src/Module/Profile/Profile.php:94 -#: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:110 -#: src/Module/Update/Profile.php:56 -msgid "Access to this profile has been restricted." -msgstr "L'accès au profil a été restreint." - -#: mod/cal.php:243 mod/events.php:374 src/Content/Nav.php:197 -#: src/Content/Nav.php:261 src/Module/BaseProfile.php:84 -#: src/Module/BaseProfile.php:95 view/theme/frio/theme.php:240 -#: view/theme/frio/theme.php:244 -msgid "Events" -msgstr "Évènements" - -#: mod/cal.php:244 mod/events.php:375 -msgid "View" -msgstr "Vue" - -#: mod/cal.php:245 mod/events.php:377 -msgid "Previous" -msgstr "Précédent" - -#: mod/cal.php:246 mod/events.php:378 src/Module/Install.php:214 -msgid "Next" -msgstr "Suivant" - -#: mod/cal.php:249 mod/events.php:383 src/Model/Event.php:460 -msgid "today" -msgstr "aujourd'hui" - -#: mod/cal.php:250 mod/events.php:384 src/Model/Event.php:461 -#: src/Util/Temporal.php:338 -msgid "month" -msgstr "mois" - -#: mod/cal.php:251 mod/events.php:385 src/Model/Event.php:462 -#: src/Util/Temporal.php:339 -msgid "week" -msgstr "semaine" - -#: mod/cal.php:252 mod/events.php:386 src/Model/Event.php:463 -#: src/Util/Temporal.php:340 -msgid "day" -msgstr "jour" - -#: mod/cal.php:253 mod/events.php:387 -msgid "list" -msgstr "liste" - -#: mod/cal.php:265 src/Console/User.php:182 src/Model/User.php:663 -#: 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:74 -msgid "User not found" -msgstr "Utilisateur introuvable" - -#: mod/cal.php:274 -msgid "This calendar format is not supported" -msgstr "Format de calendrier inconnu" - -#: mod/cal.php:276 -msgid "No exportable data found" -msgstr "Rien à exporter" - -#: mod/cal.php:292 -msgid "calendar" -msgstr "calendrier" - -#: mod/display.php:143 mod/photos.php:802 -#: src/Module/Conversation/Community.php:190 src/Module/Directory.php:49 -#: src/Module/Search/Index.php:65 -msgid "Public access denied." -msgstr "Accès public refusé." - -#: mod/display.php:213 mod/display.php:287 -msgid "The requested item doesn't exist or has been deleted." -msgstr "L'objet recherché n'existe pas ou a été supprimé." - -#: mod/display.php:367 -msgid "The feed for this item is unavailable." -msgstr "Le flux pour cet objet n'est pas disponible." - -#: mod/editpost.php:38 mod/events.php:217 mod/follow.php:56 mod/follow.php:130 -#: mod/item.php:182 mod/item.php:187 mod/item.php:866 mod/message.php:69 -#: mod/message.php:111 mod/notes.php:44 mod/ostatus_subscribe.php:33 -#: mod/photos.php:160 mod/photos.php:891 mod/repair_ostatus.php:31 -#: mod/settings.php:40 mod/settings.php:50 mod/settings.php:156 -#: mod/suggest.php:34 mod/uimport.php:33 mod/unfollow.php:35 -#: mod/unfollow.php:50 mod/unfollow.php:82 mod/wall_attach.php:67 -#: mod/wall_attach.php:69 mod/wall_upload.php:89 mod/wall_upload.php:91 -#: mod/wallmessage.php:37 mod/wallmessage.php:56 mod/wallmessage.php:90 -#: mod/wallmessage.php:110 src/Module/Attach.php:56 src/Module/BaseApi.php:93 -#: src/Module/BaseNotifications.php:97 src/Module/Contact/Advanced.php:60 -#: src/Module/Delegation.php:119 src/Module/FollowConfirm.php:38 -#: src/Module/FriendSuggest.php:56 src/Module/Group.php:42 -#: src/Module/Group.php:85 src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:75 -#: src/Module/Notifications/Notification.php:106 -#: src/Module/Profile/Common.php:56 src/Module/Profile/Contacts.php:56 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:77 src/Module/Register.php:90 -#: src/Module/Register.php:206 src/Module/Register.php:245 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 -#: src/Module/Settings/Account.php:410 src/Module/Settings/Delegation.php:42 -#: src/Module/Settings/Delegation.php:70 src/Module/Settings/Display.php:42 -#: src/Module/Settings/Display.php:120 -#: src/Module/Settings/Profile/Photo/Crop.php:166 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/UserExport.php:58 src/Module/Settings/UserExport.php:92 -#: src/Module/Settings/UserExport.php:196 -#: src/Module/Settings/UserExport.php:216 -#: src/Module/Settings/UserExport.php:281 -msgid "Permission denied." -msgstr "Permission refusée." - -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Élément introuvable" - -#: mod/editpost.php:64 -msgid "Edit post" -msgstr "Éditer la publication" - -#: mod/editpost.php:91 mod/notes.php:56 src/Content/Text/HTML.php:882 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:73 -msgid "Save" -msgstr "Sauver" - -#: mod/editpost.php:92 mod/photos.php:1338 src/Content/Conversation.php:338 -#: src/Object/Post.php:993 -msgid "Loading..." -msgstr "Chargement en cours..." - -#: mod/editpost.php:93 mod/message.php:198 mod/message.php:355 -#: mod/wallmessage.php:140 src/Content/Conversation.php:339 -msgid "Upload photo" -msgstr "Joindre photo" - -#: mod/editpost.php:94 src/Content/Conversation.php:340 -msgid "upload photo" -msgstr "envoi image" - -#: mod/editpost.php:95 src/Content/Conversation.php:341 -msgid "Attach file" -msgstr "Joindre fichier" - -#: mod/editpost.php:96 src/Content/Conversation.php:342 -msgid "attach file" -msgstr "ajout fichier" - -#: mod/editpost.php:97 mod/message.php:199 mod/message.php:356 -#: mod/wallmessage.php:141 -msgid "Insert web link" -msgstr "Insérer lien web" - -#: mod/editpost.php:98 -msgid "web link" -msgstr "lien web" - -#: mod/editpost.php:99 -msgid "Insert video link" -msgstr "Insérer un lien video" - -#: mod/editpost.php:100 -msgid "video link" -msgstr "lien vidéo" - -#: mod/editpost.php:101 -msgid "Insert audio link" -msgstr "Insérer un lien audio" - -#: mod/editpost.php:102 -msgid "audio link" -msgstr "lien audio" - -#: mod/editpost.php:103 src/Content/Conversation.php:352 -#: src/Module/Item/Compose.php:200 -msgid "Set your location" -msgstr "Définir votre localisation" - -#: mod/editpost.php:104 src/Content/Conversation.php:353 -msgid "set location" -msgstr "spéc. localisation" - -#: mod/editpost.php:105 src/Content/Conversation.php:354 -msgid "Clear browser location" -msgstr "Effacer la localisation du navigateur" - -#: mod/editpost.php:106 src/Content/Conversation.php:355 -msgid "clear location" -msgstr "supp. localisation" - -#: mod/editpost.php:107 mod/message.php:200 mod/message.php:358 -#: mod/photos.php:1489 mod/wallmessage.php:142 -#: src/Content/Conversation.php:368 src/Content/Conversation.php:714 -#: src/Module/Item/Compose.php:204 src/Object/Post.php:538 -msgid "Please wait" -msgstr "Patientez" - -#: mod/editpost.php:108 src/Content/Conversation.php:369 -msgid "Permission settings" -msgstr "Réglages des permissions" - -#: mod/editpost.php:116 src/Core/ACL.php:326 -msgid "CC: email addresses" -msgstr "CC: adresses de courriel" - -#: mod/editpost.php:117 src/Content/Conversation.php:379 -msgid "Public post" -msgstr "Publication publique" - -#: mod/editpost.php:120 src/Content/Conversation.php:357 -#: src/Module/Item/Compose.php:205 -msgid "Set title" -msgstr "Définir un titre" - -#: mod/editpost.php:122 src/Content/Conversation.php:359 -#: src/Module/Item/Compose.php:206 -msgid "Categories (comma-separated list)" -msgstr "Catégories (séparées par des virgules)" - -#: mod/editpost.php:123 src/Core/ACL.php:327 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Exemple : bob@exemple.com, mary@exemple.com" - -#: mod/editpost.php:128 mod/events.php:513 mod/photos.php:1337 -#: mod/photos.php:1393 mod/photos.php:1467 src/Content/Conversation.php:383 -#: src/Module/Item/Compose.php:199 src/Object/Post.php:1003 -msgid "Preview" -msgstr "Aperçu" - -#: mod/editpost.php:130 mod/fbrowser.php:119 mod/fbrowser.php:146 -#: mod/follow.php:144 mod/photos.php:1004 mod/photos.php:1105 mod/tagrm.php:35 -#: mod/tagrm.php:127 mod/unfollow.php:97 src/Content/Conversation.php:386 -#: src/Module/Contact/Revoke.php:108 src/Module/RemoteFollow.php:127 -#: src/Module/Security/TwoFactor/SignOut.php:125 -msgid "Cancel" -msgstr "Annuler" - -#: mod/editpost.php:134 src/Content/Conversation.php:343 -#: src/Module/Item/Compose.php:190 src/Object/Post.php:994 -msgid "Bold" -msgstr "Gras" - -#: mod/editpost.php:135 src/Content/Conversation.php:344 -#: src/Module/Item/Compose.php:191 src/Object/Post.php:995 -msgid "Italic" -msgstr "Italique" - -#: mod/editpost.php:136 src/Content/Conversation.php:345 -#: src/Module/Item/Compose.php:192 src/Object/Post.php:996 -msgid "Underline" -msgstr "Souligné" - -#: mod/editpost.php:137 src/Content/Conversation.php:346 -#: src/Module/Item/Compose.php:193 src/Object/Post.php:997 -msgid "Quote" -msgstr "Citation" - -#: mod/editpost.php:138 src/Content/Conversation.php:347 -#: src/Module/Item/Compose.php:194 src/Object/Post.php:998 -msgid "Code" -msgstr "Code" - -#: mod/editpost.php:139 src/Content/Conversation.php:349 -#: src/Module/Item/Compose.php:196 src/Object/Post.php:1000 -msgid "Link" -msgstr "Lien" - -#: mod/editpost.php:140 src/Content/Conversation.php:350 -#: src/Module/Item/Compose.php:197 src/Object/Post.php:1001 -msgid "Link or Media" -msgstr "Lien ou média" - -#: mod/editpost.php:143 src/Content/Conversation.php:393 -#: src/Content/Widget/VCard.php:113 src/Model/Profile.php:466 -#: src/Module/Admin/Logs/View.php:93 -msgid "Message" -msgstr "Message" - -#: mod/editpost.php:144 src/Content/Conversation.php:394 -#: src/Module/Settings/TwoFactor/Trusted.php:138 -msgid "Browser" -msgstr "Navigateur" - -#: mod/editpost.php:145 mod/events.php:518 mod/photos.php:939 -#: mod/photos.php:1291 src/Content/Conversation.php:370 -msgid "Permissions" -msgstr "Permissions" - -#: mod/editpost.php:147 src/Content/Conversation.php:396 -msgid "Open Compose page" -msgstr "Ouvrir la page de saisie" - -#: mod/events.php:124 mod/events.php:126 -msgid "Event can not end before it has started." -msgstr "L'évènement ne peut pas se terminer avant d'avoir commencé." - -#: mod/events.php:132 mod/events.php:134 -msgid "Event title and start time are required." -msgstr "Vous devez donner un nom et un horaire de début à l'évènement." - -#: mod/events.php:376 -msgid "Create New Event" -msgstr "Créer un nouvel évènement" - -#: mod/events.php:474 src/Module/Admin/Logs/View.php:97 -msgid "Event details" -msgstr "Détails de l'évènement" - -#: mod/events.php:475 -msgid "Starting date and Title are required." -msgstr "La date de début et le titre sont requis." - -#: mod/events.php:476 mod/events.php:481 -msgid "Event Starts:" -msgstr "Début de l'évènement :" - -#: mod/events.php:476 mod/events.php:506 -#: src/Module/Admin/Blocklist/Server/Add.php:136 -#: src/Module/Admin/Blocklist/Server/Add.php:138 -#: src/Module/Admin/Blocklist/Server/Import.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:84 -#: src/Module/Admin/Blocklist/Server/Index.php:85 -#: src/Module/Admin/Blocklist/Server/Index.php:113 -#: src/Module/Admin/Blocklist/Server/Index.php:114 -#: src/Module/Admin/Item/Delete.php:69 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:207 src/Module/Install.php:240 -#: src/Module/Install.php:245 src/Module/Install.php:264 -#: src/Module/Install.php:275 src/Module/Install.php:280 -#: src/Module/Install.php:286 src/Module/Install.php:291 -#: src/Module/Install.php:305 src/Module/Install.php:320 -#: src/Module/Install.php:347 src/Module/Register.php:148 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Index.php:141 -#: src/Module/Settings/TwoFactor/Verify.php:154 -msgid "Required" -msgstr "Requis" - -#: mod/events.php:489 mod/events.php:512 -msgid "Finish date/time is not known or not relevant" -msgstr "Date / heure de fin inconnue ou sans objet" - -#: mod/events.php:491 mod/events.php:496 -msgid "Event Finishes:" -msgstr "Fin de l'évènement :" - -#: mod/events.php:502 src/Module/Profile/Profile.php:172 -#: src/Module/Settings/Profile/Index.php:238 -msgid "Description:" -msgstr "Description :" - -#: mod/events.php:504 src/Content/Widget/VCard.php:104 src/Model/Event.php:80 -#: src/Model/Event.php:107 src/Model/Event.php:469 src/Model/Event.php:919 -#: src/Model/Profile.php:374 src/Module/Contact/Profile.php:369 -#: src/Module/Directory.php:148 src/Module/Notifications/Introductions.php:185 -#: src/Module/Profile/Profile.php:194 -msgid "Location:" -msgstr "Localisation :" - -#: mod/events.php:506 mod/events.php:508 -msgid "Title:" -msgstr "Titre :" - -#: mod/events.php:509 mod/events.php:510 -msgid "Share this event" -msgstr "Partager cet évènement" - -#: mod/events.php:515 mod/message.php:201 mod/message.php:357 -#: mod/photos.php:921 mod/photos.php:1025 mod/photos.php:1295 -#: mod/photos.php:1336 mod/photos.php:1392 mod/photos.php:1466 -#: src/Module/Admin/Item/Source.php:60 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Profile.php:327 -#: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/Delegation.php:148 src/Module/FriendSuggest.php:144 -#: src/Module/Install.php:252 src/Module/Install.php:294 -#: src/Module/Install.php:331 src/Module/Invite.php:178 -#: src/Module/Item/Compose.php:189 src/Module/Profile/Profile.php:247 -#: src/Module/Settings/Profile/Index.php:222 src/Object/Post.php:992 -#: view/theme/duepuntozero/config.php:69 view/theme/frio/config.php:171 -#: view/theme/quattro/config.php:71 view/theme/vier/config.php:119 -msgid "Submit" -msgstr "Envoyer" - -#: mod/events.php:516 src/Module/Profile/Profile.php:248 -msgid "Basic" -msgstr "Simple" - -#: mod/events.php:517 src/Module/Admin/Site.php:439 src/Module/Contact.php:477 -#: src/Module/Profile/Profile.php:249 -msgid "Advanced" -msgstr "Avancé" - -#: mod/events.php:534 -msgid "Failed to remove event" -msgstr "La suppression de l'évènement a échoué." - -#: mod/fbrowser.php:61 src/Content/Nav.php:195 src/Module/BaseProfile.php:64 -#: view/theme/frio/theme.php:238 -msgid "Photos" -msgstr "Photos" - -#: mod/fbrowser.php:121 mod/fbrowser.php:148 -#: src/Module/Settings/Profile/Photo/Index.php:129 -msgid "Upload" -msgstr "Téléverser" - -#: mod/fbrowser.php:143 -msgid "Files" -msgstr "Fichiers" - -#: mod/follow.php:74 mod/unfollow.php:96 src/Module/RemoteFollow.php:126 -msgid "Submit Request" -msgstr "Envoyer la requête" - -#: mod/follow.php:84 -msgid "You already added this contact." -msgstr "Vous avez déjà ajouté ce contact." - -#: mod/follow.php:100 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté." - -#: mod/follow.php:108 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté." - -#: mod/follow.php:113 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Le support d'OStatus est désactivé. Le contact ne peut pas être ajouté." - -#: mod/follow.php:138 src/Content/Item.php:400 src/Content/Widget.php:80 -#: src/Model/Contact.php:1169 src/Model/Contact.php:1180 -#: view/theme/vier/theme.php:181 -msgid "Connect/Follow" -msgstr "Se connecter/Suivre" - -#: mod/follow.php:139 src/Module/RemoteFollow.php:125 -msgid "Please answer the following:" -msgstr "Merci de répondre à ce qui suit :" - -#: mod/follow.php:140 mod/unfollow.php:94 -msgid "Your Identity Address:" -msgstr "Votre adresse d'identité :" - -#: mod/follow.php:141 mod/unfollow.php:100 -#: src/Module/Admin/Blocklist/Contact.php:116 -#: src/Module/Contact/Profile.php:365 -#: src/Module/Notifications/Introductions.php:127 -#: src/Module/Notifications/Introductions.php:196 -msgid "Profile URL" -msgstr "URL du Profil" - -#: mod/follow.php:142 src/Module/Contact/Profile.php:377 -#: src/Module/Notifications/Introductions.php:189 -#: src/Module/Profile/Profile.php:207 -msgid "Tags:" -msgstr "Étiquette :" - -#: mod/follow.php:153 -#, php-format -msgid "%s knows you" -msgstr "%s vous connaît" - -#: mod/follow.php:154 -msgid "Add a personal note:" -msgstr "Ajouter une note personnelle :" - -#: mod/follow.php:163 mod/unfollow.php:109 src/Module/BaseProfile.php:59 -#: src/Module/Contact.php:447 -msgid "Status Messages and Posts" -msgstr "Messages d'état et publications" - -#: mod/follow.php:191 -msgid "The contact could not be added." -msgstr "Le contact n'a pas pu être ajouté." - -#: mod/item.php:132 mod/item.php:136 +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 msgid "Unable to locate original post." msgstr "Impossible de localiser la publication originale." -#: mod/item.php:338 mod/item.php:343 -msgid "Empty post discarded." -msgstr "Publication vide rejetée." - -#: mod/item.php:678 +#: mod/item.php:138 msgid "Post updated." msgstr "Publication mise à jour." -#: mod/item.php:688 mod/item.php:693 +#: mod/item.php:203 mod/item.php:207 msgid "Item wasn't stored." msgstr "La publication n'a pas été enregistrée." -#: mod/item.php:704 +#: mod/item.php:217 msgid "Item couldn't be fetched." msgstr "La publication n'a pas pu être obtenue." -#: mod/item.php:844 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "Publication vide rejetée." + +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 -#: src/Module/Debug/ItemBody.php:57 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Élément introuvable." +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 +#: src/Module/Invite.php:42 src/Module/Invite.php:131 +#: src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Channels.php:56 src/Module/Settings/Channels.php:114 +#: src/Module/Settings/Delegation.php:90 src/Module/Settings/Display.php:90 +#: src/Module/Settings/Display.php:193 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:112 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/User/Import.php:84 src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "Permission refusée." + #: mod/lostpass.php:40 msgid "No valid account found." msgstr "Impossible de trouver un compte valide." @@ -589,7 +131,7 @@ msgid "" "\n" "\t\tYour password will not be changed unless we can verify that you\n" "\t\tissued this request." -msgstr "\n\t\tCher(e) %1$s,\n\t\t\tUne demande vient d'être faite à \"%2$s\" pour réinitialiser votre mot de passe. \n\t\tAfin de confirmer cette demande, merci de sélectionner le lien ci-dessous \n\t\tet de le coller dans la barre d'adresse de votre navigateur.\n\n\t\tSi vous n'avez PAS fait cette demande de changement, merci de NE PAS suivre le lien\n\t\tfourni et d'ignorer et/ou supprimer ce message. La demande expirera rapidement.\n\n\t\tVotre mot de passe ne changera pas tant que nous n'avons pas vérifier que vous êtes à l'origine de la demande." +msgstr "\n\t\tCher/Chère %1$s,\n\t\t\tUne demande vient d'être faite depuis \"%2$s\" pour réinitialiser votre mot de passe. \n\t\tAfin de confirmer cette demande, merci de sélectionner le lien ci-dessous \n\t\tet de le coller dans la barre d'adresse de votre navigateur.\n\n\t\tSi vous n'avez PAS fait cette demande de changement, merci de NE PAS suivre le lien\n\t\tfourni et d'ignorer et/ou supprimer ce message. La demande expirera rapidement.\n\n\t\tVotre mot de passe ne changera pas tant que nous n'avons pas vérifier que vous êtes à l'origine de la demande." #: mod/lostpass.php:69 #, php-format @@ -611,7 +153,7 @@ msgstr "\n\t\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1$s\n\n\t #: mod/lostpass.php:84 #, php-format msgid "Password reset requested at %s" -msgstr "Requête de réinitialisation de mot de passe à %s" +msgstr "Demande de réinitialisation de mot de passe depuis %s" #: mod/lostpass.php:100 msgid "" @@ -621,7 +163,7 @@ msgstr "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utili #: mod/lostpass.php:113 msgid "Request has expired, please make a new one." -msgstr "La requête a expiré, veuillez la renouveler." +msgstr "La demande a expirée, veuillez la renouveler." #: mod/lostpass.php:128 msgid "Forgot your Password?" @@ -633,15 +175,15 @@ msgid "" "your email for further instructions." msgstr "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel." -#: mod/lostpass.php:130 src/Module/Security/Login.php:161 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " -msgstr "Pseudo ou eMail : " +msgstr "Pseudo ou Courriel : " #: mod/lostpass.php:131 msgid "Reset" msgstr "Réinitialiser" -#: mod/lostpass.php:146 src/Module/Security/Login.php:173 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 msgid "Password Reset" msgstr "Réinitialiser le mot de passe" @@ -701,23 +243,11 @@ msgstr "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t msgid "Your password has been changed at %s" msgstr "Votre mot de passe a été modifié à %s" -#: mod/match.php:62 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "Aucun mot-clé ne correspond. Merci d'ajouter des mots-clés à votre profil." - -#: mod/match.php:93 src/Module/BaseSearch.php:119 -msgid "No matches" -msgstr "Aucune correspondance" - -#: mod/match.php:98 -msgid "Profile Match" -msgstr "Correpondance de profils" - -#: mod/message.php:46 mod/message.php:126 src/Content/Nav.php:289 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 msgid "New Message" msgstr "Nouveau message" -#: mod/message.php:83 mod/wallmessage.php:70 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 msgid "No recipient selected." msgstr "Pas de destinataire sélectionné." @@ -725,62 +255,103 @@ msgstr "Pas de destinataire sélectionné." msgid "Unable to locate contact information." msgstr "Impossible de localiser les informations du contact." -#: mod/message.php:90 mod/wallmessage.php:76 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 msgid "Message could not be sent." msgstr "Impossible d'envoyer le message." -#: mod/message.php:93 mod/wallmessage.php:79 +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 msgid "Message collection failure." msgstr "Récupération des messages infructueuse." -#: mod/message.php:120 src/Module/Notifications/Introductions.php:133 -#: src/Module/Notifications/Introductions.php:168 -#: src/Module/Notifications/Notification.php:84 +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 msgid "Discard" msgstr "Rejeter" -#: mod/message.php:133 src/Content/Nav.php:286 view/theme/frio/theme.php:245 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" msgstr "Messages" -#: mod/message.php:146 +#: mod/message.php:148 msgid "Conversation not found." msgstr "Conversation inconnue." -#: mod/message.php:151 +#: mod/message.php:153 msgid "Message was not deleted." msgstr "Le message n'a pas été supprimé." -#: mod/message.php:166 +#: mod/message.php:168 msgid "Conversation was not removed." msgstr "La conversation n'a pas été supprimée." -#: mod/message.php:180 mod/message.php:286 mod/wallmessage.php:124 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 msgid "Please enter a link URL:" msgstr "Entrez un lien web :" -#: mod/message.php:189 mod/wallmessage.php:129 +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 msgid "Send Private Message" msgstr "Envoyer un message privé" -#: mod/message.php:190 mod/message.php:347 mod/wallmessage.php:131 +#: mod/message.php:191 mod/message.php:346 msgid "To:" msgstr "À:" -#: mod/message.php:191 mod/message.php:348 mod/wallmessage.php:132 +#: mod/message.php:192 mod/message.php:347 msgid "Subject:" msgstr "Sujet:" -#: mod/message.php:195 mod/message.php:351 mod/wallmessage.php:138 -#: src/Module/Invite.php:171 +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 msgid "Your message:" msgstr "Votre message :" -#: mod/message.php:222 +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "Joindre photo" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "Insérer lien web" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:587 +msgid "Please wait" +msgstr "Patientez" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 +#: src/Module/Install.php:274 src/Module/Install.php:309 +#: src/Module/Invite.php:178 src/Module/Item/Compose.php:189 +#: src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 +#: src/Object/Post.php:1106 view/theme/duepuntozero/config.php:85 +#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Envoyer" + +#: mod/message.php:223 msgid "No messages." msgstr "Aucun message." -#: mod/message.php:278 +#: mod/message.php:279 msgid "Message not available." msgstr "Message indisponible." @@ -788,11 +359,11 @@ msgstr "Message indisponible." msgid "Delete message" msgstr "Effacer message" -#: mod/message.php:325 mod/message.php:457 +#: mod/message.php:325 mod/message.php:456 msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:i A" -#: mod/message.php:340 mod/message.php:454 +#: mod/message.php:340 mod/message.php:453 msgid "Delete conversation" msgstr "Effacer conversation" @@ -802,26 +373,26 @@ msgid "" "respond from the sender's profile page." msgstr "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur." -#: mod/message.php:346 +#: mod/message.php:345 msgid "Send Reply" msgstr "Répondre" -#: mod/message.php:428 +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "Émetteur inconnu - %s" -#: mod/message.php:430 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "Vous et %s" -#: mod/message.php:432 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "%s et vous" -#: mod/message.php:460 +#: mod/message.php:459 #, php-format msgid "%d message" msgid_plural "%d messages" @@ -829,816 +400,444 @@ msgstr[0] "%d message" msgstr[1] "%d messages" msgstr[2] "%d messages" -#: mod/notes.php:51 src/Module/BaseProfile.php:106 +#: mod/notes.php:52 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "Notes personnelles" -#: mod/notes.php:55 +#: mod/notes.php:56 msgid "Personal notes are visible only by yourself." msgstr "Les notes personnelles ne sont visibles que par vous." -#: mod/ostatus_subscribe.php:38 -msgid "Subscribing to contacts" -msgstr "Abonnement aux contacts" +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:161 +msgid "Save" +msgstr "Sauver" -#: mod/ostatus_subscribe.php:48 -msgid "No contact provided." -msgstr "Pas de contact fourni." +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "Utilisateur introuvable." -#: mod/ostatus_subscribe.php:54 -msgid "Couldn't fetch information for contact." -msgstr "Impossible de récupérer les informations pour ce contact." - -#: mod/ostatus_subscribe.php:65 -msgid "Couldn't fetch friends for contact." -msgstr "Impossible d'obtenir les abonnements de ce contact." - -#: mod/ostatus_subscribe.php:71 mod/ostatus_subscribe.php:82 -msgid "Couldn't fetch following contacts." -msgstr "Impossible de récupérer les contacts suivants." - -#: mod/ostatus_subscribe.php:77 -msgid "Couldn't fetch remote profile." -msgstr "Impossible de récupérer le profil distant." - -#: mod/ostatus_subscribe.php:87 -msgid "Unsupported network" -msgstr "Réseau incompatible" - -#: mod/ostatus_subscribe.php:103 mod/repair_ostatus.php:51 -msgid "Done" -msgstr "Terminé" - -#: mod/ostatus_subscribe.php:117 -msgid "success" -msgstr "réussite" - -#: mod/ostatus_subscribe.php:119 -msgid "failed" -msgstr "échec" - -#: mod/ostatus_subscribe.php:122 -msgid "ignored" -msgstr "ignoré" - -#: mod/ostatus_subscribe.php:127 mod/repair_ostatus.php:57 -msgid "Keep this window open until done." -msgstr "Veuillez garder cette fenêtre ouverte jusqu'à la fin." - -#: mod/photos.php:108 src/Module/BaseProfile.php:67 +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 msgid "Photo Albums" msgstr "Albums photo" -#: mod/photos.php:109 mod/photos.php:1584 +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 msgid "Recent Photos" msgstr "Photos récentes" -#: mod/photos.php:111 mod/photos.php:1073 mod/photos.php:1586 +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 msgid "Upload New Photos" msgstr "Téléverser de nouvelles photos" -#: mod/photos.php:129 src/Module/BaseSettings.php:35 +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 msgid "everybody" msgstr "tout le monde" -#: mod/photos.php:167 +#: mod/photos.php:159 msgid "Contact information unavailable" msgstr "Informations de contact indisponibles" -#: mod/photos.php:196 +#: mod/photos.php:188 msgid "Album not found." msgstr "Album introuvable." -#: mod/photos.php:250 +#: mod/photos.php:244 msgid "Album successfully deleted" msgstr "Album bien supprimé" -#: mod/photos.php:252 +#: mod/photos.php:246 msgid "Album was empty." msgstr "L'album était vide" -#: mod/photos.php:284 +#: mod/photos.php:277 msgid "Failed to delete the photo." msgstr "La suppression de la photo a échoué." -#: mod/photos.php:553 +#: mod/photos.php:545 msgid "a photo" msgstr "une photo" -#: mod/photos.php:553 +#: mod/photos.php:545 #, php-format msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s a été mentionné•e dans %2$s par %3$s" +msgstr "%1$s a été mentionné(e) dans %2$s par %3$s" -#: mod/photos.php:636 mod/photos.php:639 mod/photos.php:666 -#: mod/wall_upload.php:201 src/Module/Settings/Profile/Photo/Index.php:60 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "L'image dépasse la taille limite de %s" +#: mod/photos.php:582 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Accès public refusé." -#: mod/photos.php:642 -msgid "Image upload didn't complete, please try again" -msgstr "La mise en ligne de l'image ne s'est pas terminée, veuillez réessayer" - -#: mod/photos.php:645 -msgid "Image file is missing" -msgstr "Fichier image manquant" - -#: mod/photos.php:650 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "Le serveur ne peut pas accepter la mise en ligne d'un nouveau fichier en ce moment, veuillez contacter un administrateur" - -#: mod/photos.php:674 -msgid "Image file is empty." -msgstr "Fichier image vide." - -#: mod/photos.php:689 mod/wall_upload.php:163 -#: src/Module/Settings/Profile/Photo/Index.php:69 -msgid "Unable to process image." -msgstr "Impossible de traiter l'image." - -#: mod/photos.php:715 mod/wall_upload.php:226 -#: src/Module/Settings/Profile/Photo/Index.php:96 -msgid "Image upload failed." -msgstr "Le téléversement de l'image a échoué." - -#: mod/photos.php:807 +#: mod/photos.php:587 msgid "No photos selected" msgstr "Aucune photo sélectionnée" -#: mod/photos.php:876 -msgid "Access to this item is restricted." -msgstr "Accès restreint à cet élément." +#: mod/photos.php:721 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "La taille maximum d'image autorisée est de %s" -#: mod/photos.php:931 +#: mod/photos.php:728 msgid "Upload Photos" msgstr "Téléverser des photos" -#: mod/photos.php:935 mod/photos.php:1021 +#: mod/photos.php:732 mod/photos.php:820 msgid "New album name: " msgstr "Nom du nouvel album : " -#: mod/photos.php:936 +#: mod/photos.php:733 msgid "or select existing album:" msgstr "ou sélectionner un album existant" -#: mod/photos.php:937 +#: mod/photos.php:734 msgid "Do not show a status post for this upload" msgstr "Ne pas publier de notice de statut pour cet envoi" -#: mod/photos.php:1002 +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "Permissions" + +#: mod/photos.php:801 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?" -#: mod/photos.php:1003 mod/photos.php:1026 +#: mod/photos.php:802 mod/photos.php:825 msgid "Delete Album" msgstr "Effacer l'album" -#: mod/photos.php:1030 +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Annuler" + +#: mod/photos.php:829 msgid "Edit Album" msgstr "Éditer l'album" -#: mod/photos.php:1031 +#: mod/photos.php:830 msgid "Drop Album" msgstr "Supprimer l'album" -#: mod/photos.php:1035 +#: mod/photos.php:834 msgid "Show Newest First" msgstr "Plus récent d'abord" -#: mod/photos.php:1037 +#: mod/photos.php:836 msgid "Show Oldest First" msgstr "Plus ancien d'abord" -#: mod/photos.php:1058 mod/photos.php:1569 +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 msgid "View Photo" msgstr "Voir la photo" -#: mod/photos.php:1091 +#: mod/photos.php:889 msgid "Permission denied. Access to this item may be restricted." msgstr "Interdit. L'accès à cet élément peut avoir été restreint." -#: mod/photos.php:1093 +#: mod/photos.php:891 msgid "Photo not available" msgstr "Photo indisponible" -#: mod/photos.php:1103 +#: mod/photos.php:901 msgid "Do you really want to delete this photo?" msgstr "Voulez-vous vraiment supprimer cette photo ?" -#: mod/photos.php:1104 mod/photos.php:1296 +#: mod/photos.php:902 mod/photos.php:1102 msgid "Delete Photo" msgstr "Effacer la photo" -#: mod/photos.php:1196 +#: mod/photos.php:1000 msgid "View photo" msgstr "Voir photo" -#: mod/photos.php:1198 +#: mod/photos.php:1002 msgid "Edit photo" msgstr "Éditer la photo" -#: mod/photos.php:1199 +#: mod/photos.php:1003 msgid "Delete photo" msgstr "Effacer la photo" -#: mod/photos.php:1200 +#: mod/photos.php:1004 msgid "Use as profile photo" msgstr "Utiliser comme photo de profil" -#: mod/photos.php:1207 +#: mod/photos.php:1011 msgid "Private Photo" msgstr "Photo privée" -#: mod/photos.php:1213 +#: mod/photos.php:1017 msgid "View Full Size" msgstr "Voir en taille réelle" -#: mod/photos.php:1264 +#: mod/photos.php:1070 msgid "Tags: " -msgstr "Étiquettes :" +msgstr "Tags :" -#: mod/photos.php:1267 +#: mod/photos.php:1073 msgid "[Select tags to remove]" -msgstr "[Sélectionner les étiquettes à supprimer]" +msgstr "[Sélectionner les tags à supprimer]" -#: mod/photos.php:1282 +#: mod/photos.php:1088 msgid "New album name" msgstr "Nom du nouvel album" -#: mod/photos.php:1283 +#: mod/photos.php:1089 msgid "Caption" msgstr "Titre" -#: mod/photos.php:1284 +#: mod/photos.php:1090 msgid "Add a Tag" -msgstr "Ajouter une étiquette" +msgstr "Ajouter un tag" -#: mod/photos.php:1284 +#: mod/photos.php:1090 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Exemples : @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" -#: mod/photos.php:1285 +#: mod/photos.php:1091 msgid "Do not rotate" msgstr "Pas de rotation" -#: mod/photos.php:1286 +#: mod/photos.php:1092 msgid "Rotate CW (right)" msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" -#: mod/photos.php:1287 +#: mod/photos.php:1093 msgid "Rotate CCW (left)" msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" -#: mod/photos.php:1333 mod/photos.php:1389 mod/photos.php:1463 -#: src/Module/Contact.php:547 src/Module/Item/Compose.php:188 -#: src/Object/Post.php:989 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1103 msgid "This is you" msgstr "C'est vous" -#: mod/photos.php:1335 mod/photos.php:1391 mod/photos.php:1465 -#: src/Object/Post.php:532 src/Object/Post.php:991 +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:581 +#: src/Object/Post.php:1105 msgid "Comment" msgstr "Commenter" -#: mod/photos.php:1424 src/Content/Conversation.php:630 -#: src/Object/Post.php:256 +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1119 +msgid "Preview" +msgstr "Aperçu" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1107 +msgid "Loading..." +msgstr "Chargement en cours..." + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:261 msgid "Select" msgstr "Sélectionner" -#: mod/photos.php:1425 mod/settings.php:350 src/Content/Conversation.php:631 -#: src/Module/Admin/Users/Active.php:139 -#: src/Module/Admin/Users/Blocked.php:140 src/Module/Admin/Users/Index.php:153 +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 msgid "Delete" msgstr "Supprimer" -#: mod/photos.php:1486 src/Object/Post.php:379 +#: mod/photos.php:1298 src/Object/Post.php:409 msgid "Like" msgstr "Aime" -#: mod/photos.php:1487 src/Object/Post.php:379 +#: mod/photos.php:1299 src/Object/Post.php:409 msgid "I like this (toggle)" msgstr "J'aime" -#: mod/photos.php:1488 src/Object/Post.php:380 +#: mod/photos.php:1300 src/Object/Post.php:410 msgid "Dislike" msgstr "N'aime pas" -#: mod/photos.php:1490 src/Object/Post.php:380 +#: mod/photos.php:1302 src/Object/Post.php:410 msgid "I don't like this (toggle)" msgstr "Je n'aime pas" -#: mod/photos.php:1512 +#: mod/photos.php:1324 msgid "Map" msgstr "Carte" -#: mod/photos.php:1575 -msgid "View Album" -msgstr "Voir l'album" - -#: mod/redir.php:51 mod/redir.php:104 -msgid "Bad Request." -msgstr "Mauvaise requête." - -#: mod/redir.php:57 mod/redir.php:131 src/Module/Contact/Advanced.php:70 -#: src/Module/Contact/Advanced.php:109 src/Module/Contact/Contacts.php:55 -#: src/Module/Contact/Conversations.php:78 -#: src/Module/Contact/Conversations.php:83 -#: src/Module/Contact/Conversations.php:88 src/Module/Contact/Media.php:43 -#: src/Module/Contact/Posts.php:72 src/Module/Contact/Posts.php:77 -#: src/Module/Contact/Posts.php:82 src/Module/Contact/Profile.php:141 -#: src/Module/Contact/Profile.php:146 src/Module/Contact/Profile.php:151 -#: src/Module/FriendSuggest.php:70 src/Module/FriendSuggest.php:108 -#: src/Module/Group.php:99 src/Module/Group.php:108 -msgid "Contact not found." -msgstr "Contact introuvable." - -#: mod/removeme.php:65 src/Navigation/Notifications/Repository/Notify.php:467 -msgid "[Friendica System Notify]" -msgstr "[Notification Système de Friendica]" - -#: mod/removeme.php:65 -msgid "User deleted their account" -msgstr "L'utilisateur a supprimé son compte" - -#: mod/removeme.php:66 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "Sur votre nœud Friendica, un utilisateur a supprimé son compte. Veuillez vous assurer que ses données sont supprimées des sauvegardes." - -#: mod/removeme.php:67 -#, php-format -msgid "The user id is %d" -msgstr "L'identifiant d'utilisateur est %d" - -#: mod/removeme.php:101 mod/removeme.php:104 -msgid "Remove My Account" -msgstr "Supprimer mon compte" - -#: mod/removeme.php:102 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible." - -#: mod/removeme.php:103 -msgid "Please enter your password for verification:" -msgstr "Merci de saisir votre mot de passe pour vérification :" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Réinscription aux contacts OStatus" - -#: mod/repair_ostatus.php:46 src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Security/TwoFactor/Verify.php:98 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Erreur" -msgstr[1] "Erreurs" -msgstr[2] "Erreurs" - -#: mod/settings.php:122 -msgid "Failed to connect with email account using the settings provided." -msgstr "Impossible de se connecter au compte courriel configuré." - -#: mod/settings.php:175 -msgid "Connected Apps" -msgstr "Applications connectées" - -#: mod/settings.php:176 src/Module/Admin/Blocklist/Contact.php:106 -#: 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 "Nom" - -#: mod/settings.php:177 src/Content/Nav.php:215 -msgid "Home Page" -msgstr "Page d'accueil" - -#: mod/settings.php:178 src/Module/Admin/Queue.php:78 -msgid "Created" -msgstr "Créé" - -#: mod/settings.php:179 -msgid "Remove authorization" -msgstr "Révoquer l'autorisation" - -#: mod/settings.php:205 mod/settings.php:237 mod/settings.php:268 -#: mod/settings.php:352 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81 -#: src/Module/Admin/Site.php:434 src/Module/Admin/Themes/Index.php:113 -#: src/Module/Admin/Tos.php:83 src/Module/Settings/Account.php:563 -#: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:201 -msgid "Save Settings" -msgstr "Sauvegarder les paramètres" - -#: mod/settings.php:213 -msgid "Addon Settings" -msgstr "Paramètres d'extension" - -#: mod/settings.php:214 -msgid "No Addon settings configured" -msgstr "Aucuns paramètres d'Extension paramétré." - -#: mod/settings.php:235 -msgid "Additional Features" -msgstr "Fonctions supplémentaires" - -#: mod/settings.php:273 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "enabled" -msgstr "activé" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "disabled" -msgstr "désactivé" - -#: mod/settings.php:273 mod/settings.php:274 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Le support natif pour la connectivité %s est %s" - -#: mod/settings.php:274 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: mod/settings.php:300 -msgid "Email access is disabled on this site." -msgstr "L'accès courriel est désactivé sur ce site." - -#: mod/settings.php:305 mod/settings.php:350 -msgid "None" -msgstr "Aucun(e)" - -#: mod/settings.php:311 src/Module/BaseSettings.php:78 -msgid "Social Networks" -msgstr "Réseaux sociaux" - -#: mod/settings.php:316 -msgid "General Social Media Settings" -msgstr "Paramètres généraux des réseaux sociaux" - -#: mod/settings.php:319 -msgid "Followed content scope" -msgstr "Étendue des contenus suivis" - -#: mod/settings.php:321 -msgid "" -"By default, conversations in which your follows participated but didn't " -"start will be shown in your timeline. You can turn this behavior off, or " -"expand it to the conversations in which your follows liked a post." -msgstr "Par défaut, les conversations dans lesquelles vos comptes suivis ont participé mais qu'ils n'ont pas commencées seront affichées dans votre timeline. Vous pouvez désactiver ce comportement, ou l'étendre aux conversations dans lesquelles vos comptes suivis ont aimé une publication." - -#: mod/settings.php:323 -msgid "Only conversations my follows started" -msgstr "Seulement les conversations démarrées par mes comptes suivis" - -#: mod/settings.php:324 -msgid "Conversations my follows started or commented on (default)" -msgstr "Les conversations que mes comptes suivis ont commencé ou commentées (par défaut)" - -#: mod/settings.php:325 -msgid "Any conversation my follows interacted with, including likes" -msgstr "Toute conversation avec laquelle mes comptes suivis ont interagi, y compris les \"J'aime\"" - -#: mod/settings.php:328 -msgid "Enable Content Warning" -msgstr "Activer les avertissements de contenus (CW)" - -#: mod/settings.php:328 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect any other content filtering you eventually set up." -msgstr "Les utilisateurs de plate-formes comme Mastodon ou Pleroma ont la possibilité de définir un avertissement de contenu qui cache le contenu de leurs publications par défaut. Quand cette option est désactivée, les publications avec un avertissement de contenu ne sont pas filtrées et le libellé associé est utilisé comme titre. Ce filtrage est indépendant des autres filtrages de contenu." - -#: mod/settings.php:329 -msgid "Enable intelligent shortening" -msgstr "Activer l'abbréviation intelligente" - -#: mod/settings.php:329 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If disabled, every shortened post will always point to the original " -"friendica post." -msgstr "L'abbréviation intelligente cherche le lien le plus adapté dans les publications abbréviées. Quand elle est désactivée, le lien est toujours celui de la publication Friendica initiale." - -#: mod/settings.php:330 -msgid "Enable simple text shortening" -msgstr "Activer l'abbréviation de texte simple" - -#: mod/settings.php:330 -msgid "" -"Normally the system shortens posts at the next line feed. If this option is " -"enabled then the system will shorten the text at the maximum character " -"limit." -msgstr "Cette option raccourcit le texte des publications au nombre de caractères exact au lieu d'attendre la fin du paragraphe." - -#: mod/settings.php:331 -msgid "Attach the link title" -msgstr "Attacher le titre du lien (Diaspora)" - -#: mod/settings.php:331 -msgid "" -"When activated, the title of the attached link will be added as a title on " -"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" -" share feed content." -msgstr "Si vos publications contiennent un lien, le titre de la page associée sera attaché à la publication à destination de vos contacts Diaspora. C'est principalement utile avec les contacts \"remote-self\" qui partagent du contenu de flux RSS/Atom." - -#: mod/settings.php:332 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "Votre ancient compte ActivityPub/GNU Social" - -#: mod/settings.php:332 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "Si vous saisissez votre adresse de compte précédente d'un réseau basé sur ActivityPub ou GNU Social/Statusnet (au format utilisateur@domaine.tld), vos contacts seront ajoutés autoamtiquement. Le champ sera vidé quand l'opération sera terminé." - -#: mod/settings.php:335 -msgid "Repair OStatus subscriptions" -msgstr "Réparer les abonnements OStatus" - -#: mod/settings.php:339 -msgid "Email/Mailbox Setup" -msgstr "Réglages de courriel/boîte à lettre" - -#: mod/settings.php:340 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte." - -#: mod/settings.php:341 -msgid "Last successful email check:" -msgstr "Dernière vérification réussie des courriels :" - -#: mod/settings.php:343 -msgid "IMAP server name:" -msgstr "Nom du serveur IMAP :" - -#: mod/settings.php:344 -msgid "IMAP port:" -msgstr "Port IMAP :" - -#: mod/settings.php:345 -msgid "Security:" -msgstr "Sécurité :" - -#: mod/settings.php:346 -msgid "Email login name:" -msgstr "Nom de connexion :" - -#: mod/settings.php:347 -msgid "Email password:" -msgstr "Mot de passe :" - -#: mod/settings.php:348 -msgid "Reply-to address:" -msgstr "Adresse de réponse :" - -#: mod/settings.php:349 -msgid "Send public posts to all email contacts:" -msgstr "Envoyer les publications publiques à tous les contacts courriels :" - -#: mod/settings.php:350 -msgid "Action after import:" -msgstr "Action après import :" - -#: mod/settings.php:350 src/Content/Nav.php:283 -msgid "Mark as seen" -msgstr "Marquer comme vu" - -#: mod/settings.php:350 -msgid "Move to folder" -msgstr "Déplacer vers" - -#: mod/settings.php:351 -msgid "Move to folder:" -msgstr "Déplacer vers :" - -#: mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h." - -#: mod/suggest.php:55 src/Content/Widget.php:83 view/theme/vier/theme.php:184 -msgid "Friend Suggestions" -msgstr "Suggestions d'abonnement" - -#: mod/tagger.php:78 src/Content/Item.php:300 src/Model/Item.php:2855 -msgid "photo" -msgstr "photo" - -#: mod/tagger.php:78 src/Content/Item.php:294 src/Content/Item.php:304 -msgid "status" -msgstr "le statut" - -#: mod/tagger.php:111 src/Content/Item.php:314 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s a mentionné %3$s de %2$s avec %4$s" - -#: mod/tagrm.php:113 -msgid "Remove Item Tag" -msgstr "Enlever l'étiquette de l'élément" - -#: mod/tagrm.php:115 -msgid "Select a tag to remove: " -msgstr "Sélectionner une étiquette à supprimer :" - -#: mod/tagrm.php:126 src/Module/Settings/Delegation.php:179 -#: src/Module/Settings/TwoFactor/Trusted.php:142 -msgid "Remove" -msgstr "Utiliser comme photo de profil" - -#: mod/uimport.php:46 -msgid "User imports on closed servers can only be done by an administrator." -msgstr "L'import d'utilisateur sur un serveur fermé ne peut être effectué que par un administrateur." - -#: mod/uimport.php:55 src/Module/Register.php:99 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain." - -#: mod/uimport.php:62 src/Module/Register.php:173 -msgid "Import" -msgstr "Importer" - -#: mod/uimport.php:64 -msgid "Move account" -msgstr "Migrer le compte" - -#: mod/uimport.php:65 -msgid "You can import an account from another Friendica server." -msgstr "Vous pouvez importer un compte d'un autre serveur Friendica." - -#: mod/uimport.php:66 -msgid "" -"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." -msgstr "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos contacts que vous avez déménagé ici." - -#: mod/uimport.php:67 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "Cette fonctionalité est expérimentale. Il n'est pas possible d'importer des contacts depuis le réseau OStatus (GNU Social/Statusnet) ou depuis Diaspora." - -#: mod/uimport.php:68 -msgid "Account file" -msgstr "Fichier du compte" - -#: mod/uimport.php:68 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\"" - -#: mod/unfollow.php:65 mod/unfollow.php:134 -msgid "You aren't following this contact." -msgstr "Vous ne suivez pas ce contact." - -#: mod/unfollow.php:71 -msgid "Unfollowing is currently not supported by your network." -msgstr "Le désabonnement n'est actuellement pas supporté par votre réseau." - -#: mod/unfollow.php:92 -msgid "Disconnect/Unfollow" -msgstr "Se déconnecter/Ne plus suivre" - -#: mod/unfollow.php:143 -msgid "Contact was successfully unfollowed" -msgstr "Le contact n'est maintenant plus suivi" - -#: mod/unfollow.php:146 -msgid "Unable to unfollow this contact, please contact your administrator" -msgstr "Impossible de ne plus suivre ce contact, merci de contacter votre administrateur" - -#: mod/wall_attach.php:40 mod/wall_attach.php:46 mod/wall_attach.php:75 -#: mod/wall_upload.php:54 mod/wall_upload.php:63 mod/wall_upload.php:97 -#: mod/wall_upload.php:148 mod/wall_upload.php:150 -msgid "Invalid request." -msgstr "Requête invalide." - -#: mod/wall_attach.php:93 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise" - -#: mod/wall_attach.php:93 -msgid "Or - did you try to upload an empty file?" -msgstr "Ou — auriez-vous essayé de télécharger un fichier vide ?" - -#: mod/wall_attach.php:104 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "La taille du fichier dépasse la limite de %s" - -#: mod/wall_attach.php:119 -msgid "File upload failed." -msgstr "Le téléversement a échoué." - -#: mod/wall_upload.php:218 src/Model/Photo.php:1087 -msgid "Wall Photos" -msgstr "Photos du mur" - -#: mod/wallmessage.php:62 mod/wallmessage.php:116 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message." - -#: mod/wallmessage.php:73 -msgid "Unable to check your home location." -msgstr "Impossible de vérifier votre localisation." - -#: mod/wallmessage.php:97 mod/wallmessage.php:104 -msgid "No recipient." -msgstr "Pas de destinataire." - -#: mod/wallmessage.php:130 -#, 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 "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus." - #: src/App.php:473 msgid "No system theme config value set." msgstr "Le thème système n'est pas configuré." -#: src/App.php:594 +#: src/App.php:580 msgid "Apologies but the website is unavailable at the moment." msgstr "Désolé mais le site web n'est pas disponible pour le moment." -#: src/App/Page.php:281 +#: src/App/Page.php:248 msgid "Delete this item?" msgstr "Effacer cet élément?" -#: src/App/Page.php:282 +#: src/App/Page.php:249 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "Bloquer ce contact ? Iel ne pourra pas s'abonner à votre compte et vous ne pourrez pas voir leurs publications ni leurs commentaires." -#: src/App/Page.php:352 +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "Ignorer cet auteur ? Vous ne serez plus en mesure de voir ses publications et notifications." + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "Réduire les publications de cet auteur ?" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "Ignorer le serveur de cet auteur ?" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "Vous ne verrez aucun contenu provenant de ce serveur, y compris les partages dans votre page Réseau, les pages de la communauté et les conversations individuelles." + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "Erreur lors du \"Aime\"" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "Erreur lors du \"N'aime pas\"" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "Erreur lors du \"Partager\"" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "Erreur lors du \"Participer\"" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "Erreur backend" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "Erreur réseau" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "Déposer des fichiers ici pour les envoyer" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "Votre navigateur ne supporte pas l'envoi de fichier par glisser-déposer." + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "Veuillez utiliser le formulaire ci-dessous pour envoyer vos fichiers comme au bon vieux temps." + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "Fichier trop volumineux ({{filesize}}Mio). Taille maximum : {{maxFilesize}}Mio." + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "Vous ne pouvez pas envoyer des fichiers de ce type." + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "Le serveur a répondu avec un code {{statusCode}}." + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "Annuler l'envoi" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "Envoi annulé." + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "Êtes-vous sûr de vouloir annuler cet envoi ?" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "Supprimer le fichier" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "Vous ne pouvez plus envoyer de fichiers." + +#: src/App/Page.php:351 msgid "toggle mobile" msgstr "activ. mobile" -#: src/App/Router.php:282 +#: src/App/Router.php:309 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Méthode non autorisée pour ce module. Méthode(s) autorisée(s): %s" -#: src/App/Router.php:284 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 msgid "Page not found." msgstr "Page introuvable." -#: src/App/Router.php:312 +#: src/App/Router.php:323 msgid "You must be logged in to use addons. " msgstr "Vous devez être connecté pour utiliser les greffons." -#: src/BaseModule.php:392 +#: src/BaseModule.php:403 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 "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé." -#: src/BaseModule.php:419 +#: src/BaseModule.php:430 msgid "All contacts" msgstr "Tous les contacts" -#: src/BaseModule.php:424 src/Content/Widget.php:235 src/Core/ACL.php:194 -#: src/Module/Contact.php:370 src/Module/PermissionTooltip.php:122 -#: src/Module/PermissionTooltip.php:144 +#: src/BaseModule.php:435 src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 +#: src/Module/Settings/Channels.php:120 msgid "Followers" msgstr "Abonnés" -#: src/BaseModule.php:429 src/Content/Widget.php:236 -#: src/Module/Contact.php:371 +#: src/BaseModule.php:440 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 src/Module/Settings/Channels.php:119 msgid "Following" msgstr "Abonnements" -#: src/BaseModule.php:434 src/Content/Widget.php:237 -#: src/Module/Contact.php:372 +#: src/BaseModule.php:445 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 msgid "Mutual friends" msgstr "Contact mutuels" -#: src/BaseModule.php:442 +#: src/BaseModule.php:453 msgid "Common" msgstr "Commun" @@ -1664,13 +863,13 @@ msgid "The contact entries have been archived" msgstr "Les contacts ont été archivés" #: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Aucun profil distant n'a été trouvé à cette URL (%s)" #: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:66 +#: src/Module/Moderation/Blocklist/Contact.php:82 msgid "The contact has been blocked from the node" msgstr "Le profile distant a été bloqué" @@ -1788,16 +987,25 @@ msgstr "Toutes les mises à jour de publications en attente sont terminées." msgid "Enter user nickname: " msgstr "Entrer un pseudo :" +#: src/Console/User.php:182 src/Model/User.php:710 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "Utilisateur introuvable" + #: src/Console/User.php:202 msgid "Enter new password: " msgstr "Entrer le nouveau mot de passe :" -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:65 +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 #: src/Module/Settings/Account.php:75 msgid "Password update failed. Please try again." msgstr "Le changement de mot de passe a échoué. Merci de recommencer." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:68 +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 #: src/Module/Settings/Account.php:78 msgid "Password changed." msgstr "Mot de passe changé." @@ -1887,10 +1095,14 @@ msgstr "Ostatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 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 +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 msgid "Email" msgstr "Courriel" @@ -1946,266 +1158,520 @@ msgstr "ActivityPub" msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:178 +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "Tumblr" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "Bluesky" + +#: src/Content/ContactSelector.php:180 #, php-format msgid "%s (via %s)" msgstr "%s (via %s)" -#: src/Content/Conversation.php:207 -#, php-format -msgid "%s likes this." -msgstr "%s aime ça." - -#: src/Content/Conversation.php:210 -#, php-format -msgid "%s doesn't like this." -msgstr "%s n'aime pas ça." - -#: src/Content/Conversation.php:213 -#, php-format -msgid "%s attends." -msgstr "%s participe" - -#: src/Content/Conversation.php:216 -#, php-format -msgid "%s doesn't attend." -msgstr "%s ne participe pas" - -#: src/Content/Conversation.php:219 -#, php-format -msgid "%s attends maybe." -msgstr "%s participe peut-être" - -#: src/Content/Conversation.php:222 src/Content/Conversation.php:260 -#: src/Content/Conversation.php:874 -#, php-format -msgid "%s reshared this." -msgstr "%s a partagé ceci." - -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:226 msgid "and" msgstr "et" -#: src/Content/Conversation.php:231 +#: src/Content/Conversation.php:229 #, php-format msgid "and %d other people" msgstr "et %d autres personnes" +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "%2$s aime." +msgstr[1] "%2$s aiment." +msgstr[2] "%2$s aiment." + +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "%2$s n'aime pas." +msgstr[1] "%2$s n'aiment pas." +msgstr[2] "%2$s n'aiment pas." + #: src/Content/Conversation.php:239 #, php-format -msgid "%2$d people like this" -msgstr "%2$d personnes aiment ça" +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "%2$s participe." +msgstr[1] "%2$s participent." +msgstr[2] "%2$s participent." -#: src/Content/Conversation.php:240 +#: src/Content/Conversation.php:241 #, php-format -msgid "%s like this." -msgstr "%s aiment ça." +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "%2$s ne participe pas." +msgstr[1] "%2$s ne participent pas." +msgstr[2] "%2$s ne participent pas." #: src/Content/Conversation.php:243 #, php-format -msgid "%2$d people don't like this" -msgstr "%2$d personnes n'aiment pas ça" +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "%2$s participe peut-être." +msgstr[1] "%2$s participent peut-être." +msgstr[2] "%2$s participent peut-être." -#: src/Content/Conversation.php:244 +#: src/Content/Conversation.php:245 #, php-format -msgid "%s don't like this." -msgstr "%s n'aiment pas ça." +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "%2$s à partagé." +msgstr[1] "%2$s ont partagé." +msgstr[2] "%2$s ont partagé." -#: src/Content/Conversation.php:247 +#: src/Content/Conversation.php:274 #, php-format -msgid "%2$d people attend" -msgstr "%2$d personnes participent" +msgid " likes this" +msgid_plural " like this" +msgstr[0] " aime" +msgstr[1] " aiment" +msgstr[2] " aiment" -#: src/Content/Conversation.php:248 +#: src/Content/Conversation.php:277 #, php-format -msgid "%s attend." -msgstr "%s participent." +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] " n'aime pas" +msgstr[1] " n'aiment pas" +msgstr[2] " n'aiment pas" -#: src/Content/Conversation.php:251 +#: src/Content/Conversation.php:280 #, php-format -msgid "%2$d people don't attend" -msgstr "%2$d personnes ne participent pas" +msgid " attends" +msgid_plural " attend" +msgstr[0] " participe" +msgstr[1] " participent" +msgstr[2] " participent" -#: src/Content/Conversation.php:252 +#: src/Content/Conversation.php:283 #, php-format -msgid "%s don't attend." -msgstr "%s ne participent pas." +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] " ne participe pas" +msgstr[1] " ne participent pas" +msgstr[2] " ne participent pas" -#: src/Content/Conversation.php:255 +#: src/Content/Conversation.php:286 #, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d personnes vont peut-être participer" +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] " participe peut-être" +msgstr[1] " participent peut-être" +msgstr[2] " participent peut-être" -#: src/Content/Conversation.php:256 +#: src/Content/Conversation.php:289 #, php-format -msgid "%s attend maybe." -msgstr "%sparticipent peut-être" +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] " a partagé" +msgstr[1] " ont partagé" +msgstr[2] " ont partagé" -#: src/Content/Conversation.php:259 -#, php-format -msgid "%2$d people reshared this" -msgstr "%2$d personnes ont partagé ceci" - -#: src/Content/Conversation.php:307 +#: src/Content/Conversation.php:336 msgid "Visible to everybody" msgstr "Visible par tout le monde" -#: src/Content/Conversation.php:308 src/Module/Item/Compose.php:198 -#: src/Object/Post.php:1002 +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1118 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Veuillez entrer une URL d'image/vidéo/page web." -#: src/Content/Conversation.php:309 +#: src/Content/Conversation.php:338 msgid "Tag term:" -msgstr "Étiquette :" +msgstr "Tag :" -#: src/Content/Conversation.php:310 src/Module/Filer/SaveTag.php:72 +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 msgid "Save to Folder:" msgstr "Sauver dans le Dossier :" -#: src/Content/Conversation.php:311 +#: src/Content/Conversation.php:340 msgid "Where are you right now?" msgstr "Où êtes-vous actuellement ?" -#: src/Content/Conversation.php:312 +#: src/Content/Conversation.php:341 msgid "Delete item(s)?" msgstr "Supprimer les élément(s) ?" -#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:175 +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 msgid "Created at" msgstr "Créé à" -#: src/Content/Conversation.php:334 +#: src/Content/Conversation.php:363 msgid "New Post" msgstr "Nouvelle publication" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:366 msgid "Share" msgstr "Partager" -#: src/Content/Conversation.php:348 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:999 +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "envoi image" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Joindre fichier" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "ajout fichier" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1108 +msgid "Bold" +msgstr "Gras" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1109 +msgid "Italic" +msgstr "Italique" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1110 +msgid "Underline" +msgstr "Souligné" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1112 +msgid "Quote" +msgstr "Citation" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1113 +msgid "Add emojis" +msgstr "Ajouter des émojis" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1111 +msgid "Content Warning" +msgstr "Avertissement de contenu" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1114 +msgid "Code" +msgstr "Code" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1115 msgid "Image" msgstr "Image" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1116 +msgid "Link" +msgstr "Lien" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1117 +msgid "Link or Media" +msgstr "Lien ou média" + +#: src/Content/Conversation.php:382 msgid "Video" msgstr "Vidéo" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:222 +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "Définir votre localisation" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "spéc. localisation" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "Effacer la localisation du navigateur" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "supp. localisation" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Définir un titre" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Catégories (séparées par des virgules)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 msgid "Scheduled at" msgstr "Prévu pour" -#: src/Content/Conversation.php:658 src/Object/Post.php:244 -msgid "Pinned item" -msgstr "Élément épinglé" +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Réglages des permissions" -#: src/Content/Conversation.php:674 src/Object/Post.php:486 -#: src/Object/Post.php:487 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Voir le profil de %s @ %s" +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Publication publique" -#: src/Content/Conversation.php:687 src/Object/Post.php:474 -msgid "Categories:" -msgstr "Catégories :" +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:132 +#: src/Model/Profile.php:479 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "Message" -#: src/Content/Conversation.php:688 src/Object/Post.php:475 -msgid "Filed under:" -msgstr "Rangé sous :" +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Navigateur" -#: src/Content/Conversation.php:696 src/Object/Post.php:500 -#, php-format -msgid "%s from %s" -msgstr "%s de %s" +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "Ouvrir la page de saisie" -#: src/Content/Conversation.php:712 -msgid "View in context" -msgstr "Voir dans le contexte" - -#: src/Content/Conversation.php:777 +#: src/Content/Conversation.php:595 msgid "remove" msgstr "enlever" -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:599 msgid "Delete Selected Items" msgstr "Supprimer les éléments sélectionnés" -#: src/Content/Conversation.php:846 src/Content/Conversation.php:849 -#: src/Content/Conversation.php:852 src/Content/Conversation.php:855 +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 #, php-format msgid "You had been addressed (%s)." msgstr "Vous avez été mentionné (%s)" -#: src/Content/Conversation.php:858 +#: src/Content/Conversation.php:769 #, php-format msgid "You are following %s." msgstr "Vous suivez %s." -#: src/Content/Conversation.php:861 -msgid "You subscribed to one or more tags in this post." -msgstr "Vous vous êtes abonné(e) à une étiquette ou plus de cette publication." +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "Vous vous êtes abonné(e) à %s." -#: src/Content/Conversation.php:876 +#: src/Content/Conversation.php:776 +msgid "You subscribed to one or more tags in this post." +msgstr "Vous vous êtes abonné(e) à un tag ou plus de cette publication." + +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "%s a partagé." + +#: src/Content/Conversation.php:798 msgid "Reshared" msgstr "Partagé" -#: src/Content/Conversation.php:876 +#: src/Content/Conversation.php:798 #, php-format msgid "Reshared by %s <%s>" msgstr "Partagé par %s <%s>" -#: src/Content/Conversation.php:879 +#: src/Content/Conversation.php:801 #, php-format msgid "%s is participating in this thread." msgstr "%s participe à ce fil de discussion" -#: src/Content/Conversation.php:882 +#: src/Content/Conversation.php:804 msgid "Stored for general reasons" msgstr "Stocké pour des raisons générales." -#: src/Content/Conversation.php:885 +#: src/Content/Conversation.php:807 msgid "Global post" msgstr "Publication globale" -#: src/Content/Conversation.php:888 +#: src/Content/Conversation.php:810 msgid "Sent via an relay server" msgstr "Envoyé via un serveur relais" -#: src/Content/Conversation.php:888 +#: src/Content/Conversation.php:810 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "Envoyé par le serveur relais %s <%s>" -#: src/Content/Conversation.php:891 +#: src/Content/Conversation.php:813 msgid "Fetched" msgstr "Récupéré" -#: src/Content/Conversation.php:891 +#: src/Content/Conversation.php:813 #, php-format msgid "Fetched because of %s <%s>" msgstr "Récupéré grâce à %s <%s>" -#: src/Content/Conversation.php:894 +#: src/Content/Conversation.php:816 msgid "Stored because of a child post to complete this thread." msgstr "Stocké parce qu'une publication fille complète ce fil de discussion." -#: src/Content/Conversation.php:897 +#: src/Content/Conversation.php:819 msgid "Local delivery" msgstr "Distribution locale" -#: src/Content/Conversation.php:900 +#: src/Content/Conversation.php:822 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Stocké en lien avec votre activité (j'aime, commentaire, étoile...)" -#: src/Content/Conversation.php:903 +#: src/Content/Conversation.php:825 msgid "Distributed" msgstr "Distribué" -#: src/Content/Conversation.php:906 +#: src/Content/Conversation.php:828 msgid "Pushed to us" msgstr "Poussé vers nous" +#: src/Content/Conversation.php:1492 src/Object/Post.php:248 +msgid "Pinned item" +msgstr "Élément épinglé" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:530 +#: src/Object/Post.php:531 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Voir le profil de %s @ %s" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:518 +msgid "Categories:" +msgstr "Catégories :" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:519 +msgid "Filed under:" +msgstr "Rangé sous :" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:544 +#, php-format +msgid "%s from %s" +msgstr "%s de %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "Voir dans le contexte" + +#: src/Content/Conversation/Factory/Channel.php:42 +msgid "For you" +msgstr "Pour vous" + +#: src/Content/Conversation/Factory/Channel.php:42 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "Publications de contacts qui interagissent avec vous" + +#: src/Content/Conversation/Factory/Channel.php:43 +msgid "What's Hot" +msgstr "Quoi de neuf" + +#: src/Content/Conversation/Factory/Channel.php:43 +msgid "Posts with a lot of interactions" +msgstr "Publications avec beaucoup d'interactions" + +#: src/Content/Conversation/Factory/Channel.php:44 +#, php-format +msgid "Posts in %s" +msgstr "Publications dans %s" + +#: src/Content/Conversation/Factory/Channel.php:45 +msgid "Posts from your followers that you don't follow" +msgstr "Publications de personnes abonnées qui vous ne suivez pas" + +#: src/Content/Conversation/Factory/Channel.php:46 +msgid "Sharers of sharers" +msgstr "Partageurs de partageurs" + +#: src/Content/Conversation/Factory/Channel.php:46 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "Publications de comptes suivis par des comptes que vous suivez" + +#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Module/Settings/Channels.php:137 src/Module/Settings/Channels.php:153 +msgid "Images" +msgstr "Images" + +#: src/Content/Conversation/Factory/Channel.php:47 +msgid "Posts with images" +msgstr "Publications avec images" + +#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:155 +msgid "Audio" +msgstr "Audio" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts with audio" +msgstr "Publications avec audio" + +#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Module/Settings/Channels.php:138 src/Module/Settings/Channels.php:154 +msgid "Videos" +msgstr "Vidéos" + +#: src/Content/Conversation/Factory/Channel.php:49 +msgid "Posts with videos" +msgstr "Publications avec vidéos" + +#: src/Content/Conversation/Factory/Community.php:43 +msgid "Local Community" +msgstr "Communauté locale" + +#: src/Content/Conversation/Factory/Community.php:43 +msgid "Posts from local users on this server" +msgstr "Conversations publiques démarrées par des utilisateurs locaux" + +#: src/Content/Conversation/Factory/Community.php:47 +#: src/Module/Settings/Channels.php:118 +msgid "Global Community" +msgstr "Communauté globale" + +#: src/Content/Conversation/Factory/Community.php:47 +msgid "Posts from users of the whole federated network" +msgstr "Conversations publiques provenant du réseau fédéré global" + +#: src/Content/Conversation/Factory/Network.php:38 +msgid "Latest Activity" +msgstr "Activité récente" + +#: src/Content/Conversation/Factory/Network.php:38 +msgid "Sort by latest activity" +msgstr "Trier par activité récente" + +#: src/Content/Conversation/Factory/Network.php:39 +msgid "Latest Posts" +msgstr "Dernières publications" + +#: src/Content/Conversation/Factory/Network.php:39 +msgid "Sort by post received date" +msgstr "Trier par date de réception" + +#: src/Content/Conversation/Factory/Network.php:40 +msgid "Latest Creation" +msgstr "Dernière création" + +#: src/Content/Conversation/Factory/Network.php:40 +msgid "Sort by post creation date" +msgstr "Trier par date de création des publications" + +#: src/Content/Conversation/Factory/Network.php:41 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "Personnel" + +#: src/Content/Conversation/Factory/Network.php:41 +msgid "Posts that mention or involve you" +msgstr "Publications qui vous concernent" + +#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:381 +msgid "Starred" +msgstr "Mis en avant" + +#: src/Content/Conversation/Factory/Network.php:42 +msgid "Favourite Posts" +msgstr "Publications favorites" + #: src/Content/Feature.php:96 msgid "General Features" msgstr "Fonctions générales" @@ -2235,13 +1701,13 @@ msgid "Post Composition Features" msgstr "Caractéristiques de composition de publication" #: src/Content/Feature.php:105 -msgid "Auto-mention Forums" -msgstr "Mentionner automatiquement les Forums" +msgid "Auto-mention Groups" +msgstr "Mentionner automatiquement les groupes" #: src/Content/Feature.php:105 msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Ajoute/retire une mention quand une page forum est sélectionnée/désélectionnée lors du choix des destinataires d'une publication." +"Add/remove mention when a group page is selected/deselected in ACL window." +msgstr "Ajoute/retire une mention quand une page de groupe est sélectionnée/désélectionnée lors du choix des destinataires d'une publication." #: src/Content/Feature.php:106 msgid "Explicit Mentions" @@ -2281,20 +1747,20 @@ msgid "Advanced Profile Settings" msgstr "Paramètres Avancés du Profil" #: src/Content/Feature.php:119 -msgid "List Forums" -msgstr "Liste des forums" +msgid "List Groups" +msgstr "Liste des groupes" #: src/Content/Feature.php:119 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Montrer les forums communautaires aux visiteurs sur la Page de profil avancé" +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "Montrer les groupes publics aux visiteurs sur la Page de profil avancé" #: src/Content/Feature.php:120 msgid "Tag Cloud" -msgstr "Nuage de tags" +msgstr "Nuage de tag" #: src/Content/Feature.php:120 msgid "Provide a personal tag cloud on your profile page" -msgstr "Affiche un nuage de tags personnels sur votre profil." +msgstr "Affiche un nuage de tag personnel sur votre profil." #: src/Content/Feature.php:121 msgid "Display Membership Date" @@ -2304,342 +1770,433 @@ msgstr "Afficher l'ancienneté" msgid "Display membership date in profile" msgstr "Affiche la date de création du compte sur votre profile" -#: src/Content/ForumManager.php:151 src/Content/Nav.php:242 -#: src/Content/Text/HTML.php:903 src/Content/Widget.php:524 -msgid "Forums" -msgstr "Forums" +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "Paramètres avancés du calendrier" -#: src/Content/ForumManager.php:153 -msgid "External link to forum" -msgstr "Lien sortant vers le forum" +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "Autoriser un accès anonyme à votre calendrier" -#: src/Content/ForumManager.php:156 src/Content/Widget.php:503 +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "Autorise les visiteurs anonymes à consulter votre calendrier et vos évènements publics. Les anniversaires de vos contacts demeurent privés." + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1272 +msgid "Groups" +msgstr "Groupes" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "Lien externe vers le groupe" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 msgid "show less" msgstr "voir moins" -#: src/Content/ForumManager.php:157 src/Content/Widget.php:405 -#: src/Content/Widget.php:504 +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 msgid "show more" msgstr "montrer plus" -#: src/Content/Item.php:291 src/Model/Item.php:2853 +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "Créer un nouveau groupe" + +#: src/Content/Item.php:331 src/Model/Item.php:3080 msgid "event" msgstr "évènement" -#: src/Content/Item.php:383 view/theme/frio/theme.php:266 +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "le statut" + +#: src/Content/Item.php:340 src/Model/Item.php:3082 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "photo" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s a mentionné %3$s de %2$s avec %4$s" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 msgid "Follow Thread" msgstr "Suivre le fil" -#: src/Content/Item.php:384 src/Model/Contact.php:1174 +#: src/Content/Item.php:429 src/Model/Contact.php:1242 msgid "View Status" msgstr "Voir les statuts" -#: src/Content/Item.php:385 src/Content/Item.php:403 -#: src/Model/Contact.php:1112 src/Model/Contact.php:1166 -#: src/Model/Contact.php:1175 src/Module/Directory.php:158 -#: src/Module/Settings/Profile/Index.php:225 +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1233 +#: src/Model/Contact.php:1243 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Voir le profil" -#: src/Content/Item.php:386 src/Model/Contact.php:1176 +#: src/Content/Item.php:431 src/Model/Contact.php:1244 msgid "View Photos" msgstr "Voir les photos" -#: src/Content/Item.php:387 src/Model/Contact.php:1167 -#: src/Model/Contact.php:1177 +#: src/Content/Item.php:432 src/Model/Contact.php:1211 +#: src/Model/Profile.php:464 msgid "Network Posts" msgstr "Publications du réseau" -#: src/Content/Item.php:388 src/Model/Contact.php:1168 -#: src/Model/Contact.php:1178 +#: src/Content/Item.php:433 src/Model/Contact.php:1235 +#: src/Model/Contact.php:1246 msgid "View Contact" msgstr "Voir Contact" -#: src/Content/Item.php:389 src/Model/Contact.php:1179 +#: src/Content/Item.php:434 src/Model/Contact.php:1247 msgid "Send PM" msgstr "Message privé" -#: src/Content/Item.php:390 src/Module/Admin/Blocklist/Contact.php:100 -#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 -#: src/Module/Contact.php:401 src/Module/Contact/Profile.php:348 -#: src/Module/Contact/Profile.php:449 +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 msgid "Block" msgstr "Bloquer" -#: src/Content/Item.php:391 src/Module/Contact.php:402 -#: src/Module/Contact/Profile.php:349 src/Module/Contact/Profile.php:457 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 -#: src/Module/Notifications/Notification.php:88 +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 msgid "Ignore" msgstr "Ignorer" -#: src/Content/Item.php:395 src/Object/Post.php:455 +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "Réduire" + +#: src/Content/Item.php:438 src/Object/Post.php:289 +#, php-format +msgid "Ignore %s server" +msgstr "Ignorer le serveur %s" + +#: src/Content/Item.php:442 src/Object/Post.php:491 msgid "Languages" msgstr "Langues" -#: src/Content/Nav.php:91 +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1236 src/Model/Contact.php:1248 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Se connecter/Suivre" + +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "Impossible de récupérer l'utilisateur." + +#: src/Content/Nav.php:121 msgid "Nothing new here" msgstr "Rien de neuf ici" -#: src/Content/Nav.php:95 src/Module/Special/HTTPException.php:50 +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 msgid "Go back" msgstr "Revenir" -#: src/Content/Nav.php:96 +#: src/Content/Nav.php:126 msgid "Clear notifications" msgstr "Effacer les notifications" -#: src/Content/Nav.php:97 src/Content/Text/HTML.php:890 -msgid "@name, !forum, #tags, content" -msgstr "@nom, !forum, #tags, contenu" +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" +msgstr "@nom, !groupe, #tags, contenu" -#: src/Content/Nav.php:186 src/Module/Security/Login.php:158 +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 msgid "Logout" msgstr "Se déconnecter" -#: src/Content/Nav.php:186 +#: src/Content/Nav.php:222 msgid "End this session" msgstr "Mettre fin à cette session" -#: src/Content/Nav.php:188 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:159 +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 msgid "Login" msgstr "Connexion" -#: src/Content/Nav.php:188 +#: src/Content/Nav.php:224 msgid "Sign in" msgstr "Se connecter" -#: src/Content/Nav.php:193 src/Module/BaseProfile.php:56 -#: src/Module/Contact.php:436 src/Module/Contact/Profile.php:380 -#: src/Module/Settings/TwoFactor/Index.php:120 view/theme/frio/theme.php:236 -msgid "Status" -msgstr "Statut" +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "Discussions" -#: src/Content/Nav.php:193 src/Content/Nav.php:276 -#: view/theme/frio/theme.php:236 -msgid "Your posts and conversations" -msgstr "Vos publications et conversations" +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "Discussions que vous avez commencées" -#: src/Content/Nav.php:194 src/Module/BaseProfile.php:48 -#: src/Module/BaseSettings.php:55 src/Module/Contact.php:460 -#: src/Module/Contact/Profile.php:382 src/Module/Profile/Profile.php:241 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 msgid "Profile" msgstr "Profil" -#: src/Content/Nav.php:194 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 msgid "Your profile page" msgstr "Votre page de profil" -#: src/Content/Nav.php:195 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Photos" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 msgid "Your photos" msgstr "Vos photos" -#: src/Content/Nav.php:196 src/Module/BaseProfile.php:72 -#: src/Module/BaseProfile.php:75 src/Module/Contact.php:452 -#: view/theme/frio/theme.php:239 +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 msgid "Media" msgstr "Média" -#: src/Content/Nav.php:196 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 msgid "Your postings with media" msgstr "Vos publications avec des médias" -#: src/Content/Nav.php:197 view/theme/frio/theme.php:240 -msgid "Your events" -msgstr "Vos évènements" +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:310 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "Calendrier" -#: src/Content/Nav.php:198 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "Votre calendrier" + +#: src/Content/Nav.php:234 msgid "Personal notes" msgstr "Notes personnelles" -#: src/Content/Nav.php:198 +#: src/Content/Nav.php:234 msgid "Your personal notes" msgstr "Vos notes personnelles" -#: src/Content/Nav.php:215 src/Content/Nav.php:276 +#: src/Content/Nav.php:251 src/Content/Nav.php:308 msgid "Home" msgstr "Profil" -#: src/Content/Nav.php:219 src/Module/Register.php:168 +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "Page d'accueil" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 #: src/Module/Security/Login.php:124 msgid "Register" msgstr "S'inscrire" -#: src/Content/Nav.php:219 +#: src/Content/Nav.php:255 msgid "Create an account" msgstr "Créer un compte" -#: src/Content/Nav.php:225 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 -#: src/Module/Settings/TwoFactor/Index.php:119 -#: src/Module/Settings/TwoFactor/Recovery.php:105 -#: src/Module/Settings/TwoFactor/Verify.php:145 view/theme/vier/theme.php:226 +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 msgid "Help" msgstr "Aide" -#: src/Content/Nav.php:225 +#: src/Content/Nav.php:261 msgid "Help and documentation" msgstr "Aide et documentation" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:265 msgid "Apps" msgstr "Applications" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:265 msgid "Addon applications, utilities, games" msgstr "Applications supplémentaires, utilitaires, jeux" -#: src/Content/Nav.php:233 src/Content/Text/HTML.php:888 -#: src/Module/Admin/Logs/View.php:87 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 msgid "Search" msgstr "Recherche" -#: src/Content/Nav.php:233 +#: src/Content/Nav.php:269 msgid "Search site content" msgstr "Rechercher dans le contenu du site" -#: src/Content/Nav.php:236 src/Content/Text/HTML.php:897 +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 msgid "Full Text" msgstr "Texte Entier" -#: src/Content/Nav.php:237 src/Content/Text/HTML.php:898 +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 #: src/Content/Widget/TagCloud.php:68 msgid "Tags" msgstr "Tags" -#: src/Content/Nav.php:238 src/Content/Nav.php:297 -#: src/Content/Text/HTML.php:899 src/Module/BaseProfile.php:125 -#: src/Module/BaseProfile.php:128 src/Module/Contact.php:373 -#: src/Module/Contact.php:467 view/theme/frio/theme.php:247 +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 msgid "Contacts" msgstr "Contacts" -#: src/Content/Nav.php:257 +#: src/Content/Nav.php:289 msgid "Community" msgstr "Communauté" -#: src/Content/Nav.php:257 +#: src/Content/Nav.php:289 msgid "Conversations on this and other servers" msgstr "Flux public global" -#: src/Content/Nav.php:261 src/Module/BaseProfile.php:87 -#: src/Module/BaseProfile.php:98 view/theme/frio/theme.php:244 -msgid "Events and Calendar" -msgstr "Évènements et agenda" - -#: src/Content/Nav.php:264 +#: src/Content/Nav.php:296 msgid "Directory" msgstr "Annuaire" -#: src/Content/Nav.php:264 +#: src/Content/Nav.php:296 msgid "People directory" msgstr "Annuaire des utilisateurs" -#: src/Content/Nav.php:266 src/Module/BaseAdmin.php:88 +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 msgid "Information" msgstr "Information" -#: src/Content/Nav.php:266 +#: src/Content/Nav.php:298 msgid "Information about this friendica instance" msgstr "Information au sujet de cette instance de friendica" -#: src/Content/Nav.php:269 src/Module/Admin/Tos.php:76 -#: src/Module/BaseAdmin.php:99 src/Module/Register.php:176 -#: src/Module/Tos.php:87 +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 msgid "Terms of Service" msgstr "Conditions de service" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:301 msgid "Terms of Service of this Friendica instance" msgstr "Conditions d'Utilisation de ce serveur Friendica" -#: src/Content/Nav.php:274 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Network" msgstr "Réseau" -#: src/Content/Nav.php:274 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Conversations from your friends" msgstr "Flux de conversations" -#: src/Content/Nav.php:280 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "Vos publications et conversations" + +#: src/Content/Nav.php:312 msgid "Introductions" msgstr "Introductions" -#: src/Content/Nav.php:280 +#: src/Content/Nav.php:312 msgid "Friend Requests" msgstr "Demande d'abonnement" -#: src/Content/Nav.php:281 src/Module/BaseNotifications.php:148 -#: src/Module/Notifications/Introductions.php:73 +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 msgid "Notifications" msgstr "Notifications" -#: src/Content/Nav.php:282 +#: src/Content/Nav.php:314 msgid "See all notifications" msgstr "Voir toutes les notifications" -#: src/Content/Nav.php:283 +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Marquer comme vu" + +#: src/Content/Nav.php:315 msgid "Mark all system notifications as seen" msgstr "Marquer toutes les notifications système comme vues" -#: src/Content/Nav.php:286 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Private mail" msgstr "Messages privés" -#: src/Content/Nav.php:287 +#: src/Content/Nav.php:319 msgid "Inbox" msgstr "Messages entrants" -#: src/Content/Nav.php:288 +#: src/Content/Nav.php:320 msgid "Outbox" msgstr "Messages sortants" -#: src/Content/Nav.php:292 +#: src/Content/Nav.php:324 msgid "Accounts" msgstr "Comptes" -#: src/Content/Nav.php:292 +#: src/Content/Nav.php:324 msgid "Manage other pages" msgstr "Gérer les autres pages" -#: src/Content/Nav.php:295 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:122 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 msgid "Settings" msgstr "Réglages" -#: src/Content/Nav.php:295 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 msgid "Account settings" msgstr "Compte" -#: src/Content/Nav.php:297 view/theme/frio/theme.php:247 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 msgid "Manage/edit friends and contacts" msgstr "Gestion des contacts" -#: src/Content/Nav.php:302 src/Module/BaseAdmin.php:129 +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 msgid "Admin" msgstr "Admin" -#: src/Content/Nav.php:302 +#: src/Content/Nav.php:334 msgid "Site setup and configuration" msgstr "Démarrage et configuration du site" -#: src/Content/Nav.php:305 +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "Modération" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "Modération du contenu et des utilisateurs" + +#: src/Content/Nav.php:338 msgid "Navigation" msgstr "Navigation" -#: src/Content/Nav.php:305 +#: src/Content/Nav.php:338 msgid "Site map" msgstr "Carte du site" -#: src/Content/OEmbed.php:317 +#: src/Content/OEmbed.php:316 msgid "Embedding disabled" msgstr "Incorporation désactivée" -#: src/Content/OEmbed.php:441 +#: src/Content/OEmbed.php:440 msgid "Embedded content" msgstr "Contenu incorporé" @@ -2659,51 +2216,51 @@ msgstr "suivant" msgid "last" msgstr "dernier" -#: src/Content/Text/BBCode.php:1002 src/Content/Text/BBCode.php:1883 -#: src/Content/Text/BBCode.php:1884 +#: src/Content/Text/BBCode.php:751 src/Content/Text/BBCode.php:1692 +#: src/Content/Text/BBCode.php:1693 msgid "Image/photo" msgstr "Image/photo" -#: src/Content/Text/BBCode.php:1238 +#: src/Content/Text/BBCode.php:969 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1263 src/Model/Item.php:3456 -#: src/Model/Item.php:3462 src/Model/Item.php:3463 +#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3813 +#: src/Model/Item.php:3819 src/Model/Item.php:3820 msgid "Link to source" msgstr "Lien vers la source" -#: src/Content/Text/BBCode.php:1801 src/Content/Text/HTML.php:940 +#: src/Content/Text/BBCode.php:1599 src/Content/Text/HTML.php:904 msgid "Click to open/close" msgstr "Cliquer pour ouvrir/fermer" -#: src/Content/Text/BBCode.php:1832 +#: src/Content/Text/BBCode.php:1632 msgid "$1 wrote:" msgstr "$1 a écrit :" -#: src/Content/Text/BBCode.php:1888 src/Content/Text/BBCode.php:1889 +#: src/Content/Text/BBCode.php:1697 src/Content/Text/BBCode.php:1698 msgid "Encrypted content" msgstr "Contenu chiffré" -#: src/Content/Text/BBCode.php:2109 +#: src/Content/Text/BBCode.php:1953 msgid "Invalid source protocol" msgstr "Protocole d'image invalide" -#: src/Content/Text/BBCode.php:2124 +#: src/Content/Text/BBCode.php:1972 msgid "Invalid link protocol" msgstr "Protocole de lien invalide" -#: src/Content/Text/HTML.php:805 +#: src/Content/Text/HTML.php:782 msgid "Loading more entries..." msgstr "Chargement de résultats supplémentaires..." -#: src/Content/Text/HTML.php:806 +#: src/Content/Text/HTML.php:783 msgid "The end" msgstr "Fin" -#: src/Content/Text/HTML.php:882 src/Content/Widget/VCard.php:109 -#: src/Model/Profile.php:460 +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:128 +#: src/Model/Profile.php:473 src/Module/Contact/Profile.php:471 msgid "Follow" msgstr "S'abonner" @@ -2731,83 +2288,92 @@ msgstr[0] "%d invitation disponible" msgstr[1] "%d invitations disponibles" msgstr[2] "%d invitations disponibles" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:179 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 msgid "Find People" msgstr "Trouver des personnes" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:180 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 msgid "Enter name or interest" msgstr "Entrez un nom ou un centre d'intérêt" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:182 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Exemples : Robert Morgenstein, Pêche" -#: src/Content/Widget.php:82 src/Module/Contact.php:394 -#: src/Module/Directory.php:97 view/theme/vier/theme.php:183 +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 msgid "Find" msgstr "Trouver" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:185 +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "Suggestions d'abonnement" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 msgid "Similar Interests" msgstr "Intérêts similaires" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:186 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 msgid "Random Profile" msgstr "Profil au hasard" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:187 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 msgid "Invite Friends" msgstr "Inviter des contacts" -#: src/Content/Widget.php:87 src/Module/Directory.php:89 -#: view/theme/vier/theme.php:188 +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 msgid "Global Directory" msgstr "Annuaire global" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:190 +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 msgid "Local Directory" msgstr "Annuaire local" -#: src/Content/Widget.php:211 src/Model/Group.php:587 -#: src/Module/Contact.php:357 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "Groupes" +#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "Cercles" -#: src/Content/Widget.php:213 +#: src/Content/Widget.php:217 msgid "Everyone" msgstr "Tous les groupes" -#: src/Content/Widget.php:242 +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "Aucune relation" + +#: src/Content/Widget.php:247 msgid "Relationships" msgstr "Relations" -#: src/Content/Widget.php:244 src/Module/Contact.php:309 -#: src/Module/Group.php:293 +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 msgid "All Contacts" msgstr "Tous les contacts" -#: src/Content/Widget.php:283 +#: src/Content/Widget.php:288 msgid "Protocols" msgstr "Protocoles" -#: src/Content/Widget.php:285 +#: src/Content/Widget.php:290 msgid "All Protocols" msgstr "Tous les protocoles" -#: src/Content/Widget.php:313 +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "Dossiers sauvegardés" -#: src/Content/Widget.php:315 src/Content/Widget.php:346 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "Tout" -#: src/Content/Widget.php:344 +#: src/Content/Widget.php:349 msgid "Categories" msgstr "Catégories" -#: src/Content/Widget.php:401 +#: src/Content/Widget.php:406 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2815,39 +2381,48 @@ msgstr[0] "%d contact en commun" msgstr[1] "%d contacts en commun" msgstr[2] "%d contacts en commun" -#: src/Content/Widget.php:497 +#: src/Content/Widget.php:506 msgid "Archives" msgstr "Archives" -#: src/Content/Widget.php:521 +#: src/Content/Widget.php:514 +msgid "On this date" +msgstr "A cette date" + +#: src/Content/Widget.php:534 msgid "Persons" msgstr "Personnes" -#: src/Content/Widget.php:522 +#: src/Content/Widget.php:535 msgid "Organisations" msgstr "Organisations" -#: src/Content/Widget.php:523 src/Model/Contact.php:1605 +#: src/Content/Widget.php:536 src/Model/Contact.php:1714 msgid "News" msgstr "Nouvelles" -#: src/Content/Widget.php:527 src/Module/Settings/Account.php:456 +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 msgid "Account Types" msgstr "Type de compte" -#: src/Content/Widget.php:528 src/Module/Admin/BaseUsers.php:51 +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "Tout" -#: src/Content/Widget/CalendarExport.php:54 +#: src/Content/Widget.php:591 src/Module/BaseSettings.php:125 +#: src/Module/Settings/Channels.php:157 src/Module/Settings/Display.php:309 +msgid "Channels" +msgstr "Chaînes" + +#: src/Content/Widget/CalendarExport.php:56 msgid "Export" msgstr "Exporter" -#: src/Content/Widget/CalendarExport.php:55 +#: src/Content/Widget/CalendarExport.php:57 msgid "Export calendar as ical" msgstr "Exporter au format iCal" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:58 msgid "Export calendar as csv" msgstr "Exporter au format CSV" @@ -2855,7 +2430,7 @@ msgstr "Exporter au format CSV" msgid "No contacts" msgstr "Aucun contact" -#: src/Content/Widget/ContactBlock.php:108 +#: src/Content/Widget/ContactBlock.php:110 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -2863,7 +2438,7 @@ msgstr[0] "%d contact" msgstr[1] "%d contacts" msgstr[2] "%d contacts" -#: src/Content/Widget/ContactBlock.php:125 +#: src/Content/Widget/ContactBlock.php:127 msgid "View Contacts" msgstr "Voir les contacts" @@ -2875,7 +2450,7 @@ msgstr "Retirer le terme" msgid "Saved Searches" msgstr "Recherches" -#: src/Content/Widget/TrendingTags.php:51 +#: src/Content/Widget/TrendingTags.php:52 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" @@ -2883,58 +2458,83 @@ msgstr[0] "Tendances (dernière %d heure)" msgstr[1] "Tendances (dernières %d heures)" msgstr[2] "Tendances (dernières %d heures)" -#: src/Content/Widget/TrendingTags.php:52 +#: src/Content/Widget/TrendingTags.php:53 msgid "More Trending Tags" -msgstr "Plus de tedances" +msgstr "Plus de tendances" -#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:379 -#: src/Module/Contact/Profile.php:371 src/Module/Profile/Profile.php:176 +#: src/Content/Widget/VCard.php:107 src/Model/Contact.php:1204 +#: src/Model/Profile.php:457 +msgid "Post to group" +msgstr "Publier sur le groupe" + +#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1209 +#: src/Model/Profile.php:462 src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "Mention" + +#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 msgid "XMPP:" msgstr "XMPP" -#: src/Content/Widget/VCard.php:103 src/Model/Profile.php:380 -#: src/Module/Contact/Profile.php:373 src/Module/Profile/Profile.php:180 +#: src/Content/Widget/VCard.php:122 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 msgid "Matrix:" msgstr "Matrix :" -#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:472 -#: src/Module/Notifications/Introductions.php:199 +#: src/Content/Widget/VCard.php:123 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Localisation :" + +#: src/Content/Widget/VCard.php:126 src/Model/Profile.php:486 +#: src/Module/Notifications/Introductions.php:201 msgid "Network:" msgstr "Réseau" -#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:462 +#: src/Content/Widget/VCard.php:130 src/Model/Contact.php:1237 +#: src/Model/Contact.php:1249 src/Model/Profile.php:475 +#: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Se désabonner" -#: src/Core/ACL.php:165 src/Module/Profile/Profile.php:242 +#: src/Content/Widget/VCard.php:136 src/Model/Contact.php:1206 +#: src/Model/Profile.php:459 +msgid "View group" +msgstr "Voir le groupe" + +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 msgid "Yourself" msgstr "Vous-même" -#: src/Core/ACL.php:201 src/Module/PermissionTooltip.php:128 -#: src/Module/PermissionTooltip.php:150 +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 msgid "Mutuals" msgstr "Mutuels" -#: src/Core/ACL.php:293 +#: src/Core/ACL.php:294 msgid "Post to Email" msgstr "Publier aux courriels" -#: src/Core/ACL.php:320 src/Module/PermissionTooltip.php:85 -#: src/Module/PermissionTooltip.php:197 +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 msgid "Public" msgstr "Public" -#: src/Core/ACL.php:321 +#: src/Core/ACL.php:322 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "Ce contenu sera visible par vos abonnés, sur votre profile, dans les flux communautaires et par quiconque ayant son adresse Web." -#: src/Core/ACL.php:322 src/Module/PermissionTooltip.php:93 +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 msgid "Limited/Private" msgstr "Limité/Privé" -#: src/Core/ACL.php:323 +#: src/Core/ACL.php:324 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 " @@ -2942,40 +2542,54 @@ msgid "" msgstr "Ce contenu sera visible uniquement par les groupes et contacts listés dans le premier champ, sauf par les groupes et contacts listés dans le second champ. Il ne sera pas visible publiquement." #: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." +msgstr "Commencer à écrire le nom d'un contact ou d'un cercle pour afficher une liste filtrée. Vous pouvez aussi mentionner les groupes spéciaux \"Followers\" et \"Mutuels\"." + +#: src/Core/ACL.php:325 msgid "Show to:" msgstr "Visible par :" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:326 msgid "Except to:" msgstr "Masquer à :" -#: src/Core/ACL.php:328 +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "CC: adresses de courriel" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Exemple : bob@exemple.com, mary@exemple.com" + +#: src/Core/ACL.php:329 msgid "Connectors" msgstr "Connecteurs" -#: src/Core/Installer.php:183 +#: src/Core/Installer.php:180 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 "Le fichier de configuration \"config/local.config.php\" n'a pas pu être créé. Veuillez utiliser le texte fourni pour créer manuellement ce fichier sur votre serveur." -#: src/Core/Installer.php:200 +#: src/Core/Installer.php:197 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql." -#: src/Core/Installer.php:201 src/Module/Install.php:213 -#: src/Module/Install.php:372 +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "Référez-vous au fichier \"doc/INSTALL.md\"." -#: src/Core/Installer.php:262 +#: src/Core/Installer.php:259 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web." -#: src/Core/Installer.php:263 +#: src/Core/Installer.php:260 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 "Si vous n'avez pas l'éxecutable PHP en ligne de commande sur votre serveur, vous ne pourrez pas activer les tâches de fond. Voir \"Setup the worker\" (en anglais)" -#: src/Core/Installer.php:268 +#: src/Core/Installer.php:265 msgid "PHP executable path" msgstr "Chemin vers l'exécutable de PHP" -#: src/Core/Installer.php:268 +#: src/Core/Installer.php:265 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation." -#: src/Core/Installer.php:273 +#: src/Core/Installer.php:270 msgid "Command line PHP" msgstr "Version \"ligne de commande\" de PHP" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:279 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)" -#: src/Core/Installer.php:283 +#: src/Core/Installer.php:280 msgid "Found PHP version: " msgstr "Version de PHP :" -#: src/Core/Installer.php:285 +#: src/Core/Installer.php:282 msgid "PHP cli binary" msgstr "PHP cli binary" -#: src/Core/Installer.php:298 +#: src/Core/Installer.php:295 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé." -#: src/Core/Installer.php:299 +#: src/Core/Installer.php:296 msgid "This is required for message delivery to work." msgstr "Ceci est requis pour que la livraison des messages fonctionne." -#: src/Core/Installer.php:304 +#: src/Core/Installer.php:301 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:336 +#: src/Core/Installer.php:333 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement" -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:334 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:340 +#: src/Core/Installer.php:337 msgid "Generate encryption keys" msgstr "Générer les clés de chiffrement" -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:388 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Erreur : Le module \"rewrite\" du serveur web Apache est requis mais pas installé." -#: src/Core/Installer.php:397 +#: src/Core/Installer.php:392 msgid "Apache mod_rewrite module" msgstr "Module mod_rewrite Apache" -#: src/Core/Installer.php:403 +#: src/Core/Installer.php:398 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Erreur : Les modules PHP PDO ou MySQLi sont requis mais absents de votre serveur." -#: src/Core/Installer.php:408 +#: src/Core/Installer.php:402 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Erreur : Le pilote MySQL pour PDO n'est pas installé sur votre serveur." -#: src/Core/Installer.php:412 +#: src/Core/Installer.php:405 msgid "PDO or MySQLi PHP module" msgstr "Module PHP PDO ou MySQLi" -#: src/Core/Installer.php:420 +#: src/Core/Installer.php:411 +msgid "Error: The IntlChar module is not installed." +msgstr "Erreur : Le module IntlChar n'est pas installé." + +#: src/Core/Installer.php:414 +msgid "IntlChar PHP module" +msgstr "Module PHP IntlChar" + +#: src/Core/Installer.php:422 msgid "Error, XML PHP module required but not installed." msgstr "Erreur : le module PHP XML requis est absent." -#: src/Core/Installer.php:424 +#: src/Core/Installer.php:426 msgid "XML PHP module" msgstr "Module PHP XML" -#: src/Core/Installer.php:427 +#: src/Core/Installer.php:429 msgid "libCurl PHP module" msgstr "Module libCurl de PHP" -#: src/Core/Installer.php:428 +#: src/Core/Installer.php:430 msgid "Error: libCURL PHP module required but not installed." msgstr "Erreur : Le module PHP \"libCURL\" est requis mais pas installé." -#: src/Core/Installer.php:434 +#: src/Core/Installer.php:436 msgid "GD graphics PHP module" msgstr "Module GD (graphiques) de PHP" -#: src/Core/Installer.php:435 +#: src/Core/Installer.php:437 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Erreur : Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé." -#: src/Core/Installer.php:441 +#: src/Core/Installer.php:443 msgid "OpenSSL PHP module" msgstr "Module OpenSSL de PHP" -#: src/Core/Installer.php:442 +#: src/Core/Installer.php:444 msgid "Error: openssl PHP module required but not installed." msgstr "Erreur : Le module PHP \"openssl\" est requis mais pas installé." -#: src/Core/Installer.php:448 +#: src/Core/Installer.php:450 msgid "mb_string PHP module" msgstr "Module mb_string de PHP" -#: src/Core/Installer.php:449 +#: src/Core/Installer.php:451 msgid "Error: mb_string PHP module required but not installed." msgstr "Erreur : le module PHP mb_string est requis mais pas installé." -#: src/Core/Installer.php:455 +#: src/Core/Installer.php:457 msgid "iconv PHP module" msgstr "Module PHP iconv" -#: src/Core/Installer.php:456 +#: src/Core/Installer.php:458 msgid "Error: iconv PHP module required but not installed." msgstr "Erreur : Le module PHP iconv requis est absent." -#: src/Core/Installer.php:462 +#: src/Core/Installer.php:464 msgid "POSIX PHP module" msgstr "Module PHP POSIX" -#: src/Core/Installer.php:463 +#: src/Core/Installer.php:465 msgid "Error: POSIX PHP module required but not installed." msgstr "Erreur : Le module PHP POSIX est requis mais absent sur votre serveur." -#: src/Core/Installer.php:469 +#: src/Core/Installer.php:471 msgid "Program execution functions" msgstr "Fonctions d'exécution de programmes" -#: src/Core/Installer.php:470 +#: src/Core/Installer.php:472 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "Erreur : Les functions d'exécution de programmes (proc_open) sont nécessaires mais manquantes." -#: src/Core/Installer.php:476 +#: src/Core/Installer.php:478 msgid "JSON PHP module" msgstr "Module PHP JSON" -#: src/Core/Installer.php:477 +#: src/Core/Installer.php:479 msgid "Error: JSON PHP module required but not installed." msgstr "Erreur : Le module PHP JSON est requis mais absent sur votre serveur." -#: src/Core/Installer.php:483 +#: src/Core/Installer.php:485 msgid "File Information PHP module" msgstr "Module PHP fileinfo" -#: src/Core/Installer.php:484 +#: src/Core/Installer.php:486 msgid "Error: File Information PHP module required but not installed." msgstr "Erreur : Le module PHP fileinfo requis est absent." -#: src/Core/Installer.php:490 +#: src/Core/Installer.php:492 msgid "GNU Multiple Precision PHP module" msgstr "Module PHP de Précision Multiple GNU" -#: src/Core/Installer.php:491 +#: src/Core/Installer.php:493 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "Erreur : le module PHP de Précision Multiple GNU est requis mais il n'est pas installé." -#: src/Core/Installer.php:514 +#: src/Core/Installer.php:516 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 "L'installeur web n'est pas en mesure de créer le fichier \"local.config.php\" dans le répertoire \"config\" de votre serveur." -#: src/Core/Installer.php:515 +#: src/Core/Installer.php:517 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 "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez." -#: src/Core/Installer.php:516 +#: src/Core/Installer.php:518 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 "À la fin de la procédure d'installation nous vous fournirons le contenu du fichier \"local.config.php\" à créer manuellement dans le sous-répertoire \"config\" de votre répertoire Friendica sur votre serveur." -#: src/Core/Installer.php:517 +#: src/Core/Installer.php:519 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de consulter le fichier \"doc/INSTALL.md\"." -#: src/Core/Installer.php:520 +#: src/Core/Installer.php:522 msgid "config/local.config.php is writable" msgstr "Le fichier \"config/local.config.php\" peut être créé." -#: src/Core/Installer.php:540 +#: src/Core/Installer.php:542 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu." -#: src/Core/Installer.php:541 +#: src/Core/Installer.php:543 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 "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica." -#: src/Core/Installer.php:542 +#: src/Core/Installer.php:544 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier." -#: src/Core/Installer.php:543 +#: src/Core/Installer.php:545 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 "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient." -#: src/Core/Installer.php:546 +#: src/Core/Installer.php:548 msgid "view/smarty3 is writable" msgstr "view/smarty3 est autorisé à l écriture" -#: src/Core/Installer.php:574 +#: src/Core/Installer.php:576 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "La réécriture d'URL ne semble pas fonctionner, veuillez vous assurer que vous avez créé un fichier \".htaccess\" à partir du fichier \".htaccess-dist\"." -#: src/Core/Installer.php:575 +#: src/Core/Installer.php:577 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "Dans certaines situations (comme une installation dans un container), vous pouvez ignorer cette erreur." -#: src/Core/Installer.php:577 +#: src/Core/Installer.php:579 msgid "Error message from Curl when fetching" msgstr "Message d'erreur de Curl lors du test de réécriture d'URL" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:585 msgid "Url rewrite is working" msgstr "La réécriture d'URL fonctionne." -#: src/Core/Installer.php:612 +#: src/Core/Installer.php:614 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "La détection de TLS pour sécuriser la communication entre le navigateur et votre nouveau serveur Friendica a échoué." -#: src/Core/Installer.php:613 +#: src/Core/Installer.php:615 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "Nous vous recommandons fortement de n'utiliser Friendica qu'avec une connection sécurisée étant donné que des informations sensibles comme des mots de passe seront échangés." -#: src/Core/Installer.php:614 +#: src/Core/Installer.php:616 msgid "Please ensure that the connection to the server is secure." msgstr "Veuillez vous assurer que la connection au serveur est sécurisée." -#: src/Core/Installer.php:615 +#: src/Core/Installer.php:617 msgid "No TLS detected" msgstr "Pas de TLS détecté" -#: src/Core/Installer.php:617 +#: src/Core/Installer.php:619 msgid "TLS detected" msgstr "TLS détecté" -#: src/Core/Installer.php:644 +#: src/Core/Installer.php:646 msgid "ImageMagick PHP extension is not installed" msgstr "L'extension PHP ImageMagick n'est pas installée" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:648 msgid "ImageMagick PHP extension is installed" msgstr "L’extension PHP ImageMagick est installée" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:650 msgid "ImageMagick supports GIF" msgstr "ImageMagick supporte le format GIF" -#: src/Core/Installer.php:670 +#: src/Core/Installer.php:672 msgid "Database already in use." msgstr "Base de données déjà en cours d'utilisation." -#: src/Core/Installer.php:675 +#: src/Core/Installer.php:677 msgid "Could not connect to database." msgstr "Impossible de se connecter à la base." -#: src/Core/L10n.php:403 src/Model/Event.php:428 -#: src/Module/Settings/Display.php:184 +#: src/Core/L10n.php:507 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:278 msgid "Monday" msgstr "Lundi" -#: src/Core/L10n.php:403 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:185 +#: src/Core/L10n.php:507 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:279 msgid "Tuesday" msgstr "Mardi" -#: src/Core/L10n.php:403 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:186 +#: src/Core/L10n.php:507 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:280 msgid "Wednesday" msgstr "Mercredi" -#: src/Core/L10n.php:403 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:187 +#: src/Core/L10n.php:507 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:281 msgid "Thursday" msgstr "Jeudi" -#: src/Core/L10n.php:403 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:188 +#: src/Core/L10n.php:507 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:282 msgid "Friday" msgstr "Vendredi" -#: src/Core/L10n.php:403 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:189 +#: src/Core/L10n.php:507 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:283 msgid "Saturday" msgstr "Samedi" -#: src/Core/L10n.php:403 src/Model/Event.php:427 -#: src/Module/Settings/Display.php:183 +#: src/Core/L10n.php:507 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:277 msgid "Sunday" msgstr "Dimanche" -#: src/Core/L10n.php:407 src/Model/Event.php:448 +#: src/Core/L10n.php:511 src/Model/Event.php:450 msgid "January" msgstr "Janvier" -#: src/Core/L10n.php:407 src/Model/Event.php:449 +#: src/Core/L10n.php:511 src/Model/Event.php:451 msgid "February" msgstr "Février" -#: src/Core/L10n.php:407 src/Model/Event.php:450 +#: src/Core/L10n.php:511 src/Model/Event.php:452 msgid "March" msgstr "Mars" -#: src/Core/L10n.php:407 src/Model/Event.php:451 +#: src/Core/L10n.php:511 src/Model/Event.php:453 msgid "April" msgstr "Avril" -#: src/Core/L10n.php:407 src/Core/L10n.php:426 src/Model/Event.php:439 +#: src/Core/L10n.php:511 src/Core/L10n.php:530 src/Model/Event.php:441 msgid "May" msgstr "Mai" -#: src/Core/L10n.php:407 src/Model/Event.php:452 +#: src/Core/L10n.php:511 src/Model/Event.php:454 msgid "June" msgstr "Juin" -#: src/Core/L10n.php:407 src/Model/Event.php:453 +#: src/Core/L10n.php:511 src/Model/Event.php:455 msgid "July" msgstr "Juillet" -#: src/Core/L10n.php:407 src/Model/Event.php:454 +#: src/Core/L10n.php:511 src/Model/Event.php:456 msgid "August" msgstr "Août" -#: src/Core/L10n.php:407 src/Model/Event.php:455 +#: src/Core/L10n.php:511 src/Model/Event.php:457 msgid "September" msgstr "Septembre" -#: src/Core/L10n.php:407 src/Model/Event.php:456 +#: src/Core/L10n.php:511 src/Model/Event.php:458 msgid "October" msgstr "Octobre" -#: src/Core/L10n.php:407 src/Model/Event.php:457 +#: src/Core/L10n.php:511 src/Model/Event.php:459 msgid "November" msgstr "Novembre" -#: src/Core/L10n.php:407 src/Model/Event.php:458 +#: src/Core/L10n.php:511 src/Model/Event.php:460 msgid "December" msgstr "Décembre" -#: src/Core/L10n.php:422 src/Model/Event.php:420 +#: src/Core/L10n.php:526 src/Model/Event.php:422 msgid "Mon" msgstr "Lun" -#: src/Core/L10n.php:422 src/Model/Event.php:421 +#: src/Core/L10n.php:526 src/Model/Event.php:423 msgid "Tue" msgstr "Mar" -#: src/Core/L10n.php:422 src/Model/Event.php:422 +#: src/Core/L10n.php:526 src/Model/Event.php:424 msgid "Wed" msgstr "Mer" -#: src/Core/L10n.php:422 src/Model/Event.php:423 +#: src/Core/L10n.php:526 src/Model/Event.php:425 msgid "Thu" msgstr "Jeu" -#: src/Core/L10n.php:422 src/Model/Event.php:424 +#: src/Core/L10n.php:526 src/Model/Event.php:426 msgid "Fri" msgstr "Ven" -#: src/Core/L10n.php:422 src/Model/Event.php:425 +#: src/Core/L10n.php:526 src/Model/Event.php:427 msgid "Sat" msgstr "Sam" -#: src/Core/L10n.php:422 src/Model/Event.php:419 +#: src/Core/L10n.php:526 src/Model/Event.php:421 msgid "Sun" msgstr "Dim" -#: src/Core/L10n.php:426 src/Model/Event.php:435 +#: src/Core/L10n.php:530 src/Model/Event.php:437 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:426 src/Model/Event.php:436 +#: src/Core/L10n.php:530 src/Model/Event.php:438 msgid "Feb" msgstr "Fév" -#: src/Core/L10n.php:426 src/Model/Event.php:437 +#: src/Core/L10n.php:530 src/Model/Event.php:439 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:426 src/Model/Event.php:438 +#: src/Core/L10n.php:530 src/Model/Event.php:440 msgid "Apr" msgstr "Avr" -#: src/Core/L10n.php:426 src/Model/Event.php:440 +#: src/Core/L10n.php:530 src/Model/Event.php:442 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:426 src/Model/Event.php:441 +#: src/Core/L10n.php:530 src/Model/Event.php:443 msgid "Jul" msgstr "Jul" -#: src/Core/L10n.php:426 src/Model/Event.php:442 +#: src/Core/L10n.php:530 src/Model/Event.php:444 msgid "Aug" msgstr "Aoû" -#: src/Core/L10n.php:426 +#: src/Core/L10n.php:530 msgid "Sep" msgstr "Sep" -#: src/Core/L10n.php:426 src/Model/Event.php:444 +#: src/Core/L10n.php:530 src/Model/Event.php:446 msgid "Oct" msgstr "Oct" -#: src/Core/L10n.php:426 src/Model/Event.php:445 +#: src/Core/L10n.php:530 src/Model/Event.php:447 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:426 src/Model/Event.php:446 +#: src/Core/L10n.php:530 src/Model/Event.php:448 msgid "Dec" msgstr "Déc" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "Le fichier journal '%s' n'est pas utilisable. Pas de journalisation possible (erreur '%s')" + +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "Le fichier journal de débogage \"%s\" n'existe pas ou n'est pas accessible en écriture. Journalisation désactivée (erreur : \"%s\")" + #: src/Core/Renderer.php:89 src/Core/Renderer.php:118 -#: src/Core/Renderer.php:145 src/Core/Renderer.php:179 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 #: src/Render/FriendicaSmartyEngine.php:60 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "Friendica ne peut pas afficher cette page pour le moment. Merci de contacter l'administrateur." -#: src/Core/Renderer.php:141 +#: src/Core/Renderer.php:143 msgid "template engine cannot be registered without a name." msgstr "Le moteur de template ne peut pas être enregistré sans nom." -#: src/Core/Renderer.php:175 +#: src/Core/Renderer.php:177 msgid "template engine is not registered!" msgstr "le moteur de template n'est pas enregistré!" @@ -3457,36 +3090,36 @@ msgstr "Répertoire dans lequel les fichiers sont stockés. Pour une sécurité msgid "Enter a valid existing folder" msgstr "Entrez le chemin d'un dossier existant" -#: src/Core/Update.php:69 +#: src/Core/Update.php:80 #, 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 "Les mises à jour automatiques ne sont pas disponibles depuis la version %s. Veuillez mettre à jour manuellement jusqu'à la version 2021.01 et attendre que la mise à jour des données atteigne la version 1383." -#: src/Core/Update.php:80 +#: src/Core/Update.php:91 #, 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 "La mise à jour automatique des données n'est pas disponible depuis la version %s. Veuillez mettre à jour manuellement jusqu'à la version 2021.01 et attendre que la mise à jour des données atteigne la version 1383." -#: src/Core/Update.php:155 +#: src/Core/Update.php:183 #, php-format msgid "%s: executing pre update %d" msgstr "%s : Exécution de la mise à jour préalable %d" -#: src/Core/Update.php:193 +#: src/Core/Update.php:225 #, php-format msgid "%s: executing post update %d" msgstr "%s : Exécution de la mise à jour des données %d" -#: src/Core/Update.php:263 +#: src/Core/Update.php:299 #, php-format msgid "Update %s failed. See error logs." msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur." -#: src/Core/Update.php:317 +#: src/Core/Update.php:339 #, php-format msgid "" "\n" @@ -3494,84 +3127,51 @@ msgid "" "\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 "\nLes développeur•se•s de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue." +msgstr "\nLes développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue." -#: src/Core/Update.php:323 +#: src/Core/Update.php:345 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "The message d'erreur est\\n[pre]%s[/pre]" -#: src/Core/Update.php:327 src/Core/Update.php:369 +#: src/Core/Update.php:349 src/Core/Update.php:377 msgid "[Friendica Notify] Database update" msgstr "[Friendica:Notification] Mise à jour de la base de données" -#: src/Core/Update.php:363 +#: src/Core/Update.php:371 #, php-format msgid "" "\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\nLa base de donnée Friendica a été mise à jour avec succès de la version %s à la version %s." - -#: src/Core/UserImport.php:126 -msgid "Error decoding account file" -msgstr "Une erreur a été détecté en décodant un fichier utilisateur" - -#: src/Core/UserImport.php:132 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?" - -#: src/Core/UserImport.php:140 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "L'utilisateur '%s' existe déjà sur ce serveur!" - -#: src/Core/UserImport.php:176 -msgid "User creation error" -msgstr "Erreur de création d'utilisateur" - -#: src/Core/UserImport.php:221 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contacts non importés" -msgstr[1] "%d contacts non importés" -msgstr[2] "%d contacts non importés" - -#: src/Core/UserImport.php:274 -msgid "User profile creation error" -msgstr "Erreur de création du profil utilisateur" - -#: src/Core/UserImport.php:327 -msgid "Done. You can now login with your username and password" -msgstr "Action réalisée. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe" +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "\n\t\t\t\tLa base de données de Friendica a bien été mise à jour de la version %s à %s." #: src/Database/DBStructure.php:57 #, php-format msgid "The database version had been set to %s." msgstr "La version de la base de données a été fixée a %s." -#: src/Database/DBStructure.php:70 +#: src/Database/DBStructure.php:82 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "La mise à jour des données est à la version %d, mais elle doit atteindre la version %d pour pouvoir supprimer les tables en toute sécurité." -#: src/Database/DBStructure.php:83 +#: src/Database/DBStructure.php:95 msgid "No unused tables found." msgstr "Aucune table non utilisée trouvée." -#: src/Database/DBStructure.php:88 +#: src/Database/DBStructure.php:100 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "Ces tables ne sont pas utilisées pour friendica et seront supprimées lorsque vous exécuterez \"dbstructure drop -e\" :" -#: src/Database/DBStructure.php:126 +#: src/Database/DBStructure.php:137 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "Il n'y a pas de tables MyISAM ou InnoDB avec le format de fichier Antelope." -#: src/Database/DBStructure.php:150 +#: src/Database/DBStructure.php:161 #, php-format msgid "" "\n" @@ -3579,42 +3179,42 @@ msgid "" "%s\n" msgstr "\nErreur %d survenue durant la mise à jour de la base de données :\n%s\n" -#: src/Database/DBStructure.php:153 +#: src/Database/DBStructure.php:164 msgid "Errors encountered performing database changes: " msgstr "Erreurs survenues lors de la mise à jour de la base de données :" -#: src/Database/DBStructure.php:219 +#: src/Database/DBStructure.php:232 msgid "Another database update is currently running." msgstr "Une autre mise à jour de la base de données est en cours." -#: src/Database/DBStructure.php:223 +#: src/Database/DBStructure.php:236 #, php-format msgid "%s: Database update" msgstr "%s : Mise à jour de la base de données" -#: src/Database/DBStructure.php:479 +#: src/Database/DBStructure.php:493 #, php-format msgid "%s: updating %s table." msgstr "%s : Table %s en cours de mise à jour." -#: src/Factory/Api/Mastodon/Error.php:55 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Record not found" msgstr "Enregistrement non trouvé" -#: src/Factory/Api/Mastodon/Error.php:65 +#: src/Factory/Api/Mastodon/Error.php:49 msgid "Unprocessable Entity" msgstr "Entité impossible à traiter" -#: src/Factory/Api/Mastodon/Error.php:75 +#: src/Factory/Api/Mastodon/Error.php:56 msgid "Unauthorized" msgstr "Accès réservé" -#: src/Factory/Api/Mastodon/Error.php:85 +#: src/Factory/Api/Mastodon/Error.php:62 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "Le jeton ne comporte pas un utilisateur valide ou une portée (scope) nécessaire." -#: src/Factory/Api/Mastodon/Error.php:95 +#: src/Factory/Api/Mastodon/Error.php:69 msgid "Internal Server Error" msgstr "Erreur du site" @@ -3623,484 +3223,534 @@ msgstr "Erreur du site" msgid "Legacy module file not found: %s" msgstr "Module original non trouvé: %s" -#: src/Model/Contact.php:1170 src/Model/Contact.php:1181 -msgid "UnFollow" -msgstr "Se désabonner" +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." +msgstr "Un cercle supprimé a été recréé. Les permissions existantes pourraient s'appliquer à ce cercle et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre cercle sous un autre nom." -#: src/Model/Contact.php:1187 src/Module/Admin/Users/Pending.php:107 -#: src/Module/Notifications/Introductions.php:130 -#: src/Module/Notifications/Introductions.php:202 +#: src/Model/Circle.php:544 +msgid "Everybody" +msgstr "Tout le monde" + +#: src/Model/Circle.php:563 +msgid "edit" +msgstr "éditer" + +#: src/Model/Circle.php:600 +msgid "add" +msgstr "ajouter" + +#: src/Model/Circle.php:605 +msgid "Edit circle" +msgstr "Modifier le cercle" + +#: src/Model/Circle.php:606 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "Contacts n'appartenant à aucun cercle" + +#: src/Model/Circle.php:608 +msgid "Create a new circle" +msgstr "Créer un nouveau cercle" + +#: src/Model/Circle.php:609 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "Nom du cercle :" + +#: src/Model/Circle.php:610 +msgid "Edit circles" +msgstr "Modifier les cercles" + +#: src/Model/Contact.php:1256 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Approuver" -#: src/Model/Contact.php:1601 +#: src/Model/Contact.php:1710 msgid "Organisation" msgstr "Organisation" -#: src/Model/Contact.php:1609 -msgid "Forum" -msgstr "Forum" +#: src/Model/Contact.php:1718 +msgid "Group" +msgstr "Groupe" -#: src/Model/Contact.php:2795 +#: src/Model/Contact.php:3021 msgid "Disallowed profile URL." msgstr "URL de profil interdite." -#: src/Model/Contact.php:2800 src/Module/Friendica.php:81 +#: src/Model/Contact.php:3026 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Domaine bloqué" -#: src/Model/Contact.php:2805 +#: src/Model/Contact.php:3031 msgid "Connect URL missing." msgstr "URL de connexion manquante." -#: src/Model/Contact.php:2814 +#: src/Model/Contact.php:3040 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Le contact n'a pu être ajouté. Veuillez vérifier les identifiants du réseau concerné dans la page Réglages -> Réseaux Sociaux si pertinent." -#: src/Model/Contact.php:2856 +#: src/Model/Contact.php:3058 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "Le réseau %s espéré ne correspond pas au réseau %s actuel" + +#: src/Model/Contact.php:3075 msgid "The profile address specified does not provide adequate information." msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates." -#: src/Model/Contact.php:2858 +#: src/Model/Contact.php:3077 msgid "No compatible communication protocols or feeds were discovered." msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert." -#: src/Model/Contact.php:2861 +#: src/Model/Contact.php:3080 msgid "An author or name was not found." msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé." -#: src/Model/Contact.php:2864 +#: src/Model/Contact.php:3083 msgid "No browser URL could be matched to this address." msgstr "Aucune URL de navigation ne correspond à cette adresse." -#: src/Model/Contact.php:2867 +#: src/Model/Contact.php:3086 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel." -#: src/Model/Contact.php:2868 +#: src/Model/Contact.php:3087 msgid "Use mailto: in front of address to force email check." msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel." -#: src/Model/Contact.php:2874 +#: src/Model/Contact.php:3093 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site." -#: src/Model/Contact.php:2879 +#: src/Model/Contact.php:3098 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part." -#: src/Model/Contact.php:2938 +#: src/Model/Contact.php:3164 msgid "Unable to retrieve contact information." msgstr "Impossible de récupérer les informations du contact." -#: src/Model/Event.php:52 +#: src/Model/Event.php:54 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "l d F Y \\@ G:i \\G\\M\\TP (e)" -#: src/Model/Event.php:73 src/Model/Event.php:90 src/Model/Event.php:467 -#: src/Model/Event.php:901 +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 msgid "Starts:" msgstr "Débute :" -#: src/Model/Event.php:76 src/Model/Event.php:96 src/Model/Event.php:468 -#: src/Model/Event.php:905 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 msgid "Finishes:" msgstr "Finit :" -#: src/Model/Event.php:417 +#: src/Model/Event.php:419 msgid "all-day" msgstr "toute la journée" -#: src/Model/Event.php:443 +#: src/Model/Event.php:445 msgid "Sept" msgstr "Sep" -#: src/Model/Event.php:465 +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "aujourd'hui" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:288 src/Util/Temporal.php:353 +msgid "month" +msgstr "mois" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:289 src/Util/Temporal.php:354 +msgid "week" +msgstr "semaine" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:290 src/Util/Temporal.php:355 +msgid "day" +msgstr "jour" + +#: src/Model/Event.php:467 msgid "No events to display" msgstr "Pas d'évènement à afficher" -#: src/Model/Event.php:581 +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "L'accès au profil a été restreint." + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "Évènement non trouvé." + +#: src/Model/Event.php:637 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:612 +#: src/Model/Event.php:664 msgid "Edit event" msgstr "Editer l'évènement" -#: src/Model/Event.php:613 +#: src/Model/Event.php:665 msgid "Duplicate event" msgstr "Dupliquer l'évènement" -#: src/Model/Event.php:614 +#: src/Model/Event.php:666 msgid "Delete event" msgstr "Supprimer l'évènement" -#: src/Model/Event.php:857 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:858 +#: src/Model/Event.php:897 msgid "D g:i A" msgstr "D G:i" -#: src/Model/Event.php:859 +#: src/Model/Event.php:898 msgid "g:i A" msgstr "G:i" -#: src/Model/Event.php:920 src/Model/Event.php:922 +#: src/Model/Event.php:964 src/Model/Event.php:966 msgid "Show map" msgstr "Montrer la carte" -#: src/Model/Event.php:921 +#: src/Model/Event.php:965 msgid "Hide map" msgstr "Cacher la carte" -#: src/Model/Event.php:1014 +#: src/Model/Event.php:1058 #, php-format msgid "%s's birthday" msgstr "Anniversaire de %s's" -#: src/Model/Event.php:1015 +#: src/Model/Event.php:1059 #, php-format msgid "Happy Birthday %s" msgstr "Joyeux anniversaire, %s !" -#: src/Model/Group.php:105 -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 "Un groupe supprimé a été recréé. Les permissions existantes pourraient s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom." - -#: src/Model/Group.php:503 -msgid "Default privacy group for new contacts" -msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts" - -#: src/Model/Group.php:535 -msgid "Everybody" -msgstr "Tout le monde" - -#: src/Model/Group.php:554 -msgid "edit" -msgstr "éditer" - -#: src/Model/Group.php:586 -msgid "add" -msgstr "ajouter" - -#: src/Model/Group.php:591 -msgid "Edit group" -msgstr "Editer groupe" - -#: src/Model/Group.php:592 src/Module/Group.php:194 -msgid "Contacts not in any group" -msgstr "Contacts n'appartenant à aucun groupe" - -#: src/Model/Group.php:594 -msgid "Create a new group" -msgstr "Créer un nouveau groupe" - -#: src/Model/Group.php:595 src/Module/Group.php:179 src/Module/Group.php:202 -#: src/Module/Group.php:277 -msgid "Group Name: " -msgstr "Nom du groupe : " - -#: src/Model/Group.php:596 -msgid "Edit groups" -msgstr "Modifier les groupes" - -#: src/Model/Item.php:1965 +#: src/Model/Item.php:2139 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Langues détectées dans cette publication :\\n%s" -#: src/Model/Item.php:2857 +#: src/Model/Item.php:3084 msgid "activity" msgstr "activité" -#: src/Model/Item.php:2859 +#: src/Model/Item.php:3086 msgid "comment" msgstr "commentaire" -#: src/Model/Item.php:2862 +#: src/Model/Item.php:3089 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "publication" -#: src/Model/Item.php:3005 +#: src/Model/Item.php:3259 +#, php-format +msgid "%s is blocked" +msgstr "%s est bloqué(e)" + +#: src/Model/Item.php:3261 +#, php-format +msgid "%s is ignored" +msgstr "%s est ignoré(e)" + +#: src/Model/Item.php:3263 +#, php-format +msgid "Content from %s is collapsed" +msgstr "Le contenu de %s est réduit" + +#: src/Model/Item.php:3267 #, php-format msgid "Content warning: %s" msgstr "Avertissement de contenu: %s" -#: src/Model/Item.php:3368 +#: src/Model/Item.php:3720 msgid "bytes" msgstr "octets" -#: src/Model/Item.php:3399 +#: src/Model/Item.php:3751 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "%2$s (%3$d%%, %1$d vote)" msgstr[1] "%2$s (%3$d%%, %1$d votes)" -msgstr[2] "%2$s (%3$d%%, %1$d vote)" +msgstr[2] "%2$s (%3$d%%, %1$d votes)" -#: src/Model/Item.php:3401 +#: src/Model/Item.php:3753 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "%2$s (%1$d vote)" msgstr[1] "%2$s (%1$d votes)" -msgstr[2] "%2$s (%1$d vote)" +msgstr[2] "%2$s (%1$d votes)" -#: src/Model/Item.php:3406 +#: src/Model/Item.php:3758 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "%d votant. Fin du sondage : %s" msgstr[1] "%d votants. Fin du sondage : %s" -msgstr[2] "%d votant. Fin du sondage : %s" +msgstr[2] "%d votants. Fin du sondage : %s" -#: src/Model/Item.php:3408 +#: src/Model/Item.php:3760 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "%d votant." msgstr[1] "%d votants." -msgstr[2] "%d votant." +msgstr[2] "%d votants." -#: src/Model/Item.php:3410 +#: src/Model/Item.php:3762 #, php-format msgid "Poll end: %s" msgstr "Fin du sondage : %s" -#: src/Model/Item.php:3444 src/Model/Item.php:3445 +#: src/Model/Item.php:3796 src/Model/Item.php:3797 msgid "View on separate page" msgstr "Voir dans une nouvelle page" -#: src/Model/Mail.php:137 src/Model/Mail.php:265 +#: src/Model/Mail.php:137 src/Model/Mail.php:266 msgid "[no subject]" msgstr "[pas de sujet]" -#: src/Model/Profile.php:362 src/Module/Profile/Profile.php:256 -#: src/Module/Profile/Profile.php:258 +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Photos du mur" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 msgid "Edit profile" msgstr "Editer le profil" -#: src/Model/Profile.php:364 +#: src/Model/Profile.php:361 msgid "Change profile photo" msgstr "Changer de photo de profil" -#: src/Model/Profile.php:377 src/Module/Directory.php:153 -#: src/Module/Profile/Profile.php:184 +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 msgid "Homepage:" msgstr "Page personnelle :" -#: src/Model/Profile.php:378 src/Module/Contact/Profile.php:375 -#: src/Module/Notifications/Introductions.php:187 +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "À propos :" -#: src/Model/Profile.php:464 +#: src/Model/Profile.php:477 msgid "Atom feed" msgstr "Flux Atom" -#: src/Model/Profile.php:507 +#: src/Model/Profile.php:484 +msgid "This website has been verified to belong to the same person." +msgstr "Ce site web a été vérifié comme appartenant à la même personne." + +#: src/Model/Profile.php:525 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:571 src/Model/Profile.php:660 +#: src/Model/Profile.php:589 src/Model/Profile.php:678 msgid "[today]" msgstr "[aujourd'hui]" -#: src/Model/Profile.php:580 +#: src/Model/Profile.php:598 msgid "Birthday Reminders" msgstr "Rappels d'anniversaires" -#: src/Model/Profile.php:581 +#: src/Model/Profile.php:599 msgid "Birthdays this week:" msgstr "Anniversaires cette semaine :" -#: src/Model/Profile.php:609 +#: src/Model/Profile.php:627 msgid "g A l F d" msgstr "g A | F d" -#: src/Model/Profile.php:647 +#: src/Model/Profile.php:665 msgid "[No description]" msgstr "[Sans description]" -#: src/Model/Profile.php:673 +#: src/Model/Profile.php:691 msgid "Event Reminders" msgstr "Rappels d'évènements" -#: src/Model/Profile.php:674 +#: src/Model/Profile.php:692 msgid "Upcoming events the next 7 days:" msgstr "Évènements à venir dans les 7 prochains jours :" -#: src/Model/Profile.php:868 +#: src/Model/Profile.php:891 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "%1$s souhaite la bienvenue à %2$s grâce à OpenWebAuth" -#: src/Model/Profile.php:1008 +#: src/Model/Profile.php:1031 msgid "Hometown:" msgstr " Ville d'origine :" -#: src/Model/Profile.php:1009 +#: src/Model/Profile.php:1032 msgid "Marital Status:" msgstr "Statut marital :" -#: src/Model/Profile.php:1010 +#: src/Model/Profile.php:1033 msgid "With:" msgstr "Avec :" -#: src/Model/Profile.php:1011 +#: src/Model/Profile.php:1034 msgid "Since:" msgstr "Depuis :" -#: src/Model/Profile.php:1012 +#: src/Model/Profile.php:1035 msgid "Sexual Preference:" msgstr "Préférence sexuelle :" -#: src/Model/Profile.php:1013 +#: src/Model/Profile.php:1036 msgid "Political Views:" msgstr "Opinions politiques :" -#: src/Model/Profile.php:1014 +#: src/Model/Profile.php:1037 msgid "Religious Views:" msgstr "Opinions religieuses :" -#: src/Model/Profile.php:1015 +#: src/Model/Profile.php:1038 msgid "Likes:" msgstr "J'aime :" -#: src/Model/Profile.php:1016 +#: src/Model/Profile.php:1039 msgid "Dislikes:" msgstr "Je n'aime pas :" -#: src/Model/Profile.php:1017 +#: src/Model/Profile.php:1040 msgid "Title/Description:" msgstr "Titre / Description :" -#: src/Model/Profile.php:1018 src/Module/Admin/Summary.php:234 +#: src/Model/Profile.php:1041 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 msgid "Summary" msgstr "Résumé" -#: src/Model/Profile.php:1019 +#: src/Model/Profile.php:1042 msgid "Musical interests" msgstr "Goûts musicaux" -#: src/Model/Profile.php:1020 +#: src/Model/Profile.php:1043 msgid "Books, literature" msgstr "Lectures" -#: src/Model/Profile.php:1021 +#: src/Model/Profile.php:1044 msgid "Television" msgstr "Télévision" -#: src/Model/Profile.php:1022 +#: src/Model/Profile.php:1045 msgid "Film/dance/culture/entertainment" msgstr "Cinéma / Danse / Culture / Divertissement" -#: src/Model/Profile.php:1023 +#: src/Model/Profile.php:1046 msgid "Hobbies/Interests" msgstr "Passe-temps / Centres d'intérêt" -#: src/Model/Profile.php:1024 +#: src/Model/Profile.php:1047 msgid "Love/romance" msgstr "Amour / Romance" -#: src/Model/Profile.php:1025 +#: src/Model/Profile.php:1048 msgid "Work/employment" msgstr "Activité professionnelle / Occupation" -#: src/Model/Profile.php:1026 +#: src/Model/Profile.php:1049 msgid "School/education" msgstr "Études / Formation" -#: src/Model/Profile.php:1027 +#: src/Model/Profile.php:1050 msgid "Contact information and Social Networks" msgstr "Coordonnées / Réseaux sociaux" -#: src/Model/User.php:212 src/Model/User.php:1085 +#: src/Model/User.php:226 src/Model/User.php:1185 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERREUR FATALE : La génération des clés de sécurité a échoué." -#: src/Model/User.php:572 src/Model/User.php:605 +#: src/Model/User.php:619 src/Model/User.php:652 msgid "Login failed" msgstr "Échec de l'identification" -#: src/Model/User.php:637 +#: src/Model/User.php:684 msgid "Not enough information to authenticate" msgstr "Pas assez d'informations pour s'identifier" -#: src/Model/User.php:732 +#: src/Model/User.php:805 msgid "Password can't be empty" msgstr "Le mot de passe ne peut pas être vide" -#: src/Model/User.php:774 +#: src/Model/User.php:847 msgid "Empty passwords are not allowed." msgstr "Les mots de passe vides ne sont pas acceptés." -#: src/Model/User.php:778 +#: src/Model/User.php:851 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Le nouveau mot de passe fait partie d'une fuite de mot de passe publique, veuillez en choisir un autre." -#: src/Model/User.php:782 +#: src/Model/User.php:855 msgid "The password length is limited to 72 characters." msgstr "La taille du mot de passe est limitée à 72 caractères." -#: src/Model/User.php:786 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "Le mot de passe ne peut pas contenir de lettres accentuées, d'espaces ou de deux-points (:)" +#: src/Model/User.php:859 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "Le mot de passe ne peut pas contenir d'espaces ou de lettres accentuées" -#: src/Model/User.php:965 +#: src/Model/User.php:1068 msgid "Passwords do not match. Password unchanged." msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." -#: src/Model/User.php:972 +#: src/Model/User.php:1075 msgid "An invitation is required." msgstr "Une invitation est requise." -#: src/Model/User.php:976 +#: src/Model/User.php:1079 msgid "Invitation could not be verified." msgstr "L'invitation fournie n'a pu être validée." -#: src/Model/User.php:984 +#: src/Model/User.php:1087 msgid "Invalid OpenID url" msgstr "Adresse OpenID invalide" -#: src/Model/User.php:997 src/Security/Authentication.php:240 +#: src/Model/User.php:1100 src/Security/Authentication.php:241 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. Merci de vérifier qu'il est correctement écrit." -#: src/Model/User.php:997 src/Security/Authentication.php:240 +#: src/Model/User.php:1100 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "Le message d'erreur était :" -#: src/Model/User.php:1003 +#: src/Model/User.php:1106 msgid "Please enter the required information." msgstr "Entrez les informations requises." -#: src/Model/User.php:1017 +#: src/Model/User.php:1120 #, 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) et system.username_max_length (%s) s'excluent mutuellement, leur valeur sont échangées." -#: src/Model/User.php:1024 +#: src/Model/User.php:1127 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." @@ -4108,7 +3758,7 @@ msgstr[0] "L'identifiant utilisateur doit comporter au moins %s caractère." msgstr[1] "L'identifiant utilisateur doit comporter au moins %s caractères." msgstr[2] "L'identifiant utilisateur doit comporter au moins %s caractères." -#: src/Model/User.php:1028 +#: src/Model/User.php:1131 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." @@ -4116,68 +3766,68 @@ msgstr[0] "L'identifiant utilisateur doit comporter au plus %s caractère." msgstr[1] "L'identifiant utilisateur doit comporter au plus %s caractères." msgstr[2] "L'identifiant utilisateur doit comporter au plus %s caractères." -#: src/Model/User.php:1036 +#: src/Model/User.php:1139 msgid "That doesn't appear to be your full (First Last) name." msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)." -#: src/Model/User.php:1041 +#: src/Model/User.php:1144 msgid "Your email domain is not among those allowed on this site." msgstr "Votre domaine de courriel n'est pas autorisé sur ce site." -#: src/Model/User.php:1045 +#: src/Model/User.php:1148 msgid "Not a valid email address." msgstr "Ceci n'est pas une adresse courriel valide." -#: src/Model/User.php:1048 +#: src/Model/User.php:1151 msgid "The nickname was blocked from registration by the nodes admin." msgstr "Cet identifiant utilisateur est réservé." -#: src/Model/User.php:1052 src/Model/User.php:1060 +#: src/Model/User.php:1155 src/Model/User.php:1161 msgid "Cannot use that email." msgstr "Impossible d'utiliser ce courriel." -#: src/Model/User.php:1067 +#: src/Model/User.php:1167 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Votre identifiant utilisateur ne peut comporter que a-z, 0-9 et _." -#: src/Model/User.php:1075 src/Model/User.php:1132 +#: src/Model/User.php:1175 src/Model/User.php:1232 msgid "Nickname is already registered. Please choose another." msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre." -#: src/Model/User.php:1119 src/Model/User.php:1123 +#: src/Model/User.php:1219 src/Model/User.php:1223 msgid "An error occurred during registration. Please try again." msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer." -#: src/Model/User.php:1146 +#: src/Model/User.php:1246 msgid "An error occurred creating your default profile. Please try again." msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer." -#: src/Model/User.php:1153 +#: src/Model/User.php:1253 msgid "An error occurred creating your self contact. Please try again." msgstr "Une erreur est survenue lors de la création de votre propre contact. Veuillez réssayer." -#: src/Model/User.php:1158 +#: src/Model/User.php:1258 msgid "Friends" msgstr "Contacts" -#: src/Model/User.php:1162 +#: src/Model/User.php:1262 msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "Une erreur est survenue lors de la création de votre groupe de contacts par défaut. Veuillez réessayer." +"An error occurred creating your default contact circle. Please try again." +msgstr "Une erreur est survenue lors de la création de votre cercle de contacts par défaut. Veuillez réessayer." -#: src/Model/User.php:1201 +#: src/Model/User.php:1306 msgid "Profile Photos" msgstr "Photos du profil" -#: src/Model/User.php:1394 +#: src/Model/User.php:1486 #, 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\tCher•ère %1$s,\n\t\t\tl'administrateur de %2$s a créé un compte pour vous." +msgstr "\n\t\tCher/Chère %1$s,\n\t\t\tl'administrateur de %2$s a créé un compte pour vous." -#: src/Model/User.php:1397 +#: src/Model/User.php:1489 #, php-format msgid "" "\n" @@ -4204,17 +3854,17 @@ msgid "" "\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" +"\t\tIf you ever want to delete your account, you can do so at %1$s/settings/removeme\n" "\n" "\t\tThank you and welcome to %4$s." -msgstr "\n\t\tLes informations de connexion sont les suivantes :\n\n\t\tLocalisation du site :\t%1$s\n\t\tNom d'utilisateur :\t\t%2$s\n\t\tMot de passe :\t\t%3$s\n\n\t\tVous pouvez changer votre mot de passe depuis la page \"Paramètres\" de votre compte après vous être\n\t\tconnecté.\n\n\t\tMerci de prendre quelques instants pour contrôler les autres paramètres de compte sur cette page.\n\n\t\tVous pouvez également ajouter des informations basiques à votre profil par défaut\n\t\t(sur la page \"Profils\") ainsi les autres personnes pourront vous trouver plus facilement.\n\n\t\tNous vous recommandons de définir votre nom complet, d'ajouter une photo de profil,\n\t\tquelques mots clés de profil (très utiles pour se faire de nouveaux amis) - et\n\t\tpeut-être le pays où vous vivez; si vous ne désirez pas être plus spécifique\n\t\tque cela.\n\n\t\tNous respectons totalement votre droit à la vie privée et aucun de ces éléments n'est nécessaire.\n\t\tSi vous êtes nouveau et ne connaissez personne ici, ils peuvent vous aider\n\t\tà vous faire de nouveaux amis intéressants.\n\n\t\tSi jamais vous souhaitiez supprimer votre compte, vous pouvez le faire à %1$s/removeme\n\n\t\tMerci et bienvenue sur %4$s." +msgstr "\n\t\tLes informations d'identification sont les suivantes :\n\n\t\tLocalisation du site :\t%1$s\n\t\tNom de l'identifiant :\t\t%2$s\n\t\tMot de passe :\t\t%3$s\n\n\t\tVous pouvez changer votre mot de passe depuis la page \"Paramètres\" de votre compte après connexion.\n\n\t\tMerci de prendre un moment pour consulter les autres paramètres de compte disponibles sur cette page.\n\n\t\tVous pourriez également souhaiter ajouter quelques informations de base à votre profil par défaut\n\t\t(sur la page \"Profils\") afin que d'autres personnes puissent vous trouver facilement.\n\n\t\tNous vous recommandons de définir votre nom complet, d'ajouter une photo de profil,\n\t\td'ajouter quelques \"mots clés\" de profil (très utiles pour se faire de nouveaux amis) et\n\t\tpeut-être le pays dans lequel vous vivez; si vous ne souhaitez pas être plus spécifique\n\t\tque ça.\n\n\t\tNous respectons totalement votre droit à la vie privée et aucun de ces éléments n'est obligatoire.\n\t\tSi vous être nouveau/nouvelle et que vous ne connaissez personne ici, ils pourraient vous aider \n\t\tà vous faire de nouveaux amis intéressants.\n\n\t\tSi jamais vous souhaitiez supprimer votre compte, vous pourriez le faire à %1$s/settings/removeme\n\n\t\tMerci et bienvenue sur %4$s." -#: src/Model/User.php:1430 src/Model/User.php:1537 +#: src/Model/User.php:1522 src/Model/User.php:1629 #, php-format msgid "Registration details for %s" msgstr "Détails d'inscription pour %s" -#: src/Model/User.php:1450 +#: src/Model/User.php:1542 #, php-format msgid "" "\n" @@ -4229,12 +3879,12 @@ msgid "" "\t\t" msgstr "\n\t\t\tCh·er·ère %1$s,\n\t\t\t\tMerci de vous être inscrit-e sur%2$s. Votre compte est en attente de la validation d'un administrateur.\n\n\t\t\tVos identifiants sont les suivants:\n\n\t\t\tLocalisation du site :\t%3$s\n\t\t\tNom d'utilisateur :\t\t%4$s\n\t\t\tMot de passe :\t\t%5$s\n\t\t" -#: src/Model/User.php:1469 +#: src/Model/User.php:1561 #, php-format msgid "Registration at %s" msgstr "inscription à %s" -#: src/Model/User.php:1493 +#: src/Model/User.php:1585 #, php-format msgid "" "\n" @@ -4243,7 +3893,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\tCher %1$s,\n\t\t\t\tMerci pour votre inscription sur %2$s. Votre compte a été créé.\n\t\t\t" -#: src/Model/User.php:1501 +#: src/Model/User.php:1593 #, php-format msgid "" "\n" @@ -4270,25 +3920,15 @@ msgid "" "\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" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." -msgstr "\n\t\tLes informations de connexion sont les suivantes :\n\n\t\tLocalisation du site :\t%3$s\n\t\tNom d'utilisateur :\t\t%1$s\n\t\tMot de passe :\t\t%5$s\n\n\t\tVous pouvez changer votre mot de passe depuis la page \"Paramètres\" de votre compte après vous être\n\t\tconnecté.\n\n\t\tMerci de prendre quelques instants pour contrôler les autres paramètres de compte sur cette page.\n\n\t\tVous pouvez également ajouter des informations basiques à votre profil par défaut\n\t\t(sur la page \"Profils\") ainsi les autres personnes pourront vous trouver plus facilement.\n\n\t\tNous vous recommandons de définir votre nom complet, d'ajouter une photo de profil,\n\t\tquelques mots clés de profil (très utiles pour se faire de nouveaux amis) - et\n\t\tpeut-être le pays où vous vivez; si vous ne désirez pas être plus spécifique\n\t\tque cela.\n\n\t\tNous respectons totalement votre droit à la vie privée et aucun de ces éléments n'est nécessaire.\n\t\tSi vous êtes nouveau et ne connaissez personne ici, ils peuvent vous aider\n\t\tà vous faire de nouveaux amis intéressants.\n\n\t\tSi jamais vous souhaitiez supprimer votre compte, vous pouvez le faire à %3$s/removeme\n\n\t\tMerci et bienvenue sur %2$s." +msgstr "\n\t\t\tLes informations d'identification sont les suivantes :\n\n\t\t\tLocalisation du site :\t%3$s\n\t\t\tNom de l'identifiant :\t\t%1$s\n\t\t\tMot de passe :\t\t%5$s\n\n\t\t\tVous pouvez changer votre mot de passe depuis la page \"Paramètres\" de votre compte après\n\t\t\tconnexion.\n\n\t\t\tMerci de prendre un moment pour consulter les autres paramètres de compte disponibles sur cette page.\n\n\t\t\tVous pourriez également souhaiter ajouter quelques informations de base à votre profil par défaut\n\t\t\t(sur la page \"Profils\") afin que d'autres personnes puissent vous trouver facilement.\n\n\t\t\tNous vous recommandons de définir votre nom complet, d'ajouter une photo de profil,\n\t\t\td'ajouter quelques \"mots clés\" de profil (très utiles pour se faire de nouveaux amis) et\n\t\t\tpeut être le pays dans lequel vous vivez si vous ne souhaitez pas être plus spécifique\n\t\t\tque ça.\n\n\t\t\tNous respectons totalement votre droit à la vie privée et aucun de ces éléments n'est obligatoire.\n\t\t\tSi vous être nouveau/nouvelle et que vous ne connaissez personne ici, ils pourraient vous aider\n\t\t\tà vous faire de nouveaux amis intéressants.\n\n\t\t\tSi jamais vous souhaitiez supprimer votre compte, vous pourriez le faire à %3$s/settings/removeme\n\n\t\t\tMerci et bienvenue sur %2$s.\t" -#: src/Moderation/DomainPatternBlocklist.php:228 -#, php-format -msgid "[%s] Notice of remote server domain pattern block list update" -msgstr "[%s] Annonce de mise à jour de la liste de blocage de motif de domaine de serveur distant" - -#: src/Moderation/DomainPatternBlocklist.php:230 -#, php-format +#: src/Model/User.php:1656 msgid "" -"Dear %s,\n" -"\n" -"You are receiving this email because the Friendica node at %s where you are registered as a user updated their remote server domain pattern block list.\n" -"\n" -"Please review the updated list at %s at your earliest convenience." -msgstr "%s,\n\nVous recevez cet email parce que le serveur Friendica à %s où vous vous êtes inscrit∙e a mis à jour sa liste de blocage de motif de domaine de serveur.\n\nVeuillez prendre connaissance de la liste mise à jour à %s dès que possible." +"User with delegates can't be removed, please remove delegate users first" +msgstr "Un utilisateur avec des délégataires ne peut pas être supprimé, veuillez d'abord retirer les délégataires." #: src/Module/Admin/Addons/Details.php:65 msgid "Addon not found." @@ -4310,32 +3950,25 @@ msgid "Disable" msgstr "Désactiver" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:332 msgid "Enable" msgstr "Activer" #: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:94 -#: src/Module/Admin/Blocklist/Server/Add.php:121 -#: src/Module/Admin/Blocklist/Server/Import.php:117 -#: src/Module/Admin/Blocklist/Server/Index.php:93 -#: src/Module/Admin/Federation.php:201 src/Module/Admin/Item/Delete.php:64 -#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:84 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:431 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:233 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:75 -#: 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 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 msgid "Administration" msgstr "Administration" #: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:96 -#: src/Module/BaseSettings.php:85 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:139 msgid "Addons" msgstr "Extensions" @@ -4344,13 +3977,13 @@ msgstr "Extensions" msgid "Toggle" msgstr "Activer/Désactiver" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 msgid "Author: " msgstr "Auteur : " -#: src/Module/Admin/Addons/Details.php:122 -#: src/Module/Admin/Themes/Details.php:102 +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 msgid "Maintainer: " msgstr "Mainteneur : " @@ -4363,11 +3996,22 @@ msgstr "Extensions rechargées" msgid "Addon %s failed to install." msgstr "L'extension %s a échoué à s'installer." +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:303 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Sauvegarder les paramètres" + #: src/Module/Admin/Addons/Index.php:70 msgid "Reload active addons" msgstr "Recharger les add-ons activés." -#: src/Module/Admin/Addons/Index.php:75 +#: src/Module/Admin/Addons/Index.php:74 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4375,421 +4019,6 @@ msgid "" " the open addon registry at %2$s" msgstr "Il n'y a pas d'add-on disponible sur votre serveur. Vous pouvez trouver le dépôt officiel d'add-ons sur %1$s et des add-ons non-officiel dans le répertoire d'add-ons ouvert sur %2$s." -#: src/Module/Admin/BaseUsers.php:54 -msgid "List of all users" -msgstr "Liste de tous les utilisateurs" - -#: src/Module/Admin/BaseUsers.php:59 -msgid "Active" -msgstr "Actif" - -#: src/Module/Admin/BaseUsers.php:62 -msgid "List of active accounts" -msgstr "Liste des comptes actifs" - -#: src/Module/Admin/BaseUsers.php:67 src/Module/Contact.php:317 -#: src/Module/Contact.php:377 -msgid "Pending" -msgstr "En attente" - -#: src/Module/Admin/BaseUsers.php:70 -msgid "List of pending registrations" -msgstr "Liste des inscriptions en attente" - -#: src/Module/Admin/BaseUsers.php:75 src/Module/Contact.php:325 -#: src/Module/Contact.php:378 -msgid "Blocked" -msgstr "Bloqués" - -#: src/Module/Admin/BaseUsers.php:78 -msgid "List of blocked users" -msgstr "Liste des utilisateurs bloqués" - -#: src/Module/Admin/BaseUsers.php:83 -msgid "Deleted" -msgstr "Supprimé" - -#: src/Module/Admin/BaseUsers.php:86 -msgid "List of pending user deletions" -msgstr "Liste des utilisateurs en attente de suppression" - -#: src/Module/Admin/BaseUsers.php:100 src/Module/Settings/Account.php:494 -msgid "Normal Account Page" -msgstr "Compte normal" - -#: src/Module/Admin/BaseUsers.php:101 src/Module/Settings/Account.php:501 -msgid "Soapbox Page" -msgstr "Compte \"boîte à savon\"" - -#: src/Module/Admin/BaseUsers.php:102 src/Module/Settings/Account.php:508 -msgid "Public Forum" -msgstr "Forum public" - -#: src/Module/Admin/BaseUsers.php:103 src/Module/Settings/Account.php:515 -msgid "Automatic Friend Page" -msgstr "Abonnement réciproque" - -#: src/Module/Admin/BaseUsers.php:104 -msgid "Private Forum" -msgstr "Forum Privé" - -#: src/Module/Admin/BaseUsers.php:107 src/Module/Settings/Account.php:466 -msgid "Personal Page" -msgstr "Page personnelle" - -#: src/Module/Admin/BaseUsers.php:108 src/Module/Settings/Account.php:473 -msgid "Organisation Page" -msgstr "Page Associative" - -#: src/Module/Admin/BaseUsers.php:109 src/Module/Settings/Account.php:480 -msgid "News Page" -msgstr "Page d'informations" - -#: src/Module/Admin/BaseUsers.php:110 src/Module/Settings/Account.php:487 -msgid "Community Forum" -msgstr "Forum Communautaire" - -#: src/Module/Admin/BaseUsers.php:111 -msgid "Relay" -msgstr "Relai" - -#: src/Module/Admin/Blocklist/Contact.php:54 -msgid "You can't block a local contact, please block the user instead" -msgstr "Vous ne pouvez pas bloquer un contact local. Merci de bloquer l'utilisateur à la place" - -#: src/Module/Admin/Blocklist/Contact.php:73 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s contact débloqué" -msgstr[1] "%s profiles distants débloqués" -msgstr[2] "%s profiles distants débloqués" - -#: src/Module/Admin/Blocklist/Contact.php:95 -msgid "Remote Contact Blocklist" -msgstr "Liste des profiles distants bloqués" - -#: src/Module/Admin/Blocklist/Contact.php:96 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "Cette page vous permet de refuser toutes les publications d'un profile distant sur votre site." - -#: src/Module/Admin/Blocklist/Contact.php:97 -msgid "Block Remote Contact" -msgstr "Bloquer le profile distant" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#: 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 "tout sélectionner" - -#: src/Module/Admin/Blocklist/Contact.php:99 -msgid "select none" -msgstr "Sélectionner tous" - -#: src/Module/Admin/Blocklist/Contact.php:101 -#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156 -#: src/Module/Contact.php:401 src/Module/Contact/Profile.php:348 -#: src/Module/Contact/Profile.php:449 -msgid "Unblock" -msgstr "Débloquer" - -#: src/Module/Admin/Blocklist/Contact.php:102 -msgid "No remote contact is blocked from this node." -msgstr "Aucun profil distant n'est bloqué" - -#: src/Module/Admin/Blocklist/Contact.php:104 -msgid "Blocked Remote Contacts" -msgstr "Profils distants bloqués" - -#: src/Module/Admin/Blocklist/Contact.php:105 -msgid "Block New Remote Contact" -msgstr "Bloquer un nouveau profil distant" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Photo" -msgstr "Photo" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Reason" -msgstr "Raison" - -#: src/Module/Admin/Blocklist/Contact.php:114 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "%s profil distant bloqué" -msgstr[1] "%s profils distans bloqués" -msgstr[2] "%s profils distans bloqués" - -#: src/Module/Admin/Blocklist/Contact.php:116 -msgid "URL of the remote contact to block." -msgstr "URL du profil distant à bloquer." - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "Also purge contact" -msgstr "Purger également le contact" - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "" -"Removes all content related to this contact from the node. Keeps the contact" -" record. This action cannot be undone." -msgstr "Supprime tout le contenu relatif à ce contact du nœud. Conserve une trace du contact. Cette action ne peut être annulée." - -#: src/Module/Admin/Blocklist/Contact.php:118 -#: src/Module/Admin/Blocklist/Server/Import.php:123 -msgid "Block Reason" -msgstr "Raison du blocage" - -#: src/Module/Admin/Blocklist/Server/Add.php:80 -msgid "Server domain pattern added to the blocklist." -msgstr "Modèle de domaine de serveur ajouté à la liste de blocage." - -#: src/Module/Admin/Blocklist/Server/Add.php:88 -#, php-format -msgid "%s server scheduled to be purged." -msgid_plural "%s servers scheduled to be purged." -msgstr[0] "La purge d'%s serveur est planifiée." -msgstr[1] "La purge des %s serveurs est planifiée." -msgstr[2] "La purge des %s serveurs est planifiée." - -#: src/Module/Admin/Blocklist/Server/Add.php:120 -#: src/Module/Admin/Blocklist/Server/Import.php:116 -msgid "← Return to the list" -msgstr "← Retourner à la liste" - -#: src/Module/Admin/Blocklist/Server/Add.php:122 -msgid "Block A New Server Domain Pattern" -msgstr "Bloquer un nouveau modèle de domaine de serveur" - -#: src/Module/Admin/Blocklist/Server/Add.php:123 -#: src/Module/Admin/Blocklist/Server/Index.php:97 -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" -"
    " -msgstr "

    La syntaxe du modèle de domaine du serveur est du shell insensible à la casse avec wildcards, comprenant les caractères spéciaux suivants :

    \n
      \n\t
    • *  N'importe quel nombre de caractères
    • \n\t
    • ? N'importe quel caractère unique
    • \n
    " - -#: src/Module/Admin/Blocklist/Server/Add.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:105 -msgid "Check pattern" -msgstr "Vérifier le modèle" - -#: src/Module/Admin/Blocklist/Server/Add.php:129 -msgid "Matching known servers" -msgstr "Serveurs connus correspondants" - -#: src/Module/Admin/Blocklist/Server/Add.php:130 -msgid "Server Name" -msgstr "Nom du serveur" - -#: src/Module/Admin/Blocklist/Server/Add.php:131 -msgid "Server Domain" -msgstr "Domaine du serveur" - -#: src/Module/Admin/Blocklist/Server/Add.php:132 -msgid "Known Contacts" -msgstr "Contacts connus" - -#: src/Module/Admin/Blocklist/Server/Add.php:133 -#, php-format -msgid "%d known server" -msgid_plural "%d known servers" -msgstr[0] "%d serveur connu" -msgstr[1] "%d serveurs connus" -msgstr[2] "%d serveurs connus" - -#: src/Module/Admin/Blocklist/Server/Add.php:134 -msgid "Add pattern to the blocklist" -msgstr "Ajouter le modèle à la liste de blocage" - -#: src/Module/Admin/Blocklist/Server/Add.php:136 -#: src/Module/Admin/Blocklist/Server/Index.php:114 -msgid "Server Domain Pattern" -msgstr "Filtre de domaine" - -#: src/Module/Admin/Blocklist/Server/Add.php:136 -#: src/Module/Admin/Blocklist/Server/Index.php:114 -msgid "" -"The domain pattern of the new server to add to the blocklist. Do not include" -" the protocol." -msgstr "le modèle de domaine du nouveau serveur à ajouter à la liste de blocage. Ne pas inclure le protocole." - -#: src/Module/Admin/Blocklist/Server/Add.php:137 -msgid "Purge server" -msgstr "Purger le serveur" - -#: src/Module/Admin/Blocklist/Server/Add.php:137 -msgid "" -"Also purges all the locally stored content authored by the known contacts " -"registered on that server. Keeps the contacts and the server records. This " -"action cannot be undone." -msgid_plural "" -"Also purges all the locally stored content authored by the known contacts " -"registered on these servers. Keeps the contacts and the servers records. " -"This action cannot be undone." -msgstr[0] "Purge également tout le contenu local stocké créé par les contacts connus inscrit sur ce serveur. Garde un enregistrement des contacts et du serveur. Cette action ne peut être annulée." -msgstr[1] "Purge également tout le contenu local stocké créé par les contacts connus inscrits sur ces serveurs. Garde un enregistrement des contacts et des serveurs. Cette action ne peut être annulée." -msgstr[2] "Purge également tout le contenu local stocké créé par les contacts connus inscrits sur ces serveurs. Garde un enregistrement des contacts et des serveurs. Cette action ne peut être annulée." - -#: src/Module/Admin/Blocklist/Server/Add.php:138 -msgid "Block reason" -msgstr "Raison du blocage" - -#: src/Module/Admin/Blocklist/Server/Add.php:138 -msgid "" -"The reason why you blocked this server domain pattern. This reason will be " -"shown publicly in the server information page." -msgstr "La raison pour laquelle vous avez bloqué ce modèle de domaine de serveur. La raison sera publiquement affichée dans la page d'information du serveur." - -#: src/Module/Admin/Blocklist/Server/Import.php:75 -#: src/Module/Admin/Blocklist/Server/Import.php:84 -msgid "Error importing pattern file" -msgstr "Erreur lors de l'import du fichier de motifs" - -#: src/Module/Admin/Blocklist/Server/Import.php:90 -msgid "Local blocklist replaced with the provided file." -msgstr "La liste de blocage locale a été remplacée par le fichier fourni." - -#: src/Module/Admin/Blocklist/Server/Import.php:94 -#, php-format -msgid "%d pattern was added to the local blocklist." -msgid_plural "%d patterns were added to the local blocklist." -msgstr[0] "%d motif a été ajouté à la liste de blocage locale." -msgstr[1] "%d motifs ont été ajoutés à la liste de blocage locale." -msgstr[2] "%d motifs ont été ajoutés à la liste de blocage locale." - -#: src/Module/Admin/Blocklist/Server/Import.php:96 -msgid "No pattern was added to the local blocklist." -msgstr "Aucun motif n'a été ajouté à la liste de blocage locale." - -#: src/Module/Admin/Blocklist/Server/Import.php:118 -msgid "Import a Server Domain Pattern Blocklist" -msgstr "Importer une liste de blocage de motif de domaine de serveur" - -#: src/Module/Admin/Blocklist/Server/Import.php:119 -msgid "" -"

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

    " -msgstr "

    Ce fichier peut être téléchargé depuis le chemin /friendica de n'importe quel serveur Friendica.

    " - -#: src/Module/Admin/Blocklist/Server/Import.php:120 -#: src/Module/Admin/Blocklist/Server/Index.php:104 -msgid "Upload file" -msgstr "Téléverser un fichier" - -#: src/Module/Admin/Blocklist/Server/Import.php:121 -msgid "Patterns to import" -msgstr "Motifs à importer" - -#: src/Module/Admin/Blocklist/Server/Import.php:122 -msgid "Domain Pattern" -msgstr "Motif de domaine" - -#: src/Module/Admin/Blocklist/Server/Import.php:124 -msgid "Import Mode" -msgstr "Mode d'import" - -#: src/Module/Admin/Blocklist/Server/Import.php:125 -msgid "Import Patterns" -msgstr "Importer les motifs" - -#: src/Module/Admin/Blocklist/Server/Import.php:126 -#, php-format -msgid "%d total pattern" -msgid_plural "%d total patterns" -msgstr[0] "%d motif total" -msgstr[1] "%d motifs totaux" -msgstr[2] "%d motifs totaux" - -#: src/Module/Admin/Blocklist/Server/Import.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:113 -msgid "Server domain pattern blocklist CSV file" -msgstr "Fichier CSV de liste de blocage de motif de domaine de serveur" - -#: src/Module/Admin/Blocklist/Server/Import.php:129 -msgid "Append" -msgstr "Ajouter" - -#: src/Module/Admin/Blocklist/Server/Import.php:129 -msgid "" -"Imports patterns from the file that weren't already existing in the current " -"blocklist." -msgstr "Importe les motifs du fichier qui n'étaient pas déjà présent dans la liste de blocage actuelle." - -#: src/Module/Admin/Blocklist/Server/Import.php:130 -msgid "Replace" -msgstr "Remplacer" - -#: src/Module/Admin/Blocklist/Server/Import.php:130 -msgid "Replaces the current blocklist by the imported patterns." -msgstr "Remplace la liste de blocage locale par les motifs importés." - -#: src/Module/Admin/Blocklist/Server/Index.php:84 -#: src/Module/Admin/Blocklist/Server/Index.php:108 -msgid "Blocked server domain pattern" -msgstr "Filtre de domaine bloqué" - -#: src/Module/Admin/Blocklist/Server/Index.php:85 -#: src/Module/Admin/Blocklist/Server/Index.php:109 src/Module/Friendica.php:82 -msgid "Reason for the block" -msgstr "Raison du blocage" - -#: src/Module/Admin/Blocklist/Server/Index.php:86 -msgid "Delete server domain pattern" -msgstr "Supprimer ce filtre de domaine bloqué" - -#: src/Module/Admin/Blocklist/Server/Index.php:86 -msgid "Check to delete this entry from the blocklist" -msgstr "Cochez la case pour retirer cette entrée de la liste noire" - -#: src/Module/Admin/Blocklist/Server/Index.php:94 -msgid "Server Domain Pattern Blocklist" -msgstr "Liste des filtres de domaines bloqués" - -#: src/Module/Admin/Blocklist/Server/Index.php:95 -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 "Cette page sert à définit une liste de blocage de schémas de domaine de serveurs distants qui ne sont pas autorisé à interagir avec ce serveur. Veuillez fournir la raison pour laquelle vous avez décidé de bloquer chaque schéma de domaine." - -#: src/Module/Admin/Blocklist/Server/Index.php:96 -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 "La liste de blocage est disponible publiquement à la page /friendica pour permettre de déterminer la cause de certains problèmes de communication avec des serveurs distants." - -#: src/Module/Admin/Blocklist/Server/Index.php:102 -msgid "Import server domain pattern blocklist" -msgstr "Importer la liste de blocage de motif de domaine de serveur" - -#: src/Module/Admin/Blocklist/Server/Index.php:103 -msgid "Add new entry to the blocklist" -msgstr "Ajouter une nouvelle entrée à la liste de blocage" - -#: src/Module/Admin/Blocklist/Server/Index.php:106 -msgid "Save changes to the blocklist" -msgstr "Sauvegarder la liste noire" - -#: src/Module/Admin/Blocklist/Server/Index.php:107 -msgid "Current Entries in the Blocklist" -msgstr "Entrées de la liste noire" - -#: src/Module/Admin/Blocklist/Server/Index.php:110 -msgid "Delete entry from the blocklist" -msgstr "Supprimer l'entrée de la liste de blocage" - -#: src/Module/Admin/Blocklist/Server/Index.php:111 -msgid "Delete entry from the blocklist?" -msgstr "Supprimer l'entrée de la liste de blocage ?" - #: src/Module/Admin/DBSync.php:51 msgid "Update has been marked successful" msgstr "Mise-à-jour validée comme 'réussie'" @@ -4824,28 +4053,28 @@ msgstr "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir s msgid "There was no additional update function %s that needed to be called." msgstr "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé" -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:105 msgid "No failed updates." msgstr "Pas de mises-à-jour échouées." -#: src/Module/Admin/DBSync.php:107 +#: src/Module/Admin/DBSync.php:106 msgid "Check database structure" msgstr "Vérifier la structure de la base de données" -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:110 msgid "Failed Updates" msgstr "Mises-à-jour échouées" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:111 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails." -#: src/Module/Admin/DBSync.php:114 +#: src/Module/Admin/DBSync.php:112 msgid "Mark success (if update was manually applied)" msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)" -#: src/Module/Admin/DBSync.php:115 +#: src/Module/Admin/DBSync.php:113 msgid "Attempt to execute this update step automatically" msgstr "Tenter d'éxecuter cette étape automatiquement" @@ -4854,86 +4083,88 @@ msgstr "Tenter d'éxecuter cette étape automatiquement" msgid "Lock feature %s" msgstr "Verouiller la fonctionnalité %s" -#: src/Module/Admin/Features.php:85 +#: src/Module/Admin/Features.php:84 msgid "Manage Additional Features" msgstr "Gérer les fonctionnalités avancées" -#: src/Module/Admin/Federation.php:69 +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 msgid "Other" msgstr "Autre" -#: src/Module/Admin/Federation.php:141 src/Module/Admin/Federation.php:390 +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 msgid "unknown" msgstr "inconnu" -#: src/Module/Admin/Federation.php:174 +#: src/Module/Admin/Federation.php:187 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" msgstr[0] "%2$s système au total" msgstr[1] "%2$s systèmes au total" -msgstr[2] "%2$s système au total" +msgstr[2] "%2$s systèmes au total" -#: src/Module/Admin/Federation.php:175 +#: src/Module/Admin/Federation.php:188 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" msgstr[0] "%2$s utilisateur actif le mois dernier" msgstr[1] "%2$s utilisateurs actifs le mois dernier" -msgstr[2] "%2$s utilisateur actif le mois dernier" +msgstr[2] "%2$s utilisateurs actifs le mois dernier" -#: src/Module/Admin/Federation.php:176 +#: src/Module/Admin/Federation.php:189 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" msgstr[0] "%2$s utilisateur actif ces six derniers mois" msgstr[1] "%2$s utilisateurs actifs ces six derniers mois" -msgstr[2] "%2$s utilisateur actif ces six derniers mois" +msgstr[2] "%2$s utilisateurs actifs ces six derniers mois" -#: src/Module/Admin/Federation.php:177 +#: src/Module/Admin/Federation.php:190 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" msgstr[0] "%2$s utilisateur enregistré" msgstr[1] "%2$s utilisateurs enregistrés" -msgstr[2] "%2$s utilisateur enregistré" +msgstr[2] "%2$s utilisateurs enregistrés" -#: src/Module/Admin/Federation.php:178 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" msgstr[0] "%2$s publication ou commentaire créé localement" msgstr[1] "%2$s publications et commentaires créés localement" -msgstr[2] "%2$s publication ou commentaire créé localement" +msgstr[2] "%2$s publications et commentaires créés localement" -#: src/Module/Admin/Federation.php:181 +#: src/Module/Admin/Federation.php:194 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" msgstr[0] "%2$s publication par utilisateur" msgstr[1] "%2$s publications par utilisateur" -msgstr[2] "%2$s publication par utilisateur" +msgstr[2] "%2$s publications par utilisateur" -#: src/Module/Admin/Federation.php:186 +#: src/Module/Admin/Federation.php:199 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" msgstr[0] "%2$s utilisateur par système" msgstr[1] "%2$s utilisateurs par système" -msgstr[2] "%2$s utilisateur par système" +msgstr[2] "%2$s utilisateurs par système" -#: src/Module/Admin/Federation.php:196 +#: src/Module/Admin/Federation.php:209 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 "Cette page montre quelques statistiques de la partie connue du réseau social fédéré dont votre instance Friendica fait partie. Ces chiffres sont partiels et ne reflètent que la portion du réseau dont votre instance a connaissance." -#: src/Module/Admin/Federation.php:202 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "Statistiques Federation" -#: src/Module/Admin/Federation.php:206 +#: src/Module/Admin/Federation.php:219 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4947,129 +4178,58 @@ msgstr[0] "Actuellement, ce nœud est en relation avec %2$s autre nœud (%3$s ut msgstr[1] "Actuellement, ce nœud est en relation avec %2$s autres nœuds (%3$s utilisateurs actifs le mois dernier, %4$s ces six derniers mois, %5$s utilisateurs enregistrés au total) issus des plateformes suivantes :" msgstr[2] "Actuellement, ce nœud est en relation avec %2$s autre nœud (%3$s utilisateurs actifs le mois dernier, %4$s ces six derniers mois, %5$s utilisateurs enregistrés au total) issus des plateformes suivantes :" -#: src/Module/Admin/Item/Delete.php:53 -msgid "Item marked for deletion." -msgstr "L'élément va être supprimé." - -#: src/Module/Admin/Item/Delete.php:65 src/Module/BaseAdmin.php:109 -msgid "Delete Item" -msgstr "Supprimer un élément" - -#: src/Module/Admin/Item/Delete.php:66 -msgid "Delete this Item" -msgstr "Supprimer l'élément" - -#: src/Module/Admin/Item/Delete.php:67 -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 "Sur cette page, vous pouvez supprimer un élément de votre noeud. Si cet élément est le premier post d'un fil de discussion, le fil de discussion entier sera supprimé." - -#: src/Module/Admin/Item/Delete.php:68 -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 "Vous devez connaître le GUID de l'élément. Vous pouvez le trouver en sélectionnant l'élément puis en lisant l'URL. La dernière partie de l'URL est le GUID. Exemple: http://example.com/display/123456 a pour GUID: 123456." - -#: src/Module/Admin/Item/Delete.php:69 -msgid "GUID" -msgstr "GUID" - -#: src/Module/Admin/Item/Delete.php:69 -msgid "The GUID of the item you want to delete." -msgstr "GUID de l'élément à supprimer." - -#: src/Module/Admin/Item/Source.php:53 src/Module/BaseAdmin.php:119 -msgid "Item Source" -msgstr "Source de la publication" - -#: src/Module/Admin/Item/Source.php:54 -msgid "Item Guid" -msgstr "GUID du contenu" - -#: src/Module/Admin/Item/Source.php:58 -msgid "Item Id" -msgstr "Id de la publication" - -#: src/Module/Admin/Item/Source.php:59 -msgid "Item URI" -msgstr "URI de la publication" - -#: src/Module/Admin/Item/Source.php:61 -msgid "Terms" -msgstr "Termes" - -#: src/Module/Admin/Item/Source.php:62 -msgid "Tag" -msgstr "Tag" - -#: src/Module/Admin/Item/Source.php:63 src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:130 src/Module/Admin/Users/Index.php:142 -msgid "Type" -msgstr "Type" - -#: src/Module/Admin/Item/Source.php:64 -msgid "Term" -msgstr "Terme" - -#: src/Module/Admin/Item/Source.php:65 -msgid "URL" -msgstr "URL" - -#: src/Module/Admin/Item/Source.php:66 -msgid "Mention" -msgstr "Mention" - -#: src/Module/Admin/Item/Source.php:67 -msgid "Implicit Mention" -msgstr "Mention implicite" - #: src/Module/Admin/Logs/Settings.php:47 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "Le fichier journal '%s' n'est pas accessible en écriture. Pas de journalisation possible" -#: src/Module/Admin/Logs/Settings.php:71 +#: src/Module/Admin/Logs/Settings.php:77 msgid "PHP log currently enabled." msgstr "Log PHP actuellement activé." -#: src/Module/Admin/Logs/Settings.php:73 +#: src/Module/Admin/Logs/Settings.php:79 msgid "PHP log currently disabled." msgstr "Log PHP actuellement desactivé." -#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:111 -#: src/Module/BaseAdmin.php:112 +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 msgid "Logs" msgstr "Journaux" -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:88 msgid "Clear" msgstr "Effacer" -#: src/Module/Admin/Logs/Settings.php:86 +#: src/Module/Admin/Logs/Settings.php:91 msgid "Enable Debugging" msgstr "Activer le déboggage" -#: src/Module/Admin/Logs/Settings.php:87 -msgid "Log file" -msgstr "Fichier de journaux" +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "En lecture seule car configuré avec une variable d'environnement" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:92 +msgid "Log file" +msgstr "Fichier journal" + +#: src/Module/Admin/Logs/Settings.php:92 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica." -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:93 msgid "Log level" msgstr "Niveau de journalisaton" -#: src/Module/Admin/Logs/Settings.php:90 +#: src/Module/Admin/Logs/Settings.php:95 msgid "PHP logging" msgstr "Log PHP" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:96 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 " @@ -5092,73 +4252,77 @@ msgid "" "is readable." msgstr "Impossible d'ouvrir le fichier journal %1$s .
    Vérifiez si le fichier %1$s est lisible." -#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:113 +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 msgid "View Logs" msgstr "Voir les logs" -#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Admin/Logs/View.php:87 msgid "Search in logs" msgstr "Rechercher dans les fichiers journaux" -#: src/Module/Admin/Logs/View.php:89 -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Notifications/Notifications.php:140 msgid "Show all" msgstr "Tout afficher" -#: src/Module/Admin/Logs/View.php:90 +#: src/Module/Admin/Logs/View.php:89 msgid "Date" msgstr "Date" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:90 msgid "Level" msgstr "Niveau" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:91 msgid "Context" msgstr "Contexte" -#: src/Module/Admin/Logs/View.php:94 +#: src/Module/Admin/Logs/View.php:93 msgid "ALL" msgstr "TOUS" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:94 msgid "View details" msgstr "Voir les détails" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:95 msgid "Click to view details" msgstr "Cliquer pour voir les détails" -#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Détails de l'évènement" + +#: src/Module/Admin/Logs/View.php:97 msgid "Data" msgstr "Données" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:98 #: src/Module/Debug/ActivityPubConversion.php:57 msgid "Source" msgstr "Source" -#: src/Module/Admin/Logs/View.php:100 +#: src/Module/Admin/Logs/View.php:99 msgid "File" msgstr "Fichier" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:100 msgid "Line" msgstr "Ligne" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:101 msgid "Function" msgstr "Fonction" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:102 msgid "UID" msgstr "UID" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:103 msgid "Process ID" msgstr "ID de processus" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:104 msgid "Close" msgstr "Fermer" @@ -5194,463 +4358,472 @@ msgstr "Commande" msgid "Job Parameters" msgstr "Paramètres de la tâche" +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "Créé" + #: src/Module/Admin/Queue.php:79 msgid "Priority" msgstr "Priorité" -#: src/Module/Admin/Site.php:336 src/Module/Settings/Display.php:138 +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" +msgstr "%s n'est pas une valeur valide pour la taille maximum d'image" + +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:211 msgid "No special theme for mobile devices" msgstr "Pas de thème particulier pour les terminaux mobiles" -#: src/Module/Admin/Site.php:353 src/Module/Settings/Display.php:148 +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:221 #, php-format msgid "%s - (Experimental)" msgstr "%s- (expérimental)" -#: src/Module/Admin/Site.php:365 +#: src/Module/Admin/Site.php:342 msgid "No community page" msgstr "Aucune page de communauté" -#: src/Module/Admin/Site.php:366 +#: src/Module/Admin/Site.php:343 msgid "No community page for visitors" msgstr "Aucune page communautaire pour les visiteurs" -#: src/Module/Admin/Site.php:367 +#: src/Module/Admin/Site.php:344 msgid "Public postings from users of this site" msgstr "Publications publiques des utilisateurs de ce site" -#: src/Module/Admin/Site.php:368 +#: src/Module/Admin/Site.php:345 msgid "Public postings from the federated network" msgstr "Publications publiques du réseau fédéré" -#: src/Module/Admin/Site.php:369 +#: src/Module/Admin/Site.php:346 msgid "Public postings from local users and the federated network" msgstr "Publications publiques des utilisateurs du site et du réseau fédéré" -#: src/Module/Admin/Site.php:375 +#: src/Module/Admin/Site.php:352 msgid "Multi user instance" msgstr "Instance multi-utilisateurs" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:375 msgid "Closed" msgstr "Fermé" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:376 msgid "Requires approval" msgstr "Demande une apptrobation" -#: src/Module/Admin/Site.php:404 +#: src/Module/Admin/Site.php:377 msgid "Open" msgstr "Ouvert" -#: src/Module/Admin/Site.php:408 src/Module/Install.php:222 -msgid "No SSL policy, links will track page SSL state" -msgstr "Pas de politique SSL, le liens conserveront l'état SSL de la page" - -#: src/Module/Admin/Site.php:409 src/Module/Install.php:223 -msgid "Force all links to use SSL" -msgstr "Forcer tous les liens à utiliser SSL" - -#: src/Module/Admin/Site.php:410 src/Module/Install.php:224 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)" - -#: src/Module/Admin/Site.php:414 +#: src/Module/Admin/Site.php:381 msgid "Don't check" msgstr "Ne pas rechercher" -#: src/Module/Admin/Site.php:415 +#: src/Module/Admin/Site.php:382 msgid "check the stable version" msgstr "Rechercher les versions stables" -#: src/Module/Admin/Site.php:416 +#: src/Module/Admin/Site.php:383 msgid "check the development version" msgstr "Rechercher les versions de développement" -#: src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:387 msgid "none" msgstr "aucun" -#: src/Module/Admin/Site.php:421 +#: src/Module/Admin/Site.php:388 msgid "Local contacts" msgstr "Contacts locaux" -#: src/Module/Admin/Site.php:422 +#: src/Module/Admin/Site.php:389 msgid "Interactors" msgstr "Interagisseurs" -#: src/Module/Admin/Site.php:432 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Site" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:400 msgid "General Information" msgstr "Information générale" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:402 msgid "Republish users to directory" msgstr "Republier les utilisateurs sur le répertoire" -#: src/Module/Admin/Site.php:436 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 msgid "Registration" msgstr "Inscription" -#: src/Module/Admin/Site.php:437 +#: src/Module/Admin/Site.php:404 msgid "File upload" msgstr "Téléversement de fichier" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:405 msgid "Policies" msgstr "Politiques" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "Avancé" + +#: src/Module/Admin/Site.php:407 msgid "Auto Discovered Contact Directory" msgstr "Répertoire de Contacts Découverts Automatiquement" -#: src/Module/Admin/Site.php:441 +#: src/Module/Admin/Site.php:408 msgid "Performance" msgstr "Performance" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:409 msgid "Worker" msgstr "Worker" -#: src/Module/Admin/Site.php:443 +#: src/Module/Admin/Site.php:410 msgid "Message Relay" msgstr "Relai de publication" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:411 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "Utilisez la commande \"console relay\" en ligne de commande pour ajouter ou retirer des relais." -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:412 msgid "The system is not subscribed to any relays at the moment." msgstr "Ce serveur n'est pas abonné à un relai pour le moment." -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:413 msgid "The system is currently subscribed to the following relays:" msgstr "Ce serveur est actuellement abonné aux relais suivants:" -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:415 msgid "Relocate Node" msgstr "Déplacer le nœud" -#: src/Module/Admin/Site.php:449 +#: src/Module/Admin/Site.php:416 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "Déplacer votre nœud vous permet de changer le domaine DNS de celui-ci et de conserver tous les utilisateurs existants ainsi que les publications. Ce processus prend un certain temps et ne peut être lancé que depuis la ligne de commande relocate de la façon suivante :" -#: src/Module/Admin/Site.php:450 +#: src/Module/Admin/Site.php:417 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(Friendica directory)# bin/console relocate https://nouveaudomaine.fr" -#: src/Module/Admin/Site.php:454 +#: src/Module/Admin/Site.php:420 msgid "Site name" msgstr "Nom du site" -#: src/Module/Admin/Site.php:455 +#: src/Module/Admin/Site.php:421 msgid "Sender Email" msgstr "Courriel de l'émetteur" -#: src/Module/Admin/Site.php:455 +#: src/Module/Admin/Site.php:421 msgid "" "The email address your server shall use to send notification emails from." msgstr "L'adresse courriel à partir de laquelle votre serveur enverra des courriels." -#: src/Module/Admin/Site.php:456 +#: src/Module/Admin/Site.php:422 msgid "Name of the system actor" msgstr "Nom du compte système" -#: src/Module/Admin/Site.php:456 +#: src/Module/Admin/Site.php:422 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 "Nom du compte interne utilisé pour effectuer les requêtes ActivityPub. Ce nom doit être inutilisé actuellement. Une fois défini, ce nom ne peut pas être changé." -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:423 msgid "Banner/Logo" msgstr "Bannière/Logo" -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:424 msgid "Email Banner/Logo" -msgstr "Bannière/Logo d'email" +msgstr "Bannière/Logo de courriel" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:425 msgid "Shortcut icon" msgstr "Icône de raccourci" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:425 msgid "Link to an icon that will be used for browsers." msgstr "Lien vers une icône qui sera utilisée pour les navigateurs." -#: src/Module/Admin/Site.php:460 +#: src/Module/Admin/Site.php:426 msgid "Touch icon" msgstr "Icône pour systèmes tactiles" -#: src/Module/Admin/Site.php:460 +#: src/Module/Admin/Site.php:426 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Lien vers une icône qui sera utilisée pour les tablettes et les mobiles." -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:427 msgid "Additional Info" msgstr "Informations supplémentaires" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:427 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "Description publique destinée au répertoire global de sites Friendica." -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:428 msgid "System language" msgstr "Langue du système" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:429 msgid "System theme" msgstr "Thème du système" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:429 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "Thème système par défaut - peut être modifié par profil utilisateur - Changer les paramètres de thème par défaut" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:430 msgid "Mobile system theme" msgstr "Thème mobile" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:430 msgid "Theme for mobile devices" msgstr "Thème pour les terminaux mobiles" -#: src/Module/Admin/Site.php:465 src/Module/Install.php:232 -msgid "SSL link policy" -msgstr "Politique SSL pour les liens" - -#: src/Module/Admin/Site.php:465 src/Module/Install.php:234 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Détermine si les liens générés doivent forcer l'utilisation de SSL" - -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:431 msgid "Force SSL" msgstr "SSL obligatoire" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:431 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Redirige toutes les requêtes en clair vers des requêtes SSL. Attention : sur certains systèmes cela peut conduire à des boucles de redirection infinies." -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:432 msgid "Show help entry from navigation menu" msgstr "Montrer l'aide dans le menu de navigation" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:432 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "Montre l'Aide dans le menu de navigation. L'aide reste accessible en naviguant vers /help directement." -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:433 msgid "Single user instance" msgstr "Instance mono-utilisateur" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:433 msgid "Make this instance multi-user or single-user for the named user" msgstr "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur." -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:435 msgid "Maximum image size" msgstr "Taille maximale des images" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:435 +#, php-format msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"." +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "Taille maximale en octets des images téléversées. La valeur par défaut est 0, ce qui signifie aucune limite. Vous pouvez indiquer k, m, ou g après la valeur désirée pour Kio, Mio, Gio respectivement.\n\t\t\t\t\t\t\t\t\t\t\t\t\tLa valeur de upload_max_filesize dans votre PHP.ini doit être définie au minimum à la valeur désirée.\n\t\t\t\t\t\t\t\t\t\t\t\t\tActuellement upload_max_filesize est définie à %s (%s octet)" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:439 msgid "Maximum image length" msgstr "Longueur maximale des images" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:439 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Longueur maximale en pixels du plus long côté des images téléversées. La valeur par défaut est -1 : absence de limite." -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:440 msgid "JPEG image quality" msgstr "Qualité JPEG des images" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:440 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale." -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:442 msgid "Register policy" msgstr "Politique d'inscription" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "Utilisateurs maximum" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "Si défini, la politique d'inscription est automatiquement définie à \"Fermé\" quand le nombre d'utilisateurs est atteint et mis à \"Ouvert\" quand le nombre descend en dessous de la limite. Cela fonctionne uniquement si la politique est défini à \"Ouvert\" ou \"Fermé\", mais pas quand celle-ci est définie à \"Demande une approbation\"." + +#: src/Module/Admin/Site.php:444 msgid "Maximum Daily Registrations" msgstr "Inscriptions maximum par jour" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:444 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 "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet." -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:445 msgid "Register text" msgstr "Texte d'inscription" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:445 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Ce texte est affiché sur la page d'inscription. Les BBCodes sont autorisés." -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:446 msgid "Forbidden Nicknames" msgstr "Identifiants réservés" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:446 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "Liste d'identifiants réservés séparés par des virgules. Ces identifiants ne peuvent pas être utilisés pour s'enregistrer. La liste de base provient de la RFC 2142." -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:447 msgid "Accounts abandoned after x days" msgstr "Les comptes sont abandonnés après x jours" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:447 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction." -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:448 msgid "Allowed friend domains" msgstr "Domaines autorisés" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:448 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:449 msgid "Allowed email domains" msgstr "Domaines courriel autorisés" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:449 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 de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines" +msgstr "Liste de domaines - séparés par des virgules - dont les adresses de courriel sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:450 msgid "No OEmbed rich content" msgstr "Désactiver le texte riche avec OEmbed" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:450 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "Evite le contenu riche avec OEmbed (comme un document PDF incrusté), sauf provenant des domaines autorisés listés ci-après." -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:451 msgid "Trusted third-party domains" msgstr "Domaines tierce-partie de confiance" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:451 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 "Liste séparée par des virgules de domaines dont le contenu est autorisé à être intégré dans les publications comme avec OEmbed. Tous les sous-domaines des domains mentionnés sont autorisés également." -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:452 msgid "Block public" msgstr "Interdire la publication globale" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:452 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques." -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:453 msgid "Force publish" msgstr "Forcer la publication globale" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:453 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site." -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:453 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Activer cette option peut potentiellement enfreindre les lois sur la protection de la vie privée comme le RGPD." -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:454 msgid "Global directory URL" msgstr "URL de l'annuaire global" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:454 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "URL de l'annuaire global. Si ce champ n'est pas défini, l'annuaire global sera complètement indisponible pour l'application." -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:455 msgid "Private posts by default for new users" msgstr "Publications privées par défaut pour les nouveaux utilisateurs" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:455 msgid "" "Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde." +"circle rather than public." +msgstr "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le cercle de contacts par défaut, et non par tout le monde." -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:456 msgid "Don't include post content in email notifications" -msgstr "Ne pas inclure le contenu posté dans l'e-mail de notification" +msgstr "Ne pas inclure le contenu de la publication dans le courriel de notification" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:456 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 "Ne pas inclure le contenu de publication/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité." +msgstr "Ne pas inclure le contenu d'un(e) publication/commentaire/message privé/etc dans le courriel de notification qui est envoyé à partir du site, par mesure de confidentialité." -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:457 msgid "Disallow public access to addons listed in the apps menu." msgstr "Interdire l’accès public pour les greffons listées dans le menu apps." -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:457 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Cocher cette case restreint la liste des greffons dans le menu des applications seulement aux membres." -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:458 msgid "Don't embed private images in posts" msgstr "Ne pas miniaturiser les images privées dans les publications" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:458 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 " @@ -5658,11 +4831,11 @@ msgid "" "while." msgstr "Ne remplacez pas les images privées hébergées localement dans les publications avec une image attaché en copie, car cela signifie que le contact qui reçoit les publications contenant ces photos privées devra s’authentifier pour charger chaque image, ce qui peut prendre du temps." -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:459 msgid "Explicit Content" msgstr "Contenu adulte" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:459 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 " @@ -5671,257 +4844,267 @@ msgid "" "will be shown at the user registration page." msgstr "Activez cette option si votre site est principalement utilisé pour publier du contenu adulte. Cette information est publique et peut être utilisée pour filtrer votre site dans le répertoire de site global. Elle est également affichée sur la page d'inscription." -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:460 msgid "Proxify external content" msgstr "Faire transiter le contenu externe par un proxy" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:460 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "Dirige le contenu externe par la fonctionnalité proxy. Cela est utilisé par exemple pour certains accès OEmbed et dans certains autres cas rares." -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:461 msgid "Cache contact avatars" msgstr "Mettre en cache les avatars des contacts" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:461 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "Stocker localement les images d'avatar des contacts. Cela utilise beaucoup d'espace disque mais améliore les performances." -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:462 msgid "Allow Users to set remote_self" msgstr "Autoriser les utilisateurs à définir remote_self" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:462 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 "Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d'un contact dans le flux d'activités des utilisateurs." -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:463 msgid "Enable multiple registrations" msgstr "Autoriser les comptes multiples" -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:463 msgid "Enable users to register additional accounts for use as pages." msgstr "Permet aux utilisateurs d'enregistrer des comptes supplémentaires pour être utilisés comme pages." -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID" msgstr "Activer OpenID" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID support for registration and logins." msgstr "Permet l'utilisation d'OpenID pour l'enregistrement de compte et l'identification." -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:465 msgid "Enable Fullname check" msgstr "Forcer l'utilisation de noms complets" -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:465 msgid "" "Enable check to only allow users to register with a space between the first " "name and the last name in their full name." msgstr "Oblige les utilisateurs à include au moins un espace dans leur nom d'usage comme entre un prénom et un nom de famille." -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "Envoyer un courriel aux administrateurs lors d'une nouvelle inscription" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "Si activé et que le système est défini à une inscription ouverte, un courriel sera envoyé pour chaque nouvelle inscription aux administrateurs." + +#: src/Module/Admin/Site.php:467 msgid "Community pages for visitors" msgstr "Affichage de la page communauté pour les utilisateurs anonymes" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:467 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Quelles pages communauté sont disponibles pour les utilisateurs anonymes." -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:468 msgid "Posts per user on community page" -msgstr "Nombre de publications par utilisateur sur la page de la communauté (n'est pas valide pour " +msgstr "Nombre de publications par utilisateur sur la page de la communauté" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:468 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "\"Global Community\")" msgstr "Le nombre maximum de publications par auteur par page dans le flux communautaire local." -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:470 msgid "Enable Mail support" msgstr "Activer la prise en charge e-mail" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:470 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "Permet de se connecter à un compte IMAP et de répondre directement aux e-mails via Friendica." -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:471 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "La prise en charge e-mail requiert le module PHP IMAP pour être activée." -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:472 msgid "Enable OStatus support" msgstr "Activer la prise en charge d'OStatus" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:472 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "Permet la communication avec des comptes distants via OStatus (StatusNet, GNU Social, etc...). Toutes les publications OStatus sont publiques." -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:474 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Le support de Diaspora ne peut pas être activé parce que Friendica a été installé dans un sous-répertoire." -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:475 msgid "Enable Diaspora support" msgstr "Activer le support de Diaspora" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:475 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "Permet la communication avec des comptes distants via Diaspora. Ce protocole est principalement utilisé par la plate-forme Diaspora." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:476 msgid "Verify SSL" msgstr "Vérifier SSL" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:476 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 "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé." -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:477 msgid "Proxy user" msgstr "Utilisateur du proxy" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:477 msgid "User name for the proxy server." msgstr "Nom d'utilisateur pour le serveur proxy" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:478 msgid "Proxy URL" msgstr "URL du proxy" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:478 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "Si vous souhaitez utiliser un serveur proxy que Friendica devra employer pour se connecter au réseau, indiquez l'adresse du proxy ici." -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:479 msgid "Network timeout" msgstr "Dépassement du délai d'attente du réseau" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:479 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)." -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:480 msgid "Maximum Load Average" msgstr "Plafond de la charge moyenne" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:480 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "La charge système maximal avant que les processus livraisons et de sondage de profils distants soient reportées. Défaut : %d." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:481 msgid "Minimal Memory" msgstr "Mémoire minimum" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:481 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "Mémoire libre minimale pour les tâches de fond (en Mo). Requiert l'accès à /proc/meminfo. La valeur par défaut est 0 (désactivé)." -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables" msgstr "Optimizer les tables régulièrement" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "Optimize régulièrement certaines tables de base de données très utilisées comme cache, locks, session, ou workerqueue." -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:484 msgid "Discover followers/followings from contacts" msgstr "Découvrir la liste de contacts des contacts" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:484 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "Si activé, ce serveur collecte la liste d'abonnés et d'abonnements des contacts suivants." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:485 msgid "None - deactivated" msgstr "Aucun - désactivé" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:486 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "Contacts locaux : Les contacts des utilisateurs de ce serveur" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:487 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "Interagisseurs : Les contacts des utilisateurs de ce serveur et les contacts qui ont intéragit avec les conversations dont ce serveur a connaissance." -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:489 msgid "Synchronize the contacts with the directory server" msgstr "Synchroniser les contacts avec l'annuaire distant" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:489 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "Active l'ajout de nouveaux contacts depuis l'annuaire distant choisi." -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:491 msgid "Days between requery" msgstr "Nombre de jours entre les requêtes" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:491 msgid "Number of days after which a server is requeried for his contacts." msgstr "Nombre de jours avant qu'une requête de contacts soient envoyée à nouveau à un serveur." -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:492 msgid "Discover contacts from other servers" msgstr "Découvrir des contacts des autres serveurs" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:492 msgid "" "Periodically query other servers for contacts. The system queries Friendica," " Mastodon and Hubzilla servers." msgstr "Récupère périodiquement la liste des contacts connus par les serveurs distants. Concerne les serveurs Friendica, Mastodon et Hubzilla seulement." -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:493 msgid "Search the local directory" msgstr "Chercher dans le répertoire local" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:493 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 "Cherche dans le répertoire local au lieu du répertoire local. Quand une recherche locale est effectuée, la même recherche est effectuée dans le répertoire global en tâche de fond. Cela améliore les résultats de la recherche si elle est réitérée." -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:495 msgid "Publish server information" msgstr "Publier les informations du serveur" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:495 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 " @@ -5929,50 +5112,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "Active la publication de données générales sur ce serveur et son utilisation. Contient entre autres le nom et la version du serveur, le nombre d'utilisateurs avec un profil public, le nombre de publications et la liste des connecteurs activés. Voir the-federation.info pour les détails." -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:497 msgid "Check upstream version" msgstr "Mises à jour" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:497 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 "Permet de vérifier la présence de nouvelles versions de Friendica sur github. Si une nouvelle version est disponible, vous recevrez une notification dans l'interface d'administration." -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:498 msgid "Suppress Tags" msgstr "Masquer les tags" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:498 msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Ne pas afficher la liste des hashtags à la fin d’un message." +msgstr "Ne pas afficher la liste des tags à la fin d’un message." -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:499 msgid "Clean database" msgstr "Nettoyer la base de données" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:499 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Supprime les conversations distantes anciennes, les enregistrements orphelins et le contenu obsolète de certaines tables de débogage." -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:500 msgid "Lifespan of remote items" msgstr "Durée de vie des conversations distantes" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:500 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 "Si le nettoyage de la base de donnée est actif, cette valeur représente le délai en jours après lequel les conversations distantes sont supprimées. Les conversations démarrées par un utilisateur local, étoilées ou archivées sont toujours conservées. 0 pour désactiver." -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:501 msgid "Lifespan of unclaimed items" msgstr "Durée de vie des conversations relayées" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:501 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5980,144 +5163,144 @@ msgid "" "items if set to 0." msgstr "Si le nettoyage de la base de donnée est actif, cette valeur représente le délai en jours après lequel les conversations relayées qui n'ont pas reçu d'interactions locales sont supprimées. La valeur par défaut est 90 jours. 0 pour aligner cette valeur sur la durée de vie des conversations distantes." -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:502 msgid "Lifespan of raw conversation data" msgstr "Durée de vie des méta-données de conversation" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:502 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 "Cette valeur représente le délai en jours après lequel les méta-données de conversations sont supprimées. Ces méta-données sont utilisées par les protocoles ActivityPub et OStatus, et pour le débogage. Il est prudent de conserver ces meta-données pendant au moins 14 jours. La valeur par défaut est 90 jours." -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:503 msgid "Maximum numbers of comments per post" msgstr "Nombre maximum de commentaires par publication" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:503 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100." -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:504 msgid "Maximum numbers of comments per post on the display page" msgstr "Nombre maximum de commentaires par conversation dans leur page dédié (/display)" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:504 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "Valeur par défaut : 1 000." -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:505 msgid "Temp path" msgstr "Chemin des fichiers temporaires" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:505 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Si vous n'avez pas la possibilité d'avoir accès au répertoire temp, entrez un autre répertoire ici." -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:506 msgid "Only search in tags" -msgstr "Rechercher seulement dans les étiquettes" +msgstr "Rechercher seulement dans les tags" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:506 msgid "On large systems the text search can slow down the system extremely." msgstr "La recherche textuelle peut ralentir considérablement les systèmes de grande taille." -#: src/Module/Admin/Site.php:537 -msgid "Generate counts per contact group when calculating network count" -msgstr "Générer des comptes par groupe de contacts lors du calcul du nombre de réseaux." +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "Générer les comptes par cercle de contacts lors du calcul du nombre de réseaux." -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:507 msgid "" -"On systems with users that heavily use contact groups the query can be very " -"expensive." -msgstr "Sur les systèmes avec des utilisateurs utilisant extensivement les groupes de contacts, cette requête peut être très coûteuse." +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "Sur les systèmes avec des utilisateurs utilisant fortement les cercles de contact, cette requête peut être très coûteuse." -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:509 msgid "Maximum number of parallel workers" msgstr "Nombre maximum de processus simultanés" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:509 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "Sur un hébergement partagé, mettez %d. Sur des serveurs plus puissants, %d est optimal. La valeur par défaut est %d." -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:510 msgid "Enable fastlane" msgstr "Activer la file prioritaire" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:510 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "La file prioritaire est un ouvrier additionel démarré quand des tâches de fondde grande importance sont bloquées par des tâches de moindre importance dans la file d'attente." -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:512 msgid "Direct relay transfer" msgstr "Relai direct" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:512 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Soumet les conversations publiques aux serveurs distants sans passer par le serveur relai." -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:513 msgid "Relay scope" msgstr "Filtre du relai" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:513 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 "\"Tous\" signifie que toutes les conversations publiques en provenance du relai sont acceptées. \"Tags\" signifie que seules les conversations comportant les tags suivants sont acceptées." -#: src/Module/Admin/Site.php:543 src/Module/Contact/Profile.php:273 -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Disabled" msgstr "Désactivé" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:513 msgid "all" msgstr "Tous" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:513 msgid "tags" -msgstr "Tags" +msgstr "tags" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:514 msgid "Server tags" msgstr "Tags de filtre du relai" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:514 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Liste séparée par des virgules de tags exclusivement autorisés en provenance des relais." -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:515 msgid "Deny Server tags" msgstr "Tags refusés" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:515 msgid "Comma separated list of tags that are rejected." msgstr "Liste séparée par des virgules de tags refusés en provenance des relais." -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:516 msgid "Allow user tags" msgstr "Inclure les tags des utilisateurs" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:516 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." -msgstr "ajoute les tags des recherches enregistrées des utilisateurs aux tags exclusivement autorisés en provenance des relais." +msgstr "Ajoute les tags des recherches enregistrées des utilisateurs aux tags exclusivement autorisés en provenance des relais." -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:519 msgid "Start Relocation" msgstr "Démarrer le déménagement" @@ -6143,7 +5326,7 @@ msgstr "Moteur de stockage actuel" msgid "Storage Configuration" msgstr "Configuration du stockage" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:94 +#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 msgid "Storage" msgstr "Stockage" @@ -6163,16 +5346,22 @@ msgstr "Enregistrer et recharger" msgid "This backend doesn't have custom settings" msgstr "Ce moteur de stockage n'offre pas de paramètres personnalisés." -#: src/Module/Admin/Storage.php:149 +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "Il n'est pas possible de changer le moteur de stockage car il est configuré avec une variable d'environnement." + +#: src/Module/Admin/Storage.php:150 msgid "Database (legacy)" msgstr "Base de donnée (historique)" -#: src/Module/Admin/Summary.php:54 +#: src/Module/Admin/Summary.php:55 #, php-format msgid "Template engine (%s) error: %s" msgstr "Moteur de template (%s) erreur : %s" -#: src/Module/Admin/Summary.php:58 +#: src/Module/Admin/Summary.php:59 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -6183,7 +5372,7 @@ msgid "" " an automatic conversion.
    " msgstr "
    Votre base de donnée comporte des tables MYISAM. Vous devriez changer pour InnoDB car il est prévu d'utiliser des fonctionnalités spécifiques à InnoDB à l'avenir. Veuillez consulter ce guide de conversion pour mettre à jour votre base de donnée. Vous pouvez également exécuter la commande php bin/console.php dbstructure toinnodb à la racine de votre répertoire Friendica pour une conversion automatique." -#: src/Module/Admin/Summary.php:63 +#: src/Module/Admin/Summary.php:64 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -6194,7 +5383,7 @@ msgid "" " installation for an automatic conversion.
    " msgstr "Votre BDD utilise encore des tables InnoDB au format de fichiers Antelope. Vous devriez le remplacer par le format Barracuda. Friendica utilise des fonctionnalités qui ne sont pas disponibles dans le format Antelope. Voir ici pour un guide qui peut être utile pour la conversion du moteur des tables. Vous pouvez également utiliser la commande php bin/console.php dbstructure toinnodb de votre installation Friendica pour une conversion automatique.
    " -#: src/Module/Admin/Summary.php:73 +#: src/Module/Admin/Summary.php:74 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -6202,39 +5391,46 @@ msgid "" " to %d. See here for more information.
    " msgstr "Votre table_definition_cache est trop faible (%d). Cela peut conduire à l'erreur de base de données \"Prepared statement needs to be re-prepared\". Merci de le définir au minimum à %d. Voir ici pour plus d'informations.
    " -#: src/Module/Admin/Summary.php:83 +#: src/Module/Admin/Summary.php:85 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "Une nouvelle version de Friendica est disponible. Votre version est %1$s, la nouvelle version est %2$s" -#: src/Module/Admin/Summary.php:92 +#: src/Module/Admin/Summary.php:94 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "La mise à jour automatique de la base de donnée a échoué. Veuillez exécuter la commande php bin/console.php dbstructure update depuis votre répertoire Friendica et noter les erreurs potentielles." -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:98 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "La dernière mise à jour a échoué. Merci d'exécuter \"php bin/console.php dbstructure update\" depuis la ligne de commandes et de surveiller les erreurs qui pourraient survenir (Certaines erreurs pourraient être dans le fichier journal)." -#: src/Module/Admin/Summary.php:101 +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "L'entrée system.url est manquante. Il s'agit d'un paramètre bas niveau qui peut conduire à un comportement non attendu. Merci d'ajouter une entrée valide dès que possible dans le fichier de configuration ou via la console de commandes !" + +#: src/Module/Admin/Summary.php:107 msgid "The worker was never executed. Please check your database structure!" msgstr "Le 'worker' n'a pas encore été exécuté. Vérifiez la structure de votre base de données." -#: src/Module/Admin/Summary.php:103 +#: src/Module/Admin/Summary.php:109 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "La dernière exécution du 'worker' s'est déroulée à %s, c'est-à-dire il y a plus d'une heure. Vérifiez les réglages de crontab." -#: src/Module/Admin/Summary.php:108 +#: src/Module/Admin/Summary.php:114 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6243,7 +5439,7 @@ msgid "" "help with the transition." msgstr "La configuration de votre site Friendica est maintenant stockée dans le fichier config/local.config.php, veuillez copier le fichier config/local-sample.config.php et transférer votre configuration depuis le fichier .htconfig.php. Veuillez consulter la page d'aide de configuration (en anglais) pour vous aider dans la transition." -#: src/Module/Admin/Summary.php:112 +#: src/Module/Admin/Summary.php:118 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6252,7 +5448,7 @@ msgid "" "page for help with the transition." msgstr "La configuration de votre site Friendica est maintenant stockée dans le fichier config/local.config.php, veuillez copier le fichier config/local-sample.config.php et transférer votre configuration depuis le fichier config/local.ini.php. Veuillez consulter la page d'aide de configuration (en anglais) pour vous aider dans la transition." -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:124 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -6260,83 +5456,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s n'est pas accessible sur votre site. C'est un problème de configuration sévère qui empêche toute communication avec les serveurs distants. Veuillez consulter la page d'aide à l'installation (en anglais) pour plus d'information." -#: src/Module/Admin/Summary.php:136 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "Le fichier journal '%s' n'est pas utilisable. Pas de journalisation possible (erreur '%s')" - -#: src/Module/Admin/Summary.php:150 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "Le fichier journal de débogage \"%s\" n'existe pas ou n'est pas accessible en écriture. Journalisation désactivée (erreur : \"%s\")" - -#: src/Module/Admin/Summary.php:166 +#: src/Module/Admin/Summary.php:148 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "Le system.basepath de Friendica a été mis à jour de '%s' à '%s'. Merci de supprimer le system.basepath de votre base de données pour éviter des différences." -#: src/Module/Admin/Summary.php:174 +#: src/Module/Admin/Summary.php:156 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "Le system.basepath actuel de Friendica, '%s' est erroné et le fichier de configuration '%s' n'est pas utilisé." -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:164 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "Le system.basepath '%s' actuel de Friendica n'est pas le même que le fichier de configuration '%s'. Merci de corriger votre configuration." -#: src/Module/Admin/Summary.php:189 -msgid "Normal Account" -msgstr "Compte normal" - -#: src/Module/Admin/Summary.php:190 -msgid "Automatic Follower Account" -msgstr "Compte d'abonné automatique" - -#: src/Module/Admin/Summary.php:191 -msgid "Public Forum Account" -msgstr "Forum public" - -#: src/Module/Admin/Summary.php:192 -msgid "Automatic Friend Account" -msgstr "Compte personnel public" - -#: src/Module/Admin/Summary.php:193 -msgid "Blog Account" -msgstr "Compte de blog" - -#: src/Module/Admin/Summary.php:194 -msgid "Private Forum Account" -msgstr "Compte de Forum privé" - -#: src/Module/Admin/Summary.php:214 +#: src/Module/Admin/Summary.php:175 msgid "Message queues" msgstr "Files d'attente des messages" -#: src/Module/Admin/Summary.php:220 +#: src/Module/Admin/Summary.php:181 msgid "Server Settings" msgstr "Paramètres du site" -#: src/Module/Admin/Summary.php:236 -msgid "Registered users" -msgstr "Utilisateurs inscrits" - -#: src/Module/Admin/Summary.php:238 -msgid "Pending registrations" -msgstr "Inscriptions en attente" - -#: src/Module/Admin/Summary.php:239 +#: src/Module/Admin/Summary.php:199 msgid "Version" msgstr "Version" -#: src/Module/Admin/Summary.php:243 +#: src/Module/Admin/Summary.php:203 msgid "Active addons" msgstr "Add-ons actifs" @@ -6360,7 +5513,7 @@ msgid "Screenshot" msgstr "Capture d'écran" #: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:97 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 msgid "Themes" msgstr "Thèmes" @@ -6376,34 +5529,34 @@ msgstr "Thèmes rechargés" msgid "Reload active themes" msgstr "Recharger les thèmes actifs" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:118 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "Aucun thème trouvé. Leur emplacement d'installation est%1$s." -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:119 msgid "[Experimental]" msgstr "[Expérimental]" -#: src/Module/Admin/Themes/Index.php:121 +#: src/Module/Admin/Themes/Index.php:120 msgid "[Unsupported]" msgstr "[Non supporté]" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 msgid "Display Terms of Service" msgstr "Afficher les Conditions d'Utilisation" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 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 "Active la page de Conditions d'Utilisation. Un lien vers cette page est ajouté dans le formulaire d'inscription et la page A Propos." -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 msgid "Display Privacy Statement" msgstr "Afficher la Politique de Confidentialité" -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -6411,225 +5564,34 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "Afficher quelques informations à propos des données nécessaires pour opérer un nœud conforme par exemple au RGPD Européen." -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:81 msgid "Privacy Statement Preview" msgstr "Aperçu de la Politique de Confidentialité" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "The Terms of Service" msgstr "Conditions d'Utilisation" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "Saisissez les Conditions d'Utilisations de votre site. Les BBCodes sont disponibles, les titres commencent à [h2]." -#: src/Module/Admin/Users/Active.php:45 src/Module/Admin/Users/Index.php:45 +#: src/Module/Admin/Tos.php:84 +msgid "The rules" +msgstr "Les règles" + +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." +msgstr "Saisissez les règles de votre système ici. Chaque ligne représente une règle." + +#: src/Module/Api/ApiResponse.php:293 #, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "%s utilisateur bloqué" -msgstr[1] "%s utilisateurs bloqués" -msgstr[2] "%s utilisateurs bloqués" +msgid "API endpoint %s %s is not implemented but might be in the future." +msgstr "Le point de terminaison de l'API %s%s n'est pas implémenté mais pourrait l'être à l'avenir." -#: 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 "Vous ne pouvez pas supprimer votre propre compte" - -#: 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 utilisateur supprimé" -msgstr[1] "%s utilisateurs supprimés" -msgstr[2] "%s utilisateurs supprimés" - -#: 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 "Utilisateur \"%s\" supprimé" - -#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103 -#, php-format -msgid "User \"%s\" blocked" -msgstr "Utilisateur \"%s\" bloqué" - -#: 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 "Date d'inscription" - -#: 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 "Dernière connexion" - -#: 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 "Dernière publication publique" - -#: src/Module/Admin/Users/Active.php:137 -msgid "Active Accounts" -msgstr "Comptes actifs" - -#: 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 "Utilisateur bloqué" - -#: 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 "Administration du Site" - -#: 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 "Compte expiré" - -#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161 -msgid "Create a new user" -msgstr "Créer un nouvel utilisateur" - -#: 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 "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?" - -#: src/Module/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 "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?" - -#: 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 utilisateur débloqué" -msgstr[1] "%s utilisateurs débloqués" -msgstr[2] "%s utilisateurs débloqués" - -#: src/Module/Admin/Users/Blocked.php:96 src/Module/Admin/Users/Index.php:109 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "Utilisateur \"%s\" débloqué" - -#: src/Module/Admin/Users/Blocked.php:138 -msgid "Blocked Users" -msgstr "Utilisateurs bloqués" - -#: src/Module/Admin/Users/Create.php:62 -msgid "New User" -msgstr "Nouvel utilisateur" - -#: src/Module/Admin/Users/Create.php:63 -msgid "Add User" -msgstr "Ajouter l'utilisateur" - -#: src/Module/Admin/Users/Create.php:71 -msgid "Name of the new user." -msgstr "Nom du nouvel utilisateur." - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname" -msgstr "Pseudo" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname of the new user." -msgstr "Pseudo du nouvel utilisateur." - -#: src/Module/Admin/Users/Create.php:73 -msgid "Email address of the new user." -msgstr "Adresse mail du nouvel utilisateur." - -#: src/Module/Admin/Users/Deleted.php:86 -msgid "Users awaiting permanent deletion" -msgstr "Utilisateurs en attente de suppression définitive" - -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:162 -msgid "Permanent deletion" -msgstr "Suppression définitive" - -#: src/Module/Admin/Users/Index.php:150 src/Module/Admin/Users/Index.php:160 -#: src/Module/BaseAdmin.php:95 -msgid "Users" -msgstr "Utilisateurs" - -#: src/Module/Admin/Users/Index.php:152 -msgid "User waiting for permanent deletion" -msgstr "Utilisateur en attente de suppression définitive" - -#: src/Module/Admin/Users/Pending.php:48 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "%s utilisateur approuvé" -msgstr[1] "%s utilisateurs approuvés" -msgstr[2] "%s utilisateurs approuvés" - -#: src/Module/Admin/Users/Pending.php:55 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "%s inscription refusée" -msgstr[1] "%s inscriptions refusées" -msgstr[2] "%s inscriptions refusées" - -#: src/Module/Admin/Users/Pending.php:81 -msgid "Account approved." -msgstr "Inscription validée." - -#: src/Module/Admin/Users/Pending.php:87 -msgid "Registration revoked" -msgstr "Inscription refusée" - -#: src/Module/Admin/Users/Pending.php:102 -msgid "User registrations awaiting review" -msgstr "Inscriptions en attente de confirmation" - -#: src/Module/Admin/Users/Pending.php:104 -msgid "Request date" -msgstr "Date de la demande" - -#: src/Module/Admin/Users/Pending.php:105 -msgid "No registrations." -msgstr "Pas d'inscriptions." - -#: src/Module/Admin/Users/Pending.php:106 -msgid "Note from the user" -msgstr "Message personnel" - -#: src/Module/Admin/Users/Pending.php:108 -msgid "Deny" -msgstr "Refuser" - -#: src/Module/Api/ApiResponse.php:279 -#, php-format -msgid "API endpoint %s %s is not implemented" -msgstr "La méthode d'API %s %s n'est pas implémentée" - -#: src/Module/Api/ApiResponse.php:280 -msgid "" -"The API endpoint is currently not implemented but might be in the future." -msgstr "Cette méthode d'API n'est pas encore implémentée." - -#: src/Module/Api/Mastodon/Apps.php:63 +#: src/Module/Api/Mastodon/Apps.php:73 msgid "Missing parameters" msgstr "Paramètres manquants" @@ -6637,11 +5599,11 @@ msgstr "Paramètres manquants" msgid "Only starting posts can be bookmarked" msgstr "Seuls les publications initiales peuvent être ajoutées aux signets" -#: src/Module/Api/Mastodon/Statuses/Mute.php:50 +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 msgid "Only starting posts can be muted" msgstr "Les notifications de conversation ne peuvent être ignorées qu'à partir de la publication initiale" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 #, php-format msgid "Posts from %s can't be shared" msgstr "Les publications de %s ne peuvent pas être partagées" @@ -6650,11 +5612,11 @@ msgstr "Les publications de %s ne peuvent pas être partagées" msgid "Only starting posts can be unbookmarked" msgstr "Seules les publications initiales peuvent être retirées des signets" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:50 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 msgid "Only starting posts can be unmuted" msgstr "Les notifications de conversation ne peuvent être rétablies qu'à partir de la publication initiale" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 #, php-format msgid "Posts from %s can't be unshared" msgstr "Il n'est pas possible d'annuler le partage des publications de %s " @@ -6663,110 +5625,99 @@ msgstr "Il n'est pas possible d'annuler le partage des publications de %s " msgid "Contact not found" msgstr "Contact non trouvé" -#: src/Module/Apps.php:54 +#: src/Module/Apps.php:62 msgid "No installed applications." msgstr "Pas d'application installée." -#: src/Module/Apps.php:59 +#: src/Module/Apps.php:67 msgid "Applications" msgstr "Applications" -#: src/Module/Attach.php:50 src/Module/Attach.php:62 +#: src/Module/Attach.php:49 src/Module/Attach.php:61 msgid "Item was not found." msgstr "Element introuvable." -#: src/Module/BaseAdmin.php:57 src/Module/BaseAdmin.php:61 +#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 msgid "Please login to continue." msgstr "Merci de vous connecter pour continuer." -#: src/Module/BaseAdmin.php:66 +#: src/Module/BaseAdmin.php:63 msgid "You don't have access to administration pages." msgstr "Vous n'avez pas accès aux pages d'administration" -#: src/Module/BaseAdmin.php:70 +#: src/Module/BaseAdmin.php:67 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." -msgstr "Les comptes sous-traités ne peuvent accéder aux pages d'administration. Veuillez vous identifier avec votre compte principal à la place." +msgstr "Les comptes sous-gérés ne peuvent accéder aux pages d'administration. Veuillez vous identifier avec votre compte principal à la place." -#: src/Module/BaseAdmin.php:89 +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 msgid "Overview" msgstr "Synthèse" -#: src/Module/BaseAdmin.php:92 +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 msgid "Configuration" msgstr "Configuration" -#: src/Module/BaseAdmin.php:98 src/Module/BaseSettings.php:63 +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 msgid "Additional features" msgstr "Fonctions supplémentaires" -#: src/Module/BaseAdmin.php:101 +#: src/Module/BaseAdmin.php:97 msgid "Database" msgstr "Base de données" -#: src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:98 msgid "DB updates" msgstr "Mise-à-jour de la base" -#: src/Module/BaseAdmin.php:103 +#: src/Module/BaseAdmin.php:99 msgid "Inspect Deferred Workers" msgstr "Tâches de fond reportées" -#: src/Module/BaseAdmin.php:104 +#: src/Module/BaseAdmin.php:100 msgid "Inspect worker Queue" msgstr "Tâches de fond en attente" -#: src/Module/BaseAdmin.php:106 -msgid "Tools" -msgstr "Outils" - -#: src/Module/BaseAdmin.php:107 -msgid "Contact Blocklist" -msgstr "Liste de contacts bloqués" - -#: src/Module/BaseAdmin.php:108 -msgid "Server Blocklist" -msgstr "Serveurs bloqués" - -#: src/Module/BaseAdmin.php:115 +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 msgid "Diagnostics" msgstr "Diagnostics" -#: src/Module/BaseAdmin.php:116 +#: src/Module/BaseAdmin.php:107 msgid "PHP Info" msgstr "PHP Info" -#: src/Module/BaseAdmin.php:117 +#: src/Module/BaseAdmin.php:108 msgid "probe address" msgstr "Tester une adresse" -#: src/Module/BaseAdmin.php:118 +#: src/Module/BaseAdmin.php:109 msgid "check webfinger" msgstr "Vérifier le webfinger" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:110 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:121 src/Module/Debug/ActivityPubConversion.php:137 +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 msgid "ActivityPub Conversion" msgstr "Conversion ActivityPub" -#: src/Module/BaseAdmin.php:130 +#: src/Module/BaseAdmin.php:120 msgid "Addon Features" msgstr "Fonctionnalités des addons" -#: src/Module/BaseAdmin.php:131 +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 msgid "User registrations waiting for confirmation" msgstr "Inscriptions en attente de confirmation" -#: src/Module/BaseApi.php:241 src/Module/BaseApi.php:257 -#: src/Module/BaseApi.php:273 +#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 +#: src/Module/BaseApi.php:487 msgid "Too Many Requests" msgstr "Trop de requêtes" -#: src/Module/BaseApi.php:242 +#: src/Module/BaseApi.php:456 #, 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." @@ -6774,7 +5725,7 @@ msgstr[0] "Limite quotidienne d'%d publication atteinte. La publication a été msgstr[1] "Limite quotidienne de %d publications atteinte. La publication a été rejetée." msgstr[2] "Limite quotidienne de %d publications atteinte. La publication a été rejetée." -#: src/Module/BaseApi.php:258 +#: src/Module/BaseApi.php:472 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6783,71 +5734,140 @@ msgstr[0] "Limite hebdomadaire d'%d unique publication atteinte, votre soumissio msgstr[1] "Limite hebdomadaire de %d publications atteinte, votre soumission a été rejetée." msgstr[2] "Limite hebdomadaire de %d publications atteinte, votre soumission a été rejetée." -#: src/Module/BaseApi.php:274 +#: src/Module/BaseApi.php:488 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" "Monthly posting limit of %d posts reached. The post was rejected." -msgstr[0] "La limite du nombre de publications de %d publication a été atteinte. La publication a été refusée." -msgstr[1] "La limite du nombre de publications de %d publications a été atteinte. La publication a été refusée." -msgstr[2] "La limite du nombre de publications de %d publication a été atteinte. La publication a été refusée." +msgstr[0] "La limite mensuelle de %d publication a été atteinte. La publication a été refusée." +msgstr[1] "La limite mensuelle de %d publications a été atteinte. La publication a été refusée." +msgstr[2] "La limite mensuelle de %d publications a été atteinte. La publication a été refusée." -#: src/Module/BaseProfile.php:51 src/Module/Contact.php:463 +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "Vous n'avez pas accès aux pages de modération." + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "Les comptes sous-gérés ne peuvent accéder aux pages de modération. Veuillez vous identifier avec votre compte principal à la place." + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "Signalements" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Utilisateurs" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "Outils" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "Liste de contacts bloqués" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "Serveurs bloqués" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "Supprimer un élément" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "Source de la publication" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 msgid "Profile Details" msgstr "Détails du profil" -#: src/Module/BaseProfile.php:109 +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "Discussions commencées" + +#: src/Module/BaseProfile.php:111 msgid "Only You Can See This" msgstr "Vous seul pouvez voir ça" -#: src/Module/BaseProfile.php:114 src/Module/Profile/Schedule.php:82 +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 msgid "Scheduled Posts" msgstr "Publications programmées" -#: src/Module/BaseProfile.php:117 +#: src/Module/BaseProfile.php:119 msgid "Posts that are scheduled for publishing" msgstr "Publications programmées à l'avance" -#: src/Module/BaseProfile.php:136 src/Module/BaseProfile.php:139 +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 msgid "Tips for New Members" msgstr "Conseils aux nouveaux venus" -#: src/Module/BaseSearch.php:69 +#: src/Module/BaseSearch.php:71 #, php-format msgid "People Search - %s" msgstr "Recherche de personne - %s" -#: src/Module/BaseSearch.php:79 +#: src/Module/BaseSearch.php:75 #, php-format -msgid "Forum Search - %s" -msgstr "Recherche de Forum - %s" +msgid "Group Search - %s" +msgstr "Recherche de groupe - %s" -#: src/Module/BaseSettings.php:41 +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "Aucune correspondance" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "%d résultat a été filtré car votre nœud bloque le domaine sur lequel il est enregistré. Vous pouvez voir la liste des domaines que votre nœud bloque dans la page A propos." +msgstr[1] "%d résultats ont été filtrés car votre nœud bloque le domaine sur lequel ils sont enregistrés. Vous pouvez voir la liste des domaines que votre nœud bloque dans la page A propos." +msgstr[2] "%d résultats ont été filtrés car votre nœud bloque le domaine sur lequel ils sont enregistrés. Vous pouvez voir la liste des domaines que votre nœud bloque dans la page A propos." + +#: src/Module/BaseSettings.php:78 msgid "Account" msgstr "Compte" -#: src/Module/BaseSettings.php:48 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 msgid "Two-factor authentication" msgstr "Authentification à deux facteurs" -#: src/Module/BaseSettings.php:71 +#: src/Module/BaseSettings.php:118 msgid "Display" msgstr "Affichage" -#: src/Module/BaseSettings.php:92 src/Module/Settings/Delegation.php:171 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "Réseaux sociaux" + +#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 msgid "Manage Accounts" msgstr "Gérer vos comptes" -#: src/Module/BaseSettings.php:99 +#: src/Module/BaseSettings.php:153 msgid "Connected apps" msgstr "Applications connectées" -#: src/Module/BaseSettings.php:106 src/Module/Settings/UserExport.php:76 +#: src/Module/BaseSettings.php:160 +msgid "Remote servers" +msgstr "Serveurs distants" + +#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 msgid "Export personal data" msgstr "Exporter" -#: src/Module/BaseSettings.php:113 +#: src/Module/BaseSettings.php:174 msgid "Remove account" msgstr "Supprimer le compte" @@ -6859,7 +5879,223 @@ msgstr "Il manque un paramètre d'URL à cette adresse." msgid "The post was created" msgstr "La publication a été créée" -#: src/Module/Contact.php:88 +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "Requête invalide" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "L'identifiant de l'évènement est manquant." + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "La suppression de l'évènement a échoué." + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "L'évènement ne peut pas se terminer avant d'avoir commencé." + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "Vous devez donner un nom et un horaire de début à l'évènement." + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "La date de début et le titre sont requis." + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "Début de l'évènement :" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/Channels.php:130 src/Module/Settings/Channels.php:146 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Requis" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "Date / heure de fin inconnue ou sans objet" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "Fin de l'évènement :" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "Titre (BBCode non autorisé)" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "Description (BBCode autorisé)" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "Localisation (BBCode non autorisé)" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Partager cet évènement" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "Simple" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "Format de calendrier inconnu" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "Rien à exporter" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "calendrier" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Évènements" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "Vue" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Créer un nouvel évènement" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:291 +msgid "list" +msgstr "liste" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "Impossible de créer le cercle." + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "Cercle introuvable." + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "Le nom du cercle n'a pas été modifié." + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "Cercle inconnu." + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "Contact introuvable." + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "Contact invalide." + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "Le contact a été supprimé." + +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "Impossible d'ajouter le contact au cercle." + +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "Le contact a été ajouté au cercle." + +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "Impossible de retirer le contact du cercle." + +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "Le contact a été retiré du cercle." + +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "Requête invalide." + +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "Enregistrer le cercle" + +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "Filtre" + +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "Créer un cercle de contacts/amis." + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "Impossible de supprimer le cercle." + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "Supprimer le Cercle" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "Modifier le Nom du Cercle" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "Membres" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "Le cercle est vide" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "Retirer ce contact du cercle" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer." + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "Ajouter ce contact au cercle" + +#: src/Module/Contact.php:97 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." @@ -6867,110 +6103,142 @@ msgstr[0] "%d contact mis à jour." msgstr[1] "%d contacts mis à jour." msgstr[2] "%d contacts mis à jour." -#: src/Module/Contact.php:312 +#: src/Module/Contact.php:348 msgid "Show all contacts" msgstr "Montrer tous les contacts" -#: src/Module/Contact.php:320 +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "En attente" + +#: src/Module/Contact.php:356 msgid "Only show pending contacts" msgstr "Ne montrer que les demandes d'abonnement" -#: src/Module/Contact.php:328 +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Bloqués" + +#: src/Module/Contact.php:364 msgid "Only show blocked contacts" msgstr "Ne montrer que les contacts bloqués" -#: src/Module/Contact.php:333 src/Module/Contact.php:380 -#: src/Object/Post.php:339 +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:369 msgid "Ignored" msgstr "Ignorés" -#: src/Module/Contact.php:336 +#: src/Module/Contact.php:372 msgid "Only show ignored contacts" msgstr "Ne montrer que les contacts ignorés" -#: src/Module/Contact.php:341 src/Module/Contact.php:381 +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "Réduits" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "N'afficher que les contacts réduits" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 msgid "Archived" msgstr "Archivés" -#: src/Module/Contact.php:344 +#: src/Module/Contact.php:388 msgid "Only show archived contacts" msgstr "Ne montrer que les contacts archivés" -#: src/Module/Contact.php:349 src/Module/Contact.php:379 +#: src/Module/Contact.php:393 src/Module/Contact.php:438 msgid "Hidden" msgstr "Cachés" -#: src/Module/Contact.php:352 +#: src/Module/Contact.php:396 msgid "Only show hidden contacts" msgstr "Ne montrer que les contacts masqués" -#: src/Module/Contact.php:360 -msgid "Organize your contact groups" -msgstr "Organisez vos groupes de contacts" +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "Organisez vos cercles de contact" -#: src/Module/Contact.php:392 +#: src/Module/Contact.php:459 msgid "Search your contacts" msgstr "Rechercher dans vos contacts" -#: src/Module/Contact.php:393 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 #, php-format msgid "Results for: %s" msgstr "Résultats pour : %s" -#: src/Module/Contact.php:400 +#: src/Module/Contact.php:467 msgid "Update" msgstr "Mises à jour" -#: src/Module/Contact.php:402 src/Module/Contact/Profile.php:349 -#: src/Module/Contact/Profile.php:457 +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Débloquer" + +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 msgid "Unignore" msgstr "Ne plus ignorer" -#: src/Module/Contact.php:404 +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "Ne plus réduire" + +#: src/Module/Contact.php:472 msgid "Batch Actions" msgstr "Actions multiples" -#: src/Module/Contact.php:439 +#: src/Module/Contact.php:515 msgid "Conversations started by this contact" msgstr "Conversations entamées par ce contact" -#: src/Module/Contact.php:444 +#: src/Module/Contact.php:520 msgid "Posts and Comments" msgstr "Publications et commentaires" -#: src/Module/Contact.php:455 +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "Publications et réponses individuelles" + +#: src/Module/Contact.php:531 msgid "Posts containing media objects" msgstr "Publications contenant des objets média" -#: src/Module/Contact.php:470 +#: src/Module/Contact.php:539 msgid "View all known contacts" msgstr "Voir tous les contacts connus" -#: src/Module/Contact.php:480 +#: src/Module/Contact.php:550 msgid "Advanced Contact Settings" msgstr "Réglages avancés du contact" -#: src/Module/Contact.php:514 +#: src/Module/Contact.php:586 msgid "Mutual Friendship" msgstr "Relation réciproque" -#: src/Module/Contact.php:518 +#: src/Module/Contact.php:590 msgid "is a fan of yours" msgstr "Vous suit" -#: src/Module/Contact.php:522 +#: src/Module/Contact.php:594 msgid "you are a fan of" msgstr "Vous le/la suivez" -#: src/Module/Contact.php:540 +#: src/Module/Contact.php:612 msgid "Pending outgoing contact request" msgstr "Demande d'abonnement distant en attente" -#: src/Module/Contact.php:542 +#: src/Module/Contact.php:614 msgid "Pending incoming contact request" msgstr "Demande d'abonnement à votre compte en attente" -#: src/Module/Contact.php:555 src/Module/Contact/Profile.php:334 +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visiter le profil de %s [%s]" @@ -6983,6 +6251,19 @@ msgstr "Impossible d'appliquer les réglages." msgid "Return to contact editor" msgstr "Retour à l'éditeur de contact" +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Nom" + #: src/Module/Contact/Advanced.php:135 msgid "Account Nickname" msgstr "Pseudo du compte" @@ -6999,20 +6280,15 @@ msgstr "Téléverser des photos" msgid "New photo from this URL" msgstr "Nouvelle photo depuis cette URL" -#: src/Module/Contact/Contacts.php:50 src/Module/Conversation/Network.php:187 -#: src/Module/Group.php:103 -msgid "Invalid contact." -msgstr "Contact invalide." - -#: src/Module/Contact/Contacts.php:73 +#: src/Module/Contact/Contacts.php:89 msgid "No known contacts." msgstr "Aucun contact connu." -#: src/Module/Contact/Contacts.php:87 src/Module/Profile/Common.php:98 +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 msgid "No common contacts." msgstr "Aucun contact en commun." -#: src/Module/Contact/Contacts.php:99 src/Module/Profile/Contacts.php:96 +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" @@ -7020,7 +6296,7 @@ msgstr[0] "Abonné (%s)" msgstr[1] "Abonnés (%s)" msgstr[2] "Abonnés (%s)" -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Contacts.php:99 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" @@ -7028,7 +6304,7 @@ msgstr[0] "Abonnement (%s)" msgstr[1] "Abonnements (%s)" msgstr[2] "Abonnements (%s)" -#: src/Module/Contact/Contacts.php:107 src/Module/Profile/Contacts.php:102 +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" @@ -7036,12 +6312,12 @@ msgstr[0] "Contact mutuel (%s)" msgstr[1] "Contacts mutuels (%s)" msgstr[2] "Contacts mutuels (%s)" -#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:104 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "Ces contacts sont mutuellement abonnés avec %s." -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Common.php:86 +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" @@ -7049,14 +6325,14 @@ msgstr[0] "Contact commun (%s)" msgstr[1] "Contacts communs (%s)" msgstr[2] "Contacts communs (%s)" -#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:88 +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "%s et vous-mêmes avez interagi publiquement avec ces contacts (abonnement, commentaires ou \"J'aime\" sur des publications publiques)" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:110 +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" @@ -7064,359 +6340,510 @@ msgstr[0] "Contact (%s)" msgstr[1] "Contacts (%s)" msgstr[2] "Contacts (%s)" -#: src/Module/Contact/Profile.php:127 +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:166 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Accès refusé." + +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Envoyer la requête" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "Vous avez déjà ajouté ce contact." + +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté." + +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté." + +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "Le support d'OStatus est désactivé. Le contact ne peut pas être ajouté." + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Merci de répondre à ce qui suit :" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "Votre adresse d'identité :" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "URL du Profil" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Tags :" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "%s vous connaît" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Ajouter une note personnelle :" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" +msgstr "Publications et réponses" + +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "Le contact n'a pas pu être ajouté." + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "Requête invalide." + +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "Aucun mot-clé ne correspond. Merci d'ajouter des mots-clés à votre profil." + +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "Correpondance de profils" + +#: src/Module/Contact/Profile.php:140 msgid "Failed to update contact record." msgstr "Échec de mise à jour du contact." -#: src/Module/Contact/Profile.php:177 +#: src/Module/Contact/Profile.php:190 msgid "Contact has been unblocked" msgstr "Le contact n'est plus bloqué" -#: src/Module/Contact/Profile.php:181 +#: src/Module/Contact/Profile.php:194 msgid "Contact has been blocked" msgstr "Le contact a été bloqué" -#: src/Module/Contact/Profile.php:193 +#: src/Module/Contact/Profile.php:206 msgid "Contact has been unignored" msgstr "Le contact n'est plus ignoré" -#: src/Module/Contact/Profile.php:197 +#: src/Module/Contact/Profile.php:210 msgid "Contact has been ignored" msgstr "Le contact a été ignoré" -#: src/Module/Contact/Profile.php:229 +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" +msgstr "Le contact n'est plus réduit" + +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "Le contact a été réduit" + +#: src/Module/Contact/Profile.php:254 #, php-format msgid "You are mutual friends with %s" msgstr "Vous êtes ami (et réciproquement) avec %s" -#: src/Module/Contact/Profile.php:230 +#: src/Module/Contact/Profile.php:255 #, php-format msgid "You are sharing with %s" msgstr "Vous partagez avec %s" -#: src/Module/Contact/Profile.php:231 +#: src/Module/Contact/Profile.php:256 #, php-format msgid "%s is sharing with you" msgstr "%s partage avec vous" -#: src/Module/Contact/Profile.php:247 +#: src/Module/Contact/Profile.php:272 msgid "Private communications are not available for this contact." msgstr "Les communications privées ne sont pas disponibles pour ce contact." -#: src/Module/Contact/Profile.php:249 +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "Ce contact est sur un serveur que vous ignorez." + +#: src/Module/Contact/Profile.php:285 msgid "Never" msgstr "Jamais" -#: src/Module/Contact/Profile.php:252 +#: src/Module/Contact/Profile.php:288 msgid "(Update was not successful)" msgstr "(Échec de la mise à jour)" -#: src/Module/Contact/Profile.php:252 +#: src/Module/Contact/Profile.php:288 msgid "(Update was successful)" msgstr "(Mise à jour effectuée avec succès)" -#: src/Module/Contact/Profile.php:254 src/Module/Contact/Profile.php:420 +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 msgid "Suggest friends" msgstr "Suggérer des abonnements" -#: src/Module/Contact/Profile.php:258 +#: src/Module/Contact/Profile.php:294 #, php-format msgid "Network type: %s" msgstr "Type de réseau %s" -#: src/Module/Contact/Profile.php:263 +#: src/Module/Contact/Profile.php:299 msgid "Communications lost with this contact!" msgstr "Communications perdues avec ce contact !" -#: src/Module/Contact/Profile.php:269 +#: src/Module/Contact/Profile.php:305 msgid "Fetch further information for feeds" msgstr "Chercher plus d'informations pour les flux" -#: src/Module/Contact/Profile.php:271 +#: src/Module/Contact/Profile.php:307 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 "Récupérer des informations comme les prévisualisations d'images, les titres et les accroches depuis l'élément du flux de discussion. Vous pouvez activer ceci si le flux ne contient pas beaucoup de texte. Les mots clés sont récupérés de la balise meta de l'élément du flux de discussion et sont postées comme mots dièses." +msgstr "Récupérer des informations comme les prévisualisations d'images, les titres et les accroches depuis l'élément du flux de discussion. Vous pouvez activer ceci si le flux ne contient pas beaucoup de texte. Les mots clés sont récupérés de la balise meta de l'élément du flux de discussion et sont publiés comme tags." -#: src/Module/Contact/Profile.php:274 +#: src/Module/Contact/Profile.php:310 msgid "Fetch information" msgstr "Récupérer informations" -#: src/Module/Contact/Profile.php:275 +#: src/Module/Contact/Profile.php:311 msgid "Fetch keywords" msgstr "Récupérer les mots-clés" -#: src/Module/Contact/Profile.php:276 +#: src/Module/Contact/Profile.php:312 msgid "Fetch information and keywords" msgstr "Récupérer informations" -#: src/Module/Contact/Profile.php:286 src/Module/Contact/Profile.php:292 -#: src/Module/Contact/Profile.php:297 src/Module/Contact/Profile.php:303 +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 msgid "No mirroring" msgstr "Pas de miroir" -#: src/Module/Contact/Profile.php:287 -msgid "Mirror as forwarded posting" -msgstr "Refléter les publications de ce profil comme des partages" - -#: src/Module/Contact/Profile.php:288 src/Module/Contact/Profile.php:298 -#: src/Module/Contact/Profile.php:304 +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 msgid "Mirror as my own posting" msgstr "Refléter les publications de ce profil comme les vôtres" -#: src/Module/Contact/Profile.php:293 src/Module/Contact/Profile.php:299 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 msgid "Native reshare" msgstr "Partage natif" -#: src/Module/Contact/Profile.php:316 +#: src/Module/Contact/Profile.php:353 msgid "Contact Information / Notes" msgstr "Informations de contact / Notes" -#: src/Module/Contact/Profile.php:317 +#: src/Module/Contact/Profile.php:354 msgid "Contact Settings" msgstr "Paramètres du Contact" -#: src/Module/Contact/Profile.php:325 +#: src/Module/Contact/Profile.php:362 msgid "Contact" msgstr "Contact" -#: src/Module/Contact/Profile.php:329 +#: src/Module/Contact/Profile.php:366 msgid "Their personal note" msgstr "Leur note personnelle" -#: src/Module/Contact/Profile.php:331 +#: src/Module/Contact/Profile.php:368 msgid "Edit contact notes" msgstr "Éditer les notes des contacts" -#: src/Module/Contact/Profile.php:335 +#: src/Module/Contact/Profile.php:372 msgid "Block/Unblock contact" msgstr "Bloquer/débloquer ce contact" -#: src/Module/Contact/Profile.php:336 +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 msgid "Ignore contact" msgstr "Ignorer ce contact" -#: src/Module/Contact/Profile.php:337 +#: src/Module/Contact/Profile.php:374 msgid "View conversations" msgstr "Voir les conversations" -#: src/Module/Contact/Profile.php:342 +#: src/Module/Contact/Profile.php:379 msgid "Last update:" msgstr "Dernière mise-à-jour :" -#: src/Module/Contact/Profile.php:344 +#: src/Module/Contact/Profile.php:381 msgid "Update public posts" msgstr "Fréquence de mise à jour:" -#: src/Module/Contact/Profile.php:346 src/Module/Contact/Profile.php:430 +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 msgid "Update now" msgstr "Mettre à jour" -#: src/Module/Contact/Profile.php:353 -msgid "Currently blocked" -msgstr "Actuellement bloqué" - -#: src/Module/Contact/Profile.php:354 -msgid "Currently ignored" -msgstr "Actuellement ignoré" - -#: src/Module/Contact/Profile.php:355 -msgid "Currently archived" -msgstr "Actuellement archivé" - -#: src/Module/Contact/Profile.php:356 +#: src/Module/Contact/Profile.php:385 msgid "Awaiting connection acknowledge" msgstr "En attente de confirmation d'abonnement" -#: src/Module/Contact/Profile.php:357 -#: src/Module/Notifications/Introductions.php:190 +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "Actuellement bloqué" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "Actuellement ignoré" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "Actuellement réduit" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "Actuellement archivé" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "Gérer les serveurs distants" + +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 msgid "Hide this contact from others" msgstr "Cacher ce contact aux autres" -#: src/Module/Contact/Profile.php:357 +#: src/Module/Contact/Profile.php:394 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Les réponses et \"j'aime\" à vos publications publiques peuvent être toujours visibles" -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:395 msgid "Notification for new posts" msgstr "Notification des nouvelles publications" -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:395 msgid "Send a notification of every new post of this contact" msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact" -#: src/Module/Contact/Profile.php:360 +#: src/Module/Contact/Profile.php:397 msgid "Keyword Deny List" msgstr "Liste de mot-clefs interdits" -#: src/Module/Contact/Profile.php:360 +#: src/Module/Contact/Profile.php:397 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" -msgstr "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand « Récupérer informations et mots-clés » est sélectionné." +msgstr "Liste de mots-clés séparés par des virgules qui ne doivent pas être converti en tags lorsque « Récupérer informations et mots-clés » est sélectionné." -#: src/Module/Contact/Profile.php:378 -#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "Actions" msgstr "Actions" -#: src/Module/Contact/Profile.php:386 +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "Statut" + +#: src/Module/Contact/Profile.php:423 msgid "Mirror postings from this contact" msgstr "Copier les publications de ce contact" -#: src/Module/Contact/Profile.php:388 +#: src/Module/Contact/Profile.php:425 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact." -#: src/Module/Contact/Profile.php:440 +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" +msgstr "Paramètres de Chaîne" + +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "Fréquence de ce contact dans les chaînes pertinentes" + +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "Selon le type de chaîne, les publications de ce contact ne seront pas toutes affichées. Par défaut, les publications ont besoins d'avoir un minimum d'interaction (commentaires, aimes) pour être visible dans vos chaînes. D'un autre côté, il peut y avoir des contacts qui inondent la chaîne, vous souhaiteriez donc ne voir que certaines de ces publications. Ou vous souhaiteriez ne pas les voir du tout, sans pour autant bloquer ou masquer complètement le contact." + +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "Fréquence par défaut" + +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "Les publications de ce contact sont affichées dans la chaîne \"Pour vous\" si vous interagissez souvent avec ce contact ou si une publication atteint un certain niveau d'interaction." + +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "Afficher toutes les publications de ce contact" + +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "Toutes les publications de ce contact apparaîtront dans la chaîne \"Pour vous\"." + +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "Afficher quelques publications" + +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "Lorsqu'un contact créé beaucoup de publications en peu de temps, ce paramètre réduit le nombre de publications affichées dans chaque chaîne." + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "Afficher aucune publication" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "Les publications de ce contact n'apparaîtront jamais dans les chaînes" + +#: src/Module/Contact/Profile.php:502 msgid "Refetch contact data" msgstr "Récupérer à nouveau les données de contact" -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:513 msgid "Toggle Blocked status" msgstr "(dés)activer l'état \"bloqué\"" -#: src/Module/Contact/Profile.php:459 +#: src/Module/Contact/Profile.php:521 msgid "Toggle Ignored status" msgstr "(dés)activer l'état \"ignoré\"" -#: src/Module/Contact/Profile.php:466 src/Module/Contact/Revoke.php:105 +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" +msgstr "Commuter le statut réduit" + +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 msgid "Revoke Follow" msgstr "Révoquer le suivi" -#: src/Module/Contact/Profile.php:468 +#: src/Module/Contact/Profile.php:538 msgid "Revoke the follow from this contact" msgstr "Empêcher ce contact de vous suivre " -#: src/Module/Contact/Revoke.php:62 +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "Mauvaise requête." + +#: src/Module/Contact/Revoke.php:63 msgid "Unknown contact." msgstr "Contact inconnu." -#: src/Module/Contact/Revoke.php:72 src/Module/Group.php:112 -msgid "Contact is deleted." -msgstr "Le contact a été supprimé." - -#: src/Module/Contact/Revoke.php:76 +#: src/Module/Contact/Revoke.php:77 msgid "Contact is being deleted." msgstr "Le contact est en cours de suppression." -#: src/Module/Contact/Revoke.php:90 +#: src/Module/Contact/Revoke.php:91 msgid "Follow was successfully revoked." msgstr "Le suivi a été révoqué avec succès." -#: src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Revoke.php:107 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "Voulez-vous vraiment révoquer l'abonnement de ce contact ? Cela ne peut être annulé et il devra se réabonner à vous manuellement." -#: src/Module/Contact/Revoke.php:107 -#: src/Module/Notifications/Introductions.php:142 -#: src/Module/OAuth/Acknowledge.php:53 src/Module/Register.php:130 -#: src/Module/Settings/TwoFactor/Trusted.php:124 +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "Yes" msgstr "Oui" -#: src/Module/Conversation/Community.php:76 +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h." + +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "Vous ne suivez pas ce contact." + +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "Le désabonnement n'est actuellement pas supporté par votre réseau." + +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "Se déconnecter/Ne plus suivre" + +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "Le contact n'est maintenant plus suivi" + +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "Impossible de ne plus suivre ce contact, merci de contacter votre administrateur" + +#: src/Module/Conversation/Channel.php:139 +#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 +#: src/Module/Search/Index.php:194 +msgid "No results." +msgstr "Aucun résultat." + +#: src/Module/Conversation/Channel.php:177 +msgid "Channel not available." +msgstr "Chaîne non disponible." + +#: src/Module/Conversation/Community.php:92 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "Ce fil communautaire liste toutes les conversations publiques reçues par ce serveur. Elles ne reflètent pas nécessairement les opinions personelles des utilisateurs locaux." -#: src/Module/Conversation/Community.php:89 -msgid "Local Community" -msgstr "Communauté locale" - -#: src/Module/Conversation/Community.php:92 -msgid "Posts from local users on this server" -msgstr "Conversations publiques démarrées par des utilisateurs locaux" - -#: src/Module/Conversation/Community.php:100 -msgid "Global Community" -msgstr "Communauté globale" - -#: src/Module/Conversation/Community.php:103 -msgid "Posts from users of the whole federated network" -msgstr "Conversations publiques provenant du réseau fédéré global" - -#: src/Module/Conversation/Community.php:136 -msgid "Own Contacts" -msgstr "Publications de vos propres contacts" - -#: src/Module/Conversation/Community.php:140 -msgid "Include" -msgstr "Inclure" - -#: src/Module/Conversation/Community.php:141 -msgid "Hide" -msgstr "Masquer" - -#: src/Module/Conversation/Community.php:158 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 -msgid "No results." -msgstr "Aucun résultat." - -#: src/Module/Conversation/Community.php:214 +#: src/Module/Conversation/Community.php:180 msgid "Community option not available." msgstr "L'option communauté n'est pas disponible" -#: src/Module/Conversation/Community.php:230 +#: src/Module/Conversation/Community.php:196 msgid "Not available." msgstr "Indisponible." -#: src/Module/Conversation/Network.php:173 -msgid "No such group" -msgstr "Groupe inexistant" +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "Cercle inexistant" -#: src/Module/Conversation/Network.php:177 +#: src/Module/Conversation/Network.php:222 #, php-format -msgid "Group: %s" -msgstr "Group : %s" +msgid "Circle: %s" +msgstr "Cercle : %s" -#: src/Module/Conversation/Network.php:255 -msgid "Latest Activity" -msgstr "Activité récente" +#: src/Module/Conversation/Network.php:250 +#, php-format +msgid "Error %d (%s) while fetching the timeline." +msgstr "Erreur %d (%s) lors de la récupération du flux." -#: src/Module/Conversation/Network.php:258 -msgid "Sort by latest activity" -msgstr "Trier par activité récente" +#: src/Module/Conversation/Network.php:329 +msgid "Network feed not available." +msgstr "Flux du réseau non disponible." -#: src/Module/Conversation/Network.php:263 -msgid "Latest Posts" -msgstr "Dernières publications" +#: src/Module/Conversation/Timeline.php:162 +msgid "Own Contacts" +msgstr "Publications de vos propres contacts" -#: src/Module/Conversation/Network.php:266 -msgid "Sort by post received date" -msgstr "Trier par date de réception" +#: src/Module/Conversation/Timeline.php:166 +msgid "Include" +msgstr "Inclure" -#: src/Module/Conversation/Network.php:271 -msgid "Latest Creation" -msgstr "Dernière création" - -#: src/Module/Conversation/Network.php:274 -msgid "Sort by post creation date" -msgstr "Trier par date de création des publications" - -#: src/Module/Conversation/Network.php:279 -#: src/Module/Settings/Profile/Index.php:227 -msgid "Personal" -msgstr "Personnel" - -#: src/Module/Conversation/Network.php:282 -msgid "Posts that mention or involve you" -msgstr "Publications qui vous concernent" - -#: src/Module/Conversation/Network.php:287 src/Object/Post.php:351 -msgid "Starred" -msgstr "Mis en avant" - -#: src/Module/Conversation/Network.php:290 -msgid "Favourite Posts" -msgstr "Publications favorites" +#: src/Module/Conversation/Timeline.php:167 +msgid "Hide" +msgstr "Masquer" #: src/Module/Credits.php:44 msgid "Credits" @@ -7445,6 +6872,15 @@ msgstr "Données de l'object" msgid "Result Item" msgstr "Résultat" +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Erreur" +msgstr[1] "Erreurs" +msgstr[2] "Erreurs" + #: src/Module/Debug/ActivityPubConversion.php:138 msgid "Source activity" msgstr "Activité source" @@ -7625,12 +7061,12 @@ msgstr "HTML" msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Source Twitter / URL du tweet (requiert une clé d'API)" -#: src/Module/Debug/Feed.php:51 src/Module/Filer/SaveTag.php:46 -#: src/Module/Settings/Profile/Index.php:141 +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:177 msgid "You must be logged in to use this module" msgstr "Vous devez être identifié pour accéder à cette fonctionnalité" -#: src/Module/Debug/Feed.php:76 +#: src/Module/Debug/Feed.php:77 msgid "Source URL" msgstr "URL Source" @@ -7687,205 +7123,109 @@ msgstr "Diagnostic Webfinger" msgid "Lookup address:" msgstr "Tester l'adresse:" -#: src/Module/Delegation.php:111 -#, php-format -msgid "You are now logged in as %s" -msgstr "Vous êtes maintenant connecté en tant que %s" - -#: src/Module/Delegation.php:143 -msgid "Switch between your accounts" -msgstr "Changer de compte" - -#: src/Module/Delegation.php:144 -msgid "Manage your accounts" -msgstr "Gérér vos comptes" - -#: src/Module/Delegation.php:145 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer." - -#: src/Module/Delegation.php:146 -msgid "Select an identity to manage: " -msgstr "Choisir une identité à gérer: " - -#: src/Module/Directory.php:75 +#: src/Module/Directory.php:74 msgid "No entries (some entries may be hidden)." msgstr "Aucune entrée (certaines peuvent être cachées)." -#: src/Module/Directory.php:91 +#: src/Module/Directory.php:90 msgid "Find on this site" msgstr "Trouver sur ce site" -#: src/Module/Directory.php:93 +#: src/Module/Directory.php:92 msgid "Results for:" msgstr "Résultats pour :" -#: src/Module/Directory.php:95 +#: src/Module/Directory.php:94 msgid "Site Directory" msgstr "Annuaire local" -#: src/Module/Filer/RemoveTag.php:101 +#: src/Module/Filer/RemoveTag.php:105 msgid "Item was not deleted" msgstr "L'élément n'a pas été supprimé" -#: src/Module/Filer/RemoveTag.php:111 +#: src/Module/Filer/RemoveTag.php:115 msgid "Item was not removed" msgstr "L'élément n'a pas été retiré" -#: src/Module/Filer/SaveTag.php:72 +#: src/Module/Filer/SaveTag.php:73 msgid "- select -" msgstr "- choisir -" -#: src/Module/FriendSuggest.php:81 +#: src/Module/FriendSuggest.php:82 msgid "Suggested contact not found." msgstr "Contact suggéré non trouvé" -#: src/Module/FriendSuggest.php:99 +#: src/Module/FriendSuggest.php:100 msgid "Friend suggestion sent." msgstr "Suggestion d'abonnement envoyée." -#: src/Module/FriendSuggest.php:136 +#: src/Module/FriendSuggest.php:137 msgid "Suggest Friends" msgstr "Suggérer des amis/contacts" -#: src/Module/FriendSuggest.php:139 +#: src/Module/FriendSuggest.php:140 #, php-format msgid "Suggest a friend for %s" msgstr "Suggérer un ami/contact pour %s" -#: src/Module/Friendica.php:62 +#: src/Module/Friendica.php:82 msgid "Installed addons/apps:" msgstr "Add-ons/Applications installés :" -#: src/Module/Friendica.php:67 +#: src/Module/Friendica.php:87 msgid "No installed addons/apps" msgstr "Aucun add-on/application n'est installé" -#: src/Module/Friendica.php:72 +#: src/Module/Friendica.php:92 #, php-format msgid "Read about the Terms of Service of this node." msgstr "Lire les Conditions d'utilisation de ce nœud." -#: src/Module/Friendica.php:79 +#: src/Module/Friendica.php:99 msgid "On this server the following remote servers are blocked." msgstr "Sur ce serveur, les serveurs suivants sont sur liste noire." -#: src/Module/Friendica.php:84 +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +#: src/Module/Settings/Channels.php:164 +msgid "Reason for the block" +msgstr "Raison du blocage" + +#: src/Module/Friendica.php:104 msgid "Download this list in CSV format" msgstr "Télécharger cette liste au format CSV" -#: src/Module/Friendica.php:98 +#: src/Module/Friendica.php:118 #, 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 "C'est Friendica, version %s qui fonctionne à l'emplacement web %s. La version de la base de données est %s, la version de mise à jour des publications est %s." -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:123 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "Rendez-vous sur Friendi.ca pour en savoir plus sur le projet Friendica." -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:124 msgid "Bug reports and issues: please visit" msgstr "Pour les rapports de bugs : rendez vous sur" -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:124 msgid "the bugtracker at github" msgstr "le bugtracker sur GitHub" -#: src/Module/Friendica.php:105 +#: src/Module/Friendica.php:125 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "Suggestions, souhaits, etc. - merci d'écrire à \"info\" at \"friendi - dot - ca" -#: src/Module/Group.php:58 -msgid "Could not create group." -msgstr "Impossible de créer le groupe." - -#: src/Module/Group.php:69 src/Module/Group.php:215 src/Module/Group.php:239 -msgid "Group not found." -msgstr "Groupe introuvable." - -#: src/Module/Group.php:75 -msgid "Group name was not changed." -msgstr "Le nom du groupe n'a pas été modifié." - -#: src/Module/Group.php:93 -msgid "Unknown group." -msgstr "Groupe inconnu." - -#: src/Module/Group.php:118 -msgid "Unable to add the contact to the group." -msgstr "Erreur lors de l'ajout du contact au groupe." - -#: src/Module/Group.php:121 -msgid "Contact successfully added to group." -msgstr "Le contact a été ajouté au groupe." - -#: src/Module/Group.php:125 -msgid "Unable to remove the contact from the group." -msgstr "Erreur lors du retrait du contact du groupe." - -#: src/Module/Group.php:128 -msgid "Contact successfully removed from group." -msgstr "Le contact a été retiré du groupe." - -#: src/Module/Group.php:132 -msgid "Bad request." -msgstr "Requête invalide." - -#: src/Module/Group.php:171 -msgid "Save Group" -msgstr "Sauvegarder le groupe" - -#: src/Module/Group.php:172 -msgid "Filter" -msgstr "Filtre" - -#: src/Module/Group.php:178 -msgid "Create a group of contacts/friends." -msgstr "Créez un groupe de contacts/amis." - -#: src/Module/Group.php:220 -msgid "Unable to remove group." -msgstr "Impossible d'enlever le groupe." - -#: src/Module/Group.php:271 -msgid "Delete Group" -msgstr "Supprimer le groupe" - -#: src/Module/Group.php:281 -msgid "Edit Group Name" -msgstr "Éditer le nom du groupe" - -#: src/Module/Group.php:291 -msgid "Members" -msgstr "Membres" - -#: src/Module/Group.php:294 -msgid "Group is empty" -msgstr "Groupe vide" - -#: src/Module/Group.php:307 -msgid "Remove contact from group" -msgstr "Retirer ce contact du groupe" - -#: src/Module/Group.php:328 -msgid "Click on a contact to add or remove." -msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer." - -#: src/Module/Group.php:342 -msgid "Add contact to group" -msgstr "Ajouter ce contact au groupe" - -#: src/Module/HCard.php:46 +#: src/Module/HCard.php:45 msgid "No profile" msgstr "Aucun profil" -#: src/Module/HTTPException/MethodNotAllowed.php:32 +#: src/Module/HTTPException/MethodNotAllowed.php:31 msgid "Method Not Allowed." msgstr "Méthode non autorisée." @@ -7893,161 +7233,154 @@ msgstr "Méthode non autorisée." msgid "Help:" msgstr "Aide :" -#: src/Module/Home.php:54 +#: src/Module/Home.php:63 #, php-format msgid "Welcome to %s" msgstr "Bienvenue sur %s" -#: src/Module/Install.php:195 +#: src/Module/Install.php:189 msgid "Friendica Communications Server - Setup" msgstr "Serveur de média social Friendica - Installation" -#: src/Module/Install.php:206 +#: src/Module/Install.php:200 msgid "System check" msgstr "Vérifications système" -#: src/Module/Install.php:208 src/Module/Install.php:265 -#: src/Module/Install.php:348 +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 msgid "Requirement not satisfied" msgstr "Exigence non remplie" -#: src/Module/Install.php:209 +#: src/Module/Install.php:203 msgid "Optional requirement not satisfied" msgstr "Exigence facultative non remplie" -#: src/Module/Install.php:210 +#: src/Module/Install.php:204 msgid "OK" msgstr "OK" -#: src/Module/Install.php:215 +#: src/Module/Install.php:208 +msgid "Next" +msgstr "Suivant" + +#: src/Module/Install.php:209 msgid "Check again" msgstr "Vérifier à nouveau" -#: src/Module/Install.php:230 +#: src/Module/Install.php:222 msgid "Base settings" msgstr "Paramètres de base" -#: src/Module/Install.php:237 -msgid "Host name" -msgstr "Nom de la machine hôte" - -#: src/Module/Install.php:239 -msgid "" -"Overwrite this field in case the determinated hostname isn't right, " -"otherweise leave it as is." -msgstr "Remplacez la valeur de ce champ si le nom de domain par défaut n'est pas correct." - -#: src/Module/Install.php:242 +#: src/Module/Install.php:224 msgid "Base path to installation" msgstr "Chemin de base de l'installation" -#: src/Module/Install.php:244 +#: src/Module/Install.php:226 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 "Si le système ne peut pas détecter le chemin de l'installation, entrez le bon chemin ici. Ce paramètre doit être utilisé uniquement si vous avez des accès restreints à votre système et que vous n'avez qu'un lien symbolique vers le répertoire web." -#: src/Module/Install.php:247 -msgid "Sub path of the URL" -msgstr "Chemin d'accès" +#: src/Module/Install.php:229 +msgid "The Friendica system URL" +msgstr "L'URL du système Friendica" -#: src/Module/Install.php:249 +#: src/Module/Install.php:231 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 "Remplacez cette valeur si le chemin d'accès par défaut n'est pas correct. Laissez ce champ vide si votre serveur doit être accessible depuis le nom de domaine de base." +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." +msgstr "Modifiez ce champ au cas où l'URL du système n'est pas la bonne, sinon laissez le tel quel." -#: src/Module/Install.php:260 +#: src/Module/Install.php:242 msgid "Database connection" msgstr "Connexion à la base de données" -#: src/Module/Install.php:261 +#: src/Module/Install.php:243 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données." -#: src/Module/Install.php:262 +#: src/Module/Install.php:244 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages." -#: src/Module/Install.php:263 +#: src/Module/Install.php:245 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer." -#: src/Module/Install.php:272 +#: src/Module/Install.php:252 msgid "Database Server Name" msgstr "Serveur de base de données" -#: src/Module/Install.php:277 +#: src/Module/Install.php:257 msgid "Database Login Name" msgstr "Nom d'utilisateur de la base" -#: src/Module/Install.php:283 +#: src/Module/Install.php:263 msgid "Database Login Password" msgstr "Mot de passe de la base" -#: src/Module/Install.php:285 +#: src/Module/Install.php:265 msgid "For security reasons the password must not be empty" msgstr "Pour des raisons de sécurité, le mot de passe ne peut pas être vide." -#: src/Module/Install.php:288 +#: src/Module/Install.php:268 msgid "Database Name" msgstr "Nom de la base" -#: src/Module/Install.php:292 src/Module/Install.php:322 +#: src/Module/Install.php:272 src/Module/Install.php:300 msgid "Please select a default timezone for your website" msgstr "Sélectionner un fuseau horaire par défaut pour votre site" -#: src/Module/Install.php:307 +#: src/Module/Install.php:287 msgid "Site settings" msgstr "Réglages du site" -#: src/Module/Install.php:317 +#: src/Module/Install.php:295 msgid "Site administrator email address" -msgstr "Adresse électronique de l'administrateur du site" +msgstr "Adresse de courriel de l'administrateur du site" -#: src/Module/Install.php:319 +#: src/Module/Install.php:297 msgid "" "Your account email address must match this in order to use the web admin " "panel." -msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration." +msgstr "Votre adresse de courriel doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration." -#: src/Module/Install.php:326 +#: src/Module/Install.php:304 msgid "System Language:" msgstr "Langue système :" -#: src/Module/Install.php:328 +#: src/Module/Install.php:306 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." -msgstr "Définit la langue par défaut pour l'interface de votre instance Friendica et les mails envoyés." +msgstr "Définit la langue par défaut pour l'interface de votre instance Friendica et les courriels envoyés." -#: src/Module/Install.php:340 +#: src/Module/Install.php:318 msgid "Your Friendica site database has been installed." msgstr "La base de données de votre site Friendica a bien été installée." -#: src/Module/Install.php:350 +#: src/Module/Install.php:328 msgid "Installation finished" msgstr "Installation terminée" -#: src/Module/Install.php:370 +#: src/Module/Install.php:348 msgid "

    What next

    " msgstr "

    Ensuite

    " -#: src/Module/Install.php:371 +#: src/Module/Install.php:349 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "IMPORTANT: vous devrez ajouter [manuellement] une tâche planifiée pour le 'worker'." -#: src/Module/Install.php:374 +#: src/Module/Install.php:352 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -8137,7 +7470,7 @@ msgstr "Envoyer des invitations" #: src/Module/Invite.php:168 msgid "Enter email addresses, one per line:" -msgstr "Entrez les adresses email, une par ligne :" +msgstr "Entrez les adresses de courriel, une par ligne :" #: src/Module/Invite.php:172 msgid "" @@ -8180,27 +7513,31 @@ msgstr "Composer une nouvelle publication" msgid "Visibility" msgstr "Visibilité" -#: src/Module/Item/Compose.php:201 +#: src/Module/Item/Compose.php:203 msgid "Clear the location" msgstr "Effacer la localisation" -#: src/Module/Item/Compose.php:202 +#: src/Module/Item/Compose.php:204 msgid "Location services are unavailable on your device" msgstr "Les services de localisation ne sont pas disponibles sur votre appareil" -#: src/Module/Item/Compose.php:203 +#: src/Module/Item/Compose.php:205 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "Les services de localisation sont désactivés pour ce site. Veuillez vérifier les permissions de ce site sur votre appareil/navigateur." -#: src/Module/Item/Compose.php:209 +#: src/Module/Item/Compose.php:211 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "Vous pouvez faire en sorte que cette page s'ouvre systématiquement quand vous utilisez le bouton \"Nouvelle publication\" dans les paramètres de personnalisation des thèmes." -#: src/Module/Item/Follow.php:52 +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "Le flux pour cet objet n'est pas disponible." + +#: src/Module/Item/Follow.php:51 msgid "Unable to follow this item." msgstr "Erreur lors de l'abonnement à la conversation." @@ -8219,107 +7556,1102 @@ msgstr "Ce serveur Friendica est actuellement en maintenance, soit automatiqueme msgid "A Decentralized Social Network" msgstr "Un Réseau Social Décentralisé " -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "Vous devez être connecté pour accéder à cette page." + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Fichiers" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:129 +msgid "Upload" +msgstr "Téléverser" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "Ou — auriez-vous essayé de télécharger un fichier vide ?" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "La taille du fichier dépasse la limite de %s" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "Le téléversement a échoué." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:69 +msgid "Unable to process image." +msgstr "Impossible de traiter l'image." + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:96 +msgid "Image upload failed." +msgstr "Le téléversement de l'image a échoué." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "Liste de tous les utilisateurs" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "Actif" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "Liste des comptes actifs" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "Liste des inscriptions en attente" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "Liste des utilisateurs bloqués" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "Supprimé" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "Liste des utilisateurs en attente de suppression" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "Compte normal" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "Compte \"boîte à savon\"" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "Groupe Public" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "Abonnement réciproque" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "Groupe Privé" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "Page personnelle" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "Page Associative" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "Page d'informations" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "Groupe Communautaire" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "Relai" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "Vous ne pouvez pas bloquer un contact local. Merci de bloquer l'utilisateur à la place" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s contact débloqué" +msgstr[1] "%s profiles distants débloqués" +msgstr[2] "%s profiles distants débloqués" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "Liste des profiles distants bloqués" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "Cette page vous permet de refuser toutes les publications d'un profile distant sur votre site." + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "Bloquer le profile distant" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "tout sélectionner" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "Sélectionner tous" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "Aucun profil distant n'est bloqué" + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "Profils distants bloqués" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "Bloquer un nouveau profil distant" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "Photo" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "Raison" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "%s profil distant bloqué" +msgstr[1] "%s profils distans bloqués" +msgstr[2] "%s profils distans bloqués" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "URL du profil distant à bloquer." + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "Purger également le contact" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "Supprime tout le contenu relatif à ce contact du nœud. Conserve une trace du contact. Cette action ne peut être annulée." + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "Raison du blocage" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "Modèle de domaine de serveur ajouté à la liste de blocage." + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "La purge d'%s serveur est planifiée." +msgstr[1] "La purge des %s serveurs est planifiée." +msgstr[2] "La purge des %s serveurs est planifiée." + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "← Retourner à la liste" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "Bloquer un nouveau modèle de domaine de serveur" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "

    La syntaxe du modèle de domaine du serveur est du shell insensible à la casse avec wildcards, comprenant les caractères spéciaux suivants :

    \n
      \n\t
    • *  N'importe quel nombre de caractères
    • \n\t
    • ? N'importe quel caractère unique
    • \n
    " + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "Vérifier le modèle" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "Serveurs connus correspondants" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "Nom du serveur" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "Domaine du serveur" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "Contacts connus" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "%d serveur connu" +msgstr[1] "%d serveurs connus" +msgstr[2] "%d serveurs connus" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "Ajouter le modèle à la liste de blocage" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "Filtre de domaine" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "le modèle de domaine du nouveau serveur à ajouter à la liste de blocage. Ne pas inclure le protocole." + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "Purger le serveur" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "Purge également tout le contenu local stocké créé par les contacts connus inscrit sur ce serveur. Garde un enregistrement des contacts et du serveur. Cette action ne peut être annulée." +msgstr[1] "Purge également tout le contenu local stocké créé par les contacts connus inscrits sur ces serveurs. Garde un enregistrement des contacts et des serveurs. Cette action ne peut être annulée." +msgstr[2] "Purge également tout le contenu local stocké créé par les contacts connus inscrits sur ces serveurs. Garde un enregistrement des contacts et des serveurs. Cette action ne peut être annulée." + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "Raison du blocage" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "La raison pour laquelle vous avez bloqué ce modèle de domaine de serveur. La raison sera publiquement affichée dans la page d'information du serveur." + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "Erreur lors de l'import du fichier de motifs" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "La liste de blocage locale a été remplacée par le fichier fourni." + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "%d motif a été ajouté à la liste de blocage locale." +msgstr[1] "%d motifs ont été ajoutés à la liste de blocage locale." +msgstr[2] "%d motifs ont été ajoutés à la liste de blocage locale." + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "Aucun motif n'a été ajouté à la liste de blocage locale." + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "Importer une liste de blocage de motif de domaine de serveur" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "

    Ce fichier peut être téléchargé depuis le chemin /friendica de n'importe quel serveur Friendica.

    " + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "Téléverser un fichier" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "Motifs à importer" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "Motif de domaine" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "Mode d'import" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "Importer les motifs" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "%d motif total" +msgstr[1] "%d motifs totaux" +msgstr[2] "%d motifs totaux" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "Fichier CSV de liste de blocage de motif de domaine de serveur" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "Ajouter" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "Importe les motifs du fichier qui n'étaient pas déjà présent dans la liste de blocage actuelle." + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "Remplacer" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "Remplace la liste de blocage locale par les motifs importés." + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +#: src/Module/Settings/Channels.php:163 +msgid "Blocked server domain pattern" +msgstr "Filtre de domaine bloqué" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "Supprimer ce filtre de domaine bloqué" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "Cochez la case pour retirer cette entrée de la liste noire" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "Liste des filtres de domaines bloqués" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +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 "Cette page sert à définit une liste de blocage de schémas de domaine de serveurs distants qui ne sont pas autorisé à interagir avec ce serveur. Veuillez fournir la raison pour laquelle vous avez décidé de bloquer chaque schéma de domaine." + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +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 "La liste de blocage est disponible publiquement à la page /friendica pour permettre de déterminer la cause de certains problèmes de communication avec des serveurs distants." + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "Importer la liste de blocage de motif de domaine de serveur" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "Ajouter une nouvelle entrée à la liste de blocage" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "Sauvegarder la liste noire" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "Entrées de la liste noire" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "Supprimer l'entrée de la liste de blocage" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "Supprimer l'entrée de la liste de blocage ?" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "L'élément va être supprimé." + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "Supprimer l'élément" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "Sur cette page, vous pouvez supprimer un élément de votre noeud. Si cet élément est le premier post d'un fil de discussion, le fil de discussion entier sera supprimé." + +#: src/Module/Moderation/Item/Delete.php:65 +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 "Vous devez connaître le GUID de l'élément. Vous pouvez le trouver en sélectionnant l'élément puis en lisant l'URL. La dernière partie de l'URL est le GUID. Exemple: http://example.com/display/123456 a pour GUID: 123456." + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "GUID de l'élément à supprimer." + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "Id de la publication" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "URI de la publication" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "Termes" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "Tag" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "Type" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "Terme" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "URL" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "Mention implicite" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Élément introuvable" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "Aucune source enregistrée" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "Merci de vérifier que la clé de configuration debug.store_source est définie dans config/local.config.php pour que les items futurs puissent avoir des sources." + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "GUID du contenu" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "Contact non trouvé ou son serveur est déjà bloqué sur ce nœud." + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "Connectez-vous pour accéder à cette page." + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "Créer un rapport de modération" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "Sélectionner le contact" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "Veuillez saisir ci-dessous l'adresse ou l'URL de profil du contact dont vous souhaitez faire un signalement." + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "Adresse/URL du contact" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "Sélectionner la catégorie" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "Veuillez sélectionner la catégorie de votre signalement." + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "Spam" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "Ce contact publie beaucoup de publications/réponses répétées/très longs ou fait la promotion de ses produits/sites web sur des conversations non pertinentes." + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "Contenu illégal" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "Ce contact publie du contenu qui est considéré illégal dans la juridiction où est hébergé ce nœud." + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "Sécurité de la communauté" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "Ce contact vous a irrité ou a irrité d'autres personnes en se montrant provocateur ou insensible, intentionnellement ou non. Cela inclut la divulgation d'informations privées (doxxing), la publication de menaces ou d'images offensantes dans des publications ou des réponses." + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "Contenu/Comportement indésirable" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "Ce contact a publié de manière répétée un contenu sans rapport avec le thème du nœud ou critique ouvertement l'administration/la modération du nœud sans discuter directement avec les personnes concernées, par exemple ou en pinaillant de manière répétée sur un sujet sensible." + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "Violation de règles" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "Ce contact à violé une ou plusieurs règles de ce nœud. Vous pourrez sélectionner la ou les règles dans l'étape suivante." + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "Veuillez indiquer si-dessous les raisons de ce signalement. Plus vous donnez de détails, mieux le signalement sera pris en compte." + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "Information supplémentaire" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "Veuillez fournir n'importe quelle information supplémentaire utile pour ce signalement. Vous pourrez joindre des publications de ce contact dans la prochaine étape, mais n'importe quel contenu est accepté." + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "Sélectionner les règles" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "Veuillez sélectionner les règles que vous estimez avoir été violées par ce contact." + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "Sélectionner les publications" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "Veuillez sélectionner, si vous le souhaitez, les publications à joindre à votre signalement." + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "Envoyer le signalement" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "Action supplémentaire" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "Vous pouvez également effectuer une des actions suivantes sur le contact que vous signalez :" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "Ne rien faire" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "Réduire le contact" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "Leurs publications et réponses continueront d'apparaître sur votre page Réseau mais le contenu sera réduit par défaut." + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "Leurs publications n'apparaîtront plus sur votre page Réseau, mais leurs réponses peuvent apparaître dans des fils de discussion. Ils peuvent toujours vous suivre." + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "Bloquer le contact" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "Leurs publications n'apparaîtront plus sur votre page Réseau mais leurs réponses peuvent apparaître dans des fils de discussion, avec le contenu réduit par défaut. Ils ne peuvent pas vous suivre mais peuvent accéder à vos publications publiques par d'autres moyens." + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "Transmettre le signalement" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "Voulez-vous transmettre le signalement au serveur distant ?" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "1. Sélectionner le contact" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "2. Sélectionner la catégorie" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "2a. Sélectionner les règles" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "2b. Ajouter un commentaire" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "3. Sélectionner les publications" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "Liste des signalements" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "Cette page affiche les signalements créés par les utilisateurs locaux ou distants." + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "Aucun signalement sur ce nœud." + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "Catégorie" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "%s signalement au total" +msgstr[1] "%s signalements au total" +msgstr[2] "%s signalements au total" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "URL du contact signalé." + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Compte normal" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "Compte d'abonné automatique" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "Compte de groupe public" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Compte personnel public" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Compte de blog" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "Compte de groupe privé" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Utilisateurs inscrits" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Inscriptions en attente" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "%s utilisateur bloqué" +msgstr[1] "%s utilisateurs bloqués" +msgstr[2] "%s utilisateurs bloqués" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "Vous ne pouvez pas supprimer votre propre compte" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utilisateur supprimé" +msgstr[1] "%s utilisateurs supprimés" +msgstr[2] "%s utilisateurs supprimés" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "Utilisateur \"%s\" supprimé" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "Utilisateur \"%s\" bloqué" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Date d'inscription" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "Dernière connexion" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "Dernière publication publique" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "Comptes actifs" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "Utilisateur bloqué" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "Administration du Site" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "Compte expiré" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "Créer un nouvel utilisateur" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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 "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "%s utilisateur débloqué" +msgstr[1] "%s utilisateurs débloqués" +msgstr[2] "%s utilisateurs débloqués" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "Utilisateur \"%s\" débloqué" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "Utilisateurs bloqués" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "Nouvel utilisateur" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "Ajouter l'utilisateur" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "Nom du nouvel utilisateur." + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "Pseudo" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "Pseudo du nouvel utilisateur." + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "Adresse de courriel du nouvel utilisateur." + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "Utilisateurs en attente de suppression définitive" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "Suppression définitive" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "Utilisateur en attente de suppression définitive" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "%s utilisateur approuvé" +msgstr[1] "%s utilisateurs approuvés" +msgstr[2] "%s utilisateurs approuvés" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "%s inscription refusée" +msgstr[1] "%s inscriptions refusées" +msgstr[2] "%s inscriptions refusées" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Inscription validée." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "Inscription refusée" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "Inscriptions en attente de confirmation" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Date de la demande" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "Pas d'inscriptions." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "Message personnel" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Refuser" + +#: src/Module/Notifications/Introductions.php:99 msgid "Show Ignored Requests" msgstr "Voir les demandes ignorées" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Notifications/Introductions.php:99 msgid "Hide Ignored Requests" msgstr "Cacher les demandes ignorées" -#: src/Module/Notifications/Introductions.php:113 -#: src/Module/Notifications/Introductions.php:176 +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 msgid "Notification type:" msgstr "Type de notification :" -#: src/Module/Notifications/Introductions.php:116 +#: src/Module/Notifications/Introductions.php:118 msgid "Suggested by:" msgstr "Suggéré par :" -#: src/Module/Notifications/Introductions.php:141 +#: src/Module/Notifications/Introductions.php:143 msgid "Claims to be known to you: " msgstr "Prétend que vous le connaissez : " -#: src/Module/Notifications/Introductions.php:142 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:124 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "No" msgstr "Non" -#: src/Module/Notifications/Introductions.php:150 +#: src/Module/Notifications/Introductions.php:152 msgid "Shall your connection be bidirectional or not?" msgstr "Souhaitez vous que votre connexion soit bi-directionnelle ?" -#: src/Module/Notifications/Introductions.php:151 +#: src/Module/Notifications/Introductions.php:153 #, 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 "Accepter %s comme ami autorise %s à s'abonner à vos publications, et vous recevrez également des nouvelles d'eux dans votre fil d'actualités." -#: src/Module/Notifications/Introductions.php:152 +#: src/Module/Notifications/Introductions.php:154 #, 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 "Accepter %s comme ami les autorise à s'abonner à vos publications, mais vous ne recevrez pas de nouvelles d'eux dans votre fil d'actualités." -#: src/Module/Notifications/Introductions.php:154 +#: src/Module/Notifications/Introductions.php:156 msgid "Friend" msgstr "Ami" -#: src/Module/Notifications/Introductions.php:155 +#: src/Module/Notifications/Introductions.php:157 msgid "Subscriber" msgstr "Abonné∙e" -#: src/Module/Notifications/Introductions.php:214 +#: src/Module/Notifications/Introductions.php:216 msgid "No introductions." msgstr "Aucune demande d'introduction." -#: src/Module/Notifications/Introductions.php:215 -#: src/Module/Notifications/Notifications.php:134 +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 #, php-format msgid "No more %s notifications." msgstr "Aucune notification de %s" -#: src/Module/Notifications/Notification.php:134 +#: src/Module/Notifications/Notification.php:135 msgid "You must be logged in to show this page." msgstr "Vous devez être identifié pour afficher cette page." -#: src/Module/Notifications/Notifications.php:65 +#: src/Module/Notifications/Notifications.php:66 msgid "Network Notifications" msgstr "Notifications du réseau" -#: src/Module/Notifications/Notifications.php:71 +#: src/Module/Notifications/Notifications.php:72 msgid "System Notifications" msgstr "Notifications du système" -#: src/Module/Notifications/Notifications.php:77 +#: src/Module/Notifications/Notifications.php:78 msgid "Personal Notifications" msgstr "Notifications personnelles" -#: src/Module/Notifications/Notifications.php:83 +#: src/Module/Notifications/Notifications.php:84 msgid "Home Notifications" msgstr "Notifications de page d'accueil" -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Notifications/Notifications.php:140 msgid "Show unread" msgstr "Afficher non-lus" -#: src/Module/Notifications/Ping.php:226 +#: src/Module/Notifications/Ping.php:246 msgid "{0} requested registration" msgstr "{0} a demandé à s'inscrire" -#: src/Module/Notifications/Ping.php:237 +#: src/Module/Notifications/Ping.php:255 #, php-format msgid "{0} and %d others requested registration" msgstr "{0} et %d autres attendent la confirmation de leur inscription." -#: src/Module/OAuth/Acknowledge.php:50 +#: src/Module/OAuth/Acknowledge.php:51 msgid "Authorize application connection" msgstr "Autoriser l'application à se connecter" -#: src/Module/OAuth/Acknowledge.php:52 +#: src/Module/OAuth/Acknowledge.php:53 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" @@ -8329,7 +8661,7 @@ msgstr "Voulez-vous autoriser cette application à accéder à vos publications msgid "Unsupported or missing response type" msgstr "Type de réponse manquant ou non pris en charge" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:72 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 msgid "Incomplete request data" msgstr "Requête incomplète" @@ -8340,122 +8672,286 @@ msgid "" "close this window: %s" msgstr "Veuillez copier le code d'identification suivant dans votre application et ensuite fermer cette fenêtre: %s" -#: src/Module/OAuth/Token.php:96 +#: src/Module/OAuth/Token.php:83 +msgid "Invalid data or unknown client" +msgstr "Données invalides ou client inconnu" + +#: src/Module/OAuth/Token.php:108 msgid "Unsupported or missing grant type" msgstr "Type de \"grant\" manquant ou non pris en charge" +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "Réinscription aux contacts OStatus" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "Veuillez garder cette fenêtre ouverte jusqu'à la fin." + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "✔ Fait" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "Aucun contact OStatus à se réabonner." + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "Abonnement aux contacts" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "Pas de contact fourni." + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "Impossible de récupérer les informations pour ce contact." + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "Impossible d'obtenir les abonnements de ce contact." + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "Impossible de récupérer les contacts suivants." + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "Impossible de récupérer le profil distant." + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "Réseau incompatible" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Terminé" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "réussite" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "échec" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "ignoré" + #: src/Module/PermissionTooltip.php:49 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "Type inattendu \"%s\", valeurs attendues : %s" -#: src/Module/PermissionTooltip.php:66 +#: src/Module/PermissionTooltip.php:79 msgid "Model not found" msgstr "Objet introuvable" -#: src/Module/PermissionTooltip.php:89 +#: src/Module/PermissionTooltip.php:94 msgid "Unlisted" msgstr "Non listé" -#: src/Module/PermissionTooltip.php:107 +#: src/Module/PermissionTooltip.php:112 msgid "Remote privacy information not available." msgstr "Informations de confidentialité indisponibles." -#: src/Module/PermissionTooltip.php:116 +#: src/Module/PermissionTooltip.php:121 msgid "Visible to:" msgstr "Visible par :" -#: src/Module/PermissionTooltip.php:200 +#: src/Module/PermissionTooltip.php:204 #, php-format msgid "Collection (%s)" msgstr "Collection (%s)" -#: src/Module/PermissionTooltip.php:204 +#: src/Module/PermissionTooltip.php:208 #, php-format msgid "Followers (%s)" msgstr "Abonnés (%s)" -#: src/Module/PermissionTooltip.php:223 +#: src/Module/PermissionTooltip.php:227 #, php-format msgid "%d more" msgstr "%d supplémentaire" -#: src/Module/PermissionTooltip.php:227 +#: src/Module/PermissionTooltip.php:231 #, php-format msgid "To: %s
    " msgstr "À : %s
    " -#: src/Module/PermissionTooltip.php:230 +#: src/Module/PermissionTooltip.php:234 #, php-format msgid "CC: %s
    " msgstr "CC : %s
    " -#: src/Module/PermissionTooltip.php:233 +#: src/Module/PermissionTooltip.php:237 #, php-format msgid "BCC: %s
    " msgstr "CCI : %s
    " -#: src/Module/Photo.php:128 +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "Audience : %s
    " + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "Attribué à : %s
    " + +#: src/Module/Photo.php:130 msgid "The Photo is not available." msgstr "La photo n'est pas disponible." -#: src/Module/Photo.php:141 +#: src/Module/Photo.php:155 #, php-format msgid "The Photo with id %s is not available." msgstr "La photo avec l'identifiant %s n'est pas disponible." -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:192 #, php-format msgid "Invalid external resource with url %s." msgstr "La ressource externe avec l'URL %s est invalide." -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:194 #, php-format msgid "Invalid photo with id %s." msgstr "La photo avec l'identifiant %s est invalide." -#: src/Module/Profile/Contacts.php:120 +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "Publication non trouvée." + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Éditer la publication" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "lien web" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Insérer un lien video" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "lien vidéo" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Insérer un lien audio" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "lien audio" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Enlever le tag de l'élément" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Sélectionner un tag à supprimer :" + +#: src/Module/Post/Tag/Remove.php:108 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Utiliser comme photo de profil" + +#: src/Module/Profile/Contacts.php:159 msgid "No contacts." msgstr "Aucun contact." -#: src/Module/Profile/Profile.php:82 +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "Le flux de %s" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "Les publications originales de %s" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "Les commentaires de %s" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:60 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "L'image dépasse la taille limite de %s" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "La mise en ligne de l'image ne s'est pas terminée, veuillez réessayer" + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "Fichier image manquant" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "Le serveur ne peut pas accepter la mise en ligne d'un nouveau fichier en ce moment, veuillez contacter un administrateur" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "Fichier image vide." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "Voir l'album" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 msgid "Profile not found." msgstr "Profil introuvable." -#: src/Module/Profile/Profile.php:135 +#: src/Module/Profile/Profile.php:158 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "Vous êtes en train de consulter votre profil en tant que %s Annuler" -#: src/Module/Profile/Profile.php:144 src/Module/Settings/Account.php:579 +#: src/Module/Profile/Profile.php:167 msgid "Full Name:" msgstr "Nom complet :" -#: src/Module/Profile/Profile.php:149 +#: src/Module/Profile/Profile.php:172 msgid "Member since:" msgstr "Membre depuis :" -#: src/Module/Profile/Profile.php:155 +#: src/Module/Profile/Profile.php:178 msgid "j F, Y" msgstr "j F, Y" -#: src/Module/Profile/Profile.php:156 +#: src/Module/Profile/Profile.php:179 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:166 +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 msgid "Birthday:" msgstr "Anniversaire :" -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 msgid "Age: " msgstr "Age : " -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 #, php-format msgid "%d year old" msgid_plural "%d years old" @@ -8463,53 +8959,132 @@ msgstr[0] "%d an" msgstr[1] "%d ans" msgstr[2] "%d ans" -#: src/Module/Profile/Profile.php:234 -msgid "Forums:" -msgstr "Forums :" +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "Description :" -#: src/Module/Profile/Profile.php:246 +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "Groupes :" + +#: src/Module/Profile/Profile.php:273 msgid "View profile as:" msgstr "Consulter le profil en tant que :" -#: src/Module/Profile/Profile.php:263 +#: src/Module/Profile/Profile.php:290 msgid "View as" msgstr "Voir en tant que" -#: src/Module/Profile/Profile.php:326 src/Module/Profile/Profile.php:329 -#: src/Module/Profile/Status.php:66 src/Module/Profile/Status.php:69 -#: src/Protocol/Feed.php:1026 src/Protocol/OStatus.php:1046 -#, php-format -msgid "%s's timeline" -msgstr "Le flux de %s" +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "Profil indisponible." -#: src/Module/Profile/Profile.php:327 src/Module/Profile/Status.php:67 -#: src/Protocol/Feed.php:1030 src/Protocol/OStatus.php:1051 -#, php-format -msgid "%s's posts" -msgstr "Les publications originales de %s" +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "Localisateur invalide" -#: src/Module/Profile/Profile.php:328 src/Module/Profile/Status.php:68 -#: src/Protocol/Feed.php:1033 src/Protocol/OStatus.php:1055 -#, php-format -msgid "%s's comments" -msgstr "Les commentaires de %s" +#: src/Module/Profile/RemoteFollow.php:95 +msgid "The provided profile link doesn't seem to be valid" +msgstr "Le lien de profil fourni ne semble pas valide." -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/RemoteFollow.php:100 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "L'abonnement à distance ne peut pas être fait pour votre réseau. Merci de vous abonner directement sur votre système." + +#: src/Module/Profile/RemoteFollow.php:128 +msgid "Friend/Connection Request" +msgstr "Demande de mise en contact" + +#: src/Module/Profile/RemoteFollow.php:129 +#, 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 "Saisissez votre adresse WebFinger (utilisateur@domaine.tld) ou l'adresse URL de votre profil ici. Si ce n'est pas supporté par votre site, vous devrez vous abonner à %s ou %s directement depuis votre système." + +#: src/Module/Profile/RemoteFollow.php:130 +#, 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 "Si vous n'avez pas de compte sur un site compatible, cliquez ici pour trouver un site Friendica public et vous inscrire dès aujourd'hui." + +#: src/Module/Profile/RemoteFollow.php:131 +msgid "Your Webfinger address or profile URL:" +msgstr "Votre adresse Webfinger ou URL de profil :" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "Profil restreint" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "Ce profil a été restreint ce qui empêche l'accès des visiteurs anonymes à son contenu public." + +#: src/Module/Profile/Schedule.php:83 msgid "Scheduled" msgstr "Programmé" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:84 msgid "Content" msgstr "Contenu" -#: src/Module/Profile/Schedule.php:86 +#: src/Module/Profile/Schedule.php:85 msgid "Remove post" msgstr "Supprimer la publication" +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "Corps du message vide." + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Impossible de vérifier votre localisation." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "Destinataire non trouvé." + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message." + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus." + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "À" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "Sujet" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "Votre message" + #: src/Module/Register.php:84 msgid "Only parent users can create additional accounts." msgstr "Seuls les comptes parent peuvent créer des comptes supplémentaires." +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain." + #: src/Module/Register.php:116 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " @@ -8560,8 +9135,8 @@ msgstr "Votre courriel : (Des informations de connexion vont être envoyées à msgid "Please repeat your e-mail address:" msgstr "Veuillez répéter votre adresse e-mail :" -#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:97 -#: src/Module/Settings/Account.php:570 +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 msgid "New Password:" msgstr "Nouveau mot de passe :" @@ -8569,8 +9144,8 @@ msgstr "Nouveau mot de passe :" msgid "Leave empty for an auto generated password." msgstr "Laisser ce champ libre pour obtenir un mot de passe généré automatiquement." -#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:98 -#: src/Module/Settings/Account.php:571 +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 msgid "Confirm:" msgstr "Confirmer :" @@ -8585,6 +9160,10 @@ msgstr "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de msgid "Choose a nickname: " msgstr "Choisir un pseudo : " +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Importer" + #: src/Module/Register.php:174 msgid "Import your profile to this friendica instance" msgstr "Importer votre profile dans cette instance de friendica" @@ -8593,11 +9172,11 @@ msgstr "Importer votre profile dans cette instance de friendica" msgid "Note: This node explicitly contains adult content" msgstr "Note: Ce nœud contient explicitement du contenu destiné aux adultes" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:155 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 msgid "Parent Password:" msgstr "Mot de passe du compte parent :" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:155 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "Veuillez saisir le mot de passe du compte parent pour authentifier votre requête." @@ -8625,73 +9204,37 @@ msgstr "Le compte additionnel a bien été créé." #: src/Module/Register.php:335 msgid "" "Registration successful. Please check your email for further instructions." -msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions." +msgstr "Inscription réussie. Vérifiez vos courriels pour la suite des instructions." -#: src/Module/Register.php:339 +#: src/Module/Register.php:342 #, php-format msgid "" "Failed to send email message. Here your accout details:
    login: %s
    " "password: %s

    You can change your password after login." msgstr "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:
    identifiant : %s
    mot de passe : %s

    Vous pourrez changer votre mot de passe une fois connecté." -#: src/Module/Register.php:345 +#: src/Module/Register.php:348 msgid "Registration successful." msgstr "Inscription réussie." -#: src/Module/Register.php:350 src/Module/Register.php:357 +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 msgid "Your registration can not be processed." msgstr "Votre inscription ne peut être traitée." -#: src/Module/Register.php:356 +#: src/Module/Register.php:363 msgid "You have to leave a request note for the admin." msgstr "Vous devez rédiger une demande auprès de l'administrateur." -#: src/Module/Register.php:402 +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "Une erreur interne est survenue." + +#: src/Module/Register.php:395 msgid "Your registration is pending approval by the site owner." msgstr "Votre inscription attend une validation du propriétaire du site." -#: src/Module/RemoteFollow.php:71 -msgid "Profile unavailable." -msgstr "Profil indisponible." - -#: src/Module/RemoteFollow.php:77 -msgid "Invalid locator" -msgstr "Localisateur invalide" - -#: src/Module/RemoteFollow.php:84 -msgid "The provided profile link doesn't seem to be valid" -msgstr "Le lien de profil fourni ne semble pas valide." - -#: src/Module/RemoteFollow.php:89 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "L'abonnement à distance ne peut pas être fait pour votre réseau. Merci de vous abonner directement sur votre système." - -#: src/Module/RemoteFollow.php:121 -msgid "Friend/Connection Request" -msgstr "Demande de mise en contact" - -#: src/Module/RemoteFollow.php:122 -#, 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 "Saisissez votre adresse WebFinger (utilisateur@domaine.tld) ou l'adresse URL de votre profil ici. Si ce n'est pas supporté par votre site, vous devrez vous abonner à %s ou %s directement depuis votre système." - -#: src/Module/RemoteFollow.php:123 -#, 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 "Si vous n'avez pas de compte sur un site compatible, cliquez ici pour trouver un site Friendica public et vous inscrire dès aujourd'hui." - -#: src/Module/RemoteFollow.php:124 -msgid "Your Webfinger address or profile URL:" -msgstr "Votre adresse Webfinger ou URL de profil :" - -#: src/Module/Search/Acl.php:55 +#: src/Module/Search/Acl.php:73 msgid "You must be logged in to use this module." msgstr "Ce module est réservé aux utilisateurs identifiés." @@ -8706,17 +9249,17 @@ msgstr "Une seule recherche par minute pour les utilisateurs qui ne sont pas con #: src/Module/Search/Index.php:205 #, php-format msgid "Items tagged with: %s" -msgstr "Éléments taggés %s" +msgstr "Éléments marqué %s" -#: src/Module/Search/Saved.php:58 +#: src/Module/Search/Saved.php:59 msgid "Search term was not saved." msgstr "Le terme de recherche n'a pas été sauvegardé." -#: src/Module/Search/Saved.php:61 +#: src/Module/Search/Saved.php:62 msgid "Search term already saved." msgstr "Le terme de recherche a déjà été sauvegardé." -#: src/Module/Search/Saved.php:67 +#: src/Module/Search/Saved.php:68 msgid "Search term was not removed." msgstr "Le terme de recherche n'a pas été supprimé." @@ -8724,49 +9267,49 @@ msgstr "Le terme de recherche n'a pas été supprimé." msgid "Create a New Account" msgstr "Créer un nouveau compte" -#: src/Module/Security/Login.php:143 +#: src/Module/Security/Login.php:142 msgid "Your OpenID: " msgstr "Votre OpenID :" -#: src/Module/Security/Login.php:146 +#: src/Module/Security/Login.php:145 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "Merci de saisir votre nom d'utilisateur et votre mot de passer pour ajouter l'OpenID à votre compte existant." -#: src/Module/Security/Login.php:148 +#: src/Module/Security/Login.php:147 msgid "Or login using OpenID: " msgstr "Ou connectez-vous via OpenID : " -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:161 msgid "Password: " msgstr "Mot de passe : " -#: src/Module/Security/Login.php:163 +#: src/Module/Security/Login.php:162 msgid "Remember me" msgstr "Se souvenir de moi" -#: src/Module/Security/Login.php:172 +#: src/Module/Security/Login.php:171 msgid "Forgot your password?" msgstr "Mot de passe oublié?" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:174 msgid "Website Terms of Service" msgstr "Conditions d'utilisation du site internet" -#: src/Module/Security/Login.php:176 +#: src/Module/Security/Login.php:175 msgid "terms of service" msgstr "conditions d'utilisation" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:177 msgid "Website Privacy Policy" msgstr "Politique de confidentialité du site internet" -#: src/Module/Security/Login.php:179 +#: src/Module/Security/Login.php:178 msgid "privacy policy" msgstr "politique de confidentialité" -#: src/Module/Security/Logout.php:83 +#: src/Module/Security/Logout.php:84 #: src/Module/Security/TwoFactor/SignOut.php:78 #: src/Module/Security/TwoFactor/SignOut.php:86 #: src/Module/Security/TwoFactor/SignOut.php:108 @@ -8790,88 +9333,88 @@ msgid "" "account to add the OpenID to it." msgstr "Compte non trouvé. Veuillez créer un nouveau compte ou vous connecter à votre compte existant pour y ajouter l'OpenID." -#: src/Module/Security/PasswordTooLong.php:53 +#: src/Module/Security/PasswordTooLong.php:57 #: src/Module/Settings/Account.php:67 msgid "Passwords do not match." msgstr "Les mots de passe ne correspondent pas." -#: src/Module/Security/PasswordTooLong.php:60 +#: src/Module/Security/PasswordTooLong.php:64 msgid "Password does not need changing." msgstr "Le mot de passe n'a pas besoin d'être changé." -#: src/Module/Security/PasswordTooLong.php:73 +#: src/Module/Security/PasswordTooLong.php:77 #: src/Module/Settings/Account.php:81 msgid "Password unchanged." msgstr "Mot de passe non changé." -#: src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Security/PasswordTooLong.php:91 msgid "Password Too Long" msgstr "Mot de passe trop long" -#: src/Module/Security/PasswordTooLong.php:88 +#: src/Module/Security/PasswordTooLong.php:92 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "Depuis la version 2022.09, nous nous sommes rendu compte que tout mot de passe plus long que 72 caractères est tronqué lors du hashage. Pour éviter toute confusion à propos de ce comportement, merci de mettre à jour votre mot de passe pour qu'il soit d'une taille inférieure ou égale à 72 caractères." -#: src/Module/Security/PasswordTooLong.php:89 +#: src/Module/Security/PasswordTooLong.php:93 msgid "Update Password" msgstr "Mettre à jour le mot de passe" -#: src/Module/Security/PasswordTooLong.php:96 -#: src/Module/Settings/Account.php:572 +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 msgid "Current Password:" msgstr "Mot de passe actuel :" -#: src/Module/Security/PasswordTooLong.php:96 -#: src/Module/Settings/Account.php:572 +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 msgid "Your current password to confirm the changes" msgstr "Votre mot de passe actuel pour confirmer les modifications" -#: src/Module/Security/PasswordTooLong.php:97 -#: src/Module/Settings/Account.php:555 +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "Les caractères permis sont a-z, A-Z, 0-9 et les caractères de ponctuation sauf les espaces et les deux-points (:)." +"spaces and accentuated letters." +msgstr "Les caractères autorisés sont a-z, A-Z, 0-9 et les caractères spéciaux à l'exception des espaces et des lettres accentuées." -#: src/Module/Security/PasswordTooLong.php:97 -#: src/Module/Settings/Account.php:556 +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 msgid "Password length is limited to 72 characters." msgstr "La taille du mot de passe est limitée à 72 caractères." -#: src/Module/Security/TwoFactor/Recovery.php:73 +#: src/Module/Security/TwoFactor/Recovery.php:74 #, php-format msgid "Remaining recovery codes: %d" msgstr "Codes de récupération restants : %d" -#: src/Module/Security/TwoFactor/Recovery.php:79 +#: src/Module/Security/TwoFactor/Recovery.php:80 #: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:95 msgid "Invalid code, please retry." msgstr "Code invalide, veuillez réessayer." -#: src/Module/Security/TwoFactor/Recovery.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:99 msgid "Two-factor recovery" msgstr "Récupération d'identification à deux facteurs" -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:100 msgid "" "

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

    " msgstr "

    Vous pouvez saisir l'un de vos codes de récupération à usage unique si vous avez perdu l'accès à votre périphérique mobile.

    " -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:101 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Vous n'avez pas votre téléphone ? Saisissez un code de récupération à deux facteurs" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:102 msgid "Please enter a recovery code" msgstr "Merci de saisir un code de récupération" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:103 msgid "Submit recovery code and complete login" msgstr "Soumettre le code de récupération et compléter l'identification" @@ -8893,29 +9436,29 @@ msgstr "Se déconnecter" msgid "Trust and sign out" msgstr "Faire confiance et se déconnecter" -#: src/Module/Security/TwoFactor/Trust.php:95 +#: src/Module/Security/TwoFactor/Trust.php:96 msgid "Couldn't save browser to Cookie." msgstr "Impossible d'enregistrer ce navigateur dans le cookie." -#: src/Module/Security/TwoFactor/Trust.php:140 +#: src/Module/Security/TwoFactor/Trust.php:141 msgid "Trust this browser?" msgstr "Faire confiance à ce navigateur ?" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:142 msgid "" "

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

    " msgstr "

    Si vous choisissez de faire confiance à ce navigateur, votre code de vérification ne vous sera pas demandé la prochaine fois que vous vous connecterez.

    " -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:143 msgid "Not now" msgstr "Pas maintenant" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:144 msgid "Don't trust" msgstr "Ne pas faire confiance" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:145 msgid "Trust" msgstr "Faire confiance" @@ -8933,7 +9476,7 @@ msgid "" msgstr "Si vous n'avez pas accès à votre code d'identification vous pouvez utiliser un code de récupération à deux facteurs." #: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:154 +#: src/Module/Settings/TwoFactor/Verify.php:155 msgid "Please enter a code from your authentication app" msgstr "Veuillez saisir le code fourni par votre application mobile d'authentification à deux facteurs" @@ -8957,103 +9500,103 @@ msgstr "Mot de passe erroné." msgid "Invalid email." msgstr "Courriel invalide." -#: src/Module/Settings/Account.php:119 +#: src/Module/Settings/Account.php:117 msgid "Cannot change to that email." msgstr "Ne peut pas changer vers ce courriel." -#: src/Module/Settings/Account.php:149 src/Module/Settings/Account.php:201 -#: src/Module/Settings/Account.php:221 src/Module/Settings/Account.php:305 -#: src/Module/Settings/Account.php:354 +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 msgid "Settings were not updated." msgstr "Les paramètres n'ont pas été mis à jour." -#: src/Module/Settings/Account.php:366 +#: src/Module/Settings/Account.php:364 msgid "Contact CSV file upload error" msgstr "Erreur de téléversement du fichier de contact CSV" -#: src/Module/Settings/Account.php:385 +#: src/Module/Settings/Account.php:383 msgid "Importing Contacts done" msgstr "Import des contacts effectué" -#: src/Module/Settings/Account.php:398 +#: src/Module/Settings/Account.php:396 msgid "Relocate message has been send to your contacts" msgstr "Un message de relocalisation a été envoyé à vos contacts." -#: src/Module/Settings/Account.php:415 +#: src/Module/Settings/Account.php:413 msgid "Unable to find your profile. Please contact your admin." msgstr "Impossible de trouver votre profile. Merci de contacter votre administrateur." -#: src/Module/Settings/Account.php:457 +#: src/Module/Settings/Account.php:455 msgid "Personal Page Subtypes" msgstr "Sous-catégories de page personnelle" -#: src/Module/Settings/Account.php:458 -msgid "Community Forum Subtypes" -msgstr "Sous-catégories de forums communautaires" +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" +msgstr "Sous-catégories de groupe communautaire" -#: src/Module/Settings/Account.php:468 +#: src/Module/Settings/Account.php:466 msgid "Account for a personal profile." msgstr "Compte pour profil personnel." -#: src/Module/Settings/Account.php:475 +#: src/Module/Settings/Account.php:473 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Compte pour une organisation qui accepte les demandes comme \"Abonnés\"." -#: src/Module/Settings/Account.php:482 +#: src/Module/Settings/Account.php:480 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Compte pour les miroirs de nouvelles qui accepte automatiquement les de contact comme \"Abonnés\"." -#: src/Module/Settings/Account.php:489 +#: src/Module/Settings/Account.php:487 msgid "Account for community discussions." msgstr "Compte pour des discussions communautaires." -#: src/Module/Settings/Account.php:496 +#: src/Module/Settings/Account.php:494 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Les demandes d'abonnement doivent être acceptées manuellement." -#: src/Module/Settings/Account.php:503 +#: src/Module/Settings/Account.php:501 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Compte pour un profil public qui accepte les demandes de contact comme \"Abonnés\"." -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:508 msgid "Automatically approves all contact requests." msgstr "Les demandes de participation au forum sont automatiquement acceptées." -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:515 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Les demandes d'abonnement sont automatiquement acceptées." -#: src/Module/Settings/Account.php:522 -msgid "Private Forum [Experimental]" -msgstr "Forum privé [expérimental]" +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "Groupe Privé [Expérimental]" -#: src/Module/Settings/Account.php:524 +#: src/Module/Settings/Account.php:522 msgid "Requires manual approval of contact requests." msgstr "Les demandes de participation au forum nécessitent une approbation." -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:531 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:531 msgid "(Optional) Allow this OpenID to login to this account." msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:539 msgid "Publish your profile in your local site directory?" msgstr "Publier votre profil dans le répertoire local" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:539 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9061,89 +9604,94 @@ msgid "" " system settings." msgstr "Votre profil sera public sur l'annuaire local de cette instance. Les détails de votre profil pourront être visible publiquement selon les paramètres de votre système." -#: src/Module/Settings/Account.php:547 +#: src/Module/Settings/Account.php:545 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Votre profil sera aussi publié dans le répertoire Friendica global (%s)." -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 msgid "Account Settings" msgstr "Compte" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:559 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "L’adresse de votre profil est '%s' ou '%s'." -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:566 msgid "Password Settings" msgstr "Réglages de mot de passe" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:568 msgid "Leave password fields blank unless changing" msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:570 msgid "Password:" msgstr "Mot de passe :" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:570 msgid "Your current password to confirm the changes of the email address" -msgstr "Votre mot de passe actuel pour confirmer les modifications de votre adresse email." +msgstr "Votre mot de passe actuel pour confirmer les modifications de votre adresse de courriel." -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:573 msgid "Delete OpenID URL" msgstr "Supprimer l'URL OpenID" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:575 msgid "Basic Settings" msgstr "Réglages de base" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "Nom d'affichage :" + +#: src/Module/Settings/Account.php:577 msgid "Email Address:" msgstr "Adresse courriel :" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:578 msgid "Your Timezone:" msgstr "Votre fuseau horaire :" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:579 msgid "Your Language:" msgstr "Votre langue :" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:579 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Détermine la langue que nous utilisons pour afficher votre interface Friendica et pour vous envoyer des courriels" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:580 msgid "Default Post Location:" msgstr "Emplacement de publication par défaut:" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:581 msgid "Use Browser Location:" msgstr "Utiliser la localisation géographique du navigateur:" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:583 msgid "Security and Privacy Settings" msgstr "Réglages de sécurité et vie privée" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:585 msgid "Maximum Friend Requests/Day:" msgstr "Nombre maximal de demandes d'abonnement par jour :" -#: src/Module/Settings/Account.php:588 src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 msgid "(to prevent spam abuse)" msgstr "(pour limiter l'impact du spam)" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:587 msgid "Allow your profile to be searchable globally?" msgstr "Publier votre profil publiquement" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:587 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 " @@ -9151,43 +9699,43 @@ msgid "" "indexed or not." msgstr "Permet à quiconque de trouver votre profil via une recherche sur n'importe quel site compatible ou un moteur de recherche." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:588 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil?" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:588 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "La liste de vos contacts est affichée sur votre profil. Activer cette option pour désactiver son affichage." -#: src/Module/Settings/Account.php:592 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Cacher les détails de votre profil pour les lecteurs anonymes." +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "Masque votre contenu public aux visiteurs anonymes" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:589 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 "Les visiteurs anonymes ne verront que votre image de profil, votre nom affiché, et le surnom que vous utilisez sur votre page de profil. Vos publications publics et réponses seront toujours accessibles par d'autres moyens." +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "Les visiteurs anonymes ne verront que vos détails de base de profil. Vos publications publiques et vos réponses seront toujours librement accessibles sur les serveurs distants de vos contacts et à travers les relais." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:590 msgid "Make public posts unlisted" msgstr "Délister vos publications publiques" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:590 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "Vos publications publiques n'apparaîtront pas dans les pages communautaires ni les résultats de recherche de ce site et ne seront pas diffusées via les serveurs de relai. Cependant, elles pourront quand même apparaître dans les fils publics de sites distants." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:591 msgid "Make all posted pictures accessible" msgstr "Rendre toutes les images envoyées accessibles." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:591 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 " @@ -9195,614 +9743,992 @@ msgid "" "public on your photo albums though." msgstr "Cette option rend chaque image envoyée accessible par un lien direct. C'est un contournement pour prendre en compte que la pluplart des autres réseaux ne gèrent pas les droits sur les images. Cependant les images non publiques ne seront pas visibles sur votre album photo." -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:592 msgid "Allow friends to post to your profile page?" msgstr "Autoriser vos contacts à publier sur votre profil ?" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:592 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Vos contacts peuvent partager des publications sur votre mur. Ces publication seront visibles par vos abonnés." -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:593 msgid "Allow friends to tag your posts?" -msgstr "Autoriser vos contacts à ajouter des tags à vos publications?" +msgstr "Autoriser vos contacts à ajouter des tags à vos publications ?" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:593 msgid "Your contacts can add additional tags to your posts." -msgstr "Vos contacts peuvent ajouter des tag à vos publications." +msgstr "Vos contacts peuvent ajouter des tags à vos publications." -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:594 msgid "Permit unknown people to send you private mail?" msgstr "Autoriser les messages privés d'inconnus?" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:594 msgid "" "Friendica network users may send you private messages even if they are not " "in your contact list." msgstr "Les utilisateurs de Friendica peuvent vous envoyer des messages privés même s'ils ne sont pas dans vos contacts." -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:595 msgid "Maximum private messages per day from unknown people:" msgstr "Maximum de messages privés d'inconnus par jour :" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "Cercle de contacts par défaut pour les nouveaux contacts" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "Cercle de contacts par défaut pour les nouveaux contacts du groupe" + +#: src/Module/Settings/Account.php:598 msgid "Default Post Permissions" msgstr "Permissions de publication par défaut" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:602 msgid "Expiration settings" msgstr "Réglages d'expiration" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:603 msgid "Automatically expire posts after this many days:" msgstr "Les publications expirent automatiquement après (en jours) :" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:603 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:604 msgid "Expire posts" msgstr "Faire expirer les publications" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:604 msgid "When activated, posts and comments will be expired." msgstr "Les publications originales et commentaires expireront." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:605 msgid "Expire personal notes" msgstr "Faire expirer les notes personnelles" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:605 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr " " -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:606 msgid "Expire starred posts" msgstr "Faire expirer les publications marquées" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:606 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Par défaut, marquer une publication empêche leur expiration." -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:607 msgid "Only expire posts by others" msgstr "Faire expirer uniquement les contenu reçus" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:607 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Empêche vos propres publications d'expirer. S'applique à tous les choix précédents." -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:610 msgid "Notification Settings" msgstr "Réglages de notification" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:611 msgid "Send a notification email when:" -msgstr "Envoyer un courriel de notification quand:" +msgstr "Envoyer un courriel de notification quand :" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:612 msgid "You receive an introduction" msgstr "Vous recevez une introduction" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:613 msgid "Your introductions are confirmed" msgstr "Vos introductions sont confirmées" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:614 msgid "Someone writes on your profile wall" msgstr "Quelqu'un écrit sur votre mur" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "Someone writes a followup comment" msgstr "Quelqu'un vous commente" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:616 msgid "You receive a private message" msgstr "Vous recevez un message privé" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:617 msgid "You receive a friend suggestion" msgstr "Vous avez reçu une suggestion d'abonnement" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:618 msgid "You are tagged in a post" -msgstr "Vous avez été mentionné•e dans une publication" +msgstr "Vous avez été mentionné(e) dans une publication" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:620 msgid "Create a desktop notification when:" msgstr "Créer une notification de bureau quand :" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:621 msgid "Someone tagged you" msgstr "Quelqu'un vous a mentionné" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:622 msgid "Someone directly commented on your post" msgstr "Quelqu'un a commenté directement sur votre publication" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:623 msgid "Someone liked your content" msgstr "Quelqu'un a aimé votre contenu" -#: src/Module/Settings/Account.php:625 src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Peut uniquement être activé quand la notification des commentaires directs est activée." -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:624 msgid "Someone shared your content" msgstr "Quelqu'un a partagé votre contenu" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:625 msgid "Someone commented in your thread" msgstr "Quelqu'un a commenté dans votre conversation" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:626 msgid "Someone commented in a thread where you commented" msgstr "Quelqu'un a commenté dans une conversation où vous avez commenté" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:627 msgid "Someone commented in a thread where you interacted" msgstr "Quelqu'un a commenté dans une conversation avec laquelle vous avez interagi" -#: src/Module/Settings/Account.php:631 +#: src/Module/Settings/Account.php:629 msgid "Activate desktop notifications" msgstr "Activer les notifications de bureau" -#: src/Module/Settings/Account.php:631 +#: src/Module/Settings/Account.php:629 msgid "Show desktop popup on new notifications" msgstr "Afficher dans des pop-ups les nouvelles notifications" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:633 msgid "Text-only notification emails" msgstr "Courriels de notification en format texte" -#: src/Module/Settings/Account.php:637 +#: src/Module/Settings/Account.php:635 msgid "Send text only notification emails, without the html part" msgstr "Envoyer le texte des courriels de notification, sans la composante html" -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:639 msgid "Show detailled notifications" msgstr "Notifications détaillées" -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:641 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Par défaut seule la notification la plus récente par conversation est affichée. Ce réglage affiche toutes les notifications." -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:645 msgid "Show notifications of ignored contacts" msgstr "Montrer les notifications des contacts ignorés" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:647 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "Par défaut les notifications de vos contacts ignorés sont également ignorées." -#: src/Module/Settings/Account.php:652 +#: src/Module/Settings/Account.php:650 msgid "Advanced Account/Page Type Settings" msgstr "Paramètres avancés de compte/page" -#: src/Module/Settings/Account.php:653 +#: src/Module/Settings/Account.php:651 msgid "Change the behaviour of this account for special situations" msgstr "Modifier le comportement de ce compte dans certaines situations" -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:654 msgid "Import Contacts" msgstr "Importer des contacts" -#: src/Module/Settings/Account.php:657 +#: src/Module/Settings/Account.php:655 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Téléversez un fichier CSV contenant des identifiants de contacts dans la première colonne." -#: src/Module/Settings/Account.php:658 +#: src/Module/Settings/Account.php:656 msgid "Upload File" msgstr "Téléverser le fichier" -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:659 msgid "Relocate" msgstr "Relocaliser" -#: src/Module/Settings/Account.php:662 +#: src/Module/Settings/Account.php:660 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton." -#: src/Module/Settings/Account.php:663 +#: src/Module/Settings/Account.php:661 msgid "Resend relocate message to contacts" msgstr "Renvoyer un message de relocalisation aux contacts." -#: src/Module/Settings/Delegation.php:53 +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "Paramètres d'extension" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "Aucuns paramètres d'Extension paramétré." + +#: src/Module/Settings/Channels.php:130 src/Module/Settings/Channels.php:146 +#: src/Module/Settings/Display.php:330 +msgid "Label" +msgstr "Titre" + +#: src/Module/Settings/Channels.php:131 src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +msgid "Description" +msgstr "Description" + +#: src/Module/Settings/Channels.php:132 src/Module/Settings/Channels.php:148 +msgid "Access Key" +msgstr "Clé d'accès" + +#: src/Module/Settings/Channels.php:133 src/Module/Settings/Channels.php:149 +msgid "Circle/Channel" +msgstr "Cercle/Chaîne" + +#: src/Module/Settings/Channels.php:134 src/Module/Settings/Channels.php:150 +msgid "Include Tags" +msgstr "Inclure des mots clés" + +#: src/Module/Settings/Channels.php:135 src/Module/Settings/Channels.php:151 +msgid "Exclude Tags" +msgstr "Exclure des mots clés" + +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:152 +msgid "Full Text Search" +msgstr "Recherche de texte intégral" + +#: src/Module/Settings/Channels.php:140 +msgid "Delete channel" +msgstr "Supprimer la chaîne" + +#: src/Module/Settings/Channels.php:140 +msgid "Check to delete this entry from the channel list" +msgstr "Cochez pour supprimer cette entrée de la liste de chaîne" + +#: src/Module/Settings/Channels.php:146 +msgid "Short name for the channel. It is displayed on the channels widget." +msgstr "Nom court de la chaîne. Il est affiché dans le widget des chaînes." + +#: src/Module/Settings/Channels.php:147 +msgid "This should describe the content of the channel in a few word." +msgstr "Décrivez le contenu de votre chaîne en quelques mots." + +#: src/Module/Settings/Channels.php:148 +msgid "" +"When you want to access this channel via an access key, you can define it " +"here. Pay attention to not use an already used one." +msgstr "Si vous accédez à cette chaîne via une clé d'accès, saisissez là ici. Attention à ne pas saisir une clé déjà utilisée." + +#: src/Module/Settings/Channels.php:149 +msgid "Select a circle or channel, that your channel should be based on." +msgstr "Choisissez un cercle ou une chaîne sur lequel se basera votre chaîne." + +#: src/Module/Settings/Channels.php:150 +msgid "" +"Comma separated list of tags. A post will be used when it contains any of " +"the listed tags." +msgstr "Liste de mots clés séparés par des virgules. Une publication sera affichée si elle contient au moins un de ces mots clés." + +#: src/Module/Settings/Channels.php:151 +msgid "" +"Comma separated list of tags. If a post contain any of these tags, then it " +"will not be part of nthis channel." +msgstr "Liste de mots clés séparés par des virgules. Si une publication contient un de ces mots clés, elle ne sera pas affichée sur cette chaîne." + +#: src/Module/Settings/Channels.php:152 +#, php-format +msgid "" +"Search terms for the body, supports the \"boolean mode\" operators from " +"MariaDB. See the help for a complete list of operators and additional " +"keywords: %s" +msgstr "Recherche les termes dans le corps, supporte les opérateurs \"boolean mode\" de MariaDB. Consultez l'aide pour une liste complète des opérateurs et des mots clés additionnels : %s" + +#: src/Module/Settings/Channels.php:153 +msgid "Check to display images in the channel." +msgstr "Cochez pour afficher les images dans la chaîne." + +#: src/Module/Settings/Channels.php:154 +msgid "Check to display videos in the channel." +msgstr "Cochez pour afficher la vidéo dans la chaîne." + +#: src/Module/Settings/Channels.php:155 +msgid "Check to display audio in the channel." +msgstr "Cochez pour afficher l'audio dans la chaîne." + +#: src/Module/Settings/Channels.php:158 +msgid "This page can be used to define your own channels." +msgstr "Cette page permet de définir votre propres chaînes." + +#: src/Module/Settings/Channels.php:159 +msgid "Add new entry to the channel list" +msgstr "Ajoute une nouvelle entrée dans la liste des chaînes" + +#: src/Module/Settings/Channels.php:160 +msgid "Add" +msgstr "Ajouter" + +#: src/Module/Settings/Channels.php:162 +msgid "Current Entries in the channel list" +msgstr "Entrées actuelles dans la liste des chaînes" + +#: src/Module/Settings/Channels.php:165 +msgid "Delete entry from the channel list" +msgstr "Supprimer l'entrée de la liste des chaînes" + +#: src/Module/Settings/Channels.php:166 +msgid "Delete entry from the channel list?" +msgstr "Supprimer l'entrée de la liste des chaînes ?" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "Impossible de se connecter au compte courriel configuré." + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "Le support intégré pour la connectivité %s est activé" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "Le support intégré pour la connectivité %s est désactivé" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "OStatus (GNU Social)" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "L'accès courriel est désactivé sur ce site." + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "Aucun(e)" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "Paramètres généraux des réseaux sociaux" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "Étendue des contenus suivis" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "Par défaut, les conversations dans lesquelles vos comptes suivis ont participé mais qu'ils n'ont pas commencées seront affichées dans votre flux. Vous pouvez désactiver ce comportement, ou l'étendre aux conversations dans lesquelles vos comptes suivis ont aimé une publication." + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "Seulement les conversations démarrées par mes comptes suivis" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "Les conversations que mes comptes suivis ont commencé ou commentées (par défaut)" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "Toute conversation avec laquelle mes comptes suivis ont interagi, y compris les \"J'aime\"" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "Activer les avertissements de contenus (CW)" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "Les utilisateurs de plate-formes comme Mastodon ou Pleroma ont la possibilité de définir un avertissement de contenu qui cache le contenu de leurs publications par défaut. Quand cette option est désactivée, les publications avec un avertissement de contenu ne sont pas filtrées et le libellé associé est utilisé comme titre. Ce filtrage est indépendant des autres filtrages de contenu." + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "Activer l'abbréviation intelligente" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "L'abbréviation intelligente cherche le lien le plus adapté dans les publications abbréviées. Quand elle est désactivée, le lien est toujours celui de la publication Friendica initiale." + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "Activer l'abbréviation de texte simple" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "Cette option raccourcit le texte des publications au nombre de caractères exact au lieu d'attendre la fin du paragraphe." + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "Attacher le titre du lien (Diaspora)" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "Si vos publications contiennent un lien, le titre de la page associée sera attaché à la publication à destination de vos contacts Diaspora. C'est principalement utile avec les contacts \"remote-self\" qui partagent du contenu de flux RSS/Atom." + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "API : Utiliser le champ spoiler (divulgachis) en tant que titre" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "Quand activé, le champ \"spoiler_text\" dans l'API sera utilisé pour le titre des publications individuelles. Quand désactivé, il sera utilisé pour du texte spoiler (divulgachis). Pour les commentaires, il sera toujours utilisé pour du texte spoiler." + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "API : Afficher comme publications attachés les liens ajoutés en fin de publication" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "Quand activé, les liens ajoutés à la fin d'une publication fonctionnent de la même manière que les liens ajoutés dans l'interface web." + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "Votre ancient compte ActivityPub/GNU Social" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "Si vous saisissez votre adresse de compte précédente d'un réseau basé sur ActivityPub ou GNU Social/Statusnet (au format utilisateur@domaine.tld), vos contacts seront ajoutés autoamtiquement. Le champ sera vidé quand l'opération sera terminé." + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "Réparer les abonnements OStatus" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "Réglages de courriel/boîte à lettre" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte." + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "Dernière vérification réussie des courriels :" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "Nom du serveur IMAP :" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "Port IMAP :" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "Sécurité :" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "Nom de connexion :" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "Mot de passe :" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "Adresse de réponse :" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "Envoyer les publications publiques à tous les contacts courriels :" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "Action après import :" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "Déplacer vers" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "Déplacer vers :" + +#: src/Module/Settings/Delegation.php:73 msgid "Delegation successfully granted." msgstr "Délégation accordée avec succès." -#: src/Module/Settings/Delegation.php:55 +#: src/Module/Settings/Delegation.php:75 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Utilisateur parent introuvable, indisponible ou mot de passe incorrect." -#: src/Module/Settings/Delegation.php:59 +#: src/Module/Settings/Delegation.php:79 msgid "Delegation successfully revoked." msgstr "Délégation retirée avec succès." -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 +#: src/Module/Settings/Delegation.php:98 +#: src/Module/Settings/Delegation.php:120 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Les administrateurs délégués peuvent uniquement consulter les permissions de délégation." -#: src/Module/Settings/Delegation.php:95 +#: src/Module/Settings/Delegation.php:112 msgid "Delegate user not found." msgstr "Délégué introuvable." -#: src/Module/Settings/Delegation.php:143 +#: src/Module/Settings/Delegation.php:169 msgid "No parent user" msgstr "Pas d'utilisateur parent" -#: src/Module/Settings/Delegation.php:154 -#: src/Module/Settings/Delegation.php:165 +#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:191 msgid "Parent User" msgstr "Compte parent" -#: src/Module/Settings/Delegation.php:162 +#: src/Module/Settings/Delegation.php:188 msgid "Additional Accounts" msgstr "Comptes supplémentaires" -#: src/Module/Settings/Delegation.php:163 +#: src/Module/Settings/Delegation.php:189 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Enregistrez des comptes supplémentaires qui seront automatiquement rattachés à votre compte actuel pour vous permettre de les gérer facilement." -#: src/Module/Settings/Delegation.php:164 +#: src/Module/Settings/Delegation.php:190 msgid "Register an additional account" msgstr "Enregistrer un compte supplémentaire" -#: src/Module/Settings/Delegation.php:168 +#: src/Module/Settings/Delegation.php:192 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Le compte parent a un contrôle total sur ce compte, incluant les paramètres de compte. Veuillez vérifier à qui vous donnez cet accès." -#: src/Module/Settings/Delegation.php:172 +#: src/Module/Settings/Delegation.php:195 msgid "Delegates" msgstr "Délégataires" -#: src/Module/Settings/Delegation.php:174 +#: src/Module/Settings/Delegation.php:196 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 "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue." -#: src/Module/Settings/Delegation.php:175 +#: src/Module/Settings/Delegation.php:197 msgid "Existing Page Delegates" msgstr "Délégataires existants" -#: src/Module/Settings/Delegation.php:177 +#: src/Module/Settings/Delegation.php:198 msgid "Potential Delegates" msgstr "Délégataires potentiels" -#: src/Module/Settings/Delegation.php:180 -msgid "Add" -msgstr "Ajouter" - -#: src/Module/Settings/Delegation.php:181 +#: src/Module/Settings/Delegation.php:199 msgid "No entries." msgstr "Aucune entrée." -#: src/Module/Settings/Display.php:107 +#: src/Module/Settings/Display.php:179 msgid "The theme you chose isn't available." msgstr "Le thème que vous avez choisi n'est pas disponible." -#: src/Module/Settings/Display.php:146 +#: src/Module/Settings/Display.php:219 #, php-format msgid "%s - (Unsupported)" msgstr "%s- (non supporté)" -#: src/Module/Settings/Display.php:200 +#: src/Module/Settings/Display.php:254 +msgid "No preview" +msgstr "Pas d'aperçu" + +#: src/Module/Settings/Display.php:255 +msgid "No image" +msgstr "Pas d'image" + +#: src/Module/Settings/Display.php:256 +msgid "Small Image" +msgstr "Petite image" + +#: src/Module/Settings/Display.php:257 +msgid "Large Image" +msgstr "Grande image" + +#: src/Module/Settings/Display.php:302 msgid "Display Settings" msgstr "Affichage" -#: src/Module/Settings/Display.php:202 +#: src/Module/Settings/Display.php:304 msgid "General Theme Settings" msgstr "Paramètres généraux de thème" -#: src/Module/Settings/Display.php:203 +#: src/Module/Settings/Display.php:305 msgid "Custom Theme Settings" msgstr "Paramètres personnalisés de thème" -#: src/Module/Settings/Display.php:204 +#: src/Module/Settings/Display.php:306 msgid "Content Settings" msgstr "Paramètres de contenu" -#: src/Module/Settings/Display.php:205 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 +#: src/Module/Settings/Display.php:307 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Réglages du thème graphique" -#: src/Module/Settings/Display.php:206 -msgid "Calendar" -msgstr "Calendrier" +#: src/Module/Settings/Display.php:308 +msgid "Timelines" +msgstr "Flux" -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:315 msgid "Display Theme:" msgstr "Thème d'affichage:" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:316 msgid "Mobile Theme:" msgstr "Thème mobile:" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:319 msgid "Number of items to display per page:" msgstr "Nombre d’éléments par page :" -#: src/Module/Settings/Display.php:216 src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:319 src/Module/Settings/Display.php:320 msgid "Maximum of 100 items" msgstr "Maximum de 100 éléments" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:320 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Nombre d'éléments à afficher par page pour un appareil mobile" -#: src/Module/Settings/Display.php:218 +#: src/Module/Settings/Display.php:321 msgid "Update browser every xx seconds" msgstr "Mettre à jour l'affichage toutes les xx secondes" -#: src/Module/Settings/Display.php:218 +#: src/Module/Settings/Display.php:321 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimum de 10 secondes. Saisir -1 pour désactiver." -#: src/Module/Settings/Display.php:219 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "Rafraîchir le flux uniquement en haut de la page" - -#: src/Module/Settings/Display.php:219 -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 "Le rafraîchissement automatique du flux peut ajouter de nouveaux contenus en haut de la liste, ce qui peut affecter le défilement de la page et gêner la lecture s'il s'effectue ailleurs qu'en haut de la page." - -#: src/Module/Settings/Display.php:220 +#: src/Module/Settings/Display.php:322 msgid "Display emoticons" msgstr "Afficher les émoticônes" -#: src/Module/Settings/Display.php:220 +#: src/Module/Settings/Display.php:322 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "Quand activé, les émoticônes sont remplacées par les symboles correspondants." -#: src/Module/Settings/Display.php:221 +#: src/Module/Settings/Display.php:323 msgid "Infinite scroll" msgstr "Défilement infini" -#: src/Module/Settings/Display.php:221 +#: src/Module/Settings/Display.php:323 msgid "Automatic fetch new items when reaching the page end." msgstr "Charge automatiquement de nouveaux contenus en bas de la page." -#: src/Module/Settings/Display.php:222 +#: src/Module/Settings/Display.php:324 msgid "Enable Smart Threading" msgstr "Activer le fil de discussion intelligent" -#: src/Module/Settings/Display.php:222 +#: src/Module/Settings/Display.php:324 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "Activer la suppression automatique de l'indentation excédentaire des fils de discussion." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:325 msgid "Display the Dislike feature" msgstr "Afficher la fonctionnalité \"Je n'aime pas\"" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:325 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "Afficher le bouton \"Je n'aime pas\" et les réactions \"Je n'aime pas\" sur les publications et les commentaires." -#: src/Module/Settings/Display.php:224 +#: src/Module/Settings/Display.php:326 msgid "Display the resharer" -msgstr "Afficher le repartageur" +msgstr "Afficher le partageur" -#: src/Module/Settings/Display.php:224 +#: src/Module/Settings/Display.php:326 msgid "Display the first resharer as icon and text on a reshared item." -msgstr "Afficher le premier repartageur en tant qu'icône et texte sur un élément repartagé." +msgstr "Afficher le premier partageur en tant qu'icône et texte sur un élément partagé." -#: src/Module/Settings/Display.php:225 +#: src/Module/Settings/Display.php:327 msgid "Stay local" msgstr "Rester local" -#: src/Module/Settings/Display.php:225 +#: src/Module/Settings/Display.php:327 msgid "Don't go to a remote system when following a contact link." msgstr "Ne pas aller sur un système distant lors du suivi du lien d'un contact." -#: src/Module/Settings/Display.php:227 +#: src/Module/Settings/Display.php:328 +msgid "Link preview mode" +msgstr "Mode de prévisualisation des liens" + +#: src/Module/Settings/Display.php:328 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "Apparence de la prévisualisation du lien qui est ajoutée à chaque publication comprenant un lien." + +#: src/Module/Settings/Display.php:333 +msgid "Bookmark" +msgstr "Favoris" + +#: src/Module/Settings/Display.php:335 +msgid "" +"Enable timelines that you want to see in the channels widget. Bookmark " +"timelines that you want to see in the top menu." +msgstr "Activez les flux que vous souhaitez voir dans le widget Chaînes. Mettez en favoris les flux que vous souhaitez voir dans le menu supérieur." + +#: src/Module/Settings/Display.php:337 +msgid "Channel languages:" +msgstr "Langues de la chaîne :" + +#: src/Module/Settings/Display.php:337 +msgid "Select all languages that you want to see in your channels." +msgstr "Sélectionnez les langues que vous souhaitez voir dans vos chaînes." + +#: src/Module/Settings/Display.php:339 msgid "Beginning of week:" msgstr "Début de la semaine :" -#: src/Module/Settings/Profile/Index.php:83 -msgid "Profile Name is required." -msgstr "Le nom du profil est requis." +#: src/Module/Settings/Display.php:340 +msgid "Default calendar view:" +msgstr "Vue par défaut du calendrier :" -#: src/Module/Settings/Profile/Index.php:131 +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "Fonctions supplémentaires" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Applications connectées" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "Révoquer l'autorisation" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "Le nom d'affichage est requis." + +#: src/Module/Settings/Profile/Index.php:167 msgid "Profile couldn't be updated." msgstr "Le profil n'a pas pu être mis à jour." -#: src/Module/Settings/Profile/Index.php:172 -#: src/Module/Settings/Profile/Index.php:192 +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 msgid "Label:" msgstr "Description :" -#: src/Module/Settings/Profile/Index.php:173 -#: src/Module/Settings/Profile/Index.php:193 +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 msgid "Value:" msgstr "Contenu :" -#: src/Module/Settings/Profile/Index.php:183 -#: src/Module/Settings/Profile/Index.php:203 +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 msgid "Field Permissions" msgstr "Permissions du champ" -#: src/Module/Settings/Profile/Index.php:184 -#: src/Module/Settings/Profile/Index.php:204 +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 msgid "(click to open/close)" msgstr "(cliquer pour ouvrir/fermer)" -#: src/Module/Settings/Profile/Index.php:190 +#: src/Module/Settings/Profile/Index.php:224 msgid "Add a new profile field" msgstr "Ajouter un nouveau champ de profil" -#: src/Module/Settings/Profile/Index.php:220 +#: src/Module/Settings/Profile/Index.php:247 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." +msgstr "La page d'accueil est vérifiée. Un lien rel=\"me\" vers votre page de profil Friendica a été trouvé sur la page d'accueil." + +#: src/Module/Settings/Profile/Index.php:249 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "Pour vérifier votre page d'accueil, ajouter un lien rel=\"me\" à celle-ci, pointant vers l'URL de votre profil (%s)." + +#: src/Module/Settings/Profile/Index.php:255 msgid "Profile Actions" msgstr "Actions de Profil" -#: src/Module/Settings/Profile/Index.php:221 +#: src/Module/Settings/Profile/Index.php:256 msgid "Edit Profile Details" msgstr "Éditer les détails du profil" -#: src/Module/Settings/Profile/Index.php:223 +#: src/Module/Settings/Profile/Index.php:258 msgid "Change Profile Photo" msgstr "Changer la photo du profil" -#: src/Module/Settings/Profile/Index.php:228 +#: src/Module/Settings/Profile/Index.php:261 msgid "Profile picture" msgstr "Image de profil" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:262 msgid "Location" msgstr "Localisation" -#: src/Module/Settings/Profile/Index.php:230 src/Util/Temporal.php:95 -#: src/Util/Temporal.php:97 +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 msgid "Miscellaneous" msgstr "Divers" -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:264 msgid "Custom Profile Fields" msgstr "Champs de profil personalisés" -#: src/Module/Settings/Profile/Index.php:233 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 msgid "Upload Profile Photo" msgstr "Téléverser une photo de profil" -#: src/Module/Settings/Profile/Index.php:237 -msgid "Display name:" -msgstr "Nom d'utilisateur :" - -#: src/Module/Settings/Profile/Index.php:240 -msgid "Street Address:" -msgstr "Adresse postale :" - -#: src/Module/Settings/Profile/Index.php:241 -msgid "Locality/City:" -msgstr "Ville :" - -#: src/Module/Settings/Profile/Index.php:242 -msgid "Region/State:" -msgstr "Région / État :" - -#: src/Module/Settings/Profile/Index.php:243 -msgid "Postal/Zip Code:" -msgstr "Code postal :" - -#: src/Module/Settings/Profile/Index.php:244 -msgid "Country:" -msgstr "Pays :" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "XMPP (Jabber) address:" -msgstr "Adresse XMPP (Jabber) :" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "" -"The XMPP address will be published so that people can follow you there." -msgstr "L'adresse XMPP sera publiée de façon à ce que les autres personnes puissent vous y suivre." - -#: src/Module/Settings/Profile/Index.php:247 -msgid "Matrix (Element) address:" -msgstr "Adresse Matrix (Element) :" - -#: src/Module/Settings/Profile/Index.php:247 -msgid "" -"The Matrix address will be published so that people can follow you there." -msgstr "L'adresse Matrix sera publiée de façon à ce que les autres personnes puissent vous y suivre." - -#: src/Module/Settings/Profile/Index.php:248 -msgid "Homepage URL:" -msgstr "Page personnelle :" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "Public Keywords:" -msgstr "Mots-clés publics :" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Utilisés pour vous suggérer des abonnements. Ils peuvent être vus par autrui)" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "Private Keywords:" -msgstr "Mots-clés privés :" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Utilisés pour rechercher des profils. Ils ne seront jamais montrés à autrui)" - -#: src/Module/Settings/Profile/Index.php:251 +#: src/Module/Settings/Profile/Index.php:266 #, 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 "

    Les champs de profil personnalisés apparaissent sur votre page de profil.

    \n\t\t\t\t

    Vous pouvez utilisez les BBCodes dans le contenu des champs.

    \n\t\t\t\t

    Triez les champs en glissant-déplaçant leur titre.

    \n\t\t\t\t

    Laissez le titre d'un champ vide pour le supprimer lors de la soumission du formulaire .

    \n\t\t\t\t

    Les champs non-publics peuvent être consultés uniquement par les contacts Friendica autorisés dans les permissions.

    " +"\t\t\t\t

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

    " +msgstr "

    Les champs de profil personnalisés apparaissent sur votre page de profil.

    \n\t\t\t\t

    Vous pouvez utilisez les BBCodes dans le contenu des champs.

    \n\t\t\t\t

    Triez les champs en glissant-déplaçant leur titre.

    \n\t\t\t\t

    Laissez le titre d'un champ vide pour le supprimer lors de la soumission du formulaire .

    \n\t\t\t\t

    Les champs non-publics peuvent être consultés uniquement par les contacts Friendica autorisés ou par les contacts Friendica de cercles autorisés.

    " -#: src/Module/Settings/Profile/Photo/Crop.php:108 -#: src/Module/Settings/Profile/Photo/Crop.php:126 -#: src/Module/Settings/Profile/Photo/Crop.php:144 +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "Adresse postale :" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "Ville :" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "Région / État :" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "Code postal :" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "Pays :" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "Adresse XMPP (Jabber) :" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "L'adresse XMPP sera publiée de façon à ce que les autres personnes puissent vous y suivre." + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "Adresse Matrix (Element) :" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "L'adresse Matrix sera publiée de façon à ce que les autres personnes puissent vous y suivre." + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "Page personnelle :" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "Mots-clés publics :" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Utilisés pour vous suggérer des abonnements. Ils peuvent être vus par autrui)" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "Mots-clés privés :" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Utilisés pour rechercher des profils. Ils ne seront jamais montrés à autrui)" + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 #: src/Module/Settings/Profile/Photo/Index.php:102 #, php-format msgid "Image size reduction [%s] failed." msgstr "Réduction de la taille de l'image [%s] échouée." -#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Crop.php:150 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement." -#: src/Module/Settings/Profile/Photo/Crop.php:156 +#: src/Module/Settings/Profile/Photo/Crop.php:155 msgid "Unable to process image" msgstr "Impossible de traiter l'image" -#: src/Module/Settings/Profile/Photo/Crop.php:175 +#: src/Module/Settings/Profile/Photo/Crop.php:174 msgid "Photo not found." msgstr "Photo introuvable." -#: src/Module/Settings/Profile/Photo/Crop.php:197 +#: src/Module/Settings/Profile/Photo/Crop.php:196 msgid "Profile picture successfully updated." msgstr "Photo de profil mise à jour avec succès." -#: src/Module/Settings/Profile/Photo/Crop.php:223 -#: src/Module/Settings/Profile/Photo/Crop.php:227 +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 msgid "Crop Image" msgstr "(Re)cadrer l'image" -#: src/Module/Settings/Profile/Photo/Crop.php:224 +#: src/Module/Settings/Profile/Photo/Crop.php:223 msgid "Please adjust the image cropping for optimum viewing." msgstr "Ajustez le cadre de l'image pour une visualisation optimale." -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:225 msgid "Use Image As Is" msgstr "Utiliser l'image telle quelle" @@ -9838,186 +10764,267 @@ msgstr "ignorer cette étape" msgid "select a photo from your photo albums" msgstr "choisissez une photo depuis vos albums" -#: src/Module/Settings/TwoFactor/AppSpecific.php:64 -#: src/Module/Settings/TwoFactor/Recovery.php:62 -#: src/Module/Settings/TwoFactor/Trusted.php:65 -#: src/Module/Settings/TwoFactor/Verify.php:68 +#: src/Module/Settings/RemoveMe.php:76 +msgid "" +"There was a validation error, please make sure you're logged in with the " +"account you want to remove and try again." +msgstr "Il y a eu une erreur de validation, vérifiez que vous êtes connecté avec le compte que vous souhaitez supprimer et réessayez." + +#: src/Module/Settings/RemoveMe.php:76 +msgid "If this error persists, please contact your administrator." +msgstr "Si cette erreur persiste, veuillez contacter votre administrateur." + +#: src/Module/Settings/RemoveMe.php:90 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[Notification Système de Friendica]" + +#: src/Module/Settings/RemoveMe.php:90 +msgid "User deleted their account" +msgstr "L'utilisateur a supprimé son compte" + +#: src/Module/Settings/RemoveMe.php:91 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "Sur votre nœud Friendica, un utilisateur a supprimé son compte. Veuillez vous assurer que ses données sont supprimées des sauvegardes." + +#: src/Module/Settings/RemoveMe.php:92 +#, php-format +msgid "The user id is %d" +msgstr "L'identifiant d'utilisateur est %d" + +#: src/Module/Settings/RemoveMe.php:105 +msgid "Your account has been successfully removed. Bye bye!" +msgstr "Votre compte a été supprimé avec succès. Au revoir !" + +#: src/Module/Settings/RemoveMe.php:130 +msgid "Remove My Account" +msgstr "Supprimer mon compte" + +#: src/Module/Settings/RemoveMe.php:131 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible." + +#: src/Module/Settings/RemoveMe.php:136 +msgid "Please enter your password for verification:" +msgstr "Merci de saisir votre mot de passe pour vérification :" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "Voulez-vous ignorer ce serveur ?" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "Voulez-vous ne plus ignorer ce serveur ?" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "Paramètres du serveur distant" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "URL du serveur" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "Paramètres sauvegardés" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "Vous trouverez ici tous les serveurs distants pour lesquels vous avez pris des mesures de modération individuelles. Pour obtenir une liste des serveurs que votre nœud a bloqués, veuillez consulter la page Information." + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "Supprime tous vos paramètres du serveur distant" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "Sauvegarder les changements" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 msgid "Please enter your password to access this page." msgstr "Veuillez saisir votre mot de passe pour accéder à cette page." -#: src/Module/Settings/TwoFactor/AppSpecific.php:82 +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 msgid "App-specific password generation failed: The description is empty." msgstr "La génération du mot de passe spécifique à l'application a échoué : la description est vide." -#: src/Module/Settings/TwoFactor/AppSpecific.php:85 +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 msgid "" "App-specific password generation failed: This description already exists." msgstr "La génération du mot de passe spécifique à l'application a échoué : cette description existe déjà." -#: src/Module/Settings/TwoFactor/AppSpecific.php:89 +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 msgid "New app-specific password generated." msgstr "Nouveau mot de passe spécifique à l'application généré avec succès." -#: src/Module/Settings/TwoFactor/AppSpecific.php:95 +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 msgid "App-specific passwords successfully revoked." msgstr "Mots de passe spécifiques à des applications révoqués avec succès." -#: src/Module/Settings/TwoFactor/AppSpecific.php:105 +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 msgid "App-specific password successfully revoked." msgstr "Mot de passe spécifique à l'application révoqué avec succès." -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 msgid "Two-factor app-specific passwords" msgstr "Authentification à deux facteurs : Mots de passe spécifiques aux applications" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 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 "

    Les mots de passe spécifiques aux application sont des mots de passe générés aléatoirement pour vous identifier avec votre compte Friendica sur des applications tierce-partie qui n'offrent pas d'authentification à deux facteurs.

    " -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Veillez à copier votre nouveau mot de passe spécifique à l'application maintenant. Il ne sera plus jamais affiché!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -msgid "Description" -msgstr "Description" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 msgid "Last Used" msgstr "Dernière utilisation" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 msgid "Revoke" msgstr "Révoquer" -#: src/Module/Settings/TwoFactor/AppSpecific.php:135 +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Revoke All" msgstr "Révoquer tous" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 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 "Une fois que votre nouveau mot de passe spécifique à l'application est généré, vous devez l'utiliser immédiatement car il ne vous sera pas remontré plus tard." -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 msgid "Generate new app-specific password" msgstr "Générer un nouveau mot de passe spécifique à une application" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa sur mon Fairphone 2..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:141 +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 msgid "Generate" msgstr "Générer" -#: src/Module/Settings/TwoFactor/Index.php:69 +#: src/Module/Settings/TwoFactor/Index.php:68 msgid "Two-factor authentication successfully disabled." msgstr "Authentification à deux facteurs désactivée avec succès." -#: src/Module/Settings/TwoFactor/Index.php:121 +#: src/Module/Settings/TwoFactor/Index.php:120 msgid "" "

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

    " msgstr "

    Utilisez une application mobile pour obtenir des codes d'authentification à deux facteurs que vous devrez fournir lors de la saisie de vos identifiants.

    " -#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Authenticator app" msgstr "Application mobile" -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Configured" msgstr "Configurée" -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Not Configured" msgstr "Pas encore configurée" -#: src/Module/Settings/TwoFactor/Index.php:127 +#: src/Module/Settings/TwoFactor/Index.php:126 msgid "

    You haven't finished configuring your authenticator app.

    " msgstr "

    Vous n'avez pas complété la configuration de votre application mobile d'authentification.

    " -#: src/Module/Settings/TwoFactor/Index.php:128 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "

    Your authenticator app is correctly configured.

    " msgstr "

    Votre application mobile d'authentification est correctement configurée.

    " -#: src/Module/Settings/TwoFactor/Index.php:130 +#: src/Module/Settings/TwoFactor/Index.php:129 msgid "Recovery codes" msgstr "Codes de secours" -#: src/Module/Settings/TwoFactor/Index.php:131 +#: src/Module/Settings/TwoFactor/Index.php:130 msgid "Remaining valid codes" msgstr "Codes valides restant" -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "" "

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

    " msgstr "

    Ces codes à usage unique peuvent remplacer un code de votre application mobile d'authentification si vous n'y avez pas ou plus accès.

    " -#: src/Module/Settings/TwoFactor/Index.php:135 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "App-specific passwords" msgstr "Mots de passe spécifiques aux applications" -#: src/Module/Settings/TwoFactor/Index.php:136 +#: src/Module/Settings/TwoFactor/Index.php:135 msgid "Generated app-specific passwords" msgstr "Générer des mots de passe d'application" -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "" "

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

    " msgstr "

    Ces mots de passe générés aléatoirement vous permettent de vous identifier sur des applications tierce-partie qui ne supportent pas l'authentification à deux facteurs.

    " -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "Current password:" msgstr "Mot de passe actuel :" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "Vous devez saisir votre mot de passe actuel pour changer les réglages de l'authentification à deux facteurs." -#: src/Module/Settings/TwoFactor/Index.php:142 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "Enable two-factor authentication" msgstr "Activer l'authentification à deux facteurs" -#: src/Module/Settings/TwoFactor/Index.php:143 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Disable two-factor authentication" msgstr "Désactiver l'authentification à deux facteurs" -#: src/Module/Settings/TwoFactor/Index.php:144 +#: src/Module/Settings/TwoFactor/Index.php:143 msgid "Show recovery codes" msgstr "Montrer les codes de secours" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "Manage app-specific passwords" msgstr "Gérer les mots de passe spécifiques aux applications" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:145 msgid "Manage trusted browsers" msgstr "Gérer les navigateurs de confiance" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Finish app configuration" msgstr "Compléter la configuration de l'application mobile" -#: src/Module/Settings/TwoFactor/Recovery.php:78 +#: src/Module/Settings/TwoFactor/Recovery.php:80 msgid "New recovery codes successfully generated." msgstr "Nouveaux codes de secours générés avec succès." -#: src/Module/Settings/TwoFactor/Recovery.php:104 +#: src/Module/Settings/TwoFactor/Recovery.php:106 msgid "Two-factor recovery codes" msgstr "Codes d'identification de secours" -#: src/Module/Settings/TwoFactor/Recovery.php:106 +#: src/Module/Settings/TwoFactor/Recovery.php:108 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 " @@ -10026,68 +11033,68 @@ msgid "" "account.

    " msgstr "

    Les codes de secours peuvent être utilisés pour accéder à votre compte dans l'eventualité où vous auriez perdu l'accès à votre application mobile d'authentification à deux facteurs.

    Prenez soin de ces codes ! Si vous perdez votre appareil mobile et n'avez pas de codes de secours vous n'aurez plus accès à votre compte.

    " -#: src/Module/Settings/TwoFactor/Recovery.php:108 +#: src/Module/Settings/TwoFactor/Recovery.php:110 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Après avoir généré de nouveaux codes de secours, veillez à remplacer les anciens qui ne seront plus valides." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:111 msgid "Generate new recovery codes" msgstr "Générer de nouveaux codes de secours" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "Next: Verification" msgstr "Prochaine étape : Vérification" -#: src/Module/Settings/TwoFactor/Trusted.php:82 +#: src/Module/Settings/TwoFactor/Trusted.php:84 msgid "Trusted browsers successfully removed." msgstr "Les navigateurs de confiance ont bien été supprimés." -#: src/Module/Settings/TwoFactor/Trusted.php:92 +#: src/Module/Settings/TwoFactor/Trusted.php:94 msgid "Trusted browser successfully removed." msgstr "Le navigateur de confiance a bien été supprimé." -#: src/Module/Settings/TwoFactor/Trusted.php:134 +#: src/Module/Settings/TwoFactor/Trusted.php:136 msgid "Two-factor Trusted Browsers" msgstr "Navigateurs de confiance pour la 2FA" -#: src/Module/Settings/TwoFactor/Trusted.php:135 +#: src/Module/Settings/TwoFactor/Trusted.php:137 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 "Les navigateurs de confiance sont des navigateurs individuels pour lesquels vous avez choisi de ne pas utiliser l'identification à deux facteurs pour accéder à Friendica. Merci d'utiliser cette fonctionnalité avec discernement, au vu du fait qu'elle peut annuler les bénéfices de l'identification à deux facteurs." -#: src/Module/Settings/TwoFactor/Trusted.php:136 +#: src/Module/Settings/TwoFactor/Trusted.php:138 msgid "Device" msgstr "Périphérique" -#: src/Module/Settings/TwoFactor/Trusted.php:137 +#: src/Module/Settings/TwoFactor/Trusted.php:139 msgid "OS" msgstr "Système d'exploitation" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:141 msgid "Trusted" msgstr "De confiance" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:142 msgid "Created At" msgstr "Créé à" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:143 msgid "Last Use" msgstr "Dernière utilisation" -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Module/Settings/TwoFactor/Trusted.php:145 msgid "Remove All" msgstr "Tout supprimer" -#: src/Module/Settings/TwoFactor/Verify.php:90 +#: src/Module/Settings/TwoFactor/Verify.php:91 msgid "Two-factor authentication successfully activated." msgstr "Authentification à deux facteurs activée avec succès." -#: src/Module/Settings/TwoFactor/Verify.php:124 +#: src/Module/Settings/TwoFactor/Verify.php:125 #, php-format msgid "" "

    Or you can submit the authentication settings manually:

    \n" @@ -10107,68 +11114,105 @@ msgid "" "" msgstr "

    Ou bien vous pouvez saisir les paramètres de l'authentification manuellement:

    \n
    \n\t
    Émetteur
    \n\t
    %s
    \n\t
    Nom du compte
    \n\t
    %s
    \n\t
    Clé secrète
    \n\t
    %s
    \n\t
    Type
    \n\t
    Temporel
    \n\t
    Nombre de chiffres
    \n\t
    6
    \n\t
    Algorithme de hachage
    \n\t
    SHA-1
    \n
    " -#: src/Module/Settings/TwoFactor/Verify.php:144 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Two-factor code verification" msgstr "Vérification du code d'identification" -#: src/Module/Settings/TwoFactor/Verify.php:146 +#: src/Module/Settings/TwoFactor/Verify.php:147 msgid "" "

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

    " msgstr "

    Veuillez scanner ce QR Code avec votre application mobile d'authenficiation à deux facteurs et saisissez le code qui s'affichera.

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

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

    %s

    " msgstr "

    Ou vous pouvez ouvrir l'adresse suivante sur votre périphérique mobile: 

    %s

    " -#: src/Module/Settings/TwoFactor/Verify.php:155 +#: src/Module/Settings/TwoFactor/Verify.php:156 msgid "Verify code and enable two-factor authentication" msgstr "Vérifier le code d'identification et activer l'authentification à deux facteurs" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 msgid "Export account" msgstr "Exporter le compte" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 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 "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur." -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:91 msgid "Export all" msgstr "Tout exporter" -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:91 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 "Exporte vos informations de compte, vos contacts et toutes vos publications au format JSON. Ce processus peut prendre beaucoup de temps et générer un fichier de taille importante. Utilisez cette fonctionnalité pour faire une sauvegarde complète de votre compte (vos photos ne sont pas exportées)." -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:92 msgid "Export Contacts to CSV" msgstr "Exporter vos contacts au format CSV" -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:92 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Exporter vos abonnements au format CSV. Compatible avec Mastodon." -#: src/Module/Special/HTTPException.php:51 +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "La publication de premier niveau n'est pas visible." + +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "La publication de premier niveau a été supprimée." + +#: src/Module/Special/DisplayNotFound.php:37 +msgid "" +"This node has blocked the top-level author or the author of the shared post." +msgstr "Ce nœud a bloqué l'auteur de premier niveau ou l'auteur de la publication partagée." + +#: src/Module/Special/DisplayNotFound.php:38 +msgid "" +"You have ignored or blocked the top-level author or the author of the shared" +" post." +msgstr "Vous avez ignoré ou bloqué l'auteur de premier niveau ou l'auteur de la publication partagée." + +#: src/Module/Special/DisplayNotFound.php:39 +msgid "" +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "Vous avez ignoré le serveur de l'auteur de premier niveau ou le serveur de l'auteur de la publication partagée." + +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "Conversation Non Trouvée" + +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "Malheureusement, la conversation demandée n'est pas disponible pour vous." + +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "Les raisons possibles sont :" + +#: src/Module/Special/HTTPException.php:78 msgid "Stack trace:" msgstr "Stack trace:" -#: src/Module/Special/HTTPException.php:55 +#: src/Module/Special/HTTPException.php:83 #, php-format msgid "Exception thrown in %s:%d" msgstr "Exception produite dans %s:%d" -#: src/Module/Tos.php:57 src/Module/Tos.php:91 +#: src/Module/Tos.php:58 src/Module/Tos.php:107 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" @@ -10181,28 +11225,131 @@ msgid "" "settings, it is not necessary for communication." msgstr "Au moment de l'inscription, et afin de fournir des communications entre le compte de l'utilisateur et ses contacts, l'utilisateur doit fournir un nom d'affichage (nom de plume), un nom d'utilisateur (pseudo) et une adresse de courriel fonctionnelle. Les noms seront accessibles sur la page de profil du compte par tout visiteur de la page, même si les autres informations de profil ne sont pas affichées. L'adresse de courriel ne sera utilisée que pour envoyer des notifications à l'utilisateur à propos de ses interactions, mais ne sera pas affichée de manière visible. Le référencement du compte dans le répertoire des comptes du nœud ou le répertoire global des utilisateurs est optionnel et peut être contrôlé dans les paramètres utilisateur, il n'est pas nécessaire pour la communication. " -#: src/Module/Tos.php:58 src/Module/Tos.php:92 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 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 "Ces données sont requises pour la communication et transférées aux nœuds des partenaires de communication, et sont stockées ici. Les utilisateurs peuvent ajouter des données privées additionnelles qui peuvent être transmises aux comptes de leurs partenaires de communication." -#: src/Module/Tos.php:59 src/Module/Tos.php:93 +#: src/Module/Tos.php:60 src/Module/Tos.php:109 #, 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 "A tout moment un utilisateur identifié peut exporter les données de son compte à partir des paramètres du compte. Si l'utilisateur souhaite supprimer son compte, il peut le faire à %1$s/removeme. La suppression du compte sera permanente. La suppression des données sera également demandée aux nœuds des partenaires de communication." +"href=\"%1$s/settings/removeme\">%1$s/settings/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 "A n'importe quel moment, un utilisateur connecté peut exporter les données de son compte à partir des Paramètres du compte. Si l'utilisateur souhaite supprimer son compte, il peut le faire à partir de la page %1$s/settings/removeme. La suppression du compte sera permanente. La suppression des données sera également demandée aux noeuds des partenaires de communication." -#: src/Module/Tos.php:62 src/Module/Tos.php:90 +#: src/Module/Tos.php:63 src/Module/Tos.php:106 msgid "Privacy Statement" msgstr "Politique de Confidentialité" +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "Règles" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "Le paramètre uri_id est manquant." + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "L'objet recherché n'existe pas ou a été supprimé." + +#: src/Module/User/Delegation.php:146 +#, php-format +msgid "You are now logged in as %s" +msgstr "Vous êtes maintenant connecté en tant que %s" + +#: src/Module/User/Delegation.php:185 +msgid "Switch between your accounts" +msgstr "Changer de compte" + +#: src/Module/User/Delegation.php:186 +msgid "Manage your accounts" +msgstr "Gérér vos comptes" + +#: src/Module/User/Delegation.php:187 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer." + +#: src/Module/User/Delegation.php:188 +msgid "Select an identity to manage: " +msgstr "Choisir une identité à gérer: " + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "L'import d'utilisateur sur un serveur fermé ne peut être effectué que par un administrateur." + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "Migrer le compte" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "Vous pouvez importer un compte d'un autre serveur Friendica." + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos contacts que vous avez déménagé ici." + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "Cette fonctionalité est expérimentale. Il n'est pas possible d'importer des contacts depuis le réseau OStatus (GNU Social/Statusnet) ou depuis Diaspora." + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "Fichier du compte" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\"" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "Une erreur a été détecté en décodant un fichier utilisateur" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?" + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "L'utilisateur '%s' existe déjà sur ce serveur!" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "Erreur de création d'utilisateur" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contacts non importés" +msgstr[1] "%d contacts non importés" +msgstr[2] "%d contacts non importés" + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "Erreur de création du profil utilisateur" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "Action réalisée. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe" + #: src/Module/Welcome.php:44 msgid "Welcome to Friendica" msgstr "Bienvenue sur Friendica" @@ -10333,15 +11480,15 @@ msgid "" msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux contacts. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'abonnement devraient commencer à apparaître au bout de 24 heures." #: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "Grouper vos contacts" +msgid "Add Your Contacts To Circle" +msgstr "Ajouter vos contacts à des cercles" #: 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 "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau." +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "Une fois que vous vous êtes fait des amis, organisez-les en cercles de conversation privés dans la barre latérale de votre page Contacts. Vous pouvez ensuite interagir avec chaque cercle en privé sur votre page Réseau." #: src/Module/Welcome.php:80 msgid "Why Aren't My Posts Public?" @@ -10368,51 +11515,51 @@ msgid "" " features and resources." msgstr "Nos pages d'aide peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:134 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 msgid "{0} wants to follow you" msgstr "{0} souhaite vous suivre" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:136 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 msgid "{0} has started following you" msgstr "{0} a commencé à vous suivre" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:91 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 #, php-format msgid "%s liked %s's post" msgstr "%s a aimé la publication de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:103 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 #, php-format msgid "%s disliked %s's post" msgstr "%s n'a pas aimé la publication de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:115 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 #, php-format msgid "%s is attending %s's event" msgstr "%s participe à l'évènement de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:127 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 #, php-format msgid "%s is not attending %s's event" msgstr "%s ne participe pas à l'évènement de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:139 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 #, php-format msgid "%s may attending %s's event" msgstr "%s participe peut-être à l'évènement de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:169 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 #, php-format msgid "%s is now friends with %s" msgstr "%s est désormais ami(e) avec %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:336 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:374 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 #, php-format msgid "%s commented on %s's post" msgstr "%s a commenté la publication de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:373 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 #, php-format msgid "%s created a new post" msgstr "%s a créé une nouvelle publication" @@ -10465,6 +11612,7 @@ msgid "%1$s shared your comment %2$s" msgstr "%1$s a partagé votre commentaire %2$s" #: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 #, php-format msgid "%1$s shared your post %2$s" msgstr "%1$s a partagé votre publication %2$s" @@ -10511,7 +11659,7 @@ msgstr "%1$s souhaite peut-être participer à votre évènement %2$s" #: src/Navigation/Notifications/Factory/Notification.php:270 #, php-format msgid "%1$s tagged you on %2$s" -msgstr "%1$s vous a mentionné•e dans %2$s" +msgstr "%1$s vous a mentionné(e) dans %2$s" #: src/Navigation/Notifications/Factory/Notification.php:274 #, php-format @@ -10554,189 +11702,189 @@ msgid "%1$s commented on your thread %2$s" msgstr "%1$s a commenté dans votre conversation %2$s" #: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:721 +#: src/Navigation/Notifications/Repository/Notify.php:752 msgid "[Friendica:Notify]" msgstr "[Friendica:Notification]" -#: src/Navigation/Notifications/Repository/Notify.php:289 +#: src/Navigation/Notifications/Repository/Notify.php:293 #, php-format msgid "%s New mail received at %s" msgstr "%s Nouveau message privé reçu sur %s" -#: src/Navigation/Notifications/Repository/Notify.php:291 +#: src/Navigation/Notifications/Repository/Notify.php:295 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:292 +#: src/Navigation/Notifications/Repository/Notify.php:296 msgid "a private message" msgstr "un message privé" -#: src/Navigation/Notifications/Repository/Notify.php:292 +#: src/Navigation/Notifications/Repository/Notify.php:296 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s vous a envoyé %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:294 +#: src/Navigation/Notifications/Repository/Notify.php:298 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre." -#: src/Navigation/Notifications/Repository/Notify.php:324 +#: src/Navigation/Notifications/Repository/Notify.php:328 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s a commenté sur %3$s de %2$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:329 +#: src/Navigation/Notifications/Repository/Notify.php:333 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s a commenté sur votre %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:337 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s a commenté sur son %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 -#: src/Navigation/Notifications/Repository/Notify.php:755 +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Nouveau commentaire dans la conversation #%2$d par %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:339 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s a commenté un élément que vous suivez." -#: src/Navigation/Notifications/Repository/Notify.php:343 -#: src/Navigation/Notifications/Repository/Notify.php:358 -#: src/Navigation/Notifications/Repository/Notify.php:770 +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre." -#: src/Navigation/Notifications/Repository/Notify.php:350 +#: src/Navigation/Notifications/Repository/Notify.php:354 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s a posté sur votre mur" -#: src/Navigation/Notifications/Repository/Notify.php:352 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s a publié sur votre mur à %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:353 +#: src/Navigation/Notifications/Repository/Notify.php:357 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:366 +#: src/Navigation/Notifications/Repository/Notify.php:370 #, php-format msgid "%s Introduction received" msgstr "%s Demande de mise en contact reçue" -#: src/Navigation/Notifications/Repository/Notify.php:368 +#: src/Navigation/Notifications/Repository/Notify.php:372 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:369 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:374 -#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 #, php-format msgid "You may visit their profile at %s" msgstr "Vous pouvez visiter son profil sur %s" -#: src/Navigation/Notifications/Repository/Notify.php:376 +#: src/Navigation/Notifications/Repository/Notify.php:380 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction." -#: src/Navigation/Notifications/Repository/Notify.php:383 +#: src/Navigation/Notifications/Repository/Notify.php:387 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Quelqu'un a commencé à partager avec vous" -#: src/Navigation/Notifications/Repository/Notify.php:385 -#: src/Navigation/Notifications/Repository/Notify.php:386 +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s partage avec vous sur %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:393 +#: src/Navigation/Notifications/Repository/Notify.php:397 #, php-format msgid "%s You have a new follower" msgstr "%s Vous avez un nouvel abonné" -#: src/Navigation/Notifications/Repository/Notify.php:395 -#: src/Navigation/Notifications/Repository/Notify.php:396 +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Vous avez un nouvel abonné à %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:409 +#: src/Navigation/Notifications/Repository/Notify.php:413 #, php-format msgid "%s Friend suggestion received" msgstr "%s Suggestion de mise en contact reçue" -#: src/Navigation/Notifications/Repository/Notify.php:411 +#: src/Navigation/Notifications/Repository/Notify.php:415 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:412 +#: src/Navigation/Notifications/Repository/Notify.php:416 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:418 +#: src/Navigation/Notifications/Repository/Notify.php:422 msgid "Name:" msgstr "Nom :" -#: src/Navigation/Notifications/Repository/Notify.php:419 +#: src/Navigation/Notifications/Repository/Notify.php:423 msgid "Photo:" msgstr "Photo :" -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:426 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion." -#: src/Navigation/Notifications/Repository/Notify.php:430 -#: src/Navigation/Notifications/Repository/Notify.php:445 +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 #, php-format msgid "%s Connection accepted" msgstr "%s Demande d'abonnement acceptée" -#: src/Navigation/Notifications/Repository/Notify.php:432 -#: src/Navigation/Notifications/Repository/Notify.php:447 +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' a accepté votre demande de connexion à %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:433 -#: src/Navigation/Notifications/Repository/Notify.php:448 +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s a accepté votre [url=%1$s]demande de connexion[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:438 +#: src/Navigation/Notifications/Repository/Notify.php:442 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." -msgstr "Vous êtes désormais mutuellement amis, et pouvez échanger des mises-à-jour d'état, des photos, et des messages sans restriction." +msgstr "Vous êtes désormais mutuellement amis, et pouvez échanger des mises-à-jour d'état, des photos, et des courriels sans restriction." -#: src/Navigation/Notifications/Repository/Notify.php:440 +#: src/Navigation/Notifications/Repository/Notify.php:444 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Veuillez visiter %s si vous souhaitez modifier cette relation." -#: src/Navigation/Notifications/Repository/Notify.php:453 +#: src/Navigation/Notifications/Repository/Notify.php:457 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -10745,33 +11893,34 @@ msgid "" "automatically." msgstr "'%1$s' a choisi de vous accepter comme fan ce qui empêche certains canaux de communication tel les messages privés et certaines interactions de profil. Ceci est une page de célébrité ou de communauté, ces paramètres ont été appliqués automatiquement." -#: src/Navigation/Notifications/Repository/Notify.php:455 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "%1$s peut choisir à l'avenir de rendre cette relation réciproque ou au moins plus permissive." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:461 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Veuillez visiter %s si vous souhaitez modifier cette relation." -#: src/Navigation/Notifications/Repository/Notify.php:467 +#: src/Navigation/Notifications/Repository/Notify.php:471 msgid "registration request" msgstr "demande d'inscription" -#: src/Navigation/Notifications/Repository/Notify.php:469 +#: src/Navigation/Notifications/Repository/Notify.php:473 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Vous avez reçu une demande d'inscription de %1$s sur %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:470 +#: src/Navigation/Notifications/Repository/Notify.php:474 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "%2$s vous a envoyé une [url=%1$s]demande de création de compte[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:475 +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 #, php-format msgid "" "Full Name:\t%s\n" @@ -10779,21 +11928,50 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Nom complet :\t%s\nAdresse du site :\t%s\nIdentifiant :\t%s (%s)" -#: src/Navigation/Notifications/Repository/Notify.php:481 +#: src/Navigation/Notifications/Repository/Notify.php:485 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Veuillez visiter %s pour approuver ou rejeter la demande." -#: src/Navigation/Notifications/Repository/Notify.php:749 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "Nouvelle inscription" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "Vous avez reçu une nouvelle inscription de '%1$s' à %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "Vous avez reçu une [url=%1$s]nouvelle inscription[/url] de %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "Merci de visiter %s pour consulter la nouvelle inscription." + +#: src/Navigation/Notifications/Repository/Notify.php:780 #, php-format msgid "%s %s tagged you" -msgstr "%s%s vous a mentionné•e" +msgstr "%s%s vous a mentionné(e)" -#: src/Navigation/Notifications/Repository/Notify.php:752 +#: src/Navigation/Notifications/Repository/Notify.php:783 #, php-format msgid "%s %s shared a new post" msgstr "%s %s a partagé une nouvelle publication" +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "%1$s %2$s a aimé votre publication #%3$d" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "%1$s %2$s a aimé votre commentaire sur #%3$d" + #: src/Object/EMail/ItemCCEMail.php:42 #, php-format msgid "" @@ -10817,194 +11995,221 @@ msgstr "Merci de contacter l’émetteur en répondant à cette publication si v msgid "%s posted an update." msgstr "%s a publié une mise à jour." -#: src/Object/Post.php:136 +#: src/Object/Post.php:138 msgid "Private Message" msgstr "Message privé" -#: src/Object/Post.php:140 +#: src/Object/Post.php:142 msgid "Public Message" msgstr "Message Public" -#: src/Object/Post.php:144 +#: src/Object/Post.php:146 msgid "Unlisted Message" msgstr "Message non référencé" -#: src/Object/Post.php:179 +#: src/Object/Post.php:182 msgid "This entry was edited" msgstr "Cette entrée a été éditée" -#: src/Object/Post.php:207 +#: src/Object/Post.php:210 msgid "Connector Message" msgstr "Message du connecteur" -#: src/Object/Post.php:222 src/Object/Post.php:224 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Éditer" -#: src/Object/Post.php:248 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "Effacer globalement" -#: src/Object/Post.php:248 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "Effacer localement" -#: src/Object/Post.php:264 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "Bloquer %s" -#: src/Object/Post.php:269 +#: src/Object/Post.php:274 +#, php-format +msgid "Ignore %s" +msgstr "Ignorer %s" + +#: src/Object/Post.php:279 +#, php-format +msgid "Collapse %s" +msgstr "Réduire %s" + +#: src/Object/Post.php:283 +msgid "Report post" +msgstr "Signaler la publication" + +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "Sauvegarder dans le dossier" -#: src/Object/Post.php:304 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "Je vais participer" -#: src/Object/Post.php:304 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "Je ne vais pas participer" -#: src/Object/Post.php:304 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "Je vais peut-être participer" -#: src/Object/Post.php:334 +#: src/Object/Post.php:364 msgid "Ignore thread" msgstr "Ignorer cette conversation" -#: src/Object/Post.php:335 +#: src/Object/Post.php:365 msgid "Unignore thread" msgstr "Ne pas ignorer cette conversation" -#: src/Object/Post.php:336 +#: src/Object/Post.php:366 msgid "Toggle ignore status" msgstr "Commuter le statut de suivi" -#: src/Object/Post.php:346 +#: src/Object/Post.php:376 msgid "Add star" msgstr "Ajouter une étoile" -#: src/Object/Post.php:347 +#: src/Object/Post.php:377 msgid "Remove star" msgstr "Retirer l'étoile" -#: src/Object/Post.php:348 +#: src/Object/Post.php:378 msgid "Toggle star status" msgstr "Commuter l'état de l'étoile" -#: src/Object/Post.php:359 +#: src/Object/Post.php:389 msgid "Pin" msgstr "Épingler" -#: src/Object/Post.php:360 +#: src/Object/Post.php:390 msgid "Unpin" msgstr "Désépingler" -#: src/Object/Post.php:361 +#: src/Object/Post.php:391 msgid "Toggle pin status" msgstr "Commuter le statut de l'épingle" -#: src/Object/Post.php:364 +#: src/Object/Post.php:394 msgid "Pinned" msgstr "Épinglé" -#: src/Object/Post.php:369 +#: src/Object/Post.php:399 msgid "Add tag" -msgstr "Ajouter une étiquette" +msgstr "Ajouter un tag" -#: src/Object/Post.php:382 +#: src/Object/Post.php:412 msgid "Quote share this" msgstr "Citer et repartager ceci" -#: src/Object/Post.php:382 +#: src/Object/Post.php:412 msgid "Quote Share" msgstr "Citer et repartager" -#: src/Object/Post.php:385 +#: src/Object/Post.php:415 msgid "Reshare this" -msgstr "Repartager ceci" +msgstr "Partager ceci" -#: src/Object/Post.php:385 +#: src/Object/Post.php:415 msgid "Reshare" -msgstr "Repartager" +msgstr "Partager" -#: src/Object/Post.php:386 +#: src/Object/Post.php:416 msgid "Cancel your Reshare" msgstr "Annuler votre repartage" -#: src/Object/Post.php:386 +#: src/Object/Post.php:416 msgid "Unshare" msgstr "Ne plus partager" -#: src/Object/Post.php:433 +#: src/Object/Post.php:467 #, php-format msgid "%s (Received %s)" msgstr "%s ( Reçu %s)" -#: src/Object/Post.php:438 +#: src/Object/Post.php:473 msgid "Comment this item on your system" msgstr "Commenter ce sujet sur votre instance" -#: src/Object/Post.php:438 +#: src/Object/Post.php:473 msgid "Remote comment" msgstr "Commentaire distant" -#: src/Object/Post.php:459 +#: src/Object/Post.php:495 msgid "Share via ..." msgstr "Partager par..." -#: src/Object/Post.php:459 +#: src/Object/Post.php:495 msgid "Share via external services" msgstr "Partager par des services externes" -#: src/Object/Post.php:488 +#: src/Object/Post.php:502 +msgid "Unknown parent" +msgstr "Parent inconnu" + +#: src/Object/Post.php:506 +#, php-format +msgid "in reply to %s" +msgstr "en réponse à %s" + +#: src/Object/Post.php:508 +msgid "Parent is probably private or not federated." +msgstr "Le parent est probablement privé ou non fédéré." + +#: src/Object/Post.php:532 msgid "to" msgstr "à" -#: src/Object/Post.php:489 +#: src/Object/Post.php:533 msgid "via" msgstr "via" -#: src/Object/Post.php:490 +#: src/Object/Post.php:534 msgid "Wall-to-Wall" msgstr "Inter-mur" -#: src/Object/Post.php:491 +#: src/Object/Post.php:535 msgid "via Wall-To-Wall:" msgstr "en Inter-mur :" -#: src/Object/Post.php:533 +#: src/Object/Post.php:582 #, php-format msgid "Reply to %s" msgstr "Répondre à %s" -#: src/Object/Post.php:536 +#: src/Object/Post.php:585 msgid "More" msgstr "Plus" -#: src/Object/Post.php:554 +#: src/Object/Post.php:604 msgid "Notifier task is pending" msgstr "La notification de la tâche est en cours" -#: src/Object/Post.php:555 +#: src/Object/Post.php:605 msgid "Delivery to remote servers is pending" msgstr "La distribution aux serveurs distants est en attente" -#: src/Object/Post.php:556 +#: src/Object/Post.php:606 msgid "Delivery to remote servers is underway" msgstr "La distribution aux serveurs distants est en cours" -#: src/Object/Post.php:557 +#: src/Object/Post.php:607 msgid "Delivery to remote servers is mostly done" msgstr "La distribution aux serveurs distants est presque terminée" -#: src/Object/Post.php:558 +#: src/Object/Post.php:608 msgid "Delivery to remote servers is done" msgstr "La distribution aux serveurs distants est terminée" -#: src/Object/Post.php:578 +#: src/Object/Post.php:630 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -11012,29 +12217,77 @@ msgstr[0] "%d commentaire" msgstr[1] "%d commentaires" msgstr[2] "%d commentaires" -#: src/Object/Post.php:579 +#: src/Object/Post.php:631 msgid "Show more" msgstr "Montrer plus" -#: src/Object/Post.php:580 +#: src/Object/Post.php:632 msgid "Show fewer" msgstr "Montrer moins" -#: src/Protocol/OStatus.php:1471 +#: src/Object/Post.php:668 +#, php-format +msgid "Reshared by: %s" +msgstr "Partagé par : %s" + +#: src/Object/Post.php:673 +#, php-format +msgid "Viewed by: %s" +msgstr "Vu par : %s" + +#: src/Object/Post.php:678 +#, php-format +msgid "Liked by: %s" +msgstr "Aimé par : %s" + +#: src/Object/Post.php:683 +#, php-format +msgid "Disliked by: %s" +msgstr "Pas aimé par : %s" + +#: src/Object/Post.php:688 +#, php-format +msgid "Attended by: %s" +msgstr "Y assisteront : %s" + +#: src/Object/Post.php:693 +#, php-format +msgid "Maybe attended by: %s" +msgstr "Y assisteront peut-être : %s" + +#: src/Object/Post.php:698 +#, php-format +msgid "Not attended by: %s" +msgstr "N'y assisteront pas : %s" + +#: src/Object/Post.php:703 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "La réaction %s a été faite par : %s" + +#: src/Protocol/ActivityPub/Receiver.php:522 +msgid "Chat" +msgstr "Chat" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "(aucun sujet)" + +#: src/Protocol/OStatus.php:1390 #, php-format msgid "%s is now following %s." msgstr "%s suit désormais %s." -#: src/Protocol/OStatus.php:1472 +#: src/Protocol/OStatus.php:1391 msgid "following" msgstr "following" -#: src/Protocol/OStatus.php:1475 +#: src/Protocol/OStatus.php:1394 #, php-format msgid "%s stopped following %s." msgstr "%s ne suit plus %s." -#: src/Protocol/OStatus.php:1476 +#: src/Protocol/OStatus.php:1395 msgid "stopped following" msgstr "retiré de la liste de suivi" @@ -11043,24 +12296,24 @@ msgstr "retiré de la liste de suivi" msgid "The folder %s must be writable by webserver." msgstr "Le répertoire %s doit être accessible en écriture par le serveur web." -#: src/Security/Authentication.php:226 +#: src/Security/Authentication.php:227 msgid "Login failed." msgstr "Échec de connexion." -#: src/Security/Authentication.php:271 +#: src/Security/Authentication.php:272 msgid "Login failed. Please check your credentials." msgstr "Échec d'authentification. Merci de vérifier vos identifiants." -#: src/Security/Authentication.php:382 +#: src/Security/Authentication.php:391 #, php-format msgid "Welcome %s" msgstr "Bienvenue %s" -#: src/Security/Authentication.php:383 +#: src/Security/Authentication.php:392 msgid "Please upload a profile photo." msgstr "Merci d'illustrer votre profil d'une image." -#: src/Util/EMailer/MailBuilder.php:259 +#: src/Util/EMailer/MailBuilder.php:260 msgid "Friendica Notification" msgstr "Notification Friendica" @@ -11083,81 +12336,77 @@ msgstr "L'administrateur de %s" msgid "thanks" msgstr "merci" -#: src/Util/Temporal.php:170 +#: src/Util/Temporal.php:172 msgid "YYYY-MM-DD or MM-DD" msgstr "AAAA-MM-JJ ou MM-JJ" -#: src/Util/Temporal.php:278 +#: src/Util/Temporal.php:280 #, php-format msgid "Time zone: %s Change in Settings" msgstr "Fuseau horaire : %s Le changer dans les paramètres" -#: src/Util/Temporal.php:321 +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 msgid "never" msgstr "jamais" -#: src/Util/Temporal.php:328 +#: src/Util/Temporal.php:343 msgid "less than a second ago" msgstr "il y a moins d'une seconde" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:352 msgid "year" msgstr "année" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:352 msgid "years" msgstr "années" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:353 msgid "months" msgstr "mois" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:354 msgid "weeks" msgstr "semaines" -#: src/Util/Temporal.php:340 +#: src/Util/Temporal.php:355 msgid "days" msgstr "jours" -#: src/Util/Temporal.php:341 +#: src/Util/Temporal.php:356 msgid "hour" msgstr "heure" -#: src/Util/Temporal.php:341 +#: src/Util/Temporal.php:356 msgid "hours" msgstr "heures" -#: src/Util/Temporal.php:342 +#: src/Util/Temporal.php:357 msgid "minute" msgstr "minute" -#: src/Util/Temporal.php:342 +#: src/Util/Temporal.php:357 msgid "minutes" msgstr "minutes" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:358 msgid "second" msgstr "seconde" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:358 msgid "seconds" msgstr "secondes" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:367 #, php-format msgid "in %1$d %2$s" msgstr "dans %1$d %2$s" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:370 #, php-format msgid "%1$d %2$s ago" msgstr "Il y a %1$d %2$s" -#: src/Worker/Delivery.php:524 -msgid "(no subject)" -msgstr "(aucun sujet)" - #: src/Worker/PushSubscription.php:110 msgid "Notification from Friendica" msgstr "Notification de Friendica" @@ -11166,35 +12415,35 @@ msgstr "Notification de Friendica" msgid "Empty Post" msgstr "Publication vide" -#: view/theme/duepuntozero/config.php:52 +#: view/theme/duepuntozero/config.php:68 msgid "default" msgstr "Par défaut" -#: view/theme/duepuntozero/config.php:53 +#: view/theme/duepuntozero/config.php:69 msgid "greenzero" msgstr "greenzero" -#: view/theme/duepuntozero/config.php:54 +#: view/theme/duepuntozero/config.php:70 msgid "purplezero" msgstr "purplezero" -#: view/theme/duepuntozero/config.php:55 +#: view/theme/duepuntozero/config.php:71 msgid "easterbunny" msgstr "easterbunny" -#: view/theme/duepuntozero/config.php:56 +#: view/theme/duepuntozero/config.php:72 msgid "darkzero" msgstr "darkzero" -#: view/theme/duepuntozero/config.php:57 +#: view/theme/duepuntozero/config.php:73 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:58 +#: view/theme/duepuntozero/config.php:74 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:87 msgid "Variations" msgstr "Variations" @@ -11363,78 +12612,78 @@ msgstr "Aller au contenu principal" msgid "Back to top" msgstr "Retour en haut" -#: view/theme/frio/theme.php:218 +#: view/theme/frio/theme.php:211 msgid "Guest" msgstr "Invité" -#: view/theme/frio/theme.php:221 +#: view/theme/frio/theme.php:214 msgid "Visitor" msgstr "Visiteur" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Alignment" msgstr "Alignement" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Left" msgstr "Gauche" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Center" msgstr "Centré" -#: view/theme/quattro/config.php:74 +#: view/theme/quattro/config.php:90 msgid "Color scheme" msgstr "Schéma de couleurs" -#: view/theme/quattro/config.php:75 +#: view/theme/quattro/config.php:91 msgid "Posts font size" msgstr "Taille de texte des publications" -#: view/theme/quattro/config.php:76 +#: view/theme/quattro/config.php:92 msgid "Textareas font size" msgstr "Taille de police des zones de texte" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" -msgstr "Liste de forums d'entraide, séparés par des virgules" +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" +msgstr "Liste de groupe d'entraide, séparés par des virgules" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "don't show" msgstr "cacher" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "show" msgstr "montrer" -#: view/theme/vier/config.php:121 +#: view/theme/vier/config.php:137 msgid "Set style" msgstr "Définir le style" -#: view/theme/vier/config.php:122 +#: view/theme/vier/config.php:138 msgid "Community Pages" msgstr "Pages Communautaires" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:134 +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 msgid "Community Profiles" msgstr "Profils communautaires" -#: view/theme/vier/config.php:124 +#: view/theme/vier/config.php:140 msgid "Help or @NewHere ?" msgstr "Besoin d'aide ou @NouveauIci ?" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:305 +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 msgid "Connect Services" msgstr "Connecter des services" -#: view/theme/vier/config.php:126 +#: view/theme/vier/config.php:142 msgid "Find Friends" msgstr "Trouver des contacts" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:161 +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 msgid "Last users" msgstr "Derniers utilisateurs" -#: view/theme/vier/theme.php:220 +#: view/theme/vier/theme.php:234 msgid "Quick Start" msgstr "Démarrage rapide" diff --git a/view/lang/fr/strings.php b/view/lang/fr/strings.php index 89dd29da3..0a260183b 100644 --- a/view/lang/fr/strings.php +++ b/view/lang/fr/strings.php @@ -5,104 +5,13 @@ function string_plural_select_fr($n){ $n = intval($n); if (($n == 0 || $n == 1)) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else { return 2; } }} -$a->strings['Access denied.'] = 'Accès refusé.'; -$a->strings['User not found.'] = 'Utilisateur introuvable.'; -$a->strings['Access to this profile has been restricted.'] = 'L\'accès au profil a été restreint.'; -$a->strings['Events'] = 'Évènements'; -$a->strings['View'] = 'Vue'; -$a->strings['Previous'] = 'Précédent'; -$a->strings['Next'] = 'Suivant'; -$a->strings['today'] = 'aujourd\'hui'; -$a->strings['month'] = 'mois'; -$a->strings['week'] = 'semaine'; -$a->strings['day'] = 'jour'; -$a->strings['list'] = 'liste'; -$a->strings['User not found'] = 'Utilisateur introuvable'; -$a->strings['This calendar format is not supported'] = 'Format de calendrier inconnu'; -$a->strings['No exportable data found'] = 'Rien à exporter'; -$a->strings['calendar'] = 'calendrier'; -$a->strings['Public access denied.'] = 'Accès public refusé.'; -$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'L\'objet recherché n\'existe pas ou a été supprimé.'; -$a->strings['The feed for this item is unavailable.'] = 'Le flux pour cet objet n\'est pas disponible.'; -$a->strings['Permission denied.'] = 'Permission refusée.'; -$a->strings['Item not found'] = 'Élément introuvable'; -$a->strings['Edit post'] = 'Éditer la publication'; -$a->strings['Save'] = 'Sauver'; -$a->strings['Loading...'] = 'Chargement en cours...'; -$a->strings['Upload photo'] = 'Joindre photo'; -$a->strings['upload photo'] = 'envoi image'; -$a->strings['Attach file'] = 'Joindre fichier'; -$a->strings['attach file'] = 'ajout fichier'; -$a->strings['Insert web link'] = 'Insérer lien web'; -$a->strings['web link'] = 'lien web'; -$a->strings['Insert video link'] = 'Insérer un lien video'; -$a->strings['video link'] = 'lien vidéo'; -$a->strings['Insert audio link'] = 'Insérer un lien audio'; -$a->strings['audio link'] = 'lien audio'; -$a->strings['Set your location'] = 'Définir votre localisation'; -$a->strings['set location'] = 'spéc. localisation'; -$a->strings['Clear browser location'] = 'Effacer la localisation du navigateur'; -$a->strings['clear location'] = 'supp. localisation'; -$a->strings['Please wait'] = 'Patientez'; -$a->strings['Permission settings'] = 'Réglages des permissions'; -$a->strings['CC: email addresses'] = 'CC: adresses de courriel'; -$a->strings['Public post'] = 'Publication publique'; -$a->strings['Set title'] = 'Définir un titre'; -$a->strings['Categories (comma-separated list)'] = 'Catégories (séparées par des virgules)'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Exemple : bob@exemple.com, mary@exemple.com'; -$a->strings['Preview'] = 'Aperçu'; -$a->strings['Cancel'] = 'Annuler'; -$a->strings['Bold'] = 'Gras'; -$a->strings['Italic'] = 'Italique'; -$a->strings['Underline'] = 'Souligné'; -$a->strings['Quote'] = 'Citation'; -$a->strings['Code'] = 'Code'; -$a->strings['Link'] = 'Lien'; -$a->strings['Link or Media'] = 'Lien ou média'; -$a->strings['Message'] = 'Message'; -$a->strings['Browser'] = 'Navigateur'; -$a->strings['Permissions'] = 'Permissions'; -$a->strings['Open Compose page'] = 'Ouvrir la page de saisie'; -$a->strings['Event can not end before it has started.'] = 'L\'évènement ne peut pas se terminer avant d\'avoir commencé.'; -$a->strings['Event title and start time are required.'] = 'Vous devez donner un nom et un horaire de début à l\'évènement.'; -$a->strings['Create New Event'] = 'Créer un nouvel évènement'; -$a->strings['Event details'] = 'Détails de l\'évènement'; -$a->strings['Starting date and Title are required.'] = 'La date de début et le titre sont requis.'; -$a->strings['Event Starts:'] = 'Début de l\'évènement :'; -$a->strings['Required'] = 'Requis'; -$a->strings['Finish date/time is not known or not relevant'] = 'Date / heure de fin inconnue ou sans objet'; -$a->strings['Event Finishes:'] = 'Fin de l\'évènement :'; -$a->strings['Description:'] = 'Description :'; -$a->strings['Location:'] = 'Localisation :'; -$a->strings['Title:'] = 'Titre :'; -$a->strings['Share this event'] = 'Partager cet évènement'; -$a->strings['Submit'] = 'Envoyer'; -$a->strings['Basic'] = 'Simple'; -$a->strings['Advanced'] = 'Avancé'; -$a->strings['Failed to remove event'] = 'La suppression de l\'évènement a échoué.'; -$a->strings['Photos'] = 'Photos'; -$a->strings['Upload'] = 'Téléverser'; -$a->strings['Files'] = 'Fichiers'; -$a->strings['Submit Request'] = 'Envoyer la requête'; -$a->strings['You already added this contact.'] = 'Vous avez déjà ajouté ce contact.'; -$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté.'; -$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Le support d\'OStatus est désactivé. Le contact ne peut pas être ajouté.'; -$a->strings['Connect/Follow'] = 'Se connecter/Suivre'; -$a->strings['Please answer the following:'] = 'Merci de répondre à ce qui suit :'; -$a->strings['Your Identity Address:'] = 'Votre adresse d\'identité :'; -$a->strings['Profile URL'] = 'URL du Profil'; -$a->strings['Tags:'] = 'Étiquette :'; -$a->strings['%s knows you'] = '%s vous connaît'; -$a->strings['Add a personal note:'] = 'Ajouter une note personnelle :'; -$a->strings['Status Messages and Posts'] = 'Messages d\'état et publications'; -$a->strings['The contact could not be added.'] = 'Le contact n\'a pas pu être ajouté.'; $a->strings['Unable to locate original post.'] = 'Impossible de localiser la publication originale.'; -$a->strings['Empty post discarded.'] = 'Publication vide rejetée.'; $a->strings['Post updated.'] = 'Publication mise à jour.'; $a->strings['Item wasn\'t stored.'] = 'La publication n\'a pas été enregistrée.'; $a->strings['Item couldn\'t be fetched.'] = 'La publication n\'a pas pu être obtenue.'; +$a->strings['Empty post discarded.'] = 'Publication vide rejetée.'; $a->strings['Item not found.'] = 'Élément introuvable.'; +$a->strings['Permission denied.'] = 'Permission refusée.'; $a->strings['No valid account found.'] = 'Impossible de trouver un compte valide.'; $a->strings['Password reset request issued. Check your email.'] = 'Réinitialisation du mot de passe en cours. Vérifiez votre courriel.'; $a->strings[' @@ -116,8 +25,8 @@ $a->strings[' Your password will not be changed unless we can verify that you issued this request.'] = ' - Cher(e) %1$s, - Une demande vient d\'être faite à "%2$s" pour réinitialiser votre mot de passe. + Cher/Chère %1$s, + Une demande vient d\'être faite depuis "%2$s" pour réinitialiser votre mot de passe. Afin de confirmer cette demande, merci de sélectionner le lien ci-dessous et de le coller dans la barre d\'adresse de votre navigateur. @@ -148,12 +57,12 @@ $a->strings[' Adresse : %2$s Identifiant : %3$s'; -$a->strings['Password reset requested at %s'] = 'Requête de réinitialisation de mot de passe à %s'; +$a->strings['Password reset requested at %s'] = 'Demande de réinitialisation de mot de passe depuis %s'; $a->strings['Request could not be verified. (You may have previously submitted it.) Password reset failed.'] = 'Impossible d\'honorer cette demande. (Vous l\'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué.'; -$a->strings['Request has expired, please make a new one.'] = 'La requête a expiré, veuillez la renouveler.'; +$a->strings['Request has expired, please make a new one.'] = 'La demande a expirée, veuillez la renouveler.'; $a->strings['Forgot your Password?'] = 'Mot de passe oublié ?'; $a->strings['Enter your email address and submit to have your password reset. Then check your email for further instructions.'] = 'Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel.'; -$a->strings['Nickname or Email: '] = 'Pseudo ou eMail : '; +$a->strings['Nickname or Email: '] = 'Pseudo ou Courriel : '; $a->strings['Reset'] = 'Réinitialiser'; $a->strings['Password Reset'] = 'Réinitialiser le mot de passe'; $a->strings['Your password has been reset as requested.'] = 'Votre mot de passe a bien été réinitialisé.'; @@ -189,9 +98,6 @@ $a->strings[' Vous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté. '; $a->strings['Your password has been changed at %s'] = 'Votre mot de passe a été modifié à %s'; -$a->strings['No keywords to match. Please add keywords to your profile.'] = 'Aucun mot-clé ne correspond. Merci d\'ajouter des mots-clés à votre profil.'; -$a->strings['No matches'] = 'Aucune correspondance'; -$a->strings['Profile Match'] = 'Correpondance de profils'; $a->strings['New Message'] = 'Nouveau message'; $a->strings['No recipient selected.'] = 'Pas de destinataire sélectionné.'; $a->strings['Unable to locate contact information.'] = 'Impossible de localiser les informations du contact.'; @@ -207,6 +113,10 @@ $a->strings['Send Private Message'] = 'Envoyer un message privé'; $a->strings['To:'] = 'À:'; $a->strings['Subject:'] = 'Sujet:'; $a->strings['Your message:'] = 'Votre message :'; +$a->strings['Upload photo'] = 'Joindre photo'; +$a->strings['Insert web link'] = 'Insérer lien web'; +$a->strings['Please wait'] = 'Patientez'; +$a->strings['Submit'] = 'Envoyer'; $a->strings['No messages.'] = 'Aucun message.'; $a->strings['Message not available.'] = 'Message indisponible.'; $a->strings['Delete message'] = 'Effacer message'; @@ -224,18 +134,8 @@ $a->strings['%d message'] = [ ]; $a->strings['Personal Notes'] = 'Notes personnelles'; $a->strings['Personal notes are visible only by yourself.'] = 'Les notes personnelles ne sont visibles que par vous.'; -$a->strings['Subscribing to contacts'] = 'Abonnement aux contacts'; -$a->strings['No contact provided.'] = 'Pas de contact fourni.'; -$a->strings['Couldn\'t fetch information for contact.'] = 'Impossible de récupérer les informations pour ce contact.'; -$a->strings['Couldn\'t fetch friends for contact.'] = 'Impossible d\'obtenir les abonnements de ce contact.'; -$a->strings['Couldn\'t fetch following contacts.'] = 'Impossible de récupérer les contacts suivants.'; -$a->strings['Couldn\'t fetch remote profile.'] = 'Impossible de récupérer le profil distant.'; -$a->strings['Unsupported network'] = 'Réseau incompatible'; -$a->strings['Done'] = 'Terminé'; -$a->strings['success'] = 'réussite'; -$a->strings['failed'] = 'échec'; -$a->strings['ignored'] = 'ignoré'; -$a->strings['Keep this window open until done.'] = 'Veuillez garder cette fenêtre ouverte jusqu\'à la fin.'; +$a->strings['Save'] = 'Sauver'; +$a->strings['User not found.'] = 'Utilisateur introuvable.'; $a->strings['Photo Albums'] = 'Albums photo'; $a->strings['Recent Photos'] = 'Photos récentes'; $a->strings['Upload New Photos'] = 'Téléverser de nouvelles photos'; @@ -246,22 +146,18 @@ $a->strings['Album successfully deleted'] = 'Album bien supprimé'; $a->strings['Album was empty.'] = 'L\'album était vide'; $a->strings['Failed to delete the photo.'] = 'La suppression de la photo a échoué.'; $a->strings['a photo'] = 'une photo'; -$a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s a été mentionné•e dans %2$s par %3$s'; -$a->strings['Image exceeds size limit of %s'] = 'L\'image dépasse la taille limite de %s'; -$a->strings['Image upload didn\'t complete, please try again'] = 'La mise en ligne de l\'image ne s\'est pas terminée, veuillez réessayer'; -$a->strings['Image file is missing'] = 'Fichier image manquant'; -$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Le serveur ne peut pas accepter la mise en ligne d\'un nouveau fichier en ce moment, veuillez contacter un administrateur'; -$a->strings['Image file is empty.'] = 'Fichier image vide.'; -$a->strings['Unable to process image.'] = 'Impossible de traiter l\'image.'; -$a->strings['Image upload failed.'] = 'Le téléversement de l\'image a échoué.'; +$a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s a été mentionné(e) dans %2$s par %3$s'; +$a->strings['Public access denied.'] = 'Accès public refusé.'; $a->strings['No photos selected'] = 'Aucune photo sélectionnée'; -$a->strings['Access to this item is restricted.'] = 'Accès restreint à cet élément.'; +$a->strings['The maximum accepted image size is %s'] = 'La taille maximum d\'image autorisée est de %s'; $a->strings['Upload Photos'] = 'Téléverser des photos'; $a->strings['New album name: '] = 'Nom du nouvel album : '; $a->strings['or select existing album:'] = 'ou sélectionner un album existant'; $a->strings['Do not show a status post for this upload'] = 'Ne pas publier de notice de statut pour cet envoi'; +$a->strings['Permissions'] = 'Permissions'; $a->strings['Do you really want to delete this photo album and all its photos?'] = 'Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?'; $a->strings['Delete Album'] = 'Effacer l\'album'; +$a->strings['Cancel'] = 'Annuler'; $a->strings['Edit Album'] = 'Éditer l\'album'; $a->strings['Drop Album'] = 'Supprimer l\'album'; $a->strings['Show Newest First'] = 'Plus récent d\'abord'; @@ -277,17 +173,19 @@ $a->strings['Delete photo'] = 'Effacer la photo'; $a->strings['Use as profile photo'] = 'Utiliser comme photo de profil'; $a->strings['Private Photo'] = 'Photo privée'; $a->strings['View Full Size'] = 'Voir en taille réelle'; -$a->strings['Tags: '] = 'Étiquettes :'; -$a->strings['[Select tags to remove]'] = '[Sélectionner les étiquettes à supprimer]'; +$a->strings['Tags: '] = 'Tags :'; +$a->strings['[Select tags to remove]'] = '[Sélectionner les tags à supprimer]'; $a->strings['New album name'] = 'Nom du nouvel album'; $a->strings['Caption'] = 'Titre'; -$a->strings['Add a Tag'] = 'Ajouter une étiquette'; +$a->strings['Add a Tag'] = 'Ajouter un tag'; $a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Exemples : @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances'; $a->strings['Do not rotate'] = 'Pas de rotation'; $a->strings['Rotate CW (right)'] = 'Tourner dans le sens des aiguilles d\'une montre (vers la droite)'; $a->strings['Rotate CCW (left)'] = 'Tourner dans le sens contraire des aiguilles d\'une montre (vers la gauche)'; $a->strings['This is you'] = 'C\'est vous'; $a->strings['Comment'] = 'Commenter'; +$a->strings['Preview'] = 'Aperçu'; +$a->strings['Loading...'] = 'Chargement en cours...'; $a->strings['Select'] = 'Sélectionner'; $a->strings['Delete'] = 'Supprimer'; $a->strings['Like'] = 'Aime'; @@ -295,107 +193,31 @@ $a->strings['I like this (toggle)'] = 'J\'aime'; $a->strings['Dislike'] = 'N\'aime pas'; $a->strings['I don\'t like this (toggle)'] = 'Je n\'aime pas'; $a->strings['Map'] = 'Carte'; -$a->strings['View Album'] = 'Voir l\'album'; -$a->strings['Bad Request.'] = 'Mauvaise requête.'; -$a->strings['Contact not found.'] = 'Contact introuvable.'; -$a->strings['[Friendica System Notify]'] = '[Notification Système de Friendica]'; -$a->strings['User deleted their account'] = 'L\'utilisateur a supprimé son compte'; -$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Sur votre nœud Friendica, un utilisateur a supprimé son compte. Veuillez vous assurer que ses données sont supprimées des sauvegardes.'; -$a->strings['The user id is %d'] = 'L\'identifiant d\'utilisateur est %d'; -$a->strings['Remove My Account'] = 'Supprimer mon compte'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Ceci supprimera totalement votre compte. Cette opération est irréversible.'; -$a->strings['Please enter your password for verification:'] = 'Merci de saisir votre mot de passe pour vérification :'; -$a->strings['Resubscribing to OStatus contacts'] = 'Réinscription aux contacts OStatus'; -$a->strings['Error'] = [ - 0 => 'Erreur', - 1 => 'Erreurs', - 2 => 'Erreurs', -]; -$a->strings['Failed to connect with email account using the settings provided.'] = 'Impossible de se connecter au compte courriel configuré.'; -$a->strings['Connected Apps'] = 'Applications connectées'; -$a->strings['Name'] = 'Nom'; -$a->strings['Home Page'] = 'Page d\'accueil'; -$a->strings['Created'] = 'Créé'; -$a->strings['Remove authorization'] = 'Révoquer l\'autorisation'; -$a->strings['Save Settings'] = 'Sauvegarder les paramètres'; -$a->strings['Addon Settings'] = 'Paramètres d\'extension'; -$a->strings['No Addon settings configured'] = 'Aucuns paramètres d\'Extension paramétré.'; -$a->strings['Additional Features'] = 'Fonctions supplémentaires'; -$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings['enabled'] = 'activé'; -$a->strings['disabled'] = 'désactivé'; -$a->strings['Built-in support for %s connectivity is %s'] = 'Le support natif pour la connectivité %s est %s'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; -$a->strings['Email access is disabled on this site.'] = 'L\'accès courriel est désactivé sur ce site.'; -$a->strings['None'] = 'Aucun(e)'; -$a->strings['Social Networks'] = 'Réseaux sociaux'; -$a->strings['General Social Media Settings'] = 'Paramètres généraux des réseaux sociaux'; -$a->strings['Followed content scope'] = 'Étendue des contenus suivis'; -$a->strings['By default, conversations in which your follows participated but didn\'t start will be shown in your timeline. You can turn this behavior off, or expand it to the conversations in which your follows liked a post.'] = 'Par défaut, les conversations dans lesquelles vos comptes suivis ont participé mais qu\'ils n\'ont pas commencées seront affichées dans votre timeline. Vous pouvez désactiver ce comportement, ou l\'étendre aux conversations dans lesquelles vos comptes suivis ont aimé une publication.'; -$a->strings['Only conversations my follows started'] = 'Seulement les conversations démarrées par mes comptes suivis'; -$a->strings['Conversations my follows started or commented on (default)'] = 'Les conversations que mes comptes suivis ont commencé ou commentées (par défaut)'; -$a->strings['Any conversation my follows interacted with, including likes'] = 'Toute conversation avec laquelle mes comptes suivis ont interagi, y compris les "J\'aime"'; -$a->strings['Enable Content Warning'] = 'Activer les avertissements de contenus (CW)'; -$a->strings['Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.'] = 'Les utilisateurs de plate-formes comme Mastodon ou Pleroma ont la possibilité de définir un avertissement de contenu qui cache le contenu de leurs publications par défaut. Quand cette option est désactivée, les publications avec un avertissement de contenu ne sont pas filtrées et le libellé associé est utilisé comme titre. Ce filtrage est indépendant des autres filtrages de contenu.'; -$a->strings['Enable intelligent shortening'] = 'Activer l\'abbréviation intelligente'; -$a->strings['Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.'] = 'L\'abbréviation intelligente cherche le lien le plus adapté dans les publications abbréviées. Quand elle est désactivée, le lien est toujours celui de la publication Friendica initiale.'; -$a->strings['Enable simple text shortening'] = 'Activer l\'abbréviation de texte simple'; -$a->strings['Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'] = 'Cette option raccourcit le texte des publications au nombre de caractères exact au lieu d\'attendre la fin du paragraphe.'; -$a->strings['Attach the link title'] = 'Attacher le titre du lien (Diaspora)'; -$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.'] = 'Si vos publications contiennent un lien, le titre de la page associée sera attaché à la publication à destination de vos contacts Diaspora. C\'est principalement utile avec les contacts "remote-self" qui partagent du contenu de flux RSS/Atom.'; -$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Votre ancient compte ActivityPub/GNU Social'; -$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Si vous saisissez votre adresse de compte précédente d\'un réseau basé sur ActivityPub ou GNU Social/Statusnet (au format utilisateur@domaine.tld), vos contacts seront ajoutés autoamtiquement. Le champ sera vidé quand l\'opération sera terminé.'; -$a->strings['Repair OStatus subscriptions'] = 'Réparer les abonnements OStatus'; -$a->strings['Email/Mailbox Setup'] = 'Réglages de courriel/boîte à lettre'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Si vous souhaitez communiquer avec vos contacts "courriel" (facultatif), merci de nous indiquer comment vous connecter à votre boîte.'; -$a->strings['Last successful email check:'] = 'Dernière vérification réussie des courriels :'; -$a->strings['IMAP server name:'] = 'Nom du serveur IMAP :'; -$a->strings['IMAP port:'] = 'Port IMAP :'; -$a->strings['Security:'] = 'Sécurité :'; -$a->strings['Email login name:'] = 'Nom de connexion :'; -$a->strings['Email password:'] = 'Mot de passe :'; -$a->strings['Reply-to address:'] = 'Adresse de réponse :'; -$a->strings['Send public posts to all email contacts:'] = 'Envoyer les publications publiques à tous les contacts courriels :'; -$a->strings['Action after import:'] = 'Action après import :'; -$a->strings['Mark as seen'] = 'Marquer comme vu'; -$a->strings['Move to folder'] = 'Déplacer vers'; -$a->strings['Move to folder:'] = 'Déplacer vers :'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h.'; -$a->strings['Friend Suggestions'] = 'Suggestions d\'abonnement'; -$a->strings['photo'] = 'photo'; -$a->strings['status'] = 'le statut'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s a mentionné %3$s de %2$s avec %4$s'; -$a->strings['Remove Item Tag'] = 'Enlever l\'étiquette de l\'élément'; -$a->strings['Select a tag to remove: '] = 'Sélectionner une étiquette à supprimer :'; -$a->strings['Remove'] = 'Utiliser comme photo de profil'; -$a->strings['User imports on closed servers can only be done by an administrator.'] = 'L\'import d\'utilisateur sur un serveur fermé ne peut être effectué que par un administrateur.'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Le nombre d\'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain.'; -$a->strings['Import'] = 'Importer'; -$a->strings['Move account'] = 'Migrer le compte'; -$a->strings['You can import an account from another Friendica server.'] = 'Vous pouvez importer un compte d\'un autre serveur Friendica.'; -$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.'] = 'Vous devez exporter votre compte à partir de l\'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d\'informer vos contacts que vous avez déménagé ici.'; -$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Cette fonctionalité est expérimentale. Il n\'est pas possible d\'importer des contacts depuis le réseau OStatus (GNU Social/Statusnet) ou depuis Diaspora.'; -$a->strings['Account file'] = 'Fichier du compte'; -$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Pour exporter votre compte, allez dans "Paramètres> Exporter vos données personnelles" et sélectionnez "exportation de compte"'; -$a->strings['You aren\'t following this contact.'] = 'Vous ne suivez pas ce contact.'; -$a->strings['Unfollowing is currently not supported by your network.'] = 'Le désabonnement n\'est actuellement pas supporté par votre réseau.'; -$a->strings['Disconnect/Unfollow'] = 'Se déconnecter/Ne plus suivre'; -$a->strings['Contact was successfully unfollowed'] = 'Le contact n\'est maintenant plus suivi'; -$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Impossible de ne plus suivre ce contact, merci de contacter votre administrateur'; -$a->strings['Invalid request.'] = 'Requête invalide.'; -$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise'; -$a->strings['Or - did you try to upload an empty file?'] = 'Ou — auriez-vous essayé de télécharger un fichier vide ?'; -$a->strings['File exceeds size limit of %s'] = 'La taille du fichier dépasse la limite de %s'; -$a->strings['File upload failed.'] = 'Le téléversement a échoué.'; -$a->strings['Wall Photos'] = 'Photos du mur'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Nombre de messages de mur quotidiens pour %s dépassé. Échec du message.'; -$a->strings['Unable to check your home location.'] = 'Impossible de vérifier votre localisation.'; -$a->strings['No recipient.'] = 'Pas de destinataire.'; -$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d\'inconnus.'; $a->strings['No system theme config value set.'] = 'Le thème système n\'est pas configuré.'; $a->strings['Apologies but the website is unavailable at the moment.'] = 'Désolé mais le site web n\'est pas disponible pour le moment.'; $a->strings['Delete this item?'] = 'Effacer cet élément?'; $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.'] = 'Bloquer ce contact ? Iel ne pourra pas s\'abonner à votre compte et vous ne pourrez pas voir leurs publications ni leurs commentaires.'; +$a->strings['Ignore this author? You won\'t be able to see their posts and their notifications.'] = 'Ignorer cet auteur ? Vous ne serez plus en mesure de voir ses publications et notifications.'; +$a->strings['Collapse this author\'s posts?'] = 'Réduire les publications de cet auteur ?'; +$a->strings['Ignore this author\'s server?'] = 'Ignorer le serveur de cet auteur ?'; +$a->strings['You won\'t see any content from this server including reshares in your Network page, the community pages and individual conversations.'] = 'Vous ne verrez aucun contenu provenant de ce serveur, y compris les partages dans votre page Réseau, les pages de la communauté et les conversations individuelles.'; +$a->strings['Like not successful'] = 'Erreur lors du "Aime"'; +$a->strings['Dislike not successful'] = 'Erreur lors du "N\'aime pas"'; +$a->strings['Sharing not successful'] = 'Erreur lors du "Partager"'; +$a->strings['Attendance unsuccessful'] = 'Erreur lors du "Participer"'; +$a->strings['Backend error'] = 'Erreur backend'; +$a->strings['Network error'] = 'Erreur réseau'; +$a->strings['Drop files here to upload'] = 'Déposer des fichiers ici pour les envoyer'; +$a->strings['Your browser does not support drag and drop file uploads.'] = 'Votre navigateur ne supporte pas l\'envoi de fichier par glisser-déposer.'; +$a->strings['Please use the fallback form below to upload your files like in the olden days.'] = 'Veuillez utiliser le formulaire ci-dessous pour envoyer vos fichiers comme au bon vieux temps.'; +$a->strings['File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.'] = 'Fichier trop volumineux ({{filesize}}Mio). Taille maximum : {{maxFilesize}}Mio.'; +$a->strings['You can\'t upload files of this type.'] = 'Vous ne pouvez pas envoyer des fichiers de ce type.'; +$a->strings['Server responded with {{statusCode}} code.'] = 'Le serveur a répondu avec un code {{statusCode}}.'; +$a->strings['Cancel upload'] = 'Annuler l\'envoi'; +$a->strings['Upload canceled.'] = 'Envoi annulé.'; +$a->strings['Are you sure you want to cancel this upload?'] = 'Êtes-vous sûr de vouloir annuler cet envoi ?'; +$a->strings['Remove file'] = 'Supprimer le fichier'; +$a->strings['You can\'t upload any more files.'] = 'Vous ne pouvez plus envoyer de fichiers.'; $a->strings['toggle mobile'] = 'activ. mobile'; $a->strings['Method not allowed for this module. Allowed method(s): %s'] = 'Méthode non autorisée pour ce module. Méthode(s) autorisée(s): %s'; $a->strings['Page not found.'] = 'Page introuvable.'; @@ -438,6 +260,7 @@ $a->strings['Done.'] = 'Fait.'; $a->strings['Execute pending post updates.'] = 'Exécution de la mise à jour des publications en attente.'; $a->strings['All pending post updates are done.'] = 'Toutes les mises à jour de publications en attente sont terminées.'; $a->strings['Enter user nickname: '] = 'Entrer un pseudo :'; +$a->strings['User not found'] = 'Utilisateur introuvable'; $a->strings['Enter new password: '] = 'Entrer le nouveau mot de passe :'; $a->strings['Password update failed. Please try again.'] = 'Le changement de mot de passe a échoué. Merci de recommencer.'; $a->strings['Password changed.'] = 'Mot de passe changé.'; @@ -476,49 +299,113 @@ $a->strings['Diaspora Connector'] = 'Connecteur Disapora'; $a->strings['GNU Social Connector'] = 'Connecteur GNU Social'; $a->strings['ActivityPub'] = 'ActivityPub'; $a->strings['pnut'] = 'pnut'; +$a->strings['Tumblr'] = 'Tumblr'; +$a->strings['Bluesky'] = 'Bluesky'; $a->strings['%s (via %s)'] = '%s (via %s)'; -$a->strings['%s likes this.'] = '%s aime ça.'; -$a->strings['%s doesn\'t like this.'] = '%s n\'aime pas ça.'; -$a->strings['%s attends.'] = '%s participe'; -$a->strings['%s doesn\'t attend.'] = '%s ne participe pas'; -$a->strings['%s attends maybe.'] = '%s participe peut-être'; -$a->strings['%s reshared this.'] = '%s a partagé ceci.'; $a->strings['and'] = 'et'; $a->strings['and %d other people'] = 'et %d autres personnes'; -$a->strings['%2$d people like this'] = '%2$d personnes aiment ça'; -$a->strings['%s like this.'] = '%s aiment ça.'; -$a->strings['%2$d people don\'t like this'] = '%2$d personnes n\'aiment pas ça'; -$a->strings['%s don\'t like this.'] = '%s n\'aiment pas ça.'; -$a->strings['%2$d people attend'] = '%2$d personnes participent'; -$a->strings['%s attend.'] = '%s participent.'; -$a->strings['%2$d people don\'t attend'] = '%2$d personnes ne participent pas'; -$a->strings['%s don\'t attend.'] = '%s ne participent pas.'; -$a->strings['%2$d people attend maybe'] = '%2$d personnes vont peut-être participer'; -$a->strings['%s attend maybe.'] = '%sparticipent peut-être'; -$a->strings['%2$d people reshared this'] = '%2$d personnes ont partagé ceci'; +$a->strings['%2$s likes this.'] = [ + 0 => '%2$s aime.', + 1 => '%2$s aiment.', + 2 => '%2$s aiment.', +]; +$a->strings['%2$s doesn\'t like this.'] = [ + 0 => '%2$s n\'aime pas.', + 1 => '%2$s n\'aiment pas.', + 2 => '%2$s n\'aiment pas.', +]; +$a->strings['%2$s attends.'] = [ + 0 => '%2$s participe.', + 1 => '%2$s participent.', + 2 => '%2$s participent.', +]; +$a->strings['%2$s doesn\'t attend.'] = [ + 0 => '%2$s ne participe pas.', + 1 => '%2$s ne participent pas.', + 2 => '%2$s ne participent pas.', +]; +$a->strings['%2$s attends maybe.'] = [ + 0 => '%2$s participe peut-être.', + 1 => '%2$s participent peut-être.', + 2 => '%2$s participent peut-être.', +]; +$a->strings['%2$s reshared this.'] = [ + 0 => '%2$s à partagé.', + 1 => '%2$s ont partagé.', + 2 => '%2$s ont partagé.', +]; +$a->strings[' likes this'] = [ + 0 => ' aime', + 1 => ' aiment', + 2 => ' aiment', +]; +$a->strings[' doesn\'t like this'] = [ + 0 => ' n\'aime pas', + 1 => ' n\'aiment pas', + 2 => ' n\'aiment pas', +]; +$a->strings[' attends'] = [ + 0 => ' participe', + 1 => ' participent', + 2 => ' participent', +]; +$a->strings[' doesn\'t attend'] = [ + 0 => ' ne participe pas', + 1 => ' ne participent pas', + 2 => ' ne participent pas', +]; +$a->strings[' attends maybe'] = [ + 0 => ' participe peut-être', + 1 => ' participent peut-être', + 2 => ' participent peut-être', +]; +$a->strings[' reshared this'] = [ + 0 => ' a partagé', + 1 => ' ont partagé', + 2 => ' ont partagé', +]; $a->strings['Visible to everybody'] = 'Visible par tout le monde'; $a->strings['Please enter a image/video/audio/webpage URL:'] = 'Veuillez entrer une URL d\'image/vidéo/page web.'; -$a->strings['Tag term:'] = 'Étiquette :'; +$a->strings['Tag term:'] = 'Tag :'; $a->strings['Save to Folder:'] = 'Sauver dans le Dossier :'; $a->strings['Where are you right now?'] = 'Où êtes-vous actuellement ?'; $a->strings['Delete item(s)?'] = 'Supprimer les élément(s) ?'; $a->strings['Created at'] = 'Créé à'; $a->strings['New Post'] = 'Nouvelle publication'; $a->strings['Share'] = 'Partager'; +$a->strings['upload photo'] = 'envoi image'; +$a->strings['Attach file'] = 'Joindre fichier'; +$a->strings['attach file'] = 'ajout fichier'; +$a->strings['Bold'] = 'Gras'; +$a->strings['Italic'] = 'Italique'; +$a->strings['Underline'] = 'Souligné'; +$a->strings['Quote'] = 'Citation'; +$a->strings['Add emojis'] = 'Ajouter des émojis'; +$a->strings['Content Warning'] = 'Avertissement de contenu'; +$a->strings['Code'] = 'Code'; $a->strings['Image'] = 'Image'; +$a->strings['Link'] = 'Lien'; +$a->strings['Link or Media'] = 'Lien ou média'; $a->strings['Video'] = 'Vidéo'; +$a->strings['Set your location'] = 'Définir votre localisation'; +$a->strings['set location'] = 'spéc. localisation'; +$a->strings['Clear browser location'] = 'Effacer la localisation du navigateur'; +$a->strings['clear location'] = 'supp. localisation'; +$a->strings['Set title'] = 'Définir un titre'; +$a->strings['Categories (comma-separated list)'] = 'Catégories (séparées par des virgules)'; $a->strings['Scheduled at'] = 'Prévu pour'; -$a->strings['Pinned item'] = 'Élément épinglé'; -$a->strings['View %s\'s profile @ %s'] = 'Voir le profil de %s @ %s'; -$a->strings['Categories:'] = 'Catégories :'; -$a->strings['Filed under:'] = 'Rangé sous :'; -$a->strings['%s from %s'] = '%s de %s'; -$a->strings['View in context'] = 'Voir dans le contexte'; +$a->strings['Permission settings'] = 'Réglages des permissions'; +$a->strings['Public post'] = 'Publication publique'; +$a->strings['Message'] = 'Message'; +$a->strings['Browser'] = 'Navigateur'; +$a->strings['Open Compose page'] = 'Ouvrir la page de saisie'; $a->strings['remove'] = 'enlever'; $a->strings['Delete Selected Items'] = 'Supprimer les éléments sélectionnés'; $a->strings['You had been addressed (%s).'] = 'Vous avez été mentionné (%s)'; $a->strings['You are following %s.'] = 'Vous suivez %s.'; -$a->strings['You subscribed to one or more tags in this post.'] = 'Vous vous êtes abonné(e) à une étiquette ou plus de cette publication.'; +$a->strings['You subscribed to %s.'] = 'Vous vous êtes abonné(e) à %s.'; +$a->strings['You subscribed to one or more tags in this post.'] = 'Vous vous êtes abonné(e) à un tag ou plus de cette publication.'; +$a->strings['%s reshared this.'] = '%s a partagé.'; $a->strings['Reshared'] = 'Partagé'; $a->strings['Reshared by %s <%s>'] = 'Partagé par %s <%s>'; $a->strings['%s is participating in this thread.'] = '%s participe à ce fil de discussion'; @@ -533,14 +420,48 @@ $a->strings['Local delivery'] = 'Distribution locale'; $a->strings['Stored because of your activity (like, comment, star, ...)'] = 'Stocké en lien avec votre activité (j\'aime, commentaire, étoile...)'; $a->strings['Distributed'] = 'Distribué'; $a->strings['Pushed to us'] = 'Poussé vers nous'; +$a->strings['Pinned item'] = 'Élément épinglé'; +$a->strings['View %s\'s profile @ %s'] = 'Voir le profil de %s @ %s'; +$a->strings['Categories:'] = 'Catégories :'; +$a->strings['Filed under:'] = 'Rangé sous :'; +$a->strings['%s from %s'] = '%s de %s'; +$a->strings['View in context'] = 'Voir dans le contexte'; +$a->strings['For you'] = 'Pour vous'; +$a->strings['Posts from contacts you interact with and who interact with you'] = 'Publications de contacts qui interagissent avec vous'; +$a->strings['What\'s Hot'] = 'Quoi de neuf'; +$a->strings['Posts with a lot of interactions'] = 'Publications avec beaucoup d\'interactions'; +$a->strings['Posts in %s'] = 'Publications dans %s'; +$a->strings['Posts from your followers that you don\'t follow'] = 'Publications de personnes abonnées qui vous ne suivez pas'; +$a->strings['Sharers of sharers'] = 'Partageurs de partageurs'; +$a->strings['Posts from accounts that are followed by accounts that you follow'] = 'Publications de comptes suivis par des comptes que vous suivez'; +$a->strings['Images'] = 'Images'; +$a->strings['Posts with images'] = 'Publications avec images'; +$a->strings['Audio'] = 'Audio'; +$a->strings['Posts with audio'] = 'Publications avec audio'; +$a->strings['Videos'] = 'Vidéos'; +$a->strings['Posts with videos'] = 'Publications avec vidéos'; +$a->strings['Local Community'] = 'Communauté locale'; +$a->strings['Posts from local users on this server'] = 'Conversations publiques démarrées par des utilisateurs locaux'; +$a->strings['Global Community'] = 'Communauté globale'; +$a->strings['Posts from users of the whole federated network'] = 'Conversations publiques provenant du réseau fédéré global'; +$a->strings['Latest Activity'] = 'Activité récente'; +$a->strings['Sort by latest activity'] = 'Trier par activité récente'; +$a->strings['Latest Posts'] = 'Dernières publications'; +$a->strings['Sort by post received date'] = 'Trier par date de réception'; +$a->strings['Latest Creation'] = 'Dernière création'; +$a->strings['Sort by post creation date'] = 'Trier par date de création des publications'; +$a->strings['Personal'] = 'Personnel'; +$a->strings['Posts that mention or involve you'] = 'Publications qui vous concernent'; +$a->strings['Starred'] = 'Mis en avant'; +$a->strings['Favourite Posts'] = 'Publications favorites'; $a->strings['General Features'] = 'Fonctions générales'; $a->strings['Photo Location'] = 'Lieu de prise de la photo'; $a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'Les métadonnées des photos sont normalement retirées. Ceci permet de sauver l\'emplacement (si présent) et de positionner la photo sur une carte.'; $a->strings['Trending Tags'] = 'Tendances'; $a->strings['Show a community page widget with a list of the most popular tags in recent public posts.'] = 'Montre un encart avec la liste des tags les plus populaires dans les publications récentes.'; $a->strings['Post Composition Features'] = 'Caractéristiques de composition de publication'; -$a->strings['Auto-mention Forums'] = 'Mentionner automatiquement les Forums'; -$a->strings['Add/remove mention when a forum page is selected/deselected in ACL window.'] = 'Ajoute/retire une mention quand une page forum est sélectionnée/désélectionnée lors du choix des destinataires d\'une publication.'; +$a->strings['Auto-mention Groups'] = 'Mentionner automatiquement les groupes'; +$a->strings['Add/remove mention when a group page is selected/deselected in ACL window.'] = 'Ajoute/retire une mention quand une page de groupe est sélectionnée/désélectionnée lors du choix des destinataires d\'une publication.'; $a->strings['Explicit Mentions'] = 'Mentions explicites'; $a->strings['Add explicit mentions to comment box for manual control over who gets mentioned in replies.'] = 'Ajoute des mentions explicites dans les publications permettant un contrôle manuel des mentions dans les fils de commentaires.'; $a->strings['Add an abstract from ActivityPub content warnings'] = 'Ajouter un résumé depuis les avertissements de contenu d\'ActivityPub'; @@ -549,17 +470,24 @@ $a->strings['Post/Comment Tools'] = 'Outils de publication/commentaire'; $a->strings['Post Categories'] = 'Catégories des publications'; $a->strings['Add categories to your posts'] = 'Ajouter des catégories à vos publications'; $a->strings['Advanced Profile Settings'] = 'Paramètres Avancés du Profil'; -$a->strings['List Forums'] = 'Liste des forums'; -$a->strings['Show visitors public community forums at the Advanced Profile Page'] = 'Montrer les forums communautaires aux visiteurs sur la Page de profil avancé'; -$a->strings['Tag Cloud'] = 'Nuage de tags'; -$a->strings['Provide a personal tag cloud on your profile page'] = 'Affiche un nuage de tags personnels sur votre profil.'; +$a->strings['List Groups'] = 'Liste des groupes'; +$a->strings['Show visitors public groups at the Advanced Profile Page'] = 'Montrer les groupes publics aux visiteurs sur la Page de profil avancé'; +$a->strings['Tag Cloud'] = 'Nuage de tag'; +$a->strings['Provide a personal tag cloud on your profile page'] = 'Affiche un nuage de tag personnel sur votre profil.'; $a->strings['Display Membership Date'] = 'Afficher l\'ancienneté'; $a->strings['Display membership date in profile'] = 'Affiche la date de création du compte sur votre profile'; -$a->strings['Forums'] = 'Forums'; -$a->strings['External link to forum'] = 'Lien sortant vers le forum'; +$a->strings['Advanced Calendar Settings'] = 'Paramètres avancés du calendrier'; +$a->strings['Allow anonymous access to your calendar'] = 'Autoriser un accès anonyme à votre calendrier'; +$a->strings['Allows anonymous visitors to consult your calendar and your public events. Contact birthday events are private to you.'] = 'Autorise les visiteurs anonymes à consulter votre calendrier et vos évènements publics. Les anniversaires de vos contacts demeurent privés.'; +$a->strings['Groups'] = 'Groupes'; +$a->strings['External link to group'] = 'Lien externe vers le groupe'; $a->strings['show less'] = 'voir moins'; $a->strings['show more'] = 'montrer plus'; +$a->strings['Create new group'] = 'Créer un nouveau groupe'; $a->strings['event'] = 'évènement'; +$a->strings['status'] = 'le statut'; +$a->strings['photo'] = 'photo'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s a mentionné %3$s de %2$s avec %4$s'; $a->strings['Follow Thread'] = 'Suivre le fil'; $a->strings['View Status'] = 'Voir les statuts'; $a->strings['View Profile'] = 'Voir le profil'; @@ -569,26 +497,33 @@ $a->strings['View Contact'] = 'Voir Contact'; $a->strings['Send PM'] = 'Message privé'; $a->strings['Block'] = 'Bloquer'; $a->strings['Ignore'] = 'Ignorer'; +$a->strings['Collapse'] = 'Réduire'; +$a->strings['Ignore %s server'] = 'Ignorer le serveur %s'; $a->strings['Languages'] = 'Langues'; +$a->strings['Connect/Follow'] = 'Se connecter/Suivre'; +$a->strings['Unable to fetch user.'] = 'Impossible de récupérer l\'utilisateur.'; $a->strings['Nothing new here'] = 'Rien de neuf ici'; $a->strings['Go back'] = 'Revenir'; $a->strings['Clear notifications'] = 'Effacer les notifications'; -$a->strings['@name, !forum, #tags, content'] = '@nom, !forum, #tags, contenu'; +$a->strings['@name, !group, #tags, content'] = '@nom, !groupe, #tags, contenu'; $a->strings['Logout'] = 'Se déconnecter'; $a->strings['End this session'] = 'Mettre fin à cette session'; $a->strings['Login'] = 'Connexion'; $a->strings['Sign in'] = 'Se connecter'; -$a->strings['Status'] = 'Statut'; -$a->strings['Your posts and conversations'] = 'Vos publications et conversations'; +$a->strings['Conversations'] = 'Discussions'; +$a->strings['Conversations you started'] = 'Discussions que vous avez commencées'; $a->strings['Profile'] = 'Profil'; $a->strings['Your profile page'] = 'Votre page de profil'; +$a->strings['Photos'] = 'Photos'; $a->strings['Your photos'] = 'Vos photos'; $a->strings['Media'] = 'Média'; $a->strings['Your postings with media'] = 'Vos publications avec des médias'; -$a->strings['Your events'] = 'Vos évènements'; +$a->strings['Calendar'] = 'Calendrier'; +$a->strings['Your calendar'] = 'Votre calendrier'; $a->strings['Personal notes'] = 'Notes personnelles'; $a->strings['Your personal notes'] = 'Vos notes personnelles'; $a->strings['Home'] = 'Profil'; +$a->strings['Home Page'] = 'Page d\'accueil'; $a->strings['Register'] = 'S\'inscrire'; $a->strings['Create an account'] = 'Créer un compte'; $a->strings['Help'] = 'Aide'; @@ -602,7 +537,6 @@ $a->strings['Tags'] = 'Tags'; $a->strings['Contacts'] = 'Contacts'; $a->strings['Community'] = 'Communauté'; $a->strings['Conversations on this and other servers'] = 'Flux public global'; -$a->strings['Events and Calendar'] = 'Évènements et agenda'; $a->strings['Directory'] = 'Annuaire'; $a->strings['People directory'] = 'Annuaire des utilisateurs'; $a->strings['Information'] = 'Information'; @@ -611,10 +545,12 @@ $a->strings['Terms of Service'] = 'Conditions de service'; $a->strings['Terms of Service of this Friendica instance'] = 'Conditions d\'Utilisation de ce serveur Friendica'; $a->strings['Network'] = 'Réseau'; $a->strings['Conversations from your friends'] = 'Flux de conversations'; +$a->strings['Your posts and conversations'] = 'Vos publications et conversations'; $a->strings['Introductions'] = 'Introductions'; $a->strings['Friend Requests'] = 'Demande d\'abonnement'; $a->strings['Notifications'] = 'Notifications'; $a->strings['See all notifications'] = 'Voir toutes les notifications'; +$a->strings['Mark as seen'] = 'Marquer comme vu'; $a->strings['Mark all system notifications as seen'] = 'Marquer toutes les notifications système comme vues'; $a->strings['Private mail'] = 'Messages privés'; $a->strings['Inbox'] = 'Messages entrants'; @@ -626,6 +562,8 @@ $a->strings['Account settings'] = 'Compte'; $a->strings['Manage/edit friends and contacts'] = 'Gestion des contacts'; $a->strings['Admin'] = 'Admin'; $a->strings['Site setup and configuration'] = 'Démarrage et configuration du site'; +$a->strings['Moderation'] = 'Modération'; +$a->strings['Content and user moderation'] = 'Modération du contenu et des utilisateurs'; $a->strings['Navigation'] = 'Navigation'; $a->strings['Site map'] = 'Carte du site'; $a->strings['Embedding disabled'] = 'Incorporation désactivée'; @@ -658,13 +596,15 @@ $a->strings['Find People'] = 'Trouver des personnes'; $a->strings['Enter name or interest'] = 'Entrez un nom ou un centre d\'intérêt'; $a->strings['Examples: Robert Morgenstein, Fishing'] = 'Exemples : Robert Morgenstein, Pêche'; $a->strings['Find'] = 'Trouver'; +$a->strings['Friend Suggestions'] = 'Suggestions d\'abonnement'; $a->strings['Similar Interests'] = 'Intérêts similaires'; $a->strings['Random Profile'] = 'Profil au hasard'; $a->strings['Invite Friends'] = 'Inviter des contacts'; $a->strings['Global Directory'] = 'Annuaire global'; $a->strings['Local Directory'] = 'Annuaire local'; -$a->strings['Groups'] = 'Groupes'; +$a->strings['Circles'] = 'Cercles'; $a->strings['Everyone'] = 'Tous les groupes'; +$a->strings['No relationship'] = 'Aucune relation'; $a->strings['Relationships'] = 'Relations'; $a->strings['All Contacts'] = 'Tous les contacts'; $a->strings['Protocols'] = 'Protocoles'; @@ -678,11 +618,13 @@ $a->strings['%d contact in common'] = [ 2 => '%d contacts en commun', ]; $a->strings['Archives'] = 'Archives'; +$a->strings['On this date'] = 'A cette date'; $a->strings['Persons'] = 'Personnes'; $a->strings['Organisations'] = 'Organisations'; $a->strings['News'] = 'Nouvelles'; $a->strings['Account Types'] = 'Type de compte'; $a->strings['All'] = 'Tout'; +$a->strings['Channels'] = 'Chaînes'; $a->strings['Export'] = 'Exporter'; $a->strings['Export calendar as ical'] = 'Exporter au format iCal'; $a->strings['Export calendar as csv'] = 'Exporter au format CSV'; @@ -700,11 +642,15 @@ $a->strings['Trending Tags (last %d hour)'] = [ 1 => 'Tendances (dernières %d heures)', 2 => 'Tendances (dernières %d heures)', ]; -$a->strings['More Trending Tags'] = 'Plus de tedances'; +$a->strings['More Trending Tags'] = 'Plus de tendances'; +$a->strings['Post to group'] = 'Publier sur le groupe'; +$a->strings['Mention'] = 'Mention'; $a->strings['XMPP:'] = 'XMPP'; $a->strings['Matrix:'] = 'Matrix :'; +$a->strings['Location:'] = 'Localisation :'; $a->strings['Network:'] = 'Réseau'; $a->strings['Unfollow'] = 'Se désabonner'; +$a->strings['View group'] = 'Voir le groupe'; $a->strings['Yourself'] = 'Vous-même'; $a->strings['Mutuals'] = 'Mutuels'; $a->strings['Post to Email'] = 'Publier aux courriels'; @@ -712,8 +658,11 @@ $a->strings['Public'] = 'Public'; $a->strings['This content will be shown to all your followers and can be seen in the community pages and by anyone with its link.'] = 'Ce contenu sera visible par vos abonnés, sur votre profile, dans les flux communautaires et par quiconque ayant son adresse Web.'; $a->strings['Limited/Private'] = 'Limité/Privé'; $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.'] = 'Ce contenu sera visible uniquement par les groupes et contacts listés dans le premier champ, sauf par les groupes et contacts listés dans le second champ. Il ne sera pas visible publiquement.'; +$a->strings['Start typing the name of a contact or a circle to show a filtered list. You can also mention the special circles "Followers" and "Mutuals".'] = 'Commencer à écrire le nom d\'un contact ou d\'un cercle pour afficher une liste filtrée. Vous pouvez aussi mentionner les groupes spéciaux "Followers" et "Mutuels".'; $a->strings['Show to:'] = 'Visible par :'; $a->strings['Except to:'] = 'Masquer à :'; +$a->strings['CC: email addresses'] = 'CC: adresses de courriel'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Exemple : bob@exemple.com, mary@exemple.com'; $a->strings['Connectors'] = 'Connecteurs'; $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.'] = 'Le fichier de configuration "config/local.config.php" n\'a pas pu être créé. Veuillez utiliser le texte fourni pour créer manuellement ce fichier sur votre serveur.'; $a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Vous pourriez avoir besoin d\'importer le fichier "database.sql" manuellement au moyen de phpmyadmin ou de la commande mysql.'; @@ -737,6 +686,8 @@ $a->strings['Apache mod_rewrite module'] = 'Module mod_rewrite Apache'; $a->strings['Error: PDO or MySQLi PHP module required but not installed.'] = 'Erreur : Les modules PHP PDO ou MySQLi sont requis mais absents de votre serveur.'; $a->strings['Error: The MySQL driver for PDO is not installed.'] = 'Erreur : Le pilote MySQL pour PDO n\'est pas installé sur votre serveur.'; $a->strings['PDO or MySQLi PHP module'] = 'Module PHP PDO ou MySQLi'; +$a->strings['Error: The IntlChar module is not installed.'] = 'Erreur : Le module IntlChar n\'est pas installé.'; +$a->strings['IntlChar PHP module'] = 'Module PHP IntlChar'; $a->strings['Error, XML PHP module required but not installed.'] = 'Erreur : le module PHP XML requis est absent.'; $a->strings['XML PHP module'] = 'Module PHP XML'; $a->strings['libCurl PHP module'] = 'Module libCurl de PHP'; @@ -820,6 +771,8 @@ $a->strings['Sep'] = 'Sep'; $a->strings['Oct'] = 'Oct'; $a->strings['Nov'] = 'Nov'; $a->strings['Dec'] = 'Déc'; +$a->strings['The logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Le fichier journal \'%s\' n\'est pas utilisable. Pas de journalisation possible (erreur \'%s\')'; +$a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Le fichier journal de débogage "%s" n\'existe pas ou n\'est pas accessible en écriture. Journalisation désactivée (erreur : "%s")'; $a->strings['Friendica can\'t display this page at the moment, please contact the administrator.'] = 'Friendica ne peut pas afficher cette page pour le moment. Merci de contacter l\'administrateur.'; $a->strings['template engine cannot be registered without a name.'] = 'Le moteur de template ne peut pas être enregistré sans nom.'; $a->strings['template engine is not registered!'] = 'le moteur de template n\'est pas enregistré!'; @@ -836,23 +789,12 @@ $a->strings[' but when I tried to install it, something went terribly wrong. This needs to be fixed soon and I can\'t do it alone. Please contact a friendica developer if you can not help me on your own. My database might be invalid.'] = ' -Les développeur•se•s de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue.'; +Les développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue.'; $a->strings['The error message is\n[pre]%s[/pre]'] = 'The message d\'erreur est\n[pre]%s[/pre]'; $a->strings['[Friendica Notify] Database update'] = '[Friendica:Notification] Mise à jour de la base de données'; $a->strings[' - The friendica database was successfully updated from %s to %s.'] = ' -La base de donnée Friendica a été mise à jour avec succès de la version %s à la version %s.'; -$a->strings['Error decoding account file'] = 'Une erreur a été détecté en décodant un fichier utilisateur'; -$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?'; -$a->strings['User \'%s\' already exists on this server!'] = 'L\'utilisateur \'%s\' existe déjà sur ce serveur!'; -$a->strings['User creation error'] = 'Erreur de création d\'utilisateur'; -$a->strings['%d contact not imported'] = [ - 0 => '%d contacts non importés', - 1 => '%d contacts non importés', - 2 => '%d contacts non importés', -]; -$a->strings['User profile creation error'] = 'Erreur de création du profil utilisateur'; -$a->strings['Done. You can now login with your username and password'] = 'Action réalisée. Vous pouvez désormais vous connecter avec votre nom d\'utilisateur et votre mot de passe'; + The friendica database was successfully updated from %s to %s.'] = ' + La base de données de Friendica a bien été mise à jour de la version %s à %s.'; $a->strings['The database version had been set to %s.'] = 'La version de la base de données a été fixée a %s.'; $a->strings['The post update is at version %d, it has to be at %d to safely drop the tables.'] = 'La mise à jour des données est à la version %d, mais elle doit atteindre la version %d pour pouvoir supprimer les tables en toute sécurité.'; $a->strings['No unused tables found.'] = 'Aucune table non utilisée trouvée.'; @@ -875,14 +817,23 @@ $a->strings['Unauthorized'] = 'Accès réservé'; $a->strings['Token is not authorized with a valid user or is missing a required scope'] = 'Le jeton ne comporte pas un utilisateur valide ou une portée (scope) nécessaire.'; $a->strings['Internal Server Error'] = 'Erreur du site'; $a->strings['Legacy module file not found: %s'] = 'Module original non trouvé: %s'; -$a->strings['UnFollow'] = 'Se désabonner'; +$a->strings['A deleted circle with this name was revived. Existing item permissions may apply to this circle and any future members. If this is not what you intended, please create another circle with a different name.'] = 'Un cercle supprimé a été recréé. Les permissions existantes pourraient s\'appliquer à ce cercle et aux futurs membres. Si ce n\'est pas le comportement attendu, merci de re-créer un autre cercle sous un autre nom.'; +$a->strings['Everybody'] = 'Tout le monde'; +$a->strings['edit'] = 'éditer'; +$a->strings['add'] = 'ajouter'; +$a->strings['Edit circle'] = 'Modifier le cercle'; +$a->strings['Contacts not in any circle'] = 'Contacts n\'appartenant à aucun cercle'; +$a->strings['Create a new circle'] = 'Créer un nouveau cercle'; +$a->strings['Circle Name: '] = 'Nom du cercle :'; +$a->strings['Edit circles'] = 'Modifier les cercles'; $a->strings['Approve'] = 'Approuver'; $a->strings['Organisation'] = 'Organisation'; -$a->strings['Forum'] = 'Forum'; +$a->strings['Group'] = 'Groupe'; $a->strings['Disallowed profile URL.'] = 'URL de profil interdite.'; $a->strings['Blocked domain'] = 'Domaine bloqué'; $a->strings['Connect URL missing.'] = 'URL de connexion manquante.'; $a->strings['The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.'] = 'Le contact n\'a pu être ajouté. Veuillez vérifier les identifiants du réseau concerné dans la page Réglages -> Réseaux Sociaux si pertinent.'; +$a->strings['Expected network %s does not match actual network %s'] = 'Le réseau %s espéré ne correspond pas au réseau %s actuel'; $a->strings['The profile address specified does not provide adequate information.'] = 'L\'adresse de profil indiquée ne fournit par les informations adéquates.'; $a->strings['No compatible communication protocols or feeds were discovered.'] = 'Aucun protocole de communication ni aucun flux n\'a pu être découvert.'; $a->strings['An author or name was not found.'] = 'Aucun auteur ou nom d\'auteur n\'a pu être trouvé.'; @@ -897,7 +848,13 @@ $a->strings['Starts:'] = 'Débute :'; $a->strings['Finishes:'] = 'Finit :'; $a->strings['all-day'] = 'toute la journée'; $a->strings['Sept'] = 'Sep'; +$a->strings['today'] = 'aujourd\'hui'; +$a->strings['month'] = 'mois'; +$a->strings['week'] = 'semaine'; +$a->strings['day'] = 'jour'; $a->strings['No events to display'] = 'Pas d\'évènement à afficher'; +$a->strings['Access to this profile has been restricted.'] = 'L\'accès au profil a été restreint.'; +$a->strings['Event not found.'] = 'Évènement non trouvé.'; $a->strings['l, F j'] = 'l, F j'; $a->strings['Edit event'] = 'Editer l\'évènement'; $a->strings['Duplicate event'] = 'Dupliquer l\'évènement'; @@ -909,50 +866,45 @@ $a->strings['Show map'] = 'Montrer la carte'; $a->strings['Hide map'] = 'Cacher la carte'; $a->strings['%s\'s birthday'] = 'Anniversaire de %s\'s'; $a->strings['Happy Birthday %s'] = 'Joyeux anniversaire, %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.'] = 'Un groupe supprimé a été recréé. Les permissions existantes pourraient s\'appliquer à ce groupe et aux futurs membres. Si ce n\'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom.'; -$a->strings['Default privacy group for new contacts'] = 'Paramètres de confidentialité par défaut pour les nouveaux contacts'; -$a->strings['Everybody'] = 'Tout le monde'; -$a->strings['edit'] = 'éditer'; -$a->strings['add'] = 'ajouter'; -$a->strings['Edit group'] = 'Editer groupe'; -$a->strings['Contacts not in any group'] = 'Contacts n\'appartenant à aucun groupe'; -$a->strings['Create a new group'] = 'Créer un nouveau groupe'; -$a->strings['Group Name: '] = 'Nom du groupe : '; -$a->strings['Edit groups'] = 'Modifier les groupes'; $a->strings['Detected languages in this post:\n%s'] = 'Langues détectées dans cette publication :\n%s'; $a->strings['activity'] = 'activité'; $a->strings['comment'] = 'commentaire'; $a->strings['post'] = 'publication'; +$a->strings['%s is blocked'] = '%s est bloqué(e)'; +$a->strings['%s is ignored'] = '%s est ignoré(e)'; +$a->strings['Content from %s is collapsed'] = 'Le contenu de %s est réduit'; $a->strings['Content warning: %s'] = 'Avertissement de contenu: %s'; $a->strings['bytes'] = 'octets'; $a->strings['%2$s (%3$d%%, %1$d vote)'] = [ 0 => '%2$s (%3$d%%, %1$d vote)', 1 => '%2$s (%3$d%%, %1$d votes)', - 2 => '%2$s (%3$d%%, %1$d vote)', + 2 => '%2$s (%3$d%%, %1$d votes)', ]; $a->strings['%2$s (%1$d vote)'] = [ 0 => '%2$s (%1$d vote)', 1 => '%2$s (%1$d votes)', - 2 => '%2$s (%1$d vote)', + 2 => '%2$s (%1$d votes)', ]; $a->strings['%d voter. Poll end: %s'] = [ 0 => '%d votant. Fin du sondage : %s', 1 => '%d votants. Fin du sondage : %s', - 2 => '%d votant. Fin du sondage : %s', + 2 => '%d votants. Fin du sondage : %s', ]; $a->strings['%d voter.'] = [ 0 => '%d votant.', 1 => '%d votants.', - 2 => '%d votant.', + 2 => '%d votants.', ]; $a->strings['Poll end: %s'] = 'Fin du sondage : %s'; $a->strings['View on separate page'] = 'Voir dans une nouvelle page'; $a->strings['[no subject]'] = '[pas de sujet]'; +$a->strings['Wall Photos'] = 'Photos du mur'; $a->strings['Edit profile'] = 'Editer le profil'; $a->strings['Change profile photo'] = 'Changer de photo de profil'; $a->strings['Homepage:'] = 'Page personnelle :'; $a->strings['About:'] = 'À propos :'; $a->strings['Atom feed'] = 'Flux Atom'; +$a->strings['This website has been verified to belong to the same person.'] = 'Ce site web a été vérifié comme appartenant à la même personne.'; $a->strings['F d'] = 'F d'; $a->strings['[today]'] = '[aujourd\'hui]'; $a->strings['Birthday Reminders'] = 'Rappels d\'anniversaires'; @@ -989,7 +941,7 @@ $a->strings['Password can\'t be empty'] = 'Le mot de passe ne peut pas être vid $a->strings['Empty passwords are not allowed.'] = 'Les mots de passe vides ne sont pas acceptés.'; $a->strings['The new password has been exposed in a public data dump, please choose another.'] = 'Le nouveau mot de passe fait partie d\'une fuite de mot de passe publique, veuillez en choisir un autre.'; $a->strings['The password length is limited to 72 characters.'] = 'La taille du mot de passe est limitée à 72 caractères.'; -$a->strings['The password can\'t contain accentuated letters, white spaces or colons (:)'] = 'Le mot de passe ne peut pas contenir de lettres accentuées, d\'espaces ou de deux-points (:)'; +$a->strings['The password can\'t contain white spaces nor accentuated letters'] = 'Le mot de passe ne peut pas contenir d\'espaces ou de lettres accentuées'; $a->strings['Passwords do not match. Password unchanged.'] = 'Les mots de passe ne correspondent pas. Aucun changement appliqué.'; $a->strings['An invitation is required.'] = 'Une invitation est requise.'; $a->strings['Invitation could not be verified.'] = 'L\'invitation fournie n\'a pu être validée.'; @@ -1019,12 +971,12 @@ $a->strings['An error occurred during registration. Please try again.'] = 'Une e $a->strings['An error occurred creating your default profile. Please try again.'] = 'Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer.'; $a->strings['An error occurred creating your self contact. Please try again.'] = 'Une erreur est survenue lors de la création de votre propre contact. Veuillez réssayer.'; $a->strings['Friends'] = 'Contacts'; -$a->strings['An error occurred creating your default contact group. Please try again.'] = 'Une erreur est survenue lors de la création de votre groupe de contacts par défaut. Veuillez réessayer.'; +$a->strings['An error occurred creating your default contact circle. Please try again.'] = 'Une erreur est survenue lors de la création de votre cercle de contacts par défaut. Veuillez réessayer.'; $a->strings['Profile Photos'] = 'Photos du profil'; $a->strings[' Dear %1$s, the administrator of %2$s has set up an account for you.'] = ' - Cher•ère %1$s, + Cher/Chère %1$s, l\'administrateur de %2$s a créé un compte pour vous.'; $a->strings[' The login details are as follows: @@ -1050,33 +1002,32 @@ $a->strings[' If you are new and do not know anybody here, they may help you to make some new and interesting friends. - If you ever want to delete your account, you can do so at %1$s/removeme + If you ever want to delete your account, you can do so at %1$s/settings/removeme Thank you and welcome to %4$s.'] = ' - Les informations de connexion sont les suivantes : + Les informations d\'identification sont les suivantes : - Localisation du site : %1$s - Nom d\'utilisateur : %2$s - Mot de passe : %3$s + Localisation du site : %1$s + Nom de l\'identifiant : %2$s + Mot de passe : %3$s - Vous pouvez changer votre mot de passe depuis la page "Paramètres" de votre compte après vous être - connecté. + Vous pouvez changer votre mot de passe depuis la page "Paramètres" de votre compte après connexion. - Merci de prendre quelques instants pour contrôler les autres paramètres de compte sur cette page. + Merci de prendre un moment pour consulter les autres paramètres de compte disponibles sur cette page. - Vous pouvez également ajouter des informations basiques à votre profil par défaut - (sur la page "Profils") ainsi les autres personnes pourront vous trouver plus facilement. + Vous pourriez également souhaiter ajouter quelques informations de base à votre profil par défaut + (sur la page "Profils") afin que d\'autres personnes puissent vous trouver facilement. Nous vous recommandons de définir votre nom complet, d\'ajouter une photo de profil, - quelques mots clés de profil (très utiles pour se faire de nouveaux amis) - et - peut-être le pays où vous vivez; si vous ne désirez pas être plus spécifique - que cela. + d\'ajouter quelques "mots clés" de profil (très utiles pour se faire de nouveaux amis) et + peut-être le pays dans lequel vous vivez; si vous ne souhaitez pas être plus spécifique + que ça. - Nous respectons totalement votre droit à la vie privée et aucun de ces éléments n\'est nécessaire. - Si vous êtes nouveau et ne connaissez personne ici, ils peuvent vous aider + Nous respectons totalement votre droit à la vie privée et aucun de ces éléments n\'est obligatoire. + Si vous être nouveau/nouvelle et que vous ne connaissez personne ici, ils pourraient vous aider à vous faire de nouveaux amis intéressants. - Si jamais vous souhaitiez supprimer votre compte, vous pouvez le faire à %1$s/removeme + Si jamais vous souhaitiez supprimer votre compte, vous pourriez le faire à %1$s/settings/removeme Merci et bienvenue sur %4$s.'; $a->strings['Registration details for %s'] = 'Détails d\'inscription pour %s'; @@ -1131,45 +1082,36 @@ $a->strings[' If you are new and do not know anybody here, they may help you to make some new and interesting friends. - If you ever want to delete your account, you can do so at %3$s/removeme + If you ever want to delete your account, you can do so at %3$s/settings/removeme Thank you and welcome to %2$s.'] = ' - Les informations de connexion sont les suivantes : + Les informations d\'identification sont les suivantes : - Localisation du site : %3$s - Nom d\'utilisateur : %1$s - Mot de passe : %5$s + Localisation du site : %3$s + Nom de l\'identifiant : %1$s + Mot de passe : %5$s - Vous pouvez changer votre mot de passe depuis la page "Paramètres" de votre compte après vous être - connecté. + Vous pouvez changer votre mot de passe depuis la page "Paramètres" de votre compte après + connexion. - Merci de prendre quelques instants pour contrôler les autres paramètres de compte sur cette page. + Merci de prendre un moment pour consulter les autres paramètres de compte disponibles sur cette page. - Vous pouvez également ajouter des informations basiques à votre profil par défaut - (sur la page "Profils") ainsi les autres personnes pourront vous trouver plus facilement. + Vous pourriez également souhaiter ajouter quelques informations de base à votre profil par défaut + (sur la page "Profils") afin que d\'autres personnes puissent vous trouver facilement. - Nous vous recommandons de définir votre nom complet, d\'ajouter une photo de profil, - quelques mots clés de profil (très utiles pour se faire de nouveaux amis) - et - peut-être le pays où vous vivez; si vous ne désirez pas être plus spécifique - que cela. + Nous vous recommandons de définir votre nom complet, d\'ajouter une photo de profil, + d\'ajouter quelques "mots clés" de profil (très utiles pour se faire de nouveaux amis) et + peut être le pays dans lequel vous vivez si vous ne souhaitez pas être plus spécifique + que ça. - Nous respectons totalement votre droit à la vie privée et aucun de ces éléments n\'est nécessaire. - Si vous êtes nouveau et ne connaissez personne ici, ils peuvent vous aider - à vous faire de nouveaux amis intéressants. + Nous respectons totalement votre droit à la vie privée et aucun de ces éléments n\'est obligatoire. + Si vous être nouveau/nouvelle et que vous ne connaissez personne ici, ils pourraient vous aider + à vous faire de nouveaux amis intéressants. - Si jamais vous souhaitiez supprimer votre compte, vous pouvez le faire à %3$s/removeme + Si jamais vous souhaitiez supprimer votre compte, vous pourriez le faire à %3$s/settings/removeme - Merci et bienvenue sur %2$s.'; -$a->strings['[%s] Notice of remote server domain pattern block list update'] = '[%s] Annonce de mise à jour de la liste de blocage de motif de domaine de serveur distant'; -$a->strings['Dear %s, - -You are receiving this email because the Friendica node at %s where you are registered as a user updated their remote server domain pattern block list. - -Please review the updated list at %s at your earliest convenience.'] = '%s, - -Vous recevez cet email parce que le serveur Friendica à %s où vous vous êtes inscrit∙e a mis à jour sa liste de blocage de motif de domaine de serveur. - -Veuillez prendre connaissance de la liste mise à jour à %s dès que possible.'; + Merci et bienvenue sur %2$s. '; +$a->strings['User with delegates can\'t be removed, please remove delegate users first'] = 'Un utilisateur avec des délégataires ne peut pas être supprimé, veuillez d\'abord retirer les délégataires.'; $a->strings['Addon not found.'] = 'Extension manquante.'; $a->strings['Addon %s disabled.'] = 'Add-on %s désactivé.'; $a->strings['Addon %s enabled.'] = 'Add-on %s activé.'; @@ -1182,26 +1124,861 @@ $a->strings['Author: '] = 'Auteur : '; $a->strings['Maintainer: '] = 'Mainteneur : '; $a->strings['Addons reloaded'] = 'Extensions rechargées'; $a->strings['Addon %s failed to install.'] = 'L\'extension %s a échoué à s\'installer.'; +$a->strings['Save Settings'] = 'Sauvegarder les paramètres'; $a->strings['Reload active addons'] = 'Recharger les add-ons activés.'; $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'] = 'Il n\'y a pas d\'add-on disponible sur votre serveur. Vous pouvez trouver le dépôt officiel d\'add-ons sur %1$s et des add-ons non-officiel dans le répertoire d\'add-ons ouvert sur %2$s.'; +$a->strings['Update has been marked successful'] = 'Mise-à-jour validée comme \'réussie\''; +$a->strings['Database structure update %s was successfully applied.'] = 'La structure de base de données pour la mise à jour %s a été appliquée avec succès.'; +$a->strings['Executing of database structure update %s failed with error: %s'] = 'L\'exécution de la mise à jour %s pour la structure de base de données a échoué avec l\'erreur: %s'; +$a->strings['Executing %s failed with error: %s'] = 'L\'exécution %s a échoué avec l\'erreur: %s'; +$a->strings['Update %s was successfully applied.'] = 'Mise-à-jour %s appliquée avec succès.'; +$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'La mise-à-jour %s n\'a pas retourné de détails. Impossible de savoir si elle a réussi.'; +$a->strings['There was no additional update function %s that needed to be called.'] = 'Il n\'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé'; +$a->strings['No failed updates.'] = 'Pas de mises-à-jour échouées.'; +$a->strings['Check database structure'] = 'Vérifier la structure de la base de données'; +$a->strings['Failed Updates'] = 'Mises-à-jour échouées'; +$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Ceci n\'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails.'; +$a->strings['Mark success (if update was manually applied)'] = 'Marquer comme \'réussie\' (dans le cas d\'une mise-à-jour manuelle)'; +$a->strings['Attempt to execute this update step automatically'] = 'Tenter d\'éxecuter cette étape automatiquement'; +$a->strings['Lock feature %s'] = 'Verouiller la fonctionnalité %s'; +$a->strings['Manage Additional Features'] = 'Gérer les fonctionnalités avancées'; +$a->strings['Other'] = 'Autre'; +$a->strings['unknown'] = 'inconnu'; +$a->strings['%2$s total system'] = [ + 0 => '%2$s système au total', + 1 => '%2$s systèmes au total', + 2 => '%2$s systèmes au total', +]; +$a->strings['%2$s active user last month'] = [ + 0 => '%2$s utilisateur actif le mois dernier', + 1 => '%2$s utilisateurs actifs le mois dernier', + 2 => '%2$s utilisateurs actifs le mois dernier', +]; +$a->strings['%2$s active user last six months'] = [ + 0 => '%2$s utilisateur actif ces six derniers mois', + 1 => '%2$s utilisateurs actifs ces six derniers mois', + 2 => '%2$s utilisateurs actifs ces six derniers mois', +]; +$a->strings['%2$s registered user'] = [ + 0 => '%2$s utilisateur enregistré', + 1 => '%2$s utilisateurs enregistrés', + 2 => '%2$s utilisateurs enregistrés', +]; +$a->strings['%2$s locally created post or comment'] = [ + 0 => '%2$s publication ou commentaire créé localement', + 1 => '%2$s publications et commentaires créés localement', + 2 => '%2$s publications et commentaires créés localement', +]; +$a->strings['%2$s post per user'] = [ + 0 => '%2$s publication par utilisateur', + 1 => '%2$s publications par utilisateur', + 2 => '%2$s publications par utilisateur', +]; +$a->strings['%2$s user per system'] = [ + 0 => '%2$s utilisateur par système', + 1 => '%2$s utilisateurs par système', + 2 => '%2$s utilisateurs par système', +]; +$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.'] = 'Cette page montre quelques statistiques de la partie connue du réseau social fédéré dont votre instance Friendica fait partie. Ces chiffres sont partiels et ne reflètent que la portion du réseau dont votre instance a connaissance.'; +$a->strings['Federation Statistics'] = 'Statistiques Federation'; +$a->strings['Currently this node is aware of %2$s node (%3$s active users last month, %4$s active users last six months, %5$s registered users in total) from the following platforms:'] = [ + 0 => 'Actuellement, ce nœud est en relation avec %2$s autre nœud (%3$s utilisateurs actifs le mois dernier, %4$s ces six derniers mois, %5$s utilisateurs enregistrés au total) issus des plateformes suivantes :', + 1 => 'Actuellement, ce nœud est en relation avec %2$s autres nœuds (%3$s utilisateurs actifs le mois dernier, %4$s ces six derniers mois, %5$s utilisateurs enregistrés au total) issus des plateformes suivantes :', + 2 => 'Actuellement, ce nœud est en relation avec %2$s autre nœud (%3$s utilisateurs actifs le mois dernier, %4$s ces six derniers mois, %5$s utilisateurs enregistrés au total) issus des plateformes suivantes :', +]; +$a->strings['The logfile \'%s\' is not writable. No logging possible'] = 'Le fichier journal \'%s\' n\'est pas accessible en écriture. Pas de journalisation possible'; +$a->strings['PHP log currently enabled.'] = 'Log PHP actuellement activé.'; +$a->strings['PHP log currently disabled.'] = 'Log PHP actuellement desactivé.'; +$a->strings['Logs'] = 'Journaux'; +$a->strings['Clear'] = 'Effacer'; +$a->strings['Enable Debugging'] = 'Activer le déboggage'; +$a->strings['Read-only because it is set by an environment variable'] = 'En lecture seule car configuré avec une variable d\'environnement'; +$a->strings['Log file'] = 'Fichier journal'; +$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica.'; +$a->strings['Log level'] = 'Niveau de journalisaton'; +$a->strings['PHP logging'] = 'Log PHP'; +$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.'] = 'Pour activer temporairement la journalisation de PHP vous pouvez insérez les lignes suivantes au début du fichier index.php dans votre répertoire Friendica. The nom de fichier défini dans la ligne \'error_log\' est relatif au répertoire d\'installation de Friendica et le serveur web doit avoir le droit d\'écriture sur ce fichier. Les lignes log_errors et display_errors prennent les valeurs 0 et 1 respectivement pour les activer ou désactiver.'; +$a->strings['Error trying to open %1$s log file.
    Check to see if file %1$s exist and is readable.'] = 'Erreur lors de l\'ouverture du fichier journal %1$s.
    Vérifiez si le fichier %1$s existe et est lisible.'; +$a->strings['Couldn\'t open %1$s log file.
    Check to see if file %1$s is readable.'] = 'Impossible d\'ouvrir le fichier journal %1$s .
    Vérifiez si le fichier %1$s est lisible.'; +$a->strings['View Logs'] = 'Voir les logs'; +$a->strings['Search in logs'] = 'Rechercher dans les fichiers journaux'; +$a->strings['Show all'] = 'Tout afficher'; +$a->strings['Date'] = 'Date'; +$a->strings['Level'] = 'Niveau'; +$a->strings['Context'] = 'Contexte'; +$a->strings['ALL'] = 'TOUS'; +$a->strings['View details'] = 'Voir les détails'; +$a->strings['Click to view details'] = 'Cliquer pour voir les détails'; +$a->strings['Event details'] = 'Détails de l\'évènement'; +$a->strings['Data'] = 'Données'; +$a->strings['Source'] = 'Source'; +$a->strings['File'] = 'Fichier'; +$a->strings['Line'] = 'Ligne'; +$a->strings['Function'] = 'Fonction'; +$a->strings['UID'] = 'UID'; +$a->strings['Process ID'] = 'ID de processus'; +$a->strings['Close'] = 'Fermer'; +$a->strings['Inspect Deferred Worker Queue'] = 'Détail des tâches de fond reportées'; +$a->strings['This page lists the deferred worker jobs. This are jobs that couldn\'t be executed at the first time.'] = 'Cette page détaille les tâches de fond reportées après avoir échoué une première fois.'; +$a->strings['Inspect Worker Queue'] = 'Détail des tâches de fond en attente'; +$a->strings['This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you\'ve set up during install.'] = 'Cette page détaille les tâches de fond en attente. Elles seront traitées lors de la prochaine exécution de la tâche planifiée que vous avez définie lors de l\'installation.'; +$a->strings['ID'] = 'ID'; +$a->strings['Command'] = 'Commande'; +$a->strings['Job Parameters'] = 'Paramètres de la tâche'; +$a->strings['Created'] = 'Créé'; +$a->strings['Priority'] = 'Priorité'; +$a->strings['%s is no valid input for maximum image size'] = '%s n\'est pas une valeur valide pour la taille maximum d\'image'; +$a->strings['No special theme for mobile devices'] = 'Pas de thème particulier pour les terminaux mobiles'; +$a->strings['%s - (Experimental)'] = '%s- (expérimental)'; +$a->strings['No community page'] = 'Aucune page de communauté'; +$a->strings['No community page for visitors'] = 'Aucune page communautaire pour les visiteurs'; +$a->strings['Public postings from users of this site'] = 'Publications publiques des utilisateurs de ce site'; +$a->strings['Public postings from the federated network'] = 'Publications publiques du réseau fédéré'; +$a->strings['Public postings from local users and the federated network'] = 'Publications publiques des utilisateurs du site et du réseau fédéré'; +$a->strings['Multi user instance'] = 'Instance multi-utilisateurs'; +$a->strings['Closed'] = 'Fermé'; +$a->strings['Requires approval'] = 'Demande une apptrobation'; +$a->strings['Open'] = 'Ouvert'; +$a->strings['Don\'t check'] = 'Ne pas rechercher'; +$a->strings['check the stable version'] = 'Rechercher les versions stables'; +$a->strings['check the development version'] = 'Rechercher les versions de développement'; +$a->strings['none'] = 'aucun'; +$a->strings['Local contacts'] = 'Contacts locaux'; +$a->strings['Interactors'] = 'Interagisseurs'; +$a->strings['Site'] = 'Site'; +$a->strings['General Information'] = 'Information générale'; +$a->strings['Republish users to directory'] = 'Republier les utilisateurs sur le répertoire'; +$a->strings['Registration'] = 'Inscription'; +$a->strings['File upload'] = 'Téléversement de fichier'; +$a->strings['Policies'] = 'Politiques'; +$a->strings['Advanced'] = 'Avancé'; +$a->strings['Auto Discovered Contact Directory'] = 'Répertoire de Contacts Découverts Automatiquement'; +$a->strings['Performance'] = 'Performance'; +$a->strings['Worker'] = 'Worker'; +$a->strings['Message Relay'] = 'Relai de publication'; +$a->strings['Use the command "console relay" in the command line to add or remove relays.'] = 'Utilisez la commande "console relay" en ligne de commande pour ajouter ou retirer des relais.'; +$a->strings['The system is not subscribed to any relays at the moment.'] = 'Ce serveur n\'est pas abonné à un relai pour le moment.'; +$a->strings['The system is currently subscribed to the following relays:'] = 'Ce serveur est actuellement abonné aux relais suivants:'; +$a->strings['Relocate Node'] = 'Déplacer le nœud'; +$a->strings['Relocating your node enables you to change the DNS domain of this node and keep all the existing users and posts. This process takes a while and can only be started from the relocate console command like this:'] = 'Déplacer votre nœud vous permet de changer le domaine DNS de celui-ci et de conserver tous les utilisateurs existants ainsi que les publications. Ce processus prend un certain temps et ne peut être lancé que depuis la ligne de commande relocate de la façon suivante :'; +$a->strings['(Friendica directory)# bin/console relocate https://newdomain.com'] = '(Friendica directory)# bin/console relocate https://nouveaudomaine.fr'; +$a->strings['Site name'] = 'Nom du site'; +$a->strings['Sender Email'] = 'Courriel de l\'émetteur'; +$a->strings['The email address your server shall use to send notification emails from.'] = 'L\'adresse courriel à partir de laquelle votre serveur enverra des courriels.'; +$a->strings['Name of the system actor'] = 'Nom du compte système'; +$a->strings['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.'] = 'Nom du compte interne utilisé pour effectuer les requêtes ActivityPub. Ce nom doit être inutilisé actuellement. Une fois défini, ce nom ne peut pas être changé.'; +$a->strings['Banner/Logo'] = 'Bannière/Logo'; +$a->strings['Email Banner/Logo'] = 'Bannière/Logo de courriel'; +$a->strings['Shortcut icon'] = 'Icône de raccourci'; +$a->strings['Link to an icon that will be used for browsers.'] = 'Lien vers une icône qui sera utilisée pour les navigateurs.'; +$a->strings['Touch icon'] = 'Icône pour systèmes tactiles'; +$a->strings['Link to an icon that will be used for tablets and mobiles.'] = 'Lien vers une icône qui sera utilisée pour les tablettes et les mobiles.'; +$a->strings['Additional Info'] = 'Informations supplémentaires'; +$a->strings['For public servers: you can add additional information here that will be listed at %s/servers.'] = 'Description publique destinée au répertoire global de sites Friendica.'; +$a->strings['System language'] = 'Langue du système'; +$a->strings['System theme'] = 'Thème du système'; +$a->strings['Default system theme - may be over-ridden by user profiles - Change default theme settings'] = 'Thème système par défaut - peut être modifié par profil utilisateur - Changer les paramètres de thème par défaut'; +$a->strings['Mobile system theme'] = 'Thème mobile'; +$a->strings['Theme for mobile devices'] = 'Thème pour les terminaux mobiles'; +$a->strings['Force SSL'] = 'SSL obligatoire'; +$a->strings['Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'] = 'Redirige toutes les requêtes en clair vers des requêtes SSL. Attention : sur certains systèmes cela peut conduire à des boucles de redirection infinies.'; +$a->strings['Show help entry from navigation menu'] = 'Montrer l\'aide dans le menu de navigation'; +$a->strings['Displays the menu entry for the Help pages from the navigation menu. It is always accessible by calling /help directly.'] = 'Montre l\'Aide dans le menu de navigation. L\'aide reste accessible en naviguant vers /help directement.'; +$a->strings['Single user instance'] = 'Instance mono-utilisateur'; +$a->strings['Make this instance multi-user or single-user for the named user'] = 'Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l\'utilisateur.'; +$a->strings['Maximum image size'] = 'Taille maximale des images'; +$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively. + The value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit. + Currently upload_max_filesize is set to %s (%s byte)'] = 'Taille maximale en octets des images téléversées. La valeur par défaut est 0, ce qui signifie aucune limite. Vous pouvez indiquer k, m, ou g après la valeur désirée pour Kio, Mio, Gio respectivement. + La valeur de upload_max_filesize dans votre PHP.ini doit être définie au minimum à la valeur désirée. + Actuellement upload_max_filesize est définie à %s (%s octet)'; +$a->strings['Maximum image length'] = 'Longueur maximale des images'; +$a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Longueur maximale en pixels du plus long côté des images téléversées. La valeur par défaut est -1 : absence de limite.'; +$a->strings['JPEG image quality'] = 'Qualité JPEG des images'; +$a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = 'Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale.'; +$a->strings['Register policy'] = 'Politique d\'inscription'; +$a->strings['Maximum Users'] = 'Utilisateurs maximum'; +$a->strings['If defined, the register policy is automatically closed when the given number of users is reached and reopens the registry when the number drops below the limit. It only works when the policy is set to open or close, but not when the policy is set to approval.'] = 'Si défini, la politique d\'inscription est automatiquement définie à "Fermé" quand le nombre d\'utilisateurs est atteint et mis à "Ouvert" quand le nombre descend en dessous de la limite. Cela fonctionne uniquement si la politique est défini à "Ouvert" ou "Fermé", mais pas quand celle-ci est définie à "Demande une approbation".'; +$a->strings['Maximum Daily Registrations'] = 'Inscriptions maximum par jour'; +$a->strings['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.'] = 'Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d\'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n\'a aucun effet.'; +$a->strings['Register text'] = 'Texte d\'inscription'; +$a->strings['Will be displayed prominently on the registration page. You can use BBCode here.'] = 'Ce texte est affiché sur la page d\'inscription. Les BBCodes sont autorisés.'; +$a->strings['Forbidden Nicknames'] = 'Identifiants réservés'; +$a->strings['Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142.'] = 'Liste d\'identifiants réservés séparés par des virgules. Ces identifiants ne peuvent pas être utilisés pour s\'enregistrer. La liste de base provient de la RFC 2142.'; +$a->strings['Accounts abandoned after x days'] = 'Les comptes sont abandonnés après x jours'; +$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = 'Pour ne pas gaspiller les ressources système, on cesse d\'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction.'; +$a->strings['Allowed friend domains'] = 'Domaines autorisés'; +$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les \'*\' sont acceptés. Laissez vide pour autoriser tous les domaines'; +$a->strings['Allowed email domains'] = 'Domaines courriel autorisés'; +$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Liste de domaines - séparés par des virgules - dont les adresses de courriel sont autorisées à s\'inscrire sur ce site. Les \'*\' sont acceptées. Laissez vide pour autoriser tous les domaines'; +$a->strings['No OEmbed rich content'] = 'Désactiver le texte riche avec OEmbed'; +$a->strings['Don\'t show the rich content (e.g. embedded PDF), except from the domains listed below.'] = 'Evite le contenu riche avec OEmbed (comme un document PDF incrusté), sauf provenant des domaines autorisés listés ci-après.'; +$a->strings['Trusted third-party domains'] = 'Domaines tierce-partie de confiance'; +$a->strings['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.'] = 'Liste séparée par des virgules de domaines dont le contenu est autorisé à être intégré dans les publications comme avec OEmbed. Tous les sous-domaines des domains mentionnés sont autorisés également.'; +$a->strings['Block public'] = 'Interdire la publication globale'; +$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques.'; +$a->strings['Force publish'] = 'Forcer la publication globale'; +$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Cocher pour publier obligatoirement tous les profils locaux dans l\'annuaire du site.'; +$a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Activer cette option peut potentiellement enfreindre les lois sur la protection de la vie privée comme le RGPD.'; +$a->strings['Global directory URL'] = 'URL de l\'annuaire global'; +$a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'URL de l\'annuaire global. Si ce champ n\'est pas défini, l\'annuaire global sera complètement indisponible pour l\'application.'; +$a->strings['Private posts by default for new users'] = 'Publications privées par défaut pour les nouveaux utilisateurs'; +$a->strings['Set default post permissions for all new members to the default privacy circle rather than public.'] = 'Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le cercle de contacts par défaut, et non par tout le monde.'; +$a->strings['Don\'t include post content in email notifications'] = 'Ne pas inclure le contenu de la publication dans le courriel de notification'; +$a->strings['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.'] = 'Ne pas inclure le contenu d\'un(e) publication/commentaire/message privé/etc dans le courriel de notification qui est envoyé à partir du site, par mesure de confidentialité.'; +$a->strings['Disallow public access to addons listed in the apps menu.'] = 'Interdire l’accès public pour les greffons listées dans le menu apps.'; +$a->strings['Checking this box will restrict addons listed in the apps menu to members only.'] = 'Cocher cette case restreint la liste des greffons dans le menu des applications seulement aux membres.'; +$a->strings['Don\'t embed private images in posts'] = 'Ne pas miniaturiser les images privées dans les publications'; +$a->strings['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.'] = 'Ne remplacez pas les images privées hébergées localement dans les publications avec une image attaché en copie, car cela signifie que le contact qui reçoit les publications contenant ces photos privées devra s’authentifier pour charger chaque image, ce qui peut prendre du temps.'; +$a->strings['Explicit Content'] = 'Contenu adulte'; +$a->strings['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.'] = 'Activez cette option si votre site est principalement utilisé pour publier du contenu adulte. Cette information est publique et peut être utilisée pour filtrer votre site dans le répertoire de site global. Elle est également affichée sur la page d\'inscription.'; +$a->strings['Proxify external content'] = 'Faire transiter le contenu externe par un proxy'; +$a->strings['Route external content via the proxy functionality. This is used for example for some OEmbed accesses and in some other rare cases.'] = 'Dirige le contenu externe par la fonctionnalité proxy. Cela est utilisé par exemple pour certains accès OEmbed et dans certains autres cas rares.'; +$a->strings['Cache contact avatars'] = 'Mettre en cache les avatars des contacts'; +$a->strings['Locally store the avatar pictures of the contacts. This uses a lot of storage space but it increases the performance.'] = 'Stocker localement les images d\'avatar des contacts. Cela utilise beaucoup d\'espace disque mais améliore les performances.'; +$a->strings['Allow Users to set remote_self'] = 'Autoriser les utilisateurs à définir remote_self'; +$a->strings['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.'] = 'Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d\'un contact dans le flux d\'activités des utilisateurs.'; +$a->strings['Enable multiple registrations'] = 'Autoriser les comptes multiples'; +$a->strings['Enable users to register additional accounts for use as pages.'] = 'Permet aux utilisateurs d\'enregistrer des comptes supplémentaires pour être utilisés comme pages.'; +$a->strings['Enable OpenID'] = 'Activer OpenID'; +$a->strings['Enable OpenID support for registration and logins.'] = 'Permet l\'utilisation d\'OpenID pour l\'enregistrement de compte et l\'identification.'; +$a->strings['Enable Fullname check'] = 'Forcer l\'utilisation de noms complets'; +$a->strings['Enable check to only allow users to register with a space between the first name and the last name in their full name.'] = 'Oblige les utilisateurs à include au moins un espace dans leur nom d\'usage comme entre un prénom et un nom de famille.'; +$a->strings['Email administrators on new registration'] = 'Envoyer un courriel aux administrateurs lors d\'une nouvelle inscription'; +$a->strings['If enabled and the system is set to an open registration, an email for each new registration is sent to the administrators.'] = 'Si activé et que le système est défini à une inscription ouverte, un courriel sera envoyé pour chaque nouvelle inscription aux administrateurs.'; +$a->strings['Community pages for visitors'] = 'Affichage de la page communauté pour les utilisateurs anonymes'; +$a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = 'Quelles pages communauté sont disponibles pour les utilisateurs anonymes.'; +$a->strings['Posts per user on community page'] = 'Nombre de publications par utilisateur sur la page de la communauté'; +$a->strings['The maximum number of posts per user on the community page. (Not valid for "Global Community")'] = 'Le nombre maximum de publications par auteur par page dans le flux communautaire local.'; +$a->strings['Enable Mail support'] = 'Activer la prise en charge e-mail'; +$a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'Permet de se connecter à un compte IMAP et de répondre directement aux e-mails via Friendica.'; +$a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'La prise en charge e-mail requiert le module PHP IMAP pour être activée.'; +$a->strings['Enable OStatus support'] = 'Activer la prise en charge d\'OStatus'; +$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'Permet la communication avec des comptes distants via OStatus (StatusNet, GNU Social, etc...). Toutes les publications OStatus sont publiques.'; +$a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Le support de Diaspora ne peut pas être activé parce que Friendica a été installé dans un sous-répertoire.'; +$a->strings['Enable Diaspora support'] = 'Activer le support de Diaspora'; +$a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'Permet la communication avec des comptes distants via Diaspora. Ce protocole est principalement utilisé par la plate-forme Diaspora.'; +$a->strings['Verify SSL'] = 'Vérifier SSL'; +$a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = 'Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d\'un certificat auto-signé.'; +$a->strings['Proxy user'] = 'Utilisateur du proxy'; +$a->strings['User name for the proxy server.'] = 'Nom d\'utilisateur pour le serveur proxy'; +$a->strings['Proxy URL'] = 'URL du proxy'; +$a->strings['If you want to use a proxy server that Friendica should use to connect to the network, put the URL of the proxy here.'] = 'Si vous souhaitez utiliser un serveur proxy que Friendica devra employer pour se connecter au réseau, indiquez l\'adresse du proxy ici.'; +$a->strings['Network timeout'] = 'Dépassement du délai d\'attente du réseau'; +$a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Valeur en secondes. Mettre à 0 pour \'illimité\' (pas recommandé).'; +$a->strings['Maximum Load Average'] = 'Plafond de la charge moyenne'; +$a->strings['Maximum system load before delivery and poll processes are deferred - default %d.'] = 'La charge système maximal avant que les processus livraisons et de sondage de profils distants soient reportées. Défaut : %d.'; +$a->strings['Minimal Memory'] = 'Mémoire minimum'; +$a->strings['Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).'] = 'Mémoire libre minimale pour les tâches de fond (en Mo). Requiert l\'accès à /proc/meminfo. La valeur par défaut est 0 (désactivé).'; +$a->strings['Periodically optimize tables'] = 'Optimizer les tables régulièrement'; +$a->strings['Periodically optimize tables like the cache and the workerqueue'] = 'Optimize régulièrement certaines tables de base de données très utilisées comme cache, locks, session, ou workerqueue.'; +$a->strings['Discover followers/followings from contacts'] = 'Découvrir la liste de contacts des contacts'; +$a->strings['If enabled, contacts are checked for their followers and following contacts.'] = 'Si activé, ce serveur collecte la liste d\'abonnés et d\'abonnements des contacts suivants.'; +$a->strings['None - deactivated'] = 'Aucun - désactivé'; +$a->strings['Local contacts - contacts of our local contacts are discovered for their followers/followings.'] = 'Contacts locaux : Les contacts des utilisateurs de ce serveur'; +$a->strings['Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings.'] = 'Interagisseurs : Les contacts des utilisateurs de ce serveur et les contacts qui ont intéragit avec les conversations dont ce serveur a connaissance.'; +$a->strings['Synchronize the contacts with the directory server'] = 'Synchroniser les contacts avec l\'annuaire distant'; +$a->strings['if enabled, the system will check periodically for new contacts on the defined directory server.'] = 'Active l\'ajout de nouveaux contacts depuis l\'annuaire distant choisi.'; +$a->strings['Days between requery'] = 'Nombre de jours entre les requêtes'; +$a->strings['Number of days after which a server is requeried for his contacts.'] = 'Nombre de jours avant qu\'une requête de contacts soient envoyée à nouveau à un serveur.'; +$a->strings['Discover contacts from other servers'] = 'Découvrir des contacts des autres serveurs'; +$a->strings['Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers.'] = 'Récupère périodiquement la liste des contacts connus par les serveurs distants. Concerne les serveurs Friendica, Mastodon et Hubzilla seulement.'; +$a->strings['Search the local directory'] = 'Chercher dans le répertoire local'; +$a->strings['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.'] = 'Cherche dans le répertoire local au lieu du répertoire local. Quand une recherche locale est effectuée, la même recherche est effectuée dans le répertoire global en tâche de fond. Cela améliore les résultats de la recherche si elle est réitérée.'; +$a->strings['Publish server information'] = 'Publier les informations du serveur'; +$a->strings['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.'] = 'Active la publication de données générales sur ce serveur et son utilisation. Contient entre autres le nom et la version du serveur, le nombre d\'utilisateurs avec un profil public, le nombre de publications et la liste des connecteurs activés. Voir the-federation.info pour les détails.'; +$a->strings['Check upstream version'] = 'Mises à jour'; +$a->strings['Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview.'] = 'Permet de vérifier la présence de nouvelles versions de Friendica sur github. Si une nouvelle version est disponible, vous recevrez une notification dans l\'interface d\'administration.'; +$a->strings['Suppress Tags'] = 'Masquer les tags'; +$a->strings['Suppress showing a list of hashtags at the end of the posting.'] = 'Ne pas afficher la liste des tags à la fin d’un message.'; +$a->strings['Clean database'] = 'Nettoyer la base de données'; +$a->strings['Remove old remote items, orphaned database records and old content from some other helper tables.'] = 'Supprime les conversations distantes anciennes, les enregistrements orphelins et le contenu obsolète de certaines tables de débogage.'; +$a->strings['Lifespan of remote items'] = 'Durée de vie des conversations distantes'; +$a->strings['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.'] = 'Si le nettoyage de la base de donnée est actif, cette valeur représente le délai en jours après lequel les conversations distantes sont supprimées. Les conversations démarrées par un utilisateur local, étoilées ou archivées sont toujours conservées. 0 pour désactiver.'; +$a->strings['Lifespan of unclaimed items'] = 'Durée de vie des conversations relayées'; +$a->strings['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.'] = 'Si le nettoyage de la base de donnée est actif, cette valeur représente le délai en jours après lequel les conversations relayées qui n\'ont pas reçu d\'interactions locales sont supprimées. La valeur par défaut est 90 jours. 0 pour aligner cette valeur sur la durée de vie des conversations distantes.'; +$a->strings['Lifespan of raw conversation data'] = 'Durée de vie des méta-données de conversation'; +$a->strings['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.'] = 'Cette valeur représente le délai en jours après lequel les méta-données de conversations sont supprimées. Ces méta-données sont utilisées par les protocoles ActivityPub et OStatus, et pour le débogage. Il est prudent de conserver ces meta-données pendant au moins 14 jours. La valeur par défaut est 90 jours.'; +$a->strings['Maximum numbers of comments per post'] = 'Nombre maximum de commentaires par publication'; +$a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100.'; +$a->strings['Maximum numbers of comments per post on the display page'] = 'Nombre maximum de commentaires par conversation dans leur page dédié (/display)'; +$a->strings['How many comments should be shown on the single view for each post? Default value is 1000.'] = 'Valeur par défaut : 1 000.'; +$a->strings['Temp path'] = 'Chemin des fichiers temporaires'; +$a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Si vous n\'avez pas la possibilité d\'avoir accès au répertoire temp, entrez un autre répertoire ici.'; +$a->strings['Only search in tags'] = 'Rechercher seulement dans les tags'; +$a->strings['On large systems the text search can slow down the system extremely.'] = 'La recherche textuelle peut ralentir considérablement les systèmes de grande taille.'; +$a->strings['Generate counts per contact circle when calculating network count'] = 'Générer les comptes par cercle de contacts lors du calcul du nombre de réseaux.'; +$a->strings['On systems with users that heavily use contact circles the query can be very expensive.'] = 'Sur les systèmes avec des utilisateurs utilisant fortement les cercles de contact, cette requête peut être très coûteuse.'; +$a->strings['Maximum number of parallel workers'] = 'Nombre maximum de processus simultanés'; +$a->strings['On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d.'] = 'Sur un hébergement partagé, mettez %d. Sur des serveurs plus puissants, %d est optimal. La valeur par défaut est %d.'; +$a->strings['Enable fastlane'] = 'Activer la file prioritaire'; +$a->strings['When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.'] = 'La file prioritaire est un ouvrier additionel démarré quand des tâches de fondde grande importance sont bloquées par des tâches de moindre importance dans la file d\'attente.'; +$a->strings['Direct relay transfer'] = 'Relai direct'; +$a->strings['Enables the direct transfer to other servers without using the relay servers'] = 'Soumet les conversations publiques aux serveurs distants sans passer par le serveur relai.'; +$a->strings['Relay scope'] = 'Filtre du relai'; +$a->strings['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.'] = '"Tous" signifie que toutes les conversations publiques en provenance du relai sont acceptées. "Tags" signifie que seules les conversations comportant les tags suivants sont acceptées.'; +$a->strings['Disabled'] = 'Désactivé'; +$a->strings['all'] = 'Tous'; +$a->strings['tags'] = 'tags'; +$a->strings['Server tags'] = 'Tags de filtre du relai'; +$a->strings['Comma separated list of tags for the "tags" subscription.'] = 'Liste séparée par des virgules de tags exclusivement autorisés en provenance des relais.'; +$a->strings['Deny Server tags'] = 'Tags refusés'; +$a->strings['Comma separated list of tags that are rejected.'] = 'Liste séparée par des virgules de tags refusés en provenance des relais.'; +$a->strings['Allow user tags'] = 'Inclure les tags des utilisateurs'; +$a->strings['If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".'] = 'Ajoute les tags des recherches enregistrées des utilisateurs aux tags exclusivement autorisés en provenance des relais.'; +$a->strings['Start Relocation'] = 'Démarrer le déménagement'; +$a->strings['Storage backend, %s is invalid.'] = 'Le moteur de stockage %s est invalide.'; +$a->strings['Storage backend %s error: %s'] = 'Moteur de stockage %s erreur : %s'; +$a->strings['Invalid storage backend setting value.'] = 'Valeur de paramètre de moteur de stockage invalide.'; +$a->strings['Current Storage Backend'] = 'Moteur de stockage actuel'; +$a->strings['Storage Configuration'] = 'Configuration du stockage'; +$a->strings['Storage'] = 'Stockage'; +$a->strings['Save & Use storage backend'] = 'Enregistrer et utiliser ce moteur de stockage'; +$a->strings['Use storage backend'] = 'Utiliser ce moteur de stockage'; +$a->strings['Save & Reload'] = 'Enregistrer et recharger'; +$a->strings['This backend doesn\'t have custom settings'] = 'Ce moteur de stockage n\'offre pas de paramètres personnalisés.'; +$a->strings['Changing the current backend is prohibited because it is set by an environment variable'] = 'Il n\'est pas possible de changer le moteur de stockage car il est configuré avec une variable d\'environnement.'; +$a->strings['Database (legacy)'] = 'Base de donnée (historique)'; +$a->strings['Template engine (%s) error: %s'] = 'Moteur de template (%s) erreur : %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.
    '] = '
    Votre base de donnée comporte des tables MYISAM. Vous devriez changer pour InnoDB car il est prévu d\'utiliser des fonctionnalités spécifiques à InnoDB à l\'avenir. Veuillez consulter ce guide de conversion pour mettre à jour votre base de donnée. Vous pouvez également exécuter la commande php bin/console.php dbstructure toinnodb à la racine de votre répertoire Friendica pour une conversion automatique.'; +$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.
    '] = 'Votre BDD utilise encore des tables InnoDB au format de fichiers Antelope. Vous devriez le remplacer par le format Barracuda. Friendica utilise des fonctionnalités qui ne sont pas disponibles dans le format Antelope. Voir ici pour un guide qui peut être utile pour la conversion du moteur des tables. Vous pouvez également utiliser la commande php bin/console.php dbstructure toinnodb de votre installation Friendica pour une conversion automatique.
    '; +$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.
    '] = 'Votre table_definition_cache est trop faible (%d). Cela peut conduire à l\'erreur de base de données "Prepared statement needs to be re-prepared". Merci de le définir au minimum à %d. Voir ici pour plus d\'informations.
    '; +$a->strings['There is a new version of Friendica available for download. Your current version is %1$s, upstream version is %2$s'] = 'Une nouvelle version de Friendica est disponible. Votre version est %1$s, la nouvelle version est %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.'] = 'La mise à jour automatique de la base de donnée a échoué. Veuillez exécuter la commande php bin/console.php dbstructure update depuis votre répertoire Friendica et noter les erreurs potentielles.'; +$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.)'] = 'La dernière mise à jour a échoué. Merci d\'exécuter "php bin/console.php dbstructure update" depuis la ligne de commandes et de surveiller les erreurs qui pourraient survenir (Certaines erreurs pourraient être dans le fichier journal).'; +$a->strings['The system.url entry is missing. This is a low level setting and can lead to unexpected behavior. Please add a valid entry as soon as possible in the config file or per console command!'] = 'L\'entrée system.url est manquante. Il s\'agit d\'un paramètre bas niveau qui peut conduire à un comportement non attendu. Merci d\'ajouter une entrée valide dès que possible dans le fichier de configuration ou via la console de commandes !'; +$a->strings['The worker was never executed. Please check your database structure!'] = 'Le \'worker\' n\'a pas encore été exécuté. Vérifiez la structure de votre base de données.'; +$a->strings['The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings.'] = 'La dernière exécution du \'worker\' s\'est déroulée à %s, c\'est-à-dire il y a plus d\'une heure. Vérifiez les réglages de crontab.'; +$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.'] = 'La configuration de votre site Friendica est maintenant stockée dans le fichier config/local.config.php, veuillez copier le fichier config/local-sample.config.php et transférer votre configuration depuis le fichier .htconfig.php. Veuillez consulter la page d\'aide de configuration (en anglais) pour vous aider dans la transition.'; +$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.'] = 'La configuration de votre site Friendica est maintenant stockée dans le fichier config/local.config.php, veuillez copier le fichier config/local-sample.config.php et transférer votre configuration depuis le fichier config/local.ini.php. Veuillez consulter la page d\'aide de configuration (en anglais) pour vous aider dans la transition.'; +$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.'] = '%s n\'est pas accessible sur votre site. C\'est un problème de configuration sévère qui empêche toute communication avec les serveurs distants. Veuillez consulter la page d\'aide à l\'installation (en anglais) pour plus d\'information.'; +$a->strings['Friendica\'s system.basepath was updated from \'%s\' to \'%s\'. Please remove the system.basepath from your db to avoid differences.'] = 'Le system.basepath de Friendica a été mis à jour de \'%s\' à \'%s\'. Merci de supprimer le system.basepath de votre base de données pour éviter des différences.'; +$a->strings['Friendica\'s current system.basepath \'%s\' is wrong and the config file \'%s\' isn\'t used.'] = 'Le system.basepath actuel de Friendica, \'%s\' est erroné et le fichier de configuration \'%s\' n\'est pas utilisé.'; +$a->strings['Friendica\'s current system.basepath \'%s\' is not equal to the config file \'%s\'. Please fix your configuration.'] = 'Le system.basepath \'%s\' actuel de Friendica n\'est pas le même que le fichier de configuration \'%s\'. Merci de corriger votre configuration.'; +$a->strings['Message queues'] = 'Files d\'attente des messages'; +$a->strings['Server Settings'] = 'Paramètres du site'; +$a->strings['Version'] = 'Version'; +$a->strings['Active addons'] = 'Add-ons actifs'; +$a->strings['Theme %s disabled.'] = 'Thème %s désactivé.'; +$a->strings['Theme %s successfully enabled.'] = 'Thème %s activé avec succès.'; +$a->strings['Theme %s failed to install.'] = 'Le thème %s a échoué à s\'installer.'; +$a->strings['Screenshot'] = 'Capture d\'écran'; +$a->strings['Themes'] = 'Thèmes'; +$a->strings['Unknown theme.'] = 'Thème inconnu.'; +$a->strings['Themes reloaded'] = 'Thèmes rechargés'; +$a->strings['Reload active themes'] = 'Recharger les thèmes actifs'; +$a->strings['No themes found on the system. They should be placed in %1$s'] = 'Aucun thème trouvé. Leur emplacement d\'installation est%1$s.'; +$a->strings['[Experimental]'] = '[Expérimental]'; +$a->strings['[Unsupported]'] = '[Non supporté]'; +$a->strings['Display Terms of Service'] = 'Afficher les Conditions d\'Utilisation'; +$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.'] = 'Active la page de Conditions d\'Utilisation. Un lien vers cette page est ajouté dans le formulaire d\'inscription et la page A Propos.'; +$a->strings['Display Privacy Statement'] = 'Afficher la Politique de Confidentialité'; +$a->strings['Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR.'] = 'Afficher quelques informations à propos des données nécessaires pour opérer un nœud conforme par exemple au RGPD Européen.'; +$a->strings['Privacy Statement Preview'] = 'Aperçu de la Politique de Confidentialité'; +$a->strings['The Terms of Service'] = 'Conditions d\'Utilisation'; +$a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = 'Saisissez les Conditions d\'Utilisations de votre site. Les BBCodes sont disponibles, les titres commencent à [h2].'; +$a->strings['The rules'] = 'Les règles'; +$a->strings['Enter your system rules here. Each line represents one rule.'] = 'Saisissez les règles de votre système ici. Chaque ligne représente une règle.'; +$a->strings['API endpoint %s %s is not implemented but might be in the future.'] = 'Le point de terminaison de l\'API %s%s n\'est pas implémenté mais pourrait l\'être à l\'avenir.'; +$a->strings['Missing parameters'] = 'Paramètres manquants'; +$a->strings['Only starting posts can be bookmarked'] = 'Seuls les publications initiales peuvent être ajoutées aux signets'; +$a->strings['Only starting posts can be muted'] = 'Les notifications de conversation ne peuvent être ignorées qu\'à partir de la publication initiale'; +$a->strings['Posts from %s can\'t be shared'] = 'Les publications de %s ne peuvent pas être partagées'; +$a->strings['Only starting posts can be unbookmarked'] = 'Seules les publications initiales peuvent être retirées des signets'; +$a->strings['Only starting posts can be unmuted'] = 'Les notifications de conversation ne peuvent être rétablies qu\'à partir de la publication initiale'; +$a->strings['Posts from %s can\'t be unshared'] = 'Il n\'est pas possible d\'annuler le partage des publications de %s '; +$a->strings['Contact not found'] = 'Contact non trouvé'; +$a->strings['No installed applications.'] = 'Pas d\'application installée.'; +$a->strings['Applications'] = 'Applications'; +$a->strings['Item was not found.'] = 'Element introuvable.'; +$a->strings['Please login to continue.'] = 'Merci de vous connecter pour continuer.'; +$a->strings['You don\'t have access to administration pages.'] = 'Vous n\'avez pas accès aux pages d\'administration'; +$a->strings['Submanaged account can\'t access the administration pages. Please log back in as the main account.'] = 'Les comptes sous-gérés ne peuvent accéder aux pages d\'administration. Veuillez vous identifier avec votre compte principal à la place.'; +$a->strings['Overview'] = 'Synthèse'; +$a->strings['Configuration'] = 'Configuration'; +$a->strings['Additional features'] = 'Fonctions supplémentaires'; +$a->strings['Database'] = 'Base de données'; +$a->strings['DB updates'] = 'Mise-à-jour de la base'; +$a->strings['Inspect Deferred Workers'] = 'Tâches de fond reportées'; +$a->strings['Inspect worker Queue'] = 'Tâches de fond en attente'; +$a->strings['Diagnostics'] = 'Diagnostics'; +$a->strings['PHP Info'] = 'PHP Info'; +$a->strings['probe address'] = 'Tester une adresse'; +$a->strings['check webfinger'] = 'Vérifier le webfinger'; +$a->strings['Babel'] = 'Babel'; +$a->strings['ActivityPub Conversion'] = 'Conversion ActivityPub'; +$a->strings['Addon Features'] = 'Fonctionnalités des addons'; +$a->strings['User registrations waiting for confirmation'] = 'Inscriptions en attente de confirmation'; +$a->strings['Too Many Requests'] = 'Trop de requêtes'; +$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Limite quotidienne d\'%d publication atteinte. La publication a été rejetée.', + 1 => 'Limite quotidienne de %d publications atteinte. La publication a été rejetée.', + 2 => 'Limite quotidienne de %d publications atteinte. La publication a été rejetée.', +]; +$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Limite hebdomadaire d\'%d unique publication atteinte, votre soumission a été rejetée.', + 1 => 'Limite hebdomadaire de %d publications atteinte, votre soumission a été rejetée.', + 2 => 'Limite hebdomadaire de %d publications atteinte, votre soumission a été rejetée.', +]; +$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'La limite mensuelle de %d publication a été atteinte. La publication a été refusée.', + 1 => 'La limite mensuelle de %d publications a été atteinte. La publication a été refusée.', + 2 => 'La limite mensuelle de %d publications a été atteinte. La publication a été refusée.', +]; +$a->strings['You don\'t have access to moderation pages.'] = 'Vous n\'avez pas accès aux pages de modération.'; +$a->strings['Submanaged account can\'t access the moderation pages. Please log back in as the main account.'] = 'Les comptes sous-gérés ne peuvent accéder aux pages de modération. Veuillez vous identifier avec votre compte principal à la place.'; +$a->strings['Reports'] = 'Signalements'; +$a->strings['Users'] = 'Utilisateurs'; +$a->strings['Tools'] = 'Outils'; +$a->strings['Contact Blocklist'] = 'Liste de contacts bloqués'; +$a->strings['Server Blocklist'] = 'Serveurs bloqués'; +$a->strings['Delete Item'] = 'Supprimer un élément'; +$a->strings['Item Source'] = 'Source de la publication'; +$a->strings['Profile Details'] = 'Détails du profil'; +$a->strings['Conversations started'] = 'Discussions commencées'; +$a->strings['Only You Can See This'] = 'Vous seul pouvez voir ça'; +$a->strings['Scheduled Posts'] = 'Publications programmées'; +$a->strings['Posts that are scheduled for publishing'] = 'Publications programmées à l\'avance'; +$a->strings['Tips for New Members'] = 'Conseils aux nouveaux venus'; +$a->strings['People Search - %s'] = 'Recherche de personne - %s'; +$a->strings['Group Search - %s'] = 'Recherche de groupe - %s'; +$a->strings['No matches'] = 'Aucune correspondance'; +$a->strings['%d result was filtered out because your node blocks the domain it is registered on. You can review the list of domains your node is currently blocking in the About page.'] = [ + 0 => '%d résultat a été filtré car votre nœud bloque le domaine sur lequel il est enregistré. Vous pouvez voir la liste des domaines que votre nœud bloque dans la page A propos.', + 1 => '%d résultats ont été filtrés car votre nœud bloque le domaine sur lequel ils sont enregistrés. Vous pouvez voir la liste des domaines que votre nœud bloque dans la page A propos.', + 2 => '%d résultats ont été filtrés car votre nœud bloque le domaine sur lequel ils sont enregistrés. Vous pouvez voir la liste des domaines que votre nœud bloque dans la page A propos.', +]; +$a->strings['Account'] = 'Compte'; +$a->strings['Two-factor authentication'] = 'Authentification à deux facteurs'; +$a->strings['Display'] = 'Affichage'; +$a->strings['Social Networks'] = 'Réseaux sociaux'; +$a->strings['Manage Accounts'] = 'Gérer vos comptes'; +$a->strings['Connected apps'] = 'Applications connectées'; +$a->strings['Remote servers'] = 'Serveurs distants'; +$a->strings['Export personal data'] = 'Exporter'; +$a->strings['Remove account'] = 'Supprimer le compte'; +$a->strings['This page is missing a url parameter.'] = 'Il manque un paramètre d\'URL à cette adresse.'; +$a->strings['The post was created'] = 'La publication a été créée'; +$a->strings['Invalid Request'] = 'Requête invalide'; +$a->strings['Event id is missing.'] = 'L\'identifiant de l\'évènement est manquant.'; +$a->strings['Failed to remove event'] = 'La suppression de l\'évènement a échoué.'; +$a->strings['Event can not end before it has started.'] = 'L\'évènement ne peut pas se terminer avant d\'avoir commencé.'; +$a->strings['Event title and start time are required.'] = 'Vous devez donner un nom et un horaire de début à l\'évènement.'; +$a->strings['Starting date and Title are required.'] = 'La date de début et le titre sont requis.'; +$a->strings['Event Starts:'] = 'Début de l\'évènement :'; +$a->strings['Required'] = 'Requis'; +$a->strings['Finish date/time is not known or not relevant'] = 'Date / heure de fin inconnue ou sans objet'; +$a->strings['Event Finishes:'] = 'Fin de l\'évènement :'; +$a->strings['Title (BBCode not allowed)'] = 'Titre (BBCode non autorisé)'; +$a->strings['Description (BBCode allowed)'] = 'Description (BBCode autorisé)'; +$a->strings['Location (BBCode not allowed)'] = 'Localisation (BBCode non autorisé)'; +$a->strings['Share this event'] = 'Partager cet évènement'; +$a->strings['Basic'] = 'Simple'; +$a->strings['This calendar format is not supported'] = 'Format de calendrier inconnu'; +$a->strings['No exportable data found'] = 'Rien à exporter'; +$a->strings['calendar'] = 'calendrier'; +$a->strings['Events'] = 'Évènements'; +$a->strings['View'] = 'Vue'; +$a->strings['Create New Event'] = 'Créer un nouvel évènement'; +$a->strings['list'] = 'liste'; +$a->strings['Could not create circle.'] = 'Impossible de créer le cercle.'; +$a->strings['Circle not found.'] = 'Cercle introuvable.'; +$a->strings['Circle name was not changed.'] = 'Le nom du cercle n\'a pas été modifié.'; +$a->strings['Unknown circle.'] = 'Cercle inconnu.'; +$a->strings['Contact not found.'] = 'Contact introuvable.'; +$a->strings['Invalid contact.'] = 'Contact invalide.'; +$a->strings['Contact is deleted.'] = 'Le contact a été supprimé.'; +$a->strings['Unable to add the contact to the circle.'] = 'Impossible d\'ajouter le contact au cercle.'; +$a->strings['Contact successfully added to circle.'] = 'Le contact a été ajouté au cercle.'; +$a->strings['Unable to remove the contact from the circle.'] = 'Impossible de retirer le contact du cercle.'; +$a->strings['Contact successfully removed from circle.'] = 'Le contact a été retiré du cercle.'; +$a->strings['Bad request.'] = 'Requête invalide.'; +$a->strings['Save Circle'] = 'Enregistrer le cercle'; +$a->strings['Filter'] = 'Filtre'; +$a->strings['Create a circle of contacts/friends.'] = 'Créer un cercle de contacts/amis.'; +$a->strings['Unable to remove circle.'] = 'Impossible de supprimer le cercle.'; +$a->strings['Delete Circle'] = 'Supprimer le Cercle'; +$a->strings['Edit Circle Name'] = 'Modifier le Nom du Cercle'; +$a->strings['Members'] = 'Membres'; +$a->strings['Circle is empty'] = 'Le cercle est vide'; +$a->strings['Remove contact from circle'] = 'Retirer ce contact du cercle'; +$a->strings['Click on a contact to add or remove.'] = 'Cliquez sur un contact pour l\'ajouter ou le supprimer.'; +$a->strings['Add contact to circle'] = 'Ajouter ce contact au cercle'; +$a->strings['%d contact edited.'] = [ + 0 => '%d contact mis à jour.', + 1 => '%d contacts mis à jour.', + 2 => '%d contacts mis à jour.', +]; +$a->strings['Show all contacts'] = 'Montrer tous les contacts'; +$a->strings['Pending'] = 'En attente'; +$a->strings['Only show pending contacts'] = 'Ne montrer que les demandes d\'abonnement'; +$a->strings['Blocked'] = 'Bloqués'; +$a->strings['Only show blocked contacts'] = 'Ne montrer que les contacts bloqués'; +$a->strings['Ignored'] = 'Ignorés'; +$a->strings['Only show ignored contacts'] = 'Ne montrer que les contacts ignorés'; +$a->strings['Collapsed'] = 'Réduits'; +$a->strings['Only show collapsed contacts'] = 'N\'afficher que les contacts réduits'; +$a->strings['Archived'] = 'Archivés'; +$a->strings['Only show archived contacts'] = 'Ne montrer que les contacts archivés'; +$a->strings['Hidden'] = 'Cachés'; +$a->strings['Only show hidden contacts'] = 'Ne montrer que les contacts masqués'; +$a->strings['Organize your contact circles'] = 'Organisez vos cercles de contact'; +$a->strings['Search your contacts'] = 'Rechercher dans vos contacts'; +$a->strings['Results for: %s'] = 'Résultats pour : %s'; +$a->strings['Update'] = 'Mises à jour'; +$a->strings['Unblock'] = 'Débloquer'; +$a->strings['Unignore'] = 'Ne plus ignorer'; +$a->strings['Uncollapse'] = 'Ne plus réduire'; +$a->strings['Batch Actions'] = 'Actions multiples'; +$a->strings['Conversations started by this contact'] = 'Conversations entamées par ce contact'; +$a->strings['Posts and Comments'] = 'Publications et commentaires'; +$a->strings['Individual Posts and Replies'] = 'Publications et réponses individuelles'; +$a->strings['Posts containing media objects'] = 'Publications contenant des objets média'; +$a->strings['View all known contacts'] = 'Voir tous les contacts connus'; +$a->strings['Advanced Contact Settings'] = 'Réglages avancés du contact'; +$a->strings['Mutual Friendship'] = 'Relation réciproque'; +$a->strings['is a fan of yours'] = 'Vous suit'; +$a->strings['you are a fan of'] = 'Vous le/la suivez'; +$a->strings['Pending outgoing contact request'] = 'Demande d\'abonnement distant en attente'; +$a->strings['Pending incoming contact request'] = 'Demande d\'abonnement à votre compte en attente'; +$a->strings['Visit %s\'s profile [%s]'] = 'Visiter le profil de %s [%s]'; +$a->strings['Contact update failed.'] = 'Impossible d\'appliquer les réglages.'; +$a->strings['Return to contact editor'] = 'Retour à l\'éditeur de contact'; +$a->strings['Name'] = 'Nom'; +$a->strings['Account Nickname'] = 'Pseudo du compte'; +$a->strings['Account URL'] = 'URL du compte'; +$a->strings['Poll/Feed URL'] = 'Téléverser des photos'; +$a->strings['New photo from this URL'] = 'Nouvelle photo depuis cette URL'; +$a->strings['No known contacts.'] = 'Aucun contact connu.'; +$a->strings['No common contacts.'] = 'Aucun contact en commun.'; +$a->strings['Follower (%s)'] = [ + 0 => 'Abonné (%s)', + 1 => 'Abonnés (%s)', + 2 => 'Abonnés (%s)', +]; +$a->strings['Following (%s)'] = [ + 0 => 'Abonnement (%s)', + 1 => 'Abonnements (%s)', + 2 => 'Abonnements (%s)', +]; +$a->strings['Mutual friend (%s)'] = [ + 0 => 'Contact mutuel (%s)', + 1 => 'Contacts mutuels (%s)', + 2 => 'Contacts mutuels (%s)', +]; +$a->strings['These contacts both follow and are followed by %s.'] = 'Ces contacts sont mutuellement abonnés avec %s.'; +$a->strings['Common contact (%s)'] = [ + 0 => 'Contact commun (%s)', + 1 => 'Contacts communs (%s)', + 2 => 'Contacts communs (%s)', +]; +$a->strings['Both %s and yourself have publicly interacted with these contacts (follow, comment or likes on public posts).'] = '%s et vous-mêmes avez interagi publiquement avec ces contacts (abonnement, commentaires ou "J\'aime" sur des publications publiques)'; +$a->strings['Contact (%s)'] = [ + 0 => 'Contact (%s)', + 1 => 'Contacts (%s)', + 2 => 'Contacts (%s)', +]; +$a->strings['Access denied.'] = 'Accès refusé.'; +$a->strings['Submit Request'] = 'Envoyer la requête'; +$a->strings['You already added this contact.'] = 'Vous avez déjà ajouté ce contact.'; +$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté.'; +$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté.'; +$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Le support d\'OStatus est désactivé. Le contact ne peut pas être ajouté.'; +$a->strings['Please answer the following:'] = 'Merci de répondre à ce qui suit :'; +$a->strings['Your Identity Address:'] = 'Votre adresse d\'identité :'; +$a->strings['Profile URL'] = 'URL du Profil'; +$a->strings['Tags:'] = 'Tags :'; +$a->strings['%s knows you'] = '%s vous connaît'; +$a->strings['Add a personal note:'] = 'Ajouter une note personnelle :'; +$a->strings['Posts and Replies'] = 'Publications et réponses'; +$a->strings['The contact could not be added.'] = 'Le contact n\'a pas pu être ajouté.'; +$a->strings['Invalid request.'] = 'Requête invalide.'; +$a->strings['No keywords to match. Please add keywords to your profile.'] = 'Aucun mot-clé ne correspond. Merci d\'ajouter des mots-clés à votre profil.'; +$a->strings['Profile Match'] = 'Correpondance de profils'; +$a->strings['Failed to update contact record.'] = 'Échec de mise à jour du contact.'; +$a->strings['Contact has been unblocked'] = 'Le contact n\'est plus bloqué'; +$a->strings['Contact has been blocked'] = 'Le contact a été bloqué'; +$a->strings['Contact has been unignored'] = 'Le contact n\'est plus ignoré'; +$a->strings['Contact has been ignored'] = 'Le contact a été ignoré'; +$a->strings['Contact has been uncollapsed'] = 'Le contact n\'est plus réduit'; +$a->strings['Contact has been collapsed'] = 'Le contact a été réduit'; +$a->strings['You are mutual friends with %s'] = 'Vous êtes ami (et réciproquement) avec %s'; +$a->strings['You are sharing with %s'] = 'Vous partagez avec %s'; +$a->strings['%s is sharing with you'] = '%s partage avec vous'; +$a->strings['Private communications are not available for this contact.'] = 'Les communications privées ne sont pas disponibles pour ce contact.'; +$a->strings['This contact is on a server you ignored.'] = 'Ce contact est sur un serveur que vous ignorez.'; +$a->strings['Never'] = 'Jamais'; +$a->strings['(Update was not successful)'] = '(Échec de la mise à jour)'; +$a->strings['(Update was successful)'] = '(Mise à jour effectuée avec succès)'; +$a->strings['Suggest friends'] = 'Suggérer des abonnements'; +$a->strings['Network type: %s'] = 'Type de réseau %s'; +$a->strings['Communications lost with this contact!'] = 'Communications perdues avec ce contact !'; +$a->strings['Fetch further information for feeds'] = 'Chercher plus d\'informations pour les flux'; +$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.'] = 'Récupérer des informations comme les prévisualisations d\'images, les titres et les accroches depuis l\'élément du flux de discussion. Vous pouvez activer ceci si le flux ne contient pas beaucoup de texte. Les mots clés sont récupérés de la balise meta de l\'élément du flux de discussion et sont publiés comme tags.'; +$a->strings['Fetch information'] = 'Récupérer informations'; +$a->strings['Fetch keywords'] = 'Récupérer les mots-clés'; +$a->strings['Fetch information and keywords'] = 'Récupérer informations'; +$a->strings['No mirroring'] = 'Pas de miroir'; +$a->strings['Mirror as my own posting'] = 'Refléter les publications de ce profil comme les vôtres'; +$a->strings['Native reshare'] = 'Partage natif'; +$a->strings['Contact Information / Notes'] = 'Informations de contact / Notes'; +$a->strings['Contact Settings'] = 'Paramètres du Contact'; +$a->strings['Contact'] = 'Contact'; +$a->strings['Their personal note'] = 'Leur note personnelle'; +$a->strings['Edit contact notes'] = 'Éditer les notes des contacts'; +$a->strings['Block/Unblock contact'] = 'Bloquer/débloquer ce contact'; +$a->strings['Ignore contact'] = 'Ignorer ce contact'; +$a->strings['View conversations'] = 'Voir les conversations'; +$a->strings['Last update:'] = 'Dernière mise-à-jour :'; +$a->strings['Update public posts'] = 'Fréquence de mise à jour:'; +$a->strings['Update now'] = 'Mettre à jour'; +$a->strings['Awaiting connection acknowledge'] = 'En attente de confirmation d\'abonnement'; +$a->strings['Currently blocked'] = 'Actuellement bloqué'; +$a->strings['Currently ignored'] = 'Actuellement ignoré'; +$a->strings['Currently collapsed'] = 'Actuellement réduit'; +$a->strings['Currently archived'] = 'Actuellement archivé'; +$a->strings['Manage remote servers'] = 'Gérer les serveurs distants'; +$a->strings['Hide this contact from others'] = 'Cacher ce contact aux autres'; +$a->strings['Replies/likes to your public posts may still be visible'] = 'Les réponses et "j\'aime" à vos publications publiques peuvent être toujours visibles'; +$a->strings['Notification for new posts'] = 'Notification des nouvelles publications'; +$a->strings['Send a notification of every new post of this contact'] = 'Envoyer une notification de chaque nouveau message en provenance de ce contact'; +$a->strings['Keyword Deny List'] = 'Liste de mot-clefs interdits'; +$a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Liste de mots-clés séparés par des virgules qui ne doivent pas être converti en tags lorsque « Récupérer informations et mots-clés » est sélectionné.'; +$a->strings['Actions'] = 'Actions'; +$a->strings['Status'] = 'Statut'; +$a->strings['Mirror postings from this contact'] = 'Copier les publications de ce contact'; +$a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact.'; +$a->strings['Channel Settings'] = 'Paramètres de Chaîne'; +$a->strings['Frequency of this contact in relevant channels'] = 'Fréquence de ce contact dans les chaînes pertinentes'; +$a->strings['Depending on the type of the channel not all posts from this contact are displayed. By default, posts need to have a minimum amount of interactions (comments, likes) to show in your channels. On the other hand there can be contacts who flood the channel, so you might want to see only some of their posts. Or you don\'t want to see their content at all, but you don\'t want to block or hide the contact completely.'] = 'Selon le type de chaîne, les publications de ce contact ne seront pas toutes affichées. Par défaut, les publications ont besoins d\'avoir un minimum d\'interaction (commentaires, aimes) pour être visible dans vos chaînes. D\'un autre côté, il peut y avoir des contacts qui inondent la chaîne, vous souhaiteriez donc ne voir que certaines de ces publications. Ou vous souhaiteriez ne pas les voir du tout, sans pour autant bloquer ou masquer complètement le contact.'; +$a->strings['Default frequency'] = 'Fréquence par défaut'; +$a->strings['Posts by this contact are displayed in the "for you" channel if you interact often with this contact or if a post reached some level of interaction.'] = 'Les publications de ce contact sont affichées dans la chaîne "Pour vous" si vous interagissez souvent avec ce contact ou si une publication atteint un certain niveau d\'interaction.'; +$a->strings['Display all posts of this contact'] = 'Afficher toutes les publications de ce contact'; +$a->strings['All posts from this contact will appear on the "for you" channel'] = 'Toutes les publications de ce contact apparaîtront dans la chaîne "Pour vous".'; +$a->strings['Display only few posts'] = 'Afficher quelques publications'; +$a->strings['When a contact creates a lot of posts in a short period, this setting reduces the number of displayed posts in every channel.'] = 'Lorsqu\'un contact créé beaucoup de publications en peu de temps, ce paramètre réduit le nombre de publications affichées dans chaque chaîne.'; +$a->strings['Never display posts'] = 'Afficher aucune publication'; +$a->strings['Posts from this contact will never be displayed in any channel'] = 'Les publications de ce contact n\'apparaîtront jamais dans les chaînes'; +$a->strings['Refetch contact data'] = 'Récupérer à nouveau les données de contact'; +$a->strings['Toggle Blocked status'] = '(dés)activer l\'état "bloqué"'; +$a->strings['Toggle Ignored status'] = '(dés)activer l\'état "ignoré"'; +$a->strings['Toggle Collapsed status'] = 'Commuter le statut réduit'; +$a->strings['Revoke Follow'] = 'Révoquer le suivi'; +$a->strings['Revoke the follow from this contact'] = 'Empêcher ce contact de vous suivre '; +$a->strings['Bad Request.'] = 'Mauvaise requête.'; +$a->strings['Unknown contact.'] = 'Contact inconnu.'; +$a->strings['Contact is being deleted.'] = 'Le contact est en cours de suppression.'; +$a->strings['Follow was successfully revoked.'] = 'Le suivi a été révoqué avec succès.'; +$a->strings['Do you really want to revoke this contact\'s follow? This cannot be undone and they will have to manually follow you back again.'] = 'Voulez-vous vraiment révoquer l\'abonnement de ce contact ? Cela ne peut être annulé et il devra se réabonner à vous manuellement.'; +$a->strings['Yes'] = 'Oui'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h.'; +$a->strings['You aren\'t following this contact.'] = 'Vous ne suivez pas ce contact.'; +$a->strings['Unfollowing is currently not supported by your network.'] = 'Le désabonnement n\'est actuellement pas supporté par votre réseau.'; +$a->strings['Disconnect/Unfollow'] = 'Se déconnecter/Ne plus suivre'; +$a->strings['Contact was successfully unfollowed'] = 'Le contact n\'est maintenant plus suivi'; +$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Impossible de ne plus suivre ce contact, merci de contacter votre administrateur'; +$a->strings['No results.'] = 'Aucun résultat.'; +$a->strings['Channel not available.'] = 'Chaîne non disponible.'; +$a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'Ce fil communautaire liste toutes les conversations publiques reçues par ce serveur. Elles ne reflètent pas nécessairement les opinions personelles des utilisateurs locaux.'; +$a->strings['Community option not available.'] = 'L\'option communauté n\'est pas disponible'; +$a->strings['Not available.'] = 'Indisponible.'; +$a->strings['No such circle'] = 'Cercle inexistant'; +$a->strings['Circle: %s'] = 'Cercle : %s'; +$a->strings['Error %d (%s) while fetching the timeline.'] = 'Erreur %d (%s) lors de la récupération du flux.'; +$a->strings['Network feed not available.'] = 'Flux du réseau non disponible.'; +$a->strings['Own Contacts'] = 'Publications de vos propres contacts'; +$a->strings['Include'] = 'Inclure'; +$a->strings['Hide'] = 'Masquer'; +$a->strings['Credits'] = 'Remerciements'; +$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!'] = 'Friendica est un projet communautaire, qui ne serait pas possible sans l\'aide de beaucoup de gens. Voici une liste de ceux qui ont contribué au code ou à la traduction de Friendica. Merci à tous!'; +$a->strings['Formatted'] = 'Mis en page'; +$a->strings['Activity'] = 'Activité'; +$a->strings['Object data'] = 'Données de l\'object'; +$a->strings['Result Item'] = 'Résultat'; +$a->strings['Error'] = [ + 0 => 'Erreur', + 1 => 'Erreurs', + 2 => 'Erreurs', +]; +$a->strings['Source activity'] = 'Activité source'; +$a->strings['Source input'] = 'Saisie source'; +$a->strings['BBCode::toPlaintext'] = 'BBCode::toPlaintext'; +$a->strings['BBCode::convert (raw HTML)'] = 'BBCode::convert (code HTML)'; +$a->strings['BBCode::convert (hex)'] = 'BBCode::convert (hex)'; +$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 (HTML pur)'; +$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'] = 'Corps du message'; +$a->strings['Item Tags'] = 'Tags du messages'; +$a->strings['PageInfo::appendToBody'] = 'PageInfo::appendToBody'; +$a->strings['PageInfo::appendToBody => BBCode::convert (raw HTML)'] = 'PageInfo::appendToBody => BBCode::convert (code HTML)'; +$a->strings['PageInfo::appendToBody => BBCode::convert'] = 'PageInfo::appendToBody => BBCode::convert'; +$a->strings['Source input (Diaspora format)'] = 'Saisie source (format Diaspora)'; +$a->strings['Source input (Markdown)'] = 'Source (Markdown)'; +$a->strings['Markdown::convert (raw HTML)'] = 'Markdown::convert (code HTML)'; +$a->strings['Markdown::convert'] = 'Markdown::convert'; +$a->strings['Markdown::toBBCode'] = 'Markdown::toBBCode'; +$a->strings['Raw HTML input'] = 'Saisie code HTML'; +$a->strings['HTML Input'] = 'Code HTML'; +$a->strings['HTML Purified (raw)'] = 'HTML purifié (code)'; +$a->strings['HTML Purified (hex)'] = 'HTML purifié (hexadecimal)'; +$a->strings['HTML Purified'] = 'HTML purifié'; +$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 (code 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 (compact)'; +$a->strings['Decoded post'] = 'Publication décodée'; +$a->strings['Post array before expand entities'] = 'Tableau de la publication avant de résoudre les entités'; +$a->strings['Post converted'] = 'Publication convertie'; +$a->strings['Converted body'] = 'Corps de texte converti'; +$a->strings['Twitter addon is absent from the addon/ folder.'] = 'L\'extension Twitter est absente du dossier addon/'; +$a->strings['Babel Diagnostic'] = 'Disagnostic Babel'; +$a->strings['Source text'] = 'Texte source'; +$a->strings['BBCode'] = 'BBCode'; +$a->strings['Markdown'] = 'Markdown'; +$a->strings['HTML'] = 'HTML'; +$a->strings['Twitter Source / Tweet URL (requires API key)'] = 'Source Twitter / URL du tweet (requiert une clé d\'API)'; +$a->strings['You must be logged in to use this module'] = 'Vous devez être identifié pour accéder à cette fonctionnalité'; +$a->strings['Source URL'] = 'URL Source'; +$a->strings['Time Conversion'] = 'Conversion temporelle'; +$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica fournit ce service pour partager des évènements avec vos contacts indépendament de leur fuseau horaire.'; +$a->strings['UTC time: %s'] = 'Temps UTC : %s'; +$a->strings['Current timezone: %s'] = 'Zone de temps courante : %s'; +$a->strings['Converted localtime: %s'] = 'Temps local converti : %s'; +$a->strings['Please select your timezone:'] = 'Sélectionner votre zone :'; +$a->strings['Only logged in users are permitted to perform a probing.'] = 'Le sondage de profil est réservé aux utilisateurs identifiés.'; +$a->strings['Probe Diagnostic'] = 'Diasgnostic Sonde'; +$a->strings['Output'] = 'Sortie'; +$a->strings['Lookup address'] = 'Addresse de sondage'; +$a->strings['Webfinger Diagnostic'] = 'Diagnostic Webfinger'; +$a->strings['Lookup address:'] = 'Tester l\'adresse:'; +$a->strings['No entries (some entries may be hidden).'] = 'Aucune entrée (certaines peuvent être cachées).'; +$a->strings['Find on this site'] = 'Trouver sur ce site'; +$a->strings['Results for:'] = 'Résultats pour :'; +$a->strings['Site Directory'] = 'Annuaire local'; +$a->strings['Item was not deleted'] = 'L\'élément n\'a pas été supprimé'; +$a->strings['Item was not removed'] = 'L\'élément n\'a pas été retiré'; +$a->strings['- select -'] = '- choisir -'; +$a->strings['Suggested contact not found.'] = 'Contact suggéré non trouvé'; +$a->strings['Friend suggestion sent.'] = 'Suggestion d\'abonnement envoyée.'; +$a->strings['Suggest Friends'] = 'Suggérer des amis/contacts'; +$a->strings['Suggest a friend for %s'] = 'Suggérer un ami/contact pour %s'; +$a->strings['Installed addons/apps:'] = 'Add-ons/Applications installés :'; +$a->strings['No installed addons/apps'] = 'Aucun add-on/application n\'est installé'; +$a->strings['Read about the Terms of Service of this node.'] = 'Lire les Conditions d\'utilisation de ce nœud.'; +$a->strings['On this server the following remote servers are blocked.'] = 'Sur ce serveur, les serveurs suivants sont sur liste noire.'; +$a->strings['Reason for the block'] = 'Raison du blocage'; +$a->strings['Download this list in CSV format'] = 'Télécharger cette liste au format CSV'; +$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.'] = 'C\'est Friendica, version %s qui fonctionne à l\'emplacement web %s. La version de la base de données est %s, la version de mise à jour des publications est %s.'; +$a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Rendez-vous sur Friendi.ca pour en savoir plus sur le projet Friendica.'; +$a->strings['Bug reports and issues: please visit'] = 'Pour les rapports de bugs : rendez vous sur'; +$a->strings['the bugtracker at github'] = 'le bugtracker sur GitHub'; +$a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = 'Suggestions, souhaits, etc. - merci d\'écrire à "info" at "friendi - dot - ca'; +$a->strings['No profile'] = 'Aucun profil'; +$a->strings['Method Not Allowed.'] = 'Méthode non autorisée.'; +$a->strings['Help:'] = 'Aide :'; +$a->strings['Welcome to %s'] = 'Bienvenue sur %s'; +$a->strings['Friendica Communications Server - Setup'] = 'Serveur de média social Friendica - Installation'; +$a->strings['System check'] = 'Vérifications système'; +$a->strings['Requirement not satisfied'] = 'Exigence non remplie'; +$a->strings['Optional requirement not satisfied'] = 'Exigence facultative non remplie'; +$a->strings['OK'] = 'OK'; +$a->strings['Next'] = 'Suivant'; +$a->strings['Check again'] = 'Vérifier à nouveau'; +$a->strings['Base settings'] = 'Paramètres de base'; +$a->strings['Base path to installation'] = 'Chemin de base de l\'installation'; +$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.'] = 'Si le système ne peut pas détecter le chemin de l\'installation, entrez le bon chemin ici. Ce paramètre doit être utilisé uniquement si vous avez des accès restreints à votre système et que vous n\'avez qu\'un lien symbolique vers le répertoire web.'; +$a->strings['The Friendica system URL'] = 'L\'URL du système Friendica'; +$a->strings['Overwrite this field in case the system URL determination isn\'t right, otherwise leave it as is.'] = 'Modifiez ce champ au cas où l\'URL du système n\'est pas la bonne, sinon laissez le tel quel.'; +$a->strings['Database connection'] = 'Connexion à la base de données'; +$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données.'; +$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages.'; +$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'La base de données que vous spécifierez doit exister. Si ce n\'est pas encore le cas, merci de la créer avant de continuer.'; +$a->strings['Database Server Name'] = 'Serveur de base de données'; +$a->strings['Database Login Name'] = 'Nom d\'utilisateur de la base'; +$a->strings['Database Login Password'] = 'Mot de passe de la base'; +$a->strings['For security reasons the password must not be empty'] = 'Pour des raisons de sécurité, le mot de passe ne peut pas être vide.'; +$a->strings['Database Name'] = 'Nom de la base'; +$a->strings['Please select a default timezone for your website'] = 'Sélectionner un fuseau horaire par défaut pour votre site'; +$a->strings['Site settings'] = 'Réglages du site'; +$a->strings['Site administrator email address'] = 'Adresse de courriel de l\'administrateur du site'; +$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'Votre adresse de courriel doit correspondre à celle-ci pour pouvoir utiliser l\'interface d\'administration.'; +$a->strings['System Language:'] = 'Langue système :'; +$a->strings['Set the default language for your Friendica installation interface and to send emails.'] = 'Définit la langue par défaut pour l\'interface de votre instance Friendica et les courriels envoyés.'; +$a->strings['Your Friendica site database has been installed.'] = 'La base de données de votre site Friendica a bien été installée.'; +$a->strings['Installation finished'] = 'Installation terminée'; +$a->strings['

    What next

    '] = '

    Ensuite

    '; +$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the worker.'] = 'IMPORTANT: vous devrez ajouter [manuellement] une tâche planifiée pour le \'worker\'.'; +$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.'] = 'Rendez-vous sur la page d\'inscription de votre nouveau nœud Friendica et inscrivez vous en tant que nouvel utilisateur. Rappelez-vous de bien utiliser la même adresse de courriel que celle que vous avez utilisée en tant qu\'adresse d\'administrateur. Cela vous permettra d\'accéder au panel d\'administration du site.'; +$a->strings['Total invitation limit exceeded.'] = 'La limite d\'invitation totale est éxédée.'; +$a->strings['%s : Not a valid email address.'] = '%s : Adresse de courriel invalide.'; +$a->strings['Please join us on Friendica'] = 'Rejoignez-nous sur Friendica'; +$a->strings['Invitation limit exceeded. Please contact your site administrator.'] = 'Limite d\'invitation exédée. Veuillez contacter l\'administrateur de votre site.'; +$a->strings['%s : Message delivery failed.'] = '%s : L\'envoi du message a échoué.'; +$a->strings['%d message sent.'] = [ + 0 => '%d message envoyé.', + 1 => '%d messages envoyés.', + 2 => '%d messages envoyés.', +]; +$a->strings['You have no more invitations available'] = 'Vous n\'avez plus d\'invitations disponibles'; +$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.'] = 'Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d\'autres sites peuvent s\'interconnecter, ainsi qu\'avec les membres de plusieurs autres réseaux sociaux.'; +$a->strings['To accept this invitation, please visit and register at %s or any other public Friendica website.'] = 'Pour accepter cette invitation, merci d\'aller vous inscrire sur %s, ou n\'importe quel autre site Friendica public.'; +$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.'] = 'Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d\'autres sites Friendica que vous pourriez rejoindre.'; +$a->strings['Our apologies. This system is not currently configured to connect with other public sites or invite members.'] = 'Toutes nos excuses. Ce système n\'est pas configuré pour se connecter à d\'autres sites publics ou inviter de nouveaux membres.'; +$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.'] = 'Les instances Friendica sont interconnectées pour créer un immense réseau social possédé et contrôlé par ses membres, et qui respecte leur vie privée. Ils peuvent aussi s\'interconnecter avec d\'autres réseaux sociaux traditionnels.'; +$a->strings['To accept this invitation, please visit and register at %s.'] = 'Pour accepter cette invitation, rendez-vous sur %s et inscrivez-vous.'; +$a->strings['Send invitations'] = 'Envoyer des invitations'; +$a->strings['Enter email addresses, one per line:'] = 'Entrez les adresses de courriel, une par ligne :'; +$a->strings['You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.'] = 'Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social.'; +$a->strings['You will need to supply this invitation code: $invite_code'] = 'Vous devrez fournir ce code d\'invitation : $invite_code'; +$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Une fois inscrit, connectez-vous à la page de mon profil sur :'; +$a->strings['For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca'] = 'Pour plus d\'information sur Friendica et les valeurs que nous défendons, veuillez consulter http://friendi.ca'; +$a->strings['Please enter a post body.'] = 'Veuillez saisir un corps de texte.'; +$a->strings['This feature is only available with the frio theme.'] = 'Cette page ne fonctionne qu\'avec le thème "frio" activé.'; +$a->strings['Compose new personal note'] = 'Composer une nouvelle note personnelle'; +$a->strings['Compose new post'] = 'Composer une nouvelle publication'; +$a->strings['Visibility'] = 'Visibilité'; +$a->strings['Clear the location'] = 'Effacer la localisation'; +$a->strings['Location services are unavailable on your device'] = 'Les services de localisation ne sont pas disponibles sur votre appareil'; +$a->strings['Location services are disabled. Please check the website\'s permissions on your device'] = 'Les services de localisation sont désactivés pour ce site. Veuillez vérifier les permissions de ce site sur votre appareil/navigateur.'; +$a->strings['You can make this page always open when you use the New Post button in the Theme Customization settings.'] = 'Vous pouvez faire en sorte que cette page s\'ouvre systématiquement quand vous utilisez le bouton "Nouvelle publication" dans les paramètres de personnalisation des thèmes.'; +$a->strings['The feed for this item is unavailable.'] = 'Le flux pour cet objet n\'est pas disponible.'; +$a->strings['Unable to follow this item.'] = 'Erreur lors de l\'abonnement à la conversation.'; +$a->strings['System down for maintenance'] = 'Système indisponible pour cause de maintenance'; +$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.'] = 'Ce serveur Friendica est actuellement en maintenance, soit automatiquement pendant la mise à jour ou manuellement par un administrateur. Cet état devrait être temporaire, merci de réessayer dans quelques minutes.'; +$a->strings['A Decentralized Social Network'] = 'Un Réseau Social Décentralisé '; +$a->strings['You need to be logged in to access this page.'] = 'Vous devez être connecté pour accéder à cette page.'; +$a->strings['Files'] = 'Fichiers'; +$a->strings['Upload'] = 'Téléverser'; +$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise'; +$a->strings['Or - did you try to upload an empty file?'] = 'Ou — auriez-vous essayé de télécharger un fichier vide ?'; +$a->strings['File exceeds size limit of %s'] = 'La taille du fichier dépasse la limite de %s'; +$a->strings['File upload failed.'] = 'Le téléversement a échoué.'; +$a->strings['Unable to process image.'] = 'Impossible de traiter l\'image.'; +$a->strings['Image upload failed.'] = 'Le téléversement de l\'image a échoué.'; $a->strings['List of all users'] = 'Liste de tous les utilisateurs'; $a->strings['Active'] = 'Actif'; $a->strings['List of active accounts'] = 'Liste des comptes actifs'; -$a->strings['Pending'] = 'En attente'; $a->strings['List of pending registrations'] = 'Liste des inscriptions en attente'; -$a->strings['Blocked'] = 'Bloqués'; $a->strings['List of blocked users'] = 'Liste des utilisateurs bloqués'; $a->strings['Deleted'] = 'Supprimé'; $a->strings['List of pending user deletions'] = 'Liste des utilisateurs en attente de suppression'; $a->strings['Normal Account Page'] = 'Compte normal'; $a->strings['Soapbox Page'] = 'Compte "boîte à savon"'; -$a->strings['Public Forum'] = 'Forum public'; +$a->strings['Public Group'] = 'Groupe Public'; $a->strings['Automatic Friend Page'] = 'Abonnement réciproque'; -$a->strings['Private Forum'] = 'Forum Privé'; +$a->strings['Private Group'] = 'Groupe Privé'; $a->strings['Personal Page'] = 'Page personnelle'; $a->strings['Organisation Page'] = 'Page Associative'; $a->strings['News Page'] = 'Page d\'informations'; -$a->strings['Community Forum'] = 'Forum Communautaire'; +$a->strings['Community Group'] = 'Groupe Communautaire'; $a->strings['Relay'] = 'Relai'; $a->strings['You can\'t block a local contact, please block the user instead'] = 'Vous ne pouvez pas bloquer un contact local. Merci de bloquer l\'utilisateur à la place'; $a->strings['%s contact unblocked'] = [ @@ -1214,7 +1991,6 @@ $a->strings['This page allows you to prevent any message from a remote contact t $a->strings['Block Remote Contact'] = 'Bloquer le profile distant'; $a->strings['select all'] = 'tout sélectionner'; $a->strings['select none'] = 'Sélectionner tous'; -$a->strings['Unblock'] = 'Débloquer'; $a->strings['No remote contact is blocked from this node.'] = 'Aucun profil distant n\'est bloqué'; $a->strings['Blocked Remote Contacts'] = 'Profils distants bloqués'; $a->strings['Block New Remote Contact'] = 'Bloquer un nouveau profil distant'; @@ -1293,7 +2069,6 @@ $a->strings['Imports patterns from the file that weren\'t already existing in th $a->strings['Replace'] = 'Remplacer'; $a->strings['Replaces the current blocklist by the imported patterns.'] = 'Remplace la liste de blocage locale par les motifs importés.'; $a->strings['Blocked server domain pattern'] = 'Filtre de domaine bloqué'; -$a->strings['Reason for the block'] = 'Raison du blocage'; $a->strings['Delete server domain pattern'] = 'Supprimer ce filtre de domaine bloqué'; $a->strings['Check to delete this entry from the blocklist'] = 'Cochez la case pour retirer cette entrée de la liste noire'; $a->strings['Server Domain Pattern Blocklist'] = 'Liste des filtres de domaines bloqués'; @@ -1305,74 +2080,12 @@ $a->strings['Save changes to the blocklist'] = 'Sauvegarder la liste noire'; $a->strings['Current Entries in the Blocklist'] = 'Entrées de la liste noire'; $a->strings['Delete entry from the blocklist'] = 'Supprimer l\'entrée de la liste de blocage'; $a->strings['Delete entry from the blocklist?'] = 'Supprimer l\'entrée de la liste de blocage ?'; -$a->strings['Update has been marked successful'] = 'Mise-à-jour validée comme \'réussie\''; -$a->strings['Database structure update %s was successfully applied.'] = 'La structure de base de données pour la mise à jour %s a été appliquée avec succès.'; -$a->strings['Executing of database structure update %s failed with error: %s'] = 'L\'exécution de la mise à jour %s pour la structure de base de données a échoué avec l\'erreur: %s'; -$a->strings['Executing %s failed with error: %s'] = 'L\'exécution %s a échoué avec l\'erreur: %s'; -$a->strings['Update %s was successfully applied.'] = 'Mise-à-jour %s appliquée avec succès.'; -$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'La mise-à-jour %s n\'a pas retourné de détails. Impossible de savoir si elle a réussi.'; -$a->strings['There was no additional update function %s that needed to be called.'] = 'Il n\'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé'; -$a->strings['No failed updates.'] = 'Pas de mises-à-jour échouées.'; -$a->strings['Check database structure'] = 'Vérifier la structure de la base de données'; -$a->strings['Failed Updates'] = 'Mises-à-jour échouées'; -$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Ceci n\'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails.'; -$a->strings['Mark success (if update was manually applied)'] = 'Marquer comme \'réussie\' (dans le cas d\'une mise-à-jour manuelle)'; -$a->strings['Attempt to execute this update step automatically'] = 'Tenter d\'éxecuter cette étape automatiquement'; -$a->strings['Lock feature %s'] = 'Verouiller la fonctionnalité %s'; -$a->strings['Manage Additional Features'] = 'Gérer les fonctionnalités avancées'; -$a->strings['Other'] = 'Autre'; -$a->strings['unknown'] = 'inconnu'; -$a->strings['%2$s total system'] = [ - 0 => '%2$s système au total', - 1 => '%2$s systèmes au total', - 2 => '%2$s système au total', -]; -$a->strings['%2$s active user last month'] = [ - 0 => '%2$s utilisateur actif le mois dernier', - 1 => '%2$s utilisateurs actifs le mois dernier', - 2 => '%2$s utilisateur actif le mois dernier', -]; -$a->strings['%2$s active user last six months'] = [ - 0 => '%2$s utilisateur actif ces six derniers mois', - 1 => '%2$s utilisateurs actifs ces six derniers mois', - 2 => '%2$s utilisateur actif ces six derniers mois', -]; -$a->strings['%2$s registered user'] = [ - 0 => '%2$s utilisateur enregistré', - 1 => '%2$s utilisateurs enregistrés', - 2 => '%2$s utilisateur enregistré', -]; -$a->strings['%2$s locally created post or comment'] = [ - 0 => '%2$s publication ou commentaire créé localement', - 1 => '%2$s publications et commentaires créés localement', - 2 => '%2$s publication ou commentaire créé localement', -]; -$a->strings['%2$s post per user'] = [ - 0 => '%2$s publication par utilisateur', - 1 => '%2$s publications par utilisateur', - 2 => '%2$s publication par utilisateur', -]; -$a->strings['%2$s user per system'] = [ - 0 => '%2$s utilisateur par système', - 1 => '%2$s utilisateurs par système', - 2 => '%2$s utilisateur par système', -]; -$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.'] = 'Cette page montre quelques statistiques de la partie connue du réseau social fédéré dont votre instance Friendica fait partie. Ces chiffres sont partiels et ne reflètent que la portion du réseau dont votre instance a connaissance.'; -$a->strings['Federation Statistics'] = 'Statistiques Federation'; -$a->strings['Currently this node is aware of %2$s node (%3$s active users last month, %4$s active users last six months, %5$s registered users in total) from the following platforms:'] = [ - 0 => 'Actuellement, ce nœud est en relation avec %2$s autre nœud (%3$s utilisateurs actifs le mois dernier, %4$s ces six derniers mois, %5$s utilisateurs enregistrés au total) issus des plateformes suivantes :', - 1 => 'Actuellement, ce nœud est en relation avec %2$s autres nœuds (%3$s utilisateurs actifs le mois dernier, %4$s ces six derniers mois, %5$s utilisateurs enregistrés au total) issus des plateformes suivantes :', - 2 => 'Actuellement, ce nœud est en relation avec %2$s autre nœud (%3$s utilisateurs actifs le mois dernier, %4$s ces six derniers mois, %5$s utilisateurs enregistrés au total) issus des plateformes suivantes :', -]; $a->strings['Item marked for deletion.'] = 'L\'élément va être supprimé.'; -$a->strings['Delete Item'] = 'Supprimer un élément'; $a->strings['Delete this Item'] = 'Supprimer l\'élément'; $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.'] = 'Sur cette page, vous pouvez supprimer un élément de votre noeud. Si cet élément est le premier post d\'un fil de discussion, le fil de discussion entier sera supprimé.'; $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.'] = 'Vous devez connaître le GUID de l\'élément. Vous pouvez le trouver en sélectionnant l\'élément puis en lisant l\'URL. La dernière partie de l\'URL est le GUID. Exemple: http://example.com/display/123456 a pour GUID: 123456.'; $a->strings['GUID'] = 'GUID'; $a->strings['The GUID of the item you want to delete.'] = 'GUID de l\'élément à supprimer.'; -$a->strings['Item Source'] = 'Source de la publication'; -$a->strings['Item Guid'] = 'GUID du contenu'; $a->strings['Item Id'] = 'Id de la publication'; $a->strings['Item URI'] = 'URI de la publication'; $a->strings['Terms'] = 'Termes'; @@ -1380,299 +2093,70 @@ $a->strings['Tag'] = 'Tag'; $a->strings['Type'] = 'Type'; $a->strings['Term'] = 'Terme'; $a->strings['URL'] = 'URL'; -$a->strings['Mention'] = 'Mention'; $a->strings['Implicit Mention'] = 'Mention implicite'; -$a->strings['The logfile \'%s\' is not writable. No logging possible'] = 'Le fichier journal \'%s\' n\'est pas accessible en écriture. Pas de journalisation possible'; -$a->strings['PHP log currently enabled.'] = 'Log PHP actuellement activé.'; -$a->strings['PHP log currently disabled.'] = 'Log PHP actuellement desactivé.'; -$a->strings['Logs'] = 'Journaux'; -$a->strings['Clear'] = 'Effacer'; -$a->strings['Enable Debugging'] = 'Activer le déboggage'; -$a->strings['Log file'] = 'Fichier de journaux'; -$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica.'; -$a->strings['Log level'] = 'Niveau de journalisaton'; -$a->strings['PHP logging'] = 'Log PHP'; -$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.'] = 'Pour activer temporairement la journalisation de PHP vous pouvez insérez les lignes suivantes au début du fichier index.php dans votre répertoire Friendica. The nom de fichier défini dans la ligne \'error_log\' est relatif au répertoire d\'installation de Friendica et le serveur web doit avoir le droit d\'écriture sur ce fichier. Les lignes log_errors et display_errors prennent les valeurs 0 et 1 respectivement pour les activer ou désactiver.'; -$a->strings['Error trying to open %1$s log file.
    Check to see if file %1$s exist and is readable.'] = 'Erreur lors de l\'ouverture du fichier journal %1$s.
    Vérifiez si le fichier %1$s existe et est lisible.'; -$a->strings['Couldn\'t open %1$s log file.
    Check to see if file %1$s is readable.'] = 'Impossible d\'ouvrir le fichier journal %1$s .
    Vérifiez si le fichier %1$s est lisible.'; -$a->strings['View Logs'] = 'Voir les logs'; -$a->strings['Search in logs'] = 'Rechercher dans les fichiers journaux'; -$a->strings['Show all'] = 'Tout afficher'; -$a->strings['Date'] = 'Date'; -$a->strings['Level'] = 'Niveau'; -$a->strings['Context'] = 'Contexte'; -$a->strings['ALL'] = 'TOUS'; -$a->strings['View details'] = 'Voir les détails'; -$a->strings['Click to view details'] = 'Cliquer pour voir les détails'; -$a->strings['Data'] = 'Données'; -$a->strings['Source'] = 'Source'; -$a->strings['File'] = 'Fichier'; -$a->strings['Line'] = 'Ligne'; -$a->strings['Function'] = 'Fonction'; -$a->strings['UID'] = 'UID'; -$a->strings['Process ID'] = 'ID de processus'; -$a->strings['Close'] = 'Fermer'; -$a->strings['Inspect Deferred Worker Queue'] = 'Détail des tâches de fond reportées'; -$a->strings['This page lists the deferred worker jobs. This are jobs that couldn\'t be executed at the first time.'] = 'Cette page détaille les tâches de fond reportées après avoir échoué une première fois.'; -$a->strings['Inspect Worker Queue'] = 'Détail des tâches de fond en attente'; -$a->strings['This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you\'ve set up during install.'] = 'Cette page détaille les tâches de fond en attente. Elles seront traitées lors de la prochaine exécution de la tâche planifiée que vous avez définie lors de l\'installation.'; -$a->strings['ID'] = 'ID'; -$a->strings['Command'] = 'Commande'; -$a->strings['Job Parameters'] = 'Paramètres de la tâche'; -$a->strings['Priority'] = 'Priorité'; -$a->strings['No special theme for mobile devices'] = 'Pas de thème particulier pour les terminaux mobiles'; -$a->strings['%s - (Experimental)'] = '%s- (expérimental)'; -$a->strings['No community page'] = 'Aucune page de communauté'; -$a->strings['No community page for visitors'] = 'Aucune page communautaire pour les visiteurs'; -$a->strings['Public postings from users of this site'] = 'Publications publiques des utilisateurs de ce site'; -$a->strings['Public postings from the federated network'] = 'Publications publiques du réseau fédéré'; -$a->strings['Public postings from local users and the federated network'] = 'Publications publiques des utilisateurs du site et du réseau fédéré'; -$a->strings['Multi user instance'] = 'Instance multi-utilisateurs'; -$a->strings['Closed'] = 'Fermé'; -$a->strings['Requires approval'] = 'Demande une apptrobation'; -$a->strings['Open'] = 'Ouvert'; -$a->strings['No SSL policy, links will track page SSL state'] = 'Pas de politique SSL, le liens conserveront l\'état SSL de la page'; -$a->strings['Force all links to use SSL'] = 'Forcer tous les liens à utiliser SSL'; -$a->strings['Self-signed certificate, use SSL for local links only (discouraged)'] = 'Certificat auto-signé, n\'utiliser SSL que pour les liens locaux (non recommandé)'; -$a->strings['Don\'t check'] = 'Ne pas rechercher'; -$a->strings['check the stable version'] = 'Rechercher les versions stables'; -$a->strings['check the development version'] = 'Rechercher les versions de développement'; -$a->strings['none'] = 'aucun'; -$a->strings['Local contacts'] = 'Contacts locaux'; -$a->strings['Interactors'] = 'Interagisseurs'; -$a->strings['Site'] = 'Site'; -$a->strings['General Information'] = 'Information générale'; -$a->strings['Republish users to directory'] = 'Republier les utilisateurs sur le répertoire'; -$a->strings['Registration'] = 'Inscription'; -$a->strings['File upload'] = 'Téléversement de fichier'; -$a->strings['Policies'] = 'Politiques'; -$a->strings['Auto Discovered Contact Directory'] = 'Répertoire de Contacts Découverts Automatiquement'; -$a->strings['Performance'] = 'Performance'; -$a->strings['Worker'] = 'Worker'; -$a->strings['Message Relay'] = 'Relai de publication'; -$a->strings['Use the command "console relay" in the command line to add or remove relays.'] = 'Utilisez la commande "console relay" en ligne de commande pour ajouter ou retirer des relais.'; -$a->strings['The system is not subscribed to any relays at the moment.'] = 'Ce serveur n\'est pas abonné à un relai pour le moment.'; -$a->strings['The system is currently subscribed to the following relays:'] = 'Ce serveur est actuellement abonné aux relais suivants:'; -$a->strings['Relocate Node'] = 'Déplacer le nœud'; -$a->strings['Relocating your node enables you to change the DNS domain of this node and keep all the existing users and posts. This process takes a while and can only be started from the relocate console command like this:'] = 'Déplacer votre nœud vous permet de changer le domaine DNS de celui-ci et de conserver tous les utilisateurs existants ainsi que les publications. Ce processus prend un certain temps et ne peut être lancé que depuis la ligne de commande relocate de la façon suivante :'; -$a->strings['(Friendica directory)# bin/console relocate https://newdomain.com'] = '(Friendica directory)# bin/console relocate https://nouveaudomaine.fr'; -$a->strings['Site name'] = 'Nom du site'; -$a->strings['Sender Email'] = 'Courriel de l\'émetteur'; -$a->strings['The email address your server shall use to send notification emails from.'] = 'L\'adresse courriel à partir de laquelle votre serveur enverra des courriels.'; -$a->strings['Name of the system actor'] = 'Nom du compte système'; -$a->strings['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.'] = 'Nom du compte interne utilisé pour effectuer les requêtes ActivityPub. Ce nom doit être inutilisé actuellement. Une fois défini, ce nom ne peut pas être changé.'; -$a->strings['Banner/Logo'] = 'Bannière/Logo'; -$a->strings['Email Banner/Logo'] = 'Bannière/Logo d\'email'; -$a->strings['Shortcut icon'] = 'Icône de raccourci'; -$a->strings['Link to an icon that will be used for browsers.'] = 'Lien vers une icône qui sera utilisée pour les navigateurs.'; -$a->strings['Touch icon'] = 'Icône pour systèmes tactiles'; -$a->strings['Link to an icon that will be used for tablets and mobiles.'] = 'Lien vers une icône qui sera utilisée pour les tablettes et les mobiles.'; -$a->strings['Additional Info'] = 'Informations supplémentaires'; -$a->strings['For public servers: you can add additional information here that will be listed at %s/servers.'] = 'Description publique destinée au répertoire global de sites Friendica.'; -$a->strings['System language'] = 'Langue du système'; -$a->strings['System theme'] = 'Thème du système'; -$a->strings['Default system theme - may be over-ridden by user profiles - Change default theme settings'] = 'Thème système par défaut - peut être modifié par profil utilisateur - Changer les paramètres de thème par défaut'; -$a->strings['Mobile system theme'] = 'Thème mobile'; -$a->strings['Theme for mobile devices'] = 'Thème pour les terminaux mobiles'; -$a->strings['SSL link policy'] = 'Politique SSL pour les liens'; -$a->strings['Determines whether generated links should be forced to use SSL'] = 'Détermine si les liens générés doivent forcer l\'utilisation de SSL'; -$a->strings['Force SSL'] = 'SSL obligatoire'; -$a->strings['Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'] = 'Redirige toutes les requêtes en clair vers des requêtes SSL. Attention : sur certains systèmes cela peut conduire à des boucles de redirection infinies.'; -$a->strings['Show help entry from navigation menu'] = 'Montrer l\'aide dans le menu de navigation'; -$a->strings['Displays the menu entry for the Help pages from the navigation menu. It is always accessible by calling /help directly.'] = 'Montre l\'Aide dans le menu de navigation. L\'aide reste accessible en naviguant vers /help directement.'; -$a->strings['Single user instance'] = 'Instance mono-utilisateur'; -$a->strings['Make this instance multi-user or single-user for the named user'] = 'Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l\'utilisateur.'; -$a->strings['Maximum image size'] = 'Taille maximale des images'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'Taille maximale des images envoyées (en octets). 0 par défaut, c\'est à dire "aucune limite".'; -$a->strings['Maximum image length'] = 'Longueur maximale des images'; -$a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Longueur maximale en pixels du plus long côté des images téléversées. La valeur par défaut est -1 : absence de limite.'; -$a->strings['JPEG image quality'] = 'Qualité JPEG des images'; -$a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = 'Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale.'; -$a->strings['Register policy'] = 'Politique d\'inscription'; -$a->strings['Maximum Daily Registrations'] = 'Inscriptions maximum par jour'; -$a->strings['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.'] = 'Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d\'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n\'a aucun effet.'; -$a->strings['Register text'] = 'Texte d\'inscription'; -$a->strings['Will be displayed prominently on the registration page. You can use BBCode here.'] = 'Ce texte est affiché sur la page d\'inscription. Les BBCodes sont autorisés.'; -$a->strings['Forbidden Nicknames'] = 'Identifiants réservés'; -$a->strings['Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142.'] = 'Liste d\'identifiants réservés séparés par des virgules. Ces identifiants ne peuvent pas être utilisés pour s\'enregistrer. La liste de base provient de la RFC 2142.'; -$a->strings['Accounts abandoned after x days'] = 'Les comptes sont abandonnés après x jours'; -$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = 'Pour ne pas gaspiller les ressources système, on cesse d\'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction.'; -$a->strings['Allowed friend domains'] = 'Domaines autorisés'; -$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les \'*\' sont acceptés. Laissez vide pour autoriser tous les domaines'; -$a->strings['Allowed email domains'] = 'Domaines courriel autorisés'; -$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Liste de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s\'inscrire sur ce site. Les \'*\' sont acceptées. Laissez vide pour autoriser tous les domaines'; -$a->strings['No OEmbed rich content'] = 'Désactiver le texte riche avec OEmbed'; -$a->strings['Don\'t show the rich content (e.g. embedded PDF), except from the domains listed below.'] = 'Evite le contenu riche avec OEmbed (comme un document PDF incrusté), sauf provenant des domaines autorisés listés ci-après.'; -$a->strings['Trusted third-party domains'] = 'Domaines tierce-partie de confiance'; -$a->strings['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.'] = 'Liste séparée par des virgules de domaines dont le contenu est autorisé à être intégré dans les publications comme avec OEmbed. Tous les sous-domaines des domains mentionnés sont autorisés également.'; -$a->strings['Block public'] = 'Interdire la publication globale'; -$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques.'; -$a->strings['Force publish'] = 'Forcer la publication globale'; -$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Cocher pour publier obligatoirement tous les profils locaux dans l\'annuaire du site.'; -$a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Activer cette option peut potentiellement enfreindre les lois sur la protection de la vie privée comme le RGPD.'; -$a->strings['Global directory URL'] = 'URL de l\'annuaire global'; -$a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'URL de l\'annuaire global. Si ce champ n\'est pas défini, l\'annuaire global sera complètement indisponible pour l\'application.'; -$a->strings['Private posts by default for new users'] = 'Publications privées par défaut pour les nouveaux utilisateurs'; -$a->strings['Set default post permissions for all new members to the default privacy group rather than public.'] = 'Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde.'; -$a->strings['Don\'t include post content in email notifications'] = 'Ne pas inclure le contenu posté dans l\'e-mail de notification'; -$a->strings['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.'] = 'Ne pas inclure le contenu de publication/commentaire/message privé/etc dans l\'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité.'; -$a->strings['Disallow public access to addons listed in the apps menu.'] = 'Interdire l’accès public pour les greffons listées dans le menu apps.'; -$a->strings['Checking this box will restrict addons listed in the apps menu to members only.'] = 'Cocher cette case restreint la liste des greffons dans le menu des applications seulement aux membres.'; -$a->strings['Don\'t embed private images in posts'] = 'Ne pas miniaturiser les images privées dans les publications'; -$a->strings['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.'] = 'Ne remplacez pas les images privées hébergées localement dans les publications avec une image attaché en copie, car cela signifie que le contact qui reçoit les publications contenant ces photos privées devra s’authentifier pour charger chaque image, ce qui peut prendre du temps.'; -$a->strings['Explicit Content'] = 'Contenu adulte'; -$a->strings['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.'] = 'Activez cette option si votre site est principalement utilisé pour publier du contenu adulte. Cette information est publique et peut être utilisée pour filtrer votre site dans le répertoire de site global. Elle est également affichée sur la page d\'inscription.'; -$a->strings['Proxify external content'] = 'Faire transiter le contenu externe par un proxy'; -$a->strings['Route external content via the proxy functionality. This is used for example for some OEmbed accesses and in some other rare cases.'] = 'Dirige le contenu externe par la fonctionnalité proxy. Cela est utilisé par exemple pour certains accès OEmbed et dans certains autres cas rares.'; -$a->strings['Cache contact avatars'] = 'Mettre en cache les avatars des contacts'; -$a->strings['Locally store the avatar pictures of the contacts. This uses a lot of storage space but it increases the performance.'] = 'Stocker localement les images d\'avatar des contacts. Cela utilise beaucoup d\'espace disque mais améliore les performances.'; -$a->strings['Allow Users to set remote_self'] = 'Autoriser les utilisateurs à définir remote_self'; -$a->strings['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.'] = 'Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d\'un contact dans le flux d\'activités des utilisateurs.'; -$a->strings['Enable multiple registrations'] = 'Autoriser les comptes multiples'; -$a->strings['Enable users to register additional accounts for use as pages.'] = 'Permet aux utilisateurs d\'enregistrer des comptes supplémentaires pour être utilisés comme pages.'; -$a->strings['Enable OpenID'] = 'Activer OpenID'; -$a->strings['Enable OpenID support for registration and logins.'] = 'Permet l\'utilisation d\'OpenID pour l\'enregistrement de compte et l\'identification.'; -$a->strings['Enable Fullname check'] = 'Forcer l\'utilisation de noms complets'; -$a->strings['Enable check to only allow users to register with a space between the first name and the last name in their full name.'] = 'Oblige les utilisateurs à include au moins un espace dans leur nom d\'usage comme entre un prénom et un nom de famille.'; -$a->strings['Community pages for visitors'] = 'Affichage de la page communauté pour les utilisateurs anonymes'; -$a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = 'Quelles pages communauté sont disponibles pour les utilisateurs anonymes.'; -$a->strings['Posts per user on community page'] = 'Nombre de publications par utilisateur sur la page de la communauté (n\'est pas valide pour '; -$a->strings['The maximum number of posts per user on the community page. (Not valid for "Global Community")'] = 'Le nombre maximum de publications par auteur par page dans le flux communautaire local.'; -$a->strings['Enable Mail support'] = 'Activer la prise en charge e-mail'; -$a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'Permet de se connecter à un compte IMAP et de répondre directement aux e-mails via Friendica.'; -$a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'La prise en charge e-mail requiert le module PHP IMAP pour être activée.'; -$a->strings['Enable OStatus support'] = 'Activer la prise en charge d\'OStatus'; -$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'Permet la communication avec des comptes distants via OStatus (StatusNet, GNU Social, etc...). Toutes les publications OStatus sont publiques.'; -$a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Le support de Diaspora ne peut pas être activé parce que Friendica a été installé dans un sous-répertoire.'; -$a->strings['Enable Diaspora support'] = 'Activer le support de Diaspora'; -$a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'Permet la communication avec des comptes distants via Diaspora. Ce protocole est principalement utilisé par la plate-forme Diaspora.'; -$a->strings['Verify SSL'] = 'Vérifier SSL'; -$a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = 'Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d\'un certificat auto-signé.'; -$a->strings['Proxy user'] = 'Utilisateur du proxy'; -$a->strings['User name for the proxy server.'] = 'Nom d\'utilisateur pour le serveur proxy'; -$a->strings['Proxy URL'] = 'URL du proxy'; -$a->strings['If you want to use a proxy server that Friendica should use to connect to the network, put the URL of the proxy here.'] = 'Si vous souhaitez utiliser un serveur proxy que Friendica devra employer pour se connecter au réseau, indiquez l\'adresse du proxy ici.'; -$a->strings['Network timeout'] = 'Dépassement du délai d\'attente du réseau'; -$a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Valeur en secondes. Mettre à 0 pour \'illimité\' (pas recommandé).'; -$a->strings['Maximum Load Average'] = 'Plafond de la charge moyenne'; -$a->strings['Maximum system load before delivery and poll processes are deferred - default %d.'] = 'La charge système maximal avant que les processus livraisons et de sondage de profils distants soient reportées. Défaut : %d.'; -$a->strings['Minimal Memory'] = 'Mémoire minimum'; -$a->strings['Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).'] = 'Mémoire libre minimale pour les tâches de fond (en Mo). Requiert l\'accès à /proc/meminfo. La valeur par défaut est 0 (désactivé).'; -$a->strings['Periodically optimize tables'] = 'Optimizer les tables régulièrement'; -$a->strings['Periodically optimize tables like the cache and the workerqueue'] = 'Optimize régulièrement certaines tables de base de données très utilisées comme cache, locks, session, ou workerqueue.'; -$a->strings['Discover followers/followings from contacts'] = 'Découvrir la liste de contacts des contacts'; -$a->strings['If enabled, contacts are checked for their followers and following contacts.'] = 'Si activé, ce serveur collecte la liste d\'abonnés et d\'abonnements des contacts suivants.'; -$a->strings['None - deactivated'] = 'Aucun - désactivé'; -$a->strings['Local contacts - contacts of our local contacts are discovered for their followers/followings.'] = 'Contacts locaux : Les contacts des utilisateurs de ce serveur'; -$a->strings['Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings.'] = 'Interagisseurs : Les contacts des utilisateurs de ce serveur et les contacts qui ont intéragit avec les conversations dont ce serveur a connaissance.'; -$a->strings['Synchronize the contacts with the directory server'] = 'Synchroniser les contacts avec l\'annuaire distant'; -$a->strings['if enabled, the system will check periodically for new contacts on the defined directory server.'] = 'Active l\'ajout de nouveaux contacts depuis l\'annuaire distant choisi.'; -$a->strings['Days between requery'] = 'Nombre de jours entre les requêtes'; -$a->strings['Number of days after which a server is requeried for his contacts.'] = 'Nombre de jours avant qu\'une requête de contacts soient envoyée à nouveau à un serveur.'; -$a->strings['Discover contacts from other servers'] = 'Découvrir des contacts des autres serveurs'; -$a->strings['Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers.'] = 'Récupère périodiquement la liste des contacts connus par les serveurs distants. Concerne les serveurs Friendica, Mastodon et Hubzilla seulement.'; -$a->strings['Search the local directory'] = 'Chercher dans le répertoire local'; -$a->strings['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.'] = 'Cherche dans le répertoire local au lieu du répertoire local. Quand une recherche locale est effectuée, la même recherche est effectuée dans le répertoire global en tâche de fond. Cela améliore les résultats de la recherche si elle est réitérée.'; -$a->strings['Publish server information'] = 'Publier les informations du serveur'; -$a->strings['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.'] = 'Active la publication de données générales sur ce serveur et son utilisation. Contient entre autres le nom et la version du serveur, le nombre d\'utilisateurs avec un profil public, le nombre de publications et la liste des connecteurs activés. Voir the-federation.info pour les détails.'; -$a->strings['Check upstream version'] = 'Mises à jour'; -$a->strings['Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview.'] = 'Permet de vérifier la présence de nouvelles versions de Friendica sur github. Si une nouvelle version est disponible, vous recevrez une notification dans l\'interface d\'administration.'; -$a->strings['Suppress Tags'] = 'Masquer les tags'; -$a->strings['Suppress showing a list of hashtags at the end of the posting.'] = 'Ne pas afficher la liste des hashtags à la fin d’un message.'; -$a->strings['Clean database'] = 'Nettoyer la base de données'; -$a->strings['Remove old remote items, orphaned database records and old content from some other helper tables.'] = 'Supprime les conversations distantes anciennes, les enregistrements orphelins et le contenu obsolète de certaines tables de débogage.'; -$a->strings['Lifespan of remote items'] = 'Durée de vie des conversations distantes'; -$a->strings['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.'] = 'Si le nettoyage de la base de donnée est actif, cette valeur représente le délai en jours après lequel les conversations distantes sont supprimées. Les conversations démarrées par un utilisateur local, étoilées ou archivées sont toujours conservées. 0 pour désactiver.'; -$a->strings['Lifespan of unclaimed items'] = 'Durée de vie des conversations relayées'; -$a->strings['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.'] = 'Si le nettoyage de la base de donnée est actif, cette valeur représente le délai en jours après lequel les conversations relayées qui n\'ont pas reçu d\'interactions locales sont supprimées. La valeur par défaut est 90 jours. 0 pour aligner cette valeur sur la durée de vie des conversations distantes.'; -$a->strings['Lifespan of raw conversation data'] = 'Durée de vie des méta-données de conversation'; -$a->strings['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.'] = 'Cette valeur représente le délai en jours après lequel les méta-données de conversations sont supprimées. Ces méta-données sont utilisées par les protocoles ActivityPub et OStatus, et pour le débogage. Il est prudent de conserver ces meta-données pendant au moins 14 jours. La valeur par défaut est 90 jours.'; -$a->strings['Maximum numbers of comments per post'] = 'Nombre maximum de commentaires par publication'; -$a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100.'; -$a->strings['Maximum numbers of comments per post on the display page'] = 'Nombre maximum de commentaires par conversation dans leur page dédié (/display)'; -$a->strings['How many comments should be shown on the single view for each post? Default value is 1000.'] = 'Valeur par défaut : 1 000.'; -$a->strings['Temp path'] = 'Chemin des fichiers temporaires'; -$a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Si vous n\'avez pas la possibilité d\'avoir accès au répertoire temp, entrez un autre répertoire ici.'; -$a->strings['Only search in tags'] = 'Rechercher seulement dans les étiquettes'; -$a->strings['On large systems the text search can slow down the system extremely.'] = 'La recherche textuelle peut ralentir considérablement les systèmes de grande taille.'; -$a->strings['Generate counts per contact group when calculating network count'] = 'Générer des comptes par groupe de contacts lors du calcul du nombre de réseaux.'; -$a->strings['On systems with users that heavily use contact groups the query can be very expensive.'] = 'Sur les systèmes avec des utilisateurs utilisant extensivement les groupes de contacts, cette requête peut être très coûteuse.'; -$a->strings['Maximum number of parallel workers'] = 'Nombre maximum de processus simultanés'; -$a->strings['On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d.'] = 'Sur un hébergement partagé, mettez %d. Sur des serveurs plus puissants, %d est optimal. La valeur par défaut est %d.'; -$a->strings['Enable fastlane'] = 'Activer la file prioritaire'; -$a->strings['When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.'] = 'La file prioritaire est un ouvrier additionel démarré quand des tâches de fondde grande importance sont bloquées par des tâches de moindre importance dans la file d\'attente.'; -$a->strings['Direct relay transfer'] = 'Relai direct'; -$a->strings['Enables the direct transfer to other servers without using the relay servers'] = 'Soumet les conversations publiques aux serveurs distants sans passer par le serveur relai.'; -$a->strings['Relay scope'] = 'Filtre du relai'; -$a->strings['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.'] = '"Tous" signifie que toutes les conversations publiques en provenance du relai sont acceptées. "Tags" signifie que seules les conversations comportant les tags suivants sont acceptées.'; -$a->strings['Disabled'] = 'Désactivé'; -$a->strings['all'] = 'Tous'; -$a->strings['tags'] = 'Tags'; -$a->strings['Server tags'] = 'Tags de filtre du relai'; -$a->strings['Comma separated list of tags for the "tags" subscription.'] = 'Liste séparée par des virgules de tags exclusivement autorisés en provenance des relais.'; -$a->strings['Deny Server tags'] = 'Tags refusés'; -$a->strings['Comma separated list of tags that are rejected.'] = 'Liste séparée par des virgules de tags refusés en provenance des relais.'; -$a->strings['Allow user tags'] = 'Inclure les tags des utilisateurs'; -$a->strings['If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".'] = 'ajoute les tags des recherches enregistrées des utilisateurs aux tags exclusivement autorisés en provenance des relais.'; -$a->strings['Start Relocation'] = 'Démarrer le déménagement'; -$a->strings['Storage backend, %s is invalid.'] = 'Le moteur de stockage %s est invalide.'; -$a->strings['Storage backend %s error: %s'] = 'Moteur de stockage %s erreur : %s'; -$a->strings['Invalid storage backend setting value.'] = 'Valeur de paramètre de moteur de stockage invalide.'; -$a->strings['Current Storage Backend'] = 'Moteur de stockage actuel'; -$a->strings['Storage Configuration'] = 'Configuration du stockage'; -$a->strings['Storage'] = 'Stockage'; -$a->strings['Save & Use storage backend'] = 'Enregistrer et utiliser ce moteur de stockage'; -$a->strings['Use storage backend'] = 'Utiliser ce moteur de stockage'; -$a->strings['Save & Reload'] = 'Enregistrer et recharger'; -$a->strings['This backend doesn\'t have custom settings'] = 'Ce moteur de stockage n\'offre pas de paramètres personnalisés.'; -$a->strings['Database (legacy)'] = 'Base de donnée (historique)'; -$a->strings['Template engine (%s) error: %s'] = 'Moteur de template (%s) erreur : %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.
    '] = '
    Votre base de donnée comporte des tables MYISAM. Vous devriez changer pour InnoDB car il est prévu d\'utiliser des fonctionnalités spécifiques à InnoDB à l\'avenir. Veuillez consulter ce guide de conversion pour mettre à jour votre base de donnée. Vous pouvez également exécuter la commande php bin/console.php dbstructure toinnodb à la racine de votre répertoire Friendica pour une conversion automatique.'; -$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.
    '] = 'Votre BDD utilise encore des tables InnoDB au format de fichiers Antelope. Vous devriez le remplacer par le format Barracuda. Friendica utilise des fonctionnalités qui ne sont pas disponibles dans le format Antelope. Voir ici pour un guide qui peut être utile pour la conversion du moteur des tables. Vous pouvez également utiliser la commande php bin/console.php dbstructure toinnodb de votre installation Friendica pour une conversion automatique.
    '; -$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.
    '] = 'Votre table_definition_cache est trop faible (%d). Cela peut conduire à l\'erreur de base de données "Prepared statement needs to be re-prepared". Merci de le définir au minimum à %d. Voir ici pour plus d\'informations.
    '; -$a->strings['There is a new version of Friendica available for download. Your current version is %1$s, upstream version is %2$s'] = 'Une nouvelle version de Friendica est disponible. Votre version est %1$s, la nouvelle version est %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.'] = 'La mise à jour automatique de la base de donnée a échoué. Veuillez exécuter la commande php bin/console.php dbstructure update depuis votre répertoire Friendica et noter les erreurs potentielles.'; -$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.)'] = 'La dernière mise à jour a échoué. Merci d\'exécuter "php bin/console.php dbstructure update" depuis la ligne de commandes et de surveiller les erreurs qui pourraient survenir (Certaines erreurs pourraient être dans le fichier journal).'; -$a->strings['The worker was never executed. Please check your database structure!'] = 'Le \'worker\' n\'a pas encore été exécuté. Vérifiez la structure de votre base de données.'; -$a->strings['The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings.'] = 'La dernière exécution du \'worker\' s\'est déroulée à %s, c\'est-à-dire il y a plus d\'une heure. Vérifiez les réglages de crontab.'; -$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.'] = 'La configuration de votre site Friendica est maintenant stockée dans le fichier config/local.config.php, veuillez copier le fichier config/local-sample.config.php et transférer votre configuration depuis le fichier .htconfig.php. Veuillez consulter la page d\'aide de configuration (en anglais) pour vous aider dans la transition.'; -$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.'] = 'La configuration de votre site Friendica est maintenant stockée dans le fichier config/local.config.php, veuillez copier le fichier config/local-sample.config.php et transférer votre configuration depuis le fichier config/local.ini.php. Veuillez consulter la page d\'aide de configuration (en anglais) pour vous aider dans la transition.'; -$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.'] = '%s n\'est pas accessible sur votre site. C\'est un problème de configuration sévère qui empêche toute communication avec les serveurs distants. Veuillez consulter la page d\'aide à l\'installation (en anglais) pour plus d\'information.'; -$a->strings['The logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Le fichier journal \'%s\' n\'est pas utilisable. Pas de journalisation possible (erreur \'%s\')'; -$a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Le fichier journal de débogage "%s" n\'existe pas ou n\'est pas accessible en écriture. Journalisation désactivée (erreur : "%s")'; -$a->strings['Friendica\'s system.basepath was updated from \'%s\' to \'%s\'. Please remove the system.basepath from your db to avoid differences.'] = 'Le system.basepath de Friendica a été mis à jour de \'%s\' à \'%s\'. Merci de supprimer le system.basepath de votre base de données pour éviter des différences.'; -$a->strings['Friendica\'s current system.basepath \'%s\' is wrong and the config file \'%s\' isn\'t used.'] = 'Le system.basepath actuel de Friendica, \'%s\' est erroné et le fichier de configuration \'%s\' n\'est pas utilisé.'; -$a->strings['Friendica\'s current system.basepath \'%s\' is not equal to the config file \'%s\'. Please fix your configuration.'] = 'Le system.basepath \'%s\' actuel de Friendica n\'est pas le même que le fichier de configuration \'%s\'. Merci de corriger votre configuration.'; +$a->strings['Item not found'] = 'Élément introuvable'; +$a->strings['No source recorded'] = 'Aucune source enregistrée'; +$a->strings['Please make sure the debug.store_source config key is set in config/local.config.php for future items to have sources.'] = 'Merci de vérifier que la clé de configuration debug.store_source est définie dans config/local.config.php pour que les items futurs puissent avoir des sources.'; +$a->strings['Item Guid'] = 'GUID du contenu'; +$a->strings['Contact not found or their server is already blocked on this node.'] = 'Contact non trouvé ou son serveur est déjà bloqué sur ce nœud.'; +$a->strings['Please login to access this page.'] = 'Connectez-vous pour accéder à cette page.'; +$a->strings['Create Moderation Report'] = 'Créer un rapport de modération'; +$a->strings['Pick Contact'] = 'Sélectionner le contact'; +$a->strings['Please enter below the contact address or profile URL you would like to create a moderation report about.'] = 'Veuillez saisir ci-dessous l\'adresse ou l\'URL de profil du contact dont vous souhaitez faire un signalement.'; +$a->strings['Contact address/URL'] = 'Adresse/URL du contact'; +$a->strings['Pick Category'] = 'Sélectionner la catégorie'; +$a->strings['Please pick below the category of your report.'] = 'Veuillez sélectionner la catégorie de votre signalement.'; +$a->strings['Spam'] = 'Spam'; +$a->strings['This contact is publishing many repeated/overly long posts/replies or advertising their product/websites in otherwise irrelevant conversations.'] = 'Ce contact publie beaucoup de publications/réponses répétées/très longs ou fait la promotion de ses produits/sites web sur des conversations non pertinentes.'; +$a->strings['Illegal Content'] = 'Contenu illégal'; +$a->strings['This contact is publishing content that is considered illegal in this node\'s hosting juridiction.'] = 'Ce contact publie du contenu qui est considéré illégal dans la juridiction où est hébergé ce nœud.'; +$a->strings['Community Safety'] = 'Sécurité de la communauté'; +$a->strings['This contact aggravated you or other people, by being provocative or insensitive, intentionally or not. This includes disclosing people\'s private information (doxxing), posting threats or offensive pictures in posts or replies.'] = 'Ce contact vous a irrité ou a irrité d\'autres personnes en se montrant provocateur ou insensible, intentionnellement ou non. Cela inclut la divulgation d\'informations privées (doxxing), la publication de menaces ou d\'images offensantes dans des publications ou des réponses.'; +$a->strings['Unwanted Content/Behavior'] = 'Contenu/Comportement indésirable'; +$a->strings['This contact has repeatedly published content irrelevant to the node\'s theme or is openly criticizing the node\'s administration/moderation without directly engaging with the relevant people for example or repeatedly nitpicking on a sensitive topic.'] = 'Ce contact a publié de manière répétée un contenu sans rapport avec le thème du nœud ou critique ouvertement l\'administration/la modération du nœud sans discuter directement avec les personnes concernées, par exemple ou en pinaillant de manière répétée sur un sujet sensible.'; +$a->strings['Rules Violation'] = 'Violation de règles'; +$a->strings['This contact violated one or more rules of this node. You will be able to pick which one(s) in the next step.'] = 'Ce contact à violé une ou plusieurs règles de ce nœud. Vous pourrez sélectionner la ou les règles dans l\'étape suivante.'; +$a->strings['Please elaborate below why you submitted this report. The more details you provide, the better your report can be handled.'] = 'Veuillez indiquer si-dessous les raisons de ce signalement. Plus vous donnez de détails, mieux le signalement sera pris en compte.'; +$a->strings['Additional Information'] = 'Information supplémentaire'; +$a->strings['Please provide any additional information relevant to this particular report. You will be able to attach posts by this contact in the next step, but any context is welcome.'] = 'Veuillez fournir n\'importe quelle information supplémentaire utile pour ce signalement. Vous pourrez joindre des publications de ce contact dans la prochaine étape, mais n\'importe quel contenu est accepté.'; +$a->strings['Pick Rules'] = 'Sélectionner les règles'; +$a->strings['Please pick below the node rules you believe this contact violated.'] = 'Veuillez sélectionner les règles que vous estimez avoir été violées par ce contact.'; +$a->strings['Pick Posts'] = 'Sélectionner les publications'; +$a->strings['Please optionally pick posts to attach to your report.'] = 'Veuillez sélectionner, si vous le souhaitez, les publications à joindre à votre signalement.'; +$a->strings['Submit Report'] = 'Envoyer le signalement'; +$a->strings['Further Action'] = 'Action supplémentaire'; +$a->strings['You can also perform one of the following action on the contact you reported:'] = 'Vous pouvez également effectuer une des actions suivantes sur le contact que vous signalez :'; +$a->strings['Nothing'] = 'Ne rien faire'; +$a->strings['Collapse contact'] = 'Réduire le contact'; +$a->strings['Their posts and replies will keep appearing in your Network page but their content will be collapsed by default.'] = 'Leurs publications et réponses continueront d\'apparaître sur votre page Réseau mais le contenu sera réduit par défaut.'; +$a->strings['Their posts won\'t appear in your Network page anymore, but their replies can appear in forum threads. They still can follow you.'] = 'Leurs publications n\'apparaîtront plus sur votre page Réseau, mais leurs réponses peuvent apparaître dans des fils de discussion. Ils peuvent toujours vous suivre.'; +$a->strings['Block contact'] = 'Bloquer le contact'; +$a->strings['Their posts won\'t appear in your Network page anymore, but their replies can appear in forum threads, with their content collapsed by default. They cannot follow you but still can have access to your public posts by other means.'] = 'Leurs publications n\'apparaîtront plus sur votre page Réseau mais leurs réponses peuvent apparaître dans des fils de discussion, avec le contenu réduit par défaut. Ils ne peuvent pas vous suivre mais peuvent accéder à vos publications publiques par d\'autres moyens.'; +$a->strings['Forward report'] = 'Transmettre le signalement'; +$a->strings['Would you ike to forward this report to the remote server?'] = 'Voulez-vous transmettre le signalement au serveur distant ?'; +$a->strings['1. Pick a contact'] = '1. Sélectionner le contact'; +$a->strings['2. Pick a category'] = '2. Sélectionner la catégorie'; +$a->strings['2a. Pick rules'] = '2a. Sélectionner les règles'; +$a->strings['2b. Add comment'] = '2b. Ajouter un commentaire'; +$a->strings['3. Pick posts'] = '3. Sélectionner les publications'; +$a->strings['List of reports'] = 'Liste des signalements'; +$a->strings['This page display reports created by our or remote users.'] = 'Cette page affiche les signalements créés par les utilisateurs locaux ou distants.'; +$a->strings['No report exists at this node.'] = 'Aucun signalement sur ce nœud.'; +$a->strings['Category'] = 'Catégorie'; +$a->strings['%s total report'] = [ + 0 => '%s signalement au total', + 1 => '%s signalements au total', + 2 => '%s signalements au total', +]; +$a->strings['URL of the reported contact.'] = 'URL du contact signalé.'; $a->strings['Normal Account'] = 'Compte normal'; $a->strings['Automatic Follower Account'] = 'Compte d\'abonné automatique'; -$a->strings['Public Forum Account'] = 'Forum public'; +$a->strings['Public Group Account'] = 'Compte de groupe public'; $a->strings['Automatic Friend Account'] = 'Compte personnel public'; $a->strings['Blog Account'] = 'Compte de blog'; -$a->strings['Private Forum Account'] = 'Compte de Forum privé'; -$a->strings['Message queues'] = 'Files d\'attente des messages'; -$a->strings['Server Settings'] = 'Paramètres du site'; +$a->strings['Private Group Account'] = 'Compte de groupe privé'; $a->strings['Registered users'] = 'Utilisateurs inscrits'; $a->strings['Pending registrations'] = 'Inscriptions en attente'; -$a->strings['Version'] = 'Version'; -$a->strings['Active addons'] = 'Add-ons actifs'; -$a->strings['Theme %s disabled.'] = 'Thème %s désactivé.'; -$a->strings['Theme %s successfully enabled.'] = 'Thème %s activé avec succès.'; -$a->strings['Theme %s failed to install.'] = 'Le thème %s a échoué à s\'installer.'; -$a->strings['Screenshot'] = 'Capture d\'écran'; -$a->strings['Themes'] = 'Thèmes'; -$a->strings['Unknown theme.'] = 'Thème inconnu.'; -$a->strings['Themes reloaded'] = 'Thèmes rechargés'; -$a->strings['Reload active themes'] = 'Recharger les thèmes actifs'; -$a->strings['No themes found on the system. They should be placed in %1$s'] = 'Aucun thème trouvé. Leur emplacement d\'installation est%1$s.'; -$a->strings['[Experimental]'] = '[Expérimental]'; -$a->strings['[Unsupported]'] = '[Non supporté]'; -$a->strings['Display Terms of Service'] = 'Afficher les Conditions d\'Utilisation'; -$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.'] = 'Active la page de Conditions d\'Utilisation. Un lien vers cette page est ajouté dans le formulaire d\'inscription et la page A Propos.'; -$a->strings['Display Privacy Statement'] = 'Afficher la Politique de Confidentialité'; -$a->strings['Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR.'] = 'Afficher quelques informations à propos des données nécessaires pour opérer un nœud conforme par exemple au RGPD Européen.'; -$a->strings['Privacy Statement Preview'] = 'Aperçu de la Politique de Confidentialité'; -$a->strings['The Terms of Service'] = 'Conditions d\'Utilisation'; -$a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = 'Saisissez les Conditions d\'Utilisations de votre site. Les BBCodes sont disponibles, les titres commencent à [h2].'; $a->strings['%s user blocked'] = [ 0 => '%s utilisateur bloqué', 1 => '%s utilisateurs bloqués', @@ -1708,10 +2192,9 @@ $a->strings['Add User'] = 'Ajouter l\'utilisateur'; $a->strings['Name of the new user.'] = 'Nom du nouvel utilisateur.'; $a->strings['Nickname'] = 'Pseudo'; $a->strings['Nickname of the new user.'] = 'Pseudo du nouvel utilisateur.'; -$a->strings['Email address of the new user.'] = 'Adresse mail du nouvel utilisateur.'; +$a->strings['Email address of the new user.'] = 'Adresse de courriel du nouvel utilisateur.'; $a->strings['Users awaiting permanent deletion'] = 'Utilisateurs en attente de suppression définitive'; $a->strings['Permanent deletion'] = 'Suppression définitive'; -$a->strings['Users'] = 'Utilisateurs'; $a->strings['User waiting for permanent deletion'] = 'Utilisateur en attente de suppression définitive'; $a->strings['%s user approved'] = [ 0 => '%s utilisateur approuvé', @@ -1730,405 +2213,6 @@ $a->strings['Request date'] = 'Date de la demande'; $a->strings['No registrations.'] = 'Pas d\'inscriptions.'; $a->strings['Note from the user'] = 'Message personnel'; $a->strings['Deny'] = 'Refuser'; -$a->strings['API endpoint %s %s is not implemented'] = 'La méthode d\'API %s %s n\'est pas implémentée'; -$a->strings['The API endpoint is currently not implemented but might be in the future.'] = 'Cette méthode d\'API n\'est pas encore implémentée.'; -$a->strings['Missing parameters'] = 'Paramètres manquants'; -$a->strings['Only starting posts can be bookmarked'] = 'Seuls les publications initiales peuvent être ajoutées aux signets'; -$a->strings['Only starting posts can be muted'] = 'Les notifications de conversation ne peuvent être ignorées qu\'à partir de la publication initiale'; -$a->strings['Posts from %s can\'t be shared'] = 'Les publications de %s ne peuvent pas être partagées'; -$a->strings['Only starting posts can be unbookmarked'] = 'Seules les publications initiales peuvent être retirées des signets'; -$a->strings['Only starting posts can be unmuted'] = 'Les notifications de conversation ne peuvent être rétablies qu\'à partir de la publication initiale'; -$a->strings['Posts from %s can\'t be unshared'] = 'Il n\'est pas possible d\'annuler le partage des publications de %s '; -$a->strings['Contact not found'] = 'Contact non trouvé'; -$a->strings['No installed applications.'] = 'Pas d\'application installée.'; -$a->strings['Applications'] = 'Applications'; -$a->strings['Item was not found.'] = 'Element introuvable.'; -$a->strings['Please login to continue.'] = 'Merci de vous connecter pour continuer.'; -$a->strings['You don\'t have access to administration pages.'] = 'Vous n\'avez pas accès aux pages d\'administration'; -$a->strings['Submanaged account can\'t access the administration pages. Please log back in as the main account.'] = 'Les comptes sous-traités ne peuvent accéder aux pages d\'administration. Veuillez vous identifier avec votre compte principal à la place.'; -$a->strings['Overview'] = 'Synthèse'; -$a->strings['Configuration'] = 'Configuration'; -$a->strings['Additional features'] = 'Fonctions supplémentaires'; -$a->strings['Database'] = 'Base de données'; -$a->strings['DB updates'] = 'Mise-à-jour de la base'; -$a->strings['Inspect Deferred Workers'] = 'Tâches de fond reportées'; -$a->strings['Inspect worker Queue'] = 'Tâches de fond en attente'; -$a->strings['Tools'] = 'Outils'; -$a->strings['Contact Blocklist'] = 'Liste de contacts bloqués'; -$a->strings['Server Blocklist'] = 'Serveurs bloqués'; -$a->strings['Diagnostics'] = 'Diagnostics'; -$a->strings['PHP Info'] = 'PHP Info'; -$a->strings['probe address'] = 'Tester une adresse'; -$a->strings['check webfinger'] = 'Vérifier le webfinger'; -$a->strings['Babel'] = 'Babel'; -$a->strings['ActivityPub Conversion'] = 'Conversion ActivityPub'; -$a->strings['Addon Features'] = 'Fonctionnalités des addons'; -$a->strings['User registrations waiting for confirmation'] = 'Inscriptions en attente de confirmation'; -$a->strings['Too Many Requests'] = 'Trop de requêtes'; -$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Limite quotidienne d\'%d publication atteinte. La publication a été rejetée.', - 1 => 'Limite quotidienne de %d publications atteinte. La publication a été rejetée.', - 2 => 'Limite quotidienne de %d publications atteinte. La publication a été rejetée.', -]; -$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Limite hebdomadaire d\'%d unique publication atteinte, votre soumission a été rejetée.', - 1 => 'Limite hebdomadaire de %d publications atteinte, votre soumission a été rejetée.', - 2 => 'Limite hebdomadaire de %d publications atteinte, votre soumission a été rejetée.', -]; -$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'La limite du nombre de publications de %d publication a été atteinte. La publication a été refusée.', - 1 => 'La limite du nombre de publications de %d publications a été atteinte. La publication a été refusée.', - 2 => 'La limite du nombre de publications de %d publication a été atteinte. La publication a été refusée.', -]; -$a->strings['Profile Details'] = 'Détails du profil'; -$a->strings['Only You Can See This'] = 'Vous seul pouvez voir ça'; -$a->strings['Scheduled Posts'] = 'Publications programmées'; -$a->strings['Posts that are scheduled for publishing'] = 'Publications programmées à l\'avance'; -$a->strings['Tips for New Members'] = 'Conseils aux nouveaux venus'; -$a->strings['People Search - %s'] = 'Recherche de personne - %s'; -$a->strings['Forum Search - %s'] = 'Recherche de Forum - %s'; -$a->strings['Account'] = 'Compte'; -$a->strings['Two-factor authentication'] = 'Authentification à deux facteurs'; -$a->strings['Display'] = 'Affichage'; -$a->strings['Manage Accounts'] = 'Gérer vos comptes'; -$a->strings['Connected apps'] = 'Applications connectées'; -$a->strings['Export personal data'] = 'Exporter'; -$a->strings['Remove account'] = 'Supprimer le compte'; -$a->strings['This page is missing a url parameter.'] = 'Il manque un paramètre d\'URL à cette adresse.'; -$a->strings['The post was created'] = 'La publication a été créée'; -$a->strings['%d contact edited.'] = [ - 0 => '%d contact mis à jour.', - 1 => '%d contacts mis à jour.', - 2 => '%d contacts mis à jour.', -]; -$a->strings['Show all contacts'] = 'Montrer tous les contacts'; -$a->strings['Only show pending contacts'] = 'Ne montrer que les demandes d\'abonnement'; -$a->strings['Only show blocked contacts'] = 'Ne montrer que les contacts bloqués'; -$a->strings['Ignored'] = 'Ignorés'; -$a->strings['Only show ignored contacts'] = 'Ne montrer que les contacts ignorés'; -$a->strings['Archived'] = 'Archivés'; -$a->strings['Only show archived contacts'] = 'Ne montrer que les contacts archivés'; -$a->strings['Hidden'] = 'Cachés'; -$a->strings['Only show hidden contacts'] = 'Ne montrer que les contacts masqués'; -$a->strings['Organize your contact groups'] = 'Organisez vos groupes de contacts'; -$a->strings['Search your contacts'] = 'Rechercher dans vos contacts'; -$a->strings['Results for: %s'] = 'Résultats pour : %s'; -$a->strings['Update'] = 'Mises à jour'; -$a->strings['Unignore'] = 'Ne plus ignorer'; -$a->strings['Batch Actions'] = 'Actions multiples'; -$a->strings['Conversations started by this contact'] = 'Conversations entamées par ce contact'; -$a->strings['Posts and Comments'] = 'Publications et commentaires'; -$a->strings['Posts containing media objects'] = 'Publications contenant des objets média'; -$a->strings['View all known contacts'] = 'Voir tous les contacts connus'; -$a->strings['Advanced Contact Settings'] = 'Réglages avancés du contact'; -$a->strings['Mutual Friendship'] = 'Relation réciproque'; -$a->strings['is a fan of yours'] = 'Vous suit'; -$a->strings['you are a fan of'] = 'Vous le/la suivez'; -$a->strings['Pending outgoing contact request'] = 'Demande d\'abonnement distant en attente'; -$a->strings['Pending incoming contact request'] = 'Demande d\'abonnement à votre compte en attente'; -$a->strings['Visit %s\'s profile [%s]'] = 'Visiter le profil de %s [%s]'; -$a->strings['Contact update failed.'] = 'Impossible d\'appliquer les réglages.'; -$a->strings['Return to contact editor'] = 'Retour à l\'éditeur de contact'; -$a->strings['Account Nickname'] = 'Pseudo du compte'; -$a->strings['Account URL'] = 'URL du compte'; -$a->strings['Poll/Feed URL'] = 'Téléverser des photos'; -$a->strings['New photo from this URL'] = 'Nouvelle photo depuis cette URL'; -$a->strings['Invalid contact.'] = 'Contact invalide.'; -$a->strings['No known contacts.'] = 'Aucun contact connu.'; -$a->strings['No common contacts.'] = 'Aucun contact en commun.'; -$a->strings['Follower (%s)'] = [ - 0 => 'Abonné (%s)', - 1 => 'Abonnés (%s)', - 2 => 'Abonnés (%s)', -]; -$a->strings['Following (%s)'] = [ - 0 => 'Abonnement (%s)', - 1 => 'Abonnements (%s)', - 2 => 'Abonnements (%s)', -]; -$a->strings['Mutual friend (%s)'] = [ - 0 => 'Contact mutuel (%s)', - 1 => 'Contacts mutuels (%s)', - 2 => 'Contacts mutuels (%s)', -]; -$a->strings['These contacts both follow and are followed by %s.'] = 'Ces contacts sont mutuellement abonnés avec %s.'; -$a->strings['Common contact (%s)'] = [ - 0 => 'Contact commun (%s)', - 1 => 'Contacts communs (%s)', - 2 => 'Contacts communs (%s)', -]; -$a->strings['Both %s and yourself have publicly interacted with these contacts (follow, comment or likes on public posts).'] = '%s et vous-mêmes avez interagi publiquement avec ces contacts (abonnement, commentaires ou "J\'aime" sur des publications publiques)'; -$a->strings['Contact (%s)'] = [ - 0 => 'Contact (%s)', - 1 => 'Contacts (%s)', - 2 => 'Contacts (%s)', -]; -$a->strings['Failed to update contact record.'] = 'Échec de mise à jour du contact.'; -$a->strings['Contact has been unblocked'] = 'Le contact n\'est plus bloqué'; -$a->strings['Contact has been blocked'] = 'Le contact a été bloqué'; -$a->strings['Contact has been unignored'] = 'Le contact n\'est plus ignoré'; -$a->strings['Contact has been ignored'] = 'Le contact a été ignoré'; -$a->strings['You are mutual friends with %s'] = 'Vous êtes ami (et réciproquement) avec %s'; -$a->strings['You are sharing with %s'] = 'Vous partagez avec %s'; -$a->strings['%s is sharing with you'] = '%s partage avec vous'; -$a->strings['Private communications are not available for this contact.'] = 'Les communications privées ne sont pas disponibles pour ce contact.'; -$a->strings['Never'] = 'Jamais'; -$a->strings['(Update was not successful)'] = '(Échec de la mise à jour)'; -$a->strings['(Update was successful)'] = '(Mise à jour effectuée avec succès)'; -$a->strings['Suggest friends'] = 'Suggérer des abonnements'; -$a->strings['Network type: %s'] = 'Type de réseau %s'; -$a->strings['Communications lost with this contact!'] = 'Communications perdues avec ce contact !'; -$a->strings['Fetch further information for feeds'] = 'Chercher plus d\'informations pour les flux'; -$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.'] = 'Récupérer des informations comme les prévisualisations d\'images, les titres et les accroches depuis l\'élément du flux de discussion. Vous pouvez activer ceci si le flux ne contient pas beaucoup de texte. Les mots clés sont récupérés de la balise meta de l\'élément du flux de discussion et sont postées comme mots dièses.'; -$a->strings['Fetch information'] = 'Récupérer informations'; -$a->strings['Fetch keywords'] = 'Récupérer les mots-clés'; -$a->strings['Fetch information and keywords'] = 'Récupérer informations'; -$a->strings['No mirroring'] = 'Pas de miroir'; -$a->strings['Mirror as forwarded posting'] = 'Refléter les publications de ce profil comme des partages'; -$a->strings['Mirror as my own posting'] = 'Refléter les publications de ce profil comme les vôtres'; -$a->strings['Native reshare'] = 'Partage natif'; -$a->strings['Contact Information / Notes'] = 'Informations de contact / Notes'; -$a->strings['Contact Settings'] = 'Paramètres du Contact'; -$a->strings['Contact'] = 'Contact'; -$a->strings['Their personal note'] = 'Leur note personnelle'; -$a->strings['Edit contact notes'] = 'Éditer les notes des contacts'; -$a->strings['Block/Unblock contact'] = 'Bloquer/débloquer ce contact'; -$a->strings['Ignore contact'] = 'Ignorer ce contact'; -$a->strings['View conversations'] = 'Voir les conversations'; -$a->strings['Last update:'] = 'Dernière mise-à-jour :'; -$a->strings['Update public posts'] = 'Fréquence de mise à jour:'; -$a->strings['Update now'] = 'Mettre à jour'; -$a->strings['Currently blocked'] = 'Actuellement bloqué'; -$a->strings['Currently ignored'] = 'Actuellement ignoré'; -$a->strings['Currently archived'] = 'Actuellement archivé'; -$a->strings['Awaiting connection acknowledge'] = 'En attente de confirmation d\'abonnement'; -$a->strings['Hide this contact from others'] = 'Cacher ce contact aux autres'; -$a->strings['Replies/likes to your public posts may still be visible'] = 'Les réponses et "j\'aime" à vos publications publiques peuvent être toujours visibles'; -$a->strings['Notification for new posts'] = 'Notification des nouvelles publications'; -$a->strings['Send a notification of every new post of this contact'] = 'Envoyer une notification de chaque nouveau message en provenance de ce contact'; -$a->strings['Keyword Deny List'] = 'Liste de mot-clefs interdits'; -$a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand « Récupérer informations et mots-clés » est sélectionné.'; -$a->strings['Actions'] = 'Actions'; -$a->strings['Mirror postings from this contact'] = 'Copier les publications de ce contact'; -$a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact.'; -$a->strings['Refetch contact data'] = 'Récupérer à nouveau les données de contact'; -$a->strings['Toggle Blocked status'] = '(dés)activer l\'état "bloqué"'; -$a->strings['Toggle Ignored status'] = '(dés)activer l\'état "ignoré"'; -$a->strings['Revoke Follow'] = 'Révoquer le suivi'; -$a->strings['Revoke the follow from this contact'] = 'Empêcher ce contact de vous suivre '; -$a->strings['Unknown contact.'] = 'Contact inconnu.'; -$a->strings['Contact is deleted.'] = 'Le contact a été supprimé.'; -$a->strings['Contact is being deleted.'] = 'Le contact est en cours de suppression.'; -$a->strings['Follow was successfully revoked.'] = 'Le suivi a été révoqué avec succès.'; -$a->strings['Do you really want to revoke this contact\'s follow? This cannot be undone and they will have to manually follow you back again.'] = 'Voulez-vous vraiment révoquer l\'abonnement de ce contact ? Cela ne peut être annulé et il devra se réabonner à vous manuellement.'; -$a->strings['Yes'] = 'Oui'; -$a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'Ce fil communautaire liste toutes les conversations publiques reçues par ce serveur. Elles ne reflètent pas nécessairement les opinions personelles des utilisateurs locaux.'; -$a->strings['Local Community'] = 'Communauté locale'; -$a->strings['Posts from local users on this server'] = 'Conversations publiques démarrées par des utilisateurs locaux'; -$a->strings['Global Community'] = 'Communauté globale'; -$a->strings['Posts from users of the whole federated network'] = 'Conversations publiques provenant du réseau fédéré global'; -$a->strings['Own Contacts'] = 'Publications de vos propres contacts'; -$a->strings['Include'] = 'Inclure'; -$a->strings['Hide'] = 'Masquer'; -$a->strings['No results.'] = 'Aucun résultat.'; -$a->strings['Community option not available.'] = 'L\'option communauté n\'est pas disponible'; -$a->strings['Not available.'] = 'Indisponible.'; -$a->strings['No such group'] = 'Groupe inexistant'; -$a->strings['Group: %s'] = 'Group : %s'; -$a->strings['Latest Activity'] = 'Activité récente'; -$a->strings['Sort by latest activity'] = 'Trier par activité récente'; -$a->strings['Latest Posts'] = 'Dernières publications'; -$a->strings['Sort by post received date'] = 'Trier par date de réception'; -$a->strings['Latest Creation'] = 'Dernière création'; -$a->strings['Sort by post creation date'] = 'Trier par date de création des publications'; -$a->strings['Personal'] = 'Personnel'; -$a->strings['Posts that mention or involve you'] = 'Publications qui vous concernent'; -$a->strings['Starred'] = 'Mis en avant'; -$a->strings['Favourite Posts'] = 'Publications favorites'; -$a->strings['Credits'] = 'Remerciements'; -$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!'] = 'Friendica est un projet communautaire, qui ne serait pas possible sans l\'aide de beaucoup de gens. Voici une liste de ceux qui ont contribué au code ou à la traduction de Friendica. Merci à tous!'; -$a->strings['Formatted'] = 'Mis en page'; -$a->strings['Activity'] = 'Activité'; -$a->strings['Object data'] = 'Données de l\'object'; -$a->strings['Result Item'] = 'Résultat'; -$a->strings['Source activity'] = 'Activité source'; -$a->strings['Source input'] = 'Saisie source'; -$a->strings['BBCode::toPlaintext'] = 'BBCode::toPlaintext'; -$a->strings['BBCode::convert (raw HTML)'] = 'BBCode::convert (code HTML)'; -$a->strings['BBCode::convert (hex)'] = 'BBCode::convert (hex)'; -$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 (HTML pur)'; -$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'] = 'Corps du message'; -$a->strings['Item Tags'] = 'Tags du messages'; -$a->strings['PageInfo::appendToBody'] = 'PageInfo::appendToBody'; -$a->strings['PageInfo::appendToBody => BBCode::convert (raw HTML)'] = 'PageInfo::appendToBody => BBCode::convert (code HTML)'; -$a->strings['PageInfo::appendToBody => BBCode::convert'] = 'PageInfo::appendToBody => BBCode::convert'; -$a->strings['Source input (Diaspora format)'] = 'Saisie source (format Diaspora)'; -$a->strings['Source input (Markdown)'] = 'Source (Markdown)'; -$a->strings['Markdown::convert (raw HTML)'] = 'Markdown::convert (code HTML)'; -$a->strings['Markdown::convert'] = 'Markdown::convert'; -$a->strings['Markdown::toBBCode'] = 'Markdown::toBBCode'; -$a->strings['Raw HTML input'] = 'Saisie code HTML'; -$a->strings['HTML Input'] = 'Code HTML'; -$a->strings['HTML Purified (raw)'] = 'HTML purifié (code)'; -$a->strings['HTML Purified (hex)'] = 'HTML purifié (hexadecimal)'; -$a->strings['HTML Purified'] = 'HTML purifié'; -$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 (code 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 (compact)'; -$a->strings['Decoded post'] = 'Publication décodée'; -$a->strings['Post array before expand entities'] = 'Tableau de la publication avant de résoudre les entités'; -$a->strings['Post converted'] = 'Publication convertie'; -$a->strings['Converted body'] = 'Corps de texte converti'; -$a->strings['Twitter addon is absent from the addon/ folder.'] = 'L\'extension Twitter est absente du dossier addon/'; -$a->strings['Babel Diagnostic'] = 'Disagnostic Babel'; -$a->strings['Source text'] = 'Texte source'; -$a->strings['BBCode'] = 'BBCode'; -$a->strings['Markdown'] = 'Markdown'; -$a->strings['HTML'] = 'HTML'; -$a->strings['Twitter Source / Tweet URL (requires API key)'] = 'Source Twitter / URL du tweet (requiert une clé d\'API)'; -$a->strings['You must be logged in to use this module'] = 'Vous devez être identifié pour accéder à cette fonctionnalité'; -$a->strings['Source URL'] = 'URL Source'; -$a->strings['Time Conversion'] = 'Conversion temporelle'; -$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica fournit ce service pour partager des évènements avec vos contacts indépendament de leur fuseau horaire.'; -$a->strings['UTC time: %s'] = 'Temps UTC : %s'; -$a->strings['Current timezone: %s'] = 'Zone de temps courante : %s'; -$a->strings['Converted localtime: %s'] = 'Temps local converti : %s'; -$a->strings['Please select your timezone:'] = 'Sélectionner votre zone :'; -$a->strings['Only logged in users are permitted to perform a probing.'] = 'Le sondage de profil est réservé aux utilisateurs identifiés.'; -$a->strings['Probe Diagnostic'] = 'Diasgnostic Sonde'; -$a->strings['Output'] = 'Sortie'; -$a->strings['Lookup address'] = 'Addresse de sondage'; -$a->strings['Webfinger Diagnostic'] = 'Diagnostic Webfinger'; -$a->strings['Lookup address:'] = 'Tester l\'adresse:'; -$a->strings['You are now logged in as %s'] = 'Vous êtes maintenant connecté en tant que %s'; -$a->strings['Switch between your accounts'] = 'Changer de compte'; -$a->strings['Manage your accounts'] = 'Gérér vos comptes'; -$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer.'; -$a->strings['Select an identity to manage: '] = 'Choisir une identité à gérer: '; -$a->strings['No entries (some entries may be hidden).'] = 'Aucune entrée (certaines peuvent être cachées).'; -$a->strings['Find on this site'] = 'Trouver sur ce site'; -$a->strings['Results for:'] = 'Résultats pour :'; -$a->strings['Site Directory'] = 'Annuaire local'; -$a->strings['Item was not deleted'] = 'L\'élément n\'a pas été supprimé'; -$a->strings['Item was not removed'] = 'L\'élément n\'a pas été retiré'; -$a->strings['- select -'] = '- choisir -'; -$a->strings['Suggested contact not found.'] = 'Contact suggéré non trouvé'; -$a->strings['Friend suggestion sent.'] = 'Suggestion d\'abonnement envoyée.'; -$a->strings['Suggest Friends'] = 'Suggérer des amis/contacts'; -$a->strings['Suggest a friend for %s'] = 'Suggérer un ami/contact pour %s'; -$a->strings['Installed addons/apps:'] = 'Add-ons/Applications installés :'; -$a->strings['No installed addons/apps'] = 'Aucun add-on/application n\'est installé'; -$a->strings['Read about the Terms of Service of this node.'] = 'Lire les Conditions d\'utilisation de ce nœud.'; -$a->strings['On this server the following remote servers are blocked.'] = 'Sur ce serveur, les serveurs suivants sont sur liste noire.'; -$a->strings['Download this list in CSV format'] = 'Télécharger cette liste au format CSV'; -$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.'] = 'C\'est Friendica, version %s qui fonctionne à l\'emplacement web %s. La version de la base de données est %s, la version de mise à jour des publications est %s.'; -$a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Rendez-vous sur Friendi.ca pour en savoir plus sur le projet Friendica.'; -$a->strings['Bug reports and issues: please visit'] = 'Pour les rapports de bugs : rendez vous sur'; -$a->strings['the bugtracker at github'] = 'le bugtracker sur GitHub'; -$a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = 'Suggestions, souhaits, etc. - merci d\'écrire à "info" at "friendi - dot - ca'; -$a->strings['Could not create group.'] = 'Impossible de créer le groupe.'; -$a->strings['Group not found.'] = 'Groupe introuvable.'; -$a->strings['Group name was not changed.'] = 'Le nom du groupe n\'a pas été modifié.'; -$a->strings['Unknown group.'] = 'Groupe inconnu.'; -$a->strings['Unable to add the contact to the group.'] = 'Erreur lors de l\'ajout du contact au groupe.'; -$a->strings['Contact successfully added to group.'] = 'Le contact a été ajouté au groupe.'; -$a->strings['Unable to remove the contact from the group.'] = 'Erreur lors du retrait du contact du groupe.'; -$a->strings['Contact successfully removed from group.'] = 'Le contact a été retiré du groupe.'; -$a->strings['Bad request.'] = 'Requête invalide.'; -$a->strings['Save Group'] = 'Sauvegarder le groupe'; -$a->strings['Filter'] = 'Filtre'; -$a->strings['Create a group of contacts/friends.'] = 'Créez un groupe de contacts/amis.'; -$a->strings['Unable to remove group.'] = 'Impossible d\'enlever le groupe.'; -$a->strings['Delete Group'] = 'Supprimer le groupe'; -$a->strings['Edit Group Name'] = 'Éditer le nom du groupe'; -$a->strings['Members'] = 'Membres'; -$a->strings['Group is empty'] = 'Groupe vide'; -$a->strings['Remove contact from group'] = 'Retirer ce contact du groupe'; -$a->strings['Click on a contact to add or remove.'] = 'Cliquez sur un contact pour l\'ajouter ou le supprimer.'; -$a->strings['Add contact to group'] = 'Ajouter ce contact au groupe'; -$a->strings['No profile'] = 'Aucun profil'; -$a->strings['Method Not Allowed.'] = 'Méthode non autorisée.'; -$a->strings['Help:'] = 'Aide :'; -$a->strings['Welcome to %s'] = 'Bienvenue sur %s'; -$a->strings['Friendica Communications Server - Setup'] = 'Serveur de média social Friendica - Installation'; -$a->strings['System check'] = 'Vérifications système'; -$a->strings['Requirement not satisfied'] = 'Exigence non remplie'; -$a->strings['Optional requirement not satisfied'] = 'Exigence facultative non remplie'; -$a->strings['OK'] = 'OK'; -$a->strings['Check again'] = 'Vérifier à nouveau'; -$a->strings['Base settings'] = 'Paramètres de base'; -$a->strings['Host name'] = 'Nom de la machine hôte'; -$a->strings['Overwrite this field in case the determinated hostname isn\'t right, otherweise leave it as is.'] = 'Remplacez la valeur de ce champ si le nom de domain par défaut n\'est pas correct.'; -$a->strings['Base path to installation'] = 'Chemin de base de l\'installation'; -$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.'] = 'Si le système ne peut pas détecter le chemin de l\'installation, entrez le bon chemin ici. Ce paramètre doit être utilisé uniquement si vous avez des accès restreints à votre système et que vous n\'avez qu\'un lien symbolique vers le répertoire web.'; -$a->strings['Sub path of the URL'] = 'Chemin d\'accès'; -$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.'] = 'Remplacez cette valeur si le chemin d\'accès par défaut n\'est pas correct. Laissez ce champ vide si votre serveur doit être accessible depuis le nom de domaine de base.'; -$a->strings['Database connection'] = 'Connexion à la base de données'; -$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données.'; -$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages.'; -$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'La base de données que vous spécifierez doit exister. Si ce n\'est pas encore le cas, merci de la créer avant de continuer.'; -$a->strings['Database Server Name'] = 'Serveur de base de données'; -$a->strings['Database Login Name'] = 'Nom d\'utilisateur de la base'; -$a->strings['Database Login Password'] = 'Mot de passe de la base'; -$a->strings['For security reasons the password must not be empty'] = 'Pour des raisons de sécurité, le mot de passe ne peut pas être vide.'; -$a->strings['Database Name'] = 'Nom de la base'; -$a->strings['Please select a default timezone for your website'] = 'Sélectionner un fuseau horaire par défaut pour votre site'; -$a->strings['Site settings'] = 'Réglages du site'; -$a->strings['Site administrator email address'] = 'Adresse électronique de l\'administrateur du site'; -$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l\'interface d\'administration.'; -$a->strings['System Language:'] = 'Langue système :'; -$a->strings['Set the default language for your Friendica installation interface and to send emails.'] = 'Définit la langue par défaut pour l\'interface de votre instance Friendica et les mails envoyés.'; -$a->strings['Your Friendica site database has been installed.'] = 'La base de données de votre site Friendica a bien été installée.'; -$a->strings['Installation finished'] = 'Installation terminée'; -$a->strings['

    What next

    '] = '

    Ensuite

    '; -$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the worker.'] = 'IMPORTANT: vous devrez ajouter [manuellement] une tâche planifiée pour le \'worker\'.'; -$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.'] = 'Rendez-vous sur la page d\'inscription de votre nouveau nœud Friendica et inscrivez vous en tant que nouvel utilisateur. Rappelez-vous de bien utiliser la même adresse de courriel que celle que vous avez utilisée en tant qu\'adresse d\'administrateur. Cela vous permettra d\'accéder au panel d\'administration du site.'; -$a->strings['Total invitation limit exceeded.'] = 'La limite d\'invitation totale est éxédée.'; -$a->strings['%s : Not a valid email address.'] = '%s : Adresse de courriel invalide.'; -$a->strings['Please join us on Friendica'] = 'Rejoignez-nous sur Friendica'; -$a->strings['Invitation limit exceeded. Please contact your site administrator.'] = 'Limite d\'invitation exédée. Veuillez contacter l\'administrateur de votre site.'; -$a->strings['%s : Message delivery failed.'] = '%s : L\'envoi du message a échoué.'; -$a->strings['%d message sent.'] = [ - 0 => '%d message envoyé.', - 1 => '%d messages envoyés.', - 2 => '%d messages envoyés.', -]; -$a->strings['You have no more invitations available'] = 'Vous n\'avez plus d\'invitations disponibles'; -$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.'] = 'Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d\'autres sites peuvent s\'interconnecter, ainsi qu\'avec les membres de plusieurs autres réseaux sociaux.'; -$a->strings['To accept this invitation, please visit and register at %s or any other public Friendica website.'] = 'Pour accepter cette invitation, merci d\'aller vous inscrire sur %s, ou n\'importe quel autre site Friendica public.'; -$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.'] = 'Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d\'autres sites Friendica que vous pourriez rejoindre.'; -$a->strings['Our apologies. This system is not currently configured to connect with other public sites or invite members.'] = 'Toutes nos excuses. Ce système n\'est pas configuré pour se connecter à d\'autres sites publics ou inviter de nouveaux membres.'; -$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.'] = 'Les instances Friendica sont interconnectées pour créer un immense réseau social possédé et contrôlé par ses membres, et qui respecte leur vie privée. Ils peuvent aussi s\'interconnecter avec d\'autres réseaux sociaux traditionnels.'; -$a->strings['To accept this invitation, please visit and register at %s.'] = 'Pour accepter cette invitation, rendez-vous sur %s et inscrivez-vous.'; -$a->strings['Send invitations'] = 'Envoyer des invitations'; -$a->strings['Enter email addresses, one per line:'] = 'Entrez les adresses email, une par ligne :'; -$a->strings['You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.'] = 'Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social.'; -$a->strings['You will need to supply this invitation code: $invite_code'] = 'Vous devrez fournir ce code d\'invitation : $invite_code'; -$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Une fois inscrit, connectez-vous à la page de mon profil sur :'; -$a->strings['For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca'] = 'Pour plus d\'information sur Friendica et les valeurs que nous défendons, veuillez consulter http://friendi.ca'; -$a->strings['Please enter a post body.'] = 'Veuillez saisir un corps de texte.'; -$a->strings['This feature is only available with the frio theme.'] = 'Cette page ne fonctionne qu\'avec le thème "frio" activé.'; -$a->strings['Compose new personal note'] = 'Composer une nouvelle note personnelle'; -$a->strings['Compose new post'] = 'Composer une nouvelle publication'; -$a->strings['Visibility'] = 'Visibilité'; -$a->strings['Clear the location'] = 'Effacer la localisation'; -$a->strings['Location services are unavailable on your device'] = 'Les services de localisation ne sont pas disponibles sur votre appareil'; -$a->strings['Location services are disabled. Please check the website\'s permissions on your device'] = 'Les services de localisation sont désactivés pour ce site. Veuillez vérifier les permissions de ce site sur votre appareil/navigateur.'; -$a->strings['You can make this page always open when you use the New Post button in the Theme Customization settings.'] = 'Vous pouvez faire en sorte que cette page s\'ouvre systématiquement quand vous utilisez le bouton "Nouvelle publication" dans les paramètres de personnalisation des thèmes.'; -$a->strings['Unable to follow this item.'] = 'Erreur lors de l\'abonnement à la conversation.'; -$a->strings['System down for maintenance'] = 'Système indisponible pour cause de maintenance'; -$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.'] = 'Ce serveur Friendica est actuellement en maintenance, soit automatiquement pendant la mise à jour ou manuellement par un administrateur. Cet état devrait être temporaire, merci de réessayer dans quelques minutes.'; -$a->strings['A Decentralized Social Network'] = 'Un Réseau Social Décentralisé '; $a->strings['Show Ignored Requests'] = 'Voir les demandes ignorées'; $a->strings['Hide Ignored Requests'] = 'Cacher les demandes ignorées'; $a->strings['Notification type:'] = 'Type de notification :'; @@ -2155,7 +2239,23 @@ $a->strings['Do you want to authorize this application to access your posts and $a->strings['Unsupported or missing response type'] = 'Type de réponse manquant ou non pris en charge'; $a->strings['Incomplete request data'] = 'Requête incomplète'; $a->strings['Please copy the following authentication code into your application and close this window: %s'] = 'Veuillez copier le code d\'identification suivant dans votre application et ensuite fermer cette fenêtre: %s'; +$a->strings['Invalid data or unknown client'] = 'Données invalides ou client inconnu'; $a->strings['Unsupported or missing grant type'] = 'Type de "grant" manquant ou non pris en charge'; +$a->strings['Resubscribing to OStatus contacts'] = 'Réinscription aux contacts OStatus'; +$a->strings['Keep this window open until done.'] = 'Veuillez garder cette fenêtre ouverte jusqu\'à la fin.'; +$a->strings['✔ Done'] = '✔ Fait'; +$a->strings['No OStatus contacts to resubscribe to.'] = 'Aucun contact OStatus à se réabonner.'; +$a->strings['Subscribing to contacts'] = 'Abonnement aux contacts'; +$a->strings['No contact provided.'] = 'Pas de contact fourni.'; +$a->strings['Couldn\'t fetch information for contact.'] = 'Impossible de récupérer les informations pour ce contact.'; +$a->strings['Couldn\'t fetch friends for contact.'] = 'Impossible d\'obtenir les abonnements de ce contact.'; +$a->strings['Couldn\'t fetch following contacts.'] = 'Impossible de récupérer les contacts suivants.'; +$a->strings['Couldn\'t fetch remote profile.'] = 'Impossible de récupérer le profil distant.'; +$a->strings['Unsupported network'] = 'Réseau incompatible'; +$a->strings['Done'] = 'Terminé'; +$a->strings['success'] = 'réussite'; +$a->strings['failed'] = 'échec'; +$a->strings['ignored'] = 'ignoré'; $a->strings['Wrong type "%s", expected one of: %s'] = 'Type inattendu "%s", valeurs attendues : %s'; $a->strings['Model not found'] = 'Objet introuvable'; $a->strings['Unlisted'] = 'Non listé'; @@ -2167,11 +2267,32 @@ $a->strings['%d more'] = '%d supplémentaire'; $a->strings['To: %s
    '] = 'À : %s
    '; $a->strings['CC: %s
    '] = 'CC : %s
    '; $a->strings['BCC: %s
    '] = 'CCI : %s
    '; +$a->strings['Audience: %s
    '] = 'Audience : %s
    '; +$a->strings['Attributed To: %s
    '] = 'Attribué à : %s
    '; $a->strings['The Photo is not available.'] = 'La photo n\'est pas disponible.'; $a->strings['The Photo with id %s is not available.'] = 'La photo avec l\'identifiant %s n\'est pas disponible.'; $a->strings['Invalid external resource with url %s.'] = 'La ressource externe avec l\'URL %s est invalide.'; $a->strings['Invalid photo with id %s.'] = 'La photo avec l\'identifiant %s est invalide.'; +$a->strings['Post not found.'] = 'Publication non trouvée.'; +$a->strings['Edit post'] = 'Éditer la publication'; +$a->strings['web link'] = 'lien web'; +$a->strings['Insert video link'] = 'Insérer un lien video'; +$a->strings['video link'] = 'lien vidéo'; +$a->strings['Insert audio link'] = 'Insérer un lien audio'; +$a->strings['audio link'] = 'lien audio'; +$a->strings['Remove Item Tag'] = 'Enlever le tag de l\'élément'; +$a->strings['Select a tag to remove: '] = 'Sélectionner un tag à supprimer :'; +$a->strings['Remove'] = 'Utiliser comme photo de profil'; $a->strings['No contacts.'] = 'Aucun contact.'; +$a->strings['%s\'s timeline'] = 'Le flux de %s'; +$a->strings['%s\'s posts'] = 'Les publications originales de %s'; +$a->strings['%s\'s comments'] = 'Les commentaires de %s'; +$a->strings['Image exceeds size limit of %s'] = 'L\'image dépasse la taille limite de %s'; +$a->strings['Image upload didn\'t complete, please try again'] = 'La mise en ligne de l\'image ne s\'est pas terminée, veuillez réessayer'; +$a->strings['Image file is missing'] = 'Fichier image manquant'; +$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Le serveur ne peut pas accepter la mise en ligne d\'un nouveau fichier en ce moment, veuillez contacter un administrateur'; +$a->strings['Image file is empty.'] = 'Fichier image vide.'; +$a->strings['View Album'] = 'Voir l\'album'; $a->strings['Profile not found.'] = 'Profil introuvable.'; $a->strings['You\'re currently viewing your profile as %s Cancel'] = 'Vous êtes en train de consulter votre profil en tant que %s Annuler'; $a->strings['Full Name:'] = 'Nom complet :'; @@ -2185,16 +2306,33 @@ $a->strings['%d year old'] = [ 1 => '%d ans', 2 => '%d ans', ]; -$a->strings['Forums:'] = 'Forums :'; +$a->strings['Description:'] = 'Description :'; +$a->strings['Groups:'] = 'Groupes :'; $a->strings['View profile as:'] = 'Consulter le profil en tant que :'; $a->strings['View as'] = 'Voir en tant que'; -$a->strings['%s\'s timeline'] = 'Le flux de %s'; -$a->strings['%s\'s posts'] = 'Les publications originales de %s'; -$a->strings['%s\'s comments'] = 'Les commentaires de %s'; +$a->strings['Profile unavailable.'] = 'Profil indisponible.'; +$a->strings['Invalid locator'] = 'Localisateur invalide'; +$a->strings['The provided profile link doesn\'t seem to be valid'] = 'Le lien de profil fourni ne semble pas valide.'; +$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'L\'abonnement à distance ne peut pas être fait pour votre réseau. Merci de vous abonner directement sur votre système.'; +$a->strings['Friend/Connection Request'] = 'Demande de mise en contact'; +$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.'] = 'Saisissez votre adresse WebFinger (utilisateur@domaine.tld) ou l\'adresse URL de votre profil ici. Si ce n\'est pas supporté par votre site, vous devrez vous abonner à %s ou %s directement depuis votre système.'; +$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.'] = 'Si vous n\'avez pas de compte sur un site compatible, cliquez ici pour trouver un site Friendica public et vous inscrire dès aujourd\'hui.'; +$a->strings['Your Webfinger address or profile URL:'] = 'Votre adresse Webfinger ou URL de profil :'; +$a->strings['Restricted profile'] = 'Profil restreint'; +$a->strings['This profile has been restricted which prevents access to their public content from anonymous visitors.'] = 'Ce profil a été restreint ce qui empêche l\'accès des visiteurs anonymes à son contenu public.'; $a->strings['Scheduled'] = 'Programmé'; $a->strings['Content'] = 'Contenu'; $a->strings['Remove post'] = 'Supprimer la publication'; +$a->strings['Empty message body.'] = 'Corps du message vide.'; +$a->strings['Unable to check your home location.'] = 'Impossible de vérifier votre localisation.'; +$a->strings['Recipient not found.'] = 'Destinataire non trouvé.'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Nombre de messages de mur quotidiens pour %s dépassé. Échec du message.'; +$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d\'inconnus.'; +$a->strings['To'] = 'À'; +$a->strings['Subject'] = 'Sujet'; +$a->strings['Your message'] = 'Votre message'; $a->strings['Only parent users can create additional accounts.'] = 'Seuls les comptes parent peuvent créer des comptes supplémentaires.'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Le nombre d\'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain.'; $a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking "Register".'] = 'Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID en fournissant votre OpenID et en cliquant sur "S\'inscrire".'; $a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Si vous n\'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste.'; $a->strings['Your OpenID (optional): '] = 'Votre OpenID (facultatif): '; @@ -2211,6 +2349,7 @@ $a->strings['Leave empty for an auto generated password.'] = 'Laisser ce champ l $a->strings['Confirm:'] = 'Confirmer :'; $a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be "nickname@%s".'] = 'Choisissez un pseudo. Celui devra commencer par une lettre. L\'adresse de votre profil en découlera sous la forme "pseudo@%s".'; $a->strings['Choose a nickname: '] = 'Choisir un pseudo : '; +$a->strings['Import'] = 'Importer'; $a->strings['Import your profile to this friendica instance'] = 'Importer votre profile dans cette instance de friendica'; $a->strings['Note: This node explicitly contains adult content'] = 'Note: Ce nœud contient explicitement du contenu destiné aux adultes'; $a->strings['Parent Password:'] = 'Mot de passe du compte parent :'; @@ -2220,24 +2359,17 @@ $a->strings['Please enter your password.'] = 'Veuillez saisir votre mot de passe $a->strings['You have entered too much information.'] = 'Vous avez entré trop d\'informations.'; $a->strings['Please enter the identical mail address in the second field.'] = 'Veuillez entrer une adresse e-mail identique dans le deuxième champ.'; $a->strings['The additional account was created.'] = 'Le compte additionnel a bien été créé.'; -$a->strings['Registration successful. Please check your email for further instructions.'] = 'Inscription réussie. Vérifiez vos emails pour la suite des instructions.'; +$a->strings['Registration successful. Please check your email for further instructions.'] = 'Inscription réussie. Vérifiez vos courriels pour la suite des instructions.'; $a->strings['Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login.'] = 'Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:
    identifiant : %s
    mot de passe : %s

    Vous pourrez changer votre mot de passe une fois connecté.'; $a->strings['Registration successful.'] = 'Inscription réussie.'; $a->strings['Your registration can not be processed.'] = 'Votre inscription ne peut être traitée.'; $a->strings['You have to leave a request note for the admin.'] = 'Vous devez rédiger une demande auprès de l\'administrateur.'; +$a->strings['An internal error occured.'] = 'Une erreur interne est survenue.'; $a->strings['Your registration is pending approval by the site owner.'] = 'Votre inscription attend une validation du propriétaire du site.'; -$a->strings['Profile unavailable.'] = 'Profil indisponible.'; -$a->strings['Invalid locator'] = 'Localisateur invalide'; -$a->strings['The provided profile link doesn\'t seem to be valid'] = 'Le lien de profil fourni ne semble pas valide.'; -$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'L\'abonnement à distance ne peut pas être fait pour votre réseau. Merci de vous abonner directement sur votre système.'; -$a->strings['Friend/Connection Request'] = 'Demande de mise en contact'; -$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.'] = 'Saisissez votre adresse WebFinger (utilisateur@domaine.tld) ou l\'adresse URL de votre profil ici. Si ce n\'est pas supporté par votre site, vous devrez vous abonner à %s ou %s directement depuis votre système.'; -$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.'] = 'Si vous n\'avez pas de compte sur un site compatible, cliquez ici pour trouver un site Friendica public et vous inscrire dès aujourd\'hui.'; -$a->strings['Your Webfinger address or profile URL:'] = 'Votre adresse Webfinger ou URL de profil :'; $a->strings['You must be logged in to use this module.'] = 'Ce module est réservé aux utilisateurs identifiés.'; $a->strings['Only logged in users are permitted to perform a search.'] = 'Seuls les utilisateurs inscrits sont autorisés à lancer une recherche.'; $a->strings['Only one search per minute is permitted for not logged in users.'] = 'Une seule recherche par minute pour les utilisateurs qui ne sont pas connectés.'; -$a->strings['Items tagged with: %s'] = 'Éléments taggés %s'; +$a->strings['Items tagged with: %s'] = 'Éléments marqué %s'; $a->strings['Search term was not saved.'] = 'Le terme de recherche n\'a pas été sauvegardé.'; $a->strings['Search term already saved.'] = 'Le terme de recherche a déjà été sauvegardé.'; $a->strings['Search term was not removed.'] = 'Le terme de recherche n\'a pas été supprimé.'; @@ -2264,7 +2396,7 @@ $a->strings['Since version 2022.09, we\'ve realized that any password longer tha $a->strings['Update Password'] = 'Mettre à jour le mot de passe'; $a->strings['Current Password:'] = 'Mot de passe actuel :'; $a->strings['Your current password to confirm the changes'] = 'Votre mot de passe actuel pour confirmer les modifications'; -$a->strings['Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).'] = 'Les caractères permis sont a-z, A-Z, 0-9 et les caractères de ponctuation sauf les espaces et les deux-points (:).'; +$a->strings['Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces and accentuated letters.'] = 'Les caractères autorisés sont a-z, A-Z, 0-9 et les caractères spéciaux à l\'exception des espaces et des lettres accentuées.'; $a->strings['Password length is limited to 72 characters.'] = 'La taille du mot de passe est limitée à 72 caractères.'; $a->strings['Remaining recovery codes: %d'] = 'Codes de récupération restants : %d'; $a->strings['Invalid code, please retry.'] = 'Code invalide, veuillez réessayer.'; @@ -2298,7 +2430,7 @@ $a->strings['Importing Contacts done'] = 'Import des contacts effectué'; $a->strings['Relocate message has been send to your contacts'] = 'Un message de relocalisation a été envoyé à vos contacts.'; $a->strings['Unable to find your profile. Please contact your admin.'] = 'Impossible de trouver votre profile. Merci de contacter votre administrateur.'; $a->strings['Personal Page Subtypes'] = 'Sous-catégories de page personnelle'; -$a->strings['Community Forum Subtypes'] = 'Sous-catégories de forums communautaires'; +$a->strings['Community Group Subtypes'] = 'Sous-catégories de groupe communautaire'; $a->strings['Account for a personal profile.'] = 'Compte pour profil personnel.'; $a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'Compte pour une organisation qui accepte les demandes comme "Abonnés".'; $a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'Compte pour les miroirs de nouvelles qui accepte automatiquement les de contact comme "Abonnés".'; @@ -2307,7 +2439,7 @@ $a->strings['Account for a regular personal profile that requires manual approva $a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'Compte pour un profil public qui accepte les demandes de contact comme "Abonnés".'; $a->strings['Automatically approves all contact requests.'] = 'Les demandes de participation au forum sont automatiquement acceptées.'; $a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'Les demandes d\'abonnement sont automatiquement acceptées.'; -$a->strings['Private Forum [Experimental]'] = 'Forum privé [expérimental]'; +$a->strings['Private Group [Experimental]'] = 'Groupe Privé [Expérimental]'; $a->strings['Requires manual approval of contact requests.'] = 'Les demandes de participation au forum nécessitent une approbation.'; $a->strings['OpenID:'] = 'OpenID:'; $a->strings['(Optional) Allow this OpenID to login to this account.'] = '&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte.'; @@ -2319,9 +2451,10 @@ $a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'L $a->strings['Password Settings'] = 'Réglages de mot de passe'; $a->strings['Leave password fields blank unless changing'] = 'Laissez les champs de mot de passe vierges, sauf si vous désirez les changer'; $a->strings['Password:'] = 'Mot de passe :'; -$a->strings['Your current password to confirm the changes of the email address'] = 'Votre mot de passe actuel pour confirmer les modifications de votre adresse email.'; +$a->strings['Your current password to confirm the changes of the email address'] = 'Votre mot de passe actuel pour confirmer les modifications de votre adresse de courriel.'; $a->strings['Delete OpenID URL'] = 'Supprimer l\'URL OpenID'; $a->strings['Basic Settings'] = 'Réglages de base'; +$a->strings['Display name:'] = 'Nom d\'affichage :'; $a->strings['Email Address:'] = 'Adresse courriel :'; $a->strings['Your Timezone:'] = 'Votre fuseau horaire :'; $a->strings['Your Language:'] = 'Votre langue :'; @@ -2335,19 +2468,21 @@ $a->strings['Allow your profile to be searchable globally?'] = 'Publier votre pr $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.'] = 'Permet à quiconque de trouver votre profil via une recherche sur n\'importe quel site compatible ou un moteur de recherche.'; $a->strings['Hide your contact/friend list from viewers of your profile?'] = 'Cacher votre liste de contacts/amis des visiteurs de votre profil?'; $a->strings['A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list.'] = 'La liste de vos contacts est affichée sur votre profil. Activer cette option pour désactiver son affichage.'; -$a->strings['Hide your profile details from anonymous viewers?'] = 'Cacher les détails de votre profil pour les lecteurs anonymes.'; -$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.'] = 'Les visiteurs anonymes ne verront que votre image de profil, votre nom affiché, et le surnom que vous utilisez sur votre page de profil. Vos publications publics et réponses seront toujours accessibles par d\'autres moyens.'; +$a->strings['Hide your public content from anonymous viewers'] = 'Masque votre contenu public aux visiteurs anonymes'; +$a->strings['Anonymous visitors will only see your basic profile details. Your public posts and replies will still be freely accessible on the remote servers of your followers and through relays.'] = 'Les visiteurs anonymes ne verront que vos détails de base de profil. Vos publications publiques et vos réponses seront toujours librement accessibles sur les serveurs distants de vos contacts et à travers les relais.'; $a->strings['Make public posts unlisted'] = 'Délister vos publications publiques'; $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.'] = 'Vos publications publiques n\'apparaîtront pas dans les pages communautaires ni les résultats de recherche de ce site et ne seront pas diffusées via les serveurs de relai. Cependant, elles pourront quand même apparaître dans les fils publics de sites distants.'; $a->strings['Make all posted pictures accessible'] = 'Rendre toutes les images envoyées accessibles.'; $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.'] = 'Cette option rend chaque image envoyée accessible par un lien direct. C\'est un contournement pour prendre en compte que la pluplart des autres réseaux ne gèrent pas les droits sur les images. Cependant les images non publiques ne seront pas visibles sur votre album photo.'; $a->strings['Allow friends to post to your profile page?'] = 'Autoriser vos contacts à publier sur votre profil ?'; $a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'Vos contacts peuvent partager des publications sur votre mur. Ces publication seront visibles par vos abonnés.'; -$a->strings['Allow friends to tag your posts?'] = 'Autoriser vos contacts à ajouter des tags à vos publications?'; -$a->strings['Your contacts can add additional tags to your posts.'] = 'Vos contacts peuvent ajouter des tag à vos publications.'; +$a->strings['Allow friends to tag your posts?'] = 'Autoriser vos contacts à ajouter des tags à vos publications ?'; +$a->strings['Your contacts can add additional tags to your posts.'] = 'Vos contacts peuvent ajouter des tags à vos publications.'; $a->strings['Permit unknown people to send you private mail?'] = 'Autoriser les messages privés d\'inconnus?'; $a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Les utilisateurs de Friendica peuvent vous envoyer des messages privés même s\'ils ne sont pas dans vos contacts.'; $a->strings['Maximum private messages per day from unknown people:'] = 'Maximum de messages privés d\'inconnus par jour :'; +$a->strings['Default privacy circle for new contacts'] = 'Cercle de contacts par défaut pour les nouveaux contacts'; +$a->strings['Default privacy circle for new group contacts'] = 'Cercle de contacts par défaut pour les nouveaux contacts du groupe'; $a->strings['Default Post Permissions'] = 'Permissions de publication par défaut'; $a->strings['Expiration settings'] = 'Réglages d\'expiration'; $a->strings['Automatically expire posts after this many days:'] = 'Les publications expirent automatiquement après (en jours) :'; @@ -2361,14 +2496,14 @@ $a->strings['Starring posts keeps them from being expired. That behaviour is ove $a->strings['Only expire posts by others'] = 'Faire expirer uniquement les contenu reçus'; $a->strings['When activated, your own posts never expire. Then the settings above are only valid for posts you received.'] = 'Empêche vos propres publications d\'expirer. S\'applique à tous les choix précédents.'; $a->strings['Notification Settings'] = 'Réglages de notification'; -$a->strings['Send a notification email when:'] = 'Envoyer un courriel de notification quand:'; +$a->strings['Send a notification email when:'] = 'Envoyer un courriel de notification quand :'; $a->strings['You receive an introduction'] = 'Vous recevez une introduction'; $a->strings['Your introductions are confirmed'] = 'Vos introductions sont confirmées'; $a->strings['Someone writes on your profile wall'] = 'Quelqu\'un écrit sur votre mur'; $a->strings['Someone writes a followup comment'] = 'Quelqu\'un vous commente'; $a->strings['You receive a private message'] = 'Vous recevez un message privé'; $a->strings['You receive a friend suggestion'] = 'Vous avez reçu une suggestion d\'abonnement'; -$a->strings['You are tagged in a post'] = 'Vous avez été mentionné•e dans une publication'; +$a->strings['You are tagged in a post'] = 'Vous avez été mentionné(e) dans une publication'; $a->strings['Create a desktop notification when:'] = 'Créer une notification de bureau quand :'; $a->strings['Someone tagged you'] = 'Quelqu\'un vous a mentionné'; $a->strings['Someone directly commented on your post'] = 'Quelqu\'un a commenté directement sur votre publication'; @@ -2394,6 +2529,74 @@ $a->strings['Upload File'] = 'Téléverser le fichier'; $a->strings['Relocate'] = 'Relocaliser'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton.'; $a->strings['Resend relocate message to contacts'] = 'Renvoyer un message de relocalisation aux contacts.'; +$a->strings['Addon Settings'] = 'Paramètres d\'extension'; +$a->strings['No Addon settings configured'] = 'Aucuns paramètres d\'Extension paramétré.'; +$a->strings['Label'] = 'Titre'; +$a->strings['Description'] = 'Description'; +$a->strings['Access Key'] = 'Clé d\'accès'; +$a->strings['Circle/Channel'] = 'Cercle/Chaîne'; +$a->strings['Include Tags'] = 'Inclure des mots clés'; +$a->strings['Exclude Tags'] = 'Exclure des mots clés'; +$a->strings['Full Text Search'] = 'Recherche de texte intégral'; +$a->strings['Delete channel'] = 'Supprimer la chaîne'; +$a->strings['Check to delete this entry from the channel list'] = 'Cochez pour supprimer cette entrée de la liste de chaîne'; +$a->strings['Short name for the channel. It is displayed on the channels widget.'] = 'Nom court de la chaîne. Il est affiché dans le widget des chaînes.'; +$a->strings['This should describe the content of the channel in a few word.'] = 'Décrivez le contenu de votre chaîne en quelques mots.'; +$a->strings['When you want to access this channel via an access key, you can define it here. Pay attention to not use an already used one.'] = 'Si vous accédez à cette chaîne via une clé d\'accès, saisissez là ici. Attention à ne pas saisir une clé déjà utilisée.'; +$a->strings['Select a circle or channel, that your channel should be based on.'] = 'Choisissez un cercle ou une chaîne sur lequel se basera votre chaîne.'; +$a->strings['Comma separated list of tags. A post will be used when it contains any of the listed tags.'] = 'Liste de mots clés séparés par des virgules. Une publication sera affichée si elle contient au moins un de ces mots clés.'; +$a->strings['Comma separated list of tags. If a post contain any of these tags, then it will not be part of nthis channel.'] = 'Liste de mots clés séparés par des virgules. Si une publication contient un de ces mots clés, elle ne sera pas affichée sur cette chaîne.'; +$a->strings['Search terms for the body, supports the "boolean mode" operators from MariaDB. See the help for a complete list of operators and additional keywords: %s'] = 'Recherche les termes dans le corps, supporte les opérateurs "boolean mode" de MariaDB. Consultez l\'aide pour une liste complète des opérateurs et des mots clés additionnels : %s'; +$a->strings['Check to display images in the channel.'] = 'Cochez pour afficher les images dans la chaîne.'; +$a->strings['Check to display videos in the channel.'] = 'Cochez pour afficher la vidéo dans la chaîne.'; +$a->strings['Check to display audio in the channel.'] = 'Cochez pour afficher l\'audio dans la chaîne.'; +$a->strings['This page can be used to define your own channels.'] = 'Cette page permet de définir votre propres chaînes.'; +$a->strings['Add new entry to the channel list'] = 'Ajoute une nouvelle entrée dans la liste des chaînes'; +$a->strings['Add'] = 'Ajouter'; +$a->strings['Current Entries in the channel list'] = 'Entrées actuelles dans la liste des chaînes'; +$a->strings['Delete entry from the channel list'] = 'Supprimer l\'entrée de la liste des chaînes'; +$a->strings['Delete entry from the channel list?'] = 'Supprimer l\'entrée de la liste des chaînes ?'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'Impossible de se connecter au compte courriel configuré.'; +$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; +$a->strings['Built-in support for %s connectivity is enabled'] = 'Le support intégré pour la connectivité %s est activé'; +$a->strings['Built-in support for %s connectivity is disabled'] = 'Le support intégré pour la connectivité %s est désactivé'; +$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; +$a->strings['Email access is disabled on this site.'] = 'L\'accès courriel est désactivé sur ce site.'; +$a->strings['None'] = 'Aucun(e)'; +$a->strings['General Social Media Settings'] = 'Paramètres généraux des réseaux sociaux'; +$a->strings['Followed content scope'] = 'Étendue des contenus suivis'; +$a->strings['By default, conversations in which your follows participated but didn\'t start will be shown in your timeline. You can turn this behavior off, or expand it to the conversations in which your follows liked a post.'] = 'Par défaut, les conversations dans lesquelles vos comptes suivis ont participé mais qu\'ils n\'ont pas commencées seront affichées dans votre flux. Vous pouvez désactiver ce comportement, ou l\'étendre aux conversations dans lesquelles vos comptes suivis ont aimé une publication.'; +$a->strings['Only conversations my follows started'] = 'Seulement les conversations démarrées par mes comptes suivis'; +$a->strings['Conversations my follows started or commented on (default)'] = 'Les conversations que mes comptes suivis ont commencé ou commentées (par défaut)'; +$a->strings['Any conversation my follows interacted with, including likes'] = 'Toute conversation avec laquelle mes comptes suivis ont interagi, y compris les "J\'aime"'; +$a->strings['Enable Content Warning'] = 'Activer les avertissements de contenus (CW)'; +$a->strings['Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.'] = 'Les utilisateurs de plate-formes comme Mastodon ou Pleroma ont la possibilité de définir un avertissement de contenu qui cache le contenu de leurs publications par défaut. Quand cette option est désactivée, les publications avec un avertissement de contenu ne sont pas filtrées et le libellé associé est utilisé comme titre. Ce filtrage est indépendant des autres filtrages de contenu.'; +$a->strings['Enable intelligent shortening'] = 'Activer l\'abbréviation intelligente'; +$a->strings['Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.'] = 'L\'abbréviation intelligente cherche le lien le plus adapté dans les publications abbréviées. Quand elle est désactivée, le lien est toujours celui de la publication Friendica initiale.'; +$a->strings['Enable simple text shortening'] = 'Activer l\'abbréviation de texte simple'; +$a->strings['Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'] = 'Cette option raccourcit le texte des publications au nombre de caractères exact au lieu d\'attendre la fin du paragraphe.'; +$a->strings['Attach the link title'] = 'Attacher le titre du lien (Diaspora)'; +$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.'] = 'Si vos publications contiennent un lien, le titre de la page associée sera attaché à la publication à destination de vos contacts Diaspora. C\'est principalement utile avec les contacts "remote-self" qui partagent du contenu de flux RSS/Atom.'; +$a->strings['API: Use spoiler field as title'] = 'API : Utiliser le champ spoiler (divulgachis) en tant que titre'; +$a->strings['When activated, the "spoiler_text" field in the API will be used for the title on standalone posts. When deactivated it will be used for spoiler text. For comments it will always be used for spoiler text.'] = 'Quand activé, le champ "spoiler_text" dans l\'API sera utilisé pour le titre des publications individuelles. Quand désactivé, il sera utilisé pour du texte spoiler (divulgachis). Pour les commentaires, il sera toujours utilisé pour du texte spoiler.'; +$a->strings['API: Automatically links at the end of the post as attached posts'] = 'API : Afficher comme publications attachés les liens ajoutés en fin de publication'; +$a->strings['When activated, added links at the end of the post react the same way as added links in the web interface.'] = 'Quand activé, les liens ajoutés à la fin d\'une publication fonctionnent de la même manière que les liens ajoutés dans l\'interface web.'; +$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Votre ancient compte ActivityPub/GNU Social'; +$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Si vous saisissez votre adresse de compte précédente d\'un réseau basé sur ActivityPub ou GNU Social/Statusnet (au format utilisateur@domaine.tld), vos contacts seront ajoutés autoamtiquement. Le champ sera vidé quand l\'opération sera terminé.'; +$a->strings['Repair OStatus subscriptions'] = 'Réparer les abonnements OStatus'; +$a->strings['Email/Mailbox Setup'] = 'Réglages de courriel/boîte à lettre'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Si vous souhaitez communiquer avec vos contacts "courriel" (facultatif), merci de nous indiquer comment vous connecter à votre boîte.'; +$a->strings['Last successful email check:'] = 'Dernière vérification réussie des courriels :'; +$a->strings['IMAP server name:'] = 'Nom du serveur IMAP :'; +$a->strings['IMAP port:'] = 'Port IMAP :'; +$a->strings['Security:'] = 'Sécurité :'; +$a->strings['Email login name:'] = 'Nom de connexion :'; +$a->strings['Email password:'] = 'Mot de passe :'; +$a->strings['Reply-to address:'] = 'Adresse de réponse :'; +$a->strings['Send public posts to all email contacts:'] = 'Envoyer les publications publiques à tous les contacts courriels :'; +$a->strings['Action after import:'] = 'Action après import :'; +$a->strings['Move to folder'] = 'Déplacer vers'; +$a->strings['Move to folder:'] = 'Déplacer vers :'; $a->strings['Delegation successfully granted.'] = 'Délégation accordée avec succès.'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'Utilisateur parent introuvable, indisponible ou mot de passe incorrect.'; $a->strings['Delegation successfully revoked.'] = 'Délégation retirée avec succès.'; @@ -2409,16 +2612,19 @@ $a->strings['Delegates'] = 'Délégataires'; $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.'] = 'Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l\'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu\'un en qui vous n\'avez pas une confiance absolue.'; $a->strings['Existing Page Delegates'] = 'Délégataires existants'; $a->strings['Potential Delegates'] = 'Délégataires potentiels'; -$a->strings['Add'] = 'Ajouter'; $a->strings['No entries.'] = 'Aucune entrée.'; $a->strings['The theme you chose isn\'t available.'] = 'Le thème que vous avez choisi n\'est pas disponible.'; $a->strings['%s - (Unsupported)'] = '%s- (non supporté)'; +$a->strings['No preview'] = 'Pas d\'aperçu'; +$a->strings['No image'] = 'Pas d\'image'; +$a->strings['Small Image'] = 'Petite image'; +$a->strings['Large Image'] = 'Grande image'; $a->strings['Display Settings'] = 'Affichage'; $a->strings['General Theme Settings'] = 'Paramètres généraux de thème'; $a->strings['Custom Theme Settings'] = 'Paramètres personnalisés de thème'; $a->strings['Content Settings'] = 'Paramètres de contenu'; $a->strings['Theme settings'] = 'Réglages du thème graphique'; -$a->strings['Calendar'] = 'Calendrier'; +$a->strings['Timelines'] = 'Flux'; $a->strings['Display Theme:'] = 'Thème d\'affichage:'; $a->strings['Mobile Theme:'] = 'Thème mobile:'; $a->strings['Number of items to display per page:'] = 'Nombre d’éléments par page :'; @@ -2426,8 +2632,6 @@ $a->strings['Maximum of 100 items'] = 'Maximum de 100 éléments'; $a->strings['Number of items to display per page when viewed from mobile device:'] = 'Nombre d\'éléments à afficher par page pour un appareil mobile'; $a->strings['Update browser every xx seconds'] = 'Mettre à jour l\'affichage toutes les xx secondes'; $a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Minimum de 10 secondes. Saisir -1 pour désactiver.'; -$a->strings['Automatic updates only at the top of the post stream pages'] = 'Rafraîchir le flux uniquement en haut de la page'; -$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.'] = 'Le rafraîchissement automatique du flux peut ajouter de nouveaux contenus en haut de la liste, ce qui peut affecter le défilement de la page et gêner la lecture s\'il s\'effectue ailleurs qu\'en haut de la page.'; $a->strings['Display emoticons'] = 'Afficher les émoticônes'; $a->strings['When enabled, emoticons are replaced with matching symbols.'] = 'Quand activé, les émoticônes sont remplacées par les symboles correspondants.'; $a->strings['Infinite scroll'] = 'Défilement infini'; @@ -2436,18 +2640,30 @@ $a->strings['Enable Smart Threading'] = 'Activer le fil de discussion intelligen $a->strings['Enable the automatic suppression of extraneous thread indentation.'] = 'Activer la suppression automatique de l\'indentation excédentaire des fils de discussion.'; $a->strings['Display the Dislike feature'] = 'Afficher la fonctionnalité "Je n\'aime pas"'; $a->strings['Display the Dislike button and dislike reactions on posts and comments.'] = 'Afficher le bouton "Je n\'aime pas" et les réactions "Je n\'aime pas" sur les publications et les commentaires.'; -$a->strings['Display the resharer'] = 'Afficher le repartageur'; -$a->strings['Display the first resharer as icon and text on a reshared item.'] = 'Afficher le premier repartageur en tant qu\'icône et texte sur un élément repartagé.'; +$a->strings['Display the resharer'] = 'Afficher le partageur'; +$a->strings['Display the first resharer as icon and text on a reshared item.'] = 'Afficher le premier partageur en tant qu\'icône et texte sur un élément partagé.'; $a->strings['Stay local'] = 'Rester local'; $a->strings['Don\'t go to a remote system when following a contact link.'] = 'Ne pas aller sur un système distant lors du suivi du lien d\'un contact.'; +$a->strings['Link preview mode'] = 'Mode de prévisualisation des liens'; +$a->strings['Appearance of the link preview that is added to each post with a link.'] = 'Apparence de la prévisualisation du lien qui est ajoutée à chaque publication comprenant un lien.'; +$a->strings['Bookmark'] = 'Favoris'; +$a->strings['Enable timelines that you want to see in the channels widget. Bookmark timelines that you want to see in the top menu.'] = 'Activez les flux que vous souhaitez voir dans le widget Chaînes. Mettez en favoris les flux que vous souhaitez voir dans le menu supérieur.'; +$a->strings['Channel languages:'] = 'Langues de la chaîne :'; +$a->strings['Select all languages that you want to see in your channels.'] = 'Sélectionnez les langues que vous souhaitez voir dans vos chaînes.'; $a->strings['Beginning of week:'] = 'Début de la semaine :'; -$a->strings['Profile Name is required.'] = 'Le nom du profil est requis.'; +$a->strings['Default calendar view:'] = 'Vue par défaut du calendrier :'; +$a->strings['Additional Features'] = 'Fonctions supplémentaires'; +$a->strings['Connected Apps'] = 'Applications connectées'; +$a->strings['Remove authorization'] = 'Révoquer l\'autorisation'; +$a->strings['Display Name is required.'] = 'Le nom d\'affichage est requis.'; $a->strings['Profile couldn\'t be updated.'] = 'Le profil n\'a pas pu être mis à jour.'; $a->strings['Label:'] = 'Description :'; $a->strings['Value:'] = 'Contenu :'; $a->strings['Field Permissions'] = 'Permissions du champ'; $a->strings['(click to open/close)'] = '(cliquer pour ouvrir/fermer)'; $a->strings['Add a new profile field'] = 'Ajouter un nouveau champ de profil'; +$a->strings['The homepage is verified. A rel="me" link back to your Friendica profile page was found on the homepage.'] = 'La page d\'accueil est vérifiée. Un lien rel="me" vers votre page de profil Friendica a été trouvé sur la page d\'accueil.'; +$a->strings['To verify your homepage, add a rel="me" link to it, pointing to your profile URL (%s).'] = 'Pour vérifier votre page d\'accueil, ajouter un lien rel="me" à celle-ci, pointant vers l\'URL de votre profil (%s).'; $a->strings['Profile Actions'] = 'Actions de Profil'; $a->strings['Edit Profile Details'] = 'Éditer les détails du profil'; $a->strings['Change Profile Photo'] = 'Changer la photo du profil'; @@ -2456,7 +2672,15 @@ $a->strings['Location'] = 'Localisation'; $a->strings['Miscellaneous'] = 'Divers'; $a->strings['Custom Profile Fields'] = 'Champs de profil personalisés'; $a->strings['Upload Profile Photo'] = 'Téléverser une photo de profil'; -$a->strings['Display name:'] = 'Nom d\'utilisateur :'; +$a->strings['

    Custom fields appear on your profile page.

    +

    You can use BBCodes in the field values.

    +

    Reorder by dragging the field title.

    +

    Empty the label field to remove a custom field.

    +

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

    '] = '

    Les champs de profil personnalisés apparaissent sur votre page de profil.

    +

    Vous pouvez utilisez les BBCodes dans le contenu des champs.

    +

    Triez les champs en glissant-déplaçant leur titre.

    +

    Laissez le titre d\'un champ vide pour le supprimer lors de la soumission du formulaire .

    +

    Les champs non-publics peuvent être consultés uniquement par les contacts Friendica autorisés ou par les contacts Friendica de cercles autorisés.

    '; $a->strings['Street Address:'] = 'Adresse postale :'; $a->strings['Locality/City:'] = 'Ville :'; $a->strings['Region/State:'] = 'Région / État :'; @@ -2471,15 +2695,6 @@ $a->strings['Public Keywords:'] = 'Mots-clés publics :'; $a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Utilisés pour vous suggérer des abonnements. Ils peuvent être vus par autrui)'; $a->strings['Private Keywords:'] = 'Mots-clés privés :'; $a->strings['(Used for searching profiles, never shown to others)'] = '(Utilisés pour rechercher des profils. Ils ne seront jamais montrés à autrui)'; -$a->strings['

    Custom fields appear on your profile page.

    -

    You can use BBCodes in the field values.

    -

    Reorder by dragging the field title.

    -

    Empty the label field to remove a custom field.

    -

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

    '] = '

    Les champs de profil personnalisés apparaissent sur votre page de profil.

    -

    Vous pouvez utilisez les BBCodes dans le contenu des champs.

    -

    Triez les champs en glissant-déplaçant leur titre.

    -

    Laissez le titre d\'un champ vide pour le supprimer lors de la soumission du formulaire .

    -

    Les champs non-publics peuvent être consultés uniquement par les contacts Friendica autorisés dans les permissions.

    '; $a->strings['Image size reduction [%s] failed.'] = 'Réduction de la taille de l\'image [%s] échouée.'; $a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d\'aventure la nouvelle photo n\'apparaissait pas immédiatement.'; $a->strings['Unable to process image'] = 'Impossible de traiter l\'image'; @@ -2496,6 +2711,24 @@ $a->strings['Upload Picture:'] = 'Téléverser une photo :'; $a->strings['or'] = 'ou'; $a->strings['skip this step'] = 'ignorer cette étape'; $a->strings['select a photo from your photo albums'] = 'choisissez une photo depuis vos albums'; +$a->strings['There was a validation error, please make sure you\'re logged in with the account you want to remove and try again.'] = 'Il y a eu une erreur de validation, vérifiez que vous êtes connecté avec le compte que vous souhaitez supprimer et réessayez.'; +$a->strings['If this error persists, please contact your administrator.'] = 'Si cette erreur persiste, veuillez contacter votre administrateur.'; +$a->strings['[Friendica System Notify]'] = '[Notification Système de Friendica]'; +$a->strings['User deleted their account'] = 'L\'utilisateur a supprimé son compte'; +$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Sur votre nœud Friendica, un utilisateur a supprimé son compte. Veuillez vous assurer que ses données sont supprimées des sauvegardes.'; +$a->strings['The user id is %d'] = 'L\'identifiant d\'utilisateur est %d'; +$a->strings['Your account has been successfully removed. Bye bye!'] = 'Votre compte a été supprimé avec succès. Au revoir !'; +$a->strings['Remove My Account'] = 'Supprimer mon compte'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Ceci supprimera totalement votre compte. Cette opération est irréversible.'; +$a->strings['Please enter your password for verification:'] = 'Merci de saisir votre mot de passe pour vérification :'; +$a->strings['Do you want to ignore this server?'] = 'Voulez-vous ignorer ce serveur ?'; +$a->strings['Do you want to unignore this server?'] = 'Voulez-vous ne plus ignorer ce serveur ?'; +$a->strings['Remote server settings'] = 'Paramètres du serveur distant'; +$a->strings['Server URL'] = 'URL du serveur'; +$a->strings['Settings saved'] = 'Paramètres sauvegardés'; +$a->strings['Here you can find all the remote servers you have taken individual moderation actions against. For a list of servers your node has blocked, please check out the Information page.'] = 'Vous trouverez ici tous les serveurs distants pour lesquels vous avez pris des mesures de modération individuelles. Pour obtenir une liste des serveurs que votre nœud a bloqués, veuillez consulter la page Information.'; +$a->strings['Delete all your settings for the remote server'] = 'Supprime tous vos paramètres du serveur distant'; +$a->strings['Save changes'] = 'Sauvegarder les changements'; $a->strings['Please enter your password to access this page.'] = 'Veuillez saisir votre mot de passe pour accéder à cette page.'; $a->strings['App-specific password generation failed: The description is empty.'] = 'La génération du mot de passe spécifique à l\'application a échoué : la description est vide.'; $a->strings['App-specific password generation failed: This description already exists.'] = 'La génération du mot de passe spécifique à l\'application a échoué : cette description existe déjà.'; @@ -2505,7 +2738,6 @@ $a->strings['App-specific password successfully revoked.'] = 'Mot de passe spéc $a->strings['Two-factor app-specific passwords'] = 'Authentification à deux facteurs : Mots de passe spécifiques aux applications'; $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.

    '] = '

    Les mots de passe spécifiques aux application sont des mots de passe générés aléatoirement pour vous identifier avec votre compte Friendica sur des applications tierce-partie qui n\'offrent pas d\'authentification à deux facteurs.

    '; $a->strings['Make sure to copy your new app-specific password now. You won’t be able to see it again!'] = 'Veillez à copier votre nouveau mot de passe spécifique à l\'application maintenant. Il ne sera plus jamais affiché!'; -$a->strings['Description'] = 'Description'; $a->strings['Last Used'] = 'Dernière utilisation'; $a->strings['Revoke'] = 'Révoquer'; $a->strings['Revoke All'] = 'Révoquer tous'; @@ -2590,12 +2822,46 @@ $a->strings['Export all'] = 'Tout exporter'; $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)'] = 'Exporte vos informations de compte, vos contacts et toutes vos publications au format JSON. Ce processus peut prendre beaucoup de temps et générer un fichier de taille importante. Utilisez cette fonctionnalité pour faire une sauvegarde complète de votre compte (vos photos ne sont pas exportées).'; $a->strings['Export Contacts to CSV'] = 'Exporter vos contacts au format CSV'; $a->strings['Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon.'] = 'Exporter vos abonnements au format CSV. Compatible avec Mastodon.'; +$a->strings['The top-level post isn\'t visible.'] = 'La publication de premier niveau n\'est pas visible.'; +$a->strings['The top-level post was deleted.'] = 'La publication de premier niveau a été supprimée.'; +$a->strings['This node has blocked the top-level author or the author of the shared post.'] = 'Ce nœud a bloqué l\'auteur de premier niveau ou l\'auteur de la publication partagée.'; +$a->strings['You have ignored or blocked the top-level author or the author of the shared post.'] = 'Vous avez ignoré ou bloqué l\'auteur de premier niveau ou l\'auteur de la publication partagée.'; +$a->strings['You have ignored the top-level author\'s server or the shared post author\'s server.'] = 'Vous avez ignoré le serveur de l\'auteur de premier niveau ou le serveur de l\'auteur de la publication partagée.'; +$a->strings['Conversation Not Found'] = 'Conversation Non Trouvée'; +$a->strings['Unfortunately, the requested conversation isn\'t available to you.'] = 'Malheureusement, la conversation demandée n\'est pas disponible pour vous.'; +$a->strings['Possible reasons include:'] = 'Les raisons possibles sont :'; $a->strings['Stack trace:'] = 'Stack trace:'; $a->strings['Exception thrown in %s:%d'] = 'Exception produite dans %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.'] = 'Au moment de l\'inscription, et afin de fournir des communications entre le compte de l\'utilisateur et ses contacts, l\'utilisateur doit fournir un nom d\'affichage (nom de plume), un nom d\'utilisateur (pseudo) et une adresse de courriel fonctionnelle. Les noms seront accessibles sur la page de profil du compte par tout visiteur de la page, même si les autres informations de profil ne sont pas affichées. L\'adresse de courriel ne sera utilisée que pour envoyer des notifications à l\'utilisateur à propos de ses interactions, mais ne sera pas affichée de manière visible. Le référencement du compte dans le répertoire des comptes du nœud ou le répertoire global des utilisateurs est optionnel et peut être contrôlé dans les paramètres utilisateur, il n\'est pas nécessaire pour la communication. '; $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.'] = 'Ces données sont requises pour la communication et transférées aux nœuds des partenaires de communication, et sont stockées ici. Les utilisateurs peuvent ajouter des données privées additionnelles qui peuvent être transmises aux comptes de leurs partenaires de communication.'; -$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.'] = 'A tout moment un utilisateur identifié peut exporter les données de son compte à partir des paramètres du compte. Si l\'utilisateur souhaite supprimer son compte, il peut le faire à %1$s/removeme. La suppression du compte sera permanente. La suppression des données sera également demandée aux nœuds des partenaires de communication.'; +$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/settings/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners.'] = 'A n\'importe quel moment, un utilisateur connecté peut exporter les données de son compte à partir des Paramètres du compte. Si l\'utilisateur souhaite supprimer son compte, il peut le faire à partir de la page %1$s/settings/removeme. La suppression du compte sera permanente. La suppression des données sera également demandée aux noeuds des partenaires de communication.'; $a->strings['Privacy Statement'] = 'Politique de Confidentialité'; +$a->strings['Rules'] = 'Règles'; +$a->strings['Parameter uri_id is missing.'] = 'Le paramètre uri_id est manquant.'; +$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'L\'objet recherché n\'existe pas ou a été supprimé.'; +$a->strings['You are now logged in as %s'] = 'Vous êtes maintenant connecté en tant que %s'; +$a->strings['Switch between your accounts'] = 'Changer de compte'; +$a->strings['Manage your accounts'] = 'Gérér vos comptes'; +$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer.'; +$a->strings['Select an identity to manage: '] = 'Choisir une identité à gérer: '; +$a->strings['User imports on closed servers can only be done by an administrator.'] = 'L\'import d\'utilisateur sur un serveur fermé ne peut être effectué que par un administrateur.'; +$a->strings['Move account'] = 'Migrer le compte'; +$a->strings['You can import an account from another Friendica server.'] = 'Vous pouvez importer un compte d\'un autre serveur Friendica.'; +$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.'] = 'Vous devez exporter votre compte à partir de l\'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d\'informer vos contacts que vous avez déménagé ici.'; +$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Cette fonctionalité est expérimentale. Il n\'est pas possible d\'importer des contacts depuis le réseau OStatus (GNU Social/Statusnet) ou depuis Diaspora.'; +$a->strings['Account file'] = 'Fichier du compte'; +$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Pour exporter votre compte, allez dans "Paramètres> Exporter vos données personnelles" et sélectionnez "exportation de compte"'; +$a->strings['Error decoding account file'] = 'Une erreur a été détecté en décodant un fichier utilisateur'; +$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?'; +$a->strings['User \'%s\' already exists on this server!'] = 'L\'utilisateur \'%s\' existe déjà sur ce serveur!'; +$a->strings['User creation error'] = 'Erreur de création d\'utilisateur'; +$a->strings['%d contact not imported'] = [ + 0 => '%d contacts non importés', + 1 => '%d contacts non importés', + 2 => '%d contacts non importés', +]; +$a->strings['User profile creation error'] = 'Erreur de création du profil utilisateur'; +$a->strings['Done. You can now login with your username and password'] = 'Action réalisée. Vous pouvez désormais vous connecter avec votre nom d\'utilisateur et votre mot de passe'; $a->strings['Welcome to Friendica'] = 'Bienvenue sur Friendica'; $a->strings['New Member Checklist'] = 'Checklist du nouvel utilisateur'; $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.'] = 'Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n\'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d\'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement.'; @@ -2619,8 +2885,8 @@ $a->strings['Go to Your Site\'s Directory'] = 'Consulter l\'Annuaire de votre Si $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.'] = 'La page Annuaire vous permet de trouver d\'autres personnes au sein de ce réseaux ou parmi d\'autres sites fédérés. Cherchez un lien Relier ou Suivre sur leur profil. Vous pourrez avoir besoin d\'indiquer votre adresse d\'identité.'; $a->strings['Finding New People'] = 'Trouver de nouvelles personnes'; $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.'] = 'Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux contacts. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d\'abonnement devraient commencer à apparaître au bout de 24 heures.'; -$a->strings['Group Your Contacts'] = 'Grouper vos contacts'; -$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.'] = 'Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau.'; +$a->strings['Add Your Contacts To Circle'] = 'Ajouter vos contacts à des cercles'; +$a->strings['Once you have made some friends, organize them into private conversation circles from the sidebar of your Contacts page and then you can interact with each circle privately on your Network page.'] = 'Une fois que vous vous êtes fait des amis, organisez-les en cercles de conversation privés dans la barre latérale de votre page Contacts. Vous pouvez ensuite interagir avec chaque cercle en privé sur votre page Réseau.'; $a->strings['Why Aren\'t My Posts Public?'] = 'Pourquoi mes éléments ne sont pas publics ?'; $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.'] = 'Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d\'information, consultez la section "aide" du lien ci-dessus.'; $a->strings['Getting Help'] = 'Obtenir de l\'aide'; @@ -2654,7 +2920,7 @@ $a->strings['%1$s shared a post'] = '%1$s a partagé une publication'; $a->strings['%1$s wants to attend your event %2$s'] = '%1$s souhaite participer à votre évènement %2$s'; $a->strings['%1$s does not want to attend your event %2$s'] = '%1$s ne souhaite pas participer à votre évènement %2$s'; $a->strings['%1$s maybe wants to attend your event %2$s'] = '%1$s souhaite peut-être participer à votre évènement %2$s'; -$a->strings['%1$s tagged you on %2$s'] = '%1$s vous a mentionné•e dans %2$s'; +$a->strings['%1$s tagged you on %2$s'] = '%1$s vous a mentionné(e) dans %2$s'; $a->strings['%1$s replied to you on %2$s'] = '%1$s vous a répondu dans %2$s'; $a->strings['%1$s commented in your thread %2$s'] = '%1$s a commenté dans votre conversation %2$s'; $a->strings['%1$s commented on your comment %2$s'] = '%1$s a répondu à votre commentaire %2$s'; @@ -2696,7 +2962,7 @@ $a->strings['Please visit %s to approve or reject the suggestion.'] = 'Merci de $a->strings['%s Connection accepted'] = '%s Demande d\'abonnement acceptée'; $a->strings['\'%1$s\' has accepted your connection request at %2$s'] = '\'%1$s\' a accepté votre demande de connexion à %2$s'; $a->strings['%2$s has accepted your [url=%1$s]connection request[/url].'] = '%2$s a accepté votre [url=%1$s]demande de connexion[/url].'; -$a->strings['You are now mutual friends and may exchange status updates, photos, and email without restriction.'] = 'Vous êtes désormais mutuellement amis, et pouvez échanger des mises-à-jour d\'état, des photos, et des messages sans restriction.'; +$a->strings['You are now mutual friends and may exchange status updates, photos, and email without restriction.'] = 'Vous êtes désormais mutuellement amis, et pouvez échanger des mises-à-jour d\'état, des photos, et des courriels sans restriction.'; $a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'Veuillez visiter %s si vous souhaitez modifier cette relation.'; $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\' a choisi de vous accepter comme fan ce qui empêche certains canaux de communication tel les messages privés et certaines interactions de profil. Ceci est une page de célébrité ou de communauté, ces paramètres ont été appliqués automatiquement.'; $a->strings['\'%1$s\' may choose to extend this into a two-way or more permissive relationship in the future.'] = '%1$s peut choisir à l\'avenir de rendre cette relation réciproque ou au moins plus permissive.'; @@ -2710,8 +2976,14 @@ Login Name: %s (%s)'] = 'Nom complet : %s Adresse du site : %s Identifiant : %s (%s)'; $a->strings['Please visit %s to approve or reject the request.'] = 'Veuillez visiter %s pour approuver ou rejeter la demande.'; -$a->strings['%s %s tagged you'] = '%s%s vous a mentionné•e'; +$a->strings['new registration'] = 'Nouvelle inscription'; +$a->strings['You\'ve received a new registration from \'%1$s\' at %2$s'] = 'Vous avez reçu une nouvelle inscription de \'%1$s\' à %2$s'; +$a->strings['You\'ve received a [url=%1$s]new registration[/url] from %2$s.'] = 'Vous avez reçu une [url=%1$s]nouvelle inscription[/url] de %2$s.'; +$a->strings['Please visit %s to have a look at the new registration.'] = 'Merci de visiter %s pour consulter la nouvelle inscription.'; +$a->strings['%s %s tagged you'] = '%s%s vous a mentionné(e)'; $a->strings['%s %s shared a new post'] = '%s %s a partagé une nouvelle publication'; +$a->strings['%1$s %2$s liked your post #%3$d'] = '%1$s %2$s a aimé votre publication #%3$d'; +$a->strings['%1$s %2$s liked your comment on #%3$d'] = '%1$s %2$s a aimé votre commentaire sur #%3$d'; $a->strings['This message was sent to you by %s, a member of the Friendica social network.'] = 'Ce message vous a été envoyé par %s, membre du réseau social Friendica.'; $a->strings['You may visit them online at %s'] = 'Vous pouvez leur rendre visite sur %s'; $a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages.'; @@ -2725,6 +2997,9 @@ $a->strings['Edit'] = 'Éditer'; $a->strings['Delete globally'] = 'Effacer globalement'; $a->strings['Remove locally'] = 'Effacer localement'; $a->strings['Block %s'] = 'Bloquer %s'; +$a->strings['Ignore %s'] = 'Ignorer %s'; +$a->strings['Collapse %s'] = 'Réduire %s'; +$a->strings['Report post'] = 'Signaler la publication'; $a->strings['Save to folder'] = 'Sauvegarder dans le dossier'; $a->strings['I will attend'] = 'Je vais participer'; $a->strings['I will not attend'] = 'Je ne vais pas participer'; @@ -2739,11 +3014,11 @@ $a->strings['Pin'] = 'Épingler'; $a->strings['Unpin'] = 'Désépingler'; $a->strings['Toggle pin status'] = 'Commuter le statut de l\'épingle'; $a->strings['Pinned'] = 'Épinglé'; -$a->strings['Add tag'] = 'Ajouter une étiquette'; +$a->strings['Add tag'] = 'Ajouter un tag'; $a->strings['Quote share this'] = 'Citer et repartager ceci'; $a->strings['Quote Share'] = 'Citer et repartager'; -$a->strings['Reshare this'] = 'Repartager ceci'; -$a->strings['Reshare'] = 'Repartager'; +$a->strings['Reshare this'] = 'Partager ceci'; +$a->strings['Reshare'] = 'Partager'; $a->strings['Cancel your Reshare'] = 'Annuler votre repartage'; $a->strings['Unshare'] = 'Ne plus partager'; $a->strings['%s (Received %s)'] = '%s ( Reçu %s)'; @@ -2751,6 +3026,9 @@ $a->strings['Comment this item on your system'] = 'Commenter ce sujet sur votre $a->strings['Remote comment'] = 'Commentaire distant'; $a->strings['Share via ...'] = 'Partager par...'; $a->strings['Share via external services'] = 'Partager par des services externes'; +$a->strings['Unknown parent'] = 'Parent inconnu'; +$a->strings['in reply to %s'] = 'en réponse à %s'; +$a->strings['Parent is probably private or not federated.'] = 'Le parent est probablement privé ou non fédéré.'; $a->strings['to'] = 'à'; $a->strings['via'] = 'via'; $a->strings['Wall-to-Wall'] = 'Inter-mur'; @@ -2769,6 +3047,16 @@ $a->strings['%d comment'] = [ ]; $a->strings['Show more'] = 'Montrer plus'; $a->strings['Show fewer'] = 'Montrer moins'; +$a->strings['Reshared by: %s'] = 'Partagé par : %s'; +$a->strings['Viewed by: %s'] = 'Vu par : %s'; +$a->strings['Liked by: %s'] = 'Aimé par : %s'; +$a->strings['Disliked by: %s'] = 'Pas aimé par : %s'; +$a->strings['Attended by: %s'] = 'Y assisteront : %s'; +$a->strings['Maybe attended by: %s'] = 'Y assisteront peut-être : %s'; +$a->strings['Not attended by: %s'] = 'N\'y assisteront pas : %s'; +$a->strings['Reacted with %s by: %s'] = 'La réaction %s a été faite par : %s'; +$a->strings['Chat'] = 'Chat'; +$a->strings['(no subject)'] = '(aucun sujet)'; $a->strings['%s is now following %s.'] = '%s suit désormais %s.'; $a->strings['following'] = 'following'; $a->strings['%s stopped following %s.'] = '%s ne suit plus %s.'; @@ -2799,7 +3087,6 @@ $a->strings['second'] = 'seconde'; $a->strings['seconds'] = 'secondes'; $a->strings['in %1$d %2$s'] = 'dans %1$d %2$s'; $a->strings['%1$d %2$s ago'] = 'Il y a %1$d %2$s'; -$a->strings['(no subject)'] = '(aucun sujet)'; $a->strings['Notification from Friendica'] = 'Notification de Friendica'; $a->strings['Empty Post'] = 'Publication vide'; $a->strings['default'] = 'Par défaut'; @@ -2857,7 +3144,7 @@ $a->strings['Center'] = 'Centré'; $a->strings['Color scheme'] = 'Schéma de couleurs'; $a->strings['Posts font size'] = 'Taille de texte des publications'; $a->strings['Textareas font size'] = 'Taille de police des zones de texte'; -$a->strings['Comma separated list of helper forums'] = 'Liste de forums d\'entraide, séparés par des virgules'; +$a->strings['Comma separated list of helper groups'] = 'Liste de groupe d\'entraide, séparés par des virgules'; $a->strings['don\'t show'] = 'cacher'; $a->strings['show'] = 'montrer'; $a->strings['Set style'] = 'Définir le style'; diff --git a/view/lang/gd/messages.po b/view/lang/gd/messages.po index 0ccb5cd01..893c77202 100644 --- a/view/lang/gd/messages.po +++ b/view/lang/gd/messages.po @@ -1,5 +1,5 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: @@ -7,539 +7,79 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-05 15:51+0200\n" +"POT-Creation-Date: 2023-09-18 05:30+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Gaelic, Scottish (http://www.transifex.com/Friendica/friendica/language/gd/)\n" +"Language-Team: Gaelic, Scottish (http://app.transifex.com/Friendica/friendica/language/gd/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: gd\n" "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n" -#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:39 mod/redir.php:36 -#: mod/redir.php:177 src/Module/Conversation/Community.php:181 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: 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:43 -msgid "Access denied." -msgstr "Chaidh inntrigeadh a dhiùltadh." - -#: mod/cal.php:63 mod/cal.php:80 mod/photos.php:69 mod/photos.php:140 -#: mod/photos.php:798 src/Model/Profile.php:235 src/Module/Feed.php:72 -#: src/Module/HCard.php:52 src/Module/Profile/Common.php:41 -#: src/Module/Profile/Common.php:52 src/Module/Profile/Contacts.php:40 -#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Media.php:38 -#: src/Module/Profile/Status.php:59 src/Module/Register.php:267 -#: src/Module/RemoteFollow.php:58 -msgid "User not found." -msgstr "Cha deach an cleachdaiche a lorg." - -#: mod/cal.php:122 mod/display.php:262 src/Module/Profile/Profile.php:94 -#: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:110 -#: src/Module/Update/Profile.php:56 -msgid "Access to this profile has been restricted." -msgstr "Chaidh an t-inntrigeadh dhan phròifil seo a chuingeachadh." - -#: mod/cal.php:243 mod/events.php:374 src/Content/Nav.php:196 -#: src/Content/Nav.php:260 src/Module/BaseProfile.php:84 -#: src/Module/BaseProfile.php:95 view/theme/frio/theme.php:234 -#: view/theme/frio/theme.php:238 -msgid "Events" -msgstr "Tachartasan" - -#: mod/cal.php:244 mod/events.php:375 -msgid "View" -msgstr "Seall" - -#: mod/cal.php:245 mod/events.php:377 -msgid "Previous" -msgstr "Air ais" - -#: mod/cal.php:246 mod/events.php:378 src/Module/Install.php:214 -msgid "Next" -msgstr "Air adhart" - -#: mod/cal.php:249 mod/events.php:383 src/Model/Event.php:460 -msgid "today" -msgstr "an-diugh" - -#: mod/cal.php:250 mod/events.php:384 src/Model/Event.php:461 -#: src/Util/Temporal.php:334 -msgid "month" -msgstr "mìos" - -#: mod/cal.php:251 mod/events.php:385 src/Model/Event.php:462 -#: src/Util/Temporal.php:335 -msgid "week" -msgstr "seachdain" - -#: mod/cal.php:252 mod/events.php:386 src/Model/Event.php:463 -#: src/Util/Temporal.php:336 -msgid "day" -msgstr "latha" - -#: mod/cal.php:253 mod/events.php:387 -msgid "list" -msgstr "liosta" - -#: mod/cal.php:265 src/Console/User.php:182 src/Model/User.php:663 -#: 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:74 -msgid "User not found" -msgstr "Cha deach an cleachdaiche a lorg" - -#: mod/cal.php:274 -msgid "This calendar format is not supported" -msgstr "Chan eil taic ri fòrmat a’ mhìosachain seo" - -#: mod/cal.php:276 -msgid "No exportable data found" -msgstr "Cha deach dàta a ghabhas às-phortadh a lorg" - -#: mod/cal.php:292 -msgid "calendar" -msgstr "mìosachan" - -#: mod/display.php:143 mod/photos.php:802 -#: src/Module/Conversation/Community.php:175 src/Module/Directory.php:49 -#: src/Module/Search/Index.php:65 -msgid "Public access denied." -msgstr "Chaidh an t-inntrigeadh poblach a dhiùltadh." - -#: mod/display.php:213 mod/display.php:287 -msgid "The requested item doesn't exist or has been deleted." -msgstr "Chan eil am an nì a dh’iarr thu ann no chaidh a sguabadh às." - -#: mod/display.php:367 -msgid "The feed for this item is unavailable." -msgstr "Chan eil inbhir ri fhaighinn dhan nì seo." - -#: mod/editpost.php:38 mod/events.php:217 mod/follow.php:56 mod/follow.php:130 -#: mod/item.php:181 mod/item.php:186 mod/item.php:870 mod/message.php:69 -#: mod/message.php:111 mod/notes.php:44 mod/ostatus_subscribe.php:33 -#: mod/photos.php:160 mod/photos.php:891 mod/repair_ostatus.php:31 -#: mod/settings.php:40 mod/settings.php:50 mod/settings.php:156 -#: mod/suggest.php:34 mod/uimport.php:33 mod/unfollow.php:35 -#: mod/unfollow.php:50 mod/unfollow.php:82 mod/wall_attach.php:67 -#: mod/wall_attach.php:69 mod/wall_upload.php:89 mod/wall_upload.php:91 -#: mod/wallmessage.php:37 mod/wallmessage.php:56 mod/wallmessage.php:90 -#: mod/wallmessage.php:110 src/Module/Attach.php:56 src/Module/BaseApi.php:93 -#: src/Module/BaseNotifications.php:97 src/Module/Contact/Advanced.php:60 -#: src/Module/Delegation.php:119 src/Module/FollowConfirm.php:38 -#: src/Module/FriendSuggest.php:56 src/Module/Group.php:42 -#: src/Module/Group.php:85 src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:75 -#: src/Module/Notifications/Notification.php:106 -#: src/Module/Profile/Common.php:56 src/Module/Profile/Contacts.php:56 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:77 src/Module/Register.php:90 -#: src/Module/Register.php:206 src/Module/Register.php:245 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:49 -#: src/Module/Settings/Account.php:409 src/Module/Settings/Delegation.php:42 -#: src/Module/Settings/Delegation.php:70 src/Module/Settings/Display.php:42 -#: src/Module/Settings/Display.php:120 -#: src/Module/Settings/Profile/Photo/Crop.php:166 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/UserExport.php:58 src/Module/Settings/UserExport.php:92 -#: src/Module/Settings/UserExport.php:196 -#: src/Module/Settings/UserExport.php:216 -#: src/Module/Settings/UserExport.php:281 -msgid "Permission denied." -msgstr "Chaidh cead a dhiùltadh." - -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Cha deach an nì a lorg" - -#: mod/editpost.php:64 -msgid "Edit post" -msgstr "Deasaich am post" - -#: mod/editpost.php:91 mod/notes.php:56 src/Content/Text/HTML.php:882 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:73 -msgid "Save" -msgstr "Sàbhail" - -#: mod/editpost.php:92 mod/photos.php:1338 src/Content/Conversation.php:338 -#: src/Module/Contact/Poke.php:176 src/Object/Post.php:993 -msgid "Loading..." -msgstr "’Ga luchdadh…" - -#: mod/editpost.php:93 mod/message.php:198 mod/message.php:355 -#: mod/wallmessage.php:140 src/Content/Conversation.php:339 -msgid "Upload photo" -msgstr "Luchdaich suas dealbh" - -#: mod/editpost.php:94 src/Content/Conversation.php:340 -msgid "upload photo" -msgstr "luchdaich suas dealbh" - -#: mod/editpost.php:95 src/Content/Conversation.php:341 -msgid "Attach file" -msgstr "Ceangail faidhle ris" - -#: mod/editpost.php:96 src/Content/Conversation.php:342 -msgid "attach file" -msgstr "ceangail faidhle ris" - -#: mod/editpost.php:97 mod/message.php:199 mod/message.php:356 -#: mod/wallmessage.php:141 -msgid "Insert web link" -msgstr "Cuir a-steach ceangal-lìn" - -#: mod/editpost.php:98 -msgid "web link" -msgstr "ceangal-lìn" - -#: mod/editpost.php:99 -msgid "Insert video link" -msgstr "Cuir a-steach ceangal video" - -#: mod/editpost.php:100 -msgid "video link" -msgstr "ceangal video" - -#: mod/editpost.php:101 -msgid "Insert audio link" -msgstr "Cuir a-steach ceangal fuaime" - -#: mod/editpost.php:102 -msgid "audio link" -msgstr "ceangal fuaime" - -#: mod/editpost.php:103 src/Content/Conversation.php:352 -#: src/Module/Item/Compose.php:173 -msgid "Set your location" -msgstr "Suidhich d’ ionad" - -#: mod/editpost.php:104 src/Content/Conversation.php:353 -msgid "set location" -msgstr "suidhich d’ ionad" - -#: mod/editpost.php:105 src/Content/Conversation.php:354 -msgid "Clear browser location" -msgstr "Falamhaich ionad a’ bhrabhsair" - -#: mod/editpost.php:106 src/Content/Conversation.php:355 -msgid "clear location" -msgstr "falamhaich an ionad" - -#: mod/editpost.php:107 mod/message.php:200 mod/message.php:358 -#: mod/photos.php:1489 mod/wallmessage.php:142 -#: src/Content/Conversation.php:368 src/Content/Conversation.php:713 -#: src/Module/Item/Compose.php:177 src/Object/Post.php:538 -msgid "Please wait" -msgstr "Fuirich ort" - -#: mod/editpost.php:108 src/Content/Conversation.php:369 -msgid "Permission settings" -msgstr "Roghainnean cead" - -#: mod/editpost.php:116 src/Core/ACL.php:326 -msgid "CC: email addresses" -msgstr "CC: seòlaidhean puist-d" - -#: mod/editpost.php:117 src/Content/Conversation.php:379 -msgid "Public post" -msgstr "Post poblach" - -#: mod/editpost.php:120 src/Content/Conversation.php:357 -#: src/Module/Item/Compose.php:178 -msgid "Set title" -msgstr "Suidhich an tiotal" - -#: mod/editpost.php:122 src/Content/Conversation.php:359 -#: src/Module/Item/Compose.php:179 -msgid "Categories (comma-separated list)" -msgstr "Roinnean-seòrsa (liosta sgaraichte le cromagan)." - -#: mod/editpost.php:123 src/Core/ACL.php:327 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Mar eisimpleir: aonghas@ball-eisimpleir.com, oighrig@ball-eisimpleir.com" - -#: mod/editpost.php:128 mod/events.php:513 mod/photos.php:1337 -#: mod/photos.php:1393 mod/photos.php:1467 src/Content/Conversation.php:383 -#: src/Module/Item/Compose.php:172 src/Object/Post.php:1003 -msgid "Preview" -msgstr "Ro-sheall" - -#: mod/editpost.php:130 mod/fbrowser.php:118 mod/fbrowser.php:145 -#: mod/follow.php:144 mod/photos.php:1004 mod/photos.php:1105 mod/tagrm.php:35 -#: mod/tagrm.php:127 mod/unfollow.php:97 src/Content/Conversation.php:386 -#: src/Module/Contact/Revoke.php:108 src/Module/RemoteFollow.php:127 -#: src/Module/Security/TwoFactor/SignOut.php:125 -msgid "Cancel" -msgstr "Sguir dheth" - -#: mod/editpost.php:134 src/Content/Conversation.php:343 -#: src/Module/Item/Compose.php:163 src/Object/Post.php:994 -msgid "Bold" -msgstr "Trom" - -#: mod/editpost.php:135 src/Content/Conversation.php:344 -#: src/Module/Item/Compose.php:164 src/Object/Post.php:995 -msgid "Italic" -msgstr "Eadailteach" - -#: mod/editpost.php:136 src/Content/Conversation.php:345 -#: src/Module/Item/Compose.php:165 src/Object/Post.php:996 -msgid "Underline" -msgstr "Loidhne fodha" - -#: mod/editpost.php:137 src/Content/Conversation.php:346 -#: src/Module/Item/Compose.php:166 src/Object/Post.php:997 -msgid "Quote" -msgstr "Iomradh" - -#: mod/editpost.php:138 src/Content/Conversation.php:347 -#: src/Module/Item/Compose.php:167 src/Object/Post.php:998 -msgid "Code" -msgstr "Còd" - -#: mod/editpost.php:139 src/Content/Conversation.php:349 -#: src/Module/Item/Compose.php:169 src/Object/Post.php:1000 -msgid "Link" -msgstr "Ceangal" - -#: mod/editpost.php:140 src/Content/Conversation.php:350 -#: src/Module/Item/Compose.php:170 src/Object/Post.php:1001 -msgid "Link or Media" -msgstr "Ceangal no meadhan" - -#: mod/editpost.php:143 src/Content/Conversation.php:393 -#: src/Content/Widget/VCard.php:113 src/Model/Profile.php:466 -#: src/Module/Admin/Logs/View.php:93 -msgid "Message" -msgstr "Teachdaireachd" - -#: mod/editpost.php:144 src/Content/Conversation.php:394 -#: src/Module/Settings/TwoFactor/Trusted.php:138 -msgid "Browser" -msgstr "Brabhsair" - -#: mod/editpost.php:145 mod/events.php:518 mod/photos.php:939 -#: mod/photos.php:1291 src/Content/Conversation.php:370 -msgid "Permissions" -msgstr "Ceadan" - -#: mod/editpost.php:147 src/Content/Conversation.php:396 -msgid "Open Compose page" -msgstr "Fosgail duilleag an sgrìobhaidh" - -#: mod/events.php:124 mod/events.php:126 -msgid "Event can not end before it has started." -msgstr "Chan urrainn do thachartas crìochnachadh mus tòisich e." - -#: mod/events.php:132 mod/events.php:134 -msgid "Event title and start time are required." -msgstr "Tha feum air tiotal is àm tòiseachaidh an tachartais." - -#: mod/events.php:376 -msgid "Create New Event" -msgstr "Cruthaich tachartas ùr" - -#: mod/events.php:474 src/Module/Admin/Logs/View.php:97 -msgid "Event details" -msgstr "Fiosrachadh an tachartais" - -#: mod/events.php:475 -msgid "Starting date and Title are required." -msgstr "Tha feum air àm tòiseachaidh is tiotal." - -#: mod/events.php:476 mod/events.php:481 -msgid "Event Starts:" -msgstr "Tòisichidh an tachartas:" - -#: mod/events.php:476 mod/events.php:506 -#: src/Module/Admin/Blocklist/Server/Add.php:136 -#: src/Module/Admin/Blocklist/Server/Add.php:138 -#: src/Module/Admin/Blocklist/Server/Import.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:84 -#: src/Module/Admin/Blocklist/Server/Index.php:85 -#: src/Module/Admin/Blocklist/Server/Index.php:113 -#: src/Module/Admin/Blocklist/Server/Index.php:114 -#: src/Module/Admin/Item/Delete.php:69 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:207 src/Module/Install.php:240 -#: src/Module/Install.php:245 src/Module/Install.php:264 -#: src/Module/Install.php:275 src/Module/Install.php:280 -#: src/Module/Install.php:286 src/Module/Install.php:291 -#: src/Module/Install.php:305 src/Module/Install.php:320 -#: src/Module/Install.php:347 src/Module/Register.php:148 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Index.php:141 -#: src/Module/Settings/TwoFactor/Verify.php:154 -msgid "Required" -msgstr "Riatanach" - -#: mod/events.php:489 mod/events.php:512 -msgid "Finish date/time is not known or not relevant" -msgstr "Chan eil fhios dè an t-àm crìochnachaidh no chan eil e iomchaidh" - -#: mod/events.php:491 mod/events.php:496 -msgid "Event Finishes:" -msgstr "Thig an tachartas gu crìoch:" - -#: mod/events.php:502 src/Module/Profile/Profile.php:172 -#: src/Module/Settings/Profile/Index.php:238 -msgid "Description:" -msgstr "Tuairisgeul:" - -#: mod/events.php:504 src/Content/Widget/VCard.php:104 src/Model/Event.php:80 -#: src/Model/Event.php:107 src/Model/Event.php:469 src/Model/Event.php:919 -#: src/Model/Profile.php:374 src/Module/Contact/Profile.php:369 -#: src/Module/Directory.php:148 src/Module/Notifications/Introductions.php:185 -#: src/Module/Profile/Profile.php:194 -msgid "Location:" -msgstr "Ionad:" - -#: mod/events.php:506 mod/events.php:508 -msgid "Title:" -msgstr "Tiotal:" - -#: mod/events.php:509 mod/events.php:510 -msgid "Share this event" -msgstr "Co-roinn an tachartas seo" - -#: mod/events.php:515 mod/message.php:201 mod/message.php:357 -#: mod/photos.php:921 mod/photos.php:1025 mod/photos.php:1295 -#: mod/photos.php:1336 mod/photos.php:1392 mod/photos.php:1466 -#: src/Module/Admin/Item/Source.php:60 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Poke.php:177 src/Module/Contact/Profile.php:327 -#: src/Module/Debug/ActivityPubConversion.php:145 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/Delegation.php:148 src/Module/FriendSuggest.php:144 -#: src/Module/Install.php:252 src/Module/Install.php:294 -#: src/Module/Install.php:331 src/Module/Invite.php:178 -#: src/Module/Item/Compose.php:162 src/Module/Profile/Profile.php:247 -#: src/Module/Settings/Profile/Index.php:222 src/Object/Post.php:992 -#: 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 "Cuir a-null" - -#: mod/events.php:516 src/Module/Profile/Profile.php:248 -msgid "Basic" -msgstr "Bunasach" - -#: mod/events.php:517 src/Module/Admin/Site.php:441 src/Module/Contact.php:474 -#: src/Module/Profile/Profile.php:249 -msgid "Advanced" -msgstr "Adhartach" - -#: mod/events.php:534 -msgid "Failed to remove event" -msgstr "Cha deach leinn an tachartas a thoirt air falbh" - -#: mod/fbrowser.php:61 src/Content/Nav.php:194 src/Module/BaseProfile.php:64 -#: view/theme/frio/theme.php:232 -msgid "Photos" -msgstr "Dealbhan" - -#: mod/fbrowser.php:120 mod/fbrowser.php:147 -#: src/Module/Settings/Profile/Photo/Index.php:129 -msgid "Upload" -msgstr "Luchdaich suas" - -#: mod/fbrowser.php:142 -msgid "Files" -msgstr "Faidhlichean" - -#: mod/follow.php:74 mod/unfollow.php:96 src/Module/RemoteFollow.php:126 -msgid "Submit Request" -msgstr "Cuir an t-iarrtas a-null" - -#: mod/follow.php:84 -msgid "You already added this contact." -msgstr "Chuir thu an neach-aithne seo ris mu thràth." - -#: mod/follow.php:100 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "Cha do mhothaich sinn do sheòrsa an lìonraidh. Cha b’ urrainn dhuinn an neach-aithne a chur ris." - -#: mod/follow.php:108 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Chan eil taic ri diaspora* an comas. Cha b’ urrainn dhuinn an neach-aithne a chur ris." - -#: mod/follow.php:113 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Chan eil taic ri OStatus an comas. Cha b’ urrainn dhuinn an neach-aithne a chur ris." - -#: mod/follow.php:138 src/Content/Item.php:459 src/Content/Widget.php:80 -#: src/Model/Contact.php:1114 src/Model/Contact.php:1126 -#: view/theme/vier/theme.php:181 -msgid "Connect/Follow" -msgstr "Ceangail ris/Lean air" - -#: mod/follow.php:139 src/Module/RemoteFollow.php:125 -msgid "Please answer the following:" -msgstr "Freagair seo:" - -#: mod/follow.php:140 mod/unfollow.php:94 -msgid "Your Identity Address:" -msgstr "Seòladh do dhearbh-aithne:" - -#: mod/follow.php:141 mod/unfollow.php:100 -#: src/Module/Admin/Blocklist/Contact.php:116 -#: src/Module/Contact/Profile.php:365 -#: src/Module/Notifications/Introductions.php:127 -#: src/Module/Notifications/Introductions.php:196 -msgid "Profile URL" -msgstr "URL na pròifile" - -#: mod/follow.php:142 src/Module/Contact/Profile.php:377 -#: src/Module/Notifications/Introductions.php:189 -#: src/Module/Profile/Profile.php:207 -msgid "Tags:" -msgstr "Tagaichean:" - -#: mod/follow.php:153 -#, php-format -msgid "%s knows you" -msgstr "Is aithne dha %s thu" - -#: mod/follow.php:154 -msgid "Add a personal note:" -msgstr "Cuir nòta pearsanta ris:" - -#: mod/follow.php:163 mod/unfollow.php:109 src/Module/BaseProfile.php:59 -#: src/Module/Contact.php:444 -msgid "Status Messages and Posts" -msgstr "Teachdaireachdan staid is puist-d" - -#: mod/follow.php:191 -msgid "The contact could not be added." -msgstr "Cha b’ urrainn dhuinn an neach-aithne a chur ris." - -#: mod/item.php:131 mod/item.php:135 +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 msgid "Unable to locate original post." msgstr "Cha do lorg sinn am post tùsail." -#: mod/item.php:337 mod/item.php:342 -msgid "Empty post discarded." -msgstr "Chaidh post falamh a thilgeil air falbh." - -#: mod/item.php:682 +#: mod/item.php:138 msgid "Post updated." msgstr "Chaidh am post ùrachadh." -#: mod/item.php:692 mod/item.php:697 +#: mod/item.php:203 mod/item.php:207 msgid "Item wasn't stored." msgstr "Cha deach an nì a stòradh." -#: mod/item.php:708 +#: mod/item.php:217 msgid "Item couldn't be fetched." msgstr "Cha d’ fhuair sinn grèim air a nì." -#: mod/item.php:848 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "Chaidh post falamh a thilgeil air falbh." + +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 -#: src/Module/Debug/ItemBody.php:57 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Cha deach an nì a lorg." +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:99 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:38 +#: src/Module/FriendSuggest.php:57 src/Module/Invite.php:42 +#: src/Module/Invite.php:131 src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Delegation.php:41 src/Module/Settings/Delegation.php:71 +#: src/Module/Settings/Display.php:73 src/Module/Settings/Display.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:111 +#: src/Module/Settings/RemoveMe.php:117 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Import.php:84 +#: src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "Chaidh cead a dhiùltadh." + #: mod/lostpass.php:40 msgid "No valid account found." msgstr "Cha deach cunntas dligheach a lorg." @@ -606,7 +146,7 @@ msgid "" "your email for further instructions." msgstr "Cuir a-steach ’s a-null an seòladh puist-d agad airson ath-shuidheachadh an fhacail-fhaire agad. Thoir sùil air na puist-d agad an uairsin airson stiùireadh." -#: mod/lostpass.php:130 src/Module/Security/Login.php:161 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " msgstr "Far-ainm no post-d: " @@ -614,7 +154,7 @@ msgstr "Far-ainm no post-d: " msgid "Reset" msgstr "Ath-shuidhich" -#: mod/lostpass.php:146 src/Module/Security/Login.php:173 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 msgid "Password Reset" msgstr "Ath-shuidheachadh facail-fhaire" @@ -674,23 +214,11 @@ msgstr "\n\t\t\tSeo am fiosrachadh clàraidh a-steach agad:\n\n\t\t\tIonad na l msgid "Your password has been changed at %s" msgstr "Chaidh am facal-faire agad atharrachadh air %s" -#: mod/match.php:62 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "Chan eil faclan-luirg rim maidseadh ann. Cuir faclan-luirg ris a’ phròifil agad." - -#: mod/match.php:93 src/Module/BaseSearch.php:119 -msgid "No matches" -msgstr "Gun mhaids" - -#: mod/match.php:98 -msgid "Profile Match" -msgstr "Maidseadh na pròifile" - -#: mod/message.php:46 mod/message.php:126 src/Content/Nav.php:288 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 msgid "New Message" msgstr "Teachdaireachd ùr" -#: mod/message.php:83 mod/wallmessage.php:70 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 msgid "No recipient selected." msgstr "Cha deach faightear a thaghadh." @@ -698,62 +226,102 @@ msgstr "Cha deach faightear a thaghadh." msgid "Unable to locate contact information." msgstr "Cha do lorg sinn am fiosrachadh conaltraidh." -#: mod/message.php:90 mod/wallmessage.php:76 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 msgid "Message could not be sent." msgstr "Cha b’ urrainn dhuinn an teachdaireachd a chur." -#: mod/message.php:93 mod/wallmessage.php:79 +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 msgid "Message collection failure." msgstr "Dh’fhàillig cruinneachadh nan teachdaireachdan." -#: mod/message.php:120 src/Module/Notifications/Introductions.php:133 -#: src/Module/Notifications/Introductions.php:168 -#: src/Module/Notifications/Notification.php:84 +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 msgid "Discard" msgstr "Tilg air falbh" -#: mod/message.php:133 src/Content/Nav.php:285 view/theme/frio/theme.php:239 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" msgstr "Teachdaireachdan" -#: mod/message.php:146 +#: mod/message.php:148 msgid "Conversation not found." msgstr "Cha deach an còmhradh a lorg." -#: mod/message.php:151 +#: mod/message.php:153 msgid "Message was not deleted." msgstr "Cha deach an teachdaireachd a sguabadh às." -#: mod/message.php:166 +#: mod/message.php:168 msgid "Conversation was not removed." msgstr "Cha deach an còmhradh a thoirt air falbh." -#: mod/message.php:180 mod/message.php:286 mod/wallmessage.php:124 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 msgid "Please enter a link URL:" msgstr "Cuir URL ceangail:" -#: mod/message.php:189 mod/wallmessage.php:129 +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 msgid "Send Private Message" msgstr "Cuir teachdaireachd phearsanta" -#: mod/message.php:190 mod/message.php:347 mod/wallmessage.php:131 +#: mod/message.php:191 mod/message.php:346 msgid "To:" msgstr "Gu:" -#: mod/message.php:191 mod/message.php:348 mod/wallmessage.php:132 +#: mod/message.php:192 mod/message.php:347 msgid "Subject:" msgstr "Cuspair:" -#: mod/message.php:195 mod/message.php:351 mod/wallmessage.php:138 -#: src/Module/Invite.php:171 +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 msgid "Your message:" msgstr "An teachdaireachd agad:" -#: mod/message.php:222 +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "Luchdaich suas dealbh" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "Cuir a-steach ceangal-lìn" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:578 +msgid "Please wait" +msgstr "Fuirich ort" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:145 +#: src/Module/Install.php:234 src/Module/Install.php:274 +#: src/Module/Install.php:309 src/Module/Invite.php:178 +#: src/Module/Item/Compose.php:189 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Object/Post.php:1095 +#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171 +#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Cuir a-null" + +#: mod/message.php:223 msgid "No messages." msgstr "Chan eil teachdaireachd sam bith ann." -#: mod/message.php:278 +#: mod/message.php:279 msgid "Message not available." msgstr "Chan eil an teachdaireachd ri fhaighinn." @@ -761,11 +329,11 @@ msgstr "Chan eil an teachdaireachd ri fhaighinn." msgid "Delete message" msgstr "Sguab às an teachdaireachd" -#: mod/message.php:325 mod/message.php:457 +#: mod/message.php:325 mod/message.php:456 msgid "D, d M Y - g:i A" msgstr "D d M Y – g:ia" -#: mod/message.php:340 mod/message.php:454 +#: mod/message.php:340 mod/message.php:453 msgid "Delete conversation" msgstr "Sguab às an còmhradh" @@ -775,26 +343,26 @@ msgid "" "respond from the sender's profile page." msgstr "Chan eil conaltradh tèarainte ri fhaighinn. Dh’fhaoidte gur urrainn dhut freagairt o dhuilleag pròifil an t-seòladair." -#: mod/message.php:346 +#: mod/message.php:345 msgid "Send Reply" msgstr "Cuir an fhreagairt" -#: mod/message.php:428 +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "Seòladair nach aithne dhuinn – %s" -#: mod/message.php:430 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "Thusa is %s" -#: mod/message.php:432 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "%s is thusa" -#: mod/message.php:460 +#: mod/message.php:459 #, php-format msgid "%d message" msgid_plural "%d messages" @@ -803,817 +371,443 @@ msgstr[1] "%d theachdaireachd" msgstr[2] "%d teachdaireachdan" msgstr[3] "%d teachdaireachd" -#: mod/notes.php:51 src/Module/BaseProfile.php:106 +#: mod/notes.php:52 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "Nòtaichean pearsanta" -#: mod/notes.php:55 +#: mod/notes.php:56 msgid "Personal notes are visible only by yourself." msgstr "Chan fhaic ach thu fhèin na nòtaichean pearsanta." -#: mod/ostatus_subscribe.php:38 -msgid "Subscribing to contacts" -msgstr "Fo-sgrìobhadh air luchd-aithne" +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 +msgid "Save" +msgstr "Sàbhail" -#: mod/ostatus_subscribe.php:48 -msgid "No contact provided." -msgstr "Cha deach neach-aithne a thoirt seachad." +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "Cha deach an cleachdaiche a lorg." -#: mod/ostatus_subscribe.php:54 -msgid "Couldn't fetch information for contact." -msgstr "Cha d’ fhuair sinn grèim air an fhiosrachadh conaltraidh." - -#: mod/ostatus_subscribe.php:65 -msgid "Couldn't fetch friends for contact." -msgstr "Cha d’ fhuair sinn grèim air caraidean a chùm conaltraidh." - -#: mod/ostatus_subscribe.php:71 mod/ostatus_subscribe.php:82 -msgid "Couldn't fetch following contacts." -msgstr "Cha d’ fhuair sinn grèim air an luchd-aithne a leanas." - -#: mod/ostatus_subscribe.php:77 -msgid "Couldn't fetch remote profile." -msgstr "Cha d’ fhuair sinn grèim air a’ phròifil chèin." - -#: mod/ostatus_subscribe.php:87 -msgid "Unsupported network" -msgstr "Lìonra ris nach eil taic" - -#: mod/ostatus_subscribe.php:103 mod/repair_ostatus.php:51 -msgid "Done" -msgstr "Deiseil" - -#: mod/ostatus_subscribe.php:117 -msgid "success" -msgstr "chaidh leis" - -#: mod/ostatus_subscribe.php:119 -msgid "failed" -msgstr "dh’fhàillig leis" - -#: mod/ostatus_subscribe.php:122 -msgid "ignored" -msgstr "chaidh a leigeil seachad" - -#: mod/ostatus_subscribe.php:127 mod/repair_ostatus.php:57 -msgid "Keep this window open until done." -msgstr "Cùm an uinneag seo fosgailte gus am bi e deiseil." - -#: mod/photos.php:108 src/Module/BaseProfile.php:67 +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 msgid "Photo Albums" msgstr "Pasgain dhealbhan" -#: mod/photos.php:109 mod/photos.php:1584 +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 msgid "Recent Photos" msgstr "Dealbhan o chionn goirid" -#: mod/photos.php:111 mod/photos.php:1073 mod/photos.php:1586 +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 msgid "Upload New Photos" msgstr "Luchdaich suas dealbhan ùra" -#: mod/photos.php:129 src/Module/BaseSettings.php:35 +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 msgid "everybody" msgstr "a h-uile duine" -#: mod/photos.php:167 +#: mod/photos.php:159 msgid "Contact information unavailable" msgstr "Chan eil fiosrachadh conaltraidh ri fhaighinn" -#: mod/photos.php:196 +#: mod/photos.php:188 msgid "Album not found." msgstr "Cha deach an t-albam a lorg." -#: mod/photos.php:250 +#: mod/photos.php:244 msgid "Album successfully deleted" msgstr "Chaidh an t-albam a sguabadh às" -#: mod/photos.php:252 +#: mod/photos.php:246 msgid "Album was empty." msgstr "Bha an t-albam falamh." -#: mod/photos.php:284 +#: mod/photos.php:277 msgid "Failed to delete the photo." msgstr "Cha b’ urrainn dhuinn an dealbh a sguabadh às." -#: mod/photos.php:553 +#: mod/photos.php:545 msgid "a photo" msgstr "dealbh" -#: mod/photos.php:553 +#: mod/photos.php:545 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "Chuir %3$s %1$s ’na thaga ri %2$s" -#: mod/photos.php:636 mod/photos.php:639 mod/photos.php:666 -#: mod/wall_upload.php:201 src/Module/Settings/Profile/Photo/Index.php:60 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Tha an dealbh nas motha na tha ceadaichte dhe %s" +#: mod/photos.php:582 src/Module/Conversation/Community.php:159 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Chaidh an t-inntrigeadh poblach a dhiùltadh." -#: mod/photos.php:642 -msgid "Image upload didn't complete, please try again" -msgstr "Cha deach luchdadh suas an deilbh a choileanadh, feuch ris a-rithist" - -#: mod/photos.php:645 -msgid "Image file is missing" -msgstr "Tha faidhle an deilbh a dhìth" - -#: mod/photos.php:650 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "Cha ghabh am frithealaiche ri luchdadh suas deilbh ùir aig an àm seo, cuir fios gun rianaire agad" - -#: mod/photos.php:674 -msgid "Image file is empty." -msgstr "Tha faidhle an deilbh falamh." - -#: mod/photos.php:689 mod/wall_upload.php:163 -#: src/Module/Settings/Profile/Photo/Index.php:69 -msgid "Unable to process image." -msgstr "Cha b’ urrainn dhuinn an dealbh a phròiseasadh." - -#: mod/photos.php:715 mod/wall_upload.php:226 -#: src/Module/Settings/Profile/Photo/Index.php:96 -msgid "Image upload failed." -msgstr "Dh’fhàillig le luchdadh suas an deilbh." - -#: mod/photos.php:807 +#: mod/photos.php:587 msgid "No photos selected" msgstr "Cha deach dealbh a thaghadh" -#: mod/photos.php:876 -msgid "Access to this item is restricted." -msgstr "Tha an t-inntrigeadh dhan nì seo cuingichte." +#: mod/photos.php:721 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "Cha ghabh sinn ri dealbhan nas motha na %s" -#: mod/photos.php:931 +#: mod/photos.php:728 msgid "Upload Photos" msgstr "Luchdaich suas dealbhan" -#: mod/photos.php:935 mod/photos.php:1021 +#: mod/photos.php:732 mod/photos.php:820 msgid "New album name: " msgstr "Ainm an albaim ùir: " -#: mod/photos.php:936 +#: mod/photos.php:733 msgid "or select existing album:" msgstr "no tagh albam a tha ann:" -#: mod/photos.php:937 +#: mod/photos.php:734 msgid "Do not show a status post for this upload" msgstr "Na seall post staide dhan luchdadh suas seo" -#: mod/photos.php:1002 +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "Ceadan" + +#: mod/photos.php:801 msgid "Do you really want to delete this photo album and all its photos?" msgstr "A bheil thu cinnteach gu bheil thu airson an t-albam seo ’s a h-uile dealbh aige a sguabadh às?" -#: mod/photos.php:1003 mod/photos.php:1026 +#: mod/photos.php:802 mod/photos.php:825 msgid "Delete Album" msgstr "Sguab às an t-albam" -#: mod/photos.php:1030 +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Sguir dheth" + +#: mod/photos.php:829 msgid "Edit Album" msgstr "Deasaich an t-albam" -#: mod/photos.php:1031 +#: mod/photos.php:830 msgid "Drop Album" msgstr "Thoir air falbh an t-albam" -#: mod/photos.php:1035 +#: mod/photos.php:834 msgid "Show Newest First" msgstr "Seall an fheadhainn as ùire an toiseach" -#: mod/photos.php:1037 +#: mod/photos.php:836 msgid "Show Oldest First" msgstr "Seall an fheadhainn as sine an toiseach" -#: mod/photos.php:1058 mod/photos.php:1569 +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 msgid "View Photo" msgstr "Seall an dealbh" -#: mod/photos.php:1091 +#: mod/photos.php:889 msgid "Permission denied. Access to this item may be restricted." msgstr "Chaidh cead a dhiùltadh. Dh’fhaoidte gu bheil an t-inntrigeadh dhan nì seo cuingichte." -#: mod/photos.php:1093 +#: mod/photos.php:891 msgid "Photo not available" msgstr "Chan eil an dealbhan ri fhaighinn" -#: mod/photos.php:1103 +#: mod/photos.php:901 msgid "Do you really want to delete this photo?" msgstr "A bheil thu cinnteach gu bheil thu airson an dealbh seo a sguabadh às?" -#: mod/photos.php:1104 mod/photos.php:1296 +#: mod/photos.php:902 mod/photos.php:1102 msgid "Delete Photo" msgstr "Sguab às an dealbh" -#: mod/photos.php:1196 +#: mod/photos.php:1000 msgid "View photo" msgstr "Seall an dealbh" -#: mod/photos.php:1198 +#: mod/photos.php:1002 msgid "Edit photo" msgstr "Deasaich an dealbh" -#: mod/photos.php:1199 +#: mod/photos.php:1003 msgid "Delete photo" msgstr "Sguab às an dealbh" -#: mod/photos.php:1200 +#: mod/photos.php:1004 msgid "Use as profile photo" msgstr "Cleachd ’na dhealbh pròifile" -#: mod/photos.php:1207 +#: mod/photos.php:1011 msgid "Private Photo" msgstr "Dealbh prìobhaideach" -#: mod/photos.php:1213 +#: mod/photos.php:1017 msgid "View Full Size" msgstr "Seall air a làn-mheud" -#: mod/photos.php:1264 +#: mod/photos.php:1070 msgid "Tags: " msgstr "Tagaichean: " -#: mod/photos.php:1267 +#: mod/photos.php:1073 msgid "[Select tags to remove]" msgstr "[Tagh tagaichean gus an toirt air falbh]" -#: mod/photos.php:1282 +#: mod/photos.php:1088 msgid "New album name" msgstr "Ainm albaim ùir" -#: mod/photos.php:1283 +#: mod/photos.php:1089 msgid "Caption" msgstr "Fo-thiotal" -#: mod/photos.php:1284 +#: mod/photos.php:1090 msgid "Add a Tag" msgstr "Cuir taga ris" -#: mod/photos.php:1284 +#: mod/photos.php:1090 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Ball-eisimpleir: @aonghas, @Oighrig_Chaimbeul, @seaonaidh@ball-eisimpleir.com, #Leòdhas, #gàirnealaireachd" -#: mod/photos.php:1285 +#: mod/photos.php:1091 msgid "Do not rotate" msgstr "Na cuairtich" -#: mod/photos.php:1286 +#: mod/photos.php:1092 msgid "Rotate CW (right)" msgstr "Cuairtich a’ dol deiseil" -#: mod/photos.php:1287 +#: mod/photos.php:1093 msgid "Rotate CCW (left)" msgstr "Cuairtich a’ dol tuathail" -#: mod/photos.php:1333 mod/photos.php:1389 mod/photos.php:1463 -#: src/Module/Contact.php:544 src/Module/Item/Compose.php:160 -#: src/Object/Post.php:989 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1092 msgid "This is you" msgstr "Seo thusa" -#: mod/photos.php:1335 mod/photos.php:1391 mod/photos.php:1465 -#: src/Object/Post.php:532 src/Object/Post.php:991 +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:572 +#: src/Object/Post.php:1094 msgid "Comment" msgstr "Beachd" -#: mod/photos.php:1424 src/Content/Conversation.php:629 -#: src/Object/Post.php:256 +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1108 +msgid "Preview" +msgstr "Ro-sheall" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1096 +msgid "Loading..." +msgstr "’Ga luchdadh…" + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:260 msgid "Select" msgstr "Tagh" -#: mod/photos.php:1425 mod/settings.php:350 src/Content/Conversation.php:630 -#: src/Module/Admin/Users/Active.php:139 -#: src/Module/Admin/Users/Blocked.php:140 src/Module/Admin/Users/Index.php:153 +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 msgid "Delete" msgstr "Sguab às" -#: mod/photos.php:1486 src/Object/Post.php:379 +#: mod/photos.php:1298 src/Object/Post.php:408 msgid "Like" msgstr "’S toigh leam seo" -#: mod/photos.php:1487 src/Object/Post.php:379 +#: mod/photos.php:1299 src/Object/Post.php:408 msgid "I like this (toggle)" msgstr "’S toigh leam seo (toglaich)" -#: mod/photos.php:1488 src/Object/Post.php:380 +#: mod/photos.php:1300 src/Object/Post.php:409 msgid "Dislike" msgstr "Cha toigh leam seo" -#: mod/photos.php:1490 src/Object/Post.php:380 +#: mod/photos.php:1302 src/Object/Post.php:409 msgid "I don't like this (toggle)" msgstr "Cha toigh leam seo (toglaich)" -#: mod/photos.php:1512 +#: mod/photos.php:1324 msgid "Map" msgstr "Mapa" -#: mod/photos.php:1575 -msgid "View Album" -msgstr "Seall an t-albam" - -#: mod/redir.php:51 mod/redir.php:104 -msgid "Bad Request." -msgstr "Droch-iarrtas." - -#: mod/redir.php:57 mod/redir.php:131 src/Module/Contact/Advanced.php:70 -#: src/Module/Contact/Advanced.php:109 src/Module/Contact/Contacts.php:55 -#: src/Module/Contact/Conversations.php:78 -#: src/Module/Contact/Conversations.php:83 -#: src/Module/Contact/Conversations.php:88 src/Module/Contact/Media.php:43 -#: src/Module/Contact/Posts.php:72 src/Module/Contact/Posts.php:77 -#: src/Module/Contact/Posts.php:82 src/Module/Contact/Profile.php:141 -#: src/Module/Contact/Profile.php:146 src/Module/Contact/Profile.php:151 -#: src/Module/FriendSuggest.php:70 src/Module/FriendSuggest.php:108 -#: src/Module/Group.php:99 src/Module/Group.php:108 -msgid "Contact not found." -msgstr "Cha deach an neach-aithne a lorg." - -#: mod/removeme.php:65 src/Navigation/Notifications/Repository/Notify.php:483 -msgid "[Friendica System Notify]" -msgstr "[Brath siostam Friendica]" - -#: mod/removeme.php:65 -msgid "User deleted their account" -msgstr "Sguab an cleachdaiche às an cunntas aca" - -#: mod/removeme.php:66 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "Sguab cleachdaiche às an cunntas aca air an nòd Friendica agad. Dèan cinnteach gun dèid an dàta aca a thoirt air falbh o na lethbhreacan-glèidhidh." - -#: mod/removeme.php:67 -#, php-format -msgid "The user id is %d" -msgstr "’S e %d ID a’ chleachdaiche" - -#: mod/removeme.php:101 mod/removeme.php:104 -msgid "Remove My Account" -msgstr "Thoir air falbh an cunntas agam" - -#: mod/removeme.php:102 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Bheir seo air falbh an cunntas agad gu tur. Nuair a bhios sin air a thachairt, cha ghabh aiseag." - -#: mod/removeme.php:103 -msgid "Please enter your password for verification:" -msgstr "Cuir a-steach am facal-faire agad airson a dhearbhadh:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "A’ fo-sgrìobhadh a-rithist air luchd-aithne OStatus" - -#: mod/repair_ostatus.php:46 src/Module/Debug/ActivityPubConversion.php:134 -#: src/Module/Debug/Babel.php:293 src/Module/Security/TwoFactor/Verify.php:98 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Mearachd" -msgstr[1] "Mearachdan" -msgstr[2] "Mearachdan" -msgstr[3] "Mearachdan" - -#: mod/settings.php:122 -msgid "Failed to connect with email account using the settings provided." -msgstr "Cha deach leinn ceangal a dhèanamh leis a’ chunntas puist-d a’ cleachdadh nan roghainnean a chaidh a thoirt seachad." - -#: mod/settings.php:175 -msgid "Connected Apps" -msgstr "Aplacaidean ceangailte" - -#: mod/settings.php:176 src/Module/Admin/Blocklist/Contact.php:106 -#: 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 "Ainm" - -#: mod/settings.php:177 src/Content/Nav.php:214 -msgid "Home Page" -msgstr "Duilleag-dhachaigh" - -#: mod/settings.php:178 src/Module/Admin/Queue.php:78 -msgid "Created" -msgstr "Air a chruthachadh" - -#: mod/settings.php:179 -msgid "Remove authorization" -msgstr "Thoir an t-ùghdarrachadh air falbh" - -#: mod/settings.php:205 mod/settings.php:237 mod/settings.php:268 -#: mod/settings.php:352 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81 -#: src/Module/Admin/Site.php:436 src/Module/Admin/Themes/Index.php:113 -#: src/Module/Admin/Tos.php:83 src/Module/Settings/Account.php:562 -#: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:193 -msgid "Save Settings" -msgstr "Sàbhail na roghainnean" - -#: mod/settings.php:213 -msgid "Addon Settings" -msgstr "Roghainnean nan tuilleadan" - -#: mod/settings.php:214 -msgid "No Addon settings configured" -msgstr "Cha deach roghainnean tuilleadain a rèiteachadh" - -#: mod/settings.php:235 -msgid "Additional Features" -msgstr "Gleusan a bharrachd" - -#: mod/settings.php:273 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "enabled" -msgstr "an comas" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "disabled" -msgstr "à comas" - -#: mod/settings.php:273 mod/settings.php:274 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Tha an taic do chomas-ceangail le %s a thig ’na bhroinn %s" - -#: mod/settings.php:274 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: mod/settings.php:300 -msgid "Email access is disabled on this site." -msgstr "Tha an t-inntrigeadh le post-d à comas dhan làrach seo." - -#: mod/settings.php:305 mod/settings.php:350 -msgid "None" -msgstr "Chan eil gin" - -#: mod/settings.php:311 src/Module/BaseSettings.php:78 -msgid "Social Networks" -msgstr "Lìonraidhean sòisealta" - -#: mod/settings.php:316 -msgid "General Social Media Settings" -msgstr "Roghainnean coitcheann nam meadhanan sòisealta" - -#: mod/settings.php:319 -msgid "Followed content scope" -msgstr "Farsaingeachd na susbainte air a leanas tu" - -#: mod/settings.php:321 -msgid "" -"By default, conversations in which your follows participated but didn't " -"start will be shown in your timeline. You can turn this behavior off, or " -"expand it to the conversations in which your follows liked a post." -msgstr "Nochdaidh na còmhraidhean sa ghabh an fheadhainn air a leanas tu pàirt ach nach do thòisich iad fhèin air an loidhne-ama agad a ghnàth. ’S urrainn dhut seo a chur dheth no a leudachadh ach an nochd na còmhraidhean far an toigh leis an fheadhainn air a leanas tu post." - -#: mod/settings.php:323 -msgid "Only conversations my follows started" -msgstr "Na còmhraidhean a thòisich cuideigin air a leanas mi a-mhàin" - -#: mod/settings.php:324 -msgid "Conversations my follows started or commented on (default)" -msgstr "Na còmhraidhean a thòisich cuideigin air a leanas mi no a chuir iad beachd riutha (bun-roghainn)" - -#: mod/settings.php:325 -msgid "Any conversation my follows interacted with, including likes" -msgstr "Còmhradh sam bith air an robh cuideigin air a leanas mi an sàs, a’ gabhail a-staigh nas toigh leotha" - -#: mod/settings.php:328 -msgid "Enable Content Warning" -msgstr "Cuir rabhadh susbainte an comas" - -#: mod/settings.php:328 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect any other content filtering you eventually set up." -msgstr "’S urrainn dhan fheadhainn air lìonraidhean mar Mastodon no Pleroma raon rabhadh susbainte a shuidheachadh a cho-theannaicheas am post aca a ghnàth. Cuiridh seo an co-theannachadh fèin-obrachail an comas seach a bhith a’ suidheachadh an rabhadh susbainte mar thiotal a’ phuist. Cha doir seo buaidh air criathradh susbainte sam bith eile a shuidhicheas tu." - -#: mod/settings.php:329 -msgid "Enable intelligent shortening" -msgstr "Cuir an giorrachadh tapaidh an comas" - -#: mod/settings.php:329 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If disabled, every shortened post will always point to the original " -"friendica post." -msgstr "Mar as àbhaist, feuchaidh an siostam gun dèid an ceangal as fheàrr a lorg gus a chur ri postaichean giorraichte. Ma tha seo à comas, tomhaidh gach post giorraichte ris a’ phost tùsail air friendica an-còmhnaidh." - -#: mod/settings.php:330 -msgid "Enable simple text shortening" -msgstr "Cuir an comas giorrachadh teacsa sìmplidh" - -#: mod/settings.php:330 -msgid "" -"Normally the system shortens posts at the next line feed. If this option is " -"enabled then the system will shorten the text at the maximum character " -"limit." -msgstr "Mar as àbhaist, giorraichidh an siostam na postaichean aig an ath earrann. Ma tha an roghainn seo an comas, giorraichidh an siostam an teacsa aig crìoch nan caractaran ceadaichte." - -#: mod/settings.php:331 -msgid "Attach the link title" -msgstr "Cuir tiotal a’ cheangail ris" - -#: mod/settings.php:331 -msgid "" -"When activated, the title of the attached link will be added as a title on " -"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" -" share feed content." -msgstr "Nuair a bhios seo an gnìomh, thèid tiotal a’ cheangail a chur ris mar tiotal air postaichean gu Diaspora. Tha seo as fheumaile dhan luchd-aithne “remote-self” a cho-roinneas susbaint inbhir." - -#: mod/settings.php:332 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "An cunntas ActivityPub/GNU Social dìleabach agad" - -#: mod/settings.php:332 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "Ma chuireas tu ainm seann-chunntais ris o shiostam stèidhichte air ActivityPub no ainm do chunntais GNU Social/Statusnet an-seo (san fhòrmat cleachdaiche@àrainn.tld), thèid an luchd-aithne agad a chur ris gu fèin-obrachail. Thèid an raon fhalamhachadh nuair a bhios sin deiseil." - -#: mod/settings.php:335 -msgid "Repair OStatus subscriptions" -msgstr "Càraich fo-sgrìobhaidhean OStatus" - -#: mod/settings.php:339 -msgid "Email/Mailbox Setup" -msgstr "Suidheachadh a’ phuist-d/a’ bhogsa-phuist" - -#: mod/settings.php:340 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Ma tha thu airson an t-seirbheis seo a chleachdadh airson conaltradh le luchd-aithne air a’ post-d (gu roghainneil), sònraich an dòigh air a nì thu ceangal leis a’ bhogsa-phuist agad." - -#: mod/settings.php:341 -msgid "Last successful email check:" -msgstr "An turas mu dheireadh a chaidh leinn sùil a thoirt air a’ phost-d:" - -#: mod/settings.php:343 -msgid "IMAP server name:" -msgstr "Ainm frithealaiche IMAP:" - -#: mod/settings.php:344 -msgid "IMAP port:" -msgstr "Port IMAP:" - -#: mod/settings.php:345 -msgid "Security:" -msgstr "Tèarainteachd:" - -#: mod/settings.php:346 -msgid "Email login name:" -msgstr "Ainm clàradh a-steach a’ phuist-d:" - -#: mod/settings.php:347 -msgid "Email password:" -msgstr "Facal-faire a’ phuist-d:" - -#: mod/settings.php:348 -msgid "Reply-to address:" -msgstr "An seòladh Freagairt-gu:" - -#: mod/settings.php:349 -msgid "Send public posts to all email contacts:" -msgstr "Cuir postaichean poblach dhan a h-uile neach-aithne puist-d:" - -#: mod/settings.php:350 -msgid "Action after import:" -msgstr "Gnìomh às dèid an ion-phortaidh:" - -#: mod/settings.php:350 src/Content/Nav.php:282 -msgid "Mark as seen" -msgstr "Cuir comharra gun deach fhaicinn" - -#: mod/settings.php:350 -msgid "Move to folder" -msgstr "Gluais gu pasgan" - -#: mod/settings.php:351 -msgid "Move to folder:" -msgstr "Gluais gu pasgan:" - -#: mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Chan eil moladh sam bith ann. Mas e làrach ùr a th’ ann, feuch ris a-rithist an ceann 24 uair a thìde." - -#: mod/suggest.php:55 src/Content/Widget.php:83 view/theme/vier/theme.php:184 -msgid "Friend Suggestions" -msgstr "Molaidhean charaidean" - -#: mod/tagger.php:78 src/Content/Item.php:354 src/Model/Item.php:2754 -msgid "photo" -msgstr "dealbh" - -#: mod/tagger.php:78 src/Content/Item.php:348 src/Content/Item.php:358 -msgid "status" -msgstr "staid" - -#: mod/tagger.php:111 src/Content/Item.php:368 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "Chuir %1$s taga %4$s ri %3$s aig %2$s" - -#: mod/tagrm.php:113 -msgid "Remove Item Tag" -msgstr "Thoir air falbh taga an nì" - -#: mod/tagrm.php:115 -msgid "Select a tag to remove: " -msgstr "Tagh taga gus a thoirt air falbh: " - -#: mod/tagrm.php:126 src/Module/Settings/Delegation.php:179 -#: src/Module/Settings/TwoFactor/Trusted.php:142 -msgid "Remove" -msgstr "Thoir air falbh" - -#: mod/uimport.php:46 -msgid "User imports on closed servers can only be done by an administrator." -msgstr "Chan fhaod ach rianairean cleachdaichean ion-phortadh gu frithealaichean dùinte." - -#: mod/uimport.php:55 src/Module/Register.php:99 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Chlàradh na tha ceadaichte de chunntasan ùra air an làrach seo an-diugh. Feuch ris a-rithist a-màireach." - -#: mod/uimport.php:62 src/Module/Register.php:173 -msgid "Import" -msgstr "Ion-phortaich" - -#: mod/uimport.php:64 -msgid "Move account" -msgstr "Imrich an cunntas" - -#: mod/uimport.php:65 -msgid "You can import an account from another Friendica server." -msgstr "’S urrainn dhut cunntas ion-phortadh o fhrithealaiche Friendica eile." - -#: mod/uimport.php:66 -msgid "" -"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." -msgstr "Feumaidh tu an cunntas agad às-phortadh on t-seann-fhrithealaiche ’s a luchdadh suas an-seo. Ath-chruthaichidh sinn an seann-chunntas agad an-seo leis an luchd-aithne gu lèir agad. Feuchaidh sinn cuideachd gun leig sinn fios dha do charaidean gun do dh’imrich thu an-seo." - -#: mod/uimport.php:67 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "Chan e ach gleus deuchainneil a tha seo. Chan urrain dhuinn luchd-aithne ion-phortadh on lìonra OStatus (GNU Social/Statusnet) no o Dhiaspora" - -#: mod/uimport.php:68 -msgid "Account file" -msgstr "Faidhle a’ chunntais" - -#: mod/uimport.php:68 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Airson an cunntas agad às-phortadh, tadhail air “Roghainnean” -> “Às-phortaich an dàta pearsanta agad” agus tagh “Às-phortaich an cunntas”" - -#: mod/unfollow.php:65 mod/unfollow.php:134 -msgid "You aren't following this contact." -msgstr "Chan eil thu a’ leantainn air an neach-aithne seo." - -#: mod/unfollow.php:71 -msgid "Unfollowing is currently not supported by your network." -msgstr "Cha chuir an lìonra agad taic ri sgur de leantainn air an àm seo." - -#: mod/unfollow.php:92 -msgid "Disconnect/Unfollow" -msgstr "Dì-cheangail/Na lean tuilleadh" - -#: mod/unfollow.php:143 -msgid "Contact was successfully unfollowed" -msgstr "Chan eil thu a’ leantainn air an neach-aithne tuilleadh" - -#: mod/unfollow.php:146 -msgid "Unable to unfollow this contact, please contact your administrator" -msgstr "Cha deach leinn an neach-aithne a thoirt air falbh on fheadhainn air a leanas tu, cuir fios gun rianaire agad" - -#: mod/wall_attach.php:40 mod/wall_attach.php:46 mod/wall_attach.php:75 -#: mod/wall_upload.php:54 mod/wall_upload.php:63 mod/wall_upload.php:97 -#: mod/wall_upload.php:148 mod/wall_upload.php:150 -msgid "Invalid request." -msgstr "Iarrtas mì-dhligheach." - -#: mod/wall_attach.php:93 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Tha sinn duilich a dh’fhaoidte gu bheil an luchdadh suas agad nas motha na tha ceadaichte leis an rèiteachadh PHP" - -#: mod/wall_attach.php:93 -msgid "Or - did you try to upload an empty file?" -msgstr "Air neo – an do dh’fheuch thu ri faidhle falamh a luchdadh suas?" - -#: mod/wall_attach.php:104 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Tha am faidhle nas motha na tha ceadaichte dhe %s" - -#: mod/wall_attach.php:119 -msgid "File upload failed." -msgstr "Dh’fhàillig luchdadh suas an fhaidhle." - -#: mod/wall_upload.php:218 src/Model/Photo.php:1087 -msgid "Wall Photos" -msgstr "Dealbhan balla" - -#: mod/wallmessage.php:62 mod/wallmessage.php:116 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Chaidh thu thairis air àireamh nan teachdaireachdan-balla làitheil dha %s. Dh’fhàillig leis an teachdaireachd." - -#: mod/wallmessage.php:73 -msgid "Unable to check your home location." -msgstr "Cha b’ urrainn dhuinn sùil a thoir air ionad do dhachaigh." - -#: mod/wallmessage.php:97 mod/wallmessage.php:104 -msgid "No recipient." -msgstr "Gun fhaightear." - -#: mod/wallmessage.php:130 -#, 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 "Nam bu mhiann leat gum freagair %s, dearbh gun ceadaich roghainnean prìobhaideachd na làraich agad puist-d phrìobhaideach o sheòladairean nach aithne dhut." - #: src/App.php:473 msgid "No system theme config value set." msgstr "Cha deach luach a shuidheachadh do rèiteachadh ùrlar an t-siostaim." -#: src/App.php:594 +#: src/App.php:580 msgid "Apologies but the website is unavailable at the moment." msgstr "Tha sinn duilich ach chan eil an làrach-lìn ri fhaighinn an-dràsta." -#: src/App/Page.php:276 +#: src/App/Page.php:248 msgid "Delete this item?" msgstr "A bheil thu airson an nì seo a sguabadh às?" -#: src/App/Page.php:277 +#: src/App/Page.php:249 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "A bheil thu airson an t-ùghdar seo a bhacadh? Chan urrainn dhaibh leantainn ort no na postaichean poblach agad fhaicinn tuilleadh agus chan fhaic thu fhèin na postaichean no na brathan uapa." -#: src/App/Page.php:347 -msgid "toggle mobile" +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "A bheil thu airson an t-ùghdar seo a leigeil seachad? Chan fhaic thu na postaichean no na brathan uapa." + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "A bheil thu airson postaichean an ùghdair seo a cho-theannachadh?" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" msgstr "" -#: src/App/Router.php:282 +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "" + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "Cha deach leinn a chur ris na h-annsachdan" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "Cha deach leinn a thoirt air falbh o na h-annsachdan" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "Cha deach leinn a cho-roinneadh" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "Cha deach leis an làthaireachd" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "Mearachd a’ backend" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "Mearachd lìonraidh" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "Leig às faidhlichean an-seo gus an luchdadh suas" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "Cha chuir am brabhsair agad taic ri luchdadh suas fhaidhlichean le slaodadh is leigeil às." + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "Cleachd an t-seann-dòigh airson faidhlichean a luchdadh suas leis an fhoirm gu h-ìosal." + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "Tha am faidhle ro mhòr ({{filesize}}MiB). Meud as motha nam faidhlichean: {{maxFilesize}}MiB." + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "Chan urrainn dhut faidhlichean dhen t-seòrsa seo a luchdadh suas." + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "Dh’fhreagair am frithealaiche le còd {{statusCode}}." + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "Sguir dhen luchdadh suas" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "Chaidh sgur dhen luchdadh suas." + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "A bheil thu cinnteach gu bheil thu airson sgur dhen luchdadh suas seo?" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "Thoir am faidhle air falbh" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "Chan urrainn dhut barrachd fhaidhlichean a luchdadh suas." + +#: src/App/Page.php:351 +msgid "toggle mobile" +msgstr "toglaich mobile" + +#: src/App/Router.php:309 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Chan eil am modh ceadaichte dhan mhòideal seo. Modh(an) ceadaichte: %s" -#: src/App/Router.php:284 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 msgid "Page not found." msgstr "Cha deach an duilleag a lorg." -#: src/App/Router.php:312 +#: src/App/Router.php:323 msgid "You must be logged in to use addons. " msgstr "Feumaidh tu clàradh a-steach mus urrainn dhut tuilleadain a chleachdadh. " -#: src/BaseModule.php:392 +#: src/BaseModule.php:401 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 "Cha robh tòcan tèarainteachd an fhoirm mar bu chòir. Tha sinn an dùil gun do thachair sin air sgàth ’s gun robh am foirm fosgailte do fhada (>3 uairean a thìde) mus deach a chur a-null." -#: src/BaseModule.php:419 +#: src/BaseModule.php:428 msgid "All contacts" msgstr "A h-uile neach-aithne" -#: src/BaseModule.php:424 src/Content/Widget.php:235 src/Core/ACL.php:194 -#: src/Module/Contact.php:367 src/Module/PermissionTooltip.php:122 -#: src/Module/PermissionTooltip.php:144 +#: src/BaseModule.php:433 src/Content/Conversation/Factory/Timeline.php:62 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 msgid "Followers" msgstr "Luchd-leantainn" -#: src/BaseModule.php:429 src/Content/Widget.php:236 -#: src/Module/Contact.php:368 +#: src/BaseModule.php:438 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 msgid "Following" msgstr "A’ leantainn" -#: src/BaseModule.php:434 src/Content/Widget.php:237 -#: src/Module/Contact.php:369 +#: src/BaseModule.php:443 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 msgid "Mutual friends" msgstr "Caraidean an cumantas" -#: src/BaseModule.php:442 +#: src/BaseModule.php:451 msgid "Common" msgstr "Cumanta" @@ -1639,73 +833,73 @@ msgid "The contact entries have been archived" msgstr "Chaidh an luchd-aithne a chur san tasg-lann" #: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Cha do lorg sinn neach-aithne dhan URL seo (%s)" #: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:66 +#: src/Module/Moderation/Blocklist/Contact.php:82 msgid "The contact has been blocked from the node" msgstr "Chaidh an neach-aithne a bhacadh on nòd" -#: src/Console/MergeContacts.php:74 +#: src/Console/MergeContacts.php:75 #, php-format msgid "%d %s, %d duplicates." -msgstr "" +msgstr "%d %s, dùblachaidhean: %d." -#: src/Console/MergeContacts.php:77 +#: src/Console/MergeContacts.php:78 #, php-format msgid "uri-id is empty for contact %s." msgstr "Tha uri-id falamh dhan neach-aithne %s." -#: src/Console/MergeContacts.php:90 +#: src/Console/MergeContacts.php:91 #, php-format msgid "No valid first contact found for uri-id %d." -msgstr "" +msgstr "Cha deach ciad neach-aithne dligheach a lorg dha uri-id %d." -#: src/Console/MergeContacts.php:101 +#: src/Console/MergeContacts.php:102 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "Lorg sinn an dùblachadh ceàrr dha uri-id %d am broinn %d (url: %s != %s)." -#: src/Console/MergeContacts.php:105 +#: src/Console/MergeContacts.php:106 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "Lorg sinn an dùblachadh ceàrr dha uri-id %d am broinn %d (nurl: %s != %s)." -#: src/Console/MergeContacts.php:141 +#: src/Console/MergeContacts.php:142 #, php-format msgid "Deletion of id %d failed" msgstr "Cha deach leinn id %d a sguabadh às" -#: src/Console/MergeContacts.php:143 +#: src/Console/MergeContacts.php:144 #, php-format msgid "Deletion of id %d was successful" msgstr "Chaidh id %d a sguabadh às" -#: src/Console/MergeContacts.php:149 +#: src/Console/MergeContacts.php:150 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "Ag ùrachadh “%s” am broinn “%s” o %d gu %d" -#: src/Console/MergeContacts.php:151 +#: src/Console/MergeContacts.php:152 msgid " - found" msgstr " – air a lorg" -#: src/Console/MergeContacts.php:158 +#: src/Console/MergeContacts.php:159 msgid " - failed" msgstr " – air fàilligeadh" -#: src/Console/MergeContacts.php:160 +#: src/Console/MergeContacts.php:161 msgid " - success" msgstr " – chaidh leis" -#: src/Console/MergeContacts.php:164 +#: src/Console/MergeContacts.php:165 msgid " - deleted" msgstr " – air a sguabadh às" -#: src/Console/MergeContacts.php:167 +#: src/Console/MergeContacts.php:168 msgid " - done" msgstr " – deiseil" @@ -1763,17 +957,26 @@ msgstr "Tha na h-ùrachaidhean air postaichean rin dèiligeadh deiseil." msgid "Enter user nickname: " msgstr "Cuir a-steach far-ainm a’ chleachdaiche: " +#: src/Console/User.php:182 src/Model/User.php:711 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "Cha deach an cleachdaiche a lorg" + #: src/Console/User.php:202 msgid "Enter new password: " msgstr "Cuir a-steach am facal-faire ùr: " -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:65 -#: src/Module/Settings/Account.php:74 +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 msgid "Password update failed. Please try again." msgstr "Dh’fhàillig ùrachadh an fhacail-fhaire. Feuch ris a-rithist." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:68 -#: src/Module/Settings/Account.php:77 +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 msgid "Password changed." msgstr "Chaidh am facal-faire atharrachadh." @@ -1862,16 +1065,20 @@ msgstr "OStatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 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 +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 msgid "Email" msgstr "Post-d" #: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 msgid "Diaspora" -msgstr "Diaspora" +msgstr "Diaspora*" #: src/Content/ContactSelector.php:131 msgid "Zot!" @@ -1907,7 +1114,7 @@ msgstr "Discourse" #: src/Content/ContactSelector.php:139 msgid "Diaspora Connector" -msgstr "Ceangladair diaspora" +msgstr "Ceangladair diaspora*" #: src/Content/ContactSelector.php:140 msgid "GNU Social Connector" @@ -1921,266 +1128,528 @@ msgstr "ActivityPub" msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:178 +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "Tumblr" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "Bluesky" + +#: src/Content/ContactSelector.php:180 #, php-format msgid "%s (via %s)" msgstr "%s (slighe %s)" -#: src/Content/Conversation.php:207 -#, php-format -msgid "%s likes this." -msgstr "’S toigh le %s seo." - -#: src/Content/Conversation.php:210 -#, php-format -msgid "%s doesn't like this." -msgstr "Cha toigh le %s seo." - -#: src/Content/Conversation.php:213 -#, php-format -msgid "%s attends." -msgstr "Bidh %s an làthair." - -#: src/Content/Conversation.php:216 -#, php-format -msgid "%s doesn't attend." -msgstr "Cha bhi %s an làthair." - -#: src/Content/Conversation.php:219 -#, php-format -msgid "%s attends maybe." -msgstr "’S dòcha gum bi %s an làthair." - -#: src/Content/Conversation.php:222 src/Content/Conversation.php:260 -#: src/Content/Conversation.php:873 -#, php-format -msgid "%s reshared this." -msgstr "Co-roinn %s seo." - -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:226 msgid "and" msgstr "agus" -#: src/Content/Conversation.php:231 +#: src/Content/Conversation.php:229 #, php-format msgid "and %d other people" msgstr "agus %d eile" +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "’S toigh le %2$s seo." +msgstr[1] "’S toigh le %2$s seo." +msgstr[2] "’S toigh le %2$s seo." +msgstr[3] "’S toigh le %2$s seo." + +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "Cha toigh le %2$s seo." +msgstr[1] "Cha toigh le %2$s seo." +msgstr[2] "Cha toigh le %2$s seo." +msgstr[3] "Cha toigh le %2$s seo." + #: src/Content/Conversation.php:239 #, php-format -msgid "%2$d people like this" -msgstr "’S toigh le %2$d seo" +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "Bidh %2$s an làthair." +msgstr[1] "Bidh %2$s an làthair." +msgstr[2] "Bidh %2$s an làthair." +msgstr[3] "Bidh %2$s an làthair." -#: src/Content/Conversation.php:240 +#: src/Content/Conversation.php:241 #, php-format -msgid "%s like this." -msgstr "’S toigh le %s seo." +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "Cha bhi %2$s an làthair." +msgstr[1] "Cha bhi %2$s an làthair." +msgstr[2] "Cha bhi %2$s an làthair." +msgstr[3] "Cha bhi %2$s an làthair." #: src/Content/Conversation.php:243 #, php-format -msgid "%2$d people don't like this" -msgstr "Cha toigh le %2$d seo" +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "’S dòcha gum bi %2$s an làthair." +msgstr[1] "’S dòcha gum bi %2$s an làthair." +msgstr[2] "’S dòcha gum bi %2$s an làthair." +msgstr[3] "’S dòcha gum bi %2$s an làthair." -#: src/Content/Conversation.php:244 +#: src/Content/Conversation.php:245 #, php-format -msgid "%s don't like this." -msgstr "Cha toigh le %s seo." +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "Co-roinn %2$s seo." +msgstr[1] "Co-roinn %2$s seo." +msgstr[2] "Co-roinn %2$s seo." +msgstr[3] "Co-roinn %2$s seo." -#: src/Content/Conversation.php:247 +#: src/Content/Conversation.php:274 #, php-format -msgid "%2$d people attend" -msgstr "Bidh %2$d an làthair" +msgid " likes this" +msgid_plural " like this" +msgstr[0] "’S toil le seo" +msgstr[1] "’S toigh le seo" +msgstr[2] "’S toigh le seo" +msgstr[3] "’S toigh le seo" -#: src/Content/Conversation.php:248 +#: src/Content/Conversation.php:277 #, php-format -msgid "%s attend." -msgstr "Bidh %s an làthair." +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] "Cha toigh le seo" +msgstr[1] "Cha toigh le seo" +msgstr[2] "Cha toigh le seo" +msgstr[3] "Cha toigh le seo" -#: src/Content/Conversation.php:251 +#: src/Content/Conversation.php:280 #, php-format -msgid "%2$d people don't attend" -msgstr "Cha bhi %2$d an làthair" +msgid " attends" +msgid_plural " attend" +msgstr[0] "Bidh an làthair" +msgstr[1] "Bidh an làthair" +msgstr[2] "Bidh an làthair" +msgstr[3] "Bidh an làthair" -#: src/Content/Conversation.php:252 +#: src/Content/Conversation.php:283 #, php-format -msgid "%s don't attend." -msgstr "Cha bhi %s an làthair." +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] "Cha bhi an làthair." +msgstr[1] "Cha bhi an làthair" +msgstr[2] "Cha bhi an làthair" +msgstr[3] "Cha bhi an làthair" -#: src/Content/Conversation.php:255 +#: src/Content/Conversation.php:286 #, php-format -msgid "%2$d people attend maybe" -msgstr "’S dòcha gum bi %2$d an làthair" +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] "’S dòcha gum bi an làthair" +msgstr[1] "’S dòcha gum bi an làthair" +msgstr[2] "’S dòcha gum bi an làthair" +msgstr[3] "’S dòcha gum bi an làthair" -#: src/Content/Conversation.php:256 +#: src/Content/Conversation.php:289 #, php-format -msgid "%s attend maybe." -msgstr "’S dòcha gum bi %s an làthair." +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] "Cho-roinn seo" +msgstr[1] "Cho-roinn seo" +msgstr[2] "Cho-roinn seo" +msgstr[3] "Cho-roinn seo" -#: src/Content/Conversation.php:259 -#, php-format -msgid "%2$d people reshared this" -msgstr "Cho-roinn %2$d seo" - -#: src/Content/Conversation.php:307 +#: src/Content/Conversation.php:336 msgid "Visible to everybody" msgstr "Chì a h-uile duine e" -#: src/Content/Conversation.php:308 src/Module/Item/Compose.php:171 -#: src/Object/Post.php:1002 +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1107 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Cuir a-steach URL deilbh/video/fuaime/làraich-lìn:" -#: src/Content/Conversation.php:309 +#: src/Content/Conversation.php:338 msgid "Tag term:" msgstr "Teirm tagaidh:" -#: src/Content/Conversation.php:310 src/Module/Filer/SaveTag.php:72 +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 msgid "Save to Folder:" msgstr "Sàbhail gu pasgan:" -#: src/Content/Conversation.php:311 +#: src/Content/Conversation.php:340 msgid "Where are you right now?" msgstr "Càit a bheil thu an-dràsta?" -#: src/Content/Conversation.php:312 +#: src/Content/Conversation.php:341 msgid "Delete item(s)?" msgstr "An sguab thu seo às?" -#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:143 +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 msgid "Created at" msgstr "Air a chruthachadh" -#: src/Content/Conversation.php:334 +#: src/Content/Conversation.php:363 msgid "New Post" msgstr "Post ùr" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:366 msgid "Share" msgstr "Co-roinn" -#: src/Content/Conversation.php:348 src/Module/Item/Compose.php:168 -#: src/Object/Post.php:999 +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "luchdaich suas dealbh" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Ceangail faidhle ris" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "ceangail faidhle ris" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1097 +msgid "Bold" +msgstr "Trom" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1098 +msgid "Italic" +msgstr "Eadailteach" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1099 +msgid "Underline" +msgstr "Loidhne fodha" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1101 +msgid "Quote" +msgstr "Iomradh" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1102 +msgid "Add emojis" +msgstr "Cuir Emojis ris" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1100 +msgid "Content Warning" +msgstr "Rabhadh susbainte" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1103 +msgid "Code" +msgstr "Còd" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1104 msgid "Image" msgstr "Dealbh" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1105 +msgid "Link" +msgstr "Ceangal" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1106 +msgid "Link or Media" +msgstr "Ceangal no meadhan" + +#: src/Content/Conversation.php:382 msgid "Video" msgstr "Video" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:184 +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "Suidhich d’ ionad" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "suidhich d’ ionad" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "Falamhaich ionad a’ bhrabhsair" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "falamhaich an ionad" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Suidhich an tiotal" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Roinnean-seòrsa (liosta sgaraichte le cromagan)." + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 msgid "Scheduled at" msgstr "Air an sgeideal" -#: src/Content/Conversation.php:657 src/Object/Post.php:244 -msgid "Pinned item" -msgstr "Nì prìnichte" +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Roghainnean cead" -#: src/Content/Conversation.php:673 src/Object/Post.php:486 -#: src/Object/Post.php:487 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Seall a’ phròifil aig %s @ %s" +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Post poblach" -#: src/Content/Conversation.php:686 src/Object/Post.php:474 -msgid "Categories:" -msgstr "Roinnean-seòrsa:" +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:120 +#: src/Model/Profile.php:467 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "Teachdaireachd" -#: src/Content/Conversation.php:687 src/Object/Post.php:475 -msgid "Filed under:" -msgstr "Air a chlàradh fo:" +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Brabhsair" -#: src/Content/Conversation.php:695 src/Object/Post.php:500 -#, php-format -msgid "%s from %s" -msgstr "%s o %s" +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "Fosgail duilleag an sgrìobhaidh" -#: src/Content/Conversation.php:711 -msgid "View in context" -msgstr "Seall le co-theacsa" - -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:595 msgid "remove" msgstr "thoir air falbh" -#: src/Content/Conversation.php:780 +#: src/Content/Conversation.php:599 msgid "Delete Selected Items" msgstr "Sguab às na nithean a thagh thu" -#: src/Content/Conversation.php:845 src/Content/Conversation.php:848 -#: src/Content/Conversation.php:851 src/Content/Conversation.php:854 +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 #, php-format msgid "You had been addressed (%s)." msgstr "Chaidh d’ ainmeachadh (%s)." -#: src/Content/Conversation.php:857 +#: src/Content/Conversation.php:769 #, php-format msgid "You are following %s." msgstr "Tha thu a’ leantainn air %s." -#: src/Content/Conversation.php:860 +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "" + +#: src/Content/Conversation.php:776 msgid "You subscribed to one or more tags in this post." msgstr "Dh’fho-sgrìobh thu air taga no dhà sa phost seo." -#: src/Content/Conversation.php:875 +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "Co-roinn %s seo." + +#: src/Content/Conversation.php:798 msgid "Reshared" msgstr "’Ga cho-roinneadh" -#: src/Content/Conversation.php:875 +#: src/Content/Conversation.php:798 #, php-format msgid "Reshared by %s <%s>" msgstr "’Ga cho-roinneadh le %s <%s>" -#: src/Content/Conversation.php:878 +#: src/Content/Conversation.php:801 #, php-format msgid "%s is participating in this thread." msgstr "Tha %s a’ gabhail pàirt san t-snàithlean seo." -#: src/Content/Conversation.php:881 +#: src/Content/Conversation.php:804 msgid "Stored for general reasons" msgstr "Chaidh a stòradh air adhbharan coitcheann" -#: src/Content/Conversation.php:884 +#: src/Content/Conversation.php:807 msgid "Global post" msgstr "Post co-naisgte" -#: src/Content/Conversation.php:887 +#: src/Content/Conversation.php:810 msgid "Sent via an relay server" msgstr "Chaidh a chur slighe frithealaiche ath-sheachadain" -#: src/Content/Conversation.php:887 +#: src/Content/Conversation.php:810 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "Chaidh a chur slighe frithealaiche ath-sheachadain %s <%s>" -#: src/Content/Conversation.php:890 +#: src/Content/Conversation.php:813 msgid "Fetched" msgstr "Air fhaighinn" -#: src/Content/Conversation.php:890 +#: src/Content/Conversation.php:813 #, php-format msgid "Fetched because of %s <%s>" msgstr "Air fhaighinn ri linn %s <%s>" -#: src/Content/Conversation.php:893 +#: src/Content/Conversation.php:816 msgid "Stored because of a child post to complete this thread." msgstr "Chaidh a stòradh air sàilleibh post-cloinne airson an snàithlean iomlain fhaighinn." -#: src/Content/Conversation.php:896 +#: src/Content/Conversation.php:819 msgid "Local delivery" msgstr "Lìbhrigeadh ionadail" -#: src/Content/Conversation.php:899 +#: src/Content/Conversation.php:822 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Chaidh a stòradh air sàilleibh do ghnìomhachd (’s toigh, beachd, rionnag, …)" -#: src/Content/Conversation.php:902 +#: src/Content/Conversation.php:825 msgid "Distributed" msgstr "Sgaoilte" -#: src/Content/Conversation.php:905 +#: src/Content/Conversation.php:828 msgid "Pushed to us" msgstr "Air a phutadh thugainne" +#: src/Content/Conversation.php:1492 src/Object/Post.php:247 +msgid "Pinned item" +msgstr "Nì prìnichte" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:521 +#: src/Object/Post.php:522 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Seall a’ phròifil aig %s @ %s" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:509 +msgid "Categories:" +msgstr "Roinnean-seòrsa:" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:510 +msgid "Filed under:" +msgstr "Air a chlàradh fo:" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:535 +#, php-format +msgid "%s from %s" +msgstr "%s o %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "Seall le co-theacsa" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "For you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "What's Hot" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "Posts with a lot of interactions" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:61 +#, php-format +msgid "Posts in %s" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:62 +msgid "Posts from your followers that you don't follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Sharers of sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Posts with images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Posts with audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Posts with videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Local Community" +msgstr "Coimhearsnachd ionadail" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Posts from local users on this server" +msgstr "Postaichean o luchd-cleachdaidh ionadail an fhrithealaiche seo" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Global Community" +msgstr "Coimhearsnachd cho-naisgte" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Posts from users of the whole federated network" +msgstr "Postaichean on luchd-cleachdaidh air an lìonra cho-naisgte gu lèir" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Latest Activity" +msgstr "A’ ghnìomhachd as ùire" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Sort by latest activity" +msgstr "Seòrsaich a-rèir na gnìomhachd as ùire" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Latest Posts" +msgstr "Na postaichean as ùire" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Sort by post received date" +msgstr "Seòrsaich a-rèir ceann-là faighinn nam post" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Latest Creation" +msgstr "An cruthachadh as ùire" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Sort by post creation date" +msgstr "Seòrsaich a-rèir ceann-là cruthachadh nam post" + +#: src/Content/Conversation/Factory/Timeline.php:106 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "Pearsanta" + +#: src/Content/Conversation/Factory/Timeline.php:106 +msgid "Posts that mention or involve you" +msgstr "Postaichean le iomradh ort no sa bheil thu an sàs" + +#: src/Content/Conversation/Factory/Timeline.php:107 src/Object/Post.php:380 +msgid "Starred" +msgstr "Rionnag" + +#: src/Content/Conversation/Factory/Timeline.php:107 +msgid "Favourite Posts" +msgstr "Na postaichean as annsa" + #: src/Content/Feature.php:96 msgid "General Features" msgstr "Gleusan coitcheann" @@ -2210,13 +1679,13 @@ msgid "Post Composition Features" msgstr "Gleusan sgrìobhadh puist" #: src/Content/Feature.php:105 -msgid "Auto-mention Forums" -msgstr "Thoir iomradh air fòram gu fèin-obrachail" +msgid "Auto-mention Groups" +msgstr "Thoir iomradh air bhuidhnean gu fèin-obrachail" #: src/Content/Feature.php:105 msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Cuir ris/thoir air falbh an t-iomradh nuair a thèid duilleag fòraim a thaghadh no dì-thaghadh san uinneag ACL." +"Add/remove mention when a group page is selected/deselected in ACL window." +msgstr "Cuir ris/thoir air falbh an t-iomradh nuair a thèid duilleag buidhinn a thaghadh no dì-thaghadh san uinneag ACL." #: src/Content/Feature.php:106 msgid "Explicit Mentions" @@ -2256,12 +1725,12 @@ msgid "Advanced Profile Settings" msgstr "Roghainnean adhartach na pròifile" #: src/Content/Feature.php:119 -msgid "List Forums" -msgstr "Liosta nam fòraman" +msgid "List Groups" +msgstr "Seall na buidhnean" #: src/Content/Feature.php:119 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Seall fòraman poblach na coimhearsnachd dhan fheadhainn a thadhlas air duilleag adhartach na pròifil" +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "Seall buidhnean poblach dhan fheadhainn a thadhlas air duilleag adhartach na pròifil" #: src/Content/Feature.php:120 msgid "Tag Cloud" @@ -2279,351 +1748,433 @@ msgstr "Seall ceann-là na ballrachd" msgid "Display membership date in profile" msgstr "Seall ceann-là na ballrachd sa phròifil" -#: src/Content/ForumManager.php:151 src/Content/Nav.php:241 -#: src/Content/Text/HTML.php:903 src/Content/Widget.php:524 -msgid "Forums" -msgstr "Fòraman" +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "Roghainnean adhartach a’ mhìosachain" -#: src/Content/ForumManager.php:153 -msgid "External link to forum" -msgstr "Ceangal cèin dhan fhòram" +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "Ceadaich inntrigeadh gun ainm dhan mhìosachan agad" -#: src/Content/ForumManager.php:156 src/Content/Widget.php:503 +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "Leigidh seo le aoighean sùil a thoirt air a’ mhìosachan ’s air na tachartasan poblach agad. Bidh tachartasan cinn-là breith an luchd-aithne agad prìobhaideach dhut-sa." + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1273 +msgid "Groups" +msgstr "Buidhnean" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "Ceangal cèin dhan bhuidheann" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 msgid "show less" msgstr "seall nas lugha dheth" -#: src/Content/ForumManager.php:157 src/Content/Widget.php:405 -#: src/Content/Widget.php:504 +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 msgid "show more" msgstr "seall barrachd dheth" -#: src/Content/Item.php:306 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "Cruthaich buidheann ùr" -#: src/Content/Item.php:345 src/Model/Item.php:2752 +#: src/Content/Item.php:331 src/Model/Item.php:3003 msgid "event" msgstr "tachartas" -#: src/Content/Item.php:438 view/theme/frio/theme.php:260 +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "staid" + +#: src/Content/Item.php:340 src/Model/Item.php:3005 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "dealbh" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "Chuir %1$s taga %4$s ri %3$s aig %2$s" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 msgid "Follow Thread" msgstr "Lean air an t-snàithlean" -#: src/Content/Item.php:439 src/Model/Contact.php:1119 +#: src/Content/Item.php:429 src/Model/Contact.php:1227 msgid "View Status" msgstr "Seall an staid" -#: src/Content/Item.php:440 src/Content/Item.php:462 -#: src/Model/Contact.php:1053 src/Model/Contact.php:1111 -#: src/Model/Contact.php:1120 src/Module/Directory.php:158 -#: src/Module/Settings/Profile/Index.php:225 +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1219 +#: src/Model/Contact.php:1228 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Seall a’ phròifil" -#: src/Content/Item.php:441 src/Model/Contact.php:1121 +#: src/Content/Item.php:431 src/Model/Contact.php:1229 msgid "View Photos" msgstr "Seall na dealbhan" -#: src/Content/Item.php:442 src/Model/Contact.php:1112 -#: src/Model/Contact.php:1122 +#: src/Content/Item.php:432 src/Model/Contact.php:1220 +#: src/Model/Contact.php:1230 msgid "Network Posts" msgstr "Postaichean lìonraidh" -#: src/Content/Item.php:443 src/Model/Contact.php:1113 -#: src/Model/Contact.php:1123 +#: src/Content/Item.php:433 src/Model/Contact.php:1221 +#: src/Model/Contact.php:1231 msgid "View Contact" msgstr "Seall an neach-aithne" -#: src/Content/Item.php:444 src/Model/Contact.php:1124 +#: src/Content/Item.php:434 src/Model/Contact.php:1232 msgid "Send PM" msgstr "Cuir TPh" -#: src/Content/Item.php:445 src/Module/Admin/Blocklist/Contact.php:100 -#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 -#: src/Module/Contact.php:398 src/Module/Contact/Profile.php:348 -#: src/Module/Contact/Profile.php:449 +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 msgid "Block" msgstr "Bac" -#: src/Content/Item.php:446 src/Module/Contact.php:399 -#: src/Module/Contact/Profile.php:349 src/Module/Contact/Profile.php:457 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 -#: src/Module/Notifications/Notification.php:88 +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 msgid "Ignore" msgstr "Leig seachad" -#: src/Content/Item.php:450 src/Object/Post.php:455 +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "Co-theannaich" + +#: src/Content/Item.php:438 src/Object/Post.php:288 +#, php-format +msgid "Ignore %s server" +msgstr "" + +#: src/Content/Item.php:442 src/Object/Post.php:490 msgid "Languages" msgstr "Cànanan" -#: src/Content/Item.php:454 src/Model/Contact.php:1125 -msgid "Poke" -msgstr "" +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1222 src/Model/Contact.php:1233 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Ceangail ris/Lean air" -#: src/Content/Nav.php:90 +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "Chan urrainn dhuinn an cleachdaiche fhaighinn dhut." + +#: src/Content/Nav.php:121 msgid "Nothing new here" msgstr "Chan eil dad ùr an-seo" -#: src/Content/Nav.php:94 src/Module/Special/HTTPException.php:50 +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 msgid "Go back" msgstr "Air ais" -#: src/Content/Nav.php:95 +#: src/Content/Nav.php:126 msgid "Clear notifications" msgstr "Falamhaich na brathan" -#: src/Content/Nav.php:96 src/Content/Text/HTML.php:890 -msgid "@name, !forum, #tags, content" -msgstr "@ainm, !fòram, #tagaichean, susbaint" +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" +msgstr "@ainm, !buidheann, #tagaichean, susbaint" -#: src/Content/Nav.php:185 src/Module/Security/Login.php:158 +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 msgid "Logout" msgstr "Clàraich a-mach" -#: src/Content/Nav.php:185 +#: src/Content/Nav.php:222 msgid "End this session" msgstr "Cuir crìoch air an t-seisean seo" -#: src/Content/Nav.php:187 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:159 +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 msgid "Login" msgstr "Clàraich a-steach" -#: src/Content/Nav.php:187 +#: src/Content/Nav.php:224 msgid "Sign in" msgstr "Clàraich a-steach" -#: src/Content/Nav.php:192 src/Module/BaseProfile.php:56 -#: src/Module/Contact.php:433 src/Module/Contact/Profile.php:380 -#: src/Module/Settings/TwoFactor/Index.php:120 view/theme/frio/theme.php:230 -msgid "Status" -msgstr "Staid" +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "Còmhraidhean" -#: src/Content/Nav.php:192 src/Content/Nav.php:275 -#: view/theme/frio/theme.php:230 -msgid "Your posts and conversations" -msgstr "Na postaichean ’s còmhraidhean agad" +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "Na còmhraidhean a thòisich thusa" -#: src/Content/Nav.php:193 src/Module/BaseProfile.php:48 -#: src/Module/BaseSettings.php:55 src/Module/Contact.php:457 -#: src/Module/Contact/Profile.php:382 src/Module/Profile/Profile.php:241 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:231 +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 msgid "Profile" msgstr "Pròifil" -#: src/Content/Nav.php:193 view/theme/frio/theme.php:231 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 msgid "Your profile page" msgstr "Duilleag na pròifil agad" -#: src/Content/Nav.php:194 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Dealbhan" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 msgid "Your photos" msgstr "Na dealbhan agad" -#: src/Content/Nav.php:195 src/Module/BaseProfile.php:72 -#: src/Module/BaseProfile.php:75 src/Module/Contact.php:449 -#: view/theme/frio/theme.php:233 +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 msgid "Media" msgstr "Meadhanan" -#: src/Content/Nav.php:195 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 msgid "Your postings with media" msgstr "Na postaichean agad sa bheil meadhanan" -#: src/Content/Nav.php:196 view/theme/frio/theme.php:234 -msgid "Your events" -msgstr "Na tachartasan agad" +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "Mìosachan" -#: src/Content/Nav.php:197 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "Am mìosachan agad" + +#: src/Content/Nav.php:234 msgid "Personal notes" msgstr "Nòtaichean pearsanta" -#: src/Content/Nav.php:197 +#: src/Content/Nav.php:234 msgid "Your personal notes" msgstr "Na nòtaichean pearsanta agad" -#: src/Content/Nav.php:214 src/Content/Nav.php:275 +#: src/Content/Nav.php:251 src/Content/Nav.php:308 msgid "Home" msgstr "Dachaigh" -#: src/Content/Nav.php:218 src/Module/Register.php:168 +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "Duilleag-dhachaigh" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 #: src/Module/Security/Login.php:124 msgid "Register" msgstr "Clàraich leinn" -#: src/Content/Nav.php:218 +#: src/Content/Nav.php:255 msgid "Create an account" msgstr "Cruthaich cunntas" -#: src/Content/Nav.php:224 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 -#: src/Module/Settings/TwoFactor/Index.php:119 -#: src/Module/Settings/TwoFactor/Recovery.php:105 -#: src/Module/Settings/TwoFactor/Verify.php:145 view/theme/vier/theme.php:226 +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 msgid "Help" msgstr "Cobhair" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:261 msgid "Help and documentation" msgstr "Cobhair is docamaideadh" -#: src/Content/Nav.php:228 +#: src/Content/Nav.php:265 msgid "Apps" msgstr "Aplacaidean" -#: src/Content/Nav.php:228 +#: src/Content/Nav.php:265 msgid "Addon applications, utilities, games" msgstr "Tuilleadain aplacaide, goireis is geama" -#: src/Content/Nav.php:232 src/Content/Text/HTML.php:888 -#: src/Module/Admin/Logs/View.php:87 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 msgid "Search" msgstr "Lorg" -#: src/Content/Nav.php:232 +#: src/Content/Nav.php:269 msgid "Search site content" msgstr "Lorg susbaint san làrach" -#: src/Content/Nav.php:235 src/Content/Text/HTML.php:897 +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 msgid "Full Text" msgstr "Teacsa slàn" -#: src/Content/Nav.php:236 src/Content/Text/HTML.php:898 +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 #: src/Content/Widget/TagCloud.php:68 msgid "Tags" msgstr "Tagaichean" -#: src/Content/Nav.php:237 src/Content/Nav.php:296 -#: src/Content/Text/HTML.php:899 src/Module/BaseProfile.php:125 -#: src/Module/BaseProfile.php:128 src/Module/Contact.php:370 -#: src/Module/Contact.php:464 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 msgid "Contacts" msgstr "Luchd-aithne" -#: src/Content/Nav.php:256 +#: src/Content/Nav.php:289 msgid "Community" msgstr "Coimhearsnachd" -#: src/Content/Nav.php:256 +#: src/Content/Nav.php:289 msgid "Conversations on this and other servers" msgstr "Còmhraidhean air an fhrithealaiche seo is frithealaichean eile" -#: src/Content/Nav.php:260 src/Module/BaseProfile.php:87 -#: src/Module/BaseProfile.php:98 view/theme/frio/theme.php:238 -msgid "Events and Calendar" -msgstr "Tachartasan ’s mìosachan" - -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:296 msgid "Directory" msgstr "Eòlaire" -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:296 msgid "People directory" msgstr "Eòlaire nan daoine" -#: src/Content/Nav.php:265 src/Module/BaseAdmin.php:88 +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 msgid "Information" msgstr "Fiosrachadh" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:298 msgid "Information about this friendica instance" msgstr "Fiosrachadh mun ionstans Friendica seo" -#: src/Content/Nav.php:268 src/Module/Admin/Tos.php:76 -#: src/Module/BaseAdmin.php:99 src/Module/Register.php:176 -#: src/Module/Tos.php:87 +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 msgid "Terms of Service" msgstr "Teirmichean na seirbheise" -#: src/Content/Nav.php:268 +#: src/Content/Nav.php:301 msgid "Terms of Service of this Friendica instance" msgstr "Teirmichean seirbheise an ionstans Friendica seo" -#: src/Content/Nav.php:273 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Network" msgstr "Lìonra" -#: src/Content/Nav.php:273 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Conversations from your friends" msgstr "Còmhraidhean nan caraidean agad" -#: src/Content/Nav.php:279 -msgid "Introductions" -msgstr "" +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "Na postaichean ’s còmhraidhean agad" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:312 +msgid "Introductions" +msgstr "Cuir an aithne" + +#: src/Content/Nav.php:312 msgid "Friend Requests" msgstr "Iarrtasan càirdeis" -#: src/Content/Nav.php:280 src/Module/BaseNotifications.php:148 -#: src/Module/Notifications/Introductions.php:73 +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 msgid "Notifications" msgstr "Brathan" -#: src/Content/Nav.php:281 +#: src/Content/Nav.php:314 msgid "See all notifications" msgstr "Seall gach brath" -#: src/Content/Nav.php:282 +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Cuir comharra gun deach fhaicinn" + +#: src/Content/Nav.php:315 msgid "Mark all system notifications as seen" msgstr "Cuir comharra gun deach gach brath an t-siostaim a leughadh" -#: src/Content/Nav.php:285 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Private mail" msgstr "Post prìobhaideach" -#: src/Content/Nav.php:286 +#: src/Content/Nav.php:319 msgid "Inbox" msgstr "Am bogsa a-steach" -#: src/Content/Nav.php:287 +#: src/Content/Nav.php:320 msgid "Outbox" msgstr "Am bogsa a-mach" -#: src/Content/Nav.php:291 +#: src/Content/Nav.php:324 msgid "Accounts" msgstr "Cunntasan" -#: src/Content/Nav.php:291 +#: src/Content/Nav.php:324 msgid "Manage other pages" msgstr "Stiùir duilleagan eile" -#: src/Content/Nav.php:294 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:122 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:240 +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:175 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 msgid "Settings" msgstr "Roghainnean" -#: src/Content/Nav.php:294 view/theme/frio/theme.php:240 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 msgid "Account settings" msgstr "Roghainnean a’ chunntais" -#: src/Content/Nav.php:296 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 msgid "Manage/edit friends and contacts" msgstr "Stiùir/deasaich caraidean is luchd-aithne" -#: src/Content/Nav.php:301 src/Module/BaseAdmin.php:129 +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 msgid "Admin" msgstr "Rianachd" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:334 msgid "Site setup and configuration" msgstr "Suidheachadh ’s rèiteachadh na làraich" -#: src/Content/Nav.php:304 +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "Maorsainneachd" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "Susbaint is maorsainneachd chleachdaichean" + +#: src/Content/Nav.php:338 msgid "Navigation" msgstr "Seòladaireachd" -#: src/Content/Nav.php:304 +#: src/Content/Nav.php:338 msgid "Site map" msgstr "Mapa na làraich" -#: src/Content/OEmbed.php:317 +#: src/Content/OEmbed.php:316 msgid "Embedding disabled" msgstr "Tha an leabachadh à comas" -#: src/Content/OEmbed.php:441 +#: src/Content/OEmbed.php:440 msgid "Embedded content" msgstr "Susbaint leabaichte" @@ -2643,51 +2194,51 @@ msgstr "air adhart" msgid "last" msgstr "dhan deireadh" -#: src/Content/Text/BBCode.php:998 src/Content/Text/BBCode.php:1833 -#: src/Content/Text/BBCode.php:1834 +#: src/Content/Text/BBCode.php:696 src/Content/Text/BBCode.php:1636 +#: src/Content/Text/BBCode.php:1637 msgid "Image/photo" msgstr "Dealbh" -#: src/Content/Text/BBCode.php:1188 +#: src/Content/Text/BBCode.php:914 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1213 src/Model/Item.php:3331 -#: src/Model/Item.php:3337 src/Model/Item.php:3338 +#: src/Content/Text/BBCode.php:939 src/Model/Item.php:3745 +#: src/Model/Item.php:3751 src/Model/Item.php:3752 msgid "Link to source" msgstr "Ceangal dhan tùs" -#: src/Content/Text/BBCode.php:1751 src/Content/Text/HTML.php:940 +#: src/Content/Text/BBCode.php:1543 src/Content/Text/HTML.php:904 msgid "Click to open/close" msgstr "Briog ’ga fhosgladh/dhùnadh" -#: src/Content/Text/BBCode.php:1782 +#: src/Content/Text/BBCode.php:1576 msgid "$1 wrote:" msgstr "Sgrìobh $1:" -#: src/Content/Text/BBCode.php:1838 src/Content/Text/BBCode.php:1839 +#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642 msgid "Encrypted content" msgstr "Susbaint chrioptaichte" -#: src/Content/Text/BBCode.php:2057 +#: src/Content/Text/BBCode.php:1901 msgid "Invalid source protocol" msgstr "Pròtacal tùis mì-dhligheach" -#: src/Content/Text/BBCode.php:2072 +#: src/Content/Text/BBCode.php:1920 msgid "Invalid link protocol" msgstr "Pròtacal ceangail mì-dhligheach" -#: src/Content/Text/HTML.php:805 +#: src/Content/Text/HTML.php:782 msgid "Loading more entries..." msgstr "A’ luchdadh barrachd nithean…" -#: src/Content/Text/HTML.php:806 +#: src/Content/Text/HTML.php:783 msgid "The end" -msgstr "" +msgstr "A’ chrìoch" -#: src/Content/Text/HTML.php:882 src/Content/Widget/VCard.php:109 -#: src/Model/Profile.php:460 +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:116 +#: src/Model/Profile.php:461 src/Module/Contact/Profile.php:471 msgid "Follow" msgstr "Lean air" @@ -2716,83 +2267,92 @@ msgstr[1] "Tha %d chuireadh ri fhaighinn" msgstr[2] "Tha %d cuiridhean ri fhaighinn" msgstr[3] "Tha %d cuireadh ri fhaighinn" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:179 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 msgid "Find People" msgstr "Lorg daoine" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:180 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 msgid "Enter name or interest" msgstr "Cuir a-steach ainm no ùidh" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:182 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Mar eisimpleir: Aonghas MacLeòid, iasgach" -#: src/Content/Widget.php:82 src/Module/Contact.php:391 -#: src/Module/Directory.php:97 view/theme/vier/theme.php:183 +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 msgid "Find" msgstr "Lorg" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:185 +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "Molaidhean charaidean" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 msgid "Similar Interests" msgstr "Ùidhean an cumantas" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:186 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 msgid "Random Profile" msgstr "Pròifil air thuaiream" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:187 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 msgid "Invite Friends" msgstr "Thoir cuireadh do charaidean" -#: src/Content/Widget.php:87 src/Module/Directory.php:89 -#: view/theme/vier/theme.php:188 +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 msgid "Global Directory" msgstr "Eòlaire co-naisgte" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:190 +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 msgid "Local Directory" msgstr "Eòlaire ionadail" -#: src/Content/Widget.php:211 src/Model/Group.php:587 -#: src/Module/Contact.php:354 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "Buidhnean" +#: src/Content/Widget.php:215 src/Model/Circle.php:600 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "Cearcallan" -#: src/Content/Widget.php:213 +#: src/Content/Widget.php:217 msgid "Everyone" msgstr "A h-uile duine" -#: src/Content/Widget.php:242 +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "Gu dàimh" + +#: src/Content/Widget.php:247 msgid "Relationships" msgstr "Dàimhean" -#: src/Content/Widget.php:244 src/Module/Contact.php:306 -#: src/Module/Group.php:293 +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 msgid "All Contacts" msgstr "A h-uile neach-aithne" -#: src/Content/Widget.php:283 +#: src/Content/Widget.php:288 msgid "Protocols" msgstr "Pròtacalan" -#: src/Content/Widget.php:285 +#: src/Content/Widget.php:290 msgid "All Protocols" msgstr "Gach pròtacal" -#: src/Content/Widget.php:313 +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "Pasganan air an sàbhaladh" -#: src/Content/Widget.php:315 src/Content/Widget.php:346 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "A h-uile càil" -#: src/Content/Widget.php:344 +#: src/Content/Widget.php:349 msgid "Categories" msgstr "Roinnean-seòrsa" -#: src/Content/Widget.php:401 +#: src/Content/Widget.php:406 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2801,39 +2361,47 @@ msgstr[1] "%d luchd-aithne an cumantas" msgstr[2] "%d luchd-aithne an cumantas" msgstr[3] "%d luchd-aithne an cumantas" -#: src/Content/Widget.php:497 +#: src/Content/Widget.php:506 msgid "Archives" msgstr "Tasg-lannan" -#: src/Content/Widget.php:521 +#: src/Content/Widget.php:514 +msgid "On this date" +msgstr "Air an latha seo" + +#: src/Content/Widget.php:534 msgid "Persons" msgstr "Daoine" -#: src/Content/Widget.php:522 +#: src/Content/Widget.php:535 msgid "Organisations" msgstr "Buidhnean" -#: src/Content/Widget.php:523 src/Model/Contact.php:1547 +#: src/Content/Widget.php:536 src/Model/Contact.php:1698 msgid "News" msgstr "Naidheachdan" -#: src/Content/Widget.php:527 src/Module/Settings/Account.php:455 +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 msgid "Account Types" msgstr "Seòrsaichean chunntasan" -#: src/Content/Widget.php:528 src/Module/Admin/BaseUsers.php:51 +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "Na h-uile" -#: src/Content/Widget/CalendarExport.php:54 +#: src/Content/Widget.php:573 src/Module/Settings/Display.php:266 +msgid "Channels" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:56 msgid "Export" msgstr "Às-phortaich" -#: src/Content/Widget/CalendarExport.php:55 +#: src/Content/Widget/CalendarExport.php:57 msgid "Export calendar as ical" msgstr "Às-phortaich am mìosachan ’na ical" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:58 msgid "Export calendar as csv" msgstr "Às-phortaich am mìosachan ’na csv" @@ -2841,7 +2409,7 @@ msgstr "Às-phortaich am mìosachan ’na csv" msgid "No contacts" msgstr "Chan eil neach-aithne ann" -#: src/Content/Widget/ContactBlock.php:108 +#: src/Content/Widget/ContactBlock.php:110 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -2850,7 +2418,7 @@ msgstr[1] "%d luchd-aithne" msgstr[2] "%d luchd-aithne" msgstr[3] "%d luchd-aithne" -#: src/Content/Widget/ContactBlock.php:125 +#: src/Content/Widget/ContactBlock.php:127 msgid "View Contacts" msgstr "Seall an luchd-aithne" @@ -2862,7 +2430,7 @@ msgstr "Thoir am briathar air falbh" msgid "Saved Searches" msgstr "Lorgan a shàbhail thu" -#: src/Content/Widget/TrendingTags.php:51 +#: src/Content/Widget/TrendingTags.php:52 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" @@ -2871,58 +2439,68 @@ msgstr[1] "Tagaichean a’ treandadh (san %d uair a thìde seo chaidh)" msgstr[2] "Tagaichean a’ treandadh (sna %d uairean a thìde seo chaidh)" msgstr[3] "Tagaichean a’ treandadh (san %d uair a thìde seo chaidh)" -#: src/Content/Widget/TrendingTags.php:52 +#: src/Content/Widget/TrendingTags.php:53 msgid "More Trending Tags" msgstr "Barrachd thagaichean a’ treandadh" -#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:379 -#: src/Module/Contact/Profile.php:371 src/Module/Profile/Profile.php:176 +#: src/Content/Widget/VCard.php:109 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:103 src/Model/Profile.php:380 -#: src/Module/Contact/Profile.php:373 src/Module/Profile/Profile.php:180 +#: src/Content/Widget/VCard.php:110 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:472 -#: src/Module/Notifications/Introductions.php:199 +#: src/Content/Widget/VCard.php:111 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Ionad:" + +#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:474 +#: src/Module/Notifications/Introductions.php:201 msgid "Network:" msgstr "Lìonra:" -#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:462 +#: src/Content/Widget/VCard.php:118 src/Model/Contact.php:1223 +#: src/Model/Contact.php:1234 src/Model/Profile.php:463 +#: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Na lean tuilleadh" -#: src/Core/ACL.php:165 src/Module/Profile/Profile.php:242 +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 msgid "Yourself" msgstr "Thu fhèin" -#: src/Core/ACL.php:201 src/Module/PermissionTooltip.php:128 -#: src/Module/PermissionTooltip.php:150 +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 msgid "Mutuals" msgstr "Co-dhàimhean" -#: src/Core/ACL.php:293 +#: src/Core/ACL.php:294 msgid "Post to Email" msgstr "Postaich dhan phost-d" -#: src/Core/ACL.php:320 src/Module/PermissionTooltip.php:85 -#: src/Module/PermissionTooltip.php:197 +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 msgid "Public" msgstr "Poblach" -#: src/Core/ACL.php:321 +#: src/Core/ACL.php:322 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "Thèid an t-susbaint seo a shealltainn dhan luchd-leantainn gu lèir agad agus chithear air duilleagan na coimhearsnachd i agus chì a h-uile duine aig a bheil an ceangal seo i." -#: src/Core/ACL.php:322 src/Module/PermissionTooltip.php:93 +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 msgid "Limited/Private" msgstr "Cuingichte/Prìobhaideach" -#: src/Core/ACL.php:323 +#: src/Core/ACL.php:324 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 " @@ -2930,40 +2508,54 @@ msgid "" msgstr "Thèid an t-susbaint seo a shealltainn dhan fheadhainn san dàrna bhogsa a-mhàin is chan fhaic an fheadhainn sa bhogsa eile. Cha nochd i gu poblach àite sam bith." #: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." +msgstr "Tòisich air ainm neach-aithne no cearcall a sgrìobhadh a shealltainn liosta chriathraichte. ’S urrainn dhut iomradh a thoirt air cearcallan sònraichte mar “Luchd-leantainn” no “Co-dhàimhean” cuideachd." + +#: src/Core/ACL.php:325 msgid "Show to:" msgstr "Seall gu:" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:326 msgid "Except to:" msgstr "Ach gu:" -#: src/Core/ACL.php:328 +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "CC: seòlaidhean puist-d" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Mar eisimpleir: aonghas@ball-eisimpleir.com, oighrig@ball-eisimpleir.com" + +#: src/Core/ACL.php:329 msgid "Connectors" msgstr "Ceangladairean" -#: src/Core/Installer.php:183 +#: src/Core/Installer.php:180 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 "Cha b’ urrainn dhuinn sgrìobadh gu faidhle rèiteachadh an stòir-dhàta “config/local.config.php”. Cleachd an teacsa am broinn seo airson faidhle rèiteachaidh a chruthachadh ann am freumh an fhrithealaiche-lìn agad." -#: src/Core/Installer.php:200 +#: src/Core/Installer.php:197 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Dh’fhaoidte gum bi agad ris an fhaidhle “database.sql” ion-phortadh a làimh le phpmyadmin no mysql." -#: src/Core/Installer.php:201 src/Module/Install.php:213 -#: src/Module/Install.php:372 +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "Faic am faidhle “doc/INSTALL.md”." -#: src/Core/Installer.php:262 +#: src/Core/Installer.php:259 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Cha do lorg sinn tionndadh loidhne-àithne dhe PHP ann am PATH an fhrithealaiche-lìn." -#: src/Core/Installer.php:263 +#: src/Core/Installer.php:260 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 "Mur eil tionndadh loidhne-àithne dhe PHP stàlaichte air an fhrithealaiche agad, chan urrainn dhut am pròiseasadh sa chùlaibh a ruith. Faic “Setup the worker”" -#: src/Core/Installer.php:268 +#: src/Core/Installer.php:265 msgid "PHP executable path" msgstr "Slighe sho-ghnìomhaichte PHP" -#: src/Core/Installer.php:268 +#: src/Core/Installer.php:265 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Cuir a-steach an t-slighe shlàn dhan fhaidhle sho-ghnìomhaichte php. ’S urrainn dhut seo fhàgail bàn airson leantainn air adhart leis an stàladh." -#: src/Core/Installer.php:273 +#: src/Core/Installer.php:270 msgid "Command line PHP" msgstr "Loidhne-àithne PHP" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:279 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "Chan e am faidhle bìnearaidh cli a tha san fhaidhle sho-ghnìomhaichte PHP (dh’fhaoidte gu bheil an tionndadh cgi-fgci agad)" -#: src/Core/Installer.php:283 +#: src/Core/Installer.php:280 msgid "Found PHP version: " msgstr "Chaidh tionndadh dhe PHP a lorg: " -#: src/Core/Installer.php:285 +#: src/Core/Installer.php:282 msgid "PHP cli binary" msgstr "Faidhle bìnearaidh cli PHP" -#: src/Core/Installer.php:298 +#: src/Core/Installer.php:295 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "Chan eil “register_argc_argv” an comas aig an tionndadh loidhne-àithne dhe PHP air an t-siostam agad." -#: src/Core/Installer.php:299 +#: src/Core/Installer.php:296 msgid "This is required for message delivery to work." msgstr "Tha seo riatanach ach an obraich lìbhrigeadh nan teachdaireachdan." -#: src/Core/Installer.php:304 +#: src/Core/Installer.php:301 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:336 +#: src/Core/Installer.php:333 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Mearachd: chan urrainn dhan ghleus “openssl_pkey_new” air an t-siostam seo iuchraichean crioptachaidh a gintinn" -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:334 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Ma tha thu ’ga ruith fo Windows, faic “http://www.php.net/manual/en/openssl.installation.php”." -#: src/Core/Installer.php:340 +#: src/Core/Installer.php:337 msgid "Generate encryption keys" msgstr "A’ gintinn nan iuchraichean crioptachaidh" -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:389 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Mearachd: Tha mòideal mod-rewrite aig an fhrithealaiche-lìn Apache riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:397 +#: src/Core/Installer.php:394 msgid "Apache mod_rewrite module" msgstr "Mòideal Apache mod_rewrite" -#: src/Core/Installer.php:403 +#: src/Core/Installer.php:400 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Mearachd: Tha mòideal PDO no MySQLi aig PHP riatanach ach cha deach gin diubh a stàladh." -#: src/Core/Installer.php:408 +#: src/Core/Installer.php:405 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Mearachd: Cha deach an draibhear MySQL airson PDO a stàladh." -#: src/Core/Installer.php:412 +#: src/Core/Installer.php:409 msgid "PDO or MySQLi PHP module" msgstr "Mòideal PDO no MySQLi aig PHP" -#: src/Core/Installer.php:420 +#: src/Core/Installer.php:417 msgid "Error, XML PHP module required but not installed." msgstr "Mearachd: Tha am mòideal XML aig PHP riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:424 +#: src/Core/Installer.php:421 msgid "XML PHP module" msgstr "Mòideal XML aig PHP" -#: src/Core/Installer.php:427 +#: src/Core/Installer.php:424 msgid "libCurl PHP module" msgstr "Mòideal libCurl aig PHP" -#: src/Core/Installer.php:428 +#: src/Core/Installer.php:425 msgid "Error: libCURL PHP module required but not installed." msgstr "Mearachd: Tha am mòideal libCurl aig PHP riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:434 +#: src/Core/Installer.php:431 msgid "GD graphics PHP module" msgstr "Mòideal grafaigeachd GD aig PHP" -#: src/Core/Installer.php:435 +#: src/Core/Installer.php:432 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Mearachd: Tha am mòideal grafaigeachd GD aig PHP le taic dha JPEG riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:441 +#: src/Core/Installer.php:438 msgid "OpenSSL PHP module" msgstr "Mòideal OpenSSL aig PHP" -#: src/Core/Installer.php:442 +#: src/Core/Installer.php:439 msgid "Error: openssl PHP module required but not installed." msgstr "Mearachd: Tha am mòideal openssl aig PHP riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:448 +#: src/Core/Installer.php:445 msgid "mb_string PHP module" msgstr "mòideal mb_string aig PHP" -#: src/Core/Installer.php:449 +#: src/Core/Installer.php:446 msgid "Error: mb_string PHP module required but not installed." msgstr "Mearachd: Tha am mòideal mb_string aig PHP riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:455 +#: src/Core/Installer.php:452 msgid "iconv PHP module" msgstr "Mòideal iconv aig PHP" -#: src/Core/Installer.php:456 +#: src/Core/Installer.php:453 msgid "Error: iconv PHP module required but not installed." msgstr "Mearachd: Tha am mòideal iconv aig PHP riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:462 +#: src/Core/Installer.php:459 msgid "POSIX PHP module" msgstr "Mòideal POSIX aig PHP" -#: src/Core/Installer.php:463 +#: src/Core/Installer.php:460 msgid "Error: POSIX PHP module required but not installed." msgstr "Mearachd: Tha am mòideal POSIX aig PHP riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:469 +#: src/Core/Installer.php:466 msgid "Program execution functions" msgstr "Foincseanan gnìomhachadh phrògraman" -#: src/Core/Installer.php:470 +#: src/Core/Installer.php:467 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "Mearachd: Tha foincseanan gnìomhachadh phrògraman (proc_open) riatanach ach cha deach an cur an comas." -#: src/Core/Installer.php:476 +#: src/Core/Installer.php:473 msgid "JSON PHP module" msgstr "Mòideal JSON aig PHP" -#: src/Core/Installer.php:477 +#: src/Core/Installer.php:474 msgid "Error: JSON PHP module required but not installed." msgstr "Mearachd: Tha am mòideal JSON aig PHP riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:483 +#: src/Core/Installer.php:480 msgid "File Information PHP module" msgstr "Mòideal File Information aig PHP" -#: src/Core/Installer.php:484 +#: src/Core/Installer.php:481 msgid "Error: File Information PHP module required but not installed." msgstr "Mearachd: Tha am mòideal File Information aig PHP aig PHP riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:490 +#: src/Core/Installer.php:487 msgid "GNU Multiple Precision PHP module" msgstr "Mòideal GNU Multiple Precision aig PHP" -#: src/Core/Installer.php:491 +#: src/Core/Installer.php:488 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "Mearachd: Tha am mòideal GNU Multiple Precision aig PHP riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:514 +#: src/Core/Installer.php:511 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 "Feumaidh an stàlaichear-lìn faidhle a chruthachadh air a bheil “local.config.php” ann am pasgan “config” an fhrithealaiche-lìn agad is chan urrainn dha sin a dhèanamh." -#: src/Core/Installer.php:515 +#: src/Core/Installer.php:512 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 "Mar as trice, is roghainn cead as coireach agus ’s dòcha nach fhaod am frithealaiche-lìn faidhlichean a sgrìobhadh sa phasgan agad – fiù mas urrainn dhut fhèin." -#: src/Core/Installer.php:516 +#: src/Core/Installer.php:513 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 "Air deireadh na sgeòil, bheir sinn teacsa thugad ach an sàbhail thu e ann am faidhle air a bheil local.config.php sa phasgan “config” aig Friendica." -#: src/Core/Installer.php:517 +#: src/Core/Installer.php:514 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "Mar roghainn eile, leig seo dhan dàrna taobh agus dèan stàladh a làimh. Faic am faidhle “doc/INSTALL.md” airson stiùireadh." -#: src/Core/Installer.php:520 +#: src/Core/Installer.php:517 msgid "config/local.config.php is writable" msgstr "Gabhaidh sgrìobhadh san fhaidhle config/local.config.php" -#: src/Core/Installer.php:540 +#: src/Core/Installer.php:537 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Cleachdaidh Friendica einnsean theamplaidean Smarty3 airson na seallaidhean-lìn aige a reandaradh. Trusaidh Smarty3 na teamplaidean gu PHP airson an reandaradh a dhèanamh nas luaithe." -#: src/Core/Installer.php:541 +#: src/Core/Installer.php:538 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 "Airson na teamplaidean sin a stòradh às dèidh an trusaidh, feumaidh inntrigeadh a chùm sgrìobhaidh sa phasgan view/smarty3/ fo phrìomh-phasgan Friendica a bhith aig an fhrithealaiche-lìn." -#: src/Core/Installer.php:542 +#: src/Core/Installer.php:539 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Dèan cinnteach gu bheil inntrigeadh a chùm sgrìobhaidh dhan phasgan seo aig a’ chleachdaiche leis a bheil am frithealaiche-lìn ’ga ruith (m.e. www-data)." -#: src/Core/Installer.php:543 +#: src/Core/Installer.php:540 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 "An aire: a chùm tèarainteachd, bu chòir dhut inntrigeadh a chùm sgrìobhaidh a thoirt dhan fhrithealaiche-lìn airson a’ phasgain view/smarty3/ a-mhàin is chan ann dha na faidhlichean teamplaide (.tpl) a tha ’na bhroinn." -#: src/Core/Installer.php:546 +#: src/Core/Installer.php:543 msgid "view/smarty3 is writable" msgstr "Gabhaidh sgrìobhadh sa phasgan view/smarty3" -#: src/Core/Installer.php:574 +#: src/Core/Installer.php:571 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "Tha coltas nach eil an Url rewrite ag obair san fhaidhle .htaccess. Dèan cinnteach gun do chruthaich thu lethbhreac dhe .htaccess-dist aig .htaccess." -#: src/Core/Installer.php:575 +#: src/Core/Installer.php:572 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "Ann an cuid a shuidheachaidhean (can ruith am broinn suithich), ’s urrainn dhut a’ mhearachd seo a leigeil seachad." -#: src/Core/Installer.php:577 +#: src/Core/Installer.php:574 msgid "Error message from Curl when fetching" msgstr "Teachdaireachd mearachd o Curl rè na faighinn" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:580 msgid "Url rewrite is working" msgstr "Tha Url rewrite ag obair" -#: src/Core/Installer.php:612 +#: src/Core/Installer.php:609 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "Cha deach leinn mothachadh dha TLS a chùm conaltraidh thèarainte eadar am brabhsair ’s am frithealaiche Friendica ùr." -#: src/Core/Installer.php:613 +#: src/Core/Installer.php:610 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "Mholamaid nach cleachd thu Friendica ach thar ceangal tèarainte idir on a thèid fiosrachadh dìomhair mar fhaclan-faire a thar-chur." -#: src/Core/Installer.php:614 +#: src/Core/Installer.php:611 msgid "Please ensure that the connection to the server is secure." msgstr "Dèan cinnteach gum bi an ceangal dhan fhrithealaiche tèarainte." -#: src/Core/Installer.php:615 +#: src/Core/Installer.php:612 msgid "No TLS detected" msgstr "Cha do mhothaich sinn dha TLS" -#: src/Core/Installer.php:617 +#: src/Core/Installer.php:614 msgid "TLS detected" msgstr "Mhothaich sinn dha TLS" -#: src/Core/Installer.php:644 +#: src/Core/Installer.php:641 msgid "ImageMagick PHP extension is not installed" msgstr "Cha deach an tuilleadan ImageMagick aig PHP a stàladh" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:643 msgid "ImageMagick PHP extension is installed" msgstr "Chaidh an tuilleadan ImageMagick aig PHP a stàladh" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:645 msgid "ImageMagick supports GIF" msgstr "Cuiridh ImageMagick taic ri GIF" -#: src/Core/Installer.php:670 +#: src/Core/Installer.php:667 msgid "Database already in use." msgstr "Tha an stòr-dàta ’ga chleachdadh mu thràth." -#: src/Core/Installer.php:675 +#: src/Core/Installer.php:672 msgid "Could not connect to database." msgstr "Cha b’ urrainn dhuinn ceangal ris an stòr-dàta." -#: src/Core/L10n.php:399 src/Model/Event.php:428 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:476 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:235 msgid "Monday" msgstr "DiLuain" -#: src/Core/L10n.php:399 src/Model/Event.php:429 +#: src/Core/L10n.php:476 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:236 msgid "Tuesday" msgstr "DiMàirt" -#: src/Core/L10n.php:399 src/Model/Event.php:430 +#: src/Core/L10n.php:476 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:237 msgid "Wednesday" msgstr "DiCiadain" -#: src/Core/L10n.php:399 src/Model/Event.php:431 +#: src/Core/L10n.php:476 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:238 msgid "Thursday" msgstr "DiarDaoin" -#: src/Core/L10n.php:399 src/Model/Event.php:432 +#: src/Core/L10n.php:476 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:239 msgid "Friday" msgstr "DihAoine" -#: src/Core/L10n.php:399 src/Model/Event.php:433 +#: src/Core/L10n.php:476 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:240 msgid "Saturday" msgstr "DiSathairne" -#: src/Core/L10n.php:399 src/Model/Event.php:427 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:476 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:234 msgid "Sunday" msgstr "DiDòmhnaich" -#: src/Core/L10n.php:403 src/Model/Event.php:448 +#: src/Core/L10n.php:480 src/Model/Event.php:450 msgid "January" msgstr "Am Faoilleach" -#: src/Core/L10n.php:403 src/Model/Event.php:449 +#: src/Core/L10n.php:480 src/Model/Event.php:451 msgid "February" msgstr "An Gearran" -#: src/Core/L10n.php:403 src/Model/Event.php:450 +#: src/Core/L10n.php:480 src/Model/Event.php:452 msgid "March" msgstr "Am Màrt" -#: src/Core/L10n.php:403 src/Model/Event.php:451 +#: src/Core/L10n.php:480 src/Model/Event.php:453 msgid "April" msgstr "An Giblean" -#: src/Core/L10n.php:403 src/Core/L10n.php:422 src/Model/Event.php:439 +#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441 msgid "May" msgstr "An Cèitean" -#: src/Core/L10n.php:403 src/Model/Event.php:452 +#: src/Core/L10n.php:480 src/Model/Event.php:454 msgid "June" msgstr "An t-Ògmhios" -#: src/Core/L10n.php:403 src/Model/Event.php:453 +#: src/Core/L10n.php:480 src/Model/Event.php:455 msgid "July" msgstr "An t-Iuchar" -#: src/Core/L10n.php:403 src/Model/Event.php:454 +#: src/Core/L10n.php:480 src/Model/Event.php:456 msgid "August" msgstr "An Lùnastal" -#: src/Core/L10n.php:403 src/Model/Event.php:455 +#: src/Core/L10n.php:480 src/Model/Event.php:457 msgid "September" msgstr "An t-Sultain" -#: src/Core/L10n.php:403 src/Model/Event.php:456 +#: src/Core/L10n.php:480 src/Model/Event.php:458 msgid "October" msgstr "An Dàmhair" -#: src/Core/L10n.php:403 src/Model/Event.php:457 +#: src/Core/L10n.php:480 src/Model/Event.php:459 msgid "November" msgstr "An t-Samhain" -#: src/Core/L10n.php:403 src/Model/Event.php:458 +#: src/Core/L10n.php:480 src/Model/Event.php:460 msgid "December" msgstr "An Dùbhlachd" -#: src/Core/L10n.php:418 src/Model/Event.php:420 +#: src/Core/L10n.php:495 src/Model/Event.php:422 msgid "Mon" msgstr "DiL" -#: src/Core/L10n.php:418 src/Model/Event.php:421 +#: src/Core/L10n.php:495 src/Model/Event.php:423 msgid "Tue" msgstr "DiM" -#: src/Core/L10n.php:418 src/Model/Event.php:422 +#: src/Core/L10n.php:495 src/Model/Event.php:424 msgid "Wed" msgstr "DiC" -#: src/Core/L10n.php:418 src/Model/Event.php:423 +#: src/Core/L10n.php:495 src/Model/Event.php:425 msgid "Thu" msgstr "Dia" -#: src/Core/L10n.php:418 src/Model/Event.php:424 +#: src/Core/L10n.php:495 src/Model/Event.php:426 msgid "Fri" msgstr "Dih" -#: src/Core/L10n.php:418 src/Model/Event.php:425 +#: src/Core/L10n.php:495 src/Model/Event.php:427 msgid "Sat" msgstr "DiS" -#: src/Core/L10n.php:418 src/Model/Event.php:419 +#: src/Core/L10n.php:495 src/Model/Event.php:421 msgid "Sun" msgstr "DiD" -#: src/Core/L10n.php:422 src/Model/Event.php:435 +#: src/Core/L10n.php:499 src/Model/Event.php:437 msgid "Jan" msgstr "Faoi" -#: src/Core/L10n.php:422 src/Model/Event.php:436 +#: src/Core/L10n.php:499 src/Model/Event.php:438 msgid "Feb" msgstr "Gearr" -#: src/Core/L10n.php:422 src/Model/Event.php:437 +#: src/Core/L10n.php:499 src/Model/Event.php:439 msgid "Mar" msgstr "Màrt" -#: src/Core/L10n.php:422 src/Model/Event.php:438 +#: src/Core/L10n.php:499 src/Model/Event.php:440 msgid "Apr" msgstr "Gibl" -#: src/Core/L10n.php:422 src/Model/Event.php:440 +#: src/Core/L10n.php:499 src/Model/Event.php:442 msgid "Jun" msgstr "Ògmh" -#: src/Core/L10n.php:422 src/Model/Event.php:441 +#: src/Core/L10n.php:499 src/Model/Event.php:443 msgid "Jul" msgstr "Iuch" -#: src/Core/L10n.php:422 src/Model/Event.php:442 +#: src/Core/L10n.php:499 src/Model/Event.php:444 msgid "Aug" msgstr "Lùna" -#: src/Core/L10n.php:422 +#: src/Core/L10n.php:499 msgid "Sep" msgstr "Sult" -#: src/Core/L10n.php:422 src/Model/Event.php:444 +#: src/Core/L10n.php:499 src/Model/Event.php:446 msgid "Oct" msgstr "Dàmh" -#: src/Core/L10n.php:422 src/Model/Event.php:445 +#: src/Core/L10n.php:499 src/Model/Event.php:447 msgid "Nov" msgstr "Samh" -#: src/Core/L10n.php:422 src/Model/Event.php:446 +#: src/Core/L10n.php:499 src/Model/Event.php:448 msgid "Dec" msgstr "Dùbh" -#: src/Core/L10n.php:441 -msgid "poke" -msgstr "" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "Cha ghabh faidhle “%s” an loga a chleachdadh. Cha ghabh logadh a dhèanamh (mearachd: “%s”)" -#: src/Core/L10n.php:441 -msgid "poked" -msgstr "" - -#: src/Core/L10n.php:442 -msgid "ping" -msgstr "" - -#: src/Core/L10n.php:442 -msgid "pinged" -msgstr "" - -#: src/Core/L10n.php:443 -msgid "prod" -msgstr "" - -#: src/Core/L10n.php:443 -msgid "prodded" -msgstr "" - -#: src/Core/L10n.php:444 -msgid "slap" -msgstr "" - -#: src/Core/L10n.php:444 -msgid "slapped" -msgstr "" - -#: src/Core/L10n.php:445 -msgid "finger" -msgstr "" - -#: src/Core/L10n.php:445 -msgid "fingered" -msgstr "" - -#: src/Core/L10n.php:446 -msgid "rebuff" -msgstr "" - -#: src/Core/L10n.php:446 -msgid "rebuffed" -msgstr "" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "Cha ghabh faidhle “%s” an loga dì-bhugachaidh a chleachdadh. Cha ghabh logadh a dhèanamh (mearachd: “%s”)" #: src/Core/Renderer.php:89 src/Core/Renderer.php:118 -#: src/Core/Renderer.php:145 src/Core/Renderer.php:179 -#: src/Render/FriendicaSmartyEngine.php:69 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "Chan urrainn dha Friendica an duilleag seo a shealltainn an-dràsta, cuir fios gun rianaire." -#: src/Core/Renderer.php:141 +#: src/Core/Renderer.php:143 msgid "template engine cannot be registered without a name." msgstr "cha ghabh einnsean theamplaidean a chlàradh gun ainm." -#: src/Core/Renderer.php:175 +#: src/Core/Renderer.php:177 msgid "template engine is not registered!" msgstr "cha deach an t-einnsean theamplaidean a chlàradh!" @@ -3488,36 +3048,36 @@ msgstr "Am pasgan far an dèid faidhlichean air an luchdadh suas a shàbhaladh. msgid "Enter a valid existing folder" msgstr "Cuir a-steach pasgan dligheach a tha ann" -#: src/Core/Update.php:67 +#: src/Core/Update.php:80 #, 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 "Chan eil taic ri ùrachadh o thionndadh %s. Ùraich gun tionndadh 2021.01 air a char as sine agus fuirich gus am bith an t-iar-ùrachadh deiseil le tionndadh 1383." -#: src/Core/Update.php:78 +#: src/Core/Update.php:91 #, 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 "Chan eil taic ri iar-ùrachadh o thionndadh %s. Ùraich gun tionndadh 2021.01 air a char as sine agus fuirich gus am bith an t-iar-ùrachadh deiseil le tionndadh 1383." -#: src/Core/Update.php:153 +#: src/Core/Update.php:183 #, php-format msgid "%s: executing pre update %d" msgstr "%s: a’ dèanamh ro-ùrachadh %d" -#: src/Core/Update.php:191 +#: src/Core/Update.php:225 #, php-format msgid "%s: executing post update %d" msgstr "%s: a’ dèanamh iar-ùrachadh %d" -#: src/Core/Update.php:261 +#: src/Core/Update.php:299 #, php-format msgid "Update %s failed. See error logs." msgstr "Dh’fhàillig le ùrachadh %s. Thoir sùil air logaichean nam mearachdan." -#: src/Core/Update.php:315 +#: src/Core/Update.php:339 #, php-format msgid "" "\n" @@ -3527,83 +3087,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\tDh’fhoillsich luchd-leasachaidh Friendica ùrachadh %s o chionn goirid\n\t\t\t\tach nuair a dh’fheuch mi ris a stàladh, chaidh rudeigin ceàrr gu dona.\n\t\t\t\tFeumaidh sinn seo a chàradh a dh’aithghearr ach chan urrainn dhomh sin a dhèanamh ’nam aonar. Cuir fios gu\n\t\t\t\tneach-leasachaidh Friendica mur urrainn dhut fhèin mo chuideachadh. Dh’fhaoidte nach eil an stòr-dàta agam dligheach." -#: src/Core/Update.php:321 +#: src/Core/Update.php:345 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "Seo teachdaireachd na mearachd:\\n[pre]%s[/pre]" -#: src/Core/Update.php:325 src/Core/Update.php:367 +#: src/Core/Update.php:349 src/Core/Update.php:377 msgid "[Friendica Notify] Database update" msgstr "[Brath Friendica] Ùrachadh an stòir-dhàta" -#: src/Core/Update.php:361 +#: src/Core/Update.php:371 #, php-format msgid "" "\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n\t\t\t\t\tChaidh stòr-dàta Friendica ùrachadh o %s gu %s." - -#: src/Core/UserImport.php:126 -msgid "Error decoding account file" -msgstr "Mearachd le dì-chòdachadh faidhle a’ chunntais" - -#: src/Core/UserImport.php:132 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Mearachd! Chan eil dàta mun tionndadh san fhaidhle! Nach e faidhle cunntas Friendica a th’ ann?" - -#: src/Core/UserImport.php:140 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "Tha an cleachdaiche “%s” air an fhrithealaiche seo mu thràth!" - -#: src/Core/UserImport.php:176 -msgid "User creation error" -msgstr "Mearachd a’ cruthachadh a’ chleachdaiche" - -#: src/Core/UserImport.php:221 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "Tha %d neach-aithne nach deach ion-phortadh" -msgstr[1] "Tha %d luchd-aithne nach deach ion-phortadh" -msgstr[2] "Tha %d luchd-aithne nach deach ion-phortadh" -msgstr[3] "Tha %d luchd-aithne nach deach ion-phortadh" - -#: src/Core/UserImport.php:274 -msgid "User profile creation error" -msgstr "Mearachd a’ cruthachadh pròifil a’ chleachdaiche" - -#: src/Core/UserImport.php:327 -msgid "Done. You can now login with your username and password" -msgstr "Deiseil. ’S urrainn dhut clàradh a-steach leis an ainm-chleachdaiche ’s fhacal-fhaire agad a-nis" +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "\n\t\t\t\tChaidh stòr-dàta Friendica ùrachadh o %s gu %s." #: src/Database/DBStructure.php:57 #, php-format msgid "The database version had been set to %s." msgstr "Chaidh tionndadh an stòir-dhàta a shuidheachadh air %s." -#: src/Database/DBStructure.php:70 +#: src/Database/DBStructure.php:82 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "Tha an t-iar-ùrachadh air tionndadh %d ach feumaidh e bhith air %d mus gabh na clàran a leigeil às gu sàbhailte." -#: src/Database/DBStructure.php:83 +#: src/Database/DBStructure.php:95 msgid "No unused tables found." msgstr "Cha deach clàr gun cleachdadh a lorg." -#: src/Database/DBStructure.php:88 +#: src/Database/DBStructure.php:100 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "Chan eil na clàran seo ’gan cleachdadh airson Friendica is thèid an sguabadh às ma ghnìomhaicheas tu “dbstructure drop -e”:" -#: src/Database/DBStructure.php:126 +#: src/Database/DBStructure.php:137 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "Chan eil clàr air MyISAM no InnoDB le fòrmat faidhle Antelope." -#: src/Database/DBStructure.php:150 +#: src/Database/DBStructure.php:161 #, php-format msgid "" "\n" @@ -3611,20 +3137,20 @@ msgid "" "%s\n" msgstr "\nThachair mearachd %d rè ùrachadh an stòir-dhàta:\n%s\n" -#: src/Database/DBStructure.php:153 +#: src/Database/DBStructure.php:164 msgid "Errors encountered performing database changes: " msgstr "Thachair sinn ri mearachdan nuair a bha sinn ag atharrachadh an stòir-dhàta: " -#: src/Database/DBStructure.php:219 +#: src/Database/DBStructure.php:232 msgid "Another database update is currently running." msgstr "Tha ùrachadh eile ’ga ruith air an stòr-dàta an-dràsta fhèin." -#: src/Database/DBStructure.php:223 +#: src/Database/DBStructure.php:236 #, php-format msgid "%s: Database update" msgstr "%s: Ùrachadh an stòir-dhàta" -#: src/Database/DBStructure.php:479 +#: src/Database/DBStructure.php:493 #, php-format msgid "%s: updating %s table." msgstr "%s: Ag ùrachadh clàr %s." @@ -3641,12 +3167,12 @@ msgstr "Eintiteas nach gabh a phròiseasadh" msgid "Unauthorized" msgstr "Gun chead" -#: src/Factory/Api/Mastodon/Error.php:85 +#: src/Factory/Api/Mastodon/Error.php:84 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "Cha deach an tòcan ùghdarrachadh le cleachdaiche dligheach no tha sgòp riatanach a dhìth" -#: src/Factory/Api/Mastodon/Error.php:95 +#: src/Factory/Api/Mastodon/Error.php:94 msgid "Internal Server Error" msgstr "Mearachd frithealaiche inntearnail" @@ -3655,472 +3181,538 @@ msgstr "Mearachd frithealaiche inntearnail" msgid "Legacy module file not found: %s" msgstr "Cha deach am faidhle mòideil dìleabach seo a lorg: %s" -#: src/Model/Contact.php:1115 src/Model/Contact.php:1127 -msgid "UnFollow" -msgstr "Na lean tuilleadh" +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." +msgstr "Chaidh cearcall a bh’ air a sguabadh às ath-bheòthachadh. Faodaidh ceadan a tha ann air nithean a bhith an sàs air a’ chearcall seo is air ball ri teachd sam bith. Mur e sin a bha fa-near dhut, cruthaich cearcall eile air a bheil ainm eile." -#: src/Model/Contact.php:1133 src/Module/Admin/Users/Pending.php:107 -#: src/Module/Notifications/Introductions.php:130 -#: src/Module/Notifications/Introductions.php:202 +#: src/Model/Circle.php:543 +msgid "Everybody" +msgstr "A h-uile duine" + +#: src/Model/Circle.php:562 +msgid "edit" +msgstr "deasaich" + +#: src/Model/Circle.php:599 +msgid "add" +msgstr "cuir ris" + +#: src/Model/Circle.php:604 +msgid "Edit circle" +msgstr "Deasaich an cearcall" + +#: src/Model/Circle.php:605 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "Luchd-aithne gun chearcall" + +#: src/Model/Circle.php:607 +msgid "Create a new circle" +msgstr "Cruthaich cearcall ùr" + +#: src/Model/Circle.php:608 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "Ainm a’ chearcaill: " + +#: src/Model/Circle.php:609 +msgid "Edit circles" +msgstr "Deasaich na cearcallan" + +#: src/Model/Contact.php:1240 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Aontaich ris" -#: src/Model/Contact.php:1543 +#: src/Model/Contact.php:1694 msgid "Organisation" msgstr "Buidheann" -#: src/Model/Contact.php:1551 -msgid "Forum" -msgstr "Fòram" +#: src/Model/Contact.php:1702 +msgid "Group" +msgstr "Buidheann" -#: src/Model/Contact.php:2640 +#: src/Model/Contact.php:3005 msgid "Disallowed profile URL." msgstr "URL pròifile mì-dhligheach." -#: src/Model/Contact.php:2645 src/Module/Friendica.php:81 +#: src/Model/Contact.php:3010 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Àrainn bhacte" -#: src/Model/Contact.php:2650 +#: src/Model/Contact.php:3015 msgid "Connect URL missing." msgstr "Tha URL a’ cheangail a dhìth." -#: src/Model/Contact.php:2659 +#: src/Model/Contact.php:3024 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Cha b’ urrainn dhuinn an neach-aithne a chur ris. Thoir sùil air teisteas an lìonraidh iomchaidh air duilleag nan “Roghainnean” > “Lìonraidhean sòisealta” agad." -#: src/Model/Contact.php:2701 +#: src/Model/Contact.php:3042 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "Chan eil an lìonra %s air a bheil dùil co-ionnann ris a lìonra %s a tha ann" + +#: src/Model/Contact.php:3059 msgid "The profile address specified does not provide adequate information." msgstr "Chan eil an seòladh pròifile a shònraich thu a’ solar am fiosrachadh iomchaidh." -#: src/Model/Contact.php:2703 +#: src/Model/Contact.php:3061 msgid "No compatible communication protocols or feeds were discovered." msgstr "Cha do lorg sinn pròtacal conaltraidh no inbhir iomchaidh." -#: src/Model/Contact.php:2706 +#: src/Model/Contact.php:3064 msgid "An author or name was not found." msgstr "Cha deach an t-ùghdar no ainm a lorg." -#: src/Model/Contact.php:2709 +#: src/Model/Contact.php:3067 msgid "No browser URL could be matched to this address." msgstr "Cha b’ urrainn dhuinn URL a’ bhrabhsair a mhaidseadh ris an t-seòladh seo." -#: src/Model/Contact.php:2712 +#: src/Model/Contact.php:3070 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Tha b’ urrainn dhuinn an seòladh-aithne san stoidhle @ a mhaidseadh le pròtacal as aithne dhuinn no neach-aithne puist-d." -#: src/Model/Contact.php:2713 +#: src/Model/Contact.php:3071 msgid "Use mailto: in front of address to force email check." msgstr "Cleachd mailto: ron t-seòladh airson sgrùdadh nam post-d a sparradh." -#: src/Model/Contact.php:2719 +#: src/Model/Contact.php:3077 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "Tha seòladh na pròifil a shònraich thu a’ buntainn ri lìonra a chaidh a chur à comas air an làrach seo." -#: src/Model/Contact.php:2724 +#: src/Model/Contact.php:3082 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Pròifil chuingichte. Chan fhaigh an neach seo brathan dìreach/pearsanta uat." -#: src/Model/Contact.php:2783 +#: src/Model/Contact.php:3148 msgid "Unable to retrieve contact information." msgstr "Cha d’ fhuair sinn grèim air fiosrachadh an neach-aithne." -#: src/Model/Event.php:52 +#: src/Model/Event.php:54 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "l, d F Y \\@ g:i a \\G\\M\\TP (e)" -#: src/Model/Event.php:73 src/Model/Event.php:90 src/Model/Event.php:467 -#: src/Model/Event.php:901 +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 msgid "Starts:" msgstr "A’ tòiseachadh:" -#: src/Model/Event.php:76 src/Model/Event.php:96 src/Model/Event.php:468 -#: src/Model/Event.php:905 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 msgid "Finishes:" msgstr "Thig e gu crìoch:" -#: src/Model/Event.php:417 +#: src/Model/Event.php:419 msgid "all-day" msgstr "fad an latha" -#: src/Model/Event.php:443 +#: src/Model/Event.php:445 msgid "Sept" msgstr "Sult" -#: src/Model/Event.php:465 +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "an-diugh" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:245 src/Util/Temporal.php:353 +msgid "month" +msgstr "mìos" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:246 src/Util/Temporal.php:354 +msgid "week" +msgstr "seachdain" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:247 src/Util/Temporal.php:355 +msgid "day" +msgstr "latha" + +#: src/Model/Event.php:467 msgid "No events to display" msgstr "Chan eil tachartas ri shealltainn ann" -#: src/Model/Event.php:581 +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "Chaidh an t-inntrigeadh dhan phròifil seo a chuingeachadh." + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "Cha deach an tachartas a lorg." + +#: src/Model/Event.php:637 msgid "l, F j" msgstr "l, j F" -#: src/Model/Event.php:612 +#: src/Model/Event.php:664 msgid "Edit event" msgstr "Deasaich an tachartas" -#: src/Model/Event.php:613 +#: src/Model/Event.php:665 msgid "Duplicate event" msgstr "Dùblaich an tachartas" -#: src/Model/Event.php:614 +#: src/Model/Event.php:666 msgid "Delete event" msgstr "Sguab às an tachartas" -#: src/Model/Event.php:857 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 msgid "l F d, Y \\@ g:i A" msgstr "l, d F Y \\@ g:i a" -#: src/Model/Event.php:858 +#: src/Model/Event.php:897 msgid "D g:i A" msgstr "D g:i a" -#: src/Model/Event.php:859 +#: src/Model/Event.php:898 msgid "g:i A" msgstr "g:i a" -#: src/Model/Event.php:920 src/Model/Event.php:922 +#: src/Model/Event.php:964 src/Model/Event.php:966 msgid "Show map" msgstr "Seall am mapa" -#: src/Model/Event.php:921 +#: src/Model/Event.php:965 msgid "Hide map" msgstr "Falaich am mapa" -#: src/Model/Event.php:1014 +#: src/Model/Event.php:1058 #, php-format msgid "%s's birthday" msgstr "Cò-là breith aig %s" -#: src/Model/Event.php:1015 +#: src/Model/Event.php:1059 #, php-format msgid "Happy Birthday %s" msgstr "Co-là breith sona dhut, %s" -#: src/Model/Group.php:105 -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 "Chaidh buidheann a bh’ air a sguabadh às ath-bheòthachadh. Faodaidh ceadan a tha ann air nithean a bhith an sàs air a’ bhuidheann seo is air ball ri teachd sam bith. Mur e sin a bha fa-near dhut, cruthaich buidheann eile air a bheil ainm eile." - -#: src/Model/Group.php:503 -msgid "Default privacy group for new contacts" -msgstr "Am buidheann prìobhaideachd bunaiteach do luchd-aithne ùr" - -#: src/Model/Group.php:535 -msgid "Everybody" -msgstr "A h-uile duine" - -#: src/Model/Group.php:554 -msgid "edit" -msgstr "deasaich" - -#: src/Model/Group.php:586 -msgid "add" -msgstr "cuir ris" - -#: src/Model/Group.php:591 -msgid "Edit group" -msgstr "Deasaich am buidheann" - -#: src/Model/Group.php:592 src/Module/Group.php:194 -msgid "Contacts not in any group" -msgstr "Luchd-aithne gun bhuidheann" - -#: src/Model/Group.php:594 -msgid "Create a new group" -msgstr "Cruthaich buidheann ùr" - -#: src/Model/Group.php:595 src/Module/Group.php:179 src/Module/Group.php:202 -#: src/Module/Group.php:277 -msgid "Group Name: " -msgstr "Ainm a’ bhuidhinn: " - -#: src/Model/Group.php:596 -msgid "Edit groups" -msgstr "Deasaich buidhnean" - -#: src/Model/Item.php:1850 +#: src/Model/Item.php:2062 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Na cànanan dhan a mhothaich sinn sa phost seo:\\n%s" -#: src/Model/Item.php:2756 +#: src/Model/Item.php:3007 msgid "activity" msgstr "gnìomhachd" -#: src/Model/Item.php:2758 +#: src/Model/Item.php:3009 msgid "comment" msgstr "beachd" -#: src/Model/Item.php:2761 +#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "post" -#: src/Model/Item.php:2877 +#: src/Model/Item.php:3182 +#, php-format +msgid "%s is blocked" +msgstr "Tha %s ’ga bhacadh" + +#: src/Model/Item.php:3184 +#, php-format +msgid "%s is ignored" +msgstr "Tha %s ’ga leigeil seachad" + +#: src/Model/Item.php:3186 +#, php-format +msgid "Content from %s is collapsed" +msgstr "Tha susbaint o %s ’ga cho-theannachadh" + +#: src/Model/Item.php:3190 #, php-format msgid "Content warning: %s" msgstr "Rabhadh susbainte: %s" -#: src/Model/Item.php:3240 +#: src/Model/Item.php:3652 msgid "bytes" msgstr "baidht" -#: src/Model/Item.php:3274 +#: src/Model/Item.php:3683 #, php-format -msgid "%s (%d%s, %d votes)" -msgstr "%s (%d%s, rinn %d bhòtadh)" +msgid "%2$s (%3$d%%, %1$d vote)" +msgid_plural "%2$s (%3$d%%, %1$d votes)" +msgstr[0] "%2$s (%3$d%%, %1$d bhòt)" +msgstr[1] "%2$s (%3$d%%, %1$d bhòt)" +msgstr[2] "%2$s (%3$d%%, %1$d bhòtaichean)" +msgstr[3] "%2$s (%3$d%%, %1$d bhòt)" -#: src/Model/Item.php:3276 +#: src/Model/Item.php:3685 #, php-format -msgid "%s (%d votes)" -msgstr "%s (rinn %d bhòtadh)" +msgid "%2$s (%1$d vote)" +msgid_plural "%2$s (%1$d votes)" +msgstr[0] "%2$s (%1$d bhòt)" +msgstr[1] "%2$s (%1$d bhòt)" +msgstr[2] "%2$s (%1$d bhòtaichean)" +msgstr[3] "%2$s (%1$d bhòt)" -#: src/Model/Item.php:3281 +#: src/Model/Item.php:3690 #, php-format -msgid "%d voters. Poll end: %s" -msgstr "Rinn %d bhòtadh. Crìoch a’ chunntais-bheachd: %s" +msgid "%d voter. Poll end: %s" +msgid_plural "%d voters. Poll end: %s" +msgstr[0] "Rinn %d bhòtadh. Crìoch a’ chunntais-bheachd: %s" +msgstr[1] "Rinn %d bhòtadh. Crìoch a’ chunntais-bheachd: %s" +msgstr[2] "Rinn %d bhòtadh. Crìoch a’ chunntais-bheachd: %s" +msgstr[3] "Rinn %d bhòtadh. Crìoch a’ chunntais-bheachd: %s" -#: src/Model/Item.php:3283 +#: src/Model/Item.php:3692 #, php-format -msgid "%d voters." -msgstr "Rinn %d bhòtadh." +msgid "%d voter." +msgid_plural "%d voters." +msgstr[0] "Rinn %d bhòtadh." +msgstr[1] "Rinn %d bhòtadh." +msgstr[2] "Rinn %d bhòtadh." +msgstr[3] "Rinn %d bhòtadh." -#: src/Model/Item.php:3285 +#: src/Model/Item.php:3694 #, php-format msgid "Poll end: %s" msgstr "Crìoch a’ bhunntais-bheachd:%s" -#: src/Model/Item.php:3319 src/Model/Item.php:3320 +#: src/Model/Item.php:3728 src/Model/Item.php:3729 msgid "View on separate page" msgstr "Seall air duilleag fa leth" -#: src/Model/Mail.php:137 src/Model/Mail.php:265 +#: src/Model/Mail.php:137 src/Model/Mail.php:266 msgid "[no subject]" msgstr "[gun chuspair]" -#: src/Model/Profile.php:362 src/Module/Profile/Profile.php:256 -#: src/Module/Profile/Profile.php:258 +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Dealbhan balla" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 msgid "Edit profile" msgstr "Deasaich a’ phròifil" -#: src/Model/Profile.php:364 +#: src/Model/Profile.php:361 msgid "Change profile photo" msgstr "Atharraich dealbh na pròifil" -#: src/Model/Profile.php:377 src/Module/Directory.php:153 -#: src/Module/Profile/Profile.php:184 +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 msgid "Homepage:" msgstr "Duilleag-dhachaigh:" -#: src/Model/Profile.php:378 src/Module/Contact/Profile.php:375 -#: src/Module/Notifications/Introductions.php:187 +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "Mu dhèidhinn:" -#: src/Model/Profile.php:464 +#: src/Model/Profile.php:465 msgid "Atom feed" msgstr "Inbhir Atom" -#: src/Model/Profile.php:507 +#: src/Model/Profile.php:472 +msgid "This website has been verified to belong to the same person." +msgstr "Chaidh dearbhadh gu bheil an làrach-lìn seo aig an aon neach." + +#: src/Model/Profile.php:509 msgid "F d" msgstr "d F" -#: src/Model/Profile.php:571 src/Model/Profile.php:660 +#: src/Model/Profile.php:573 src/Model/Profile.php:662 msgid "[today]" msgstr "[an-diugh]" -#: src/Model/Profile.php:580 +#: src/Model/Profile.php:582 msgid "Birthday Reminders" msgstr "Cuimhneachain co-là breith" -#: src/Model/Profile.php:581 +#: src/Model/Profile.php:583 msgid "Birthdays this week:" msgstr "Co-làithean breith an t-seachdain seo:" -#: src/Model/Profile.php:609 +#: src/Model/Profile.php:611 msgid "g A l F d" msgstr "g a l d F" -#: src/Model/Profile.php:647 +#: src/Model/Profile.php:649 msgid "[No description]" msgstr "[Gun tuairisgeul]" -#: src/Model/Profile.php:673 +#: src/Model/Profile.php:675 msgid "Event Reminders" msgstr "Cuimhneachain air tachartasan" -#: src/Model/Profile.php:674 +#: src/Model/Profile.php:676 msgid "Upcoming events the next 7 days:" msgstr "Tachartasan anns na 7 làithean seo tighinn:" -#: src/Model/Profile.php:868 +#: src/Model/Profile.php:873 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: Tha %1$s a’ cur fàilte air %2$s" -#: src/Model/Profile.php:1008 +#: src/Model/Profile.php:1013 msgid "Hometown:" msgstr "Baile d’ àraich:" -#: src/Model/Profile.php:1009 +#: src/Model/Profile.php:1014 msgid "Marital Status:" msgstr "Inbhe pòsaidh:" -#: src/Model/Profile.php:1010 +#: src/Model/Profile.php:1015 msgid "With:" msgstr "Le:" -#: src/Model/Profile.php:1011 +#: src/Model/Profile.php:1016 msgid "Since:" msgstr "O chionn:" -#: src/Model/Profile.php:1012 +#: src/Model/Profile.php:1017 msgid "Sexual Preference:" msgstr "Aidmheil cleamhnais:" -#: src/Model/Profile.php:1013 +#: src/Model/Profile.php:1018 msgid "Political Views:" msgstr "Beachdan poilitigeach:" -#: src/Model/Profile.php:1014 +#: src/Model/Profile.php:1019 msgid "Religious Views:" msgstr "Beachdan creideamhach:" -#: src/Model/Profile.php:1015 +#: src/Model/Profile.php:1020 msgid "Likes:" msgstr "’S toigh seo le:" -#: src/Model/Profile.php:1016 +#: src/Model/Profile.php:1021 msgid "Dislikes:" msgstr "Cha toigh seo le:" -#: src/Model/Profile.php:1017 +#: src/Model/Profile.php:1022 msgid "Title/Description:" msgstr "Tiotal/Tuairisgeul:" -#: src/Model/Profile.php:1018 src/Module/Admin/Summary.php:234 +#: src/Model/Profile.php:1023 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 msgid "Summary" msgstr "Geàrr-chunntas" -#: src/Model/Profile.php:1019 +#: src/Model/Profile.php:1024 msgid "Musical interests" msgstr "Ùidhean ciùil" -#: src/Model/Profile.php:1020 +#: src/Model/Profile.php:1025 msgid "Books, literature" msgstr "Leabhraichean ⁊ litreachas" -#: src/Model/Profile.php:1021 +#: src/Model/Profile.php:1026 msgid "Television" msgstr "Telebhisean" -#: src/Model/Profile.php:1022 +#: src/Model/Profile.php:1027 msgid "Film/dance/culture/entertainment" msgstr "Film/dannsa/cultar/dibheirsean" -#: src/Model/Profile.php:1023 +#: src/Model/Profile.php:1028 msgid "Hobbies/Interests" msgstr "Cur-seachadan/ùidhean" -#: src/Model/Profile.php:1024 +#: src/Model/Profile.php:1029 msgid "Love/romance" msgstr "Gaol/suirghe" -#: src/Model/Profile.php:1025 +#: src/Model/Profile.php:1030 msgid "Work/employment" msgstr "Obair/fastadh" -#: src/Model/Profile.php:1026 +#: src/Model/Profile.php:1031 msgid "School/education" msgstr "Sgoil/foghlam" -#: src/Model/Profile.php:1027 +#: src/Model/Profile.php:1032 msgid "Contact information and Social Networks" msgstr "Fiosrachadh conaltraidh is meadhanan sòisealta" -#: src/Model/User.php:212 src/Model/User.php:1085 +#: src/Model/User.php:227 src/Model/User.php:1186 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "MEARACHD MHÒR: Dh’fhàillig le gintinn nan iuchraichean tèarainteachd." -#: src/Model/User.php:572 src/Model/User.php:605 +#: src/Model/User.php:620 src/Model/User.php:653 msgid "Login failed" msgstr "Dh’fhàillig leis a’ chlàradh a-steach" -#: src/Model/User.php:637 +#: src/Model/User.php:685 msgid "Not enough information to authenticate" msgstr "Tha fiosrachadh a dhìth dhan dearbhadh" -#: src/Model/User.php:732 +#: src/Model/User.php:806 msgid "Password can't be empty" msgstr "Chan fhaod am facal-faire a bhith bàn" -#: src/Model/User.php:774 +#: src/Model/User.php:848 msgid "Empty passwords are not allowed." msgstr "Chan eil faclan-faire bàna ceadaichte." -#: src/Model/User.php:778 +#: src/Model/User.php:852 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Chaidh am facal-faire ùr fhoillseachadh ann an dumpadh dàta poblach, tagh fear eile." -#: src/Model/User.php:782 +#: src/Model/User.php:856 msgid "The password length is limited to 72 characters." msgstr "Chan fhaod am facal-faire a bhith nas fhaide na 72 caractar." -#: src/Model/User.php:786 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "Chan fhaod stràc, àite bàn no còilean (:) a bhith am broinn an fhacail-fhaire." +#: src/Model/User.php:860 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "Chan fhaod àite bàn no litir le stràc a bhith am broinn an fhacail-fhaire" -#: src/Model/User.php:965 +#: src/Model/User.php:1069 msgid "Passwords do not match. Password unchanged." msgstr "Chan eil an dà fhacal-faire co-ionnann. Cha deach am facal-faire atharrachadh." -#: src/Model/User.php:972 +#: src/Model/User.php:1076 msgid "An invitation is required." msgstr "Tha feum air cuireadh." -#: src/Model/User.php:976 +#: src/Model/User.php:1080 msgid "Invitation could not be verified." msgstr "Cha b’ urrainn dhuinn an cuireadh a dhearbhadh." -#: src/Model/User.php:984 +#: src/Model/User.php:1088 msgid "Invalid OpenID url" msgstr "URL OpenID mì-dhligheach" -#: src/Model/User.php:997 src/Security/Authentication.php:240 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Thachair sinn ri duilgheadas fhad ’s a bha sinn ’gad clàradh a-steach leis an OpenID a thug thu seachad. Thoir sùil air litreachadh an ID." -#: src/Model/User.php:997 src/Security/Authentication.php:240 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "Seo teachdaireachd na mearachd:" -#: src/Model/User.php:1003 +#: src/Model/User.php:1107 msgid "Please enter the required information." msgstr "Cuir a-steach am fiosrachadh riatanach." -#: src/Model/User.php:1017 +#: src/Model/User.php:1121 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "Tha system.username_min_length (%s) agus system.username_max_length (%s) ag às-dùnadh càch a chèile, a’ cur nan luachan an àite càch a chèile." -#: src/Model/User.php:1024 +#: src/Model/User.php:1128 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." @@ -4129,7 +3721,7 @@ msgstr[1] "Feumaidh co-dhiù %s charactar a bhith am broinn an ainm-chleachdaich msgstr[2] "Feumaidh co-dhiù %s caractaran a bhith am broinn an ainm-chleachdaiche." msgstr[3] "Feumaidh co-dhiù %s caractar a bhith am broinn an ainm-chleachdaiche." -#: src/Model/User.php:1028 +#: src/Model/User.php:1132 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." @@ -4138,60 +3730,60 @@ msgstr[1] "Chan fhaod còrr is %s charactar a bhith am broinn an ainm-chleachdai msgstr[2] "Chan fhaod còrr is %s caractaran a bhith am broinn an ainm-chleachdaiche." msgstr[3] "Chan fhaod còrr is %s caractar a bhith am broinn an ainm-chleachdaiche." -#: src/Model/User.php:1036 +#: src/Model/User.php:1140 msgid "That doesn't appear to be your full (First Last) name." msgstr "Chan eil coltas ainm shlàin (ainm ⁊ sloinneadh) air." -#: src/Model/User.php:1041 +#: src/Model/User.php:1145 msgid "Your email domain is not among those allowed on this site." msgstr "Chan eil àrainn a’ phuist-d agad am measg na feadhna a tha ceadaichte air an làrach seo." -#: src/Model/User.php:1045 +#: src/Model/User.php:1149 msgid "Not a valid email address." msgstr "Chan e seòladh puist-d dligheach a tha seo." -#: src/Model/User.php:1048 +#: src/Model/User.php:1152 msgid "The nickname was blocked from registration by the nodes admin." msgstr "Chaidh am far-ainm seo a bhacadh on chlàradh le rianaire an nòid." -#: src/Model/User.php:1052 src/Model/User.php:1060 +#: src/Model/User.php:1156 src/Model/User.php:1162 msgid "Cannot use that email." msgstr "Chan urrainn dhut am post-d seo a chleachdadh." -#: src/Model/User.php:1067 +#: src/Model/User.php:1168 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Chan fhaod ach a-z, 0-9 ’s _ a bhith am broinn d’ fhar-ainm." -#: src/Model/User.php:1075 src/Model/User.php:1132 +#: src/Model/User.php:1176 src/Model/User.php:1233 msgid "Nickname is already registered. Please choose another." msgstr "Chaidh am far-ainm seo a chlàradh mu thràth. Nach tagh thu fear eile?" -#: src/Model/User.php:1119 src/Model/User.php:1123 +#: src/Model/User.php:1220 src/Model/User.php:1224 msgid "An error occurred during registration. Please try again." msgstr "Thachair mearachd rè a’ chlàraidh. Feuch ris a-rithist." -#: src/Model/User.php:1146 +#: src/Model/User.php:1247 msgid "An error occurred creating your default profile. Please try again." msgstr "Thachair mearachd le cruthachadh na pròifile bunaitiche agad. Feuch ris a-rithist." -#: src/Model/User.php:1153 +#: src/Model/User.php:1254 msgid "An error occurred creating your self contact. Please try again." msgstr "Thachair mearachd le cruthachadh neach-aithne dhiot fhèin. Feuch ris a-rithist." -#: src/Model/User.php:1158 +#: src/Model/User.php:1259 msgid "Friends" msgstr "Caraidean" -#: src/Model/User.php:1162 +#: src/Model/User.php:1263 msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "Thachair mearachd le cruthachadh a’ bhuidhinn conaltraidh bhunaitich agad. Feuch ris a-rithist." +"An error occurred creating your default contact circle. Please try again." +msgstr "Thachair mearachd le cruthachadh a’ chearcaill luchd-aithne bhunaitich agad. Feuch ris a-rithist." -#: src/Model/User.php:1201 +#: src/Model/User.php:1307 msgid "Profile Photos" msgstr "Dealbhan na pròifil" -#: src/Model/User.php:1394 +#: src/Model/User.php:1487 #, php-format msgid "" "\n" @@ -4199,7 +3791,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\t%1$s, a charaid,\n\t\t\tshuidhich rianaire %2$s cunntas dhut." -#: src/Model/User.php:1397 +#: src/Model/User.php:1490 #, php-format msgid "" "\n" @@ -4226,17 +3818,17 @@ msgid "" "\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" +"\t\tIf you ever want to delete your account, you can do so at %1$s/settings/removeme\n" "\n" "\t\tThank you and welcome to %4$s." -msgstr "\n\t\tSeo am fiosrachadh clàraidh a-steach:\n\n\t\tSeòladh na làraich:\t%1$s\n\t\tAinm clàraidh a-steach:\t\t%2$s\n\t\tFacal-faire:\t\t%3$s\n\n\t\t’S urrainn dhut am facal-faire agad atharrachadh air duilleag “Roghainnean” a’ chunntais agad\n\t\tàs dèidh clàradh a-steach.\n\n\t\tFhad ’s a bhios tu ris, thoir sùil air roghainnean eile a’ chunntais air an duilleag sin.\n\n\t\tDh’fhaoidte gum bu mhiann leat fiosrachadh bunasach a chur ris a’ phròifil bhunaiteach agad\n\t\t(air duilleag na “Pròifil”) ach am faigh daoine lorg ort gun duilgheadas.\n\n\t\tMholamaid gun suidhich thu d’ ainm slàn, gun cuir thu dealbh pròifil ris,\n\t\tgun cuir thu “facal-luirg” no dhà ris a’ phròifil (glè fheumail airson caraidean ùra fhaighinn) – agus is dòcha\n\t\tan dùthaich far a bheil thu mur eil thu airson a bhith nas mionaidiche na sin.\n\n\t\tTha suim againn dha do phrìobhaideachd is chan eil gin sam bith dhe na nithean sin riatanach idir.\n\t\tMa tha thu ùr an-seo is mur eil thu eòlach air duine sam bith, b’ urrainn dha na nithean seo\n\t\tdo chuideachadh ach am cuir thu an aithne air caraidean inntinneach ùra.\n\n\t\tMa tha thu airson an cunntas agad a sguabadh às uair sam bith, ’s urrainn dhut sin a dhèanamh air %1$s/removeme\n\n\t\tMòran taing agus fàilte gu %4$s." +msgstr "\n\t\tSeo am fiosrachadh clàraidh a-steach:\n\n\t\tSeòladh na làraich:\t%1$s\n\t\tAinm clàraidh a-steach:\t\t%2$s\n\t\tFacal-faire:\t\t%3$s\n\n\t\t’S urrainn dhut am facal-faire agad atharrachadh air duilleag “Roghainnean” a’ chunntais agad\n\t\tàs dèidh clàradh a-steach.\n\n\t\tFhad ’s a bhios tu ris, thoir sùil air roghainnean eile a’ chunntais air an duilleag sin.\n\n\t\tDh’fhaoidte gum bu mhiann leat fiosrachadh bunasach a chur ris a’ phròifil bhunaiteach agad\n\t\t(air duilleag na “Pròifil”) ach am faigh daoine lorg ort gun duilgheadas.\n\n\t\tMholamaid gun suidhich thu d’ ainm slàn, gun cuir thu dealbh pròifil ris,\n\t\tgun cuir thu “facal-luirg” no dhà ris a’ phròifil (glè fheumail airson caraidean ùra fhaighinn) – agus is dòcha\n\t\tan dùthaich far a bheil thu mur eil thu airson a bhith nas mionaidiche na sin.\n\n\t\tTha suim againn dha do phrìobhaideachd is chan eil gin sam bith dhe na nithean sin riatanach idir.\n\t\tMa tha thu ùr an-seo is mur eil thu eòlach air duine sam bith, b’ urrainn dha na nithean seo\n\t\tdo chuideachadh ach am cuir thu an aithne air caraidean inntinneach ùra.\n\n\t\tMa tha thu airson an cunntas agad a sguabadh às uair sam bith, ’s urrainn dhut sin a dhèanamh air %1$s/settings/removeme\n\n\t\tMòran taing agus fàilte gu %4$s." -#: src/Model/User.php:1430 src/Model/User.php:1537 +#: src/Model/User.php:1523 src/Model/User.php:1630 #, php-format msgid "Registration details for %s" msgstr "Am fiosrachadh clàraidh airson %s" -#: src/Model/User.php:1450 +#: src/Model/User.php:1543 #, php-format msgid "" "\n" @@ -4251,12 +3843,12 @@ msgid "" "\t\t" msgstr "\n\t\t\t%1$s, a charaid,\n\t\t\t\tMòran taing airson clàradh air %2$s. Tha an cunntas agad a’ feitheamh air aonta on rianaire.\n\n\t\t\tSeo am fiosrachadh clàraidh a-steach agad:\n\n\t\t\tSeòladh na làraich:\t%3$s\n\t\t\tAinm clàraidh a-steach:\t\t%4$s\n\t\t\tFacal-faire:\t\t%5$s\n\t\t" -#: src/Model/User.php:1469 +#: src/Model/User.php:1562 #, php-format msgid "Registration at %s" msgstr "An clàradh air %s" -#: src/Model/User.php:1493 +#: src/Model/User.php:1586 #, php-format msgid "" "\n" @@ -4265,7 +3857,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\t%1$s, a charaid,\n\t\t\t\tMòran taing airson clàradh air %2$s. Chaidh an cunntas agad a chruthachadh.\n\t\t\t" -#: src/Model/User.php:1501 +#: src/Model/User.php:1594 #, php-format msgid "" "\n" @@ -4292,25 +3884,10 @@ msgid "" "\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" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." -msgstr "\n\t\t\tSeo am fiosrachadh clàraidh a-steach:\n\n\t\t\tSeòladh na làraich:\t%3$s\n\t\t\tAinm clàraidh a-steach:\t\t%1$s\n\t\t\tFacal-faire:\t\t%5$s\n\n\t\t\t’S urrainn dhut am facal-faire agad atharrachadh air duilleag “Roghainnean” a’ chunntais agad\n\t\t\\às dèidh clàradh a-steach.\n\n\t\t\tFhad ’s a bhios tu ris, thoir sùil air roghainnean eile a’ chunntais air an duilleag sin.\n\n\t\t\tDh’fhaoidte gum bu mhiann leat fiosrachadh bunasach a chur ris a’ phròifil bhunaiteach agad\n\t\t\t(air duilleag na “Pròifil”) ach am faigh daoine lorg ort gun duilgheadas.\n\n\t\t\tMholamaid gun suidhich thu d’ ainm slàn, gun cuir thu dealbh pròifil ris,\n\t\t\tgun cuir thu “facal-luirg” no dhà ris a’ phròifil (glè fheumail airson caraidean ùra fhaighinn) – agus is dòcha\n\t\t\tan dùthaich far a bheil thu mur eil thu airson a bhith nas mionaidiche na sin.\n\n\t\t\tTha suim againn dha do phrìobhaideachd is chan eil gin sam bith dhe na nithean sin riatanach idir.\n\t\t\tMa tha thu ùr an-seo is mur eil thu eòlach air duine sam bith, b’ urrainn dha na nithean seo\n\t\t\tdo chuideachadh ach am cuir thu an aithne air caraidean inntinneach ùra.\n\n\t\t\tMa tha thu airson an cunntas agad a sguabadh às uair sam bith, ’s urrainn dhut sin a dhèanamh air %3$s/removeme\n\n\t\t\tMòran taing agus fàilte gu %2$s." - -#: src/Moderation/DomainPatternBlocklist.php:218 -#, php-format -msgid "[%s] Notice of remote server domain pattern block list update" -msgstr "[%s] Brath air ùrachadh pàtrain àrainn fhrithealaichean cèine air an liosta-bhacaidh" - -#: src/Moderation/DomainPatternBlocklist.php:220 -#, php-format -msgid "" -"Dear %s,\n" -"\n" -"You are receiving this email because the Friendica node at %s where you are registered as a user updated their remote server domain pattern block list.\n" -"\n" -"Please review the updated list at %s at your earliest convenience." -msgstr "%s, a charaid,\n\nTha thu a’ faighinn am post-d seo air sgàth ’s gun do rinn an nòd Friendica air %s far a bheil thu clàraichte ’nad cleachdaiche ùrachadh air pàtran àrainn fhrithealaichean cèine air an liosta-bhacaidh.\n\nDèan lèirmheas air an liosta ùr air %s cho luath ’s a bhios ùine agad." +msgstr "\n\t\t\tSeo am fiosrachadh clàraidh a-steach:\n\n\t\t\tSeòladh na làraich:\t%3$s\n\t\t\tAinm clàraidh a-steach:\t\t%1$s\n\t\t\tFacal-faire:\t\t%5$s\n\n\t\t\t’S urrainn dhut am facal-faire agad atharrachadh air duilleag “Roghainnean” a’ chunntais agad\n\t\t\\às dèidh clàradh a-steach.\n\n\t\t\tFhad ’s a bhios tu ris, thoir sùil air roghainnean eile a’ chunntais air an duilleag sin.\n\n\t\t\tDh’fhaoidte gum bu mhiann leat fiosrachadh bunasach a chur ris a’ phròifil bhunaiteach agad\n\t\t\t(air duilleag na “Pròifil”) ach am faigh daoine lorg ort gun duilgheadas.\n\n\t\t\tMholamaid gun suidhich thu d’ ainm slàn, gun cuir thu dealbh pròifil ris,\n\t\t\tgun cuir thu “facal-luirg” no dhà ris a’ phròifil (glè fheumail airson caraidean ùra fhaighinn) – agus is dòcha\n\t\t\tan dùthaich far a bheil thu mur eil thu airson a bhith nas mionaidiche na sin.\n\n\t\t\tTha suim againn dha do phrìobhaideachd is chan eil gin sam bith dhe na nithean sin riatanach idir.\n\t\t\tMa tha thu ùr an-seo is mur eil thu eòlach air duine sam bith, b’ urrainn dha na nithean seo\n\t\t\tdo chuideachadh ach am cuir thu an aithne air caraidean inntinneach ùra.\n\n\t\t\tMa tha thu airson an cunntas agad a sguabadh às uair sam bith, ’s urrainn dhut sin a dhèanamh air %3$s/settings/removeme\n\n\t\t\tMòran taing agus fàilte gu %2$s." #: src/Module/Admin/Addons/Details.php:65 msgid "Addon not found." @@ -4337,27 +3914,20 @@ msgid "Enable" msgstr "Cuir an comas" #: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:94 -#: src/Module/Admin/Blocklist/Server/Add.php:121 -#: src/Module/Admin/Blocklist/Server/Import.php:117 -#: src/Module/Admin/Blocklist/Server/Index.php:93 -#: src/Module/Admin/Federation.php:200 src/Module/Admin/Item/Delete.php:64 -#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:84 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:433 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:233 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:75 -#: 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 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 msgid "Administration" msgstr "Rianachd" #: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:96 -#: src/Module/BaseSettings.php:85 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:132 msgid "Addons" msgstr "Tuilleadain" @@ -4366,13 +3936,13 @@ msgstr "Tuilleadain" msgid "Toggle" msgstr "Toglaich" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 msgid "Author: " msgstr "Ùghdar: " -#: src/Module/Admin/Addons/Details.php:122 -#: src/Module/Admin/Themes/Details.php:102 +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 msgid "Maintainer: " msgstr "Neach-glèidhidh: " @@ -4385,439 +3955,28 @@ msgstr "Chaidh na tuilleadain ath-luchdadh" msgid "Addon %s failed to install." msgstr "Dh’fhàillig le stàladh an tuilleadain %s." +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Sàbhail na roghainnean" + #: src/Module/Admin/Addons/Index.php:70 msgid "Reload active addons" msgstr "Ath-luchdaich na tuilleadain ghnìomhach" -#: src/Module/Admin/Addons/Index.php:75 +#: src/Module/Admin/Addons/Index.php:74 #, 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 "Chan eil tuilleadan ri fhaighinn aig an nòd agad an-dràsta. Gheibh thu ionad-tasgaidh nan tuilleadan oifigeil air %1$s agus dh’fhaoidte gun lorg thu tuilleadain inntinneach eile air an ionad-tasgaidh fhosgailte air %2$s." - -#: src/Module/Admin/BaseUsers.php:54 -msgid "List of all users" -msgstr "Liosta nan cleachdaichean uile" - -#: src/Module/Admin/BaseUsers.php:59 -msgid "Active" -msgstr "Gnìomhach" - -#: src/Module/Admin/BaseUsers.php:62 -msgid "List of active accounts" -msgstr "Liosta nan cunntasan gnìomhach" - -#: src/Module/Admin/BaseUsers.php:67 src/Module/Contact.php:314 -#: src/Module/Contact.php:374 -msgid "Pending" -msgstr "Ri dhèiligeadh" - -#: src/Module/Admin/BaseUsers.php:70 -msgid "List of pending registrations" -msgstr "Liosta nan clàraidhean rin dèiligeadh" - -#: src/Module/Admin/BaseUsers.php:75 src/Module/Contact.php:322 -#: src/Module/Contact.php:375 -msgid "Blocked" -msgstr "’Ga bhacadh" - -#: src/Module/Admin/BaseUsers.php:78 -msgid "List of blocked users" -msgstr "Liosta nan cleachdaichean a chaidh a bhacadh" - -#: src/Module/Admin/BaseUsers.php:83 -msgid "Deleted" -msgstr "Air a sguabadh às" - -#: src/Module/Admin/BaseUsers.php:86 -msgid "List of pending user deletions" -msgstr "Liosta nan cleachdaichean rin sguabadh às" - -#: src/Module/Admin/BaseUsers.php:100 src/Module/Settings/Account.php:493 -msgid "Normal Account Page" -msgstr "Duilleag àbhaisteach a’ chunntais" - -#: src/Module/Admin/BaseUsers.php:101 src/Module/Settings/Account.php:500 -msgid "Soapbox Page" -msgstr "Duilleag cùbaid deasbaid" - -#: src/Module/Admin/BaseUsers.php:102 src/Module/Settings/Account.php:507 -msgid "Public Forum" -msgstr "Fòram poblach" - -#: src/Module/Admin/BaseUsers.php:103 src/Module/Settings/Account.php:514 -msgid "Automatic Friend Page" -msgstr "Duilleag caraide fhèin-obrachail" - -#: src/Module/Admin/BaseUsers.php:104 -msgid "Private Forum" -msgstr "Fòram prìobhaideach" - -#: src/Module/Admin/BaseUsers.php:107 src/Module/Settings/Account.php:465 -msgid "Personal Page" -msgstr "Duilleag phearsanta" - -#: src/Module/Admin/BaseUsers.php:108 src/Module/Settings/Account.php:472 -msgid "Organisation Page" -msgstr "Duilleag buidhinn" - -#: src/Module/Admin/BaseUsers.php:109 src/Module/Settings/Account.php:479 -msgid "News Page" -msgstr "Duilleag naidheachdan" - -#: src/Module/Admin/BaseUsers.php:110 src/Module/Settings/Account.php:486 -msgid "Community Forum" -msgstr "Fòram coimhearsnachd" - -#: src/Module/Admin/BaseUsers.php:111 -msgid "Relay" -msgstr "Ath-sheachadan" - -#: src/Module/Admin/Blocklist/Contact.php:54 -msgid "You can't block a local contact, please block the user instead" -msgstr "Chan urrainn dhut neach-aithne ionadail a bhacadh, bac an cleachdaiche ’na àite" - -#: src/Module/Admin/Blocklist/Contact.php:73 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "Chaidh %s neach-aithne a dhì-bhacadh" -msgstr[1] "Chaidh %s luchd-aithne a dhì-bhacadh" -msgstr[2] "Chaidh %s luchd-aithne a dhì-bhacadh" -msgstr[3] "Chaidh %s luchd-aithne a dhì-bhacadh" - -#: src/Module/Admin/Blocklist/Contact.php:95 -msgid "Remote Contact Blocklist" -msgstr "Liosta bacadh luchd-aithne cèin" - -#: src/Module/Admin/Blocklist/Contact.php:96 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "Leigidh an duilleag seo leat gum bac thu teachdaireachd sam bith o neach-aithne cèin o ruigsinn an nòid agad." - -#: src/Module/Admin/Blocklist/Contact.php:97 -msgid "Block Remote Contact" -msgstr "Bac an neach-aithne cèin" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#: 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 "tagh a h-uile" - -#: src/Module/Admin/Blocklist/Contact.php:99 -msgid "select none" -msgstr "na tagh gin" - -#: src/Module/Admin/Blocklist/Contact.php:101 -#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156 -#: src/Module/Contact.php:398 src/Module/Contact/Profile.php:348 -#: src/Module/Contact/Profile.php:449 -msgid "Unblock" -msgstr "Dì-bhac" - -#: src/Module/Admin/Blocklist/Contact.php:102 -msgid "No remote contact is blocked from this node." -msgstr "Cha deach neach-aithne cèin a bhacadh on nòd seo." - -#: src/Module/Admin/Blocklist/Contact.php:104 -msgid "Blocked Remote Contacts" -msgstr "Luchd-aithne cèin air am bacadh" - -#: src/Module/Admin/Blocklist/Contact.php:105 -msgid "Block New Remote Contact" -msgstr "Bac neach-aithne cèin ùr" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Photo" -msgstr "Dealbh" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Reason" -msgstr "Adhbhar" - -#: src/Module/Admin/Blocklist/Contact.php:114 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "Chaidh %s neach-aithne a bhacadh gu h-iomlan" -msgstr[1] "Chaidh %s luchd-aithne a bhacadh gu h-iomlan" -msgstr[2] "Chaidh %s luchd-aithne a bhacadh gu h-iomlan" -msgstr[3] "Chaidh %s luchd-aithne a bhacadh gu h-iomlan" - -#: src/Module/Admin/Blocklist/Contact.php:116 -msgid "URL of the remote contact to block." -msgstr "URL an neach-aithne chèin ri bhacadh." - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "Also purge contact" -msgstr "Purgaidich an neach-aithne cuideachd" - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "" -"Removes all content related to this contact from the node. Keeps the contact" -" record. This action cannot be undone." -msgstr "Bheir seo air falbh susbaint sam bith a tha co-cheangailte ris an neach-aithne seo on nòd. Cumaidh seo clàr an neach-aithne. Cha ghabh an gnìomh seo a neo-dhèanamh." - -#: src/Module/Admin/Blocklist/Contact.php:118 -#: src/Module/Admin/Blocklist/Server/Import.php:123 -msgid "Block Reason" -msgstr "Adhbhar a’ bhacaidh" - -#: src/Module/Admin/Blocklist/Server/Add.php:80 -msgid "Server domain pattern added to the blocklist." -msgstr "Chaidh pàtran àrainn fhrithealaichean a chur ris an liosta-bhacaidh." - -#: src/Module/Admin/Blocklist/Server/Add.php:88 -#, php-format -msgid "%s server scheduled to be purged." -msgid_plural "%s servers scheduled to be purged." -msgstr[0] "Chaidh %s fhrithealaiche a chur air sgeideal a’ phurgaideachaidh." -msgstr[1] "Chaidh %s fhrithealaiche a chur air sgeideal a’ phurgaideachaidh." -msgstr[2] "Chaidh %s frithealaichean a chur air sgeideal a’ phurgaideachaidh." -msgstr[3] "Chaidh %s frithealaiche a chur air sgeideal a’ phurgaideachaidh." - -#: src/Module/Admin/Blocklist/Server/Add.php:120 -#: src/Module/Admin/Blocklist/Server/Import.php:116 -msgid "← Return to the list" -msgstr "← Air ais dhan liosta" - -#: src/Module/Admin/Blocklist/Server/Add.php:122 -msgid "Block A New Server Domain Pattern" -msgstr "Bac pàtran àrainne fhrithealaichean ùr" - -#: src/Module/Admin/Blocklist/Server/Add.php:123 -#: src/Module/Admin/Blocklist/Server/Index.php:97 -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" -"
    " -msgstr "

    Chan eil aire air litrichean mòra is beaga aig pàtran àrainne fhrithealaichean is tha e ’na shaorag slige leis na caractaran sònraichte seo:

    \n
      \n\t
    • *: Uiread sam bith de charactaran
    • \n\t
    • ?: Aon charactar
    • \n
    " - -#: src/Module/Admin/Blocklist/Server/Add.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:105 -msgid "Check pattern" -msgstr "Thoir sùil air a’ phàtran" - -#: src/Module/Admin/Blocklist/Server/Add.php:129 -msgid "Matching known servers" -msgstr "A’ maidseadh nam frithealaichean as aithne dhuinn" - -#: src/Module/Admin/Blocklist/Server/Add.php:130 -msgid "Server Name" -msgstr "Ainm an fhrithealaiche" - -#: src/Module/Admin/Blocklist/Server/Add.php:131 -msgid "Server Domain" -msgstr "Àrainn an fhrithealaiche" - -#: src/Module/Admin/Blocklist/Server/Add.php:132 -msgid "Known Contacts" -msgstr "An luchd-aithne as aithne dhuinn" - -#: src/Module/Admin/Blocklist/Server/Add.php:133 -#, php-format -msgid "%d known server" -msgid_plural "%d known servers" -msgstr[0] "%d fhrithealaiche as aithne dhuinn" -msgstr[1] "%d fhrithealaiche as aithne dhuinn" -msgstr[2] "%d frithealaichean as aithne dhuinn" -msgstr[3] "%d frithealaiche as aithne dhuinn" - -#: src/Module/Admin/Blocklist/Server/Add.php:134 -msgid "Add pattern to the blocklist" -msgstr "Cuir am pàtran ris an liosta-bhacaidh" - -#: src/Module/Admin/Blocklist/Server/Add.php:136 -#: src/Module/Admin/Blocklist/Server/Index.php:114 -msgid "Server Domain Pattern" -msgstr "Pàtran àrainne fhrithealaichean" - -#: src/Module/Admin/Blocklist/Server/Add.php:136 -#: src/Module/Admin/Blocklist/Server/Index.php:114 -msgid "" -"The domain pattern of the new server to add to the blocklist. Do not include" -" the protocol." -msgstr "Am pàtran àrainne fhrithealaichean ùr airson a chur ris an liosta-bhacaidh. Na gabh a-staigh am pròtacal." - -#: src/Module/Admin/Blocklist/Server/Add.php:137 -msgid "Purge server" -msgstr "Purgaidich am frithealaiche" - -#: src/Module/Admin/Blocklist/Server/Add.php:137 -msgid "" -"Also purges all the locally stored content authored by the known contacts " -"registered on that server. Keeps the contacts and the server records. This " -"action cannot be undone." -msgid_plural "" -"Also purges all the locally stored content authored by the known contacts " -"registered on these servers. Keeps the contacts and the servers records. " -"This action cannot be undone." -msgstr[0] "Nì seo purgaideachadh air gach susbaint cuideachd a chaidh a stòradh gu h-ionadail ’s a chaidh a sgrìobhadh leis an luchd-aithne as aithne dhuinn a tha clàraichte air an fhrithealaiche ud. Cumaidh seo luchd-aithne is clàran an fhrithealaiche. Cha ghabh seo a neo-dhèanamh." -msgstr[1] "Nì seo purgaideachadh air gach susbaint cuideachd a chaidh a stòradh gu h-ionadail ’s a chaidh a sgrìobhadh leis an luchd-aithne as aithne dhuinn a tha clàraichte air na frithealaichean ud. Cumaidh seo luchd-aithne is clàran nam frithealaichean. Cha ghabh seo a neo-dhèanamh." -msgstr[2] "Nì seo purgaideachadh air gach susbaint cuideachd a chaidh a stòradh gu h-ionadail ’s a chaidh a sgrìobhadh leis an luchd-aithne as aithne dhuinn a tha clàraichte air na frithealaichean ud. Cumaidh seo luchd-aithne is clàran nam frithealaichean. Cha ghabh seo a neo-dhèanamh." -msgstr[3] "Nì seo purgaideachadh air gach susbaint cuideachd a chaidh a stòradh gu h-ionadail ’s a chaidh a sgrìobhadh leis an luchd-aithne as aithne dhuinn a tha clàraichte air na frithealaichean ud. Cumaidh seo luchd-aithne is clàran nam frithealaichean. Cha ghabh seo a neo-dhèanamh." - -#: src/Module/Admin/Blocklist/Server/Add.php:138 -msgid "Block reason" -msgstr "Adhbhar a’ bhacaidh" - -#: src/Module/Admin/Blocklist/Server/Add.php:138 -msgid "" -"The reason why you blocked this server domain pattern. This reason will be " -"shown publicly in the server information page." -msgstr "An t-adhbhar air an do bhac thu am pàtran àrainne fhrithealaichean seo. Thèid an t-adhbhar a shealltainn gu poblach air duilleag fiosrachadh an fhrithealaiche." - -#: src/Module/Admin/Blocklist/Server/Import.php:75 -#: src/Module/Admin/Blocklist/Server/Import.php:84 -msgid "Error importing pattern file" -msgstr "Mearachd ag ion-phortadh faidhle nam pàtranan" - -#: src/Module/Admin/Blocklist/Server/Import.php:90 -msgid "Local blocklist replaced with the provided file." -msgstr "Chaidh am faidhle a sholair thu a chur an àite na liosta-bacaidh ionadail." - -#: src/Module/Admin/Blocklist/Server/Import.php:94 -#, php-format -msgid "%d pattern was added to the local blocklist." -msgid_plural "%d patterns were added to the local blocklist." -msgstr[0] "Chaidh %d phàtran a chur ris an liosta-bhacaidh ionadail." -msgstr[1] "Chaidh %d phàtran a chur ris an liosta-bhacaidh ionadail." -msgstr[2] "Chaidh %d pàtranan a chur ris an liosta-bhacaidh ionadail." -msgstr[3] "Chaidh %d pàtran a chur ris an liosta-bhacaidh ionadail." - -#: src/Module/Admin/Blocklist/Server/Import.php:96 -msgid "No pattern was added to the local blocklist." -msgstr "Cha deach pàtran sam bith a chur ris an liosta-bhacaidh ionadail." - -#: src/Module/Admin/Blocklist/Server/Import.php:118 -msgid "Import a Server Domain Pattern Blocklist" -msgstr "Ion-phortaich liosta-bhacaidh le pàtrain àrainne fhrithealaichean" - -#: src/Module/Admin/Blocklist/Server/Import.php:119 -msgid "" -"

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

    " -msgstr "

    Gabhaidh am faidhle seo a luchdadh a-nuas on t-slighe /friendica aig frithealaiche Friendica sam bith.

    " - -#: src/Module/Admin/Blocklist/Server/Import.php:120 -#: src/Module/Admin/Blocklist/Server/Index.php:104 -msgid "Upload file" -msgstr "Luchdaich suas faidhle" - -#: src/Module/Admin/Blocklist/Server/Import.php:121 -msgid "Patterns to import" -msgstr "Na pàtranan rin ion-phortadh" - -#: src/Module/Admin/Blocklist/Server/Import.php:122 -msgid "Domain Pattern" -msgstr "Pàtran àrainne" - -#: src/Module/Admin/Blocklist/Server/Import.php:124 -msgid "Import Mode" -msgstr "Modh an ion-phortaidh" - -#: src/Module/Admin/Blocklist/Server/Import.php:125 -msgid "Import Patterns" -msgstr "Ion-phortaich na pàtranan" - -#: src/Module/Admin/Blocklist/Server/Import.php:126 -#, php-format -msgid "%d total pattern" -msgid_plural "%d total patterns" -msgstr[0] "%d phàtran gu h-iomlan" -msgstr[1] "%d phàtran gu h-iomlan" -msgstr[2] "%d pàtranan gu h-iomlan" -msgstr[3] "%d pàtran gu h-iomlan" - -#: src/Module/Admin/Blocklist/Server/Import.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:113 -msgid "Server domain pattern blocklist CSV file" -msgstr "Faidhle CSV sa bheil liosta-bhacaidh le pàtrain àrainne fhrithealaichean" - -#: src/Module/Admin/Blocklist/Server/Import.php:129 -msgid "Append" -msgstr "Cuir ris" - -#: src/Module/Admin/Blocklist/Server/Import.php:129 -msgid "" -"Imports patterns from the file that weren't already existing in the current " -"blocklist." -msgstr "Nì seo ion-phortadh dhe na pàtranan san fhaidhle nach eil air an liosta-bhacaidh làithreach fhathast." - -#: src/Module/Admin/Blocklist/Server/Import.php:130 -msgid "Replace" -msgstr "Cuir ’na àite" - -#: src/Module/Admin/Blocklist/Server/Import.php:130 -msgid "Replaces the current blocklist by the imported patterns." -msgstr "Cuiridh seo na pàtranan air an ion-phortadh an àite na liosta-bacaidh làithrich." - -#: src/Module/Admin/Blocklist/Server/Index.php:84 -#: src/Module/Admin/Blocklist/Server/Index.php:108 -msgid "Blocked server domain pattern" -msgstr "Pàtran àrainne fhrithealaichean a chaidh a bhacadh" - -#: src/Module/Admin/Blocklist/Server/Index.php:85 -#: src/Module/Admin/Blocklist/Server/Index.php:109 src/Module/Friendica.php:82 -msgid "Reason for the block" -msgstr "Adhbhar a’ bhacaidh" - -#: src/Module/Admin/Blocklist/Server/Index.php:86 -msgid "Delete server domain pattern" -msgstr "Sguab às am pàtran àrainne fhrithealaichean" - -#: src/Module/Admin/Blocklist/Server/Index.php:86 -msgid "Check to delete this entry from the blocklist" -msgstr "Cuir cromag ris a sguabadh às an nì seo on liosta-bhacaidh" - -#: src/Module/Admin/Blocklist/Server/Index.php:94 -msgid "Server Domain Pattern Blocklist" -msgstr "Liosta-bhacaidh le pàtrain àrainne fhrithealaichean" - -#: src/Module/Admin/Blocklist/Server/Index.php:95 -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 "’S urrainn dhut an duilleag seo a chleachdadh airson liosta-bhacaidh le pàtrain àrainne fhrithealaichean on lìonra cho-naisgte a mhìneachadh nach fhaod gnìomh a ghabhail leis an nòd agad. Airson gach pàtran àrainne fhrithealaichean, bu chòir dhut an t-adhbhar a thoirt seachad air an do bhac thu e." - -#: src/Module/Admin/Blocklist/Server/Index.php:96 -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 "Thèid liosta nam pàtran àrainne fhrithealaichean foillseachadh gu poblach air an duilleag /friendica ach am faigh an luchd-cleachdaidh agad ’s na daoine a tha a’ sgrùdadh duilgheadasan conaltraidh a-mach gun duilgheadas dè as adhbhar." - -#: src/Module/Admin/Blocklist/Server/Index.php:102 -msgid "Import server domain pattern blocklist" -msgstr "Ion-phortaich liosta-bhacaidh le pàtrain àrainne fhrithealaichean" - -#: src/Module/Admin/Blocklist/Server/Index.php:103 -msgid "Add new entry to the blocklist" -msgstr "Cuir nì ùr ris an liosta-bhacaidh" - -#: src/Module/Admin/Blocklist/Server/Index.php:106 -msgid "Save changes to the blocklist" -msgstr "Sàbhail na h-atharraichean air an liosta-bhacaidh" - -#: src/Module/Admin/Blocklist/Server/Index.php:107 -msgid "Current Entries in the Blocklist" -msgstr "Na nithean làithreach air an liosta-bhacaidh" - -#: src/Module/Admin/Blocklist/Server/Index.php:110 -msgid "Delete entry from the blocklist" -msgstr "Sguab às an nì on liosta-bhacaidh" - -#: src/Module/Admin/Blocklist/Server/Index.php:111 -msgid "Delete entry from the blocklist?" -msgstr "A bheil thu airson an nì seo a sguabadh às on liosta-bhacaidh?" +msgstr "Chan eil tuilleadan ri fhaighinn aig an nòd agad an-dràsta. Gheibh thu ionad-tasgaidh nan tuilleadan oifigeil air %1$s agus dh’fhaoidte gun lorg thu tuilleadain inntinneach eile air an ionad-tasgaidh fhosgailte air %2$s" #: src/Module/Admin/DBSync.php:51 msgid "Update has been marked successful" @@ -4853,28 +4012,28 @@ msgstr "Cha do thill an t-ùrachadh %s staid. Chan eil fhios an do shoirbhich le msgid "There was no additional update function %s that needed to be called." msgstr "Cha robh foincsean ùrachaidh %s eile feumach air gairm ann." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:105 msgid "No failed updates." msgstr "Cha do dh’fhàillig le ùrachadh sam bith." -#: src/Module/Admin/DBSync.php:107 +#: src/Module/Admin/DBSync.php:106 msgid "Check database structure" msgstr "Thoir sùil air structar an stòir-dhàta" -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:110 msgid "Failed Updates" msgstr "Na dh’ùrachaidhean a dh’fhàillig leotha" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:111 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Cha ghabh seo a-staigh na h-ùrachaidhean ro 1139 nach do thilleadh staid." -#: src/Module/Admin/DBSync.php:114 +#: src/Module/Admin/DBSync.php:112 msgid "Mark success (if update was manually applied)" msgstr "Cuir comharra gun do shoirbhich leis (ma rinn thu an t-ùrachadh a làimh)" -#: src/Module/Admin/DBSync.php:115 +#: src/Module/Admin/DBSync.php:113 msgid "Attempt to execute this update step automatically" msgstr "Feuch gnìomhachadh a’ cheuma seo dhen ùrachadh gu fèin-obrachail" @@ -4883,195 +4042,161 @@ msgstr "Feuch gnìomhachadh a’ cheuma seo dhen ùrachadh gu fèin-obrachail" msgid "Lock feature %s" msgstr "Glais gleus %s" -#: src/Module/Admin/Features.php:85 +#: src/Module/Admin/Features.php:84 msgid "Manage Additional Features" msgstr "Stiùir na gleusan a bharrachd" -#: src/Module/Admin/Federation.php:68 +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 msgid "Other" msgstr "Eile" -#: src/Module/Admin/Federation.php:140 src/Module/Admin/Federation.php:389 +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 msgid "unknown" msgstr "chan eil fhios" -#: src/Module/Admin/Federation.php:173 +#: src/Module/Admin/Federation.php:187 #, php-format -msgid "%s total systems" -msgstr "Siostaman gu h-iomlan: %s" +msgid "%2$s total system" +msgid_plural "%2$s total systems" +msgstr[0] "%2$s siostam gu h-iomlan" +msgstr[1] "%2$s shiostam gu h-iomlan" +msgstr[2] "%2$s siostaman gu h-iomlan" +msgstr[3] "%2$s siostam gu h-iomlan" -#: src/Module/Admin/Federation.php:174 +#: src/Module/Admin/Federation.php:188 #, php-format -msgid "%s active users last month" -msgstr "Cleachdaichean gnìomhach sa mhìos seo chaidh: %s" +msgid "%2$s active user last month" +msgid_plural "%2$s active users last month" +msgstr[0] "%2$s chleachdaiche gnìomhach sa mhìos seo chaidh" +msgstr[1] "%2$s chleachdaiche gnìomhach sa mhìos seo chaidh" +msgstr[2] "%2$s cleachdaichean gnìomhach sa mhìos seo chaidh" +msgstr[3] "%2$s cleachdaiche gnìomhach sa mhìos seo chaidh" -#: src/Module/Admin/Federation.php:175 +#: src/Module/Admin/Federation.php:189 #, php-format -msgid "%s active users last six months" -msgstr "Cleachdaichean gnìomhach san leth-bhliadhna seo chaidh: %s" +msgid "%2$s active user last six months" +msgid_plural "%2$s active users last six months" +msgstr[0] "%2$s chleachdaiche gnìomhach san leth-bhliadhna seo chaidh" +msgstr[1] "%2$s chleachdaiche gnìomhach san leth-bhliadhna seo chaidh" +msgstr[2] "%2$s cleachdaichean gnìomhach san leth-bhliadhna seo chaidh" +msgstr[3] "%2$s cleachdaiche gnìomhach san leth-bhliadhna seo chaidh" -#: src/Module/Admin/Federation.php:176 +#: src/Module/Admin/Federation.php:190 #, php-format -msgid "%s registered users" -msgstr "Cleachdaichean clàraichte: %s" +msgid "%2$s registered user" +msgid_plural "%2$s registered users" +msgstr[0] "%2$s chleachdaiche clàraichte" +msgstr[1] "%2$s chleachdaiche clàraichte" +msgstr[2] "%2$s cleachdaichean clàraichte" +msgstr[3] "%2$s cleachdaiche clàraichte" -#: src/Module/Admin/Federation.php:177 +#: src/Module/Admin/Federation.php:191 #, php-format -msgid "%s locally created posts and comments" -msgstr "Postaichean is beachdan a chaidh a chruthachadh gu h-ionadail: %s" +msgid "%2$s locally created post or comment" +msgid_plural "%2$s locally created posts and comments" +msgstr[0] "Chaidh %2$s phost no beachd a chruthachadh gu h-ionadail" +msgstr[1] "Chaidh %2$s phost ’s bheachd a chruthachadh gu h-ionadail" +msgstr[2] "Chaidh %2$s postaichean ’s beachdan a chruthachadh gu h-ionadail" +msgstr[3] "Chaidh %2$s post ’s beachd a chruthachadh gu h-ionadail" -#: src/Module/Admin/Federation.php:180 +#: src/Module/Admin/Federation.php:194 #, php-format -msgid "%s posts per user" -msgstr "Postaichean gach cleachdaiche: %s" +msgid "%2$s post per user" +msgid_plural "%2$s posts per user" +msgstr[0] "%2$s phost gach cleachdaiche" +msgstr[1] "%2$s phost gach cleachdaiche" +msgstr[2] "%2$s postaichean gach cleachdaiche" +msgstr[3] "%2$s post gach cleachdaiche" -#: src/Module/Admin/Federation.php:185 +#: src/Module/Admin/Federation.php:199 #, php-format -msgid "%s users per system" -msgstr "Cleachdaichean gach siostaim: %s" +msgid "%2$s user per system" +msgid_plural "%2$s users per system" +msgstr[0] "%2$s chleachdaiche gach siostaim" +msgstr[1] "%2$s chleachdaiche gach siostaim" +msgstr[2] "%2$s cleachdaichean gach siostaim" +msgstr[3] "%2$s cleachdaiche gach siostaim" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:209 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 "Bheir an duilleag seo àireamhan dhut mun chuid dhen lìonra shòisealta cho-naisgte sa bheil an nòd seo dhe Friendica. Chan eil na h-àireamhan seo coileanta is cha sheall iad ach a’ phàirt dhen lìonra air a bheil an nòd agad eòlach." -#: src/Module/Admin/Federation.php:201 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "Stadastaireachd a’ cho-nasgaidh" -#: src/Module/Admin/Federation.php:205 +#: src/Module/Admin/Federation.php:219 #, php-format msgid "" -"Currently this node is aware of %s nodes (%s active users last month, %s " -"active users last six months, %s registered users in total) from the " +"Currently this node is aware of %2$s node (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " "following platforms:" -msgstr "Tha an nòd seo eòlach air %s nòd(an) aig an àm seo (cleachdaichean gnìomhach sa mhìos seo chaidh: %s, cleachdaichean gnìomhach san leth-bhliadhna seo chaidh: %s, cleachdaichean clàraichte: %s gu h-iomlan) o na h-ùrlaran a leanas:" - -#: src/Module/Admin/Item/Delete.php:53 -msgid "Item marked for deletion." -msgstr "Chaidh an nì a chomharrachadh a chùm sguabaidh às." - -#: src/Module/Admin/Item/Delete.php:65 src/Module/BaseAdmin.php:109 -msgid "Delete Item" -msgstr "Sguab às an nì" - -#: src/Module/Admin/Item/Delete.php:66 -msgid "Delete this Item" -msgstr "Sguab às an nì seo" - -#: src/Module/Admin/Item/Delete.php:67 -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 "Air an duilleag seo, ’s urrainn dhut nì a sguabadh às on nòd agad. Mas e post ciad ìre a tha san nì, thèid an snàithlean gu lèir a sguabadh às." - -#: src/Module/Admin/Item/Delete.php:68 -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 "Feumaidh tu a bhith eòlach air GUID an nì. Gheibh thu lorg air m. e. a’ coimhead air URL an t-seallaidh. ’S e a’ phàirt mu dheireadh aig http://example.com/display/123456 a sa san GUID, ’s e 123456 a th’ ann an-seo." - -#: src/Module/Admin/Item/Delete.php:69 -msgid "GUID" -msgstr "GUID" - -#: src/Module/Admin/Item/Delete.php:69 -msgid "The GUID of the item you want to delete." -msgstr "GUID an nì a tha thu airson sguabadh às." - -#: src/Module/Admin/Item/Source.php:53 src/Module/BaseAdmin.php:119 -msgid "Item Source" -msgstr "Tùs an nì" - -#: src/Module/Admin/Item/Source.php:54 -msgid "Item Guid" -msgstr "GUID an nì" - -#: src/Module/Admin/Item/Source.php:58 -msgid "Item Id" -msgstr "ID an nì" - -#: src/Module/Admin/Item/Source.php:59 -msgid "Item URI" -msgstr "URI an nì" - -#: src/Module/Admin/Item/Source.php:61 -msgid "Terms" -msgstr "Briathran" - -#: src/Module/Admin/Item/Source.php:62 -msgid "Tag" -msgstr "Taga" - -#: src/Module/Admin/Item/Source.php:63 src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:130 src/Module/Admin/Users/Index.php:142 -msgid "Type" -msgstr "Seòrsa" - -#: src/Module/Admin/Item/Source.php:64 -msgid "Term" -msgstr "Briathar" - -#: src/Module/Admin/Item/Source.php:65 -msgid "URL" -msgstr "URL" - -#: src/Module/Admin/Item/Source.php:66 -msgid "Mention" -msgstr "Iomradh" - -#: src/Module/Admin/Item/Source.php:67 -msgid "Implicit Mention" -msgstr "Iomradh fillte" +msgid_plural "" +"Currently this node is aware of %2$s nodes (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgstr[0] "Tha an nòd seo eòlach air %2$s nòd aig an àm seo (cleachdaichean gnìomhach sa mhìos seo chaidh: %3$s, cleachdaichean gnìomhach san leth-bhliadhna seo chaidh: %4$s, cleachdaichean clàraichte: %5$s gu h-iomlan) o na h-ùrlaran a leanas:" +msgstr[1] "Tha an nòd seo eòlach air %2$s nòd aig an àm seo (cleachdaichean gnìomhach sa mhìos seo chaidh: %3$s, cleachdaichean gnìomhach san leth-bhliadhna seo chaidh: %4$s, cleachdaichean clàraichte: %5$s gu h-iomlan) o na h-ùrlaran a leanas:" +msgstr[2] "Tha an nòd seo eòlach air %2$s nòdan aig an àm seo (cleachdaichean gnìomhach sa mhìos seo chaidh: %3$s, cleachdaichean gnìomhach san leth-bhliadhna seo chaidh: %4$s, cleachdaichean clàraichte: %5$s gu h-iomlan) o na h-ùrlaran a leanas:" +msgstr[3] "Tha an nòd seo eòlach air %2$s nòd aig an àm seo (cleachdaichean gnìomhach sa mhìos seo chaidh: %3$s, cleachdaichean gnìomhach san leth-bhliadhna seo chaidh: %4$s, cleachdaichean clàraichte: %5$s gu h-iomlan) o na h-ùrlaran a leanas:" #: src/Module/Admin/Logs/Settings.php:47 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "Cha ghabh sgrìobhadh ann am faidhle “%s” an loga. Cha ghabh logadh a dhèanamh" -#: src/Module/Admin/Logs/Settings.php:71 +#: src/Module/Admin/Logs/Settings.php:77 msgid "PHP log currently enabled." msgstr "Tha logadh PHP an comas an-dràsta." -#: src/Module/Admin/Logs/Settings.php:73 +#: src/Module/Admin/Logs/Settings.php:79 msgid "PHP log currently disabled." msgstr "Tha logadh PHP à comas an-dràsta." -#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:111 -#: src/Module/BaseAdmin.php:112 +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 msgid "Logs" msgstr "Logaichean" -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:88 msgid "Clear" msgstr "Falamhaich" -#: src/Module/Admin/Logs/Settings.php:86 +#: src/Module/Admin/Logs/Settings.php:91 msgid "Enable Debugging" msgstr "Cuir dì-bhugachadh an comas" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "Cead-leughaidh a-mhàin on a chaidh a shuidheachadh le caochladair àrainne" + +#: src/Module/Admin/Logs/Settings.php:92 msgid "Log file" msgstr "Faidhle an loga" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:92 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Feumaidh cead sgrìobhaidh a bhith aig an fhrithealaiche-lìn. Dàimheach ri prìomh-pasgan Friendica." -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:93 msgid "Log level" msgstr "Leibheil an loga" -#: src/Module/Admin/Logs/Settings.php:90 +#: src/Module/Admin/Logs/Settings.php:95 msgid "PHP logging" msgstr "Logadh PHP" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:96 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 " @@ -5094,73 +4219,77 @@ msgid "" "is readable." msgstr "Cha b’ urrainn dhinn faidhle %1$s an loga fhosgladh.
    Dearbh gun gabh am faidhle %1$s a leughadh." -#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:113 +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 msgid "View Logs" msgstr "Seall na logaichean" -#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Admin/Logs/View.php:87 msgid "Search in logs" msgstr "Lorg sna logaichean" -#: src/Module/Admin/Logs/View.php:89 -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Notifications/Notifications.php:140 msgid "Show all" msgstr "Seall na h-uile" -#: src/Module/Admin/Logs/View.php:90 +#: src/Module/Admin/Logs/View.php:89 msgid "Date" msgstr "Ceann-là" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:90 msgid "Level" msgstr "Leibheil" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:91 msgid "Context" msgstr "Co-theacsa" -#: src/Module/Admin/Logs/View.php:94 +#: src/Module/Admin/Logs/View.php:93 msgid "ALL" msgstr "NA h-UILE" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:94 msgid "View details" msgstr "Seall am mion-fhiosrachadh" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:95 msgid "Click to view details" msgstr "Briog air a shealltainn a’ mhion-fhiosrachaidh" -#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Fiosrachadh an tachartais" + +#: src/Module/Admin/Logs/View.php:97 msgid "Data" msgstr "Dàta" -#: src/Module/Admin/Logs/View.php:99 -#: src/Module/Debug/ActivityPubConversion.php:62 +#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Debug/ActivityPubConversion.php:57 msgid "Source" msgstr "Tùs" -#: src/Module/Admin/Logs/View.php:100 +#: src/Module/Admin/Logs/View.php:99 msgid "File" msgstr "Faidhle" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:100 msgid "Line" msgstr "Loidhne" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:101 msgid "Function" msgstr "Foincsean" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:102 msgid "UID" msgstr "UID" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:103 msgid "Process ID" msgstr "ID a’ phròiseis" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:104 msgid "Close" msgstr "Dùin" @@ -5196,463 +4325,472 @@ msgstr "Àithne" msgid "Job Parameters" msgstr "Paramadairean na h-obrach" +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "Air a chruthachadh" + #: src/Module/Admin/Queue.php:79 msgid "Priority" msgstr "Prìomhachas" -#: src/Module/Admin/Site.php:338 src/Module/Settings/Display.php:138 +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" +msgstr "Chan eil %s ’na ion-chur dligheach do mheud as motha nan dealbhan" + +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:178 msgid "No special theme for mobile devices" msgstr "Chan eil ùrlar sònraichte do dh’uidheaman mobile ann" -#: src/Module/Admin/Site.php:355 src/Module/Settings/Display.php:148 +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188 #, php-format msgid "%s - (Experimental)" msgstr "%s – (deuchainneil)" -#: src/Module/Admin/Site.php:367 -msgid "No community page for local users" -msgstr "Chan eil duilleag coimhearsnachd do chleachdaichean ionadail ann" - -#: src/Module/Admin/Site.php:368 +#: src/Module/Admin/Site.php:342 msgid "No community page" msgstr "Gun duilleag coimhearsnachd" -#: src/Module/Admin/Site.php:369 +#: src/Module/Admin/Site.php:343 +msgid "No community page for visitors" +msgstr "Gun duilleag coimhearsnachd do dh’aoighean" + +#: src/Module/Admin/Site.php:344 msgid "Public postings from users of this site" msgstr "Postaichean poblach nan cleachdaichean air an làrach seo" -#: src/Module/Admin/Site.php:370 +#: src/Module/Admin/Site.php:345 msgid "Public postings from the federated network" msgstr "Postaichean poblach on lìonra cho-naisgte" -#: src/Module/Admin/Site.php:371 +#: src/Module/Admin/Site.php:346 msgid "Public postings from local users and the federated network" msgstr "Postaichean poblach nan cleachdaichean ionadail ’s on lìonra cho-naisgte" -#: src/Module/Admin/Site.php:377 +#: src/Module/Admin/Site.php:352 msgid "Multi user instance" msgstr "Ionstans ioma-chleachdaiche" -#: src/Module/Admin/Site.php:404 +#: src/Module/Admin/Site.php:375 msgid "Closed" msgstr "Dùinte" -#: src/Module/Admin/Site.php:405 +#: src/Module/Admin/Site.php:376 msgid "Requires approval" msgstr "Tha feum air aontachadh" -#: src/Module/Admin/Site.php:406 +#: src/Module/Admin/Site.php:377 msgid "Open" msgstr "Fosgailte" -#: src/Module/Admin/Site.php:410 src/Module/Install.php:222 -msgid "No SSL policy, links will track page SSL state" -msgstr "Gun phoileasaidh SSL, nì ceanglaichean tracadh air staid SSL na duilleige" - -#: src/Module/Admin/Site.php:411 src/Module/Install.php:223 -msgid "Force all links to use SSL" -msgstr "Èignich gun chleachd a h-uile ceangal SSL" - -#: src/Module/Admin/Site.php:412 src/Module/Install.php:224 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Teisteanas air fhèin-shoidhneadh, cleachd SSL do cheanglaichean ionadail a-mhàin (cha mholamaid seo)" - -#: src/Module/Admin/Site.php:416 +#: src/Module/Admin/Site.php:381 msgid "Don't check" msgstr "Na cuir sùil" -#: src/Module/Admin/Site.php:417 +#: src/Module/Admin/Site.php:382 msgid "check the stable version" msgstr "cuir sùil air na tionndadh seasmhach" -#: src/Module/Admin/Site.php:418 +#: src/Module/Admin/Site.php:383 msgid "check the development version" msgstr "cuir sùil air na tionndadh leasachaidh" -#: src/Module/Admin/Site.php:422 +#: src/Module/Admin/Site.php:387 msgid "none" msgstr "chan eil gin" -#: src/Module/Admin/Site.php:423 +#: src/Module/Admin/Site.php:388 msgid "Local contacts" msgstr "Luchd-aithne an ionadail" -#: src/Module/Admin/Site.php:424 +#: src/Module/Admin/Site.php:389 msgid "Interactors" -msgstr "" +msgstr "Luchd co-luadair" -#: src/Module/Admin/Site.php:434 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Làrach" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:400 msgid "General Information" msgstr "Fiosrachadh coitcheann" -#: src/Module/Admin/Site.php:437 +#: src/Module/Admin/Site.php:402 msgid "Republish users to directory" msgstr "Ath-fhoillsich na cleachdaichean dhan eòlaire" -#: src/Module/Admin/Site.php:438 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 msgid "Registration" msgstr "Clàradh" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:404 msgid "File upload" msgstr "Luchdadh suas fhaidhlichean" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:405 msgid "Policies" msgstr "Poileasaidhean" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "Adhartach" + +#: src/Module/Admin/Site.php:407 msgid "Auto Discovered Contact Directory" msgstr "Eòlaire an luchd-aithne a chaidh a lorg gu fèin-obrachail" -#: src/Module/Admin/Site.php:443 +#: src/Module/Admin/Site.php:408 msgid "Performance" msgstr "Dèanadas" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:409 msgid "Worker" msgstr "Obraiche" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:410 msgid "Message Relay" msgstr "Ath-sheachadan theachdaireachdan" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:411 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "Cleachd an àithne “console relay” air an loidhne-àithne a chur ris no a thoirt air falbh ath-sheachadain." -#: src/Module/Admin/Site.php:447 +#: src/Module/Admin/Site.php:412 msgid "The system is not subscribed to any relays at the moment." msgstr "Cha do rinn an siostam fo-sgrìobhadh air ath-sheachadan sam bith aig an àm seo." -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:413 msgid "The system is currently subscribed to the following relays:" msgstr "Tha an siostam a’ fo-sgrìobhadh dha na h-ath-sheachadain seo:" -#: src/Module/Admin/Site.php:450 +#: src/Module/Admin/Site.php:415 msgid "Relocate Node" msgstr "Imrich an nòd" -#: src/Module/Admin/Site.php:451 +#: src/Module/Admin/Site.php:416 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "Le imrich an nòd, ’s urrainn dhut àrainn DNS an nòid seo atharrachadh agus na cleachdaichean is postaichean uile a chumail. Bheir am pròiseas seo greis mhath is cha ghabh a thòiseachadh ach le àithne imrich na consoil mar seo:" -#: src/Module/Admin/Site.php:452 +#: src/Module/Admin/Site.php:417 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(Pasgan Friendica)# bin/console relocate https://àrainn-ùr.com" -#: src/Module/Admin/Site.php:456 +#: src/Module/Admin/Site.php:420 msgid "Site name" msgstr "Ainm na làraich" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:421 msgid "Sender Email" msgstr "Post-d an t-seòladair" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:421 msgid "" "The email address your server shall use to send notification emails from." msgstr "An seòladh puist-d a chleachdas am frithealaiche airson brathan puist-d a chur uaithe." -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:422 msgid "Name of the system actor" msgstr "Ainm actar an t-siostaim" -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:422 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 "Ainm cunntas inntearnail an fhrithealaiche a thèid a chleachdadh airson iarrtasan ActivityPub. Feumaidh seo a bhith ’na ainm-chleachdaiche gun chleachdadh. Nuair a bhios seo air a shuidheachadh, gha ghabh atharrachadh a-rithist." -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:423 msgid "Banner/Logo" msgstr "Bratach/Suaicheantas" -#: src/Module/Admin/Site.php:460 +#: src/Module/Admin/Site.php:424 msgid "Email Banner/Logo" msgstr "Bratach/Suaicheantas puist-d" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:425 msgid "Shortcut icon" msgstr "Ìomhaigheag na h-ath-ghoirid" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:425 msgid "Link to an icon that will be used for browsers." msgstr "Ceangal gu ìomhaigheag a thèid a chleachdadh le brabhsairean." -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:426 msgid "Touch icon" msgstr "Ìomhaigheag suathaidh" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:426 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Ceangal gu ìomhaigheag a thèid a chleachdadh airson tablaidean is fònaichean-làimhe." -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:427 msgid "Additional Info" msgstr "Barrachd fiosrachaidh" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:427 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "Airson frithealaichean poblach: ’s urrainn dhut barrachd fiosrachaidh a chur ris an-seo a nochdas air %s/servers." -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:428 msgid "System language" msgstr "Cànan an t-siostaim" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:429 msgid "System theme" msgstr "Ùrlar an t-siostaim" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:429 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "Ùrlar bunaiteach an t-siostaim – gabhaidh a thar-àithneadh le pròifilean cleachdaiche – Atharraich roghainnean an ùrlair bhunaitich" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:430 msgid "Mobile system theme" msgstr "Ùrlar mobile an t-siostaim" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:430 msgid "Theme for mobile devices" msgstr "An t-ùrlar do dh’uidheaman mobile" -#: src/Module/Admin/Site.php:467 src/Module/Install.php:232 -msgid "SSL link policy" -msgstr "Poileasaidh SSL nan ceanglaichean" - -#: src/Module/Admin/Site.php:467 src/Module/Install.php:234 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Suidhichidh seo an dèid SSL a sparradh air ceanglaichean a thèid a ghintinn gus nach dèid" - -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:431 msgid "Force SSL" msgstr "Spàrr SSL" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:431 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Spàrr SSL air a h-uile iarrtas gun SSL – An aire: dh’fhaoidte gun adhbharaich seo lùban gun chrìoch air cuid a shiostaman." -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:432 msgid "Show help entry from navigation menu" msgstr "Seall nì na cobharach ann an clàr-taice na seòladaireachd" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:432 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "Seallaidh an nì airson duilleagan na cobharach ann an clàr-taice na seòladaireachd. Gabhaidh inntrigeadh le gairm /help gu dìreach an-còmhnaidh." -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:433 msgid "Single user instance" msgstr "Ionstans aon-chleachdaiche" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:433 msgid "Make this instance multi-user or single-user for the named user" msgstr "Dèan ionstans ioma-chleachdaiche no aon-chleachdaiche dhan chleachdaiche ainmichte dhen ionstans seo" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:435 msgid "Maximum image size" msgstr "Meud as motha nan dealbhan" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:435 +#, php-format msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Am meud as motha ann am baidht do dhealbhan a thèid a luchdadh suas. Is 0 a’ bhun-roghainn, ’s e sin gun chrìoch." +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "Am meud as motha ann am baidht do dhealbhan a thèid a luchdadh suas. Is 0 a’ bhun-roghainn, ’s e sin gun chrìoch. ’S urrainn dhut k, m no g a chur às dèidh an luacha a thogras tu airson KiB, MiB no GiB.\n\t\t\t\t\t\t\t\t\t\t\t\t\tFeumaidh tu an luach air upload_max_filesize sa PHP.ini a shuidheachadh air a’ chrìoch a thogras tu air a char as lugha.\n\t\t\t\t\t\t\t\t\t\t\t\t\tChaidh upload_max_filesize a shuidheachadh air %s (%s baidht) aig an àm seo" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:439 msgid "Maximum image length" msgstr "Faide as motha nan dealbhan" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:439 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "An fhaide as motha ann am piogsail aig an taobh as fhaide do dhealbhan a thèid a luchdadh suas. Is -1 a’ bhun-roghainn, ’s e sin gun chrìoch." -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:440 msgid "JPEG image quality" msgstr "Càileachd deilbh JPEG" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:440 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Thèid dealbhan a’ sàbhaladh leis a’ chàileachd JPEG seo às dèidh an luchdadh suas [0-100]. Is 100 a’ bhun-roghainn, ’s e sin a’ chàileachd shlàn." -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:442 msgid "Register policy" msgstr "Poileasaidh clàraidh" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "Àireamh as motha de chleachdaichean" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "Ma bhios seo air a mhìneachadh, thèid poileasaidh nan clàraidhean a dhùnadh gu fèin-obrachail nuair a bhios an àireamh shònraichte de chleachdaichean air a ruigsinn agus fhosgladh a-rithist nuair a thèid an àireamh nas ìsle na a’ chrìoch. Chan obraich seo ach ma chaidh am poileasaidh a shuidheachadh air “Fosgailte” no “Dùinte” agus chan obraich e ma chaidh am poileasaidh a shuidheachadh air “Aontachadh”." + +#: src/Module/Admin/Site.php:444 msgid "Maximum Daily Registrations" msgstr "An àireamh as motha de chlàraidhean gach latha" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:444 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 "Ma tha an clàradh ceadaichte gu h-àrd, suidhichidh seo an àireamh as motha de chlàraidhean chleachdaichean ùra gach latha. Ma tha an clàradh dùinte, cha doir an roghainn seo buaidh." -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:445 msgid "Register text" msgstr "Teacsa a’ chlàraidh" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:445 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Thèid a shealltainn gu follaiseach air duilleag a’ chlàraidh. ’S urrainn dhut BBCode a chleachdadh an-seo." -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:446 msgid "Forbidden Nicknames" msgstr "Far-ainmean toirmisgte" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:446 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "Liosta sgaraichte le cromagan de dh’fhar-ainmean nach fhaod clàradh. Tha liosta de dh’ainmean dreuchdan a-rèir RFC 2142 ro-shocraichte." -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:447 msgid "Accounts abandoned after x days" msgstr "Cunntasan air an trèigsinn às dèidh x là" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:447 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Cha chaith seo goireasan an t-siostam le ceasnachadh làraichean air an taobh a-muigh airson cunntasan air an trèigsinn. Cuir a-steach 0 airson cunntasan gun chrìoch ùine." -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:448 msgid "Allowed friend domains" msgstr "Àrainnean ceadaichte do chàirdeasan" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:448 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Liosta sgaraichte le cromagan de dh’àrainnean a dh’fhaodas càirdeasan a stèidheachadh leis an làrach seo. Gabhaidh seo ri saoragan. Fàg bàn airson a h-uile àrainn a cheadachadh" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:449 msgid "Allowed email domains" msgstr "Àrainnean puist-d ceadaichte" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:449 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 "Liosta sgaraichte le cromagan de dh’àrainnean a tha ceadaichte ann am puist-d airson clàradh leis an làrach seo. Gabhaidh seo ri saoragan. Fàg bàn airson a h-uile àrainn a cheadachadh" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:450 msgid "No OEmbed rich content" msgstr "Gun susbaint OEmbed bheartach" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:450 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "Na seall susbaint bheartach (m. e. PDF leabaichte) ach o na h-àrainnean air an liosta gu h-ìosal." -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:451 msgid "Trusted third-party domains" msgstr "Àrainnean threas-phàrtaidhea earbsach" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:451 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 "Liosta sgaraichte le cromagan de dh’àrainnean on a dh’fhaodar susbaint a leabachadh am broinn phostaichean le OEmbed. Thèid cead a thoirt dhan a h-uile fo-àrainn dhe na h-àrainnean air an liosta cuideachd." -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:452 msgid "Block public" msgstr "Bac inntrigeadh poblach" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:452 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Cuir cromag ris a bhacadh inntrigeadh poblach air a h-uile duilleag phearsanta a bhiodh poblach air an làrach seo ach dhan fheadhainn a bhios air a clàradh a-staigh." -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:453 msgid "Force publish" msgstr "Spàrr foillseachadh" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:453 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Cuir cromag ris a sparradh air a h-uile pròifil air an làrach seo gun nochd iad ann an eòlaire na làraich." -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:453 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Ma chuireas tu seo an comas, dh’fhaoidte gum bris thu laghan mar an GDPR" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:454 msgid "Global directory URL" msgstr "URL an eòlaire cho-naisgte" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:454 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "URL dhan eòlaire cho-naisgte. Mura deach seo a shuidheachadh, cha bhi an t-eòlaire uile-choitcheann ri fhaighinn idir dhan aplacaid." -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:455 msgid "Private posts by default for new users" msgstr "Postaichean prìobhaideach ’na bhun-roghainn do chleachdaichean ùra" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:455 msgid "" "Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Suidhichidh seo ceadan phostaichean nam ball ùra air a’ bhuidheann phrìobhaideach gu bunaiteach seach air a’ bhuidheann phoblach." +"circle rather than public." +msgstr "Suidhichidh seo ceadan phostaichean nam ball ùra air a’ chearcall phrìobhaideach gu bunaiteach seach air a’ chearcall phoblach." -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:456 msgid "Don't include post content in email notifications" msgstr "Na gabh a-staigh susbaint nam post ann am brathan puist-d" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:456 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 "Na gabh a-staigh susbaint puist/beachd/teachdaireachd prìobhaidich/msaa. sna brathan puist-d a thèid a chur on làrach seo, a chùm prìobhaideachd." -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:457 msgid "Disallow public access to addons listed in the apps menu." msgstr "Na ceadaich inntrigeadh poblach dha na tuilleadain a tha air an liosta ann an clàr-taice nan aplacaidean." -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:457 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Ma tha cromag sa bhogsa seo, bidh an t-inntrigeadh air na tuilleadain a chithear ann an clàr-taice nan aplacaidean cuingichte air na buill a-mhàin." -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:458 msgid "Don't embed private images in posts" msgstr "Na leabaich dealbhan prìobhaideach ann am postaichean" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:458 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 " @@ -5660,11 +4798,11 @@ msgid "" "while." msgstr "Na cuir lethbhreac leabaichte dhen dealbh an àite dhealbhan prìobhaideach ann am postaichean a tha ’gan òstadh gu h-ionadail. Is ciall dha seo gum feum an luchd-aithne a gheibh postaichean sa bheil dealbhan prìobhaideach ùghdarrachadh is gach dealbh a luchdadh fa leth agus dh’fhaoidte gun doir sin greis." -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:459 msgid "Explicit Content" msgstr "Susbaint inbheach" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:459 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 " @@ -5673,508 +4811,524 @@ msgid "" "will be shown at the user registration page." msgstr "Suidhich seo a dh’innse gu bheil an nòd agad ’ga chleachdadh airson susbaint inbheach gu h-àraidh is nach eil e iomchaidh do mhion-aoisich ’s dòcha. Thèid am fiosrachadh seo fhoillseachadh ann am fiosrachadh an nòid agus gabhaidh a chleachdadh m.e. leis an eòlaire cho-naisgte airson an nòd agad a chriathradh air falbh o liosta nan nòdan a chùm ballrachd ùir. A bharrachd air sin, thèid nòta a shealltainn aig duilleag clàradh nan cleachdaichean." -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:460 msgid "Proxify external content" msgstr "Susbaint chèin tro phrogsaidh" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:460 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "Rùtaich susbaint chèin le gleus a’ phrogsaidh. Tha seo ’ga chleachdadh, mar eisimpleir, airson cuid dhen inntrigeadh OEmbed agus ann an suidheachaidhean ainneamh eile." -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:461 msgid "Cache contact avatars" msgstr "Cuir avataran an luchd-aithne dhan tasgadan" -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:461 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "Stòr dealbhan avatar an luchd-aithne gu h-ionadail. Cleachdaidh seo tòrr àite san stòras ach cuiridh e ris an dèanadas." -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:462 msgid "Allow Users to set remote_self" msgstr "Leig le cleachdaichean remote_self a shuidheachadh" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:462 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 "Ma chuireas tu cromag ris, faodaidh gach cleachdaiche neach-aithne sam bith a chomharrachadh mar remote_self ann an còmhradh càradh an luchd-aithne. Nuair a thèid a’ bhratach seo a chur ri neach-aithne, thèid a h-uile post an neach-aithne sin sgàthanachadh ann an sruth a’ chlechdaiche." -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:463 msgid "Enable multiple registrations" msgstr "Cuir clàradh iomadach an comas" -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:463 msgid "Enable users to register additional accounts for use as pages." msgstr "Bheir seo an comas dha na cleachdaichean gun clàraich iad cunntasan a bharrachd airson an cleachdadh ’nan duilleagan." -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID" msgstr "Cuir OpenID an comas" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID support for registration and logins." msgstr "Cuir an comas taic dha OpenID airson clàradh is clàradh a-steach." -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:465 msgid "Enable Fullname check" msgstr "Cuir an comas dearbhadh ainm shlàin" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:465 msgid "" "Enable check to only allow users to register with a space between the first " "name and the last name in their full name." msgstr "Cuid an comas an dearbhadh nach leig le cleachdaichean clàradh ach le beàrn eadar ainm is sloinneadh an ainm shlàin." -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "Cuir puist-d dha na rianairean do chlàraidhean ùra" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "Nuair a bhios seo an comas agus an siostam air a shuidheachadh air clàraidhean fosgailte, thèid post-d a chur dha na rianairean do gach clàradh ùr." + +#: src/Module/Admin/Site.php:467 msgid "Community pages for visitors" msgstr "Duilleagan coimhearsnachd do dh’aoighean" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:467 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Dè na duilleagan coimhearsnachd a chì aoighean. Chì na cleachdaichean ionadail an dà dhuilleag an-còmhnaidh." -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:468 msgid "Posts per user on community page" msgstr "Postaichean gach cleachdaiche air duilleag na coimhearsnachd" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:468 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "\"Global Community\")" msgstr "An àireamh as motha de phostaichean aig gach cleachdaiche air duilleag na coimhearsnachd. (Chan eil seo dligheach dhan “Choimhearsnachd cho-naisgte”)" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:470 msgid "Enable Mail support" -msgstr "" +msgstr "Cuir taic ri post-d an comas" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:470 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." -msgstr "" +msgstr "Cuir an comas an taic ri post-d a thig ’na bhroinn airson pasganan IMAP a cheasnachadh agus freagairt le post-d." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:471 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." -msgstr "" +msgstr "Chan urrainn dhuinn an taic ri post-d a chur an comas air sgàth ’s nach deach am mòideal IMAP aig PHP a stàladh." -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:472 msgid "Enable OStatus support" -msgstr "" +msgstr "Cuir an taic ri OStatus an comas" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:472 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." -msgstr "" +msgstr "Cuir an comas a’ cho-chòrdalachd ri OStatus (StatusNet, GNU Social is msaa.) a thig ’na bhroinn. Bidh gach conaltradh slighe OStatus poblach." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:474 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." -msgstr "" +msgstr "Chan urrainn dhuinn an taic ri diaspora* a chur an comas on a chaidh Friendica a stàladh ann am fo-phasgan." -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:475 msgid "Enable Diaspora support" -msgstr "" +msgstr "Cuir taic ri diaspora* an comas" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:475 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." -msgstr "" +msgstr "Cuir an comas a’ cho-chòrdalachd lìonraidh le diaspora* a thig ’na bhroinn airson conaltradh le frithealaichean diaspora*." -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:476 msgid "Verify SSL" -msgstr "" +msgstr "Dearbh SSL" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:476 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 "" +msgstr "Ma thogras tu, ’s urrainn dhut sgrùdadh teann nan teisteanasan a chur an comas. Is ciall dha seo nach urrainn dhut ceangal idir le làraichean le SSL a chaidh fhèin-shoidhneadh." -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:477 msgid "Proxy user" -msgstr "" +msgstr "Cleachdaiche a’ phrogsaidh" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:477 msgid "User name for the proxy server." -msgstr "" +msgstr "Ainm-cleachdaiche dhan fhrithealaiche progsaidh." -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:478 msgid "Proxy URL" -msgstr "" +msgstr "URL a’ phrogsaidh" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:478 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." -msgstr "" +msgstr "Ma tha thu airson ’s gun cleachd Friendica frithealaiche progsaidh airson ceangal ris an lìonra, cuir URL a’ phrogsaidh an-seo." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:479 msgid "Network timeout" -msgstr "" +msgstr "Crìoch-ùine an lìonraidh" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:479 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" +msgstr "Luach ann an diogan. Is ciall dha 0 nach fhalbh an ùine air idir (cha mholamaid seo)." -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:480 msgid "Maximum Load Average" -msgstr "" +msgstr "Eallach as motha sa chuibheas" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:480 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "Eallach as motha air an t-siostam mus dèid dàil a chur air an lìbhrigeadh is air pròiseasadh cunbhalach – ’s e %d a tha sa bhun-roghainn." -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:481 msgid "Minimal Memory" -msgstr "" +msgstr "A’ chuimhne as lugha" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:481 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." -msgstr "" +msgstr "A’ chuimhne shaor as lugha ann an MB dhan obraiche. Bidh feum air inntrigeadh dha /proc/meminfo – is 0 a’ bhun-roghainn (à gnìomh)." -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables" -msgstr "" +msgstr "Pisich na clàran o àm gu àm" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "Pisich clàran mar an tasgadan is an ciutha-obrach gu cunbhalach" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:484 msgid "Discover followers/followings from contacts" -msgstr "" +msgstr "Lorg dàimhean leantainn on luchd-aithne" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:484 msgid "" "If enabled, contacts are checked for their followers and following contacts." -msgstr "" +msgstr "Ma tha seo an comas, thèid sùil a thoirt airson luchd-leantainn an luchd-aithne is an fheadhainn air a leanas iad." -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:485 msgid "None - deactivated" -msgstr "" +msgstr "Chan eil gin – à comas" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:486 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." -msgstr "" +msgstr "Luchd-aithne ionadail – thèid dàimhean leantainn an luchd-aithne ionadail a lorg." -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:487 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." -msgstr "" +msgstr "Luchd co-luadair – thèid dàimhean leantainn an luchd-aithne ionadail agus aig an fheadhainn a rinn co-luadar le postaichean poblach a lorg." -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:489 msgid "Synchronize the contacts with the directory server" -msgstr "" +msgstr "Sioncronaich an luchd-aithne le frithealaiche an eòlaire" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:489 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." -msgstr "" +msgstr "Ma tha seo an comas, bheir an siostam sùil gu cunbhalach airson luchd-aithne ùr air frithealaiche an eòlaire a chaidh a mhìneachadh." -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:491 msgid "Days between requery" -msgstr "" +msgstr "Làithean eadar ceasnachaidhean" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:491 msgid "Number of days after which a server is requeried for his contacts." -msgstr "" +msgstr "An àireamh de làithean mus dèid am frithealaiche ceasnachadh airson an luchd-aithne aige a-rithist." -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:492 msgid "Discover contacts from other servers" -msgstr "" +msgstr "Lorg luchd-aithne o fhrithealaichean eile" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:492 msgid "" "Periodically query other servers for contacts. The system queries Friendica," " Mastodon and Hubzilla servers." -msgstr "" +msgstr "Ceasnaich frithealaichean eile airson an luchd-aithne aca gu cunbhalach. Ceasnaichidh an siostam frithealaichean Friendica, Mastodon i Hubzilla." -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:493 msgid "Search the local directory" -msgstr "" +msgstr "Lorg san eòlaire ionadail" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:493 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 "Lorg san eòlaire ionadail seach san eòlaire cho-naisgte. Nuair a nì thu lorg gu h-ionadail, thèid gach lorg a ghnìomhachadh san eòlaire cho-naisgte sa chùlaibh. Cuiridh seo piseach air na toraidhean luirg nuair a nithear an t-aon lorg a-rithist." -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:495 msgid "Publish server information" -msgstr "" +msgstr "Foillsich fiosrachadh an fhrithealaiche" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:495 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 "" +msgstr "Ma tha seo an comas, thèid dàta coitcheann mun fhrithealaiche ’s cleachdadh fhoillseachadh. Gabhaidh an dàta a-staigh ainm is tionndadh an fhrithealaiche, an àireamh de chleachdaichean le pròifilean poblach, an àireamh de phostaichean agus na pròtacalan is ceangladairean an comas. Faic the-federation.info airson barrachd fiosrachaidh." -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:497 msgid "Check upstream version" -msgstr "" +msgstr "Cuir sùil air tionndadh an upstream" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:497 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 "" +msgstr "Cuiridh seo an comas gun dèid sùil a chur airson tionndaidhean dhe Friendica air GitHub. Nuair a bhios tionndadh ùr an, thèid innse dhut air foir-shealladh panail na rianachd." -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:498 msgid "Suppress Tags" -msgstr "" +msgstr "Mùch tagaichean" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:498 msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" +msgstr "Mùch sealladh liosta nan tagaichean hais air deireadh nam post." -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:499 msgid "Clean database" -msgstr "" +msgstr "Sgioblaich an stòr-dàta" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:499 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Thoir air falbh nithean cèine, reacordan stòir-dhàta a tha ’nan dìlleachdanan agus seann-susbaint eile o chuid a chlàran-taice eile." -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:500 msgid "Lifespan of remote items" -msgstr "" +msgstr "Faid-bheatha nan nithean cèine" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:500 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 "" +msgstr "Nuair a bhios sgioblachadh an stòir-dhàta an comas, mìnichidh seo na làithean mus dèid nithean cèine a sguabadh às. Thèid na nithean againn fhèin ’s na nithean a chaidh a chomharrachadh no fhaidhleadh a chumail an-còmhnaidh. Cuiridh 0 an giùlan seo à comas." -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:501 msgid "Lifespan of unclaimed items" -msgstr "" +msgstr "Faid-bheatha nan nithean gun tagairt" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:501 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 "" +msgstr "Nuair a bhios sgioblachadh an stòir-dhàta an comas, mìnichidh seo na làithean mus dèid nithean gun tagairt (seo susbaint on ath-sheachadan mar as trice) a sguabadh às. ’S e 90 latha a tha sa bhun-roghainn. Ma shuidhicheas tu seo air 0, thèid luach faid-bheatha nan nithean cèine a chleachdadh mar bhun-roghainn." -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:502 msgid "Lifespan of raw conversation data" -msgstr "" +msgstr "Faid-bheatha dàta amh nan còmhraidhean" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:502 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 "" +msgstr "Tha dàta nan còmhraidhean ’ga chleachdadh airson ActivityPub is OStatus agus a chùm dì-bhugachaidh. Bu chòir dha a bhith sàbhailte ma sguabas tu às às dèidh cola-deug. ’S e 90 latha a tha sa bhun-roghainn." -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:503 msgid "Maximum numbers of comments per post" -msgstr "" +msgstr "An àireamh as motha de bheachdan ri post" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:503 msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" +msgstr "Co mheud beachd a thèid a shealltainn do gach post? ’S e 100 a tha sa bhun-roghainn." -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:504 msgid "Maximum numbers of comments per post on the display page" -msgstr "" +msgstr "An àireamh as motha de bheachdan ri post air duilleag na sealltainn" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:504 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." -msgstr "" +msgstr "Co mheud beachd a thèid a shealltainn do gach post nuair a sheallar post fa leth? ’S e 1000 a tha sa bhun-roghainn." -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:505 msgid "Temp path" -msgstr "" +msgstr "Slighe shealadach" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:505 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." -msgstr "" +msgstr "Ma tha siostam cuingichte agad far nach urrainn dhan fhrithealaiche-lìn slighe temp an t-siostaim inntrigeadh, cuir a-steach slighe eile an-seo." -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:506 msgid "Only search in tags" -msgstr "" +msgstr "Na lorg ach sna tagaichean" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:506 msgid "On large systems the text search can slow down the system extremely." -msgstr "" +msgstr "Air siostaman mòra, ’s urrainn dhan lorg teacsa maille mhòr a chur air an t-siostam." -#: src/Module/Admin/Site.php:539 -msgid "Generate counts per contact group when calculating network count" -msgstr "" +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "Cruthaich cunntasan do chearcallan luchd-aithne nuair a thèid cunntas an lìonraidh àireamhachadh" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:507 msgid "" -"On systems with users that heavily use contact groups the query can be very " -"expensive." -msgstr "" +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "Air siostaman far an bheil tòrr chearcallan luchd-aithne ’gan cleachdadh, faodaidh a’ cheist seo a bhith glè dhaor." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:509 msgid "Maximum number of parallel workers" -msgstr "" +msgstr "An àireamh as motha de dh’obraichean co-shìnte" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:509 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." -msgstr "" +msgstr "Suidhich seo air %d air òstairean co-roinnte. Air siostaman nas motha, bidh luach %d math. Is %d a’ bhun-roghainn." -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:510 msgid "Enable fastlane" -msgstr "" +msgstr "Cuir fastlane an comas" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:510 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." -msgstr "" +msgstr "Nuair a bhios seo an comas, cuiridh am fastlane obraiche a bharrachd air dòigh ma tha pròiseas air a bheil prìomhachas as àirde ’ga bhacadh le pròiseasan air a bheil prìomhachas ìosal." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:512 msgid "Direct relay transfer" -msgstr "" +msgstr "Tar-chur ath-sheachadain dìreach" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:512 msgid "" "Enables the direct transfer to other servers without using the relay servers" -msgstr "" +msgstr "Cuiridh seo an comas an tar-chur dìreach gu frithealaichean eile às aonais nam frithealaichean ath-sheachadain" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:513 msgid "Relay scope" -msgstr "" +msgstr "Sgòp an ath-sheachadain" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:513 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 "" +msgstr "Tha taghadh eadar “na h-uile” is “tagaichean” agad. Is ciall dha “na h-uile” gun dèid gach post poblach fhaighinn. Is ciall dha “tagaichean” nach dèid ach postaichean le tagaichean sònraichte fhaighinn." -#: src/Module/Admin/Site.php:545 src/Module/Contact/Profile.php:273 -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Disabled" -msgstr "" +msgstr "À comas" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:513 msgid "all" -msgstr "" +msgstr "na h-uile" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:513 msgid "tags" -msgstr "" +msgstr "tagaichean" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:514 msgid "Server tags" -msgstr "" +msgstr "Tagaichean an fhrithealaiche" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:514 msgid "Comma separated list of tags for the \"tags\" subscription." -msgstr "" +msgstr "Liosta de thagaichean airson fo-sgrìobhadh nan “tagaichean”, sgaraichte le cromagan." -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:515 msgid "Deny Server tags" -msgstr "" +msgstr "Tagaichean an fhrithealaiche ’gan diùltadh" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:515 msgid "Comma separated list of tags that are rejected." -msgstr "" +msgstr "Liosta da thagaichean a tha ’gan diùltadh, sgaraichte le cromagan." -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:516 msgid "Allow user tags" -msgstr "" +msgstr "Ceadaich tagaichean chleachdaichean" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:516 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." -msgstr "" +msgstr "Ma tha seo an comas, thèid na tagaichean o na lorgan air an sàbhaladh a chleachdadh airson fo-sgrìobhadh nan “tagaichean” a bharrachd air na “relay_server_tags”." -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:519 msgid "Start Relocation" -msgstr "" +msgstr "Tòisich air an imrich" #: src/Module/Admin/Storage.php:46 #, php-format msgid "Storage backend, %s is invalid." -msgstr "" +msgstr "Backend an stòrais, tha %s mì-dhligheach." #: src/Module/Admin/Storage.php:73 #, php-format msgid "Storage backend %s error: %s" -msgstr "" +msgstr "Mearachd backend an stòrais %s: %s" #: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 msgid "Invalid storage backend setting value." -msgstr "" +msgstr "Luach roghainne mì-dhligheach air backend an stòrais." #: src/Module/Admin/Storage.php:139 msgid "Current Storage Backend" -msgstr "" +msgstr "Backend làithreach an stòrais" #: src/Module/Admin/Storage.php:140 msgid "Storage Configuration" -msgstr "" +msgstr "Rèiteachadh an stòrais" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:94 +#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 msgid "Storage" -msgstr "" +msgstr "An stòras" #: src/Module/Admin/Storage.php:143 msgid "Save & Use storage backend" -msgstr "" +msgstr "Sàbhail ⁊ cleachd backend an stòrais" #: src/Module/Admin/Storage.php:144 msgid "Use storage backend" -msgstr "" +msgstr "Cleachd backend an stòrais" #: src/Module/Admin/Storage.php:145 msgid "Save & Reload" -msgstr "" +msgstr "Sàbhail ⁊ ath-luchdaich" #: src/Module/Admin/Storage.php:146 msgid "This backend doesn't have custom settings" -msgstr "" +msgstr "Chan eil roghainnean gnàthaichte aig a’ backend seo" -#: src/Module/Admin/Storage.php:149 +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "Chan fhaod thu am backend làithreach atharrachadh on a chaidh a shuidheachadh le caochladair àrainne" + +#: src/Module/Admin/Storage.php:150 msgid "Database (legacy)" -msgstr "" +msgstr "Stòr-dàta (dìleabach)" -#: src/Module/Admin/Summary.php:54 +#: src/Module/Admin/Summary.php:55 #, php-format msgid "Template engine (%s) error: %s" -msgstr "" +msgstr "Mearachd einnsean teamplaide (%s): %s" -#: src/Module/Admin/Summary.php:58 +#: src/Module/Admin/Summary.php:59 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -6183,9 +5337,9 @@ msgid "" "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 "" +msgstr "Tha an stòr-dàta agad a’ cleachdadh clàran MyISAM fhathast. Bu chòir dhut seòrsa an einnsein atharrachadh gu InnoDB. Air sgàth ’s gun cleachd Friendica gleusan InnoDB sònraichte san àm ri teachd, bu chòir dhut seo atharrachadh! Faic an treòir a tha cuideachail airson einnseanan nan clàran iompachadh. ’S urrainn dhut cuideachd an àithne php bin/console.php dbstructure toinnodb aig an stàladh agad dhe Friendica a chleachdadh airson iompachadh fèin-obrachail.
    " -#: src/Module/Admin/Summary.php:63 +#: src/Module/Admin/Summary.php:64 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -6194,586 +5348,343 @@ msgid "" "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 "" +msgstr "Tha an stòr-dàta agad a’ cleachdadh clàran InnoDB san fhòrmat faidhle Antelope fhathast. Bu chòir dhut fòrmat nam faidhlichean atharrachadh gu Barracuda. Tha Friendica a’ cleachdadh gleusan nach solair fòrmat Antelope. Faic an treòir a tha cuideachail airson einnseanan nan clàran iompachadh. ’S urrainn dhut cuideachd an àithne php bin/console.php dbstructure toinnodb aig an stàladh agad dhe Friendica a chleachdadh airson iompachadh fèin-obrachail.
    " -#: src/Module/Admin/Summary.php:73 +#: src/Module/Admin/Summary.php:74 #, 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 "" +msgstr "Tha an table_definition_cache agad ro ìosal (%d). Dh’fhaoidte gun adhbharaich seo mearachd “Prepared statement needs to be re-prepared” an stòir-dhàta. Suidhich air %d e air a char as lugha. Seall an-seo airson barrachd fiosrachaidh.
    " -#: src/Module/Admin/Summary.php:83 +#: src/Module/Admin/Summary.php:85 #, 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 "" +msgstr "Tha tionndadh ùr dhe Friendica ri fhaighinn airson luchdadh a-nuas. ’S e %1$s a tha san tionndadh làithreach agad, ’S e %2$s a tha san tionndadh upstream" -#: src/Module/Admin/Summary.php:92 +#: src/Module/Admin/Summary.php:94 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 "" +msgstr "Dh’fhàillig le ùrachadh an stòir-dhàta. Ruith “php bin/console.php dbstructure update” on loidhne-àithne is thoir sùil air na mearachdan a nochdas ma dh’fhaoidte." -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:98 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 "" +msgstr "Dh’fhàillig leis an ùrachadh mu dheireadh. Ruith “php bin/console.php dbstructure update” on loidhne-àithne is thoir sùil air na mearachdan a nochdas ma dh’fhaoidte. (Faodaidh cuid dhe na mearachdan nochdadh ann am faidhle an loga.)" -#: src/Module/Admin/Summary.php:101 +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "Tha innteart system.url a dhìth. Seo suidheachadh air ìre ìosal agus dh’fhaoidte gun adhbharaich seo giùlan air nach robh dùil. Cuir innteart dligheach ris cho luath ’s a ghabhas san fhaidhle config no air an loidhne-àithne!" + +#: src/Module/Admin/Summary.php:107 msgid "The worker was never executed. Please check your database structure!" -msgstr "" +msgstr "Cha deach an obair seo a dhèanamh a-riamh. Thoir sùil air structar an stòir-dhàta agad!" -#: src/Module/Admin/Summary.php:103 +#: src/Module/Admin/Summary.php:109 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." -msgstr "" +msgstr "Chaidh a obair a dhèanamh aig %s UTC an turas mu dheireadh. Tha seo nas fhaide air ais na uair. Thoir sùil air roghainnean a’ crontab agad." -#: src/Module/Admin/Summary.php:108 +#: src/Module/Admin/Summary.php:114 #, 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 "" +msgstr "Tha rèiteachadh Friendica ’ga stòradh ann an config/local.config.php a-nis, dèan lethbhreac dhe config/local-sample.config.php is gluais an rèiteachadh agad o .htconfig.php. Faic duilleag taic an rèiteachaidh airson cuideachadh leis a’ ghluasad." -#: src/Module/Admin/Summary.php:112 +#: src/Module/Admin/Summary.php:118 #, 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 "" +msgstr "Tha rèiteachadh Friendica ’ga stòradh ann an config/local.config.php a-nis, dèan lethbhreac dhe config/local-sample.config.php is gluais an rèiteachadh agad o config/local.ini.php. Faic duilleag taic an rèiteachaidh airson cuideachadh leis a’ ghluasad." -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:124 #, 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 "" +msgstr "Cha ghabh %s ruigsinn on t-siostam agad. Seo droch-dhuilgheadas leis an rèiteachadh nach leig leis an fhrithealaiche conaltradh le frithealaichean eile. Faic duilleag an stàlaidh airson cuideachadh." -#: src/Module/Admin/Summary.php:136 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:150 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:166 +#: src/Module/Admin/Summary.php:148 #, 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 "" +msgstr "Chaidh an system.basepath aig Friendica ùrachadh o “%s” gu “%s”. Thoir air falbh system.basepath on stòr-dàta agad ach nach biodh diofar eatorra." -#: src/Module/Admin/Summary.php:174 +#: src/Module/Admin/Summary.php:156 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." -msgstr "" +msgstr "Tha an system.basepath làithreach “%s” aig Friendica ceàrr is chan eil am faidhle rèiteachaidh “%s” ’ga chleachdadh." -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:164 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." -msgstr "" +msgstr "Chan eil an system.basepath làithreach “%s” co-ionnan ris an fhaidhle rèiteachaidh “%s”. Càirich an rèiteachadh agad." -#: src/Module/Admin/Summary.php:189 -msgid "Normal Account" -msgstr "" - -#: src/Module/Admin/Summary.php:190 -msgid "Automatic Follower Account" -msgstr "" - -#: src/Module/Admin/Summary.php:191 -msgid "Public Forum Account" -msgstr "" - -#: src/Module/Admin/Summary.php:192 -msgid "Automatic Friend Account" -msgstr "" - -#: src/Module/Admin/Summary.php:193 -msgid "Blog Account" -msgstr "" - -#: src/Module/Admin/Summary.php:194 -msgid "Private Forum Account" -msgstr "" - -#: src/Module/Admin/Summary.php:214 +#: src/Module/Admin/Summary.php:175 msgid "Message queues" -msgstr "" +msgstr "Ciuthan theachdaireachdan" -#: src/Module/Admin/Summary.php:220 +#: src/Module/Admin/Summary.php:181 msgid "Server Settings" -msgstr "" +msgstr "Roghainnean an fhrithealaiche" -#: src/Module/Admin/Summary.php:236 -msgid "Registered users" -msgstr "" - -#: src/Module/Admin/Summary.php:238 -msgid "Pending registrations" -msgstr "" - -#: src/Module/Admin/Summary.php:239 +#: src/Module/Admin/Summary.php:199 msgid "Version" -msgstr "" +msgstr "Tionndadh" -#: src/Module/Admin/Summary.php:243 +#: src/Module/Admin/Summary.php:203 msgid "Active addons" -msgstr "" +msgstr "Tuilleadain ghnìomhach" #: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 #, php-format msgid "Theme %s disabled." -msgstr "" +msgstr "Chaidh an t-ùrlar %s a chur à comas." #: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 #, php-format msgid "Theme %s successfully enabled." -msgstr "" +msgstr "Chaidh an t-ùrlar %s a chur an comas." #: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 #, php-format msgid "Theme %s failed to install." -msgstr "" +msgstr "Dh’fhàillig le stàladh an ùrlair %s." #: src/Module/Admin/Themes/Details.php:83 msgid "Screenshot" -msgstr "" +msgstr "Glacadh-sgrìn" #: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:97 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 msgid "Themes" -msgstr "" +msgstr "Ùrlaran" #: src/Module/Admin/Themes/Embed.php:80 msgid "Unknown theme." -msgstr "" +msgstr "Ùrlar nach aithne dhuinn." #: src/Module/Admin/Themes/Index.php:51 msgid "Themes reloaded" -msgstr "" +msgstr "Chaidh na h-ùrlaran ath-luchdadh" #: src/Module/Admin/Themes/Index.php:114 msgid "Reload active themes" -msgstr "" +msgstr "Ath-luchdaich na h-ùrlaran gnìomhach" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:118 #, php-format msgid "No themes found on the system. They should be placed in %1$s" -msgstr "" +msgstr "Cha deach ùrlar a lorg air an t-siostam. Bu chòir dhut an cur am broinn %1$s" + +#: src/Module/Admin/Themes/Index.php:119 +msgid "[Experimental]" +msgstr "[Deuchainneil]" #: src/Module/Admin/Themes/Index.php:120 -msgid "[Experimental]" -msgstr "" - -#: src/Module/Admin/Themes/Index.php:121 msgid "[Unsupported]" -msgstr "" +msgstr "[Chan eil taic ris]" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 msgid "Display Terms of Service" -msgstr "" +msgstr "Seall teirmichean na seirbheise" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 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 "" +msgstr "Cuir an comas duilleag teirmichean na seirbheise. Ma tha seo an comas, thèid ceangal dha na teirmichean a chur ris an fhoirm clàraidh is ri duilleag an fhiosrachaidh choitchinn." -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 msgid "Display Privacy Statement" -msgstr "" +msgstr "Seall an aithris prìobhaideachd" -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " "according e.g. to EU-GDPR." -msgstr "" +msgstr "Seall fiosrachadh a thaobh an fhiosrachaidh riatanaich ach an obraich an nòd, can a-rèir EU-GDPR." -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:81 msgid "Privacy Statement Preview" -msgstr "" +msgstr "Ro-shealladh air an aithris prìobhaideachd" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "The Terms of Service" -msgstr "" +msgstr "Teirmichean na seirbheise" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." -msgstr "" +msgstr "Cuir a-steach teirmichean seirbheis an nòid agad an-seo. ’S urrainn dhut BBCode a chleachdadh. Bu chòir dha cheann-sgrìobhaidhean nan earrannan a bhith ’nan [h2] is nas ìsle." -#: src/Module/Admin/Users/Active.php:45 src/Module/Admin/Users/Index.php:45 +#: src/Module/Admin/Tos.php:84 +msgid "The rules" +msgstr "Na riaghailtean" + +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." +msgstr "Cuir a-steach riaghailtean an t-siostaim agad an-seo. Riochdaichidh gach loidhne riaghailt." + +#: src/Module/Api/ApiResponse.php:279 #, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "API endpoint %s %s is not implemented but might be in the future." +msgstr "Cha deach puing-dheiridh %s %s an API prògramachadh ach ’s dòcha gun dèid san àm ri teachd." -#: 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 "" - -#: 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] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: 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 "" - -#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103 -#, php-format -msgid "User \"%s\" blocked" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: 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 "" - -#: src/Module/Admin/Users/Active.php:137 -msgid "Active Accounts" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: 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 "" - -#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161 -msgid "Create a new user" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: 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] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: src/Module/Admin/Users/Blocked.php:96 src/Module/Admin/Users/Index.php:109 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "" - -#: src/Module/Admin/Users/Blocked.php:138 -msgid "Blocked Users" -msgstr "" - -#: src/Module/Admin/Users/Create.php:62 -msgid "New User" -msgstr "" - -#: src/Module/Admin/Users/Create.php:63 -msgid "Add User" -msgstr "" - -#: src/Module/Admin/Users/Create.php:71 -msgid "Name of the new user." -msgstr "" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname" -msgstr "" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname of the new user." -msgstr "" - -#: src/Module/Admin/Users/Create.php:73 -msgid "Email address of the new user." -msgstr "" - -#: src/Module/Admin/Users/Deleted.php:86 -msgid "Users awaiting permanent deletion" -msgstr "" - -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:162 -msgid "Permanent deletion" -msgstr "" - -#: src/Module/Admin/Users/Index.php:150 src/Module/Admin/Users/Index.php:160 -#: src/Module/BaseAdmin.php:95 -msgid "Users" -msgstr "" - -#: src/Module/Admin/Users/Index.php:152 -msgid "User waiting for permanent deletion" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:48 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: src/Module/Admin/Users/Pending.php:55 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: src/Module/Admin/Users/Pending.php:81 -msgid "Account approved." -msgstr "" - -#: src/Module/Admin/Users/Pending.php:87 -msgid "Registration revoked" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:102 -msgid "User registrations awaiting review" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:104 -msgid "Request date" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:105 -msgid "No registrations." -msgstr "" - -#: src/Module/Admin/Users/Pending.php:106 -msgid "Note from the user" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:108 -msgid "Deny" -msgstr "" - -#: src/Module/Api/ApiResponse.php:272 -#, php-format -msgid "API endpoint %s %s is not implemented" -msgstr "" - -#: src/Module/Api/ApiResponse.php:273 -msgid "" -"The API endpoint is currently not implemented but might be in the future." -msgstr "" - -#: src/Module/Api/Mastodon/Apps.php:63 +#: src/Module/Api/Mastodon/Apps.php:73 msgid "Missing parameters" -msgstr "" +msgstr "Paramadairean a dhìth" #: src/Module/Api/Mastodon/Statuses/Bookmark.php:51 msgid "Only starting posts can be bookmarked" -msgstr "" +msgstr "Cha ghabh ach postaichean-toisich a chur ris na comharran-lìn" -#: src/Module/Api/Mastodon/Statuses/Mute.php:50 +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 msgid "Only starting posts can be muted" -msgstr "" +msgstr "Cha ghabh ach postaichean-toisich a mhùchadh" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:56 #, php-format msgid "Posts from %s can't be shared" msgstr "Cha ghabh postaichean o %s a co-roinneadh" #: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 msgid "Only starting posts can be unbookmarked" -msgstr "" +msgstr "Cha ghabh ach postaichean-toisich a thoirt air falbh o na comharran-lìn" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:50 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 msgid "Only starting posts can be unmuted" -msgstr "" +msgstr "Cha ghabh ach postaichean-toisich a dhì-mhùchadh" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:62 #, php-format msgid "Posts from %s can't be unshared" msgstr "Cha ghabh sgur de cho-roinneadh phostaichean o %s" #: src/Module/Api/Twitter/ContactEndpoint.php:66 msgid "Contact not found" -msgstr "" +msgstr "Cha deach an neach-aithne a lorg" -#: src/Module/Apps.php:54 +#: src/Module/Apps.php:62 msgid "No installed applications." -msgstr "" +msgstr "Cha deach aplacaid a stàladh." -#: src/Module/Apps.php:59 +#: src/Module/Apps.php:67 msgid "Applications" -msgstr "" +msgstr "Aplacaidean" -#: src/Module/Attach.php:50 src/Module/Attach.php:62 +#: src/Module/Attach.php:49 src/Module/Attach.php:61 msgid "Item was not found." -msgstr "" +msgstr "Cha deach an nì a lorg." -#: src/Module/BaseAdmin.php:57 src/Module/BaseAdmin.php:61 +#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 msgid "Please login to continue." -msgstr "" +msgstr "Clàraich a-steach airson leantainn air adhart." -#: src/Module/BaseAdmin.php:66 +#: src/Module/BaseAdmin.php:63 msgid "You don't have access to administration pages." -msgstr "" +msgstr "Chan eil inntrigeadh agad air duilleagan na rianachd." -#: src/Module/BaseAdmin.php:70 +#: src/Module/BaseAdmin.php:67 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." -msgstr "" +msgstr "Chan urrainn dhan cunntas ’ga fho-stiùireadh duilleagan na rianachd inntrigeadh. Clàraich a-steach leis a’ phrìomh-chunntas." -#: src/Module/BaseAdmin.php:89 +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 msgid "Overview" -msgstr "" +msgstr "Foir-shealladh" -#: src/Module/BaseAdmin.php:92 +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 msgid "Configuration" -msgstr "" +msgstr "Rèiteachadh" -#: src/Module/BaseAdmin.php:98 src/Module/BaseSettings.php:63 +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 msgid "Additional features" -msgstr "" +msgstr "Gleusan a bharrachd" -#: src/Module/BaseAdmin.php:101 +#: src/Module/BaseAdmin.php:97 msgid "Database" -msgstr "" +msgstr "Stòr-dàta" -#: src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:98 msgid "DB updates" -msgstr "" +msgstr "Ùrachaidhean an stòir-dhàta" -#: src/Module/BaseAdmin.php:103 +#: src/Module/BaseAdmin.php:99 msgid "Inspect Deferred Workers" msgstr "Sgrùd na h-obraichean dàilichte" -#: src/Module/BaseAdmin.php:104 +#: src/Module/BaseAdmin.php:100 msgid "Inspect worker Queue" -msgstr "" +msgstr "Sgrùd ciutha nan obraichean" -#: src/Module/BaseAdmin.php:106 -msgid "Tools" -msgstr "" +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +msgid "Diagnostics" +msgstr "Diagnosachd" #: src/Module/BaseAdmin.php:107 -msgid "Contact Blocklist" -msgstr "" +msgid "PHP Info" +msgstr "Fiosrachadh PHP" #: src/Module/BaseAdmin.php:108 -msgid "Server Blocklist" -msgstr "" - -#: src/Module/BaseAdmin.php:115 -msgid "Diagnostics" -msgstr "" - -#: src/Module/BaseAdmin.php:116 -msgid "PHP Info" -msgstr "" - -#: src/Module/BaseAdmin.php:117 msgid "probe address" -msgstr "" +msgstr "sgrùd an seòladh" -#: src/Module/BaseAdmin.php:118 +#: src/Module/BaseAdmin.php:109 msgid "check webfinger" -msgstr "" +msgstr "thoir sùil air webfinger" + +#: src/Module/BaseAdmin.php:110 +msgid "Babel" +msgstr "Babel" + +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 +msgid "ActivityPub Conversion" +msgstr "Iompachadh ActivityPub" #: src/Module/BaseAdmin.php:120 -msgid "Babel" -msgstr "" - -#: src/Module/BaseAdmin.php:121 src/Module/Debug/ActivityPubConversion.php:142 -msgid "ActivityPub Conversion" -msgstr "" - -#: src/Module/BaseAdmin.php:130 msgid "Addon Features" -msgstr "" +msgstr "Gleusan tuilleadain" -#: src/Module/BaseAdmin.php:131 +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 msgid "User registrations waiting for confirmation" -msgstr "" +msgstr "Clàraichean chleachdaichean a’ feitheamh air dearbhadh" -#: src/Module/BaseApi.php:241 src/Module/BaseApi.php:257 -#: src/Module/BaseApi.php:273 +#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467 +#: src/Module/BaseApi.php:483 msgid "Too Many Requests" -msgstr "" +msgstr "Cus iarrtasan" -#: src/Module/BaseApi.php:242 +#: src/Module/BaseApi.php:452 #, 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." @@ -6782,7 +5693,7 @@ msgstr[1] "Ràinig thu a’ chrìoch de %d phost gach latha. Chaidh am post a dh msgstr[2] "Ràinig thu a’ chrìoch de %d postaichean gach latha. Chaidh am post a dhiùltadh." msgstr[3] "Ràinig thu a’ chrìoch de %d post gach latha. Chaidh am post a dhiùltadh." -#: src/Module/BaseApi.php:258 +#: src/Module/BaseApi.php:468 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6792,1338 +5703,1719 @@ msgstr[1] "Ràinig thu a’ chrìoch de %d phost gach seachdain. Chaidh am post msgstr[2] "Ràinig thu a’ chrìoch de %d postaichean gach seachdain. Chaidh am post a dhiùltadh." msgstr[3] "Ràinig thu a’ chrìoch de %d post gach seachdain. Chaidh am post a dhiùltadh." -#: src/Module/BaseApi.php:274 +#: src/Module/BaseApi.php:484 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "Ràinig thu a’ chrìoch de %d post gach mìos. Chaidh am post a dhiùltadh." +msgid_plural "" +"Monthly posting limit of %d posts reached. The post was rejected." +msgstr[0] "Ràinig thu a’ chrìoch de %d phost gach mìos. Chaidh am post a dhiùltadh." +msgstr[1] "Ràinig thu a’ chrìoch de %d phost gach mìos. Chaidh am post a dhiùltadh." +msgstr[2] "Ràinig thu a’ chrìoch de %d postaichean gach mìos. Chaidh am post a dhiùltadh." +msgstr[3] "Ràinig thu a’ chrìoch de %d post gach mìos. Chaidh am post a dhiùltadh." -#: src/Module/BaseProfile.php:51 src/Module/Contact.php:460 +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "" + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "" + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Cleachdaichean" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "Innealan" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "Liosta-bhacaidh an luchd-aithne" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "Liosta-bhacaidh an fhrithealaiche" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "Sguab às an nì" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "Tùs an nì" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 msgid "Profile Details" -msgstr "" +msgstr "Fiosrachadh na pròifil" -#: src/Module/BaseProfile.php:109 +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "Còmhraidhean air an tòiseachadh" + +#: src/Module/BaseProfile.php:111 msgid "Only You Can See This" -msgstr "" +msgstr "Chan fhaic ach thu fhèin seo" -#: src/Module/BaseProfile.php:114 src/Module/Profile/Schedule.php:82 +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 msgid "Scheduled Posts" -msgstr "" +msgstr "Postaichean air an sgeideal" -#: src/Module/BaseProfile.php:117 +#: src/Module/BaseProfile.php:119 msgid "Posts that are scheduled for publishing" -msgstr "" +msgstr "Postaichean a tha air an sgeideal airson foillseachadh" -#: src/Module/BaseProfile.php:136 src/Module/BaseProfile.php:139 +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 msgid "Tips for New Members" -msgstr "" +msgstr "Gliocasan dha na buill ùra" -#: src/Module/BaseSearch.php:69 +#: src/Module/BaseSearch.php:71 #, php-format msgid "People Search - %s" -msgstr "" +msgstr "Lorg daoine – %s" -#: src/Module/BaseSearch.php:79 +#: src/Module/BaseSearch.php:75 #, php-format -msgid "Forum Search - %s" -msgstr "" +msgid "Group Search - %s" +msgstr "Lorg sna buidhnean – %s" -#: src/Module/BaseSettings.php:41 +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "Gun mhaids" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "Chaidh %d toradh a chriathradh air falbh on a tha an nòd agad a’ bacadh na h-àrainne air a bheil e clàraichte. Chì thu liosta nan àrainnean a tha ’gam bacadh leis an nòd agad air an duilleag “Mu dheidhinn”." +msgstr[1] "Chaidh %d thoradh a chriathradh air falbh on a tha an nòd agad a’ bacadh na h-àrainne air a bheil iad clàraichte. Chì thu liosta nan àrainnean a tha ’gam bacadh leis an nòd agad air an duilleag “Mu dheidhinn”." +msgstr[2] "Chaidh %d toraidhean a chriathradh air falbh on a tha an nòd agad a’ bacadh na h-àrainne air a bheil iad clàraichte. Chì thu liosta nan àrainnean a tha ’gam bacadh leis an nòd agad air an duilleag “Mu dheidhinn”." +msgstr[3] "Chaidh %d toradh a chriathradh air falbh on a tha an nòd agad a’ bacadh na h-àrainne air a bheil iad clàraichte. Chì thu liosta nan àrainnean a tha ’gam bacadh leis an nòd agad air an duilleag “Mu dheidhinn”." + +#: src/Module/BaseSettings.php:78 msgid "Account" -msgstr "" +msgstr "Cunntas" -#: src/Module/BaseSettings.php:48 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 msgid "Two-factor authentication" -msgstr "" +msgstr "Dearbhadh dà-cheumnach" -#: src/Module/BaseSettings.php:71 +#: src/Module/BaseSettings.php:118 msgid "Display" -msgstr "" +msgstr "Sealladh" -#: src/Module/BaseSettings.php:92 src/Module/Settings/Delegation.php:171 +#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "Lìonraidhean sòisealta" + +#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172 msgid "Manage Accounts" -msgstr "" +msgstr "Stiùir na cunntasan" -#: src/Module/BaseSettings.php:99 +#: src/Module/BaseSettings.php:146 msgid "Connected apps" +msgstr "Aplacaidean ceangailte" + +#: src/Module/BaseSettings.php:153 +msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:106 src/Module/Settings/UserExport.php:76 +#: src/Module/BaseSettings.php:160 src/Module/Settings/UserExport.php:98 msgid "Export personal data" -msgstr "" +msgstr "Às-phortaich an dàta pearsanta" -#: src/Module/BaseSettings.php:113 +#: src/Module/BaseSettings.php:167 msgid "Remove account" -msgstr "" +msgstr "Thoir air falbh an cunntas" #: src/Module/Bookmarklet.php:54 msgid "This page is missing a url parameter." -msgstr "" +msgstr "Tha paramadair URL a dhìth air an duilleag seo." #: src/Module/Bookmarklet.php:66 msgid "The post was created" -msgstr "" +msgstr "Chaidh am post a chruthachadh" -#: src/Module/Contact.php:88 +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "Iarrtas mì-dhligheach" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "Tha ID an tachartais a dhìth." + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "Cha deach leinn an tachartas a thoirt air falbh" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "Chan urrainn do thachartas crìochnachadh mus tòisich e." + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "Tha feum air tiotal is àm tòiseachaidh an tachartais." + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "Tha feum air àm tòiseachaidh is tiotal." + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "Tòisichidh an tachartas:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Riatanach" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "Chan eil fhios dè an t-àm crìochnachaidh no chan eil e iomchaidh" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "Thig an tachartas gu crìoch:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "Tiotal (chan eil BBCode ceadaichte)" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "Tuairisgeul (tha BBCode ceadaichte)" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "Ionad (chan eil BBCode ceadaichte)" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Co-roinn an tachartas seo" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "Bunasach" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "Chan eil taic ri fòrmat a’ mhìosachain seo" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "Cha deach dàta a ghabhas às-phortadh a lorg" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "mìosachan" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Tachartasan" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "Seall" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Cruthaich tachartas ùr" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:248 +msgid "list" +msgstr "liosta" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "Cha b’ urrainn dhuinn an cearcall a chruthachadh." + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "Cha deach an cearcall a lorg." + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "Cha deach ainm a’ chearcaill atharrachadh." + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "Cearcall nach aithne dhuinn." + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "Cha deach an neach-aithne a lorg." + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "Neach-aithne mì-dhligheach." + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "Chaidh an neach-aithne a sguabadh às." + +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "Cha deach leinn an neach-aithne a chur ris a’ chearcall." + +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "Chaidh an neach-aithne a chur ris a’ chearcall." + +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "Cha deach leinn an neach-aithne a thoirt air falbh on chearcall." + +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "Chaidh an neach-aithne a thoirt air falbh on chearcall." + +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "Droch-iarrtas." + +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "Sàbhail an cearcall" + +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "Criathrag" + +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "Cruthaich cearcall luchd-aithne/charaidean." + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "Cha deach leinn an cearcall a thoirt air falbh." + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "Sguab às an cearcall" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "Deasaich ainm a’ chearcaill" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "Buill" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "Tha an cearcall falamh" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "Thoir air falbh an neach-aithne on chearcall" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "Briog air neach-aithne gus a chur ris no a thoirt air falbh." + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "Cuir an neach-aithne ris a’ chearcall" + +#: src/Module/Contact.php:97 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Chaidh %d neach-aithne a dheasachadh." +msgstr[1] "Chaidh %d luchd-aithne a dheasachadh." +msgstr[2] "Chaidh %d luchd-aithne a dheasachadh." +msgstr[3] "Chaidh %d luchd-aithne a dheasachadh." -#: src/Module/Contact.php:309 +#: src/Module/Contact.php:348 msgid "Show all contacts" -msgstr "" +msgstr "Seall an luchd-aithne gu lèir" -#: src/Module/Contact.php:317 +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "Ri dhèiligeadh" + +#: src/Module/Contact.php:356 msgid "Only show pending contacts" -msgstr "" +msgstr "Na seall ach an luchd-aithne ri dhèiligeadh" -#: src/Module/Contact.php:325 +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "’Ga bhacadh" + +#: src/Module/Contact.php:364 msgid "Only show blocked contacts" -msgstr "" +msgstr "Na seall ach an luchd-aithne bacte" -#: src/Module/Contact.php:330 src/Module/Contact.php:377 -#: src/Object/Post.php:339 +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:368 msgid "Ignored" -msgstr "" +msgstr "’Ga leigeil seachad" -#: src/Module/Contact.php:333 +#: src/Module/Contact.php:372 msgid "Only show ignored contacts" -msgstr "" +msgstr "Na seall ach an luchd-aithne ’gan leigeil seachad" -#: src/Module/Contact.php:338 src/Module/Contact.php:378 +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "’Ga cho-theannachadh" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "Na seall ach an luchd-aithne co-theannaichte" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 msgid "Archived" -msgstr "" +msgstr "San tasg-lann" -#: src/Module/Contact.php:341 +#: src/Module/Contact.php:388 msgid "Only show archived contacts" -msgstr "" +msgstr "Na seall ach an luchd-aithne san tasg-lann" -#: src/Module/Contact.php:346 src/Module/Contact.php:376 +#: src/Module/Contact.php:393 src/Module/Contact.php:438 msgid "Hidden" -msgstr "" +msgstr "Falaichte" -#: src/Module/Contact.php:349 +#: src/Module/Contact.php:396 msgid "Only show hidden contacts" -msgstr "" +msgstr "Na seall ach an luchd-aithne falaichte" -#: src/Module/Contact.php:357 -msgid "Organize your contact groups" -msgstr "" +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "Cuir rian air cearcallan an luchd-aithne agad" -#: src/Module/Contact.php:389 +#: src/Module/Contact.php:459 msgid "Search your contacts" -msgstr "" +msgstr "Lorg san luchd-aithne agad" -#: src/Module/Contact.php:390 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 #, php-format msgid "Results for: %s" -msgstr "" - -#: src/Module/Contact.php:397 -msgid "Update" -msgstr "" - -#: src/Module/Contact.php:399 src/Module/Contact/Profile.php:349 -#: src/Module/Contact/Profile.php:457 -msgid "Unignore" -msgstr "" - -#: src/Module/Contact.php:401 -msgid "Batch Actions" -msgstr "" - -#: src/Module/Contact.php:436 -msgid "Conversations started by this contact" -msgstr "" - -#: src/Module/Contact.php:441 -msgid "Posts and Comments" -msgstr "" - -#: src/Module/Contact.php:452 -msgid "Posts containing media objects" -msgstr "" +msgstr "Toraidhean airson: %s" #: src/Module/Contact.php:467 -msgid "View all known contacts" -msgstr "" +msgid "Update" +msgstr "Ùraich" -#: src/Module/Contact.php:477 -msgid "Advanced Contact Settings" -msgstr "" +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Dì-bhac" -#: src/Module/Contact.php:511 -msgid "Mutual Friendship" -msgstr "" +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 +msgid "Unignore" +msgstr "Na leig seachad tuilleadh" + +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "Na co-theannaich tuilleadh" + +#: src/Module/Contact.php:472 +msgid "Batch Actions" +msgstr "Gnìomhan ’nan grunnan" #: src/Module/Contact.php:515 -msgid "is a fan of yours" -msgstr "" +msgid "Conversations started by this contact" +msgstr "Na còmhraidhean a thòisich an neach-aithne seo" -#: src/Module/Contact.php:519 -msgid "you are a fan of" -msgstr "" +#: src/Module/Contact.php:520 +msgid "Posts and Comments" +msgstr "Postaichean ’s beachdan" -#: src/Module/Contact.php:537 -msgid "Pending outgoing contact request" -msgstr "" +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "Postaichean ’s freagairtean fa leth" + +#: src/Module/Contact.php:531 +msgid "Posts containing media objects" +msgstr "Postaichean sa bheil nithean meadhain" #: src/Module/Contact.php:539 -msgid "Pending incoming contact request" -msgstr "" +msgid "View all known contacts" +msgstr "Seall a h-uile neach-aithne as aithne dhut" -#: src/Module/Contact.php:552 src/Module/Contact/Profile.php:334 +#: src/Module/Contact.php:550 +msgid "Advanced Contact Settings" +msgstr "Roghainnean adhartach an luchd-aithne" + +#: src/Module/Contact.php:586 +msgid "Mutual Friendship" +msgstr "Co-dhàimh" + +#: src/Module/Contact.php:590 +msgid "is a fan of yours" +msgstr "dealasach ort" + +#: src/Module/Contact.php:594 +msgid "you are a fan of" +msgstr "tha thu dealasach air" + +#: src/Module/Contact.php:612 +msgid "Pending outgoing contact request" +msgstr "Iarrtas neach-aithne a-mach gun dèiligeadh" + +#: src/Module/Contact.php:614 +msgid "Pending incoming contact request" +msgstr "Iarrtas neach-aithne a-steach ri dhèiligeadh" + +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 #, php-format msgid "Visit %s's profile [%s]" -msgstr "" +msgstr "Tadhail air a’ phròifil aig %s [%s]" #: src/Module/Contact/Advanced.php:99 msgid "Contact update failed." -msgstr "" +msgstr "Dh’fhàillig ùrachadh an neach-aithne." #: src/Module/Contact/Advanced.php:130 msgid "Return to contact editor" -msgstr "" +msgstr "Air ais gu deasaiche an neach-aithne" + +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Ainm" #: src/Module/Contact/Advanced.php:135 msgid "Account Nickname" -msgstr "" +msgstr "Far-ainm a’ chunntais" #: src/Module/Contact/Advanced.php:136 msgid "Account URL" -msgstr "" +msgstr "URL a’ chunntais" #: src/Module/Contact/Advanced.php:137 msgid "Poll/Feed URL" -msgstr "" +msgstr "URL a’ chunntais-bheachd/an inbhir" #: src/Module/Contact/Advanced.php:138 msgid "New photo from this URL" -msgstr "" +msgstr "Dealbh ùr on URL seo" -#: src/Module/Contact/Contacts.php:50 src/Module/Conversation/Network.php:187 -#: src/Module/Group.php:103 -msgid "Invalid contact." -msgstr "" - -#: src/Module/Contact/Contacts.php:73 +#: src/Module/Contact/Contacts.php:89 msgid "No known contacts." -msgstr "" +msgstr "Chan eil luchd-aithne ann." -#: src/Module/Contact/Contacts.php:87 src/Module/Profile/Common.php:98 +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 msgid "No common contacts." -msgstr "" +msgstr "Chan eil neach-aithne an cumantas ann." -#: src/Module/Contact/Contacts.php:99 src/Module/Profile/Contacts.php:96 +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Neach-leantainn (%s)" +msgstr[1] "Luchd-leantainn (%s)" +msgstr[2] "Luchd-leantainn (%s)" +msgstr[3] "Luchd-leantainn (%s)" -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Contacts.php:99 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "A’ leantainn (%s)" +msgstr[1] "A’ leantainn (%s)" +msgstr[2] "A’ leantainn (%s)" +msgstr[3] "A’ leantainn (%s)" -#: src/Module/Contact/Contacts.php:107 src/Module/Profile/Contacts.php:102 +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Co-dhàimh (%s)" +msgstr[1] "Co-dhàimhean (%s)" +msgstr[2] "Co-dhàimhean (%s)" +msgstr[3] "Co-dhàimhean (%s)" -#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:104 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 #, php-format msgid "These contacts both follow and are followed by %s." -msgstr "" +msgstr "Tha an luchd-aithne seo an dà chuid a’ leantainn ’s ’gan leantainn le %s." -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Common.php:86 +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Neach-aithne an cumantas (%s)" +msgstr[1] "Luchd-aithne an cumantas (%s)" +msgstr[2] "Luchd-aithne an cumantas (%s)" +msgstr[3] "Luchd-aithne an cumantas (%s)" -#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:88 +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." -msgstr "Ghabh thu fhèin agus %s gnìomh gu poblach leis an luchd-aithne seo (leantainn, beachd air no gur toigh leibh post poblach)." +msgstr "Rinn thu fhèin agus %s co-luadar gu poblach leis an luchd-aithne seo (leantainn, beachd air no gur toigh leibh post poblach)." -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:110 +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Neach-aithne (%s)" +msgstr[1] "Luchd-aithne (%s)" +msgstr[2] "Luchd-aithne (%s)" +msgstr[3] "Luchd-aithne (%s)" -#: src/Module/Contact/Poke.php:135 -msgid "Error while sending poke, please retry." -msgstr "" +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:165 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Chaidh inntrigeadh a dhiùltadh." -#: src/Module/Contact/Poke.php:148 src/Module/Search/Acl.php:55 -msgid "You must be logged in to use this module." -msgstr "" +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Cuir an t-iarrtas a-null" -#: src/Module/Contact/Poke.php:171 -msgid "Poke/Prod" -msgstr "" +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "Chuir thu an neach-aithne seo ris mu thràth." -#: src/Module/Contact/Poke.php:172 -msgid "poke, prod or do other things to somebody" -msgstr "" +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Cha do mhothaich sinn do sheòrsa an lìonraidh. Cha b’ urrainn dhuinn an neach-aithne a chur ris." -#: src/Module/Contact/Poke.php:174 -msgid "Choose what you wish to do to recipient" -msgstr "" +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Chan eil taic ri diaspora* an comas. Cha b’ urrainn dhuinn an neach-aithne a chur ris." -#: src/Module/Contact/Poke.php:175 -msgid "Make this post private" -msgstr "" +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "Chan eil taic ri OStatus an comas. Cha b’ urrainn dhuinn an neach-aithne a chur ris." -#: src/Module/Contact/Profile.php:127 +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Freagair seo:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "Seòladh do dhearbh-aithne:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "URL na pròifile" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Tagaichean:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "Is aithne dha %s thu" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Cuir nòta pearsanta ris:" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" +msgstr "Postaichean ’s freagairtean" + +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "Cha b’ urrainn dhuinn an neach-aithne a chur ris." + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "Iarrtas mì-dhligheach." + +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "Chan eil faclan-luirg rim maidseadh ann. Cuir faclan-luirg ris a’ phròifil agad." + +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "Maidseadh na pròifile" + +#: src/Module/Contact/Profile.php:140 msgid "Failed to update contact record." msgstr "Cha b’ urrainn dhuinn clàr an neach-aithne ùrachadh." -#: src/Module/Contact/Profile.php:177 +#: src/Module/Contact/Profile.php:190 msgid "Contact has been unblocked" -msgstr "" +msgstr "Chaidh an neach-aithne a dhì-bhacadh" -#: src/Module/Contact/Profile.php:181 +#: src/Module/Contact/Profile.php:194 msgid "Contact has been blocked" -msgstr "" +msgstr "Chaidh an neach-aithne a bhacadh" -#: src/Module/Contact/Profile.php:193 +#: src/Module/Contact/Profile.php:206 msgid "Contact has been unignored" -msgstr "" +msgstr "Chan eil an neach-aithne ’ga leigeil seachad tuilleadh" -#: src/Module/Contact/Profile.php:197 +#: src/Module/Contact/Profile.php:210 msgid "Contact has been ignored" -msgstr "" +msgstr "Tha an neach-aithne ’ga leigeil seachad" -#: src/Module/Contact/Profile.php:229 +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" +msgstr "Chan eil an neach-aithne ’ga cho-theannachadh tuilleadh" + +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "Tha an neach-aithne ’ga cho-theannachadh" + +#: src/Module/Contact/Profile.php:254 #, php-format msgid "You are mutual friends with %s" -msgstr "" +msgstr "Tha co-dhàimh eadar thu fhèin is %s a-nis" -#: src/Module/Contact/Profile.php:230 +#: src/Module/Contact/Profile.php:255 #, php-format msgid "You are sharing with %s" -msgstr "" +msgstr "Tha thu a’ co-roinneadh le %s" -#: src/Module/Contact/Profile.php:231 +#: src/Module/Contact/Profile.php:256 #, php-format msgid "%s is sharing with you" -msgstr "" +msgstr "Tha %s a’ co-roinneadh leat" -#: src/Module/Contact/Profile.php:247 +#: src/Module/Contact/Profile.php:272 msgid "Private communications are not available for this contact." +msgstr "Chan eil conaltradh prìobhaideach ri fhaighinn dhan neach-aithne seo." + +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." msgstr "" -#: src/Module/Contact/Profile.php:249 +#: src/Module/Contact/Profile.php:285 msgid "Never" -msgstr "" +msgstr "Chan ann idir" -#: src/Module/Contact/Profile.php:252 +#: src/Module/Contact/Profile.php:288 msgid "(Update was not successful)" -msgstr "" +msgstr "(Cha deach leis an ùrachadh)" -#: src/Module/Contact/Profile.php:252 +#: src/Module/Contact/Profile.php:288 msgid "(Update was successful)" -msgstr "" +msgstr "(Chaidh leis an ùrachadh)" -#: src/Module/Contact/Profile.php:254 src/Module/Contact/Profile.php:420 +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 msgid "Suggest friends" -msgstr "" +msgstr "Mol caraidean" -#: src/Module/Contact/Profile.php:258 +#: src/Module/Contact/Profile.php:294 #, php-format msgid "Network type: %s" -msgstr "" +msgstr "Seòrsa an lìonraidh: %s" -#: src/Module/Contact/Profile.php:263 +#: src/Module/Contact/Profile.php:299 msgid "Communications lost with this contact!" -msgstr "" +msgstr "Chaidh an conaltradh leis an neach-aithne seo a chall!" -#: src/Module/Contact/Profile.php:269 +#: src/Module/Contact/Profile.php:305 msgid "Fetch further information for feeds" -msgstr "" +msgstr "Faigh barrachd fiosrachaidh dha na h-inbhirean" -#: src/Module/Contact/Profile.php:271 +#: src/Module/Contact/Profile.php:307 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 "Faigh fiosrachadh mar dhealbhan ro-sheallaidh, tiotal is tàladh o nì an inbhir. ’S urrainn dhut seo a chur an comas mur eil cus teacsa san inbhir. Thèid faclan-luirg a thogail o bhann-cinn nì an inbhir agus am postadh ’nan tagaichean hais." -#: src/Module/Contact/Profile.php:274 +#: src/Module/Contact/Profile.php:310 msgid "Fetch information" -msgstr "" +msgstr "Faigh am fiosrachadh" -#: src/Module/Contact/Profile.php:275 +#: src/Module/Contact/Profile.php:311 msgid "Fetch keywords" -msgstr "" +msgstr "Faigh na faclan-luirg" -#: src/Module/Contact/Profile.php:276 +#: src/Module/Contact/Profile.php:312 msgid "Fetch information and keywords" -msgstr "" +msgstr "Faigh am fiosrachadh ’s na faclan-luirg" -#: src/Module/Contact/Profile.php:286 src/Module/Contact/Profile.php:292 -#: src/Module/Contact/Profile.php:297 src/Module/Contact/Profile.php:303 +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 msgid "No mirroring" -msgstr "" +msgstr "Gun sgàthanachadh" -#: src/Module/Contact/Profile.php:287 -msgid "Mirror as forwarded posting" -msgstr "" - -#: src/Module/Contact/Profile.php:288 src/Module/Contact/Profile.php:298 -#: src/Module/Contact/Profile.php:304 +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 msgid "Mirror as my own posting" -msgstr "" +msgstr "Sgàthanaich ’na phost leam fhìn" -#: src/Module/Contact/Profile.php:293 src/Module/Contact/Profile.php:299 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 msgid "Native reshare" msgstr "Co-roinneadh tùsail" -#: src/Module/Contact/Profile.php:316 -msgid "Contact Information / Notes" -msgstr "" - -#: src/Module/Contact/Profile.php:317 -msgid "Contact Settings" -msgstr "" - -#: src/Module/Contact/Profile.php:325 -msgid "Contact" -msgstr "" - -#: src/Module/Contact/Profile.php:329 -msgid "Their personal note" -msgstr "" - -#: src/Module/Contact/Profile.php:331 -msgid "Edit contact notes" -msgstr "" - -#: src/Module/Contact/Profile.php:335 -msgid "Block/Unblock contact" -msgstr "" - -#: src/Module/Contact/Profile.php:336 -msgid "Ignore contact" -msgstr "" - -#: src/Module/Contact/Profile.php:337 -msgid "View conversations" -msgstr "" - -#: src/Module/Contact/Profile.php:342 -msgid "Last update:" -msgstr "" - -#: src/Module/Contact/Profile.php:344 -msgid "Update public posts" -msgstr "" - -#: src/Module/Contact/Profile.php:346 src/Module/Contact/Profile.php:430 -msgid "Update now" -msgstr "" - #: src/Module/Contact/Profile.php:353 -msgid "Currently blocked" -msgstr "" +msgid "Contact Information / Notes" +msgstr "Fiosrachadh an neach-aithne / Nòtaichean" #: src/Module/Contact/Profile.php:354 -msgid "Currently ignored" -msgstr "" +msgid "Contact Settings" +msgstr "Roghainnean an neach-aithne" -#: src/Module/Contact/Profile.php:355 -msgid "Currently archived" -msgstr "" +#: src/Module/Contact/Profile.php:362 +msgid "Contact" +msgstr "Neach-aithne" -#: src/Module/Contact/Profile.php:356 +#: src/Module/Contact/Profile.php:366 +msgid "Their personal note" +msgstr "An nòta pearsanta aca" + +#: src/Module/Contact/Profile.php:368 +msgid "Edit contact notes" +msgstr "Deasaich notaichean an neach-aithne" + +#: src/Module/Contact/Profile.php:372 +msgid "Block/Unblock contact" +msgstr "Bac/Dì-bhac an neach-aithne" + +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 +msgid "Ignore contact" +msgstr "Leig seachad an neach-aithne" + +#: src/Module/Contact/Profile.php:374 +msgid "View conversations" +msgstr "Seall na còmhraidhean" + +#: src/Module/Contact/Profile.php:379 +msgid "Last update:" +msgstr "An t-ùrachadh mu dheireadh:" + +#: src/Module/Contact/Profile.php:381 +msgid "Update public posts" +msgstr "Ùraich na postaichean poblach" + +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 +msgid "Update now" +msgstr "Ùraich an-dràsta" + +#: src/Module/Contact/Profile.php:385 msgid "Awaiting connection acknowledge" +msgstr "A’ feitheamh air aithneachadh a’ cheangail" + +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "’Ga bhacadh an-dràsta" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "’Ga leigeil seachad an-dràsta" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "’Ga cho-theannachadh an-dràsta" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "San tasg-lann an-dràsta" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" msgstr "" -#: src/Module/Contact/Profile.php:357 -#: src/Module/Notifications/Introductions.php:190 +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 msgid "Hide this contact from others" -msgstr "" +msgstr "Falaich an neach-aithne seo o chàch" -#: src/Module/Contact/Profile.php:357 +#: src/Module/Contact/Profile.php:394 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Dh’fhaoidte gum faicear freagairtean/gur toigh le daoine na postaichean poblach agad fhathast" -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:395 msgid "Notification for new posts" -msgstr "" +msgstr "Brathan air postaichean ùra" -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:395 msgid "Send a notification of every new post of this contact" -msgstr "" +msgstr "Cuir brath airson gach post ùr aig an neach-aithne seo" -#: src/Module/Contact/Profile.php:360 +#: src/Module/Contact/Profile.php:397 msgid "Keyword Deny List" -msgstr "" +msgstr "Liosta-dhiùltaidh nam facal-luirg" -#: src/Module/Contact/Profile.php:360 +#: src/Module/Contact/Profile.php:397 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" -msgstr "" +msgstr "Liosta sgaraichte le cromagan de dh’fhaclan-luirg nach dèid iompachadh gu tagaichean tais nuair a bhios “Faigh am fiosrachadh ’s na faclan-luirg” air a thaghadh" -#: src/Module/Contact/Profile.php:378 -#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "Actions" -msgstr "" +msgstr "Gnìomhan" -#: src/Module/Contact/Profile.php:386 +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "Staid" + +#: src/Module/Contact/Profile.php:423 msgid "Mirror postings from this contact" -msgstr "" +msgstr "Sgàthanaich na postaichean on neach-aithne seo" -#: src/Module/Contact/Profile.php:388 +#: src/Module/Contact/Profile.php:425 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." +msgstr "Cuir comharra remote_self ris an neach-aithne seo ach an ath-phostaich Friendica nithean ùra on neach-aithne seo." + +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" msgstr "" -#: src/Module/Contact/Profile.php:440 +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "" + +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "" + +#: src/Module/Contact/Profile.php:502 msgid "Refetch contact data" -msgstr "" +msgstr "Faigh dàta an neach-aithne a-rithist" -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:513 msgid "Toggle Blocked status" -msgstr "" +msgstr "Toglaich stad a’ bhacaidh" -#: src/Module/Contact/Profile.php:459 +#: src/Module/Contact/Profile.php:521 msgid "Toggle Ignored status" -msgstr "" +msgstr "Toglaich staid na leigeil seachad" -#: src/Module/Contact/Profile.php:466 src/Module/Contact/Revoke.php:105 +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" +msgstr "Toglaich staid a’ cho-theannachaidh" + +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 msgid "Revoke Follow" -msgstr "" +msgstr "Cùl-ghairm an leantainn" -#: src/Module/Contact/Profile.php:468 +#: src/Module/Contact/Profile.php:538 msgid "Revoke the follow from this contact" -msgstr "" +msgstr "Thoir air an neach-aithne seo nach lean iad ort tuilleadh" -#: src/Module/Contact/Revoke.php:62 +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "Droch-iarrtas." + +#: src/Module/Contact/Revoke.php:63 msgid "Unknown contact." -msgstr "" +msgstr "Neach-aithne nach aithne dhuinn." -#: src/Module/Contact/Revoke.php:72 src/Module/Group.php:112 -msgid "Contact is deleted." -msgstr "" - -#: src/Module/Contact/Revoke.php:76 +#: src/Module/Contact/Revoke.php:77 msgid "Contact is being deleted." -msgstr "" +msgstr "Tha an neach-aithne ’ga sguabadh às." -#: src/Module/Contact/Revoke.php:90 +#: src/Module/Contact/Revoke.php:91 msgid "Follow was successfully revoked." -msgstr "" +msgstr "Chaidh an leantainn a chùl-ghairm." -#: src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Revoke.php:107 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." -msgstr "" +msgstr "A bheil thu cinnteach nach eil thu ag iarraidh gun lean an neach-aithne seo ort tuilleadh? Cha ghabh seo a neo-dhèanamh is feumaidh iad leantainn ort a làimh às ùr." -#: src/Module/Contact/Revoke.php:107 -#: src/Module/Notifications/Introductions.php:142 -#: src/Module/OAuth/Acknowledge.php:53 src/Module/Register.php:130 -#: src/Module/Settings/TwoFactor/Trusted.php:124 +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "Yes" -msgstr "" +msgstr "Tha" -#: src/Module/Conversation/Community.php:68 -msgid "Local Community" -msgstr "" +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Chan eil moladh sam bith ann. Mas e làrach ùr a th’ ann, feuch ris a-rithist an ceann 24 uair a thìde." -#: src/Module/Conversation/Community.php:71 -msgid "Posts from local users on this server" -msgstr "" +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "Chan eil thu a’ leantainn air an neach-aithne seo." -#: src/Module/Conversation/Community.php:79 -msgid "Global Community" -msgstr "Coimhearsnachd cho-naisgte" +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "Cha chuir an lìonra agad taic ri sgur de leantainn air an àm seo." -#: src/Module/Conversation/Community.php:82 -msgid "Posts from users of the whole federated network" -msgstr "" +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "Dì-cheangail/Na lean tuilleadh" -#: src/Module/Conversation/Community.php:115 -msgid "Own Contacts" -msgstr "" +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "Chan eil thu a’ leantainn air an neach-aithne tuilleadh" -#: src/Module/Conversation/Community.php:119 -msgid "Include" -msgstr "" +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "Cha deach leinn an neach-aithne a thoirt air falbh on fheadhainn air a leanas tu, cuir fios gun rianaire agad" -#: src/Module/Conversation/Community.php:120 -msgid "Hide" -msgstr "" - -#: src/Module/Conversation/Community.php:137 src/Module/Search/Index.php:152 +#: src/Module/Conversation/Channel.php:121 +#: src/Module/Conversation/Community.php:125 src/Module/Search/Index.php:152 #: src/Module/Search/Index.php:194 msgid "No results." +msgstr "Chan eil toradh ann." + +#: src/Module/Conversation/Channel.php:159 +msgid "Channel not available." msgstr "" -#: src/Module/Conversation/Community.php:162 +#: src/Module/Conversation/Community.php:91 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." -msgstr "" +msgstr "Seallaidh sruthadh na coimhearsnachd gach post poblach a fhuair an nòd seo. Dh’fhaoidte nach eil iad a’ riochdachadh beachdan luchd-cleachdaidh an nòid seo." -#: src/Module/Conversation/Community.php:199 +#: src/Module/Conversation/Community.php:179 msgid "Community option not available." -msgstr "" +msgstr "Chan eil roghainn na coimhearsnachd ri fhaighinn." -#: src/Module/Conversation/Community.php:215 +#: src/Module/Conversation/Community.php:195 msgid "Not available." -msgstr "" +msgstr "Chan eil seo ri fhaighinn." -#: src/Module/Conversation/Network.php:173 -msgid "No such group" -msgstr "" +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "Chan eil an cearcall seo ann" -#: src/Module/Conversation/Network.php:177 +#: src/Module/Conversation/Network.php:222 #, php-format -msgid "Group: %s" +msgid "Circle: %s" +msgstr "Cearcall: %s" + +#: src/Module/Conversation/Network.php:317 +msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Network.php:255 -msgid "Latest Activity" -msgstr "" +#: src/Module/Conversation/Timeline.php:158 +msgid "Own Contacts" +msgstr "An luchd-aithne agadsa" -#: src/Module/Conversation/Network.php:258 -msgid "Sort by latest activity" -msgstr "" +#: src/Module/Conversation/Timeline.php:162 +msgid "Include" +msgstr "Gabh a-staigh" -#: src/Module/Conversation/Network.php:263 -msgid "Latest Posts" -msgstr "" - -#: src/Module/Conversation/Network.php:266 -msgid "Sort by post received date" -msgstr "" - -#: src/Module/Conversation/Network.php:271 -msgid "Latest Creation" -msgstr "" - -#: src/Module/Conversation/Network.php:274 -msgid "Sort by post creation date" -msgstr "" - -#: src/Module/Conversation/Network.php:279 -#: src/Module/Settings/Profile/Index.php:227 -msgid "Personal" -msgstr "" - -#: src/Module/Conversation/Network.php:282 -msgid "Posts that mention or involve you" -msgstr "" - -#: src/Module/Conversation/Network.php:287 src/Object/Post.php:351 -msgid "Starred" -msgstr "Rionnag" - -#: src/Module/Conversation/Network.php:290 -msgid "Favourite Posts" -msgstr "" +#: src/Module/Conversation/Timeline.php:163 +msgid "Hide" +msgstr "Falaich" #: src/Module/Credits.php:44 msgid "Credits" -msgstr "" +msgstr "Urram" #: 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 "" +msgstr "’S e pròiseact coimhearsnachd a th’ ann am Friendica is cha ghabhadh a thoirt gu buil às aonais taic o iomadh daoine. Seo liosta dhen fheadhainn a chuir ri chòd no ri eadar-theangachadh Friendica. Mòran taing dhuibh uile!" -#: src/Module/Debug/ActivityPubConversion.php:58 +#: src/Module/Debug/ActivityPubConversion.php:53 msgid "Formatted" -msgstr "" +msgstr "Fòrmataichte" -#: src/Module/Debug/ActivityPubConversion.php:70 +#: src/Module/Debug/ActivityPubConversion.php:65 msgid "Activity" -msgstr "" +msgstr "Gnìomhachd" -#: src/Module/Debug/ActivityPubConversion.php:122 +#: src/Module/Debug/ActivityPubConversion.php:117 msgid "Object data" -msgstr "" +msgstr "Dàta oibseict" + +#: src/Module/Debug/ActivityPubConversion.php:124 +msgid "Result Item" +msgstr "Nì toraidh" #: src/Module/Debug/ActivityPubConversion.php:129 -msgid "Result Item" -msgstr "" +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Mearachd" +msgstr[1] "Mearachdan" +msgstr[2] "Mearachdan" +msgstr[3] "Mearachdan" -#: src/Module/Debug/ActivityPubConversion.php:143 +#: src/Module/Debug/ActivityPubConversion.php:138 msgid "Source activity" -msgstr "" +msgstr "Gnìomhachd bun-tùis" #: src/Module/Debug/Babel.php:51 msgid "Source input" -msgstr "" +msgstr "Ion-chur bun-tùis" #: src/Module/Debug/Babel.php:57 msgid "BBCode::toPlaintext" -msgstr "" +msgstr "BBCode::toPlaintext" #: src/Module/Debug/Babel.php:63 msgid "BBCode::convert (raw HTML)" -msgstr "" +msgstr "BBCode::convert (HTML amh)" #: src/Module/Debug/Babel.php:68 msgid "BBCode::convert (hex)" -msgstr "" +msgstr "BBCode::convert (sia-dheicheach)" #: src/Module/Debug/Babel.php:73 msgid "BBCode::convert" -msgstr "" +msgstr "BBCode::convert" #: src/Module/Debug/Babel.php:79 msgid "BBCode::convert => HTML::toBBCode" -msgstr "" +msgstr "BBCode::convert => HTML::toBBCode" #: src/Module/Debug/Babel.php:85 msgid "BBCode::toMarkdown" -msgstr "" +msgstr "BBCode::toMarkdown" #: src/Module/Debug/Babel.php:91 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" -msgstr "" +msgstr "BBCode::toMarkdown => Markdown::convert (HTML amh)" #: src/Module/Debug/Babel.php:95 msgid "BBCode::toMarkdown => Markdown::convert" -msgstr "" +msgstr "BBCode::toMarkdown => Markdown::convert" #: src/Module/Debug/Babel.php:101 msgid "BBCode::toMarkdown => Markdown::toBBCode" -msgstr "" +msgstr "BBCode::toMarkdown => Markdown::toBBCode" #: src/Module/Debug/Babel.php:107 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -msgstr "" +msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" #: src/Module/Debug/Babel.php:115 msgid "Item Body" -msgstr "" +msgstr "Bodhaig nì" #: src/Module/Debug/Babel.php:119 msgid "Item Tags" -msgstr "" +msgstr "Tagaichean nì" #: src/Module/Debug/Babel.php:125 msgid "PageInfo::appendToBody" -msgstr "" +msgstr "PageInfo::appendToBody" #: src/Module/Debug/Babel.php:130 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" -msgstr "" +msgstr "PageInfo::appendToBody => BBCode::convert (HTML amh)" #: src/Module/Debug/Babel.php:134 msgid "PageInfo::appendToBody => BBCode::convert" -msgstr "" +msgstr "PageInfo::appendToBody => BBCode::convert" #: src/Module/Debug/Babel.php:141 msgid "Source input (Diaspora format)" -msgstr "" +msgstr "Ion-chur bun-tùis (fòrmat diaspora*)" #: src/Module/Debug/Babel.php:150 msgid "Source input (Markdown)" -msgstr "" +msgstr "Ion-chur bun-tùis (Markdown)" #: src/Module/Debug/Babel.php:156 msgid "Markdown::convert (raw HTML)" -msgstr "" +msgstr "Markdown::convert (HTML amh)" #: src/Module/Debug/Babel.php:161 msgid "Markdown::convert" -msgstr "" +msgstr "Markdown::convert" #: src/Module/Debug/Babel.php:167 msgid "Markdown::toBBCode" -msgstr "" +msgstr "Markdown::toBBCode" #: src/Module/Debug/Babel.php:174 msgid "Raw HTML input" -msgstr "" +msgstr "Ion-chur HTML amh" #: src/Module/Debug/Babel.php:179 msgid "HTML Input" -msgstr "" +msgstr "Ion-chur HTML" #: src/Module/Debug/Babel.php:186 msgid "HTML Purified (raw)" -msgstr "" +msgstr "HTML air a ghlanadh (amh)" #: src/Module/Debug/Babel.php:191 msgid "HTML Purified (hex)" -msgstr "" +msgstr "HTML air a ghlanadh (sia-dheicheach)" #: src/Module/Debug/Babel.php:196 msgid "HTML Purified" -msgstr "" +msgstr "HTML air a ghlanadh" #: src/Module/Debug/Babel.php:202 msgid "HTML::toBBCode" -msgstr "" +msgstr "HTML::toBBCode" #: src/Module/Debug/Babel.php:208 msgid "HTML::toBBCode => BBCode::convert" -msgstr "" +msgstr "HTML::toBBCode => BBCode::convert" #: src/Module/Debug/Babel.php:213 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" -msgstr "" +msgstr "HTML::toBBCode => BBCode::convert (HTML amh)" #: src/Module/Debug/Babel.php:219 msgid "HTML::toBBCode => BBCode::toPlaintext" -msgstr "" +msgstr "HTML::toBBCode => BBCode::toPlaintext" #: src/Module/Debug/Babel.php:225 msgid "HTML::toMarkdown" -msgstr "" +msgstr "HTML::toMarkdown" #: src/Module/Debug/Babel.php:231 msgid "HTML::toPlaintext" -msgstr "" +msgstr "HTML::toPlaintext" #: src/Module/Debug/Babel.php:237 msgid "HTML::toPlaintext (compact)" -msgstr "" +msgstr "HTML::toPlaintext (dùmhlaichte)" #: src/Module/Debug/Babel.php:255 msgid "Decoded post" -msgstr "" +msgstr "Post air a dhì-chòdachadh" #: src/Module/Debug/Babel.php:276 msgid "Post array before expand entities" -msgstr "" +msgstr "Arraigh a’ phuist ro leudachadh nan eintiteasan" #: src/Module/Debug/Babel.php:283 msgid "Post converted" -msgstr "" +msgstr "Post air iompachadh" #: src/Module/Debug/Babel.php:288 msgid "Converted body" -msgstr "" +msgstr "Bodhaig air a h-iompachadh" #: src/Module/Debug/Babel.php:294 msgid "Twitter addon is absent from the addon/ folder." -msgstr "" +msgstr "Chan eil tuilleadan Twitter sa phasgan addon/." #: src/Module/Debug/Babel.php:304 msgid "Babel Diagnostic" -msgstr "" +msgstr "Diagnosachd Babel" #: src/Module/Debug/Babel.php:305 msgid "Source text" -msgstr "" +msgstr "Teacsa tùsail" #: src/Module/Debug/Babel.php:306 msgid "BBCode" -msgstr "" +msgstr "BBCode" #: src/Module/Debug/Babel.php:308 msgid "Markdown" -msgstr "" +msgstr "Markdown" #: src/Module/Debug/Babel.php:309 msgid "HTML" -msgstr "" +msgstr "HTML" #: src/Module/Debug/Babel.php:311 msgid "Twitter Source / Tweet URL (requires API key)" -msgstr "" +msgstr "Bun-tùs Twitter / URL a’ tweet (feum air iuchair API)" -#: src/Module/Debug/Feed.php:51 src/Module/Filer/SaveTag.php:46 -#: src/Module/Settings/Profile/Index.php:141 +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:177 msgid "You must be logged in to use this module" -msgstr "" +msgstr "Feumaidh tu clàradh a-steach mus urrainn dhut am mòideal seo a chleachdadh" -#: src/Module/Debug/Feed.php:76 +#: src/Module/Debug/Feed.php:77 msgid "Source URL" -msgstr "" +msgstr "URL an tùis" #: src/Module/Debug/Localtime.php:49 msgid "Time Conversion" -msgstr "" +msgstr "Iompachadh na h-ama" #: src/Module/Debug/Localtime.php:50 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." -msgstr "" +msgstr "Tha Friendica a’ solar na seirbheise seo airson tachartasan a cho-roinneadh le lìonraidhean eile ’s le caraidean mur eil fios dè an roinnean-tìde." #: src/Module/Debug/Localtime.php:51 #, php-format msgid "UTC time: %s" -msgstr "" +msgstr "Àm UTC: %s" #: src/Module/Debug/Localtime.php:54 #, php-format msgid "Current timezone: %s" -msgstr "" +msgstr "An roinn-tìde làithreach: %s" #: src/Module/Debug/Localtime.php:58 #, php-format msgid "Converted localtime: %s" -msgstr "" +msgstr "An t-àm ionadail iompaichte: %s" #: src/Module/Debug/Localtime.php:62 msgid "Please select your timezone:" -msgstr "" +msgstr "Tagh an roinn-tìde agad:" #: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 msgid "Only logged in users are permitted to perform a probing." -msgstr "" +msgstr "Chan fhaod ach cleachdaichean air an clàradh a-steach sgrùdadh a dhèanamh." #: src/Module/Debug/Probe.php:52 msgid "Probe Diagnostic" -msgstr "" +msgstr "Diagnosachd sgrùdaidh" #: src/Module/Debug/Probe.php:53 msgid "Output" -msgstr "" +msgstr "Às-chur" #: src/Module/Debug/Probe.php:56 msgid "Lookup address" -msgstr "" +msgstr "Rannsaich an seòladh" #: src/Module/Debug/WebFinger.php:50 msgid "Webfinger Diagnostic" -msgstr "" +msgstr "Diagnosachd Webfinger" #: src/Module/Debug/WebFinger.php:52 msgid "Lookup address:" -msgstr "" +msgstr "Rannsaich an seòladh:" -#: src/Module/Delegation.php:111 +#: src/Module/Delegation.php:110 #, php-format msgid "You are now logged in as %s" -msgstr "" +msgstr "Tha thu air do chlàradh a-steach mar %s" + +#: src/Module/Delegation.php:142 +msgid "Switch between your accounts" +msgstr "Geàrr leum eadar na cunntasan agad" #: src/Module/Delegation.php:143 -msgid "Switch between your accounts" -msgstr "" +msgid "Manage your accounts" +msgstr "Stiùirich na cunntasan agad" #: src/Module/Delegation.php:144 -msgid "Manage your accounts" -msgstr "" - -#: src/Module/Delegation.php:145 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" -msgstr "" +msgstr "Geàrr leum eadar dearbh-aithnean no duilleagan coimhearsnachd/buidhinn a tha a’ co-roinneadh fiosrachadh a’ chunntais agad no a fhuair thu ceadan “stiùir” dhaibh" -#: src/Module/Delegation.php:146 +#: src/Module/Delegation.php:145 msgid "Select an identity to manage: " -msgstr "" +msgstr "Tagh dearbh-aithne ri stiùireadh: " -#: src/Module/Directory.php:75 +#: src/Module/Directory.php:74 msgid "No entries (some entries may be hidden)." -msgstr "" +msgstr "Gun innteart (’s dòcha gu bheil cuid a dh’innteartan falaichte)." -#: src/Module/Directory.php:91 +#: src/Module/Directory.php:90 msgid "Find on this site" -msgstr "" +msgstr "Lorg air an làrach seo" -#: src/Module/Directory.php:93 +#: src/Module/Directory.php:92 msgid "Results for:" -msgstr "" +msgstr "Toraidhean airson:" -#: src/Module/Directory.php:95 +#: src/Module/Directory.php:94 msgid "Site Directory" -msgstr "" +msgstr "Eòlaire na làraich" -#: src/Module/Filer/RemoveTag.php:68 -msgid "Item was not removed" -msgstr "" - -#: src/Module/Filer/RemoveTag.php:71 +#: src/Module/Filer/RemoveTag.php:105 msgid "Item was not deleted" -msgstr "" +msgstr "Cha deach an nì a sguabadh às" -#: src/Module/Filer/SaveTag.php:72 +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "Cha deach nì a thoirt air falbh" + +#: src/Module/Filer/SaveTag.php:73 msgid "- select -" -msgstr "" +msgstr "– tagh –" -#: src/Module/FriendSuggest.php:81 +#: src/Module/FriendSuggest.php:82 msgid "Suggested contact not found." -msgstr "" +msgstr "Cha deach an neach-aithne molta a lorg." -#: src/Module/FriendSuggest.php:99 +#: src/Module/FriendSuggest.php:100 msgid "Friend suggestion sent." -msgstr "" +msgstr "Chaidh moladh caraid a chur." -#: src/Module/FriendSuggest.php:136 +#: src/Module/FriendSuggest.php:137 msgid "Suggest Friends" -msgstr "" +msgstr "Mol caraidean" -#: src/Module/FriendSuggest.php:139 +#: src/Module/FriendSuggest.php:140 #, php-format msgid "Suggest a friend for %s" -msgstr "" +msgstr "Mol caraid dha %s" -#: src/Module/Friendica.php:62 +#: src/Module/Friendica.php:82 msgid "Installed addons/apps:" -msgstr "" +msgstr "Aplacaidean/tuilleadain stàlaichte:" -#: src/Module/Friendica.php:67 +#: src/Module/Friendica.php:87 msgid "No installed addons/apps" -msgstr "" +msgstr "Cha deach aplacaid/tuilleadan a stàladh" -#: src/Module/Friendica.php:72 +#: src/Module/Friendica.php:92 #, php-format msgid "Read about the Terms of Service of this node." -msgstr "" +msgstr "Leugh teirmichean seirbheise an nòd seo." -#: src/Module/Friendica.php:79 +#: src/Module/Friendica.php:99 msgid "On this server the following remote servers are blocked." -msgstr "" +msgstr "Seo a frithealaichean cèine a tha ’gam bacadh leis an fhrithealaiche seo." -#: src/Module/Friendica.php:84 +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +msgid "Reason for the block" +msgstr "Adhbhar a’ bhacaidh" + +#: src/Module/Friendica.php:104 msgid "Download this list in CSV format" -msgstr "" +msgstr "Luchdaich a-nuas an liosta seo san fhòrmat CSV" -#: src/Module/Friendica.php:98 +#: src/Module/Friendica.php:118 #, 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 "" +msgstr "Seo Friendica tionndadh %s a tha a’ ruith air an ionad-lìn %s. Is %s tionndadh an stòir-dhàta agus %s tionndadh ùrachadh nam post." -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:123 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." -msgstr "" +msgstr "Tadhail air Friendi.ca airson barrachd fiosrachaidh mu phròiseact Friendica." -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:124 msgid "Bug reports and issues: please visit" -msgstr "" +msgstr "Aithrisean air bugaichean is duilgheadasan: tadhail air" -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:124 msgid "the bugtracker at github" -msgstr "" +msgstr "tracaiche nam bugaichean air GitHub" -#: src/Module/Friendica.php:105 +#: src/Module/Friendica.php:125 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -msgstr "" +msgstr "Airson beachdan, molaidhean is mssa. – cuir post-d gu “info” aig “friendi – dot – ca" -#: src/Module/Group.php:58 -msgid "Could not create group." -msgstr "" - -#: src/Module/Group.php:69 src/Module/Group.php:215 src/Module/Group.php:239 -msgid "Group not found." -msgstr "" - -#: src/Module/Group.php:75 -msgid "Group name was not changed." -msgstr "" - -#: src/Module/Group.php:93 -msgid "Unknown group." -msgstr "" - -#: src/Module/Group.php:118 -msgid "Unable to add the contact to the group." -msgstr "" - -#: src/Module/Group.php:121 -msgid "Contact successfully added to group." -msgstr "" - -#: src/Module/Group.php:125 -msgid "Unable to remove the contact from the group." -msgstr "" - -#: src/Module/Group.php:128 -msgid "Contact successfully removed from group." -msgstr "" - -#: src/Module/Group.php:132 -msgid "Bad request." -msgstr "" - -#: src/Module/Group.php:171 -msgid "Save Group" -msgstr "" - -#: src/Module/Group.php:172 -msgid "Filter" -msgstr "" - -#: src/Module/Group.php:178 -msgid "Create a group of contacts/friends." -msgstr "" - -#: src/Module/Group.php:220 -msgid "Unable to remove group." -msgstr "" - -#: src/Module/Group.php:271 -msgid "Delete Group" -msgstr "" - -#: src/Module/Group.php:281 -msgid "Edit Group Name" -msgstr "" - -#: src/Module/Group.php:291 -msgid "Members" -msgstr "" - -#: src/Module/Group.php:294 -msgid "Group is empty" -msgstr "" - -#: src/Module/Group.php:307 -msgid "Remove contact from group" -msgstr "" - -#: src/Module/Group.php:328 -msgid "Click on a contact to add or remove." -msgstr "" - -#: src/Module/Group.php:342 -msgid "Add contact to group" -msgstr "" - -#: src/Module/HCard.php:46 +#: src/Module/HCard.php:45 msgid "No profile" -msgstr "" +msgstr "Chan eil pròifil ann" -#: src/Module/HTTPException/MethodNotAllowed.php:32 +#: src/Module/HTTPException/MethodNotAllowed.php:31 msgid "Method Not Allowed." -msgstr "" +msgstr "Chan eil am modh ceadaichte." #: src/Module/Help.php:60 msgid "Help:" -msgstr "" +msgstr "Cobhair:" -#: src/Module/Home.php:54 +#: src/Module/Home.php:63 #, php-format msgid "Welcome to %s" -msgstr "" +msgstr "Fàilte gu %s" -#: src/Module/Install.php:195 +#: src/Module/Install.php:189 msgid "Friendica Communications Server - Setup" -msgstr "" +msgstr "Frithealaiche conaltradh Friendica – Suidheachadh" -#: src/Module/Install.php:206 +#: src/Module/Install.php:200 msgid "System check" -msgstr "" +msgstr "Dearbhadh an t-siostaim" -#: src/Module/Install.php:208 src/Module/Install.php:265 -#: src/Module/Install.php:348 +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 msgid "Requirement not satisfied" -msgstr "" +msgstr "Tha riatanas nach deach a choileanadh" + +#: src/Module/Install.php:203 +msgid "Optional requirement not satisfied" +msgstr "Tha riatanas roghainneil nach deach a choileanadh" + +#: src/Module/Install.php:204 +msgid "OK" +msgstr "Ceart ma-thà" + +#: src/Module/Install.php:208 +msgid "Next" +msgstr "Air adhart" #: src/Module/Install.php:209 -msgid "Optional requirement not satisfied" -msgstr "" - -#: src/Module/Install.php:210 -msgid "OK" -msgstr "" - -#: src/Module/Install.php:215 msgid "Check again" -msgstr "" +msgstr "Sgrùd a-rithist" -#: src/Module/Install.php:230 +#: src/Module/Install.php:222 msgid "Base settings" -msgstr "" +msgstr "Roghainnean bunasach" -#: src/Module/Install.php:237 -msgid "Host name" -msgstr "" - -#: src/Module/Install.php:239 -msgid "" -"Overwrite this field in case the determinated hostname isn't right, " -"otherweise leave it as is." -msgstr "" - -#: src/Module/Install.php:242 +#: src/Module/Install.php:224 msgid "Base path to installation" -msgstr "" +msgstr "An t-slighe bhunasach dhan stàladh" -#: src/Module/Install.php:244 +#: src/Module/Install.php:226 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 "" +msgstr "Mur aithnich an siostam an t-slighe cheart dhan stàladh agad, cuir a-steach an t-slighe cheart an-seo. Cha bu chòir dhut seo a shuidheachadh ach ma tha thu a’ cleachdadh siostam cuingichte agus ceanglaichean samhlachail gun fheumh-lìn agad." -#: src/Module/Install.php:247 -msgid "Sub path of the URL" -msgstr "" +#: src/Module/Install.php:229 +msgid "The Friendica system URL" +msgstr "URL siostam Friendica" -#: src/Module/Install.php:249 +#: src/Module/Install.php:231 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 "" +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." +msgstr "Tar-sgrìobh an raon seo mura deach URL an t-siostaim aithneachadh mar bu chòir. Ma chaidh, fàg e mar a tha e." -#: src/Module/Install.php:260 +#: src/Module/Install.php:242 msgid "Database connection" -msgstr "" +msgstr "Ceangal stòir-dhàta" -#: src/Module/Install.php:261 +#: src/Module/Install.php:243 msgid "" "In order to install Friendica we need to know how to connect to your " "database." -msgstr "" +msgstr "Airson Friendica a stàladh, feumaidh fios a bhith againn air mar a nì sinn ceangal dhan stòr-dàta agad." -#: src/Module/Install.php:262 +#: src/Module/Install.php:244 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." -msgstr "" +msgstr "Cuir fios gu solaraiche an òstaidh no rianaire na làraich agad ma tha ceist agad mu na roghainnean seo." -#: src/Module/Install.php:263 +#: src/Module/Install.php:245 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." -msgstr "" +msgstr "Bu chòir dhan stòr-dàta a shònraicheas tu a bhith ann mu thràth. Mur eil, cruthaich e mus lean thu air adhart." -#: src/Module/Install.php:272 +#: src/Module/Install.php:252 msgid "Database Server Name" -msgstr "" +msgstr "Ainm frithealaiche an stòir-dhàta" -#: src/Module/Install.php:277 +#: src/Module/Install.php:257 msgid "Database Login Name" -msgstr "" +msgstr "Ainm clàraidh a-steach an stòir-dhàta" -#: src/Module/Install.php:283 +#: src/Module/Install.php:263 msgid "Database Login Password" -msgstr "" +msgstr "Facal-faire clàradh a-steach an stòir-dhàta" -#: src/Module/Install.php:285 +#: src/Module/Install.php:265 msgid "For security reasons the password must not be empty" -msgstr "" +msgstr "Air adhbharan tèarainteachd, chan fhaod am facal-faire a bhith falamh" -#: src/Module/Install.php:288 +#: src/Module/Install.php:268 msgid "Database Name" -msgstr "" +msgstr "Ainm an stòir-dhàta" -#: src/Module/Install.php:292 src/Module/Install.php:322 +#: src/Module/Install.php:272 src/Module/Install.php:300 msgid "Please select a default timezone for your website" -msgstr "" +msgstr "Tagh roinn-tìde bhunaiteach dhan làrach-lìn agad" -#: src/Module/Install.php:307 +#: src/Module/Install.php:287 msgid "Site settings" -msgstr "" +msgstr "Roghainnean na làraich" -#: src/Module/Install.php:317 +#: src/Module/Install.php:295 msgid "Site administrator email address" -msgstr "" +msgstr "An seòladh puist-d aig rianaire na làraich" -#: src/Module/Install.php:319 +#: src/Module/Install.php:297 msgid "" "Your account email address must match this in order to use the web admin " "panel." -msgstr "" +msgstr "Feumaidh seòladh puist-d a’ chunntais agad a bhith co-ionnan ri seo ach an urrainn dhut panail-lìn na rianachd a chleachdadh." -#: src/Module/Install.php:326 +#: src/Module/Install.php:304 msgid "System Language:" -msgstr "" +msgstr "Cànan an t-siostaim:" -#: src/Module/Install.php:328 +#: src/Module/Install.php:306 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." -msgstr "" +msgstr "Suidhich an cànan bunaiteach dhan eadar-aghaidh stàladh Friendica agad is do na puist-d a thèid a chur." -#: src/Module/Install.php:340 +#: src/Module/Install.php:318 msgid "Your Friendica site database has been installed." -msgstr "" +msgstr "Chaidh stòr-dàta na làraich Friendica agad a stàladh." -#: src/Module/Install.php:350 +#: src/Module/Install.php:328 msgid "Installation finished" -msgstr "" +msgstr "Tha an stàladh deiseil" -#: src/Module/Install.php:370 +#: src/Module/Install.php:348 msgid "

    What next

    " -msgstr "" +msgstr "

    Dè a-nis?

    " -#: src/Module/Install.php:371 +#: src/Module/Install.php:349 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." -msgstr "" +msgstr "CUDROMACH: Feumaidh gu saothair dhan obraiche a chur air an sgeideal [a làimh]." -#: src/Module/Install.php:374 +#: src/Module/Install.php:352 #, 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 "" +msgstr "Tadhail air duilleag a’ chlàraidh aig an nòd Friendica ùr agad agus clàraich mar cleachdaiche ùr. Thoir an aire gun cleachd thu an aon seòladh puist-d ’s a chuir thu a-steach mar phost-d an rianaire. Bheir seo inntrigeadh do phanail na rianachd dhut." #: src/Module/Invite.php:57 msgid "Total invitation limit exceeded." -msgstr "" +msgstr "Chaidh thu thairis air crìoch nan cuiridhean iomlan." #: src/Module/Invite.php:82 #, php-format msgid "%s : Not a valid email address." -msgstr "" +msgstr "%s : Chan e seòladh puist-d dligheach a tha seo." #: src/Module/Invite.php:108 msgid "Please join us on Friendica" -msgstr "" +msgstr "Thig cuide rinn air Friendica" #: src/Module/Invite.php:117 msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" +msgstr "Chaidh thu thairis air crìoch nan cuiridhean. Cuir fios gu rianaire na làraich agad." #: src/Module/Invite.php:121 #, php-format msgid "%s : Message delivery failed." -msgstr "" +msgstr "%s : Dh’fhàillig libhrigeadh na teachdaireachd." #: src/Module/Invite.php:125 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Chaidh %d teachdaireachd a chur." +msgstr[1] "Chaidh %d theachdaireachd a chur." +msgstr[2] "Chaidh %d teachdaireachdan a chur." +msgstr[3] "Chaidh %d teachdaireachd a chur." #: src/Module/Invite.php:143 msgid "You have no more invitations available" -msgstr "" +msgstr "Chan eil barrachd cuiridhean ri fhaighinn dhut" #: src/Module/Invite.php:150 #, php-format @@ -8131,14 +7423,14 @@ 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 "" +msgstr "Tadhail air %s airson liosta de làraichean poblach far an urrainn dhut ballrachd fhaighinn. ’S urrainn dhan a h-uile ball Friendica air làraichean eile ceangal ri chèile agus ri buill iomadh lìonra sòisealta eile." #: src/Module/Invite.php:152 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." -msgstr "" +msgstr "Airson gabhail ris a’ chuireadh seo, tadhail air %s is clàraich air no air làrach-lìn Friendica poblach sam bith eile." #: src/Module/Invite.php:153 #, php-format @@ -8147,400 +7439,1664 @@ msgid "" "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 "" +msgstr "Tha na làraichean Friendica uile co-naisgte ri chèile ach an cruthaich iad lìon sòisealta mòr aig a bheil prìobhaideachd phisichte ’s a tha fo smachd nam ball aige fhèin. ’S urrainn dhaibh ceangal a dhèanamh ri iomadh lìonra sòisealta tradaiseanta. Faic %s airson liosta de làraichean Friendica eile far an urrainn dhut ballrachd fhaighinn." #: src/Module/Invite.php:157 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." -msgstr "" +msgstr "Tha sinn duilich. Cha deach an siostam rèiteachadh aig an àm seo airson ceangal ri làraichean poblach eile no cuiridhean ballrachd a chur." #: src/Module/Invite.php:160 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 "" +msgstr "Tha na làraichean Friendica uile co-naisgte ri chèile ach an cruthaich iad lìon sòisealta mòr aig a bheil prìobhaideachd phisichte ’s a tha fo smachd nam ball aige fhèin. ’S urrainn dhaibh ceangal a dhèanamh ri iomadh lìonra sòisealta tradaiseanta." #: src/Module/Invite.php:159 #, php-format msgid "To accept this invitation, please visit and register at %s." -msgstr "" +msgstr "Airson gabhail ris a’ chuireadh seo, tadhail air %s is clàraich ann." #: src/Module/Invite.php:167 msgid "Send invitations" -msgstr "" +msgstr "Cuir cuiridhean" #: src/Module/Invite.php:168 msgid "Enter email addresses, one per line:" -msgstr "" +msgstr "Cuir seòlaidhean puist-d a-steach, gach fear air loidhne fa leth:" #: src/Module/Invite.php:172 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." -msgstr "" +msgstr "Tha fàilte chridheil romhad airson tighinn cruinn còmhla rium-sa is dlùth-charaidean eile air Friendica – agus airson ar cuideachadh ach an cruthaich sinn lìon sòisealta nas fheàrr." #: src/Module/Invite.php:174 msgid "You will need to supply this invitation code: $invite_code" -msgstr "" +msgstr "Bidh agad ris an còd cuiridh seo a sholar: $invite_code" #: src/Module/Invite.php:174 msgid "" "Once you have registered, please connect with me via my profile page at:" -msgstr "" +msgstr "Nuair a bhios tu air do chlàradh, dèan ceangal rium le duilleag na pròifil agam air:" #: src/Module/Invite.php:176 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" -msgstr "" +msgstr "Airson barrachd fiosrachaidh mu phròiseact Friendica ’s carson a tha sinn dhen bheachd gu bheil e cudromach, tadhail air http://friendi.ca" -#: src/Module/Item/Compose.php:50 +#: src/Module/Item/Compose.php:85 msgid "Please enter a post body." -msgstr "" +msgstr "Cuir a-steach bodhaig puist." -#: src/Module/Item/Compose.php:63 +#: src/Module/Item/Compose.php:98 msgid "This feature is only available with the frio theme." -msgstr "" +msgstr "Chan eil an gleus seo ri fhaighinn ach leis an ùrlar frio." -#: src/Module/Item/Compose.php:90 +#: src/Module/Item/Compose.php:122 msgid "Compose new personal note" -msgstr "" +msgstr "Sgrìobh nòta pearsanta ùr" -#: src/Module/Item/Compose.php:99 +#: src/Module/Item/Compose.php:131 msgid "Compose new post" -msgstr "" +msgstr "Sgrìobh post ùr" -#: src/Module/Item/Compose.php:153 +#: src/Module/Item/Compose.php:187 msgid "Visibility" -msgstr "" +msgstr "Faicsinneachd" -#: src/Module/Item/Compose.php:174 +#: src/Module/Item/Compose.php:203 msgid "Clear the location" -msgstr "" +msgstr "Thoir an t-ionad air falbh" -#: src/Module/Item/Compose.php:175 +#: src/Module/Item/Compose.php:204 msgid "Location services are unavailable on your device" -msgstr "" +msgstr "Chan eil seirbheisean ionaid ri fhaighinn air an uidheam agad" -#: src/Module/Item/Compose.php:176 +#: src/Module/Item/Compose.php:205 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" -msgstr "" +msgstr "Tha seirbheisean ionaid à comas. Thoir sùil air ceadan na làraich-lìn air an uidheam agad" -#: src/Module/Item/Follow.php:52 +#: src/Module/Item/Compose.php:211 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "’S urrainn dhut suidheachadh gum fosgail an duilleag seo an-còmhnaidh nuair a chleachdas tu am putan “Post ùr” ann an Roghainnean gnàthaichte an ùrlair." + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "Chan eil inbhir ri fhaighinn dhan nì seo." + +#: src/Module/Item/Follow.php:51 msgid "Unable to follow this item." -msgstr "" +msgstr "Cha ghabh leantainn air an nì seo." #: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 msgid "System down for maintenance" -msgstr "" +msgstr "Tha an siostam dheth a chùm obrach-glèidhidh" #: 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 "" +msgstr "Chaidh an nòd Friendica seo a chur sa mhodh obrach-glèidhidh, gu fèin-obrachail on a tha e ’ga ùrachadh fhèin no a làimh le rianaire an nòid. Cha bu chòir dhan staid seo a bhith air ach rè seal, till an ceann corra mionaid." #: src/Module/Manifest.php:40 msgid "A Decentralized Social Network" +msgstr "Lìonra sòisealta sgaoilte" + +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "Feumaidh tu clàradh a-steach mus fhaigh thu cothrom air an duilleag seo." + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Faidhlichean" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload" +msgstr "Luchdaich suas" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Tha sinn duilich a dh’fhaoidte gu bheil an luchdadh suas agad nas motha na tha ceadaichte leis an rèiteachadh PHP" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "Air neo – an do dh’fheuch thu ri faidhle falamh a luchdadh suas?" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Tha am faidhle nas motha na tha ceadaichte dhe %s" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "Dh’fhàillig luchdadh suas an fhaidhle." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:68 +msgid "Unable to process image." +msgstr "Cha b’ urrainn dhuinn an dealbh a phròiseasadh." + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:95 +msgid "Image upload failed." +msgstr "Dh’fhàillig le luchdadh suas an deilbh." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "Liosta nan cleachdaichean uile" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "Gnìomhach" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "Liosta nan cunntasan gnìomhach" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "Liosta nan clàraidhean rin dèiligeadh" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "Liosta nan cleachdaichean a chaidh a bhacadh" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "Air a sguabadh às" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "Liosta nan cleachdaichean rin sguabadh às" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "Duilleag àbhaisteach a’ chunntais" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "Duilleag cùbaid deasbaid" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "Buidheann poblach" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "Duilleag caraide fhèin-obrachail" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "Buidheann prìobhaideach" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "Duilleag phearsanta" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "Duilleag buidhinn" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "Duilleag naidheachdan" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "Buidheann coimhearsnachd" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "Ath-sheachadan" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "Chan urrainn dhut neach-aithne ionadail a bhacadh, bac an cleachdaiche ’na àite" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "Chaidh %s neach-aithne a dhì-bhacadh" +msgstr[1] "Chaidh %s luchd-aithne a dhì-bhacadh" +msgstr[2] "Chaidh %s luchd-aithne a dhì-bhacadh" +msgstr[3] "Chaidh %s luchd-aithne a dhì-bhacadh" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "Liosta bacadh luchd-aithne cèin" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "Leigidh an duilleag seo leat gum bac thu teachdaireachd sam bith o neach-aithne cèin o ruigsinn an nòid agad." + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "Bac an neach-aithne cèin" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "tagh a h-uile" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "na tagh gin" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "Cha deach neach-aithne cèin a bhacadh on nòd seo." + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "Luchd-aithne cèin air am bacadh" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "Bac neach-aithne cèin ùr" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "Dealbh" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "Adhbhar" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "Chaidh %s neach-aithne a bhacadh gu h-iomlan" +msgstr[1] "Chaidh %s luchd-aithne a bhacadh gu h-iomlan" +msgstr[2] "Chaidh %s luchd-aithne a bhacadh gu h-iomlan" +msgstr[3] "Chaidh %s luchd-aithne a bhacadh gu h-iomlan" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "URL an neach-aithne chèin ri bhacadh." + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "Purgaidich an neach-aithne cuideachd" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "Bheir seo air falbh susbaint sam bith a tha co-cheangailte ris an neach-aithne seo on nòd. Cumaidh seo clàr an neach-aithne. Cha ghabh an gnìomh seo a neo-dhèanamh." + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "Adhbhar a’ bhacaidh" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "Chaidh pàtran àrainn fhrithealaichean a chur ris an liosta-bhacaidh." + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "Chaidh %s fhrithealaiche a chur air sgeideal a’ phurgaideachaidh." +msgstr[1] "Chaidh %s fhrithealaiche a chur air sgeideal a’ phurgaideachaidh." +msgstr[2] "Chaidh %s frithealaichean a chur air sgeideal a’ phurgaideachaidh." +msgstr[3] "Chaidh %s frithealaiche a chur air sgeideal a’ phurgaideachaidh." + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "← Air ais dhan liosta" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "Bac pàtran àrainne fhrithealaichean ùr" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "

    Chan eil aire air litrichean mòra is beaga aig pàtran àrainne fhrithealaichean is tha e ’na shaorag slige leis na caractaran sònraichte seo:

    \n
      \n\t
    • *: Uiread sam bith de charactaran
    • \n\t
    • ?: Aon charactar
    • \n
    " + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "Thoir sùil air a’ phàtran" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "A’ maidseadh nam frithealaichean as aithne dhuinn" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "Ainm an fhrithealaiche" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "Àrainn an fhrithealaiche" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "An luchd-aithne as aithne dhuinn" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "%d fhrithealaiche as aithne dhuinn" +msgstr[1] "%d fhrithealaiche as aithne dhuinn" +msgstr[2] "%d frithealaichean as aithne dhuinn" +msgstr[3] "%d frithealaiche as aithne dhuinn" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "Cuir am pàtran ris an liosta-bhacaidh" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "Pàtran àrainne fhrithealaichean" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "Am pàtran àrainne fhrithealaichean ùr airson a chur ris an liosta-bhacaidh. Na gabh a-staigh am pròtacal." + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "Purgaidich am frithealaiche" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "Nì seo purgaideachadh air gach susbaint cuideachd a chaidh a stòradh gu h-ionadail ’s a chaidh a sgrìobhadh leis an luchd-aithne as aithne dhuinn a tha clàraichte air an fhrithealaiche ud. Cumaidh seo luchd-aithne is clàran an fhrithealaiche. Cha ghabh seo a neo-dhèanamh." +msgstr[1] "Nì seo purgaideachadh air gach susbaint cuideachd a chaidh a stòradh gu h-ionadail ’s a chaidh a sgrìobhadh leis an luchd-aithne as aithne dhuinn a tha clàraichte air na frithealaichean ud. Cumaidh seo luchd-aithne is clàran nam frithealaichean. Cha ghabh seo a neo-dhèanamh." +msgstr[2] "Nì seo purgaideachadh air gach susbaint cuideachd a chaidh a stòradh gu h-ionadail ’s a chaidh a sgrìobhadh leis an luchd-aithne as aithne dhuinn a tha clàraichte air na frithealaichean ud. Cumaidh seo luchd-aithne is clàran nam frithealaichean. Cha ghabh seo a neo-dhèanamh." +msgstr[3] "Nì seo purgaideachadh air gach susbaint cuideachd a chaidh a stòradh gu h-ionadail ’s a chaidh a sgrìobhadh leis an luchd-aithne as aithne dhuinn a tha clàraichte air na frithealaichean ud. Cumaidh seo luchd-aithne is clàran nam frithealaichean. Cha ghabh seo a neo-dhèanamh." + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "Adhbhar a’ bhacaidh" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "An t-adhbhar air an do bhac thu am pàtran àrainne fhrithealaichean seo. Thèid an t-adhbhar a shealltainn gu poblach air duilleag fiosrachadh an fhrithealaiche." + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "Mearachd ag ion-phortadh faidhle nam pàtranan" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "Chaidh am faidhle a sholair thu a chur an àite na liosta-bacaidh ionadail." + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "Chaidh %d phàtran a chur ris an liosta-bhacaidh ionadail." +msgstr[1] "Chaidh %d phàtran a chur ris an liosta-bhacaidh ionadail." +msgstr[2] "Chaidh %d pàtranan a chur ris an liosta-bhacaidh ionadail." +msgstr[3] "Chaidh %d pàtran a chur ris an liosta-bhacaidh ionadail." + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "Cha deach pàtran sam bith a chur ris an liosta-bhacaidh ionadail." + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "Ion-phortaich liosta-bhacaidh le pàtrain àrainne fhrithealaichean" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "

    Gabhaidh am faidhle seo a luchdadh a-nuas on t-slighe /friendica aig frithealaiche Friendica sam bith.

    " + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "Luchdaich suas faidhle" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "Na pàtranan rin ion-phortadh" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "Pàtran àrainne" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "Modh an ion-phortaidh" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "Ion-phortaich na pàtranan" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "%d phàtran gu h-iomlan" +msgstr[1] "%d phàtran gu h-iomlan" +msgstr[2] "%d pàtranan gu h-iomlan" +msgstr[3] "%d pàtran gu h-iomlan" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "Faidhle CSV sa bheil liosta-bhacaidh le pàtrain àrainne fhrithealaichean" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "Cuir ris" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "Nì seo ion-phortadh dhe na pàtranan san fhaidhle nach eil air an liosta-bhacaidh làithreach fhathast." + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "Cuir ’na àite" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "Cuiridh seo na pàtranan air an ion-phortadh an àite na liosta-bacaidh làithrich." + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +msgid "Blocked server domain pattern" +msgstr "Pàtran àrainne fhrithealaichean a chaidh a bhacadh" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "Sguab às am pàtran àrainne fhrithealaichean" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "Cuir cromag ris a sguabadh às an nì seo on liosta-bhacaidh" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "Liosta-bhacaidh le pàtrain àrainne fhrithealaichean" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +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 "’S urrainn dhut an duilleag seo a chleachdadh airson liosta-bhacaidh le pàtrain àrainne fhrithealaichean on lìonra cho-naisgte a mhìneachadh nach fhaod gnìomh a ghabhail leis an nòd agad. Airson gach pàtran àrainne fhrithealaichean, bu chòir dhut an t-adhbhar a thoirt seachad air an do bhac thu e." + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +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 "Thèid liosta nam pàtran àrainne fhrithealaichean foillseachadh gu poblach air an duilleag /friendica ach am faigh an luchd-cleachdaidh agad ’s na daoine a tha a’ sgrùdadh duilgheadasan conaltraidh a-mach gun duilgheadas dè as adhbhar." + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "Ion-phortaich liosta-bhacaidh le pàtrain àrainne fhrithealaichean" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "Cuir nì ùr ris an liosta-bhacaidh" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "Sàbhail na h-atharraichean air an liosta-bhacaidh" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "Na nithean làithreach air an liosta-bhacaidh" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "Sguab às an nì on liosta-bhacaidh" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "A bheil thu airson an nì seo a sguabadh às on liosta-bhacaidh?" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "Chaidh an nì a chomharrachadh a chùm sguabaidh às." + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "Sguab às an nì seo" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "Air an duilleag seo, ’s urrainn dhut nì a sguabadh às on nòd agad. Mas e post ciad ìre a tha san nì, thèid an snàithlean gu lèir a sguabadh às." + +#: src/Module/Moderation/Item/Delete.php:65 +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 "Feumaidh tu a bhith eòlach air GUID an nì. Gheibh thu lorg air m. e. a’ coimhead air URL an t-seallaidh. ’S e a’ phàirt mu dheireadh aig http://example.com/display/123456 a sa san GUID, ’s e 123456 a th’ ann an-seo." + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "GUID an nì a tha thu airson sguabadh às." + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "ID an nì" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "URI an nì" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "Briathran" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "Taga" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "Seòrsa" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "Briathar" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "URL" + +#: src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "Iomradh" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "Iomradh fillte" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Cha deach an nì a lorg" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "Cha deach tùs a chlàradh" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "Dèan cinnteach gun deach iuchair rèiteachaidh debug.store_source a shuidheachadh ann an config/local.config.php ach am bi tùsan aig na nithean ri teachd." + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "GUID an nì" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "Cha deach an neach-aithne a lorg no chaidh am frithealaiche aca a bhacadh air an nòd seo mu thràth." + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "Clàraich a-steach airson an duilleag seo inntrigeadh." + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "Cruthaich gearan maorsainneachd" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "Tagh neach-aithne" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "Cuir a-steach seòladh no URL pròifil neach-aithne gu h-ìosal airson gearan maorsainneachd a chruthachadh mu dhèidhinn." + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "Seòladh/URL an neach-aithne" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "Tagh roinn-seòrsa" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "Tagh roinn-seòrsa a’ ghearain agad." + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "Spama" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "Tha an neach-aithne seo a’ foillseachadh iomadh post/freagairt a tha ro fhada no ’gam foillseachadh a-rithist ’s a-rithist no tha e a’ dèanamh sanasachd air a’ bhathar/làrach-lìn aca nach eil buntainneachd dha na còmhraidhean." + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "Susbaint mhì-laghail" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "Tha an neach-aithne seo a’ foillseachadh susbaint a thathar a’ meas gu bheil e mì-laghail san uachdranas far a bheil an nòd ’ga òstadh." + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "Sàbhailteachd na coimhearsnachd" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "Bhuair an neach-aithne seo thu no daoine eile on a tha e dìorrasach no neo-mhothachail ge b’ e a bheil e mar sin a dh’aona-ghnothaich no gun iarraidh. Gabhaidh seo a-staigh foillseachadh fiosrachadh prìobhaideach càich (doxxing), postadh bhagairtean no dealbhan frionasach ann am postaichean is freagairtean." + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "Susbaint/Giùlan gun iarraidh" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "Dh’fhoillsich an neach-aithne seo iomadh susbaint nach eil buntainneach do chuspair an nòid no a tha a’ càineadh rianachd/maorsainneachd an nòid gu fosgailte gun a bhith a’ bruidhinn ris na daoine iomchaidh fhèin, mar eisimpleir, no a tha rag-fhoghlamach mu chuspair frionasach." + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "Briseadh riaghailt" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "Bris an neach-aithne seo riaghailt no dhà dhen nòd seo. ’S urrainn dhut na riaghailtean a chaidh a bhriseadh a thaghadh san ath-cheum." + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "Innis dhuinn carson a chuir thu a-null an gearan seo. Mar as mionaidiche am fiosrachadh a bheir thu dhuinn ’s ann as fhasa a bhios e dhuinn dèiligeadh ris a’ ghearan agad." + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "Barrachd fiosrachaidh" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "Thoir barrachd fiosrachaidh dhuinn a tha buntainneach dhan ghearan shònraichte seo. ’S urrainn dhut postaichean leis an neach-aithne seo a cheangal ris san ath-cheum ach cuiridh sinn fàilte do cho-theacsa sam bith." + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "Tagh riaghailtean" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "Tagh riaghailtean an nòid gu h-ìosal a shaoileas tu gun deach am briseadh leis an neach-aithne seo." + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "Tagh postaichean" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "Ma thogras tu, tagh postaichean ri cheangal ris a’ ghearan agad." + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "Cuir an gearan a-null" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "Gnìomhan eile" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "’S urrainn dhut fear de na gnìomhan seo a ghabhail cuideachd air an neach-aithne a rinn thu gearan air:" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "Na dèan dad" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "Co-theannaich an neach-aithne" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "Nochdaidh na postaichean ’s freagairtean air duilleag an lìonraidh agad fhathast ach bidh an t-susbaint aca co-theannaichte a ghnàth." + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "Cha nochd na postaichean ’s freagairtean air duilleag an lìonraidh agad tuilleadh ach dh’fhaoidte gun nochd na freagairtean aca ann an snàithleanan fòraim. Faodaidh iad do leantainn fhathast." + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "Bac an neach-aithne" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "Cha nochd na postaichean ’s freagairtean air duilleag an lìonraidh agad tuilleadh ach dh’fhaoidte gun nochd na freagairtean aca ann an snàithleanan fòraim leis an t-susbaint aca co-theannaichte a ghnàth. Chan fhaod iad do leantainn tuilleadh ach dh’fhaoidte gum faigh iad cothrom air na postaichean poblach agad fhathast air dòighean eile." + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "Sìn air adhart an gearan" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "A bheil thu airson an gearan seo a shìneadh air adhart dhan fhrithealaiche chèin?" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "1. Tagh neach-aithne" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "2. Tagh roinn-seòrsa" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "2a. Tagh riaghailtean" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "2b. Cuir beachd ris" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "3. Tagh postaichean" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" msgstr "" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "" + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "" + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Cunntas àbhaisteach" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "Cunntas leantainn fèin-obrachail" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "Cunntas buidhinn phoblaich" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Cunntas caraide fèin-obrachail" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Cunntas bloga" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "Cunntas buidhinn phrìobhaidich" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Cleachdaichean clàraichte" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Clàraidhean rin dèiligeadh" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "Chaidh %s chleachdaiche a bhacadh" +msgstr[1] "Chaidh %s chleachdaiche a bhacadh" +msgstr[2] "Chaidh %s cleachdaichean a bhacadh" +msgstr[3] "Chaidh %s cleachdaiche a bhacadh" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "Chan urrainn dhut thu fhèin a thoirt air falbh" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "Chaidh %s chleachdaiche a sguabadh às" +msgstr[1] "Chaidh %s chleachdaiche a sguabadh às" +msgstr[2] "Chaidh %s cleachdaichean a sguabadh às" +msgstr[3] "Chaidh %s cleachdaiche a sguabadh às" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "Chaidh an cleachdaiche “%s” a sguabadh às" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "Chaidh an chleachdaiche “%s” a bhacadh" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Ceann-là a’ chlàraidh" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "An clàradh a-steach mu dheireadh" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "An nì poblach mu dheireadh" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "Cunntasan gnìomhach" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "Chaidh an cleachdaiche a bhacadh" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "Rianaire na làraich" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "Dh’fhalbh an ùine air a’ chunntas" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "Cruthaich cleachdaiche ùr" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Thèid na cleachdaichean a thagh thu a sguabadh às!\\n\\nThèid a h-uile càil a phostaich na cleachdaichean seo air an làrach seo a sguabadh às gu buan!\\n\\nA bheil thu cinnteach?" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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 "Thèid an cleachdaiche {0} a sguabadh às!\\n\\nThèid a h-uile càil a phostaich an cleachdaiche seo air an làrach seo a sguabadh às gu buan!\\n\\nA bheil thu cinnteach?" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "Chaidh %s chleachdaiche a dhì-bhacadh" +msgstr[1] "Chaidh %s chleachdaiche a dhì-bhacadh" +msgstr[2] "Chaidh %s cleachdaichean a dhì-bhacadh" +msgstr[3] "Chaidh %s cleachdaiche a dhì-bhacadh" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "Chaidh an cleachdaiche “%s” a dhì-bhacadh" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "Cleachdaichean bacte" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "Cleachdaiche ùr" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "Cuir cleachdaiche ris" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "Ainm a’ chleachdaiche ùir." + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "Far-ainm" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "Far-ainm a’ chleachdaiche ùir." + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "Seòladh puist-d a’ chleachdaiche ùir." + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "Cleachdaichean a’ feitheamh air sguabadh às buan" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "Sguabadh às buan" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "Cleachdaiche a’ feitheamh sguabadh às buan" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "Fhuair %s chleachdaiche aonta" +msgstr[1] "Fhuair %s chleachdaiche aonta" +msgstr[2] "Fhuair %s cleachdaichean aonta" +msgstr[3] "Fhuair %s cleachdaiche aonta" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "Chaidh %s chlàradh a chùl-ghairm" +msgstr[1] "Chaidh %s chlàradh a chùl-ghairm" +msgstr[2] "Chaidh %s clàraidhean a chùl-ghairm" +msgstr[3] "Chaidh %s clàradh a chùl-ghairm" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Air aontachadh ris a’ chunntas." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "Chaidh an clàradh a chùl-ghairm" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "Clàraichean chleachdaichean a’ feitheamh air lèirmheas" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Cuin a chaidh iarraidh" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "Chan eil clàradh ann." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "Nòta on chleachdaiche" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Diùlt" + +#: src/Module/Notifications/Introductions.php:99 msgid "Show Ignored Requests" -msgstr "" +msgstr "Seall na h-iarrtasan a leig thu seachad" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Notifications/Introductions.php:99 msgid "Hide Ignored Requests" -msgstr "" +msgstr "Falaich na h-iarrtasan a leig thu seachad" -#: src/Module/Notifications/Introductions.php:113 -#: src/Module/Notifications/Introductions.php:176 +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 msgid "Notification type:" -msgstr "" +msgstr "Seòrsa a’ bhratha:" -#: src/Module/Notifications/Introductions.php:116 +#: src/Module/Notifications/Introductions.php:118 msgid "Suggested by:" -msgstr "" +msgstr "’Ga mholadh le:" -#: src/Module/Notifications/Introductions.php:141 +#: src/Module/Notifications/Introductions.php:143 msgid "Claims to be known to you: " -msgstr "" +msgstr "A’ tagradh gur aithne dhut e: " -#: src/Module/Notifications/Introductions.php:142 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:124 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "No" -msgstr "" +msgstr "Chan eil" -#: src/Module/Notifications/Introductions.php:150 +#: src/Module/Notifications/Introductions.php:152 msgid "Shall your connection be bidirectional or not?" -msgstr "" +msgstr "A bheil thu airson co-dhàimh a chruthachadh?" -#: src/Module/Notifications/Introductions.php:151 +#: src/Module/Notifications/Introductions.php:153 #, 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 "" +msgstr "Ma ghabhas tu ri %s ’nad charaid, faodaidh %s fo-sgrìobhadh air na postaichean agad agus gheibh thu na naidheachdan uapa-san cuideachd." -#: src/Module/Notifications/Introductions.php:152 +#: src/Module/Notifications/Introductions.php:154 #, 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 "" +msgstr "Ma ghabhas tu ri %s mar fo-sgrìobhadh, faodaidh iad fo-sgrìobhadh air na postaichean agad ach chan fhaigh thu na naidheachdan uapa-san." -#: src/Module/Notifications/Introductions.php:154 +#: src/Module/Notifications/Introductions.php:156 msgid "Friend" -msgstr "" +msgstr "Caraid" -#: src/Module/Notifications/Introductions.php:155 +#: src/Module/Notifications/Introductions.php:157 msgid "Subscriber" -msgstr "" +msgstr "Fo-sgrìobhadh" -#: src/Module/Notifications/Introductions.php:214 +#: src/Module/Notifications/Introductions.php:216 msgid "No introductions." -msgstr "" +msgstr "Chan eil cur an aithne ann." -#: src/Module/Notifications/Introductions.php:215 -#: src/Module/Notifications/Notifications.php:134 +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 #, php-format msgid "No more %s notifications." -msgstr "" +msgstr "Chan eil brath %s ann tuilleadh." -#: src/Module/Notifications/Notification.php:134 +#: src/Module/Notifications/Notification.php:135 msgid "You must be logged in to show this page." -msgstr "" +msgstr "Feumaidh tu clàradh a-steach mus urrainn dhut an duilleag seo a shealltainn." -#: src/Module/Notifications/Notifications.php:65 +#: src/Module/Notifications/Notifications.php:66 msgid "Network Notifications" -msgstr "" +msgstr "Brathan lìonraidh" -#: src/Module/Notifications/Notifications.php:71 +#: src/Module/Notifications/Notifications.php:72 msgid "System Notifications" -msgstr "" +msgstr "Brathan an t-siostaim" -#: src/Module/Notifications/Notifications.php:77 +#: src/Module/Notifications/Notifications.php:78 msgid "Personal Notifications" -msgstr "" +msgstr "Brathan pearsanta" -#: src/Module/Notifications/Notifications.php:83 +#: src/Module/Notifications/Notifications.php:84 msgid "Home Notifications" -msgstr "" +msgstr "Brathan na dachaighe" -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Notifications/Notifications.php:140 msgid "Show unread" -msgstr "" +msgstr "Seall an fheadhainn gun leughadh" -#: src/Module/Notifications/Ping.php:226 +#: src/Module/Notifications/Ping.php:246 msgid "{0} requested registration" -msgstr "" +msgstr "Dh’iarr {0} clàradh" -#: src/Module/Notifications/Ping.php:237 +#: src/Module/Notifications/Ping.php:255 #, php-format msgid "{0} and %d others requested registration" -msgstr "" +msgstr "Dh’iarr {0} ’s %d eile clàradh" -#: src/Module/OAuth/Acknowledge.php:50 +#: src/Module/OAuth/Acknowledge.php:51 msgid "Authorize application connection" -msgstr "" +msgstr "Ùghdarraich ceangal aplacaide" -#: src/Module/OAuth/Acknowledge.php:52 +#: src/Module/OAuth/Acknowledge.php:53 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" -msgstr "" +msgstr "A bheil thu airson cead a thoirt dhan aplacaid seo airson na postaichean ’s an luchd-aithne agad inntrigeadh agus/no postaichean ùra a chruthachadh às do leth?" #: src/Module/OAuth/Authorize.php:54 msgid "Unsupported or missing response type" -msgstr "" +msgstr "Seòrsa freagairte gun taic ris no a dhìth" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:72 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 msgid "Incomplete request data" -msgstr "" +msgstr "Dàta iarrtais neo-choileanta" #: src/Module/OAuth/Authorize.php:106 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" -msgstr "" +msgstr "Cuir lethbhreac dhen chòd dearbhaidh seo san aplacaid agad is dùin an uinneag seo: %s" -#: src/Module/OAuth/Token.php:96 +#: src/Module/OAuth/Token.php:83 +msgid "Invalid data or unknown client" +msgstr "Dàta mì-dhligheach no cliant nach aithne dhuinn" + +#: src/Module/OAuth/Token.php:108 msgid "Unsupported or missing grant type" -msgstr "" +msgstr "Seòrsa ceadachaidh gun taic ris no a dhìth" + +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "A’ fo-sgrìobhadh a-rithist air luchd-aithne OStatus" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "Cùm an uinneag seo fosgailte gus am bi e deiseil." + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "✔ Deiseil" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "Chan eil neach-aithne OStatus ann airson fo-sgrìobhadh air a-rithist." + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "Fo-sgrìobhadh air luchd-aithne" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "Cha deach neach-aithne a thoirt seachad." + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "Cha d’ fhuair sinn grèim air an fhiosrachadh conaltraidh." + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "Cha d’ fhuair sinn grèim air caraidean a chùm conaltraidh." + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "Cha d’ fhuair sinn grèim air an luchd-aithne a leanas." + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "Cha d’ fhuair sinn grèim air a’ phròifil chèin." + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "Lìonra ris nach eil taic" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Deiseil" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "chaidh leis" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "dh’fhàillig leis" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "chaidh a leigeil seachad" #: src/Module/PermissionTooltip.php:49 #, php-format msgid "Wrong type \"%s\", expected one of: %s" -msgstr "" +msgstr "Seòrsa “%s” ceàrr, an dùil air fear dhen fheadhainn seo: %s" -#: src/Module/PermissionTooltip.php:66 +#: src/Module/PermissionTooltip.php:79 msgid "Model not found" -msgstr "" +msgstr "Cha deach am modail a lorg" -#: src/Module/PermissionTooltip.php:89 +#: src/Module/PermissionTooltip.php:94 msgid "Unlisted" -msgstr "" +msgstr "Falaichte o liostaichean" -#: src/Module/PermissionTooltip.php:107 +#: src/Module/PermissionTooltip.php:112 msgid "Remote privacy information not available." -msgstr "" +msgstr "Chan eil fiosrachadh cèin na prìobhaideachd ri làimh." -#: src/Module/PermissionTooltip.php:116 +#: src/Module/PermissionTooltip.php:121 msgid "Visible to:" -msgstr "" - -#: src/Module/PermissionTooltip.php:200 -#, php-format -msgid "Collection (%s)" -msgstr "" +msgstr "Ri fhaicinn do:" #: src/Module/PermissionTooltip.php:204 #, php-format -msgid "Followers (%s)" -msgstr "" +msgid "Collection (%s)" +msgstr "Cruinneachadh (%s)" -#: src/Module/PermissionTooltip.php:223 +#: src/Module/PermissionTooltip.php:208 #, php-format -msgid "%d more" -msgstr "" +msgid "Followers (%s)" +msgstr "Luchd-leantainn (%s)" #: src/Module/PermissionTooltip.php:227 #, php-format -msgid "To: %s
    " -msgstr "" +msgid "%d more" +msgstr "%d eile" -#: src/Module/PermissionTooltip.php:230 +#: src/Module/PermissionTooltip.php:231 +#, php-format +msgid "To: %s
    " +msgstr "Gu: %s
    " + +#: src/Module/PermissionTooltip.php:234 #, php-format msgid "CC: %s
    " -msgstr "" +msgstr "CC: %s
    " -#: src/Module/PermissionTooltip.php:233 +#: src/Module/PermissionTooltip.php:237 #, php-format msgid "BCC: %s
    " -msgstr "" +msgstr "BCC: %s
    " -#: src/Module/Photo.php:128 +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "Èisteachd: %s
    " + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "Air a chur às leth: %s
    " + +#: src/Module/Photo.php:130 msgid "The Photo is not available." -msgstr "" +msgstr "Chan eil an dealbh ri fhaighinn." -#: src/Module/Photo.php:141 +#: src/Module/Photo.php:155 #, php-format msgid "The Photo with id %s is not available." -msgstr "" +msgstr "Chan eil an dealbh air a bheil an id %s ri fhaighinn." -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:192 #, php-format msgid "Invalid external resource with url %s." -msgstr "" +msgstr "Goireas mì-dhligheach air an taobh a-muigh leis an url %s." -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:194 #, php-format msgid "Invalid photo with id %s." -msgstr "" +msgstr "Dealbh mì-dhligheach air a bheil an id %s." -#: src/Module/Profile/Contacts.php:120 +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "Cha deach am post a lorg." + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Deasaich am post" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "ceangal-lìn" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Cuir a-steach ceangal video" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "ceangal video" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Cuir a-steach ceangal fuaime" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "ceangal fuaime" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Thoir air falbh taga an nì" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Tagh taga gus a thoirt air falbh: " + +#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Thoir air falbh" + +#: src/Module/Profile/Contacts.php:159 msgid "No contacts." -msgstr "" +msgstr "Chan eil neach-aithne ann." -#: src/Module/Profile/Profile.php:82 +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "An loidhne-ama aig %s" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "Na postaichean aig %s" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "Na beachdan aig %s" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:59 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Tha an dealbh nas motha na tha ceadaichte dhe %s" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "Cha deach luchdadh suas an deilbh a choileanadh, feuch ris a-rithist" + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "Tha faidhle an deilbh a dhìth" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "Cha ghabh am frithealaiche ri luchdadh suas deilbh ùir aig an àm seo, cuir fios gun rianaire agad" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "Tha faidhle an deilbh falamh." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "Seall an t-albam" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 msgid "Profile not found." -msgstr "" +msgstr "Cha deach a’ phròifil a lorg." -#: src/Module/Profile/Profile.php:135 +#: src/Module/Profile/Profile.php:158 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" -msgstr "" +msgstr "Tha thu a’ sealltainn air a’ phròifil agad mar %s Sguir dheth" -#: src/Module/Profile/Profile.php:144 src/Module/Settings/Account.php:578 +#: src/Module/Profile/Profile.php:167 msgid "Full Name:" -msgstr "" +msgstr "An t-ainm slàn:" -#: src/Module/Profile/Profile.php:149 +#: src/Module/Profile/Profile.php:172 msgid "Member since:" -msgstr "" +msgstr "Ball o chionn:" -#: src/Module/Profile/Profile.php:155 +#: src/Module/Profile/Profile.php:178 msgid "j F, Y" -msgstr "" +msgstr "j F Y" -#: src/Module/Profile/Profile.php:156 +#: src/Module/Profile/Profile.php:179 msgid "j F" -msgstr "" +msgstr "j F" -#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 msgid "Birthday:" -msgstr "" +msgstr "Co-là breith:" -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 msgid "Age: " -msgstr "" +msgstr "Aois: " -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 #, php-format msgid "%d year old" msgid_plural "%d years old" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%d bhliadhna a dh'aois" +msgstr[1] "%d bhliadhna a dh’aois" +msgstr[2] "%d bliadhnaichean a dh’aois" +msgstr[3] "%d bliadhna a dh’aois" -#: src/Module/Profile/Profile.php:234 -msgid "Forums:" -msgstr "" +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "Tuairisgeul:" -#: src/Module/Profile/Profile.php:246 +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "Buidhnean:" + +#: src/Module/Profile/Profile.php:273 msgid "View profile as:" -msgstr "" +msgstr "Seall a’ phròifil mar:" -#: src/Module/Profile/Profile.php:263 +#: src/Module/Profile/Profile.php:290 msgid "View as" +msgstr "Seall mar" + +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "Chan eil a’ phròifil ri fhaighinn." + +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "Lorgaire mì-dhligheach" + +#: src/Module/Profile/RemoteFollow.php:95 +msgid "The provided profile link doesn't seem to be valid" +msgstr "Chan eil coltas dligheach air ceangal na pròifil a chaidh a sholar" + +#: src/Module/Profile/RemoteFollow.php:100 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." msgstr "" -#: src/Module/Profile/Profile.php:326 src/Module/Profile/Profile.php:329 -#: src/Module/Profile/Status.php:66 src/Module/Profile/Status.php:69 -#: src/Protocol/Feed.php:1025 src/Protocol/OStatus.php:1046 +#: src/Module/Profile/RemoteFollow.php:128 +msgid "Friend/Connection Request" +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:129 #, php-format -msgid "%s's timeline" +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 "" -#: src/Module/Profile/Profile.php:327 src/Module/Profile/Status.php:67 -#: src/Protocol/Feed.php:1029 src/Protocol/OStatus.php:1051 +#: src/Module/Profile/RemoteFollow.php:130 #, php-format -msgid "%s's posts" +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 "" -#: src/Module/Profile/Profile.php:328 src/Module/Profile/Status.php:68 -#: src/Protocol/Feed.php:1032 src/Protocol/OStatus.php:1055 -#, php-format -msgid "%s's comments" +#: src/Module/Profile/RemoteFollow.php:131 +msgid "Your Webfinger address or profile URL:" msgstr "" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "" + +#: src/Module/Profile/Schedule.php:83 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:84 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:86 +#: src/Module/Profile/Schedule.php:85 msgid "Remove post" msgstr "" +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "" + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Cha b’ urrainn dhuinn sùil a thoir air ionad do dhachaigh." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "" + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Chaidh thu thairis air àireamh nan teachdaireachdan-balla làitheil dha %s. Dh’fhàillig leis an teachdaireachd." + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "Nam bu mhiann leat gum freagair %s, dearbh gun ceadaich roghainnean prìobhaideachd na làraich agad puist-d phrìobhaideach o sheòladairean nach aithne dhut." + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "" + #: src/Module/Register.php:84 msgid "Only parent users can create additional accounts." msgstr "" +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Chlàradh na tha ceadaichte de chunntasan ùra air an làrach seo an-diugh. Feuch ris a-rithist a-màireach." + #: src/Module/Register.php:116 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " @@ -8591,8 +9147,8 @@ msgstr "" msgid "Please repeat your e-mail address:" msgstr "" -#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:97 -#: src/Module/Settings/Account.php:569 +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 msgid "New Password:" msgstr "" @@ -8600,8 +9156,8 @@ msgstr "" msgid "Leave empty for an auto generated password." msgstr "" -#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:98 -#: src/Module/Settings/Account.php:570 +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 msgid "Confirm:" msgstr "" @@ -8616,6 +9172,10 @@ msgstr "" msgid "Choose a nickname: " msgstr "" +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Ion-phortaich" + #: src/Module/Register.php:174 msgid "Import your profile to this friendica instance" msgstr "" @@ -8624,11 +9184,11 @@ msgstr "" msgid "Note: This node explicitly contains adult content" msgstr "" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:155 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 msgid "Parent Password:" msgstr "" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:155 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "" @@ -8658,69 +9218,37 @@ msgid "" "Registration successful. Please check your email for further instructions." msgstr "" -#: src/Module/Register.php:339 +#: src/Module/Register.php:342 #, php-format msgid "" "Failed to send email message. Here your accout details:
    login: %s
    " "password: %s

    You can change your password after login." msgstr "" -#: src/Module/Register.php:345 +#: src/Module/Register.php:348 msgid "Registration successful." msgstr "" -#: src/Module/Register.php:350 src/Module/Register.php:357 +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 msgid "Your registration can not be processed." msgstr "" -#: src/Module/Register.php:356 +#: src/Module/Register.php:363 msgid "You have to leave a request note for the admin." msgstr "" -#: src/Module/Register.php:402 +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "" + +#: src/Module/Register.php:395 msgid "Your registration is pending approval by the site owner." -msgstr "" +msgstr "Tha an clàradh agad a’ feitheamh air aontachadh o shealbhadair na làraich." -#: src/Module/RemoteFollow.php:71 -msgid "Profile unavailable." -msgstr "" - -#: src/Module/RemoteFollow.php:77 -msgid "Invalid locator" -msgstr "" - -#: src/Module/RemoteFollow.php:84 -msgid "The provided profile link doesn't seem to be valid" -msgstr "" - -#: src/Module/RemoteFollow.php:89 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "" - -#: src/Module/RemoteFollow.php:121 -msgid "Friend/Connection Request" -msgstr "" - -#: src/Module/RemoteFollow.php:122 -#, 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 "" - -#: src/Module/RemoteFollow.php:123 -#, 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 "" - -#: src/Module/RemoteFollow.php:124 -msgid "Your Webfinger address or profile URL:" -msgstr "" +#: src/Module/Search/Acl.php:73 +msgid "You must be logged in to use this module." +msgstr "Feumaidh tu clàradh a-steach mus urrainn dhut am mòideal seo a chleachdadh." #: src/Module/Search/Index.php:69 msgid "Only logged in users are permitted to perform a search." @@ -8735,15 +9263,15 @@ msgstr "" msgid "Items tagged with: %s" msgstr "" -#: src/Module/Search/Saved.php:58 +#: src/Module/Search/Saved.php:59 msgid "Search term was not saved." msgstr "" -#: src/Module/Search/Saved.php:61 +#: src/Module/Search/Saved.php:62 msgid "Search term already saved." msgstr "" -#: src/Module/Search/Saved.php:67 +#: src/Module/Search/Saved.php:68 msgid "Search term was not removed." msgstr "" @@ -8751,49 +9279,49 @@ msgstr "" msgid "Create a New Account" msgstr "" -#: src/Module/Security/Login.php:143 +#: src/Module/Security/Login.php:142 msgid "Your OpenID: " msgstr "" -#: src/Module/Security/Login.php:146 +#: src/Module/Security/Login.php:145 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "" -#: src/Module/Security/Login.php:148 +#: src/Module/Security/Login.php:147 msgid "Or login using OpenID: " msgstr "" -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:161 msgid "Password: " msgstr "" -#: src/Module/Security/Login.php:163 +#: src/Module/Security/Login.php:162 msgid "Remember me" msgstr "" -#: src/Module/Security/Login.php:172 +#: src/Module/Security/Login.php:171 msgid "Forgot your password?" msgstr "" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:174 msgid "Website Terms of Service" msgstr "" -#: src/Module/Security/Login.php:176 +#: src/Module/Security/Login.php:175 msgid "terms of service" msgstr "" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:177 msgid "Website Privacy Policy" msgstr "" -#: src/Module/Security/Login.php:179 +#: src/Module/Security/Login.php:178 msgid "privacy policy" msgstr "" -#: src/Module/Security/Logout.php:83 +#: src/Module/Security/Logout.php:84 #: src/Module/Security/TwoFactor/SignOut.php:78 #: src/Module/Security/TwoFactor/SignOut.php:86 #: src/Module/Security/TwoFactor/SignOut.php:108 @@ -8817,88 +9345,88 @@ msgid "" "account to add the OpenID to it." msgstr "" -#: src/Module/Security/PasswordTooLong.php:53 -#: src/Module/Settings/Account.php:66 +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 msgid "Passwords do not match." msgstr "" -#: src/Module/Security/PasswordTooLong.php:60 +#: src/Module/Security/PasswordTooLong.php:64 msgid "Password does not need changing." msgstr "" -#: src/Module/Security/PasswordTooLong.php:73 -#: src/Module/Settings/Account.php:80 +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 msgid "Password unchanged." msgstr "" -#: src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Security/PasswordTooLong.php:91 msgid "Password Too Long" msgstr "" -#: src/Module/Security/PasswordTooLong.php:88 +#: src/Module/Security/PasswordTooLong.php:92 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:89 +#: src/Module/Security/PasswordTooLong.php:93 msgid "Update Password" msgstr "" -#: src/Module/Security/PasswordTooLong.php:96 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 msgid "Current Password:" msgstr "" -#: src/Module/Security/PasswordTooLong.php:96 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 msgid "Your current password to confirm the changes" msgstr "" -#: src/Module/Security/PasswordTooLong.php:97 -#: src/Module/Settings/Account.php:554 +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." +"spaces and accentuated letters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:97 -#: src/Module/Settings/Account.php:555 +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 msgid "Password length is limited to 72 characters." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:73 +#: src/Module/Security/TwoFactor/Recovery.php:74 #, php-format msgid "Remaining recovery codes: %d" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:79 +#: src/Module/Security/TwoFactor/Recovery.php:80 #: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:95 msgid "Invalid code, please retry." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:99 msgid "Two-factor recovery" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:100 msgid "" "

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

    " msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:101 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:102 msgid "Please enter a recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:103 msgid "Submit recovery code and complete login" msgstr "" @@ -8920,29 +9448,29 @@ msgstr "" msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:95 +#: src/Module/Security/TwoFactor/Trust.php:96 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:140 +#: src/Module/Security/TwoFactor/Trust.php:141 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:142 msgid "" "

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

    " msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:143 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:144 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:145 msgid "Trust" msgstr "" @@ -8960,7 +9488,7 @@ msgid "" msgstr "" #: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:154 +#: src/Module/Settings/TwoFactor/Verify.php:155 msgid "Please enter a code from your authentication app" msgstr "" @@ -8968,119 +9496,119 @@ msgstr "" msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:95 +#: src/Module/Settings/Account.php:96 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:98 +#: src/Module/Settings/Account.php:99 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:107 +#: src/Module/Settings/Account.php:108 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:112 +#: src/Module/Settings/Account.php:113 msgid "Invalid email." msgstr "" -#: src/Module/Settings/Account.php:118 +#: src/Module/Settings/Account.php:117 msgid "Cannot change to that email." msgstr "" -#: src/Module/Settings/Account.php:148 src/Module/Settings/Account.php:200 -#: src/Module/Settings/Account.php:220 src/Module/Settings/Account.php:304 -#: src/Module/Settings/Account.php:353 +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:365 +#: src/Module/Settings/Account.php:364 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:384 +#: src/Module/Settings/Account.php:383 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:397 +#: src/Module/Settings/Account.php:396 msgid "Relocate message has been send to your contacts" -msgstr "" +msgstr "Chaidh teachdaireachd mun imrich a chur dhan luchd-aithne agad" -#: src/Module/Settings/Account.php:414 +#: src/Module/Settings/Account.php:413 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:455 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:457 -msgid "Community Forum Subtypes" +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:466 msgid "Account for a personal profile." msgstr "" -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:473 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:480 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:488 +#: src/Module/Settings/Account.php:487 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:495 +#: src/Module/Settings/Account.php:494 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." -msgstr "" +msgstr "Cunntas do phròifil phearsanta àbhaisteach a dh’iarras aontachadh a làimh air “Caraidean” is “Luchd-leantainn”." -#: src/Module/Settings/Account.php:502 +#: src/Module/Settings/Account.php:501 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:509 +#: src/Module/Settings/Account.php:508 msgid "Automatically approves all contact requests." msgstr "" -#: src/Module/Settings/Account.php:516 +#: src/Module/Settings/Account.php:515 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:521 -msgid "Private Forum [Experimental]" +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:522 msgid "Requires manual approval of contact requests." -msgstr "" +msgstr "Feumaidh tu aontachadh ri iarrtasan luchd-aithne a làimh." -#: src/Module/Settings/Account.php:532 +#: src/Module/Settings/Account.php:531 msgid "OpenID:" msgstr "" -#: src/Module/Settings/Account.php:532 +#: src/Module/Settings/Account.php:531 msgid "(Optional) Allow this OpenID to login to this account." msgstr "" -#: src/Module/Settings/Account.php:540 +#: src/Module/Settings/Account.php:539 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:540 +#: src/Module/Settings/Account.php:539 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9088,89 +9616,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:546 +#: src/Module/Settings/Account.php:545 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Thèid a’ phròifil agad fhoillseachadh sna h-eòlairean cho-naisgte aig Friendica cuideachd (m.e. %s)." -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:558 msgid "Account Settings" msgstr "" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:559 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:566 msgid "Password Settings" msgstr "" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:568 msgid "Leave password fields blank unless changing" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:570 msgid "Password:" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:570 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:573 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:575 msgid "Basic Settings" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "" + +#: src/Module/Settings/Account.php:577 msgid "Email Address:" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:578 msgid "Your Timezone:" msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "Your Language:" msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:580 msgid "Default Post Location:" msgstr "" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:581 msgid "Use Browser Location:" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:583 msgid "Security and Privacy Settings" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:585 msgid "Maximum Friend Requests/Day:" msgstr "" -#: src/Module/Settings/Account.php:587 src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 msgid "(to prevent spam abuse)" msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:587 msgid "Allow your profile to be searchable globally?" msgstr "An gabh a’ phròifil agad a lorg gu co-naisgte?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:587 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 " @@ -9178,43 +9711,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:588 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:588 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: src/Module/Settings/Account.php:591 -msgid "Hide your profile details from anonymous viewers?" +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:589 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." +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 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 " @@ -9222,833 +9755,1177 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "Allow friends to post to your profile page?" msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "’S urrainn dhan luchd-aithne agad postaichean a sgrìobhadh air balla do phròifile. Thèid na postaichean sin a sgaoileadh dhan luchd-aithne agad" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "Allow friends to tag your posts?" msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:594 msgid "Permit unknown people to send you private mail?" msgstr "" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:594 msgid "" "Friendica network users may send you private messages even if they are not " "in your contact list." msgstr "" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:595 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "" + +#: src/Module/Settings/Account.php:598 msgid "Default Post Permissions" msgstr "" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:602 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:603 msgid "Automatically expire posts after this many days:" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:603 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:604 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:604 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:605 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:605 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:606 msgid "Expire starred posts" msgstr "Falbhaidh an ùine air postaichean le rionnag riutha" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:606 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Nuair a bhios rionnag ri post, chan fhalbh an ùine orra. Sgrìobhaidh an roghainn seo thairis air a’ ghiùlan sin." -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:607 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:607 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:610 msgid "Notification Settings" msgstr "" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:611 msgid "Send a notification email when:" msgstr "" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:612 msgid "You receive an introduction" -msgstr "" +msgstr "Fhuair thu cur an aithne" + +#: src/Module/Settings/Account.php:613 +msgid "Your introductions are confirmed" +msgstr "Chaidh na cuir an aithne agad a dhearbhadh" #: src/Module/Settings/Account.php:614 -msgid "Your introductions are confirmed" -msgstr "" - -#: src/Module/Settings/Account.php:615 msgid "Someone writes on your profile wall" msgstr "" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:615 msgid "Someone writes a followup comment" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:616 msgid "You receive a private message" msgstr "" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:617 msgid "You receive a friend suggestion" msgstr "" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:618 msgid "You are tagged in a post" msgstr "" #: src/Module/Settings/Account.php:620 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: src/Module/Settings/Account.php:622 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:621 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:622 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:623 msgid "Someone liked your content" msgstr "’S toigh le cuideigin an t-susbaint agad" -#: src/Module/Settings/Account.php:625 src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:624 msgid "Someone shared your content" msgstr "Cho-roinn cuideigin an t-susbaint agad" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:625 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:626 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:627 msgid "Someone commented in a thread where you interacted" -msgstr "" +msgstr "Chuir cuideigin beachd ri snàithlean san do rinn thu co-luadar" -#: src/Module/Settings/Account.php:631 +#: src/Module/Settings/Account.php:629 msgid "Activate desktop notifications" msgstr "" -#: src/Module/Settings/Account.php:631 +#: src/Module/Settings/Account.php:629 msgid "Show desktop popup on new notifications" msgstr "" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:633 msgid "Text-only notification emails" msgstr "" -#: src/Module/Settings/Account.php:637 +#: src/Module/Settings/Account.php:635 msgid "Send text only notification emails, without the html part" msgstr "" -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:639 msgid "Show detailled notifications" msgstr "" -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:641 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:645 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:647 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:652 +#: src/Module/Settings/Account.php:650 msgid "Advanced Account/Page Type Settings" msgstr "" -#: src/Module/Settings/Account.php:653 +#: src/Module/Settings/Account.php:651 msgid "Change the behaviour of this account for special situations" msgstr "" -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:654 msgid "Import Contacts" msgstr "" -#: src/Module/Settings/Account.php:657 +#: src/Module/Settings/Account.php:655 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: src/Module/Settings/Account.php:658 +#: src/Module/Settings/Account.php:656 msgid "Upload File" msgstr "" -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:659 msgid "Relocate" -msgstr "" +msgstr "Imrich" -#: src/Module/Settings/Account.php:662 +#: src/Module/Settings/Account.php:660 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "" -#: src/Module/Settings/Account.php:663 +#: src/Module/Settings/Account.php:661 msgid "Resend relocate message to contacts" +msgstr "Cuir teachdaireachd mun imrich dhan neach-aithne" + +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "Roghainnean nan tuilleadan" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "Cha deach roghainnean tuilleadain a rèiteachadh" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "Cha deach leinn ceangal a dhèanamh leis a’ chunntas puist-d a’ cleachdadh nan roghainnean a chaidh a thoirt seachad." + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora* (Socialhome, Hubzilla)" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Delegation.php:53 +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "OStatus (GNU Social)" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "Tha an t-inntrigeadh le post-d à comas dhan làrach seo." + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "Chan eil gin" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "Roghainnean coitcheann nam meadhanan sòisealta" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "Farsaingeachd na susbainte air a leanas tu" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "Nochdaidh na còmhraidhean sa ghabh an fheadhainn air a leanas tu pàirt ach nach do thòisich iad fhèin air an loidhne-ama agad a ghnàth. ’S urrainn dhut seo a chur dheth no a leudachadh ach an nochd na còmhraidhean far an toigh leis an fheadhainn air a leanas tu post." + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "Na còmhraidhean a thòisich cuideigin air a leanas mi a-mhàin" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "Na còmhraidhean a thòisich cuideigin air a leanas mi no a chuir iad beachd riutha (bun-roghainn)" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "Còmhradh sam bith leis an do rinn cuideigin air a leanas mi co-luadar, a’ gabhail a-staigh nas toigh leotha" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "Cuir rabhadh susbainte an comas" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "’S urrainn dhan fheadhainn air lìonraidhean mar Mastodon no Pleroma raon rabhadh susbainte a shuidheachadh a cho-theannaicheas am post aca a ghnàth. Cuiridh seo an co-theannachadh fèin-obrachail an comas seach a bhith a’ suidheachadh an rabhadh susbainte mar thiotal a’ phuist. Cha doir seo buaidh air criathradh susbainte sam bith eile a shuidhicheas tu." + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "Cuir an giorrachadh tapaidh an comas" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "Mar as àbhaist, feuchaidh an siostam gun dèid an ceangal as fheàrr a lorg gus a chur ri postaichean giorraichte. Ma tha seo à comas, tomhaidh gach post giorraichte ris a’ phost tùsail air friendica an-còmhnaidh." + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "Cuir an comas giorrachadh teacsa sìmplidh" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "Mar as àbhaist, giorraichidh an siostam na postaichean aig an ath earrann. Ma tha an roghainn seo an comas, giorraichidh an siostam an teacsa aig crìoch nan caractaran ceadaichte." + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "Cuir tiotal a’ cheangail ris" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "Nuair a bhios seo an gnìomh, thèid tiotal a’ cheangail a chur ris mar tiotal air postaichean gu diaspora*. Tha seo as fheumaile dhan luchd-aithne “remote-self” a cho-roinneas susbaint inbhir." + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "Nuair a bhios seo an gnìomh, bidh an t-aon ghiùlan aig ceanglaichean a thèid a chur ri bonn puist ’s a tha aig ceanglaichean a thèid a chur ris san eadar-aghaidh-lìn." + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "An cunntas ActivityPub/GNU Social dìleabach agad" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "Ma chuireas tu ainm seann-chunntais ris o shiostam stèidhichte air ActivityPub no ainm do chunntais GNU Social/Statusnet an-seo (san fhòrmat cleachdaiche@àrainn.tld), thèid an luchd-aithne agad a chur ris gu fèin-obrachail. Thèid an raon fhalamhachadh nuair a bhios sin deiseil." + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "Càraich fo-sgrìobhaidhean OStatus" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "Suidheachadh a’ phuist-d/a’ bhogsa-phuist" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Ma tha thu airson an t-seirbheis seo a chleachdadh airson conaltradh le luchd-aithne air a’ post-d (gu roghainneil), sònraich an dòigh air a nì thu ceangal leis a’ bhogsa-phuist agad." + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "An turas mu dheireadh a chaidh leinn sùil a thoirt air a’ phost-d:" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "Ainm frithealaiche IMAP:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "Port IMAP:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "Tèarainteachd:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "Ainm clàradh a-steach a’ phuist-d:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "Facal-faire a’ phuist-d:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "An seòladh Freagairt-gu:" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "Cuir postaichean poblach dhan a h-uile neach-aithne puist-d:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "Gnìomh às dèid an ion-phortaidh:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "Gluais gu pasgan" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "Gluais gu pasgan:" + +#: src/Module/Settings/Delegation.php:54 msgid "Delegation successfully granted." -msgstr "" +msgstr "Chaidh neach-ionaid a dhèanamh dheth." -#: src/Module/Settings/Delegation.php:55 +#: src/Module/Settings/Delegation.php:56 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:59 +#: src/Module/Settings/Delegation.php:60 msgid "Delegation successfully revoked." -msgstr "" +msgstr "Chaidh ceadan neach-ionaid a thoirt air falbh." -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 +#: src/Module/Settings/Delegation.php:82 +#: src/Module/Settings/Delegation.php:104 msgid "" "Delegated administrators can view but not change delegation permissions." -msgstr "" +msgstr "Chì rianairean a tha ’nan luchd-ionaid na ceadan ach chan urrainn dhaibh an atharrachadh." -#: src/Module/Settings/Delegation.php:95 +#: src/Module/Settings/Delegation.php:96 msgid "Delegate user not found." -msgstr "" +msgstr "Cha deach cleachdaiche an neach-ionaid a lorg." -#: src/Module/Settings/Delegation.php:143 +#: src/Module/Settings/Delegation.php:144 msgid "No parent user" msgstr "" -#: src/Module/Settings/Delegation.php:154 -#: src/Module/Settings/Delegation.php:165 +#: src/Module/Settings/Delegation.php:155 +#: src/Module/Settings/Delegation.php:166 msgid "Parent User" msgstr "" -#: src/Module/Settings/Delegation.php:162 +#: src/Module/Settings/Delegation.php:163 msgid "Additional Accounts" msgstr "" -#: src/Module/Settings/Delegation.php:163 +#: src/Module/Settings/Delegation.php:164 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." -msgstr "" +msgstr "Clàraich cunntasan a bharrachd a thèid a cho-cheangal ris a’ chunntas làithreach agad ach an urrainn dhut an stiùireadh on chunntas seo." -#: src/Module/Settings/Delegation.php:164 +#: src/Module/Settings/Delegation.php:165 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:168 +#: src/Module/Settings/Delegation.php:169 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "" -#: src/Module/Settings/Delegation.php:172 +#: src/Module/Settings/Delegation.php:173 msgid "Delegates" -msgstr "" +msgstr "Luchd-ionaid" -#: src/Module/Settings/Delegation.php:174 +#: src/Module/Settings/Delegation.php:175 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 "" +msgstr "’S urrainn dhan luchd-ionaid nì sam bith mun chunntas/duilleag seo a stiùireadh ach roghainnean bunaiteach a’ chunntais. Na dèan neach-ionaid dhan chunntas phearsanta agad de dhuine sam bith anns nach eil làn-earbsa agad." -#: src/Module/Settings/Delegation.php:175 +#: src/Module/Settings/Delegation.php:176 msgid "Existing Page Delegates" -msgstr "" +msgstr "Luchd-ionaid làithreach na duilleige" -#: src/Module/Settings/Delegation.php:177 +#: src/Module/Settings/Delegation.php:178 msgid "Potential Delegates" -msgstr "" +msgstr "Tagraichean luchd-ionaid" -#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:181 msgid "Add" msgstr "" -#: src/Module/Settings/Delegation.php:181 +#: src/Module/Settings/Delegation.php:182 msgid "No entries." msgstr "" -#: src/Module/Settings/Display.php:107 -msgid "The theme you chose isn't available." -msgstr "" - #: src/Module/Settings/Display.php:146 +msgid "The theme you chose isn't available." +msgstr "Chan eil an t-ùrlar a thagh thu ri fhaighinn." + +#: src/Module/Settings/Display.php:186 #, php-format msgid "%s - (Unsupported)" msgstr "" -#: src/Module/Settings/Display.php:192 +#: src/Module/Settings/Display.php:221 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:222 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:223 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:224 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:259 msgid "Display Settings" msgstr "" -#: src/Module/Settings/Display.php:194 +#: src/Module/Settings/Display.php:261 msgid "General Theme Settings" -msgstr "" +msgstr "Roghainnean coitcheann an ùrlair" -#: src/Module/Settings/Display.php:195 +#: src/Module/Settings/Display.php:262 msgid "Custom Theme Settings" -msgstr "" +msgstr "Roghainnean gnàthaichte an ùrlair" -#: src/Module/Settings/Display.php:196 +#: src/Module/Settings/Display.php:263 msgid "Content Settings" msgstr "" -#: src/Module/Settings/Display.php:197 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:161 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 +#: src/Module/Settings/Display.php:264 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 msgid "Theme settings" +msgstr "Roghainnean an ùrlair" + +#: src/Module/Settings/Display.php:265 +msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:198 -msgid "Calendar" -msgstr "" - -#: src/Module/Settings/Display.php:204 +#: src/Module/Settings/Display.php:272 msgid "Display Theme:" -msgstr "" +msgstr "Ùrlar taisbeanaidh:" -#: src/Module/Settings/Display.php:205 +#: src/Module/Settings/Display.php:273 msgid "Mobile Theme:" -msgstr "" +msgstr "Ùrlar mobile:" -#: src/Module/Settings/Display.php:208 +#: src/Module/Settings/Display.php:276 msgid "Number of items to display per page:" msgstr "" -#: src/Module/Settings/Display.php:208 src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277 msgid "Maximum of 100 items" msgstr "" -#: src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:277 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:210 +#: src/Module/Settings/Display.php:278 msgid "Update browser every xx seconds" msgstr "" -#: src/Module/Settings/Display.php:210 +#: src/Module/Settings/Display.php:278 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:211 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "" - -#: src/Module/Settings/Display.php:211 -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 "" - -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:279 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:279 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:280 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:280 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:281 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:281 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:282 msgid "Display the Dislike feature" msgstr "Seall an gleus “Cha toigh leam seo”" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:282 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "Seall am putan “Cha toigh leam seo” agus freagairtean “Cha toigh leam seo” air postaichean is beachdan." -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:283 msgid "Display the resharer" msgstr "Seall cò rinn an co-roinneadh" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:283 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Seall a’ chiad neach a rinn co-roinneadh ’na ìomhaigheag agus teacsa air an nì a chaidh a cho-roinneadh." -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:284 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:284 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:219 +#: src/Module/Settings/Display.php:285 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:285 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Timelines for the network page:" +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Select all the timelines that you want to see on your network page." +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Channel languages:" +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Select all languages that you want to see in your channels." +msgstr "" + +#: src/Module/Settings/Display.php:290 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Profile/Index.php:83 -msgid "Profile Name is required." +#: src/Module/Settings/Display.php:291 +msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Profile/Index.php:131 +#: src/Module/Settings/Display.php:300 src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:312 +#, php-format +msgid "%s: %s" +msgstr "" + +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "Gleusan a bharrachd" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Aplacaidean ceangailte" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "Thoir an t-ùghdarrachadh air falbh" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:167 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:172 -#: src/Module/Settings/Profile/Index.php:192 +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:173 -#: src/Module/Settings/Profile/Index.php:193 +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:183 -#: src/Module/Settings/Profile/Index.php:203 +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:184 -#: src/Module/Settings/Profile/Index.php:204 +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 msgid "(click to open/close)" msgstr "" -#: src/Module/Settings/Profile/Index.php:190 +#: src/Module/Settings/Profile/Index.php:224 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:220 +#: src/Module/Settings/Profile/Index.php:247 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:249 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:255 msgid "Profile Actions" msgstr "" -#: src/Module/Settings/Profile/Index.php:221 +#: src/Module/Settings/Profile/Index.php:256 msgid "Edit Profile Details" msgstr "" -#: src/Module/Settings/Profile/Index.php:223 +#: src/Module/Settings/Profile/Index.php:258 msgid "Change Profile Photo" msgstr "" -#: src/Module/Settings/Profile/Index.php:228 +#: src/Module/Settings/Profile/Index.php:261 msgid "Profile picture" msgstr "" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:262 msgid "Location" msgstr "" -#: src/Module/Settings/Profile/Index.php:230 src/Util/Temporal.php:93 -#: src/Util/Temporal.php:95 +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 msgid "Miscellaneous" msgstr "" -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:264 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:233 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 msgid "Upload Profile Photo" msgstr "" -#: src/Module/Settings/Profile/Index.php:237 -msgid "Display name:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:240 -msgid "Street Address:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:241 -msgid "Locality/City:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:242 -msgid "Region/State:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:243 -msgid "Postal/Zip Code:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:244 -msgid "Country:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "XMPP (Jabber) address:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "" -"The XMPP address will be published so that people can follow you there." -msgstr "" - -#: src/Module/Settings/Profile/Index.php:247 -msgid "Matrix (Element) address:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:247 -msgid "" -"The Matrix address will be published so that people can follow you there." -msgstr "" - -#: src/Module/Settings/Profile/Index.php:248 -msgid "Homepage URL:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "Public Keywords:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "Private Keywords:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "(Used for searching profiles, never shown to others)" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:251 +#: src/Module/Settings/Profile/Index.php:266 #, 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.

    " +"\t\t\t\t

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

    " msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:108 -#: src/Module/Settings/Profile/Photo/Crop.php:126 -#: src/Module/Settings/Profile/Photo/Crop.php:144 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 +#: src/Module/Settings/Profile/Photo/Index.php:101 #, php-format msgid "Image size reduction [%s] failed." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Crop.php:150 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:156 +#: src/Module/Settings/Profile/Photo/Crop.php:155 msgid "Unable to process image" msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:175 +#: src/Module/Settings/Profile/Photo/Crop.php:174 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:197 +#: src/Module/Settings/Profile/Photo/Crop.php:196 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:223 -#: src/Module/Settings/Profile/Photo/Crop.php:227 +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 msgid "Crop Image" msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:224 +#: src/Module/Settings/Profile/Photo/Crop.php:223 msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:225 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:45 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:132 msgid "or" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:134 msgid "skip this step" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:136 msgid "select a photo from your photo albums" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:64 -#: src/Module/Settings/TwoFactor/Recovery.php:62 -#: src/Module/Settings/TwoFactor/Trusted.php:65 -#: src/Module/Settings/TwoFactor/Verify.php:68 +#: src/Module/Settings/RemoveMe.php:94 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[Brath siostam Friendica]" + +#: src/Module/Settings/RemoveMe.php:94 +msgid "User deleted their account" +msgstr "Sguab an cleachdaiche às an cunntas aca" + +#: src/Module/Settings/RemoveMe.php:95 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "Sguab cleachdaiche às an cunntas aca air an nòd Friendica agad. Dèan cinnteach gun dèid an dàta aca a thoirt air falbh o na lethbhreacan-glèidhidh." + +#: src/Module/Settings/RemoveMe.php:96 +#, php-format +msgid "The user id is %d" +msgstr "’S e %d ID a’ chleachdaiche" + +#: src/Module/Settings/RemoveMe.php:108 +msgid "Your user account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:128 +msgid "Remove My Account" +msgstr "Thoir air falbh an cunntas agam" + +#: src/Module/Settings/RemoveMe.php:129 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Bheir seo air falbh an cunntas agad gu tur. Nuair a bhios sin air a thachairt, cha ghabh aiseag." + +#: src/Module/Settings/RemoveMe.php:131 +msgid "Please enter your password for verification:" +msgstr "Cuir a-steach am facal-faire agad airson a dhearbhadh:" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "" + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 msgid "Please enter your password to access this page." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:82 +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:85 +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:89 +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:95 +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:105 +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 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 "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 msgid "Description" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:135 +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 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 "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:141 +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 msgid "Generate" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:69 +#: src/Module/Settings/TwoFactor/Index.php:68 msgid "Two-factor authentication successfully disabled." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:121 +#: src/Module/Settings/TwoFactor/Index.php:120 msgid "" "

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

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Authenticator app" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Not Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:127 +#: src/Module/Settings/TwoFactor/Index.php:126 msgid "

    You haven't finished configuring your authenticator app.

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:128 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "

    Your authenticator app is correctly configured.

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:130 +#: src/Module/Settings/TwoFactor/Index.php:129 msgid "Recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:131 +#: src/Module/Settings/TwoFactor/Index.php:130 msgid "Remaining valid codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "" "

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

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:135 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:136 +#: src/Module/Settings/TwoFactor/Index.php:135 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "" "

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

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "Current password:" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:142 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "Enable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:143 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Disable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:144 +#: src/Module/Settings/TwoFactor/Index.php:143 msgid "Show recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "Manage app-specific passwords" -msgstr "" +msgstr "Stiùir na faclan-faire sònraichte do dh’aplacaidean" + +#: src/Module/Settings/TwoFactor/Index.php:145 +msgid "Manage trusted browsers" +msgstr "Stiùir brabhsairean earbsach" #: src/Module/Settings/TwoFactor/Index.php:146 -msgid "Manage trusted browsers" -msgstr "" - -#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:78 +#: src/Module/Settings/TwoFactor/Recovery.php:80 msgid "New recovery codes successfully generated." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:104 +#: src/Module/Settings/TwoFactor/Recovery.php:106 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:106 +#: src/Module/Settings/TwoFactor/Recovery.php:108 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 " @@ -10057,68 +10934,68 @@ msgid "" "account.

    " msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:108 +#: src/Module/Settings/TwoFactor/Recovery.php:110 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:111 msgid "Generate new recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "Next: Verification" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:82 +#: src/Module/Settings/TwoFactor/Trusted.php:84 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:92 +#: src/Module/Settings/TwoFactor/Trusted.php:94 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:134 +#: src/Module/Settings/TwoFactor/Trusted.php:136 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:135 +#: src/Module/Settings/TwoFactor/Trusted.php:137 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 "" -#: src/Module/Settings/TwoFactor/Trusted.php:136 +#: src/Module/Settings/TwoFactor/Trusted.php:138 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:137 +#: src/Module/Settings/TwoFactor/Trusted.php:139 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:141 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:142 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:143 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Module/Settings/TwoFactor/Trusted.php:145 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:90 +#: src/Module/Settings/TwoFactor/Verify.php:91 msgid "Two-factor authentication successfully activated." msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:124 +#: src/Module/Settings/TwoFactor/Verify.php:125 #, php-format msgid "" "

    Or you can submit the authentication settings manually:

    \n" @@ -10138,68 +11015,105 @@ msgid "" "" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:144 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Two-factor code verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:146 +#: src/Module/Settings/TwoFactor/Verify.php:147 msgid "" "

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

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

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

    %s

    " msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:155 +#: src/Module/Settings/TwoFactor/Verify.php:156 msgid "Verify code and enable two-factor authentication" msgstr "" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 msgid "Export account" msgstr "" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 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 "" -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:91 msgid "Export all" msgstr "" -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:91 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 "" -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:92 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:92 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/HTTPException.php:51 +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:37 +msgid "" +"This node has blocked the top-level author or the author of the shared post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:38 +msgid "" +"You have ignored or blocked the top-level author or the author of the shared" +" post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:39 +msgid "" +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "" + +#: src/Module/Special/HTTPException.php:78 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:55 +#: src/Module/Special/HTTPException.php:83 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:57 src/Module/Tos.php:91 +#: src/Module/Tos.php:58 src/Module/Tos.php:107 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" @@ -10210,30 +11124,111 @@ msgid "" "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 "Aig àm a’ chlàraidh agus a chùm conaltraidh eadar cunntas a’ chleachdaiche ’s an luchd-aithne aca, feumaidh an cleachdaiche ainm taisbeanaidh (ainm-pinn), ainm-cleachdaiche (far-ainm) agus seòladh puist-d a tha ag obair a thoirt seachad. Gabhaidh na h-ainmean inntrigeadh air duilleag pròifil a’ chunntais le duine sam bith a thadhlas air an duilleag, fiù mura dèid fiosrachadh eile na pròifil a shealltainn. Cha dèid an seòladh puist-d a chleachdadh ach airson brathan a chur dhan chleachdaiche mu chonaltradh agus cha dèid a shealltainn gu poblach. Tha cur a’ chunntais ri liosta nan cleachdaichean ann an eòlaire an nòid no san eòlaire cho-naisgte roghainneil agus gabhaidh sin a shuidheachadh ann an roghainnean a’ chleachdaiche; chan eil e riatanach dhan chonaltradh." +msgstr "Aig àm a’ chlàraidh agus a chùm conaltraidh eadar cunntas a’ chleachdaiche ’s an luchd-aithne aca, feumaidh an cleachdaiche ainm taisbeanaidh (ainm-pinn), ainm-cleachdaiche (far-ainm) agus seòladh puist-d a tha ag obair a thoirt seachad. Gabhaidh na h-ainmean inntrigeadh air duilleag pròifil a’ chunntais le duine sam bith a thadhlas air an duilleag, fiù mura dèid fiosrachadh eile na pròifil a shealltainn. Cha dèid an seòladh puist-d a chleachdadh ach airson brathan a chur dhan chleachdaiche mu co-luadar agus cha dèid a shealltainn gu poblach. Tha cur a’ chunntais ri liosta nan cleachdaichean ann an eòlaire an nòid no san eòlaire cho-naisgte roghainneil agus gabhaidh sin a shuidheachadh ann an roghainnean a’ chleachdaiche; chan eil e riatanach dhan chonaltradh." -#: src/Module/Tos.php:58 src/Module/Tos.php:92 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 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 "" -#: src/Module/Tos.php:59 src/Module/Tos.php:93 +#: src/Module/Tos.php:60 src/Module/Tos.php:109 #, 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." +"href=\"%1$s/settings/removeme\">%1$s/settings/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 "" -#: src/Module/Tos.php:62 src/Module/Tos.php:90 +#: src/Module/Tos.php:63 src/Module/Tos.php:106 msgid "Privacy Statement" msgstr "" +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "" + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "Chan eil am an nì a dh’iarr thu ann no chaidh a sguabadh às." + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "Chan fhaod ach rianairean cleachdaichean ion-phortadh gu frithealaichean dùinte." + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "Imrich an cunntas" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "’S urrainn dhut cunntas ion-phortadh o fhrithealaiche Friendica eile." + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "Feumaidh tu an cunntas agad às-phortadh on t-seann-fhrithealaiche ’s a luchdadh suas an-seo. Ath-chruthaichidh sinn an seann-chunntas agad an-seo leis an luchd-aithne gu lèir agad. Feuchaidh sinn cuideachd gun leig sinn fios dha do charaidean gun do dh’imrich thu an-seo." + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "Chan e ach gleus deuchainneil a tha seo. Chan urrainn dhuinn luchd-aithne ion-phortadh on lìonra OStatus (GNU Social/Statusnet) no o dhiaspora*" + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "Faidhle a’ chunntais" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Airson an cunntas agad às-phortadh, tadhail air “Roghainnean” -> “Às-phortaich an dàta pearsanta agad” agus tagh “Às-phortaich an cunntas”" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "Mearachd le dì-chòdachadh faidhle a’ chunntais" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Mearachd! Chan eil dàta mun tionndadh san fhaidhle! Nach e faidhle cunntas Friendica a th’ ann?" + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Tha an cleachdaiche “%s” air an fhrithealaiche seo mu thràth!" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "Mearachd a’ cruthachadh a’ chleachdaiche" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "Tha %d neach-aithne nach deach ion-phortadh" +msgstr[1] "Tha %d luchd-aithne nach deach ion-phortadh" +msgstr[2] "Tha %d luchd-aithne nach deach ion-phortadh" +msgstr[3] "Tha %d luchd-aithne nach deach ion-phortadh" + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "Mearachd a’ cruthachadh pròifil a’ chleachdaiche" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "Deiseil. ’S urrainn dhut clàradh a-steach leis an ainm-chleachdaiche ’s fhacal-fhaire agad a-nis" + #: src/Module/Welcome.php:44 msgid "Welcome to Friendica" msgstr "" @@ -10326,7 +11321,7 @@ 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 "" +msgstr "Cuir a-steach fiosrachadh inntrigidh dhan phost-d agad air duilleag roghainnean nan ceangladairean agad ma tha thu airson ion-phortadh is co-luadar le caraidean no liostaichean-phuist o BHOGSA a-STEACH a’ phuist-d agad" #: src/Module/Welcome.php:69 msgid "Go to Your Contacts Page" @@ -10364,14 +11359,14 @@ msgid "" msgstr "" #: src/Module/Welcome.php:77 -msgid "Group Your Contacts" +msgid "Add Your Contacts To Circle" msgstr "" #: 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." +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." msgstr "" #: src/Module/Welcome.php:80 @@ -10399,51 +11394,51 @@ msgid "" " features and resources." msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:134 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:136 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 msgid "{0} has started following you" msgstr "Tha {0} a’ leantainn ort a-nis" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:91 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 #, php-format msgid "%s liked %s's post" msgstr "Is toigh le %s am post aig %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:103 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 #, php-format msgid "%s disliked %s's post" msgstr "Cha toigh le %s am post aig %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:115 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 #, php-format msgid "%s is attending %s's event" -msgstr "" +msgstr "Bidh %s an làthair aig an tachartas aig %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:127 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 #, php-format msgid "%s is not attending %s's event" -msgstr "" +msgstr "Cha bhi %s an làthair aig an tachartas aig %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:139 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 #, php-format msgid "%s may attending %s's event" -msgstr "" +msgstr "’S dòcha gum bi %s an làthair aig an tachartas aig %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:169 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 #, php-format msgid "%s is now friends with %s" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:336 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:374 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 #, php-format msgid "%s commented on %s's post" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:373 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 #, php-format msgid "%s created a new post" msgstr "" @@ -10496,6 +11491,7 @@ msgid "%1$s shared your comment %2$s" msgstr "Cho-roinn %1$s do bheachd %2$s" #: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 #, php-format msgid "%1$s shared your post %2$s" msgstr "Cho-roinn %1$s am post agad %2$s" @@ -10527,17 +11523,17 @@ msgstr "Cho-roinn %1$s post" #: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s wants to attend your event %2$s" -msgstr "" +msgstr "Bu mhath le %1$s a bhith an làthair aig an tachartas %2$s agad" #: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s does not want to attend your event %2$s" -msgstr "" +msgstr "Cha bu mhath le %1$s a bhith an làthair aig an tachartas %2$s agad" #: src/Navigation/Notifications/Factory/Notification.php:263 #, php-format msgid "%1$s maybe wants to attend your event %2$s" -msgstr "" +msgstr "’S dòcha gum bu mhath le %1$s a bhith an làthair aig an tachartas %2$s agad" #: src/Navigation/Notifications/Factory/Notification.php:270 #, php-format @@ -10584,241 +11580,226 @@ msgstr "" msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:222 -#: src/Navigation/Notifications/Repository/Notify.php:736 +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 msgid "[Friendica:Notify]" msgstr "[Friendica:Brath]" -#: src/Navigation/Notifications/Repository/Notify.php:286 +#: src/Navigation/Notifications/Repository/Notify.php:293 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:288 +#: src/Navigation/Notifications/Repository/Notify.php:295 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "Chuir %1$s teachdaireachd phrìobhaideach ùr thugad aig %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:289 +#: src/Navigation/Notifications/Repository/Notify.php:296 msgid "a private message" msgstr "teachdaireachd phrìobhaideach" -#: src/Navigation/Notifications/Repository/Notify.php:289 +#: src/Navigation/Notifications/Repository/Notify.php:296 #, php-format msgid "%1$s sent you %2$s." msgstr "Chuir %1$s %2$s thugad." -#: src/Navigation/Notifications/Repository/Notify.php:291 +#: src/Navigation/Notifications/Repository/Notify.php:298 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Tadhail air %s a shealltainn agus/no a’ freagairt dha na teachdaireachdan prìobhaideach agad." -#: src/Navigation/Notifications/Repository/Notify.php:321 +#: src/Navigation/Notifications/Repository/Notify.php:328 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:326 +#: src/Navigation/Notifications/Repository/Notify.php:333 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:330 +#: src/Navigation/Notifications/Repository/Notify.php:337 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:334 -#: src/Navigation/Notifications/Repository/Notify.php:770 +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:336 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "Chuir %s beachd ri nì/còmhradh air a bheil thu a’ leantainn." -#: src/Navigation/Notifications/Repository/Notify.php:340 -#: src/Navigation/Notifications/Repository/Notify.php:355 -#: src/Navigation/Notifications/Repository/Notify.php:374 -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Tadhail air %s a shealltainn agus/no a’ freagairt dhan chòmhradh." -#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:354 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:349 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "Chuir %1$s post ri balla na pròifil agad aig %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:350 +#: src/Navigation/Notifications/Repository/Notify.php:357 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "Chuir %1$s post ris [url=%2$s]a’ bhalla agad[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:362 -#, php-format -msgid "%1$s %2$s poked you" -msgstr "" - -#: src/Navigation/Notifications/Repository/Notify.php:364 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "" - -#: src/Navigation/Notifications/Repository/Notify.php:365 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" - -#: src/Navigation/Notifications/Repository/Notify.php:382 +#: src/Navigation/Notifications/Repository/Notify.php:370 #, php-format msgid "%s Introduction received" -msgstr "" +msgstr "%s Fhuair thu cur an aithne" -#: src/Navigation/Notifications/Repository/Notify.php:384 +#: src/Navigation/Notifications/Repository/Notify.php:372 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "" +msgstr "Fhuair thu cur an aithne o “%1$s” aig %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "" +msgstr "Fhuair thu [url=%1$s]cur an aithne[/url] o %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:390 -#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 #, php-format msgid "You may visit their profile at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:392 +#: src/Navigation/Notifications/Repository/Notify.php:380 #, php-format msgid "Please visit %s to approve or reject the introduction." -msgstr "" +msgstr "Tadhail air %s a ghabhail ris no a dhiùltadh a’ chuir an aithne." -#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:387 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:401 -#: src/Navigation/Notifications/Repository/Notify.php:402 +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:409 +#: src/Navigation/Notifications/Repository/Notify.php:397 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:411 -#: src/Navigation/Notifications/Repository/Notify.php:412 +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:425 +#: src/Navigation/Notifications/Repository/Notify.php:413 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:427 +#: src/Navigation/Notifications/Repository/Notify.php:415 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:428 +#: src/Navigation/Notifications/Repository/Notify.php:416 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:422 msgid "Name:" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:435 +#: src/Navigation/Notifications/Repository/Notify.php:423 msgid "Photo:" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:438 +#: src/Navigation/Notifications/Repository/Notify.php:426 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:446 -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:448 -#: src/Navigation/Notifications/Repository/Notify.php:463 +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:449 -#: src/Navigation/Notifications/Repository/Notify.php:464 +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:454 +#: src/Navigation/Notifications/Repository/Notify.php:442 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:456 +#: src/Navigation/Notifications/Repository/Notify.php:444 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:469 +#: src/Navigation/Notifications/Repository/Notify.php:457 #, php-format msgid "" "'%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." -msgstr "" +msgstr "Ghabh “%1$s” riut ’nad dhealasach is cuingichidh sin an conaltradh – can teachdaireachdan prìobhaideach is cuid dhen cho-luadar air a’ phròifil. Mas e duilleag cuideigin chliùitich no duilleag coimhearsnachd a th’ ann, chaidh na roghainnean seo a chur an sàs gu fèin-obrachail." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:461 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:483 +#: src/Navigation/Notifications/Repository/Notify.php:471 msgid "registration request" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:473 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:486 +#: src/Navigation/Notifications/Repository/Notify.php:474 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:491 +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 #, php-format msgid "" "Full Name:\t%s\n" @@ -10826,21 +11807,50 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:497 +#: src/Navigation/Notifications/Repository/Notify.php:485 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:764 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:780 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:767 +#: src/Navigation/Notifications/Repository/Notify.php:783 #, php-format msgid "%s %s shared a new post" msgstr "Cho-roinn %s%s post ùr" +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "" + #: src/Object/EMail/ItemCCEMail.php:42 #, php-format msgid "" @@ -10864,496 +11874,562 @@ msgstr "" msgid "%s posted an update." msgstr "" -#: src/Object/Post.php:136 +#: src/Object/Post.php:138 msgid "Private Message" msgstr "Teachdaireachd phrìobhaideach" -#: src/Object/Post.php:140 +#: src/Object/Post.php:142 msgid "Public Message" msgstr "Teachdaireachd phoblach" -#: src/Object/Post.php:144 +#: src/Object/Post.php:146 msgid "Unlisted Message" msgstr "Teachdaireachd fhalaichte o liostaichean" -#: src/Object/Post.php:179 +#: src/Object/Post.php:181 msgid "This entry was edited" msgstr "Chaidh an nì seo a dheasachadh" -#: src/Object/Post.php:207 +#: src/Object/Post.php:209 msgid "Connector Message" msgstr "Teachdaireachd ceangladair" -#: src/Object/Post.php:222 src/Object/Post.php:224 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Deasaich" -#: src/Object/Post.php:248 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Sguab às sa cho-nasgadh" -#: src/Object/Post.php:248 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Thoir air falbh gu h-ionadail" -#: src/Object/Post.php:264 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "Bac %s" -#: src/Object/Post.php:269 +#: src/Object/Post.php:273 +#, php-format +msgid "Ignore %s" +msgstr "" + +#: src/Object/Post.php:278 +#, php-format +msgid "Collapse %s" +msgstr "" + +#: src/Object/Post.php:282 +msgid "Report post" +msgstr "" + +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "Sàbhail gu pasgan" -#: src/Object/Post.php:304 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Bidh mi an làthair" -#: src/Object/Post.php:304 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Cha bhi mi ann" -#: src/Object/Post.php:304 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Dh’fhaoidte gum bi mi an làthair" -#: src/Object/Post.php:334 +#: src/Object/Post.php:363 msgid "Ignore thread" msgstr "Leig seachad an snàithlean" -#: src/Object/Post.php:335 +#: src/Object/Post.php:364 msgid "Unignore thread" msgstr "Na leig seachad an snàithlean tuilleadh" -#: src/Object/Post.php:336 +#: src/Object/Post.php:365 msgid "Toggle ignore status" msgstr "Toglaich staid na leigeil seachad" -#: src/Object/Post.php:346 +#: src/Object/Post.php:375 msgid "Add star" msgstr "Cuir rionnag ris" -#: src/Object/Post.php:347 +#: src/Object/Post.php:376 msgid "Remove star" msgstr "Thoir an rionnag air falbh" -#: src/Object/Post.php:348 +#: src/Object/Post.php:377 msgid "Toggle star status" msgstr "Toglaich staid na rionnaige" -#: src/Object/Post.php:359 +#: src/Object/Post.php:388 msgid "Pin" msgstr "Prìnich" -#: src/Object/Post.php:360 +#: src/Object/Post.php:389 msgid "Unpin" msgstr "Dì-phrìnich" -#: src/Object/Post.php:361 +#: src/Object/Post.php:390 msgid "Toggle pin status" msgstr "Toglaich staid a’ phrìneachaidh" -#: src/Object/Post.php:364 +#: src/Object/Post.php:393 msgid "Pinned" msgstr "Prìnichte" -#: src/Object/Post.php:369 +#: src/Object/Post.php:398 msgid "Add tag" msgstr "Cuir taga ris" -#: src/Object/Post.php:382 +#: src/Object/Post.php:411 msgid "Quote share this" msgstr "Co-roinn seo le iomradh" -#: src/Object/Post.php:382 +#: src/Object/Post.php:411 msgid "Quote Share" msgstr "Iomradh" -#: src/Object/Post.php:385 +#: src/Object/Post.php:414 msgid "Reshare this" msgstr "Co-roinn seo às ùr" -#: src/Object/Post.php:385 +#: src/Object/Post.php:414 msgid "Reshare" msgstr "Co-roinn" -#: src/Object/Post.php:386 +#: src/Object/Post.php:415 msgid "Cancel your Reshare" msgstr "Sguir dhen cho-roinneadh agad" -#: src/Object/Post.php:386 +#: src/Object/Post.php:415 msgid "Unshare" msgstr "Na co-roinn" -#: src/Object/Post.php:433 +#: src/Object/Post.php:466 #, php-format msgid "%s (Received %s)" msgstr "%s (air fhaighinn %s)" -#: src/Object/Post.php:438 +#: src/Object/Post.php:472 msgid "Comment this item on your system" msgstr "Thoir beachd ris an nì seo san t-siostam agad" -#: src/Object/Post.php:438 +#: src/Object/Post.php:472 msgid "Remote comment" msgstr "Beachd cèin" -#: src/Object/Post.php:459 +#: src/Object/Post.php:494 msgid "Share via ..." msgstr "Co-roinn slighe…" -#: src/Object/Post.php:459 +#: src/Object/Post.php:494 msgid "Share via external services" msgstr "Co-roinn slighe seirbheise cèine" -#: src/Object/Post.php:488 +#: src/Object/Post.php:523 msgid "to" msgstr "gu" -#: src/Object/Post.php:489 +#: src/Object/Post.php:524 msgid "via" msgstr "slighe" -#: src/Object/Post.php:490 +#: src/Object/Post.php:525 msgid "Wall-to-Wall" msgstr "Balla gu balla" -#: src/Object/Post.php:491 +#: src/Object/Post.php:526 msgid "via Wall-To-Wall:" msgstr "slighe balla bu balla:" -#: src/Object/Post.php:533 +#: src/Object/Post.php:573 #, php-format msgid "Reply to %s" msgstr "Freagair gu %s" -#: src/Object/Post.php:536 +#: src/Object/Post.php:576 msgid "More" msgstr "Barrachd" -#: src/Object/Post.php:554 +#: src/Object/Post.php:595 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:555 +#: src/Object/Post.php:596 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:556 +#: src/Object/Post.php:597 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:598 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:558 +#: src/Object/Post.php:599 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:578 +#: src/Object/Post.php:619 #, php-format msgid "%d comment" msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%d bheachd" +msgstr[1] "%d bheachd" +msgstr[2] "%d beachdan" +msgstr[3] "%d beachd" -#: src/Object/Post.php:579 +#: src/Object/Post.php:620 msgid "Show more" -msgstr "" +msgstr "Seall barrachd dheth" -#: src/Object/Post.php:580 +#: src/Object/Post.php:621 msgid "Show fewer" -msgstr "" +msgstr "Seall nas lugha dheth" -#: src/Protocol/OStatus.php:1475 +#: src/Object/Post.php:657 +#, php-format +msgid "Reshared by: %s" +msgstr "’Ga cho-roinneadh le: %s " + +#: src/Object/Post.php:662 +#, php-format +msgid "Viewed by: %s" +msgstr "Air a choimhead air le: %s" + +#: src/Object/Post.php:667 +#, php-format +msgid "Liked by: %s" +msgstr "’S toil le %s seo" + +#: src/Object/Post.php:672 +#, php-format +msgid "Disliked by: %s" +msgstr "Cha toil le %s seo" + +#: src/Object/Post.php:677 +#, php-format +msgid "Attended by: %s" +msgstr "An làthair: %s" + +#: src/Object/Post.php:682 +#, php-format +msgid "Maybe attended by: %s" +msgstr "An làthair ’s dòcha: %s" + +#: src/Object/Post.php:687 +#, php-format +msgid "Not attended by: %s" +msgstr "Gun a bhith an làthair: %s" + +#: src/Object/Post.php:692 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "Chaidh freagairt le %s le: %s" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "(gun chuspair)" + +#: src/Protocol/OStatus.php:1390 #, php-format msgid "%s is now following %s." -msgstr "" +msgstr "Tha %s a’ leantainn %s a-nis." -#: src/Protocol/OStatus.php:1476 +#: src/Protocol/OStatus.php:1391 msgid "following" msgstr "" -#: src/Protocol/OStatus.php:1479 +#: src/Protocol/OStatus.php:1394 #, php-format msgid "%s stopped following %s." -msgstr "" +msgstr "Chan eil %s a’ leantainn %s tuilleadh." -#: src/Protocol/OStatus.php:1480 +#: src/Protocol/OStatus.php:1395 msgid "stopped following" msgstr "" -#: src/Render/FriendicaSmartyEngine.php:65 -msgid "The folder view/smarty3/ must be writable by webserver." -msgstr "" +#: src/Render/FriendicaSmartyEngine.php:56 +#, php-format +msgid "The folder %s must be writable by webserver." +msgstr "Ceumaidh cead sgrìobhaidh dhan phasgan %s a bhith aig an fhrithealaiche-lìn." -#: src/Security/Authentication.php:226 +#: src/Security/Authentication.php:227 msgid "Login failed." -msgstr "" +msgstr "Dh’fhàillig leis a’ chlàradh a-steach." -#: src/Security/Authentication.php:271 +#: src/Security/Authentication.php:272 msgid "Login failed. Please check your credentials." -msgstr "" +msgstr "Dh’fhàillig leis a’ chlàradh a-steach. Thoir sùil air an teisteas agad." -#: src/Security/Authentication.php:382 +#: src/Security/Authentication.php:391 #, php-format msgid "Welcome %s" -msgstr "" +msgstr "Fàilte ort, %s" -#: src/Security/Authentication.php:383 +#: src/Security/Authentication.php:392 msgid "Please upload a profile photo." -msgstr "" +msgstr "An luchdaich thu suas dealbh pròifile?" -#: src/Util/EMailer/MailBuilder.php:259 +#: src/Util/EMailer/MailBuilder.php:260 msgid "Friendica Notification" -msgstr "" +msgstr "Brath Friendica" #: src/Util/EMailer/NotifyMailBuilder.php:78 #: src/Util/EMailer/SystemMailBuilder.php:54 #, php-format msgid "%1$s, %2$s Administrator" -msgstr "" +msgstr "%1$s, rianaire %2$s" #: src/Util/EMailer/NotifyMailBuilder.php:80 #: src/Util/EMailer/SystemMailBuilder.php:56 #, php-format msgid "%s Administrator" -msgstr "" +msgstr "Rianaire %s" #: 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 "" +msgstr "mòran taing" -#: src/Util/Temporal.php:167 +#: src/Util/Temporal.php:172 msgid "YYYY-MM-DD or MM-DD" -msgstr "" +msgstr "YYYY-MM-DD no MM-DD" -#: src/Util/Temporal.php:275 +#: src/Util/Temporal.php:280 #, php-format msgid "Time zone: %s Change in Settings" -msgstr "" +msgstr "Roinn-tìde: %s Atharraich i sna roghainnean" -#: src/Util/Temporal.php:318 +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 msgid "never" -msgstr "" +msgstr "chan ann idir" -#: src/Util/Temporal.php:325 +#: src/Util/Temporal.php:343 msgid "less than a second ago" -msgstr "" - -#: src/Util/Temporal.php:333 -msgid "year" -msgstr "" - -#: src/Util/Temporal.php:333 -msgid "years" -msgstr "" - -#: src/Util/Temporal.php:334 -msgid "months" -msgstr "" - -#: src/Util/Temporal.php:335 -msgid "weeks" -msgstr "" - -#: src/Util/Temporal.php:336 -msgid "days" -msgstr "" - -#: src/Util/Temporal.php:337 -msgid "hour" -msgstr "" - -#: src/Util/Temporal.php:337 -msgid "hours" -msgstr "" - -#: src/Util/Temporal.php:338 -msgid "minute" -msgstr "" - -#: src/Util/Temporal.php:338 -msgid "minutes" -msgstr "" - -#: src/Util/Temporal.php:339 -msgid "second" -msgstr "" - -#: src/Util/Temporal.php:339 -msgid "seconds" -msgstr "" - -#: src/Util/Temporal.php:349 -#, php-format -msgid "in %1$d %2$s" -msgstr "" +msgstr "nas lugha na diog air ais" #: src/Util/Temporal.php:352 +msgid "year" +msgstr "bhliadhna" + +#: src/Util/Temporal.php:352 +msgid "years" +msgstr "bliadhna(ichean)" + +#: src/Util/Temporal.php:353 +msgid "months" +msgstr "mìos(an)" + +#: src/Util/Temporal.php:354 +msgid "weeks" +msgstr "seachdain(ean)" + +#: src/Util/Temporal.php:355 +msgid "days" +msgstr "là(ithean)" + +#: src/Util/Temporal.php:356 +msgid "hour" +msgstr "uair a thìde" + +#: src/Util/Temporal.php:356 +msgid "hours" +msgstr "uair(ean) a thìde" + +#: src/Util/Temporal.php:357 +msgid "minute" +msgstr "mhionaid" + +#: src/Util/Temporal.php:357 +msgid "minutes" +msgstr "mionaid(ean)" + +#: src/Util/Temporal.php:358 +msgid "second" +msgstr "dhiog" + +#: src/Util/Temporal.php:358 +msgid "seconds" +msgstr "diog(an)" + +#: src/Util/Temporal.php:367 +#, php-format +msgid "in %1$d %2$s" +msgstr "an ceann %1$d %2$s" + +#: src/Util/Temporal.php:370 #, php-format msgid "%1$d %2$s ago" -msgstr "" +msgstr "%1$d %2$s air ais" -#: src/Worker/Delivery.php:525 -msgid "(no subject)" -msgstr "" +#: src/Worker/PushSubscription.php:110 +msgid "Notification from Friendica" +msgstr "Brath o Friendica" #: src/Worker/PushSubscription.php:111 -msgid "Notification from Friendica" -msgstr "" - -#: src/Worker/PushSubscription.php:112 msgid "Empty Post" -msgstr "" +msgstr "Post falamh" -#: view/theme/duepuntozero/config.php:52 +#: view/theme/duepuntozero/config.php:68 msgid "default" -msgstr "" +msgstr "bunaiteach" -#: view/theme/duepuntozero/config.php:53 +#: view/theme/duepuntozero/config.php:69 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:54 +#: view/theme/duepuntozero/config.php:70 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:55 +#: view/theme/duepuntozero/config.php:71 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:56 +#: view/theme/duepuntozero/config.php:72 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:57 +#: view/theme/duepuntozero/config.php:73 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:58 +#: view/theme/duepuntozero/config.php:74 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:87 msgid "Variations" -msgstr "" +msgstr "Fiamhan" -#: view/theme/frio/config.php:142 +#: view/theme/frio/config.php:153 msgid "Light (Accented)" -msgstr "" +msgstr "Soilleir (soilleirichte)" -#: view/theme/frio/config.php:143 +#: view/theme/frio/config.php:154 msgid "Dark (Accented)" -msgstr "" +msgstr "Dorcha (soilleirichte)" -#: view/theme/frio/config.php:144 +#: view/theme/frio/config.php:155 msgid "Black (Accented)" -msgstr "" +msgstr "Dubh (soilleirichte)" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Note" -msgstr "" +msgstr "An aire" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Check image permissions if all users are allowed to see the image" -msgstr "" +msgstr "Thoir sùil air ceadan an deilbh ma dh’fhaodas a h-uile cleachdaiche an dealbh fhaicinn" -#: view/theme/frio/config.php:162 +#: view/theme/frio/config.php:173 msgid "Custom" -msgstr "" +msgstr "Gnàthaichte" -#: view/theme/frio/config.php:163 +#: view/theme/frio/config.php:174 msgid "Legacy" -msgstr "" +msgstr "Dìleabach" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:175 msgid "Accented" -msgstr "" +msgstr "Soilleirichte" -#: view/theme/frio/config.php:165 +#: view/theme/frio/config.php:176 msgid "Select color scheme" -msgstr "" +msgstr "Tagh sgeama nan dathan" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Select scheme accent" -msgstr "" +msgstr "Tagh soilleireachadh an sgeama" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Blue" -msgstr "" +msgstr "Gorm" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Red" -msgstr "" +msgstr "Dearg" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Purple" -msgstr "" +msgstr "Purpaidh" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Green" -msgstr "" +msgstr "Uaine" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Pink" -msgstr "" +msgstr "Pinc" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "Copy or paste schemestring" -msgstr "" +msgstr "Dèan lethbhreac no cuir ann sreang sgeama" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" -msgstr "" - -#: view/theme/frio/config.php:168 -msgid "Navigation bar background color" -msgstr "" - -#: view/theme/frio/config.php:169 -msgid "Navigation bar icon color " -msgstr "" - -#: view/theme/frio/config.php:170 -msgid "Link color" -msgstr "" - -#: view/theme/frio/config.php:171 -msgid "Set the background color" -msgstr "" - -#: view/theme/frio/config.php:172 -msgid "Content background opacity" -msgstr "" - -#: view/theme/frio/config.php:173 -msgid "Set the background image" -msgstr "" - -#: view/theme/frio/config.php:174 -msgid "Background image style" -msgstr "" +msgstr "’S urrainn dhut lethbhreac dhen t-sreang seo a dhèanamh airson an t-ùrlar agad a cho-roinneadh le càch. Nuair a chuireas tu rud ann an-seo, thèid sreang an sgeama a chur an sàs" #: view/theme/frio/config.php:179 +msgid "Navigation bar background color" +msgstr "Dath cùlaibh bàr na seòladaireachd" + +#: view/theme/frio/config.php:180 +msgid "Navigation bar icon color " +msgstr "Dath ìomhaigheagan bàr na seòladaireachd " + +#: view/theme/frio/config.php:181 +msgid "Link color" +msgstr "Dath nan ceanglaichean" + +#: view/theme/frio/config.php:182 +msgid "Set the background color" +msgstr "Suidhich dath a’ chùlaibh" + +#: view/theme/frio/config.php:183 +msgid "Content background opacity" +msgstr "Trìd-dhoilleireachd cùlaibh na susbainte" + +#: view/theme/frio/config.php:184 +msgid "Set the background image" +msgstr "Suidhich dealbh a’ chùlaibh" + +#: view/theme/frio/config.php:185 +msgid "Background image style" +msgstr "Stoidhle dealbh a’ chùlaibh" + +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "Fosgail duilleag an sgrìobhaidh an-còmhnaidh" + +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "" + +#: view/theme/frio/config.php:192 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Leave background image and color empty for theme defaults" -msgstr "" +msgstr "Fàg dealbh ’s dath a’ chùlaibh bàn do bhun-roghainnean an ùrlair" #: view/theme/frio/php/Image.php:39 msgid "Top Banner" @@ -11399,78 +12475,78 @@ msgstr "" msgid "Back to top" msgstr "" -#: view/theme/frio/theme.php:212 +#: view/theme/frio/theme.php:211 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:215 +#: view/theme/frio/theme.php:214 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:74 +#: view/theme/quattro/config.php:90 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:75 +#: view/theme/quattro/config.php:91 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:76 +#: view/theme/quattro/config.php:92 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "show" msgstr "" -#: view/theme/vier/config.php:121 +#: view/theme/vier/config.php:137 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:122 +#: view/theme/vier/config.php:138 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:134 +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:124 +#: view/theme/vier/config.php:140 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:305 +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:126 +#: view/theme/vier/config.php:142 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:161 +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:220 +#: view/theme/vier/theme.php:234 msgid "Quick Start" msgstr "Grad-tòiseachadh" diff --git a/view/lang/gd/strings.php b/view/lang/gd/strings.php index 9dcb7322c..a0046db9f 100644 --- a/view/lang/gd/strings.php +++ b/view/lang/gd/strings.php @@ -5,104 +5,13 @@ function string_plural_select_gd($n){ $n = intval($n); if (($n==1 || $n==11)) { return 0; } else if (($n==2 || $n==12)) { return 1; } else if (($n > 2 && $n < 20)) { return 2; } else { return 3; } }} -$a->strings['Access denied.'] = 'Chaidh inntrigeadh a dhiùltadh.'; -$a->strings['User not found.'] = 'Cha deach an cleachdaiche a lorg.'; -$a->strings['Access to this profile has been restricted.'] = 'Chaidh an t-inntrigeadh dhan phròifil seo a chuingeachadh.'; -$a->strings['Events'] = 'Tachartasan'; -$a->strings['View'] = 'Seall'; -$a->strings['Previous'] = 'Air ais'; -$a->strings['Next'] = 'Air adhart'; -$a->strings['today'] = 'an-diugh'; -$a->strings['month'] = 'mìos'; -$a->strings['week'] = 'seachdain'; -$a->strings['day'] = 'latha'; -$a->strings['list'] = 'liosta'; -$a->strings['User not found'] = 'Cha deach an cleachdaiche a lorg'; -$a->strings['This calendar format is not supported'] = 'Chan eil taic ri fòrmat a’ mhìosachain seo'; -$a->strings['No exportable data found'] = 'Cha deach dàta a ghabhas às-phortadh a lorg'; -$a->strings['calendar'] = 'mìosachan'; -$a->strings['Public access denied.'] = 'Chaidh an t-inntrigeadh poblach a dhiùltadh.'; -$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'Chan eil am an nì a dh’iarr thu ann no chaidh a sguabadh às.'; -$a->strings['The feed for this item is unavailable.'] = 'Chan eil inbhir ri fhaighinn dhan nì seo.'; -$a->strings['Permission denied.'] = 'Chaidh cead a dhiùltadh.'; -$a->strings['Item not found'] = 'Cha deach an nì a lorg'; -$a->strings['Edit post'] = 'Deasaich am post'; -$a->strings['Save'] = 'Sàbhail'; -$a->strings['Loading...'] = '’Ga luchdadh…'; -$a->strings['Upload photo'] = 'Luchdaich suas dealbh'; -$a->strings['upload photo'] = 'luchdaich suas dealbh'; -$a->strings['Attach file'] = 'Ceangail faidhle ris'; -$a->strings['attach file'] = 'ceangail faidhle ris'; -$a->strings['Insert web link'] = 'Cuir a-steach ceangal-lìn'; -$a->strings['web link'] = 'ceangal-lìn'; -$a->strings['Insert video link'] = 'Cuir a-steach ceangal video'; -$a->strings['video link'] = 'ceangal video'; -$a->strings['Insert audio link'] = 'Cuir a-steach ceangal fuaime'; -$a->strings['audio link'] = 'ceangal fuaime'; -$a->strings['Set your location'] = 'Suidhich d’ ionad'; -$a->strings['set location'] = 'suidhich d’ ionad'; -$a->strings['Clear browser location'] = 'Falamhaich ionad a’ bhrabhsair'; -$a->strings['clear location'] = 'falamhaich an ionad'; -$a->strings['Please wait'] = 'Fuirich ort'; -$a->strings['Permission settings'] = 'Roghainnean cead'; -$a->strings['CC: email addresses'] = 'CC: seòlaidhean puist-d'; -$a->strings['Public post'] = 'Post poblach'; -$a->strings['Set title'] = 'Suidhich an tiotal'; -$a->strings['Categories (comma-separated list)'] = 'Roinnean-seòrsa (liosta sgaraichte le cromagan).'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Mar eisimpleir: aonghas@ball-eisimpleir.com, oighrig@ball-eisimpleir.com'; -$a->strings['Preview'] = 'Ro-sheall'; -$a->strings['Cancel'] = 'Sguir dheth'; -$a->strings['Bold'] = 'Trom'; -$a->strings['Italic'] = 'Eadailteach'; -$a->strings['Underline'] = 'Loidhne fodha'; -$a->strings['Quote'] = 'Iomradh'; -$a->strings['Code'] = 'Còd'; -$a->strings['Link'] = 'Ceangal'; -$a->strings['Link or Media'] = 'Ceangal no meadhan'; -$a->strings['Message'] = 'Teachdaireachd'; -$a->strings['Browser'] = 'Brabhsair'; -$a->strings['Permissions'] = 'Ceadan'; -$a->strings['Open Compose page'] = 'Fosgail duilleag an sgrìobhaidh'; -$a->strings['Event can not end before it has started.'] = 'Chan urrainn do thachartas crìochnachadh mus tòisich e.'; -$a->strings['Event title and start time are required.'] = 'Tha feum air tiotal is àm tòiseachaidh an tachartais.'; -$a->strings['Create New Event'] = 'Cruthaich tachartas ùr'; -$a->strings['Event details'] = 'Fiosrachadh an tachartais'; -$a->strings['Starting date and Title are required.'] = 'Tha feum air àm tòiseachaidh is tiotal.'; -$a->strings['Event Starts:'] = 'Tòisichidh an tachartas:'; -$a->strings['Required'] = 'Riatanach'; -$a->strings['Finish date/time is not known or not relevant'] = 'Chan eil fhios dè an t-àm crìochnachaidh no chan eil e iomchaidh'; -$a->strings['Event Finishes:'] = 'Thig an tachartas gu crìoch:'; -$a->strings['Description:'] = 'Tuairisgeul:'; -$a->strings['Location:'] = 'Ionad:'; -$a->strings['Title:'] = 'Tiotal:'; -$a->strings['Share this event'] = 'Co-roinn an tachartas seo'; -$a->strings['Submit'] = 'Cuir a-null'; -$a->strings['Basic'] = 'Bunasach'; -$a->strings['Advanced'] = 'Adhartach'; -$a->strings['Failed to remove event'] = 'Cha deach leinn an tachartas a thoirt air falbh'; -$a->strings['Photos'] = 'Dealbhan'; -$a->strings['Upload'] = 'Luchdaich suas'; -$a->strings['Files'] = 'Faidhlichean'; -$a->strings['Submit Request'] = 'Cuir an t-iarrtas a-null'; -$a->strings['You already added this contact.'] = 'Chuir thu an neach-aithne seo ris mu thràth.'; -$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Cha do mhothaich sinn do sheòrsa an lìonraidh. Cha b’ urrainn dhuinn an neach-aithne a chur ris.'; -$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Chan eil taic ri diaspora* an comas. Cha b’ urrainn dhuinn an neach-aithne a chur ris.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Chan eil taic ri OStatus an comas. Cha b’ urrainn dhuinn an neach-aithne a chur ris.'; -$a->strings['Connect/Follow'] = 'Ceangail ris/Lean air'; -$a->strings['Please answer the following:'] = 'Freagair seo:'; -$a->strings['Your Identity Address:'] = 'Seòladh do dhearbh-aithne:'; -$a->strings['Profile URL'] = 'URL na pròifile'; -$a->strings['Tags:'] = 'Tagaichean:'; -$a->strings['%s knows you'] = 'Is aithne dha %s thu'; -$a->strings['Add a personal note:'] = 'Cuir nòta pearsanta ris:'; -$a->strings['Status Messages and Posts'] = 'Teachdaireachdan staid is puist-d'; -$a->strings['The contact could not be added.'] = 'Cha b’ urrainn dhuinn an neach-aithne a chur ris.'; $a->strings['Unable to locate original post.'] = 'Cha do lorg sinn am post tùsail.'; -$a->strings['Empty post discarded.'] = 'Chaidh post falamh a thilgeil air falbh.'; $a->strings['Post updated.'] = 'Chaidh am post ùrachadh.'; $a->strings['Item wasn\'t stored.'] = 'Cha deach an nì a stòradh.'; $a->strings['Item couldn\'t be fetched.'] = 'Cha d’ fhuair sinn grèim air a nì.'; +$a->strings['Empty post discarded.'] = 'Chaidh post falamh a thilgeil air falbh.'; $a->strings['Item not found.'] = 'Cha deach an nì a lorg.'; +$a->strings['Permission denied.'] = 'Chaidh cead a dhiùltadh.'; $a->strings['No valid account found.'] = 'Cha deach cunntas dligheach a lorg.'; $a->strings['Password reset request issued. Check your email.'] = 'Chaidh ath-shuidheachadh an fhacail-fhaire iarraidh. Thoir sùil air a’ phost-d agad.'; $a->strings[' @@ -192,9 +101,6 @@ $a->strings[' ’S urrainn dhut am facal-faire agad atharrachadh o dhuilleag roghainnean a’ chunntais agad às dèidh a’ chlàraidh a-steach. '; $a->strings['Your password has been changed at %s'] = 'Chaidh am facal-faire agad atharrachadh air %s'; -$a->strings['No keywords to match. Please add keywords to your profile.'] = 'Chan eil faclan-luirg rim maidseadh ann. Cuir faclan-luirg ris a’ phròifil agad.'; -$a->strings['No matches'] = 'Gun mhaids'; -$a->strings['Profile Match'] = 'Maidseadh na pròifile'; $a->strings['New Message'] = 'Teachdaireachd ùr'; $a->strings['No recipient selected.'] = 'Cha deach faightear a thaghadh.'; $a->strings['Unable to locate contact information.'] = 'Cha do lorg sinn am fiosrachadh conaltraidh.'; @@ -210,6 +116,10 @@ $a->strings['Send Private Message'] = 'Cuir teachdaireachd phearsanta'; $a->strings['To:'] = 'Gu:'; $a->strings['Subject:'] = 'Cuspair:'; $a->strings['Your message:'] = 'An teachdaireachd agad:'; +$a->strings['Upload photo'] = 'Luchdaich suas dealbh'; +$a->strings['Insert web link'] = 'Cuir a-steach ceangal-lìn'; +$a->strings['Please wait'] = 'Fuirich ort'; +$a->strings['Submit'] = 'Cuir a-null'; $a->strings['No messages.'] = 'Chan eil teachdaireachd sam bith ann.'; $a->strings['Message not available.'] = 'Chan eil an teachdaireachd ri fhaighinn.'; $a->strings['Delete message'] = 'Sguab às an teachdaireachd'; @@ -228,18 +138,8 @@ $a->strings['%d message'] = [ ]; $a->strings['Personal Notes'] = 'Nòtaichean pearsanta'; $a->strings['Personal notes are visible only by yourself.'] = 'Chan fhaic ach thu fhèin na nòtaichean pearsanta.'; -$a->strings['Subscribing to contacts'] = 'Fo-sgrìobhadh air luchd-aithne'; -$a->strings['No contact provided.'] = 'Cha deach neach-aithne a thoirt seachad.'; -$a->strings['Couldn\'t fetch information for contact.'] = 'Cha d’ fhuair sinn grèim air an fhiosrachadh conaltraidh.'; -$a->strings['Couldn\'t fetch friends for contact.'] = 'Cha d’ fhuair sinn grèim air caraidean a chùm conaltraidh.'; -$a->strings['Couldn\'t fetch following contacts.'] = 'Cha d’ fhuair sinn grèim air an luchd-aithne a leanas.'; -$a->strings['Couldn\'t fetch remote profile.'] = 'Cha d’ fhuair sinn grèim air a’ phròifil chèin.'; -$a->strings['Unsupported network'] = 'Lìonra ris nach eil taic'; -$a->strings['Done'] = 'Deiseil'; -$a->strings['success'] = 'chaidh leis'; -$a->strings['failed'] = 'dh’fhàillig leis'; -$a->strings['ignored'] = 'chaidh a leigeil seachad'; -$a->strings['Keep this window open until done.'] = 'Cùm an uinneag seo fosgailte gus am bi e deiseil.'; +$a->strings['Save'] = 'Sàbhail'; +$a->strings['User not found.'] = 'Cha deach an cleachdaiche a lorg.'; $a->strings['Photo Albums'] = 'Pasgain dhealbhan'; $a->strings['Recent Photos'] = 'Dealbhan o chionn goirid'; $a->strings['Upload New Photos'] = 'Luchdaich suas dealbhan ùra'; @@ -251,21 +151,17 @@ $a->strings['Album was empty.'] = 'Bha an t-albam falamh.'; $a->strings['Failed to delete the photo.'] = 'Cha b’ urrainn dhuinn an dealbh a sguabadh às.'; $a->strings['a photo'] = 'dealbh'; $a->strings['%1$s was tagged in %2$s by %3$s'] = 'Chuir %3$s %1$s ’na thaga ri %2$s'; -$a->strings['Image exceeds size limit of %s'] = 'Tha an dealbh nas motha na tha ceadaichte dhe %s'; -$a->strings['Image upload didn\'t complete, please try again'] = 'Cha deach luchdadh suas an deilbh a choileanadh, feuch ris a-rithist'; -$a->strings['Image file is missing'] = 'Tha faidhle an deilbh a dhìth'; -$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Cha ghabh am frithealaiche ri luchdadh suas deilbh ùir aig an àm seo, cuir fios gun rianaire agad'; -$a->strings['Image file is empty.'] = 'Tha faidhle an deilbh falamh.'; -$a->strings['Unable to process image.'] = 'Cha b’ urrainn dhuinn an dealbh a phròiseasadh.'; -$a->strings['Image upload failed.'] = 'Dh’fhàillig le luchdadh suas an deilbh.'; +$a->strings['Public access denied.'] = 'Chaidh an t-inntrigeadh poblach a dhiùltadh.'; $a->strings['No photos selected'] = 'Cha deach dealbh a thaghadh'; -$a->strings['Access to this item is restricted.'] = 'Tha an t-inntrigeadh dhan nì seo cuingichte.'; +$a->strings['The maximum accepted image size is %s'] = 'Cha ghabh sinn ri dealbhan nas motha na %s'; $a->strings['Upload Photos'] = 'Luchdaich suas dealbhan'; $a->strings['New album name: '] = 'Ainm an albaim ùir: '; $a->strings['or select existing album:'] = 'no tagh albam a tha ann:'; $a->strings['Do not show a status post for this upload'] = 'Na seall post staide dhan luchdadh suas seo'; +$a->strings['Permissions'] = 'Ceadan'; $a->strings['Do you really want to delete this photo album and all its photos?'] = 'A bheil thu cinnteach gu bheil thu airson an t-albam seo ’s a h-uile dealbh aige a sguabadh às?'; $a->strings['Delete Album'] = 'Sguab às an t-albam'; +$a->strings['Cancel'] = 'Sguir dheth'; $a->strings['Edit Album'] = 'Deasaich an t-albam'; $a->strings['Drop Album'] = 'Thoir air falbh an t-albam'; $a->strings['Show Newest First'] = 'Seall an fheadhainn as ùire an toiseach'; @@ -292,6 +188,8 @@ $a->strings['Rotate CW (right)'] = 'Cuairtich a’ dol deiseil'; $a->strings['Rotate CCW (left)'] = 'Cuairtich a’ dol tuathail'; $a->strings['This is you'] = 'Seo thusa'; $a->strings['Comment'] = 'Beachd'; +$a->strings['Preview'] = 'Ro-sheall'; +$a->strings['Loading...'] = '’Ga luchdadh…'; $a->strings['Select'] = 'Tagh'; $a->strings['Delete'] = 'Sguab às'; $a->strings['Like'] = '’S toigh leam seo'; @@ -299,108 +197,30 @@ $a->strings['I like this (toggle)'] = '’S toigh leam seo (toglaich)'; $a->strings['Dislike'] = 'Cha toigh leam seo'; $a->strings['I don\'t like this (toggle)'] = 'Cha toigh leam seo (toglaich)'; $a->strings['Map'] = 'Mapa'; -$a->strings['View Album'] = 'Seall an t-albam'; -$a->strings['Bad Request.'] = 'Droch-iarrtas.'; -$a->strings['Contact not found.'] = 'Cha deach an neach-aithne a lorg.'; -$a->strings['[Friendica System Notify]'] = '[Brath siostam Friendica]'; -$a->strings['User deleted their account'] = 'Sguab an cleachdaiche às an cunntas aca'; -$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Sguab cleachdaiche às an cunntas aca air an nòd Friendica agad. Dèan cinnteach gun dèid an dàta aca a thoirt air falbh o na lethbhreacan-glèidhidh.'; -$a->strings['The user id is %d'] = '’S e %d ID a’ chleachdaiche'; -$a->strings['Remove My Account'] = 'Thoir air falbh an cunntas agam'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Bheir seo air falbh an cunntas agad gu tur. Nuair a bhios sin air a thachairt, cha ghabh aiseag.'; -$a->strings['Please enter your password for verification:'] = 'Cuir a-steach am facal-faire agad airson a dhearbhadh:'; -$a->strings['Resubscribing to OStatus contacts'] = 'A’ fo-sgrìobhadh a-rithist air luchd-aithne OStatus'; -$a->strings['Error'] = [ - 0 => 'Mearachd', - 1 => 'Mearachdan', - 2 => 'Mearachdan', - 3 => 'Mearachdan', -]; -$a->strings['Failed to connect with email account using the settings provided.'] = 'Cha deach leinn ceangal a dhèanamh leis a’ chunntas puist-d a’ cleachdadh nan roghainnean a chaidh a thoirt seachad.'; -$a->strings['Connected Apps'] = 'Aplacaidean ceangailte'; -$a->strings['Name'] = 'Ainm'; -$a->strings['Home Page'] = 'Duilleag-dhachaigh'; -$a->strings['Created'] = 'Air a chruthachadh'; -$a->strings['Remove authorization'] = 'Thoir an t-ùghdarrachadh air falbh'; -$a->strings['Save Settings'] = 'Sàbhail na roghainnean'; -$a->strings['Addon Settings'] = 'Roghainnean nan tuilleadan'; -$a->strings['No Addon settings configured'] = 'Cha deach roghainnean tuilleadain a rèiteachadh'; -$a->strings['Additional Features'] = 'Gleusan a bharrachd'; -$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings['enabled'] = 'an comas'; -$a->strings['disabled'] = 'à comas'; -$a->strings['Built-in support for %s connectivity is %s'] = 'Tha an taic do chomas-ceangail le %s a thig ’na bhroinn %s'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; -$a->strings['Email access is disabled on this site.'] = 'Tha an t-inntrigeadh le post-d à comas dhan làrach seo.'; -$a->strings['None'] = 'Chan eil gin'; -$a->strings['Social Networks'] = 'Lìonraidhean sòisealta'; -$a->strings['General Social Media Settings'] = 'Roghainnean coitcheann nam meadhanan sòisealta'; -$a->strings['Followed content scope'] = 'Farsaingeachd na susbainte air a leanas tu'; -$a->strings['By default, conversations in which your follows participated but didn\'t start will be shown in your timeline. You can turn this behavior off, or expand it to the conversations in which your follows liked a post.'] = 'Nochdaidh na còmhraidhean sa ghabh an fheadhainn air a leanas tu pàirt ach nach do thòisich iad fhèin air an loidhne-ama agad a ghnàth. ’S urrainn dhut seo a chur dheth no a leudachadh ach an nochd na còmhraidhean far an toigh leis an fheadhainn air a leanas tu post.'; -$a->strings['Only conversations my follows started'] = 'Na còmhraidhean a thòisich cuideigin air a leanas mi a-mhàin'; -$a->strings['Conversations my follows started or commented on (default)'] = 'Na còmhraidhean a thòisich cuideigin air a leanas mi no a chuir iad beachd riutha (bun-roghainn)'; -$a->strings['Any conversation my follows interacted with, including likes'] = 'Còmhradh sam bith air an robh cuideigin air a leanas mi an sàs, a’ gabhail a-staigh nas toigh leotha'; -$a->strings['Enable Content Warning'] = 'Cuir rabhadh susbainte an comas'; -$a->strings['Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.'] = '’S urrainn dhan fheadhainn air lìonraidhean mar Mastodon no Pleroma raon rabhadh susbainte a shuidheachadh a cho-theannaicheas am post aca a ghnàth. Cuiridh seo an co-theannachadh fèin-obrachail an comas seach a bhith a’ suidheachadh an rabhadh susbainte mar thiotal a’ phuist. Cha doir seo buaidh air criathradh susbainte sam bith eile a shuidhicheas tu.'; -$a->strings['Enable intelligent shortening'] = 'Cuir an giorrachadh tapaidh an comas'; -$a->strings['Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.'] = 'Mar as àbhaist, feuchaidh an siostam gun dèid an ceangal as fheàrr a lorg gus a chur ri postaichean giorraichte. Ma tha seo à comas, tomhaidh gach post giorraichte ris a’ phost tùsail air friendica an-còmhnaidh.'; -$a->strings['Enable simple text shortening'] = 'Cuir an comas giorrachadh teacsa sìmplidh'; -$a->strings['Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'] = 'Mar as àbhaist, giorraichidh an siostam na postaichean aig an ath earrann. Ma tha an roghainn seo an comas, giorraichidh an siostam an teacsa aig crìoch nan caractaran ceadaichte.'; -$a->strings['Attach the link title'] = 'Cuir tiotal a’ cheangail ris'; -$a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'Nuair a bhios seo an gnìomh, thèid tiotal a’ cheangail a chur ris mar tiotal air postaichean gu Diaspora. Tha seo as fheumaile dhan luchd-aithne “remote-self” a cho-roinneas susbaint inbhir.'; -$a->strings['Your legacy ActivityPub/GNU Social account'] = 'An cunntas ActivityPub/GNU Social dìleabach agad'; -$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Ma chuireas tu ainm seann-chunntais ris o shiostam stèidhichte air ActivityPub no ainm do chunntais GNU Social/Statusnet an-seo (san fhòrmat cleachdaiche@àrainn.tld), thèid an luchd-aithne agad a chur ris gu fèin-obrachail. Thèid an raon fhalamhachadh nuair a bhios sin deiseil.'; -$a->strings['Repair OStatus subscriptions'] = 'Càraich fo-sgrìobhaidhean OStatus'; -$a->strings['Email/Mailbox Setup'] = 'Suidheachadh a’ phuist-d/a’ bhogsa-phuist'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Ma tha thu airson an t-seirbheis seo a chleachdadh airson conaltradh le luchd-aithne air a’ post-d (gu roghainneil), sònraich an dòigh air a nì thu ceangal leis a’ bhogsa-phuist agad.'; -$a->strings['Last successful email check:'] = 'An turas mu dheireadh a chaidh leinn sùil a thoirt air a’ phost-d:'; -$a->strings['IMAP server name:'] = 'Ainm frithealaiche IMAP:'; -$a->strings['IMAP port:'] = 'Port IMAP:'; -$a->strings['Security:'] = 'Tèarainteachd:'; -$a->strings['Email login name:'] = 'Ainm clàradh a-steach a’ phuist-d:'; -$a->strings['Email password:'] = 'Facal-faire a’ phuist-d:'; -$a->strings['Reply-to address:'] = 'An seòladh Freagairt-gu:'; -$a->strings['Send public posts to all email contacts:'] = 'Cuir postaichean poblach dhan a h-uile neach-aithne puist-d:'; -$a->strings['Action after import:'] = 'Gnìomh às dèid an ion-phortaidh:'; -$a->strings['Mark as seen'] = 'Cuir comharra gun deach fhaicinn'; -$a->strings['Move to folder'] = 'Gluais gu pasgan'; -$a->strings['Move to folder:'] = 'Gluais gu pasgan:'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Chan eil moladh sam bith ann. Mas e làrach ùr a th’ ann, feuch ris a-rithist an ceann 24 uair a thìde.'; -$a->strings['Friend Suggestions'] = 'Molaidhean charaidean'; -$a->strings['photo'] = 'dealbh'; -$a->strings['status'] = 'staid'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = 'Chuir %1$s taga %4$s ri %3$s aig %2$s'; -$a->strings['Remove Item Tag'] = 'Thoir air falbh taga an nì'; -$a->strings['Select a tag to remove: '] = 'Tagh taga gus a thoirt air falbh: '; -$a->strings['Remove'] = 'Thoir air falbh'; -$a->strings['User imports on closed servers can only be done by an administrator.'] = 'Chan fhaod ach rianairean cleachdaichean ion-phortadh gu frithealaichean dùinte.'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Chlàradh na tha ceadaichte de chunntasan ùra air an làrach seo an-diugh. Feuch ris a-rithist a-màireach.'; -$a->strings['Import'] = 'Ion-phortaich'; -$a->strings['Move account'] = 'Imrich an cunntas'; -$a->strings['You can import an account from another Friendica server.'] = '’S urrainn dhut cunntas ion-phortadh o fhrithealaiche Friendica eile.'; -$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.'] = 'Feumaidh tu an cunntas agad às-phortadh on t-seann-fhrithealaiche ’s a luchdadh suas an-seo. Ath-chruthaichidh sinn an seann-chunntas agad an-seo leis an luchd-aithne gu lèir agad. Feuchaidh sinn cuideachd gun leig sinn fios dha do charaidean gun do dh’imrich thu an-seo.'; -$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Chan e ach gleus deuchainneil a tha seo. Chan urrain dhuinn luchd-aithne ion-phortadh on lìonra OStatus (GNU Social/Statusnet) no o Dhiaspora'; -$a->strings['Account file'] = 'Faidhle a’ chunntais'; -$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Airson an cunntas agad às-phortadh, tadhail air “Roghainnean” -> “Às-phortaich an dàta pearsanta agad” agus tagh “Às-phortaich an cunntas”'; -$a->strings['You aren\'t following this contact.'] = 'Chan eil thu a’ leantainn air an neach-aithne seo.'; -$a->strings['Unfollowing is currently not supported by your network.'] = 'Cha chuir an lìonra agad taic ri sgur de leantainn air an àm seo.'; -$a->strings['Disconnect/Unfollow'] = 'Dì-cheangail/Na lean tuilleadh'; -$a->strings['Contact was successfully unfollowed'] = 'Chan eil thu a’ leantainn air an neach-aithne tuilleadh'; -$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Cha deach leinn an neach-aithne a thoirt air falbh on fheadhainn air a leanas tu, cuir fios gun rianaire agad'; -$a->strings['Invalid request.'] = 'Iarrtas mì-dhligheach.'; -$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Tha sinn duilich a dh’fhaoidte gu bheil an luchdadh suas agad nas motha na tha ceadaichte leis an rèiteachadh PHP'; -$a->strings['Or - did you try to upload an empty file?'] = 'Air neo – an do dh’fheuch thu ri faidhle falamh a luchdadh suas?'; -$a->strings['File exceeds size limit of %s'] = 'Tha am faidhle nas motha na tha ceadaichte dhe %s'; -$a->strings['File upload failed.'] = 'Dh’fhàillig luchdadh suas an fhaidhle.'; -$a->strings['Wall Photos'] = 'Dealbhan balla'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Chaidh thu thairis air àireamh nan teachdaireachdan-balla làitheil dha %s. Dh’fhàillig leis an teachdaireachd.'; -$a->strings['Unable to check your home location.'] = 'Cha b’ urrainn dhuinn sùil a thoir air ionad do dhachaigh.'; -$a->strings['No recipient.'] = 'Gun fhaightear.'; -$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Nam bu mhiann leat gum freagair %s, dearbh gun ceadaich roghainnean prìobhaideachd na làraich agad puist-d phrìobhaideach o sheòladairean nach aithne dhut.'; $a->strings['No system theme config value set.'] = 'Cha deach luach a shuidheachadh do rèiteachadh ùrlar an t-siostaim.'; $a->strings['Apologies but the website is unavailable at the moment.'] = 'Tha sinn duilich ach chan eil an làrach-lìn ri fhaighinn an-dràsta.'; $a->strings['Delete this item?'] = 'A bheil thu airson an nì seo a sguabadh às?'; $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 bheil thu airson an t-ùghdar seo a bhacadh? Chan urrainn dhaibh leantainn ort no na postaichean poblach agad fhaicinn tuilleadh agus chan fhaic thu fhèin na postaichean no na brathan uapa.'; +$a->strings['Ignore this author? You won\'t be able to see their posts and their notifications.'] = 'A bheil thu airson an t-ùghdar seo a leigeil seachad? Chan fhaic thu na postaichean no na brathan uapa.'; +$a->strings['Collapse this author\'s posts?'] = 'A bheil thu airson postaichean an ùghdair seo a cho-theannachadh?'; +$a->strings['Like not successful'] = 'Cha deach leinn a chur ris na h-annsachdan'; +$a->strings['Dislike not successful'] = 'Cha deach leinn a thoirt air falbh o na h-annsachdan'; +$a->strings['Sharing not successful'] = 'Cha deach leinn a cho-roinneadh'; +$a->strings['Attendance unsuccessful'] = 'Cha deach leis an làthaireachd'; +$a->strings['Backend error'] = 'Mearachd a’ backend'; +$a->strings['Network error'] = 'Mearachd lìonraidh'; +$a->strings['Drop files here to upload'] = 'Leig às faidhlichean an-seo gus an luchdadh suas'; +$a->strings['Your browser does not support drag and drop file uploads.'] = 'Cha chuir am brabhsair agad taic ri luchdadh suas fhaidhlichean le slaodadh is leigeil às.'; +$a->strings['Please use the fallback form below to upload your files like in the olden days.'] = 'Cleachd an t-seann-dòigh airson faidhlichean a luchdadh suas leis an fhoirm gu h-ìosal.'; +$a->strings['File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.'] = 'Tha am faidhle ro mhòr ({{filesize}}MiB). Meud as motha nam faidhlichean: {{maxFilesize}}MiB.'; +$a->strings['You can\'t upload files of this type.'] = 'Chan urrainn dhut faidhlichean dhen t-seòrsa seo a luchdadh suas.'; +$a->strings['Server responded with {{statusCode}} code.'] = 'Dh’fhreagair am frithealaiche le còd {{statusCode}}.'; +$a->strings['Cancel upload'] = 'Sguir dhen luchdadh suas'; +$a->strings['Upload canceled.'] = 'Chaidh sgur dhen luchdadh suas.'; +$a->strings['Are you sure you want to cancel this upload?'] = 'A bheil thu cinnteach gu bheil thu airson sgur dhen luchdadh suas seo?'; +$a->strings['Remove file'] = 'Thoir am faidhle air falbh'; +$a->strings['You can\'t upload any more files.'] = 'Chan urrainn dhut barrachd fhaidhlichean a luchdadh suas.'; +$a->strings['toggle mobile'] = 'toglaich mobile'; $a->strings['Method not allowed for this module. Allowed method(s): %s'] = 'Chan eil am modh ceadaichte dhan mhòideal seo. Modh(an) ceadaichte: %s'; $a->strings['Page not found.'] = 'Cha deach an duilleag a lorg.'; $a->strings['You must be logged in to use addons. '] = 'Feumaidh tu clàradh a-steach mus urrainn dhut tuilleadain a chleachdadh. '; @@ -417,7 +237,9 @@ $a->strings['Could not find any unarchived contact entry for this URL (%s)'] = ' $a->strings['The contact entries have been archived'] = 'Chaidh an luchd-aithne a chur san tasg-lann'; $a->strings['Could not find any contact entry for this URL (%s)'] = 'Cha do lorg sinn neach-aithne dhan URL seo (%s)'; $a->strings['The contact has been blocked from the node'] = 'Chaidh an neach-aithne a bhacadh on nòd'; +$a->strings['%d %s, %d duplicates.'] = '%d %s, dùblachaidhean: %d.'; $a->strings['uri-id is empty for contact %s.'] = 'Tha uri-id falamh dhan neach-aithne %s.'; +$a->strings['No valid first contact found for uri-id %d.'] = 'Cha deach ciad neach-aithne dligheach a lorg dha uri-id %d.'; $a->strings['Wrong duplicate found for uri-id %d in %d (url: %s != %s).'] = 'Lorg sinn an dùblachadh ceàrr dha uri-id %d am broinn %d (url: %s != %s).'; $a->strings['Wrong duplicate found for uri-id %d in %d (nurl: %s != %s).'] = 'Lorg sinn an dùblachadh ceàrr dha uri-id %d am broinn %d (nurl: %s != %s).'; $a->strings['Deletion of id %d failed'] = 'Cha deach leinn id %d a sguabadh às'; @@ -440,6 +262,7 @@ $a->strings['Done.'] = 'Deiseil.'; $a->strings['Execute pending post updates.'] = 'A’ gnìomhachadh nan ùrachaidhean air postaichean rin dèiligeadh.'; $a->strings['All pending post updates are done.'] = 'Tha na h-ùrachaidhean air postaichean rin dèiligeadh deiseil.'; $a->strings['Enter user nickname: '] = 'Cuir a-steach far-ainm a’ chleachdaiche: '; +$a->strings['User not found'] = 'Cha deach an cleachdaiche a lorg'; $a->strings['Enter new password: '] = 'Cuir a-steach am facal-faire ùr: '; $a->strings['Password update failed. Please try again.'] = 'Dh’fhàillig ùrachadh an fhacail-fhaire. Feuch ris a-rithist.'; $a->strings['Password changed.'] = 'Chaidh am facal-faire atharrachadh.'; @@ -464,7 +287,7 @@ $a->strings['DFRN'] = 'DFRN'; $a->strings['OStatus'] = 'OStatus'; $a->strings['RSS/Atom'] = 'RSS/Atom'; $a->strings['Email'] = 'Post-d'; -$a->strings['Diaspora'] = 'Diaspora'; +$a->strings['Diaspora'] = 'Diaspora*'; $a->strings['Zot!'] = 'Zot!'; $a->strings['LinkedIn'] = 'LinkedIn'; $a->strings['XMPP/IM'] = 'XMPP/IM'; @@ -473,30 +296,87 @@ $a->strings['Google+'] = 'Google+'; $a->strings['pump.io'] = 'pump.io'; $a->strings['Twitter'] = 'Twitter'; $a->strings['Discourse'] = 'Discourse'; -$a->strings['Diaspora Connector'] = 'Ceangladair diaspora'; +$a->strings['Diaspora Connector'] = 'Ceangladair diaspora*'; $a->strings['GNU Social Connector'] = 'Ceangladair GNU Social'; $a->strings['ActivityPub'] = 'ActivityPub'; $a->strings['pnut'] = 'pnut'; +$a->strings['Tumblr'] = 'Tumblr'; +$a->strings['Bluesky'] = 'Bluesky'; $a->strings['%s (via %s)'] = '%s (slighe %s)'; -$a->strings['%s likes this.'] = '’S toigh le %s seo.'; -$a->strings['%s doesn\'t like this.'] = 'Cha toigh le %s seo.'; -$a->strings['%s attends.'] = 'Bidh %s an làthair.'; -$a->strings['%s doesn\'t attend.'] = 'Cha bhi %s an làthair.'; -$a->strings['%s attends maybe.'] = '’S dòcha gum bi %s an làthair.'; -$a->strings['%s reshared this.'] = 'Co-roinn %s seo.'; $a->strings['and'] = 'agus'; $a->strings['and %d other people'] = 'agus %d eile'; -$a->strings['%2$d people like this'] = '’S toigh le %2$d seo'; -$a->strings['%s like this.'] = '’S toigh le %s seo.'; -$a->strings['%2$d people don\'t like this'] = 'Cha toigh le %2$d seo'; -$a->strings['%s don\'t like this.'] = 'Cha toigh le %s seo.'; -$a->strings['%2$d people attend'] = 'Bidh %2$d an làthair'; -$a->strings['%s attend.'] = 'Bidh %s an làthair.'; -$a->strings['%2$d people don\'t attend'] = 'Cha bhi %2$d an làthair'; -$a->strings['%s don\'t attend.'] = 'Cha bhi %s an làthair.'; -$a->strings['%2$d people attend maybe'] = '’S dòcha gum bi %2$d an làthair'; -$a->strings['%s attend maybe.'] = '’S dòcha gum bi %s an làthair.'; -$a->strings['%2$d people reshared this'] = 'Cho-roinn %2$d seo'; +$a->strings['%2$s likes this.'] = [ + 0 => '’S toigh le %2$s seo.', + 1 => '’S toigh le %2$s seo.', + 2 => '’S toigh le %2$s seo.', + 3 => '’S toigh le %2$s seo.', +]; +$a->strings['%2$s doesn\'t like this.'] = [ + 0 => 'Cha toigh le %2$s seo.', + 1 => 'Cha toigh le %2$s seo.', + 2 => 'Cha toigh le %2$s seo.', + 3 => 'Cha toigh le %2$s seo.', +]; +$a->strings['%2$s attends.'] = [ + 0 => 'Bidh %2$s an làthair.', + 1 => 'Bidh %2$s an làthair.', + 2 => 'Bidh %2$s an làthair.', + 3 => 'Bidh %2$s an làthair.', +]; +$a->strings['%2$s doesn\'t attend.'] = [ + 0 => 'Cha bhi %2$s an làthair.', + 1 => 'Cha bhi %2$s an làthair.', + 2 => 'Cha bhi %2$s an làthair.', + 3 => 'Cha bhi %2$s an làthair.', +]; +$a->strings['%2$s attends maybe.'] = [ + 0 => '’S dòcha gum bi %2$s an làthair.', + 1 => '’S dòcha gum bi %2$s an làthair.', + 2 => '’S dòcha gum bi %2$s an làthair.', + 3 => '’S dòcha gum bi %2$s an làthair.', +]; +$a->strings['%2$s reshared this.'] = [ + 0 => 'Co-roinn %2$s seo.', + 1 => 'Co-roinn %2$s seo.', + 2 => 'Co-roinn %2$s seo.', + 3 => 'Co-roinn %2$s seo.', +]; +$a->strings[' likes this'] = [ + 0 => '’S toil le seo', + 1 => '’S toigh le seo', + 2 => '’S toigh le seo', + 3 => '’S toigh le seo', +]; +$a->strings[' doesn\'t like this'] = [ + 0 => 'Cha toigh le seo', + 1 => 'Cha toigh le seo', + 2 => 'Cha toigh le seo', + 3 => 'Cha toigh le seo', +]; +$a->strings[' attends'] = [ + 0 => 'Bidh an làthair', + 1 => 'Bidh an làthair', + 2 => 'Bidh an làthair', + 3 => 'Bidh an làthair', +]; +$a->strings[' doesn\'t attend'] = [ + 0 => 'Cha bhi an làthair.', + 1 => 'Cha bhi an làthair', + 2 => 'Cha bhi an làthair', + 3 => 'Cha bhi an làthair', +]; +$a->strings[' attends maybe'] = [ + 0 => '’S dòcha gum bi an làthair', + 1 => '’S dòcha gum bi an làthair', + 2 => '’S dòcha gum bi an làthair', + 3 => '’S dòcha gum bi an làthair', +]; +$a->strings[' reshared this'] = [ + 0 => 'Cho-roinn seo', + 1 => 'Cho-roinn seo', + 2 => 'Cho-roinn seo', + 3 => 'Cho-roinn seo', +]; $a->strings['Visible to everybody'] = 'Chì a h-uile duine e'; $a->strings['Please enter a image/video/audio/webpage URL:'] = 'Cuir a-steach URL deilbh/video/fuaime/làraich-lìn:'; $a->strings['Tag term:'] = 'Teirm tagaidh:'; @@ -506,20 +386,38 @@ $a->strings['Delete item(s)?'] = 'An sguab thu seo às?'; $a->strings['Created at'] = 'Air a chruthachadh'; $a->strings['New Post'] = 'Post ùr'; $a->strings['Share'] = 'Co-roinn'; +$a->strings['upload photo'] = 'luchdaich suas dealbh'; +$a->strings['Attach file'] = 'Ceangail faidhle ris'; +$a->strings['attach file'] = 'ceangail faidhle ris'; +$a->strings['Bold'] = 'Trom'; +$a->strings['Italic'] = 'Eadailteach'; +$a->strings['Underline'] = 'Loidhne fodha'; +$a->strings['Quote'] = 'Iomradh'; +$a->strings['Add emojis'] = 'Cuir Emojis ris'; +$a->strings['Content Warning'] = 'Rabhadh susbainte'; +$a->strings['Code'] = 'Còd'; $a->strings['Image'] = 'Dealbh'; +$a->strings['Link'] = 'Ceangal'; +$a->strings['Link or Media'] = 'Ceangal no meadhan'; $a->strings['Video'] = 'Video'; +$a->strings['Set your location'] = 'Suidhich d’ ionad'; +$a->strings['set location'] = 'suidhich d’ ionad'; +$a->strings['Clear browser location'] = 'Falamhaich ionad a’ bhrabhsair'; +$a->strings['clear location'] = 'falamhaich an ionad'; +$a->strings['Set title'] = 'Suidhich an tiotal'; +$a->strings['Categories (comma-separated list)'] = 'Roinnean-seòrsa (liosta sgaraichte le cromagan).'; $a->strings['Scheduled at'] = 'Air an sgeideal'; -$a->strings['Pinned item'] = 'Nì prìnichte'; -$a->strings['View %s\'s profile @ %s'] = 'Seall a’ phròifil aig %s @ %s'; -$a->strings['Categories:'] = 'Roinnean-seòrsa:'; -$a->strings['Filed under:'] = 'Air a chlàradh fo:'; -$a->strings['%s from %s'] = '%s o %s'; -$a->strings['View in context'] = 'Seall le co-theacsa'; +$a->strings['Permission settings'] = 'Roghainnean cead'; +$a->strings['Public post'] = 'Post poblach'; +$a->strings['Message'] = 'Teachdaireachd'; +$a->strings['Browser'] = 'Brabhsair'; +$a->strings['Open Compose page'] = 'Fosgail duilleag an sgrìobhaidh'; $a->strings['remove'] = 'thoir air falbh'; $a->strings['Delete Selected Items'] = 'Sguab às na nithean a thagh thu'; $a->strings['You had been addressed (%s).'] = 'Chaidh d’ ainmeachadh (%s).'; $a->strings['You are following %s.'] = 'Tha thu a’ leantainn air %s.'; $a->strings['You subscribed to one or more tags in this post.'] = 'Dh’fho-sgrìobh thu air taga no dhà sa phost seo.'; +$a->strings['%s reshared this.'] = 'Co-roinn %s seo.'; $a->strings['Reshared'] = '’Ga cho-roinneadh'; $a->strings['Reshared by %s <%s>'] = '’Ga cho-roinneadh le %s <%s>'; $a->strings['%s is participating in this thread.'] = 'Tha %s a’ gabhail pàirt san t-snàithlean seo.'; @@ -534,14 +432,34 @@ $a->strings['Local delivery'] = 'Lìbhrigeadh ionadail'; $a->strings['Stored because of your activity (like, comment, star, ...)'] = 'Chaidh a stòradh air sàilleibh do ghnìomhachd (’s toigh, beachd, rionnag, …)'; $a->strings['Distributed'] = 'Sgaoilte'; $a->strings['Pushed to us'] = 'Air a phutadh thugainne'; +$a->strings['Pinned item'] = 'Nì prìnichte'; +$a->strings['View %s\'s profile @ %s'] = 'Seall a’ phròifil aig %s @ %s'; +$a->strings['Categories:'] = 'Roinnean-seòrsa:'; +$a->strings['Filed under:'] = 'Air a chlàradh fo:'; +$a->strings['%s from %s'] = '%s o %s'; +$a->strings['View in context'] = 'Seall le co-theacsa'; +$a->strings['Local Community'] = 'Coimhearsnachd ionadail'; +$a->strings['Posts from local users on this server'] = 'Postaichean o luchd-cleachdaidh ionadail an fhrithealaiche seo'; +$a->strings['Global Community'] = 'Coimhearsnachd cho-naisgte'; +$a->strings['Posts from users of the whole federated network'] = 'Postaichean on luchd-cleachdaidh air an lìonra cho-naisgte gu lèir'; +$a->strings['Latest Activity'] = 'A’ ghnìomhachd as ùire'; +$a->strings['Sort by latest activity'] = 'Seòrsaich a-rèir na gnìomhachd as ùire'; +$a->strings['Latest Posts'] = 'Na postaichean as ùire'; +$a->strings['Sort by post received date'] = 'Seòrsaich a-rèir ceann-là faighinn nam post'; +$a->strings['Latest Creation'] = 'An cruthachadh as ùire'; +$a->strings['Sort by post creation date'] = 'Seòrsaich a-rèir ceann-là cruthachadh nam post'; +$a->strings['Personal'] = 'Pearsanta'; +$a->strings['Posts that mention or involve you'] = 'Postaichean le iomradh ort no sa bheil thu an sàs'; +$a->strings['Starred'] = 'Rionnag'; +$a->strings['Favourite Posts'] = 'Na postaichean as annsa'; $a->strings['General Features'] = 'Gleusan coitcheann'; $a->strings['Photo Location'] = 'Ionad an deilbh'; $a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'Thèid meata-dàta nan dealbhan a rùsgadh air falbh. Togaidh seo an t-ionad (ma tha gin ann) mus dèid am meata-dàta a rùsgadh is thèid a cheangal ri mapa.'; $a->strings['Trending Tags'] = 'Tagaichean a’ treandadh'; $a->strings['Show a community page widget with a list of the most popular tags in recent public posts.'] = 'Seall widget duilleag coimhearsnachd le liosta nan tagaichean as fhèillmhoire sna postaichean poblach as ùire.'; $a->strings['Post Composition Features'] = 'Gleusan sgrìobhadh puist'; -$a->strings['Auto-mention Forums'] = 'Thoir iomradh air fòram gu fèin-obrachail'; -$a->strings['Add/remove mention when a forum page is selected/deselected in ACL window.'] = 'Cuir ris/thoir air falbh an t-iomradh nuair a thèid duilleag fòraim a thaghadh no dì-thaghadh san uinneag ACL.'; +$a->strings['Auto-mention Groups'] = 'Thoir iomradh air bhuidhnean gu fèin-obrachail'; +$a->strings['Add/remove mention when a group page is selected/deselected in ACL window.'] = 'Cuir ris/thoir air falbh an t-iomradh nuair a thèid duilleag buidhinn a thaghadh no dì-thaghadh san uinneag ACL.'; $a->strings['Explicit Mentions'] = 'Iomraidhean soilleir'; $a->strings['Add explicit mentions to comment box for manual control over who gets mentioned in replies.'] = 'Cuir iomraidhean soilleir ri bogsa a’ bheachd airson smachd a làimh air cò air a thèid iomradh a dhèanamh ann am freagairtean.'; $a->strings['Add an abstract from ActivityPub content warnings'] = 'Cuir geàrr-chunntas ris o rabhaidhean susbainte ActivityPub'; @@ -550,17 +468,24 @@ $a->strings['Post/Comment Tools'] = 'Innealan postaidh/beachdachaidh'; $a->strings['Post Categories'] = 'Roinnean-seòrsa nam post'; $a->strings['Add categories to your posts'] = 'Cuir roinnean-seòrsa ris na postaichean agad'; $a->strings['Advanced Profile Settings'] = 'Roghainnean adhartach na pròifile'; -$a->strings['List Forums'] = 'Liosta nam fòraman'; -$a->strings['Show visitors public community forums at the Advanced Profile Page'] = 'Seall fòraman poblach na coimhearsnachd dhan fheadhainn a thadhlas air duilleag adhartach na pròifil'; +$a->strings['List Groups'] = 'Seall na buidhnean'; +$a->strings['Show visitors public groups at the Advanced Profile Page'] = 'Seall buidhnean poblach dhan fheadhainn a thadhlas air duilleag adhartach na pròifil'; $a->strings['Tag Cloud'] = 'Neul nan tagaichean'; $a->strings['Provide a personal tag cloud on your profile page'] = 'Solair neul thagaichean pearsanta air duilleag do phròifile'; $a->strings['Display Membership Date'] = 'Seall ceann-là na ballrachd'; $a->strings['Display membership date in profile'] = 'Seall ceann-là na ballrachd sa phròifil'; -$a->strings['Forums'] = 'Fòraman'; -$a->strings['External link to forum'] = 'Ceangal cèin dhan fhòram'; +$a->strings['Advanced Calendar Settings'] = 'Roghainnean adhartach a’ mhìosachain'; +$a->strings['Allow anonymous access to your calendar'] = 'Ceadaich inntrigeadh gun ainm dhan mhìosachan agad'; +$a->strings['Allows anonymous visitors to consult your calendar and your public events. Contact birthday events are private to you.'] = 'Leigidh seo le aoighean sùil a thoirt air a’ mhìosachan ’s air na tachartasan poblach agad. Bidh tachartasan cinn-là breith an luchd-aithne agad prìobhaideach dhut-sa.'; +$a->strings['Groups'] = 'Buidhnean'; +$a->strings['External link to group'] = 'Ceangal cèin dhan bhuidheann'; $a->strings['show less'] = 'seall nas lugha dheth'; $a->strings['show more'] = 'seall barrachd dheth'; +$a->strings['Create new group'] = 'Cruthaich buidheann ùr'; $a->strings['event'] = 'tachartas'; +$a->strings['status'] = 'staid'; +$a->strings['photo'] = 'dealbh'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = 'Chuir %1$s taga %4$s ri %3$s aig %2$s'; $a->strings['Follow Thread'] = 'Lean air an t-snàithlean'; $a->strings['View Status'] = 'Seall an staid'; $a->strings['View Profile'] = 'Seall a’ phròifil'; @@ -570,26 +495,32 @@ $a->strings['View Contact'] = 'Seall an neach-aithne'; $a->strings['Send PM'] = 'Cuir TPh'; $a->strings['Block'] = 'Bac'; $a->strings['Ignore'] = 'Leig seachad'; +$a->strings['Collapse'] = 'Co-theannaich'; $a->strings['Languages'] = 'Cànanan'; +$a->strings['Connect/Follow'] = 'Ceangail ris/Lean air'; +$a->strings['Unable to fetch user.'] = 'Chan urrainn dhuinn an cleachdaiche fhaighinn dhut.'; $a->strings['Nothing new here'] = 'Chan eil dad ùr an-seo'; $a->strings['Go back'] = 'Air ais'; $a->strings['Clear notifications'] = 'Falamhaich na brathan'; -$a->strings['@name, !forum, #tags, content'] = '@ainm, !fòram, #tagaichean, susbaint'; +$a->strings['@name, !group, #tags, content'] = '@ainm, !buidheann, #tagaichean, susbaint'; $a->strings['Logout'] = 'Clàraich a-mach'; $a->strings['End this session'] = 'Cuir crìoch air an t-seisean seo'; $a->strings['Login'] = 'Clàraich a-steach'; $a->strings['Sign in'] = 'Clàraich a-steach'; -$a->strings['Status'] = 'Staid'; -$a->strings['Your posts and conversations'] = 'Na postaichean ’s còmhraidhean agad'; +$a->strings['Conversations'] = 'Còmhraidhean'; +$a->strings['Conversations you started'] = 'Na còmhraidhean a thòisich thusa'; $a->strings['Profile'] = 'Pròifil'; $a->strings['Your profile page'] = 'Duilleag na pròifil agad'; +$a->strings['Photos'] = 'Dealbhan'; $a->strings['Your photos'] = 'Na dealbhan agad'; $a->strings['Media'] = 'Meadhanan'; $a->strings['Your postings with media'] = 'Na postaichean agad sa bheil meadhanan'; -$a->strings['Your events'] = 'Na tachartasan agad'; +$a->strings['Calendar'] = 'Mìosachan'; +$a->strings['Your calendar'] = 'Am mìosachan agad'; $a->strings['Personal notes'] = 'Nòtaichean pearsanta'; $a->strings['Your personal notes'] = 'Na nòtaichean pearsanta agad'; $a->strings['Home'] = 'Dachaigh'; +$a->strings['Home Page'] = 'Duilleag-dhachaigh'; $a->strings['Register'] = 'Clàraich leinn'; $a->strings['Create an account'] = 'Cruthaich cunntas'; $a->strings['Help'] = 'Cobhair'; @@ -603,7 +534,6 @@ $a->strings['Tags'] = 'Tagaichean'; $a->strings['Contacts'] = 'Luchd-aithne'; $a->strings['Community'] = 'Coimhearsnachd'; $a->strings['Conversations on this and other servers'] = 'Còmhraidhean air an fhrithealaiche seo is frithealaichean eile'; -$a->strings['Events and Calendar'] = 'Tachartasan ’s mìosachan'; $a->strings['Directory'] = 'Eòlaire'; $a->strings['People directory'] = 'Eòlaire nan daoine'; $a->strings['Information'] = 'Fiosrachadh'; @@ -612,9 +542,12 @@ $a->strings['Terms of Service'] = 'Teirmichean na seirbheise'; $a->strings['Terms of Service of this Friendica instance'] = 'Teirmichean seirbheise an ionstans Friendica seo'; $a->strings['Network'] = 'Lìonra'; $a->strings['Conversations from your friends'] = 'Còmhraidhean nan caraidean agad'; +$a->strings['Your posts and conversations'] = 'Na postaichean ’s còmhraidhean agad'; +$a->strings['Introductions'] = 'Cuir an aithne'; $a->strings['Friend Requests'] = 'Iarrtasan càirdeis'; $a->strings['Notifications'] = 'Brathan'; $a->strings['See all notifications'] = 'Seall gach brath'; +$a->strings['Mark as seen'] = 'Cuir comharra gun deach fhaicinn'; $a->strings['Mark all system notifications as seen'] = 'Cuir comharra gun deach gach brath an t-siostaim a leughadh'; $a->strings['Private mail'] = 'Post prìobhaideach'; $a->strings['Inbox'] = 'Am bogsa a-steach'; @@ -626,6 +559,8 @@ $a->strings['Account settings'] = 'Roghainnean a’ chunntais'; $a->strings['Manage/edit friends and contacts'] = 'Stiùir/deasaich caraidean is luchd-aithne'; $a->strings['Admin'] = 'Rianachd'; $a->strings['Site setup and configuration'] = 'Suidheachadh ’s rèiteachadh na làraich'; +$a->strings['Moderation'] = 'Maorsainneachd'; +$a->strings['Content and user moderation'] = 'Susbaint is maorsainneachd chleachdaichean'; $a->strings['Navigation'] = 'Seòladaireachd'; $a->strings['Site map'] = 'Mapa na làraich'; $a->strings['Embedding disabled'] = 'Tha an leabachadh à comas'; @@ -643,6 +578,7 @@ $a->strings['Encrypted content'] = 'Susbaint chrioptaichte'; $a->strings['Invalid source protocol'] = 'Pròtacal tùis mì-dhligheach'; $a->strings['Invalid link protocol'] = 'Pròtacal ceangail mì-dhligheach'; $a->strings['Loading more entries...'] = 'A’ luchdadh barrachd nithean…'; +$a->strings['The end'] = 'A’ chrìoch'; $a->strings['Follow'] = 'Lean air'; $a->strings['Add New Contact'] = 'Cuir neach-aithne ùr ris'; $a->strings['Enter address or web location'] = 'Cuir a-steach seòladh no ionad-lìn'; @@ -658,13 +594,15 @@ $a->strings['Find People'] = 'Lorg daoine'; $a->strings['Enter name or interest'] = 'Cuir a-steach ainm no ùidh'; $a->strings['Examples: Robert Morgenstein, Fishing'] = 'Mar eisimpleir: Aonghas MacLeòid, iasgach'; $a->strings['Find'] = 'Lorg'; +$a->strings['Friend Suggestions'] = 'Molaidhean charaidean'; $a->strings['Similar Interests'] = 'Ùidhean an cumantas'; $a->strings['Random Profile'] = 'Pròifil air thuaiream'; $a->strings['Invite Friends'] = 'Thoir cuireadh do charaidean'; $a->strings['Global Directory'] = 'Eòlaire co-naisgte'; $a->strings['Local Directory'] = 'Eòlaire ionadail'; -$a->strings['Groups'] = 'Buidhnean'; +$a->strings['Circles'] = 'Cearcallan'; $a->strings['Everyone'] = 'A h-uile duine'; +$a->strings['No relationship'] = 'Gu dàimh'; $a->strings['Relationships'] = 'Dàimhean'; $a->strings['All Contacts'] = 'A h-uile neach-aithne'; $a->strings['Protocols'] = 'Pròtacalan'; @@ -679,6 +617,7 @@ $a->strings['%d contact in common'] = [ 3 => '%d luchd-aithne an cumantas', ]; $a->strings['Archives'] = 'Tasg-lannan'; +$a->strings['On this date'] = 'Air an latha seo'; $a->strings['Persons'] = 'Daoine'; $a->strings['Organisations'] = 'Buidhnean'; $a->strings['News'] = 'Naidheachdan'; @@ -706,6 +645,7 @@ $a->strings['Trending Tags (last %d hour)'] = [ $a->strings['More Trending Tags'] = 'Barrachd thagaichean a’ treandadh'; $a->strings['XMPP:'] = 'XMPP:'; $a->strings['Matrix:'] = 'Matrix:'; +$a->strings['Location:'] = 'Ionad:'; $a->strings['Network:'] = 'Lìonra:'; $a->strings['Unfollow'] = 'Na lean tuilleadh'; $a->strings['Yourself'] = 'Thu fhèin'; @@ -715,8 +655,11 @@ $a->strings['Public'] = 'Poblach'; $a->strings['This content will be shown to all your followers and can be seen in the community pages and by anyone with its link.'] = 'Thèid an t-susbaint seo a shealltainn dhan luchd-leantainn gu lèir agad agus chithear air duilleagan na coimhearsnachd i agus chì a h-uile duine aig a bheil an ceangal seo i.'; $a->strings['Limited/Private'] = 'Cuingichte/Prìobhaideach'; $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.'] = 'Thèid an t-susbaint seo a shealltainn dhan fheadhainn san dàrna bhogsa a-mhàin is chan fhaic an fheadhainn sa bhogsa eile. Cha nochd i gu poblach àite sam bith.'; +$a->strings['Start typing the name of a contact or a circle to show a filtered list. You can also mention the special circles "Followers" and "Mutuals".'] = 'Tòisich air ainm neach-aithne no cearcall a sgrìobhadh a shealltainn liosta chriathraichte. ’S urrainn dhut iomradh a thoirt air cearcallan sònraichte mar “Luchd-leantainn” no “Co-dhàimhean” cuideachd.'; $a->strings['Show to:'] = 'Seall gu:'; $a->strings['Except to:'] = 'Ach gu:'; +$a->strings['CC: email addresses'] = 'CC: seòlaidhean puist-d'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Mar eisimpleir: aonghas@ball-eisimpleir.com, oighrig@ball-eisimpleir.com'; $a->strings['Connectors'] = 'Ceangladairean'; $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.'] = 'Cha b’ urrainn dhuinn sgrìobadh gu faidhle rèiteachadh an stòir-dhàta “config/local.config.php”. Cleachd an teacsa am broinn seo airson faidhle rèiteachaidh a chruthachadh ann am freumh an fhrithealaiche-lìn agad.'; $a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Dh’fhaoidte gum bi agad ris an fhaidhle “database.sql” ion-phortadh a làimh le phpmyadmin no mysql.'; @@ -823,6 +766,8 @@ $a->strings['Sep'] = 'Sult'; $a->strings['Oct'] = 'Dàmh'; $a->strings['Nov'] = 'Samh'; $a->strings['Dec'] = 'Dùbh'; +$a->strings['The logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Cha ghabh faidhle “%s” an loga a chleachdadh. Cha ghabh logadh a dhèanamh (mearachd: “%s”)'; +$a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Cha ghabh faidhle “%s” an loga dì-bhugachaidh a chleachdadh. Cha ghabh logadh a dhèanamh (mearachd: “%s”)'; $a->strings['Friendica can\'t display this page at the moment, please contact the administrator.'] = 'Chan urrainn dha Friendica an duilleag seo a shealltainn an-dràsta, cuir fios gun rianaire.'; $a->strings['template engine cannot be registered without a name.'] = 'cha ghabh einnsean theamplaidean a chlàradh gun ainm.'; $a->strings['template engine is not registered!'] = 'cha deach an t-einnsean theamplaidean a chlàradh!'; @@ -846,20 +791,8 @@ $a->strings[' $a->strings['The error message is\n[pre]%s[/pre]'] = 'Seo teachdaireachd na mearachd:\n[pre]%s[/pre]'; $a->strings['[Friendica Notify] Database update'] = '[Brath Friendica] Ùrachadh an stòir-dhàta'; $a->strings[' - The friendica database was successfully updated from %s to %s.'] = ' - Chaidh stòr-dàta Friendica ùrachadh o %s gu %s.'; -$a->strings['Error decoding account file'] = 'Mearachd le dì-chòdachadh faidhle a’ chunntais'; -$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Mearachd! Chan eil dàta mun tionndadh san fhaidhle! Nach e faidhle cunntas Friendica a th’ ann?'; -$a->strings['User \'%s\' already exists on this server!'] = 'Tha an cleachdaiche “%s” air an fhrithealaiche seo mu thràth!'; -$a->strings['User creation error'] = 'Mearachd a’ cruthachadh a’ chleachdaiche'; -$a->strings['%d contact not imported'] = [ - 0 => 'Tha %d neach-aithne nach deach ion-phortadh', - 1 => 'Tha %d luchd-aithne nach deach ion-phortadh', - 2 => 'Tha %d luchd-aithne nach deach ion-phortadh', - 3 => 'Tha %d luchd-aithne nach deach ion-phortadh', -]; -$a->strings['User profile creation error'] = 'Mearachd a’ cruthachadh pròifil a’ chleachdaiche'; -$a->strings['Done. You can now login with your username and password'] = 'Deiseil. ’S urrainn dhut clàradh a-steach leis an ainm-chleachdaiche ’s fhacal-fhaire agad a-nis'; + The friendica database was successfully updated from %s to %s.'] = ' + Chaidh stòr-dàta Friendica ùrachadh o %s gu %s.'; $a->strings['The database version had been set to %s.'] = 'Chaidh tionndadh an stòir-dhàta a shuidheachadh air %s.'; $a->strings['The post update is at version %d, it has to be at %d to safely drop the tables.'] = 'Tha an t-iar-ùrachadh air tionndadh %d ach feumaidh e bhith air %d mus gabh na clàran a leigeil às gu sàbhailte.'; $a->strings['No unused tables found.'] = 'Cha deach clàr gun cleachdadh a lorg.'; @@ -882,14 +815,23 @@ $a->strings['Unauthorized'] = 'Gun chead'; $a->strings['Token is not authorized with a valid user or is missing a required scope'] = 'Cha deach an tòcan ùghdarrachadh le cleachdaiche dligheach no tha sgòp riatanach a dhìth'; $a->strings['Internal Server Error'] = 'Mearachd frithealaiche inntearnail'; $a->strings['Legacy module file not found: %s'] = 'Cha deach am faidhle mòideil dìleabach seo a lorg: %s'; -$a->strings['UnFollow'] = 'Na lean tuilleadh'; +$a->strings['A deleted circle with this name was revived. Existing item permissions may apply to this circle and any future members. If this is not what you intended, please create another circle with a different name.'] = 'Chaidh cearcall a bh’ air a sguabadh às ath-bheòthachadh. Faodaidh ceadan a tha ann air nithean a bhith an sàs air a’ chearcall seo is air ball ri teachd sam bith. Mur e sin a bha fa-near dhut, cruthaich cearcall eile air a bheil ainm eile.'; +$a->strings['Everybody'] = 'A h-uile duine'; +$a->strings['edit'] = 'deasaich'; +$a->strings['add'] = 'cuir ris'; +$a->strings['Edit circle'] = 'Deasaich an cearcall'; +$a->strings['Contacts not in any circle'] = 'Luchd-aithne gun chearcall'; +$a->strings['Create a new circle'] = 'Cruthaich cearcall ùr'; +$a->strings['Circle Name: '] = 'Ainm a’ chearcaill: '; +$a->strings['Edit circles'] = 'Deasaich na cearcallan'; $a->strings['Approve'] = 'Aontaich ris'; $a->strings['Organisation'] = 'Buidheann'; -$a->strings['Forum'] = 'Fòram'; +$a->strings['Group'] = 'Buidheann'; $a->strings['Disallowed profile URL.'] = 'URL pròifile mì-dhligheach.'; $a->strings['Blocked domain'] = 'Àrainn bhacte'; $a->strings['Connect URL missing.'] = 'Tha URL a’ cheangail a dhìth.'; $a->strings['The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.'] = 'Cha b’ urrainn dhuinn an neach-aithne a chur ris. Thoir sùil air teisteas an lìonraidh iomchaidh air duilleag nan “Roghainnean” > “Lìonraidhean sòisealta” agad.'; +$a->strings['Expected network %s does not match actual network %s'] = 'Chan eil an lìonra %s air a bheil dùil co-ionnann ris a lìonra %s a tha ann'; $a->strings['The profile address specified does not provide adequate information.'] = 'Chan eil an seòladh pròifile a shònraich thu a’ solar am fiosrachadh iomchaidh.'; $a->strings['No compatible communication protocols or feeds were discovered.'] = 'Cha do lorg sinn pròtacal conaltraidh no inbhir iomchaidh.'; $a->strings['An author or name was not found.'] = 'Cha deach an t-ùghdar no ainm a lorg.'; @@ -904,7 +846,13 @@ $a->strings['Starts:'] = 'A’ tòiseachadh:'; $a->strings['Finishes:'] = 'Thig e gu crìoch:'; $a->strings['all-day'] = 'fad an latha'; $a->strings['Sept'] = 'Sult'; +$a->strings['today'] = 'an-diugh'; +$a->strings['month'] = 'mìos'; +$a->strings['week'] = 'seachdain'; +$a->strings['day'] = 'latha'; $a->strings['No events to display'] = 'Chan eil tachartas ri shealltainn ann'; +$a->strings['Access to this profile has been restricted.'] = 'Chaidh an t-inntrigeadh dhan phròifil seo a chuingeachadh.'; +$a->strings['Event not found.'] = 'Cha deach an tachartas a lorg.'; $a->strings['l, F j'] = 'l, j F'; $a->strings['Edit event'] = 'Deasaich an tachartas'; $a->strings['Duplicate event'] = 'Dùblaich an tachartas'; @@ -916,34 +864,49 @@ $a->strings['Show map'] = 'Seall am mapa'; $a->strings['Hide map'] = 'Falaich am mapa'; $a->strings['%s\'s birthday'] = 'Cò-là breith aig %s'; $a->strings['Happy Birthday %s'] = 'Co-là breith sona dhut, %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.'] = 'Chaidh buidheann a bh’ air a sguabadh às ath-bheòthachadh. Faodaidh ceadan a tha ann air nithean a bhith an sàs air a’ bhuidheann seo is air ball ri teachd sam bith. Mur e sin a bha fa-near dhut, cruthaich buidheann eile air a bheil ainm eile.'; -$a->strings['Default privacy group for new contacts'] = 'Am buidheann prìobhaideachd bunaiteach do luchd-aithne ùr'; -$a->strings['Everybody'] = 'A h-uile duine'; -$a->strings['edit'] = 'deasaich'; -$a->strings['add'] = 'cuir ris'; -$a->strings['Edit group'] = 'Deasaich am buidheann'; -$a->strings['Contacts not in any group'] = 'Luchd-aithne gun bhuidheann'; -$a->strings['Create a new group'] = 'Cruthaich buidheann ùr'; -$a->strings['Group Name: '] = 'Ainm a’ bhuidhinn: '; -$a->strings['Edit groups'] = 'Deasaich buidhnean'; $a->strings['Detected languages in this post:\n%s'] = 'Na cànanan dhan a mhothaich sinn sa phost seo:\n%s'; $a->strings['activity'] = 'gnìomhachd'; $a->strings['comment'] = 'beachd'; $a->strings['post'] = 'post'; +$a->strings['%s is blocked'] = 'Tha %s ’ga bhacadh'; +$a->strings['%s is ignored'] = 'Tha %s ’ga leigeil seachad'; +$a->strings['Content from %s is collapsed'] = 'Tha susbaint o %s ’ga cho-theannachadh'; $a->strings['Content warning: %s'] = 'Rabhadh susbainte: %s'; $a->strings['bytes'] = 'baidht'; -$a->strings['%s (%d%s, %d votes)'] = '%s (%d%s, rinn %d bhòtadh)'; -$a->strings['%s (%d votes)'] = '%s (rinn %d bhòtadh)'; -$a->strings['%d voters. Poll end: %s'] = 'Rinn %d bhòtadh. Crìoch a’ chunntais-bheachd: %s'; -$a->strings['%d voters.'] = 'Rinn %d bhòtadh.'; +$a->strings['%2$s (%3$d%%, %1$d vote)'] = [ + 0 => '%2$s (%3$d%%, %1$d bhòt)', + 1 => '%2$s (%3$d%%, %1$d bhòt)', + 2 => '%2$s (%3$d%%, %1$d bhòtaichean)', + 3 => '%2$s (%3$d%%, %1$d bhòt)', +]; +$a->strings['%2$s (%1$d vote)'] = [ + 0 => '%2$s (%1$d bhòt)', + 1 => '%2$s (%1$d bhòt)', + 2 => '%2$s (%1$d bhòtaichean)', + 3 => '%2$s (%1$d bhòt)', +]; +$a->strings['%d voter. Poll end: %s'] = [ + 0 => 'Rinn %d bhòtadh. Crìoch a’ chunntais-bheachd: %s', + 1 => 'Rinn %d bhòtadh. Crìoch a’ chunntais-bheachd: %s', + 2 => 'Rinn %d bhòtadh. Crìoch a’ chunntais-bheachd: %s', + 3 => 'Rinn %d bhòtadh. Crìoch a’ chunntais-bheachd: %s', +]; +$a->strings['%d voter.'] = [ + 0 => 'Rinn %d bhòtadh.', + 1 => 'Rinn %d bhòtadh.', + 2 => 'Rinn %d bhòtadh.', + 3 => 'Rinn %d bhòtadh.', +]; $a->strings['Poll end: %s'] = 'Crìoch a’ bhunntais-bheachd:%s'; $a->strings['View on separate page'] = 'Seall air duilleag fa leth'; $a->strings['[no subject]'] = '[gun chuspair]'; +$a->strings['Wall Photos'] = 'Dealbhan balla'; $a->strings['Edit profile'] = 'Deasaich a’ phròifil'; $a->strings['Change profile photo'] = 'Atharraich dealbh na pròifil'; $a->strings['Homepage:'] = 'Duilleag-dhachaigh:'; $a->strings['About:'] = 'Mu dhèidhinn:'; $a->strings['Atom feed'] = 'Inbhir Atom'; +$a->strings['This website has been verified to belong to the same person.'] = 'Chaidh dearbhadh gu bheil an làrach-lìn seo aig an aon neach.'; $a->strings['F d'] = 'd F'; $a->strings['[today]'] = '[an-diugh]'; $a->strings['Birthday Reminders'] = 'Cuimhneachain co-là breith'; @@ -980,7 +943,7 @@ $a->strings['Password can\'t be empty'] = 'Chan fhaod am facal-faire a bhith bà $a->strings['Empty passwords are not allowed.'] = 'Chan eil faclan-faire bàna ceadaichte.'; $a->strings['The new password has been exposed in a public data dump, please choose another.'] = 'Chaidh am facal-faire ùr fhoillseachadh ann an dumpadh dàta poblach, tagh fear eile.'; $a->strings['The password length is limited to 72 characters.'] = 'Chan fhaod am facal-faire a bhith nas fhaide na 72 caractar.'; -$a->strings['The password can\'t contain accentuated letters, white spaces or colons (:)'] = 'Chan fhaod stràc, àite bàn no còilean (:) a bhith am broinn an fhacail-fhaire.'; +$a->strings['The password can\'t contain white spaces nor accentuated letters'] = 'Chan fhaod àite bàn no litir le stràc a bhith am broinn an fhacail-fhaire'; $a->strings['Passwords do not match. Password unchanged.'] = 'Chan eil an dà fhacal-faire co-ionnann. Cha deach am facal-faire atharrachadh.'; $a->strings['An invitation is required.'] = 'Tha feum air cuireadh.'; $a->strings['Invitation could not be verified.'] = 'Cha b’ urrainn dhuinn an cuireadh a dhearbhadh.'; @@ -1012,7 +975,7 @@ $a->strings['An error occurred during registration. Please try again.'] = 'Thach $a->strings['An error occurred creating your default profile. Please try again.'] = 'Thachair mearachd le cruthachadh na pròifile bunaitiche agad. Feuch ris a-rithist.'; $a->strings['An error occurred creating your self contact. Please try again.'] = 'Thachair mearachd le cruthachadh neach-aithne dhiot fhèin. Feuch ris a-rithist.'; $a->strings['Friends'] = 'Caraidean'; -$a->strings['An error occurred creating your default contact group. Please try again.'] = 'Thachair mearachd le cruthachadh a’ bhuidhinn conaltraidh bhunaitich agad. Feuch ris a-rithist.'; +$a->strings['An error occurred creating your default contact circle. Please try again.'] = 'Thachair mearachd le cruthachadh a’ chearcaill luchd-aithne bhunaitich agad. Feuch ris a-rithist.'; $a->strings['Profile Photos'] = 'Dealbhan na pròifil'; $a->strings[' Dear %1$s, @@ -1043,7 +1006,7 @@ $a->strings[' If you are new and do not know anybody here, they may help you to make some new and interesting friends. - If you ever want to delete your account, you can do so at %1$s/removeme + If you ever want to delete your account, you can do so at %1$s/settings/removeme Thank you and welcome to %4$s.'] = ' Seo am fiosrachadh clàraidh a-steach: @@ -1068,7 +1031,7 @@ $a->strings[' Ma tha thu ùr an-seo is mur eil thu eòlach air duine sam bith, b’ urrainn dha na nithean seo do chuideachadh ach am cuir thu an aithne air caraidean inntinneach ùra. - Ma tha thu airson an cunntas agad a sguabadh às uair sam bith, ’s urrainn dhut sin a dhèanamh air %1$s/removeme + Ma tha thu airson an cunntas agad a sguabadh às uair sam bith, ’s urrainn dhut sin a dhèanamh air %1$s/settings/removeme Mòran taing agus fàilte gu %4$s.'; $a->strings['Registration details for %s'] = 'Am fiosrachadh clàraidh airson %s'; @@ -1123,7 +1086,7 @@ $a->strings[' If you are new and do not know anybody here, they may help you to make some new and interesting friends. - If you ever want to delete your account, you can do so at %3$s/removeme + If you ever want to delete your account, you can do so at %3$s/settings/removeme Thank you and welcome to %2$s.'] = ' Seo am fiosrachadh clàraidh a-steach: @@ -1148,19 +1111,9 @@ $a->strings[' Ma tha thu ùr an-seo is mur eil thu eòlach air duine sam bith, b’ urrainn dha na nithean seo do chuideachadh ach am cuir thu an aithne air caraidean inntinneach ùra. - Ma tha thu airson an cunntas agad a sguabadh às uair sam bith, ’s urrainn dhut sin a dhèanamh air %3$s/removeme + Ma tha thu airson an cunntas agad a sguabadh às uair sam bith, ’s urrainn dhut sin a dhèanamh air %3$s/settings/removeme Mòran taing agus fàilte gu %2$s.'; -$a->strings['[%s] Notice of remote server domain pattern block list update'] = '[%s] Brath air ùrachadh pàtrain àrainn fhrithealaichean cèine air an liosta-bhacaidh'; -$a->strings['Dear %s, - -You are receiving this email because the Friendica node at %s where you are registered as a user updated their remote server domain pattern block list. - -Please review the updated list at %s at your earliest convenience.'] = '%s, a charaid, - -Tha thu a’ faighinn am post-d seo air sgàth ’s gun do rinn an nòd Friendica air %s far a bheil thu clàraichte ’nad cleachdaiche ùrachadh air pàtran àrainn fhrithealaichean cèine air an liosta-bhacaidh. - -Dèan lèirmheas air an liosta ùr air %s cho luath ’s a bhios ùine agad.'; $a->strings['Addon not found.'] = 'Cha deach an tuilleadan a lorg.'; $a->strings['Addon %s disabled.'] = 'Tha an tuilleadan %s à comas.'; $a->strings['Addon %s enabled.'] = 'Tha an tuilleadan %s an comas.'; @@ -1173,26 +1126,866 @@ $a->strings['Author: '] = 'Ùghdar: '; $a->strings['Maintainer: '] = 'Neach-glèidhidh: '; $a->strings['Addons reloaded'] = 'Chaidh na tuilleadain ath-luchdadh'; $a->strings['Addon %s failed to install.'] = 'Dh’fhàillig le stàladh an tuilleadain %s.'; +$a->strings['Save Settings'] = 'Sàbhail na roghainnean'; $a->strings['Reload active addons'] = 'Ath-luchdaich na tuilleadain ghnìomhach'; -$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'] = 'Chan eil tuilleadan ri fhaighinn aig an nòd agad an-dràsta. Gheibh thu ionad-tasgaidh nan tuilleadan oifigeil air %1$s agus dh’fhaoidte gun lorg thu tuilleadain inntinneach eile air an ionad-tasgaidh fhosgailte air %2$s.'; +$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'] = 'Chan eil tuilleadan ri fhaighinn aig an nòd agad an-dràsta. Gheibh thu ionad-tasgaidh nan tuilleadan oifigeil air %1$s agus dh’fhaoidte gun lorg thu tuilleadain inntinneach eile air an ionad-tasgaidh fhosgailte air %2$s'; +$a->strings['Update has been marked successful'] = 'Chaidh comharrachadh gun do soirbhich leis an ùrachadh'; +$a->strings['Database structure update %s was successfully applied.'] = 'Chaidh ùrachadh %s air structar an stòir-dhàta a chur an sàs.'; +$a->strings['Executing of database structure update %s failed with error: %s'] = 'Dh’fhàillig an t-ùrachadh %s air structar an stòir-dhàta leis a’ mhearachd seo: %s'; +$a->strings['Executing %s failed with error: %s'] = 'Dh’fhàillig gnìomhachadh %s leis a’ chòd mhearachd seo: %s'; +$a->strings['Update %s was successfully applied.'] = 'Chaidh ùrachadh %s a chur an sàs.'; +$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'Cha do thill an t-ùrachadh %s staid. Chan eil fhios an do shoirbhich leis gus nach do shoirbhich.'; +$a->strings['There was no additional update function %s that needed to be called.'] = 'Cha robh foincsean ùrachaidh %s eile feumach air gairm ann.'; +$a->strings['No failed updates.'] = 'Cha do dh’fhàillig le ùrachadh sam bith.'; +$a->strings['Check database structure'] = 'Thoir sùil air structar an stòir-dhàta'; +$a->strings['Failed Updates'] = 'Na dh’ùrachaidhean a dh’fhàillig leotha'; +$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Cha ghabh seo a-staigh na h-ùrachaidhean ro 1139 nach do thilleadh staid.'; +$a->strings['Mark success (if update was manually applied)'] = 'Cuir comharra gun do shoirbhich leis (ma rinn thu an t-ùrachadh a làimh)'; +$a->strings['Attempt to execute this update step automatically'] = 'Feuch gnìomhachadh a’ cheuma seo dhen ùrachadh gu fèin-obrachail'; +$a->strings['Lock feature %s'] = 'Glais gleus %s'; +$a->strings['Manage Additional Features'] = 'Stiùir na gleusan a bharrachd'; +$a->strings['Other'] = 'Eile'; +$a->strings['unknown'] = 'chan eil fhios'; +$a->strings['%2$s total system'] = [ + 0 => '%2$s siostam gu h-iomlan', + 1 => '%2$s shiostam gu h-iomlan', + 2 => '%2$s siostaman gu h-iomlan', + 3 => '%2$s siostam gu h-iomlan', +]; +$a->strings['%2$s active user last month'] = [ + 0 => '%2$s chleachdaiche gnìomhach sa mhìos seo chaidh', + 1 => '%2$s chleachdaiche gnìomhach sa mhìos seo chaidh', + 2 => '%2$s cleachdaichean gnìomhach sa mhìos seo chaidh', + 3 => '%2$s cleachdaiche gnìomhach sa mhìos seo chaidh', +]; +$a->strings['%2$s active user last six months'] = [ + 0 => '%2$s chleachdaiche gnìomhach san leth-bhliadhna seo chaidh', + 1 => '%2$s chleachdaiche gnìomhach san leth-bhliadhna seo chaidh', + 2 => '%2$s cleachdaichean gnìomhach san leth-bhliadhna seo chaidh', + 3 => '%2$s cleachdaiche gnìomhach san leth-bhliadhna seo chaidh', +]; +$a->strings['%2$s registered user'] = [ + 0 => '%2$s chleachdaiche clàraichte', + 1 => '%2$s chleachdaiche clàraichte', + 2 => '%2$s cleachdaichean clàraichte', + 3 => '%2$s cleachdaiche clàraichte', +]; +$a->strings['%2$s locally created post or comment'] = [ + 0 => 'Chaidh %2$s phost no beachd a chruthachadh gu h-ionadail', + 1 => 'Chaidh %2$s phost ’s bheachd a chruthachadh gu h-ionadail', + 2 => 'Chaidh %2$s postaichean ’s beachdan a chruthachadh gu h-ionadail', + 3 => 'Chaidh %2$s post ’s beachd a chruthachadh gu h-ionadail', +]; +$a->strings['%2$s post per user'] = [ + 0 => '%2$s phost gach cleachdaiche', + 1 => '%2$s phost gach cleachdaiche', + 2 => '%2$s postaichean gach cleachdaiche', + 3 => '%2$s post gach cleachdaiche', +]; +$a->strings['%2$s user per system'] = [ + 0 => '%2$s chleachdaiche gach siostaim', + 1 => '%2$s chleachdaiche gach siostaim', + 2 => '%2$s cleachdaichean gach siostaim', + 3 => '%2$s cleachdaiche gach siostaim', +]; +$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.'] = 'Bheir an duilleag seo àireamhan dhut mun chuid dhen lìonra shòisealta cho-naisgte sa bheil an nòd seo dhe Friendica. Chan eil na h-àireamhan seo coileanta is cha sheall iad ach a’ phàirt dhen lìonra air a bheil an nòd agad eòlach.'; +$a->strings['Federation Statistics'] = 'Stadastaireachd a’ cho-nasgaidh'; +$a->strings['Currently this node is aware of %2$s node (%3$s active users last month, %4$s active users last six months, %5$s registered users in total) from the following platforms:'] = [ + 0 => 'Tha an nòd seo eòlach air %2$s nòd aig an àm seo (cleachdaichean gnìomhach sa mhìos seo chaidh: %3$s, cleachdaichean gnìomhach san leth-bhliadhna seo chaidh: %4$s, cleachdaichean clàraichte: %5$s gu h-iomlan) o na h-ùrlaran a leanas:', + 1 => 'Tha an nòd seo eòlach air %2$s nòd aig an àm seo (cleachdaichean gnìomhach sa mhìos seo chaidh: %3$s, cleachdaichean gnìomhach san leth-bhliadhna seo chaidh: %4$s, cleachdaichean clàraichte: %5$s gu h-iomlan) o na h-ùrlaran a leanas:', + 2 => 'Tha an nòd seo eòlach air %2$s nòdan aig an àm seo (cleachdaichean gnìomhach sa mhìos seo chaidh: %3$s, cleachdaichean gnìomhach san leth-bhliadhna seo chaidh: %4$s, cleachdaichean clàraichte: %5$s gu h-iomlan) o na h-ùrlaran a leanas:', + 3 => 'Tha an nòd seo eòlach air %2$s nòd aig an àm seo (cleachdaichean gnìomhach sa mhìos seo chaidh: %3$s, cleachdaichean gnìomhach san leth-bhliadhna seo chaidh: %4$s, cleachdaichean clàraichte: %5$s gu h-iomlan) o na h-ùrlaran a leanas:', +]; +$a->strings['The logfile \'%s\' is not writable. No logging possible'] = 'Cha ghabh sgrìobhadh ann am faidhle “%s” an loga. Cha ghabh logadh a dhèanamh'; +$a->strings['PHP log currently enabled.'] = 'Tha logadh PHP an comas an-dràsta.'; +$a->strings['PHP log currently disabled.'] = 'Tha logadh PHP à comas an-dràsta.'; +$a->strings['Logs'] = 'Logaichean'; +$a->strings['Clear'] = 'Falamhaich'; +$a->strings['Enable Debugging'] = 'Cuir dì-bhugachadh an comas'; +$a->strings['Read-only because it is set by an environment variable'] = 'Cead-leughaidh a-mhàin on a chaidh a shuidheachadh le caochladair àrainne'; +$a->strings['Log file'] = 'Faidhle an loga'; +$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Feumaidh cead sgrìobhaidh a bhith aig an fhrithealaiche-lìn. Dàimheach ri prìomh-pasgan Friendica.'; +$a->strings['Log level'] = 'Leibheil an loga'; +$a->strings['PHP logging'] = 'Logadh PHP'; +$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.'] = 'Airson logadh nam mearachdan is rabhaidhean PHP a chur an comas gu sealach, ’s urrainn dhut na leanas a chur air thoiseach faidhle index.php an stàlaidh agad. Tha ainm an fhaidhle a tha ’ga shuidheachadh air an loidhne \'error_log\' dàimheach ri prìomh-phasgan Friendica agus feumaidh cead sgrìobhaidh a bhith aig an fhrithealaiche-lìn ann. Cuiridh tu \'log_errors\' (logadh nam mearachdan) agus \'display_errors\' (sealltainn nam mearachdan) an comas leis an roghainn \'1\' agus à comas leis an roghainn \'0\'.'; +$a->strings['Error trying to open %1$s log file.
    Check to see if file %1$s exist and is readable.'] = 'Mearachd a’ feuchainn ri faidhle %1$s an loga fhosgladh.
    Dearbh gu bheil am faidhle %1$s ann is gun gabh a leughadh.'; +$a->strings['Couldn\'t open %1$s log file.
    Check to see if file %1$s is readable.'] = 'Cha b’ urrainn dhinn faidhle %1$s an loga fhosgladh.
    Dearbh gun gabh am faidhle %1$s a leughadh.'; +$a->strings['View Logs'] = 'Seall na logaichean'; +$a->strings['Search in logs'] = 'Lorg sna logaichean'; +$a->strings['Show all'] = 'Seall na h-uile'; +$a->strings['Date'] = 'Ceann-là'; +$a->strings['Level'] = 'Leibheil'; +$a->strings['Context'] = 'Co-theacsa'; +$a->strings['ALL'] = 'NA h-UILE'; +$a->strings['View details'] = 'Seall am mion-fhiosrachadh'; +$a->strings['Click to view details'] = 'Briog air a shealltainn a’ mhion-fhiosrachaidh'; +$a->strings['Event details'] = 'Fiosrachadh an tachartais'; +$a->strings['Data'] = 'Dàta'; +$a->strings['Source'] = 'Tùs'; +$a->strings['File'] = 'Faidhle'; +$a->strings['Line'] = 'Loidhne'; +$a->strings['Function'] = 'Foincsean'; +$a->strings['UID'] = 'UID'; +$a->strings['Process ID'] = 'ID a’ phròiseis'; +$a->strings['Close'] = 'Dùin'; +$a->strings['Inspect Deferred Worker Queue'] = 'Sgrùd ciutha nan obraichean dàilichte'; +$a->strings['This page lists the deferred worker jobs. This are jobs that couldn\'t be executed at the first time.'] = 'Gheibh thu liosta nan obraichean dàilichte air an duilleag seo. Cha b’ urrainn dhuinn na h-obraichean seo a dhèanamh sa chiad uair.'; +$a->strings['Inspect Worker Queue'] = 'Sgrùd ciutha nan obraichean'; +$a->strings['This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you\'ve set up during install.'] = 'Gheibh thu liosta nan obraichean a tha sa chiutha an-dràsta air an duilleag seo. Thèid na h-obraichean seo a làimhseachadh leis a’ cronjob a shuidhich thu rè an stàlaidh.'; +$a->strings['ID'] = 'ID'; +$a->strings['Command'] = 'Àithne'; +$a->strings['Job Parameters'] = 'Paramadairean na h-obrach'; +$a->strings['Created'] = 'Air a chruthachadh'; +$a->strings['Priority'] = 'Prìomhachas'; +$a->strings['%s is no valid input for maximum image size'] = 'Chan eil %s ’na ion-chur dligheach do mheud as motha nan dealbhan'; +$a->strings['No special theme for mobile devices'] = 'Chan eil ùrlar sònraichte do dh’uidheaman mobile ann'; +$a->strings['%s - (Experimental)'] = '%s – (deuchainneil)'; +$a->strings['No community page'] = 'Gun duilleag coimhearsnachd'; +$a->strings['No community page for visitors'] = 'Gun duilleag coimhearsnachd do dh’aoighean'; +$a->strings['Public postings from users of this site'] = 'Postaichean poblach nan cleachdaichean air an làrach seo'; +$a->strings['Public postings from the federated network'] = 'Postaichean poblach on lìonra cho-naisgte'; +$a->strings['Public postings from local users and the federated network'] = 'Postaichean poblach nan cleachdaichean ionadail ’s on lìonra cho-naisgte'; +$a->strings['Multi user instance'] = 'Ionstans ioma-chleachdaiche'; +$a->strings['Closed'] = 'Dùinte'; +$a->strings['Requires approval'] = 'Tha feum air aontachadh'; +$a->strings['Open'] = 'Fosgailte'; +$a->strings['Don\'t check'] = 'Na cuir sùil'; +$a->strings['check the stable version'] = 'cuir sùil air na tionndadh seasmhach'; +$a->strings['check the development version'] = 'cuir sùil air na tionndadh leasachaidh'; +$a->strings['none'] = 'chan eil gin'; +$a->strings['Local contacts'] = 'Luchd-aithne an ionadail'; +$a->strings['Interactors'] = 'Luchd co-luadair'; +$a->strings['Site'] = 'Làrach'; +$a->strings['General Information'] = 'Fiosrachadh coitcheann'; +$a->strings['Republish users to directory'] = 'Ath-fhoillsich na cleachdaichean dhan eòlaire'; +$a->strings['Registration'] = 'Clàradh'; +$a->strings['File upload'] = 'Luchdadh suas fhaidhlichean'; +$a->strings['Policies'] = 'Poileasaidhean'; +$a->strings['Advanced'] = 'Adhartach'; +$a->strings['Auto Discovered Contact Directory'] = 'Eòlaire an luchd-aithne a chaidh a lorg gu fèin-obrachail'; +$a->strings['Performance'] = 'Dèanadas'; +$a->strings['Worker'] = 'Obraiche'; +$a->strings['Message Relay'] = 'Ath-sheachadan theachdaireachdan'; +$a->strings['Use the command "console relay" in the command line to add or remove relays.'] = 'Cleachd an àithne “console relay” air an loidhne-àithne a chur ris no a thoirt air falbh ath-sheachadain.'; +$a->strings['The system is not subscribed to any relays at the moment.'] = 'Cha do rinn an siostam fo-sgrìobhadh air ath-sheachadan sam bith aig an àm seo.'; +$a->strings['The system is currently subscribed to the following relays:'] = 'Tha an siostam a’ fo-sgrìobhadh dha na h-ath-sheachadain seo:'; +$a->strings['Relocate Node'] = 'Imrich an nòd'; +$a->strings['Relocating your node enables you to change the DNS domain of this node and keep all the existing users and posts. This process takes a while and can only be started from the relocate console command like this:'] = 'Le imrich an nòd, ’s urrainn dhut àrainn DNS an nòid seo atharrachadh agus na cleachdaichean is postaichean uile a chumail. Bheir am pròiseas seo greis mhath is cha ghabh a thòiseachadh ach le àithne imrich na consoil mar seo:'; +$a->strings['(Friendica directory)# bin/console relocate https://newdomain.com'] = '(Pasgan Friendica)# bin/console relocate https://àrainn-ùr.com'; +$a->strings['Site name'] = 'Ainm na làraich'; +$a->strings['Sender Email'] = 'Post-d an t-seòladair'; +$a->strings['The email address your server shall use to send notification emails from.'] = 'An seòladh puist-d a chleachdas am frithealaiche airson brathan puist-d a chur uaithe.'; +$a->strings['Name of the system actor'] = 'Ainm actar an t-siostaim'; +$a->strings['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.'] = 'Ainm cunntas inntearnail an fhrithealaiche a thèid a chleachdadh airson iarrtasan ActivityPub. Feumaidh seo a bhith ’na ainm-chleachdaiche gun chleachdadh. Nuair a bhios seo air a shuidheachadh, gha ghabh atharrachadh a-rithist.'; +$a->strings['Banner/Logo'] = 'Bratach/Suaicheantas'; +$a->strings['Email Banner/Logo'] = 'Bratach/Suaicheantas puist-d'; +$a->strings['Shortcut icon'] = 'Ìomhaigheag na h-ath-ghoirid'; +$a->strings['Link to an icon that will be used for browsers.'] = 'Ceangal gu ìomhaigheag a thèid a chleachdadh le brabhsairean.'; +$a->strings['Touch icon'] = 'Ìomhaigheag suathaidh'; +$a->strings['Link to an icon that will be used for tablets and mobiles.'] = 'Ceangal gu ìomhaigheag a thèid a chleachdadh airson tablaidean is fònaichean-làimhe.'; +$a->strings['Additional Info'] = 'Barrachd fiosrachaidh'; +$a->strings['For public servers: you can add additional information here that will be listed at %s/servers.'] = 'Airson frithealaichean poblach: ’s urrainn dhut barrachd fiosrachaidh a chur ris an-seo a nochdas air %s/servers.'; +$a->strings['System language'] = 'Cànan an t-siostaim'; +$a->strings['System theme'] = 'Ùrlar an t-siostaim'; +$a->strings['Default system theme - may be over-ridden by user profiles - Change default theme settings'] = 'Ùrlar bunaiteach an t-siostaim – gabhaidh a thar-àithneadh le pròifilean cleachdaiche – Atharraich roghainnean an ùrlair bhunaitich'; +$a->strings['Mobile system theme'] = 'Ùrlar mobile an t-siostaim'; +$a->strings['Theme for mobile devices'] = 'An t-ùrlar do dh’uidheaman mobile'; +$a->strings['Force SSL'] = 'Spàrr SSL'; +$a->strings['Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'] = 'Spàrr SSL air a h-uile iarrtas gun SSL – An aire: dh’fhaoidte gun adhbharaich seo lùban gun chrìoch air cuid a shiostaman.'; +$a->strings['Show help entry from navigation menu'] = 'Seall nì na cobharach ann an clàr-taice na seòladaireachd'; +$a->strings['Displays the menu entry for the Help pages from the navigation menu. It is always accessible by calling /help directly.'] = 'Seallaidh an nì airson duilleagan na cobharach ann an clàr-taice na seòladaireachd. Gabhaidh inntrigeadh le gairm /help gu dìreach an-còmhnaidh.'; +$a->strings['Single user instance'] = 'Ionstans aon-chleachdaiche'; +$a->strings['Make this instance multi-user or single-user for the named user'] = 'Dèan ionstans ioma-chleachdaiche no aon-chleachdaiche dhan chleachdaiche ainmichte dhen ionstans seo'; +$a->strings['Maximum image size'] = 'Meud as motha nan dealbhan'; +$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively. + The value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit. + Currently upload_max_filesize is set to %s (%s byte)'] = 'Am meud as motha ann am baidht do dhealbhan a thèid a luchdadh suas. Is 0 a’ bhun-roghainn, ’s e sin gun chrìoch. ’S urrainn dhut k, m no g a chur às dèidh an luacha a thogras tu airson KiB, MiB no GiB. + Feumaidh tu an luach air upload_max_filesize sa PHP.ini a shuidheachadh air a’ chrìoch a thogras tu air a char as lugha. + Chaidh upload_max_filesize a shuidheachadh air %s (%s baidht) aig an àm seo'; +$a->strings['Maximum image length'] = 'Faide as motha nan dealbhan'; +$a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'An fhaide as motha ann am piogsail aig an taobh as fhaide do dhealbhan a thèid a luchdadh suas. Is -1 a’ bhun-roghainn, ’s e sin gun chrìoch.'; +$a->strings['JPEG image quality'] = 'Càileachd deilbh JPEG'; +$a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = 'Thèid dealbhan a’ sàbhaladh leis a’ chàileachd JPEG seo às dèidh an luchdadh suas [0-100]. Is 100 a’ bhun-roghainn, ’s e sin a’ chàileachd shlàn.'; +$a->strings['Register policy'] = 'Poileasaidh clàraidh'; +$a->strings['Maximum Users'] = 'Àireamh as motha de chleachdaichean'; +$a->strings['If defined, the register policy is automatically closed when the given number of users is reached and reopens the registry when the number drops below the limit. It only works when the policy is set to open or close, but not when the policy is set to approval.'] = 'Ma bhios seo air a mhìneachadh, thèid poileasaidh nan clàraidhean a dhùnadh gu fèin-obrachail nuair a bhios an àireamh shònraichte de chleachdaichean air a ruigsinn agus fhosgladh a-rithist nuair a thèid an àireamh nas ìsle na a’ chrìoch. Chan obraich seo ach ma chaidh am poileasaidh a shuidheachadh air “Fosgailte” no “Dùinte” agus chan obraich e ma chaidh am poileasaidh a shuidheachadh air “Aontachadh”.'; +$a->strings['Maximum Daily Registrations'] = 'An àireamh as motha de chlàraidhean gach latha'; +$a->strings['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.'] = 'Ma tha an clàradh ceadaichte gu h-àrd, suidhichidh seo an àireamh as motha de chlàraidhean chleachdaichean ùra gach latha. Ma tha an clàradh dùinte, cha doir an roghainn seo buaidh.'; +$a->strings['Register text'] = 'Teacsa a’ chlàraidh'; +$a->strings['Will be displayed prominently on the registration page. You can use BBCode here.'] = 'Thèid a shealltainn gu follaiseach air duilleag a’ chlàraidh. ’S urrainn dhut BBCode a chleachdadh an-seo.'; +$a->strings['Forbidden Nicknames'] = 'Far-ainmean toirmisgte'; +$a->strings['Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142.'] = 'Liosta sgaraichte le cromagan de dh’fhar-ainmean nach fhaod clàradh. Tha liosta de dh’ainmean dreuchdan a-rèir RFC 2142 ro-shocraichte.'; +$a->strings['Accounts abandoned after x days'] = 'Cunntasan air an trèigsinn às dèidh x là'; +$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = 'Cha chaith seo goireasan an t-siostam le ceasnachadh làraichean air an taobh a-muigh airson cunntasan air an trèigsinn. Cuir a-steach 0 airson cunntasan gun chrìoch ùine.'; +$a->strings['Allowed friend domains'] = 'Àrainnean ceadaichte do chàirdeasan'; +$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Liosta sgaraichte le cromagan de dh’àrainnean a dh’fhaodas càirdeasan a stèidheachadh leis an làrach seo. Gabhaidh seo ri saoragan. Fàg bàn airson a h-uile àrainn a cheadachadh'; +$a->strings['Allowed email domains'] = 'Àrainnean puist-d ceadaichte'; +$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Liosta sgaraichte le cromagan de dh’àrainnean a tha ceadaichte ann am puist-d airson clàradh leis an làrach seo. Gabhaidh seo ri saoragan. Fàg bàn airson a h-uile àrainn a cheadachadh'; +$a->strings['No OEmbed rich content'] = 'Gun susbaint OEmbed bheartach'; +$a->strings['Don\'t show the rich content (e.g. embedded PDF), except from the domains listed below.'] = 'Na seall susbaint bheartach (m. e. PDF leabaichte) ach o na h-àrainnean air an liosta gu h-ìosal.'; +$a->strings['Trusted third-party domains'] = 'Àrainnean threas-phàrtaidhea earbsach'; +$a->strings['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.'] = 'Liosta sgaraichte le cromagan de dh’àrainnean on a dh’fhaodar susbaint a leabachadh am broinn phostaichean le OEmbed. Thèid cead a thoirt dhan a h-uile fo-àrainn dhe na h-àrainnean air an liosta cuideachd.'; +$a->strings['Block public'] = 'Bac inntrigeadh poblach'; +$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Cuir cromag ris a bhacadh inntrigeadh poblach air a h-uile duilleag phearsanta a bhiodh poblach air an làrach seo ach dhan fheadhainn a bhios air a clàradh a-staigh.'; +$a->strings['Force publish'] = 'Spàrr foillseachadh'; +$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Cuir cromag ris a sparradh air a h-uile pròifil air an làrach seo gun nochd iad ann an eòlaire na làraich.'; +$a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Ma chuireas tu seo an comas, dh’fhaoidte gum bris thu laghan mar an GDPR'; +$a->strings['Global directory URL'] = 'URL an eòlaire cho-naisgte'; +$a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'URL dhan eòlaire cho-naisgte. Mura deach seo a shuidheachadh, cha bhi an t-eòlaire uile-choitcheann ri fhaighinn idir dhan aplacaid.'; +$a->strings['Private posts by default for new users'] = 'Postaichean prìobhaideach ’na bhun-roghainn do chleachdaichean ùra'; +$a->strings['Set default post permissions for all new members to the default privacy circle rather than public.'] = 'Suidhichidh seo ceadan phostaichean nam ball ùra air a’ chearcall phrìobhaideach gu bunaiteach seach air a’ chearcall phoblach.'; +$a->strings['Don\'t include post content in email notifications'] = 'Na gabh a-staigh susbaint nam post ann am brathan puist-d'; +$a->strings['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.'] = 'Na gabh a-staigh susbaint puist/beachd/teachdaireachd prìobhaidich/msaa. sna brathan puist-d a thèid a chur on làrach seo, a chùm prìobhaideachd.'; +$a->strings['Disallow public access to addons listed in the apps menu.'] = 'Na ceadaich inntrigeadh poblach dha na tuilleadain a tha air an liosta ann an clàr-taice nan aplacaidean.'; +$a->strings['Checking this box will restrict addons listed in the apps menu to members only.'] = 'Ma tha cromag sa bhogsa seo, bidh an t-inntrigeadh air na tuilleadain a chithear ann an clàr-taice nan aplacaidean cuingichte air na buill a-mhàin.'; +$a->strings['Don\'t embed private images in posts'] = 'Na leabaich dealbhan prìobhaideach ann am postaichean'; +$a->strings['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.'] = 'Na cuir lethbhreac leabaichte dhen dealbh an àite dhealbhan prìobhaideach ann am postaichean a tha ’gan òstadh gu h-ionadail. Is ciall dha seo gum feum an luchd-aithne a gheibh postaichean sa bheil dealbhan prìobhaideach ùghdarrachadh is gach dealbh a luchdadh fa leth agus dh’fhaoidte gun doir sin greis.'; +$a->strings['Explicit Content'] = 'Susbaint inbheach'; +$a->strings['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.'] = 'Suidhich seo a dh’innse gu bheil an nòd agad ’ga chleachdadh airson susbaint inbheach gu h-àraidh is nach eil e iomchaidh do mhion-aoisich ’s dòcha. Thèid am fiosrachadh seo fhoillseachadh ann am fiosrachadh an nòid agus gabhaidh a chleachdadh m.e. leis an eòlaire cho-naisgte airson an nòd agad a chriathradh air falbh o liosta nan nòdan a chùm ballrachd ùir. A bharrachd air sin, thèid nòta a shealltainn aig duilleag clàradh nan cleachdaichean.'; +$a->strings['Proxify external content'] = 'Susbaint chèin tro phrogsaidh'; +$a->strings['Route external content via the proxy functionality. This is used for example for some OEmbed accesses and in some other rare cases.'] = 'Rùtaich susbaint chèin le gleus a’ phrogsaidh. Tha seo ’ga chleachdadh, mar eisimpleir, airson cuid dhen inntrigeadh OEmbed agus ann an suidheachaidhean ainneamh eile.'; +$a->strings['Cache contact avatars'] = 'Cuir avataran an luchd-aithne dhan tasgadan'; +$a->strings['Locally store the avatar pictures of the contacts. This uses a lot of storage space but it increases the performance.'] = 'Stòr dealbhan avatar an luchd-aithne gu h-ionadail. Cleachdaidh seo tòrr àite san stòras ach cuiridh e ris an dèanadas.'; +$a->strings['Allow Users to set remote_self'] = 'Leig le cleachdaichean remote_self a shuidheachadh'; +$a->strings['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.'] = 'Ma chuireas tu cromag ris, faodaidh gach cleachdaiche neach-aithne sam bith a chomharrachadh mar remote_self ann an còmhradh càradh an luchd-aithne. Nuair a thèid a’ bhratach seo a chur ri neach-aithne, thèid a h-uile post an neach-aithne sin sgàthanachadh ann an sruth a’ chlechdaiche.'; +$a->strings['Enable multiple registrations'] = 'Cuir clàradh iomadach an comas'; +$a->strings['Enable users to register additional accounts for use as pages.'] = 'Bheir seo an comas dha na cleachdaichean gun clàraich iad cunntasan a bharrachd airson an cleachdadh ’nan duilleagan.'; +$a->strings['Enable OpenID'] = 'Cuir OpenID an comas'; +$a->strings['Enable OpenID support for registration and logins.'] = 'Cuir an comas taic dha OpenID airson clàradh is clàradh a-steach.'; +$a->strings['Enable Fullname check'] = 'Cuir an comas dearbhadh ainm shlàin'; +$a->strings['Enable check to only allow users to register with a space between the first name and the last name in their full name.'] = 'Cuid an comas an dearbhadh nach leig le cleachdaichean clàradh ach le beàrn eadar ainm is sloinneadh an ainm shlàin.'; +$a->strings['Email administrators on new registration'] = 'Cuir puist-d dha na rianairean do chlàraidhean ùra'; +$a->strings['If enabled and the system is set to an open registration, an email for each new registration is sent to the administrators.'] = 'Nuair a bhios seo an comas agus an siostam air a shuidheachadh air clàraidhean fosgailte, thèid post-d a chur dha na rianairean do gach clàradh ùr.'; +$a->strings['Community pages for visitors'] = 'Duilleagan coimhearsnachd do dh’aoighean'; +$a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = 'Dè na duilleagan coimhearsnachd a chì aoighean. Chì na cleachdaichean ionadail an dà dhuilleag an-còmhnaidh.'; +$a->strings['Posts per user on community page'] = 'Postaichean gach cleachdaiche air duilleag na coimhearsnachd'; +$a->strings['The maximum number of posts per user on the community page. (Not valid for "Global Community")'] = 'An àireamh as motha de phostaichean aig gach cleachdaiche air duilleag na coimhearsnachd. (Chan eil seo dligheach dhan “Choimhearsnachd cho-naisgte”)'; +$a->strings['Enable Mail support'] = 'Cuir taic ri post-d an comas'; +$a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'Cuir an comas an taic ri post-d a thig ’na bhroinn airson pasganan IMAP a cheasnachadh agus freagairt le post-d.'; +$a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'Chan urrainn dhuinn an taic ri post-d a chur an comas air sgàth ’s nach deach am mòideal IMAP aig PHP a stàladh.'; +$a->strings['Enable OStatus support'] = 'Cuir an taic ri OStatus an comas'; +$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'Cuir an comas a’ cho-chòrdalachd ri OStatus (StatusNet, GNU Social is msaa.) a thig ’na bhroinn. Bidh gach conaltradh slighe OStatus poblach.'; +$a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Chan urrainn dhuinn an taic ri diaspora* a chur an comas on a chaidh Friendica a stàladh ann am fo-phasgan.'; +$a->strings['Enable Diaspora support'] = 'Cuir taic ri diaspora* an comas'; +$a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'Cuir an comas a’ cho-chòrdalachd lìonraidh le diaspora* a thig ’na bhroinn airson conaltradh le frithealaichean diaspora*.'; +$a->strings['Verify SSL'] = 'Dearbh SSL'; +$a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = 'Ma thogras tu, ’s urrainn dhut sgrùdadh teann nan teisteanasan a chur an comas. Is ciall dha seo nach urrainn dhut ceangal idir le làraichean le SSL a chaidh fhèin-shoidhneadh.'; +$a->strings['Proxy user'] = 'Cleachdaiche a’ phrogsaidh'; +$a->strings['User name for the proxy server.'] = 'Ainm-cleachdaiche dhan fhrithealaiche progsaidh.'; +$a->strings['Proxy URL'] = 'URL a’ phrogsaidh'; +$a->strings['If you want to use a proxy server that Friendica should use to connect to the network, put the URL of the proxy here.'] = 'Ma tha thu airson ’s gun cleachd Friendica frithealaiche progsaidh airson ceangal ris an lìonra, cuir URL a’ phrogsaidh an-seo.'; +$a->strings['Network timeout'] = 'Crìoch-ùine an lìonraidh'; +$a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Luach ann an diogan. Is ciall dha 0 nach fhalbh an ùine air idir (cha mholamaid seo).'; +$a->strings['Maximum Load Average'] = 'Eallach as motha sa chuibheas'; +$a->strings['Maximum system load before delivery and poll processes are deferred - default %d.'] = 'Eallach as motha air an t-siostam mus dèid dàil a chur air an lìbhrigeadh is air pròiseasadh cunbhalach – ’s e %d a tha sa bhun-roghainn.'; +$a->strings['Minimal Memory'] = 'A’ chuimhne as lugha'; +$a->strings['Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).'] = 'A’ chuimhne shaor as lugha ann an MB dhan obraiche. Bidh feum air inntrigeadh dha /proc/meminfo – is 0 a’ bhun-roghainn (à gnìomh).'; +$a->strings['Periodically optimize tables'] = 'Pisich na clàran o àm gu àm'; +$a->strings['Periodically optimize tables like the cache and the workerqueue'] = 'Pisich clàran mar an tasgadan is an ciutha-obrach gu cunbhalach'; +$a->strings['Discover followers/followings from contacts'] = 'Lorg dàimhean leantainn on luchd-aithne'; +$a->strings['If enabled, contacts are checked for their followers and following contacts.'] = 'Ma tha seo an comas, thèid sùil a thoirt airson luchd-leantainn an luchd-aithne is an fheadhainn air a leanas iad.'; +$a->strings['None - deactivated'] = 'Chan eil gin – à comas'; +$a->strings['Local contacts - contacts of our local contacts are discovered for their followers/followings.'] = 'Luchd-aithne ionadail – thèid dàimhean leantainn an luchd-aithne ionadail a lorg.'; +$a->strings['Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings.'] = 'Luchd co-luadair – thèid dàimhean leantainn an luchd-aithne ionadail agus aig an fheadhainn a rinn co-luadar le postaichean poblach a lorg.'; +$a->strings['Synchronize the contacts with the directory server'] = 'Sioncronaich an luchd-aithne le frithealaiche an eòlaire'; +$a->strings['if enabled, the system will check periodically for new contacts on the defined directory server.'] = 'Ma tha seo an comas, bheir an siostam sùil gu cunbhalach airson luchd-aithne ùr air frithealaiche an eòlaire a chaidh a mhìneachadh.'; +$a->strings['Days between requery'] = 'Làithean eadar ceasnachaidhean'; +$a->strings['Number of days after which a server is requeried for his contacts.'] = 'An àireamh de làithean mus dèid am frithealaiche ceasnachadh airson an luchd-aithne aige a-rithist.'; +$a->strings['Discover contacts from other servers'] = 'Lorg luchd-aithne o fhrithealaichean eile'; +$a->strings['Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers.'] = 'Ceasnaich frithealaichean eile airson an luchd-aithne aca gu cunbhalach. Ceasnaichidh an siostam frithealaichean Friendica, Mastodon i Hubzilla.'; +$a->strings['Search the local directory'] = 'Lorg san eòlaire ionadail'; +$a->strings['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.'] = 'Lorg san eòlaire ionadail seach san eòlaire cho-naisgte. Nuair a nì thu lorg gu h-ionadail, thèid gach lorg a ghnìomhachadh san eòlaire cho-naisgte sa chùlaibh. Cuiridh seo piseach air na toraidhean luirg nuair a nithear an t-aon lorg a-rithist.'; +$a->strings['Publish server information'] = 'Foillsich fiosrachadh an fhrithealaiche'; +$a->strings['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.'] = 'Ma tha seo an comas, thèid dàta coitcheann mun fhrithealaiche ’s cleachdadh fhoillseachadh. Gabhaidh an dàta a-staigh ainm is tionndadh an fhrithealaiche, an àireamh de chleachdaichean le pròifilean poblach, an àireamh de phostaichean agus na pròtacalan is ceangladairean an comas. Faic the-federation.info airson barrachd fiosrachaidh.'; +$a->strings['Check upstream version'] = 'Cuir sùil air tionndadh an upstream'; +$a->strings['Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview.'] = 'Cuiridh seo an comas gun dèid sùil a chur airson tionndaidhean dhe Friendica air GitHub. Nuair a bhios tionndadh ùr an, thèid innse dhut air foir-shealladh panail na rianachd.'; +$a->strings['Suppress Tags'] = 'Mùch tagaichean'; +$a->strings['Suppress showing a list of hashtags at the end of the posting.'] = 'Mùch sealladh liosta nan tagaichean hais air deireadh nam post.'; +$a->strings['Clean database'] = 'Sgioblaich an stòr-dàta'; +$a->strings['Remove old remote items, orphaned database records and old content from some other helper tables.'] = 'Thoir air falbh nithean cèine, reacordan stòir-dhàta a tha ’nan dìlleachdanan agus seann-susbaint eile o chuid a chlàran-taice eile.'; +$a->strings['Lifespan of remote items'] = 'Faid-bheatha nan nithean cèine'; +$a->strings['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.'] = 'Nuair a bhios sgioblachadh an stòir-dhàta an comas, mìnichidh seo na làithean mus dèid nithean cèine a sguabadh às. Thèid na nithean againn fhèin ’s na nithean a chaidh a chomharrachadh no fhaidhleadh a chumail an-còmhnaidh. Cuiridh 0 an giùlan seo à comas.'; +$a->strings['Lifespan of unclaimed items'] = 'Faid-bheatha nan nithean gun tagairt'; +$a->strings['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.'] = 'Nuair a bhios sgioblachadh an stòir-dhàta an comas, mìnichidh seo na làithean mus dèid nithean gun tagairt (seo susbaint on ath-sheachadan mar as trice) a sguabadh às. ’S e 90 latha a tha sa bhun-roghainn. Ma shuidhicheas tu seo air 0, thèid luach faid-bheatha nan nithean cèine a chleachdadh mar bhun-roghainn.'; +$a->strings['Lifespan of raw conversation data'] = 'Faid-bheatha dàta amh nan còmhraidhean'; +$a->strings['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.'] = 'Tha dàta nan còmhraidhean ’ga chleachdadh airson ActivityPub is OStatus agus a chùm dì-bhugachaidh. Bu chòir dha a bhith sàbhailte ma sguabas tu às às dèidh cola-deug. ’S e 90 latha a tha sa bhun-roghainn.'; +$a->strings['Maximum numbers of comments per post'] = 'An àireamh as motha de bheachdan ri post'; +$a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Co mheud beachd a thèid a shealltainn do gach post? ’S e 100 a tha sa bhun-roghainn.'; +$a->strings['Maximum numbers of comments per post on the display page'] = 'An àireamh as motha de bheachdan ri post air duilleag na sealltainn'; +$a->strings['How many comments should be shown on the single view for each post? Default value is 1000.'] = 'Co mheud beachd a thèid a shealltainn do gach post nuair a sheallar post fa leth? ’S e 1000 a tha sa bhun-roghainn.'; +$a->strings['Temp path'] = 'Slighe shealadach'; +$a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Ma tha siostam cuingichte agad far nach urrainn dhan fhrithealaiche-lìn slighe temp an t-siostaim inntrigeadh, cuir a-steach slighe eile an-seo.'; +$a->strings['Only search in tags'] = 'Na lorg ach sna tagaichean'; +$a->strings['On large systems the text search can slow down the system extremely.'] = 'Air siostaman mòra, ’s urrainn dhan lorg teacsa maille mhòr a chur air an t-siostam.'; +$a->strings['Generate counts per contact circle when calculating network count'] = 'Cruthaich cunntasan do chearcallan luchd-aithne nuair a thèid cunntas an lìonraidh àireamhachadh'; +$a->strings['On systems with users that heavily use contact circles the query can be very expensive.'] = 'Air siostaman far an bheil tòrr chearcallan luchd-aithne ’gan cleachdadh, faodaidh a’ cheist seo a bhith glè dhaor.'; +$a->strings['Maximum number of parallel workers'] = 'An àireamh as motha de dh’obraichean co-shìnte'; +$a->strings['On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d.'] = 'Suidhich seo air %d air òstairean co-roinnte. Air siostaman nas motha, bidh luach %d math. Is %d a’ bhun-roghainn.'; +$a->strings['Enable fastlane'] = 'Cuir fastlane an comas'; +$a->strings['When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.'] = 'Nuair a bhios seo an comas, cuiridh am fastlane obraiche a bharrachd air dòigh ma tha pròiseas air a bheil prìomhachas as àirde ’ga bhacadh le pròiseasan air a bheil prìomhachas ìosal.'; +$a->strings['Direct relay transfer'] = 'Tar-chur ath-sheachadain dìreach'; +$a->strings['Enables the direct transfer to other servers without using the relay servers'] = 'Cuiridh seo an comas an tar-chur dìreach gu frithealaichean eile às aonais nam frithealaichean ath-sheachadain'; +$a->strings['Relay scope'] = 'Sgòp an ath-sheachadain'; +$a->strings['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.'] = 'Tha taghadh eadar “na h-uile” is “tagaichean” agad. Is ciall dha “na h-uile” gun dèid gach post poblach fhaighinn. Is ciall dha “tagaichean” nach dèid ach postaichean le tagaichean sònraichte fhaighinn.'; +$a->strings['Disabled'] = 'À comas'; +$a->strings['all'] = 'na h-uile'; +$a->strings['tags'] = 'tagaichean'; +$a->strings['Server tags'] = 'Tagaichean an fhrithealaiche'; +$a->strings['Comma separated list of tags for the "tags" subscription.'] = 'Liosta de thagaichean airson fo-sgrìobhadh nan “tagaichean”, sgaraichte le cromagan.'; +$a->strings['Deny Server tags'] = 'Tagaichean an fhrithealaiche ’gan diùltadh'; +$a->strings['Comma separated list of tags that are rejected.'] = 'Liosta da thagaichean a tha ’gan diùltadh, sgaraichte le cromagan.'; +$a->strings['Allow user tags'] = 'Ceadaich tagaichean chleachdaichean'; +$a->strings['If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".'] = 'Ma tha seo an comas, thèid na tagaichean o na lorgan air an sàbhaladh a chleachdadh airson fo-sgrìobhadh nan “tagaichean” a bharrachd air na “relay_server_tags”.'; +$a->strings['Start Relocation'] = 'Tòisich air an imrich'; +$a->strings['Storage backend, %s is invalid.'] = 'Backend an stòrais, tha %s mì-dhligheach.'; +$a->strings['Storage backend %s error: %s'] = 'Mearachd backend an stòrais %s: %s'; +$a->strings['Invalid storage backend setting value.'] = 'Luach roghainne mì-dhligheach air backend an stòrais.'; +$a->strings['Current Storage Backend'] = 'Backend làithreach an stòrais'; +$a->strings['Storage Configuration'] = 'Rèiteachadh an stòrais'; +$a->strings['Storage'] = 'An stòras'; +$a->strings['Save & Use storage backend'] = 'Sàbhail ⁊ cleachd backend an stòrais'; +$a->strings['Use storage backend'] = 'Cleachd backend an stòrais'; +$a->strings['Save & Reload'] = 'Sàbhail ⁊ ath-luchdaich'; +$a->strings['This backend doesn\'t have custom settings'] = 'Chan eil roghainnean gnàthaichte aig a’ backend seo'; +$a->strings['Changing the current backend is prohibited because it is set by an environment variable'] = 'Chan fhaod thu am backend làithreach atharrachadh on a chaidh a shuidheachadh le caochladair àrainne'; +$a->strings['Database (legacy)'] = 'Stòr-dàta (dìleabach)'; +$a->strings['Template engine (%s) error: %s'] = 'Mearachd einnsean teamplaide (%s): %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.
    '] = 'Tha an stòr-dàta agad a’ cleachdadh clàran MyISAM fhathast. Bu chòir dhut seòrsa an einnsein atharrachadh gu InnoDB. Air sgàth ’s gun cleachd Friendica gleusan InnoDB sònraichte san àm ri teachd, bu chòir dhut seo atharrachadh! Faic an treòir a tha cuideachail airson einnseanan nan clàran iompachadh. ’S urrainn dhut cuideachd an àithne php bin/console.php dbstructure toinnodb aig an stàladh agad dhe Friendica a chleachdadh airson iompachadh fèin-obrachail.
    '; +$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.
    '] = 'Tha an stòr-dàta agad a’ cleachdadh clàran InnoDB san fhòrmat faidhle Antelope fhathast. Bu chòir dhut fòrmat nam faidhlichean atharrachadh gu Barracuda. Tha Friendica a’ cleachdadh gleusan nach solair fòrmat Antelope. Faic an treòir a tha cuideachail airson einnseanan nan clàran iompachadh. ’S urrainn dhut cuideachd an àithne php bin/console.php dbstructure toinnodb aig an stàladh agad dhe Friendica a chleachdadh airson iompachadh fèin-obrachail.
    '; +$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.
    '] = 'Tha an table_definition_cache agad ro ìosal (%d). Dh’fhaoidte gun adhbharaich seo mearachd “Prepared statement needs to be re-prepared” an stòir-dhàta. Suidhich air %d e air a char as lugha. Seall an-seo airson barrachd fiosrachaidh.
    '; +$a->strings['There is a new version of Friendica available for download. Your current version is %1$s, upstream version is %2$s'] = 'Tha tionndadh ùr dhe Friendica ri fhaighinn airson luchdadh a-nuas. ’S e %1$s a tha san tionndadh làithreach agad, ’S e %2$s a tha san tionndadh upstream'; +$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.'] = 'Dh’fhàillig le ùrachadh an stòir-dhàta. Ruith “php bin/console.php dbstructure update” on loidhne-àithne is thoir sùil air na mearachdan a nochdas ma dh’fhaoidte.'; +$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.)'] = 'Dh’fhàillig leis an ùrachadh mu dheireadh. Ruith “php bin/console.php dbstructure update” on loidhne-àithne is thoir sùil air na mearachdan a nochdas ma dh’fhaoidte. (Faodaidh cuid dhe na mearachdan nochdadh ann am faidhle an loga.)'; +$a->strings['The system.url entry is missing. This is a low level setting and can lead to unexpected behavior. Please add a valid entry as soon as possible in the config file or per console command!'] = 'Tha innteart system.url a dhìth. Seo suidheachadh air ìre ìosal agus dh’fhaoidte gun adhbharaich seo giùlan air nach robh dùil. Cuir innteart dligheach ris cho luath ’s a ghabhas san fhaidhle config no air an loidhne-àithne!'; +$a->strings['The worker was never executed. Please check your database structure!'] = 'Cha deach an obair seo a dhèanamh a-riamh. Thoir sùil air structar an stòir-dhàta agad!'; +$a->strings['The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings.'] = 'Chaidh a obair a dhèanamh aig %s UTC an turas mu dheireadh. Tha seo nas fhaide air ais na uair. Thoir sùil air roghainnean a’ crontab agad.'; +$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.'] = 'Tha rèiteachadh Friendica ’ga stòradh ann an config/local.config.php a-nis, dèan lethbhreac dhe config/local-sample.config.php is gluais an rèiteachadh agad o .htconfig.php. Faic duilleag taic an rèiteachaidh airson cuideachadh leis a’ ghluasad.'; +$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.'] = 'Tha rèiteachadh Friendica ’ga stòradh ann an config/local.config.php a-nis, dèan lethbhreac dhe config/local-sample.config.php is gluais an rèiteachadh agad o config/local.ini.php. Faic duilleag taic an rèiteachaidh airson cuideachadh leis a’ ghluasad.'; +$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.'] = 'Cha ghabh %s ruigsinn on t-siostam agad. Seo droch-dhuilgheadas leis an rèiteachadh nach leig leis an fhrithealaiche conaltradh le frithealaichean eile. Faic duilleag an stàlaidh airson cuideachadh.'; +$a->strings['Friendica\'s system.basepath was updated from \'%s\' to \'%s\'. Please remove the system.basepath from your db to avoid differences.'] = 'Chaidh an system.basepath aig Friendica ùrachadh o “%s” gu “%s”. Thoir air falbh system.basepath on stòr-dàta agad ach nach biodh diofar eatorra.'; +$a->strings['Friendica\'s current system.basepath \'%s\' is wrong and the config file \'%s\' isn\'t used.'] = 'Tha an system.basepath làithreach “%s” aig Friendica ceàrr is chan eil am faidhle rèiteachaidh “%s” ’ga chleachdadh.'; +$a->strings['Friendica\'s current system.basepath \'%s\' is not equal to the config file \'%s\'. Please fix your configuration.'] = 'Chan eil an system.basepath làithreach “%s” co-ionnan ris an fhaidhle rèiteachaidh “%s”. Càirich an rèiteachadh agad.'; +$a->strings['Message queues'] = 'Ciuthan theachdaireachdan'; +$a->strings['Server Settings'] = 'Roghainnean an fhrithealaiche'; +$a->strings['Version'] = 'Tionndadh'; +$a->strings['Active addons'] = 'Tuilleadain ghnìomhach'; +$a->strings['Theme %s disabled.'] = 'Chaidh an t-ùrlar %s a chur à comas.'; +$a->strings['Theme %s successfully enabled.'] = 'Chaidh an t-ùrlar %s a chur an comas.'; +$a->strings['Theme %s failed to install.'] = 'Dh’fhàillig le stàladh an ùrlair %s.'; +$a->strings['Screenshot'] = 'Glacadh-sgrìn'; +$a->strings['Themes'] = 'Ùrlaran'; +$a->strings['Unknown theme.'] = 'Ùrlar nach aithne dhuinn.'; +$a->strings['Themes reloaded'] = 'Chaidh na h-ùrlaran ath-luchdadh'; +$a->strings['Reload active themes'] = 'Ath-luchdaich na h-ùrlaran gnìomhach'; +$a->strings['No themes found on the system. They should be placed in %1$s'] = 'Cha deach ùrlar a lorg air an t-siostam. Bu chòir dhut an cur am broinn %1$s'; +$a->strings['[Experimental]'] = '[Deuchainneil]'; +$a->strings['[Unsupported]'] = '[Chan eil taic ris]'; +$a->strings['Display Terms of Service'] = 'Seall teirmichean na seirbheise'; +$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.'] = 'Cuir an comas duilleag teirmichean na seirbheise. Ma tha seo an comas, thèid ceangal dha na teirmichean a chur ris an fhoirm clàraidh is ri duilleag an fhiosrachaidh choitchinn.'; +$a->strings['Display Privacy Statement'] = 'Seall an aithris prìobhaideachd'; +$a->strings['Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR.'] = 'Seall fiosrachadh a thaobh an fhiosrachaidh riatanaich ach an obraich an nòd, can a-rèir EU-GDPR.'; +$a->strings['Privacy Statement Preview'] = 'Ro-shealladh air an aithris prìobhaideachd'; +$a->strings['The Terms of Service'] = 'Teirmichean na seirbheise'; +$a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = 'Cuir a-steach teirmichean seirbheis an nòid agad an-seo. ’S urrainn dhut BBCode a chleachdadh. Bu chòir dha cheann-sgrìobhaidhean nan earrannan a bhith ’nan [h2] is nas ìsle.'; +$a->strings['The rules'] = 'Na riaghailtean'; +$a->strings['Enter your system rules here. Each line represents one rule.'] = 'Cuir a-steach riaghailtean an t-siostaim agad an-seo. Riochdaichidh gach loidhne riaghailt.'; +$a->strings['API endpoint %s %s is not implemented but might be in the future.'] = 'Cha deach puing-dheiridh %s %s an API prògramachadh ach ’s dòcha gun dèid san àm ri teachd.'; +$a->strings['Missing parameters'] = 'Paramadairean a dhìth'; +$a->strings['Only starting posts can be bookmarked'] = 'Cha ghabh ach postaichean-toisich a chur ris na comharran-lìn'; +$a->strings['Only starting posts can be muted'] = 'Cha ghabh ach postaichean-toisich a mhùchadh'; +$a->strings['Posts from %s can\'t be shared'] = 'Cha ghabh postaichean o %s a co-roinneadh'; +$a->strings['Only starting posts can be unbookmarked'] = 'Cha ghabh ach postaichean-toisich a thoirt air falbh o na comharran-lìn'; +$a->strings['Only starting posts can be unmuted'] = 'Cha ghabh ach postaichean-toisich a dhì-mhùchadh'; +$a->strings['Posts from %s can\'t be unshared'] = 'Cha ghabh sgur de cho-roinneadh phostaichean o %s'; +$a->strings['Contact not found'] = 'Cha deach an neach-aithne a lorg'; +$a->strings['No installed applications.'] = 'Cha deach aplacaid a stàladh.'; +$a->strings['Applications'] = 'Aplacaidean'; +$a->strings['Item was not found.'] = 'Cha deach an nì a lorg.'; +$a->strings['Please login to continue.'] = 'Clàraich a-steach airson leantainn air adhart.'; +$a->strings['You don\'t have access to administration pages.'] = 'Chan eil inntrigeadh agad air duilleagan na rianachd.'; +$a->strings['Submanaged account can\'t access the administration pages. Please log back in as the main account.'] = 'Chan urrainn dhan cunntas ’ga fho-stiùireadh duilleagan na rianachd inntrigeadh. Clàraich a-steach leis a’ phrìomh-chunntas.'; +$a->strings['Overview'] = 'Foir-shealladh'; +$a->strings['Configuration'] = 'Rèiteachadh'; +$a->strings['Additional features'] = 'Gleusan a bharrachd'; +$a->strings['Database'] = 'Stòr-dàta'; +$a->strings['DB updates'] = 'Ùrachaidhean an stòir-dhàta'; +$a->strings['Inspect Deferred Workers'] = 'Sgrùd na h-obraichean dàilichte'; +$a->strings['Inspect worker Queue'] = 'Sgrùd ciutha nan obraichean'; +$a->strings['Diagnostics'] = 'Diagnosachd'; +$a->strings['PHP Info'] = 'Fiosrachadh PHP'; +$a->strings['probe address'] = 'sgrùd an seòladh'; +$a->strings['check webfinger'] = 'thoir sùil air webfinger'; +$a->strings['Babel'] = 'Babel'; +$a->strings['ActivityPub Conversion'] = 'Iompachadh ActivityPub'; +$a->strings['Addon Features'] = 'Gleusan tuilleadain'; +$a->strings['User registrations waiting for confirmation'] = 'Clàraichean chleachdaichean a’ feitheamh air dearbhadh'; +$a->strings['Too Many Requests'] = 'Cus iarrtasan'; +$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Ràinig thu a’ chrìoch de %d phost gach latha. Chaidh am post a dhiùltadh.', + 1 => 'Ràinig thu a’ chrìoch de %d phost gach latha. Chaidh am post a dhiùltadh.', + 2 => 'Ràinig thu a’ chrìoch de %d postaichean gach latha. Chaidh am post a dhiùltadh.', + 3 => 'Ràinig thu a’ chrìoch de %d post gach latha. Chaidh am post a dhiùltadh.', +]; +$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Ràinig thu a’ chrìoch de %d phost gach seachdain. Chaidh am post a dhiùltadh.', + 1 => 'Ràinig thu a’ chrìoch de %d phost gach seachdain. Chaidh am post a dhiùltadh.', + 2 => 'Ràinig thu a’ chrìoch de %d postaichean gach seachdain. Chaidh am post a dhiùltadh.', + 3 => 'Ràinig thu a’ chrìoch de %d post gach seachdain. Chaidh am post a dhiùltadh.', +]; +$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Ràinig thu a’ chrìoch de %d phost gach mìos. Chaidh am post a dhiùltadh.', + 1 => 'Ràinig thu a’ chrìoch de %d phost gach mìos. Chaidh am post a dhiùltadh.', + 2 => 'Ràinig thu a’ chrìoch de %d postaichean gach mìos. Chaidh am post a dhiùltadh.', + 3 => 'Ràinig thu a’ chrìoch de %d post gach mìos. Chaidh am post a dhiùltadh.', +]; +$a->strings['Users'] = 'Cleachdaichean'; +$a->strings['Tools'] = 'Innealan'; +$a->strings['Contact Blocklist'] = 'Liosta-bhacaidh an luchd-aithne'; +$a->strings['Server Blocklist'] = 'Liosta-bhacaidh an fhrithealaiche'; +$a->strings['Delete Item'] = 'Sguab às an nì'; +$a->strings['Item Source'] = 'Tùs an nì'; +$a->strings['Profile Details'] = 'Fiosrachadh na pròifil'; +$a->strings['Conversations started'] = 'Còmhraidhean air an tòiseachadh'; +$a->strings['Only You Can See This'] = 'Chan fhaic ach thu fhèin seo'; +$a->strings['Scheduled Posts'] = 'Postaichean air an sgeideal'; +$a->strings['Posts that are scheduled for publishing'] = 'Postaichean a tha air an sgeideal airson foillseachadh'; +$a->strings['Tips for New Members'] = 'Gliocasan dha na buill ùra'; +$a->strings['People Search - %s'] = 'Lorg daoine – %s'; +$a->strings['Group Search - %s'] = 'Lorg sna buidhnean – %s'; +$a->strings['No matches'] = 'Gun mhaids'; +$a->strings['%d result was filtered out because your node blocks the domain it is registered on. You can review the list of domains your node is currently blocking in the About page.'] = [ + 0 => 'Chaidh %d toradh a chriathradh air falbh on a tha an nòd agad a’ bacadh na h-àrainne air a bheil e clàraichte. Chì thu liosta nan àrainnean a tha ’gam bacadh leis an nòd agad air an duilleag “Mu dheidhinn”.', + 1 => 'Chaidh %d thoradh a chriathradh air falbh on a tha an nòd agad a’ bacadh na h-àrainne air a bheil iad clàraichte. Chì thu liosta nan àrainnean a tha ’gam bacadh leis an nòd agad air an duilleag “Mu dheidhinn”.', + 2 => 'Chaidh %d toraidhean a chriathradh air falbh on a tha an nòd agad a’ bacadh na h-àrainne air a bheil iad clàraichte. Chì thu liosta nan àrainnean a tha ’gam bacadh leis an nòd agad air an duilleag “Mu dheidhinn”.', + 3 => 'Chaidh %d toradh a chriathradh air falbh on a tha an nòd agad a’ bacadh na h-àrainne air a bheil iad clàraichte. Chì thu liosta nan àrainnean a tha ’gam bacadh leis an nòd agad air an duilleag “Mu dheidhinn”.', +]; +$a->strings['Account'] = 'Cunntas'; +$a->strings['Two-factor authentication'] = 'Dearbhadh dà-cheumnach'; +$a->strings['Display'] = 'Sealladh'; +$a->strings['Social Networks'] = 'Lìonraidhean sòisealta'; +$a->strings['Manage Accounts'] = 'Stiùir na cunntasan'; +$a->strings['Connected apps'] = 'Aplacaidean ceangailte'; +$a->strings['Export personal data'] = 'Às-phortaich an dàta pearsanta'; +$a->strings['Remove account'] = 'Thoir air falbh an cunntas'; +$a->strings['This page is missing a url parameter.'] = 'Tha paramadair URL a dhìth air an duilleag seo.'; +$a->strings['The post was created'] = 'Chaidh am post a chruthachadh'; +$a->strings['Invalid Request'] = 'Iarrtas mì-dhligheach'; +$a->strings['Event id is missing.'] = 'Tha ID an tachartais a dhìth.'; +$a->strings['Failed to remove event'] = 'Cha deach leinn an tachartas a thoirt air falbh'; +$a->strings['Event can not end before it has started.'] = 'Chan urrainn do thachartas crìochnachadh mus tòisich e.'; +$a->strings['Event title and start time are required.'] = 'Tha feum air tiotal is àm tòiseachaidh an tachartais.'; +$a->strings['Starting date and Title are required.'] = 'Tha feum air àm tòiseachaidh is tiotal.'; +$a->strings['Event Starts:'] = 'Tòisichidh an tachartas:'; +$a->strings['Required'] = 'Riatanach'; +$a->strings['Finish date/time is not known or not relevant'] = 'Chan eil fhios dè an t-àm crìochnachaidh no chan eil e iomchaidh'; +$a->strings['Event Finishes:'] = 'Thig an tachartas gu crìoch:'; +$a->strings['Title (BBCode not allowed)'] = 'Tiotal (chan eil BBCode ceadaichte)'; +$a->strings['Description (BBCode allowed)'] = 'Tuairisgeul (tha BBCode ceadaichte)'; +$a->strings['Location (BBCode not allowed)'] = 'Ionad (chan eil BBCode ceadaichte)'; +$a->strings['Share this event'] = 'Co-roinn an tachartas seo'; +$a->strings['Basic'] = 'Bunasach'; +$a->strings['This calendar format is not supported'] = 'Chan eil taic ri fòrmat a’ mhìosachain seo'; +$a->strings['No exportable data found'] = 'Cha deach dàta a ghabhas às-phortadh a lorg'; +$a->strings['calendar'] = 'mìosachan'; +$a->strings['Events'] = 'Tachartasan'; +$a->strings['View'] = 'Seall'; +$a->strings['Create New Event'] = 'Cruthaich tachartas ùr'; +$a->strings['list'] = 'liosta'; +$a->strings['Could not create circle.'] = 'Cha b’ urrainn dhuinn an cearcall a chruthachadh.'; +$a->strings['Circle not found.'] = 'Cha deach an cearcall a lorg.'; +$a->strings['Circle name was not changed.'] = 'Cha deach ainm a’ chearcaill atharrachadh.'; +$a->strings['Unknown circle.'] = 'Cearcall nach aithne dhuinn.'; +$a->strings['Contact not found.'] = 'Cha deach an neach-aithne a lorg.'; +$a->strings['Invalid contact.'] = 'Neach-aithne mì-dhligheach.'; +$a->strings['Contact is deleted.'] = 'Chaidh an neach-aithne a sguabadh às.'; +$a->strings['Unable to add the contact to the circle.'] = 'Cha deach leinn an neach-aithne a chur ris a’ chearcall.'; +$a->strings['Contact successfully added to circle.'] = 'Chaidh an neach-aithne a chur ris a’ chearcall.'; +$a->strings['Unable to remove the contact from the circle.'] = 'Cha deach leinn an neach-aithne a thoirt air falbh on chearcall.'; +$a->strings['Contact successfully removed from circle.'] = 'Chaidh an neach-aithne a thoirt air falbh on chearcall.'; +$a->strings['Bad request.'] = 'Droch-iarrtas.'; +$a->strings['Save Circle'] = 'Sàbhail an cearcall'; +$a->strings['Filter'] = 'Criathrag'; +$a->strings['Create a circle of contacts/friends.'] = 'Cruthaich cearcall luchd-aithne/charaidean.'; +$a->strings['Unable to remove circle.'] = 'Cha deach leinn an cearcall a thoirt air falbh.'; +$a->strings['Delete Circle'] = 'Sguab às an cearcall'; +$a->strings['Edit Circle Name'] = 'Deasaich ainm a’ chearcaill'; +$a->strings['Members'] = 'Buill'; +$a->strings['Circle is empty'] = 'Tha an cearcall falamh'; +$a->strings['Remove contact from circle'] = 'Thoir air falbh an neach-aithne on chearcall'; +$a->strings['Click on a contact to add or remove.'] = 'Briog air neach-aithne gus a chur ris no a thoirt air falbh.'; +$a->strings['Add contact to circle'] = 'Cuir an neach-aithne ris a’ chearcall'; +$a->strings['%d contact edited.'] = [ + 0 => 'Chaidh %d neach-aithne a dheasachadh.', + 1 => 'Chaidh %d luchd-aithne a dheasachadh.', + 2 => 'Chaidh %d luchd-aithne a dheasachadh.', + 3 => 'Chaidh %d luchd-aithne a dheasachadh.', +]; +$a->strings['Show all contacts'] = 'Seall an luchd-aithne gu lèir'; +$a->strings['Pending'] = 'Ri dhèiligeadh'; +$a->strings['Only show pending contacts'] = 'Na seall ach an luchd-aithne ri dhèiligeadh'; +$a->strings['Blocked'] = '’Ga bhacadh'; +$a->strings['Only show blocked contacts'] = 'Na seall ach an luchd-aithne bacte'; +$a->strings['Ignored'] = '’Ga leigeil seachad'; +$a->strings['Only show ignored contacts'] = 'Na seall ach an luchd-aithne ’gan leigeil seachad'; +$a->strings['Collapsed'] = '’Ga cho-theannachadh'; +$a->strings['Only show collapsed contacts'] = 'Na seall ach an luchd-aithne co-theannaichte'; +$a->strings['Archived'] = 'San tasg-lann'; +$a->strings['Only show archived contacts'] = 'Na seall ach an luchd-aithne san tasg-lann'; +$a->strings['Hidden'] = 'Falaichte'; +$a->strings['Only show hidden contacts'] = 'Na seall ach an luchd-aithne falaichte'; +$a->strings['Organize your contact circles'] = 'Cuir rian air cearcallan an luchd-aithne agad'; +$a->strings['Search your contacts'] = 'Lorg san luchd-aithne agad'; +$a->strings['Results for: %s'] = 'Toraidhean airson: %s'; +$a->strings['Update'] = 'Ùraich'; +$a->strings['Unblock'] = 'Dì-bhac'; +$a->strings['Unignore'] = 'Na leig seachad tuilleadh'; +$a->strings['Uncollapse'] = 'Na co-theannaich tuilleadh'; +$a->strings['Batch Actions'] = 'Gnìomhan ’nan grunnan'; +$a->strings['Conversations started by this contact'] = 'Na còmhraidhean a thòisich an neach-aithne seo'; +$a->strings['Posts and Comments'] = 'Postaichean ’s beachdan'; +$a->strings['Individual Posts and Replies'] = 'Postaichean ’s freagairtean fa leth'; +$a->strings['Posts containing media objects'] = 'Postaichean sa bheil nithean meadhain'; +$a->strings['View all known contacts'] = 'Seall a h-uile neach-aithne as aithne dhut'; +$a->strings['Advanced Contact Settings'] = 'Roghainnean adhartach an luchd-aithne'; +$a->strings['Mutual Friendship'] = 'Co-dhàimh'; +$a->strings['is a fan of yours'] = 'dealasach ort'; +$a->strings['you are a fan of'] = 'tha thu dealasach air'; +$a->strings['Pending outgoing contact request'] = 'Iarrtas neach-aithne a-mach gun dèiligeadh'; +$a->strings['Pending incoming contact request'] = 'Iarrtas neach-aithne a-steach ri dhèiligeadh'; +$a->strings['Visit %s\'s profile [%s]'] = 'Tadhail air a’ phròifil aig %s [%s]'; +$a->strings['Contact update failed.'] = 'Dh’fhàillig ùrachadh an neach-aithne.'; +$a->strings['Return to contact editor'] = 'Air ais gu deasaiche an neach-aithne'; +$a->strings['Name'] = 'Ainm'; +$a->strings['Account Nickname'] = 'Far-ainm a’ chunntais'; +$a->strings['Account URL'] = 'URL a’ chunntais'; +$a->strings['Poll/Feed URL'] = 'URL a’ chunntais-bheachd/an inbhir'; +$a->strings['New photo from this URL'] = 'Dealbh ùr on URL seo'; +$a->strings['No known contacts.'] = 'Chan eil luchd-aithne ann.'; +$a->strings['No common contacts.'] = 'Chan eil neach-aithne an cumantas ann.'; +$a->strings['Follower (%s)'] = [ + 0 => 'Neach-leantainn (%s)', + 1 => 'Luchd-leantainn (%s)', + 2 => 'Luchd-leantainn (%s)', + 3 => 'Luchd-leantainn (%s)', +]; +$a->strings['Following (%s)'] = [ + 0 => 'A’ leantainn (%s)', + 1 => 'A’ leantainn (%s)', + 2 => 'A’ leantainn (%s)', + 3 => 'A’ leantainn (%s)', +]; +$a->strings['Mutual friend (%s)'] = [ + 0 => 'Co-dhàimh (%s)', + 1 => 'Co-dhàimhean (%s)', + 2 => 'Co-dhàimhean (%s)', + 3 => 'Co-dhàimhean (%s)', +]; +$a->strings['These contacts both follow and are followed by %s.'] = 'Tha an luchd-aithne seo an dà chuid a’ leantainn ’s ’gan leantainn le %s.'; +$a->strings['Common contact (%s)'] = [ + 0 => 'Neach-aithne an cumantas (%s)', + 1 => 'Luchd-aithne an cumantas (%s)', + 2 => 'Luchd-aithne an cumantas (%s)', + 3 => 'Luchd-aithne an cumantas (%s)', +]; +$a->strings['Both %s and yourself have publicly interacted with these contacts (follow, comment or likes on public posts).'] = 'Rinn thu fhèin agus %s co-luadar gu poblach leis an luchd-aithne seo (leantainn, beachd air no gur toigh leibh post poblach).'; +$a->strings['Contact (%s)'] = [ + 0 => 'Neach-aithne (%s)', + 1 => 'Luchd-aithne (%s)', + 2 => 'Luchd-aithne (%s)', + 3 => 'Luchd-aithne (%s)', +]; +$a->strings['Access denied.'] = 'Chaidh inntrigeadh a dhiùltadh.'; +$a->strings['Submit Request'] = 'Cuir an t-iarrtas a-null'; +$a->strings['You already added this contact.'] = 'Chuir thu an neach-aithne seo ris mu thràth.'; +$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Cha do mhothaich sinn do sheòrsa an lìonraidh. Cha b’ urrainn dhuinn an neach-aithne a chur ris.'; +$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Chan eil taic ri diaspora* an comas. Cha b’ urrainn dhuinn an neach-aithne a chur ris.'; +$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Chan eil taic ri OStatus an comas. Cha b’ urrainn dhuinn an neach-aithne a chur ris.'; +$a->strings['Please answer the following:'] = 'Freagair seo:'; +$a->strings['Your Identity Address:'] = 'Seòladh do dhearbh-aithne:'; +$a->strings['Profile URL'] = 'URL na pròifile'; +$a->strings['Tags:'] = 'Tagaichean:'; +$a->strings['%s knows you'] = 'Is aithne dha %s thu'; +$a->strings['Add a personal note:'] = 'Cuir nòta pearsanta ris:'; +$a->strings['Posts and Replies'] = 'Postaichean ’s freagairtean'; +$a->strings['The contact could not be added.'] = 'Cha b’ urrainn dhuinn an neach-aithne a chur ris.'; +$a->strings['Invalid request.'] = 'Iarrtas mì-dhligheach.'; +$a->strings['No keywords to match. Please add keywords to your profile.'] = 'Chan eil faclan-luirg rim maidseadh ann. Cuir faclan-luirg ris a’ phròifil agad.'; +$a->strings['Profile Match'] = 'Maidseadh na pròifile'; +$a->strings['Failed to update contact record.'] = 'Cha b’ urrainn dhuinn clàr an neach-aithne ùrachadh.'; +$a->strings['Contact has been unblocked'] = 'Chaidh an neach-aithne a dhì-bhacadh'; +$a->strings['Contact has been blocked'] = 'Chaidh an neach-aithne a bhacadh'; +$a->strings['Contact has been unignored'] = 'Chan eil an neach-aithne ’ga leigeil seachad tuilleadh'; +$a->strings['Contact has been ignored'] = 'Tha an neach-aithne ’ga leigeil seachad'; +$a->strings['Contact has been uncollapsed'] = 'Chan eil an neach-aithne ’ga cho-theannachadh tuilleadh'; +$a->strings['Contact has been collapsed'] = 'Tha an neach-aithne ’ga cho-theannachadh'; +$a->strings['You are mutual friends with %s'] = 'Tha co-dhàimh eadar thu fhèin is %s a-nis'; +$a->strings['You are sharing with %s'] = 'Tha thu a’ co-roinneadh le %s'; +$a->strings['%s is sharing with you'] = 'Tha %s a’ co-roinneadh leat'; +$a->strings['Private communications are not available for this contact.'] = 'Chan eil conaltradh prìobhaideach ri fhaighinn dhan neach-aithne seo.'; +$a->strings['Never'] = 'Chan ann idir'; +$a->strings['(Update was not successful)'] = '(Cha deach leis an ùrachadh)'; +$a->strings['(Update was successful)'] = '(Chaidh leis an ùrachadh)'; +$a->strings['Suggest friends'] = 'Mol caraidean'; +$a->strings['Network type: %s'] = 'Seòrsa an lìonraidh: %s'; +$a->strings['Communications lost with this contact!'] = 'Chaidh an conaltradh leis an neach-aithne seo a chall!'; +$a->strings['Fetch further information for feeds'] = 'Faigh barrachd fiosrachaidh dha na h-inbhirean'; +$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.'] = 'Faigh fiosrachadh mar dhealbhan ro-sheallaidh, tiotal is tàladh o nì an inbhir. ’S urrainn dhut seo a chur an comas mur eil cus teacsa san inbhir. Thèid faclan-luirg a thogail o bhann-cinn nì an inbhir agus am postadh ’nan tagaichean hais.'; +$a->strings['Fetch information'] = 'Faigh am fiosrachadh'; +$a->strings['Fetch keywords'] = 'Faigh na faclan-luirg'; +$a->strings['Fetch information and keywords'] = 'Faigh am fiosrachadh ’s na faclan-luirg'; +$a->strings['No mirroring'] = 'Gun sgàthanachadh'; +$a->strings['Mirror as my own posting'] = 'Sgàthanaich ’na phost leam fhìn'; +$a->strings['Native reshare'] = 'Co-roinneadh tùsail'; +$a->strings['Contact Information / Notes'] = 'Fiosrachadh an neach-aithne / Nòtaichean'; +$a->strings['Contact Settings'] = 'Roghainnean an neach-aithne'; +$a->strings['Contact'] = 'Neach-aithne'; +$a->strings['Their personal note'] = 'An nòta pearsanta aca'; +$a->strings['Edit contact notes'] = 'Deasaich notaichean an neach-aithne'; +$a->strings['Block/Unblock contact'] = 'Bac/Dì-bhac an neach-aithne'; +$a->strings['Ignore contact'] = 'Leig seachad an neach-aithne'; +$a->strings['View conversations'] = 'Seall na còmhraidhean'; +$a->strings['Last update:'] = 'An t-ùrachadh mu dheireadh:'; +$a->strings['Update public posts'] = 'Ùraich na postaichean poblach'; +$a->strings['Update now'] = 'Ùraich an-dràsta'; +$a->strings['Awaiting connection acknowledge'] = 'A’ feitheamh air aithneachadh a’ cheangail'; +$a->strings['Currently blocked'] = '’Ga bhacadh an-dràsta'; +$a->strings['Currently ignored'] = '’Ga leigeil seachad an-dràsta'; +$a->strings['Currently collapsed'] = '’Ga cho-theannachadh an-dràsta'; +$a->strings['Currently archived'] = 'San tasg-lann an-dràsta'; +$a->strings['Hide this contact from others'] = 'Falaich an neach-aithne seo o chàch'; +$a->strings['Replies/likes to your public posts may still be visible'] = 'Dh’fhaoidte gum faicear freagairtean/gur toigh le daoine na postaichean poblach agad fhathast'; +$a->strings['Notification for new posts'] = 'Brathan air postaichean ùra'; +$a->strings['Send a notification of every new post of this contact'] = 'Cuir brath airson gach post ùr aig an neach-aithne seo'; +$a->strings['Keyword Deny List'] = 'Liosta-dhiùltaidh nam facal-luirg'; +$a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Liosta sgaraichte le cromagan de dh’fhaclan-luirg nach dèid iompachadh gu tagaichean tais nuair a bhios “Faigh am fiosrachadh ’s na faclan-luirg” air a thaghadh'; +$a->strings['Actions'] = 'Gnìomhan'; +$a->strings['Status'] = 'Staid'; +$a->strings['Mirror postings from this contact'] = 'Sgàthanaich na postaichean on neach-aithne seo'; +$a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'Cuir comharra remote_self ris an neach-aithne seo ach an ath-phostaich Friendica nithean ùra on neach-aithne seo.'; +$a->strings['Refetch contact data'] = 'Faigh dàta an neach-aithne a-rithist'; +$a->strings['Toggle Blocked status'] = 'Toglaich stad a’ bhacaidh'; +$a->strings['Toggle Ignored status'] = 'Toglaich staid na leigeil seachad'; +$a->strings['Toggle Collapsed status'] = 'Toglaich staid a’ cho-theannachaidh'; +$a->strings['Revoke Follow'] = 'Cùl-ghairm an leantainn'; +$a->strings['Revoke the follow from this contact'] = 'Thoir air an neach-aithne seo nach lean iad ort tuilleadh'; +$a->strings['Bad Request.'] = 'Droch-iarrtas.'; +$a->strings['Unknown contact.'] = 'Neach-aithne nach aithne dhuinn.'; +$a->strings['Contact is being deleted.'] = 'Tha an neach-aithne ’ga sguabadh às.'; +$a->strings['Follow was successfully revoked.'] = 'Chaidh an leantainn a chùl-ghairm.'; +$a->strings['Do you really want to revoke this contact\'s follow? This cannot be undone and they will have to manually follow you back again.'] = 'A bheil thu cinnteach nach eil thu ag iarraidh gun lean an neach-aithne seo ort tuilleadh? Cha ghabh seo a neo-dhèanamh is feumaidh iad leantainn ort a làimh às ùr.'; +$a->strings['Yes'] = 'Tha'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Chan eil moladh sam bith ann. Mas e làrach ùr a th’ ann, feuch ris a-rithist an ceann 24 uair a thìde.'; +$a->strings['You aren\'t following this contact.'] = 'Chan eil thu a’ leantainn air an neach-aithne seo.'; +$a->strings['Unfollowing is currently not supported by your network.'] = 'Cha chuir an lìonra agad taic ri sgur de leantainn air an àm seo.'; +$a->strings['Disconnect/Unfollow'] = 'Dì-cheangail/Na lean tuilleadh'; +$a->strings['Contact was successfully unfollowed'] = 'Chan eil thu a’ leantainn air an neach-aithne tuilleadh'; +$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Cha deach leinn an neach-aithne a thoirt air falbh on fheadhainn air a leanas tu, cuir fios gun rianaire agad'; +$a->strings['No results.'] = 'Chan eil toradh ann.'; +$a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'Seallaidh sruthadh na coimhearsnachd gach post poblach a fhuair an nòd seo. Dh’fhaoidte nach eil iad a’ riochdachadh beachdan luchd-cleachdaidh an nòid seo.'; +$a->strings['Community option not available.'] = 'Chan eil roghainn na coimhearsnachd ri fhaighinn.'; +$a->strings['Not available.'] = 'Chan eil seo ri fhaighinn.'; +$a->strings['No such circle'] = 'Chan eil an cearcall seo ann'; +$a->strings['Circle: %s'] = 'Cearcall: %s'; +$a->strings['Own Contacts'] = 'An luchd-aithne agadsa'; +$a->strings['Include'] = 'Gabh a-staigh'; +$a->strings['Hide'] = 'Falaich'; +$a->strings['Credits'] = 'Urram'; +$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!'] = '’S e pròiseact coimhearsnachd a th’ ann am Friendica is cha ghabhadh a thoirt gu buil às aonais taic o iomadh daoine. Seo liosta dhen fheadhainn a chuir ri chòd no ri eadar-theangachadh Friendica. Mòran taing dhuibh uile!'; +$a->strings['Formatted'] = 'Fòrmataichte'; +$a->strings['Activity'] = 'Gnìomhachd'; +$a->strings['Object data'] = 'Dàta oibseict'; +$a->strings['Result Item'] = 'Nì toraidh'; +$a->strings['Error'] = [ + 0 => 'Mearachd', + 1 => 'Mearachdan', + 2 => 'Mearachdan', + 3 => 'Mearachdan', +]; +$a->strings['Source activity'] = 'Gnìomhachd bun-tùis'; +$a->strings['Source input'] = 'Ion-chur bun-tùis'; +$a->strings['BBCode::toPlaintext'] = 'BBCode::toPlaintext'; +$a->strings['BBCode::convert (raw HTML)'] = 'BBCode::convert (HTML amh)'; +$a->strings['BBCode::convert (hex)'] = 'BBCode::convert (sia-dheicheach)'; +$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 (HTML amh)'; +$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'] = 'Bodhaig nì'; +$a->strings['Item Tags'] = 'Tagaichean nì'; +$a->strings['PageInfo::appendToBody'] = 'PageInfo::appendToBody'; +$a->strings['PageInfo::appendToBody => BBCode::convert (raw HTML)'] = 'PageInfo::appendToBody => BBCode::convert (HTML amh)'; +$a->strings['PageInfo::appendToBody => BBCode::convert'] = 'PageInfo::appendToBody => BBCode::convert'; +$a->strings['Source input (Diaspora format)'] = 'Ion-chur bun-tùis (fòrmat diaspora*)'; +$a->strings['Source input (Markdown)'] = 'Ion-chur bun-tùis (Markdown)'; +$a->strings['Markdown::convert (raw HTML)'] = 'Markdown::convert (HTML amh)'; +$a->strings['Markdown::convert'] = 'Markdown::convert'; +$a->strings['Markdown::toBBCode'] = 'Markdown::toBBCode'; +$a->strings['Raw HTML input'] = 'Ion-chur HTML amh'; +$a->strings['HTML Input'] = 'Ion-chur HTML'; +$a->strings['HTML Purified (raw)'] = 'HTML air a ghlanadh (amh)'; +$a->strings['HTML Purified (hex)'] = 'HTML air a ghlanadh (sia-dheicheach)'; +$a->strings['HTML Purified'] = 'HTML air a ghlanadh'; +$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 (HTML amh)'; +$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 (dùmhlaichte)'; +$a->strings['Decoded post'] = 'Post air a dhì-chòdachadh'; +$a->strings['Post array before expand entities'] = 'Arraigh a’ phuist ro leudachadh nan eintiteasan'; +$a->strings['Post converted'] = 'Post air iompachadh'; +$a->strings['Converted body'] = 'Bodhaig air a h-iompachadh'; +$a->strings['Twitter addon is absent from the addon/ folder.'] = 'Chan eil tuilleadan Twitter sa phasgan addon/.'; +$a->strings['Babel Diagnostic'] = 'Diagnosachd Babel'; +$a->strings['Source text'] = 'Teacsa tùsail'; +$a->strings['BBCode'] = 'BBCode'; +$a->strings['Markdown'] = 'Markdown'; +$a->strings['HTML'] = 'HTML'; +$a->strings['Twitter Source / Tweet URL (requires API key)'] = 'Bun-tùs Twitter / URL a’ tweet (feum air iuchair API)'; +$a->strings['You must be logged in to use this module'] = 'Feumaidh tu clàradh a-steach mus urrainn dhut am mòideal seo a chleachdadh'; +$a->strings['Source URL'] = 'URL an tùis'; +$a->strings['Time Conversion'] = 'Iompachadh na h-ama'; +$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Tha Friendica a’ solar na seirbheise seo airson tachartasan a cho-roinneadh le lìonraidhean eile ’s le caraidean mur eil fios dè an roinnean-tìde.'; +$a->strings['UTC time: %s'] = 'Àm UTC: %s'; +$a->strings['Current timezone: %s'] = 'An roinn-tìde làithreach: %s'; +$a->strings['Converted localtime: %s'] = 'An t-àm ionadail iompaichte: %s'; +$a->strings['Please select your timezone:'] = 'Tagh an roinn-tìde agad:'; +$a->strings['Only logged in users are permitted to perform a probing.'] = 'Chan fhaod ach cleachdaichean air an clàradh a-steach sgrùdadh a dhèanamh.'; +$a->strings['Probe Diagnostic'] = 'Diagnosachd sgrùdaidh'; +$a->strings['Output'] = 'Às-chur'; +$a->strings['Lookup address'] = 'Rannsaich an seòladh'; +$a->strings['Webfinger Diagnostic'] = 'Diagnosachd Webfinger'; +$a->strings['Lookup address:'] = 'Rannsaich an seòladh:'; +$a->strings['You are now logged in as %s'] = 'Tha thu air do chlàradh a-steach mar %s'; +$a->strings['Switch between your accounts'] = 'Geàrr leum eadar na cunntasan agad'; +$a->strings['Manage your accounts'] = 'Stiùirich na cunntasan agad'; +$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Geàrr leum eadar dearbh-aithnean no duilleagan coimhearsnachd/buidhinn a tha a’ co-roinneadh fiosrachadh a’ chunntais agad no a fhuair thu ceadan “stiùir” dhaibh'; +$a->strings['Select an identity to manage: '] = 'Tagh dearbh-aithne ri stiùireadh: '; +$a->strings['No entries (some entries may be hidden).'] = 'Gun innteart (’s dòcha gu bheil cuid a dh’innteartan falaichte).'; +$a->strings['Find on this site'] = 'Lorg air an làrach seo'; +$a->strings['Results for:'] = 'Toraidhean airson:'; +$a->strings['Site Directory'] = 'Eòlaire na làraich'; +$a->strings['Item was not deleted'] = 'Cha deach an nì a sguabadh às'; +$a->strings['Item was not removed'] = 'Cha deach nì a thoirt air falbh'; +$a->strings['- select -'] = '– tagh –'; +$a->strings['Suggested contact not found.'] = 'Cha deach an neach-aithne molta a lorg.'; +$a->strings['Friend suggestion sent.'] = 'Chaidh moladh caraid a chur.'; +$a->strings['Suggest Friends'] = 'Mol caraidean'; +$a->strings['Suggest a friend for %s'] = 'Mol caraid dha %s'; +$a->strings['Installed addons/apps:'] = 'Aplacaidean/tuilleadain stàlaichte:'; +$a->strings['No installed addons/apps'] = 'Cha deach aplacaid/tuilleadan a stàladh'; +$a->strings['Read about the Terms of Service of this node.'] = 'Leugh teirmichean seirbheise an nòd seo.'; +$a->strings['On this server the following remote servers are blocked.'] = 'Seo a frithealaichean cèine a tha ’gam bacadh leis an fhrithealaiche seo.'; +$a->strings['Reason for the block'] = 'Adhbhar a’ bhacaidh'; +$a->strings['Download this list in CSV format'] = 'Luchdaich a-nuas an liosta seo san fhòrmat CSV'; +$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.'] = 'Seo Friendica tionndadh %s a tha a’ ruith air an ionad-lìn %s. Is %s tionndadh an stòir-dhàta agus %s tionndadh ùrachadh nam post.'; +$a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Tadhail air Friendi.ca airson barrachd fiosrachaidh mu phròiseact Friendica.'; +$a->strings['Bug reports and issues: please visit'] = 'Aithrisean air bugaichean is duilgheadasan: tadhail air'; +$a->strings['the bugtracker at github'] = 'tracaiche nam bugaichean air GitHub'; +$a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = 'Airson beachdan, molaidhean is mssa. – cuir post-d gu “info” aig “friendi – dot – ca'; +$a->strings['No profile'] = 'Chan eil pròifil ann'; +$a->strings['Method Not Allowed.'] = 'Chan eil am modh ceadaichte.'; +$a->strings['Help:'] = 'Cobhair:'; +$a->strings['Welcome to %s'] = 'Fàilte gu %s'; +$a->strings['Friendica Communications Server - Setup'] = 'Frithealaiche conaltradh Friendica – Suidheachadh'; +$a->strings['System check'] = 'Dearbhadh an t-siostaim'; +$a->strings['Requirement not satisfied'] = 'Tha riatanas nach deach a choileanadh'; +$a->strings['Optional requirement not satisfied'] = 'Tha riatanas roghainneil nach deach a choileanadh'; +$a->strings['OK'] = 'Ceart ma-thà'; +$a->strings['Next'] = 'Air adhart'; +$a->strings['Check again'] = 'Sgrùd a-rithist'; +$a->strings['Base settings'] = 'Roghainnean bunasach'; +$a->strings['Base path to installation'] = 'An t-slighe bhunasach dhan stàladh'; +$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.'] = 'Mur aithnich an siostam an t-slighe cheart dhan stàladh agad, cuir a-steach an t-slighe cheart an-seo. Cha bu chòir dhut seo a shuidheachadh ach ma tha thu a’ cleachdadh siostam cuingichte agus ceanglaichean samhlachail gun fheumh-lìn agad.'; +$a->strings['The Friendica system URL'] = 'URL siostam Friendica'; +$a->strings['Overwrite this field in case the system URL determination isn\'t right, otherwise leave it as is.'] = 'Tar-sgrìobh an raon seo mura deach URL an t-siostaim aithneachadh mar bu chòir. Ma chaidh, fàg e mar a tha e.'; +$a->strings['Database connection'] = 'Ceangal stòir-dhàta'; +$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Airson Friendica a stàladh, feumaidh fios a bhith againn air mar a nì sinn ceangal dhan stòr-dàta agad.'; +$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Cuir fios gu solaraiche an òstaidh no rianaire na làraich agad ma tha ceist agad mu na roghainnean seo.'; +$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'Bu chòir dhan stòr-dàta a shònraicheas tu a bhith ann mu thràth. Mur eil, cruthaich e mus lean thu air adhart.'; +$a->strings['Database Server Name'] = 'Ainm frithealaiche an stòir-dhàta'; +$a->strings['Database Login Name'] = 'Ainm clàraidh a-steach an stòir-dhàta'; +$a->strings['Database Login Password'] = 'Facal-faire clàradh a-steach an stòir-dhàta'; +$a->strings['For security reasons the password must not be empty'] = 'Air adhbharan tèarainteachd, chan fhaod am facal-faire a bhith falamh'; +$a->strings['Database Name'] = 'Ainm an stòir-dhàta'; +$a->strings['Please select a default timezone for your website'] = 'Tagh roinn-tìde bhunaiteach dhan làrach-lìn agad'; +$a->strings['Site settings'] = 'Roghainnean na làraich'; +$a->strings['Site administrator email address'] = 'An seòladh puist-d aig rianaire na làraich'; +$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'Feumaidh seòladh puist-d a’ chunntais agad a bhith co-ionnan ri seo ach an urrainn dhut panail-lìn na rianachd a chleachdadh.'; +$a->strings['System Language:'] = 'Cànan an t-siostaim:'; +$a->strings['Set the default language for your Friendica installation interface and to send emails.'] = 'Suidhich an cànan bunaiteach dhan eadar-aghaidh stàladh Friendica agad is do na puist-d a thèid a chur.'; +$a->strings['Your Friendica site database has been installed.'] = 'Chaidh stòr-dàta na làraich Friendica agad a stàladh.'; +$a->strings['Installation finished'] = 'Tha an stàladh deiseil'; +$a->strings['

    What next

    '] = '

    Dè a-nis?

    '; +$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the worker.'] = 'CUDROMACH: Feumaidh gu saothair dhan obraiche a chur air an sgeideal [a làimh].'; +$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.'] = 'Tadhail air duilleag a’ chlàraidh aig an nòd Friendica ùr agad agus clàraich mar cleachdaiche ùr. Thoir an aire gun cleachd thu an aon seòladh puist-d ’s a chuir thu a-steach mar phost-d an rianaire. Bheir seo inntrigeadh do phanail na rianachd dhut.'; +$a->strings['Total invitation limit exceeded.'] = 'Chaidh thu thairis air crìoch nan cuiridhean iomlan.'; +$a->strings['%s : Not a valid email address.'] = '%s : Chan e seòladh puist-d dligheach a tha seo.'; +$a->strings['Please join us on Friendica'] = 'Thig cuide rinn air Friendica'; +$a->strings['Invitation limit exceeded. Please contact your site administrator.'] = 'Chaidh thu thairis air crìoch nan cuiridhean. Cuir fios gu rianaire na làraich agad.'; +$a->strings['%s : Message delivery failed.'] = '%s : Dh’fhàillig libhrigeadh na teachdaireachd.'; +$a->strings['%d message sent.'] = [ + 0 => 'Chaidh %d teachdaireachd a chur.', + 1 => 'Chaidh %d theachdaireachd a chur.', + 2 => 'Chaidh %d teachdaireachdan a chur.', + 3 => 'Chaidh %d teachdaireachd a chur.', +]; +$a->strings['You have no more invitations available'] = 'Chan eil barrachd cuiridhean ri fhaighinn dhut'; +$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.'] = 'Tadhail air %s airson liosta de làraichean poblach far an urrainn dhut ballrachd fhaighinn. ’S urrainn dhan a h-uile ball Friendica air làraichean eile ceangal ri chèile agus ri buill iomadh lìonra sòisealta eile.'; +$a->strings['To accept this invitation, please visit and register at %s or any other public Friendica website.'] = 'Airson gabhail ris a’ chuireadh seo, tadhail air %s is clàraich air no air làrach-lìn Friendica poblach sam bith eile.'; +$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.'] = 'Tha na làraichean Friendica uile co-naisgte ri chèile ach an cruthaich iad lìon sòisealta mòr aig a bheil prìobhaideachd phisichte ’s a tha fo smachd nam ball aige fhèin. ’S urrainn dhaibh ceangal a dhèanamh ri iomadh lìonra sòisealta tradaiseanta. Faic %s airson liosta de làraichean Friendica eile far an urrainn dhut ballrachd fhaighinn.'; +$a->strings['Our apologies. This system is not currently configured to connect with other public sites or invite members.'] = 'Tha sinn duilich. Cha deach an siostam rèiteachadh aig an àm seo airson ceangal ri làraichean poblach eile no cuiridhean ballrachd a chur.'; +$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.'] = 'Tha na làraichean Friendica uile co-naisgte ri chèile ach an cruthaich iad lìon sòisealta mòr aig a bheil prìobhaideachd phisichte ’s a tha fo smachd nam ball aige fhèin. ’S urrainn dhaibh ceangal a dhèanamh ri iomadh lìonra sòisealta tradaiseanta.'; +$a->strings['To accept this invitation, please visit and register at %s.'] = 'Airson gabhail ris a’ chuireadh seo, tadhail air %s is clàraich ann.'; +$a->strings['Send invitations'] = 'Cuir cuiridhean'; +$a->strings['Enter email addresses, one per line:'] = 'Cuir seòlaidhean puist-d a-steach, gach fear air loidhne fa leth:'; +$a->strings['You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.'] = 'Tha fàilte chridheil romhad airson tighinn cruinn còmhla rium-sa is dlùth-charaidean eile air Friendica – agus airson ar cuideachadh ach an cruthaich sinn lìon sòisealta nas fheàrr.'; +$a->strings['You will need to supply this invitation code: $invite_code'] = 'Bidh agad ris an còd cuiridh seo a sholar: $invite_code'; +$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Nuair a bhios tu air do chlàradh, dèan ceangal rium le duilleag na pròifil agam air:'; +$a->strings['For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca'] = 'Airson barrachd fiosrachaidh mu phròiseact Friendica ’s carson a tha sinn dhen bheachd gu bheil e cudromach, tadhail air http://friendi.ca'; +$a->strings['Please enter a post body.'] = 'Cuir a-steach bodhaig puist.'; +$a->strings['This feature is only available with the frio theme.'] = 'Chan eil an gleus seo ri fhaighinn ach leis an ùrlar frio.'; +$a->strings['Compose new personal note'] = 'Sgrìobh nòta pearsanta ùr'; +$a->strings['Compose new post'] = 'Sgrìobh post ùr'; +$a->strings['Visibility'] = 'Faicsinneachd'; +$a->strings['Clear the location'] = 'Thoir an t-ionad air falbh'; +$a->strings['Location services are unavailable on your device'] = 'Chan eil seirbheisean ionaid ri fhaighinn air an uidheam agad'; +$a->strings['Location services are disabled. Please check the website\'s permissions on your device'] = 'Tha seirbheisean ionaid à comas. Thoir sùil air ceadan na làraich-lìn air an uidheam agad'; +$a->strings['You can make this page always open when you use the New Post button in the Theme Customization settings.'] = '’S urrainn dhut suidheachadh gum fosgail an duilleag seo an-còmhnaidh nuair a chleachdas tu am putan “Post ùr” ann an Roghainnean gnàthaichte an ùrlair.'; +$a->strings['The feed for this item is unavailable.'] = 'Chan eil inbhir ri fhaighinn dhan nì seo.'; +$a->strings['Unable to follow this item.'] = 'Cha ghabh leantainn air an nì seo.'; +$a->strings['System down for maintenance'] = 'Tha an siostam dheth a chùm obrach-glèidhidh'; +$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.'] = 'Chaidh an nòd Friendica seo a chur sa mhodh obrach-glèidhidh, gu fèin-obrachail on a tha e ’ga ùrachadh fhèin no a làimh le rianaire an nòid. Cha bu chòir dhan staid seo a bhith air ach rè seal, till an ceann corra mionaid.'; +$a->strings['A Decentralized Social Network'] = 'Lìonra sòisealta sgaoilte'; +$a->strings['You need to be logged in to access this page.'] = 'Feumaidh tu clàradh a-steach mus fhaigh thu cothrom air an duilleag seo.'; +$a->strings['Files'] = 'Faidhlichean'; +$a->strings['Upload'] = 'Luchdaich suas'; +$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Tha sinn duilich a dh’fhaoidte gu bheil an luchdadh suas agad nas motha na tha ceadaichte leis an rèiteachadh PHP'; +$a->strings['Or - did you try to upload an empty file?'] = 'Air neo – an do dh’fheuch thu ri faidhle falamh a luchdadh suas?'; +$a->strings['File exceeds size limit of %s'] = 'Tha am faidhle nas motha na tha ceadaichte dhe %s'; +$a->strings['File upload failed.'] = 'Dh’fhàillig luchdadh suas an fhaidhle.'; +$a->strings['Unable to process image.'] = 'Cha b’ urrainn dhuinn an dealbh a phròiseasadh.'; +$a->strings['Image upload failed.'] = 'Dh’fhàillig le luchdadh suas an deilbh.'; $a->strings['List of all users'] = 'Liosta nan cleachdaichean uile'; $a->strings['Active'] = 'Gnìomhach'; $a->strings['List of active accounts'] = 'Liosta nan cunntasan gnìomhach'; -$a->strings['Pending'] = 'Ri dhèiligeadh'; $a->strings['List of pending registrations'] = 'Liosta nan clàraidhean rin dèiligeadh'; -$a->strings['Blocked'] = '’Ga bhacadh'; $a->strings['List of blocked users'] = 'Liosta nan cleachdaichean a chaidh a bhacadh'; $a->strings['Deleted'] = 'Air a sguabadh às'; $a->strings['List of pending user deletions'] = 'Liosta nan cleachdaichean rin sguabadh às'; $a->strings['Normal Account Page'] = 'Duilleag àbhaisteach a’ chunntais'; $a->strings['Soapbox Page'] = 'Duilleag cùbaid deasbaid'; -$a->strings['Public Forum'] = 'Fòram poblach'; +$a->strings['Public Group'] = 'Buidheann poblach'; $a->strings['Automatic Friend Page'] = 'Duilleag caraide fhèin-obrachail'; -$a->strings['Private Forum'] = 'Fòram prìobhaideach'; +$a->strings['Private Group'] = 'Buidheann prìobhaideach'; $a->strings['Personal Page'] = 'Duilleag phearsanta'; $a->strings['Organisation Page'] = 'Duilleag buidhinn'; $a->strings['News Page'] = 'Duilleag naidheachdan'; -$a->strings['Community Forum'] = 'Fòram coimhearsnachd'; +$a->strings['Community Group'] = 'Buidheann coimhearsnachd'; $a->strings['Relay'] = 'Ath-sheachadan'; $a->strings['You can\'t block a local contact, please block the user instead'] = 'Chan urrainn dhut neach-aithne ionadail a bhacadh, bac an cleachdaiche ’na àite'; $a->strings['%s contact unblocked'] = [ @@ -1206,7 +1999,6 @@ $a->strings['This page allows you to prevent any message from a remote contact t $a->strings['Block Remote Contact'] = 'Bac an neach-aithne cèin'; $a->strings['select all'] = 'tagh a h-uile'; $a->strings['select none'] = 'na tagh gin'; -$a->strings['Unblock'] = 'Dì-bhac'; $a->strings['No remote contact is blocked from this node.'] = 'Cha deach neach-aithne cèin a bhacadh on nòd seo.'; $a->strings['Blocked Remote Contacts'] = 'Luchd-aithne cèin air am bacadh'; $a->strings['Block New Remote Contact'] = 'Bac neach-aithne cèin ùr'; @@ -1291,7 +2083,6 @@ $a->strings['Imports patterns from the file that weren\'t already existing in th $a->strings['Replace'] = 'Cuir ’na àite'; $a->strings['Replaces the current blocklist by the imported patterns.'] = 'Cuiridh seo na pàtranan air an ion-phortadh an àite na liosta-bacaidh làithrich.'; $a->strings['Blocked server domain pattern'] = 'Pàtran àrainne fhrithealaichean a chaidh a bhacadh'; -$a->strings['Reason for the block'] = 'Adhbhar a’ bhacaidh'; $a->strings['Delete server domain pattern'] = 'Sguab às am pàtran àrainne fhrithealaichean'; $a->strings['Check to delete this entry from the blocklist'] = 'Cuir cromag ris a sguabadh às an nì seo on liosta-bhacaidh'; $a->strings['Server Domain Pattern Blocklist'] = 'Liosta-bhacaidh le pàtrain àrainne fhrithealaichean'; @@ -1303,42 +2094,12 @@ $a->strings['Save changes to the blocklist'] = 'Sàbhail na h-atharraichean air $a->strings['Current Entries in the Blocklist'] = 'Na nithean làithreach air an liosta-bhacaidh'; $a->strings['Delete entry from the blocklist'] = 'Sguab às an nì on liosta-bhacaidh'; $a->strings['Delete entry from the blocklist?'] = 'A bheil thu airson an nì seo a sguabadh às on liosta-bhacaidh?'; -$a->strings['Update has been marked successful'] = 'Chaidh comharrachadh gun do soirbhich leis an ùrachadh'; -$a->strings['Database structure update %s was successfully applied.'] = 'Chaidh ùrachadh %s air structar an stòir-dhàta a chur an sàs.'; -$a->strings['Executing of database structure update %s failed with error: %s'] = 'Dh’fhàillig an t-ùrachadh %s air structar an stòir-dhàta leis a’ mhearachd seo: %s'; -$a->strings['Executing %s failed with error: %s'] = 'Dh’fhàillig gnìomhachadh %s leis a’ chòd mhearachd seo: %s'; -$a->strings['Update %s was successfully applied.'] = 'Chaidh ùrachadh %s a chur an sàs.'; -$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'Cha do thill an t-ùrachadh %s staid. Chan eil fhios an do shoirbhich leis gus nach do shoirbhich.'; -$a->strings['There was no additional update function %s that needed to be called.'] = 'Cha robh foincsean ùrachaidh %s eile feumach air gairm ann.'; -$a->strings['No failed updates.'] = 'Cha do dh’fhàillig le ùrachadh sam bith.'; -$a->strings['Check database structure'] = 'Thoir sùil air structar an stòir-dhàta'; -$a->strings['Failed Updates'] = 'Na dh’ùrachaidhean a dh’fhàillig leotha'; -$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Cha ghabh seo a-staigh na h-ùrachaidhean ro 1139 nach do thilleadh staid.'; -$a->strings['Mark success (if update was manually applied)'] = 'Cuir comharra gun do shoirbhich leis (ma rinn thu an t-ùrachadh a làimh)'; -$a->strings['Attempt to execute this update step automatically'] = 'Feuch gnìomhachadh a’ cheuma seo dhen ùrachadh gu fèin-obrachail'; -$a->strings['Lock feature %s'] = 'Glais gleus %s'; -$a->strings['Manage Additional Features'] = 'Stiùir na gleusan a bharrachd'; -$a->strings['Other'] = 'Eile'; -$a->strings['unknown'] = 'chan eil fhios'; -$a->strings['%s total systems'] = 'Siostaman gu h-iomlan: %s'; -$a->strings['%s active users last month'] = 'Cleachdaichean gnìomhach sa mhìos seo chaidh: %s'; -$a->strings['%s active users last six months'] = 'Cleachdaichean gnìomhach san leth-bhliadhna seo chaidh: %s'; -$a->strings['%s registered users'] = 'Cleachdaichean clàraichte: %s'; -$a->strings['%s locally created posts and comments'] = 'Postaichean is beachdan a chaidh a chruthachadh gu h-ionadail: %s'; -$a->strings['%s posts per user'] = 'Postaichean gach cleachdaiche: %s'; -$a->strings['%s users per system'] = 'Cleachdaichean gach siostaim: %s'; -$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.'] = 'Bheir an duilleag seo àireamhan dhut mun chuid dhen lìonra shòisealta cho-naisgte sa bheil an nòd seo dhe Friendica. Chan eil na h-àireamhan seo coileanta is cha sheall iad ach a’ phàirt dhen lìonra air a bheil an nòd agad eòlach.'; -$a->strings['Federation Statistics'] = 'Stadastaireachd a’ cho-nasgaidh'; -$a->strings['Currently this node is aware of %s nodes (%s active users last month, %s active users last six months, %s registered users in total) from the following platforms:'] = 'Tha an nòd seo eòlach air %s nòd(an) aig an àm seo (cleachdaichean gnìomhach sa mhìos seo chaidh: %s, cleachdaichean gnìomhach san leth-bhliadhna seo chaidh: %s, cleachdaichean clàraichte: %s gu h-iomlan) o na h-ùrlaran a leanas:'; $a->strings['Item marked for deletion.'] = 'Chaidh an nì a chomharrachadh a chùm sguabaidh às.'; -$a->strings['Delete Item'] = 'Sguab às an nì'; $a->strings['Delete this Item'] = 'Sguab às an nì seo'; $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.'] = 'Air an duilleag seo, ’s urrainn dhut nì a sguabadh às on nòd agad. Mas e post ciad ìre a tha san nì, thèid an snàithlean gu lèir a sguabadh às.'; $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.'] = 'Feumaidh tu a bhith eòlach air GUID an nì. Gheibh thu lorg air m. e. a’ coimhead air URL an t-seallaidh. ’S e a’ phàirt mu dheireadh aig http://example.com/display/123456 a sa san GUID, ’s e 123456 a th’ ann an-seo.'; $a->strings['GUID'] = 'GUID'; $a->strings['The GUID of the item you want to delete.'] = 'GUID an nì a tha thu airson sguabadh às.'; -$a->strings['Item Source'] = 'Tùs an nì'; -$a->strings['Item Guid'] = 'GUID an nì'; $a->strings['Item Id'] = 'ID an nì'; $a->strings['Item URI'] = 'URI an nì'; $a->strings['Terms'] = 'Briathran'; @@ -1348,205 +2109,342 @@ $a->strings['Term'] = 'Briathar'; $a->strings['URL'] = 'URL'; $a->strings['Mention'] = 'Iomradh'; $a->strings['Implicit Mention'] = 'Iomradh fillte'; -$a->strings['The logfile \'%s\' is not writable. No logging possible'] = 'Cha ghabh sgrìobhadh ann am faidhle “%s” an loga. Cha ghabh logadh a dhèanamh'; -$a->strings['PHP log currently enabled.'] = 'Tha logadh PHP an comas an-dràsta.'; -$a->strings['PHP log currently disabled.'] = 'Tha logadh PHP à comas an-dràsta.'; -$a->strings['Logs'] = 'Logaichean'; -$a->strings['Clear'] = 'Falamhaich'; -$a->strings['Enable Debugging'] = 'Cuir dì-bhugachadh an comas'; -$a->strings['Log file'] = 'Faidhle an loga'; -$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Feumaidh cead sgrìobhaidh a bhith aig an fhrithealaiche-lìn. Dàimheach ri prìomh-pasgan Friendica.'; -$a->strings['Log level'] = 'Leibheil an loga'; -$a->strings['PHP logging'] = 'Logadh PHP'; -$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.'] = 'Airson logadh nam mearachdan is rabhaidhean PHP a chur an comas gu sealach, ’s urrainn dhut na leanas a chur air thoiseach faidhle index.php an stàlaidh agad. Tha ainm an fhaidhle a tha ’ga shuidheachadh air an loidhne \'error_log\' dàimheach ri prìomh-phasgan Friendica agus feumaidh cead sgrìobhaidh a bhith aig an fhrithealaiche-lìn ann. Cuiridh tu \'log_errors\' (logadh nam mearachdan) agus \'display_errors\' (sealltainn nam mearachdan) an comas leis an roghainn \'1\' agus à comas leis an roghainn \'0\'.'; -$a->strings['Error trying to open %1$s log file.
    Check to see if file %1$s exist and is readable.'] = 'Mearachd a’ feuchainn ri faidhle %1$s an loga fhosgladh.
    Dearbh gu bheil am faidhle %1$s ann is gun gabh a leughadh.'; -$a->strings['Couldn\'t open %1$s log file.
    Check to see if file %1$s is readable.'] = 'Cha b’ urrainn dhinn faidhle %1$s an loga fhosgladh.
    Dearbh gun gabh am faidhle %1$s a leughadh.'; -$a->strings['View Logs'] = 'Seall na logaichean'; -$a->strings['Search in logs'] = 'Lorg sna logaichean'; -$a->strings['Show all'] = 'Seall na h-uile'; -$a->strings['Date'] = 'Ceann-là'; -$a->strings['Level'] = 'Leibheil'; -$a->strings['Context'] = 'Co-theacsa'; -$a->strings['ALL'] = 'NA h-UILE'; -$a->strings['View details'] = 'Seall am mion-fhiosrachadh'; -$a->strings['Click to view details'] = 'Briog air a shealltainn a’ mhion-fhiosrachaidh'; -$a->strings['Data'] = 'Dàta'; -$a->strings['Source'] = 'Tùs'; -$a->strings['File'] = 'Faidhle'; -$a->strings['Line'] = 'Loidhne'; -$a->strings['Function'] = 'Foincsean'; -$a->strings['UID'] = 'UID'; -$a->strings['Process ID'] = 'ID a’ phròiseis'; -$a->strings['Close'] = 'Dùin'; -$a->strings['Inspect Deferred Worker Queue'] = 'Sgrùd ciutha nan obraichean dàilichte'; -$a->strings['This page lists the deferred worker jobs. This are jobs that couldn\'t be executed at the first time.'] = 'Gheibh thu liosta nan obraichean dàilichte air an duilleag seo. Cha b’ urrainn dhuinn na h-obraichean seo a dhèanamh sa chiad uair.'; -$a->strings['Inspect Worker Queue'] = 'Sgrùd ciutha nan obraichean'; -$a->strings['This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you\'ve set up during install.'] = 'Gheibh thu liosta nan obraichean a tha sa chiutha an-dràsta air an duilleag seo. Thèid na h-obraichean seo a làimhseachadh leis a’ cronjob a shuidhich thu rè an stàlaidh.'; -$a->strings['ID'] = 'ID'; -$a->strings['Command'] = 'Àithne'; -$a->strings['Job Parameters'] = 'Paramadairean na h-obrach'; -$a->strings['Priority'] = 'Prìomhachas'; -$a->strings['No special theme for mobile devices'] = 'Chan eil ùrlar sònraichte do dh’uidheaman mobile ann'; -$a->strings['%s - (Experimental)'] = '%s – (deuchainneil)'; -$a->strings['No community page for local users'] = 'Chan eil duilleag coimhearsnachd do chleachdaichean ionadail ann'; -$a->strings['No community page'] = 'Gun duilleag coimhearsnachd'; -$a->strings['Public postings from users of this site'] = 'Postaichean poblach nan cleachdaichean air an làrach seo'; -$a->strings['Public postings from the federated network'] = 'Postaichean poblach on lìonra cho-naisgte'; -$a->strings['Public postings from local users and the federated network'] = 'Postaichean poblach nan cleachdaichean ionadail ’s on lìonra cho-naisgte'; -$a->strings['Multi user instance'] = 'Ionstans ioma-chleachdaiche'; -$a->strings['Closed'] = 'Dùinte'; -$a->strings['Requires approval'] = 'Tha feum air aontachadh'; -$a->strings['Open'] = 'Fosgailte'; -$a->strings['No SSL policy, links will track page SSL state'] = 'Gun phoileasaidh SSL, nì ceanglaichean tracadh air staid SSL na duilleige'; -$a->strings['Force all links to use SSL'] = 'Èignich gun chleachd a h-uile ceangal SSL'; -$a->strings['Self-signed certificate, use SSL for local links only (discouraged)'] = 'Teisteanas air fhèin-shoidhneadh, cleachd SSL do cheanglaichean ionadail a-mhàin (cha mholamaid seo)'; -$a->strings['Don\'t check'] = 'Na cuir sùil'; -$a->strings['check the stable version'] = 'cuir sùil air na tionndadh seasmhach'; -$a->strings['check the development version'] = 'cuir sùil air na tionndadh leasachaidh'; -$a->strings['none'] = 'chan eil gin'; -$a->strings['Local contacts'] = 'Luchd-aithne an ionadail'; -$a->strings['Site'] = 'Làrach'; -$a->strings['General Information'] = 'Fiosrachadh coitcheann'; -$a->strings['Republish users to directory'] = 'Ath-fhoillsich na cleachdaichean dhan eòlaire'; -$a->strings['Registration'] = 'Clàradh'; -$a->strings['File upload'] = 'Luchdadh suas fhaidhlichean'; -$a->strings['Policies'] = 'Poileasaidhean'; -$a->strings['Auto Discovered Contact Directory'] = 'Eòlaire an luchd-aithne a chaidh a lorg gu fèin-obrachail'; -$a->strings['Performance'] = 'Dèanadas'; -$a->strings['Worker'] = 'Obraiche'; -$a->strings['Message Relay'] = 'Ath-sheachadan theachdaireachdan'; -$a->strings['Use the command "console relay" in the command line to add or remove relays.'] = 'Cleachd an àithne “console relay” air an loidhne-àithne a chur ris no a thoirt air falbh ath-sheachadain.'; -$a->strings['The system is not subscribed to any relays at the moment.'] = 'Cha do rinn an siostam fo-sgrìobhadh air ath-sheachadan sam bith aig an àm seo.'; -$a->strings['The system is currently subscribed to the following relays:'] = 'Tha an siostam a’ fo-sgrìobhadh dha na h-ath-sheachadain seo:'; -$a->strings['Relocate Node'] = 'Imrich an nòd'; -$a->strings['Relocating your node enables you to change the DNS domain of this node and keep all the existing users and posts. This process takes a while and can only be started from the relocate console command like this:'] = 'Le imrich an nòd, ’s urrainn dhut àrainn DNS an nòid seo atharrachadh agus na cleachdaichean is postaichean uile a chumail. Bheir am pròiseas seo greis mhath is cha ghabh a thòiseachadh ach le àithne imrich na consoil mar seo:'; -$a->strings['(Friendica directory)# bin/console relocate https://newdomain.com'] = '(Pasgan Friendica)# bin/console relocate https://àrainn-ùr.com'; -$a->strings['Site name'] = 'Ainm na làraich'; -$a->strings['Sender Email'] = 'Post-d an t-seòladair'; -$a->strings['The email address your server shall use to send notification emails from.'] = 'An seòladh puist-d a chleachdas am frithealaiche airson brathan puist-d a chur uaithe.'; -$a->strings['Name of the system actor'] = 'Ainm actar an t-siostaim'; -$a->strings['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.'] = 'Ainm cunntas inntearnail an fhrithealaiche a thèid a chleachdadh airson iarrtasan ActivityPub. Feumaidh seo a bhith ’na ainm-chleachdaiche gun chleachdadh. Nuair a bhios seo air a shuidheachadh, gha ghabh atharrachadh a-rithist.'; -$a->strings['Banner/Logo'] = 'Bratach/Suaicheantas'; -$a->strings['Email Banner/Logo'] = 'Bratach/Suaicheantas puist-d'; -$a->strings['Shortcut icon'] = 'Ìomhaigheag na h-ath-ghoirid'; -$a->strings['Link to an icon that will be used for browsers.'] = 'Ceangal gu ìomhaigheag a thèid a chleachdadh le brabhsairean.'; -$a->strings['Touch icon'] = 'Ìomhaigheag suathaidh'; -$a->strings['Link to an icon that will be used for tablets and mobiles.'] = 'Ceangal gu ìomhaigheag a thèid a chleachdadh airson tablaidean is fònaichean-làimhe.'; -$a->strings['Additional Info'] = 'Barrachd fiosrachaidh'; -$a->strings['For public servers: you can add additional information here that will be listed at %s/servers.'] = 'Airson frithealaichean poblach: ’s urrainn dhut barrachd fiosrachaidh a chur ris an-seo a nochdas air %s/servers.'; -$a->strings['System language'] = 'Cànan an t-siostaim'; -$a->strings['System theme'] = 'Ùrlar an t-siostaim'; -$a->strings['Default system theme - may be over-ridden by user profiles - Change default theme settings'] = 'Ùrlar bunaiteach an t-siostaim – gabhaidh a thar-àithneadh le pròifilean cleachdaiche – Atharraich roghainnean an ùrlair bhunaitich'; -$a->strings['Mobile system theme'] = 'Ùrlar mobile an t-siostaim'; -$a->strings['Theme for mobile devices'] = 'An t-ùrlar do dh’uidheaman mobile'; -$a->strings['SSL link policy'] = 'Poileasaidh SSL nan ceanglaichean'; -$a->strings['Determines whether generated links should be forced to use SSL'] = 'Suidhichidh seo an dèid SSL a sparradh air ceanglaichean a thèid a ghintinn gus nach dèid'; -$a->strings['Force SSL'] = 'Spàrr SSL'; -$a->strings['Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'] = 'Spàrr SSL air a h-uile iarrtas gun SSL – An aire: dh’fhaoidte gun adhbharaich seo lùban gun chrìoch air cuid a shiostaman.'; -$a->strings['Show help entry from navigation menu'] = 'Seall nì na cobharach ann an clàr-taice na seòladaireachd'; -$a->strings['Displays the menu entry for the Help pages from the navigation menu. It is always accessible by calling /help directly.'] = 'Seallaidh an nì airson duilleagan na cobharach ann an clàr-taice na seòladaireachd. Gabhaidh inntrigeadh le gairm /help gu dìreach an-còmhnaidh.'; -$a->strings['Single user instance'] = 'Ionstans aon-chleachdaiche'; -$a->strings['Make this instance multi-user or single-user for the named user'] = 'Dèan ionstans ioma-chleachdaiche no aon-chleachdaiche dhan chleachdaiche ainmichte dhen ionstans seo'; -$a->strings['Maximum image size'] = 'Meud as motha nan dealbhan'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'Am meud as motha ann am baidht do dhealbhan a thèid a luchdadh suas. Is 0 a’ bhun-roghainn, ’s e sin gun chrìoch.'; -$a->strings['Maximum image length'] = 'Faide as motha nan dealbhan'; -$a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'An fhaide as motha ann am piogsail aig an taobh as fhaide do dhealbhan a thèid a luchdadh suas. Is -1 a’ bhun-roghainn, ’s e sin gun chrìoch.'; -$a->strings['JPEG image quality'] = 'Càileachd deilbh JPEG'; -$a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = 'Thèid dealbhan a’ sàbhaladh leis a’ chàileachd JPEG seo às dèidh an luchdadh suas [0-100]. Is 100 a’ bhun-roghainn, ’s e sin a’ chàileachd shlàn.'; -$a->strings['Register policy'] = 'Poileasaidh clàraidh'; -$a->strings['Maximum Daily Registrations'] = 'An àireamh as motha de chlàraidhean gach latha'; -$a->strings['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.'] = 'Ma tha an clàradh ceadaichte gu h-àrd, suidhichidh seo an àireamh as motha de chlàraidhean chleachdaichean ùra gach latha. Ma tha an clàradh dùinte, cha doir an roghainn seo buaidh.'; -$a->strings['Register text'] = 'Teacsa a’ chlàraidh'; -$a->strings['Will be displayed prominently on the registration page. You can use BBCode here.'] = 'Thèid a shealltainn gu follaiseach air duilleag a’ chlàraidh. ’S urrainn dhut BBCode a chleachdadh an-seo.'; -$a->strings['Forbidden Nicknames'] = 'Far-ainmean toirmisgte'; -$a->strings['Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142.'] = 'Liosta sgaraichte le cromagan de dh’fhar-ainmean nach fhaod clàradh. Tha liosta de dh’ainmean dreuchdan a-rèir RFC 2142 ro-shocraichte.'; -$a->strings['Accounts abandoned after x days'] = 'Cunntasan air an trèigsinn às dèidh x là'; -$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = 'Cha chaith seo goireasan an t-siostam le ceasnachadh làraichean air an taobh a-muigh airson cunntasan air an trèigsinn. Cuir a-steach 0 airson cunntasan gun chrìoch ùine.'; -$a->strings['Allowed friend domains'] = 'Àrainnean ceadaichte do chàirdeasan'; -$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Liosta sgaraichte le cromagan de dh’àrainnean a dh’fhaodas càirdeasan a stèidheachadh leis an làrach seo. Gabhaidh seo ri saoragan. Fàg bàn airson a h-uile àrainn a cheadachadh'; -$a->strings['Allowed email domains'] = 'Àrainnean puist-d ceadaichte'; -$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Liosta sgaraichte le cromagan de dh’àrainnean a tha ceadaichte ann am puist-d airson clàradh leis an làrach seo. Gabhaidh seo ri saoragan. Fàg bàn airson a h-uile àrainn a cheadachadh'; -$a->strings['No OEmbed rich content'] = 'Gun susbaint OEmbed bheartach'; -$a->strings['Don\'t show the rich content (e.g. embedded PDF), except from the domains listed below.'] = 'Na seall susbaint bheartach (m. e. PDF leabaichte) ach o na h-àrainnean air an liosta gu h-ìosal.'; -$a->strings['Trusted third-party domains'] = 'Àrainnean threas-phàrtaidhea earbsach'; -$a->strings['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.'] = 'Liosta sgaraichte le cromagan de dh’àrainnean on a dh’fhaodar susbaint a leabachadh am broinn phostaichean le OEmbed. Thèid cead a thoirt dhan a h-uile fo-àrainn dhe na h-àrainnean air an liosta cuideachd.'; -$a->strings['Block public'] = 'Bac inntrigeadh poblach'; -$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Cuir cromag ris a bhacadh inntrigeadh poblach air a h-uile duilleag phearsanta a bhiodh poblach air an làrach seo ach dhan fheadhainn a bhios air a clàradh a-staigh.'; -$a->strings['Force publish'] = 'Spàrr foillseachadh'; -$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Cuir cromag ris a sparradh air a h-uile pròifil air an làrach seo gun nochd iad ann an eòlaire na làraich.'; -$a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Ma chuireas tu seo an comas, dh’fhaoidte gum bris thu laghan mar an GDPR'; -$a->strings['Global directory URL'] = 'URL an eòlaire cho-naisgte'; -$a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'URL dhan eòlaire cho-naisgte. Mura deach seo a shuidheachadh, cha bhi an t-eòlaire uile-choitcheann ri fhaighinn idir dhan aplacaid.'; -$a->strings['Private posts by default for new users'] = 'Postaichean prìobhaideach ’na bhun-roghainn do chleachdaichean ùra'; -$a->strings['Set default post permissions for all new members to the default privacy group rather than public.'] = 'Suidhichidh seo ceadan phostaichean nam ball ùra air a’ bhuidheann phrìobhaideach gu bunaiteach seach air a’ bhuidheann phoblach.'; -$a->strings['Don\'t include post content in email notifications'] = 'Na gabh a-staigh susbaint nam post ann am brathan puist-d'; -$a->strings['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.'] = 'Na gabh a-staigh susbaint puist/beachd/teachdaireachd prìobhaidich/msaa. sna brathan puist-d a thèid a chur on làrach seo, a chùm prìobhaideachd.'; -$a->strings['Disallow public access to addons listed in the apps menu.'] = 'Na ceadaich inntrigeadh poblach dha na tuilleadain a tha air an liosta ann an clàr-taice nan aplacaidean.'; -$a->strings['Checking this box will restrict addons listed in the apps menu to members only.'] = 'Ma tha cromag sa bhogsa seo, bidh an t-inntrigeadh air na tuilleadain a chithear ann an clàr-taice nan aplacaidean cuingichte air na buill a-mhàin.'; -$a->strings['Don\'t embed private images in posts'] = 'Na leabaich dealbhan prìobhaideach ann am postaichean'; -$a->strings['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.'] = 'Na cuir lethbhreac leabaichte dhen dealbh an àite dhealbhan prìobhaideach ann am postaichean a tha ’gan òstadh gu h-ionadail. Is ciall dha seo gum feum an luchd-aithne a gheibh postaichean sa bheil dealbhan prìobhaideach ùghdarrachadh is gach dealbh a luchdadh fa leth agus dh’fhaoidte gun doir sin greis.'; -$a->strings['Explicit Content'] = 'Susbaint inbheach'; -$a->strings['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.'] = 'Suidhich seo a dh’innse gu bheil an nòd agad ’ga chleachdadh airson susbaint inbheach gu h-àraidh is nach eil e iomchaidh do mhion-aoisich ’s dòcha. Thèid am fiosrachadh seo fhoillseachadh ann am fiosrachadh an nòid agus gabhaidh a chleachdadh m.e. leis an eòlaire cho-naisgte airson an nòd agad a chriathradh air falbh o liosta nan nòdan a chùm ballrachd ùir. A bharrachd air sin, thèid nòta a shealltainn aig duilleag clàradh nan cleachdaichean.'; -$a->strings['Proxify external content'] = 'Susbaint chèin tro phrogsaidh'; -$a->strings['Route external content via the proxy functionality. This is used for example for some OEmbed accesses and in some other rare cases.'] = 'Rùtaich susbaint chèin le gleus a’ phrogsaidh. Tha seo ’ga chleachdadh, mar eisimpleir, airson cuid dhen inntrigeadh OEmbed agus ann an suidheachaidhean ainneamh eile.'; -$a->strings['Cache contact avatars'] = 'Cuir avataran an luchd-aithne dhan tasgadan'; -$a->strings['Locally store the avatar pictures of the contacts. This uses a lot of storage space but it increases the performance.'] = 'Stòr dealbhan avatar an luchd-aithne gu h-ionadail. Cleachdaidh seo tòrr àite san stòras ach cuiridh e ris an dèanadas.'; -$a->strings['Allow Users to set remote_self'] = 'Leig le cleachdaichean remote_self a shuidheachadh'; -$a->strings['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.'] = 'Ma chuireas tu cromag ris, faodaidh gach cleachdaiche neach-aithne sam bith a chomharrachadh mar remote_self ann an còmhradh càradh an luchd-aithne. Nuair a thèid a’ bhratach seo a chur ri neach-aithne, thèid a h-uile post an neach-aithne sin sgàthanachadh ann an sruth a’ chlechdaiche.'; -$a->strings['Enable multiple registrations'] = 'Cuir clàradh iomadach an comas'; -$a->strings['Enable users to register additional accounts for use as pages.'] = 'Bheir seo an comas dha na cleachdaichean gun clàraich iad cunntasan a bharrachd airson an cleachdadh ’nan duilleagan.'; -$a->strings['Enable OpenID'] = 'Cuir OpenID an comas'; -$a->strings['Enable OpenID support for registration and logins.'] = 'Cuir an comas taic dha OpenID airson clàradh is clàradh a-steach.'; -$a->strings['Enable Fullname check'] = 'Cuir an comas dearbhadh ainm shlàin'; -$a->strings['Enable check to only allow users to register with a space between the first name and the last name in their full name.'] = 'Cuid an comas an dearbhadh nach leig le cleachdaichean clàradh ach le beàrn eadar ainm is sloinneadh an ainm shlàin.'; -$a->strings['Community pages for visitors'] = 'Duilleagan coimhearsnachd do dh’aoighean'; -$a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = 'Dè na duilleagan coimhearsnachd a chì aoighean. Chì na cleachdaichean ionadail an dà dhuilleag an-còmhnaidh.'; -$a->strings['Posts per user on community page'] = 'Postaichean gach cleachdaiche air duilleag na coimhearsnachd'; -$a->strings['The maximum number of posts per user on the community page. (Not valid for "Global Community")'] = 'An àireamh as motha de phostaichean aig gach cleachdaiche air duilleag na coimhearsnachd. (Chan eil seo dligheach dhan “Choimhearsnachd cho-naisgte”)'; -$a->strings['Maximum system load before delivery and poll processes are deferred - default %d.'] = 'Eallach as motha air an t-siostam mus dèid dàil a chur air an lìbhrigeadh is air pròiseasadh cunbhalach – ’s e %d a tha sa bhun-roghainn.'; -$a->strings['Periodically optimize tables like the cache and the workerqueue'] = 'Pisich clàran mar an tasgadan is an ciutha-obrach gu cunbhalach'; -$a->strings['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.'] = 'Lorg san eòlaire ionadail seach san eòlaire cho-naisgte. Nuair a nì thu lorg gu h-ionadail, thèid gach lorg a ghnìomhachadh san eòlaire cho-naisgte sa chùlaibh. Cuiridh seo piseach air na toraidhean luirg nuair a nithear an t-aon lorg a-rithist.'; -$a->strings['Remove old remote items, orphaned database records and old content from some other helper tables.'] = 'Thoir air falbh nithean cèine, reacordan stòir-dhàta a tha ’nan dìlleachdanan agus seann-susbaint eile o chuid a chlàran-taice eile.'; -$a->strings['Posts from %s can\'t be shared'] = 'Cha ghabh postaichean o %s a co-roinneadh'; -$a->strings['Posts from %s can\'t be unshared'] = 'Cha ghabh sgur de cho-roinneadh phostaichean o %s'; -$a->strings['Inspect Deferred Workers'] = 'Sgrùd na h-obraichean dàilichte'; -$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Ràinig thu a’ chrìoch de %d phost gach latha. Chaidh am post a dhiùltadh.', - 1 => 'Ràinig thu a’ chrìoch de %d phost gach latha. Chaidh am post a dhiùltadh.', - 2 => 'Ràinig thu a’ chrìoch de %d postaichean gach latha. Chaidh am post a dhiùltadh.', - 3 => 'Ràinig thu a’ chrìoch de %d post gach latha. Chaidh am post a dhiùltadh.', +$a->strings['Item not found'] = 'Cha deach an nì a lorg'; +$a->strings['No source recorded'] = 'Cha deach tùs a chlàradh'; +$a->strings['Please make sure the debug.store_source config key is set in config/local.config.php for future items to have sources.'] = 'Dèan cinnteach gun deach iuchair rèiteachaidh debug.store_source a shuidheachadh ann an config/local.config.php ach am bi tùsan aig na nithean ri teachd.'; +$a->strings['Item Guid'] = 'GUID an nì'; +$a->strings['Contact not found or their server is already blocked on this node.'] = 'Cha deach an neach-aithne a lorg no chaidh am frithealaiche aca a bhacadh air an nòd seo mu thràth.'; +$a->strings['Please login to access this page.'] = 'Clàraich a-steach airson an duilleag seo inntrigeadh.'; +$a->strings['Create Moderation Report'] = 'Cruthaich gearan maorsainneachd'; +$a->strings['Pick Contact'] = 'Tagh neach-aithne'; +$a->strings['Please enter below the contact address or profile URL you would like to create a moderation report about.'] = 'Cuir a-steach seòladh no URL pròifil neach-aithne gu h-ìosal airson gearan maorsainneachd a chruthachadh mu dhèidhinn.'; +$a->strings['Contact address/URL'] = 'Seòladh/URL an neach-aithne'; +$a->strings['Pick Category'] = 'Tagh roinn-seòrsa'; +$a->strings['Please pick below the category of your report.'] = 'Tagh roinn-seòrsa a’ ghearain agad.'; +$a->strings['Spam'] = 'Spama'; +$a->strings['This contact is publishing many repeated/overly long posts/replies or advertising their product/websites in otherwise irrelevant conversations.'] = 'Tha an neach-aithne seo a’ foillseachadh iomadh post/freagairt a tha ro fhada no ’gam foillseachadh a-rithist ’s a-rithist no tha e a’ dèanamh sanasachd air a’ bhathar/làrach-lìn aca nach eil buntainneachd dha na còmhraidhean.'; +$a->strings['Illegal Content'] = 'Susbaint mhì-laghail'; +$a->strings['This contact is publishing content that is considered illegal in this node\'s hosting juridiction.'] = 'Tha an neach-aithne seo a’ foillseachadh susbaint a thathar a’ meas gu bheil e mì-laghail san uachdranas far a bheil an nòd ’ga òstadh.'; +$a->strings['Community Safety'] = 'Sàbhailteachd na coimhearsnachd'; +$a->strings['This contact aggravated you or other people, by being provocative or insensitive, intentionally or not. This includes disclosing people\'s private information (doxxing), posting threats or offensive pictures in posts or replies.'] = 'Bhuair an neach-aithne seo thu no daoine eile on a tha e dìorrasach no neo-mhothachail ge b’ e a bheil e mar sin a dh’aona-ghnothaich no gun iarraidh. Gabhaidh seo a-staigh foillseachadh fiosrachadh prìobhaideach càich (doxxing), postadh bhagairtean no dealbhan frionasach ann am postaichean is freagairtean.'; +$a->strings['Unwanted Content/Behavior'] = 'Susbaint/Giùlan gun iarraidh'; +$a->strings['This contact has repeatedly published content irrelevant to the node\'s theme or is openly criticizing the node\'s administration/moderation without directly engaging with the relevant people for example or repeatedly nitpicking on a sensitive topic.'] = 'Dh’fhoillsich an neach-aithne seo iomadh susbaint nach eil buntainneach do chuspair an nòid no a tha a’ càineadh rianachd/maorsainneachd an nòid gu fosgailte gun a bhith a’ bruidhinn ris na daoine iomchaidh fhèin, mar eisimpleir, no a tha rag-fhoghlamach mu chuspair frionasach.'; +$a->strings['Rules Violation'] = 'Briseadh riaghailt'; +$a->strings['This contact violated one or more rules of this node. You will be able to pick which one(s) in the next step.'] = 'Bris an neach-aithne seo riaghailt no dhà dhen nòd seo. ’S urrainn dhut na riaghailtean a chaidh a bhriseadh a thaghadh san ath-cheum.'; +$a->strings['Please elaborate below why you submitted this report. The more details you provide, the better your report can be handled.'] = 'Innis dhuinn carson a chuir thu a-null an gearan seo. Mar as mionaidiche am fiosrachadh a bheir thu dhuinn ’s ann as fhasa a bhios e dhuinn dèiligeadh ris a’ ghearan agad.'; +$a->strings['Additional Information'] = 'Barrachd fiosrachaidh'; +$a->strings['Please provide any additional information relevant to this particular report. You will be able to attach posts by this contact in the next step, but any context is welcome.'] = 'Thoir barrachd fiosrachaidh dhuinn a tha buntainneach dhan ghearan shònraichte seo. ’S urrainn dhut postaichean leis an neach-aithne seo a cheangal ris san ath-cheum ach cuiridh sinn fàilte do cho-theacsa sam bith.'; +$a->strings['Pick Rules'] = 'Tagh riaghailtean'; +$a->strings['Please pick below the node rules you believe this contact violated.'] = 'Tagh riaghailtean an nòid gu h-ìosal a shaoileas tu gun deach am briseadh leis an neach-aithne seo.'; +$a->strings['Pick Posts'] = 'Tagh postaichean'; +$a->strings['Please optionally pick posts to attach to your report.'] = 'Ma thogras tu, tagh postaichean ri cheangal ris a’ ghearan agad.'; +$a->strings['Submit Report'] = 'Cuir an gearan a-null'; +$a->strings['Further Action'] = 'Gnìomhan eile'; +$a->strings['You can also perform one of the following action on the contact you reported:'] = '’S urrainn dhut fear de na gnìomhan seo a ghabhail cuideachd air an neach-aithne a rinn thu gearan air:'; +$a->strings['Nothing'] = 'Na dèan dad'; +$a->strings['Collapse contact'] = 'Co-theannaich an neach-aithne'; +$a->strings['Their posts and replies will keep appearing in your Network page but their content will be collapsed by default.'] = 'Nochdaidh na postaichean ’s freagairtean air duilleag an lìonraidh agad fhathast ach bidh an t-susbaint aca co-theannaichte a ghnàth.'; +$a->strings['Their posts won\'t appear in your Network page anymore, but their replies can appear in forum threads. They still can follow you.'] = 'Cha nochd na postaichean ’s freagairtean air duilleag an lìonraidh agad tuilleadh ach dh’fhaoidte gun nochd na freagairtean aca ann an snàithleanan fòraim. Faodaidh iad do leantainn fhathast.'; +$a->strings['Block contact'] = 'Bac an neach-aithne'; +$a->strings['Their posts won\'t appear in your Network page anymore, but their replies can appear in forum threads, with their content collapsed by default. They cannot follow you but still can have access to your public posts by other means.'] = 'Cha nochd na postaichean ’s freagairtean air duilleag an lìonraidh agad tuilleadh ach dh’fhaoidte gun nochd na freagairtean aca ann an snàithleanan fòraim leis an t-susbaint aca co-theannaichte a ghnàth. Chan fhaod iad do leantainn tuilleadh ach dh’fhaoidte gum faigh iad cothrom air na postaichean poblach agad fhathast air dòighean eile.'; +$a->strings['Forward report'] = 'Sìn air adhart an gearan'; +$a->strings['Would you ike to forward this report to the remote server?'] = 'A bheil thu airson an gearan seo a shìneadh air adhart dhan fhrithealaiche chèin?'; +$a->strings['1. Pick a contact'] = '1. Tagh neach-aithne'; +$a->strings['2. Pick a category'] = '2. Tagh roinn-seòrsa'; +$a->strings['2a. Pick rules'] = '2a. Tagh riaghailtean'; +$a->strings['2b. Add comment'] = '2b. Cuir beachd ris'; +$a->strings['3. Pick posts'] = '3. Tagh postaichean'; +$a->strings['Normal Account'] = 'Cunntas àbhaisteach'; +$a->strings['Automatic Follower Account'] = 'Cunntas leantainn fèin-obrachail'; +$a->strings['Public Group Account'] = 'Cunntas buidhinn phoblaich'; +$a->strings['Automatic Friend Account'] = 'Cunntas caraide fèin-obrachail'; +$a->strings['Blog Account'] = 'Cunntas bloga'; +$a->strings['Private Group Account'] = 'Cunntas buidhinn phrìobhaidich'; +$a->strings['Registered users'] = 'Cleachdaichean clàraichte'; +$a->strings['Pending registrations'] = 'Clàraidhean rin dèiligeadh'; +$a->strings['%s user blocked'] = [ + 0 => 'Chaidh %s chleachdaiche a bhacadh', + 1 => 'Chaidh %s chleachdaiche a bhacadh', + 2 => 'Chaidh %s cleachdaichean a bhacadh', + 3 => 'Chaidh %s cleachdaiche a bhacadh', ]; -$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Ràinig thu a’ chrìoch de %d phost gach seachdain. Chaidh am post a dhiùltadh.', - 1 => 'Ràinig thu a’ chrìoch de %d phost gach seachdain. Chaidh am post a dhiùltadh.', - 2 => 'Ràinig thu a’ chrìoch de %d postaichean gach seachdain. Chaidh am post a dhiùltadh.', - 3 => 'Ràinig thu a’ chrìoch de %d post gach seachdain. Chaidh am post a dhiùltadh.', +$a->strings['You can\'t remove yourself'] = 'Chan urrainn dhut thu fhèin a thoirt air falbh'; +$a->strings['%s user deleted'] = [ + 0 => 'Chaidh %s chleachdaiche a sguabadh às', + 1 => 'Chaidh %s chleachdaiche a sguabadh às', + 2 => 'Chaidh %s cleachdaichean a sguabadh às', + 3 => 'Chaidh %s cleachdaiche a sguabadh às', ]; -$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = 'Ràinig thu a’ chrìoch de %d post gach mìos. Chaidh am post a dhiùltadh.'; -$a->strings['Both %s and yourself have publicly interacted with these contacts (follow, comment or likes on public posts).'] = 'Ghabh thu fhèin agus %s gnìomh gu poblach leis an luchd-aithne seo (leantainn, beachd air no gur toigh leibh post poblach).'; -$a->strings['Failed to update contact record.'] = 'Cha b’ urrainn dhuinn clàr an neach-aithne ùrachadh.'; -$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.'] = 'Faigh fiosrachadh mar dhealbhan ro-sheallaidh, tiotal is tàladh o nì an inbhir. ’S urrainn dhut seo a chur an comas mur eil cus teacsa san inbhir. Thèid faclan-luirg a thogail o bhann-cinn nì an inbhir agus am postadh ’nan tagaichean hais.'; -$a->strings['Native reshare'] = 'Co-roinneadh tùsail'; -$a->strings['Replies/likes to your public posts may still be visible'] = 'Dh’fhaoidte gum faicear freagairtean/gur toigh le daoine na postaichean poblach agad fhathast'; -$a->strings['Global Community'] = 'Coimhearsnachd cho-naisgte'; -$a->strings['Starred'] = 'Rionnag'; +$a->strings['User "%s" deleted'] = 'Chaidh an cleachdaiche “%s” a sguabadh às'; +$a->strings['User "%s" blocked'] = 'Chaidh an chleachdaiche “%s” a bhacadh'; +$a->strings['Register date'] = 'Ceann-là a’ chlàraidh'; +$a->strings['Last login'] = 'An clàradh a-steach mu dheireadh'; +$a->strings['Last public item'] = 'An nì poblach mu dheireadh'; +$a->strings['Active Accounts'] = 'Cunntasan gnìomhach'; +$a->strings['User blocked'] = 'Chaidh an cleachdaiche a bhacadh'; +$a->strings['Site admin'] = 'Rianaire na làraich'; +$a->strings['Account expired'] = 'Dh’fhalbh an ùine air a’ chunntas'; +$a->strings['Create a new user'] = 'Cruthaich cleachdaiche ùr'; +$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Thèid na cleachdaichean a thagh thu a sguabadh às!\n\nThèid a h-uile càil a phostaich na cleachdaichean seo air an làrach seo a sguabadh às gu buan!\n\nA bheil thu cinnteach?'; +$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Thèid an cleachdaiche {0} a sguabadh às!\n\nThèid a h-uile càil a phostaich an cleachdaiche seo air an làrach seo a sguabadh às gu buan!\n\nA bheil thu cinnteach?'; +$a->strings['%s user unblocked'] = [ + 0 => 'Chaidh %s chleachdaiche a dhì-bhacadh', + 1 => 'Chaidh %s chleachdaiche a dhì-bhacadh', + 2 => 'Chaidh %s cleachdaichean a dhì-bhacadh', + 3 => 'Chaidh %s cleachdaiche a dhì-bhacadh', +]; +$a->strings['User "%s" unblocked'] = 'Chaidh an cleachdaiche “%s” a dhì-bhacadh'; +$a->strings['Blocked Users'] = 'Cleachdaichean bacte'; +$a->strings['New User'] = 'Cleachdaiche ùr'; +$a->strings['Add User'] = 'Cuir cleachdaiche ris'; +$a->strings['Name of the new user.'] = 'Ainm a’ chleachdaiche ùir.'; +$a->strings['Nickname'] = 'Far-ainm'; +$a->strings['Nickname of the new user.'] = 'Far-ainm a’ chleachdaiche ùir.'; +$a->strings['Email address of the new user.'] = 'Seòladh puist-d a’ chleachdaiche ùir.'; +$a->strings['Users awaiting permanent deletion'] = 'Cleachdaichean a’ feitheamh air sguabadh às buan'; +$a->strings['Permanent deletion'] = 'Sguabadh às buan'; +$a->strings['User waiting for permanent deletion'] = 'Cleachdaiche a’ feitheamh sguabadh às buan'; +$a->strings['%s user approved'] = [ + 0 => 'Fhuair %s chleachdaiche aonta', + 1 => 'Fhuair %s chleachdaiche aonta', + 2 => 'Fhuair %s cleachdaichean aonta', + 3 => 'Fhuair %s cleachdaiche aonta', +]; +$a->strings['%s registration revoked'] = [ + 0 => 'Chaidh %s chlàradh a chùl-ghairm', + 1 => 'Chaidh %s chlàradh a chùl-ghairm', + 2 => 'Chaidh %s clàraidhean a chùl-ghairm', + 3 => 'Chaidh %s clàradh a chùl-ghairm', +]; +$a->strings['Account approved.'] = 'Air aontachadh ris a’ chunntas.'; +$a->strings['Registration revoked'] = 'Chaidh an clàradh a chùl-ghairm'; +$a->strings['User registrations awaiting review'] = 'Clàraichean chleachdaichean a’ feitheamh air lèirmheas'; +$a->strings['Request date'] = 'Cuin a chaidh iarraidh'; +$a->strings['No registrations.'] = 'Chan eil clàradh ann.'; +$a->strings['Note from the user'] = 'Nòta on chleachdaiche'; +$a->strings['Deny'] = 'Diùlt'; +$a->strings['Show Ignored Requests'] = 'Seall na h-iarrtasan a leig thu seachad'; +$a->strings['Hide Ignored Requests'] = 'Falaich na h-iarrtasan a leig thu seachad'; +$a->strings['Notification type:'] = 'Seòrsa a’ bhratha:'; +$a->strings['Suggested by:'] = '’Ga mholadh le:'; +$a->strings['Claims to be known to you: '] = 'A’ tagradh gur aithne dhut e: '; +$a->strings['No'] = 'Chan eil'; +$a->strings['Shall your connection be bidirectional or not?'] = 'A bheil thu airson co-dhàimh a chruthachadh?'; +$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.'] = 'Ma ghabhas tu ri %s ’nad charaid, faodaidh %s fo-sgrìobhadh air na postaichean agad agus gheibh thu na naidheachdan uapa-san cuideachd.'; +$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.'] = 'Ma ghabhas tu ri %s mar fo-sgrìobhadh, faodaidh iad fo-sgrìobhadh air na postaichean agad ach chan fhaigh thu na naidheachdan uapa-san.'; +$a->strings['Friend'] = 'Caraid'; +$a->strings['Subscriber'] = 'Fo-sgrìobhadh'; +$a->strings['No introductions.'] = 'Chan eil cur an aithne ann.'; +$a->strings['No more %s notifications.'] = 'Chan eil brath %s ann tuilleadh.'; +$a->strings['You must be logged in to show this page.'] = 'Feumaidh tu clàradh a-steach mus urrainn dhut an duilleag seo a shealltainn.'; +$a->strings['Network Notifications'] = 'Brathan lìonraidh'; +$a->strings['System Notifications'] = 'Brathan an t-siostaim'; +$a->strings['Personal Notifications'] = 'Brathan pearsanta'; +$a->strings['Home Notifications'] = 'Brathan na dachaighe'; +$a->strings['Show unread'] = 'Seall an fheadhainn gun leughadh'; +$a->strings['{0} requested registration'] = 'Dh’iarr {0} clàradh'; +$a->strings['{0} and %d others requested registration'] = 'Dh’iarr {0} ’s %d eile clàradh'; +$a->strings['Authorize application connection'] = 'Ùghdarraich ceangal aplacaide'; +$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'A bheil thu airson cead a thoirt dhan aplacaid seo airson na postaichean ’s an luchd-aithne agad inntrigeadh agus/no postaichean ùra a chruthachadh às do leth?'; +$a->strings['Unsupported or missing response type'] = 'Seòrsa freagairte gun taic ris no a dhìth'; +$a->strings['Incomplete request data'] = 'Dàta iarrtais neo-choileanta'; +$a->strings['Please copy the following authentication code into your application and close this window: %s'] = 'Cuir lethbhreac dhen chòd dearbhaidh seo san aplacaid agad is dùin an uinneag seo: %s'; +$a->strings['Invalid data or unknown client'] = 'Dàta mì-dhligheach no cliant nach aithne dhuinn'; +$a->strings['Unsupported or missing grant type'] = 'Seòrsa ceadachaidh gun taic ris no a dhìth'; +$a->strings['Resubscribing to OStatus contacts'] = 'A’ fo-sgrìobhadh a-rithist air luchd-aithne OStatus'; +$a->strings['Keep this window open until done.'] = 'Cùm an uinneag seo fosgailte gus am bi e deiseil.'; +$a->strings['✔ Done'] = '✔ Deiseil'; +$a->strings['No OStatus contacts to resubscribe to.'] = 'Chan eil neach-aithne OStatus ann airson fo-sgrìobhadh air a-rithist.'; +$a->strings['Subscribing to contacts'] = 'Fo-sgrìobhadh air luchd-aithne'; +$a->strings['No contact provided.'] = 'Cha deach neach-aithne a thoirt seachad.'; +$a->strings['Couldn\'t fetch information for contact.'] = 'Cha d’ fhuair sinn grèim air an fhiosrachadh conaltraidh.'; +$a->strings['Couldn\'t fetch friends for contact.'] = 'Cha d’ fhuair sinn grèim air caraidean a chùm conaltraidh.'; +$a->strings['Couldn\'t fetch following contacts.'] = 'Cha d’ fhuair sinn grèim air an luchd-aithne a leanas.'; +$a->strings['Couldn\'t fetch remote profile.'] = 'Cha d’ fhuair sinn grèim air a’ phròifil chèin.'; +$a->strings['Unsupported network'] = 'Lìonra ris nach eil taic'; +$a->strings['Done'] = 'Deiseil'; +$a->strings['success'] = 'chaidh leis'; +$a->strings['failed'] = 'dh’fhàillig leis'; +$a->strings['ignored'] = 'chaidh a leigeil seachad'; +$a->strings['Wrong type "%s", expected one of: %s'] = 'Seòrsa “%s” ceàrr, an dùil air fear dhen fheadhainn seo: %s'; +$a->strings['Model not found'] = 'Cha deach am modail a lorg'; +$a->strings['Unlisted'] = 'Falaichte o liostaichean'; +$a->strings['Remote privacy information not available.'] = 'Chan eil fiosrachadh cèin na prìobhaideachd ri làimh.'; +$a->strings['Visible to:'] = 'Ri fhaicinn do:'; +$a->strings['Collection (%s)'] = 'Cruinneachadh (%s)'; +$a->strings['Followers (%s)'] = 'Luchd-leantainn (%s)'; +$a->strings['%d more'] = '%d eile'; +$a->strings['To: %s
    '] = 'Gu: %s
    '; +$a->strings['CC: %s
    '] = 'CC: %s
    '; +$a->strings['BCC: %s
    '] = 'BCC: %s
    '; +$a->strings['Audience: %s
    '] = 'Èisteachd: %s
    '; +$a->strings['Attributed To: %s
    '] = 'Air a chur às leth: %s
    '; +$a->strings['The Photo is not available.'] = 'Chan eil an dealbh ri fhaighinn.'; +$a->strings['The Photo with id %s is not available.'] = 'Chan eil an dealbh air a bheil an id %s ri fhaighinn.'; +$a->strings['Invalid external resource with url %s.'] = 'Goireas mì-dhligheach air an taobh a-muigh leis an url %s.'; +$a->strings['Invalid photo with id %s.'] = 'Dealbh mì-dhligheach air a bheil an id %s.'; +$a->strings['Post not found.'] = 'Cha deach am post a lorg.'; +$a->strings['Edit post'] = 'Deasaich am post'; +$a->strings['web link'] = 'ceangal-lìn'; +$a->strings['Insert video link'] = 'Cuir a-steach ceangal video'; +$a->strings['video link'] = 'ceangal video'; +$a->strings['Insert audio link'] = 'Cuir a-steach ceangal fuaime'; +$a->strings['audio link'] = 'ceangal fuaime'; +$a->strings['Remove Item Tag'] = 'Thoir air falbh taga an nì'; +$a->strings['Select a tag to remove: '] = 'Tagh taga gus a thoirt air falbh: '; +$a->strings['Remove'] = 'Thoir air falbh'; +$a->strings['No contacts.'] = 'Chan eil neach-aithne ann.'; +$a->strings['%s\'s timeline'] = 'An loidhne-ama aig %s'; +$a->strings['%s\'s posts'] = 'Na postaichean aig %s'; +$a->strings['%s\'s comments'] = 'Na beachdan aig %s'; +$a->strings['Image exceeds size limit of %s'] = 'Tha an dealbh nas motha na tha ceadaichte dhe %s'; +$a->strings['Image upload didn\'t complete, please try again'] = 'Cha deach luchdadh suas an deilbh a choileanadh, feuch ris a-rithist'; +$a->strings['Image file is missing'] = 'Tha faidhle an deilbh a dhìth'; +$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Cha ghabh am frithealaiche ri luchdadh suas deilbh ùir aig an àm seo, cuir fios gun rianaire agad'; +$a->strings['Image file is empty.'] = 'Tha faidhle an deilbh falamh.'; +$a->strings['View Album'] = 'Seall an t-albam'; +$a->strings['Profile not found.'] = 'Cha deach a’ phròifil a lorg.'; +$a->strings['You\'re currently viewing your profile as %s Cancel'] = 'Tha thu a’ sealltainn air a’ phròifil agad mar %s Sguir dheth'; +$a->strings['Full Name:'] = 'An t-ainm slàn:'; +$a->strings['Member since:'] = 'Ball o chionn:'; +$a->strings['j F, Y'] = 'j F Y'; +$a->strings['j F'] = 'j F'; +$a->strings['Birthday:'] = 'Co-là breith:'; +$a->strings['Age: '] = 'Aois: '; +$a->strings['%d year old'] = [ + 0 => '%d bhliadhna a dh\'aois', + 1 => '%d bhliadhna a dh’aois', + 2 => '%d bliadhnaichean a dh’aois', + 3 => '%d bliadhna a dh’aois', +]; +$a->strings['Description:'] = 'Tuairisgeul:'; +$a->strings['Groups:'] = 'Buidhnean:'; +$a->strings['View profile as:'] = 'Seall a’ phròifil mar:'; +$a->strings['View as'] = 'Seall mar'; +$a->strings['Profile unavailable.'] = 'Chan eil a’ phròifil ri fhaighinn.'; +$a->strings['Invalid locator'] = 'Lorgaire mì-dhligheach'; +$a->strings['The provided profile link doesn\'t seem to be valid'] = 'Chan eil coltas dligheach air ceangal na pròifil a chaidh a sholar'; +$a->strings['Unable to check your home location.'] = 'Cha b’ urrainn dhuinn sùil a thoir air ionad do dhachaigh.'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Chaidh thu thairis air àireamh nan teachdaireachdan-balla làitheil dha %s. Dh’fhàillig leis an teachdaireachd.'; +$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Nam bu mhiann leat gum freagair %s, dearbh gun ceadaich roghainnean prìobhaideachd na làraich agad puist-d phrìobhaideach o sheòladairean nach aithne dhut.'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Chlàradh na tha ceadaichte de chunntasan ùra air an làrach seo an-diugh. Feuch ris a-rithist a-màireach.'; +$a->strings['Import'] = 'Ion-phortaich'; +$a->strings['Your registration is pending approval by the site owner.'] = 'Tha an clàradh agad a’ feitheamh air aontachadh o shealbhadair na làraich.'; +$a->strings['You must be logged in to use this module.'] = 'Feumaidh tu clàradh a-steach mus urrainn dhut am mòideal seo a chleachdadh.'; +$a->strings['Relocate message has been send to your contacts'] = 'Chaidh teachdaireachd mun imrich a chur dhan luchd-aithne agad'; +$a->strings['Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'] = 'Cunntas do phròifil phearsanta àbhaisteach a dh’iarras aontachadh a làimh air “Caraidean” is “Luchd-leantainn”.'; +$a->strings['Requires manual approval of contact requests.'] = 'Feumaidh tu aontachadh ri iarrtasan luchd-aithne a làimh.'; $a->strings['Your profile will also be published in the global friendica directories (e.g. %s).'] = 'Thèid a’ phròifil agad fhoillseachadh sna h-eòlairean cho-naisgte aig Friendica cuideachd (m.e. %s).'; $a->strings['Allow your profile to be searchable globally?'] = 'An gabh a’ phròifil agad a lorg gu co-naisgte?'; $a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = '’S urrainn dhan luchd-aithne agad postaichean a sgrìobhadh air balla do phròifile. Thèid na postaichean sin a sgaoileadh dhan luchd-aithne agad'; $a->strings['Expire starred posts'] = 'Falbhaidh an ùine air postaichean le rionnag riutha'; $a->strings['Starring posts keeps them from being expired. That behaviour is overwritten by this setting.'] = 'Nuair a bhios rionnag ri post, chan fhalbh an ùine orra. Sgrìobhaidh an roghainn seo thairis air a’ ghiùlan sin.'; +$a->strings['You receive an introduction'] = 'Fhuair thu cur an aithne'; +$a->strings['Your introductions are confirmed'] = 'Chaidh na cuir an aithne agad a dhearbhadh'; $a->strings['Someone liked your content'] = '’S toigh le cuideigin an t-susbaint agad'; $a->strings['Someone shared your content'] = 'Cho-roinn cuideigin an t-susbaint agad'; +$a->strings['Someone commented in a thread where you interacted'] = 'Chuir cuideigin beachd ri snàithlean san do rinn thu co-luadar'; +$a->strings['Relocate'] = 'Imrich'; +$a->strings['Resend relocate message to contacts'] = 'Cuir teachdaireachd mun imrich dhan neach-aithne'; +$a->strings['Addon Settings'] = 'Roghainnean nan tuilleadan'; +$a->strings['No Addon settings configured'] = 'Cha deach roghainnean tuilleadain a rèiteachadh'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'Cha deach leinn ceangal a dhèanamh leis a’ chunntas puist-d a’ cleachdadh nan roghainnean a chaidh a thoirt seachad.'; +$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora* (Socialhome, Hubzilla)'; +$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; +$a->strings['Email access is disabled on this site.'] = 'Tha an t-inntrigeadh le post-d à comas dhan làrach seo.'; +$a->strings['None'] = 'Chan eil gin'; +$a->strings['General Social Media Settings'] = 'Roghainnean coitcheann nam meadhanan sòisealta'; +$a->strings['Followed content scope'] = 'Farsaingeachd na susbainte air a leanas tu'; +$a->strings['By default, conversations in which your follows participated but didn\'t start will be shown in your timeline. You can turn this behavior off, or expand it to the conversations in which your follows liked a post.'] = 'Nochdaidh na còmhraidhean sa ghabh an fheadhainn air a leanas tu pàirt ach nach do thòisich iad fhèin air an loidhne-ama agad a ghnàth. ’S urrainn dhut seo a chur dheth no a leudachadh ach an nochd na còmhraidhean far an toigh leis an fheadhainn air a leanas tu post.'; +$a->strings['Only conversations my follows started'] = 'Na còmhraidhean a thòisich cuideigin air a leanas mi a-mhàin'; +$a->strings['Conversations my follows started or commented on (default)'] = 'Na còmhraidhean a thòisich cuideigin air a leanas mi no a chuir iad beachd riutha (bun-roghainn)'; +$a->strings['Any conversation my follows interacted with, including likes'] = 'Còmhradh sam bith leis an do rinn cuideigin air a leanas mi co-luadar, a’ gabhail a-staigh nas toigh leotha'; +$a->strings['Enable Content Warning'] = 'Cuir rabhadh susbainte an comas'; +$a->strings['Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.'] = '’S urrainn dhan fheadhainn air lìonraidhean mar Mastodon no Pleroma raon rabhadh susbainte a shuidheachadh a cho-theannaicheas am post aca a ghnàth. Cuiridh seo an co-theannachadh fèin-obrachail an comas seach a bhith a’ suidheachadh an rabhadh susbainte mar thiotal a’ phuist. Cha doir seo buaidh air criathradh susbainte sam bith eile a shuidhicheas tu.'; +$a->strings['Enable intelligent shortening'] = 'Cuir an giorrachadh tapaidh an comas'; +$a->strings['Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.'] = 'Mar as àbhaist, feuchaidh an siostam gun dèid an ceangal as fheàrr a lorg gus a chur ri postaichean giorraichte. Ma tha seo à comas, tomhaidh gach post giorraichte ris a’ phost tùsail air friendica an-còmhnaidh.'; +$a->strings['Enable simple text shortening'] = 'Cuir an comas giorrachadh teacsa sìmplidh'; +$a->strings['Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'] = 'Mar as àbhaist, giorraichidh an siostam na postaichean aig an ath earrann. Ma tha an roghainn seo an comas, giorraichidh an siostam an teacsa aig crìoch nan caractaran ceadaichte.'; +$a->strings['Attach the link title'] = 'Cuir tiotal a’ cheangail ris'; +$a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'Nuair a bhios seo an gnìomh, thèid tiotal a’ cheangail a chur ris mar tiotal air postaichean gu diaspora*. Tha seo as fheumaile dhan luchd-aithne “remote-self” a cho-roinneas susbaint inbhir.'; +$a->strings['When activated, added links at the end of the post react the same way as added links in the web interface.'] = 'Nuair a bhios seo an gnìomh, bidh an t-aon ghiùlan aig ceanglaichean a thèid a chur ri bonn puist ’s a tha aig ceanglaichean a thèid a chur ris san eadar-aghaidh-lìn.'; +$a->strings['Your legacy ActivityPub/GNU Social account'] = 'An cunntas ActivityPub/GNU Social dìleabach agad'; +$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Ma chuireas tu ainm seann-chunntais ris o shiostam stèidhichte air ActivityPub no ainm do chunntais GNU Social/Statusnet an-seo (san fhòrmat cleachdaiche@àrainn.tld), thèid an luchd-aithne agad a chur ris gu fèin-obrachail. Thèid an raon fhalamhachadh nuair a bhios sin deiseil.'; +$a->strings['Repair OStatus subscriptions'] = 'Càraich fo-sgrìobhaidhean OStatus'; +$a->strings['Email/Mailbox Setup'] = 'Suidheachadh a’ phuist-d/a’ bhogsa-phuist'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Ma tha thu airson an t-seirbheis seo a chleachdadh airson conaltradh le luchd-aithne air a’ post-d (gu roghainneil), sònraich an dòigh air a nì thu ceangal leis a’ bhogsa-phuist agad.'; +$a->strings['Last successful email check:'] = 'An turas mu dheireadh a chaidh leinn sùil a thoirt air a’ phost-d:'; +$a->strings['IMAP server name:'] = 'Ainm frithealaiche IMAP:'; +$a->strings['IMAP port:'] = 'Port IMAP:'; +$a->strings['Security:'] = 'Tèarainteachd:'; +$a->strings['Email login name:'] = 'Ainm clàradh a-steach a’ phuist-d:'; +$a->strings['Email password:'] = 'Facal-faire a’ phuist-d:'; +$a->strings['Reply-to address:'] = 'An seòladh Freagairt-gu:'; +$a->strings['Send public posts to all email contacts:'] = 'Cuir postaichean poblach dhan a h-uile neach-aithne puist-d:'; +$a->strings['Action after import:'] = 'Gnìomh às dèid an ion-phortaidh:'; +$a->strings['Move to folder'] = 'Gluais gu pasgan'; +$a->strings['Move to folder:'] = 'Gluais gu pasgan:'; +$a->strings['Delegation successfully granted.'] = 'Chaidh neach-ionaid a dhèanamh dheth.'; +$a->strings['Delegation successfully revoked.'] = 'Chaidh ceadan neach-ionaid a thoirt air falbh.'; +$a->strings['Delegated administrators can view but not change delegation permissions.'] = 'Chì rianairean a tha ’nan luchd-ionaid na ceadan ach chan urrainn dhaibh an atharrachadh.'; +$a->strings['Delegate user not found.'] = 'Cha deach cleachdaiche an neach-ionaid a lorg.'; +$a->strings['Register additional accounts that are automatically connected to your existing account so you can manage them from this account.'] = 'Clàraich cunntasan a bharrachd a thèid a cho-cheangal ris a’ chunntas làithreach agad ach an urrainn dhut an stiùireadh on chunntas seo.'; +$a->strings['Delegates'] = 'Luchd-ionaid'; +$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.'] = '’S urrainn dhan luchd-ionaid nì sam bith mun chunntas/duilleag seo a stiùireadh ach roghainnean bunaiteach a’ chunntais. Na dèan neach-ionaid dhan chunntas phearsanta agad de dhuine sam bith anns nach eil làn-earbsa agad.'; +$a->strings['Existing Page Delegates'] = 'Luchd-ionaid làithreach na duilleige'; +$a->strings['Potential Delegates'] = 'Tagraichean luchd-ionaid'; +$a->strings['The theme you chose isn\'t available.'] = 'Chan eil an t-ùrlar a thagh thu ri fhaighinn.'; +$a->strings['General Theme Settings'] = 'Roghainnean coitcheann an ùrlair'; +$a->strings['Custom Theme Settings'] = 'Roghainnean gnàthaichte an ùrlair'; +$a->strings['Theme settings'] = 'Roghainnean an ùrlair'; +$a->strings['Display Theme:'] = 'Ùrlar taisbeanaidh:'; +$a->strings['Mobile Theme:'] = 'Ùrlar mobile:'; $a->strings['Display the Dislike feature'] = 'Seall an gleus “Cha toigh leam seo”'; $a->strings['Display the Dislike button and dislike reactions on posts and comments.'] = 'Seall am putan “Cha toigh leam seo” agus freagairtean “Cha toigh leam seo” air postaichean is beachdan.'; $a->strings['Display the resharer'] = 'Seall cò rinn an co-roinneadh'; $a->strings['Display the first resharer as icon and text on a reshared item.'] = 'Seall a’ chiad neach a rinn co-roinneadh ’na ìomhaigheag agus teacsa air an nì a chaidh a cho-roinneadh.'; -$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.'] = 'Aig àm a’ chlàraidh agus a chùm conaltraidh eadar cunntas a’ chleachdaiche ’s an luchd-aithne aca, feumaidh an cleachdaiche ainm taisbeanaidh (ainm-pinn), ainm-cleachdaiche (far-ainm) agus seòladh puist-d a tha ag obair a thoirt seachad. Gabhaidh na h-ainmean inntrigeadh air duilleag pròifil a’ chunntais le duine sam bith a thadhlas air an duilleag, fiù mura dèid fiosrachadh eile na pròifil a shealltainn. Cha dèid an seòladh puist-d a chleachdadh ach airson brathan a chur dhan chleachdaiche mu chonaltradh agus cha dèid a shealltainn gu poblach. Tha cur a’ chunntais ri liosta nan cleachdaichean ann an eòlaire an nòid no san eòlaire cho-naisgte roghainneil agus gabhaidh sin a shuidheachadh ann an roghainnean a’ chleachdaiche; chan eil e riatanach dhan chonaltradh.'; +$a->strings['Additional Features'] = 'Gleusan a bharrachd'; +$a->strings['Connected Apps'] = 'Aplacaidean ceangailte'; +$a->strings['Remove authorization'] = 'Thoir an t-ùghdarrachadh air falbh'; +$a->strings['[Friendica System Notify]'] = '[Brath siostam Friendica]'; +$a->strings['User deleted their account'] = 'Sguab an cleachdaiche às an cunntas aca'; +$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Sguab cleachdaiche às an cunntas aca air an nòd Friendica agad. Dèan cinnteach gun dèid an dàta aca a thoirt air falbh o na lethbhreacan-glèidhidh.'; +$a->strings['The user id is %d'] = '’S e %d ID a’ chleachdaiche'; +$a->strings['Remove My Account'] = 'Thoir air falbh an cunntas agam'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Bheir seo air falbh an cunntas agad gu tur. Nuair a bhios sin air a thachairt, cha ghabh aiseag.'; +$a->strings['Please enter your password for verification:'] = 'Cuir a-steach am facal-faire agad airson a dhearbhadh:'; +$a->strings['Manage app-specific passwords'] = 'Stiùir na faclan-faire sònraichte do dh’aplacaidean'; +$a->strings['Manage trusted browsers'] = 'Stiùir brabhsairean earbsach'; +$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.'] = 'Aig àm a’ chlàraidh agus a chùm conaltraidh eadar cunntas a’ chleachdaiche ’s an luchd-aithne aca, feumaidh an cleachdaiche ainm taisbeanaidh (ainm-pinn), ainm-cleachdaiche (far-ainm) agus seòladh puist-d a tha ag obair a thoirt seachad. Gabhaidh na h-ainmean inntrigeadh air duilleag pròifil a’ chunntais le duine sam bith a thadhlas air an duilleag, fiù mura dèid fiosrachadh eile na pròifil a shealltainn. Cha dèid an seòladh puist-d a chleachdadh ach airson brathan a chur dhan chleachdaiche mu co-luadar agus cha dèid a shealltainn gu poblach. Tha cur a’ chunntais ri liosta nan cleachdaichean ann an eòlaire an nòid no san eòlaire cho-naisgte roghainneil agus gabhaidh sin a shuidheachadh ann an roghainnean a’ chleachdaiche; chan eil e riatanach dhan chonaltradh.'; +$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'Chan eil am an nì a dh’iarr thu ann no chaidh a sguabadh às.'; +$a->strings['User imports on closed servers can only be done by an administrator.'] = 'Chan fhaod ach rianairean cleachdaichean ion-phortadh gu frithealaichean dùinte.'; +$a->strings['Move account'] = 'Imrich an cunntas'; +$a->strings['You can import an account from another Friendica server.'] = '’S urrainn dhut cunntas ion-phortadh o fhrithealaiche Friendica eile.'; +$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.'] = 'Feumaidh tu an cunntas agad às-phortadh on t-seann-fhrithealaiche ’s a luchdadh suas an-seo. Ath-chruthaichidh sinn an seann-chunntas agad an-seo leis an luchd-aithne gu lèir agad. Feuchaidh sinn cuideachd gun leig sinn fios dha do charaidean gun do dh’imrich thu an-seo.'; +$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Chan e ach gleus deuchainneil a tha seo. Chan urrainn dhuinn luchd-aithne ion-phortadh on lìonra OStatus (GNU Social/Statusnet) no o dhiaspora*'; +$a->strings['Account file'] = 'Faidhle a’ chunntais'; +$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Airson an cunntas agad às-phortadh, tadhail air “Roghainnean” -> “Às-phortaich an dàta pearsanta agad” agus tagh “Às-phortaich an cunntas”'; +$a->strings['Error decoding account file'] = 'Mearachd le dì-chòdachadh faidhle a’ chunntais'; +$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Mearachd! Chan eil dàta mun tionndadh san fhaidhle! Nach e faidhle cunntas Friendica a th’ ann?'; +$a->strings['User \'%s\' already exists on this server!'] = 'Tha an cleachdaiche “%s” air an fhrithealaiche seo mu thràth!'; +$a->strings['User creation error'] = 'Mearachd a’ cruthachadh a’ chleachdaiche'; +$a->strings['%d contact not imported'] = [ + 0 => 'Tha %d neach-aithne nach deach ion-phortadh', + 1 => 'Tha %d luchd-aithne nach deach ion-phortadh', + 2 => 'Tha %d luchd-aithne nach deach ion-phortadh', + 3 => 'Tha %d luchd-aithne nach deach ion-phortadh', +]; +$a->strings['User profile creation error'] = 'Mearachd a’ cruthachadh pròifil a’ chleachdaiche'; +$a->strings['Done. You can now login with your username and password'] = 'Deiseil. ’S urrainn dhut clàradh a-steach leis an ainm-chleachdaiche ’s fhacal-fhaire agad a-nis'; $a->strings['Getting Started'] = 'Toiseach tòiseachaidh'; $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.'] = 'Air an duilleag grad-tòiseachaidh agad – gheibh thu facal-toisich air tabaichean na pròifile ’s an lìonraidh agad, ’s urrainn dhut dàimhean ùra a stèidheachadh is gheibh thu lorg air buidhnean ùra airson ballrachd fhaighinn annta.'; +$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'] = 'Cuir a-steach fiosrachadh inntrigidh dhan phost-d agad air duilleag roghainnean nan ceangladairean agad ma tha thu airson ion-phortadh is co-luadar le caraidean no liostaichean-phuist o BHOGSA a-STEACH a’ phuist-d agad'; $a->strings['{0} has started following you'] = 'Tha {0} a’ leantainn ort a-nis'; $a->strings['%s liked %s\'s post'] = 'Is toigh le %s am post aig %s'; $a->strings['%s disliked %s\'s post'] = 'Cha toigh le %s am post aig %s'; +$a->strings['%s is attending %s\'s event'] = 'Bidh %s an làthair aig an tachartas aig %s'; +$a->strings['%s is not attending %s\'s event'] = 'Cha bhi %s an làthair aig an tachartas aig %s'; +$a->strings['%s may attending %s\'s event'] = '’S dòcha gum bi %s an làthair aig an tachartas aig %s'; $a->strings['%1$s has started following you'] = 'Tha %1$s a’ leantainn ort a-nis'; $a->strings['%1$s liked your comment on %2$s'] = '’S toigh le %1$s do bheachd air %2$s'; $a->strings['%1$s liked your post %2$s'] = 'Is toigh le %1$s am post %2$s'; @@ -1558,6 +2456,9 @@ $a->strings['%1$s shared the post %2$s from %3$s'] = 'Cho-roinn %1$s am post %2$ $a->strings['%1$s shared a post from %3$s'] = 'Cho-roinn %1$s post o %3$s'; $a->strings['%1$s shared the post %2$s'] = 'Cho-roinn %1$s am post %2$s'; $a->strings['%1$s shared a post'] = 'Cho-roinn %1$s post'; +$a->strings['%1$s wants to attend your event %2$s'] = 'Bu mhath le %1$s a bhith an làthair aig an tachartas %2$s agad'; +$a->strings['%1$s does not want to attend your event %2$s'] = 'Cha bu mhath le %1$s a bhith an làthair aig an tachartas %2$s agad'; +$a->strings['%1$s maybe wants to attend your event %2$s'] = '’S dòcha gum bu mhath le %1$s a bhith an làthair aig an tachartas %2$s agad'; $a->strings['[Friendica:Notify]'] = '[Friendica:Brath]'; $a->strings['%1$s sent you a new private message at %2$s.'] = 'Chuir %1$s teachdaireachd phrìobhaideach ùr thugad aig %2$s.'; $a->strings['a private message'] = 'teachdaireachd phrìobhaideach'; @@ -1567,6 +2468,11 @@ $a->strings['%s commented on an item/conversation you have been following.'] = ' $a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Tadhail air %s a shealltainn agus/no a’ freagairt dhan chòmhradh.'; $a->strings['%1$s posted to your profile wall at %2$s'] = 'Chuir %1$s post ri balla na pròifil agad aig %2$s'; $a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = 'Chuir %1$s post ris [url=%2$s]a’ bhalla agad[/url]'; +$a->strings['%s Introduction received'] = '%s Fhuair thu cur an aithne'; +$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Fhuair thu cur an aithne o “%1$s” aig %2$s'; +$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Fhuair thu [url=%1$s]cur an aithne[/url] o %2$s.'; +$a->strings['Please visit %s to approve or reject the introduction.'] = 'Tadhail air %s a ghabhail ris no a dhiùltadh a’ chuir an aithne.'; +$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.'] = 'Ghabh “%1$s” riut ’nad dhealasach is cuingichidh sin an conaltradh – can teachdaireachdan prìobhaideach is cuid dhen cho-luadar air a’ phròifil. Mas e duilleag cuideigin chliùitich no duilleag coimhearsnachd a th’ ann, chaidh na roghainnean seo a chur an sàs gu fèin-obrachail.'; $a->strings['%s %s shared a new post'] = 'Cho-roinn %s%s post ùr'; $a->strings['Private Message'] = 'Teachdaireachd phrìobhaideach'; $a->strings['Public Message'] = 'Teachdaireachd phoblach'; @@ -1609,4 +2515,79 @@ $a->strings['Wall-to-Wall'] = 'Balla gu balla'; $a->strings['via Wall-To-Wall:'] = 'slighe balla bu balla:'; $a->strings['Reply to %s'] = 'Freagair gu %s'; $a->strings['More'] = 'Barrachd'; +$a->strings['%d comment'] = [ + 0 => '%d bheachd', + 1 => '%d bheachd', + 2 => '%d beachdan', + 3 => '%d beachd', +]; +$a->strings['Show more'] = 'Seall barrachd dheth'; +$a->strings['Show fewer'] = 'Seall nas lugha dheth'; +$a->strings['Reshared by: %s'] = '’Ga cho-roinneadh le: %s '; +$a->strings['Viewed by: %s'] = 'Air a choimhead air le: %s'; +$a->strings['Liked by: %s'] = '’S toil le %s seo'; +$a->strings['Disliked by: %s'] = 'Cha toil le %s seo'; +$a->strings['Attended by: %s'] = 'An làthair: %s'; +$a->strings['Maybe attended by: %s'] = 'An làthair ’s dòcha: %s'; +$a->strings['Not attended by: %s'] = 'Gun a bhith an làthair: %s'; +$a->strings['Reacted with %s by: %s'] = 'Chaidh freagairt le %s le: %s'; +$a->strings['(no subject)'] = '(gun chuspair)'; +$a->strings['%s is now following %s.'] = 'Tha %s a’ leantainn %s a-nis.'; +$a->strings['%s stopped following %s.'] = 'Chan eil %s a’ leantainn %s tuilleadh.'; +$a->strings['The folder %s must be writable by webserver.'] = 'Ceumaidh cead sgrìobhaidh dhan phasgan %s a bhith aig an fhrithealaiche-lìn.'; +$a->strings['Login failed.'] = 'Dh’fhàillig leis a’ chlàradh a-steach.'; +$a->strings['Login failed. Please check your credentials.'] = 'Dh’fhàillig leis a’ chlàradh a-steach. Thoir sùil air an teisteas agad.'; +$a->strings['Welcome %s'] = 'Fàilte ort, %s'; +$a->strings['Please upload a profile photo.'] = 'An luchdaich thu suas dealbh pròifile?'; +$a->strings['Friendica Notification'] = 'Brath Friendica'; +$a->strings['%1$s, %2$s Administrator'] = '%1$s, rianaire %2$s'; +$a->strings['%s Administrator'] = 'Rianaire %s'; +$a->strings['thanks'] = 'mòran taing'; +$a->strings['YYYY-MM-DD or MM-DD'] = 'YYYY-MM-DD no MM-DD'; +$a->strings['Time zone: %s Change in Settings'] = 'Roinn-tìde: %s Atharraich i sna roghainnean'; +$a->strings['never'] = 'chan ann idir'; +$a->strings['less than a second ago'] = 'nas lugha na diog air ais'; +$a->strings['year'] = 'bhliadhna'; +$a->strings['years'] = 'bliadhna(ichean)'; +$a->strings['months'] = 'mìos(an)'; +$a->strings['weeks'] = 'seachdain(ean)'; +$a->strings['days'] = 'là(ithean)'; +$a->strings['hour'] = 'uair a thìde'; +$a->strings['hours'] = 'uair(ean) a thìde'; +$a->strings['minute'] = 'mhionaid'; +$a->strings['minutes'] = 'mionaid(ean)'; +$a->strings['second'] = 'dhiog'; +$a->strings['seconds'] = 'diog(an)'; +$a->strings['in %1$d %2$s'] = 'an ceann %1$d %2$s'; +$a->strings['%1$d %2$s ago'] = '%1$d %2$s air ais'; +$a->strings['Notification from Friendica'] = 'Brath o Friendica'; +$a->strings['Empty Post'] = 'Post falamh'; +$a->strings['default'] = 'bunaiteach'; +$a->strings['Variations'] = 'Fiamhan'; +$a->strings['Light (Accented)'] = 'Soilleir (soilleirichte)'; +$a->strings['Dark (Accented)'] = 'Dorcha (soilleirichte)'; +$a->strings['Black (Accented)'] = 'Dubh (soilleirichte)'; +$a->strings['Note'] = 'An aire'; +$a->strings['Check image permissions if all users are allowed to see the image'] = 'Thoir sùil air ceadan an deilbh ma dh’fhaodas a h-uile cleachdaiche an dealbh fhaicinn'; +$a->strings['Custom'] = 'Gnàthaichte'; +$a->strings['Legacy'] = 'Dìleabach'; +$a->strings['Accented'] = 'Soilleirichte'; +$a->strings['Select color scheme'] = 'Tagh sgeama nan dathan'; +$a->strings['Select scheme accent'] = 'Tagh soilleireachadh an sgeama'; +$a->strings['Blue'] = 'Gorm'; +$a->strings['Red'] = 'Dearg'; +$a->strings['Purple'] = 'Purpaidh'; +$a->strings['Green'] = 'Uaine'; +$a->strings['Pink'] = 'Pinc'; +$a->strings['Copy or paste schemestring'] = 'Dèan lethbhreac no cuir ann sreang sgeama'; +$a->strings['You can copy this string to share your theme with others. Pasting here applies the schemestring'] = '’S urrainn dhut lethbhreac dhen t-sreang seo a dhèanamh airson an t-ùrlar agad a cho-roinneadh le càch. Nuair a chuireas tu rud ann an-seo, thèid sreang an sgeama a chur an sàs'; +$a->strings['Navigation bar background color'] = 'Dath cùlaibh bàr na seòladaireachd'; +$a->strings['Navigation bar icon color '] = 'Dath ìomhaigheagan bàr na seòladaireachd '; +$a->strings['Link color'] = 'Dath nan ceanglaichean'; +$a->strings['Set the background color'] = 'Suidhich dath a’ chùlaibh'; +$a->strings['Content background opacity'] = 'Trìd-dhoilleireachd cùlaibh na susbainte'; +$a->strings['Set the background image'] = 'Suidhich dealbh a’ chùlaibh'; +$a->strings['Background image style'] = 'Stoidhle dealbh a’ chùlaibh'; +$a->strings['Always open Compose page'] = 'Fosgail duilleag an sgrìobhaidh an-còmhnaidh'; +$a->strings['Leave background image and color empty for theme defaults'] = 'Fàg dealbh ’s dath a’ chùlaibh bàn do bhun-roghainnean an ùrlair'; $a->strings['Quick Start'] = 'Grad-tòiseachadh'; diff --git a/view/lang/hu/messages.po b/view/lang/hu/messages.po index 91de201ca..0a948902d 100644 --- a/view/lang/hu/messages.po +++ b/view/lang/hu/messages.po @@ -1,9 +1,9 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: -# Balázs Úr, 2020-2022 +# Balázs Úr, 2020-2023 # Balázs Úr , 2020 # Kastal András , 2018 # Kastal András , 2018 @@ -12,539 +12,80 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-09 13:22-0400\n" +"POT-Creation-Date: 2023-10-15 13:49+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" -"Last-Translator: Balázs Úr, 2020-2022\n" -"Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" +"Last-Translator: Balázs Úr, 2020-2023\n" +"Language-Team: Hungarian (http://app.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:39 mod/redir.php:36 -#: mod/redir.php:177 src/Module/Conversation/Community.php:181 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: 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:43 -msgid "Access denied." -msgstr "Hozzáférés megtagadva." - -#: mod/cal.php:63 mod/cal.php:80 mod/photos.php:69 mod/photos.php:140 -#: mod/photos.php:798 src/Model/Profile.php:235 src/Module/Feed.php:72 -#: src/Module/HCard.php:52 src/Module/Profile/Common.php:41 -#: src/Module/Profile/Common.php:52 src/Module/Profile/Contacts.php:40 -#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Media.php:38 -#: src/Module/Profile/Status.php:59 src/Module/Register.php:267 -#: src/Module/RemoteFollow.php:58 -msgid "User not found." -msgstr "A felhasználó nem található." - -#: mod/cal.php:122 mod/display.php:262 src/Module/Profile/Profile.php:94 -#: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:110 -#: src/Module/Update/Profile.php:56 -msgid "Access to this profile has been restricted." -msgstr "A profilhoz való hozzáférés korlátozva lett." - -#: mod/cal.php:243 mod/events.php:374 src/Content/Nav.php:196 -#: src/Content/Nav.php:260 src/Module/BaseProfile.php:84 -#: src/Module/BaseProfile.php:95 view/theme/frio/theme.php:224 -#: view/theme/frio/theme.php:228 -msgid "Events" -msgstr "Események" - -#: mod/cal.php:244 mod/events.php:375 -msgid "View" -msgstr "Nézet" - -#: mod/cal.php:245 mod/events.php:377 -msgid "Previous" -msgstr "Előző" - -#: mod/cal.php:246 mod/events.php:378 src/Module/Install.php:214 -msgid "Next" -msgstr "Következő" - -#: mod/cal.php:249 mod/events.php:383 src/Model/Event.php:460 -msgid "today" -msgstr "ma" - -#: mod/cal.php:250 mod/events.php:384 src/Model/Event.php:461 -#: src/Util/Temporal.php:334 -msgid "month" -msgstr "hónap" - -#: mod/cal.php:251 mod/events.php:385 src/Model/Event.php:462 -#: src/Util/Temporal.php:335 -msgid "week" -msgstr "hét" - -#: mod/cal.php:252 mod/events.php:386 src/Model/Event.php:463 -#: src/Util/Temporal.php:336 -msgid "day" -msgstr "nap" - -#: mod/cal.php:253 mod/events.php:387 -msgid "list" -msgstr "lista" - -#: mod/cal.php:265 src/Console/User.php:182 src/Model/User.php:663 -#: 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:74 -msgid "User not found" -msgstr "A felhasználó nem található" - -#: mod/cal.php:274 -msgid "This calendar format is not supported" -msgstr "Ez a naptárformátum nem támogatott" - -#: mod/cal.php:276 -msgid "No exportable data found" -msgstr "Nem található exportálható adat" - -#: mod/cal.php:292 -msgid "calendar" -msgstr "naptár" - -#: mod/display.php:143 mod/photos.php:802 -#: src/Module/Conversation/Community.php:175 src/Module/Directory.php:49 -#: src/Module/Search/Index.php:65 -msgid "Public access denied." -msgstr "Nyilvános hozzáférés megtagadva." - -#: mod/display.php:213 mod/display.php:287 -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:367 -msgid "The feed for this item is unavailable." -msgstr "Ennek az elemnek a hírforrása nem érhető el." - -#: mod/editpost.php:38 mod/events.php:217 mod/follow.php:56 mod/follow.php:130 -#: mod/item.php:181 mod/item.php:186 mod/item.php:870 mod/message.php:69 -#: mod/message.php:111 mod/notes.php:44 mod/ostatus_subscribe.php:33 -#: mod/photos.php:160 mod/photos.php:891 mod/repair_ostatus.php:31 -#: mod/settings.php:40 mod/settings.php:50 mod/settings.php:156 -#: mod/suggest.php:34 mod/uimport.php:33 mod/unfollow.php:35 -#: mod/unfollow.php:50 mod/unfollow.php:82 mod/wall_attach.php:67 -#: mod/wall_attach.php:69 mod/wall_upload.php:89 mod/wall_upload.php:91 -#: mod/wallmessage.php:37 mod/wallmessage.php:56 mod/wallmessage.php:90 -#: mod/wallmessage.php:110 src/Module/Attach.php:56 src/Module/BaseApi.php:93 -#: src/Module/BaseNotifications.php:97 src/Module/Contact/Advanced.php:60 -#: src/Module/Delegation.php:119 src/Module/FollowConfirm.php:38 -#: src/Module/FriendSuggest.php:56 src/Module/Group.php:42 -#: src/Module/Group.php:85 src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:75 -#: src/Module/Notifications/Notification.php:106 -#: src/Module/Profile/Common.php:56 src/Module/Profile/Contacts.php:56 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:77 src/Module/Register.php:90 -#: src/Module/Register.php:206 src/Module/Register.php:245 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:49 -#: src/Module/Settings/Account.php:409 src/Module/Settings/Delegation.php:42 -#: src/Module/Settings/Delegation.php:70 src/Module/Settings/Display.php:42 -#: src/Module/Settings/Display.php:120 -#: src/Module/Settings/Profile/Photo/Crop.php:166 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/UserExport.php:58 src/Module/Settings/UserExport.php:92 -#: src/Module/Settings/UserExport.php:196 -#: src/Module/Settings/UserExport.php:216 -#: src/Module/Settings/UserExport.php:281 -msgid "Permission denied." -msgstr "Hozzáférés megtagadva." - -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Az elem nem található" - -#: mod/editpost.php:64 -msgid "Edit post" -msgstr "Bejegyzés szerkesztése" - -#: mod/editpost.php:91 mod/notes.php:56 src/Content/Text/HTML.php:882 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:73 -msgid "Save" -msgstr "Mentés" - -#: mod/editpost.php:92 mod/photos.php:1338 src/Content/Conversation.php:338 -#: src/Object/Post.php:993 -msgid "Loading..." -msgstr "Betöltés…" - -#: mod/editpost.php:93 mod/message.php:198 mod/message.php:355 -#: mod/wallmessage.php:140 src/Content/Conversation.php:339 -msgid "Upload photo" -msgstr "Fénykép feltöltése" - -#: mod/editpost.php:94 src/Content/Conversation.php:340 -msgid "upload photo" -msgstr "fénykép feltöltése" - -#: mod/editpost.php:95 src/Content/Conversation.php:341 -msgid "Attach file" -msgstr "Fájl csatolása" - -#: mod/editpost.php:96 src/Content/Conversation.php:342 -msgid "attach file" -msgstr "fájl csatolása" - -#: mod/editpost.php:97 mod/message.php:199 mod/message.php:356 -#: mod/wallmessage.php:141 -msgid "Insert web link" -msgstr "Webhivatkozás beszúrása" - -#: mod/editpost.php:98 -msgid "web link" -msgstr "webhivatkozás" - -#: mod/editpost.php:99 -msgid "Insert video link" -msgstr "Videohivatkozás beszúrása" - -#: mod/editpost.php:100 -msgid "video link" -msgstr "videohivatkozás" - -#: mod/editpost.php:101 -msgid "Insert audio link" -msgstr "Hanghivatkozás beszúrása" - -#: mod/editpost.php:102 -msgid "audio link" -msgstr "hanghivatkozás" - -#: mod/editpost.php:103 src/Content/Conversation.php:352 -#: src/Module/Item/Compose.php:173 -msgid "Set your location" -msgstr "Az Ön helyének beállítása" - -#: mod/editpost.php:104 src/Content/Conversation.php:353 -msgid "set location" -msgstr "hely beállítása" - -#: mod/editpost.php:105 src/Content/Conversation.php:354 -msgid "Clear browser location" -msgstr "Böngésző helyének törlése" - -#: mod/editpost.php:106 src/Content/Conversation.php:355 -msgid "clear location" -msgstr "hely törlése" - -#: mod/editpost.php:107 mod/message.php:200 mod/message.php:358 -#: mod/photos.php:1489 mod/wallmessage.php:142 -#: src/Content/Conversation.php:368 src/Content/Conversation.php:713 -#: src/Module/Item/Compose.php:177 src/Object/Post.php:538 -msgid "Please wait" -msgstr "Kis türelmet" - -#: mod/editpost.php:108 src/Content/Conversation.php:369 -msgid "Permission settings" -msgstr "Jogosultsági beállítások" - -#: mod/editpost.php:116 src/Core/ACL.php:326 -msgid "CC: email addresses" -msgstr "Másolat: e-mail-címek" - -#: mod/editpost.php:117 src/Content/Conversation.php:379 -msgid "Public post" -msgstr "Nyilvános bejegyzés" - -#: mod/editpost.php:120 src/Content/Conversation.php:357 -#: src/Module/Item/Compose.php:178 -msgid "Set title" -msgstr "Cím beállítása" - -#: mod/editpost.php:122 src/Content/Conversation.php:359 -#: src/Module/Item/Compose.php:179 -msgid "Categories (comma-separated list)" -msgstr "Kategóriák (vesszővel elválasztott lista)" - -#: mod/editpost.php:123 src/Core/ACL.php:327 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Példa: bob@example.com, mary@example.com" - -#: mod/editpost.php:128 mod/events.php:513 mod/photos.php:1337 -#: mod/photos.php:1393 mod/photos.php:1467 src/Content/Conversation.php:383 -#: src/Module/Item/Compose.php:172 src/Object/Post.php:1003 -msgid "Preview" -msgstr "Előnézet" - -#: mod/editpost.php:130 mod/fbrowser.php:118 mod/fbrowser.php:145 -#: mod/follow.php:144 mod/photos.php:1004 mod/photos.php:1105 mod/tagrm.php:35 -#: mod/tagrm.php:127 mod/unfollow.php:97 src/Content/Conversation.php:386 -#: src/Module/Contact/Revoke.php:108 src/Module/RemoteFollow.php:127 -#: src/Module/Security/TwoFactor/SignOut.php:125 -msgid "Cancel" -msgstr "Mégse" - -#: mod/editpost.php:134 src/Content/Conversation.php:343 -#: src/Module/Item/Compose.php:163 src/Object/Post.php:994 -msgid "Bold" -msgstr "Félkövér" - -#: mod/editpost.php:135 src/Content/Conversation.php:344 -#: src/Module/Item/Compose.php:164 src/Object/Post.php:995 -msgid "Italic" -msgstr "Dőlt" - -#: mod/editpost.php:136 src/Content/Conversation.php:345 -#: src/Module/Item/Compose.php:165 src/Object/Post.php:996 -msgid "Underline" -msgstr "Aláhúzott" - -#: mod/editpost.php:137 src/Content/Conversation.php:346 -#: src/Module/Item/Compose.php:166 src/Object/Post.php:997 -msgid "Quote" -msgstr "Idézet" - -#: mod/editpost.php:138 src/Content/Conversation.php:347 -#: src/Module/Item/Compose.php:167 src/Object/Post.php:998 -msgid "Code" -msgstr "Kód" - -#: mod/editpost.php:139 src/Content/Conversation.php:349 -#: src/Module/Item/Compose.php:169 src/Object/Post.php:1000 -msgid "Link" -msgstr "Hivatkozás" - -#: mod/editpost.php:140 src/Content/Conversation.php:350 -#: src/Module/Item/Compose.php:170 src/Object/Post.php:1001 -msgid "Link or Media" -msgstr "Hivatkozás vagy média" - -#: mod/editpost.php:143 src/Content/Conversation.php:393 -#: src/Content/Widget/VCard.php:113 src/Model/Profile.php:466 -#: src/Module/Admin/Logs/View.php:93 -msgid "Message" -msgstr "Üzenet" - -#: mod/editpost.php:144 src/Content/Conversation.php:394 -#: src/Module/Settings/TwoFactor/Trusted.php:138 -msgid "Browser" -msgstr "Böngésző" - -#: mod/editpost.php:145 mod/events.php:518 mod/photos.php:939 -#: mod/photos.php:1291 src/Content/Conversation.php:370 -msgid "Permissions" -msgstr "Jogosultságok" - -#: mod/editpost.php:147 src/Content/Conversation.php:396 -msgid "Open Compose page" -msgstr "Írás oldal megnyitása" - -#: mod/events.php:124 mod/events.php:126 -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:132 mod/events.php:134 -msgid "Event title and start time are required." -msgstr "Az esemény címe és a kezdési idő kötelező." - -#: mod/events.php:376 -msgid "Create New Event" -msgstr "Új esemény létrehozása" - -#: mod/events.php:474 src/Module/Admin/Logs/View.php:97 -msgid "Event details" -msgstr "Esemény részletei" - -#: mod/events.php:475 -msgid "Starting date and Title are required." -msgstr "A kezdési dátum és a cím kötelező." - -#: mod/events.php:476 mod/events.php:481 -msgid "Event Starts:" -msgstr "Esemény kezdete:" - -#: mod/events.php:476 mod/events.php:506 -#: src/Module/Admin/Blocklist/Server/Add.php:136 -#: src/Module/Admin/Blocklist/Server/Add.php:138 -#: src/Module/Admin/Blocklist/Server/Import.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:84 -#: src/Module/Admin/Blocklist/Server/Index.php:85 -#: src/Module/Admin/Blocklist/Server/Index.php:113 -#: src/Module/Admin/Blocklist/Server/Index.php:114 -#: src/Module/Admin/Item/Delete.php:69 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:207 src/Module/Install.php:240 -#: src/Module/Install.php:245 src/Module/Install.php:264 -#: src/Module/Install.php:275 src/Module/Install.php:280 -#: src/Module/Install.php:286 src/Module/Install.php:291 -#: src/Module/Install.php:305 src/Module/Install.php:320 -#: src/Module/Install.php:347 src/Module/Register.php:148 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Index.php:141 -#: src/Module/Settings/TwoFactor/Verify.php:154 -msgid "Required" -msgstr "Kötelező" - -#: mod/events.php:489 mod/events.php:512 -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:491 mod/events.php:496 -msgid "Event Finishes:" -msgstr "Esemény befejezése:" - -#: mod/events.php:502 src/Module/Profile/Profile.php:172 -#: src/Module/Settings/Profile/Index.php:238 -msgid "Description:" -msgstr "Leírás:" - -#: mod/events.php:504 src/Content/Widget/VCard.php:104 src/Model/Event.php:80 -#: src/Model/Event.php:107 src/Model/Event.php:469 src/Model/Event.php:919 -#: src/Model/Profile.php:374 src/Module/Contact/Profile.php:369 -#: src/Module/Directory.php:148 src/Module/Notifications/Introductions.php:185 -#: src/Module/Profile/Profile.php:194 -msgid "Location:" -msgstr "Hely:" - -#: mod/events.php:506 mod/events.php:508 -msgid "Title:" -msgstr "Cím:" - -#: mod/events.php:509 mod/events.php:510 -msgid "Share this event" -msgstr "Az esemény megosztása" - -#: mod/events.php:515 mod/message.php:201 mod/message.php:357 -#: mod/photos.php:921 mod/photos.php:1025 mod/photos.php:1295 -#: mod/photos.php:1336 mod/photos.php:1392 mod/photos.php:1466 -#: src/Module/Admin/Item/Source.php:60 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Profile.php:327 -#: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/Delegation.php:148 src/Module/FriendSuggest.php:144 -#: src/Module/Install.php:252 src/Module/Install.php:294 -#: src/Module/Install.php:331 src/Module/Invite.php:178 -#: src/Module/Item/Compose.php:162 src/Module/Profile/Profile.php:247 -#: src/Module/Settings/Profile/Index.php:222 src/Object/Post.php:992 -#: 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:516 src/Module/Profile/Profile.php:248 -msgid "Basic" -msgstr "Alap" - -#: mod/events.php:517 src/Module/Admin/Site.php:441 src/Module/Contact.php:474 -#: src/Module/Profile/Profile.php:249 -msgid "Advanced" -msgstr "Speciális" - -#: mod/events.php:534 -msgid "Failed to remove event" -msgstr "Nem sikerült eltávolítani az eseményt" - -#: mod/fbrowser.php:61 src/Content/Nav.php:194 src/Module/BaseProfile.php:64 -#: view/theme/frio/theme.php:222 -msgid "Photos" -msgstr "Fényképek" - -#: mod/fbrowser.php:120 mod/fbrowser.php:147 -#: src/Module/Settings/Profile/Photo/Index.php:129 -msgid "Upload" -msgstr "Feltöltés" - -#: mod/fbrowser.php:142 -msgid "Files" -msgstr "Fájlok" - -#: mod/follow.php:74 mod/unfollow.php:96 src/Module/RemoteFollow.php:126 -msgid "Submit Request" -msgstr "Kérés elküldése" - -#: 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:138 src/Content/Item.php:397 src/Content/Widget.php:80 -#: src/Model/Contact.php:1109 src/Model/Contact.php:1120 -#: view/theme/vier/theme.php:181 -msgid "Connect/Follow" -msgstr "Kapcsolódás vagy követés" - -#: mod/follow.php:139 src/Module/RemoteFollow.php:125 -msgid "Please answer the following:" -msgstr "Válaszoljon a következőre:" - -#: mod/follow.php:140 mod/unfollow.php:94 -msgid "Your Identity Address:" -msgstr "Az Ön személyazonosság-címe:" - -#: mod/follow.php:141 mod/unfollow.php:100 -#: src/Module/Admin/Blocklist/Contact.php:116 -#: src/Module/Contact/Profile.php:365 -#: src/Module/Notifications/Introductions.php:127 -#: src/Module/Notifications/Introductions.php:196 -msgid "Profile URL" -msgstr "Profil URL" - -#: mod/follow.php:142 src/Module/Contact/Profile.php:377 -#: src/Module/Notifications/Introductions.php:189 -#: src/Module/Profile/Profile.php:207 -msgid "Tags:" -msgstr "Címkék:" - -#: mod/follow.php:153 -#, php-format -msgid "%s knows you" -msgstr "%s ismeri Önt" - -#: mod/follow.php:154 -msgid "Add a personal note:" -msgstr "Személyes jegyzet hozzáadása:" - -#: mod/follow.php:163 mod/unfollow.php:109 src/Module/BaseProfile.php:59 -#: src/Module/Contact.php:444 -msgid "Status Messages and Posts" -msgstr "Állapotüzenetek és bejegyzések" - -#: mod/follow.php:191 -msgid "The contact could not be added." -msgstr "A partnert nem sikerült hozzáadni." - -#: mod/item.php:131 mod/item.php:135 +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 msgid "Unable to locate original post." msgstr "Nem lehet megtalálni az eredeti bejegyzést." -#: mod/item.php:337 mod/item.php:342 -msgid "Empty post discarded." -msgstr "Az üres bejegyzés elvetve." - -#: mod/item.php:682 +#: mod/item.php:138 msgid "Post updated." msgstr "Bejegyzés frissítve." -#: mod/item.php:692 mod/item.php:697 +#: mod/item.php:203 mod/item.php:207 msgid "Item wasn't stored." msgstr "Az elem nem lett eltárolva." -#: mod/item.php:708 +#: mod/item.php:217 msgid "Item couldn't be fetched." msgstr "Az elemet nem sikerült lekérni." -#: mod/item.php:848 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "Az üres bejegyzés elvetve." + +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 -#: src/Module/Debug/ItemBody.php:57 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Az elem nem található." +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 +#: src/Module/Invite.php:42 src/Module/Invite.php:131 +#: src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Channels.php:56 src/Module/Settings/Channels.php:114 +#: src/Module/Settings/Delegation.php:90 src/Module/Settings/Display.php:90 +#: src/Module/Settings/Display.php:193 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:112 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/User/Import.php:84 src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "Hozzáférés megtagadva." + #: mod/lostpass.php:40 msgid "No valid account found." msgstr "Nem található érvényes fiók." @@ -611,7 +152,7 @@ msgid "" "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:161 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " msgstr "Becenév vagy e-mail-cím: " @@ -619,7 +160,7 @@ msgstr "Becenév vagy e-mail-cím: " msgid "Reset" msgstr "Visszaállítás" -#: mod/lostpass.php:146 src/Module/Security/Login.php:173 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 msgid "Password Reset" msgstr "Jelszó visszaállítása" @@ -679,23 +220,11 @@ msgstr "\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe 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:119 -msgid "No matches" -msgstr "Nincs találat" - -#: mod/match.php:98 -msgid "Profile Match" -msgstr "Profilegyezés" - -#: mod/message.php:46 mod/message.php:126 src/Content/Nav.php:288 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 msgid "New Message" msgstr "Új üzenet" -#: mod/message.php:83 mod/wallmessage.php:70 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 msgid "No recipient selected." msgstr "Nincs címzett kiválasztva." @@ -703,62 +232,103 @@ msgstr "Nincs címzett kiválasztva." msgid "Unable to locate contact information." msgstr "Nem lehet megtalálni a partner információit." -#: mod/message.php:90 mod/wallmessage.php:76 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 msgid "Message could not be sent." msgstr "Az üzenetet nem sikerült elküldeni." -#: mod/message.php:93 mod/wallmessage.php:79 +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 msgid "Message collection failure." msgstr "Üzenet-összegyűjtési hiba." -#: mod/message.php:120 src/Module/Notifications/Introductions.php:133 -#: src/Module/Notifications/Introductions.php:168 -#: src/Module/Notifications/Notification.php:84 +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 msgid "Discard" msgstr "Elvetés" -#: mod/message.php:133 src/Content/Nav.php:285 view/theme/frio/theme.php:229 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" msgstr "Üzenetek" -#: mod/message.php:146 +#: mod/message.php:148 msgid "Conversation not found." msgstr "A beszélgetés nem található." -#: mod/message.php:151 +#: mod/message.php:153 msgid "Message was not deleted." msgstr "Az üzenet nem lett törölve." -#: mod/message.php:166 +#: mod/message.php:168 msgid "Conversation was not removed." msgstr "A beszélgetés nem lett eltávolítva." -#: mod/message.php:180 mod/message.php:286 mod/wallmessage.php:124 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 msgid "Please enter a link URL:" msgstr "Írjon be egy hivatkozás URL-t:" -#: mod/message.php:189 mod/wallmessage.php:129 +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 msgid "Send Private Message" msgstr "Személyes üzenet küldése" -#: mod/message.php:190 mod/message.php:347 mod/wallmessage.php:131 +#: mod/message.php:191 mod/message.php:346 msgid "To:" msgstr "Címzett:" -#: mod/message.php:191 mod/message.php:348 mod/wallmessage.php:132 +#: mod/message.php:192 mod/message.php:347 msgid "Subject:" msgstr "Tárgy:" -#: mod/message.php:195 mod/message.php:351 mod/wallmessage.php:138 -#: src/Module/Invite.php:171 +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 msgid "Your message:" msgstr "Az üzenete:" -#: mod/message.php:222 +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "Fénykép feltöltése" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "Webhivatkozás beszúrása" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:587 +msgid "Please wait" +msgstr "Kis türelmet" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 +#: src/Module/Install.php:274 src/Module/Install.php:309 +#: src/Module/Invite.php:178 src/Module/Item/Compose.php:189 +#: src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 +#: src/Object/Post.php:1106 view/theme/duepuntozero/config.php:85 +#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Elküldés" + +#: mod/message.php:223 msgid "No messages." msgstr "Nincsenek üzenetek." -#: mod/message.php:278 +#: mod/message.php:279 msgid "Message not available." msgstr "Az üzenet nem érhető el." @@ -766,11 +336,11 @@ msgstr "Az üzenet nem érhető el." msgid "Delete message" msgstr "Üzenet törlése" -#: mod/message.php:325 mod/message.php:457 +#: mod/message.php:325 mod/message.php:456 msgid "D, d M Y - g:i A" msgstr "Y. M. j., D. – H:i" -#: mod/message.php:340 mod/message.php:454 +#: mod/message.php:340 mod/message.php:453 msgid "Delete conversation" msgstr "Beszélgetés törlése" @@ -780,841 +350,470 @@ msgid "" "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:346 +#: mod/message.php:345 msgid "Send Reply" msgstr "Válasz küldése" -#: mod/message.php:428 +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "Ismeretlen küldő – %s" -#: mod/message.php:430 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "Ön és %s" -#: mod/message.php:432 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "%s és Ön" -#: mod/message.php:460 +#: mod/message.php:459 #, 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:106 +#: mod/notes.php:52 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "Személyes jegyzetek" -#: mod/notes.php:55 +#: mod/notes.php:56 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:38 -msgid "Subscribing to contacts" -msgstr "Feliratkozás a partnerekre" +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:161 +msgid "Save" +msgstr "Mentés" -#: mod/ostatus_subscribe.php:48 -msgid "No contact provided." -msgstr "Nincs partner megadva." +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "A felhasználó nem található." -#: mod/ostatus_subscribe.php:54 -msgid "Couldn't fetch information for contact." -msgstr "Nem sikerült lekérni a partner információit." - -#: mod/ostatus_subscribe.php:65 -msgid "Couldn't fetch friends for contact." -msgstr "Nem sikerült lekérni a partner ismerőseit." - -#: mod/ostatus_subscribe.php:71 mod/ostatus_subscribe.php:82 -msgid "Couldn't fetch following contacts." -msgstr "Nem sikerült lekérni a következő partnereket." - -#: mod/ostatus_subscribe.php:77 -msgid "Couldn't fetch remote profile." -msgstr "Nem sikerült lekérni a távoli profilt." - -#: mod/ostatus_subscribe.php:87 -msgid "Unsupported network" -msgstr "Nem támogatott hálózat" - -#: mod/ostatus_subscribe.php:103 mod/repair_ostatus.php:51 -msgid "Done" -msgstr "Kész" - -#: mod/ostatus_subscribe.php:117 -msgid "success" -msgstr "sikeres" - -#: mod/ostatus_subscribe.php:119 -msgid "failed" -msgstr "sikertelen" - -#: mod/ostatus_subscribe.php:122 -msgid "ignored" -msgstr "mellőzve" - -#: mod/ostatus_subscribe.php:127 mod/repair_ostatus.php:57 -msgid "Keep this window open until done." -msgstr "Tartsa nyitva ezt az ablakot, amíg el nem készül." - -#: mod/photos.php:108 src/Module/BaseProfile.php:67 +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 msgid "Photo Albums" msgstr "Fényképalbumok" -#: mod/photos.php:109 mod/photos.php:1584 +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 msgid "Recent Photos" msgstr "Legutóbbi fényképek" -#: mod/photos.php:111 mod/photos.php:1073 mod/photos.php:1586 +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 msgid "Upload New Photos" msgstr "Új fényképek feltöltése" -#: mod/photos.php:129 src/Module/BaseSettings.php:35 +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 msgid "everybody" msgstr "mindenki" -#: mod/photos.php:167 +#: mod/photos.php:159 msgid "Contact information unavailable" msgstr "A partner információi nem érhetők el" -#: mod/photos.php:196 +#: mod/photos.php:188 msgid "Album not found." msgstr "Az album nem található." -#: mod/photos.php:250 +#: mod/photos.php:244 msgid "Album successfully deleted" msgstr "Az album sikeresen törölve" -#: mod/photos.php:252 +#: mod/photos.php:246 msgid "Album was empty." msgstr "Az album üres volt." -#: mod/photos.php:284 +#: mod/photos.php:277 msgid "Failed to delete the photo." msgstr "Nem sikerült törölni a fényképet." -#: mod/photos.php:553 +#: mod/photos.php:545 msgid "a photo" msgstr "egy fényképen" -#: mod/photos.php:553 +#: mod/photos.php:545 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s meg lett jelölve %2$s %3$s által" -#: mod/photos.php:636 mod/photos.php:639 mod/photos.php:666 -#: mod/wall_upload.php:201 src/Module/Settings/Profile/Photo/Index.php:60 -#, 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:582 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Nyilvános hozzáférés megtagadva." -#: mod/photos.php:642 -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" - -#: mod/photos.php:645 -msgid "Image file is missing" -msgstr "A képfájl hiányzik" - -#: mod/photos.php:650 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "A kiszolgáló jelenleg nem tud új fájlfeltöltést fogadni, vegye fel a kapcsolatot a rendszergazdával" - -#: mod/photos.php:674 -msgid "Image file is empty." -msgstr "A képfájl üres." - -#: mod/photos.php:689 mod/wall_upload.php:163 -#: src/Module/Settings/Profile/Photo/Index.php:69 -msgid "Unable to process image." -msgstr "Nem lehet feldolgozni a képet." - -#: mod/photos.php:715 mod/wall_upload.php:226 -#: src/Module/Settings/Profile/Photo/Index.php:96 -msgid "Image upload failed." -msgstr "A kép feltöltése sikertelen." - -#: mod/photos.php:807 +#: mod/photos.php:587 msgid "No photos selected" msgstr "Nincsenek fényképek kijelölve" -#: mod/photos.php:876 -msgid "Access to this item is restricted." -msgstr "Az elemhez való hozzáférés korlátozott." +#: mod/photos.php:721 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "A legnagyobb elfogadott képméret %s" -#: mod/photos.php:931 +#: mod/photos.php:728 msgid "Upload Photos" msgstr "Fényképek feltöltése" -#: mod/photos.php:935 mod/photos.php:1021 +#: mod/photos.php:732 mod/photos.php:820 msgid "New album name: " msgstr "Új album neve: " -#: mod/photos.php:936 +#: mod/photos.php:733 msgid "or select existing album:" msgstr "vagy meglévő album kiválasztása:" -#: mod/photos.php:937 +#: mod/photos.php:734 msgid "Do not show a status post for this upload" msgstr "Ne jelenítsen meg állapotbejegyzést ehhez a feltöltéshez" -#: mod/photos.php:1002 +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "Jogosultságok" + +#: mod/photos.php:801 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Valóban törölni szeretné ezt a fényképalbumot és az összes fényképét?" -#: mod/photos.php:1003 mod/photos.php:1026 +#: mod/photos.php:802 mod/photos.php:825 msgid "Delete Album" msgstr "Album törlése" -#: mod/photos.php:1030 +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Mégse" + +#: mod/photos.php:829 msgid "Edit Album" msgstr "Album szerkesztése" -#: mod/photos.php:1031 +#: mod/photos.php:830 msgid "Drop Album" msgstr "Album eldobása" -#: mod/photos.php:1035 +#: mod/photos.php:834 msgid "Show Newest First" msgstr "Legújabb megjelenítése először" -#: mod/photos.php:1037 +#: mod/photos.php:836 msgid "Show Oldest First" msgstr "Legrégebbi megjelenítése először" -#: mod/photos.php:1058 mod/photos.php:1569 +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 msgid "View Photo" msgstr "Fénykép megtekintése" -#: mod/photos.php:1091 +#: mod/photos.php:889 msgid "Permission denied. Access to this item may be restricted." msgstr "Hozzáférés megtagadva. Az elemhez való hozzáférés korlátozva lehet." -#: mod/photos.php:1093 +#: mod/photos.php:891 msgid "Photo not available" msgstr "A fénykép nem érhető el" -#: mod/photos.php:1103 +#: mod/photos.php:901 msgid "Do you really want to delete this photo?" msgstr "Valóban törölni szeretné ezt a fényképet?" -#: mod/photos.php:1104 mod/photos.php:1296 +#: mod/photos.php:902 mod/photos.php:1102 msgid "Delete Photo" msgstr "Fénykép törlése" -#: mod/photos.php:1196 +#: mod/photos.php:1000 msgid "View photo" msgstr "Fénykép megtekintése" -#: mod/photos.php:1198 +#: mod/photos.php:1002 msgid "Edit photo" msgstr "Fénykép szerkesztése" -#: mod/photos.php:1199 +#: mod/photos.php:1003 msgid "Delete photo" msgstr "Fénykép törlése" -#: mod/photos.php:1200 +#: mod/photos.php:1004 msgid "Use as profile photo" msgstr "Használat profilfényképként" -#: mod/photos.php:1207 +#: mod/photos.php:1011 msgid "Private Photo" msgstr "Személyes fénykép" -#: mod/photos.php:1213 +#: mod/photos.php:1017 msgid "View Full Size" msgstr "Teljes méret megtekintése" -#: mod/photos.php:1264 +#: mod/photos.php:1070 msgid "Tags: " msgstr "Címkék: " -#: mod/photos.php:1267 +#: mod/photos.php:1073 msgid "[Select tags to remove]" msgstr "[Eltávolítandó címkék kiválasztása]" -#: mod/photos.php:1282 +#: mod/photos.php:1088 msgid "New album name" msgstr "Új album neve" -#: mod/photos.php:1283 +#: mod/photos.php:1089 msgid "Caption" msgstr "Felirat" -#: mod/photos.php:1284 +#: mod/photos.php:1090 msgid "Add a Tag" msgstr "Címke hozzáadása" -#: mod/photos.php:1284 +#: mod/photos.php:1090 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Példa: @bob, @Barbara_Jensen, @jim@example.com, #Budapest, #kemping" -#: mod/photos.php:1285 +#: mod/photos.php:1091 msgid "Do not rotate" msgstr "Ne forgassa el" -#: mod/photos.php:1286 +#: mod/photos.php:1092 msgid "Rotate CW (right)" msgstr "Forgatás jobbra" -#: mod/photos.php:1287 +#: mod/photos.php:1093 msgid "Rotate CCW (left)" msgstr "Forgatás balra" -#: mod/photos.php:1333 mod/photos.php:1389 mod/photos.php:1463 -#: src/Module/Contact.php:544 src/Module/Item/Compose.php:160 -#: src/Object/Post.php:989 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1103 msgid "This is you" msgstr "Ez Ön" -#: mod/photos.php:1335 mod/photos.php:1391 mod/photos.php:1465 -#: src/Object/Post.php:532 src/Object/Post.php:991 +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:581 +#: src/Object/Post.php:1105 msgid "Comment" msgstr "Hozzászólás" -#: mod/photos.php:1424 src/Content/Conversation.php:629 -#: src/Object/Post.php:256 +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1119 +msgid "Preview" +msgstr "Előnézet" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1107 +msgid "Loading..." +msgstr "Betöltés…" + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:261 msgid "Select" msgstr "Kiválasztás" -#: mod/photos.php:1425 mod/settings.php:350 src/Content/Conversation.php:630 -#: src/Module/Admin/Users/Active.php:139 -#: src/Module/Admin/Users/Blocked.php:140 src/Module/Admin/Users/Index.php:153 +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 msgid "Delete" msgstr "Törlés" -#: mod/photos.php:1486 src/Object/Post.php:379 +#: mod/photos.php:1298 src/Object/Post.php:409 msgid "Like" msgstr "Tetszik" -#: mod/photos.php:1487 src/Object/Post.php:379 +#: mod/photos.php:1299 src/Object/Post.php:409 msgid "I like this (toggle)" msgstr "Ezt kedvelem (átváltás)" -#: mod/photos.php:1488 src/Object/Post.php:380 +#: mod/photos.php:1300 src/Object/Post.php:410 msgid "Dislike" msgstr "Nem tetszik" -#: mod/photos.php:1490 src/Object/Post.php:380 +#: mod/photos.php:1302 src/Object/Post.php:410 msgid "I don't like this (toggle)" msgstr "Ezt nem kedvelem (átváltás)" -#: mod/photos.php:1512 +#: mod/photos.php:1324 msgid "Map" msgstr "Térkép" -#: mod/photos.php:1575 -msgid "View Album" -msgstr "Album megtekintése" - -#: mod/redir.php:51 mod/redir.php:104 -msgid "Bad Request." -msgstr "Hibás kérés." - -#: mod/redir.php:57 mod/redir.php:131 src/Module/Contact/Advanced.php:70 -#: src/Module/Contact/Advanced.php:109 src/Module/Contact/Contacts.php:55 -#: src/Module/Contact/Conversations.php:78 -#: src/Module/Contact/Conversations.php:83 -#: src/Module/Contact/Conversations.php:88 src/Module/Contact/Media.php:43 -#: src/Module/Contact/Posts.php:72 src/Module/Contact/Posts.php:77 -#: src/Module/Contact/Posts.php:82 src/Module/Contact/Profile.php:141 -#: src/Module/Contact/Profile.php:146 src/Module/Contact/Profile.php:151 -#: src/Module/FriendSuggest.php:70 src/Module/FriendSuggest.php:108 -#: src/Module/Group.php:99 src/Module/Group.php:108 -msgid "Contact not found." -msgstr "A partner nem található." - -#: mod/removeme.php:65 src/Navigation/Notifications/Repository/Notify.php:464 -msgid "[Friendica System Notify]" -msgstr "[Friendica rendszerértesítés]" - -#: mod/removeme.php:65 -msgid "User deleted their account" -msgstr "A felhasználó törölte a fiókját" - -#: mod/removeme.php:66 -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." - -#: mod/removeme.php:67 -#, php-format -msgid "The user id is %d" -msgstr "A felhasználó-azonosító %d" - -#: mod/removeme.php:101 mod/removeme.php:104 -msgid "Remove My Account" -msgstr "Saját fiók eltávolítása" - -#: mod/removeme.php:102 -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:103 -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:46 src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Security/TwoFactor/Verify.php:98 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Hiba" -msgstr[1] "Hibák" - -#: mod/settings.php:122 -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." - -#: mod/settings.php:175 -msgid "Connected Apps" -msgstr "Kapcsolt alkalmazások" - -#: mod/settings.php:176 src/Module/Admin/Blocklist/Contact.php:106 -#: 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:177 src/Content/Nav.php:214 -msgid "Home Page" -msgstr "Kezdőlap" - -#: mod/settings.php:178 src/Module/Admin/Queue.php:78 -msgid "Created" -msgstr "Létrehozva" - -#: mod/settings.php:179 -msgid "Remove authorization" -msgstr "Felhatalmazás eltávolítása" - -#: mod/settings.php:205 mod/settings.php:237 mod/settings.php:268 -#: mod/settings.php:352 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81 -#: src/Module/Admin/Site.php:436 src/Module/Admin/Themes/Index.php:113 -#: src/Module/Admin/Tos.php:83 src/Module/Settings/Account.php:562 -#: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:193 -msgid "Save Settings" -msgstr "Beállítások mentése" - -#: mod/settings.php:213 -msgid "Addon Settings" -msgstr "Bővítménybeállítások" - -#: mod/settings.php:214 -msgid "No Addon settings configured" -msgstr "Nincsenek bővítménybeállítások meghatározva" - -#: mod/settings.php:235 -msgid "Additional Features" -msgstr "További funkciók" - -#: mod/settings.php:273 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "enabled" -msgstr "engedélyezve" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "disabled" -msgstr "letiltva" - -#: mod/settings.php:273 mod/settings.php:274 -#, 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:274 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: mod/settings.php:300 -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:305 mod/settings.php:350 -msgid "None" -msgstr "Nincs" - -#: mod/settings.php:311 src/Module/BaseSettings.php:78 -msgid "Social Networks" -msgstr "Közösségi hálózatok" - -#: mod/settings.php:316 -msgid "General Social Media Settings" -msgstr "Általános közösségimédia-beállítások" - -#: mod/settings.php:319 -msgid "Followed content scope" -msgstr "Követett tartalom hatóköre" - -#: mod/settings.php:321 -msgid "" -"By default, conversations in which your follows participated but didn't " -"start will be shown in your timeline. You can turn this behavior off, or " -"expand it to the conversations in which your follows liked a post." -msgstr "Alapértelmezetten az idővonalán megjelennek azok a beszélgetések, amelyekben a követői részt vettek, de nem ők indították el. Ezt a viselkedést kikapcsolhatja, vagy kiterjesztheti azokra a beszélgetésekre, amelyekben a követőinek tetszett egy bejegyzés." - -#: mod/settings.php:323 -msgid "Only conversations my follows started" -msgstr "Csak a követőim által indított beszélgetések" - -#: mod/settings.php:324 -msgid "Conversations my follows started or commented on (default)" -msgstr "A követőim által indított vagy hozzászólt beszélgetések (alapértelmezett)" - -#: mod/settings.php:325 -msgid "Any conversation my follows interacted with, including likes" -msgstr "A követőim által interakcióba került beszélgetések, beleértve a kedveléseket is" - -#: mod/settings.php:328 -msgid "Enable Content Warning" -msgstr "Tartalomfigyelmeztetés engedélyezése" - -#: mod/settings.php:328 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect 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 engedélyezi az automatikus összecsukást, ahelyett hogy beállítaná 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:329 -msgid "Enable intelligent shortening" -msgstr "Intelligens rövidítés engedélyezése" - -#: mod/settings.php:329 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If disabled, every shortened post will always point to the original " -"friendica post." -msgstr "Általában a rendszer megpróbálja megkeresni a legjobb hivatkozást a rövidített bejegyzésekhez történő hozzáadáshoz. Ha le van tiltva, akkor minden egyes rövidített bejegyzés mindig az eredeti Friendica bejegyzésre fog mutatni." - -#: mod/settings.php:330 -msgid "Enable simple text shortening" -msgstr "Egyszerű szövegrövidítés engedélyezése" - -#: mod/settings.php:330 -msgid "" -"Normally the system shortens posts at the next line feed. If this option is " -"enabled then the system will shorten the text at the maximum character " -"limit." -msgstr "Általában a rendszer lerövidíti a bejegyzéseket a következő soremelésnél. Ha ez a beállítás engedélyezve van, akkor a rendszer a legnagyobb karakterkorlátnál fogja rövidíteni a szöveget." - -#: mod/settings.php:331 -msgid "Attach the link title" -msgstr "A hivatkozás címének csatolása" - -#: mod/settings.php:331 -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:332 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "Az örökölt ActivityPub/GNU Social fiókja" - -#: mod/settings.php:332 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "Ha megadja itt a régi, egy ActivityPub alapú rendszerből származó fiókja nevét, illetve a GNU Social vagy Statusnet fiókja nevét (felhasználó@tartomány.tld formátumban), akkor a partnerei automatikusan hozzá lesznek adva. A mező ki lesz ürítve, ha elkészült." - -#: mod/settings.php:335 -msgid "Repair OStatus subscriptions" -msgstr "OStatus feliratkozások javítása" - -#: mod/settings.php:339 -msgid "Email/Mailbox Setup" -msgstr "E-mail vagy postafiók-beállítások" - -#: mod/settings.php:340 -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:341 -msgid "Last successful email check:" -msgstr "Legutóbbi sikeres e-mail-ellenőrzés:" - -#: mod/settings.php:343 -msgid "IMAP server name:" -msgstr "IMAP-kiszolgáló neve:" - -#: mod/settings.php:344 -msgid "IMAP port:" -msgstr "IMAP port:" - -#: mod/settings.php:345 -msgid "Security:" -msgstr "Biztonság:" - -#: mod/settings.php:346 -msgid "Email login name:" -msgstr "E-mail bejelentkezési neve:" - -#: mod/settings.php:347 -msgid "Email password:" -msgstr "E-mail jelszava:" - -#: mod/settings.php:348 -msgid "Reply-to address:" -msgstr "Válaszcím:" - -#: mod/settings.php:349 -msgid "Send public posts to all email contacts:" -msgstr "Nyilvános bejegyzések küldése az összes e-mail partnernek:" - -#: mod/settings.php:350 -msgid "Action after import:" -msgstr "Importálás utáni művelet:" - -#: mod/settings.php:350 src/Content/Nav.php:282 -msgid "Mark as seen" -msgstr "Megjelölés olvasottként" - -#: mod/settings.php:350 -msgid "Move to folder" -msgstr "Áthelyezés mappába" - -#: mod/settings.php:351 -msgid "Move to folder:" -msgstr "Áthelyezés mappába:" - -#: 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/suggest.php:55 src/Content/Widget.php:83 view/theme/vier/theme.php:184 -msgid "Friend Suggestions" -msgstr "Ismerős javaslatok" - -#: mod/tagger.php:78 src/Content/Item.php:297 src/Model/Item.php:2765 -msgid "photo" -msgstr "fénykép" - -#: mod/tagger.php:78 src/Content/Item.php:291 src/Content/Item.php:301 -msgid "status" -msgstr "állapot" - -#: mod/tagger.php:111 src/Content/Item.php:311 -#, 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" - -#: 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/tagrm.php:126 src/Module/Settings/Delegation.php:179 -#: src/Module/Settings/TwoFactor/Trusted.php:142 -msgid "Remove" -msgstr "Eltávolítás" - -#: mod/uimport.php:46 -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:55 src/Module/Register.php:99 -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:62 src/Module/Register.php:173 -msgid "Import" -msgstr "Importálás" - -#: mod/uimport.php:64 -msgid "Move account" -msgstr "Fiók áthelyezése" - -#: mod/uimport.php:65 -msgid "You can import an account from another Friendica server." -msgstr "Importálhat egy fiókot egy másik Friendica kiszolgálóról." - -#: mod/uimport.php:66 -msgid "" -"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." -msgstr "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." - -#: mod/uimport.php:67 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "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." - -#: mod/uimport.php:68 -msgid "Account file" -msgstr "Fiókfájl" - -#: mod/uimport.php:68 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"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/unfollow.php:65 mod/unfollow.php:134 -msgid "You aren't following this contact." -msgstr "Ön nem követi ezt a partnert." - -#: mod/unfollow.php:71 -msgid "Unfollowing is currently not supported by your network." -msgstr "A követés megszüntetését jelenleg nem támogatja a hálózata." - -#: mod/unfollow.php:92 -msgid "Disconnect/Unfollow" -msgstr "Leválasztás vagy követés megszüntetése" - -#: mod/unfollow.php:143 -msgid "Contact was successfully unfollowed" -msgstr "A partner követése sikeresen meg lett szüntetve" - -#: mod/unfollow.php:146 -msgid "Unable to unfollow this contact, please contact your administrator" -msgstr "Nem lehet megszüntetni ennek a partnernek a követését, vegye fel a kapcsolatot az adminisztrátorral" - -#: mod/wall_attach.php:40 mod/wall_attach.php:46 mod/wall_attach.php:75 -#: mod/wall_upload.php:54 mod/wall_upload.php:63 mod/wall_upload.php:97 -#: mod/wall_upload.php:148 mod/wall_upload.php:150 -msgid "Invalid request." -msgstr "Érvénytelen kérés." - -#: mod/wall_attach.php:93 -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:93 -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:104 -#, 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:119 -msgid "File upload failed." -msgstr "A fájl feltöltése sikertelen." - -#: mod/wall_upload.php:218 src/Model/Photo.php:1087 -msgid "Wall Photos" -msgstr "Falfényképek" - -#: mod/wallmessage.php:62 mod/wallmessage.php:116 -#, 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:73 -msgid "Unable to check your home location." -msgstr "Nem lehet ellenőrizni az otthona helyét." - -#: mod/wallmessage.php:97 mod/wallmessage.php:104 -msgid "No recipient." -msgstr "Nincs címzett." - -#: mod/wallmessage.php:130 -#, 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:473 msgid "No system theme config value set." msgstr "Nincs rendszertéma beállítási érték megadva." -#: src/App.php:594 +#: src/App.php:580 msgid "Apologies but the website is unavailable at the moment." msgstr "Elnézést, de a weboldal jelenleg nem érhető el." -#: src/App/Page.php:276 +#: src/App/Page.php:248 msgid "Delete this item?" msgstr "Törli ezt az elemet?" -#: src/App/Page.php:277 +#: src/App/Page.php:249 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:347 +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "Mellőzi ezt a szerzőt? Nem lesz képes megtekinteni az ő bejegyzéseit és értesítéseit." + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "Összecsukja ennek a szerzőnek a bejegyzéseit?" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "Mellőzi ennek a szerzőnek a kiszolgálóját?" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "Nem fog látni semmilyen tartalmat erről a kiszolgálóról, beleértve a hálózat oldalon, a közösségi oldalakon és az egyéni beszélgetésekben lévő újra megosztásokat is." + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "A kedvelés sikertelen" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "A nem kedvelés sikertelen" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "A megosztás sikertelen" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "A részvétel sikertelen" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "Háttérprogram hiba" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "Hálózati hiba" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "Dobja ide a fájlokat a feltöltéséhez" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "A böngészője nem támogatja a fogd és vidd fájlfeltöltéseket." + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "Használja az alábbi tartalék űrlapot a fájlok feltöltéséhez, mint a régi időkben." + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "A fájl túl nagy ({{filesize}} MiB). A legnagyobb fájlméret: {{maxFilesize}} MiB." + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "Nem tud ilyen típusú fájlokat feltölteni." + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "A kiszolgáló {{statusCode}} állapotkóddal válaszolt." + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "Feltöltés megszakítása" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "A feltöltés megszakítva." + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "Biztosan meg szeretné szakítani ezt a feltöltést?" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "Fájl eltávolítása" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "Nem tud több fájlt feltölteni." + +#: src/App/Page.php:351 msgid "toggle mobile" msgstr "váltás mobilra" -#: src/App/Router.php:282 +#: src/App/Router.php:309 #, 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:284 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 msgid "Page not found." msgstr "Az oldal nem található." -#: src/App/Router.php:312 +#: src/App/Router.php:323 msgid "You must be logged in to use addons. " msgstr "Bejelentkezve kell lennie a bővítmények használatához." -#: src/BaseModule.php:392 +#: src/BaseModule.php:403 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:419 +#: src/BaseModule.php:430 msgid "All contacts" msgstr "Összes partner" -#: src/BaseModule.php:424 src/Content/Widget.php:235 src/Core/ACL.php:194 -#: src/Module/Contact.php:367 src/Module/PermissionTooltip.php:122 -#: src/Module/PermissionTooltip.php:144 +#: src/BaseModule.php:435 src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 +#: src/Module/Settings/Channels.php:120 msgid "Followers" msgstr "Követők" -#: src/BaseModule.php:429 src/Content/Widget.php:236 -#: src/Module/Contact.php:368 +#: src/BaseModule.php:440 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 src/Module/Settings/Channels.php:119 msgid "Following" msgstr "Követés" -#: src/BaseModule.php:434 src/Content/Widget.php:237 -#: src/Module/Contact.php:369 +#: src/BaseModule.php:445 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 msgid "Mutual friends" msgstr "Kölcsönösen ismerősök" -#: src/BaseModule.php:442 +#: src/BaseModule.php:453 msgid "Common" msgstr "Közös" @@ -1640,73 +839,73 @@ 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 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, 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:66 +#: src/Module/Moderation/Blocklist/Contact.php:82 msgid "The contact has been blocked from the node" msgstr "A partner tiltva lett a csomópontról" -#: src/Console/MergeContacts.php:74 +#: src/Console/MergeContacts.php:75 #, php-format msgid "%d %s, %d duplicates." msgstr "%d %s, %d kettőzés." -#: src/Console/MergeContacts.php:77 +#: src/Console/MergeContacts.php:78 #, php-format msgid "uri-id is empty for contact %s." msgstr "Az URI-azonosító üres %s partnernél." -#: src/Console/MergeContacts.php:90 +#: src/Console/MergeContacts.php:91 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "Nem található érvényes első partner a(z) %d. URI-azonosítóhoz." -#: src/Console/MergeContacts.php:101 +#: src/Console/MergeContacts.php:102 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "Hibás kettőzés található a(z) %d. URI-azonosítónál ebben: %d (URL: %s != %s)." -#: src/Console/MergeContacts.php:105 +#: src/Console/MergeContacts.php:106 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "Hibás kettőzés található a(z) %d. URI-azonosítónál ebben: %d (NURL: %s != %s)." -#: src/Console/MergeContacts.php:141 +#: src/Console/MergeContacts.php:142 #, php-format msgid "Deletion of id %d failed" msgstr "A(z) %d. azonosító törlése sikertelen" -#: src/Console/MergeContacts.php:143 +#: src/Console/MergeContacts.php:144 #, php-format msgid "Deletion of id %d was successful" msgstr "A(z) %d. azonosító törlése sikeres volt" -#: src/Console/MergeContacts.php:149 +#: src/Console/MergeContacts.php:150 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "„%s” frissítése ebben: „%s”, %d. értéktől %d. értékig" -#: src/Console/MergeContacts.php:151 +#: src/Console/MergeContacts.php:152 msgid " - found" msgstr " – megtalálva" -#: src/Console/MergeContacts.php:158 +#: src/Console/MergeContacts.php:159 msgid " - failed" msgstr " – sikertelen" -#: src/Console/MergeContacts.php:160 +#: src/Console/MergeContacts.php:161 msgid " - success" msgstr " – sikeres" -#: src/Console/MergeContacts.php:164 +#: src/Console/MergeContacts.php:165 msgid " - deleted" msgstr " – törölve" -#: src/Console/MergeContacts.php:167 +#: src/Console/MergeContacts.php:168 msgid " - done" msgstr " – kész" @@ -1764,17 +963,26 @@ msgstr "Az összes függőben lévő bejegyzésfrissítés kész." msgid "Enter user nickname: " msgstr "Felhasználó becenevének megadása: " +#: src/Console/User.php:182 src/Model/User.php:710 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "A felhasználó nem található" + #: src/Console/User.php:202 msgid "Enter new password: " msgstr "Új jelszó megadása: " -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:65 -#: src/Module/Settings/Account.php:74 +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 msgid "Password update failed. Please try again." msgstr "A jelszó frissítése sikertelen. Próbálja újra." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:68 -#: src/Module/Settings/Account.php:77 +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 msgid "Password changed." msgstr "A jelszó megváltoztatva." @@ -1863,10 +1071,14 @@ msgstr "OStatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 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 +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 msgid "Email" msgstr "E-mail" @@ -1922,266 +1134,508 @@ msgstr "ActivityPub" msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:178 +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "Tumblr" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "Bluesky" + +#: src/Content/ContactSelector.php:180 #, php-format msgid "%s (via %s)" msgstr "%s (ezen keresztül: %s)" -#: src/Content/Conversation.php:207 -#, php-format -msgid "%s likes this." -msgstr "%s kedveli ezt." - -#: src/Content/Conversation.php:210 -#, php-format -msgid "%s doesn't like this." -msgstr "%s nem kedveli ezt." - -#: src/Content/Conversation.php:213 -#, php-format -msgid "%s attends." -msgstr "%s részt vesz." - -#: src/Content/Conversation.php:216 -#, php-format -msgid "%s doesn't attend." -msgstr "%s nem vesz részt." - -#: src/Content/Conversation.php:219 -#, php-format -msgid "%s attends maybe." -msgstr "%s talán részt vesz." - -#: src/Content/Conversation.php:222 src/Content/Conversation.php:260 -#: src/Content/Conversation.php:873 -#, php-format -msgid "%s reshared this." -msgstr "%s újra megosztotta ezt." - -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:226 msgid "and" msgstr "és" -#: src/Content/Conversation.php:231 +#: src/Content/Conversation.php:229 #, php-format msgid "and %d other people" msgstr "és %d más személy" +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "%2$s kedveli ezt." +msgstr[1] "%2$s kedveli ezt." + +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "%2$s nem kedveli ezt." +msgstr[1] "%2$s nem kedveli ezt." + #: src/Content/Conversation.php:239 #, php-format -msgid "%2$d people like this" -msgstr "%2$d személy kedveli ezt" +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "%2$s részt vesz." +msgstr[1] "%2$s részt vesz." -#: src/Content/Conversation.php:240 +#: src/Content/Conversation.php:241 #, php-format -msgid "%s like this." -msgstr "%s kedveli ezt." +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "%2$s nem vesz részt." +msgstr[1] "%2$s nem vesz részt." #: src/Content/Conversation.php:243 #, php-format -msgid "%2$d people don't like this" -msgstr "%2$d személy nem kedveli ezt" +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "%2$s talán részt vesz." +msgstr[1] "%2$s talán részt vesz." -#: src/Content/Conversation.php:244 +#: src/Content/Conversation.php:245 #, php-format -msgid "%s don't like this." -msgstr "%s nem kedveli ezt." +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "%2$s újra megosztotta ezt." +msgstr[1] "%2$s újra megosztotta ezt." -#: src/Content/Conversation.php:247 +#: src/Content/Conversation.php:274 #, php-format -msgid "%2$d people attend" -msgstr "%2$d személy részt vesz" +msgid " likes this" +msgid_plural " like this" +msgstr[0] " kedveli ezt" +msgstr[1] " kedveli ezt" -#: src/Content/Conversation.php:248 +#: src/Content/Conversation.php:277 #, php-format -msgid "%s attend." -msgstr "%s részt vesz." +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] " nem kedveli ezt" +msgstr[1] " nem kedveli ezt" -#: src/Content/Conversation.php:251 +#: src/Content/Conversation.php:280 #, php-format -msgid "%2$d people don't attend" -msgstr "%2$d személy nem vesz részt" +msgid " attends" +msgid_plural " attend" +msgstr[0] " részt vesz" +msgstr[1] " részt vesz" -#: src/Content/Conversation.php:252 +#: src/Content/Conversation.php:283 #, php-format -msgid "%s don't attend." -msgstr "%s nem vesz részt." +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] " nem vesz részt" +msgstr[1] " nem vesz részt" -#: src/Content/Conversation.php:255 +#: src/Content/Conversation.php:286 #, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d személy talán részt vesz" +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] " talán részt vesz" +msgstr[1] " talán részt vesz" -#: src/Content/Conversation.php:256 +#: src/Content/Conversation.php:289 #, php-format -msgid "%s attend maybe." -msgstr "%s talán részt vesz." +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] " újra megosztotta ezt" +msgstr[1] " újra megosztotta ezt" -#: src/Content/Conversation.php:259 -#, php-format -msgid "%2$d people reshared this" -msgstr "%2$d személy újra megosztotta ezt" - -#: src/Content/Conversation.php:307 +#: src/Content/Conversation.php:336 msgid "Visible to everybody" msgstr "Látható mindenkinek" -#: src/Content/Conversation.php:308 src/Module/Item/Compose.php:171 -#: src/Object/Post.php:1002 +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1118 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Írjon be egy kép, videó, hang vagy weboldal URL-t:" -#: src/Content/Conversation.php:309 +#: src/Content/Conversation.php:338 msgid "Tag term:" msgstr "Címkézési kifejezés:" -#: src/Content/Conversation.php:310 src/Module/Filer/SaveTag.php:72 +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 msgid "Save to Folder:" msgstr "Mentés mappába:" -#: src/Content/Conversation.php:311 +#: src/Content/Conversation.php:340 msgid "Where are you right now?" msgstr "Hol van most éppen?" -#: src/Content/Conversation.php:312 +#: src/Content/Conversation.php:341 msgid "Delete item(s)?" msgstr "Törli az elemeket?" -#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:143 +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 msgid "Created at" msgstr "Létrehozva" -#: src/Content/Conversation.php:334 +#: src/Content/Conversation.php:363 msgid "New Post" msgstr "Új bejegyzés" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:366 msgid "Share" msgstr "Megosztás" -#: src/Content/Conversation.php:348 src/Module/Item/Compose.php:168 -#: src/Object/Post.php:999 +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "fénykép feltöltése" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Fájl csatolása" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "fájl csatolása" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1108 +msgid "Bold" +msgstr "Félkövér" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1109 +msgid "Italic" +msgstr "Dőlt" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1110 +msgid "Underline" +msgstr "Aláhúzott" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1112 +msgid "Quote" +msgstr "Idézet" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1113 +msgid "Add emojis" +msgstr "Emodzsik hozzáadása" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1111 +msgid "Content Warning" +msgstr "Tartalom figyelmeztetés" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1114 +msgid "Code" +msgstr "Kód" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1115 msgid "Image" msgstr "Kép" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1116 +msgid "Link" +msgstr "Hivatkozás" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1117 +msgid "Link or Media" +msgstr "Hivatkozás vagy média" + +#: src/Content/Conversation.php:382 msgid "Video" msgstr "Videó" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:184 +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "Az Ön helyének beállítása" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "hely beállítása" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "Böngésző helyének törlése" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "hely törlése" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Cím beállítása" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Kategóriák (vesszővel elválasztott lista)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 msgid "Scheduled at" msgstr "Ütemezve ekkor" -#: src/Content/Conversation.php:657 src/Object/Post.php:244 -msgid "Pinned item" -msgstr "Kitűzött elem" +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Jogosultsági beállítások" -#: src/Content/Conversation.php:673 src/Object/Post.php:486 -#: src/Object/Post.php:487 -#, php-format -msgid "View %s's profile @ %s" -msgstr "%s profiljának megtekintése ezen: %s" +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Nyilvános bejegyzés" -#: src/Content/Conversation.php:686 src/Object/Post.php:474 -msgid "Categories:" -msgstr "Kategóriák:" +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:132 +#: src/Model/Profile.php:479 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "Üzenet" -#: src/Content/Conversation.php:687 src/Object/Post.php:475 -msgid "Filed under:" -msgstr "Iktatva itt:" +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Böngésző" -#: src/Content/Conversation.php:695 src/Object/Post.php:500 -#, php-format -msgid "%s from %s" -msgstr "%s tőle: %s" +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "Írás oldal megnyitása" -#: src/Content/Conversation.php:711 -msgid "View in context" -msgstr "Megtekintés környezetben" - -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:595 msgid "remove" msgstr "eltávolítás" -#: src/Content/Conversation.php:780 +#: src/Content/Conversation.php:599 msgid "Delete Selected Items" msgstr "Kijelölt elemek törlése" -#: src/Content/Conversation.php:845 src/Content/Conversation.php:848 -#: src/Content/Conversation.php:851 src/Content/Conversation.php:854 +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 #, php-format msgid "You had been addressed (%s)." msgstr "Önt megszólították (%s)." -#: src/Content/Conversation.php:857 +#: src/Content/Conversation.php:769 #, php-format msgid "You are following %s." msgstr "Ön követi őt: %s." -#: src/Content/Conversation.php:860 +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "Ön feliratkozott erre: %s." + +#: src/Content/Conversation.php:776 msgid "You subscribed to one or more tags in this post." msgstr "Ön feliratkozott egy vagy több címkére ebben a bejegyzésben." -#: src/Content/Conversation.php:875 +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "%s újra megosztotta ezt." + +#: src/Content/Conversation.php:798 msgid "Reshared" msgstr "Újra megosztva" -#: src/Content/Conversation.php:875 +#: src/Content/Conversation.php:798 #, php-format msgid "Reshared by %s <%s>" msgstr "%s <%s> újra megosztotta" -#: src/Content/Conversation.php:878 +#: src/Content/Conversation.php:801 #, php-format msgid "%s is participating in this thread." msgstr "%s részt vesz ebben a szálban." -#: src/Content/Conversation.php:881 +#: src/Content/Conversation.php:804 msgid "Stored for general reasons" msgstr "Általános okokból tárolva" -#: src/Content/Conversation.php:884 +#: src/Content/Conversation.php:807 msgid "Global post" msgstr "Globális bejegyzés" -#: src/Content/Conversation.php:887 +#: src/Content/Conversation.php:810 msgid "Sent via an relay server" msgstr "Elküldve egy továbbító kiszolgálón keresztül" -#: src/Content/Conversation.php:887 +#: src/Content/Conversation.php:810 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "Elküldve a(z) %s <%s> továbbító kiszolgálón keresztül" -#: src/Content/Conversation.php:890 +#: src/Content/Conversation.php:813 msgid "Fetched" msgstr "Lekérve" -#: src/Content/Conversation.php:890 +#: src/Content/Conversation.php:813 #, php-format msgid "Fetched because of %s <%s>" msgstr "Lekérve %s <%s> miatt" -#: src/Content/Conversation.php:893 +#: src/Content/Conversation.php:816 msgid "Stored because of a child post to complete this thread." msgstr "Eltárolva egy gyermekbejegyzés miatt, hogy befejezze ezt a szálat." -#: src/Content/Conversation.php:896 +#: src/Content/Conversation.php:819 msgid "Local delivery" msgstr "Helyi kézbesítés" -#: src/Content/Conversation.php:899 +#: src/Content/Conversation.php:822 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Eltárolva az Ön tevékenysége miatt (kedvelés, hozzászólás, csillagozás stb.)" -#: src/Content/Conversation.php:902 +#: src/Content/Conversation.php:825 msgid "Distributed" msgstr "Elosztott" -#: src/Content/Conversation.php:905 +#: src/Content/Conversation.php:828 msgid "Pushed to us" msgstr "Leküldve nekünk" +#: src/Content/Conversation.php:1492 src/Object/Post.php:248 +msgid "Pinned item" +msgstr "Kitűzött elem" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:530 +#: src/Object/Post.php:531 +#, php-format +msgid "View %s's profile @ %s" +msgstr "%s profiljának megtekintése ezen: %s" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:518 +msgid "Categories:" +msgstr "Kategóriák:" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:519 +msgid "Filed under:" +msgstr "Iktatva itt:" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:544 +#, php-format +msgid "%s from %s" +msgstr "%s tőle: %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "Megtekintés környezetben" + +#: src/Content/Conversation/Factory/Channel.php:42 +msgid "For you" +msgstr "Önnek" + +#: src/Content/Conversation/Factory/Channel.php:42 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "Azoktól a partnerektől származó bejegyzések, akikkel kapcsolatba kerül és akik kapcsolatba kerülnek Önnel" + +#: src/Content/Conversation/Factory/Channel.php:43 +msgid "What's Hot" +msgstr "Mi a menő" + +#: src/Content/Conversation/Factory/Channel.php:43 +msgid "Posts with a lot of interactions" +msgstr "Sok interakcióval rendelkező bejegyzések" + +#: src/Content/Conversation/Factory/Channel.php:44 +#, php-format +msgid "Posts in %s" +msgstr "Bejegyzések ebben: %s" + +#: src/Content/Conversation/Factory/Channel.php:45 +msgid "Posts from your followers that you don't follow" +msgstr "Az olyan követőitől származó bejegyzések, akiket nem követ" + +#: src/Content/Conversation/Factory/Channel.php:46 +msgid "Sharers of sharers" +msgstr "Megosztók megosztói" + +#: src/Content/Conversation/Factory/Channel.php:46 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "Az Ön által követett fiókok által követett fiókokból származó bejegyzések" + +#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Module/Settings/Channels.php:137 src/Module/Settings/Channels.php:153 +msgid "Images" +msgstr "Képek" + +#: src/Content/Conversation/Factory/Channel.php:47 +msgid "Posts with images" +msgstr "Képekkel rendelkező bejegyzések" + +#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:155 +msgid "Audio" +msgstr "Hang" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts with audio" +msgstr "Hanggal rendelkező bejegyzések" + +#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Module/Settings/Channels.php:138 src/Module/Settings/Channels.php:154 +msgid "Videos" +msgstr "Videók" + +#: src/Content/Conversation/Factory/Channel.php:49 +msgid "Posts with videos" +msgstr "Videókkal rendelkező bejegyzések" + +#: src/Content/Conversation/Factory/Community.php:43 +msgid "Local Community" +msgstr "Helyi közösség" + +#: src/Content/Conversation/Factory/Community.php:43 +msgid "Posts from local users on this server" +msgstr "Bejegyzések a kiszolgálón lévő helyi felhasználóktól" + +#: src/Content/Conversation/Factory/Community.php:47 +#: src/Module/Settings/Channels.php:118 +msgid "Global Community" +msgstr "Globális közösség" + +#: src/Content/Conversation/Factory/Community.php:47 +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/Content/Conversation/Factory/Network.php:38 +msgid "Latest Activity" +msgstr "Legutóbbi tevékenység" + +#: src/Content/Conversation/Factory/Network.php:38 +msgid "Sort by latest activity" +msgstr "Rendezés a legutóbbi tevékenység szerint" + +#: src/Content/Conversation/Factory/Network.php:39 +msgid "Latest Posts" +msgstr "Legutóbbi bejegyzések" + +#: src/Content/Conversation/Factory/Network.php:39 +msgid "Sort by post received date" +msgstr "Rendezés a bejegyzés érkezési dátuma szerint" + +#: src/Content/Conversation/Factory/Network.php:40 +msgid "Latest Creation" +msgstr "Legutóbbi létrehozás" + +#: src/Content/Conversation/Factory/Network.php:40 +msgid "Sort by post creation date" +msgstr "Rendezés a bejegyzés létrehozási dátuma szerint" + +#: src/Content/Conversation/Factory/Network.php:41 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "Személyes" + +#: src/Content/Conversation/Factory/Network.php:41 +msgid "Posts that mention or involve you" +msgstr "Bejegyzések, amelyek említik vagy tartalmazzák Önt" + +#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:381 +msgid "Starred" +msgstr "Csillagozott" + +#: src/Content/Conversation/Factory/Network.php:42 +msgid "Favourite Posts" +msgstr "Kedvenc bejegyzések" + #: src/Content/Feature.php:96 msgid "General Features" msgstr "Általános funkciók" @@ -2211,13 +1665,13 @@ 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" +msgid "Auto-mention Groups" +msgstr "Csoportok 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." +"Add/remove mention when a group page is selected/deselected in ACL window." +msgstr "Említés hozzáadása vagy eltávolítása, ha egy csoportoldalt kiválasztanak vagy megszüntetik a kiválasztását az ACL ablakokban." #: src/Content/Feature.php:106 msgid "Explicit Mentions" @@ -2257,12 +1711,12 @@ msgid "Advanced Profile Settings" msgstr "Speciális profilbeállítások" #: src/Content/Feature.php:119 -msgid "List Forums" -msgstr "Fórumok felsorolása" +msgid "List Groups" +msgstr "Csoportok felsorolása" #: src/Content/Feature.php:119 -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." +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "Nyilvános csoportok megjelenítése a látogatóknak a speciális profiloldalon." #: src/Content/Feature.php:120 msgid "Tag Cloud" @@ -2280,342 +1734,433 @@ msgstr "Tagsági dátum megjelenítése" msgid "Display membership date in profile" msgstr "Tagsági dátum megjelenítése a profilban." -#: src/Content/ForumManager.php:151 src/Content/Nav.php:241 -#: src/Content/Text/HTML.php:903 src/Content/Widget.php:524 -msgid "Forums" -msgstr "Fórumok" +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "Speciális naptárbeállítások" -#: src/Content/ForumManager.php:153 -msgid "External link to forum" -msgstr "Külső hivatkozás a fórumhoz" +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "Névtelen hozzáférés engedélyezése a naptárához" -#: src/Content/ForumManager.php:156 src/Content/Widget.php:503 +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "Lehetővé teszi a névtelen látogatók számára a naptára és a nyilvános eseményei megtekintését. A partner születésnapi eseményei az Ön számára magánjellegűek." + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1272 +msgid "Groups" +msgstr "Csoportok" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "Külső hivatkozás a csoporthoz" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 msgid "show less" msgstr "kevesebb megjelenítése" -#: src/Content/ForumManager.php:157 src/Content/Widget.php:405 -#: src/Content/Widget.php:504 +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 msgid "show more" msgstr "több megjelenítése" -#: src/Content/Item.php:288 src/Model/Item.php:2763 +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "Új csoport létrehozása" + +#: src/Content/Item.php:331 src/Model/Item.php:3080 msgid "event" msgstr "esemény" -#: src/Content/Item.php:380 view/theme/frio/theme.php:250 +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "állapot" + +#: src/Content/Item.php:340 src/Model/Item.php:3082 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "fénykép" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s megjelölte %2$s %3$s vele: %4$s" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 msgid "Follow Thread" msgstr "Szál követése" -#: src/Content/Item.php:381 src/Model/Contact.php:1114 +#: src/Content/Item.php:429 src/Model/Contact.php:1242 msgid "View Status" msgstr "Állapot megtekintése" -#: src/Content/Item.php:382 src/Content/Item.php:400 -#: src/Model/Contact.php:1052 src/Model/Contact.php:1106 -#: src/Model/Contact.php:1115 src/Module/Directory.php:158 -#: src/Module/Settings/Profile/Index.php:225 +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1233 +#: src/Model/Contact.php:1243 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Profil megtekintése" -#: src/Content/Item.php:383 src/Model/Contact.php:1116 +#: src/Content/Item.php:431 src/Model/Contact.php:1244 msgid "View Photos" msgstr "Fényképek megtekintése" -#: src/Content/Item.php:384 src/Model/Contact.php:1107 -#: src/Model/Contact.php:1117 +#: src/Content/Item.php:432 src/Model/Contact.php:1211 +#: src/Model/Profile.php:464 msgid "Network Posts" msgstr "Hálózati bejegyzések" -#: src/Content/Item.php:385 src/Model/Contact.php:1108 -#: src/Model/Contact.php:1118 +#: src/Content/Item.php:433 src/Model/Contact.php:1235 +#: src/Model/Contact.php:1246 msgid "View Contact" msgstr "Partner megtekintése" -#: src/Content/Item.php:386 src/Model/Contact.php:1119 +#: src/Content/Item.php:434 src/Model/Contact.php:1247 msgid "Send PM" msgstr "Személyes üzenet küldése" -#: src/Content/Item.php:387 src/Module/Admin/Blocklist/Contact.php:100 -#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 -#: src/Module/Contact.php:398 src/Module/Contact/Profile.php:348 -#: src/Module/Contact/Profile.php:449 +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 msgid "Block" msgstr "Tiltás" -#: src/Content/Item.php:388 src/Module/Contact.php:399 -#: src/Module/Contact/Profile.php:349 src/Module/Contact/Profile.php:457 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 -#: src/Module/Notifications/Notification.php:88 +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 msgid "Ignore" msgstr "Mellőzés" -#: src/Content/Item.php:392 src/Object/Post.php:455 +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "Összecsukás" + +#: src/Content/Item.php:438 src/Object/Post.php:289 +#, php-format +msgid "Ignore %s server" +msgstr "A(z) %s kiszolgáló mellőzése" + +#: src/Content/Item.php:442 src/Object/Post.php:491 msgid "Languages" msgstr "Nyelvek" -#: src/Content/Nav.php:90 +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1236 src/Model/Contact.php:1248 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Kapcsolódás vagy követés" + +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "Nem lehet lekérni a felhasználót." + +#: src/Content/Nav.php:121 msgid "Nothing new here" msgstr "Semmi új nincs itt" -#: src/Content/Nav.php:94 src/Module/Special/HTTPException.php:50 +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 msgid "Go back" msgstr "Vissza" -#: src/Content/Nav.php:95 +#: src/Content/Nav.php:126 msgid "Clear notifications" msgstr "Értesítések törlése" -#: src/Content/Nav.php:96 src/Content/Text/HTML.php:890 -msgid "@name, !forum, #tags, content" -msgstr "@név, !fórum, #címkék, tartalom" +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" +msgstr "@név, !csoport, #címkék, tartalom" -#: src/Content/Nav.php:185 src/Module/Security/Login.php:158 +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 msgid "Logout" msgstr "Kijelentkezés" -#: src/Content/Nav.php:185 +#: src/Content/Nav.php:222 msgid "End this session" msgstr "Munkamenet befejezése" -#: src/Content/Nav.php:187 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:159 +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 msgid "Login" msgstr "Bejelentkezés" -#: src/Content/Nav.php:187 +#: src/Content/Nav.php:224 msgid "Sign in" msgstr "Bejelentkezés" -#: src/Content/Nav.php:192 src/Module/BaseProfile.php:56 -#: src/Module/Contact.php:433 src/Module/Contact/Profile.php:380 -#: src/Module/Settings/TwoFactor/Index.php:120 view/theme/frio/theme.php:220 -msgid "Status" -msgstr "Állapot" +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "Beszélgetések" -#: src/Content/Nav.php:192 src/Content/Nav.php:275 -#: view/theme/frio/theme.php:220 -msgid "Your posts and conversations" -msgstr "Az Ön bejegyzései és beszélgetései" +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "Ön által elkezdett beszélgetések" -#: src/Content/Nav.php:193 src/Module/BaseProfile.php:48 -#: src/Module/BaseSettings.php:55 src/Module/Contact.php:457 -#: src/Module/Contact/Profile.php:382 src/Module/Profile/Profile.php:241 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:221 +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 msgid "Profile" msgstr "Profil" -#: src/Content/Nav.php:193 view/theme/frio/theme.php:221 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 msgid "Your profile page" msgstr "Az Ön profiloldala" -#: src/Content/Nav.php:194 view/theme/frio/theme.php:222 +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Fényképek" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 msgid "Your photos" msgstr "Az Ön fényképei" -#: src/Content/Nav.php:195 src/Module/BaseProfile.php:72 -#: src/Module/BaseProfile.php:75 src/Module/Contact.php:449 -#: view/theme/frio/theme.php:223 +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 msgid "Media" msgstr "Média" -#: src/Content/Nav.php:195 view/theme/frio/theme.php:223 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 msgid "Your postings with media" msgstr "Az Ön médiával rendelkező beküldései" -#: src/Content/Nav.php:196 view/theme/frio/theme.php:224 -msgid "Your events" -msgstr "Az Ön eseményei" +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:310 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "Naptár" -#: src/Content/Nav.php:197 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "Az Ön naptára" + +#: src/Content/Nav.php:234 msgid "Personal notes" msgstr "Személyes jegyzetek" -#: src/Content/Nav.php:197 +#: src/Content/Nav.php:234 msgid "Your personal notes" msgstr "Az Ön személyes jegyzetei" -#: src/Content/Nav.php:214 src/Content/Nav.php:275 +#: src/Content/Nav.php:251 src/Content/Nav.php:308 msgid "Home" msgstr "Kezdőlap" -#: src/Content/Nav.php:218 src/Module/Register.php:168 +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "Kezdőlap" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 #: src/Module/Security/Login.php:124 msgid "Register" msgstr "Regisztráció" -#: src/Content/Nav.php:218 +#: src/Content/Nav.php:255 msgid "Create an account" msgstr "Fiók létrehozása" -#: src/Content/Nav.php:224 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 -#: src/Module/Settings/TwoFactor/Index.php:119 -#: src/Module/Settings/TwoFactor/Recovery.php:105 -#: src/Module/Settings/TwoFactor/Verify.php:145 view/theme/vier/theme.php:226 +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 msgid "Help" msgstr "Súgó" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:261 msgid "Help and documentation" msgstr "Súgó és dokumentáció" -#: src/Content/Nav.php:228 +#: src/Content/Nav.php:265 msgid "Apps" msgstr "Alkalmazások" -#: src/Content/Nav.php:228 +#: src/Content/Nav.php:265 msgid "Addon applications, utilities, games" msgstr "Bővítményalkalmazások, segédprogramok és játékok" -#: src/Content/Nav.php:232 src/Content/Text/HTML.php:888 -#: src/Module/Admin/Logs/View.php:87 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 msgid "Search" msgstr "Keresés" -#: src/Content/Nav.php:232 +#: src/Content/Nav.php:269 msgid "Search site content" msgstr "Oldaltartalom keresése" -#: src/Content/Nav.php:235 src/Content/Text/HTML.php:897 +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 msgid "Full Text" msgstr "Teljes szöveg" -#: src/Content/Nav.php:236 src/Content/Text/HTML.php:898 +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 #: src/Content/Widget/TagCloud.php:68 msgid "Tags" msgstr "Címkék" -#: src/Content/Nav.php:237 src/Content/Nav.php:296 -#: src/Content/Text/HTML.php:899 src/Module/BaseProfile.php:125 -#: src/Module/BaseProfile.php:128 src/Module/Contact.php:370 -#: src/Module/Contact.php:464 view/theme/frio/theme.php:231 +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 msgid "Contacts" msgstr "Partnerek" -#: src/Content/Nav.php:256 +#: src/Content/Nav.php:289 msgid "Community" msgstr "Közösség" -#: src/Content/Nav.php:256 +#: src/Content/Nav.php:289 msgid "Conversations on this and other servers" msgstr "Beszélgetések ezen és más kiszolgálókon" -#: src/Content/Nav.php:260 src/Module/BaseProfile.php:87 -#: src/Module/BaseProfile.php:98 view/theme/frio/theme.php:228 -msgid "Events and Calendar" -msgstr "Események és naptár" - -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:296 msgid "Directory" msgstr "Könyvtár" -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:296 msgid "People directory" msgstr "Emberek könyvtár" -#: src/Content/Nav.php:265 src/Module/BaseAdmin.php:88 +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 msgid "Information" msgstr "Információk" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:298 msgid "Information about this friendica instance" msgstr "Információk erről a Friendica példányról" -#: src/Content/Nav.php:268 src/Module/Admin/Tos.php:76 -#: src/Module/BaseAdmin.php:99 src/Module/Register.php:176 -#: src/Module/Tos.php:87 +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 msgid "Terms of Service" msgstr "Használati feltételek" -#: src/Content/Nav.php:268 +#: src/Content/Nav.php:301 msgid "Terms of Service of this Friendica instance" msgstr "Ezen Friendica példány használati feltételei" -#: src/Content/Nav.php:273 view/theme/frio/theme.php:227 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Network" msgstr "Hálózat" -#: src/Content/Nav.php:273 view/theme/frio/theme.php:227 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Conversations from your friends" msgstr "Ismerősökkel való beszélgetések" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "Az Ön bejegyzései és beszélgetései" + +#: src/Content/Nav.php:312 msgid "Introductions" msgstr "Bemutatkozások" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:312 msgid "Friend Requests" msgstr "Ismerőskérések" -#: src/Content/Nav.php:280 src/Module/BaseNotifications.php:148 -#: src/Module/Notifications/Introductions.php:73 +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 msgid "Notifications" msgstr "Értesítések" -#: src/Content/Nav.php:281 +#: src/Content/Nav.php:314 msgid "See all notifications" msgstr "Összes értesítés megtekintése" -#: src/Content/Nav.php:282 +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Megjelölés olvasottként" + +#: src/Content/Nav.php:315 msgid "Mark all system notifications as seen" msgstr "Összes rendszerértesítés megjelölése olvasottként" -#: src/Content/Nav.php:285 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Private mail" msgstr "Személyes levél" -#: src/Content/Nav.php:286 +#: src/Content/Nav.php:319 msgid "Inbox" msgstr "Beérkezett üzenetek" -#: src/Content/Nav.php:287 +#: src/Content/Nav.php:320 msgid "Outbox" msgstr "Elküldött üzenetek" -#: src/Content/Nav.php:291 +#: src/Content/Nav.php:324 msgid "Accounts" msgstr "Fiókok" -#: src/Content/Nav.php:291 +#: src/Content/Nav.php:324 msgid "Manage other pages" msgstr "Más oldalak kezelése" -#: src/Content/Nav.php:294 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:122 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 msgid "Settings" msgstr "Beállítások" -#: src/Content/Nav.php:294 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 msgid "Account settings" msgstr "Fiókbeállítások" -#: src/Content/Nav.php:296 view/theme/frio/theme.php:231 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 msgid "Manage/edit friends and contacts" msgstr "Ismerősök és partnerek kezelése vagy szerkesztése" -#: src/Content/Nav.php:301 src/Module/BaseAdmin.php:129 +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 msgid "Admin" msgstr "Adminisztráció" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:334 msgid "Site setup and configuration" msgstr "Oldal beállítása és konfigurálás" -#: src/Content/Nav.php:304 +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "Moderálás" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "Tartalom- és felhasználómoderálás" + +#: src/Content/Nav.php:338 msgid "Navigation" msgstr "Navigáció" -#: src/Content/Nav.php:304 +#: src/Content/Nav.php:338 msgid "Site map" msgstr "Oldaltérkép" -#: src/Content/OEmbed.php:317 +#: src/Content/OEmbed.php:316 msgid "Embedding disabled" msgstr "A beágyazás letiltva" -#: src/Content/OEmbed.php:441 +#: src/Content/OEmbed.php:440 msgid "Embedded content" msgstr "Beágyazott tartalom" @@ -2635,51 +2180,51 @@ msgstr "következő" msgid "last" msgstr "utolsó" -#: src/Content/Text/BBCode.php:998 src/Content/Text/BBCode.php:1833 -#: src/Content/Text/BBCode.php:1834 +#: src/Content/Text/BBCode.php:751 src/Content/Text/BBCode.php:1692 +#: src/Content/Text/BBCode.php:1693 msgid "Image/photo" msgstr "Kép vagy fénykép" -#: src/Content/Text/BBCode.php:1188 +#: src/Content/Text/BBCode.php:969 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1213 src/Model/Item.php:3339 -#: src/Model/Item.php:3345 src/Model/Item.php:3346 +#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3813 +#: src/Model/Item.php:3819 src/Model/Item.php:3820 msgid "Link to source" msgstr "Hivatkozás a forráshoz" -#: src/Content/Text/BBCode.php:1751 src/Content/Text/HTML.php:940 +#: src/Content/Text/BBCode.php:1599 src/Content/Text/HTML.php:904 msgid "Click to open/close" msgstr "Kattintson a megnyitáshoz vagy bezáráshoz" -#: src/Content/Text/BBCode.php:1782 +#: src/Content/Text/BBCode.php:1632 msgid "$1 wrote:" msgstr "$1 írta:" -#: src/Content/Text/BBCode.php:1838 src/Content/Text/BBCode.php:1839 +#: src/Content/Text/BBCode.php:1697 src/Content/Text/BBCode.php:1698 msgid "Encrypted content" msgstr "Titkosított tartalom" -#: src/Content/Text/BBCode.php:2057 +#: src/Content/Text/BBCode.php:1953 msgid "Invalid source protocol" msgstr "Érvénytelen forrásprotokoll" -#: src/Content/Text/BBCode.php:2072 +#: src/Content/Text/BBCode.php:1972 msgid "Invalid link protocol" msgstr "Érvénytelen hivatkozási protokoll" -#: src/Content/Text/HTML.php:805 +#: src/Content/Text/HTML.php:782 msgid "Loading more entries..." msgstr "További bejegyzések betöltése…" -#: src/Content/Text/HTML.php:806 +#: src/Content/Text/HTML.php:783 msgid "The end" msgstr "Vége" -#: src/Content/Text/HTML.php:882 src/Content/Widget/VCard.php:109 -#: src/Model/Profile.php:460 +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:128 +#: src/Model/Profile.php:473 src/Module/Contact/Profile.php:471 msgid "Follow" msgstr "Követés" @@ -2706,122 +2251,140 @@ 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:78 view/theme/vier/theme.php:179 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 msgid "Find People" msgstr "Emberek keresése" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:180 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 msgid "Enter name or interest" msgstr "Név vagy érdeklődés beírása" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:182 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Példák: Szabó János, Halászat" -#: src/Content/Widget.php:82 src/Module/Contact.php:391 -#: src/Module/Directory.php:97 view/theme/vier/theme.php:183 +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 msgid "Find" msgstr "Keresés" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:185 +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "Ismerős javaslatok" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 msgid "Similar Interests" msgstr "Hasonló érdeklődések" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:186 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 msgid "Random Profile" msgstr "Véletlen profil" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:187 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 msgid "Invite Friends" msgstr "Ismerősök meghívása" -#: src/Content/Widget.php:87 src/Module/Directory.php:89 -#: view/theme/vier/theme.php:188 +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 msgid "Global Directory" msgstr "Globális könyvtár" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:190 +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 msgid "Local Directory" msgstr "Helyi könyvtár" -#: src/Content/Widget.php:211 src/Model/Group.php:587 -#: src/Module/Contact.php:354 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "Csoportok" +#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "Körök" -#: src/Content/Widget.php:213 +#: src/Content/Widget.php:217 msgid "Everyone" msgstr "Mindenki" -#: src/Content/Widget.php:242 +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "Nincs kapcsolat" + +#: src/Content/Widget.php:247 msgid "Relationships" msgstr "Kapcsolatok" -#: src/Content/Widget.php:244 src/Module/Contact.php:306 -#: src/Module/Group.php:293 +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 msgid "All Contacts" msgstr "Összes partner" -#: src/Content/Widget.php:283 +#: src/Content/Widget.php:288 msgid "Protocols" msgstr "Protokollok" -#: src/Content/Widget.php:285 +#: src/Content/Widget.php:290 msgid "All Protocols" msgstr "Összes protokoll" -#: src/Content/Widget.php:313 +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "Mentett mappák" -#: src/Content/Widget.php:315 src/Content/Widget.php:346 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "Minden" -#: src/Content/Widget.php:344 +#: src/Content/Widget.php:349 msgid "Categories" msgstr "Kategóriák" -#: src/Content/Widget.php:401 +#: src/Content/Widget.php:406 #, 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:497 +#: src/Content/Widget.php:506 msgid "Archives" msgstr "Archívumok" -#: src/Content/Widget.php:521 +#: src/Content/Widget.php:514 +msgid "On this date" +msgstr "Ezen a napon" + +#: src/Content/Widget.php:534 msgid "Persons" msgstr "Személyek" -#: src/Content/Widget.php:522 +#: src/Content/Widget.php:535 msgid "Organisations" msgstr "Szervezetek" -#: src/Content/Widget.php:523 src/Model/Contact.php:1541 +#: src/Content/Widget.php:536 src/Model/Contact.php:1714 msgid "News" msgstr "Hírek" -#: src/Content/Widget.php:527 src/Module/Settings/Account.php:455 +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 msgid "Account Types" msgstr "Fióktípusok" -#: src/Content/Widget.php:528 src/Module/Admin/BaseUsers.php:51 +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "Összes" -#: src/Content/Widget/CalendarExport.php:54 +#: src/Content/Widget.php:591 src/Module/BaseSettings.php:125 +#: src/Module/Settings/Channels.php:157 src/Module/Settings/Display.php:309 +msgid "Channels" +msgstr "Csatornák" + +#: src/Content/Widget/CalendarExport.php:56 msgid "Export" msgstr "Exportálás" -#: src/Content/Widget/CalendarExport.php:55 +#: src/Content/Widget/CalendarExport.php:57 msgid "Export calendar as ical" msgstr "Naptár exportálása iCal-ként" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:58 msgid "Export calendar as csv" msgstr "Naptár exportálása CSV-ként" @@ -2829,14 +2392,14 @@ msgstr "Naptár exportálása CSV-ként" msgid "No contacts" msgstr "Nincsenek partnerek" -#: src/Content/Widget/ContactBlock.php:108 +#: src/Content/Widget/ContactBlock.php:110 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d partner" msgstr[1] "%d partner" -#: src/Content/Widget/ContactBlock.php:125 +#: src/Content/Widget/ContactBlock.php:127 msgid "View Contacts" msgstr "Partnerek megtekintése" @@ -2848,65 +2411,90 @@ msgstr "Kifejezés eltávolítása" msgid "Saved Searches" msgstr "Mentett keresések" -#: src/Content/Widget/TrendingTags.php:51 +#: src/Content/Widget/TrendingTags.php:52 #, 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 +#: src/Content/Widget/TrendingTags.php:53 msgid "More Trending Tags" msgstr "További népszerű címkék" -#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:379 -#: src/Module/Contact/Profile.php:371 src/Module/Profile/Profile.php:176 +#: src/Content/Widget/VCard.php:107 src/Model/Contact.php:1204 +#: src/Model/Profile.php:457 +msgid "Post to group" +msgstr "Beküldés csoportba" + +#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1209 +#: src/Model/Profile.php:462 src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "Említés" + +#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:103 src/Model/Profile.php:380 -#: src/Module/Contact/Profile.php:373 src/Module/Profile/Profile.php:180 +#: src/Content/Widget/VCard.php:122 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 msgid "Matrix:" msgstr "Mátrix:" -#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:472 -#: src/Module/Notifications/Introductions.php:199 +#: src/Content/Widget/VCard.php:123 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Hely:" + +#: src/Content/Widget/VCard.php:126 src/Model/Profile.php:486 +#: src/Module/Notifications/Introductions.php:201 msgid "Network:" msgstr "Hálózat:" -#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:462 +#: src/Content/Widget/VCard.php:130 src/Model/Contact.php:1237 +#: src/Model/Contact.php:1249 src/Model/Profile.php:475 +#: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Követés megszüntetése" -#: src/Core/ACL.php:165 src/Module/Profile/Profile.php:242 +#: src/Content/Widget/VCard.php:136 src/Model/Contact.php:1206 +#: src/Model/Profile.php:459 +msgid "View group" +msgstr "Csoport megtekintése" + +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 msgid "Yourself" msgstr "Önmaga" -#: src/Core/ACL.php:201 src/Module/PermissionTooltip.php:128 -#: src/Module/PermissionTooltip.php:150 +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 msgid "Mutuals" msgstr "Kölcsönösen ismerősök" -#: src/Core/ACL.php:293 +#: src/Core/ACL.php:294 msgid "Post to Email" msgstr "Beküldés e-mailbe" -#: src/Core/ACL.php:320 src/Module/PermissionTooltip.php:85 -#: src/Module/PermissionTooltip.php:197 +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 msgid "Public" msgstr "Nyilvános" -#: src/Core/ACL.php:321 +#: src/Core/ACL.php:322 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:322 src/Module/PermissionTooltip.php:93 +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 msgid "Limited/Private" msgstr "Korlátozott vagy személyes" -#: src/Core/ACL.php:323 +#: src/Core/ACL.php:324 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 " @@ -2914,40 +2502,54 @@ msgid "" 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:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." +msgstr "Kezdje el gépelni egy partner vagy kör nevét egy szűrt lista megjelenítéséhez. Megemlítheti a „Követők” és a „Kölcsönösen ismerősök” különleges köröket is." + +#: src/Core/ACL.php:325 msgid "Show to:" msgstr "Megjelenítés nekik:" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:326 msgid "Except to:" msgstr "Kivéve nekik:" -#: src/Core/ACL.php:328 +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "Másolat: e-mail-címek" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Példa: bob@example.com, mary@example.com" + +#: src/Core/ACL.php:329 msgid "Connectors" msgstr "Összekötők" -#: src/Core/Installer.php:183 +#: src/Core/Installer.php:180 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:200 +#: src/Core/Installer.php:197 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:201 src/Module/Install.php:213 -#: src/Module/Install.php:372 +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "Nézze meg a „doc/INSTALL.md” fájlt." -#: src/Core/Installer.php:262 +#: src/Core/Installer.php:259 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:263 +#: src/Core/Installer.php:260 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:268 +#: src/Core/Installer.php:265 msgid "PHP executable path" msgstr "PHP végrehajtható útvonala" -#: src/Core/Installer.php:268 +#: src/Core/Installer.php:265 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:273 +#: src/Core/Installer.php:270 msgid "Command line PHP" msgstr "Parancssori PHP" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:279 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:283 +#: src/Core/Installer.php:280 msgid "Found PHP version: " msgstr "Megtalált PHP-verzió: " -#: src/Core/Installer.php:285 +#: src/Core/Installer.php:282 msgid "PHP cli binary" msgstr "PHP parancssori bináris" -#: src/Core/Installer.php:298 +#: src/Core/Installer.php:295 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:299 +#: src/Core/Installer.php:296 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:304 +#: src/Core/Installer.php:301 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:336 +#: src/Core/Installer.php:333 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:337 +#: src/Core/Installer.php:334 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:340 +#: src/Core/Installer.php:337 msgid "Generate encryption keys" msgstr "Titkosítási kulcsok előállítása" -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:388 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:397 +#: src/Core/Installer.php:392 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite modul" -#: src/Core/Installer.php:403 +#: src/Core/Installer.php:398 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:408 +#: src/Core/Installer.php:402 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:412 +#: src/Core/Installer.php:405 msgid "PDO or MySQLi PHP module" msgstr "PDO vagy MySQLi PHP-modul" -#: src/Core/Installer.php:420 +#: src/Core/Installer.php:411 +msgid "Error: The IntlChar module is not installed." +msgstr "" + +#: src/Core/Installer.php:414 +msgid "IntlChar PHP module" +msgstr "" + +#: src/Core/Installer.php:422 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:424 +#: src/Core/Installer.php:426 msgid "XML PHP module" msgstr "XML PHP-modul" -#: src/Core/Installer.php:427 +#: src/Core/Installer.php:429 msgid "libCurl PHP module" msgstr "libCurl PHP-modul" -#: src/Core/Installer.php:428 +#: src/Core/Installer.php:430 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:434 +#: src/Core/Installer.php:436 msgid "GD graphics PHP module" msgstr "GD grafikai PHP-modul" -#: src/Core/Installer.php:435 +#: src/Core/Installer.php:437 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:441 +#: src/Core/Installer.php:443 msgid "OpenSSL PHP module" msgstr "OpenSSL PHP-modul" -#: src/Core/Installer.php:442 +#: src/Core/Installer.php:444 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:448 +#: src/Core/Installer.php:450 msgid "mb_string PHP module" msgstr "mb_string PHP-modul" -#: src/Core/Installer.php:449 +#: src/Core/Installer.php:451 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:455 +#: src/Core/Installer.php:457 msgid "iconv PHP module" msgstr "iconv PHP-modul" -#: src/Core/Installer.php:456 +#: src/Core/Installer.php:458 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:462 +#: src/Core/Installer.php:464 msgid "POSIX PHP module" msgstr "POSIX PHP-modul" -#: src/Core/Installer.php:463 +#: src/Core/Installer.php:465 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:469 +#: src/Core/Installer.php:471 msgid "Program execution functions" msgstr "Programvégrehajtási funkciók" -#: src/Core/Installer.php:470 +#: src/Core/Installer.php:472 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:476 +#: src/Core/Installer.php:478 msgid "JSON PHP module" msgstr "JSON PHP-modul" -#: src/Core/Installer.php:477 +#: src/Core/Installer.php:479 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:483 +#: src/Core/Installer.php:485 msgid "File Information PHP module" msgstr "Fájlinformációk PHP-modul" -#: src/Core/Installer.php:484 +#: src/Core/Installer.php:486 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:490 +#: src/Core/Installer.php:492 msgid "GNU Multiple Precision PHP module" msgstr "GNU Multiple Precision PHP-modul" -#: src/Core/Installer.php:491 +#: src/Core/Installer.php:493 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "Hiba: a GNU Multiple Precision PHP-modul szükséges, de nincs telepítve." -#: src/Core/Installer.php:514 +#: src/Core/Installer.php:516 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:515 +#: src/Core/Installer.php:517 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:516 +#: src/Core/Installer.php:518 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:517 +#: src/Core/Installer.php:519 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:520 +#: src/Core/Installer.php:522 msgid "config/local.config.php is writable" msgstr "a config/local.config.php írható" -#: src/Core/Installer.php:540 +#: src/Core/Installer.php:542 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:541 +#: src/Core/Installer.php:543 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:542 +#: src/Core/Installer.php:544 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:543 +#: src/Core/Installer.php:545 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:546 +#: src/Core/Installer.php:548 msgid "view/smarty3 is writable" msgstr "A „view/smarty3” írható" -#: src/Core/Installer.php:574 +#: src/Core/Installer.php:576 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:575 +#: src/Core/Installer.php:577 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:577 +#: src/Core/Installer.php:579 msgid "Error message from Curl when fetching" msgstr "Hibaüzenet a cURL-től a lekéréskor" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:585 msgid "Url rewrite is working" msgstr "Az URL átírás működik" -#: src/Core/Installer.php:612 +#: src/Core/Installer.php:614 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "Nem sikerült a TLS felismerése a böngésző és a Friendica kiszolgálója közötti kommunikáció biztonságossá tételéhez." -#: src/Core/Installer.php:613 +#: src/Core/Installer.php:615 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "Erősen ajánlott a Friendica kiszolgálót csak biztonságos kapcsolaton keresztül használni, mivel olyan érzékeny információk kerülnek továbbításra, mint például a jelszavak." -#: src/Core/Installer.php:614 +#: src/Core/Installer.php:616 msgid "Please ensure that the connection to the server is secure." msgstr "Győződjön meg arról, hogy a kiszolgálóval való kapcsolat biztonságos." -#: src/Core/Installer.php:615 +#: src/Core/Installer.php:617 msgid "No TLS detected" msgstr "Nincs TLS felismerve" -#: src/Core/Installer.php:617 +#: src/Core/Installer.php:619 msgid "TLS detected" msgstr "TLS felismerve" -#: src/Core/Installer.php:644 +#: src/Core/Installer.php:646 msgid "ImageMagick PHP extension is not installed" msgstr "Az ImageMagick PHP-kiterjesztés nincs telepítve" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:648 msgid "ImageMagick PHP extension is installed" msgstr "Az ImageMagick PHP-kiterjesztés telepítve van" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:650 msgid "ImageMagick supports GIF" msgstr "Az ImageMagick támogatja a GIF-et" -#: src/Core/Installer.php:670 +#: src/Core/Installer.php:672 msgid "Database already in use." msgstr "Az adatbázis már használatban van." -#: src/Core/Installer.php:675 +#: src/Core/Installer.php:677 msgid "Could not connect to database." msgstr "Nem sikerült kapcsolódni az adatbázishoz." -#: src/Core/L10n.php:403 src/Model/Event.php:428 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:507 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:278 msgid "Monday" msgstr "Hétfő" -#: src/Core/L10n.php:403 src/Model/Event.php:429 +#: src/Core/L10n.php:507 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:279 msgid "Tuesday" msgstr "Kedd" -#: src/Core/L10n.php:403 src/Model/Event.php:430 +#: src/Core/L10n.php:507 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:280 msgid "Wednesday" msgstr "Szerda" -#: src/Core/L10n.php:403 src/Model/Event.php:431 +#: src/Core/L10n.php:507 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:281 msgid "Thursday" msgstr "Csütörtök" -#: src/Core/L10n.php:403 src/Model/Event.php:432 +#: src/Core/L10n.php:507 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:282 msgid "Friday" msgstr "Péntek" -#: src/Core/L10n.php:403 src/Model/Event.php:433 +#: src/Core/L10n.php:507 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:283 msgid "Saturday" msgstr "Szombat" -#: src/Core/L10n.php:403 src/Model/Event.php:427 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:507 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:277 msgid "Sunday" msgstr "Vasárnap" -#: src/Core/L10n.php:407 src/Model/Event.php:448 +#: src/Core/L10n.php:511 src/Model/Event.php:450 msgid "January" msgstr "Január" -#: src/Core/L10n.php:407 src/Model/Event.php:449 +#: src/Core/L10n.php:511 src/Model/Event.php:451 msgid "February" msgstr "Február" -#: src/Core/L10n.php:407 src/Model/Event.php:450 +#: src/Core/L10n.php:511 src/Model/Event.php:452 msgid "March" msgstr "Március" -#: src/Core/L10n.php:407 src/Model/Event.php:451 +#: src/Core/L10n.php:511 src/Model/Event.php:453 msgid "April" msgstr "Április" -#: src/Core/L10n.php:407 src/Core/L10n.php:426 src/Model/Event.php:439 +#: src/Core/L10n.php:511 src/Core/L10n.php:530 src/Model/Event.php:441 msgid "May" msgstr "Május" -#: src/Core/L10n.php:407 src/Model/Event.php:452 +#: src/Core/L10n.php:511 src/Model/Event.php:454 msgid "June" msgstr "Június" -#: src/Core/L10n.php:407 src/Model/Event.php:453 +#: src/Core/L10n.php:511 src/Model/Event.php:455 msgid "July" msgstr "Július" -#: src/Core/L10n.php:407 src/Model/Event.php:454 +#: src/Core/L10n.php:511 src/Model/Event.php:456 msgid "August" msgstr "Augusztus" -#: src/Core/L10n.php:407 src/Model/Event.php:455 +#: src/Core/L10n.php:511 src/Model/Event.php:457 msgid "September" msgstr "Szeptember" -#: src/Core/L10n.php:407 src/Model/Event.php:456 +#: src/Core/L10n.php:511 src/Model/Event.php:458 msgid "October" msgstr "Október" -#: src/Core/L10n.php:407 src/Model/Event.php:457 +#: src/Core/L10n.php:511 src/Model/Event.php:459 msgid "November" msgstr "November" -#: src/Core/L10n.php:407 src/Model/Event.php:458 +#: src/Core/L10n.php:511 src/Model/Event.php:460 msgid "December" msgstr "December" -#: src/Core/L10n.php:422 src/Model/Event.php:420 +#: src/Core/L10n.php:526 src/Model/Event.php:422 msgid "Mon" msgstr "Hét" -#: src/Core/L10n.php:422 src/Model/Event.php:421 +#: src/Core/L10n.php:526 src/Model/Event.php:423 msgid "Tue" msgstr "Ked" -#: src/Core/L10n.php:422 src/Model/Event.php:422 +#: src/Core/L10n.php:526 src/Model/Event.php:424 msgid "Wed" msgstr "Sze" -#: src/Core/L10n.php:422 src/Model/Event.php:423 +#: src/Core/L10n.php:526 src/Model/Event.php:425 msgid "Thu" msgstr "Csü" -#: src/Core/L10n.php:422 src/Model/Event.php:424 +#: src/Core/L10n.php:526 src/Model/Event.php:426 msgid "Fri" msgstr "Pén" -#: src/Core/L10n.php:422 src/Model/Event.php:425 +#: src/Core/L10n.php:526 src/Model/Event.php:427 msgid "Sat" msgstr "Szo" -#: src/Core/L10n.php:422 src/Model/Event.php:419 +#: src/Core/L10n.php:526 src/Model/Event.php:421 msgid "Sun" msgstr "Vas" -#: src/Core/L10n.php:426 src/Model/Event.php:435 +#: src/Core/L10n.php:530 src/Model/Event.php:437 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:426 src/Model/Event.php:436 +#: src/Core/L10n.php:530 src/Model/Event.php:438 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:426 src/Model/Event.php:437 +#: src/Core/L10n.php:530 src/Model/Event.php:439 msgid "Mar" msgstr "Már" -#: src/Core/L10n.php:426 src/Model/Event.php:438 +#: src/Core/L10n.php:530 src/Model/Event.php:440 msgid "Apr" msgstr "Ápr" -#: src/Core/L10n.php:426 src/Model/Event.php:440 +#: src/Core/L10n.php:530 src/Model/Event.php:442 msgid "Jun" msgstr "Jún" -#: src/Core/L10n.php:426 src/Model/Event.php:441 +#: src/Core/L10n.php:530 src/Model/Event.php:443 msgid "Jul" msgstr "Júl" -#: src/Core/L10n.php:426 src/Model/Event.php:442 +#: src/Core/L10n.php:530 src/Model/Event.php:444 msgid "Aug" msgstr "Aug" -#: src/Core/L10n.php:426 +#: src/Core/L10n.php:530 msgid "Sep" msgstr "Sze" -#: src/Core/L10n.php:426 src/Model/Event.php:444 +#: src/Core/L10n.php:530 src/Model/Event.php:446 msgid "Oct" msgstr "Okt" -#: src/Core/L10n.php:426 src/Model/Event.php:445 +#: src/Core/L10n.php:530 src/Model/Event.php:447 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:426 src/Model/Event.php:446 +#: src/Core/L10n.php:530 src/Model/Event.php:448 msgid "Dec" msgstr "Dec" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "A(z) „%s” naplófájl nem használható. Nem lehetséges a naplózás (hiba: „%s”)." + +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, 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/Core/Renderer.php:89 src/Core/Renderer.php:118 -#: src/Core/Renderer.php:145 src/Core/Renderer.php:179 -#: src/Render/FriendicaSmartyEngine.php:57 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 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:141 +#: src/Core/Renderer.php:143 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:175 +#: src/Core/Renderer.php:177 msgid "template engine is not registered!" msgstr "a sablonmotor nincs regisztrálva!" @@ -3424,36 +3050,36 @@ msgstr "Az a mappa, ahova a feltöltött fájlok mentve lesznek. A legnagyobb bi msgid "Enter a valid existing folder" msgstr "Adjon meg egy érvényes, létező mappát" -#: src/Core/Update.php:67 +#: src/Core/Update.php:80 #, 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 +#: src/Core/Update.php:91 #, 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:153 +#: src/Core/Update.php:183 #, php-format msgid "%s: executing pre update %d" msgstr "%s: %d előfrissítés végrehajtása" -#: src/Core/Update.php:191 +#: src/Core/Update.php:225 #, php-format msgid "%s: executing post update %d" msgstr "%s: %d bejegyzésfrissítés végrehajtása" -#: src/Core/Update.php:261 +#: src/Core/Update.php:299 #, 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:315 +#: src/Core/Update.php:339 #, php-format msgid "" "\n" @@ -3463,81 +3089,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\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:321 +#: src/Core/Update.php:345 #, 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:325 src/Core/Update.php:367 +#: src/Core/Update.php:349 src/Core/Update.php:377 msgid "[Friendica Notify] Database update" msgstr "[Friendica értesítés] Adatbázis-frissítés" -#: src/Core/Update.php:361 +#: src/Core/Update.php:371 #, 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:327 -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." +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "\n\t\t\t\tA Friendica adatbázisa sikeresen frissítve lett: %s → %s." #: src/Database/DBStructure.php:57 #, 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:70 +#: src/Database/DBStructure.php:82 #, 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:83 +#: src/Database/DBStructure.php:95 msgid "No unused tables found." msgstr "Nem találhatók nem használt táblák." -#: src/Database/DBStructure.php:88 +#: src/Database/DBStructure.php:100 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:126 +#: src/Database/DBStructure.php:137 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:150 +#: src/Database/DBStructure.php:161 #, php-format msgid "" "\n" @@ -3545,42 +3139,42 @@ msgid "" "%s\n" msgstr "\nHiba (%d) történt az adatbázis frissítése során:\n%s\n" -#: src/Database/DBStructure.php:153 +#: src/Database/DBStructure.php:164 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:219 +#: src/Database/DBStructure.php:232 msgid "Another database update is currently running." msgstr "Egy másik adatbázis-frissítés is fut jelenleg." -#: src/Database/DBStructure.php:223 +#: src/Database/DBStructure.php:236 #, php-format msgid "%s: Database update" msgstr "%s: adatbázis-frissítés" -#: src/Database/DBStructure.php:479 +#: src/Database/DBStructure.php:493 #, php-format msgid "%s: updating %s table." msgstr "%s: a(z) %s tábla frissítése." -#: src/Factory/Api/Mastodon/Error.php:55 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Record not found" msgstr "A rekord nem található" -#: src/Factory/Api/Mastodon/Error.php:65 +#: src/Factory/Api/Mastodon/Error.php:49 msgid "Unprocessable Entity" msgstr "Feldolgozhatatlan entitás" -#: src/Factory/Api/Mastodon/Error.php:75 +#: src/Factory/Api/Mastodon/Error.php:56 msgid "Unauthorized" msgstr "Nem engedélyezett" -#: src/Factory/Api/Mastodon/Error.php:85 +#: src/Factory/Api/Mastodon/Error.php:62 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:95 +#: src/Factory/Api/Mastodon/Error.php:69 msgid "Internal Server Error" msgstr "Belső kiszolgálóhiba" @@ -3589,547 +3183,597 @@ msgstr "Belső kiszolgálóhiba" msgid "Legacy module file not found: %s" msgstr "Az örökölt modulfájl nem található: %s" -#: src/Model/Contact.php:1110 src/Model/Contact.php:1121 -msgid "UnFollow" -msgstr "Követés megszüntetése" +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." +msgstr "Egy ilyen névvel rendelkező törölt kör újraéledt. Lehet, hogy a meglévő elemjogosultságok alkalmazva lesznek erre a körre és bármely jövőbeli tagjaira. Ha ez nem az, amit szeretett volna, akkor hozzon létre egy másik kört eltérő névvel." -#: src/Model/Contact.php:1127 src/Module/Admin/Users/Pending.php:107 -#: src/Module/Notifications/Introductions.php:130 -#: src/Module/Notifications/Introductions.php:202 +#: src/Model/Circle.php:544 +msgid "Everybody" +msgstr "Mindenki" + +#: src/Model/Circle.php:563 +msgid "edit" +msgstr "szerkesztés" + +#: src/Model/Circle.php:600 +msgid "add" +msgstr "hozzáadás" + +#: src/Model/Circle.php:605 +msgid "Edit circle" +msgstr "Kör szerkesztése" + +#: src/Model/Circle.php:606 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "Egyetlen körben sem lévő partnerek" + +#: src/Model/Circle.php:608 +msgid "Create a new circle" +msgstr "Új kör létrehozása" + +#: src/Model/Circle.php:609 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "Kör neve: " + +#: src/Model/Circle.php:610 +msgid "Edit circles" +msgstr "Körök szerkesztése" + +#: src/Model/Contact.php:1256 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Jóváhagyás" -#: src/Model/Contact.php:1537 +#: src/Model/Contact.php:1710 msgid "Organisation" msgstr "Szervezet" -#: src/Model/Contact.php:1545 -msgid "Forum" -msgstr "Fórum" +#: src/Model/Contact.php:1718 +msgid "Group" +msgstr "Csoport" -#: src/Model/Contact.php:2634 +#: src/Model/Contact.php:3021 msgid "Disallowed profile URL." msgstr "Nem engedélyezett profil URL." -#: src/Model/Contact.php:2639 src/Module/Friendica.php:81 +#: src/Model/Contact.php:3026 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Tiltott tartomány" -#: src/Model/Contact.php:2644 +#: src/Model/Contact.php:3031 msgid "Connect URL missing." msgstr "A kapcsolódási URL hiányzik." -#: src/Model/Contact.php:2653 +#: src/Model/Contact.php:3040 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:2695 +#: src/Model/Contact.php:3058 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "A várt %s hálózat nem egyezik a tényleges %s hálózattal" + +#: src/Model/Contact.php:3075 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:2697 +#: src/Model/Contact.php:3077 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:2700 +#: src/Model/Contact.php:3080 msgid "An author or name was not found." msgstr "Egy szerző vagy név nem található." -#: src/Model/Contact.php:2703 +#: src/Model/Contact.php:3083 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:2706 +#: src/Model/Contact.php:3086 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:2707 +#: src/Model/Contact.php:3087 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:2713 +#: src/Model/Contact.php:3093 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:2718 +#: src/Model/Contact.php:3098 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:2777 +#: src/Model/Contact.php:3164 msgid "Unable to retrieve contact information." msgstr "Nem lehet lekérni a partner információit." -#: src/Model/Event.php:52 +#: src/Model/Event.php:54 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "Y. F j., l, H:i \\G\\M\\TP (e)" -#: src/Model/Event.php:73 src/Model/Event.php:90 src/Model/Event.php:467 -#: src/Model/Event.php:901 +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 msgid "Starts:" msgstr "Kezdődik:" -#: src/Model/Event.php:76 src/Model/Event.php:96 src/Model/Event.php:468 -#: src/Model/Event.php:905 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 msgid "Finishes:" msgstr "Befejeződik:" -#: src/Model/Event.php:417 +#: src/Model/Event.php:419 msgid "all-day" msgstr "egész nap" -#: src/Model/Event.php:443 +#: src/Model/Event.php:445 msgid "Sept" msgstr "Szept" -#: src/Model/Event.php:465 +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "ma" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:288 src/Util/Temporal.php:353 +msgid "month" +msgstr "hónap" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:289 src/Util/Temporal.php:354 +msgid "week" +msgstr "hét" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:290 src/Util/Temporal.php:355 +msgid "day" +msgstr "nap" + +#: src/Model/Event.php:467 msgid "No events to display" msgstr "Nincsenek megjelenítendő események" -#: src/Model/Event.php:581 +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "A profilhoz való hozzáférés korlátozva lett." + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "Az esemény nem található." + +#: src/Model/Event.php:637 msgid "l, F j" msgstr "F j., l" -#: src/Model/Event.php:612 +#: src/Model/Event.php:664 msgid "Edit event" msgstr "Esemény szerkesztése" -#: src/Model/Event.php:613 +#: src/Model/Event.php:665 msgid "Duplicate event" msgstr "Esemény kettőzése" -#: src/Model/Event.php:614 +#: src/Model/Event.php:666 msgid "Delete event" msgstr "Esemény törlése" -#: src/Model/Event.php:857 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 msgid "l F d, Y \\@ g:i A" msgstr "Y. F j., l, H:i" -#: src/Model/Event.php:858 +#: src/Model/Event.php:897 msgid "D g:i A" msgstr "D H:i" -#: src/Model/Event.php:859 +#: src/Model/Event.php:898 msgid "g:i A" msgstr "H:i" -#: src/Model/Event.php:920 src/Model/Event.php:922 +#: src/Model/Event.php:964 src/Model/Event.php:966 msgid "Show map" msgstr "Térkép megjelenítése" -#: src/Model/Event.php:921 +#: src/Model/Event.php:965 msgid "Hide map" msgstr "Térkép elrejtése" -#: src/Model/Event.php:1014 +#: src/Model/Event.php:1058 #, php-format msgid "%s's birthday" msgstr "%s születésnapja" -#: src/Model/Event.php:1015 +#: src/Model/Event.php:1059 #, php-format msgid "Happy Birthday %s" msgstr "Boldog születésnapot, %s" -#: src/Model/Group.php:105 -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:503 -msgid "Default privacy group for new contacts" -msgstr "Alapértelmezett adatvédelmi csoport az új partnerekhez" - -#: src/Model/Group.php:535 -msgid "Everybody" -msgstr "Mindenki" - -#: src/Model/Group.php:554 -msgid "edit" -msgstr "szerkesztés" - -#: src/Model/Group.php:586 -msgid "add" -msgstr "hozzáadás" - -#: src/Model/Group.php:591 -msgid "Edit group" -msgstr "Csoport szerkesztése" - -#: src/Model/Group.php:592 src/Module/Group.php:194 -msgid "Contacts not in any group" -msgstr "Egyetlen csoportban sem lévő partnerek" - -#: src/Model/Group.php:594 -msgid "Create a new group" -msgstr "Új csoport létrehozása" - -#: src/Model/Group.php:595 src/Module/Group.php:179 src/Module/Group.php:202 -#: src/Module/Group.php:277 -msgid "Group Name: " -msgstr "Csoport neve: " - -#: src/Model/Group.php:596 -msgid "Edit groups" -msgstr "Csoportok szerkesztése" - -#: src/Model/Item.php:1861 +#: src/Model/Item.php:2139 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "A bejegyzésben felismert nyelvek:\\n%s" -#: src/Model/Item.php:2767 +#: src/Model/Item.php:3084 msgid "activity" msgstr "tevékenység" -#: src/Model/Item.php:2769 +#: src/Model/Item.php:3086 msgid "comment" msgstr "hozzászólás" -#: src/Model/Item.php:2772 +#: src/Model/Item.php:3089 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "bejegyzés" -#: src/Model/Item.php:2888 +#: src/Model/Item.php:3259 +#, php-format +msgid "%s is blocked" +msgstr "%s tiltva van" + +#: src/Model/Item.php:3261 +#, php-format +msgid "%s is ignored" +msgstr "%s mellőzve van" + +#: src/Model/Item.php:3263 +#, php-format +msgid "Content from %s is collapsed" +msgstr "A(z) %s helyről származó tartalom összecsukva" + +#: src/Model/Item.php:3267 #, php-format msgid "Content warning: %s" msgstr "Tartalom figyelmeztetés: %s" -#: src/Model/Item.php:3251 +#: src/Model/Item.php:3720 msgid "bytes" msgstr "bájt" -#: src/Model/Item.php:3282 +#: src/Model/Item.php:3751 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "%2$s (%3$d%%, %1$d szavazat)" msgstr[1] "%2$s (%3$d%%, %1$d szavazat)" -#: src/Model/Item.php:3284 +#: src/Model/Item.php:3753 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "%2$s (%1$d szavazat)" msgstr[1] "%2$s (%1$d szavazat)" -#: src/Model/Item.php:3289 +#: src/Model/Item.php:3758 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "%d szavazó. A szavazás vége: %s" msgstr[1] "%d szavazó. A szavazás vége: %s" -#: src/Model/Item.php:3291 +#: src/Model/Item.php:3760 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "%d szavazó." msgstr[1] "%d szavazó." -#: src/Model/Item.php:3293 +#: src/Model/Item.php:3762 #, php-format msgid "Poll end: %s" msgstr "Szavazás vége: %s" -#: src/Model/Item.php:3327 src/Model/Item.php:3328 +#: src/Model/Item.php:3796 src/Model/Item.php:3797 msgid "View on separate page" msgstr "Megtekintés külön oldalon" -#: src/Model/Mail.php:137 src/Model/Mail.php:265 +#: src/Model/Mail.php:137 src/Model/Mail.php:266 msgid "[no subject]" msgstr "[nincs tárgy]" -#: src/Model/Profile.php:362 src/Module/Profile/Profile.php:256 -#: src/Module/Profile/Profile.php:258 +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Falfényképek" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 msgid "Edit profile" msgstr "Profil szerkesztése" -#: src/Model/Profile.php:364 +#: src/Model/Profile.php:361 msgid "Change profile photo" msgstr "Profilfénykép megváltoztatása" -#: src/Model/Profile.php:377 src/Module/Directory.php:153 -#: src/Module/Profile/Profile.php:184 +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 msgid "Homepage:" msgstr "Honlap:" -#: src/Model/Profile.php:378 src/Module/Contact/Profile.php:375 -#: src/Module/Notifications/Introductions.php:187 +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "Névjegy:" -#: src/Model/Profile.php:464 +#: src/Model/Profile.php:477 msgid "Atom feed" msgstr "Atom hírforrás" -#: src/Model/Profile.php:507 +#: src/Model/Profile.php:484 +msgid "This website has been verified to belong to the same person." +msgstr "Ez a weboldal ellenőrizve lett, hogy ugyanahhoz a személyhez tartozik." + +#: src/Model/Profile.php:525 msgid "F d" msgstr "F j." -#: src/Model/Profile.php:571 src/Model/Profile.php:660 +#: src/Model/Profile.php:589 src/Model/Profile.php:678 msgid "[today]" msgstr "[ma]" -#: src/Model/Profile.php:580 +#: src/Model/Profile.php:598 msgid "Birthday Reminders" msgstr "Születésnapi emlékeztetők" -#: src/Model/Profile.php:581 +#: src/Model/Profile.php:599 msgid "Birthdays this week:" msgstr "Születésnapok ezen a héten:" -#: src/Model/Profile.php:609 +#: src/Model/Profile.php:627 msgid "g A l F d" msgstr "F j., l, H" -#: src/Model/Profile.php:647 +#: src/Model/Profile.php:665 msgid "[No description]" msgstr "[Nincs leírás]" -#: src/Model/Profile.php:673 +#: src/Model/Profile.php:691 msgid "Event Reminders" msgstr "Eseményemlékeztetők" -#: src/Model/Profile.php:674 +#: src/Model/Profile.php:692 msgid "Upcoming events the next 7 days:" msgstr "Közelgő események a következő 7 napon:" -#: src/Model/Profile.php:868 +#: src/Model/Profile.php:891 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s üdvözli őt: %2$s" -#: src/Model/Profile.php:1008 +#: src/Model/Profile.php:1031 msgid "Hometown:" msgstr "Szülőváros:" -#: src/Model/Profile.php:1009 +#: src/Model/Profile.php:1032 msgid "Marital Status:" msgstr "Családi állapot:" -#: src/Model/Profile.php:1010 +#: src/Model/Profile.php:1033 msgid "With:" msgstr "Ezzel:" -#: src/Model/Profile.php:1011 +#: src/Model/Profile.php:1034 msgid "Since:" msgstr "Ekkortól:" -#: src/Model/Profile.php:1012 +#: src/Model/Profile.php:1035 msgid "Sexual Preference:" msgstr "Szexuális irányultság:" -#: src/Model/Profile.php:1013 +#: src/Model/Profile.php:1036 msgid "Political Views:" msgstr "Politikai nézetek:" -#: src/Model/Profile.php:1014 +#: src/Model/Profile.php:1037 msgid "Religious Views:" msgstr "Vallási néztek:" -#: src/Model/Profile.php:1015 +#: src/Model/Profile.php:1038 msgid "Likes:" msgstr "Kedvelések:" -#: src/Model/Profile.php:1016 +#: src/Model/Profile.php:1039 msgid "Dislikes:" msgstr "Nem kedvelések:" -#: src/Model/Profile.php:1017 +#: src/Model/Profile.php:1040 msgid "Title/Description:" msgstr "Cím vagy leírás:" -#: src/Model/Profile.php:1018 src/Module/Admin/Summary.php:234 +#: src/Model/Profile.php:1041 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 msgid "Summary" msgstr "Összefoglaló" -#: src/Model/Profile.php:1019 +#: src/Model/Profile.php:1042 msgid "Musical interests" msgstr "Zenei érdeklődések" -#: src/Model/Profile.php:1020 +#: src/Model/Profile.php:1043 msgid "Books, literature" msgstr "Könyvek, irodalom" -#: src/Model/Profile.php:1021 +#: src/Model/Profile.php:1044 msgid "Television" msgstr "Televízió" -#: src/Model/Profile.php:1022 +#: src/Model/Profile.php:1045 msgid "Film/dance/culture/entertainment" msgstr "Film, tánc, kultúra, szórakozás" -#: src/Model/Profile.php:1023 +#: src/Model/Profile.php:1046 msgid "Hobbies/Interests" msgstr "Hobbik, érdeklődések" -#: src/Model/Profile.php:1024 +#: src/Model/Profile.php:1047 msgid "Love/romance" msgstr "Szerelem, romantika" -#: src/Model/Profile.php:1025 +#: src/Model/Profile.php:1048 msgid "Work/employment" msgstr "Munka, foglalkoztatás" -#: src/Model/Profile.php:1026 +#: src/Model/Profile.php:1049 msgid "School/education" msgstr "Iskola, oktatás" -#: src/Model/Profile.php:1027 +#: src/Model/Profile.php:1050 msgid "Contact information and Social Networks" msgstr "Partnerinformációk és közösségi hálózatok" -#: src/Model/User.php:212 src/Model/User.php:1085 +#: src/Model/User.php:226 src/Model/User.php:1185 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:572 src/Model/User.php:605 +#: src/Model/User.php:619 src/Model/User.php:652 msgid "Login failed" msgstr "Bejelentkezés sikertelen" -#: src/Model/User.php:637 +#: src/Model/User.php:684 msgid "Not enough information to authenticate" msgstr "Nincs elegendő információ a hitelesítéshez" -#: src/Model/User.php:732 +#: src/Model/User.php:805 msgid "Password can't be empty" msgstr "A jelszó nem lehet üres" -#: src/Model/User.php:774 +#: src/Model/User.php:847 msgid "Empty passwords are not allowed." msgstr "Az üres jelszavak nem megengedettek." -#: src/Model/User.php:778 +#: src/Model/User.php:851 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:782 +#: src/Model/User.php:855 msgid "The password length is limited to 72 characters." msgstr "A jelszó hossza 72 karakterre van korlátozva." -#: src/Model/User.php:786 -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:859 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "A jelszó nem tartalmazhat üres karaktereket vagy ékezetes betűket" -#: src/Model/User.php:965 +#: src/Model/User.php:1068 msgid "Passwords do not match. Password unchanged." msgstr "A jelszavak nem egyeznek. A jelszó változatlan maradt." -#: src/Model/User.php:972 +#: src/Model/User.php:1075 msgid "An invitation is required." msgstr "Egy meghívás szükséges." -#: src/Model/User.php:976 +#: src/Model/User.php:1079 msgid "Invitation could not be verified." msgstr "A meghívást nem sikerült ellenőrizni." -#: src/Model/User.php:984 +#: src/Model/User.php:1087 msgid "Invalid OpenID url" msgstr "Érvénytelen OpenID URL" -#: src/Model/User.php:997 src/Security/Authentication.php:240 +#: src/Model/User.php:1100 src/Security/Authentication.php:241 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:997 src/Security/Authentication.php:240 +#: src/Model/User.php:1100 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "A hibaüzenet ez volt:" -#: src/Model/User.php:1003 +#: src/Model/User.php:1106 msgid "Please enter the required information." msgstr "Adja meg a szükséges információkat." -#: src/Model/User.php:1017 +#: src/Model/User.php:1120 #, 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:1024 +#: src/Model/User.php:1127 #, 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:1028 +#: src/Model/User.php:1131 #, 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:1036 +#: src/Model/User.php:1139 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:1041 +#: src/Model/User.php:1144 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:1045 +#: src/Model/User.php:1148 msgid "Not a valid email address." msgstr "Nem érvényes e-mail-cím." -#: src/Model/User.php:1048 +#: src/Model/User.php:1151 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:1052 src/Model/User.php:1060 +#: src/Model/User.php:1155 src/Model/User.php:1161 msgid "Cannot use that email." msgstr "Nem lehet használni azt az e-mail-címet." -#: src/Model/User.php:1067 +#: src/Model/User.php:1167 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:1075 src/Model/User.php:1132 +#: src/Model/User.php:1175 src/Model/User.php:1232 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:1119 src/Model/User.php:1123 +#: src/Model/User.php:1219 src/Model/User.php:1223 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:1146 +#: src/Model/User.php:1246 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:1153 +#: src/Model/User.php:1253 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:1158 +#: src/Model/User.php:1258 msgid "Friends" msgstr "Ismerősök" -#: src/Model/User.php:1162 +#: src/Model/User.php:1262 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." +"An error occurred creating your default contact circle. Please try again." +msgstr "Hiba történt az alapértelmezett partnerkör létrehozásakor. Próbálja újra." -#: src/Model/User.php:1201 +#: src/Model/User.php:1306 msgid "Profile Photos" msgstr "Profilfényképek" -#: src/Model/User.php:1394 +#: src/Model/User.php:1486 #, php-format msgid "" "\n" @@ -4137,7 +3781,7 @@ msgid "" "\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:1397 +#: src/Model/User.php:1489 #, php-format msgid "" "\n" @@ -4164,17 +3808,17 @@ msgid "" "\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" +"\t\tIf you ever want to delete your account, you can do so at %1$s/settings/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." +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/settings/removeme\n\n\t\t\tKöszönjük, és üdvözöljük a %4$s oldalon." -#: src/Model/User.php:1430 src/Model/User.php:1537 +#: src/Model/User.php:1522 src/Model/User.php:1629 #, php-format msgid "Registration details for %s" msgstr "Regisztrációs részletek ehhez: %s" -#: src/Model/User.php:1450 +#: src/Model/User.php:1542 #, php-format msgid "" "\n" @@ -4189,12 +3833,12 @@ msgid "" "\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:1469 +#: src/Model/User.php:1561 #, php-format msgid "Registration at %s" msgstr "Regisztráció itt: %s" -#: src/Model/User.php:1493 +#: src/Model/User.php:1585 #, php-format msgid "" "\n" @@ -4203,7 +3847,7 @@ msgid "" "\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:1501 +#: src/Model/User.php:1593 #, php-format msgid "" "\n" @@ -4230,25 +3874,15 @@ msgid "" "\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" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/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." +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/settings/removeme\n\n\t\t\tKöszönjük, és üdvözöljük a %2$s oldalon." -#: src/Moderation/DomainPatternBlocklist.php:218 -#, php-format -msgid "[%s] Notice of remote server domain pattern block list update" -msgstr "[%s] Értesítés a távoli kiszolgálótartomány-minta tiltólistájának frissítéséről" - -#: src/Moderation/DomainPatternBlocklist.php:220 -#, php-format +#: src/Model/User.php:1656 msgid "" -"Dear %s,\n" -"\n" -"You are receiving this email because the Friendica node at %s where you are registered as a user updated their remote server domain pattern block list.\n" -"\n" -"Please review the updated list at %s at your earliest convenience." -msgstr "Kedves %s!\n\nAzért kapta ezt az e-mailt, mert a(z) %s címen lévő Friendica csomópont, ahol felhasználóként van regisztrálva, frissítette a távoli kiszolgálótartomány-mintája tiltólistáját.\n\nNézze át a(z) %s címen lévő frissített listát a lehető leghamarabb." +"User with delegates can't be removed, please remove delegate users first" +msgstr "" #: src/Module/Admin/Addons/Details.php:65 msgid "Addon not found." @@ -4270,32 +3904,25 @@ msgid "Disable" msgstr "Letiltás" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:332 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:94 -#: src/Module/Admin/Blocklist/Server/Add.php:121 -#: src/Module/Admin/Blocklist/Server/Import.php:117 -#: src/Module/Admin/Blocklist/Server/Index.php:93 -#: src/Module/Admin/Federation.php:200 src/Module/Admin/Item/Delete.php:64 -#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:84 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:433 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:233 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:75 -#: 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 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 msgid "Administration" msgstr "Adminisztráció" #: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:96 -#: src/Module/BaseSettings.php:85 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:139 msgid "Addons" msgstr "Bővítmények" @@ -4304,13 +3931,13 @@ msgstr "Bővítmények" msgid "Toggle" msgstr "Átváltás" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 msgid "Author: " msgstr "Szerző: " -#: src/Module/Admin/Addons/Details.php:122 -#: src/Module/Admin/Themes/Details.php:102 +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 msgid "Maintainer: " msgstr "Karbantartó: " @@ -4323,11 +3950,22 @@ msgstr "Bővítmények újratöltve" msgid "Addon %s failed to install." msgstr "A(z) „%s” bővítmény telepítése sikertelen." +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:303 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Beállítások mentése" + #: 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 +#: src/Module/Admin/Addons/Index.php:74 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4335,414 +3973,6 @@ msgid "" " 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:54 -msgid "List of all users" -msgstr "Összes felhasználó listája" - -#: src/Module/Admin/BaseUsers.php:59 -msgid "Active" -msgstr "Aktív" - -#: src/Module/Admin/BaseUsers.php:62 -msgid "List of active accounts" -msgstr "Aktív fiókok listája" - -#: src/Module/Admin/BaseUsers.php:67 src/Module/Contact.php:314 -#: src/Module/Contact.php:374 -msgid "Pending" -msgstr "Függőben" - -#: src/Module/Admin/BaseUsers.php:70 -msgid "List of pending registrations" -msgstr "Függőben lévő regisztrációk listája" - -#: src/Module/Admin/BaseUsers.php:75 src/Module/Contact.php:322 -#: src/Module/Contact.php:375 -msgid "Blocked" -msgstr "Tiltva" - -#: src/Module/Admin/BaseUsers.php:78 -msgid "List of blocked users" -msgstr "Tiltott felhasználók listája" - -#: src/Module/Admin/BaseUsers.php:83 -msgid "Deleted" -msgstr "Törölve" - -#: src/Module/Admin/BaseUsers.php:86 -msgid "List of pending user deletions" -msgstr "Függőben lévő felhasználó-törlések listája" - -#: src/Module/Admin/BaseUsers.php:100 src/Module/Settings/Account.php:493 -msgid "Normal Account Page" -msgstr "Normál fiókoldal" - -#: src/Module/Admin/BaseUsers.php:101 src/Module/Settings/Account.php:500 -msgid "Soapbox Page" -msgstr "Szappantartó oldal" - -#: src/Module/Admin/BaseUsers.php:102 src/Module/Settings/Account.php:507 -msgid "Public Forum" -msgstr "Nyilvános fórum" - -#: src/Module/Admin/BaseUsers.php:103 src/Module/Settings/Account.php:514 -msgid "Automatic Friend Page" -msgstr "Automatikus ismerős oldal" - -#: src/Module/Admin/BaseUsers.php:104 -msgid "Private Forum" -msgstr "Személyes fórum" - -#: src/Module/Admin/BaseUsers.php:107 src/Module/Settings/Account.php:465 -msgid "Personal Page" -msgstr "Személyes oldal" - -#: src/Module/Admin/BaseUsers.php:108 src/Module/Settings/Account.php:472 -msgid "Organisation Page" -msgstr "Szervezeti oldal" - -#: src/Module/Admin/BaseUsers.php:109 src/Module/Settings/Account.php:479 -msgid "News Page" -msgstr "Hírek oldal" - -#: src/Module/Admin/BaseUsers.php:110 src/Module/Settings/Account.php:486 -msgid "Community Forum" -msgstr "Közösségi fórum" - -#: src/Module/Admin/BaseUsers.php:111 -msgid "Relay" -msgstr "Továbbítás" - -#: src/Module/Admin/Blocklist/Contact.php:54 -msgid "You can't block a local contact, please block the user instead" -msgstr "Nem tilthat egy helyi partnert, inkább a felhasználót tiltsa" - -#: src/Module/Admin/Blocklist/Contact.php:73 -#, 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:95 -msgid "Remote Contact Blocklist" -msgstr "Távoli partnerek tiltólistája" - -#: src/Module/Admin/Blocklist/Contact.php:96 -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:97 -msgid "Block Remote Contact" -msgstr "Távoli partner tiltása" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#: 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:99 -msgid "select none" -msgstr "kijelölés törlése" - -#: src/Module/Admin/Blocklist/Contact.php:101 -#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156 -#: src/Module/Contact.php:398 src/Module/Contact/Profile.php:348 -#: src/Module/Contact/Profile.php:449 -msgid "Unblock" -msgstr "Tiltás feloldása" - -#: src/Module/Admin/Blocklist/Contact.php:102 -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:104 -msgid "Blocked Remote Contacts" -msgstr "Tiltott távoli partnerek" - -#: src/Module/Admin/Blocklist/Contact.php:105 -msgid "Block New Remote Contact" -msgstr "Új távoli partner tiltása" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Photo" -msgstr "Fénykép" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Reason" -msgstr "Indok" - -#: src/Module/Admin/Blocklist/Contact.php:114 -#, 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:116 -msgid "URL of the remote contact to block." -msgstr "A tiltandó távoli partner URL-je." - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "Also purge contact" -msgstr "Távolítsa el a partnert is" - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "" -"Removes all content related to this contact from the node. Keeps the contact" -" record. This action cannot be undone." -msgstr "Eltávolítja az ehhez a partnerhez kapcsolódó összes partnert a csomópontról. Megtartja a partner rekordját. Ezt a műveletet nem lehet visszavonni." - -#: src/Module/Admin/Blocklist/Contact.php:118 -#: src/Module/Admin/Blocklist/Server/Import.php:123 -msgid "Block Reason" -msgstr "Tiltás oka" - -#: src/Module/Admin/Blocklist/Server/Add.php:80 -msgid "Server domain pattern added to the blocklist." -msgstr "A tiltólistához hozzáadott kiszolgáló tartománymintája." - -#: src/Module/Admin/Blocklist/Server/Add.php:88 -#, php-format -msgid "%s server scheduled to be purged." -msgid_plural "%s servers scheduled to be purged." -msgstr[0] "%s kiszolgáló van ütemezve eltávolításra." -msgstr[1] "%s kiszolgáló van ütemezve eltávolításra." - -#: src/Module/Admin/Blocklist/Server/Add.php:120 -#: src/Module/Admin/Blocklist/Server/Import.php:116 -msgid "← Return to the list" -msgstr "← Vissza a listához" - -#: src/Module/Admin/Blocklist/Server/Add.php:122 -msgid "Block A New Server Domain Pattern" -msgstr "Új kiszolgálótartomány-minta tiltása" - -#: src/Module/Admin/Blocklist/Server/Add.php:123 -#: src/Module/Admin/Blocklist/Server/Index.php:97 -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" -"
    " -msgstr "

    A kiszolgálótartomány-minta szintaxisa kis- és nagybetű-érzéketlen parancsértelmezői helyettesítő karakter, amely a következő különleges karakterekből áll:

    \n
      \n\t
    • *: Tetszőleges számú karakter
    • \n\t
    • ?: Egy önálló karakter
    • \n
    " - -#: src/Module/Admin/Blocklist/Server/Add.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:105 -msgid "Check pattern" -msgstr "Minta ellenőrzése" - -#: src/Module/Admin/Blocklist/Server/Add.php:129 -msgid "Matching known servers" -msgstr "Illeszkedő ismert kiszolgálók" - -#: src/Module/Admin/Blocklist/Server/Add.php:130 -msgid "Server Name" -msgstr "Kiszolgáló neve" - -#: src/Module/Admin/Blocklist/Server/Add.php:131 -msgid "Server Domain" -msgstr "Kiszolgáló tartománya" - -#: src/Module/Admin/Blocklist/Server/Add.php:132 -msgid "Known Contacts" -msgstr "Ismert partnerek" - -#: src/Module/Admin/Blocklist/Server/Add.php:133 -#, php-format -msgid "%d known server" -msgid_plural "%d known servers" -msgstr[0] "%d ismert kiszolgáló" -msgstr[1] "%d ismert kiszolgáló" - -#: src/Module/Admin/Blocklist/Server/Add.php:134 -msgid "Add pattern to the blocklist" -msgstr "Minta hozzáadása a tiltólistához" - -#: src/Module/Admin/Blocklist/Server/Add.php:136 -#: src/Module/Admin/Blocklist/Server/Index.php:114 -msgid "Server Domain Pattern" -msgstr "Kiszolgálótartomány-minta" - -#: src/Module/Admin/Blocklist/Server/Add.php:136 -#: src/Module/Admin/Blocklist/Server/Index.php:114 -msgid "" -"The domain pattern of the new server to add to the blocklist. 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/Add.php:137 -msgid "Purge server" -msgstr "Kiszolgáló eltávolítása" - -#: src/Module/Admin/Blocklist/Server/Add.php:137 -msgid "" -"Also purges all the locally stored content authored by the known contacts " -"registered on that server. Keeps the contacts and the server records. This " -"action cannot be undone." -msgid_plural "" -"Also purges all the locally stored content authored by the known contacts " -"registered on these servers. Keeps the contacts and the servers records. " -"This action cannot be undone." -msgstr[0] "Eltávolítja az összes olyan helyileg tárolt tartalmat is, amelyet az adott kiszolgálón regisztrált ismert partnerek hoztak létre. Megtartja a partnereket és a kiszolgáló rekordjait. Ezt a művelet nem lehet visszavonni." -msgstr[1] "Eltávolítja az összes olyan helyileg tárolt tartalmat is, amelyet az adott kiszolgálókon regisztrált ismert partnerek hoztak létre. Megtartja a partnereket és a kiszolgálók rekordjait. Ezt a művelet nem lehet visszavonni." - -#: src/Module/Admin/Blocklist/Server/Add.php:138 -msgid "Block reason" -msgstr "Tiltás oka" - -#: src/Module/Admin/Blocklist/Server/Add.php:138 -msgid "" -"The reason why you blocked this server domain pattern. This reason will be " -"shown publicly in the server information page." -msgstr "Az ok, amiért kitiltotta ezt a kiszolgálótartomány-mintát. Az ok nyilvánosan meg lesz jelenítve a kiszolgáló információs oldalán." - -#: src/Module/Admin/Blocklist/Server/Import.php:75 -#: src/Module/Admin/Blocklist/Server/Import.php:84 -msgid "Error importing pattern file" -msgstr "Hiba a mintafájl importálásakor" - -#: src/Module/Admin/Blocklist/Server/Import.php:90 -msgid "Local blocklist replaced with the provided file." -msgstr "A helyi tiltólista le lett cserélve a megadott fájllal." - -#: src/Module/Admin/Blocklist/Server/Import.php:94 -#, php-format -msgid "%d pattern was added to the local blocklist." -msgid_plural "%d patterns were added to the local blocklist." -msgstr[0] "%d minta lett hozzáadva a helyi tiltólistához." -msgstr[1] "%d minta lett hozzáadva a helyi tiltólistához." - -#: src/Module/Admin/Blocklist/Server/Import.php:96 -msgid "No pattern was added to the local blocklist." -msgstr "Nem lett minta hozzáadva a helyi tiltólistához." - -#: src/Module/Admin/Blocklist/Server/Import.php:118 -msgid "Import a Server Domain Pattern Blocklist" -msgstr "Kiszolgálótartomány-minta tiltólista importálása" - -#: src/Module/Admin/Blocklist/Server/Import.php:119 -msgid "" -"

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

    " -msgstr "

    Ez a fájl letölthető bármely Friendica kiszolgáló /friendica útvonaláról.

    " - -#: src/Module/Admin/Blocklist/Server/Import.php:120 -#: src/Module/Admin/Blocklist/Server/Index.php:104 -msgid "Upload file" -msgstr "Fájl feltöltése" - -#: src/Module/Admin/Blocklist/Server/Import.php:121 -msgid "Patterns to import" -msgstr "Importálandó minták" - -#: src/Module/Admin/Blocklist/Server/Import.php:122 -msgid "Domain Pattern" -msgstr "Tartományminta" - -#: src/Module/Admin/Blocklist/Server/Import.php:124 -msgid "Import Mode" -msgstr "Mód importálása" - -#: src/Module/Admin/Blocklist/Server/Import.php:125 -msgid "Import Patterns" -msgstr "Minták importálása" - -#: src/Module/Admin/Blocklist/Server/Import.php:126 -#, php-format -msgid "%d total pattern" -msgid_plural "%d total patterns" -msgstr[0] "%d minta összesen" -msgstr[1] "%d minta összesen" - -#: src/Module/Admin/Blocklist/Server/Import.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:113 -msgid "Server domain pattern blocklist CSV file" -msgstr "Kiszolgálótartomány-minta tiltólista CSV-fájl" - -#: src/Module/Admin/Blocklist/Server/Import.php:129 -msgid "Append" -msgstr "Hozzáfűzés" - -#: src/Module/Admin/Blocklist/Server/Import.php:129 -msgid "" -"Imports patterns from the file that weren't already existing in the current " -"blocklist." -msgstr "Olyan mintákat importál a fájlból, amelyek még nem léteztek a jelenlegi tiltólistán." - -#: src/Module/Admin/Blocklist/Server/Import.php:130 -msgid "Replace" -msgstr "Csere" - -#: src/Module/Admin/Blocklist/Server/Import.php:130 -msgid "Replaces the current blocklist by the imported patterns." -msgstr "Lecseréli a jelenlegi tiltólistát az importált mintákkal." - -#: src/Module/Admin/Blocklist/Server/Index.php:84 -#: src/Module/Admin/Blocklist/Server/Index.php:108 -msgid "Blocked server domain pattern" -msgstr "Tiltott kiszolgálótartomány-minta" - -#: src/Module/Admin/Blocklist/Server/Index.php:85 -#: src/Module/Admin/Blocklist/Server/Index.php:109 src/Module/Friendica.php:82 -msgid "Reason for the block" -msgstr "A tiltás oka" - -#: src/Module/Admin/Blocklist/Server/Index.php:86 -msgid "Delete server domain pattern" -msgstr "Kiszolgálótartomány-minta törlése" - -#: src/Module/Admin/Blocklist/Server/Index.php:86 -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/Index.php:94 -msgid "Server Domain Pattern Blocklist" -msgstr "Kiszolgálótartomány-minta tiltólistája" - -#: src/Module/Admin/Blocklist/Server/Index.php:95 -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/Index.php:96 -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/Index.php:102 -msgid "Import server domain pattern blocklist" -msgstr "Kiszolgálótartomány-minta tiltólistájának importálása" - -#: src/Module/Admin/Blocklist/Server/Index.php:103 -msgid "Add new entry to the blocklist" -msgstr "Új bejegyzés hozzáadása a tiltólistához" - -#: src/Module/Admin/Blocklist/Server/Index.php:106 -msgid "Save changes to the blocklist" -msgstr "Változtatások mentése a tiltólistába" - -#: src/Module/Admin/Blocklist/Server/Index.php:107 -msgid "Current Entries in the Blocklist" -msgstr "Jelenlegi bejegyzések a tiltólistán" - -#: src/Module/Admin/Blocklist/Server/Index.php:110 -msgid "Delete entry from the blocklist" -msgstr "Bejegyzés törlése a tiltólistáról" - -#: src/Module/Admin/Blocklist/Server/Index.php:111 -msgid "Delete entry from the 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" @@ -4777,28 +4007,28 @@ msgstr "A(z) %s frissítés nem adott vissza állapotot. Nem tudni, hogy sikerü 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 +#: src/Module/Admin/DBSync.php:105 msgid "No failed updates." msgstr "Nincsenek sikertelen frissítések." -#: src/Module/Admin/DBSync.php:107 +#: src/Module/Admin/DBSync.php:106 msgid "Check database structure" msgstr "Adatbázis-szerkezet ellenőrzése" -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:110 msgid "Failed Updates" msgstr "Sikertelen frissítések" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:111 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 +#: src/Module/Admin/DBSync.php:112 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 +#: src/Module/Admin/DBSync.php:113 msgid "Attempt to execute this update step automatically" msgstr "Próbálja meg automatikusan végrehajtani ezt a frissítési lépést" @@ -4807,79 +4037,81 @@ msgstr "Próbálja meg automatikusan végrehajtani ezt a frissítési lépést" msgid "Lock feature %s" msgstr "%s funkció zárolása" -#: src/Module/Admin/Features.php:85 +#: src/Module/Admin/Features.php:84 msgid "Manage Additional Features" msgstr "További funkciók kezelése" -#: src/Module/Admin/Federation.php:68 +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 msgid "Other" msgstr "Egyéb" -#: src/Module/Admin/Federation.php:140 src/Module/Admin/Federation.php:389 +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 msgid "unknown" msgstr "ismeretlen" -#: src/Module/Admin/Federation.php:173 +#: src/Module/Admin/Federation.php:187 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" msgstr[0] "%2$s rendszer összesen" msgstr[1] "%2$s rendszer összesen" -#: src/Module/Admin/Federation.php:174 +#: src/Module/Admin/Federation.php:188 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" msgstr[0] "%2$s aktív felhasználó az elmúlt hónapban" msgstr[1] "%2$s aktív felhasználó az elmúlt hónapban" -#: src/Module/Admin/Federation.php:175 +#: src/Module/Admin/Federation.php:189 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" msgstr[0] "%2$s aktív felhasználó az elmúlt hat hónapban" msgstr[1] "%2$s aktív felhasználó az elmúlt hat hónapban" -#: src/Module/Admin/Federation.php:176 +#: src/Module/Admin/Federation.php:190 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" msgstr[0] "%2$s regisztrált felhasználó" msgstr[1] "%2$s regisztrált felhasználó" -#: src/Module/Admin/Federation.php:177 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" msgstr[0] "%2$s helyileg létrehozott bejegyzés vagy hozzászólás" msgstr[1] "%2$s helyileg létrehozott bejegyzés és hozzászólás" -#: src/Module/Admin/Federation.php:180 +#: src/Module/Admin/Federation.php:194 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" msgstr[0] "%2$s bejegyzés felhasználónként" msgstr[1] "%2$s bejegyzés felhasználónként" -#: src/Module/Admin/Federation.php:185 +#: src/Module/Admin/Federation.php:199 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" msgstr[0] "%2$s felhasználó rendszerenként" msgstr[1] "%2$s felhasználó rendszerenként" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:209 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:201 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "Föderációs statisztikák" -#: src/Module/Admin/Federation.php:205 +#: src/Module/Admin/Federation.php:219 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4892,129 +4124,58 @@ msgid_plural "" msgstr[0] "Jelenleg erről a csomópontról %2$s csomópontnak van tudomása (%3$s aktív felhasználóval az elmúlt hónapban, %4$s aktív felhasználóval az elmúlt hat hónapban, összesen %5$s regisztrált felhasználóval) a következő platformokról:" msgstr[1] "Jelenleg erről a csomópontról %2$s csomópontnak van tudomása (%3$s aktív felhasználóval az elmúlt hónapban, %4$s aktív felhasználóval az elmúlt hat hónapban, összesen %5$s regisztrált felhasználóval) a következő platformokról:" -#: src/Module/Admin/Item/Delete.php:53 -msgid "Item marked for deletion." -msgstr "Az elem megjelölve törlésre." - -#: src/Module/Admin/Item/Delete.php:65 src/Module/BaseAdmin.php:109 -msgid "Delete Item" -msgstr "Elem törlése" - -#: src/Module/Admin/Item/Delete.php:66 -msgid "Delete this Item" -msgstr "Az elem törlése" - -#: src/Module/Admin/Item/Delete.php:67 -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:68 -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:69 -msgid "GUID" -msgstr "GUID" - -#: src/Module/Admin/Item/Delete.php:69 -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:53 src/Module/BaseAdmin.php:119 -msgid "Item Source" -msgstr "Elem forrása" - -#: src/Module/Admin/Item/Source.php:54 -msgid "Item Guid" -msgstr "Elem GUID értéke" - -#: src/Module/Admin/Item/Source.php:58 -msgid "Item Id" -msgstr "Elemazonosító" - -#: src/Module/Admin/Item/Source.php:59 -msgid "Item URI" -msgstr "Elem URI" - -#: src/Module/Admin/Item/Source.php:61 -msgid "Terms" -msgstr "Kifejezések" - -#: src/Module/Admin/Item/Source.php:62 -msgid "Tag" -msgstr "Címke" - -#: src/Module/Admin/Item/Source.php:63 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:64 -msgid "Term" -msgstr "Kifejezés" - -#: src/Module/Admin/Item/Source.php:65 -msgid "URL" -msgstr "URL" - -#: src/Module/Admin/Item/Source.php:66 -msgid "Mention" -msgstr "Említés" - -#: src/Module/Admin/Item/Source.php:67 -msgid "Implicit Mention" -msgstr "Implicit említés" - #: src/Module/Admin/Logs/Settings.php:47 #, 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:71 +#: src/Module/Admin/Logs/Settings.php:77 msgid "PHP log currently enabled." msgstr "A PHP-naplózás jelenleg engedélyezve van." -#: src/Module/Admin/Logs/Settings.php:73 +#: src/Module/Admin/Logs/Settings.php:79 msgid "PHP log currently disabled." msgstr "A PHP-naplózás jelenleg le van tiltva." -#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:111 -#: src/Module/BaseAdmin.php:112 +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 msgid "Logs" msgstr "Naplók" -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:88 msgid "Clear" msgstr "Törlés" -#: src/Module/Admin/Logs/Settings.php:86 +#: src/Module/Admin/Logs/Settings.php:91 msgid "Enable Debugging" msgstr "Hibakeresés engedélyezése" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "Csak olvasható, mert egy környezeti változó állítja be" + +#: src/Module/Admin/Logs/Settings.php:92 msgid "Log file" msgstr "Naplófájl" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:92 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:88 +#: src/Module/Admin/Logs/Settings.php:93 msgid "Log level" msgstr "Naplózási szint" -#: src/Module/Admin/Logs/Settings.php:90 +#: src/Module/Admin/Logs/Settings.php:95 msgid "PHP logging" msgstr "PHP-naplózás" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:96 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 " @@ -5037,73 +4198,77 @@ msgid "" "is readable." msgstr "Nem sikerült megnyitni a(z) %1$s naplófájlt.
    Ellenőrizze, hogy a(z) „%1$s” fájl olvasható-e." -#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:113 +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 msgid "View Logs" msgstr "Naplók megtekintése" -#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Admin/Logs/View.php:87 msgid "Search in logs" msgstr "Keresés a naplókban" -#: src/Module/Admin/Logs/View.php:89 -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Notifications/Notifications.php:140 msgid "Show all" msgstr "Összes megjelenítése" -#: src/Module/Admin/Logs/View.php:90 +#: src/Module/Admin/Logs/View.php:89 msgid "Date" msgstr "Dátum" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:90 msgid "Level" msgstr "Szint" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:91 msgid "Context" msgstr "Környezet" -#: src/Module/Admin/Logs/View.php:94 +#: src/Module/Admin/Logs/View.php:93 msgid "ALL" msgstr "Összes" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:94 msgid "View details" msgstr "Részletek megtekintése" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:95 msgid "Click to view details" msgstr "Kattintson a részletek megtekintéséhez" -#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Esemény részletei" + +#: src/Module/Admin/Logs/View.php:97 msgid "Data" msgstr "Adatok" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:98 #: src/Module/Debug/ActivityPubConversion.php:57 msgid "Source" msgstr "Forrás" -#: src/Module/Admin/Logs/View.php:100 +#: src/Module/Admin/Logs/View.php:99 msgid "File" msgstr "Fájl" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:100 msgid "Line" msgstr "Sor" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:101 msgid "Function" msgstr "Függvény" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:102 msgid "UID" msgstr "UID" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:103 msgid "Process ID" msgstr "Folyamatazonosító" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:104 msgid "Close" msgstr "Bezárás" @@ -5139,463 +4304,472 @@ msgstr "Parancs" msgid "Job Parameters" msgstr "Feladat paraméterei" +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "Létrehozva" + #: src/Module/Admin/Queue.php:79 msgid "Priority" msgstr "Prioritás" -#: src/Module/Admin/Site.php:338 src/Module/Settings/Display.php:138 +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" +msgstr "A(z) %s nem érvényes bemenet a legnagyobb képmérethez" + +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:211 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:355 src/Module/Settings/Display.php:148 +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:221 #, php-format msgid "%s - (Experimental)" msgstr "%s – (kísérleti)" -#: src/Module/Admin/Site.php:367 -msgid "No community page for local users" -msgstr "Nincs közösségi oldal a helyi felhasználókhoz" - -#: src/Module/Admin/Site.php:368 +#: src/Module/Admin/Site.php:342 msgid "No community page" msgstr "Nincs közösségi oldal" -#: src/Module/Admin/Site.php:369 +#: src/Module/Admin/Site.php:343 +msgid "No community page for visitors" +msgstr "Nincs közösségi oldal a látogatóknak" + +#: src/Module/Admin/Site.php:344 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:370 +#: src/Module/Admin/Site.php:345 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:371 +#: src/Module/Admin/Site.php:346 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:377 +#: src/Module/Admin/Site.php:352 msgid "Multi user instance" msgstr "Többfelhasználós példány" -#: src/Module/Admin/Site.php:404 +#: src/Module/Admin/Site.php:375 msgid "Closed" msgstr "Lezárva" -#: src/Module/Admin/Site.php:405 +#: src/Module/Admin/Site.php:376 msgid "Requires approval" msgstr "Jóváhagyást igényel" -#: src/Module/Admin/Site.php:406 +#: src/Module/Admin/Site.php:377 msgid "Open" msgstr "Nyitott" -#: src/Module/Admin/Site.php:410 src/Module/Install.php:222 -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:411 src/Module/Install.php:223 -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:412 src/Module/Install.php:224 -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:416 +#: src/Module/Admin/Site.php:381 msgid "Don't check" msgstr "Ne ellenőrizze" -#: src/Module/Admin/Site.php:417 +#: src/Module/Admin/Site.php:382 msgid "check the stable version" msgstr "a stabil verzió ellenőrzése" -#: src/Module/Admin/Site.php:418 +#: src/Module/Admin/Site.php:383 msgid "check the development version" msgstr "a fejlesztői verzió ellenőrzése" -#: src/Module/Admin/Site.php:422 +#: src/Module/Admin/Site.php:387 msgid "none" msgstr "nincs" -#: src/Module/Admin/Site.php:423 +#: src/Module/Admin/Site.php:388 msgid "Local contacts" msgstr "Helyi partnerek" -#: src/Module/Admin/Site.php:424 +#: src/Module/Admin/Site.php:389 msgid "Interactors" msgstr "Interaktorok" -#: src/Module/Admin/Site.php:434 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Oldal" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:400 msgid "General Information" msgstr "Általános információk" -#: src/Module/Admin/Site.php:437 +#: src/Module/Admin/Site.php:402 msgid "Republish users to directory" msgstr "Felhasználók újra közzé tétele a könyvtárba" -#: src/Module/Admin/Site.php:438 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 msgid "Registration" msgstr "Regisztráció" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:404 msgid "File upload" msgstr "Fájlfeltöltés" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:405 msgid "Policies" msgstr "Irányelvek" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "Speciális" + +#: src/Module/Admin/Site.php:407 msgid "Auto Discovered Contact Directory" msgstr "Automatikusan felfedezett partnerkönyvtár" -#: src/Module/Admin/Site.php:443 +#: src/Module/Admin/Site.php:408 msgid "Performance" msgstr "Teljesítmény" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:409 msgid "Worker" msgstr "Feldolgozó" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:410 msgid "Message Relay" msgstr "Üzenettovábbítás" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:411 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:447 +#: src/Module/Admin/Site.php:412 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:448 +#: src/Module/Admin/Site.php:413 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:450 +#: src/Module/Admin/Site.php:415 msgid "Relocate Node" msgstr "Csomópont áthelyezése" -#: src/Module/Admin/Site.php:451 +#: src/Module/Admin/Site.php:416 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "A csomópont áthelyezése lehetővé teszi a csomópont DNS-tartományának megváltoztatását, valamint az összes meglévő felhasználó és bejegyzés megtartását. Ez a folyamat eltart egy ideig, és csak az áthelyezés konzolparanccsal indítható el az alábbi módon:" -#: src/Module/Admin/Site.php:452 +#: src/Module/Admin/Site.php:417 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(Friendica könyvtár)# bin/console relocate https://uj-tartomany.hu" -#: src/Module/Admin/Site.php:456 +#: src/Module/Admin/Site.php:420 msgid "Site name" msgstr "Oldal neve" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:421 msgid "Sender Email" msgstr "Küldő e-mail-címe" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:421 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:458 +#: src/Module/Admin/Site.php:422 msgid "Name of the system actor" msgstr "A rendszer szereplőjének neve" -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:422 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:459 +#: src/Module/Admin/Site.php:423 msgid "Banner/Logo" msgstr "Reklámcsík vagy logó" -#: src/Module/Admin/Site.php:460 +#: src/Module/Admin/Site.php:424 msgid "Email Banner/Logo" msgstr "E-mail reklámcsík vagy logó" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:425 msgid "Shortcut icon" msgstr "Böngészőikon" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:425 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:462 +#: src/Module/Admin/Site.php:426 msgid "Touch icon" msgstr "Érintő ikon" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:426 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:463 +#: src/Module/Admin/Site.php:427 msgid "Additional Info" msgstr "További információk" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:427 #, 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:464 +#: src/Module/Admin/Site.php:428 msgid "System language" msgstr "Rendszer nyelve" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:429 msgid "System theme" msgstr "Rendszer témája" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:429 #, php-format 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:466 +#: src/Module/Admin/Site.php:430 msgid "Mobile system theme" msgstr "Mobilrendszer témája" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:430 msgid "Theme for mobile devices" msgstr "Téma a mobil eszközökhöz." -#: src/Module/Admin/Site.php:467 src/Module/Install.php:232 -msgid "SSL link policy" -msgstr "SSL-hivatkozás irányelve" - -#: src/Module/Admin/Site.php:467 src/Module/Install.php:234 -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:468 +#: src/Module/Admin/Site.php:431 msgid "Force SSL" msgstr "SSL kényszerítése" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:431 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:469 +#: src/Module/Admin/Site.php:432 msgid "Show help entry from navigation menu" msgstr "Súgó bejegyzés megjelenítése a navigációs menüből" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:432 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "Megjeleníti a súgóoldalak menübejegyzését a navigációs menüből. Ez mindig elérhető a „/help” közvetlen meghívásával." -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:433 msgid "Single user instance" msgstr "Egyfelhasználós példány" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:433 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:472 +#: src/Module/Admin/Site.php:435 msgid "Maximum image size" msgstr "Legnagyobb képméret" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:435 +#, php-format 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." +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "A feltöltött képek legnagyobb mérete bájtban. Alapértelmezetten 0, ami azt jelenti, hogy nincs korlátozás. A kívánt érték mögé k, m vagy g értékeket is írhat a KiB, MiB, GiB értékhez, ebben a sorrendben.\n\t\t\t\t\t\t\t\t\t\t\t\t\tA PHP.ini fájlban lévő upload_max_filesize értékét be kell állítani legalább a kívánt korlátra.\n\t\t\t\t\t\t\t\t\t\t\t\t\tJelenleg az upload_max_filesize %s (%s bájt) értékre van állítva." -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:439 msgid "Maximum image length" msgstr "Legnagyobb képhossz" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:439 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:474 +#: src/Module/Admin/Site.php:440 msgid "JPEG image quality" msgstr "JPEG-képek minősége" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:440 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:476 +#: src/Module/Admin/Site.php:442 msgid "Register policy" msgstr "Regisztrációs irányelv" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "Legtöbb felhasználó" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "Ha meg van adva, akkor a regisztrációs házirend automatikusan lezárja a regisztrációt a megadott számú felhasználó elérésekor, és újra megnyitja a regisztrációt, ha a felhasználók száma a határérték alá csökken. Ez csak akkor működik, ha a házirend nyitottra vagy zártra van beállítva, de nem működik, ha a házirend jóváhagyásra van beállítva." + +#: src/Module/Admin/Site.php:444 msgid "Maximum Daily Registrations" msgstr "Legtöbb napi regisztráció" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:444 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:478 +#: src/Module/Admin/Site.php:445 msgid "Register text" msgstr "Regisztrációs szöveg" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:445 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:479 +#: src/Module/Admin/Site.php:446 msgid "Forbidden Nicknames" msgstr "Tiltott becenevek" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:446 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:480 +#: src/Module/Admin/Site.php:447 msgid "Accounts abandoned after x days" msgstr "Fiókok elhagyottak X nap után" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:447 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:481 +#: src/Module/Admin/Site.php:448 msgid "Allowed friend domains" msgstr "Engedélyezett ismerőstartományok" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:448 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:482 +#: src/Module/Admin/Site.php:449 msgid "Allowed email domains" msgstr "Engedélyezett e-mail-tartományok" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:449 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:483 +#: src/Module/Admin/Site.php:450 msgid "No OEmbed rich content" msgstr "Nincs OEmbed gazdag tartalom" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:450 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:484 +#: src/Module/Admin/Site.php:451 msgid "Trusted third-party domains" msgstr "Megbízható harmadik fél tartományok" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:451 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:485 +#: src/Module/Admin/Site.php:452 msgid "Block public" msgstr "Nyilvános tiltása" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:452 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:486 +#: src/Module/Admin/Site.php:453 msgid "Force publish" msgstr "Közzététel kényszerítése" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:453 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:486 +#: src/Module/Admin/Site.php:453 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:487 +#: src/Module/Admin/Site.php:454 msgid "Global directory URL" msgstr "Globális könyvtár URL" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:454 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:488 +#: src/Module/Admin/Site.php:455 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:488 +#: src/Module/Admin/Site.php:455 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." +"circle rather than public." +msgstr "Az összes új tag alapértelmezett bejegyzés-jogosultságainak beállítása az alapértelmezett adatvédelmi körre a nyilvános helyett." -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:456 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:489 +#: src/Module/Admin/Site.php:456 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:490 +#: src/Module/Admin/Site.php:457 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:490 +#: src/Module/Admin/Site.php:457 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:491 +#: src/Module/Admin/Site.php:458 msgid "Don't embed private images in posts" msgstr "Ne ágyazzon be személyes képeket a bejegyzésekbe" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:458 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 " @@ -5603,11 +4777,11 @@ msgid "" "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:492 +#: src/Module/Admin/Site.php:459 msgid "Explicit Content" msgstr "Felnőtteknek szánt tartalom" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:459 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 " @@ -5616,257 +4790,267 @@ msgid "" "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:493 +#: src/Module/Admin/Site.php:460 msgid "Proxify external content" msgstr "Külső tartalom proxyzása" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:460 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "Külső tartalom átirányítása a proxy funkción keresztül. Ezt például néhány OEmbed-hozzáférésnél és egyéb ritka esetekben használják." -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:461 msgid "Cache contact avatars" msgstr "Partnerprofilképek gyorsítótárazása" -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:461 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "A partnerek profilképeinek helyi tárolása. Ez nagyon sok tárhelyet használ, de növeli a teljesítményt." -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:462 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:495 +#: src/Module/Admin/Site.php:462 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:496 +#: src/Module/Admin/Site.php:463 msgid "Enable multiple registrations" msgstr "Többszörös regisztrációk engedélyezése" -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:463 msgid "Enable users to register additional accounts for use as pages." msgstr "Lehetővé teszi a felhasználóknak, hogy további fiókokat regisztráljanak oldalakként történő használathoz." -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID" msgstr "OpenID engedélyezése" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID support for registration and logins." msgstr "Az OpenID támogatás engedélyezése a regisztrációnál és a bejelentkezéseknél." -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:465 msgid "Enable Fullname check" msgstr "Teljes név ellenőrzésének engedélyezése" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:465 msgid "" "Enable check to only allow users to register with a space between the first " "name and the last name in their full name." msgstr "Lehetővé teszi annak ellenőrzését, hogy a felhasználóknak csak a teljes nevükben lévő vezetéknév és a keresztnév közti szóközzel legyen lehetőségük regisztrálniuk." -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "E-mail küldése az adminisztrátoroknak új regisztrációkor" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "Ha engedélyezve van, és a rendszer nyitott regisztrációhoz van beállítva, akkor minden új regisztrációról e-mail lesz küldve az adminisztrátoroknak." + +#: src/Module/Admin/Site.php:467 msgid "Community pages for visitors" msgstr "Közösségi oldalak a látogatók számára" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:467 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:500 +#: src/Module/Admin/Site.php:468 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:500 +#: src/Module/Admin/Site.php:468 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:502 +#: src/Module/Admin/Site.php:470 msgid "Enable Mail support" msgstr "Levelezési támogatás engedélyezése" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:470 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "A beépített levelezési támogatás engedélyezése az IMAP-mappák lekérdezéséhez és az e-mailben történő válaszhoz." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:471 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "A levelezési támogatást nem lehet engedélyezni, mert a PHP IMAP-modulja nincs telepítve." -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:472 msgid "Enable OStatus support" msgstr "OStatus támogatás engedélyezése" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:472 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "A beépített OStatus (StatusNet, GNU Social stb.) kompatibilitás engedélyezése. Az OStatus hálózaton lévő összes kommunikáció nyilvános." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:474 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:507 +#: src/Module/Admin/Site.php:475 msgid "Enable Diaspora support" msgstr "Diaspora támogatás engedélyezése" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:475 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "A beépített Diaspora hálózati kompatibilitás engedélyezése a Diaspora kiszolgálókkal való kommunikációhoz." -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:476 msgid "Verify SSL" msgstr "SSL ellenőrzése" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:476 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:509 +#: src/Module/Admin/Site.php:477 msgid "Proxy user" msgstr "Proxy felhasználó" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:477 msgid "User name for the proxy server." msgstr "Felhasználónév a proxy-kiszolgálóhoz." -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:478 msgid "Proxy URL" msgstr "Proxy URL" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:478 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." -msgstr "Ha olyan proxy-kiszolgálót szeretne használni, amelyet a Friendicának a hálózathoz való kapcsolódáshoz használnia kell, akkor itt adja meg a proxy URL-ét." +msgstr "Ha olyan proxy-kiszolgálót szeretne használni, amelyet a Friendicának a hálózathoz való kapcsolódáshoz használnia kell, akkor itt adja meg a proxy URL-jét." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:479 msgid "Network timeout" msgstr "Hálózati időkorlát" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:479 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:512 +#: src/Module/Admin/Site.php:480 msgid "Maximum Load Average" msgstr "Legnagyobb terhelésátlag" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:480 #, 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:513 +#: src/Module/Admin/Site.php:481 msgid "Minimal Memory" msgstr "Legkevesebb memória" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:481 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:514 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables" msgstr "Táblák időszakos optimalizálása" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:482 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:516 +#: src/Module/Admin/Site.php:484 msgid "Discover followers/followings from contacts" msgstr "Követők vagy követések felfedezése a partnerekből" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:484 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:517 +#: src/Module/Admin/Site.php:485 msgid "None - deactivated" msgstr "Nincs: ki van kapcsolva." -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:486 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:519 +#: src/Module/Admin/Site.php:487 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:521 +#: src/Module/Admin/Site.php:489 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:521 +#: src/Module/Admin/Site.php:489 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:523 +#: src/Module/Admin/Site.php:491 msgid "Days between requery" msgstr "Ismételt lekérdezések közti napok" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:491 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:524 +#: src/Module/Admin/Site.php:492 msgid "Discover contacts from other servers" msgstr "Partnerek felfedezése más kiszolgálókról" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:492 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:525 +#: src/Module/Admin/Site.php:493 msgid "Search the local directory" msgstr "A helyi könyvtár keresése" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:493 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:527 +#: src/Module/Admin/Site.php:495 msgid "Publish server information" msgstr "Kiszolgálóinformációk közzététele" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:495 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 " @@ -5874,50 +5058,50 @@ msgid "" " href=\"http://the-federation.info/\">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:529 +#: src/Module/Admin/Site.php:497 msgid "Check upstream version" msgstr "Távoli verzió ellenőrzése" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:497 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:530 +#: src/Module/Admin/Site.php:498 msgid "Suppress Tags" msgstr "Címkék letiltása" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:498 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:531 +#: src/Module/Admin/Site.php:499 msgid "Clean database" msgstr "Adatbázis tisztítása" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:499 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:532 +#: src/Module/Admin/Site.php:500 msgid "Lifespan of remote items" msgstr "Távoli elemek élettartama" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:500 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:533 +#: src/Module/Admin/Site.php:501 msgid "Lifespan of unclaimed items" msgstr "Nem igényelt elemek élettartama" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:501 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5925,144 +5109,144 @@ msgid "" "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:534 +#: src/Module/Admin/Site.php:502 msgid "Lifespan of raw conversation data" msgstr "Nyers beszélgetési adatok élettartama" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:502 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:535 +#: src/Module/Admin/Site.php:503 msgid "Maximum numbers of comments per post" msgstr "Bejegyzésenkénti hozzászólások legnagyobb száma" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:503 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:536 +#: src/Module/Admin/Site.php:504 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:536 +#: src/Module/Admin/Site.php:504 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:537 +#: src/Module/Admin/Site.php:505 msgid "Temp path" msgstr "Ideiglenes mappa útvonala" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:505 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:538 +#: src/Module/Admin/Site.php:506 msgid "Only search in tags" msgstr "Keresés csak címkékben" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:506 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:539 -msgid "Generate counts per contact group when calculating network count" -msgstr "Partnercsoportonkénti számlálások előállítása a hálózatszám kiszámításakor" +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "Partnerkörönkénti számlálások előállítása a hálózatszám kiszámításakor" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:507 msgid "" -"On systems with users that heavily use contact groups the query can be very " -"expensive." -msgstr "Olyan rendszereken, ahol a felhasználók nagymértékben használják a partnercsoportokat, a lekérdezés nagyon költséges lehet." +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "Olyan rendszereken, ahol a felhasználók nagymértékben használják a partnerköröket, a lekérdezés nagyon költséges lehet." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:509 msgid "Maximum number of parallel workers" msgstr "Párhuzamos feldolgozók legnagyobb száma" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:509 #, 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:542 +#: src/Module/Admin/Site.php:510 msgid "Enable fastlane" msgstr "Prioritásos sor engedélyezése" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:510 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:544 +#: src/Module/Admin/Site.php:512 msgid "Direct relay transfer" msgstr "Közvetlen továbbító-átvitel" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:512 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:545 +#: src/Module/Admin/Site.php:513 msgid "Relay scope" msgstr "Továbbítás hatóköre" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:513 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:545 src/Module/Contact/Profile.php:273 -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Disabled" msgstr "Letiltva" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:513 msgid "all" msgstr "összes" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:513 msgid "tags" msgstr "címkék" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:514 msgid "Server tags" msgstr "Kiszolgálócímkék" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:514 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:547 +#: src/Module/Admin/Site.php:515 msgid "Deny Server tags" msgstr "Kiszolgálócímkék megtagadása" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:515 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:548 +#: src/Module/Admin/Site.php:516 msgid "Allow user tags" msgstr "Felhasználói címkék engedélyezése" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:516 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:551 +#: src/Module/Admin/Site.php:519 msgid "Start Relocation" msgstr "Áthelyezés indítása" @@ -6088,7 +5272,7 @@ msgstr "Jelenlegi tároló háttérprogram" msgid "Storage Configuration" msgstr "Tároló beállításai" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:94 +#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 msgid "Storage" msgstr "Tároló" @@ -6108,16 +5292,22 @@ msgstr "Mentés és újratöltés" msgid "This backend doesn't have custom settings" msgstr "Ennek a háttérprogramnak nincsenek egyéni beállításai" -#: src/Module/Admin/Storage.php:149 +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "A jelenlegi háttérprogram megváltoztatása tiltva van, mivel azt egy környezeti változó állítja be" + +#: src/Module/Admin/Storage.php:150 msgid "Database (legacy)" msgstr "Adatbázis (örökölt)" -#: src/Module/Admin/Summary.php:54 +#: src/Module/Admin/Summary.php:55 #, php-format msgid "Template engine (%s) error: %s" msgstr "Sablonmotor (%s) hiba: %s" -#: src/Module/Admin/Summary.php:58 +#: src/Module/Admin/Summary.php:59 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -6128,7 +5318,7 @@ msgid "" " an automatic conversion.
    " msgstr "Az adatbázisa még mindig MyISAM táblákkal fut. Meg kell változtatnia a motor típusát InnoDB-re. Mivel a Friendica a jövőben olyan funkciókat fog használni, amely csak InnoDB használatával érhető el, ezért meg kell változtatnia! Nézze meg ezt az útmutatót, amely hasznos lehet a táblamotorok átalakításához. Használhatja a Friendica telepítésének php bin/console.php dbstructure toinnodb parancsát is az automatikus átalakításhoz.
    " -#: src/Module/Admin/Summary.php:63 +#: src/Module/Admin/Summary.php:64 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -6139,7 +5329,7 @@ msgid "" " installation for an automatic conversion.
    " msgstr "Az adatbázisa még mindig Antelope fájlformátumban lévő InnoDB táblákkal fut. Meg kell változtatnia a fájlformátumot Barracudára. A Friendica olyan funkciókat használ, amelyeket az Antelope fájlformátum nem biztosít. Nézze meg ezt az útmutatót, amely hasznos lehet a táblamotorok átalakításához. Használhatja a Friendica telepítésének php bin/console.php dbstructure toinnodb parancsát is az automatikus átalakításhoz.
    " -#: src/Module/Admin/Summary.php:73 +#: src/Module/Admin/Summary.php:74 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -6147,39 +5337,46 @@ msgid "" " to %d. See here for more information.
    " msgstr "A table_definition_cache értéke túl alacsony (%d). Ez a „Prepared statement needs to be re-prepared” adatbázishibához vezethet. Állítsa legalább %d értékre. További információkért nézze meg ezt.
    " -#: src/Module/Admin/Summary.php:83 +#: src/Module/Admin/Summary.php:85 #, 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:92 +#: src/Module/Admin/Summary.php:94 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:96 +#: src/Module/Admin/Summary.php:98 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:101 +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "A system.url bejegyzés hiányzik. Ez egy alacsony szintű beállítás, és váratlan viselkedéshez vezethet. Adjon meg egy érvényes bejegyzést a lehető leghamarabb a beállítófájlban vagy konzolparancsonként!" + +#: src/Module/Admin/Summary.php:107 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:103 +#: src/Module/Admin/Summary.php:109 #, 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:108 +#: src/Module/Admin/Summary.php:114 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6188,7 +5385,7 @@ msgid "" "help with the transition." msgstr "A Friendica beállításai most a „config/local.config.php” fájlban vannak eltárolva. Másolja le a „config/local-sample.config.php” fájlt, és helyezze át a beállításokat a .htconfig.php fájlból. Az átvitelhez való segítségért nézze meg a beállítások súgóoldalát." -#: src/Module/Admin/Summary.php:112 +#: src/Module/Admin/Summary.php:118 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6197,7 +5394,7 @@ msgid "" "page for help with the transition." msgstr "A Friendica beállításai most a „config/local.config.php” fájlban vannak eltárolva. Másolja le a „config/local-sample.config.php” fájlt, és helyezze át a beállításokat a config/local.ini.php fájlból. Az átvitelhez való segítségért nézze meg a beállítások súgóoldalát." -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:124 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -6205,83 +5402,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "A %s nem érhető el a rendszeréről. Ez súlyos beállítási probléma, amely megakadályozza a kiszolgálók közti kommunikációt. Nézze meg a telepítési oldalt a segítségért." -#: src/Module/Admin/Summary.php:136 -#, 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:150 -#, 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:166 +#: src/Module/Admin/Summary.php:148 #, 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:174 +#: src/Module/Admin/Summary.php:156 #, 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:182 +#: src/Module/Admin/Summary.php:164 #, 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:189 -msgid "Normal Account" -msgstr "Normál fiók" - -#: src/Module/Admin/Summary.php:190 -msgid "Automatic Follower Account" -msgstr "Automatikusan követő fiók" - -#: src/Module/Admin/Summary.php:191 -msgid "Public Forum Account" -msgstr "Nyilvános fórum fiók" - -#: src/Module/Admin/Summary.php:192 -msgid "Automatic Friend Account" -msgstr "Automatikus ismerős fiók" - -#: src/Module/Admin/Summary.php:193 -msgid "Blog Account" -msgstr "Blog fiók" - -#: src/Module/Admin/Summary.php:194 -msgid "Private Forum Account" -msgstr "Személyes fórumfiók" - -#: src/Module/Admin/Summary.php:214 +#: src/Module/Admin/Summary.php:175 msgid "Message queues" msgstr "Üzenet várakozási sorai" -#: src/Module/Admin/Summary.php:220 +#: src/Module/Admin/Summary.php:181 msgid "Server Settings" msgstr "Kiszolgálóbeállítások" -#: src/Module/Admin/Summary.php:236 -msgid "Registered users" -msgstr "Regisztrált felhasználók" - -#: src/Module/Admin/Summary.php:238 -msgid "Pending registrations" -msgstr "Függőben lévő regisztrációk" - -#: src/Module/Admin/Summary.php:239 +#: src/Module/Admin/Summary.php:199 msgid "Version" msgstr "Verzió" -#: src/Module/Admin/Summary.php:243 +#: src/Module/Admin/Summary.php:203 msgid "Active addons" msgstr "Bekapcsolt bővítmények" @@ -6305,7 +5459,7 @@ 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:97 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 msgid "Themes" msgstr "Témák" @@ -6321,34 +5475,34 @@ msgstr "Témák újratöltve" msgid "Reload active themes" msgstr "Bekapcsolt témák újratöltése" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:118 #, 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 +#: src/Module/Admin/Themes/Index.php:119 msgid "[Experimental]" msgstr "[Kísérleti]" -#: src/Module/Admin/Themes/Index.php:121 +#: src/Module/Admin/Themes/Index.php:120 msgid "[Unsupported]" msgstr "[Nem támogatott]" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 msgid "Display Terms of Service" msgstr "Használati feltételek megjelenítése" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 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:78 +#: src/Module/Admin/Tos.php:80 msgid "Display Privacy Statement" msgstr "Adatvédelmi nyilatkozatok megjelenítése" -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -6356,220 +5510,34 @@ msgid "" "noreferrer\">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:79 +#: src/Module/Admin/Tos.php:81 msgid "Privacy Statement Preview" msgstr "Adatvédelmi nyilatkozat előnézete" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "The Terms of Service" msgstr "A használati feltételek" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 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 +#: src/Module/Admin/Tos.php:84 +msgid "The rules" +msgstr "A szabályok" + +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." +msgstr "Itt adja meg a rendszer szabályait. Minden sor egy szabályt jelent." + +#: src/Module/Api/ApiResponse.php:293 #, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "%s felhasználó tiltva" -msgstr[1] "%s felhasználó tiltva" +msgid "API endpoint %s %s is not implemented but might be in the future." +msgstr "A(z) %s %s API-végpont nincs megvalósítva, de a jövőben megvalósításra kerülhet." -#: 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:95 -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/ApiResponse.php:272 -#, php-format -msgid "API endpoint %s %s is not implemented" -msgstr "A(z) %s %s API-végpont nincs megvalósítva" - -#: src/Module/Api/ApiResponse.php:273 -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/Mastodon/Apps.php:63 +#: src/Module/Api/Mastodon/Apps.php:73 msgid "Missing parameters" msgstr "Hiányzó paraméterek" @@ -6577,11 +5545,11 @@ msgstr "Hiányzó paraméterek" 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 +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 msgid "Only starting posts can be muted" msgstr "Csak a kezdeti bejegyzéseket lehet némítani" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 #, php-format msgid "Posts from %s can't be shared" msgstr "%s bejegyzéseit nem lehet megosztani" @@ -6590,11 +5558,11 @@ msgstr "%s bejegyzéseit nem lehet megosztani" 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 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 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 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 #, php-format msgid "Posts from %s can't be unshared" msgstr "%s bejegyzéseinek megosztását nem lehet visszavonni" @@ -6603,117 +5571,106 @@ msgstr "%s bejegyzéseinek megosztását nem lehet visszavonni" msgid "Contact not found" msgstr "A partner nem található" -#: src/Module/Apps.php:54 +#: src/Module/Apps.php:62 msgid "No installed applications." msgstr "Nincsenek telepített alkalmazások." -#: src/Module/Apps.php:59 +#: src/Module/Apps.php:67 msgid "Applications" msgstr "Alkalmazások" -#: src/Module/Attach.php:50 src/Module/Attach.php:62 +#: src/Module/Attach.php:49 src/Module/Attach.php:61 msgid "Item was not found." msgstr "Az elem nem található." -#: src/Module/BaseAdmin.php:57 src/Module/BaseAdmin.php:61 +#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 msgid "Please login to continue." msgstr "Jelentkezzen be a folytatáshoz." -#: src/Module/BaseAdmin.php:66 +#: 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:70 +#: 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:89 +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 msgid "Overview" msgstr "Áttekintő" -#: src/Module/BaseAdmin.php:92 +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 msgid "Configuration" msgstr "Beállítás" -#: src/Module/BaseAdmin.php:98 src/Module/BaseSettings.php:63 +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 msgid "Additional features" msgstr "További funkciók" -#: src/Module/BaseAdmin.php:101 +#: src/Module/BaseAdmin.php:97 msgid "Database" msgstr "Adatbázis" -#: src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:98 msgid "DB updates" msgstr "Adatbázis-frissítések" -#: src/Module/BaseAdmin.php:103 +#: src/Module/BaseAdmin.php:99 msgid "Inspect Deferred Workers" msgstr "Elhalasztott feldolgozók vizsgálata" -#: src/Module/BaseAdmin.php:104 +#: src/Module/BaseAdmin.php:100 msgid "Inspect worker Queue" msgstr "Feldolgozó várakozási sorának vizsgálata" -#: src/Module/BaseAdmin.php:106 -msgid "Tools" -msgstr "Eszközök" - -#: src/Module/BaseAdmin.php:107 -msgid "Contact Blocklist" -msgstr "Partnertiltólista" - -#: src/Module/BaseAdmin.php:108 -msgid "Server Blocklist" -msgstr "Kiszolgáló-tiltólista" - -#: src/Module/BaseAdmin.php:115 +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 msgid "Diagnostics" msgstr "Diagnosztika" -#: src/Module/BaseAdmin.php:116 +#: src/Module/BaseAdmin.php:107 msgid "PHP Info" msgstr "PHP-információk" -#: src/Module/BaseAdmin.php:117 +#: src/Module/BaseAdmin.php:108 msgid "probe address" msgstr "Cím szondázása" -#: src/Module/BaseAdmin.php:118 +#: src/Module/BaseAdmin.php:109 msgid "check webfinger" msgstr "WebFinger ellenőrzése" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:110 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:121 src/Module/Debug/ActivityPubConversion.php:137 +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 msgid "ActivityPub Conversion" msgstr "ActivityPub beszélgetés" -#: src/Module/BaseAdmin.php:130 +#: src/Module/BaseAdmin.php:120 msgid "Addon Features" msgstr "Bővítményszolgáltatások" -#: src/Module/BaseAdmin.php:131 +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 msgid "User registrations waiting for confirmation" msgstr "Megerősítésre váró felhasználói regisztrációk" -#: src/Module/BaseApi.php:241 src/Module/BaseApi.php:257 -#: src/Module/BaseApi.php:273 +#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 +#: src/Module/BaseApi.php:487 msgid "Too Many Requests" msgstr "Túl sok kérés" -#: src/Module/BaseApi.php:242 +#: src/Module/BaseApi.php:456 #, 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." -#: src/Module/BaseApi.php:258 +#: src/Module/BaseApi.php:472 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6721,7 +5678,7 @@ msgid_plural "" 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/BaseApi.php:274 +#: src/Module/BaseApi.php:488 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6729,62 +5686,130 @@ msgid_plural "" msgstr[0] "A havi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva." msgstr[1] "A havi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva." -#: src/Module/BaseProfile.php:51 src/Module/Contact.php:460 +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "Nincs hozzáférése a moderálási oldalakhoz." + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "Az alkezelt fiókok nem férhetnek hozzá a moderálási oldalakhoz. Jelentkezzen vissza a fő fiókkal." + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "Jelentések" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Felhasználók" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "Eszközök" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "Partnertiltólista" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "Kiszolgáló-tiltólista" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "Elem törlése" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "Elem forrása" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 msgid "Profile Details" msgstr "Profil részletei" -#: src/Module/BaseProfile.php:109 +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "Beszélgetések elkezdve" + +#: src/Module/BaseProfile.php:111 msgid "Only You Can See This" msgstr "Csak Ön láthatja ezt" -#: src/Module/BaseProfile.php:114 src/Module/Profile/Schedule.php:82 +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 msgid "Scheduled Posts" msgstr "Ütemezett bejegyzések" -#: src/Module/BaseProfile.php:117 +#: src/Module/BaseProfile.php:119 msgid "Posts that are scheduled for publishing" msgstr "Bejegyzések, amelyek közzétételre vannak üzemezve" -#: src/Module/BaseProfile.php:136 src/Module/BaseProfile.php:139 +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 msgid "Tips for New Members" msgstr "Tippek új tagoknak" -#: src/Module/BaseSearch.php:69 +#: src/Module/BaseSearch.php:71 #, php-format msgid "People Search - %s" msgstr "Emberek keresése – %s" -#: src/Module/BaseSearch.php:79 +#: src/Module/BaseSearch.php:75 #, php-format -msgid "Forum Search - %s" -msgstr "Fórum keresése – %s" +msgid "Group Search - %s" +msgstr "Csoportkeresés – %s" -#: src/Module/BaseSettings.php:41 +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "Nincs találat" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "%d találat ki lett szűrve, mert az Ön csomópontja tiltja azt a tartományt, amelyen az regisztrálva van. A Névjegy oldalon felülvizsgálhatja azon tartományok listáját, amelyet a csomópontja jelenleg letilt." +msgstr[1] "%d találat ki lett szűrve, mert az Ön csomópontja tiltja azt a tartományt, amelyen azok regisztrálva vannak. A Névjegy oldalon felülvizsgálhatja azon tartományok listáját, amelyet a csomópontja jelenleg letilt." + +#: src/Module/BaseSettings.php:78 msgid "Account" msgstr "Fiók" -#: src/Module/BaseSettings.php:48 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 msgid "Two-factor authentication" msgstr "Kétlépcsős hitelesítés" -#: src/Module/BaseSettings.php:71 +#: src/Module/BaseSettings.php:118 msgid "Display" msgstr "Megjelenítés" -#: src/Module/BaseSettings.php:92 src/Module/Settings/Delegation.php:171 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "Közösségi hálózatok" + +#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 msgid "Manage Accounts" msgstr "Fiókok kezelése" -#: src/Module/BaseSettings.php:99 +#: src/Module/BaseSettings.php:153 msgid "Connected apps" msgstr "Kapcsolt alkalmazások" -#: src/Module/BaseSettings.php:106 src/Module/Settings/UserExport.php:76 +#: src/Module/BaseSettings.php:160 +msgid "Remote servers" +msgstr "Távoli kiszolgálók" + +#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 msgid "Export personal data" msgstr "Személyes adatok exportálása" -#: src/Module/BaseSettings.php:113 +#: src/Module/BaseSettings.php:174 msgid "Remove account" msgstr "Fiók eltávolítása" @@ -6796,117 +5821,365 @@ msgstr "Erről az oldalról hiányzik egy URL paraméter." msgid "The post was created" msgstr "A bejegyzés létrejött" -#: src/Module/Contact.php:88 +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "Érvénytelen kérés" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "Az eseményazonosító hiányzik." + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "Nem sikerült eltávolítani az eseményt" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "Az esemény nem fejeződhet be, mielőtt elkezdődött volna." + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "Az esemény címe és a kezdési idő kötelező." + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "A kezdési dátum és a cím kötelező." + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "Esemény kezdete:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/Channels.php:130 src/Module/Settings/Channels.php:146 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Kötelező" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "A befejezési dátum vagy idő nem ismert vagy nem fontos" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "Esemény befejezése:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "Cím (BBCode nem engedélyezett)" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "Leírás (BBCode engedélyezett)" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "Hely (BBCode nem engedélyezett)" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Az esemény megosztása" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "Alap" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "Ez a naptárformátum nem támogatott" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "Nem található exportálható adat" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "naptár" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Események" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "Nézet" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Új esemény létrehozása" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:291 +msgid "list" +msgstr "lista" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "Nem sikerült létrehozni a kört." + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "A kör nem található." + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "A kör neve nem változott meg." + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "Ismeretlen kör." + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "A partner nem található." + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "Érvénytelen partner." + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "A partner törölve." + +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "Nem lehet hozzáadni a partnert a körhöz." + +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "A partner sikeresen hozzáadva a körhöz." + +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "Nem lehet eltávolítani a partnert a körből." + +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "A partner sikeresen eltávolítva a körből." + +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "Hibás kérés." + +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "Kör mentése" + +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "Szűrő" + +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "Partnerek vagy ismerősök körének létrehozása." + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "Nem lehet eltávolítani a kört." + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "Kör törlése" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "Kör nevének szerkesztése" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "Tagok" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "A kör üres" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "Partner eltávolítása a körből" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "Kattintson egy partnerre a hozzáadáshoz vagy eltávolításhoz." + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "Partner hozzáadása a körhöz" + +#: src/Module/Contact.php:97 #, 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:309 +#: src/Module/Contact.php:348 msgid "Show all contacts" msgstr "Összes partner megjelenítése" -#: src/Module/Contact.php:317 +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "Függőben" + +#: src/Module/Contact.php:356 msgid "Only show pending contacts" msgstr "Csak a függőben lévő partnerek megjelenítése" -#: src/Module/Contact.php:325 +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Tiltva" + +#: src/Module/Contact.php:364 msgid "Only show blocked contacts" msgstr "Csak a tiltott partnerek megjelenítése" -#: src/Module/Contact.php:330 src/Module/Contact.php:377 -#: src/Object/Post.php:339 +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:369 msgid "Ignored" msgstr "Mellőzve" -#: src/Module/Contact.php:333 +#: src/Module/Contact.php:372 msgid "Only show ignored contacts" msgstr "Csak a mellőzött partnerek megjelenítése" -#: src/Module/Contact.php:338 src/Module/Contact.php:378 +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "Összecsukva" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "Csak az összecsukott partnerek megjelenítése" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 msgid "Archived" msgstr "Archiválva" -#: src/Module/Contact.php:341 +#: src/Module/Contact.php:388 msgid "Only show archived contacts" msgstr "Csak az archivált partnerek megjelenítése" -#: src/Module/Contact.php:346 src/Module/Contact.php:376 +#: src/Module/Contact.php:393 src/Module/Contact.php:438 msgid "Hidden" msgstr "Rejtett" -#: src/Module/Contact.php:349 +#: src/Module/Contact.php:396 msgid "Only show hidden contacts" msgstr "Csak a rejtett partnerek megjelenítése" -#: src/Module/Contact.php:357 -msgid "Organize your contact groups" -msgstr "Partnercsoportok szervezése" +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "Partnerkörök szervezése" -#: src/Module/Contact.php:389 +#: src/Module/Contact.php:459 msgid "Search your contacts" msgstr "Partnerek keresése" -#: src/Module/Contact.php:390 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 #, php-format msgid "Results for: %s" msgstr "Találatok erre: %s" -#: src/Module/Contact.php:397 +#: src/Module/Contact.php:467 msgid "Update" msgstr "Frissítés" -#: src/Module/Contact.php:399 src/Module/Contact/Profile.php:349 -#: src/Module/Contact/Profile.php:457 +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Tiltás feloldása" + +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 msgid "Unignore" msgstr "Mellőzés feloldása" -#: src/Module/Contact.php:401 +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "Összecsukás megszüntetése" + +#: src/Module/Contact.php:472 msgid "Batch Actions" msgstr "Tömeges műveletek" -#: src/Module/Contact.php:436 +#: src/Module/Contact.php:515 msgid "Conversations started by this contact" msgstr "A partner által elkezdett beszélgetések" -#: src/Module/Contact.php:441 +#: src/Module/Contact.php:520 msgid "Posts and Comments" msgstr "Bejegyzések és hozzászólások" -#: src/Module/Contact.php:452 +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "Egyéni bejegyzések és válaszok" + +#: src/Module/Contact.php:531 msgid "Posts containing media objects" msgstr "Médiaobjektumokat tartalmazó bejegyzések" -#: src/Module/Contact.php:467 +#: src/Module/Contact.php:539 msgid "View all known contacts" msgstr "Összes ismert partner megtekintése" -#: src/Module/Contact.php:477 +#: src/Module/Contact.php:550 msgid "Advanced Contact Settings" msgstr "Speciális partnerbeállítások" -#: src/Module/Contact.php:511 +#: src/Module/Contact.php:586 msgid "Mutual Friendship" msgstr "Kölcsönös ismeretség" -#: src/Module/Contact.php:515 +#: src/Module/Contact.php:590 msgid "is a fan of yours" msgstr "az Ön rajongója" -#: src/Module/Contact.php:519 +#: src/Module/Contact.php:594 msgid "you are a fan of" msgstr "Ön rajong érte:" -#: src/Module/Contact.php:537 +#: src/Module/Contact.php:612 msgid "Pending outgoing contact request" msgstr "Függőben lévő kimenő partnerkérés" -#: src/Module/Contact.php:539 +#: src/Module/Contact.php:614 msgid "Pending incoming contact request" msgstr "Függőben lévő bejövő partnerkérés" -#: src/Module/Contact.php:552 src/Module/Contact/Profile.php:334 +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 #, php-format msgid "Visit %s's profile [%s]" msgstr "%s profiljának megtekintése [%s]" @@ -6919,6 +6192,19 @@ msgstr "A partner frissítése sikertelen." msgid "Return to contact editor" msgstr "Visszatérés a partnerszerkesztőhöz" +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Név" + #: src/Module/Contact/Advanced.php:135 msgid "Account Nickname" msgstr "Fiók beceneve" @@ -6935,419 +6221,565 @@ msgstr "Lekérés vagy hírforrás URL" msgid "New photo from this URL" msgstr "Új fénykép erről az URL-ről" -#: src/Module/Contact/Contacts.php:50 src/Module/Conversation/Network.php:187 -#: src/Module/Group.php:103 -msgid "Invalid contact." -msgstr "Érvénytelen partner." - -#: src/Module/Contact/Contacts.php:73 +#: src/Module/Contact/Contacts.php:89 msgid "No known contacts." msgstr "Nincsenek ismert partnerek." -#: src/Module/Contact/Contacts.php:87 src/Module/Profile/Common.php:98 +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 msgid "No common contacts." msgstr "Nincsenek közös partnerek." -#: src/Module/Contact/Contacts.php:99 src/Module/Profile/Contacts.php:96 +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 #, 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:103 src/Module/Profile/Contacts.php:99 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 #, 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:107 src/Module/Profile/Contacts.php:102 +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 #, 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:109 src/Module/Profile/Contacts.php:104 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 #, 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:115 src/Module/Profile/Common.php:86 +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 #, 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:117 src/Module/Profile/Common.php:88 +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 #, 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:123 src/Module/Profile/Contacts.php:110 +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "Partner (%s)" msgstr[1] "Partnerek (%s)" -#: src/Module/Contact/Profile.php:127 +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:166 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Hozzáférés megtagadva." + +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Kérés elküldése" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "Már hozzáadta ezt a partnert." + +#: src/Module/Contact/Follow.php:130 +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." + +#: src/Module/Contact/Follow.php:138 +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." + +#: src/Module/Contact/Follow.php:143 +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." + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Válaszoljon a következőre:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "Az Ön személyazonosság-címe:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "Profil URL" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Címkék:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "%s ismeri Önt" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Személyes jegyzet hozzáadása:" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" +msgstr "Bejegyzések és válaszok" + +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "A partnert nem sikerült hozzáadni." + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "Érvénytelen kérés." + +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "Nincs illesztendő kulcsszó. Adjon kulcsszavakat a profiljához." + +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "Profilegyezés" + +#: src/Module/Contact/Profile.php:140 msgid "Failed to update contact record." msgstr "Nem sikerült frissíteni a partner rekordját." -#: src/Module/Contact/Profile.php:177 +#: src/Module/Contact/Profile.php:190 msgid "Contact has been unblocked" msgstr "A partner tiltása fel lett oldva" -#: src/Module/Contact/Profile.php:181 +#: src/Module/Contact/Profile.php:194 msgid "Contact has been blocked" msgstr "A partner tiltva lett" -#: src/Module/Contact/Profile.php:193 +#: src/Module/Contact/Profile.php:206 msgid "Contact has been unignored" -msgstr "A partner figyelmen kívül hagyása fel lett oldva" +msgstr "A partner mellőzése fel lett oldva" -#: src/Module/Contact/Profile.php:197 +#: src/Module/Contact/Profile.php:210 msgid "Contact has been ignored" -msgstr "A partner figyelmen kívül lett hagyva" +msgstr "A partner mellőzve lett" -#: src/Module/Contact/Profile.php:229 +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" +msgstr "A partner összecsukása meg lett szüntetve" + +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "A partner össze lett csukva" + +#: src/Module/Contact/Profile.php:254 #, php-format msgid "You are mutual friends with %s" msgstr "Ön kölcsönösen ismerős %s partnerrel" -#: src/Module/Contact/Profile.php:230 +#: src/Module/Contact/Profile.php:255 #, php-format msgid "You are sharing with %s" msgstr "Ön megoszt %s partnerrel" -#: src/Module/Contact/Profile.php:231 +#: src/Module/Contact/Profile.php:256 #, php-format msgid "%s is sharing with you" msgstr "%s megoszt Önnel" -#: src/Module/Contact/Profile.php:247 +#: src/Module/Contact/Profile.php:272 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/Profile.php:249 +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "Ez a partner olyan kiszolgálón van, amelyet mellőzött." + +#: src/Module/Contact/Profile.php:285 msgid "Never" msgstr "Soha" -#: src/Module/Contact/Profile.php:252 +#: src/Module/Contact/Profile.php:288 msgid "(Update was not successful)" msgstr "(a frissítés nem volt sikeres)" -#: src/Module/Contact/Profile.php:252 +#: src/Module/Contact/Profile.php:288 msgid "(Update was successful)" msgstr "(a frissítés sikeres volt)" -#: src/Module/Contact/Profile.php:254 src/Module/Contact/Profile.php:420 +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 msgid "Suggest friends" msgstr "Ismerősök ajánlása" -#: src/Module/Contact/Profile.php:258 +#: src/Module/Contact/Profile.php:294 #, php-format msgid "Network type: %s" msgstr "Hálózat típusa: %s" -#: src/Module/Contact/Profile.php:263 +#: src/Module/Contact/Profile.php:299 msgid "Communications lost with this contact!" msgstr "A kommunikációk megszakadtak ezzel a partnerrel!" -#: src/Module/Contact/Profile.php:269 +#: src/Module/Contact/Profile.php:305 msgid "Fetch further information for feeds" msgstr "További információk lekérése a hírforrásokhoz" -#: src/Module/Contact/Profile.php:271 +#: src/Module/Contact/Profile.php:307 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/Profile.php:274 +#: src/Module/Contact/Profile.php:310 msgid "Fetch information" msgstr "Információk lekérése" -#: src/Module/Contact/Profile.php:275 +#: src/Module/Contact/Profile.php:311 msgid "Fetch keywords" msgstr "Kulcsszavak lekérése" -#: src/Module/Contact/Profile.php:276 +#: src/Module/Contact/Profile.php:312 msgid "Fetch information and keywords" msgstr "Információk és kulcsszavak lekérése" -#: src/Module/Contact/Profile.php:286 src/Module/Contact/Profile.php:292 -#: src/Module/Contact/Profile.php:297 src/Module/Contact/Profile.php:303 +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 msgid "No mirroring" msgstr "Nincs tükrözés" -#: src/Module/Contact/Profile.php:287 -msgid "Mirror as forwarded posting" -msgstr "Tükrözés továbbított beküldésként" - -#: src/Module/Contact/Profile.php:288 src/Module/Contact/Profile.php:298 -#: src/Module/Contact/Profile.php:304 +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 msgid "Mirror as my own posting" msgstr "Tükrözés saját beküldésként" -#: src/Module/Contact/Profile.php:293 src/Module/Contact/Profile.php:299 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 msgid "Native reshare" msgstr "Natív újra megosztás" -#: src/Module/Contact/Profile.php:316 +#: src/Module/Contact/Profile.php:353 msgid "Contact Information / Notes" msgstr "Partner információ vagy jegyzetek" -#: src/Module/Contact/Profile.php:317 +#: src/Module/Contact/Profile.php:354 msgid "Contact Settings" msgstr "Partnerbeállítások" -#: src/Module/Contact/Profile.php:325 +#: src/Module/Contact/Profile.php:362 msgid "Contact" msgstr "Partner" -#: src/Module/Contact/Profile.php:329 +#: src/Module/Contact/Profile.php:366 msgid "Their personal note" msgstr "A személyes jegyzeteik" -#: src/Module/Contact/Profile.php:331 +#: src/Module/Contact/Profile.php:368 msgid "Edit contact notes" msgstr "Partner jegyzeteinek szerkesztése" -#: src/Module/Contact/Profile.php:335 +#: src/Module/Contact/Profile.php:372 msgid "Block/Unblock contact" msgstr "Partner tiltása vagy tiltásának feloldása" -#: src/Module/Contact/Profile.php:336 +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 msgid "Ignore contact" msgstr "Partner mellőzése" -#: src/Module/Contact/Profile.php:337 +#: src/Module/Contact/Profile.php:374 msgid "View conversations" msgstr "Beszélgetések megtekintése" -#: src/Module/Contact/Profile.php:342 +#: src/Module/Contact/Profile.php:379 msgid "Last update:" msgstr "Utolsó frissítés:" -#: src/Module/Contact/Profile.php:344 +#: src/Module/Contact/Profile.php:381 msgid "Update public posts" msgstr "Nyilvános bejegyzések frissítése" -#: src/Module/Contact/Profile.php:346 src/Module/Contact/Profile.php:430 +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 msgid "Update now" msgstr "Frissítés most" -#: src/Module/Contact/Profile.php:353 -msgid "Currently blocked" -msgstr "Jelenleg tiltva" - -#: src/Module/Contact/Profile.php:354 -msgid "Currently ignored" -msgstr "Jelenleg mellőzve" - -#: src/Module/Contact/Profile.php:355 -msgid "Currently archived" -msgstr "Jelenleg archiválva" - -#: src/Module/Contact/Profile.php:356 +#: src/Module/Contact/Profile.php:385 msgid "Awaiting connection acknowledge" msgstr "Várakozás a kapcsolat nyugtázására" -#: src/Module/Contact/Profile.php:357 -#: src/Module/Notifications/Introductions.php:190 +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "Jelenleg tiltva" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "Jelenleg mellőzve" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "Jelenleg összecsukva" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "Jelenleg archiválva" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "Távoli kiszolgálók kezelése" + +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 msgid "Hide this contact from others" msgstr "A partner elrejtése mások elől" -#: src/Module/Contact/Profile.php:357 +#: src/Module/Contact/Profile.php:394 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/Profile.php:358 +#: src/Module/Contact/Profile.php:395 msgid "Notification for new posts" msgstr "Értesítés új bejegyzéseknél" -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:395 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/Profile.php:360 +#: src/Module/Contact/Profile.php:397 msgid "Keyword Deny List" msgstr "Kulcsszavas tiltólista" -#: src/Module/Contact/Profile.php:360 +#: src/Module/Contact/Profile.php:397 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/Profile.php:378 -#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "Actions" msgstr "Műveletek" -#: src/Module/Contact/Profile.php:386 +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "Állapot" + +#: src/Module/Contact/Profile.php:423 msgid "Mirror postings from this contact" msgstr "Beküldés tükrözése ettől a partnertől" -#: src/Module/Contact/Profile.php:388 +#: src/Module/Contact/Profile.php:425 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/Profile.php:440 +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" +msgstr "Csatorna beállításai" + +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "A partner gyakorisága a kapcsolódó csatornákban" + +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "A csatorna típusától függően nem minden bejegyzés jelenik meg ettől a partnertől. Alapértelmezetten a bejegyzéseknek minimális számú interakcióval (hozzászólások, kedvelések) kell rendelkezniük ahhoz, hogy megjelenjenek a csatornákon. Másrészt lehetnek olyan partnerek is, akik elárasztják a csatornát, így előfordulhat, hogy csak néhány bejegyzésüket szeretné látni. Vagy egyáltalán nem szeretné látni a tartalmaikat, de nem szeretné teljesen letiltani vagy elrejteni a partnert." + +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "Alapértelmezett gyakoriság" + +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "Ennek a partnernek a bejegyzései akkor jelennek meg az „Önnek” csatornán, ha gyakran lép kapcsolatba ezzel a partnerrel, vagy ha egy bejegyzés elért egy bizonyos interakciós szintet." + +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "A partner összes bejegyzésének megjelenítése" + +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "Ennek a partnernek az összes bejegyzése megjelenik az „Önnek” csatornán." + +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "Csak néhány bejegyzés megjelenítése" + +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "Ha egy partner rövid időn belül sok bejegyzést hoz létre, akkor ez a beállítás csökkenti a megjelenített bejegyzések számát minden csatornán." + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "Soha se jelenítsen meg bejegyzéseket" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "Ennek a partnernek a bejegyzései soha sem jelennek meg semmilyen csatornán." + +#: src/Module/Contact/Profile.php:502 msgid "Refetch contact data" msgstr "Partneradatok ismételt lekérése" -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:513 msgid "Toggle Blocked status" msgstr "Tiltott állapot átváltása" -#: src/Module/Contact/Profile.php:459 +#: src/Module/Contact/Profile.php:521 msgid "Toggle Ignored status" msgstr "Mellőzött állapot átváltása" -#: src/Module/Contact/Profile.php:466 src/Module/Contact/Revoke.php:105 +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" +msgstr "Összecsukott állapot átváltása" + +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 msgid "Revoke Follow" msgstr "Követés visszavonása" -#: src/Module/Contact/Profile.php:468 +#: src/Module/Contact/Profile.php:538 msgid "Revoke the follow from this contact" msgstr "A követés visszavonása ettől a partnertől" -#: src/Module/Contact/Revoke.php:62 +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "Hibás kérés." + +#: src/Module/Contact/Revoke.php:63 msgid "Unknown contact." msgstr "Ismeretlen partner." -#: src/Module/Contact/Revoke.php:72 src/Module/Group.php:112 -msgid "Contact is deleted." -msgstr "A partner törölve." - -#: src/Module/Contact/Revoke.php:76 +#: src/Module/Contact/Revoke.php:77 msgid "Contact is being deleted." msgstr "A partner törlésre került." -#: src/Module/Contact/Revoke.php:90 +#: src/Module/Contact/Revoke.php:91 msgid "Follow was successfully revoked." msgstr "A követés sikeresen vissza lett vonva." -#: src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Revoke.php:107 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "Valóban vissza szeretné vonni ennek a partnernek a követését? Ezt a műveletet nem lehet visszavonni, és a partnernek kézzel kell majd újra követnie Önt." -#: src/Module/Contact/Revoke.php:107 -#: src/Module/Notifications/Introductions.php:142 -#: src/Module/OAuth/Acknowledge.php:53 src/Module/Register.php:130 -#: src/Module/Settings/TwoFactor/Trusted.php:124 +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "Yes" msgstr "Igen" -#: src/Module/Conversation/Community.php:68 -msgid "Local Community" -msgstr "Helyi közösség" +#: src/Module/Contact/Suggestions.php:62 +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." -#: src/Module/Conversation/Community.php:71 -msgid "Posts from local users on this server" -msgstr "Bejegyzések a kiszolgálón lévő helyi felhasználóktól" +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "Ön nem követi ezt a partnert." -#: src/Module/Conversation/Community.php:79 -msgid "Global Community" -msgstr "Globális közösség" +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "A követés megszüntetését jelenleg nem támogatja a hálózata." -#: src/Module/Conversation/Community.php:82 -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/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "Leválasztás vagy követés megszüntetése" -#: src/Module/Conversation/Community.php:115 -msgid "Own Contacts" -msgstr "Saját partnerek" +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "A partner követése sikeresen meg lett szüntetve" -#: src/Module/Conversation/Community.php:119 -msgid "Include" -msgstr "Tartalmazás" +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "Nem lehet megszüntetni ennek a partnernek a követését, vegye fel a kapcsolatot az adminisztrátorral" -#: src/Module/Conversation/Community.php:120 -msgid "Hide" -msgstr "Elrejtés" - -#: src/Module/Conversation/Community.php:137 src/Module/Search/Index.php:152 +#: src/Module/Conversation/Channel.php:139 +#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 #: src/Module/Search/Index.php:194 msgid "No results." msgstr "Nincs találat." -#: src/Module/Conversation/Community.php:162 +#: src/Module/Conversation/Channel.php:177 +msgid "Channel not available." +msgstr "A csatorna nem érhető el." + +#: src/Module/Conversation/Community.php:92 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:199 +#: src/Module/Conversation/Community.php:180 msgid "Community option not available." msgstr "A közösségi beállítás nem érhető el." -#: src/Module/Conversation/Community.php:215 +#: src/Module/Conversation/Community.php:196 msgid "Not available." msgstr "Nem érhető el." -#: src/Module/Conversation/Network.php:173 -msgid "No such group" -msgstr "Nincs ilyen csoport" +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "Nincs ilyen kör" -#: src/Module/Conversation/Network.php:177 +#: src/Module/Conversation/Network.php:222 #, php-format -msgid "Group: %s" -msgstr "Csoport: %s" +msgid "Circle: %s" +msgstr "Kör: %s" -#: src/Module/Conversation/Network.php:255 -msgid "Latest Activity" -msgstr "Legutóbbi tevékenység" +#: src/Module/Conversation/Network.php:250 +#, php-format +msgid "Error %d (%s) while fetching the timeline." +msgstr "" -#: src/Module/Conversation/Network.php:258 -msgid "Sort by latest activity" -msgstr "Rendezés a legutóbbi tevékenység szerint" +#: src/Module/Conversation/Network.php:329 +msgid "Network feed not available." +msgstr "A hálózati hírforrás nem érhető el." -#: src/Module/Conversation/Network.php:263 -msgid "Latest Posts" -msgstr "Legutóbbi bejegyzések" +#: src/Module/Conversation/Timeline.php:162 +msgid "Own Contacts" +msgstr "Saját partnerek" -#: src/Module/Conversation/Network.php:266 -msgid "Sort by post received date" -msgstr "Rendezés a bejegyzés érkezési dátuma szerint" +#: src/Module/Conversation/Timeline.php:166 +msgid "Include" +msgstr "Tartalmazás" -#: src/Module/Conversation/Network.php:271 -msgid "Latest Creation" -msgstr "Legutóbbi létrehozás" - -#: src/Module/Conversation/Network.php:274 -msgid "Sort by post creation date" -msgstr "Rendezés a bejegyzés létrehozási dátuma szerint" - -#: src/Module/Conversation/Network.php:279 -#: src/Module/Settings/Profile/Index.php:227 -msgid "Personal" -msgstr "Személyes" - -#: src/Module/Conversation/Network.php:282 -msgid "Posts that mention or involve you" -msgstr "Bejegyzések, amelyek említik vagy tartalmazzák Önt" - -#: src/Module/Conversation/Network.php:287 src/Object/Post.php:351 -msgid "Starred" -msgstr "Csillagozott" - -#: src/Module/Conversation/Network.php:290 -msgid "Favourite Posts" -msgstr "Kedvenc bejegyzések" +#: src/Module/Conversation/Timeline.php:167 +msgid "Hide" +msgstr "Elrejtés" #: src/Module/Credits.php:44 msgid "Credits" @@ -7376,6 +6808,14 @@ msgstr "Objektum adatai" msgid "Result Item" msgstr "Eredményelem" +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Hiba" +msgstr[1] "Hibák" + #: src/Module/Debug/ActivityPubConversion.php:138 msgid "Source activity" msgstr "Forrástevékenység" @@ -7556,12 +6996,12 @@ msgstr "HTML" msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Twitter forrás vagy Tweet URL (API-kulcsot igényel)" -#: src/Module/Debug/Feed.php:51 src/Module/Filer/SaveTag.php:46 -#: src/Module/Settings/Profile/Index.php:141 +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:177 msgid "You must be logged in to use this module" msgstr "Bejelentkezve kell lennie a modul használatához" -#: src/Module/Debug/Feed.php:76 +#: src/Module/Debug/Feed.php:77 msgid "Source URL" msgstr "Forrás URL" @@ -7618,205 +7058,109 @@ msgstr "WebFinger diagnosztika" msgid "Lookup address:" msgstr "Keresési cím:" -#: src/Module/Delegation.php:111 -#, php-format -msgid "You are now logged in as %s" -msgstr "Most a következő néven van bejelentkezve: %s" - -#: src/Module/Delegation.php:143 -msgid "Switch between your accounts" -msgstr "Váltás a fiókjai között" - -#: src/Module/Delegation.php:144 -msgid "Manage your accounts" -msgstr "Fiókok kezelése" - -#: src/Module/Delegation.php:145 -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:146 -msgid "Select an identity to manage: " -msgstr "A kezelendő személyazonosság kiválasztása: " - -#: src/Module/Directory.php:75 +#: src/Module/Directory.php:74 msgid "No entries (some entries may be hidden)." msgstr "Nincsenek bejegyzések (néhány bejegyzés rejtve lehet)." -#: src/Module/Directory.php:91 +#: src/Module/Directory.php:90 msgid "Find on this site" msgstr "Keresés ezen az oldalon" -#: src/Module/Directory.php:93 +#: src/Module/Directory.php:92 msgid "Results for:" msgstr "Találat erre:" -#: src/Module/Directory.php:95 +#: src/Module/Directory.php:94 msgid "Site Directory" msgstr "Oldal könyvtára" -#: src/Module/Filer/RemoveTag.php:68 -msgid "Item was not removed" -msgstr "Az elem nem lett eltávolítva" - -#: src/Module/Filer/RemoveTag.php:71 +#: src/Module/Filer/RemoveTag.php:105 msgid "Item was not deleted" msgstr "Az elem nem lett törölve" -#: src/Module/Filer/SaveTag.php:72 +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "Az elem nem lett eltávolítva" + +#: src/Module/Filer/SaveTag.php:73 msgid "- select -" msgstr "– válasszon –" -#: src/Module/FriendSuggest.php:81 +#: src/Module/FriendSuggest.php:82 msgid "Suggested contact not found." msgstr "Az ajánlott partner nem található." -#: src/Module/FriendSuggest.php:99 +#: src/Module/FriendSuggest.php:100 msgid "Friend suggestion sent." msgstr "Az ismerősajánlás elküldve." -#: src/Module/FriendSuggest.php:136 +#: src/Module/FriendSuggest.php:137 msgid "Suggest Friends" msgstr "Ismerősök ajánlása" -#: src/Module/FriendSuggest.php:139 +#: src/Module/FriendSuggest.php:140 #, php-format msgid "Suggest a friend for %s" msgstr "Ismerős ajánlása %s számára" -#: src/Module/Friendica.php:62 +#: src/Module/Friendica.php:82 msgid "Installed addons/apps:" msgstr "Telepített bővítmények vagy alkalmazások:" -#: src/Module/Friendica.php:67 +#: src/Module/Friendica.php:87 msgid "No installed addons/apps" msgstr "Nincsenek telepített bővítmények vagy alkalmazások" -#: src/Module/Friendica.php:72 +#: src/Module/Friendica.php:92 #, 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:79 +#: src/Module/Friendica.php:99 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:84 +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +#: src/Module/Settings/Channels.php:164 +msgid "Reason for the block" +msgstr "A tiltás oka" + +#: src/Module/Friendica.php:104 msgid "Download this list in CSV format" msgstr "A lista letöltése CSV formátumban" -#: src/Module/Friendica.php:98 +#: src/Module/Friendica.php:118 #, 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:103 +#: src/Module/Friendica.php:123 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:104 +#: src/Module/Friendica.php:124 msgid "Bug reports and issues: please visit" msgstr "Hibák és problémák jelentéséhez látogassa meg" -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:124 msgid "the bugtracker at github" msgstr "a GitHubon lévő hibakövetőt" -#: src/Module/Friendica.php:105 +#: src/Module/Friendica.php:125 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:58 -msgid "Could not create group." -msgstr "Nem sikerült létrehozni a csoportot." - -#: src/Module/Group.php:69 src/Module/Group.php:215 src/Module/Group.php:239 -msgid "Group not found." -msgstr "A csoport nem található." - -#: src/Module/Group.php:75 -msgid "Group name was not changed." -msgstr "A csoport neve nem változott meg." - -#: src/Module/Group.php:93 -msgid "Unknown group." -msgstr "Ismeretlen csoport." - -#: src/Module/Group.php:118 -msgid "Unable to add the contact to the group." -msgstr "Nem lehet hozzáadni a partnert a csoporthoz." - -#: src/Module/Group.php:121 -msgid "Contact successfully added to group." -msgstr "A partner sikeresen hozzáadva a csoporthoz." - -#: src/Module/Group.php:125 -msgid "Unable to remove the contact from the group." -msgstr "Nem lehet eltávolítani a partnert a csoportból." - -#: src/Module/Group.php:128 -msgid "Contact successfully removed from group." -msgstr "A partner sikeresen eltávolítva a csoportból." - -#: src/Module/Group.php:132 -msgid "Bad request." -msgstr "Hibás kérés." - -#: src/Module/Group.php:171 -msgid "Save Group" -msgstr "Csoport mentése" - -#: src/Module/Group.php:172 -msgid "Filter" -msgstr "Szűrő" - -#: src/Module/Group.php:178 -msgid "Create a group of contacts/friends." -msgstr "Partnerek vagy ismerősök csoportjának létrehozása." - -#: src/Module/Group.php:220 -msgid "Unable to remove group." -msgstr "Nem lehet eltávolítani a csoportot." - -#: src/Module/Group.php:271 -msgid "Delete Group" -msgstr "Csoport törlése" - -#: src/Module/Group.php:281 -msgid "Edit Group Name" -msgstr "Csoport nevének szerkesztése" - -#: src/Module/Group.php:291 -msgid "Members" -msgstr "Tagok" - -#: src/Module/Group.php:294 -msgid "Group is empty" -msgstr "A csoport üres" - -#: src/Module/Group.php:307 -msgid "Remove contact from group" -msgstr "Partner eltávolítása a csoportból" - -#: src/Module/Group.php:328 -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:342 -msgid "Add contact to group" -msgstr "Partner hozzáadása a csoporthoz" - -#: src/Module/HCard.php:46 +#: src/Module/HCard.php:45 msgid "No profile" msgstr "Nincs profil" -#: src/Module/HTTPException/MethodNotAllowed.php:32 +#: src/Module/HTTPException/MethodNotAllowed.php:31 msgid "Method Not Allowed." msgstr "A módszer nem engedélyezett." @@ -7824,161 +7168,154 @@ msgstr "A módszer nem engedélyezett." msgid "Help:" msgstr "Súgó:" -#: src/Module/Home.php:54 +#: src/Module/Home.php:63 #, php-format msgid "Welcome to %s" msgstr "Üdvözli a(z) %s!" -#: src/Module/Install.php:195 +#: src/Module/Install.php:189 msgid "Friendica Communications Server - Setup" msgstr "Friendica kommunikációs kiszolgáló – Beállítás" -#: src/Module/Install.php:206 +#: src/Module/Install.php:200 msgid "System check" msgstr "Rendszerellenőrzés" -#: src/Module/Install.php:208 src/Module/Install.php:265 -#: src/Module/Install.php:348 +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 msgid "Requirement not satisfied" msgstr "A követelmény nincs kielégítve" -#: src/Module/Install.php:209 +#: src/Module/Install.php:203 msgid "Optional requirement not satisfied" msgstr "A választható követelmény nincs kielégítve" -#: src/Module/Install.php:210 +#: src/Module/Install.php:204 msgid "OK" msgstr "Rendben" -#: src/Module/Install.php:215 +#: src/Module/Install.php:208 +msgid "Next" +msgstr "Következő" + +#: src/Module/Install.php:209 msgid "Check again" msgstr "Ellenőrzés újra" -#: src/Module/Install.php:230 +#: src/Module/Install.php:222 msgid "Base settings" msgstr "Alapvető beállítások" -#: src/Module/Install.php:237 -msgid "Host name" -msgstr "Gépnév" - -#: src/Module/Install.php:239 -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:242 +#: src/Module/Install.php:224 msgid "Base path to installation" msgstr "Alap útvonal a telepítéshez" -#: src/Module/Install.php:244 +#: src/Module/Install.php:226 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:247 -msgid "Sub path of the URL" -msgstr "Az URL alútvonala" +#: src/Module/Install.php:229 +msgid "The Friendica system URL" +msgstr "A Friendica rendszer URL-je" -#: src/Module/Install.php:249 +#: src/Module/Install.php:231 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." +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." +msgstr "Abban az esetben írja felül ezt a mezőt, ha a rendszer URL-meghatározása nem megfelelő, egyébként hagyja változatlanul." -#: src/Module/Install.php:260 +#: src/Module/Install.php:242 msgid "Database connection" msgstr "Adatbázis-kapcsolat" -#: src/Module/Install.php:261 +#: src/Module/Install.php:243 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:262 +#: src/Module/Install.php:244 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:263 +#: src/Module/Install.php:245 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:272 +#: src/Module/Install.php:252 msgid "Database Server Name" msgstr "Adatbázis-kiszolgáló neve" -#: src/Module/Install.php:277 +#: src/Module/Install.php:257 msgid "Database Login Name" msgstr "Adatbázis bejelentkezési neve" -#: src/Module/Install.php:283 +#: src/Module/Install.php:263 msgid "Database Login Password" msgstr "Adatbázis bejelentkezési jelszava" -#: src/Module/Install.php:285 +#: src/Module/Install.php:265 msgid "For security reasons the password must not be empty" msgstr "Biztonsági okokból a jelszó nem lehet üres" -#: src/Module/Install.php:288 +#: src/Module/Install.php:268 msgid "Database Name" msgstr "Adatbázis neve" -#: src/Module/Install.php:292 src/Module/Install.php:322 +#: src/Module/Install.php:272 src/Module/Install.php:300 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:307 +#: src/Module/Install.php:287 msgid "Site settings" msgstr "Oldalbeállítások" -#: src/Module/Install.php:317 +#: src/Module/Install.php:295 msgid "Site administrator email address" msgstr "Oldal adminisztrátorának e-mail-címe" -#: src/Module/Install.php:319 +#: src/Module/Install.php:297 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:326 +#: src/Module/Install.php:304 msgid "System Language:" msgstr "Rendszer nyelve:" -#: src/Module/Install.php:328 +#: src/Module/Install.php:306 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:340 +#: src/Module/Install.php:318 msgid "Your Friendica site database has been installed." msgstr "A Friendica oldalának adatbázisa telepítve lett." -#: src/Module/Install.php:350 +#: src/Module/Install.php:328 msgid "Installation finished" msgstr "A telepítés befejeződött" -#: src/Module/Install.php:370 +#: src/Module/Install.php:348 msgid "

    What next

    " msgstr "

    Mi következik?

    " -#: src/Module/Install.php:371 +#: src/Module/Install.php:349 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:374 +#: src/Module/Install.php:352 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -8090,41 +7427,51 @@ msgid "" "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:50 +#: src/Module/Item/Compose.php:85 msgid "Please enter a post body." msgstr "Adjon meg egy bejegyzéstörzset." -#: src/Module/Item/Compose.php:63 +#: src/Module/Item/Compose.php:98 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:90 +#: src/Module/Item/Compose.php:122 msgid "Compose new personal note" msgstr "Új személyes jegyzet írása" -#: src/Module/Item/Compose.php:99 +#: src/Module/Item/Compose.php:131 msgid "Compose new post" msgstr "Új bejegyzés írása" -#: src/Module/Item/Compose.php:153 +#: src/Module/Item/Compose.php:187 msgid "Visibility" msgstr "Láthatóság" -#: src/Module/Item/Compose.php:174 +#: src/Module/Item/Compose.php:203 msgid "Clear the location" msgstr "A hely törlése" -#: src/Module/Item/Compose.php:175 +#: src/Module/Item/Compose.php:204 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:176 +#: src/Module/Item/Compose.php:205 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 +#: src/Module/Item/Compose.php:211 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "Mindig megnyitottá teheti ezt az oldalt, ha a téma személyre szabási beállításaiban lévő új bejegyzés gombot használja." + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "Ennek az elemnek a hírforrása nem érhető el." + +#: src/Module/Item/Follow.php:51 msgid "Unable to follow this item." msgstr "Nem lehet követni ezt az elemet." @@ -8143,107 +7490,1089 @@ msgstr "Ez a Friendica csomópont jelenleg karbantartási módban van, vagy auto msgid "A Decentralized Social Network" msgstr "Egy decentralizált közösségi hálózat" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "Bejelentkezve kell lennie az oldalhoz való hozzáféréshez." + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Fájlok" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:129 +msgid "Upload" +msgstr "Feltöltés" + +#: src/Module/Media/Attachment/Upload.php:97 +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" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "Vagy – egy üres fájlt próbált meg feltölteni?" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "A fájl meghaladja a beállított %s méretkorlátot" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "A fájl feltöltése sikertelen." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:69 +msgid "Unable to process image." +msgstr "Nem lehet feldolgozni a képet." + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:96 +msgid "Image upload failed." +msgstr "A kép feltöltése sikertelen." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "Összes felhasználó listája" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "Aktív" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "Aktív fiókok listája" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "Függőben lévő regisztrációk listája" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "Tiltott felhasználók listája" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "Törölve" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "Függőben lévő felhasználó-törlések listája" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "Normál fiókoldal" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "Szappantartó oldal" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "Nyilvános csoport" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "Automatikus ismerős oldal" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "Személyes csoport" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "Személyes oldal" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "Szervezeti oldal" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "Hírek oldal" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "Közösségi csoport" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "Továbbítás" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "Nem tilthat egy helyi partnert, inkább a felhasználót tiltsa" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, 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/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "Távoli partnerek tiltólistája" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +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/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "Távoli partner tiltása" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "összes kijelölése" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "kijelölés törlése" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +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/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "Tiltott távoli partnerek" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "Új távoli partner tiltása" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "Fénykép" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "Indok" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, 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/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "A tiltandó távoli partner URL-je." + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "Távolítsa el a partnert is" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "Eltávolítja az ehhez a partnerhez kapcsolódó összes partnert a csomópontról. Megtartja a partner rekordját. Ezt a műveletet nem lehet visszavonni." + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "Tiltás oka" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "A tiltólistához hozzáadott kiszolgáló tartománymintája." + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "%s kiszolgáló van ütemezve eltávolításra." +msgstr[1] "%s kiszolgáló van ütemezve eltávolításra." + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "← Vissza a listához" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "Új kiszolgálótartomány-minta tiltása" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "

    A kiszolgálótartomány-minta szintaxisa kis- és nagybetű-érzéketlen parancsértelmezői helyettesítő karakter, amely a következő különleges karakterekből áll:

    \n
      \n\t
    • *: Tetszőleges számú karakter
    • \n\t
    • ?: Egy önálló karakter
    • \n
    " + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "Minta ellenőrzése" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "Illeszkedő ismert kiszolgálók" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "Kiszolgáló neve" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "Kiszolgáló tartománya" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "Ismert partnerek" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "%d ismert kiszolgáló" +msgstr[1] "%d ismert kiszolgáló" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "Minta hozzáadása a tiltólistához" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "Kiszolgálótartomány-minta" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. 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/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "Kiszolgáló eltávolítása" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "Eltávolítja az összes olyan helyileg tárolt tartalmat is, amelyet az adott kiszolgálón regisztrált ismert partnerek hoztak létre. Megtartja a partnereket és a kiszolgáló rekordjait. Ezt a művelet nem lehet visszavonni." +msgstr[1] "Eltávolítja az összes olyan helyileg tárolt tartalmat is, amelyet az adott kiszolgálókon regisztrált ismert partnerek hoztak létre. Megtartja a partnereket és a kiszolgálók rekordjait. Ezt a művelet nem lehet visszavonni." + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "Tiltás oka" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "Az ok, amiért kitiltotta ezt a kiszolgálótartomány-mintát. Az ok nyilvánosan meg lesz jelenítve a kiszolgáló információs oldalán." + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "Hiba a mintafájl importálásakor" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "A helyi tiltólista le lett cserélve a megadott fájllal." + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "%d minta lett hozzáadva a helyi tiltólistához." +msgstr[1] "%d minta lett hozzáadva a helyi tiltólistához." + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "Nem lett minta hozzáadva a helyi tiltólistához." + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "Kiszolgálótartomány-minta tiltólista importálása" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "

    Ez a fájl letölthető bármely Friendica kiszolgáló /friendica útvonaláról.

    " + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "Fájl feltöltése" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "Importálandó minták" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "Tartományminta" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "Mód importálása" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "Minták importálása" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "%d minta összesen" +msgstr[1] "%d minta összesen" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "Kiszolgálótartomány-minta tiltólista CSV-fájl" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "Hozzáfűzés" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "Olyan mintákat importál a fájlból, amelyek még nem léteztek a jelenlegi tiltólistán." + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "Csere" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "Lecseréli a jelenlegi tiltólistát az importált mintákkal." + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +#: src/Module/Settings/Channels.php:163 +msgid "Blocked server domain pattern" +msgstr "Tiltott kiszolgálótartomány-minta" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "Kiszolgálótartomány-minta törlése" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +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/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "Kiszolgálótartomány-minta tiltólistája" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +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/Moderation/Blocklist/Server/Index.php:98 +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/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "Kiszolgálótartomány-minta tiltólistájának importálása" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "Új bejegyzés hozzáadása a tiltólistához" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "Változtatások mentése a tiltólistába" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "Jelenlegi bejegyzések a tiltólistán" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "Bejegyzés törlése a tiltólistáról" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "Törli a bejegyzést a tiltólistáról?" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "Az elem megjelölve törlésre." + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "Az elem törlése" + +#: src/Module/Moderation/Item/Delete.php:64 +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/Moderation/Item/Delete.php:65 +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/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "Annak az elemnek GUID értéke, amelyet törölni szeretne." + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "Elemazonosító" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "Elem URI" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "Kifejezések" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "Címke" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "Típus" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "Kifejezés" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "URL" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "Implicit említés" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Az elem nem található" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "Nincs forrás rögzítve" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "Győződjön meg arról, hogy a debug.store_source beállítási kulcs be van-e állítva a config/local.config.php fájlban, hogy a jövőbeli elemek forrásokkal rendelkezzenek." + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "Elem GUID értéke" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "A partner nem található, vagy a kiszolgálója már tiltva van ezen a csomóponton." + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "Jelentkezzen be az oldal eléréséhez." + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "Moderálási jelentés létrehozása" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "Partner kiválasztása" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "Adja meg lent a partner címét vagy a profiljának URL-jét, amelyről moderálási jelentést szeretne létrehozni." + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "Partner címe vagy URL-je" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "Kategória kiválasztása" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "Válassza ki lent a jelentés kategóriáját." + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "Kéretlen üzenet" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "Ez a partner sok ismétlődő vagy túl hosszú bejegyzést vagy választ tesz közzé, illetve egyébként nem kapcsolódó beszélgetésekben reklámozza a termékét vagy weboldalait." + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "Illegális tartalom" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "Ez a partner olyan tartalmat tesz közzé, amely a csomópont tárhelyének joghatósága szerint illegálisnak minősül." + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "Közösségi biztonság" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "Ez a partner provokációval vagy érzéketlenséggel, szándékosan vagy akaratlanul, de felbosszantotta Önt vagy másokat. Ebbe beletartozik az emberek személyes adatainak felfedése (doxolás), fenyegetések vagy sértő képek közzététele a bejegyzésekben vagy válaszokban." + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "Nemkívánatos tartalom vagy viselkedés" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "Ez a partner ismételten a csomópont témájához nem kapcsolódó tartalmakat tesz közzé, nyíltan kritizálja a csomópont adminisztrációját és moderálását, anélkül hogy például közvetlenül kapcsolatba lépett volna az érintettekkel, vagy ismételten feszeget egy érzékeny témát." + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "Szabályok megszegése" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "Ez a partner megszegte a csomópont egy vagy több szabályát. A következő lépésben kiválaszthatja, hogy melyeket." + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "Az alábbiakban részletezze, hogy miért küldte be ezt a jelentést. Minél több részletet ad meg, annál jobban lehet kezelni a jelentését." + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "További információk" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "Adjon meg bármilyen további információt, amely az adott jelentéssel kapcsolatos. A következő lépésben csatolhatja az ettől a partnertől származó bejegyzéseket, de bármilyen további információt is szívesen fogadunk." + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "Szabályok kiválasztása" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "Válassza ki az alábbiakban azokat a csomópontszabályokat, amelyeket Ön szerint a partner megszegett." + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "Bejegyzések kiválasztása" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "Esetlegesen válassza ki a jelentéséhez csatolandó bejegyzéseket." + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "Jelentés elküldése" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "További művelet" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "Az alábbi műveletek egyikét is végrehajthatja a jelentett partnerrel kapcsolatban:" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "Semmi" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "Partner összecsukása" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "A bejegyzéseik és válaszaik továbbra is megjelennek a hálózat oldalon, de a tartalmuk alapértelmezetten össze lesz csukva." + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "A bejegyzéseik nem jelennek meg többé a hálózat oldalon, de a válaszaik megjelenhetnek a fórum szálaiban. Továbbra is követhetik Önt." + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "Partner tiltása" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "A bejegyzéseik nem jelennek meg többé a hálózat oldalon, de a válaszaik megjelenhetnek a fórum szálaiban alapértelmezetten összecsukott tartalommal. Nem követhetik Önt, de más módon továbbra is hozzáférhetnek az Ön nyilvános bejegyzéseihez." + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "Jelentés továbbítása" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "Szeretné továbbítani ezt a jelentést a távoli kiszolgálóra?" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "1. Partner kiválasztása" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "2. Kategória kiválasztása" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "2a. Szabályok kiválasztása" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "2b. Megjegyzés hozzáadása" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "3. Bejegyzések kiválasztása" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "Jelentések listája" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "Ez az oldal a saját vagy a távoli felhasználók által létrehozott jelentéseket jeleníti meg." + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "Nem létezik jelentés ezen a csomóponton." + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "Kategória" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "%s jelentés összesen" +msgstr[1] "%s jelentés összesen" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "A jelentett partner URL-je." + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Normál fiók" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "Automatikusan követő fiók" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "Nyilvános csoport fiók" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Automatikus ismerős fiók" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Blog fiók" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "Személyes csoport fiók" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Regisztrált felhasználók" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Függőben lévő regisztrációk" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, 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/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "Nem távolíthatja el önmagát" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, 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/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "„%s” felhasználó törölve" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "„%s” felhasználó tiltva" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Regisztráció dátuma" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "Utolsó bejelentkezés" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "Utolsó nyilvános elem" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "Aktív fiókok" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "Felhasználó tiltva" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "Oldal adminisztrátor" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "A fiók lejárt" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "Új felhasználó létrehozása" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "A kijelölt felhasználók törölve lesznek!\\n\\nMinden, amit ezek a felhasználók erre az oldalra beküldtek, véglegesen törölve lesz!\\n\\nBiztos benne?" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, 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/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "„%s” felhasználó tiltása feloldva" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "Tiltott felhasználók" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "Új felhasználó" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "Felhasználó hozzáadása" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "Az új felhasználó neve." + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "Becenév" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "Az új felhasználó beceneve." + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "Az új felhasználó e-mail-címe." + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "Végleges törlésre váró felhasználók" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "Végleges törlés" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "Végleges törlésre váró felhasználó" + +#: src/Module/Moderation/Users/Pending.php:44 +#, 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/Moderation/Users/Pending.php:51 +#, 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/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Fiók jóváhagyva." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "Regisztráció visszavonva" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "Felülvizsgálatra váró felhasználói regisztrációk" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Kérés dátuma" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "Nincsenek regisztrációk." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "Jegyzet a felhasználótól" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Elutasítás" + +#: src/Module/Notifications/Introductions.php:99 msgid "Show Ignored Requests" msgstr "Mellőzött kérések megjelenítése" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Notifications/Introductions.php:99 msgid "Hide Ignored Requests" msgstr "Mellőzött kérések elrejtése" -#: src/Module/Notifications/Introductions.php:113 -#: src/Module/Notifications/Introductions.php:176 +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 msgid "Notification type:" msgstr "Értesítés típusa:" -#: src/Module/Notifications/Introductions.php:116 +#: src/Module/Notifications/Introductions.php:118 msgid "Suggested by:" msgstr "Ajánlotta:" -#: src/Module/Notifications/Introductions.php:141 +#: src/Module/Notifications/Introductions.php:143 msgid "Claims to be known to you: " msgstr "Azt állítja, hogy Ön ismeri: " -#: src/Module/Notifications/Introductions.php:142 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:124 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "No" msgstr "Nem" -#: src/Module/Notifications/Introductions.php:150 +#: src/Module/Notifications/Introductions.php:152 msgid "Shall your connection be bidirectional or not?" msgstr "Legyen a kapcsolata kétirányú vagy sem?" -#: src/Module/Notifications/Introductions.php:151 +#: src/Module/Notifications/Introductions.php:153 #, 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:152 +#: src/Module/Notifications/Introductions.php:154 #, 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:154 +#: src/Module/Notifications/Introductions.php:156 msgid "Friend" msgstr "Ismerős" -#: src/Module/Notifications/Introductions.php:155 +#: src/Module/Notifications/Introductions.php:157 msgid "Subscriber" msgstr "Feliratkozó" -#: src/Module/Notifications/Introductions.php:214 +#: src/Module/Notifications/Introductions.php:216 msgid "No introductions." msgstr "Nincsenek bemutatkozások." -#: src/Module/Notifications/Introductions.php:215 -#: src/Module/Notifications/Notifications.php:134 +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 #, php-format msgid "No more %s notifications." msgstr "Nincs több %s értesítés." -#: src/Module/Notifications/Notification.php:134 +#: src/Module/Notifications/Notification.php:135 msgid "You must be logged in to show this page." msgstr "Bejelentkezve kell lennie az oldal megtekintéséhez." -#: src/Module/Notifications/Notifications.php:65 +#: src/Module/Notifications/Notifications.php:66 msgid "Network Notifications" msgstr "Hálózati értesítések" -#: src/Module/Notifications/Notifications.php:71 +#: src/Module/Notifications/Notifications.php:72 msgid "System Notifications" msgstr "Rendszerértesítések" -#: src/Module/Notifications/Notifications.php:77 +#: src/Module/Notifications/Notifications.php:78 msgid "Personal Notifications" msgstr "Személyes értesítések" -#: src/Module/Notifications/Notifications.php:83 +#: src/Module/Notifications/Notifications.php:84 msgid "Home Notifications" msgstr "Saját értesítések" -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Notifications/Notifications.php:140 msgid "Show unread" msgstr "Olvasatlanok megjelenítése" -#: src/Module/Notifications/Ping.php:226 +#: src/Module/Notifications/Ping.php:246 msgid "{0} requested registration" msgstr "{0} regisztrációt kért" -#: src/Module/Notifications/Ping.php:237 +#: src/Module/Notifications/Ping.php:255 #, php-format msgid "{0} and %d others requested registration" msgstr "{0} és még %d személy regisztrációt kért" -#: src/Module/OAuth/Acknowledge.php:50 +#: src/Module/OAuth/Acknowledge.php:51 msgid "Authorize application connection" msgstr "Alkalmazáskapcsolat felhatalmazása" -#: src/Module/OAuth/Acknowledge.php:52 +#: src/Module/OAuth/Acknowledge.php:53 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" @@ -8253,7 +8582,7 @@ msgstr "Szeretné felhatalmazni ezt az alkalmazást, hogy hozzáférjen a bejegy 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:72 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 msgid "Incomplete request data" msgstr "Befejezetlen kérésadat" @@ -8264,175 +8593,418 @@ msgid "" "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:96 +#: src/Module/OAuth/Token.php:83 +msgid "Invalid data or unknown client" +msgstr "Érvénytelen adatok vagy ismeretlen ügyfél" + +#: src/Module/OAuth/Token.php:108 msgid "Unsupported or missing grant type" msgstr "Nem támogatott vagy hiányzó felhatalmazástípus" +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "Újrafeliratkozás az OStatus partnerekre" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "Tartsa nyitva ezt az ablakot, amíg el nem készül." + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "✔ Kész" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "Nincsenek OStatus partnerek, hogy újra feliratkozzon rájuk." + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "Feliratkozás a partnerekre" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "Nincs partner megadva." + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "Nem sikerült lekérni a partner információit." + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "Nem sikerült lekérni a partner ismerőseit." + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "Nem sikerült lekérni a következő partnereket." + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "Nem sikerült lekérni a távoli profilt." + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "Nem támogatott hálózat" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Kész" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "sikeres" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "sikertelen" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "mellőzve" + #: src/Module/PermissionTooltip.php:49 #, 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:66 +#: src/Module/PermissionTooltip.php:79 msgid "Model not found" msgstr "A modell nem található" -#: src/Module/PermissionTooltip.php:89 +#: src/Module/PermissionTooltip.php:94 msgid "Unlisted" msgstr "Listázatlan" -#: src/Module/PermissionTooltip.php:107 +#: src/Module/PermissionTooltip.php:112 msgid "Remote privacy information not available." msgstr "A távoli adatvédelmi információk nem érhetők el." -#: src/Module/PermissionTooltip.php:116 +#: src/Module/PermissionTooltip.php:121 msgid "Visible to:" msgstr "Látható nekik:" -#: src/Module/PermissionTooltip.php:200 +#: src/Module/PermissionTooltip.php:204 #, php-format msgid "Collection (%s)" msgstr "Gyűjtemény (%s)" -#: src/Module/PermissionTooltip.php:204 +#: src/Module/PermissionTooltip.php:208 #, php-format msgid "Followers (%s)" msgstr "Követők (%s)" -#: src/Module/PermissionTooltip.php:223 +#: src/Module/PermissionTooltip.php:227 #, php-format msgid "%d more" msgstr "%d további" -#: src/Module/PermissionTooltip.php:227 +#: src/Module/PermissionTooltip.php:231 #, php-format msgid "To: %s
    " msgstr "Címzett: %s
    " -#: src/Module/PermissionTooltip.php:230 +#: src/Module/PermissionTooltip.php:234 #, php-format msgid "CC: %s
    " msgstr "Másolat: %s
    " -#: src/Module/PermissionTooltip.php:233 +#: src/Module/PermissionTooltip.php:237 #, php-format msgid "BCC: %s
    " msgstr "Rejtett másolat: %s
    " -#: src/Module/Photo.php:128 +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "Közönség: %s
    " + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "Neki tulajdonítható: %s
    " + +#: src/Module/Photo.php:130 msgid "The Photo is not available." msgstr "A fénykép nem érhető el." -#: src/Module/Photo.php:141 +#: src/Module/Photo.php:155 #, 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:174 +#: src/Module/Photo.php:192 #, php-format msgid "Invalid external resource with url %s." msgstr "Érvénytelen külső erőforrás a(z) %s URL-lel." -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:194 #, php-format msgid "Invalid photo with id %s." msgstr "Érvénytelen %s azonosítóval rendelkező fénykép." -#: src/Module/Profile/Contacts.php:120 +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "A bejegyzés nem található." + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Bejegyzés szerkesztése" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "webhivatkozás" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Videohivatkozás beszúrása" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "videohivatkozás" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Hanghivatkozás beszúrása" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "hanghivatkozás" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Elem címkéjének eltávolítása" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Eltávolítandó címke kiválasztása: " + +#: src/Module/Post/Tag/Remove.php:108 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Eltávolítás" + +#: src/Module/Profile/Contacts.php:159 msgid "No contacts." msgstr "Nincsenek partnerek." -#: src/Module/Profile/Profile.php:82 +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "%s idővonala" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "%s bejegyzései" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "%s hozzászólásai" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:60 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "A kép meghaladja a beállított %s méretkorlátot" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "A kép feltöltése nem fejeződött be, próbálja újra" + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "A képfájl hiányzik" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "A kiszolgáló jelenleg nem tud új fájlfeltöltést fogadni, vegye fel a kapcsolatot a rendszergazdával" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "A képfájl üres." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "Album megtekintése" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 msgid "Profile not found." msgstr "A profil nem található." -#: src/Module/Profile/Profile.php:135 +#: src/Module/Profile/Profile.php:158 #, 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 src/Module/Settings/Account.php:578 +#: src/Module/Profile/Profile.php:167 msgid "Full Name:" msgstr "Teljes név:" -#: src/Module/Profile/Profile.php:149 +#: src/Module/Profile/Profile.php:172 msgid "Member since:" msgstr "Ekkortól tag:" -#: src/Module/Profile/Profile.php:155 +#: src/Module/Profile/Profile.php:178 msgid "j F, Y" msgstr "Y. F j." -#: src/Module/Profile/Profile.php:156 +#: src/Module/Profile/Profile.php:179 msgid "j F" msgstr "F j." -#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 msgid "Birthday:" msgstr "Születésnap:" -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 msgid "Age: " msgstr "Életkor: " -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "%d éves" msgstr[1] "%d éves" -#: src/Module/Profile/Profile.php:234 -msgid "Forums:" -msgstr "Fórumok:" +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "Leírás:" -#: src/Module/Profile/Profile.php:246 +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "Csoportok:" + +#: src/Module/Profile/Profile.php:273 msgid "View profile as:" msgstr "Profil megtekintése másként:" -#: src/Module/Profile/Profile.php:263 +#: src/Module/Profile/Profile.php:290 msgid "View as" msgstr "Megtekintés másként" -#: src/Module/Profile/Profile.php:326 src/Module/Profile/Profile.php:329 -#: src/Module/Profile/Status.php:66 src/Module/Profile/Status.php:69 -#: src/Protocol/Feed.php:1025 src/Protocol/OStatus.php:1046 -#, php-format -msgid "%s's timeline" -msgstr "%s idővonala" +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "A profil nem érhető el." -#: src/Module/Profile/Profile.php:327 src/Module/Profile/Status.php:67 -#: src/Protocol/Feed.php:1029 src/Protocol/OStatus.php:1051 -#, php-format -msgid "%s's posts" -msgstr "%s bejegyzései" +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "Érvénytelen kereső" -#: src/Module/Profile/Profile.php:328 src/Module/Profile/Status.php:68 -#: src/Protocol/Feed.php:1032 src/Protocol/OStatus.php:1055 -#, php-format -msgid "%s's comments" -msgstr "%s hozzászólásai" +#: src/Module/Profile/RemoteFollow.php:95 +msgid "The provided profile link doesn't seem to be valid" +msgstr "A megadott profilhivatkozás nem tűnik érvényesnek" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/RemoteFollow.php:100 +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/Profile/RemoteFollow.php:128 +msgid "Friend/Connection Request" +msgstr "Ismerős- vagy kapcsolódási kérés" + +#: src/Module/Profile/RemoteFollow.php:129 +#, 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/Profile/RemoteFollow.php:130 +#, 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/Profile/RemoteFollow.php:131 +msgid "Your Webfinger address or profile URL:" +msgstr "A WebFinger-címe vagy profil URL-je:" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "Korlátozott profil" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "Ez a profil korlátozva lett, ami megakadályozza, hogy a névtelen látogatók hozzáférjenek a nyilvános tartalmához." + +#: src/Module/Profile/Schedule.php:83 msgid "Scheduled" msgstr "Ütemezett" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:84 msgid "Content" msgstr "Tartalom" -#: src/Module/Profile/Schedule.php:86 +#: src/Module/Profile/Schedule.php:85 msgid "Remove post" msgstr "Bejegyzés eltávolítása" +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "Üres üzenettörzs." + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Nem lehet ellenőrizni az otthona helyét." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "A címzett nem található." + +#: src/Module/Profile/UnkMail.php:138 +#, 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." + +#: src/Module/Profile/UnkMail.php:152 +#, 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/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "Címzett" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "Tárgy" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "Az üzenete" + #: src/Module/Register.php:84 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:99 src/Module/User/Import.php:111 +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:116 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " @@ -8483,8 +9055,8 @@ msgstr "Az e-mail-címe (a kezdeti információk ide lesznek elküldve, szóval msgid "Please repeat your e-mail address:" msgstr "Ismételje meg az e-mail-címét:" -#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:97 -#: src/Module/Settings/Account.php:569 +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 msgid "New Password:" msgstr "Új jelszó:" @@ -8492,8 +9064,8 @@ msgstr "Új jelszó:" msgid "Leave empty for an auto generated password." msgstr "Hagyja üresen egy automatikusan előállított jelszóhoz." -#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:98 -#: src/Module/Settings/Account.php:570 +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 msgid "Confirm:" msgstr "Megerősítés:" @@ -8508,6 +9080,10 @@ msgstr "Válasszon profilbecenevet. Ennek betűvel kell kezdődnie. Ezután a pr msgid "Choose a nickname: " msgstr "Becenév választása: " +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Importálás" + #: src/Module/Register.php:174 msgid "Import your profile to this friendica instance" msgstr "A profilja importálása erre a Friendica példányra" @@ -8516,11 +9092,11 @@ msgstr "A profilja importálása erre a Friendica példányra" msgid "Note: This node explicitly contains adult content" msgstr "Megjegyzés: ez a csomópont kifejezetten tartalmaz felnőtt tartalmat" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:155 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 msgid "Parent Password:" msgstr "Fölérendelt jelszó:" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:155 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 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." @@ -8550,71 +9126,35 @@ 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:339 +#: src/Module/Register.php:342 #, 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:345 +#: src/Module/Register.php:348 msgid "Registration successful." msgstr "A regisztráció sikerült." -#: src/Module/Register.php:350 src/Module/Register.php:357 +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 msgid "Your registration can not be processed." msgstr "A regisztrációját nem lehet feldolgozni." -#: src/Module/Register.php:356 +#: src/Module/Register.php:363 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:402 +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "Belső hiba történt." + +#: src/Module/Register.php:395 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:71 -msgid "Profile unavailable." -msgstr "A profil nem érhető el." - -#: src/Module/RemoteFollow.php:77 -msgid "Invalid locator" -msgstr "Érvénytelen kereső" - -#: src/Module/RemoteFollow.php:84 -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:89 -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:121 -msgid "Friend/Connection Request" -msgstr "Ismerős- vagy kapcsolódási kérés" - -#: src/Module/RemoteFollow.php:122 -#, 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:123 -#, 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:124 -msgid "Your Webfinger address or profile URL:" -msgstr "A WebFinger-címe vagy profil URL-je:" - -#: src/Module/Search/Acl.php:55 +#: src/Module/Search/Acl.php:73 msgid "You must be logged in to use this module." msgstr "Bejelentkezve kell lennie a modul használatához." @@ -8631,15 +9171,15 @@ msgstr "Percenként csak egy keresés engedélyezett a nem bejelentkezett felhas msgid "Items tagged with: %s" msgstr "Ezzel címkézett elemek: %s" -#: src/Module/Search/Saved.php:58 +#: src/Module/Search/Saved.php:59 msgid "Search term was not saved." msgstr "A keresési kifejezés nem lett elmentve." -#: src/Module/Search/Saved.php:61 +#: src/Module/Search/Saved.php:62 msgid "Search term already saved." msgstr "A keresési kifejezés már el van mentve." -#: src/Module/Search/Saved.php:67 +#: src/Module/Search/Saved.php:68 msgid "Search term was not removed." msgstr "A keresési kifejezés nem lett eltávolítva." @@ -8647,49 +9187,49 @@ msgstr "A keresési kifejezés nem lett eltávolítva." msgid "Create a New Account" msgstr "Új fiók létrehozása" -#: src/Module/Security/Login.php:143 +#: src/Module/Security/Login.php:142 msgid "Your OpenID: " msgstr "Az Ön OpenID-ja: " -#: src/Module/Security/Login.php:146 +#: src/Module/Security/Login.php:145 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:148 +#: src/Module/Security/Login.php:147 msgid "Or login using OpenID: " msgstr "Vagy bejelentkezés OpenID használatával: " -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:161 msgid "Password: " msgstr "Jelszó: " -#: src/Module/Security/Login.php:163 +#: src/Module/Security/Login.php:162 msgid "Remember me" msgstr "Emlékezzen rám" -#: src/Module/Security/Login.php:172 +#: src/Module/Security/Login.php:171 msgid "Forgot your password?" msgstr "Elfelejtette a jelszavát?" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:174 msgid "Website Terms of Service" msgstr "Weboldal használati feltételei" -#: src/Module/Security/Login.php:176 +#: src/Module/Security/Login.php:175 msgid "terms of service" msgstr "használati feltételek" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:177 msgid "Website Privacy Policy" msgstr "Weboldal adatvédelmi irányelvei" -#: src/Module/Security/Login.php:179 +#: src/Module/Security/Login.php:178 msgid "privacy policy" msgstr "adatvédelmi irányelv" -#: src/Module/Security/Logout.php:83 +#: src/Module/Security/Logout.php:84 #: src/Module/Security/TwoFactor/SignOut.php:78 #: src/Module/Security/TwoFactor/SignOut.php:86 #: src/Module/Security/TwoFactor/SignOut.php:108 @@ -8713,88 +9253,88 @@ msgid "" "account to add the OpenID to it." msgstr "A fiók nem található. Regisztráljon új fiókot vagy jelentkezzen be a meglévő fiókjába, hogy hozzáadja az OpenID-t ahhoz." -#: src/Module/Security/PasswordTooLong.php:53 -#: src/Module/Settings/Account.php:66 +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 msgid "Passwords do not match." msgstr "A jelszavak nem egyeznek." -#: src/Module/Security/PasswordTooLong.php:60 +#: src/Module/Security/PasswordTooLong.php:64 msgid "Password does not need changing." msgstr "A jelszót nem kell megváltoztatni." -#: src/Module/Security/PasswordTooLong.php:73 -#: src/Module/Settings/Account.php:80 +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 msgid "Password unchanged." msgstr "A jelszó nincs megváltoztatva." -#: src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Security/PasswordTooLong.php:91 msgid "Password Too Long" msgstr "A jelszó túl hosszú" -#: src/Module/Security/PasswordTooLong.php:88 +#: src/Module/Security/PasswordTooLong.php:92 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "A 2022.09-es verzió óta rájöttünk, hogy a 72 karakternél hosszabb jelszavak a kivonatolás során le lesznek vágva. Az ezzel a viselkedéssel kapcsolatos félreértések elkerülése érdekében arra kérjük, frissítse jelszavát úgy, hogy az legfeljebb 72 karakterből álljon." -#: src/Module/Security/PasswordTooLong.php:89 +#: src/Module/Security/PasswordTooLong.php:93 msgid "Update Password" msgstr "Jelszó frissítése" -#: src/Module/Security/PasswordTooLong.php:96 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 msgid "Current Password:" msgstr "Jelenlegi jelszó:" -#: src/Module/Security/PasswordTooLong.php:96 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 msgid "Your current password to confirm the changes" msgstr "A jelenlegi jelszava a változtatások megerősítéséhez" -#: src/Module/Security/PasswordTooLong.php:97 -#: src/Module/Settings/Account.php:554 +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 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 (:)." +"spaces and accentuated letters." +msgstr "Az engedélyezett karakterek az a-z, A-Z, 0-9 tartományokban lévők és a különleges karakterek, kivéve az üres karaktereket és az ékezetes betűket." -#: src/Module/Security/PasswordTooLong.php:97 -#: src/Module/Settings/Account.php:555 +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 msgid "Password length is limited to 72 characters." msgstr "A jelszó hossza 72 karakterre van korlátozva." -#: src/Module/Security/TwoFactor/Recovery.php:73 +#: src/Module/Security/TwoFactor/Recovery.php:74 #, php-format msgid "Remaining recovery codes: %d" msgstr "Hátralévő visszaszerzési kódok: %d" -#: src/Module/Security/TwoFactor/Recovery.php:79 +#: src/Module/Security/TwoFactor/Recovery.php:80 #: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:95 msgid "Invalid code, please retry." msgstr "Érvénytelen kód, próbálja újra." -#: src/Module/Security/TwoFactor/Recovery.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:99 msgid "Two-factor recovery" msgstr "Kétlépcsős visszaszerzés" -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:100 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:100 +#: src/Module/Security/TwoFactor/Recovery.php:101 #, 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:101 +#: src/Module/Security/TwoFactor/Recovery.php:102 msgid "Please enter a recovery code" msgstr "Adjon meg egy visszaszerzési kódot" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:103 msgid "Submit recovery code and complete login" msgstr "Visszaszerzési kód elküldése és a bejelentkezés befejezése" @@ -8816,29 +9356,29 @@ msgstr "Kijelentkezés" msgid "Trust and sign out" msgstr "Megbízás és kijelentkezés" -#: src/Module/Security/TwoFactor/Trust.php:95 +#: src/Module/Security/TwoFactor/Trust.php:96 msgid "Couldn't save browser to Cookie." msgstr "Nem sikerült elmenteni a böngészőt a sütibe." -#: src/Module/Security/TwoFactor/Trust.php:140 +#: src/Module/Security/TwoFactor/Trust.php:141 msgid "Trust this browser?" msgstr "Megbízik ebben a böngészőben?" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:142 msgid "" "

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

    " msgstr "

    Ha azt választja, hogy megbízik ebben a böngészőben, akkor a következő bejelentkezéskor nem kéri Öntől az ellenőrző kódot.

    " -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:143 msgid "Not now" msgstr "Most nem" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:144 msgid "Don't trust" msgstr "Ne bízzon meg" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:145 msgid "Trust" msgstr "Megbízás" @@ -8856,7 +9396,7 @@ msgid "" msgstr "Ha nem fér hozzá a hitelesítési kódjához, akkor használhat egy kétlépcsős visszaszerzési kódot." #: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:154 +#: src/Module/Settings/TwoFactor/Verify.php:155 msgid "Please enter a code from your authentication app" msgstr "Adjon meg egy kódot a hitelesítő alkalmazásából" @@ -8864,119 +9404,119 @@ msgstr "Adjon meg egy kódot a hitelesítő alkalmazásából" msgid "Verify code and complete login" msgstr "Kód ellenőrzése és a bejelentkezés befejezése" -#: src/Module/Settings/Account.php:95 +#: src/Module/Settings/Account.php:96 msgid "Please use a shorter name." msgstr "Használjon rövidebb nevet." -#: src/Module/Settings/Account.php:98 +#: src/Module/Settings/Account.php:99 msgid "Name too short." msgstr "A név túl rövid." -#: src/Module/Settings/Account.php:107 +#: src/Module/Settings/Account.php:108 msgid "Wrong Password." msgstr "Hibás jelszó." -#: src/Module/Settings/Account.php:112 +#: src/Module/Settings/Account.php:113 msgid "Invalid email." msgstr "Érvénytelen e-mail-cím." -#: src/Module/Settings/Account.php:118 +#: src/Module/Settings/Account.php:117 msgid "Cannot change to that email." msgstr "Nem lehet megváltoztatni arra az e-mail-címre." -#: src/Module/Settings/Account.php:148 src/Module/Settings/Account.php:200 -#: src/Module/Settings/Account.php:220 src/Module/Settings/Account.php:304 -#: src/Module/Settings/Account.php:353 +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 msgid "Settings were not updated." msgstr "A beállítások nem lettek frissítve." -#: src/Module/Settings/Account.php:365 +#: src/Module/Settings/Account.php:364 msgid "Contact CSV file upload error" msgstr "Partner CSV-fájl feltöltési hiba" -#: src/Module/Settings/Account.php:384 +#: src/Module/Settings/Account.php:383 msgid "Importing Contacts done" msgstr "A partnerek importálása kész" -#: src/Module/Settings/Account.php:397 +#: src/Module/Settings/Account.php:396 msgid "Relocate message has been send to your contacts" msgstr "Az áthelyezési üzenet el lett küldve a partnereknek" -#: src/Module/Settings/Account.php:414 +#: src/Module/Settings/Account.php:413 msgid "Unable to find your profile. Please contact your admin." msgstr "Nem található a profilja. Vegye fel a kapcsolatot a rendszergazdával." -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:455 msgid "Personal Page Subtypes" msgstr "Személyes oldal altípusai" -#: src/Module/Settings/Account.php:457 -msgid "Community Forum Subtypes" -msgstr "Közösségi fórum altípusai" +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" +msgstr "Közösségi csoport altípusai" -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:466 msgid "Account for a personal profile." msgstr "Egy személyes profil fiókja." -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:473 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Egy szervezet fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”." -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:480 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Egy hírportál fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”." -#: src/Module/Settings/Account.php:488 +#: src/Module/Settings/Account.php:487 msgid "Account for community discussions." msgstr "Közösségi beszélgetések fiókja." -#: src/Module/Settings/Account.php:495 +#: src/Module/Settings/Account.php:494 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Egy szokásos személyes profil fiókja, amely az „ismerősök” és a „követők” kézi jóváhagyását igényli." -#: src/Module/Settings/Account.php:502 +#: src/Module/Settings/Account.php:501 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Egy nyilvános profil fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”." -#: src/Module/Settings/Account.php:509 +#: src/Module/Settings/Account.php:508 msgid "Automatically approves all contact requests." msgstr "Automatikusan jóváhagyja az összes partnerkérést." -#: src/Module/Settings/Account.php:516 +#: src/Module/Settings/Account.php:515 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Egy népszerű profil fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például az „ismerősöket”." -#: src/Module/Settings/Account.php:521 -msgid "Private Forum [Experimental]" -msgstr "Személyes fórum [kísérleti]" +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "Személyes csoport [kísérleti]" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:522 msgid "Requires manual approval of contact requests." msgstr "A partnerkérések kézi jóváhagyását igényli." -#: src/Module/Settings/Account.php:532 +#: src/Module/Settings/Account.php:531 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:532 +#: src/Module/Settings/Account.php:531 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Kihagyható) Lehetővé teszi ezen OpenID számára, hogy bejelentkezzen ebbe a fiókba." -#: src/Module/Settings/Account.php:540 +#: src/Module/Settings/Account.php:539 msgid "Publish your profile in your local site directory?" msgstr "Közzéteszi a profilját a helyi oldal könyvtárában?" -#: src/Module/Settings/Account.php:540 +#: src/Module/Settings/Account.php:539 #, php-format msgid "" "Your profile will be published in this node's local " @@ -8984,89 +9524,94 @@ msgid "" " system settings." msgstr "A profilja közzé lesz téve ennek a csomópontnak a helyi könyvtárában. A profilrészletei esetleg nyilvánosan láthatóak lehetnek a rendszerbeállításoktól függően." -#: src/Module/Settings/Account.php:546 +#: src/Module/Settings/Account.php:545 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "A profilja közzé lesz téve a globális Friendica könyvtárakban is (például itt: %s)." -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:558 msgid "Account Settings" msgstr "Fiókbeállítások" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:559 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Az Ön személyazonosság-címe „%s” vagy „%s”." -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:566 msgid "Password Settings" msgstr "Jelszóbeállítások" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:568 msgid "Leave password fields blank unless changing" msgstr "Hagyja üresen a jelszómezőket, különben megváltozik" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:570 msgid "Password:" msgstr "Jelszó:" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:570 msgid "Your current password to confirm the changes of the email address" msgstr "A jelenlegi jelszava az e-mail-címe megváltoztatásának megerősítéséhez" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:573 msgid "Delete OpenID URL" msgstr "OpenID URL törlése" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:575 msgid "Basic Settings" msgstr "Alapvető beállítások" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "Megjelenített név:" + +#: src/Module/Settings/Account.php:577 msgid "Email Address:" msgstr "E-mail-cím:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:578 msgid "Your Timezone:" msgstr "Az Ön időzónája:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "Your Language:" msgstr "Az Ön nyelve:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Annak a nyelvnek a beállítása, amelyet a Friendica felületének megjelenítéséhez és a levelek küldéséhez használunk" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:580 msgid "Default Post Location:" msgstr "Alapértelmezett bejegyzésküldési hely:" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:581 msgid "Use Browser Location:" msgstr "Böngésző helyének használata:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:583 msgid "Security and Privacy Settings" msgstr "Biztonsági és adatvédelmi beállítások" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:585 msgid "Maximum Friend Requests/Day:" msgstr "Legtöbb ismerőskérés naponta:" -#: src/Module/Settings/Account.php:587 src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 msgid "(to prevent spam abuse)" msgstr "(a levélszeméttel való visszaélés elkerüléséhez)" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:587 msgid "Allow your profile to be searchable globally?" msgstr "Engedélyezi, hogy a profilja globálisan kereshető legyen?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:587 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 " @@ -9074,43 +9619,43 @@ msgid "" "indexed or not." msgstr "Akkor kapcsolja be ezt a beállítást, ha azt szeretné, hogy mások egyszerűen megtalálják és kövessék Önt. A profilja kereshető lesz a távoli rendszereken. Ez a beállítás azt is meghatározza, hogy a Friendica tájékoztatja-e a keresőmotorokat arról, hogy a profilját indexelni kell-e vagy sem." -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:588 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Elrejti a partnerlistáját vagy ismerőslistáját a profilja megtekintői elől?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:588 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "A partnereinek listája a profiloldalán van megjelenítve. Kapcsolja be ezt a beállítást, hogy letiltsa a partnerlistája megjelenítését." -#: src/Module/Settings/Account.php:591 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Elrejti a profilja részleteit a névtelen megtekintők elől?" +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "Nyilvános tartalom elrejtése a névtelen megtekintők elől" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:589 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." +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "A névtelen látogatók csak az alapvető profilrészleteit fogják látni. A nyilvános bejegyzései és válaszai továbbra is szabadon elérhetőek lesznek a követői távoli kiszolgálóin és a továbbítókon keresztül." -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "Make public posts unlisted" msgstr "Nyilvános bejegyzések felsorolatlanná tétele" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "A nyilvános bejegyzései nem fognak megjelenni a közösségi oldalakon vagy a keresési találatokban, és nem lesznek elküldve az átjátszó kiszolgálóknak. Azonban továbbra is megjelenhetnek a nyilvános hírforrásokban a távoli kiszolgálókon." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 msgid "Make all posted pictures accessible" msgstr "Az összes beküldött fénykép elérhetővé tétele" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 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 " @@ -9118,614 +9663,992 @@ msgid "" "public on your photo albums though." msgstr "Ez a beállítás elérhetővé tesz minden egyes beküldött fényképet a közvetlen hivatkozáson keresztül. Ez egy kerülőmegoldás arra a problémára, hogy a legtöbb más hálózat nem tudja kezelni a fényképek jogosultságait. A nem nyilvános fényképek továbbra sem lesznek láthatóak a nyilvánosság számára a fényképalbumán keresztül." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "Allow friends to post to your profile page?" msgstr "Engedélyezi az ismerősöknek, hogy beküldjenek a profiloldalára?" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "A partnerei bejegyzéseket írhatnak az Ön profilfalára. Ezek a bejegyzések továbbítva lesznek a partnereinek." -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "Allow friends to tag your posts?" msgstr "Engedélyezi az ismerőseinek, hogy címkézzék a bejegyzéseit?" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "Your contacts can add additional tags to your posts." msgstr "A partnerei további címkéket adhatnak a bejegyzéseihez." -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:594 msgid "Permit unknown people to send you private mail?" msgstr "Engedélyt ad ismeretlen embereknek, hogy személyes levelet küldjenek Önnek?" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:594 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." -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:595 msgid "Maximum private messages per day from unknown people:" msgstr "Legtöbb személyes üzenet naponta az ismeretlen emberektől:" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "Alapértelmezett adatvédelmi kör az új partnerekhez" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "Alapértelmezett adatvédelmi kör az új csoportpartnerekhez" + +#: src/Module/Settings/Account.php:598 msgid "Default Post Permissions" msgstr "Alapértelmezett bejegyzés-jogosultságok" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:602 msgid "Expiration settings" msgstr "Lejárati jogosultságok" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:603 msgid "Automatically expire posts after this many days:" msgstr "Bejegyzések automatikus lejárata ennyi nap után:" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:603 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Ha üres, akkor a bejegyzések nem járnak le. A lejárt bejegyzések törölve lesznek." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:604 msgid "Expire posts" msgstr "Bejegyzések lejárata" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:604 msgid "When activated, posts and comments will be expired." msgstr "Ha be van kapcsolva, akkor a bejegyzések és a hozzászólások le fognak járni." -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:605 msgid "Expire personal notes" msgstr "Személyes jegyzetek lejárata" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:605 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Ha be van kapcsolva, akkor a profiloldalán lévő személyes jegyzetek le fognak járni." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:606 msgid "Expire starred posts" msgstr "Csillagozott bejegyzések lejárata" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:606 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "A bejegyzések csillagozása megakadályozza azok lejáratát. Ez a viselkedés felülírható ezzel a beállítással." -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:607 msgid "Only expire posts by others" msgstr "Csak a másoktól származó bejegyzések lejárata" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:607 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Ha be van kapcsolva, akkor a saját bejegyzései sosem járnak le. Ekkor a fenti beállítás csak azokra a bejegyzésekre érvényes, amelyeket megkap." -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:610 msgid "Notification Settings" msgstr "Értesítési beállítások" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:611 msgid "Send a notification email when:" msgstr "Értesítési e-mail küldése a következő esetekben:" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:612 msgid "You receive an introduction" msgstr "Egy bemutatkozást fogad" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:613 msgid "Your introductions are confirmed" msgstr "A bemutatkozásait jóváhagyták" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:614 msgid "Someone writes on your profile wall" msgstr "Valaki ír a profilfalára" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:615 msgid "Someone writes a followup comment" msgstr "Valaki egy követő hozzászólást ír" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:616 msgid "You receive a private message" msgstr "Személyes üzenetet kap" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:617 msgid "You receive a friend suggestion" msgstr "Ismerősajánlást kap" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:618 msgid "You are tagged in a post" msgstr "Megjelölték egy bejegyzésben" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:620 msgid "Create a desktop notification when:" msgstr "Asztali értesítés létrehozása ekkor:" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:621 msgid "Someone tagged you" msgstr "Valaki megjelölte Önt" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:622 msgid "Someone directly commented on your post" msgstr "Valaki közvetlenül hozzászólt a bejegyzéséhez" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:623 msgid "Someone liked your content" msgstr "Valaki kedvelte az Ön tartalmát" -#: src/Module/Settings/Account.php:624 src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Csak akkor engedélyezhető, ha a közvetlen hozzászólási értesítés engedélyezve van." -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:624 msgid "Someone shared your content" msgstr "Valaki megosztotta az Ön tartalmát" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:625 msgid "Someone commented in your thread" msgstr "Valaki hozzászólt az Ön szálában" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:626 msgid "Someone commented in a thread where you commented" msgstr "Valaki hozzászólt egy olyan szálban, ahol Ön hozzászólt" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:627 msgid "Someone commented in a thread where you interacted" msgstr "Valaki hozzászólt egy olyan szálban, ahol Ön interakcióba került" -#: src/Module/Settings/Account.php:630 +#: src/Module/Settings/Account.php:629 msgid "Activate desktop notifications" msgstr "Asztali értesítések bekapcsolása" -#: src/Module/Settings/Account.php:630 +#: src/Module/Settings/Account.php:629 msgid "Show desktop popup on new notifications" msgstr "Felugró üzenet megjelenítése az asztalon új értesítések esetén." -#: src/Module/Settings/Account.php:634 +#: src/Module/Settings/Account.php:633 msgid "Text-only notification emails" msgstr "Csak szöveges értesítési e-mailek" -#: src/Module/Settings/Account.php:636 +#: src/Module/Settings/Account.php:635 msgid "Send text only notification emails, without the html part" msgstr "Csak szöveges értesítési e-mailek küldése a HTML rész nélkül." -#: src/Module/Settings/Account.php:640 +#: src/Module/Settings/Account.php:639 msgid "Show detailled notifications" msgstr "Részletes értesítések megjelenítése" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:641 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Alapértelmezetten az értesítések elemenként egyetlen értesítésbe vannak összevonva. Ha engedélyezve van, akkor minden értesítés megjelenik." -#: src/Module/Settings/Account.php:646 +#: src/Module/Settings/Account.php:645 msgid "Show notifications of ignored contacts" -msgstr "Figyelmen kívül hagyott partnerek értesítéseinek megjelenítése" +msgstr "Mellőzött partnerek értesítéseinek megjelenítése" -#: src/Module/Settings/Account.php:648 +#: src/Module/Settings/Account.php:647 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." +msgstr "Nem látja a mellőzött partnerektől érkező bejegyzéseket. Viszont továbbra is látja a hozzászólásaikat. Ez a beállítás azt vezérli, hogy továbbra is szeretne-e olyan normál értesítéseket kapni vagy sem, amelyeket mellőzött partnerek okoznak." -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:650 msgid "Advanced Account/Page Type Settings" msgstr "Speciális fióktípus vagy oldaltípus beállítások" -#: src/Module/Settings/Account.php:652 +#: src/Module/Settings/Account.php:651 msgid "Change the behaviour of this account for special situations" msgstr "A fiók viselkedésének megváltoztatása bizonyos helyzetekre." -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:654 msgid "Import Contacts" msgstr "Partnerek importálása" -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:655 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Töltsön fel egy olyan CSV-fájlt, amely a követett fiókok kezelőjét tartalmazza az első oszlopban, ahogy a régi fiókból exportálta." -#: src/Module/Settings/Account.php:657 +#: src/Module/Settings/Account.php:656 msgid "Upload File" msgstr "Fájl feltöltése" -#: src/Module/Settings/Account.php:660 +#: src/Module/Settings/Account.php:659 msgid "Relocate" msgstr "Áthelyezés" -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:660 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Ha áthelyezte ezt a profilt egy másik kiszolgálóról, és néhány partnere nem kapta meg a frissítéseket, akkor próbálja meg megnyomni ezt a gombot." -#: src/Module/Settings/Account.php:662 +#: src/Module/Settings/Account.php:661 msgid "Resend relocate message to contacts" msgstr "Áthelyezési üzenet küldése a partnereknek" -#: src/Module/Settings/Delegation.php:53 +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "Bővítménybeállítások" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "Nincsenek bővítménybeállítások meghatározva" + +#: src/Module/Settings/Channels.php:130 src/Module/Settings/Channels.php:146 +#: src/Module/Settings/Display.php:330 +msgid "Label" +msgstr "" + +#: src/Module/Settings/Channels.php:131 src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +msgid "Description" +msgstr "Leírás" + +#: src/Module/Settings/Channels.php:132 src/Module/Settings/Channels.php:148 +msgid "Access Key" +msgstr "" + +#: src/Module/Settings/Channels.php:133 src/Module/Settings/Channels.php:149 +msgid "Circle/Channel" +msgstr "" + +#: src/Module/Settings/Channels.php:134 src/Module/Settings/Channels.php:150 +msgid "Include Tags" +msgstr "" + +#: src/Module/Settings/Channels.php:135 src/Module/Settings/Channels.php:151 +msgid "Exclude Tags" +msgstr "" + +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:152 +msgid "Full Text Search" +msgstr "" + +#: src/Module/Settings/Channels.php:140 +msgid "Delete channel" +msgstr "" + +#: src/Module/Settings/Channels.php:140 +msgid "Check to delete this entry from the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:146 +msgid "Short name for the channel. It is displayed on the channels widget." +msgstr "" + +#: src/Module/Settings/Channels.php:147 +msgid "This should describe the content of the channel in a few word." +msgstr "" + +#: src/Module/Settings/Channels.php:148 +msgid "" +"When you want to access this channel via an access key, you can define it " +"here. Pay attention to not use an already used one." +msgstr "" + +#: src/Module/Settings/Channels.php:149 +msgid "Select a circle or channel, that your channel should be based on." +msgstr "" + +#: src/Module/Settings/Channels.php:150 +msgid "" +"Comma separated list of tags. A post will be used when it contains any of " +"the listed tags." +msgstr "" + +#: src/Module/Settings/Channels.php:151 +msgid "" +"Comma separated list of tags. If a post contain any of these tags, then it " +"will not be part of nthis channel." +msgstr "" + +#: src/Module/Settings/Channels.php:152 +#, php-format +msgid "" +"Search terms for the body, supports the \"boolean mode\" operators from " +"MariaDB. See the help for a complete list of operators and additional " +"keywords: %s" +msgstr "" + +#: src/Module/Settings/Channels.php:153 +msgid "Check to display images in the channel." +msgstr "" + +#: src/Module/Settings/Channels.php:154 +msgid "Check to display videos in the channel." +msgstr "" + +#: src/Module/Settings/Channels.php:155 +msgid "Check to display audio in the channel." +msgstr "" + +#: src/Module/Settings/Channels.php:158 +msgid "This page can be used to define your own channels." +msgstr "" + +#: src/Module/Settings/Channels.php:159 +msgid "Add new entry to the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:160 +msgid "Add" +msgstr "Hozzáadás" + +#: src/Module/Settings/Channels.php:162 +msgid "Current Entries in the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:165 +msgid "Delete entry from the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:166 +msgid "Delete entry from the channel list?" +msgstr "" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "Nem sikerült kapcsolódni a megadott beállításokat használó e-mail-fiókkal." + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "A(z) %s összekapcsolhatóságának beépített támogatása engedélyezve" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "A(z) %s összekapcsolhatóságának beépített támogatása letiltva" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "OStatus (GNU Social)" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "Az e-mailes hozzáférés le van tiltva ezen az oldalon." + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "Nincs" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "Általános közösségimédia-beállítások" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "Követett tartalom hatóköre" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "Alapértelmezetten az idővonalán megjelennek azok a beszélgetések, amelyekben a követői részt vettek, de nem ők indították el. Ezt a viselkedést kikapcsolhatja, vagy kiterjesztheti azokra a beszélgetésekre, amelyekben a követőinek tetszett egy bejegyzés." + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "Csak a követőim által indított beszélgetések" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "A követőim által indított vagy hozzászólt beszélgetések (alapértelmezett)" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "A követőim által interakcióba került beszélgetések, beleértve a kedveléseket is" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "Tartalomfigyelmeztetés engedélyezése" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect 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 engedélyezi az automatikus összecsukást, ahelyett hogy beállítaná 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." + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "Intelligens rövidítés engedélyezése" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "Általában a rendszer megpróbálja megkeresni a legjobb hivatkozást a rövidített bejegyzésekhez történő hozzáadáshoz. Ha le van tiltva, akkor minden egyes rövidített bejegyzés mindig az eredeti Friendica bejegyzésre fog mutatni." + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "Egyszerű szövegrövidítés engedélyezése" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "Általában a rendszer lerövidíti a bejegyzéseket a következő soremelésnél. Ha ez a beállítás engedélyezve van, akkor a rendszer a legnagyobb karakterkorlátnál fogja rövidíteni a szöveget." + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "A hivatkozás címének csatolása" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "Ha be van kapcsolva, akkor a csatolt hivatkozás címe címként lesz hozzáadva a Diaspora hálózatra küldött bejegyzéseknél. Ez többnyire az olyan „távoli önmaga” partnerekkel hasznos, amelyek megosztják a hírforrás tartalmát." + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "API: a spoiler mező használata címként" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "Ha aktiválva van, akkor az API-ban lévő „spoiler_text” mező lesz használva az önálló bejegyzések címeként. Ha ki van kapcsolva, akkor a spoiler szövegéhez lesz használva. A megjegyzéseknél mindig a spoiler szövegéhez lesz használva." + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "API: automatikusan a bejegyzés végéhez kapcsolja csatolt bejegyzésként" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "Ha aktiválva van, akkor a bejegyzés végéhez hozzáadott hivatkozások ugyanúgy reagálnak, mint a webes felületen hozzáadott hivatkozások." + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "Az örökölt ActivityPub/GNU Social fiókja" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "Ha megadja itt a régi, egy ActivityPub alapú rendszerből származó fiókja nevét, illetve a GNU Social vagy Statusnet fiókja nevét (felhasználó@tartomány.tld formátumban), akkor a partnerei automatikusan hozzá lesznek adva. A mező ki lesz ürítve, ha elkészült." + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "OStatus feliratkozások javítása" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "E-mail vagy postafiók-beállítások" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Ha e-mailes partnerekkel szeretne kommunikálni ezen szolgáltatás használatával (opcionális), akkor adja meg, hogy hogyan kell kapcsolódni a postafiókjához." + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "Legutóbbi sikeres e-mail-ellenőrzés:" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "IMAP-kiszolgáló neve:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "IMAP port:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "Biztonság:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "E-mail bejelentkezési neve:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "E-mail jelszava:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "Válaszcím:" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "Nyilvános bejegyzések küldése az összes e-mail partnernek:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "Importálás utáni művelet:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "Áthelyezés mappába" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "Áthelyezés mappába:" + +#: src/Module/Settings/Delegation.php:73 msgid "Delegation successfully granted." msgstr "A meghatalmazás sikeresen megadva." -#: src/Module/Settings/Delegation.php:55 +#: src/Module/Settings/Delegation.php:75 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 +#: src/Module/Settings/Delegation.php:79 msgid "Delegation successfully revoked." msgstr "A meghatalmazás sikeresen visszavonva." -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 +#: src/Module/Settings/Delegation.php:98 +#: src/Module/Settings/Delegation.php:120 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 +#: src/Module/Settings/Delegation.php:112 msgid "Delegate user not found." msgstr "A meghatalmazott felhasználó nem található." -#: src/Module/Settings/Delegation.php:143 +#: src/Module/Settings/Delegation.php:169 msgid "No parent user" msgstr "Nincs fölérendelt felhasználó" -#: src/Module/Settings/Delegation.php:154 -#: src/Module/Settings/Delegation.php:165 +#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:191 msgid "Parent User" msgstr "Fölérendelt felhasználó" -#: src/Module/Settings/Delegation.php:162 +#: src/Module/Settings/Delegation.php:188 msgid "Additional Accounts" msgstr "További fiókok" -#: src/Module/Settings/Delegation.php:163 +#: src/Module/Settings/Delegation.php:189 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 +#: src/Module/Settings/Delegation.php:190 msgid "Register an additional account" msgstr "További fiók regisztrálása" -#: src/Module/Settings/Delegation.php:168 +#: src/Module/Settings/Delegation.php:192 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 +#: src/Module/Settings/Delegation.php:195 msgid "Delegates" msgstr "Meghatalmazottak" -#: src/Module/Settings/Delegation.php:174 +#: src/Module/Settings/Delegation.php:196 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 +#: src/Module/Settings/Delegation.php:197 msgid "Existing Page Delegates" msgstr "Meglévő oldalmeghatalmazottak" -#: src/Module/Settings/Delegation.php:177 +#: src/Module/Settings/Delegation.php:198 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 +#: src/Module/Settings/Delegation.php:199 msgid "No entries." msgstr "Nincsenek bejegyzések." -#: src/Module/Settings/Display.php:107 +#: src/Module/Settings/Display.php:179 msgid "The theme you chose isn't available." msgstr "A választott téma nem érhető el." -#: src/Module/Settings/Display.php:146 +#: src/Module/Settings/Display.php:219 #, php-format msgid "%s - (Unsupported)" msgstr "%s – (nem támogatott)" -#: src/Module/Settings/Display.php:192 +#: src/Module/Settings/Display.php:254 +msgid "No preview" +msgstr "Nincs előnézet" + +#: src/Module/Settings/Display.php:255 +msgid "No image" +msgstr "Nincs kép" + +#: src/Module/Settings/Display.php:256 +msgid "Small Image" +msgstr "Kis kép" + +#: src/Module/Settings/Display.php:257 +msgid "Large Image" +msgstr "Nagy kép" + +#: src/Module/Settings/Display.php:302 msgid "Display Settings" msgstr "Megjelenítési beállítások" -#: src/Module/Settings/Display.php:194 +#: src/Module/Settings/Display.php:304 msgid "General Theme Settings" msgstr "Általános témabeállítások" -#: src/Module/Settings/Display.php:195 +#: src/Module/Settings/Display.php:305 msgid "Custom Theme Settings" msgstr "Egyéni témabeállítások" -#: src/Module/Settings/Display.php:196 +#: src/Module/Settings/Display.php:306 msgid "Content Settings" msgstr "Tartalombeállítások" -#: src/Module/Settings/Display.php:197 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:161 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 +#: src/Module/Settings/Display.php:307 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Témabeállítások" -#: src/Module/Settings/Display.php:198 -msgid "Calendar" -msgstr "Naptár" +#: src/Module/Settings/Display.php:308 +msgid "Timelines" +msgstr "Idővonalak" -#: src/Module/Settings/Display.php:204 +#: src/Module/Settings/Display.php:315 msgid "Display Theme:" msgstr "Megjelenítés témája:" -#: src/Module/Settings/Display.php:205 +#: src/Module/Settings/Display.php:316 msgid "Mobile Theme:" msgstr "Mobil téma:" -#: src/Module/Settings/Display.php:208 +#: src/Module/Settings/Display.php:319 msgid "Number of items to display per page:" msgstr "Oldalanként megjelenítendő elemek száma:" -#: src/Module/Settings/Display.php:208 src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:319 src/Module/Settings/Display.php:320 msgid "Maximum of 100 items" msgstr "Legfeljebb 100 elem" -#: src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:320 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:210 +#: src/Module/Settings/Display.php:321 msgid "Update browser every xx seconds" msgstr "Böngésző frissítése N másodpercenként" -#: src/Module/Settings/Display.php:210 +#: src/Module/Settings/Display.php:321 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:211 -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:211 -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:212 +#: src/Module/Settings/Display.php:322 msgid "Display emoticons" msgstr "Hangulatjelek megjelenítése" -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:322 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "Ha engedélyezve van, akkor a hangulatjelek ki lesznek cserélve a megfelelő szimbólumokkal." -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:323 msgid "Infinite scroll" msgstr "Végtelen görgetés" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:323 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:214 +#: src/Module/Settings/Display.php:324 msgid "Enable Smart Threading" msgstr "Intelligens szálkezelés engedélyezése" -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:324 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "A nem odatartozó szálbehúzások automatikus elnyomásának engedélyezése." -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:325 msgid "Display the Dislike feature" msgstr "A nem tetszik funkció megjelenítése" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:325 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "A nem tetszik gomb és a nem tetszik reakciók megjelenítése a bejegyzéseknél és a hozzászólásoknál." -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:326 msgid "Display the resharer" msgstr "Az újramegosztó megjelenítése" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:326 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:217 +#: src/Module/Settings/Display.php:327 msgid "Stay local" msgstr "Maradjon helyi" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:327 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:219 +#: src/Module/Settings/Display.php:328 +msgid "Link preview mode" +msgstr "Hivatkozás-előnézeti mód" + +#: src/Module/Settings/Display.php:328 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "A hivatkozás előnézetének megjelenése, amely minden egyes hivatkozással rendelkező bejegyzéshez hozzá van adva." + +#: src/Module/Settings/Display.php:333 +msgid "Bookmark" +msgstr "" + +#: src/Module/Settings/Display.php:335 +msgid "" +"Enable timelines that you want to see in the channels widget. Bookmark " +"timelines that you want to see in the top menu." +msgstr "" + +#: src/Module/Settings/Display.php:337 +msgid "Channel languages:" +msgstr "Csatorna nyelvei:" + +#: src/Module/Settings/Display.php:337 +msgid "Select all languages that you want to see in your channels." +msgstr "Válassza ki az összes nyelvet, amelyet látni szeretne a csatornáiban." + +#: src/Module/Settings/Display.php:339 msgid "Beginning of week:" msgstr "A hét kezdete:" -#: src/Module/Settings/Profile/Index.php:83 -msgid "Profile Name is required." -msgstr "A profil neve kötelező." +#: src/Module/Settings/Display.php:340 +msgid "Default calendar view:" +msgstr "Alapértelmezett naptárnézet:" -#: src/Module/Settings/Profile/Index.php:131 +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "További funkciók" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Kapcsolt alkalmazások" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "Felhatalmazás eltávolítása" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "A megjelenített név kötelező." + +#: src/Module/Settings/Profile/Index.php:167 msgid "Profile couldn't be updated." msgstr "A profilt nem sikerült frissíteni." -#: src/Module/Settings/Profile/Index.php:172 -#: src/Module/Settings/Profile/Index.php:192 +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 msgid "Label:" msgstr "Címke:" -#: src/Module/Settings/Profile/Index.php:173 -#: src/Module/Settings/Profile/Index.php:193 +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 msgid "Value:" msgstr "Érték:" -#: src/Module/Settings/Profile/Index.php:183 -#: src/Module/Settings/Profile/Index.php:203 +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 msgid "Field Permissions" msgstr "Mező jogosultságai" -#: src/Module/Settings/Profile/Index.php:184 -#: src/Module/Settings/Profile/Index.php:204 +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 msgid "(click to open/close)" msgstr "(kattintson a megnyitáshoz vagy bezáráshoz)" -#: src/Module/Settings/Profile/Index.php:190 +#: src/Module/Settings/Profile/Index.php:224 msgid "Add a new profile field" msgstr "Új profilmező hozzáadása" -#: src/Module/Settings/Profile/Index.php:220 +#: src/Module/Settings/Profile/Index.php:247 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." +msgstr "A honlap ellenőrizve. A Friendica profiloldalára visszamutató rel=\"me\" hivatkozás található a honlapon." + +#: src/Module/Settings/Profile/Index.php:249 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "A honlapja ellenőrzéséhez adjon hozzá egy rel=\"me\" hivatkozást a honlapjához, amely a profilja URL-jére mutat (%s)." + +#: src/Module/Settings/Profile/Index.php:255 msgid "Profile Actions" msgstr "Profilműveletek" -#: src/Module/Settings/Profile/Index.php:221 +#: src/Module/Settings/Profile/Index.php:256 msgid "Edit Profile Details" msgstr "Profil részleteinek szerkesztése" -#: src/Module/Settings/Profile/Index.php:223 +#: src/Module/Settings/Profile/Index.php:258 msgid "Change Profile Photo" msgstr "Profilfénykép megváltoztatása" -#: src/Module/Settings/Profile/Index.php:228 +#: src/Module/Settings/Profile/Index.php:261 msgid "Profile picture" msgstr "Profilfénykép" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:262 msgid "Location" msgstr "Hely" -#: src/Module/Settings/Profile/Index.php:230 src/Util/Temporal.php:93 -#: src/Util/Temporal.php:95 +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 msgid "Miscellaneous" msgstr "Egyebek" -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:264 msgid "Custom Profile Fields" msgstr "Egyéni profilmezők" -#: src/Module/Settings/Profile/Index.php:233 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 msgid "Upload Profile Photo" msgstr "Profilfénykép feltöltése" -#: src/Module/Settings/Profile/Index.php:237 -msgid "Display name:" -msgstr "Megjelenített név:" - -#: src/Module/Settings/Profile/Index.php:240 -msgid "Street Address:" -msgstr "Utca, házszám:" - -#: src/Module/Settings/Profile/Index.php:241 -msgid "Locality/City:" -msgstr "Helység vagy város:" - -#: src/Module/Settings/Profile/Index.php:242 -msgid "Region/State:" -msgstr "Régió vagy állam:" - -#: src/Module/Settings/Profile/Index.php:243 -msgid "Postal/Zip Code:" -msgstr "Irányítószám:" - -#: src/Module/Settings/Profile/Index.php:244 -msgid "Country:" -msgstr "Ország:" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "XMPP (Jabber) address:" -msgstr "XMPP (Jabber) cím:" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "" -"The XMPP address will be published so that people can follow you there." -msgstr "Az XMPP-cím közzé lesz téve, hogy az emberek képesek legyenek ott követni Önt." - -#: src/Module/Settings/Profile/Index.php:247 -msgid "Matrix (Element) address:" -msgstr "Mátrix (Element) cím:" - -#: src/Module/Settings/Profile/Index.php:247 -msgid "" -"The Matrix address will be published so that people can follow you there." -msgstr "A Mátrix-cím közzé lesz téve, hogy az emberek képesek legyenek ott követni Önt." - -#: src/Module/Settings/Profile/Index.php:248 -msgid "Homepage URL:" -msgstr "Honlap URL:" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "Public Keywords:" -msgstr "Nyilvános kulcsszavak:" - -#: src/Module/Settings/Profile/Index.php:249 -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:250 -msgid "Private Keywords:" -msgstr "Személyes kulcsszavak:" - -#: src/Module/Settings/Profile/Index.php:250 -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:251 +#: src/Module/Settings/Profile/Index.php:266 #, 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.

    " +"\t\t\t\t

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

    " +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 körökben lévő Friendica partnerek láthatják.

    " -#: src/Module/Settings/Profile/Photo/Crop.php:108 -#: src/Module/Settings/Profile/Photo/Crop.php:126 -#: src/Module/Settings/Profile/Photo/Crop.php:144 +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "Utca, házszám:" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "Helység vagy város:" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "Régió vagy állam:" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "Irányítószám:" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "Ország:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "XMPP (Jabber) cím:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "Az XMPP-cím közzé lesz téve, hogy az emberek képesek legyenek ott követni Önt." + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "Mátrix (Element) cím:" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "A Mátrix-cím közzé lesz téve, hogy az emberek képesek legyenek ott követni Önt." + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "Honlap URL:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "Nyilvános kulcsszavak:" + +#: src/Module/Settings/Profile/Index.php:295 +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:296 +msgid "Private Keywords:" +msgstr "Személyes kulcsszavak:" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Profilok kereséséhez lesz használva, sosem látható másoknak)" + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 #: src/Module/Settings/Profile/Photo/Index.php:102 #, 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:151 +#: src/Module/Settings/Profile/Photo/Crop.php:150 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:156 +#: src/Module/Settings/Profile/Photo/Crop.php:155 msgid "Unable to process image" msgstr "Nem lehet feldolgozni a képet" -#: src/Module/Settings/Profile/Photo/Crop.php:175 +#: src/Module/Settings/Profile/Photo/Crop.php:174 msgid "Photo not found." msgstr "A fénykép nem található." -#: src/Module/Settings/Profile/Photo/Crop.php:197 +#: src/Module/Settings/Profile/Photo/Crop.php:196 msgid "Profile picture successfully updated." msgstr "A profilfénykép sikeresen frissítve." -#: src/Module/Settings/Profile/Photo/Crop.php:223 -#: src/Module/Settings/Profile/Photo/Crop.php:227 +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 msgid "Crop Image" msgstr "Kép levágása" -#: src/Module/Settings/Profile/Photo/Crop.php:224 +#: src/Module/Settings/Profile/Photo/Crop.php:223 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:226 +#: src/Module/Settings/Profile/Photo/Crop.php:225 msgid "Use Image As Is" msgstr "Kép használata, ahogy van" @@ -9761,186 +10684,267 @@ msgstr "ezen lépés kihagyása" 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:64 -#: src/Module/Settings/TwoFactor/Recovery.php:62 -#: src/Module/Settings/TwoFactor/Trusted.php:65 -#: src/Module/Settings/TwoFactor/Verify.php:68 +#: src/Module/Settings/RemoveMe.php:76 +msgid "" +"There was a validation error, please make sure you're logged in with the " +"account you want to remove and try again." +msgstr "" + +#: src/Module/Settings/RemoveMe.php:76 +msgid "If this error persists, please contact your administrator." +msgstr "" + +#: src/Module/Settings/RemoveMe.php:90 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[Friendica rendszerértesítés]" + +#: src/Module/Settings/RemoveMe.php:90 +msgid "User deleted their account" +msgstr "A felhasználó törölte a fiókját" + +#: src/Module/Settings/RemoveMe.php:91 +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." + +#: src/Module/Settings/RemoveMe.php:92 +#, php-format +msgid "The user id is %d" +msgstr "A felhasználó-azonosító %d" + +#: src/Module/Settings/RemoveMe.php:105 +msgid "Your account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:130 +msgid "Remove My Account" +msgstr "Saját fiók eltávolítása" + +#: src/Module/Settings/RemoveMe.php:131 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Ez teljesen el fogja távolítani a fiókját. Miután ez megtörtént, nem lesz visszaállítható." + +#: src/Module/Settings/RemoveMe.php:136 +msgid "Please enter your password for verification:" +msgstr "Adja meg a jelszavát az ellenőrzéshez:" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "Szeretné mellőzni ezt a kiszolgálót?" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "Szeretné megszüntetni ennek a kiszolgálónak a mellőzését?" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "Távoli kiszolgáló beállításai" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "Kiszolgáló URL" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "Beállítások elmentve" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "Itt találhatja meg az összes olyan távoli kiszolgálót, amelyekkel szemben egyéni moderálási műveleteket hajtott végre. A csomópontja által tiltott kiszolgálók listájáért nézze meg az Információk oldalt." + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "Az Ön összes beállításának törlése a távoli kiszolgálónál" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "Változtatások mentése" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 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:82 +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 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:85 +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 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:89 +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 msgid "New app-specific password generated." msgstr "Az új alkalmazásfüggő jelszó előállítva." -#: src/Module/Settings/TwoFactor/AppSpecific.php:95 +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 msgid "App-specific passwords successfully revoked." msgstr "Az alkalmazásfüggő jelszavak sikeresen visszavonva." -#: src/Module/Settings/TwoFactor/AppSpecific.php:105 +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 msgid "App-specific password successfully revoked." msgstr "Az alkalmazásfüggő jelszó sikeresen visszavonva." -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 msgid "Two-factor app-specific passwords" msgstr "Kétlépcsős alkalmazásfüggő jelszavak" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 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:129 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 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:132 -msgid "Description" -msgstr "Leírás" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 msgid "Last Used" msgstr "Legutóbb használt" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 msgid "Revoke" msgstr "Visszavonás" -#: src/Module/Settings/TwoFactor/AppSpecific.php:135 +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Revoke All" msgstr "Összes visszavonása" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 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:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 msgid "Generate new app-specific password" msgstr "Új alkalmazásfüggő jelszó előállítása" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa a Fairphone 2 készülékemen…" -#: src/Module/Settings/TwoFactor/AppSpecific.php:141 +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 msgid "Generate" msgstr "Előállítás" -#: src/Module/Settings/TwoFactor/Index.php:69 +#: src/Module/Settings/TwoFactor/Index.php:68 msgid "Two-factor authentication successfully disabled." msgstr "A kétlépcsős hitelesítés sikeresen letiltva." -#: src/Module/Settings/TwoFactor/Index.php:121 +#: src/Module/Settings/TwoFactor/Index.php:120 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:125 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Authenticator app" msgstr "Hitelesítő alkalmazás" -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Configured" msgstr "Beállítva" -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Not Configured" msgstr "Nincs beállítva" -#: src/Module/Settings/TwoFactor/Index.php:127 +#: src/Module/Settings/TwoFactor/Index.php:126 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:128 +#: src/Module/Settings/TwoFactor/Index.php:127 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:130 +#: src/Module/Settings/TwoFactor/Index.php:129 msgid "Recovery codes" msgstr "Visszaszerzési kódok" -#: src/Module/Settings/TwoFactor/Index.php:131 +#: src/Module/Settings/TwoFactor/Index.php:130 msgid "Remaining valid codes" msgstr "Hátralévő érvényes kódok" -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:132 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:135 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "App-specific passwords" msgstr "Alkalmazásfüggő jelszavak" -#: src/Module/Settings/TwoFactor/Index.php:136 +#: src/Module/Settings/TwoFactor/Index.php:135 msgid "Generated app-specific passwords" msgstr "Előállított alkalmazásfüggő jelszavak" -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/Settings/TwoFactor/Index.php:137 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:141 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "Current password:" msgstr "Jelenlegi jelszó:" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:140 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:142 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "Enable two-factor authentication" msgstr "Kétlépcsős hitelesítés engedélyezése" -#: src/Module/Settings/TwoFactor/Index.php:143 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Disable two-factor authentication" msgstr "Kétlépcsős hitelesítés letiltása" -#: src/Module/Settings/TwoFactor/Index.php:144 +#: src/Module/Settings/TwoFactor/Index.php:143 msgid "Show recovery codes" msgstr "Visszaszerzési kódok megjelenítése" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "Manage app-specific passwords" msgstr "Alkalmazásfüggő jelszavak kezelése" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:145 msgid "Manage trusted browsers" msgstr "Megbízható böngészők kezelése" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Finish app configuration" msgstr "Alkalmazás beállításának befejezése" -#: src/Module/Settings/TwoFactor/Recovery.php:78 +#: src/Module/Settings/TwoFactor/Recovery.php:80 msgid "New recovery codes successfully generated." msgstr "Az új visszaszerzési kódok sikeresen előállítva." -#: src/Module/Settings/TwoFactor/Recovery.php:104 +#: src/Module/Settings/TwoFactor/Recovery.php:106 msgid "Two-factor recovery codes" msgstr "Kétlépcsős visszaszerzési kódok" -#: src/Module/Settings/TwoFactor/Recovery.php:106 +#: src/Module/Settings/TwoFactor/Recovery.php:108 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 " @@ -9949,68 +10953,68 @@ msgid "" "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:108 +#: src/Module/Settings/TwoFactor/Recovery.php:110 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:109 +#: src/Module/Settings/TwoFactor/Recovery.php:111 msgid "Generate new recovery codes" msgstr "Új visszaszerzési kódok előállítása" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "Next: Verification" msgstr "Következő: ellenőrzés" -#: src/Module/Settings/TwoFactor/Trusted.php:82 +#: src/Module/Settings/TwoFactor/Trusted.php:84 msgid "Trusted browsers successfully removed." msgstr "A megbízható böngészők sikeresen eltávolítva." -#: src/Module/Settings/TwoFactor/Trusted.php:92 +#: src/Module/Settings/TwoFactor/Trusted.php:94 msgid "Trusted browser successfully removed." msgstr "A megbízható böngésző sikeresen eltávolítva." -#: src/Module/Settings/TwoFactor/Trusted.php:134 +#: src/Module/Settings/TwoFactor/Trusted.php:136 msgid "Two-factor Trusted Browsers" msgstr "Kétlépcsős megbízható böngészők" -#: src/Module/Settings/TwoFactor/Trusted.php:135 +#: src/Module/Settings/TwoFactor/Trusted.php:137 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:136 +#: src/Module/Settings/TwoFactor/Trusted.php:138 msgid "Device" msgstr "Eszköz" -#: src/Module/Settings/TwoFactor/Trusted.php:137 +#: src/Module/Settings/TwoFactor/Trusted.php:139 msgid "OS" msgstr "Operációs rendszer" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:141 msgid "Trusted" msgstr "Megbízható" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:142 msgid "Created At" msgstr "Létrehozva:" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:143 msgid "Last Use" msgstr "Utolsó használat" -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Module/Settings/TwoFactor/Trusted.php:145 msgid "Remove All" msgstr "Összes eltávolítása" -#: src/Module/Settings/TwoFactor/Verify.php:90 +#: src/Module/Settings/TwoFactor/Verify.php:91 msgid "Two-factor authentication successfully activated." msgstr "A kétlépcsős hitelesítés sikeresen bekapcsolva." -#: src/Module/Settings/TwoFactor/Verify.php:124 +#: src/Module/Settings/TwoFactor/Verify.php:125 #, php-format msgid "" "

    Or you can submit the authentication settings manually:

    \n" @@ -10030,68 +11034,105 @@ msgid "" "" 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:144 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Two-factor code verification" msgstr "Kétlépcsős kód ellenőrzése" -#: src/Module/Settings/TwoFactor/Verify.php:146 +#: src/Module/Settings/TwoFactor/Verify.php:147 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:148 +#: src/Module/Settings/TwoFactor/Verify.php:149 #, 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:155 +#: src/Module/Settings/TwoFactor/Verify.php:156 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:68 +#: src/Module/Settings/UserExport.php:90 msgid "Export account" msgstr "Fiók exportálása" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 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:69 +#: src/Module/Settings/UserExport.php:91 msgid "Export all" msgstr "Összes exportálása" -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:91 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:70 +#: src/Module/Settings/UserExport.php:92 msgid "Export Contacts to CSV" msgstr "Partnerek exportálása CSV-fájlba" -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:92 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:51 +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "A felső szintű bejegyzés nem látható." + +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "A felső szintű bejegyzés törölve lett." + +#: src/Module/Special/DisplayNotFound.php:37 +msgid "" +"This node has blocked the top-level author or the author of the shared post." +msgstr "Ez a csomópont letiltotta a felső szintű szerzőt vagy a megosztott bejegyzés szerzőjét." + +#: src/Module/Special/DisplayNotFound.php:38 +msgid "" +"You have ignored or blocked the top-level author or the author of the shared" +" post." +msgstr "Ön mellőzte vagy letiltotta a felső szintű szerzőt vagy a megosztott bejegyzés szerzőjét." + +#: src/Module/Special/DisplayNotFound.php:39 +msgid "" +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "Ön mellőzte a felső szintű szerző kiszolgálóját vagy a megosztott bejegyzés szerzőjének kiszolgálóját." + +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "A beszélgetés nem található" + +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "Sajnos a kért beszélgetés nem érhető el az Ön számára." + +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "A lehetséges okok a következők:" + +#: src/Module/Special/HTTPException.php:78 msgid "Stack trace:" msgstr "Veremkiíratás:" -#: src/Module/Special/HTTPException.php:55 +#: src/Module/Special/HTTPException.php:83 #, php-format msgid "Exception thrown in %s:%d" msgstr "Kivétel történt itt: %s:%d" -#: src/Module/Tos.php:57 src/Module/Tos.php:91 +#: src/Module/Tos.php:58 src/Module/Tos.php:107 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" @@ -10104,28 +11145,130 @@ msgid "" "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:58 src/Module/Tos.php:92 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 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:59 src/Module/Tos.php:93 +#: src/Module/Tos.php:60 src/Module/Tos.php:109 #, 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." +"href=\"%1$s/settings/removeme\">%1$s/settings/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/settings/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:62 src/Module/Tos.php:90 +#: src/Module/Tos.php:63 src/Module/Tos.php:106 msgid "Privacy Statement" msgstr "Adatvédelmi nyilatkozat" +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "Szabályok" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "Az uri_id paraméter hiányzik." + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "A kért elem nem létezik vagy törölték." + +#: src/Module/User/Delegation.php:146 +#, php-format +msgid "You are now logged in as %s" +msgstr "Most a következő néven van bejelentkezve: %s" + +#: src/Module/User/Delegation.php:185 +msgid "Switch between your accounts" +msgstr "Váltás a fiókjai között" + +#: src/Module/User/Delegation.php:186 +msgid "Manage your accounts" +msgstr "Fiókok kezelése" + +#: src/Module/User/Delegation.php:187 +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/User/Delegation.php:188 +msgid "Select an identity to manage: " +msgstr "A kezelendő személyazonosság kiválasztása: " + +#: src/Module/User/Import.php:103 +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." + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "Fiók áthelyezése" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "Importálhat egy fiókot egy másik Friendica kiszolgálóról." + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "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." + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "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." + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "Fiókfájl" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"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." + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "Hiba a fiókfájl dekódolásakor" + +#: src/Module/User/Import.php:222 +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/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "„%s” felhasználó már létezik ezen a kiszolgálón!" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "Felhasználó-létrehozási hiba" + +#: src/Module/User/Import.php:316 +#, 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/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "Felhasználóiprofil-létrehozási hiba" + +#: src/Module/User/Import.php:416 +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/Welcome.php:44 msgid "Welcome to Friendica" msgstr "Üdvözli a Friendica!" @@ -10256,15 +11399,15 @@ msgid "" 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" +msgid "Add Your Contacts To Circle" +msgstr "Partnerek hozzáadása a körhöz" #: 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." +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "Miután szerezett néhány ismerőst, szervezze őket személyes beszélgetési körökbe a partnerek oldal oldalsávján keresztül, és ezután személyes módon léphet kapcsolatba minden egyes körrel a hálózat oldalon." #: src/Module/Welcome.php:80 msgid "Why Aren't My Posts Public?" @@ -10291,51 +11434,51 @@ msgid "" " 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/Navigation/Notifications/Factory/FormattedNavNotification.php:134 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 msgid "{0} wants to follow you" msgstr "{0} követni szeretné Önt" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:136 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 msgid "{0} has started following you" msgstr "{0} elkezdte követni Önt" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:91 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 #, php-format msgid "%s liked %s's post" msgstr "%s kedvelte %s bejegyzését" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:103 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 #, php-format msgid "%s disliked %s's post" msgstr "%s nem kedvelte %s bejegyzését" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:115 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 #, php-format msgid "%s is attending %s's event" msgstr "%s részt vesz %s eseményén" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:127 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 #, php-format msgid "%s is not attending %s's event" msgstr "%s nem vesz részt %s eseményén" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:139 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 #, php-format msgid "%s may attending %s's event" msgstr "%s talán részt vesz %s eseményén" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:169 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 #, php-format msgid "%s is now friends with %s" msgstr "%s és %s mostantól ismerősök" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:336 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:374 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 #, php-format msgid "%s commented on %s's post" msgstr "%s hozzászólt %s bejegyzéséhez" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:373 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 #, php-format msgid "%s created a new post" msgstr "%s létrehozott egy új bejegyzést" @@ -10388,6 +11531,7 @@ msgid "%1$s shared your comment %2$s" msgstr "%1$s megosztotta az Ön %2$s hozzászólását" #: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 #, php-format msgid "%1$s shared your post %2$s" msgstr "%1$s megosztotta az Ön %2$s bejegyzését" @@ -10476,190 +11620,190 @@ msgstr "%1$s hozzászólt egy %3$s által közzétett szálában" msgid "%1$s commented on your thread %2$s" msgstr "%1$s hozzászólt az Ön %2$s szálánál" -#: src/Navigation/Notifications/Repository/Notify.php:222 -#: src/Navigation/Notifications/Repository/Notify.php:717 +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 msgid "[Friendica:Notify]" msgstr "[Friendica: értesítés]" -#: src/Navigation/Notifications/Repository/Notify.php:286 +#: src/Navigation/Notifications/Repository/Notify.php:293 #, php-format msgid "%s New mail received at %s" msgstr "%s Új levél érkezett ekkor: %s" -#: src/Navigation/Notifications/Repository/Notify.php:288 +#: src/Navigation/Notifications/Repository/Notify.php:295 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s személyes üzenetet küldött ekkor: %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:289 +#: src/Navigation/Notifications/Repository/Notify.php:296 msgid "a private message" msgstr "egy személyes üzenetet" -#: src/Navigation/Notifications/Repository/Notify.php:289 +#: src/Navigation/Notifications/Repository/Notify.php:296 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s küldött Önnek %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:291 +#: src/Navigation/Notifications/Repository/Notify.php:298 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Látogassa meg a(z) %s oldalt a személyes üzenete megtekintéséhez és/vagy megválaszolásához." -#: src/Navigation/Notifications/Repository/Notify.php:321 +#: src/Navigation/Notifications/Repository/Notify.php:328 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s hozzászólt egy %2$s által megosztott %3$s kapcsán: %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:326 +#: src/Navigation/Notifications/Repository/Notify.php:333 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s hozzászólt egy vele megosztott %2$s kapcsán: %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:330 +#: src/Navigation/Notifications/Repository/Notify.php:337 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s hozzászólt egy saját %2$s kapcsán: %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:334 -#: src/Navigation/Notifications/Repository/Notify.php:751 +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Hozzászólás a #%2$d beszélgetéshez %3$s által" -#: src/Navigation/Notifications/Repository/Notify.php:336 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s hozzászólt egy olyan elemhez vagy beszélgetéshez, amelyet Ön követ." -#: src/Navigation/Notifications/Repository/Notify.php:340 -#: src/Navigation/Notifications/Repository/Notify.php:355 -#: src/Navigation/Notifications/Repository/Notify.php:766 +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Látogassa meg a %s oldalt a beszélgetés megtekintéséhez és/vagy megválaszolásához." -#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:354 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s bejegyzést írt az Ön profilfalára" -#: src/Navigation/Notifications/Repository/Notify.php:349 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s bejegyzést írt az Ön profilfalára itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:350 +#: src/Navigation/Notifications/Repository/Notify.php:357 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s bejegyzést írt [url=%2$s]az Ön falára[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:363 +#: src/Navigation/Notifications/Repository/Notify.php:370 #, php-format msgid "%s Introduction received" msgstr "%s Bemutatkozás érkezett" -#: src/Navigation/Notifications/Repository/Notify.php:365 +#: src/Navigation/Notifications/Repository/Notify.php:372 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Kapott egy %1$s által elküldött bemutatkozását itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:366 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Kapott egy %2$s által elküldött [url=%1$s]bemutatkozást[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:371 -#: src/Navigation/Notifications/Repository/Notify.php:417 +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 #, php-format msgid "You may visit their profile at %s" msgstr "Meglátogathatja a profilját itt: %s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:380 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Látogassa meg a(z) %s oldalt a bemutatkozás jóváhagyásához vagy visszautasításához." -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:387 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Egy új személy megoszt Önnel" -#: src/Navigation/Notifications/Repository/Notify.php:382 -#: src/Navigation/Notifications/Repository/Notify.php:383 +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s megoszt Önnel itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:397 #, php-format msgid "%s You have a new follower" msgstr "%s Van egy új követője" -#: src/Navigation/Notifications/Repository/Notify.php:392 -#: src/Navigation/Notifications/Repository/Notify.php:393 +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Van egy új követője, %1$s itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:406 +#: src/Navigation/Notifications/Repository/Notify.php:413 #, php-format msgid "%s Friend suggestion received" msgstr "%s Ismerősajánlás érkezett" -#: src/Navigation/Notifications/Repository/Notify.php:408 +#: src/Navigation/Notifications/Repository/Notify.php:415 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Kapott egy %1$s által elküldött ismerősajánlást itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:409 +#: src/Navigation/Notifications/Repository/Notify.php:416 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Kapott egy %3$s által elküldött [url=%1$s]ismerősajánlást[/url] %2$s partnerhez." -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:422 msgid "Name:" msgstr "Név:" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:423 msgid "Photo:" msgstr "Fénykép:" -#: src/Navigation/Notifications/Repository/Notify.php:419 +#: src/Navigation/Notifications/Repository/Notify.php:426 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Látogassa meg a(z) %s oldalt az ajánlás jóváhagyásához vagy visszautasításához." -#: src/Navigation/Notifications/Repository/Notify.php:427 -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 #, php-format msgid "%s Connection accepted" msgstr "%s Kapcsolat elfogadva" -#: src/Navigation/Notifications/Repository/Notify.php:429 -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "%1$s elfogadta a kapcsolódási kérését itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:430 -#: src/Navigation/Notifications/Repository/Notify.php:445 +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s elfogadta a [url=%1$s]kapcsolódási kérését[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:435 +#: src/Navigation/Notifications/Repository/Notify.php:442 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Ö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." -#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:444 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Látogassa meg a(z) %s oldalt, ha bármilyen változtatást szeretne tenni ebben a kapcsolatban." -#: src/Navigation/Notifications/Repository/Notify.php:450 +#: src/Navigation/Notifications/Repository/Notify.php:457 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -10668,33 +11812,34 @@ msgid "" "automatically." msgstr "%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." -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "%1$s dönthet úgy, hogy kiterjeszti ezt egy kétirányú vagy egy megengedőbb kapcsolattá a jövőben." -#: src/Navigation/Notifications/Repository/Notify.php:454 +#: src/Navigation/Notifications/Repository/Notify.php:461 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Látogassa meg a(z) %s oldalt, ha bármilyen változtatást szeretne tenni ebben a kapcsolatban." -#: src/Navigation/Notifications/Repository/Notify.php:464 +#: src/Navigation/Notifications/Repository/Notify.php:471 msgid "registration request" msgstr "regisztrációs kérés" -#: src/Navigation/Notifications/Repository/Notify.php:466 +#: src/Navigation/Notifications/Repository/Notify.php:473 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "Kapott egy regisztrációs kérést %1$s partnertől itt: %2$s" +msgstr "Kapott egy regisztrációs kérést „%1$s” partnertől itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:467 +#: src/Navigation/Notifications/Repository/Notify.php:474 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Kapott egy %2$s által elküldött [url=%1$s]regisztrációs kérést[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:472 +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 #, php-format msgid "" "Full Name:\t%s\n" @@ -10702,21 +11847,50 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Teljes név:\t%s\nOldal címe:\t%s\nBejelentkezési név:\t%s (%s)" -#: src/Navigation/Notifications/Repository/Notify.php:478 +#: src/Navigation/Notifications/Repository/Notify.php:485 #, php-format 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." -#: src/Navigation/Notifications/Repository/Notify.php:745 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "új regisztráció" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "Kapott egy új regisztrációs kérést „%1$s” partnertől itt: %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "Kapott egy %2$s által elküldött [url=%1$s]új regisztrációt[/url]." + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "Látogassa meg a(z) %s oldal, hogy egy pillantást vessen az új regisztrációra." + +#: src/Navigation/Notifications/Repository/Notify.php:780 #, php-format msgid "%s %s tagged you" msgstr "%s %s megjelölte Önt" -#: src/Navigation/Notifications/Repository/Notify.php:748 +#: src/Navigation/Notifications/Repository/Notify.php:783 #, php-format msgid "%s %s shared a new post" msgstr "%s %s megosztott egy új bejegyzést" +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "%1$s %2$s kedvelte az Ön #%3$d bejegyzését" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "%1$s %2$s kedvelte az Ön hozzászólását ehhez: #%3$d" + #: src/Object/EMail/ItemCCEMail.php:42 #, php-format msgid "" @@ -10740,249 +11914,324 @@ msgstr "Vegye fel a kapcsolatot a küldővel erre a bejegyzésre válaszolva, ha msgid "%s posted an update." msgstr "%s frissítést küldött." -#: src/Object/Post.php:136 +#: src/Object/Post.php:138 msgid "Private Message" msgstr "Személyes üzenet" -#: src/Object/Post.php:140 +#: src/Object/Post.php:142 msgid "Public Message" msgstr "Nyilvános üzenet" -#: src/Object/Post.php:144 +#: src/Object/Post.php:146 msgid "Unlisted Message" msgstr "Listázatlan üzenet" -#: src/Object/Post.php:179 +#: src/Object/Post.php:182 msgid "This entry was edited" msgstr "Ezt a bejegyzést szerkesztették" -#: src/Object/Post.php:207 +#: src/Object/Post.php:210 msgid "Connector Message" msgstr "Csatlakozóüzenet" -#: src/Object/Post.php:222 src/Object/Post.php:224 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Szerkesztés" -#: src/Object/Post.php:248 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "Törlés globálisan" -#: src/Object/Post.php:248 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "Eltávolítás helyileg" -#: src/Object/Post.php:264 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "%s tiltása" -#: src/Object/Post.php:269 +#: src/Object/Post.php:274 +#, php-format +msgid "Ignore %s" +msgstr "%s mellőzése" + +#: src/Object/Post.php:279 +#, php-format +msgid "Collapse %s" +msgstr "%s összecsukása" + +#: src/Object/Post.php:283 +msgid "Report post" +msgstr "Bejegyzés jelentése" + +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "Mentés mappába" -#: src/Object/Post.php:304 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "Részt veszek" -#: src/Object/Post.php:304 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "Nem veszek részt" -#: src/Object/Post.php:304 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "Talán részt veszek" -#: src/Object/Post.php:334 +#: src/Object/Post.php:364 msgid "Ignore thread" msgstr "Szál mellőzése" -#: src/Object/Post.php:335 +#: src/Object/Post.php:365 msgid "Unignore thread" msgstr "Szál mellőzésének megszüntetése" -#: src/Object/Post.php:336 +#: src/Object/Post.php:366 msgid "Toggle ignore status" msgstr "Mellőzési állapot átváltása" -#: src/Object/Post.php:346 +#: src/Object/Post.php:376 msgid "Add star" msgstr "Csillag hozzáadása" -#: src/Object/Post.php:347 +#: src/Object/Post.php:377 msgid "Remove star" msgstr "Csillag eltávolítása" -#: src/Object/Post.php:348 +#: src/Object/Post.php:378 msgid "Toggle star status" msgstr "Csillagállapot átváltása" -#: src/Object/Post.php:359 +#: src/Object/Post.php:389 msgid "Pin" msgstr "Kitűzés" -#: src/Object/Post.php:360 +#: src/Object/Post.php:390 msgid "Unpin" msgstr "Kitűzés megszüntetése" -#: src/Object/Post.php:361 +#: src/Object/Post.php:391 msgid "Toggle pin status" msgstr "Kitűzés állapotának átváltása" -#: src/Object/Post.php:364 +#: src/Object/Post.php:394 msgid "Pinned" msgstr "Kitűzve" -#: src/Object/Post.php:369 +#: src/Object/Post.php:399 msgid "Add tag" msgstr "Címke hozzáadása" -#: src/Object/Post.php:382 +#: src/Object/Post.php:412 msgid "Quote share this" msgstr "Idézett megosztás" -#: src/Object/Post.php:382 +#: src/Object/Post.php:412 msgid "Quote Share" msgstr "Idéző megosztás" -#: src/Object/Post.php:385 +#: src/Object/Post.php:415 msgid "Reshare this" msgstr "Újra megosztás" -#: src/Object/Post.php:385 +#: src/Object/Post.php:415 msgid "Reshare" msgstr "Újra megosztás" -#: src/Object/Post.php:386 +#: src/Object/Post.php:416 msgid "Cancel your Reshare" msgstr "Újra megosztás megszakítása" -#: src/Object/Post.php:386 +#: src/Object/Post.php:416 msgid "Unshare" msgstr "Megosztás megszüntetése" -#: src/Object/Post.php:433 +#: src/Object/Post.php:467 #, php-format msgid "%s (Received %s)" msgstr "%s (fogadva: %s)" -#: src/Object/Post.php:438 +#: src/Object/Post.php:473 msgid "Comment this item on your system" msgstr "Hozzászólás az elemhez a saját rendszerén" -#: src/Object/Post.php:438 +#: src/Object/Post.php:473 msgid "Remote comment" msgstr "Távoli hozzászólás" -#: src/Object/Post.php:459 +#: src/Object/Post.php:495 msgid "Share via ..." msgstr "Megosztás ezen keresztül…" -#: src/Object/Post.php:459 +#: src/Object/Post.php:495 msgid "Share via external services" msgstr "Megosztás külső szolgáltatásokon keresztül" -#: src/Object/Post.php:488 +#: src/Object/Post.php:502 +msgid "Unknown parent" +msgstr "" + +#: src/Object/Post.php:506 +#, php-format +msgid "in reply to %s" +msgstr "" + +#: src/Object/Post.php:508 +msgid "Parent is probably private or not federated." +msgstr "" + +#: src/Object/Post.php:532 msgid "to" msgstr "ide:" -#: src/Object/Post.php:489 +#: src/Object/Post.php:533 msgid "via" msgstr "ezen keresztül:" -#: src/Object/Post.php:490 +#: src/Object/Post.php:534 msgid "Wall-to-Wall" msgstr "Falról-falra" -#: src/Object/Post.php:491 +#: src/Object/Post.php:535 msgid "via Wall-To-Wall:" msgstr "falról-falra szolgáltatáson keresztül:" -#: src/Object/Post.php:533 +#: src/Object/Post.php:582 #, php-format msgid "Reply to %s" msgstr "Válasz erre: %s" -#: src/Object/Post.php:536 +#: src/Object/Post.php:585 msgid "More" msgstr "Több" -#: src/Object/Post.php:554 +#: src/Object/Post.php:604 msgid "Notifier task is pending" msgstr "Az értesítőfeladat függőben van" -#: src/Object/Post.php:555 +#: src/Object/Post.php:605 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:556 +#: src/Object/Post.php:606 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:557 +#: src/Object/Post.php:607 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:558 +#: src/Object/Post.php:608 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:578 +#: src/Object/Post.php:630 #, 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:579 +#: src/Object/Post.php:631 msgid "Show more" msgstr "Több megjelenítése" -#: src/Object/Post.php:580 +#: src/Object/Post.php:632 msgid "Show fewer" msgstr "Kevesebb megjelenítése" -#: src/Protocol/OStatus.php:1475 +#: src/Object/Post.php:668 +#, php-format +msgid "Reshared by: %s" +msgstr "Újra megosztotta: %s" + +#: src/Object/Post.php:673 +#, php-format +msgid "Viewed by: %s" +msgstr "Megtekintette: %s" + +#: src/Object/Post.php:678 +#, php-format +msgid "Liked by: %s" +msgstr "Kedvelte: %s" + +#: src/Object/Post.php:683 +#, php-format +msgid "Disliked by: %s" +msgstr "Nem kedvelte: %s" + +#: src/Object/Post.php:688 +#, php-format +msgid "Attended by: %s" +msgstr "Részt vett: %s" + +#: src/Object/Post.php:693 +#, php-format +msgid "Maybe attended by: %s" +msgstr "Talán részt vett: %s" + +#: src/Object/Post.php:698 +#, php-format +msgid "Not attended by: %s" +msgstr "Nem vett részt: %s" + +#: src/Object/Post.php:703 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "Reagált ezzel: %s: %s" + +#: src/Protocol/ActivityPub/Receiver.php:522 +msgid "Chat" +msgstr "" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "(nincs tárgy)" + +#: src/Protocol/OStatus.php:1390 #, php-format msgid "%s is now following %s." msgstr "%s mostantól követi %s partnert." -#: src/Protocol/OStatus.php:1476 +#: src/Protocol/OStatus.php:1391 msgid "following" msgstr "követés" -#: src/Protocol/OStatus.php:1479 +#: src/Protocol/OStatus.php:1394 #, php-format msgid "%s stopped following %s." msgstr "%s leállította %s követését." -#: src/Protocol/OStatus.php:1480 +#: src/Protocol/OStatus.php:1395 msgid "stopped following" msgstr "követés leállítva" -#: src/Render/FriendicaSmartyEngine.php:53 +#: src/Render/FriendicaSmartyEngine.php:56 #, php-format msgid "The folder %s must be writable by webserver." msgstr "A „%s” mappának írhatónak kell lennie a webkiszolgáló által." -#: src/Security/Authentication.php:226 +#: src/Security/Authentication.php:227 msgid "Login failed." msgstr "Bejelentkezés sikertelen." -#: src/Security/Authentication.php:271 +#: 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:382 +#: src/Security/Authentication.php:391 #, php-format msgid "Welcome %s" msgstr "Üdvözöljük, %s!" -#: src/Security/Authentication.php:383 +#: src/Security/Authentication.php:392 msgid "Please upload a profile photo." msgstr "Töltsön fel egy profilfényképet." -#: src/Util/EMailer/MailBuilder.php:259 +#: src/Util/EMailer/MailBuilder.php:260 msgid "Friendica Notification" msgstr "Friendica értesítés" @@ -11005,228 +12254,235 @@ msgstr "A(z) %s adminisztrátora" msgid "thanks" msgstr "köszönet" -#: src/Util/Temporal.php:167 +#: src/Util/Temporal.php:172 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD vagy MM-DD" -#: src/Util/Temporal.php:275 +#: src/Util/Temporal.php:280 #, php-format msgid "Time zone: %s Change in Settings" msgstr "Időzóna: %s Megváltoztatás a beállításokban" -#: src/Util/Temporal.php:318 +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 msgid "never" msgstr "soha" -#: src/Util/Temporal.php:325 +#: src/Util/Temporal.php:343 msgid "less than a second ago" msgstr "kevesebb mint egy másodperce" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:352 msgid "year" msgstr "év" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:352 msgid "years" msgstr "év" -#: src/Util/Temporal.php:334 +#: src/Util/Temporal.php:353 msgid "months" msgstr "hónap" -#: src/Util/Temporal.php:335 +#: src/Util/Temporal.php:354 msgid "weeks" msgstr "hét" -#: src/Util/Temporal.php:336 +#: src/Util/Temporal.php:355 msgid "days" msgstr "nap" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:356 msgid "hour" msgstr "óra" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:356 msgid "hours" msgstr "óra" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:357 msgid "minute" msgstr "perc" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:357 msgid "minutes" msgstr "perc" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:358 msgid "second" msgstr "másodperc" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:358 msgid "seconds" msgstr "másodperc" -#: src/Util/Temporal.php:349 +#: src/Util/Temporal.php:367 #, php-format msgid "in %1$d %2$s" msgstr "%1$d %2$s múlva" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:370 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s óta" -#: src/Worker/Delivery.php:524 -msgid "(no subject)" -msgstr "(nincs tárgy)" - -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:110 msgid "Notification from Friendica" msgstr "Értesítés a Friendicától" -#: src/Worker/PushSubscription.php:112 +#: src/Worker/PushSubscription.php:111 msgid "Empty Post" msgstr "Üres bejegyzés" -#: view/theme/duepuntozero/config.php:52 +#: view/theme/duepuntozero/config.php:68 msgid "default" msgstr "alapértelmezett" -#: view/theme/duepuntozero/config.php:53 +#: view/theme/duepuntozero/config.php:69 msgid "greenzero" msgstr "zöld nulla" -#: view/theme/duepuntozero/config.php:54 +#: view/theme/duepuntozero/config.php:70 msgid "purplezero" msgstr "lila nulla" -#: view/theme/duepuntozero/config.php:55 +#: view/theme/duepuntozero/config.php:71 msgid "easterbunny" msgstr "húsvéti nyúl" -#: view/theme/duepuntozero/config.php:56 +#: view/theme/duepuntozero/config.php:72 msgid "darkzero" msgstr "sötét nulla" -#: view/theme/duepuntozero/config.php:57 +#: view/theme/duepuntozero/config.php:73 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:58 +#: view/theme/duepuntozero/config.php:74 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:87 msgid "Variations" msgstr "Variációk" -#: view/theme/frio/config.php:142 +#: view/theme/frio/config.php:153 msgid "Light (Accented)" msgstr "Világos (hangsúlyos)" -#: view/theme/frio/config.php:143 +#: view/theme/frio/config.php:154 msgid "Dark (Accented)" msgstr "Sötét (hangsúlyos)" -#: view/theme/frio/config.php:144 +#: view/theme/frio/config.php:155 msgid "Black (Accented)" msgstr "Fekete (hangsúlyos)" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Note" msgstr "Jegyzet" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 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 +#: view/theme/frio/config.php:173 msgid "Custom" msgstr "Egyéni" -#: view/theme/frio/config.php:163 +#: view/theme/frio/config.php:174 msgid "Legacy" msgstr "Örökölt" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:175 msgid "Accented" msgstr "Hangsúlyos" -#: view/theme/frio/config.php:165 +#: view/theme/frio/config.php:176 msgid "Select color scheme" msgstr "Színséma kiválasztása" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Select scheme accent" msgstr "Sémahangsúly kiválasztása" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Blue" msgstr "Kék" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Red" msgstr "Piros" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Purple" msgstr "Lila" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Green" msgstr "Zöld" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Pink" msgstr "Rózsaszín" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "Copy or paste schemestring" msgstr "Sémakarakterlánc másolása vagy beillesztése" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 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 +#: view/theme/frio/config.php:179 msgid "Navigation bar background color" msgstr "Navigációs sáv háttérszíne" -#: view/theme/frio/config.php:169 +#: view/theme/frio/config.php:180 msgid "Navigation bar icon color " msgstr "Navigációs sáv ikonszíne " -#: view/theme/frio/config.php:170 +#: view/theme/frio/config.php:181 msgid "Link color" msgstr "Hivatkozás színe" -#: view/theme/frio/config.php:171 +#: view/theme/frio/config.php:182 msgid "Set the background color" msgstr "Háttérszín beállítása" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:183 msgid "Content background opacity" msgstr "Tartalom hátterének átlátszatlansága" -#: view/theme/frio/config.php:173 +#: view/theme/frio/config.php:184 msgid "Set the background image" msgstr "A háttérkép beállítása" -#: view/theme/frio/config.php:174 +#: view/theme/frio/config.php:185 msgid "Background image style" msgstr "Háttérkép stílusa" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "Mindig az írás oldal megnyitása" + +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "Az új bejegyzés gomb mindig az írás oldalt nyitja meg a modális űrlap helyett. Ha ez le van tiltva, akkor az írás oldal a hivatkozásra való középső kattintással vagy a modális űrlapról érhető el." + +#: view/theme/frio/config.php:192 msgid "Login page background image" msgstr "Bejelentkezési oldal háttérképe" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Login page background color" msgstr "Bejelentkezési oldal háttérszíne" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 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" @@ -11274,78 +12530,78 @@ msgstr "Kihagyás a fő tartalomhoz" msgid "Back to top" msgstr "Vissza a tetejére" -#: view/theme/frio/theme.php:202 +#: view/theme/frio/theme.php:211 msgid "Guest" msgstr "Vendég" -#: view/theme/frio/theme.php:205 +#: view/theme/frio/theme.php:214 msgid "Visitor" msgstr "Látogató" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Alignment" msgstr "Igazítás" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Left" msgstr "Balra" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Center" msgstr "Középre" -#: view/theme/quattro/config.php:74 +#: view/theme/quattro/config.php:90 msgid "Color scheme" msgstr "Színséma" -#: view/theme/quattro/config.php:75 +#: view/theme/quattro/config.php:91 msgid "Posts font size" msgstr "Bejegyzések betűmérete" -#: view/theme/quattro/config.php:76 +#: view/theme/quattro/config.php:92 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:91 +msgid "Comma separated list of helper groups" +msgstr "Segítő csoportok vesszővel elválasztott listája" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "don't show" msgstr "ne jelenítse meg" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "show" msgstr "megjelenítés" -#: view/theme/vier/config.php:121 +#: view/theme/vier/config.php:137 msgid "Set style" msgstr "Stílus beállítása" -#: view/theme/vier/config.php:122 +#: view/theme/vier/config.php:138 msgid "Community Pages" msgstr "Közösségi oldalak" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:134 +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 msgid "Community Profiles" msgstr "Közösségi profilok" -#: view/theme/vier/config.php:124 +#: view/theme/vier/config.php:140 msgid "Help or @NewHere ?" msgstr "Súgó vagy @NewHere?" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:305 +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 msgid "Connect Services" msgstr "Szolgáltatások hozzákapcsolása" -#: view/theme/vier/config.php:126 +#: view/theme/vier/config.php:142 msgid "Find Friends" msgstr "Ismerősök keresése" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:161 +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 msgid "Last users" msgstr "Utolsó felhasználók" -#: view/theme/vier/theme.php:220 +#: view/theme/vier/theme.php:234 msgid "Quick Start" msgstr "Gyors kezdés" diff --git a/view/lang/hu/strings.php b/view/lang/hu/strings.php index 5a3a6943f..393020e13 100644 --- a/view/lang/hu/strings.php +++ b/view/lang/hu/strings.php @@ -5,104 +5,13 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} -$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['week'] = 'hét'; -$a->strings['day'] = 'nap'; -$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['Public access denied.'] = 'Nyilvános hozzáférés megtagadva.'; -$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['Permission denied.'] = 'Hozzáférés megtagadva.'; -$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['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['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['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['Please wait'] = 'Kis türelmet'; -$a->strings['Permission settings'] = 'Jogosultsági beállítások'; -$a->strings['CC: email addresses'] = 'Másolat: e-mail-címek'; -$a->strings['Public post'] = 'Nyilvános bejegyzés'; -$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['Example: bob@example.com, mary@example.com'] = 'Példa: bob@example.com, mary@example.com'; -$a->strings['Preview'] = 'Előnézet'; -$a->strings['Cancel'] = 'Mégse'; -$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['Link'] = 'Hivatkozás'; -$a->strings['Link or Media'] = 'Hivatkozás vagy média'; -$a->strings['Message'] = 'Üzenet'; -$a->strings['Browser'] = 'Böngésző'; -$a->strings['Permissions'] = 'Jogosultságok'; -$a->strings['Open Compose page'] = 'Írás oldal megnyitása'; -$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['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['Submit Request'] = 'Kérés elküldése'; -$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['Connect/Follow'] = 'Kapcsolódás vagy követés'; -$a->strings['Please answer the following:'] = 'Válaszoljon a következőre:'; -$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['%s knows you'] = '%s ismeri Önt'; -$a->strings['Add a personal note:'] = 'Személyes jegyzet hozzáadása:'; -$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['Empty post discarded.'] = 'Az üres bejegyzés elvetve.'; $a->strings['Item not found.'] = 'Az elem nem található.'; +$a->strings['Permission denied.'] = 'Hozzáférés megtagadva.'; $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[' @@ -193,9 +102,6 @@ $a->strings[' Megváltoztathatja a jelszót a fiókbeállítások oldalon, miután bejelentkezett. '; $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.'; @@ -211,6 +117,10 @@ $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['Upload photo'] = 'Fénykép feltöltése'; +$a->strings['Insert web link'] = 'Webhivatkozás beszúrása'; +$a->strings['Please wait'] = 'Kis türelmet'; +$a->strings['Submit'] = 'Elküldés'; $a->strings['No messages.'] = 'Nincsenek üzenetek.'; $a->strings['Message not available.'] = 'Az üzenet nem érhető el.'; $a->strings['Delete message'] = 'Üzenet törlése'; @@ -227,18 +137,8 @@ $a->strings['%d message'] = [ ]; $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 contacts'] = 'Feliratkozás a 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['Couldn\'t fetch following contacts.'] = 'Nem sikerült lekérni a következő partnereket.'; -$a->strings['Couldn\'t fetch remote profile.'] = 'Nem sikerült lekérni a távoli profilt.'; -$a->strings['Unsupported network'] = 'Nem támogatott hálózat'; -$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['Save'] = 'Mentés'; +$a->strings['User not found.'] = 'A felhasználó nem található.'; $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'; @@ -250,21 +150,17 @@ $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['Public access denied.'] = 'Nyilvános hozzáférés megtagadva.'; $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['The maximum accepted image size is %s'] = 'A legnagyobb elfogadott képméret %s'; $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['Permissions'] = 'Jogosultságok'; $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['Cancel'] = 'Mégse'; $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'; @@ -291,6 +187,8 @@ $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['Preview'] = 'Előnézet'; +$a->strings['Loading...'] = 'Betöltés…'; $a->strings['Select'] = 'Kiválasztás'; $a->strings['Delete'] = 'Törlés'; $a->strings['Like'] = 'Tetszik'; @@ -298,106 +196,31 @@ $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['Bad Request.'] = 'Hibás kérés.'; -$a->strings['Contact not found.'] = 'A partner nem található.'; -$a->strings['[Friendica System Notify]'] = '[Friendica rendszerértesíté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['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['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['Save Settings'] = 'Beállítások mentése'; -$a->strings['Addon Settings'] = 'Bővítménybeállítások'; -$a->strings['No Addon settings configured'] = 'Nincsenek bővítménybeállítások meghatározva'; -$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['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['Followed content scope'] = 'Követett tartalom hatóköre'; -$a->strings['By default, conversations in which your follows participated but didn\'t start will be shown in your timeline. You can turn this behavior off, or expand it to the conversations in which your follows liked a post.'] = 'Alapértelmezetten az idővonalán megjelennek azok a beszélgetések, amelyekben a követői részt vettek, de nem ők indították el. Ezt a viselkedést kikapcsolhatja, vagy kiterjesztheti azokra a beszélgetésekre, amelyekben a követőinek tetszett egy bejegyzés.'; -$a->strings['Only conversations my follows started'] = 'Csak a követőim által indított beszélgetések'; -$a->strings['Conversations my follows started or commented on (default)'] = 'A követőim által indított vagy hozzászólt beszélgetések (alapértelmezett)'; -$a->strings['Any conversation my follows interacted with, including likes'] = 'A követőim által interakcióba került beszélgetések, beleértve a kedveléseket is'; -$a->strings['Enable Content Warning'] = 'Tartalomfigyelmeztetés engedélyezése'; -$a->strings['Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting 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 engedélyezi az automatikus összecsukást, ahelyett hogy beállítaná 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['Enable intelligent shortening'] = 'Intelligens rövidítés engedélyezése'; -$a->strings['Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.'] = 'Általában a rendszer megpróbálja megkeresni a legjobb hivatkozást a rövidített bejegyzésekhez történő hozzáadáshoz. Ha le van tiltva, akkor minden egyes rövidített bejegyzés mindig az eredeti Friendica bejegyzésre fog mutatni.'; -$a->strings['Enable simple text shortening'] = 'Egyszerű szövegrövidítés engedélyezése'; -$a->strings['Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'] = 'Általában a rendszer lerövidíti a bejegyzéseket a következő soremelésnél. Ha ez a beállítás engedélyezve van, akkor a rendszer a legnagyobb karakterkorlátnál fogja rövidíteni a szöveget.'; -$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['Your legacy ActivityPub/GNU Social account'] = 'Az örökölt ActivityPub/GNU Social fiókja'; -$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Ha megadja itt a régi, egy ActivityPub alapú rendszerből származó fiókja nevét, illetve a GNU Social vagy Statusnet fiókja nevét (felhasználó@tartomány.tld formátumban), akkor a partnerei automatikusan hozzá lesznek adva. A mező ki lesz ürítve, ha elkészült.'; -$a->strings['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['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['photo'] = 'fénykép'; -$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['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['Contact was successfully unfollowed'] = 'A partner követése sikeresen meg lett szüntetve'; -$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Nem lehet megszüntetni ennek a partnernek a követését, vegye fel a kapcsolatot az adminisztrátorral'; -$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['Apologies but the website is unavailable at the moment.'] = 'Elnézést, de a weboldal jelenleg nem érhető el.'; $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['Ignore this author? You won\'t be able to see their posts and their notifications.'] = 'Mellőzi ezt a szerzőt? Nem lesz képes megtekinteni az ő bejegyzéseit és értesítéseit.'; +$a->strings['Collapse this author\'s posts?'] = 'Összecsukja ennek a szerzőnek a bejegyzéseit?'; +$a->strings['Ignore this author\'s server?'] = 'Mellőzi ennek a szerzőnek a kiszolgálóját?'; +$a->strings['You won\'t see any content from this server including reshares in your Network page, the community pages and individual conversations.'] = 'Nem fog látni semmilyen tartalmat erről a kiszolgálóról, beleértve a hálózat oldalon, a közösségi oldalakon és az egyéni beszélgetésekben lévő újra megosztásokat is.'; +$a->strings['Like not successful'] = 'A kedvelés sikertelen'; +$a->strings['Dislike not successful'] = 'A nem kedvelés sikertelen'; +$a->strings['Sharing not successful'] = 'A megosztás sikertelen'; +$a->strings['Attendance unsuccessful'] = 'A részvétel sikertelen'; +$a->strings['Backend error'] = 'Háttérprogram hiba'; +$a->strings['Network error'] = 'Hálózati hiba'; +$a->strings['Drop files here to upload'] = 'Dobja ide a fájlokat a feltöltéséhez'; +$a->strings['Your browser does not support drag and drop file uploads.'] = 'A böngészője nem támogatja a fogd és vidd fájlfeltöltéseket.'; +$a->strings['Please use the fallback form below to upload your files like in the olden days.'] = 'Használja az alábbi tartalék űrlapot a fájlok feltöltéséhez, mint a régi időkben.'; +$a->strings['File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.'] = 'A fájl túl nagy ({{filesize}} MiB). A legnagyobb fájlméret: {{maxFilesize}} MiB.'; +$a->strings['You can\'t upload files of this type.'] = 'Nem tud ilyen típusú fájlokat feltölteni.'; +$a->strings['Server responded with {{statusCode}} code.'] = 'A kiszolgáló {{statusCode}} állapotkóddal válaszolt.'; +$a->strings['Cancel upload'] = 'Feltöltés megszakítása'; +$a->strings['Upload canceled.'] = 'A feltöltés megszakítva.'; +$a->strings['Are you sure you want to cancel this upload?'] = 'Biztosan meg szeretné szakítani ezt a feltöltést?'; +$a->strings['Remove file'] = 'Fájl eltávolítása'; +$a->strings['You can\'t upload any more files.'] = 'Nem tud több fájlt feltölteni.'; $a->strings['toggle mobile'] = 'váltás mobilra'; $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ó.'; @@ -440,6 +263,7 @@ $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['User not found'] = 'A felhasználó nem található'; $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.'; @@ -478,26 +302,59 @@ $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['Tumblr'] = 'Tumblr'; +$a->strings['Bluesky'] = 'Bluesky'; $a->strings['%s (via %s)'] = '%s (ezen keresztül: %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['%s reshared this.'] = '%s újra megosztotta ezt.'; $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['%2$s likes this.'] = [ + 0 => '%2$s kedveli ezt.', + 1 => '%2$s kedveli ezt.', +]; +$a->strings['%2$s doesn\'t like this.'] = [ + 0 => '%2$s nem kedveli ezt.', + 1 => '%2$s nem kedveli ezt.', +]; +$a->strings['%2$s attends.'] = [ + 0 => '%2$s részt vesz.', + 1 => '%2$s részt vesz.', +]; +$a->strings['%2$s doesn\'t attend.'] = [ + 0 => '%2$s nem vesz részt.', + 1 => '%2$s nem vesz részt.', +]; +$a->strings['%2$s attends maybe.'] = [ + 0 => '%2$s talán részt vesz.', + 1 => '%2$s talán részt vesz.', +]; +$a->strings['%2$s reshared this.'] = [ + 0 => '%2$s újra megosztotta ezt.', + 1 => '%2$s újra megosztotta ezt.', +]; +$a->strings[' likes this'] = [ + 0 => ' kedveli ezt', + 1 => ' kedveli ezt', +]; +$a->strings[' doesn\'t like this'] = [ + 0 => ' nem kedveli ezt', + 1 => ' nem kedveli ezt', +]; +$a->strings[' attends'] = [ + 0 => ' részt vesz', + 1 => ' részt vesz', +]; +$a->strings[' doesn\'t attend'] = [ + 0 => ' nem vesz részt', + 1 => ' nem vesz részt', +]; +$a->strings[' attends maybe'] = [ + 0 => ' talán részt vesz', + 1 => ' talán részt vesz', +]; +$a->strings[' reshared this'] = [ + 0 => ' újra megosztotta ezt', + 1 => ' ú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:'; @@ -507,20 +364,39 @@ $a->strings['Delete item(s)?'] = 'Törli az elemeket?'; $a->strings['Created at'] = 'Létrehozva'; $a->strings['New Post'] = 'Új bejegyzés'; $a->strings['Share'] = 'Megosztás'; +$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['Add emojis'] = 'Emodzsik hozzáadása'; +$a->strings['Content Warning'] = 'Tartalom figyelmeztetés'; +$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['Scheduled at'] = 'Ütemezve ekkor'; -$a->strings['Pinned item'] = 'Kitűzött elem'; -$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['Permission settings'] = 'Jogosultsági beállítások'; +$a->strings['Public post'] = 'Nyilvános bejegyzés'; +$a->strings['Message'] = 'Üzenet'; +$a->strings['Browser'] = 'Böngésző'; +$a->strings['Open Compose page'] = 'Írás oldal megnyitása'; $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['You subscribed to %s.'] = 'Ön feliratkozott erre: %s.'; $a->strings['You subscribed to one or more tags in this post.'] = 'Ön feliratkozott egy vagy több címkére ebben a bejegyzésben.'; +$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.'; @@ -535,14 +411,48 @@ $a->strings['Local delivery'] = 'Helyi kézbesítés'; $a->strings['Stored because of your activity (like, comment, star, ...)'] = 'Eltárolva az Ön tevékenysége miatt (kedvelés, hozzászólás, csillagozás stb.)'; $a->strings['Distributed'] = 'Elosztott'; $a->strings['Pushed to us'] = 'Leküldve nekünk'; +$a->strings['Pinned item'] = 'Kitűzött elem'; +$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['For you'] = 'Önnek'; +$a->strings['Posts from contacts you interact with and who interact with you'] = 'Azoktól a partnerektől származó bejegyzések, akikkel kapcsolatba kerül és akik kapcsolatba kerülnek Önnel'; +$a->strings['What\'s Hot'] = 'Mi a menő'; +$a->strings['Posts with a lot of interactions'] = 'Sok interakcióval rendelkező bejegyzések'; +$a->strings['Posts in %s'] = 'Bejegyzések ebben: %s'; +$a->strings['Posts from your followers that you don\'t follow'] = 'Az olyan követőitől származó bejegyzések, akiket nem követ'; +$a->strings['Sharers of sharers'] = 'Megosztók megosztói'; +$a->strings['Posts from accounts that are followed by accounts that you follow'] = 'Az Ön által követett fiókok által követett fiókokból származó bejegyzések'; +$a->strings['Images'] = 'Képek'; +$a->strings['Posts with images'] = 'Képekkel rendelkező bejegyzések'; +$a->strings['Audio'] = 'Hang'; +$a->strings['Posts with audio'] = 'Hanggal rendelkező bejegyzések'; +$a->strings['Videos'] = 'Videók'; +$a->strings['Posts with videos'] = 'Videókkal rendelkező bejegyzések'; +$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['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['Latest Creation'] = 'Legutóbbi létrehozás'; +$a->strings['Sort by post creation date'] = 'Rendezés a bejegyzés létrehozá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['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['Auto-mention Groups'] = 'Csoportok automatikus említése'; +$a->strings['Add/remove mention when a group page is selected/deselected in ACL window.'] = 'Említés hozzáadása vagy eltávolítása, ha egy csoportoldalt 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['Add an abstract from ActivityPub content warnings'] = 'Kivonat hozzáadása az ActivityPub tartalomfigyelmeztetéseiből'; @@ -551,17 +461,24 @@ $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['List Groups'] = 'Csoportok felsorolása'; +$a->strings['Show visitors public groups at the Advanced Profile Page'] = 'Nyilvános csoportok 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['Advanced Calendar Settings'] = 'Speciális naptárbeállítások'; +$a->strings['Allow anonymous access to your calendar'] = 'Névtelen hozzáférés engedélyezése a naptárához'; +$a->strings['Allows anonymous visitors to consult your calendar and your public events. Contact birthday events are private to you.'] = 'Lehetővé teszi a névtelen látogatók számára a naptára és a nyilvános eseményei megtekintését. A partner születésnapi eseményei az Ön számára magánjellegűek.'; +$a->strings['Groups'] = 'Csoportok'; +$a->strings['External link to group'] = 'Külső hivatkozás a csoporthoz'; $a->strings['show less'] = 'kevesebb megjelenítése'; $a->strings['show more'] = 'több megjelenítése'; +$a->strings['Create new group'] = 'Új csoport létrehozása'; $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['Follow Thread'] = 'Szál követése'; $a->strings['View Status'] = 'Állapot megtekintése'; $a->strings['View Profile'] = 'Profil megtekintése'; @@ -571,26 +488,33 @@ $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['Collapse'] = 'Összecsukás'; +$a->strings['Ignore %s server'] = 'A(z) %s kiszolgáló mellőzése'; $a->strings['Languages'] = 'Nyelvek'; +$a->strings['Connect/Follow'] = 'Kapcsolódás vagy követés'; +$a->strings['Unable to fetch user.'] = 'Nem lehet lekérni a felhasználót.'; $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['@name, !group, #tags, content'] = '@név, !csoport, #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['Conversations'] = 'Beszélgetések'; +$a->strings['Conversations you started'] = 'Ön által elkezdett beszélgetések'; $a->strings['Profile'] = 'Profil'; $a->strings['Your profile page'] = 'Az Ön profiloldala'; +$a->strings['Photos'] = 'Fényképek'; $a->strings['Your photos'] = 'Az Ön fényképei'; $a->strings['Media'] = 'Média'; $a->strings['Your postings with media'] = 'Az Ön médiával rendelkező beküldései'; -$a->strings['Your events'] = 'Az Ön eseményei'; +$a->strings['Calendar'] = 'Naptár'; +$a->strings['Your calendar'] = 'Az Ön naptára'; $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['Register'] = 'Regisztráció'; $a->strings['Create an account'] = 'Fiók létrehozása'; $a->strings['Help'] = 'Súgó'; @@ -604,7 +528,6 @@ $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'; @@ -613,10 +536,12 @@ $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['Your posts and conversations'] = 'Az Ön bejegyzései és beszélgetései'; $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 as seen'] = 'Megjelölés olvasottként'; $a->strings['Mark all system notifications as 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'; @@ -628,6 +553,8 @@ $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['Moderation'] = 'Moderálás'; +$a->strings['Content and user moderation'] = 'Tartalom- és felhasználómoderálás'; $a->strings['Navigation'] = 'Navigáció'; $a->strings['Site map'] = 'Oldaltérkép'; $a->strings['Embedding disabled'] = 'A beágyazás letiltva'; @@ -659,13 +586,15 @@ $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['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['Global Directory'] = 'Globális könyvtár'; $a->strings['Local Directory'] = 'Helyi könyvtár'; -$a->strings['Groups'] = 'Csoportok'; +$a->strings['Circles'] = 'Körök'; $a->strings['Everyone'] = 'Mindenki'; +$a->strings['No relationship'] = 'Nincs kapcsolat'; $a->strings['Relationships'] = 'Kapcsolatok'; $a->strings['All Contacts'] = 'Összes partner'; $a->strings['Protocols'] = 'Protokollok'; @@ -678,11 +607,13 @@ $a->strings['%d contact in common'] = [ 1 => '%d partner közös', ]; $a->strings['Archives'] = 'Archívumok'; +$a->strings['On this date'] = 'Ezen a napon'; $a->strings['Persons'] = 'Személyek'; $a->strings['Organisations'] = 'Szervezetek'; $a->strings['News'] = 'Hírek'; $a->strings['Account Types'] = 'Fióktípusok'; $a->strings['All'] = 'Összes'; +$a->strings['Channels'] = 'Csatornák'; $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'; @@ -699,10 +630,14 @@ $a->strings['Trending Tags (last %d hour)'] = [ 1 => 'Népszerű címkék (legutóbbi %d óra)', ]; $a->strings['More Trending Tags'] = 'További népszerű címkék'; +$a->strings['Post to group'] = 'Beküldés csoportba'; +$a->strings['Mention'] = 'Említés'; $a->strings['XMPP:'] = 'XMPP:'; $a->strings['Matrix:'] = 'Mátrix:'; +$a->strings['Location:'] = 'Hely:'; $a->strings['Network:'] = 'Hálózat:'; $a->strings['Unfollow'] = 'Követés megszüntetése'; +$a->strings['View group'] = 'Csoport megtekintése'; $a->strings['Yourself'] = 'Önmaga'; $a->strings['Mutuals'] = 'Kölcsönösen ismerősök'; $a->strings['Post to Email'] = 'Beküldés e-mailbe'; @@ -710,8 +645,11 @@ $a->strings['Public'] = 'Nyilvános'; $a->strings['This content will be shown to all your followers and can be seen in the community pages and by anyone with its link.'] = '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.'; $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['Start typing the name of a contact or a circle to show a filtered list. You can also mention the special circles "Followers" and "Mutuals".'] = 'Kezdje el gépelni egy partner vagy kör nevét egy szűrt lista megjelenítéséhez. Megemlítheti a „Követők” és a „Kölcsönösen ismerősök” különleges köröket is.'; $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['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.'; @@ -818,6 +756,8 @@ $a->strings['Sep'] = 'Sze'; $a->strings['Oct'] = 'Okt'; $a->strings['Nov'] = 'Nov'; $a->strings['Dec'] = 'Dec'; +$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 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!'; @@ -842,18 +782,8 @@ $a->strings[' $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[' - The friendica database was successfully updated from %s to %s.'] = ' - A 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!'; -$a->strings['User creation error'] = 'Felhasználó-létrehozási hiba'; -$a->strings['%d contact not imported'] = [ - 0 => '%d partner nincs importálva', - 1 => '%d partner nincs importálva', -]; -$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.'; + The friendica database was successfully updated from %s to %s.'] = ' + A Friendica adatbázisa sikeresen frissítve lett: %s → %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.'; @@ -876,14 +806,23 @@ $a->strings['Unauthorized'] = 'Nem engedélyezett'; $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['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['A deleted circle with this name was revived. Existing item permissions may apply to this circle and any future members. If this is not what you intended, please create another circle with a different name.'] = 'Egy ilyen névvel rendelkező törölt kör újraéledt. Lehet, hogy a meglévő elemjogosultságok alkalmazva lesznek erre a körre és bármely jövőbeli tagjaira. Ha ez nem az, amit szeretett volna, akkor hozzon létre egy másik kört eltérő névvel.'; +$a->strings['Everybody'] = 'Mindenki'; +$a->strings['edit'] = 'szerkesztés'; +$a->strings['add'] = 'hozzáadás'; +$a->strings['Edit circle'] = 'Kör szerkesztése'; +$a->strings['Contacts not in any circle'] = 'Egyetlen körben sem lévő partnerek'; +$a->strings['Create a new circle'] = 'Új kör létrehozása'; +$a->strings['Circle Name: '] = 'Kör neve: '; +$a->strings['Edit circles'] = 'Körök szerkesztése'; $a->strings['Approve'] = 'Jóváhagyás'; $a->strings['Organisation'] = 'Szervezet'; -$a->strings['Forum'] = 'Fórum'; +$a->strings['Group'] = 'Csoport'; $a->strings['Disallowed profile URL.'] = 'Nem engedélyezett profil URL.'; $a->strings['Blocked domain'] = 'Tiltott tartomány'; $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['Expected network %s does not match actual network %s'] = 'A várt %s hálózat nem egyezik a tényleges %s hálózattal'; $a->strings['The profile address specified does not provide adequate information.'] = 'A megadott profilcím nem biztosít elegendő információt.'; $a->strings['No compatible communication protocols or feeds were discovered.'] = 'Nem lettek megfelelő kommunikációs protokollok vagy hírforrások felfedezve.'; $a->strings['An author or name was not found.'] = 'Egy szerző vagy név nem található.'; @@ -898,7 +837,13 @@ $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['month'] = 'hónap'; +$a->strings['week'] = 'hét'; +$a->strings['day'] = 'nap'; $a->strings['No events to display'] = 'Nincsenek megjelenítendő események'; +$a->strings['Access to this profile has been restricted.'] = 'A profilhoz való hozzáférés korlátozva lett.'; +$a->strings['Event not found.'] = 'Az esemény nem található.'; $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'; @@ -910,20 +855,13 @@ $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['%s is blocked'] = '%s tiltva van'; +$a->strings['%s is ignored'] = '%s mellőzve van'; +$a->strings['Content from %s is collapsed'] = 'A(z) %s helyről származó tartalom összecsukva'; $a->strings['Content warning: %s'] = 'Tartalom figyelmeztetés: %s'; $a->strings['bytes'] = 'bájt'; $a->strings['%2$s (%3$d%%, %1$d vote)'] = [ @@ -945,11 +883,13 @@ $a->strings['%d voter.'] = [ $a->strings['Poll end: %s'] = 'Szavazás vége: %s'; $a->strings['View on separate page'] = 'Megtekintés külön oldalon'; $a->strings['[no subject]'] = '[nincs tárgy]'; +$a->strings['Wall Photos'] = 'Falfényképek'; $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['Atom feed'] = 'Atom hírforrás'; +$a->strings['This website has been verified to belong to the same person.'] = 'Ez a weboldal ellenőrizve lett, hogy ugyanahhoz a személyhez tartozik.'; $a->strings['F d'] = 'F j.'; $a->strings['[today]'] = '[ma]'; $a->strings['Birthday Reminders'] = 'Születésnapi emlékeztetők'; @@ -986,7 +926,7 @@ $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 length is limited to 72 characters.'] = 'A jelszó hossza 72 karakterre van korlátozva.'; -$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['The password can\'t contain white spaces nor accentuated letters'] = 'A jelszó nem tartalmazhat üres karaktereket vagy ékezetes betűket'; $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.'; @@ -1014,7 +954,7 @@ $a->strings['An error occurred during registration. Please try again.'] = 'Hiba $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['An error occurred creating your default contact circle. Please try again.'] = 'Hiba történt az alapértelmezett partnerkör létrehozásakor. Próbálja újra.'; $a->strings['Profile Photos'] = 'Profilfényképek'; $a->strings[' Dear %1$s, @@ -1045,7 +985,7 @@ $a->strings[' If you are new and do not know anybody here, they may help you to make some new and interesting friends. - If you ever want to delete your account, you can do so at %1$s/removeme + If you ever want to delete your account, you can do so at %1$s/settings/removeme Thank you and welcome to %4$s.'] = ' A bejelentkezés részletei a következők: @@ -1074,7 +1014,7 @@ $a->strings[' ismerőst találni. Ha bármikor törölni szeretné a fiókját, akkor megteheti azt a - következő címen: %1$s/removeme + következő címen: %1$s/settings/removeme Kö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'; @@ -1129,7 +1069,7 @@ $a->strings[' If you are new and do not know anybody here, they may help you to make some new and interesting friends. - If you ever want to delete your account, you can do so at %3$s/removeme + If you ever want to delete your account, you can do so at %3$s/settings/removeme Thank you and welcome to %2$s.'] = ' A bejelentkezés részletei a következők: @@ -1158,19 +1098,9 @@ $a->strings[' ismerőst találni. Ha bármikor törölni szeretné a fiókját, akkor megteheti azt a - következő címen: %3$s/removeme + következő címen: %3$s/settings/removeme Köszönjük, és üdvözöljük a %2$s oldalon.'; -$a->strings['[%s] Notice of remote server domain pattern block list update'] = '[%s] Értesítés a távoli kiszolgálótartomány-minta tiltólistájának frissítéséről'; -$a->strings['Dear %s, - -You are receiving this email because the Friendica node at %s where you are registered as a user updated their remote server domain pattern block list. - -Please review the updated list at %s at your earliest convenience.'] = 'Kedves %s! - -Azért kapta ezt az e-mailt, mert a(z) %s címen lévő Friendica csomópont, ahol felhasználóként van regisztrálva, frissítette a távoli kiszolgálótartomány-mintája tiltólistáját. - -Nézze át a(z) %s címen lévő frissített listát a lehető leghamarabb.'; $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.'; @@ -1183,26 +1113,840 @@ $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['Save Settings'] = 'Beállítások mentése'; $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['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'; +$a->strings['Executing %s failed with error: %s'] = 'A(z) %s végrehajtása meghiúsult ezzel a hibával: %s'; +$a->strings['Update %s was successfully applied.'] = 'A(z) %s frissítés sikeresen alkalmazva.'; +$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'A(z) %s frissítés nem adott vissza állapotot. Nem tudni, hogy sikerült-e.'; +$a->strings['There was no additional update function %s that needed to be called.'] = 'Nem volt további frissítési funkció, %s amelyet meg kellett hívni.'; +$a->strings['No failed updates.'] = 'Nincsenek sikertelen frissítések.'; +$a->strings['Check database structure'] = 'Adatbázis-szerkezet ellenőrzése'; +$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['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['%2$s total system'] = [ + 0 => '%2$s rendszer összesen', + 1 => '%2$s rendszer összesen', +]; +$a->strings['%2$s active user last month'] = [ + 0 => '%2$s aktív felhasználó az elmúlt hónapban', + 1 => '%2$s aktív felhasználó az elmúlt hónapban', +]; +$a->strings['%2$s active user last six months'] = [ + 0 => '%2$s aktív felhasználó az elmúlt hat hónapban', + 1 => '%2$s aktív felhasználó az elmúlt hat hónapban', +]; +$a->strings['%2$s registered user'] = [ + 0 => '%2$s regisztrált felhasználó', + 1 => '%2$s regisztrált felhasználó', +]; +$a->strings['%2$s locally created post or comment'] = [ + 0 => '%2$s helyileg létrehozott bejegyzés vagy hozzászólás', + 1 => '%2$s helyileg létrehozott bejegyzés és hozzászólás', +]; +$a->strings['%2$s post per user'] = [ + 0 => '%2$s bejegyzés felhasználónként', + 1 => '%2$s bejegyzés felhasználónként', +]; +$a->strings['%2$s user per system'] = [ + 0 => '%2$s felhasználó rendszerenként', + 1 => '%2$s felhasználó rendszerenként', +]; +$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 %2$s node (%3$s active users last month, %4$s active users last six months, %5$s registered users in total) from the following platforms:'] = [ + 0 => 'Jelenleg erről a csomópontról %2$s csomópontnak van tudomása (%3$s aktív felhasználóval az elmúlt hónapban, %4$s aktív felhasználóval az elmúlt hat hónapban, összesen %5$s regisztrált felhasználóval) a következő platformokról:', + 1 => 'Jelenleg erről a csomópontról %2$s csomópontnak van tudomása (%3$s aktív felhasználóval az elmúlt hónapban, %4$s aktív felhasználóval az elmúlt hat hónapban, összesen %5$s regisztrált felhasználóval) a következő platformokról:', +]; +$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['Read-only because it is set by an environment variable'] = 'Csak olvasható, mert egy környezeti változó állítja be'; +$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.
    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.
    Ellenőrizze, hogy a(z) „%1$s” fájl létezik-e és olvasható-e.'; +$a->strings['Couldn\'t open %1$s log file.
    Check to see if file %1$s is readable.'] = 'Nem sikerült megnyitni a(z) %1$s naplófájlt.
    Ellenőrizze, hogy a(z) „%1$s” fájl olvasható-e.'; +$a->strings['View Logs'] = 'Naplók megtekintése'; +$a->strings['Search in logs'] = 'Keresés a naplókban'; +$a->strings['Show all'] = 'Összes megjelenítése'; +$a->strings['Date'] = 'Dátum'; +$a->strings['Level'] = 'Szint'; +$a->strings['Context'] = 'Környezet'; +$a->strings['ALL'] = 'Összes'; +$a->strings['View details'] = 'Részletek megtekintése'; +$a->strings['Click to view details'] = 'Kattintson a részletek megtekintéséhez'; +$a->strings['Event details'] = 'Esemény részletei'; +$a->strings['Data'] = 'Adatok'; +$a->strings['Source'] = 'Forrás'; +$a->strings['File'] = 'Fájl'; +$a->strings['Line'] = 'Sor'; +$a->strings['Function'] = 'Függvény'; +$a->strings['UID'] = 'UID'; +$a->strings['Process ID'] = 'Folyamatazonosító'; +$a->strings['Close'] = 'Bezárás'; +$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['Created'] = 'Létrehozva'; +$a->strings['Priority'] = 'Prioritás'; +$a->strings['%s is no valid input for maximum image size'] = 'A(z) %s nem érvényes bemenet a legnagyobb képmérethez'; +$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'] = 'Nincs közösségi oldal'; +$a->strings['No community page for visitors'] = 'Nincs közösségi oldal a látogatóknak'; +$a->strings['Public postings from users of this site'] = 'Nyilvános beküldések ezen oldal felhasználóitól'; +$a->strings['Public postings from the federated network'] = 'Nyilvános beküldések a föderált hálózatból'; +$a->strings['Public postings from local users and the federated network'] = 'Nyilvános beküldések a helyi felhasználóktól és a föderált hálózatból'; +$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['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'; +$a->strings['none'] = 'nincs'; +$a->strings['Local contacts'] = 'Helyi partnerek'; +$a->strings['Interactors'] = 'Interaktorok'; +$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['Advanced'] = 'Speciális'; +$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 Node'] = 'Csomópont áthelyezése'; +$a->strings['Relocating your node enables you to change the DNS domain of this node and keep all the existing users and posts. This process takes a while and can only be started from the relocate console command like this:'] = 'A csomópont áthelyezése lehetővé teszi a csomópont DNS-tartományának megváltoztatását, valamint az összes meglévő felhasználó és bejegyzés megtartását. Ez a folyamat eltart egy ideig, és csak az áthelyezés konzolparanccsal indítható el az alábbi módon:'; +$a->strings['(Friendica directory)# bin/console relocate https://newdomain.com'] = '(Friendica könyvtár)# bin/console relocate https://uj-tartomany.hu'; +$a->strings['Site name'] = 'Oldal neve'; +$a->strings['Sender Email'] = 'Küldő e-mail-címe'; +$a->strings['The email address your server shall use to send notification emails from.'] = 'Az az e-mail-cím, amelyet a kiszolgáló használhat az értesítési e-mailek kiküldéséhez.'; +$a->strings['Name of the system actor'] = 'A rendszer szereplőjének neve'; +$a->strings['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.'] = '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.'; +$a->strings['Banner/Logo'] = 'Reklámcsík vagy logó'; +$a->strings['Email Banner/Logo'] = 'E-mail reklámcsík vagy logó'; +$a->strings['Shortcut icon'] = 'Böngészőikon'; +$a->strings['Link to an icon that will be used for browsers.'] = 'Hivatkozás egy ikonra, amely a böngészőknél lesz használva.'; +$a->strings['Touch icon'] = 'Érintő ikon'; +$a->strings['Link to an icon that will be used for tablets and mobiles.'] = 'Hivatkozás egy ikonra, amely táblagépeknél és mobiltelefonoknál lesz használva.'; +$a->strings['Additional Info'] = 'További információk'; +$a->strings['For public servers: you can add additional information here that will be listed at %s/servers.'] = 'Nyilvános kiszolgálóknál: itt adhat meg további információkat, amelyek a %s/servers oldalon lesznek felsorolva.'; +$a->strings['System language'] = 'Rendszer nyelve'; +$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['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['Show help entry from navigation menu'] = 'Súgó bejegyzés megjelenítése a navigációs menüből'; +$a->strings['Displays the menu entry for the Help pages from the navigation menu. It is always accessible by calling /help directly.'] = 'Megjeleníti a súgóoldalak menübejegyzését a navigációs menüből. Ez mindig elérhető a „/help” közvetlen meghívásával.'; +$a->strings['Single user instance'] = 'Egyfelhasználós példány'; +$a->strings['Make this instance multi-user or single-user for the named user'] = 'Többfelhasználóssá vagy a megnevezett felhasználó számára egyfelhasználóssá teszi ezt a rendszert.'; +$a->strings['Maximum image size'] = 'Legnagyobb képméret'; +$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively. + The value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit. + Currently upload_max_filesize is set to %s (%s byte)'] = 'A feltöltött képek legnagyobb mérete bájtban. Alapértelmezetten 0, ami azt jelenti, hogy nincs korlátozás. A kívánt érték mögé k, m vagy g értékeket is írhat a KiB, MiB, GiB értékhez, ebben a sorrendben. + A PHP.ini fájlban lévő upload_max_filesize értékét be kell állítani legalább a kívánt korlátra. + Jelenleg az upload_max_filesize %s (%s bájt) értékre van állítva.'; +$a->strings['Maximum image length'] = 'Legnagyobb képhossz'; +$a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'A feltöltött képek leghosszabb oldalának legnagyobb hossza képpontban. Alapértelmezetten -1, ami azt jelenti, hogy nincs korlát.'; +$a->strings['JPEG image quality'] = 'JPEG-képek minősége'; +$a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = '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.'; +$a->strings['Register policy'] = 'Regisztrációs irányelv'; +$a->strings['Maximum Users'] = 'Legtöbb felhasználó'; +$a->strings['If defined, the register policy is automatically closed when the given number of users is reached and reopens the registry when the number drops below the limit. It only works when the policy is set to open or close, but not when the policy is set to approval.'] = 'Ha meg van adva, akkor a regisztrációs házirend automatikusan lezárja a regisztrációt a megadott számú felhasználó elérésekor, és újra megnyitja a regisztrációt, ha a felhasználók száma a határérték alá csökken. Ez csak akkor működik, ha a házirend nyitottra vagy zártra van beállítva, de nem működik, ha a házirend jóváhagyásra van beállítva.'; +$a->strings['Maximum Daily Registrations'] = 'Legtöbb napi regisztráció'; +$a->strings['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.'] = '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.'; +$a->strings['Register text'] = 'Regisztrációs szöveg'; +$a->strings['Will be displayed prominently on the registration page. You can use BBCode here.'] = 'Szembetűnően lesz megjelenítve a regisztrációs oldalon. BBCode formázást is használhat itt.'; +$a->strings['Forbidden Nicknames'] = 'Tiltott becenevek'; +$a->strings['Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142.'] = '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.'; +$a->strings['Accounts abandoned after x days'] = 'Fiókok elhagyottak X nap után'; +$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = '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.'; +$a->strings['Allowed friend domains'] = 'Engedélyezett ismerőstartományok'; +$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = '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.'; +$a->strings['Allowed email domains'] = 'Engedélyezett e-mail-tartományok'; +$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = '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.'; +$a->strings['No OEmbed rich content'] = 'Nincs OEmbed gazdag tartalom'; +$a->strings['Don\'t show the rich content (e.g. embedded PDF), except from the domains listed below.'] = 'Ne jelenítse meg a gazdag tartalmat (például beágyazott PDF), kivéve az alább felsorolt tartományokról.'; +$a->strings['Trusted third-party domains'] = 'Megbízható harmadik fél tartományok'; +$a->strings['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.'] = '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.'; +$a->strings['Block public'] = 'Nyilvános tiltása'; +$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = '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.'; +$a->strings['Force publish'] = 'Közzététel kényszerítése'; +$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Jelölje be, hogy ezen az oldalon az összes profil kényszerítetten fel legyen sorolva az oldal könyvtárában.'; +$a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Ennek engedélyezése megsértheti az adatvédelmi rendeleteket, mint például a GDPR-t.'; +$a->strings['Global directory URL'] = 'Globális könyvtár URL'; +$a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = '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.'; +$a->strings['Private posts by default for new users'] = 'Alapértelmezetten személyes bejegyzések az új felhasználóknál'; +$a->strings['Set default post permissions for all new members to the default privacy circle rather than public.'] = 'Az összes új tag alapértelmezett bejegyzés-jogosultságainak beállítása az alapértelmezett adatvédelmi körre a nyilvános helyett.'; +$a->strings['Don\'t include post content in email notifications'] = 'Ne ágyazza be a bejegyzés tartalmát az e-mailes értesítésekbe'; +$a->strings['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.'] = '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.'; +$a->strings['Disallow public access to addons listed in the apps menu.'] = 'Nyilvános hozzáférés letiltása az alkalmazások menüben felsorolt bővítményekhez'; +$a->strings['Checking this box will restrict addons listed in the apps menu to members only.'] = '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.'; +$a->strings['Don\'t embed private images in posts'] = 'Ne ágyazzon be személyes képeket a bejegyzésekbe'; +$a->strings['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.'] = '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.'; +$a->strings['Explicit Content'] = 'Felnőtteknek szánt tartalom'; +$a->strings['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.'] = 'Á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.'; +$a->strings['Proxify external content'] = 'Külső tartalom proxyzása'; +$a->strings['Route external content via the proxy functionality. This is used for example for some OEmbed accesses and in some other rare cases.'] = 'Külső tartalom átirányítása a proxy funkción keresztül. Ezt például néhány OEmbed-hozzáférésnél és egyéb ritka esetekben használják.'; +$a->strings['Cache contact avatars'] = 'Partnerprofilképek gyorsítótárazása'; +$a->strings['Locally store the avatar pictures of the contacts. This uses a lot of storage space but it increases the performance.'] = 'A partnerek profilképeinek helyi tárolása. Ez nagyon sok tárhelyet használ, de növeli a teljesítményt.'; +$a->strings['Allow Users to set remote_self'] = 'Távoli önmaguk beállításának engedélyezése a felhasználóknak'; +$a->strings['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.'] = '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.'; +$a->strings['Enable multiple registrations'] = 'Többszörös regisztrációk engedélyezése'; +$a->strings['Enable users to register additional accounts for use as pages.'] = 'Lehetővé teszi a felhasználóknak, hogy további fiókokat regisztráljanak oldalakként történő használathoz.'; +$a->strings['Enable OpenID'] = 'OpenID engedélyezése'; +$a->strings['Enable OpenID support for registration and logins.'] = 'Az OpenID támogatás engedélyezése a regisztrációnál és a bejelentkezéseknél.'; +$a->strings['Enable Fullname check'] = 'Teljes név ellenőrzésének engedélyezése'; +$a->strings['Enable check to only allow users to register with a space between the first name and the last name in their full name.'] = 'Lehetővé teszi annak ellenőrzését, hogy a felhasználóknak csak a teljes nevükben lévő vezetéknév és a keresztnév közti szóközzel legyen lehetőségük regisztrálniuk.'; +$a->strings['Email administrators on new registration'] = 'E-mail küldése az adminisztrátoroknak új regisztrációkor'; +$a->strings['If enabled and the system is set to an open registration, an email for each new registration is sent to the administrators.'] = 'Ha engedélyezve van, és a rendszer nyitott regisztrációhoz van beállítva, akkor minden új regisztrációról e-mail lesz küldve az adminisztrátoroknak.'; +$a->strings['Community pages for visitors'] = 'Közösségi oldalak a látogatók számára'; +$a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = '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.'; +$a->strings['Posts per user on community page'] = 'Felhasználónkénti bejegyzések a közösségi oldalon'; +$a->strings['The maximum number of posts per user on the community page. (Not valid for "Global Community")'] = '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”).'; +$a->strings['Enable Mail support'] = 'Levelezési támogatás engedélyezése'; +$a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'A beépített levelezési támogatás engedélyezése az IMAP-mappák lekérdezéséhez és az e-mailben történő válaszhoz.'; +$a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'A levelezési támogatást nem lehet engedélyezni, mert a PHP IMAP-modulja nincs telepítve.'; +$a->strings['Enable OStatus support'] = 'OStatus támogatás engedélyezése'; +$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'A beépített OStatus (StatusNet, GNU Social stb.) kompatibilitás engedélyezése. Az OStatus hálózaton lévő összes kommunikáció nyilvános.'; +$a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'A Diaspora támogatást nem lehet engedélyezni, mert a Friendica egy alkönyvtárba lett telepítve.'; +$a->strings['Enable Diaspora support'] = 'Diaspora támogatás engedélyezése'; +$a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'A beépített Diaspora hálózati kompatibilitás engedélyezése a Diaspora kiszolgálókkal való kommunikációhoz.'; +$a->strings['Verify SSL'] = 'SSL ellenőrzése'; +$a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = '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.'; +$a->strings['Proxy user'] = 'Proxy felhasználó'; +$a->strings['User name for the proxy server.'] = 'Felhasználónév a proxy-kiszolgálóhoz.'; +$a->strings['Proxy URL'] = 'Proxy URL'; +$a->strings['If you want to use a proxy server that Friendica should use to connect to the network, put the URL of the proxy here.'] = 'Ha olyan proxy-kiszolgálót szeretne használni, amelyet a Friendicának a hálózathoz való kapcsolódáshoz használnia kell, akkor itt adja meg a proxy URL-jét.'; +$a->strings['Network timeout'] = 'Hálózati időkorlát'; +$a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Az érték másodpercben van. Állítsa 0-ra a korlátlan időhöz (nem ajánlott).'; +$a->strings['Maximum Load Average'] = 'Legnagyobb terhelésátlag'; +$a->strings['Maximum system load before delivery and poll processes are deferred - default %d.'] = 'A legnagyobb rendszerterhelés, mielőtt a kézbesítési és lekérdezési folyamatok elhalasztásra kerülnek. Alapértelmezetten %d.'; +$a->strings['Minimal Memory'] = 'Legkevesebb memória'; +$a->strings['Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).'] = '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).'; +$a->strings['Periodically optimize tables'] = 'Táblák időszakos optimalizálása'; +$a->strings['Periodically optimize tables like the cache and the workerqueue'] = '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.'; +$a->strings['Discover followers/followings from contacts'] = 'Követők vagy követések felfedezése a partnerekből'; +$a->strings['If enabled, contacts are checked for their followers and following contacts.'] = 'Ha engedélyezve van, akkor a partnerek ellenőrizve lesznek a követő és követett partnereik számára.'; +$a->strings['None - deactivated'] = 'Nincs: ki van kapcsolva.'; +$a->strings['Local contacts - contacts of our local contacts are discovered for their followers/followings.'] = 'Helyi partnerek: a helyi partnereink partnerei lesznek felfedezve a követőik vagy követésiek számára.'; +$a->strings['Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings.'] = '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.'; +$a->strings['Synchronize the contacts with the directory server'] = 'A partnerek szinkronizálása a könyvtárkiszolgálóval'; +$a->strings['if enabled, the system will check periodically for new contacts on the defined directory server.'] = 'Ha engedélyezve van, akkor a rendszer időszakosan ellenőrizni fogja az új partnereket a meghatározott könyvtárkiszolgálón.'; +$a->strings['Days between requery'] = 'Ismételt lekérdezések közti napok'; +$a->strings['Number of days after which a server is requeried for his contacts.'] = 'A napok száma, amely után egy kiszolgáló ismét lekérdezésre kerül a partnereiért.'; +$a->strings['Discover contacts from other servers'] = 'Partnerek felfedezése más kiszolgálókról'; +$a->strings['Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers.'] = '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.'; +$a->strings['Search the local directory'] = 'A helyi könyvtár keresése'; +$a->strings['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.'] = '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.'; +$a->strings['Publish server information'] = 'Kiszolgálóinformációk közzététele'; +$a->strings['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.'] = '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.'; +$a->strings['Check upstream version'] = 'Távoli verzió ellenőrzése'; +$a->strings['Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview.'] = '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.'; +$a->strings['Suppress Tags'] = 'Címkék letiltása'; +$a->strings['Suppress showing a list of hashtags at the end of the posting.'] = 'A kettős keresztes címkék listája megjelenítésének letiltása a beküldések végénél.'; +$a->strings['Clean database'] = 'Adatbázis tisztítása'; +$a->strings['Remove old remote items, orphaned database records and old content from some other helper tables.'] = '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.'; +$a->strings['Lifespan of remote items'] = 'Távoli elemek élettartama'; +$a->strings['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.'] = '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.'; +$a->strings['Lifespan of unclaimed items'] = 'Nem igényelt elemek élettartama'; +$a->strings['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.'] = '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.'; +$a->strings['Lifespan of raw conversation data'] = 'Nyers beszélgetési adatok élettartama'; +$a->strings['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.'] = '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.'; +$a->strings['Maximum numbers of comments per post'] = 'Bejegyzésenkénti hozzászólások legnagyobb száma'; +$a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Mennyi hozzászólást kell megjeleníteni az egyes bejegyzéseknél? Az alapértelmezett érték 100.'; +$a->strings['Maximum numbers of comments per post on the display page'] = 'Bejegyzésenkénti hozzászólások legnagyobb száma a megjelenítési oldalon'; +$a->strings['How many comments should be shown on the single view for each post? Default value is 1000.'] = 'Mennyi hozzászólást kell megjeleníteni egy önálló nézeten az egyes bejegyzéseknél? Az alapértelmezett érték 1000.'; +$a->strings['Temp path'] = 'Ideiglenes mappa útvonala'; +$a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = '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.'; +$a->strings['Only search in tags'] = 'Keresés csak címkékben'; +$a->strings['On large systems the text search can slow down the system extremely.'] = 'Nagy rendszereknél a szöveges keresés rendkívüli módon lelassíthatja a rendszert.'; +$a->strings['Generate counts per contact circle when calculating network count'] = 'Partnerkörönkénti számlálások előállítása a hálózatszám kiszámításakor'; +$a->strings['On systems with users that heavily use contact circles the query can be very expensive.'] = 'Olyan rendszereken, ahol a felhasználók nagymértékben használják a partnerköröket, a lekérdezés nagyon költséges lehet.'; +$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['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'; +$a->strings['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.'] = '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.'; +$a->strings['Disabled'] = 'Letiltva'; +$a->strings['all'] = 'összes'; +$a->strings['tags'] = 'címkék'; +$a->strings['Server tags'] = 'Kiszolgálócímkék'; +$a->strings['Comma separated list of tags for the "tags" subscription.'] = 'Címkék vesszővel elválasztott listája a „címkék” feliratkozáshoz.'; +$a->strings['Deny Server tags'] = 'Kiszolgálócímkék megtagadása'; +$a->strings['Comma separated list of tags that are rejected.'] = 'Címkék vesszővel elválasztott listája, amelyek vissza lesznek utasítva.'; +$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['Storage backend, %s is invalid.'] = 'Tároló háttérprogram, a(z) %s érvénytelen.'; +$a->strings['Storage backend %s error: %s'] = 'Tároló háttérprogram (%s) hiba: %s'; +$a->strings['Invalid storage backend setting value.'] = 'Érvénytelen tároló-háttérprogram beállítási érték.'; +$a->strings['Current Storage Backend'] = 'Jelenlegi tároló háttérprogram'; +$a->strings['Storage Configuration'] = 'Tároló beállításai'; +$a->strings['Storage'] = 'Tároló'; +$a->strings['Save & Use storage backend'] = 'Mentés és a tároló háttérprogram használata'; +$a->strings['Use storage backend'] = 'Tároló háttérprogram használata'; +$a->strings['Save & Reload'] = 'Mentés és újratöltés'; +$a->strings['This backend doesn\'t have custom settings'] = 'Ennek a háttérprogramnak nincsenek egyéni beállításai'; +$a->strings['Changing the current backend is prohibited because it is set by an environment variable'] = 'A jelenlegi háttérprogram megváltoztatása tiltva van, mivel azt egy környezeti változó állítja be'; +$a->strings['Database (legacy)'] = 'Adatbázis (örökölt)'; +$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 system.url entry is missing. This is a low level setting and can lead to unexpected behavior. Please add a valid entry as soon as possible in the config file or per console command!'] = 'A system.url bejegyzés hiányzik. Ez egy alacsony szintű beállítás, és váratlan viselkedéshez vezethet. Adjon meg egy érvényes bejegyzést a lehető leghamarabb a beállítófájlban vagy konzolparancsonként!'; +$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['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['Message queues'] = 'Üzenet várakozási sorai'; +$a->strings['Server Settings'] = 'Kiszolgálóbeállítások'; +$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'; +$a->strings['Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR.'] = '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.'; +$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['The rules'] = 'A szabályok'; +$a->strings['Enter your system rules here. Each line represents one rule.'] = 'Itt adja meg a rendszer szabályait. Minden sor egy szabályt jelent.'; +$a->strings['API endpoint %s %s is not implemented but might be in the future.'] = 'A(z) %s %s API-végpont nincs megvalósítva, de a jövőben megvalósításra kerülhet.'; +$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['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['No installed applications.'] = 'Nincsenek telepített alkalmazások.'; +$a->strings['Applications'] = 'Alkalmazások'; +$a->strings['Item was not found.'] = 'Az elem nem található.'; +$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['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['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['Too Many Requests'] = 'Túl sok kérés'; +$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.'] = [ + 0 => 'A havi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva.', + 1 => 'A havi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva.', +]; +$a->strings['You don\'t have access to moderation pages.'] = 'Nincs hozzáférése a moderálási oldalakhoz.'; +$a->strings['Submanaged account can\'t access the moderation pages. Please log back in as the main account.'] = 'Az alkezelt fiókok nem férhetnek hozzá a moderálási oldalakhoz. Jelentkezzen vissza a fő fiókkal.'; +$a->strings['Reports'] = 'Jelentések'; +$a->strings['Users'] = 'Felhasználók'; +$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['Item Source'] = 'Elem forrása'; +$a->strings['Profile Details'] = 'Profil részletei'; +$a->strings['Conversations started'] = 'Beszélgetések elkezdve'; +$a->strings['Only You Can See This'] = 'Csak Ön láthatja ezt'; +$a->strings['Scheduled Posts'] = 'Ütemezett bejegyzések'; +$a->strings['Posts that are scheduled for publishing'] = 'Bejegyzések, amelyek közzétételre vannak üzemezve'; +$a->strings['Tips for New Members'] = 'Tippek új tagoknak'; +$a->strings['People Search - %s'] = 'Emberek keresése – %s'; +$a->strings['Group Search - %s'] = 'Csoportkeresés – %s'; +$a->strings['No matches'] = 'Nincs találat'; +$a->strings['%d result was filtered out because your node blocks the domain it is registered on. You can review the list of domains your node is currently blocking in the About page.'] = [ + 0 => '%d találat ki lett szűrve, mert az Ön csomópontja tiltja azt a tartományt, amelyen az regisztrálva van. A Névjegy oldalon felülvizsgálhatja azon tartományok listáját, amelyet a csomópontja jelenleg letilt.', + 1 => '%d találat ki lett szűrve, mert az Ön csomópontja tiltja azt a tartományt, amelyen azok regisztrálva vannak. A Névjegy oldalon felülvizsgálhatja azon tartományok listáját, amelyet a csomópontja jelenleg letilt.', +]; +$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['Social Networks'] = 'Közösségi hálózatok'; +$a->strings['Manage Accounts'] = 'Fiókok kezelése'; +$a->strings['Connected apps'] = 'Kapcsolt alkalmazások'; +$a->strings['Remote servers'] = 'Távoli kiszolgálók'; +$a->strings['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['Invalid Request'] = 'Érvénytelen kérés'; +$a->strings['Event id is missing.'] = 'Az eseményazonosító hiányzik.'; +$a->strings['Failed to remove event'] = 'Nem sikerült eltávolítani az eseményt'; +$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['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['Title (BBCode not allowed)'] = 'Cím (BBCode nem engedélyezett)'; +$a->strings['Description (BBCode allowed)'] = 'Leírás (BBCode engedélyezett)'; +$a->strings['Location (BBCode not allowed)'] = 'Hely (BBCode nem engedélyezett)'; +$a->strings['Share this event'] = 'Az esemény megosztása'; +$a->strings['Basic'] = 'Alap'; +$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['Events'] = 'Események'; +$a->strings['View'] = 'Nézet'; +$a->strings['Create New Event'] = 'Új esemény létrehozása'; +$a->strings['list'] = 'lista'; +$a->strings['Could not create circle.'] = 'Nem sikerült létrehozni a kört.'; +$a->strings['Circle not found.'] = 'A kör nem található.'; +$a->strings['Circle name was not changed.'] = 'A kör neve nem változott meg.'; +$a->strings['Unknown circle.'] = 'Ismeretlen kör.'; +$a->strings['Contact not found.'] = 'A partner nem található.'; +$a->strings['Invalid contact.'] = 'Érvénytelen partner.'; +$a->strings['Contact is deleted.'] = 'A partner törölve.'; +$a->strings['Unable to add the contact to the circle.'] = 'Nem lehet hozzáadni a partnert a körhöz.'; +$a->strings['Contact successfully added to circle.'] = 'A partner sikeresen hozzáadva a körhöz.'; +$a->strings['Unable to remove the contact from the circle.'] = 'Nem lehet eltávolítani a partnert a körből.'; +$a->strings['Contact successfully removed from circle.'] = 'A partner sikeresen eltávolítva a körből.'; +$a->strings['Bad request.'] = 'Hibás kérés.'; +$a->strings['Save Circle'] = 'Kör mentése'; +$a->strings['Filter'] = 'Szűrő'; +$a->strings['Create a circle of contacts/friends.'] = 'Partnerek vagy ismerősök körének létrehozása.'; +$a->strings['Unable to remove circle.'] = 'Nem lehet eltávolítani a kört.'; +$a->strings['Delete Circle'] = 'Kör törlése'; +$a->strings['Edit Circle Name'] = 'Kör nevének szerkesztése'; +$a->strings['Members'] = 'Tagok'; +$a->strings['Circle is empty'] = 'A kör üres'; +$a->strings['Remove contact from circle'] = 'Partner eltávolítása a körbő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 circle'] = 'Partner hozzáadása a körhöz'; +$a->strings['%d contact edited.'] = [ + 0 => '%d partner szerkesztve.', + 1 => '%d partner szerkesztve.', +]; +$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['Collapsed'] = 'Összecsukva'; +$a->strings['Only show collapsed contacts'] = 'Csak az összecsukott 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 circles'] = 'Partnerkörök szervezése'; +$a->strings['Search your contacts'] = 'Partnerek keresése'; +$a->strings['Results for: %s'] = 'Találatok erre: %s'; +$a->strings['Update'] = 'Frissítés'; +$a->strings['Unblock'] = 'Tiltás feloldása'; +$a->strings['Unignore'] = 'Mellőzés feloldása'; +$a->strings['Uncollapse'] = 'Összecsuká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['Individual Posts and Replies'] = 'Egyéni bejegyzések és válaszok'; +$a->strings['Posts containing media objects'] = 'Médiaobjektumokat tartalmazó bejegyzések'; +$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['Visit %s\'s profile [%s]'] = '%s profiljának megtekintése [%s]'; +$a->strings['Contact update failed.'] = 'A partner frissítése sikertelen.'; +$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['Account URL'] = 'Fiók 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['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['Access denied.'] = 'Hozzáférés megtagadva.'; +$a->strings['Submit Request'] = 'Kérés elküldése'; +$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['Please answer the following:'] = 'Válaszoljon a következőre:'; +$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['%s knows you'] = '%s ismeri Önt'; +$a->strings['Add a personal note:'] = 'Személyes jegyzet hozzáadása:'; +$a->strings['Posts and Replies'] = 'Bejegyzések és válaszok'; +$a->strings['The contact could not be added.'] = 'A partnert nem sikerült hozzáadni.'; +$a->strings['Invalid request.'] = 'Érvénytelen kérés.'; +$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['Failed to update contact record.'] = 'Nem sikerült frissíteni a partner rekordját.'; +$a->strings['Contact has been unblocked'] = 'A partner tiltása fel lett oldva'; +$a->strings['Contact has been blocked'] = 'A partner tiltva lett'; +$a->strings['Contact has been unignored'] = 'A partner mellőzése fel lett oldva'; +$a->strings['Contact has been ignored'] = 'A partner mellőzve lett'; +$a->strings['Contact has been uncollapsed'] = 'A partner összecsukása meg lett szüntetve'; +$a->strings['Contact has been collapsed'] = 'A partner össze lett csukva'; +$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['This contact is on a server you ignored.'] = 'Ez a partner olyan kiszolgálón van, amelyet mellőzött.'; +$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 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['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['Awaiting connection acknowledge'] = 'Várakozás a kapcsolat nyugtázására'; +$a->strings['Currently blocked'] = 'Jelenleg tiltva'; +$a->strings['Currently ignored'] = 'Jelenleg mellőzve'; +$a->strings['Currently collapsed'] = 'Jelenleg összecsukva'; +$a->strings['Currently archived'] = 'Jelenleg archiválva'; +$a->strings['Manage remote servers'] = 'Távoli kiszolgálók kezelése'; +$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['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['Channel Settings'] = 'Csatorna beállításai'; +$a->strings['Frequency of this contact in relevant channels'] = 'A partner gyakorisága a kapcsolódó csatornákban'; +$a->strings['Depending on the type of the channel not all posts from this contact are displayed. By default, posts need to have a minimum amount of interactions (comments, likes) to show in your channels. On the other hand there can be contacts who flood the channel, so you might want to see only some of their posts. Or you don\'t want to see their content at all, but you don\'t want to block or hide the contact completely.'] = 'A csatorna típusától függően nem minden bejegyzés jelenik meg ettől a partnertől. Alapértelmezetten a bejegyzéseknek minimális számú interakcióval (hozzászólások, kedvelések) kell rendelkezniük ahhoz, hogy megjelenjenek a csatornákon. Másrészt lehetnek olyan partnerek is, akik elárasztják a csatornát, így előfordulhat, hogy csak néhány bejegyzésüket szeretné látni. Vagy egyáltalán nem szeretné látni a tartalmaikat, de nem szeretné teljesen letiltani vagy elrejteni a partnert.'; +$a->strings['Default frequency'] = 'Alapértelmezett gyakoriság'; +$a->strings['Posts by this contact are displayed in the "for you" channel if you interact often with this contact or if a post reached some level of interaction.'] = 'Ennek a partnernek a bejegyzései akkor jelennek meg az „Önnek” csatornán, ha gyakran lép kapcsolatba ezzel a partnerrel, vagy ha egy bejegyzés elért egy bizonyos interakciós szintet.'; +$a->strings['Display all posts of this contact'] = 'A partner összes bejegyzésének megjelenítése'; +$a->strings['All posts from this contact will appear on the "for you" channel'] = 'Ennek a partnernek az összes bejegyzése megjelenik az „Önnek” csatornán.'; +$a->strings['Display only few posts'] = 'Csak néhány bejegyzés megjelenítése'; +$a->strings['When a contact creates a lot of posts in a short period, this setting reduces the number of displayed posts in every channel.'] = 'Ha egy partner rövid időn belül sok bejegyzést hoz létre, akkor ez a beállítás csökkenti a megjelenített bejegyzések számát minden csatornán.'; +$a->strings['Never display posts'] = 'Soha se jelenítsen meg bejegyzéseket'; +$a->strings['Posts from this contact will never be displayed in any channel'] = 'Ennek a partnernek a bejegyzései soha sem jelennek meg semmilyen csatorná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 Collapsed status'] = 'Összecsukott állapot átváltása'; +$a->strings['Revoke Follow'] = 'Követés visszavonása'; +$a->strings['Revoke the follow from this contact'] = 'A követés visszavonása ettől a partnertől'; +$a->strings['Bad Request.'] = 'Hibás kérés.'; +$a->strings['Unknown contact.'] = 'Ismeretlen partner.'; +$a->strings['Contact is being deleted.'] = 'A partner törlésre került.'; +$a->strings['Follow was successfully revoked.'] = 'A követés sikeresen vissza lett vonva.'; +$a->strings['Do you really want to revoke this contact\'s follow? This cannot be undone and they will have to manually follow you back again.'] = 'Valóban vissza szeretné vonni ennek a partnernek a követését? Ezt a műveletet nem lehet visszavonni, és a partnernek kézzel kell majd újra követnie Önt.'; +$a->strings['Yes'] = 'Igen'; +$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['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['Contact was successfully unfollowed'] = 'A partner követése sikeresen meg lett szüntetve'; +$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Nem lehet megszüntetni ennek a partnernek a követését, vegye fel a kapcsolatot az adminisztrátorral'; +$a->strings['No results.'] = 'Nincs találat.'; +$a->strings['Channel not available.'] = 'A csatorna nem érhető el.'; +$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 circle'] = 'Nincs ilyen kör'; +$a->strings['Circle: %s'] = 'Kör: %s'; +$a->strings['Network feed not available.'] = 'A hálózati hírforrás nem érhető el.'; +$a->strings['Own Contacts'] = 'Saját partnerek'; +$a->strings['Include'] = 'Tartalmazás'; +$a->strings['Hide'] = 'Elrejtés'; +$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['Error'] = [ + 0 => 'Hiba', + 1 => 'Hibák', +]; +$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['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 deleted'] = 'Az elem nem lett törölve'; +$a->strings['Item was not removed'] = 'Az elem nem lett eltávolítva'; +$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['Reason for the block'] = 'A tiltás oka'; +$a->strings['Download this list in CSV format'] = 'A lista letöltése CSV formátumban'; +$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['No profile'] = 'Nincs profil'; +$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['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['Base settings'] = 'Alapvető beállítások'; +$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['The Friendica system URL'] = 'A Friendica rendszer URL-je'; +$a->strings['Overwrite this field in case the system URL determination isn\'t right, otherwise leave it as is.'] = 'Abban az esetben írja felül ezt a mezőt, ha a rendszer URL-meghatározása nem megfelelő, egyébként hagyja változatlanul.'; +$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['You can make this page always open when you use the New Post button in the Theme Customization settings.'] = 'Mindig megnyitottá teheti ezt az oldalt, ha a téma személyre szabási beállításaiban lévő új bejegyzés gombot használja.'; +$a->strings['The feed for this item is unavailable.'] = 'Ennek az elemnek a hírforrása nem érhető el.'; +$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['You need to be logged in to access this page.'] = 'Bejelentkezve kell lennie az oldalhoz való hozzáféréshez.'; +$a->strings['Files'] = 'Fájlok'; +$a->strings['Upload'] = 'Feltölté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['Unable to process image.'] = 'Nem lehet feldolgozni a képet.'; +$a->strings['Image upload failed.'] = 'A kép feltöltése sikertelen.'; $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['Normal Account Page'] = 'Normál fiókoldal'; $a->strings['Soapbox Page'] = 'Szappantartó oldal'; -$a->strings['Public Forum'] = 'Nyilvános fórum'; +$a->strings['Public Group'] = 'Nyilvános csoport'; $a->strings['Automatic Friend Page'] = 'Automatikus ismerős oldal'; -$a->strings['Private Forum'] = 'Személyes fórum'; +$a->strings['Private Group'] = 'Személyes csoport'; $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['Community Group'] = 'Közösségi csoport'; $a->strings['Relay'] = 'Továbbítás'; $a->strings['You can\'t block a local contact, please block the user instead'] = 'Nem tilthat egy helyi partnert, inkább a felhasználót tiltsa'; $a->strings['%s contact unblocked'] = [ @@ -1214,7 +1958,6 @@ $a->strings['This page allows you to prevent any message from a remote contact 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'; @@ -1287,7 +2030,6 @@ $a->strings['Imports patterns from the file that weren\'t already existing in th $a->strings['Replace'] = 'Csere'; $a->strings['Replaces the current blocklist by the imported patterns.'] = 'Lecseréli a jelenlegi tiltólistát az importált mintákkal.'; $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'; @@ -1299,66 +2041,12 @@ $a->strings['Save changes to the blocklist'] = 'Változtatások mentése a tilt $a->strings['Current Entries in the Blocklist'] = 'Jelenlegi bejegyzések a tiltólistán'; $a->strings['Delete entry from the blocklist'] = 'Bejegyzés törlése a tiltólistáról'; $a->strings['Delete entry from the 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'; -$a->strings['Executing %s failed with error: %s'] = 'A(z) %s végrehajtása meghiúsult ezzel a hibával: %s'; -$a->strings['Update %s was successfully applied.'] = 'A(z) %s frissítés sikeresen alkalmazva.'; -$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'A(z) %s frissítés nem adott vissza állapotot. Nem tudni, hogy sikerült-e.'; -$a->strings['There was no additional update function %s that needed to be called.'] = 'Nem volt további frissítési funkció, %s amelyet meg kellett hívni.'; -$a->strings['No failed updates.'] = 'Nincsenek sikertelen frissítések.'; -$a->strings['Check database structure'] = 'Adatbázis-szerkezet ellenőrzése'; -$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['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['%2$s total system'] = [ - 0 => '%2$s rendszer összesen', - 1 => '%2$s rendszer összesen', -]; -$a->strings['%2$s active user last month'] = [ - 0 => '%2$s aktív felhasználó az elmúlt hónapban', - 1 => '%2$s aktív felhasználó az elmúlt hónapban', -]; -$a->strings['%2$s active user last six months'] = [ - 0 => '%2$s aktív felhasználó az elmúlt hat hónapban', - 1 => '%2$s aktív felhasználó az elmúlt hat hónapban', -]; -$a->strings['%2$s registered user'] = [ - 0 => '%2$s regisztrált felhasználó', - 1 => '%2$s regisztrált felhasználó', -]; -$a->strings['%2$s locally created post or comment'] = [ - 0 => '%2$s helyileg létrehozott bejegyzés vagy hozzászólás', - 1 => '%2$s helyileg létrehozott bejegyzés és hozzászólás', -]; -$a->strings['%2$s post per user'] = [ - 0 => '%2$s bejegyzés felhasználónként', - 1 => '%2$s bejegyzés felhasználónként', -]; -$a->strings['%2$s user per system'] = [ - 0 => '%2$s felhasználó rendszerenként', - 1 => '%2$s felhasználó rendszerenként', -]; -$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 %2$s node (%3$s active users last month, %4$s active users last six months, %5$s registered users in total) from the following platforms:'] = [ - 0 => 'Jelenleg erről a csomópontról %2$s csomópontnak van tudomása (%3$s aktív felhasználóval az elmúlt hónapban, %4$s aktív felhasználóval az elmúlt hat hónapban, összesen %5$s regisztrált felhasználóval) a következő platformokról:', - 1 => 'Jelenleg erről a csomópontról %2$s csomópontnak van tudomása (%3$s aktív felhasználóval az elmúlt hónapban, %4$s aktív felhasználóval az elmúlt hat hónapban, összesen %5$s 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'; $a->strings['Terms'] = 'Kifejezések'; @@ -1366,299 +2054,69 @@ $a->strings['Tag'] = 'Címke'; $a->strings['Type'] = 'Típus'; $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['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.
    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.
    Ellenőrizze, hogy a(z) „%1$s” fájl létezik-e és olvasható-e.'; -$a->strings['Couldn\'t open %1$s log file.
    Check to see if file %1$s is readable.'] = 'Nem sikerült megnyitni a(z) %1$s naplófájlt.
    Ellenőrizze, hogy a(z) „%1$s” fájl olvasható-e.'; -$a->strings['View Logs'] = 'Naplók megtekintése'; -$a->strings['Search in logs'] = 'Keresés a naplókban'; -$a->strings['Show all'] = 'Összes megjelenítése'; -$a->strings['Date'] = 'Dátum'; -$a->strings['Level'] = 'Szint'; -$a->strings['Context'] = 'Környezet'; -$a->strings['ALL'] = 'Összes'; -$a->strings['View details'] = 'Részletek megtekintése'; -$a->strings['Click to view details'] = 'Kattintson a részletek megtekintéséhez'; -$a->strings['Data'] = 'Adatok'; -$a->strings['Source'] = 'Forrás'; -$a->strings['File'] = 'Fájl'; -$a->strings['Line'] = 'Sor'; -$a->strings['Function'] = 'Függvény'; -$a->strings['UID'] = 'UID'; -$a->strings['Process ID'] = 'Folyamatazonosító'; -$a->strings['Close'] = 'Bezárás'; -$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['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'; -$a->strings['Public postings from the federated network'] = 'Nyilvános beküldések a föderált hálózatból'; -$a->strings['Public postings from local users and the federated network'] = 'Nyilvános beküldések a helyi felhasználóktól és a föderált hálózatból'; -$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'; -$a->strings['none'] = 'nincs'; -$a->strings['Local contacts'] = 'Helyi partnerek'; -$a->strings['Interactors'] = 'Interaktorok'; -$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 Node'] = 'Csomópont áthelyezése'; -$a->strings['Relocating your node enables you to change the DNS domain of this node and keep all the existing users and posts. This process takes a while and can only be started from the relocate console command like this:'] = 'A csomópont áthelyezése lehetővé teszi a csomópont DNS-tartományának megváltoztatását, valamint az összes meglévő felhasználó és bejegyzés megtartását. Ez a folyamat eltart egy ideig, és csak az áthelyezés konzolparanccsal indítható el az alábbi módon:'; -$a->strings['(Friendica directory)# bin/console relocate https://newdomain.com'] = '(Friendica könyvtár)# bin/console relocate https://uj-tartomany.hu'; -$a->strings['Site name'] = 'Oldal neve'; -$a->strings['Sender Email'] = 'Küldő e-mail-címe'; -$a->strings['The email address your server shall use to send notification emails from.'] = 'Az az e-mail-cím, amelyet a kiszolgáló használhat az értesítési e-mailek kiküldéséhez.'; -$a->strings['Name of the system actor'] = 'A rendszer szereplőjének neve'; -$a->strings['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.'] = '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.'; -$a->strings['Banner/Logo'] = 'Reklámcsík vagy logó'; -$a->strings['Email Banner/Logo'] = 'E-mail reklámcsík vagy logó'; -$a->strings['Shortcut icon'] = 'Böngészőikon'; -$a->strings['Link to an icon that will be used for browsers.'] = 'Hivatkozás egy ikonra, amely a böngészőknél lesz használva.'; -$a->strings['Touch icon'] = 'Érintő ikon'; -$a->strings['Link to an icon that will be used for tablets and mobiles.'] = 'Hivatkozás egy ikonra, amely táblagépeknél és mobiltelefonoknál lesz használva.'; -$a->strings['Additional Info'] = 'További információk'; -$a->strings['For public servers: you can add additional information here that will be listed at %s/servers.'] = 'Nyilvános kiszolgálóknál: itt adhat meg további információkat, amelyek a %s/servers oldalon lesznek felsorolva.'; -$a->strings['System language'] = 'Rendszer nyelve'; -$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['Show help entry from navigation menu'] = 'Súgó bejegyzés megjelenítése a navigációs menüből'; -$a->strings['Displays the menu entry for the Help pages from the navigation menu. It is always accessible by calling /help directly.'] = 'Megjeleníti a súgóoldalak menübejegyzését a navigációs menüből. Ez mindig elérhető a „/help” közvetlen meghívásával.'; -$a->strings['Single user instance'] = 'Egyfelhasználós példány'; -$a->strings['Make this instance multi-user or single-user for the named user'] = 'Többfelhasználóssá vagy a megnevezett felhasználó számára egyfelhasználóssá teszi ezt a rendszert.'; -$a->strings['Maximum image size'] = 'Legnagyobb képméret'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'A feltöltött képek legnagyobb mérete bájtban. Alapértelmezetten 0, ami azt jelenti, hogy nincs korlát.'; -$a->strings['Maximum image length'] = 'Legnagyobb képhossz'; -$a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'A feltöltött képek leghosszabb oldalának legnagyobb hossza képpontban. Alapértelmezetten -1, ami azt jelenti, hogy nincs korlát.'; -$a->strings['JPEG image quality'] = 'JPEG-képek minősége'; -$a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = '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.'; -$a->strings['Register policy'] = 'Regisztrációs irányelv'; -$a->strings['Maximum Daily Registrations'] = 'Legtöbb napi regisztráció'; -$a->strings['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.'] = '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.'; -$a->strings['Register text'] = 'Regisztrációs szöveg'; -$a->strings['Will be displayed prominently on the registration page. You can use BBCode here.'] = 'Szembetűnően lesz megjelenítve a regisztrációs oldalon. BBCode formázást is használhat itt.'; -$a->strings['Forbidden Nicknames'] = 'Tiltott becenevek'; -$a->strings['Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142.'] = '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.'; -$a->strings['Accounts abandoned after x days'] = 'Fiókok elhagyottak X nap után'; -$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = '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.'; -$a->strings['Allowed friend domains'] = 'Engedélyezett ismerőstartományok'; -$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = '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.'; -$a->strings['Allowed email domains'] = 'Engedélyezett e-mail-tartományok'; -$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = '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.'; -$a->strings['No OEmbed rich content'] = 'Nincs OEmbed gazdag tartalom'; -$a->strings['Don\'t show the rich content (e.g. embedded PDF), except from the domains listed below.'] = 'Ne jelenítse meg a gazdag tartalmat (például beágyazott PDF), kivéve az alább felsorolt tartományokról.'; -$a->strings['Trusted third-party domains'] = 'Megbízható harmadik fél tartományok'; -$a->strings['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.'] = '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.'; -$a->strings['Block public'] = 'Nyilvános tiltása'; -$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = '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.'; -$a->strings['Force publish'] = 'Közzététel kényszerítése'; -$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Jelölje be, hogy ezen az oldalon az összes profil kényszerítetten fel legyen sorolva az oldal könyvtárában.'; -$a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Ennek engedélyezése megsértheti az adatvédelmi rendeleteket, mint például a GDPR-t.'; -$a->strings['Global directory URL'] = 'Globális könyvtár URL'; -$a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = '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.'; -$a->strings['Private posts by default for new users'] = 'Alapértelmezetten személyes bejegyzések az új felhasználóknál'; -$a->strings['Set default post permissions for all new members to the default privacy group rather than public.'] = 'Az összes új tag alapértelmezett bejegyzés-jogosultságainak beállítása az alapértelmezett adatvédelmi csoportra a nyilvános helyett.'; -$a->strings['Don\'t include post content in email notifications'] = 'Ne ágyazza be a bejegyzés tartalmát az e-mailes értesítésekbe'; -$a->strings['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.'] = '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.'; -$a->strings['Disallow public access to addons listed in the apps menu.'] = 'Nyilvános hozzáférés letiltása az alkalmazások menüben felsorolt bővítményekhez'; -$a->strings['Checking this box will restrict addons listed in the apps menu to members only.'] = '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.'; -$a->strings['Don\'t embed private images in posts'] = 'Ne ágyazzon be személyes képeket a bejegyzésekbe'; -$a->strings['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.'] = '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.'; -$a->strings['Explicit Content'] = 'Felnőtteknek szánt tartalom'; -$a->strings['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.'] = 'Á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.'; -$a->strings['Proxify external content'] = 'Külső tartalom proxyzása'; -$a->strings['Route external content via the proxy functionality. This is used for example for some OEmbed accesses and in some other rare cases.'] = 'Külső tartalom átirányítása a proxy funkción keresztül. Ezt például néhány OEmbed-hozzáférésnél és egyéb ritka esetekben használják.'; -$a->strings['Cache contact avatars'] = 'Partnerprofilképek gyorsítótárazása'; -$a->strings['Locally store the avatar pictures of the contacts. This uses a lot of storage space but it increases the performance.'] = 'A partnerek profilképeinek helyi tárolása. Ez nagyon sok tárhelyet használ, de növeli a teljesítményt.'; -$a->strings['Allow Users to set remote_self'] = 'Távoli önmaguk beállításának engedélyezése a felhasználóknak'; -$a->strings['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.'] = '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.'; -$a->strings['Enable multiple registrations'] = 'Többszörös regisztrációk engedélyezése'; -$a->strings['Enable users to register additional accounts for use as pages.'] = 'Lehetővé teszi a felhasználóknak, hogy további fiókokat regisztráljanak oldalakként történő használathoz.'; -$a->strings['Enable OpenID'] = 'OpenID engedélyezése'; -$a->strings['Enable OpenID support for registration and logins.'] = 'Az OpenID támogatás engedélyezése a regisztrációnál és a bejelentkezéseknél.'; -$a->strings['Enable Fullname check'] = 'Teljes név ellenőrzésének engedélyezése'; -$a->strings['Enable check to only allow users to register with a space between the first name and the last name in their full name.'] = 'Lehetővé teszi annak ellenőrzését, hogy a felhasználóknak csak a teljes nevükben lévő vezetéknév és a keresztnév közti szóközzel legyen lehetőségük regisztrálniuk.'; -$a->strings['Community pages for visitors'] = 'Közösségi oldalak a látogatók számára'; -$a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = '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.'; -$a->strings['Posts per user on community page'] = 'Felhasználónkénti bejegyzések a közösségi oldalon'; -$a->strings['The maximum number of posts per user on the community page. (Not valid for "Global Community")'] = '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”).'; -$a->strings['Enable Mail support'] = 'Levelezési támogatás engedélyezése'; -$a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'A beépített levelezési támogatás engedélyezése az IMAP-mappák lekérdezéséhez és az e-mailben történő válaszhoz.'; -$a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'A levelezési támogatást nem lehet engedélyezni, mert a PHP IMAP-modulja nincs telepítve.'; -$a->strings['Enable OStatus support'] = 'OStatus támogatás engedélyezése'; -$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'A beépített OStatus (StatusNet, GNU Social stb.) kompatibilitás engedélyezése. Az OStatus hálózaton lévő összes kommunikáció nyilvános.'; -$a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'A Diaspora támogatást nem lehet engedélyezni, mert a Friendica egy alkönyvtárba lett telepítve.'; -$a->strings['Enable Diaspora support'] = 'Diaspora támogatás engedélyezése'; -$a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'A beépített Diaspora hálózati kompatibilitás engedélyezése a Diaspora kiszolgálókkal való kommunikációhoz.'; -$a->strings['Verify SSL'] = 'SSL ellenőrzése'; -$a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = '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.'; -$a->strings['Proxy user'] = 'Proxy felhasználó'; -$a->strings['User name for the proxy server.'] = 'Felhasználónév a proxy-kiszolgálóhoz.'; -$a->strings['Proxy URL'] = 'Proxy URL'; -$a->strings['If you want to use a proxy server that Friendica should use to connect to the network, put the URL of the proxy here.'] = 'Ha olyan proxy-kiszolgálót szeretne használni, amelyet a Friendicának a hálózathoz való kapcsolódáshoz használnia kell, akkor itt adja meg a proxy URL-ét.'; -$a->strings['Network timeout'] = 'Hálózati időkorlát'; -$a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Az érték másodpercben van. Állítsa 0-ra a korlátlan időhöz (nem ajánlott).'; -$a->strings['Maximum Load Average'] = 'Legnagyobb terhelésátlag'; -$a->strings['Maximum system load before delivery and poll processes are deferred - default %d.'] = 'A legnagyobb rendszerterhelés, mielőtt a kézbesítési és lekérdezési folyamatok elhalasztásra kerülnek. Alapértelmezetten %d.'; -$a->strings['Minimal Memory'] = 'Legkevesebb memória'; -$a->strings['Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).'] = '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).'; -$a->strings['Periodically optimize tables'] = 'Táblák időszakos optimalizálása'; -$a->strings['Periodically optimize tables like the cache and the workerqueue'] = '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.'; -$a->strings['Discover followers/followings from contacts'] = 'Követők vagy követések felfedezése a partnerekből'; -$a->strings['If enabled, contacts are checked for their followers and following contacts.'] = 'Ha engedélyezve van, akkor a partnerek ellenőrizve lesznek a követő és követett partnereik számára.'; -$a->strings['None - deactivated'] = 'Nincs: ki van kapcsolva.'; -$a->strings['Local contacts - contacts of our local contacts are discovered for their followers/followings.'] = 'Helyi partnerek: a helyi partnereink partnerei lesznek felfedezve a követőik vagy követésiek számára.'; -$a->strings['Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings.'] = '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.'; -$a->strings['Synchronize the contacts with the directory server'] = 'A partnerek szinkronizálása a könyvtárkiszolgálóval'; -$a->strings['if enabled, the system will check periodically for new contacts on the defined directory server.'] = 'Ha engedélyezve van, akkor a rendszer időszakosan ellenőrizni fogja az új partnereket a meghatározott könyvtárkiszolgálón.'; -$a->strings['Days between requery'] = 'Ismételt lekérdezések közti napok'; -$a->strings['Number of days after which a server is requeried for his contacts.'] = 'A napok száma, amely után egy kiszolgáló ismét lekérdezésre kerül a partnereiért.'; -$a->strings['Discover contacts from other servers'] = 'Partnerek felfedezése más kiszolgálókról'; -$a->strings['Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers.'] = '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.'; -$a->strings['Search the local directory'] = 'A helyi könyvtár keresése'; -$a->strings['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.'] = '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.'; -$a->strings['Publish server information'] = 'Kiszolgálóinformációk közzététele'; -$a->strings['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.'] = '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.'; -$a->strings['Check upstream version'] = 'Távoli verzió ellenőrzése'; -$a->strings['Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview.'] = '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.'; -$a->strings['Suppress Tags'] = 'Címkék letiltása'; -$a->strings['Suppress showing a list of hashtags at the end of the posting.'] = 'A kettős keresztes címkék listája megjelenítésének letiltása a beküldések végénél.'; -$a->strings['Clean database'] = 'Adatbázis tisztítása'; -$a->strings['Remove old remote items, orphaned database records and old content from some other helper tables.'] = '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.'; -$a->strings['Lifespan of remote items'] = 'Távoli elemek élettartama'; -$a->strings['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.'] = '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.'; -$a->strings['Lifespan of unclaimed items'] = 'Nem igényelt elemek élettartama'; -$a->strings['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.'] = '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.'; -$a->strings['Lifespan of raw conversation data'] = 'Nyers beszélgetési adatok élettartama'; -$a->strings['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.'] = '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.'; -$a->strings['Maximum numbers of comments per post'] = 'Bejegyzésenkénti hozzászólások legnagyobb száma'; -$a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Mennyi hozzászólást kell megjeleníteni az egyes bejegyzéseknél? Az alapértelmezett érték 100.'; -$a->strings['Maximum numbers of comments per post on the display page'] = 'Bejegyzésenkénti hozzászólások legnagyobb száma a megjelenítési oldalon'; -$a->strings['How many comments should be shown on the single view for each post? Default value is 1000.'] = 'Mennyi hozzászólást kell megjeleníteni egy önálló nézeten az egyes bejegyzéseknél? Az alapértelmezett érték 1000.'; -$a->strings['Temp path'] = 'Ideiglenes mappa útvonala'; -$a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = '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.'; -$a->strings['Only search in tags'] = 'Keresés csak címkékben'; -$a->strings['On large systems the text search can slow down the system extremely.'] = 'Nagy rendszereknél a szöveges keresés rendkívüli módon lelassíthatja a rendszert.'; -$a->strings['Generate counts per contact group when calculating network count'] = 'Partnercsoportonkénti számlálások előállítása a hálózatszám kiszámításakor'; -$a->strings['On systems with users that heavily use contact groups the query can be very expensive.'] = 'Olyan rendszereken, ahol a felhasználók nagymértékben használják a partnercsoportokat, a lekérdezés nagyon költséges lehet.'; -$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['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'; -$a->strings['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.'] = '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.'; -$a->strings['Disabled'] = 'Letiltva'; -$a->strings['all'] = 'összes'; -$a->strings['tags'] = 'címkék'; -$a->strings['Server tags'] = 'Kiszolgálócímkék'; -$a->strings['Comma separated list of tags for the "tags" subscription.'] = 'Címkék vesszővel elválasztott listája a „címkék” feliratkozáshoz.'; -$a->strings['Deny Server tags'] = 'Kiszolgálócímkék megtagadása'; -$a->strings['Comma separated list of tags that are rejected.'] = 'Címkék vesszővel elválasztott listája, amelyek vissza lesznek utasítva.'; -$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['Storage backend, %s is invalid.'] = 'Tároló háttérprogram, a(z) %s érvénytelen.'; -$a->strings['Storage backend %s error: %s'] = 'Tároló háttérprogram (%s) hiba: %s'; -$a->strings['Invalid storage backend setting value.'] = 'Érvénytelen tároló-háttérprogram beállítási érték.'; -$a->strings['Current Storage Backend'] = 'Jelenlegi tároló háttérprogram'; -$a->strings['Storage Configuration'] = 'Tároló beállításai'; -$a->strings['Storage'] = 'Tároló'; -$a->strings['Save & Use storage backend'] = 'Mentés és a tároló háttérprogram használata'; -$a->strings['Use storage backend'] = 'Tároló háttérprogram használata'; -$a->strings['Save & Reload'] = 'Mentés és újratöltés'; -$a->strings['This backend doesn\'t have custom settings'] = 'Ennek a háttérprogramnak nincsenek egyéni beállításai'; -$a->strings['Database (legacy)'] = 'Adatbázis (örökölt)'; -$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['Item not found'] = 'Az elem nem található'; +$a->strings['No source recorded'] = 'Nincs forrás rögzítve'; +$a->strings['Please make sure the debug.store_source config key is set in config/local.config.php for future items to have sources.'] = 'Győződjön meg arról, hogy a debug.store_source beállítási kulcs be van-e állítva a config/local.config.php fájlban, hogy a jövőbeli elemek forrásokkal rendelkezzenek.'; +$a->strings['Item Guid'] = 'Elem GUID értéke'; +$a->strings['Contact not found or their server is already blocked on this node.'] = 'A partner nem található, vagy a kiszolgálója már tiltva van ezen a csomóponton.'; +$a->strings['Please login to access this page.'] = 'Jelentkezzen be az oldal eléréséhez.'; +$a->strings['Create Moderation Report'] = 'Moderálási jelentés létrehozása'; +$a->strings['Pick Contact'] = 'Partner kiválasztása'; +$a->strings['Please enter below the contact address or profile URL you would like to create a moderation report about.'] = 'Adja meg lent a partner címét vagy a profiljának URL-jét, amelyről moderálási jelentést szeretne létrehozni.'; +$a->strings['Contact address/URL'] = 'Partner címe vagy URL-je'; +$a->strings['Pick Category'] = 'Kategória kiválasztása'; +$a->strings['Please pick below the category of your report.'] = 'Válassza ki lent a jelentés kategóriáját.'; +$a->strings['Spam'] = 'Kéretlen üzenet'; +$a->strings['This contact is publishing many repeated/overly long posts/replies or advertising their product/websites in otherwise irrelevant conversations.'] = 'Ez a partner sok ismétlődő vagy túl hosszú bejegyzést vagy választ tesz közzé, illetve egyébként nem kapcsolódó beszélgetésekben reklámozza a termékét vagy weboldalait.'; +$a->strings['Illegal Content'] = 'Illegális tartalom'; +$a->strings['This contact is publishing content that is considered illegal in this node\'s hosting juridiction.'] = 'Ez a partner olyan tartalmat tesz közzé, amely a csomópont tárhelyének joghatósága szerint illegálisnak minősül.'; +$a->strings['Community Safety'] = 'Közösségi biztonság'; +$a->strings['This contact aggravated you or other people, by being provocative or insensitive, intentionally or not. This includes disclosing people\'s private information (doxxing), posting threats or offensive pictures in posts or replies.'] = 'Ez a partner provokációval vagy érzéketlenséggel, szándékosan vagy akaratlanul, de felbosszantotta Önt vagy másokat. Ebbe beletartozik az emberek személyes adatainak felfedése (doxolás), fenyegetések vagy sértő képek közzététele a bejegyzésekben vagy válaszokban.'; +$a->strings['Unwanted Content/Behavior'] = 'Nemkívánatos tartalom vagy viselkedés'; +$a->strings['This contact has repeatedly published content irrelevant to the node\'s theme or is openly criticizing the node\'s administration/moderation without directly engaging with the relevant people for example or repeatedly nitpicking on a sensitive topic.'] = 'Ez a partner ismételten a csomópont témájához nem kapcsolódó tartalmakat tesz közzé, nyíltan kritizálja a csomópont adminisztrációját és moderálását, anélkül hogy például közvetlenül kapcsolatba lépett volna az érintettekkel, vagy ismételten feszeget egy érzékeny témát.'; +$a->strings['Rules Violation'] = 'Szabályok megszegése'; +$a->strings['This contact violated one or more rules of this node. You will be able to pick which one(s) in the next step.'] = 'Ez a partner megszegte a csomópont egy vagy több szabályát. A következő lépésben kiválaszthatja, hogy melyeket.'; +$a->strings['Please elaborate below why you submitted this report. The more details you provide, the better your report can be handled.'] = 'Az alábbiakban részletezze, hogy miért küldte be ezt a jelentést. Minél több részletet ad meg, annál jobban lehet kezelni a jelentését.'; +$a->strings['Additional Information'] = 'További információk'; +$a->strings['Please provide any additional information relevant to this particular report. You will be able to attach posts by this contact in the next step, but any context is welcome.'] = 'Adjon meg bármilyen további információt, amely az adott jelentéssel kapcsolatos. A következő lépésben csatolhatja az ettől a partnertől származó bejegyzéseket, de bármilyen további információt is szívesen fogadunk.'; +$a->strings['Pick Rules'] = 'Szabályok kiválasztása'; +$a->strings['Please pick below the node rules you believe this contact violated.'] = 'Válassza ki az alábbiakban azokat a csomópontszabályokat, amelyeket Ön szerint a partner megszegett.'; +$a->strings['Pick Posts'] = 'Bejegyzések kiválasztása'; +$a->strings['Please optionally pick posts to attach to your report.'] = 'Esetlegesen válassza ki a jelentéséhez csatolandó bejegyzéseket.'; +$a->strings['Submit Report'] = 'Jelentés elküldése'; +$a->strings['Further Action'] = 'További művelet'; +$a->strings['You can also perform one of the following action on the contact you reported:'] = 'Az alábbi műveletek egyikét is végrehajthatja a jelentett partnerrel kapcsolatban:'; +$a->strings['Nothing'] = 'Semmi'; +$a->strings['Collapse contact'] = 'Partner összecsukása'; +$a->strings['Their posts and replies will keep appearing in your Network page but their content will be collapsed by default.'] = 'A bejegyzéseik és válaszaik továbbra is megjelennek a hálózat oldalon, de a tartalmuk alapértelmezetten össze lesz csukva.'; +$a->strings['Their posts won\'t appear in your Network page anymore, but their replies can appear in forum threads. They still can follow you.'] = 'A bejegyzéseik nem jelennek meg többé a hálózat oldalon, de a válaszaik megjelenhetnek a fórum szálaiban. Továbbra is követhetik Önt.'; +$a->strings['Block contact'] = 'Partner tiltása'; +$a->strings['Their posts won\'t appear in your Network page anymore, but their replies can appear in forum threads, with their content collapsed by default. They cannot follow you but still can have access to your public posts by other means.'] = 'A bejegyzéseik nem jelennek meg többé a hálózat oldalon, de a válaszaik megjelenhetnek a fórum szálaiban alapértelmezetten összecsukott tartalommal. Nem követhetik Önt, de más módon továbbra is hozzáférhetnek az Ön nyilvános bejegyzéseihez.'; +$a->strings['Forward report'] = 'Jelentés továbbítása'; +$a->strings['Would you ike to forward this report to the remote server?'] = 'Szeretné továbbítani ezt a jelentést a távoli kiszolgálóra?'; +$a->strings['1. Pick a contact'] = '1. Partner kiválasztása'; +$a->strings['2. Pick a category'] = '2. Kategória kiválasztása'; +$a->strings['2a. Pick rules'] = '2a. Szabályok kiválasztása'; +$a->strings['2b. Add comment'] = '2b. Megjegyzés hozzáadása'; +$a->strings['3. Pick posts'] = '3. Bejegyzések kiválasztása'; +$a->strings['List of reports'] = 'Jelentések listája'; +$a->strings['This page display reports created by our or remote users.'] = 'Ez az oldal a saját vagy a távoli felhasználók által létrehozott jelentéseket jeleníti meg.'; +$a->strings['No report exists at this node.'] = 'Nem létezik jelentés ezen a csomóponton.'; +$a->strings['Category'] = 'Kategória'; +$a->strings['%s total report'] = [ + 0 => '%s jelentés összesen', + 1 => '%s jelentés összesen', +]; +$a->strings['URL of the reported contact.'] = 'A jelentett partner URL-je.'; $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['Public Group Account'] = 'Nyilvános csoport 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['Private Group Account'] = 'Személyes csoport fiók'; $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'; -$a->strings['Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR.'] = '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.'; -$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['%s user blocked'] = [ 0 => '%s felhasználó tiltva', 1 => '%s felhasználó tiltva', @@ -1694,7 +2152,6 @@ $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', @@ -1711,394 +2168,6 @@ $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['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['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['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['No installed applications.'] = 'Nincsenek telepített alkalmazások.'; -$a->strings['Applications'] = 'Alkalmazások'; -$a->strings['Item was not found.'] = 'Az elem nem található.'; -$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['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['Too Many Requests'] = 'Túl sok kérés'; -$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.'] = [ - 0 => 'A havi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva.', - 1 => 'A havi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva.', -]; -$a->strings['Profile Details'] = 'Profil részletei'; -$a->strings['Only You Can See This'] = 'Csak Ön láthatja ezt'; -$a->strings['Scheduled Posts'] = 'Ütemezett bejegyzések'; -$a->strings['Posts that are scheduled for publishing'] = 'Bejegyzések, amelyek közzétételre vannak üzemezve'; -$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['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['Update'] = 'Frissítés'; -$a->strings['Unignore'] = 'Mellőzés feloldása'; -$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['Posts containing media objects'] = 'Médiaobjektumokat tartalmazó bejegyzések'; -$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['Visit %s\'s profile [%s]'] = '%s profiljának megtekintése [%s]'; -$a->strings['Contact update failed.'] = 'A partner frissítése sikertelen.'; -$a->strings['Return to contact editor'] = 'Visszatérés a partnerszerkesztőhöz'; -$a->strings['Account Nickname'] = 'Fiók beceneve'; -$a->strings['Account URL'] = 'Fiók 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['Failed to update contact record.'] = 'Nem sikerült frissíteni a partner rekordját.'; -$a->strings['Contact has been unblocked'] = 'A partner tiltása fel lett oldva'; -$a->strings['Contact has been blocked'] = 'A partner tiltva lett'; -$a->strings['Contact has been unignored'] = 'A partner figyelmen kívül hagyása fel lett oldva'; -$a->strings['Contact has been ignored'] = 'A partner figyelmen kívül lett hagyva'; -$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['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['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['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['Revoke Follow'] = 'Követés visszavonása'; -$a->strings['Revoke the follow from this contact'] = 'A követés visszavonása ettől a partnertől'; -$a->strings['Unknown contact.'] = 'Ismeretlen partner.'; -$a->strings['Contact is deleted.'] = 'A partner törölve.'; -$a->strings['Contact is being deleted.'] = 'A partner törlésre került.'; -$a->strings['Follow was successfully revoked.'] = 'A követés sikeresen vissza lett vonva.'; -$a->strings['Do you really want to revoke this contact\'s follow? This cannot be undone and they will have to manually follow you back again.'] = 'Valóban vissza szeretné vonni ennek a partnernek a követését? Ezt a műveletet nem lehet visszavonni, és a partnernek kézzel kell majd újra követnie Önt.'; -$a->strings['Yes'] = 'Igen'; -$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['Latest Creation'] = 'Legutóbbi létrehozás'; -$a->strings['Sort by post creation date'] = 'Rendezés a bejegyzés létrehozá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['You are now logged in as %s'] = 'Most a következő néven van bejelentkezve: %s'; -$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['Download this list in CSV format'] = 'A lista letöltése CSV formátumban'; -$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['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['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['No profile'] = 'Nincs profil'; -$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['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:'; @@ -2125,7 +2194,23 @@ $a->strings['Do you want to authorize this application to access your posts and $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['Invalid data or unknown client'] = 'Érvénytelen adatok vagy ismeretlen ügyfél'; $a->strings['Unsupported or missing grant type'] = 'Nem támogatott vagy hiányzó felhatalmazástípus'; +$a->strings['Resubscribing to OStatus contacts'] = 'Újrafeliratkozás az OStatus partnerekre'; +$a->strings['Keep this window open until done.'] = 'Tartsa nyitva ezt az ablakot, amíg el nem készül.'; +$a->strings['✔ Done'] = '✔ Kész'; +$a->strings['No OStatus contacts to resubscribe to.'] = 'Nincsenek OStatus partnerek, hogy újra feliratkozzon rájuk.'; +$a->strings['Subscribing to contacts'] = 'Feliratkozás a 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['Couldn\'t fetch following contacts.'] = 'Nem sikerült lekérni a következő partnereket.'; +$a->strings['Couldn\'t fetch remote profile.'] = 'Nem sikerült lekérni a távoli profilt.'; +$a->strings['Unsupported network'] = 'Nem támogatott hálózat'; +$a->strings['Done'] = 'Kész'; +$a->strings['success'] = 'sikeres'; +$a->strings['failed'] = 'sikertelen'; +$a->strings['ignored'] = 'mellőzve'; $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['Unlisted'] = 'Listázatlan'; @@ -2137,11 +2222,32 @@ $a->strings['%d more'] = '%d további'; $a->strings['To: %s
    '] = 'Címzett: %s
    '; $a->strings['CC: %s
    '] = 'Másolat: %s
    '; $a->strings['BCC: %s
    '] = 'Rejtett másolat: %s
    '; +$a->strings['Audience: %s
    '] = 'Közönség: %s
    '; +$a->strings['Attributed To: %s
    '] = 'Neki tulajdonítható: %s
    '; $a->strings['The Photo is not available.'] = 'A fénykép nem érhető el.'; $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 external resource with url %s.'] = 'Érvénytelen külső erőforrás a(z) %s URL-lel.'; $a->strings['Invalid photo with id %s.'] = 'Érvénytelen %s azonosítóval rendelkező fénykép.'; +$a->strings['Post not found.'] = 'A bejegyzés nem található.'; +$a->strings['Edit post'] = 'Bejegyzés szerkesztése'; +$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['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['No contacts.'] = 'Nincsenek partnerek.'; +$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['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['View Album'] = 'Album megtekintése'; $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:'; @@ -2154,16 +2260,33 @@ $a->strings['%d year old'] = [ 0 => '%d éves', 1 => '%d éves', ]; -$a->strings['Forums:'] = 'Fórumok:'; +$a->strings['Description:'] = 'Leírás:'; +$a->strings['Groups:'] = 'Csoportok:'; $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['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['Restricted profile'] = 'Korlátozott profil'; +$a->strings['This profile has been restricted which prevents access to their public content from anonymous visitors.'] = 'Ez a profil korlátozva lett, ami megakadályozza, hogy a névtelen látogatók hozzáférjenek a nyilvános tartalmához.'; $a->strings['Scheduled'] = 'Ütemezett'; $a->strings['Content'] = 'Tartalom'; $a->strings['Remove post'] = 'Bejegyzés eltávolítása'; +$a->strings['Empty message body.'] = 'Üres üzenettörzs.'; +$a->strings['Unable to check your home location.'] = 'Nem lehet ellenőrizni az otthona helyét.'; +$a->strings['Recipient not found.'] = 'A címzett nem található.'; +$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['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['Your message'] = 'Az üzenete'; $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): '; @@ -2180,6 +2303,7 @@ $a->strings['Leave empty for an auto generated password.'] = 'Hagyja üresen egy $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['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ó:'; @@ -2194,15 +2318,8 @@ $a->strings['Failed to send email message. Here your accout details:
    login: $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['An internal error occured.'] = 'Belső hiba történt.'; $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['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['You must be logged in to use this module.'] = 'Bejelentkezve kell lennie a modul használatához.'; $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.'; @@ -2233,7 +2350,7 @@ $a->strings['Since version 2022.09, we\'ve realized that any password longer tha $a->strings['Update Password'] = 'Jelszó frissítése'; $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['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['Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces and accentuated letters.'] = 'Az engedélyezett karakterek az a-z, A-Z, 0-9 tartományokban lévők és a különleges karakterek, kivéve az üres karaktereket és az ékezetes betűket.'; $a->strings['Password length is limited to 72 characters.'] = 'A jelszó hossza 72 karakterre van korlátozva.'; $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.'; @@ -2267,7 +2384,7 @@ $a->strings['Importing Contacts done'] = 'A partnerek importálása kész'; $a->strings['Relocate message has been send to your contacts'] = 'Az áthelyezési üzenet el lett küldve a partnereknek'; $a->strings['Unable to find your profile. Please contact your admin.'] = 'Nem található a profilja. Vegye fel a kapcsolatot a rendszergazdával.'; $a->strings['Personal Page Subtypes'] = 'Személyes oldal altípusai'; -$a->strings['Community Forum Subtypes'] = 'Közösségi fórum altípusai'; +$a->strings['Community Group Subtypes'] = 'Közösségi csoport 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”.'; @@ -2276,7 +2393,7 @@ $a->strings['Account for a regular personal profile that requires manual approva $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['Private Group [Experimental]'] = 'Személyes csoport [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.'; @@ -2291,6 +2408,7 @@ $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['Display name:'] = 'Megjelenített 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:'; @@ -2304,8 +2422,8 @@ $a->strings['Allow your profile to be searchable globally?'] = 'Engedélyezi, ho $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['Hide your public content from anonymous viewers'] = 'Nyilvános tartalom elrejtése a névtelen megtekintők elől'; +$a->strings['Anonymous visitors will only see your basic profile details. Your public posts and replies will still be freely accessible on the remote servers of your followers and through relays.'] = 'A névtelen látogatók csak az alapvető profilrészleteit fogják látni. A nyilvános bejegyzései és válaszai továbbra is szabadon elérhetőek lesznek a követői távoli kiszolgálóin és a továbbítókon keresztül.'; $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'; @@ -2317,6 +2435,8 @@ $a->strings['Your contacts can add additional tags to your posts.'] = 'A partner $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 privacy circle for new contacts'] = 'Alapértelmezett adatvédelmi kör az új partnerekhez'; +$a->strings['Default privacy circle for new group contacts'] = 'Alapértelmezett adatvédelmi kör az új csoportpartnerekhez'; $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:'; @@ -2353,8 +2473,8 @@ $a->strings['Text-only notification emails'] = 'Csak szöveges értesítési e-m $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['Show notifications of ignored contacts'] = 'Mellőzött 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 mellőzött partnerektől érkező bejegyzéseket. Viszont továbbra is látja a hozzászólásaikat. Ez a beállítás azt vezérli, hogy továbbra is szeretne-e olyan normál értesítéseket kapni vagy sem, amelyeket mellőzött partnerek okoznak.'; $a->strings['Advanced Account/Page Type Settings'] = 'Speciális fióktípus vagy oldaltípus beállítások'; $a->strings['Change the behaviour of this account for special situations'] = 'A fiók viselkedésének megváltoztatása bizonyos helyzetekre.'; $a->strings['Import Contacts'] = 'Partnerek importálása'; @@ -2363,6 +2483,51 @@ $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['Addon Settings'] = 'Bővítménybeállítások'; +$a->strings['No Addon settings configured'] = 'Nincsenek bővítménybeállítások meghatározva'; +$a->strings['Description'] = 'Leírás'; +$a->strings['Add'] = 'Hozzáadá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['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; +$a->strings['Built-in support for %s connectivity is enabled'] = 'A(z) %s összekapcsolhatóságának beépített támogatása engedélyezve'; +$a->strings['Built-in support for %s connectivity is disabled'] = 'A(z) %s összekapcsolhatóságának beépített támogatása letiltva'; +$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['Followed content scope'] = 'Követett tartalom hatóköre'; +$a->strings['By default, conversations in which your follows participated but didn\'t start will be shown in your timeline. You can turn this behavior off, or expand it to the conversations in which your follows liked a post.'] = 'Alapértelmezetten az idővonalán megjelennek azok a beszélgetések, amelyekben a követői részt vettek, de nem ők indították el. Ezt a viselkedést kikapcsolhatja, vagy kiterjesztheti azokra a beszélgetésekre, amelyekben a követőinek tetszett egy bejegyzés.'; +$a->strings['Only conversations my follows started'] = 'Csak a követőim által indított beszélgetések'; +$a->strings['Conversations my follows started or commented on (default)'] = 'A követőim által indított vagy hozzászólt beszélgetések (alapértelmezett)'; +$a->strings['Any conversation my follows interacted with, including likes'] = 'A követőim által interakcióba került beszélgetések, beleértve a kedveléseket is'; +$a->strings['Enable Content Warning'] = 'Tartalomfigyelmeztetés engedélyezése'; +$a->strings['Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting 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 engedélyezi az automatikus összecsukást, ahelyett hogy beállítaná 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['Enable intelligent shortening'] = 'Intelligens rövidítés engedélyezése'; +$a->strings['Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.'] = 'Általában a rendszer megpróbálja megkeresni a legjobb hivatkozást a rövidített bejegyzésekhez történő hozzáadáshoz. Ha le van tiltva, akkor minden egyes rövidített bejegyzés mindig az eredeti Friendica bejegyzésre fog mutatni.'; +$a->strings['Enable simple text shortening'] = 'Egyszerű szövegrövidítés engedélyezése'; +$a->strings['Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'] = 'Általában a rendszer lerövidíti a bejegyzéseket a következő soremelésnél. Ha ez a beállítás engedélyezve van, akkor a rendszer a legnagyobb karakterkorlátnál fogja rövidíteni a szöveget.'; +$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['API: Use spoiler field as title'] = 'API: a spoiler mező használata címként'; +$a->strings['When activated, the "spoiler_text" field in the API will be used for the title on standalone posts. When deactivated it will be used for spoiler text. For comments it will always be used for spoiler text.'] = 'Ha aktiválva van, akkor az API-ban lévő „spoiler_text” mező lesz használva az önálló bejegyzések címeként. Ha ki van kapcsolva, akkor a spoiler szövegéhez lesz használva. A megjegyzéseknél mindig a spoiler szövegéhez lesz használva.'; +$a->strings['API: Automatically links at the end of the post as attached posts'] = 'API: automatikusan a bejegyzés végéhez kapcsolja csatolt bejegyzésként'; +$a->strings['When activated, added links at the end of the post react the same way as added links in the web interface.'] = 'Ha aktiválva van, akkor a bejegyzés végéhez hozzáadott hivatkozások ugyanúgy reagálnak, mint a webes felületen hozzáadott hivatkozások.'; +$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Az örökölt ActivityPub/GNU Social fiókja'; +$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Ha megadja itt a régi, egy ActivityPub alapú rendszerből származó fiókja nevét, illetve a GNU Social vagy Statusnet fiókja nevét (felhasználó@tartomány.tld formátumban), akkor a partnerei automatikusan hozzá lesznek adva. A mező ki lesz ürítve, ha elkészült.'; +$a->strings['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['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.'; @@ -2378,16 +2543,19 @@ $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['No preview'] = 'Nincs előnézet'; +$a->strings['No image'] = 'Nincs kép'; +$a->strings['Small Image'] = 'Kis kép'; +$a->strings['Large Image'] = 'Nagy kép'; $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['Timelines'] = 'Idővonalak'; $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:'; @@ -2395,8 +2563,6 @@ $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['Display emoticons'] = 'Hangulatjelek megjelenítése'; $a->strings['When enabled, emoticons are replaced with matching symbols.'] = 'Ha engedélyezve van, akkor a hangulatjelek ki lesznek cserélve a megfelelő szimbólumokkal.'; $a->strings['Infinite scroll'] = 'Végtelen görgetés'; @@ -2409,14 +2575,24 @@ $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['Link preview mode'] = 'Hivatkozás-előnézeti mód'; +$a->strings['Appearance of the link preview that is added to each post with a link.'] = 'A hivatkozás előnézetének megjelenése, amely minden egyes hivatkozással rendelkező bejegyzéshez hozzá van adva.'; +$a->strings['Channel languages:'] = 'Csatorna nyelvei:'; +$a->strings['Select all languages that you want to see in your channels.'] = 'Válassza ki az összes nyelvet, amelyet látni szeretne a csatornáiban.'; $a->strings['Beginning of week:'] = 'A hét kezdete:'; -$a->strings['Profile Name is required.'] = 'A profil neve kötelező.'; +$a->strings['Default calendar view:'] = 'Alapértelmezett naptárnézet:'; +$a->strings['Additional Features'] = 'További funkciók'; +$a->strings['Connected Apps'] = 'Kapcsolt alkalmazások'; +$a->strings['Remove authorization'] = 'Felhatalmazás eltávolítása'; +$a->strings['Display Name is required.'] = 'A megjelenített név 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['The homepage is verified. A rel="me" link back to your Friendica profile page was found on the homepage.'] = 'A honlap ellenőrizve. A Friendica profiloldalára visszamutató rel="me" hivatkozás található a honlapon.'; +$a->strings['To verify your homepage, add a rel="me" link to it, pointing to your profile URL (%s).'] = 'A honlapja ellenőrzéséhez adjon hozzá egy rel="me" hivatkozást a honlapjához, amely a profilja URL-jére mutat (%s).'; $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'; @@ -2425,7 +2601,15 @@ $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['

    Custom fields appear on your profile page.

    +

    You can use BBCodes in the field values.

    +

    Reorder by dragging the field title.

    +

    Empty the label field to remove a custom field.

    +

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

    '] = '

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

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

    +

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

    +

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

    +

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

    '; $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:'; @@ -2440,15 +2624,6 @@ $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.

    -

    You can use BBCodes in the field values.

    -

    Reorder by dragging the field title.

    -

    Empty the label field to remove a custom field.

    -

    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.

    -

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

    -

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

    -

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

    -

    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'; @@ -2465,6 +2640,21 @@ $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['[Friendica System Notify]'] = '[Friendica rendszerértesíté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['Do you want to ignore this server?'] = 'Szeretné mellőzni ezt a kiszolgálót?'; +$a->strings['Do you want to unignore this server?'] = 'Szeretné megszüntetni ennek a kiszolgálónak a mellőzését?'; +$a->strings['Remote server settings'] = 'Távoli kiszolgáló beállításai'; +$a->strings['Server URL'] = 'Kiszolgáló URL'; +$a->strings['Settings saved'] = 'Beállítások elmentve'; +$a->strings['Here you can find all the remote servers you have taken individual moderation actions against. For a list of servers your node has blocked, please check out the Information page.'] = 'Itt találhatja meg az összes olyan távoli kiszolgálót, amelyekkel szemben egyéni moderálási műveleteket hajtott végre. A csomópontja által tiltott kiszolgálók listájáért nézze meg az Információk oldalt.'; +$a->strings['Delete all your settings for the remote server'] = 'Az Ön összes beállításának törlése a távoli kiszolgálónál'; +$a->strings['Save changes'] = 'Változtatások mentése'; $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.'; @@ -2474,7 +2664,6 @@ $a->strings['App-specific password successfully revoked.'] = 'Az alkalmazásfüg $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'; @@ -2559,12 +2748,45 @@ $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['The top-level post isn\'t visible.'] = 'A felső szintű bejegyzés nem látható.'; +$a->strings['The top-level post was deleted.'] = 'A felső szintű bejegyzés törölve lett.'; +$a->strings['This node has blocked the top-level author or the author of the shared post.'] = 'Ez a csomópont letiltotta a felső szintű szerzőt vagy a megosztott bejegyzés szerzőjét.'; +$a->strings['You have ignored or blocked the top-level author or the author of the shared post.'] = 'Ön mellőzte vagy letiltotta a felső szintű szerzőt vagy a megosztott bejegyzés szerzőjét.'; +$a->strings['You have ignored the top-level author\'s server or the shared post author\'s server.'] = 'Ön mellőzte a felső szintű szerző kiszolgálóját vagy a megosztott bejegyzés szerzőjének kiszolgálóját.'; +$a->strings['Conversation Not Found'] = 'A beszélgetés nem található'; +$a->strings['Unfortunately, the requested conversation isn\'t available to you.'] = 'Sajnos a kért beszélgetés nem érhető el az Ön számára.'; +$a->strings['Possible reasons include:'] = 'A lehetséges okok a következők:'; $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['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/settings/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/settings/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['Rules'] = 'Szabályok'; +$a->strings['Parameter uri_id is missing.'] = 'Az uri_id paraméter hiányzik.'; +$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['You are now logged in as %s'] = 'Most a következő néven van bejelentkezve: %s'; +$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['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['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!'; +$a->strings['User creation error'] = 'Felhasználó-létrehozási hiba'; +$a->strings['%d contact not imported'] = [ + 0 => '%d partner nincs importálva', + 1 => '%d partner nincs importálva', +]; +$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['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.'; @@ -2588,8 +2810,8 @@ $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['Add Your Contacts To Circle'] = 'Partnerek hozzáadása a körhöz'; +$a->strings['Once you have made some friends, organize them into private conversation circles from the sidebar of your Contacts page and then you can interact with each circle privately on your Network page.'] = 'Miután szerezett néhány ismerőst, szervezze őket személyes beszélgetési körökbe a partnerek oldal oldalsávján keresztül, és ezután személyes módon léphet kapcsolatba minden egyes körrel a hálózat 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'; @@ -2671,7 +2893,7 @@ $a->strings['\'%1$s\' has chosen to accept you a fan, which restricts some forms $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['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 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: %s Site Location: %s @@ -2679,8 +2901,14 @@ Login Name: %s (%s)'] = 'Teljes név: %s Oldal címe: %s Bejelentkezési név: %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['new registration'] = 'új regisztráció'; +$a->strings['You\'ve received a new registration from \'%1$s\' at %2$s'] = 'Kapott egy új regisztrációs kérést „%1$s” partnertől itt: %2$s'; +$a->strings['You\'ve received a [url=%1$s]new registration[/url] from %2$s.'] = 'Kapott egy %2$s által elküldött [url=%1$s]új regisztrációt[/url].'; +$a->strings['Please visit %s to have a look at the new registration.'] = 'Látogassa meg a(z) %s oldal, hogy egy pillantást vessen az új regisztrációra.'; $a->strings['%s %s tagged you'] = '%s %s megjelölte Önt'; $a->strings['%s %s shared a new post'] = '%s %s megosztott egy új bejegyzést'; +$a->strings['%1$s %2$s liked your post #%3$d'] = '%1$s %2$s kedvelte az Ön #%3$d bejegyzését'; +$a->strings['%1$s %2$s liked your comment on #%3$d'] = '%1$s %2$s kedvelte az Ön hozzászólását ehhez: #%3$d'; $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.'; @@ -2694,6 +2922,9 @@ $a->strings['Edit'] = 'Szerkesztés'; $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['Ignore %s'] = '%s mellőzése'; +$a->strings['Collapse %s'] = '%s összecsukása'; +$a->strings['Report post'] = 'Bejegyzés jelentése'; $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'; @@ -2737,6 +2968,15 @@ $a->strings['%d comment'] = [ ]; $a->strings['Show more'] = 'Több megjelenítése'; $a->strings['Show fewer'] = 'Kevesebb megjelenítése'; +$a->strings['Reshared by: %s'] = 'Újra megosztotta: %s'; +$a->strings['Viewed by: %s'] = 'Megtekintette: %s'; +$a->strings['Liked by: %s'] = 'Kedvelte: %s'; +$a->strings['Disliked by: %s'] = 'Nem kedvelte: %s'; +$a->strings['Attended by: %s'] = 'Részt vett: %s'; +$a->strings['Maybe attended by: %s'] = 'Talán részt vett: %s'; +$a->strings['Not attended by: %s'] = 'Nem vett részt: %s'; +$a->strings['Reacted with %s by: %s'] = 'Reagált ezzel: %s: %s'; +$a->strings['(no subject)'] = '(nincs tárgy)'; $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.'; @@ -2767,7 +3007,6 @@ $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['Notification from Friendica'] = 'Értesítés a Friendicától'; $a->strings['Empty Post'] = 'Üres bejegyzés'; $a->strings['default'] = 'alapértelmezett'; @@ -2802,6 +3041,8 @@ $a->strings['Set the background color'] = 'Háttérszín beállítása'; $a->strings['Content background opacity'] = 'Tartalom hátterének átlátszatlansága'; $a->strings['Set the background image'] = 'A háttérkép beállítása'; $a->strings['Background image style'] = 'Háttérkép stílusa'; +$a->strings['Always open Compose page'] = 'Mindig az írás oldal megnyitása'; +$a->strings['The New Post button always open the Compose page instead of the modal form. When this is disabled, the Compose page can be accessed with a middle click on the link or from the modal.'] = 'Az új bejegyzés gomb mindig az írás oldalt nyitja meg a modális űrlap helyett. Ha ez le van tiltva, akkor az írás oldal a hivatkozásra való középső kattintással vagy a modális űrlapról érhető el.'; $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'; @@ -2823,7 +3064,7 @@ $a->strings['Center'] = 'Középre'; $a->strings['Color scheme'] = 'Színséma'; $a->strings['Posts font size'] = 'Bejegyzések betűmérete'; $a->strings['Textareas font size'] = 'Szövegdobozok betűmérete'; -$a->strings['Comma separated list of helper forums'] = 'Segítő fórumok vesszővel elválasztott listája'; +$a->strings['Comma separated list of helper groups'] = 'Segítő csoportok vesszővel elválasztott listája'; $a->strings['don\'t show'] = 'ne jelenítse meg'; $a->strings['show'] = 'megjelenítés'; $a->strings['Set style'] = 'Stílus beállítása'; diff --git a/view/lang/is/messages.po b/view/lang/is/messages.po index 57c99a6dc..7a2964bcf 100644 --- a/view/lang/is/messages.po +++ b/view/lang/is/messages.po @@ -1,10 +1,10 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: -# axelt , 2012 -# axelt , 2012 +# 33b3403388a6619423bbfe91dc9e4663_ed82b2f, 2012 +# 33b3403388a6619423bbfe91dc9e4663_ed82b2f, 2012 # sella , 2012 # jensp , 2012 # jensp , 2012 @@ -16,3044 +16,88 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-05-20 14:22+0200\n" -"PO-Revision-Date: 2018-05-24 15:57+0000\n" -"Last-Translator: Sveinn í Felli \n" -"Language-Team: Icelandic (http://www.transifex.com/Friendica/friendica/language/is/)\n" +"POT-Creation-Date: 2023-09-18 05:30+0000\n" +"PO-Revision-Date: 2011-05-05 10:19+0000\n" +"Last-Translator: Sveinn í Felli , 2014,2016,2018\n" +"Language-Team: Icelandic (http://app.transifex.com/Friendica/friendica/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" -#: include/enotify.php:31 -msgid "Friendica Notification" -msgstr "Friendica tilkynning" +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 +msgid "Unable to locate original post." +msgstr "Ekki tókst að finna upphaflega færslu." -#: include/enotify.php:34 -msgid "Thank You," -msgstr "Takk fyrir," - -#: include/enotify.php:37 -#, php-format -msgid "%s Administrator" -msgstr "Kerfisstjóri %s" - -#: include/enotify.php:39 -#, php-format -msgid "%1$s, %2$s Administrator" -msgstr "%1$s, kerfisstjóri %2$s" - -#: include/enotify.php:95 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notify] Nýr póstur móttekinn %s" - -#: include/enotify.php:97 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s sendi þér ný einkaskilaboð %2$s." - -#: include/enotify.php:98 -msgid "a private message" -msgstr "einkaskilaboð" - -#: include/enotify.php:98 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s sendi þér %2$s." - -#: include/enotify.php:100 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Farðu á %s til að skoða og/eða svara einkaskilaboðunum þínum." - -#: include/enotify.php:138 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s setti inn athugasemd um [url=%2$s]a %3$s[/url]" - -#: include/enotify.php:146 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s setti inn athugasemd um [url=%2$s]frá %3$s %4$s[/url]" - -#: include/enotify.php:156 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s setti inn athugasemd um [url=%2$s]frá þér %3$s[/url]" - -#: include/enotify.php:168 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Notify] Athugasemd við samtal #%1$d eftir %2$s" - -#: include/enotify.php:170 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s skrifaði athugasemd á færslu/samtal sem þú ert að fylgja." - -#: include/enotify.php:173 include/enotify.php:188 include/enotify.php:203 -#: include/enotify.php:218 include/enotify.php:237 include/enotify.php:252 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Farðu á %s til að skoða og/eða svara samtali." - -#: include/enotify.php:180 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notify] %s skrifaði á vegginn þinn" - -#: include/enotify.php:182 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s skrifaði á vegginn þinn %2$s" - -#: include/enotify.php:183 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s skrifaði á [url=%2$s]vegginn þinn[/url]" - -#: include/enotify.php:195 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notify] %s merkti þig" - -#: include/enotify.php:197 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s merkti þig %2$s" - -#: include/enotify.php:198 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]merkti þig[/url]." - -#: include/enotify.php:210 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica:Notify] %s deildi nýrri færslu" - -#: include/enotify.php:212 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s deildi nýrri færslu %2$s" - -#: include/enotify.php:213 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]deildi færslu[/url]." - -#: include/enotify.php:225 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notify] %1$s potaði í þig" - -#: include/enotify.php:227 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s potaði í þig %2$s" - -#: include/enotify.php:228 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]potaði í þig[/url]." - -#: include/enotify.php:244 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notify] %s merkti færslu frá þér" - -#: include/enotify.php:246 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s merkti færslu frá þér %2$s" - -#: include/enotify.php:247 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s merkti [url=%2$s]færslu frá þér[/url]" - -#: include/enotify.php:259 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notify] Tók á móti kynningu" - -#: include/enotify.php:261 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Þú tókst við kynningu frá '%1$s', %2$s" - -#: include/enotify.php:262 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Þú tókst við [url=%1$s]kynningu[/url] frá %2$s." - -#: include/enotify.php:267 include/enotify.php:313 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Þú getur heimsótt síðuna þeirra á %s" - -#: include/enotify.php:269 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Farðu á %s til að samþykkja eða hunsa þessa kynningu." - -#: include/enotify.php:277 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "[Friendica:Notify] Nýr aðili er að deila með þér" - -#: include/enotify.php:279 include/enotify.php:280 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "%1$s er að deila með þér, %2$s" - -#: include/enotify.php:287 -msgid "[Friendica:Notify] You have a new follower" -msgstr "[Friendica:Notify] Þú ert með nýjan fylgjanda" - -#: include/enotify.php:289 include/enotify.php:290 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "Þú hefur nýjan fylgjanda á %2$s : %1$s" - -#: include/enotify.php:302 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notify] Tók á móti uppástungu um vin" - -#: include/enotify.php:304 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Þér hefur borist uppástunga um vin frá '%1$s' kl. %2$s" - -#: include/enotify.php:305 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Þér hefur borist [url=%1$s]uppástunga um vin[/url] fyrir %2$s frá %3$s." - -#: include/enotify.php:311 -msgid "Name:" -msgstr "Nafn:" - -#: include/enotify.php:312 -msgid "Photo:" -msgstr "Mynd:" - -#: include/enotify.php:315 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Farðu á %s til að samþykkja eða hunsa þessa uppástungu." - -#: include/enotify.php:323 include/enotify.php:338 -msgid "[Friendica:Notify] Connection accepted" -msgstr "[Friendica:Notify] Tenging samþykkt" - -#: include/enotify.php:325 include/enotify.php:340 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "'%1$s' samþykkti tengibeiðni þína %2$s" - -#: include/enotify.php:326 include/enotify.php:341 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "%2$s samþykkti [url=%1$s]tengibeiðni þína[/url]." - -#: include/enotify.php:331 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and " -"email without restriction." -msgstr "Þið eruð núna gagnkvæmir vinir og getið skipst á stöðuuppfærslum, myndum og tölvupósti án hindrana." - -#: include/enotify.php:333 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." +#: mod/item.php:138 +msgid "Post updated." msgstr "" -#: include/enotify.php:346 -#, php-format -msgid "" -"'%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." +#: mod/item.php:203 mod/item.php:207 +msgid "Item wasn't stored." msgstr "" -#: include/enotify.php:348 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future." +#: mod/item.php:217 +msgid "Item couldn't be fetched." msgstr "" -#: include/enotify.php:350 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "" +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "Tóm færsla eytt." -#: include/enotify.php:360 mod/removeme.php:44 -msgid "[Friendica System Notify]" -msgstr "" - -#: include/enotify.php:360 -msgid "registration request" -msgstr "beiðni um skráningu" - -#: include/enotify.php:362 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "" - -#: include/enotify.php:363 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "" - -#: include/enotify.php:368 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "" - -#: include/enotify.php:374 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Farðu á %s til að samþykkja eða hunsa þessa beiðni." - -#: include/security.php:81 -msgid "Welcome " -msgstr "Velkomin(n)" - -#: include/security.php:82 -msgid "Please upload a profile photo." -msgstr "Gerðu svo vel að hlaða inn forsíðumynd." - -#: include/security.php:84 -msgid "Welcome back " -msgstr "Velkomin(n) aftur" - -#: include/security.php:440 -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 "" - -#: include/dba.php:59 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Get ekki flett upp DNS upplýsingum fyrir gagnagrunnsþjón '%s'" - -#: include/api.php:1202 -#, 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:1226 -#, 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:1250 -#, php-format -msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "" - -#: include/api.php:4522 mod/photos.php:88 mod/photos.php:194 -#: mod/photos.php:722 mod/photos.php:1149 mod/photos.php:1166 -#: mod/photos.php:1684 mod/profile_photo.php:85 mod/profile_photo.php:93 -#: mod/profile_photo.php:101 mod/profile_photo.php:211 -#: mod/profile_photo.php:302 mod/profile_photo.php:312 src/Model/User.php:553 -#: src/Model/User.php:561 src/Model/User.php:569 -msgid "Profile Photos" -msgstr "Forsíðumyndir" - -#: include/conversation.php:144 include/conversation.php:282 -#: include/text.php:1749 src/Model/Item.php:1970 -msgid "event" -msgstr "atburður" - -#: include/conversation.php:147 include/conversation.php:157 -#: include/conversation.php:285 include/conversation.php:294 -#: mod/subthread.php:97 mod/tagger.php:72 src/Model/Item.php:1968 -#: src/Protocol/Diaspora.php:1957 -msgid "status" -msgstr "staða" - -#: include/conversation.php:152 include/conversation.php:290 -#: include/text.php:1751 mod/subthread.php:97 mod/tagger.php:72 -#: src/Model/Item.php:1968 -msgid "photo" -msgstr "mynd" - -#: include/conversation.php:164 src/Model/Item.php:1841 -#: src/Protocol/Diaspora.php:1953 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s líkar við %3$s hjá %2$s " - -#: include/conversation.php:167 src/Model/Item.php:1846 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s líkar ekki við %3$s hjá %2$s " - -#: include/conversation.php:170 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "%1$s mætir á %3$s hjá %2$s" - -#: include/conversation.php:173 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "%1$s mætir ekki á %3$s hjá %2$s" - -#: include/conversation.php:176 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "%1$s mætir kannski á %3$s hjá %2$s" - -#: include/conversation.php:209 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "Núna er %1$s vinur %2$s" - -#: include/conversation.php:250 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s potaði í %2$s" - -#: include/conversation.php:304 mod/tagger.php:110 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s merkti %2$s's %3$s með %4$s" - -#: include/conversation.php:331 -msgid "post/item" -msgstr "færslur/atriði" - -#: include/conversation.php:332 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s merkti %3$s hjá %2$s sem eftirlæti" - -#: include/conversation.php:608 mod/photos.php:1501 mod/profiles.php:355 -msgid "Likes" -msgstr "Líkar" - -#: include/conversation.php:608 mod/photos.php:1501 mod/profiles.php:359 -msgid "Dislikes" -msgstr "Mislíkar" - -#: include/conversation.php:609 include/conversation.php:1639 -#: mod/photos.php:1502 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Mætir" -msgstr[1] "Mæta" - -#: include/conversation.php:609 mod/photos.php:1502 -msgid "Not attending" -msgstr "Mætir ekki" - -#: include/conversation.php:609 mod/photos.php:1502 -msgid "Might attend" -msgstr "Gæti mætt" - -#: include/conversation.php:721 mod/photos.php:1569 src/Object/Post.php:192 -msgid "Select" -msgstr "Velja" - -#: include/conversation.php:722 mod/photos.php:1570 mod/contacts.php:830 -#: mod/contacts.php:1035 mod/admin.php:1827 mod/settings.php:730 -#: src/Object/Post.php:187 -msgid "Delete" -msgstr "Eyða" - -#: include/conversation.php:760 src/Object/Post.php:371 -#: src/Object/Post.php:372 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Birta forsíðu %s hjá %s" - -#: include/conversation.php:772 src/Object/Post.php:359 -msgid "Categories:" -msgstr "Flokkar:" - -#: include/conversation.php:773 src/Object/Post.php:360 -msgid "Filed under:" -msgstr "Skráð undir:" - -#: include/conversation.php:780 src/Object/Post.php:385 -#, php-format -msgid "%s from %s" -msgstr "%s til %s" - -#: include/conversation.php:795 -msgid "View in context" -msgstr "Birta í samhengi" - -#: include/conversation.php:797 include/conversation.php:1312 -#: mod/wallmessage.php:145 mod/editpost.php:125 mod/photos.php:1473 -#: mod/message.php:245 mod/message.php:414 src/Object/Post.php:410 -msgid "Please wait" -msgstr "Hinkraðu aðeins" - -#: include/conversation.php:868 -msgid "remove" -msgstr "fjarlægja" - -#: include/conversation.php:872 -msgid "Delete Selected Items" -msgstr "Eyða völdum færslum" - -#: include/conversation.php:1017 view/theme/frio/theme.php:352 -msgid "Follow Thread" -msgstr "Fylgja þræði" - -#: include/conversation.php:1018 src/Model/Contact.php:662 -msgid "View Status" -msgstr "Skoða stöðu" - -#: include/conversation.php:1019 include/conversation.php:1035 -#: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89 -#: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:602 -#: src/Model/Contact.php:615 src/Model/Contact.php:663 -msgid "View Profile" -msgstr "Skoða forsíðu" - -#: include/conversation.php:1020 src/Model/Contact.php:664 -msgid "View Photos" -msgstr "Skoða myndir" - -#: include/conversation.php:1021 src/Model/Contact.php:665 -msgid "Network Posts" -msgstr "Færslur á neti" - -#: include/conversation.php:1022 src/Model/Contact.php:666 -msgid "View Contact" -msgstr "Skoða tengilið" - -#: include/conversation.php:1023 src/Model/Contact.php:668 -msgid "Send PM" -msgstr "Senda einkaboð" - -#: include/conversation.php:1027 src/Model/Contact.php:669 -msgid "Poke" -msgstr "Pota" - -#: include/conversation.php:1032 mod/allfriends.php:74 mod/suggest.php:83 -#: mod/match.php:90 mod/contacts.php:596 mod/dirfind.php:218 -#: mod/follow.php:143 view/theme/vier/theme.php:201 src/Content/Widget.php:61 -#: src/Model/Contact.php:616 -msgid "Connect/Follow" -msgstr "Tengjast/fylgja" - -#: include/conversation.php:1151 -#, php-format -msgid "%s likes this." -msgstr "%s líkar þetta." - -#: include/conversation.php:1154 -#, php-format -msgid "%s doesn't like this." -msgstr "%s mislíkar þetta." - -#: include/conversation.php:1157 -#, php-format -msgid "%s attends." -msgstr "%s mætir." - -#: include/conversation.php:1160 -#, php-format -msgid "%s doesn't attend." -msgstr "%s mætir ekki." - -#: include/conversation.php:1163 -#, php-format -msgid "%s attends maybe." -msgstr "%s mætir kannski." - -#: include/conversation.php:1174 -msgid "and" -msgstr "og" - -#: include/conversation.php:1180 -#, php-format -msgid "and %d other people" -msgstr "og %d öðrum" - -#: include/conversation.php:1189 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d fólki líkar þetta" - -#: include/conversation.php:1190 -#, php-format -msgid "%s like this." -msgstr "%s líkar þetta." - -#: include/conversation.php:1193 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d fólki líkar þetta ekki" - -#: include/conversation.php:1194 -#, php-format -msgid "%s don't like this." -msgstr "%s líkar þetta ekki." - -#: include/conversation.php:1197 -#, php-format -msgid "%2$d people attend" -msgstr "%2$d fólki mæta" - -#: include/conversation.php:1198 -#, php-format -msgid "%s attend." -msgstr "%s mætir." - -#: include/conversation.php:1201 -#, php-format -msgid "%2$d people don't attend" -msgstr "%2$d fólki mæta ekki" - -#: include/conversation.php:1202 -#, php-format -msgid "%s don't attend." -msgstr "%s mætir ekki." - -#: include/conversation.php:1205 -#, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d fólki mæta kannski" - -#: include/conversation.php:1206 -#, php-format -msgid "%s attend maybe." -msgstr "%s mætir kannski." - -#: include/conversation.php:1236 include/conversation.php:1252 -msgid "Visible to everybody" -msgstr "Sjáanlegt öllum" - -#: include/conversation.php:1237 include/conversation.php:1253 -#: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:181 -#: mod/message.php:188 mod/message.php:324 mod/message.php:331 -msgid "Please enter a link URL:" -msgstr "Sláðu inn slóð:" - -#: include/conversation.php:1238 include/conversation.php:1254 -msgid "Please enter a video link/URL:" -msgstr "Settu inn slóð á myndskeið:" - -#: include/conversation.php:1239 include/conversation.php:1255 -msgid "Please enter an audio link/URL:" -msgstr "Settu inn slóð á hljóðskrá:" - -#: include/conversation.php:1240 include/conversation.php:1256 -msgid "Tag term:" -msgstr "Merka með:" - -#: include/conversation.php:1241 include/conversation.php:1257 -#: mod/filer.php:34 -msgid "Save to Folder:" -msgstr "Vista í möppu:" - -#: include/conversation.php:1242 include/conversation.php:1258 -msgid "Where are you right now?" -msgstr "Hvar ert þú núna?" - -#: include/conversation.php:1243 -msgid "Delete item(s)?" -msgstr "Eyða atriði/atriðum?" - -#: include/conversation.php:1290 -msgid "New Post" -msgstr "Ný færsla" - -#: include/conversation.php:1293 -msgid "Share" -msgstr "Deila" - -#: include/conversation.php:1294 mod/wallmessage.php:143 mod/editpost.php:111 -#: mod/message.php:243 mod/message.php:411 -msgid "Upload photo" -msgstr "Hlaða upp mynd" - -#: include/conversation.php:1295 mod/editpost.php:112 -msgid "upload photo" -msgstr "Hlaða upp mynd" - -#: include/conversation.php:1296 mod/editpost.php:113 -msgid "Attach file" -msgstr "Bæta við skrá" - -#: include/conversation.php:1297 mod/editpost.php:114 -msgid "attach file" -msgstr "Hengja skrá við" - -#: include/conversation.php:1298 mod/wallmessage.php:144 mod/editpost.php:115 -#: mod/message.php:244 mod/message.php:412 -msgid "Insert web link" -msgstr "Setja inn vefslóð" - -#: include/conversation.php:1299 mod/editpost.php:116 -msgid "web link" -msgstr "vefslóð" - -#: include/conversation.php:1300 mod/editpost.php:117 -msgid "Insert video link" -msgstr "Setja inn slóð á myndskeið" - -#: include/conversation.php:1301 mod/editpost.php:118 -msgid "video link" -msgstr "slóð á myndskeið" - -#: include/conversation.php:1302 mod/editpost.php:119 -msgid "Insert audio link" -msgstr "Setja inn slóð á hljóðskrá" - -#: include/conversation.php:1303 mod/editpost.php:120 -msgid "audio link" -msgstr "slóð á hljóðskrá" - -#: include/conversation.php:1304 mod/editpost.php:121 -msgid "Set your location" -msgstr "Veldu staðsetningu þína" - -#: include/conversation.php:1305 mod/editpost.php:122 -msgid "set location" -msgstr "stilla staðsetningu" - -#: include/conversation.php:1306 mod/editpost.php:123 -msgid "Clear browser location" -msgstr "Hreinsa staðsetningu í vafra" - -#: include/conversation.php:1307 mod/editpost.php:124 -msgid "clear location" -msgstr "hreinsa staðsetningu" - -#: include/conversation.php:1309 mod/editpost.php:138 -msgid "Set title" -msgstr "Setja titil" - -#: include/conversation.php:1311 mod/editpost.php:140 -msgid "Categories (comma-separated list)" -msgstr "Flokkar (listi aðskilinn með kommum)" - -#: include/conversation.php:1313 mod/editpost.php:126 -msgid "Permission settings" -msgstr "Stillingar aðgangsheimilda" - -#: include/conversation.php:1314 mod/editpost.php:155 -msgid "permissions" -msgstr "aðgangsstýring" - -#: include/conversation.php:1322 mod/editpost.php:135 -msgid "Public post" -msgstr "Opinber færsla" - -#: include/conversation.php:1326 mod/editpost.php:146 mod/photos.php:1492 -#: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528 -#: src/Object/Post.php:813 -msgid "Preview" -msgstr "Forskoðun" - -#: include/conversation.php:1330 include/items.php:387 mod/fbrowser.php:103 -#: mod/fbrowser.php:134 mod/suggest.php:41 mod/tagrm.php:19 mod/tagrm.php:99 -#: mod/editpost.php:149 mod/photos.php:248 mod/photos.php:324 -#: mod/videos.php:147 mod/contacts.php:475 mod/unfollow.php:117 -#: mod/follow.php:161 mod/message.php:141 mod/dfrn_request.php:658 -#: mod/settings.php:670 mod/settings.php:696 -msgid "Cancel" -msgstr "Hætta við" - -#: include/conversation.php:1335 -msgid "Post to Groups" -msgstr "Senda á hópa" - -#: include/conversation.php:1336 -msgid "Post to Contacts" -msgstr "Senda á tengiliði" - -#: include/conversation.php:1337 -msgid "Private post" -msgstr "Einkafærsla" - -#: include/conversation.php:1342 mod/editpost.php:153 -#: src/Model/Profile.php:338 -msgid "Message" -msgstr "Skilaboð" - -#: include/conversation.php:1343 mod/editpost.php:154 -msgid "Browser" -msgstr "Vafri" - -#: include/conversation.php:1610 -msgid "View all" -msgstr "Skoða allt" - -#: include/conversation.php:1633 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Líkar" -msgstr[1] "Líkar" - -#: include/conversation.php:1636 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Mislíkar" -msgstr[1] "Mislíkar" - -#: include/conversation.php:1642 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Mæti ekki" -msgstr[1] "Mæta ekki" - -#: include/conversation.php:1645 src/Content/ContactSelector.php:125 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Óviss" -msgstr[1] "Óvissir" - -#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21 -#: mod/admin.php:277 mod/admin.php:1883 mod/admin.php:2131 mod/display.php:72 -#: mod/display.php:255 mod/display.php:356 +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 +#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Atriði fannst ekki." -#: include/items.php:382 -msgid "Do you really want to delete this item?" -msgstr "Viltu í alvörunni eyða þessu atriði?" - -#: include/items.php:384 mod/api.php:110 mod/suggest.php:38 -#: mod/contacts.php:472 mod/follow.php:150 mod/message.php:138 -#: mod/dfrn_request.php:648 mod/profiles.php:543 mod/profiles.php:546 -#: mod/profiles.php:568 mod/register.php:238 mod/settings.php:1094 -#: mod/settings.php:1100 mod/settings.php:1107 mod/settings.php:1111 -#: mod/settings.php:1115 mod/settings.php:1119 mod/settings.php:1123 -#: mod/settings.php:1127 mod/settings.php:1147 mod/settings.php:1148 -#: mod/settings.php:1149 mod/settings.php:1150 mod/settings.php:1151 -msgid "Yes" -msgstr "Já" - -#: include/items.php:401 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40 -#: mod/attach.php:38 mod/common.php:26 mod/nogroup.php:28 -#: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28 -#: mod/manage.php:131 mod/wall_attach.php:74 mod/wall_attach.php:77 -#: mod/poke.php:150 mod/regmod.php:108 mod/viewcontacts.php:57 -#: mod/wall_upload.php:103 mod/wall_upload.php:106 mod/wallmessage.php:16 -#: mod/wallmessage.php:40 mod/wallmessage.php:79 mod/wallmessage.php:103 -#: mod/editpost.php:18 mod/fsuggest.php:80 mod/notes.php:30 mod/photos.php:174 -#: mod/photos.php:1051 mod/cal.php:304 mod/contacts.php:386 -#: mod/delegate.php:25 mod/delegate.php:43 mod/delegate.php:54 -#: mod/events.php:194 mod/ostatus_subscribe.php:16 mod/profile_photo.php:30 -#: mod/profile_photo.php:176 mod/profile_photo.php:187 -#: mod/profile_photo.php:200 mod/unfollow.php:15 mod/unfollow.php:57 -#: mod/unfollow.php:90 mod/dirfind.php:25 mod/follow.php:17 mod/follow.php:54 -#: mod/follow.php:118 mod/invite.php:20 mod/invite.php:111 mod/network.php:32 -#: mod/crepair.php:98 mod/message.php:59 mod/message.php:104 mod/group.php:26 -#: mod/dfrn_confirm.php:68 mod/item.php:160 mod/notifications.php:73 -#: mod/profiles.php:182 mod/profiles.php:513 mod/register.php:54 -#: mod/settings.php:43 mod/settings.php:142 mod/settings.php:659 index.php:436 +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:99 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:38 +#: src/Module/FriendSuggest.php:57 src/Module/Invite.php:42 +#: src/Module/Invite.php:131 src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Delegation.php:41 src/Module/Settings/Delegation.php:71 +#: src/Module/Settings/Display.php:73 src/Module/Settings/Display.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:111 +#: src/Module/Settings/RemoveMe.php:117 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Import.php:84 +#: src/Module/User/Import.php:91 msgid "Permission denied." msgstr "Heimild ekki veitt." -#: include/items.php:471 src/Content/Feature.php:96 -msgid "Archives" -msgstr "Safnskrár" - -#: include/items.php:477 view/theme/vier/theme.php:258 -#: src/Content/ForumManager.php:130 src/Content/Widget.php:317 -#: src/Object/Post.php:438 src/App.php:525 -msgid "show more" -msgstr "birta meira" - -#: include/text.php:303 -msgid "newer" -msgstr "nýrri" - -#: include/text.php:304 -msgid "older" -msgstr "eldri" - -#: include/text.php:309 -msgid "first" -msgstr "fremsta" - -#: include/text.php:310 -msgid "prev" -msgstr "á undan" - -#: include/text.php:344 -msgid "next" -msgstr "næsta" - -#: include/text.php:345 -msgid "last" -msgstr "síðasta" - -#: include/text.php:399 -msgid "Loading more entries..." -msgstr "Hleð inn fleiri færslum..." - -#: include/text.php:400 -msgid "The end" -msgstr "Endir" - -#: include/text.php:885 -msgid "No contacts" -msgstr "Engir tengiliðir" - -#: include/text.php:909 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d tengiliður" -msgstr[1] "%d tengiliðir" - -#: include/text.php:922 -msgid "View Contacts" -msgstr "Skoða tengiliði" - -#: include/text.php:1011 mod/filer.php:35 mod/editpost.php:110 -#: mod/notes.php:67 -msgid "Save" -msgstr "Vista" - -#: include/text.php:1011 -msgid "Follow" -msgstr "Fylgja" - -#: include/text.php:1017 mod/search.php:155 src/Content/Nav.php:142 -msgid "Search" -msgstr "Leita" - -#: include/text.php:1020 src/Content/Nav.php:58 -msgid "@name, !forum, #tags, content" -msgstr "@nafn, !spjallsvæði, #merki, innihald" - -#: include/text.php:1026 src/Content/Nav.php:145 -msgid "Full Text" -msgstr "Allur textinn" - -#: include/text.php:1027 src/Content/Widget/TagCloud.php:54 -#: src/Content/Nav.php:146 -msgid "Tags" -msgstr "Merki" - -#: include/text.php:1028 mod/viewcontacts.php:131 mod/contacts.php:814 -#: mod/contacts.php:875 view/theme/frio/theme.php:270 src/Content/Nav.php:147 -#: src/Content/Nav.php:213 src/Model/Profile.php:955 src/Model/Profile.php:958 -msgid "Contacts" -msgstr "Tengiliðir" - -#: include/text.php:1031 view/theme/vier/theme.php:253 -#: src/Content/ForumManager.php:125 src/Content/Nav.php:151 -msgid "Forums" -msgstr "Spjallsvæði" - -#: include/text.php:1075 -msgid "poke" -msgstr "pota" - -#: include/text.php:1075 -msgid "poked" -msgstr "potaði" - -#: include/text.php:1076 -msgid "ping" -msgstr "bjalla" - -#: include/text.php:1076 -msgid "pinged" -msgstr "bjallað" - -#: include/text.php:1077 -msgid "prod" -msgstr "ýta" - -#: include/text.php:1077 -msgid "prodded" -msgstr "ýtti" - -#: include/text.php:1078 -msgid "slap" -msgstr "slá" - -#: include/text.php:1078 -msgid "slapped" -msgstr "slegið" - -#: include/text.php:1079 -msgid "finger" -msgstr "fingur" - -#: include/text.php:1079 -msgid "fingered" -msgstr "" - -#: include/text.php:1080 -msgid "rebuff" -msgstr "" - -#: include/text.php:1080 -msgid "rebuffed" -msgstr "" - -#: include/text.php:1094 mod/settings.php:935 src/Model/Event.php:379 -msgid "Monday" -msgstr "Mánudagur" - -#: include/text.php:1094 src/Model/Event.php:380 -msgid "Tuesday" -msgstr "Þriðjudagur" - -#: include/text.php:1094 src/Model/Event.php:381 -msgid "Wednesday" -msgstr "Miðvikudagur" - -#: include/text.php:1094 src/Model/Event.php:382 -msgid "Thursday" -msgstr "Fimmtudagur" - -#: include/text.php:1094 src/Model/Event.php:383 -msgid "Friday" -msgstr "Föstudagur" - -#: include/text.php:1094 src/Model/Event.php:384 -msgid "Saturday" -msgstr "Laugardagur" - -#: include/text.php:1094 mod/settings.php:935 src/Model/Event.php:378 -msgid "Sunday" -msgstr "Sunnudagur" - -#: include/text.php:1098 src/Model/Event.php:399 -msgid "January" -msgstr "Janúar" - -#: include/text.php:1098 src/Model/Event.php:400 -msgid "February" -msgstr "Febrúar" - -#: include/text.php:1098 src/Model/Event.php:401 -msgid "March" -msgstr "Mars" - -#: include/text.php:1098 src/Model/Event.php:402 -msgid "April" -msgstr "Apríl" - -#: include/text.php:1098 include/text.php:1115 src/Model/Event.php:390 -#: src/Model/Event.php:403 -msgid "May" -msgstr "Maí" - -#: include/text.php:1098 src/Model/Event.php:404 -msgid "June" -msgstr "Júní" - -#: include/text.php:1098 src/Model/Event.php:405 -msgid "July" -msgstr "Júlí" - -#: include/text.php:1098 src/Model/Event.php:406 -msgid "August" -msgstr "Ágúst" - -#: include/text.php:1098 src/Model/Event.php:407 -msgid "September" -msgstr "September" - -#: include/text.php:1098 src/Model/Event.php:408 -msgid "October" -msgstr "Október" - -#: include/text.php:1098 src/Model/Event.php:409 -msgid "November" -msgstr "Nóvember" - -#: include/text.php:1098 src/Model/Event.php:410 -msgid "December" -msgstr "Desember" - -#: include/text.php:1112 src/Model/Event.php:371 -msgid "Mon" -msgstr "Mán" - -#: include/text.php:1112 src/Model/Event.php:372 -msgid "Tue" -msgstr "Þri" - -#: include/text.php:1112 src/Model/Event.php:373 -msgid "Wed" -msgstr "Mið" - -#: include/text.php:1112 src/Model/Event.php:374 -msgid "Thu" -msgstr "Fim" - -#: include/text.php:1112 src/Model/Event.php:375 -msgid "Fri" -msgstr "Fös" - -#: include/text.php:1112 src/Model/Event.php:376 -msgid "Sat" -msgstr "Lau" - -#: include/text.php:1112 src/Model/Event.php:370 -msgid "Sun" -msgstr "Sun" - -#: include/text.php:1115 src/Model/Event.php:386 -msgid "Jan" -msgstr "Jan" - -#: include/text.php:1115 src/Model/Event.php:387 -msgid "Feb" -msgstr "Feb" - -#: include/text.php:1115 src/Model/Event.php:388 -msgid "Mar" -msgstr "Mar" - -#: include/text.php:1115 src/Model/Event.php:389 -msgid "Apr" -msgstr "Apr" - -#: include/text.php:1115 src/Model/Event.php:392 -msgid "Jul" -msgstr "Júl" - -#: include/text.php:1115 src/Model/Event.php:393 -msgid "Aug" -msgstr "Ágú" - -#: include/text.php:1115 -msgid "Sep" -msgstr "sep" - -#: include/text.php:1115 src/Model/Event.php:395 -msgid "Oct" -msgstr "Okt" - -#: include/text.php:1115 src/Model/Event.php:396 -msgid "Nov" -msgstr "Nóv" - -#: include/text.php:1115 src/Model/Event.php:397 -msgid "Dec" -msgstr "Des" - -#: include/text.php:1255 -#, php-format -msgid "Content warning: %s" -msgstr "Viðvörun vegna innihalds: %s" - -#: include/text.php:1325 mod/videos.php:380 -msgid "View Video" -msgstr "Skoða myndskeið" - -#: include/text.php:1342 -msgid "bytes" -msgstr "bæti" - -#: include/text.php:1375 include/text.php:1386 include/text.php:1419 -msgid "Click to open/close" -msgstr "Smelltu til að opna/loka" - -#: include/text.php:1534 -msgid "View on separate page" -msgstr "Skoða á sérstakri síðu" - -#: include/text.php:1535 -msgid "view on separate page" -msgstr "skoða á sérstakri síðu" - -#: include/text.php:1540 include/text.php:1547 src/Model/Event.php:594 -msgid "link to source" -msgstr "slóð á heimild" - -#: include/text.php:1753 -msgid "activity" -msgstr "virkni" - -#: include/text.php:1755 src/Object/Post.php:437 src/Object/Post.php:449 -msgid "comment" -msgid_plural "comments" -msgstr[0] "athugasemd" -msgstr[1] "athugasemdir" - -#: include/text.php:1758 -msgid "post" -msgstr "senda" - -#: include/text.php:1915 -msgid "Item filed" -msgstr "Atriði skráð" - -#: mod/allfriends.php:51 -msgid "No friends to display." -msgstr "Engir vinir til að birta." - -#: mod/allfriends.php:90 mod/suggest.php:101 mod/match.php:105 -#: mod/dirfind.php:215 src/Content/Widget.php:37 src/Model/Profile.php:293 -msgid "Connect" -msgstr "Tengjast" - -#: mod/api.php:85 mod/api.php:107 -msgid "Authorize application connection" -msgstr "Leyfa forriti að tengjast" - -#: mod/api.php:86 -msgid "Return to your app and insert this Securty Code:" -msgstr "Farðu aftur í forritið þitt og settu þennan öryggiskóða þar" - -#: mod/api.php:95 -msgid "Please login to continue." -msgstr "Skráðu þig inn til að halda áfram." - -#: mod/api.php:109 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengiliðum, og/eða stofna nýjar færslur fyrir þig?" - -#: mod/api.php:111 mod/follow.php:150 mod/dfrn_request.php:648 -#: mod/profiles.php:543 mod/profiles.php:547 mod/profiles.php:568 -#: mod/register.php:239 mod/settings.php:1094 mod/settings.php:1100 -#: mod/settings.php:1107 mod/settings.php:1111 mod/settings.php:1115 -#: mod/settings.php:1119 mod/settings.php:1123 mod/settings.php:1127 -#: mod/settings.php:1147 mod/settings.php:1148 mod/settings.php:1149 -#: mod/settings.php:1150 mod/settings.php:1151 -msgid "No" -msgstr "Nei" - -#: mod/apps.php:14 index.php:265 -msgid "You must be logged in to use addons. " -msgstr "Þú verður að vera skráður inn til að geta notað viðbætur. " - -#: mod/apps.php:19 -msgid "Applications" -msgstr "Forrit" - -#: mod/apps.php:22 -msgid "No installed applications." -msgstr "Engin uppsett forrit" - -#: mod/attach.php:15 -msgid "Item not available." -msgstr "Atriði ekki í boði." - -#: mod/attach.php:25 -msgid "Item was not found." -msgstr "Atriði fannst ekki" - -#: mod/common.php:91 -msgid "No contacts in common." -msgstr "Engir sameiginlegir tengiliðir." - -#: mod/common.php:140 mod/contacts.php:886 -msgid "Common Friends" -msgstr "Sameiginlegir vinir" - -#: mod/credits.php:18 -msgid "Credits" -msgstr "Þakkir" - -#: mod/credits.php:19 -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 "" - -#: mod/fbrowser.php:34 view/theme/frio/theme.php:261 src/Content/Nav.php:102 -#: src/Model/Profile.php:902 -msgid "Photos" -msgstr "Myndir" - -#: mod/fbrowser.php:43 mod/fbrowser.php:68 mod/photos.php:194 -#: mod/photos.php:1062 mod/photos.php:1149 mod/photos.php:1166 -#: mod/photos.php:1659 mod/photos.php:1673 src/Model/Photo.php:244 -#: src/Model/Photo.php:253 -msgid "Contact Photos" -msgstr "Myndir tengiliðs" - -#: mod/fbrowser.php:105 mod/fbrowser.php:136 mod/profile_photo.php:250 -msgid "Upload" -msgstr "Senda inn" - -#: mod/fbrowser.php:131 -msgid "Files" -msgstr "Skrár" - -#: mod/fetch.php:16 mod/fetch.php:52 mod/fetch.php:65 mod/p.php:21 -#: mod/p.php:48 mod/p.php:57 mod/help.php:60 index.php:312 -msgid "Not Found" -msgstr "Fannst ekki" - -#: mod/hcard.php:18 -msgid "No profile" -msgstr "Engin forsíða" - -#: mod/home.php:39 -#, php-format -msgid "Welcome to %s" -msgstr "Velkomin í %s" - -#: mod/lockview.php:38 mod/lockview.php:46 -msgid "Remote privacy information not available." -msgstr "Persónuverndarupplýsingar ekki fyrir hendi á fjartengdum vefþjóni." - -#: mod/lockview.php:55 -msgid "Visible to:" -msgstr "Sýnilegt eftirfarandi:" - -#: mod/maintenance.php:24 -msgid "System down for maintenance" -msgstr "Kerfið er óvirkt vegna viðhalds" - -#: mod/newmember.php:11 -msgid "Welcome to Friendica" -msgstr "Velkomin(n) á Friendica" - -#: mod/newmember.php:12 -msgid "New Member Checklist" -msgstr "Gátlisti nýs notanda" - -#: mod/newmember.php:14 -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 "" - -#: mod/newmember.php:15 -msgid "Getting Started" -msgstr "Til að komast í gang" - -#: mod/newmember.php:17 -msgid "Friendica Walk-Through" -msgstr "Leiðarvísir Friendica" - -#: mod/newmember.php:17 -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 "" - -#: mod/newmember.php:19 mod/admin.php:1935 mod/admin.php:2204 -#: mod/settings.php:124 view/theme/frio/theme.php:269 src/Content/Nav.php:207 -msgid "Settings" -msgstr "Stillingar" - -#: mod/newmember.php:21 -msgid "Go to Your Settings" -msgstr "Farðu í stillingarnar þínar" - -#: mod/newmember.php:21 -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 "" - -#: mod/newmember.php:22 -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 "Yfirfarðu aðrar stillingar, sérstaklega gagnaleyndarstillingar. Óútgefin forsíða er einsog óskráð símanúmer. Sem þýðir að líklega viltu gefa út forsíðuna þína - nema að allir vinir þínir og tilvonandi vinir viti nákvæmlega hvernig á að finna þig." - -#: mod/newmember.php:24 mod/profperm.php:113 mod/contacts.php:671 -#: mod/contacts.php:863 view/theme/frio/theme.php:260 src/Content/Nav.php:101 -#: src/Model/Profile.php:728 src/Model/Profile.php:861 -#: src/Model/Profile.php:894 -msgid "Profile" -msgstr "Forsíða" - -#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:598 -msgid "Upload Profile Photo" -msgstr "Hlaða upp forsíðu mynd" - -#: mod/newmember.php:26 -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 "Að hlaða upp forsíðu mynd ef þú hefur ekki þegar gert það. Rannsóknir sýna að fólk sem hefur alvöru mynd af sér er tíu sinnum líklegra til að eignast vini en fólk sem ekki hefur mynd." - -#: mod/newmember.php:27 -msgid "Edit Your Profile" -msgstr "Breyta forsíðunni þinni" - -#: mod/newmember.php:27 -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 "Breyttu sjálfgefnu forsíðunni einsog þú villt. Yfirfarðu stillingu til að fela vinalista á forsíðu og stillingu til að fela forsíðu fyrir ókunnum." - -#: mod/newmember.php:28 -msgid "Profile Keywords" -msgstr "Stikkorð notandans" - -#: mod/newmember.php:28 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Bættu við leitarorðum í sjálfgefnu forsíðuna þína sem lýsa áhugamálum þínum. Þá er hægt að fólk með svipuð áhugamál og stinga uppá vinskap." - -#: mod/newmember.php:30 -msgid "Connecting" -msgstr "Tengist" - -#: mod/newmember.php:36 -msgid "Importing Emails" -msgstr "Flyt inn pósta" - -#: mod/newmember.php:36 -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 "Fylltu út aðgangsupplýsingar póstfangsins þíns á Tengistillingasíðunni ef þú vilt sækja tölvupóst og eiga samskipti við vini eða póstlista úr innhólfi tölvupóstsins þíns" - -#: mod/newmember.php:39 -msgid "Go to Your Contacts Page" -msgstr "Fara yfir á tengiliðasíðuna" - -#: mod/newmember.php:39 -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 "Tengiliðasíðan er gáttin þín til að sýsla með vinasambönd og tengjast við vini á öðrum netum. Oftast setur þú vistfang eða slóð þeirra í Bæta við tengilið glugganum." - -#: mod/newmember.php:40 -msgid "Go to Your Site's Directory" -msgstr "" - -#: mod/newmember.php:40 -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 "Tengiliðalistinn er góð leit til að finna fólk á samfélagsnetinu eða öðrum sambandsnetum. Leitaðu að Tengjast/Connect eða Fylgja/Follow tenglum á forsíðunni þeirra. Mögulega þarftu að gefa upp auðkennisslóðina þína." - -#: mod/newmember.php:41 -msgid "Finding New People" -msgstr "Finna nýtt fólk" - -#: mod/newmember.php:41 -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 "" - -#: mod/newmember.php:43 src/Model/Group.php:414 -msgid "Groups" -msgstr "Hópar" - -#: mod/newmember.php:45 -msgid "Group Your Contacts" -msgstr "Hópa tengiliðina þína" - -#: mod/newmember.php:45 -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 "Eftir að þú hefur eignast nokkra vini, þá er best að flokka þá niður í hópa á hliðar slánni á Tengiliðasíðunni. Eftir það getur þú haft samskipti við hvern hóp fyrir sig á Samfélagssíðunni." - -#: mod/newmember.php:48 -msgid "Why Aren't My Posts Public?" -msgstr "Hvers vegna eru færslurnar mínar ekki opinberar?" - -#: mod/newmember.php:48 -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 "Friendica virðir gagnaleynd þína. Sjálfgefið er að færslurnar þínar birtast einungis þeim sem þú hefur bætt við sem vinum. Til að sjá nánari upplýsingar, skoðaðu þá hjálparhlutann með því að smella á tengilinn hér fyrir ofan." - -#: mod/newmember.php:52 -msgid "Getting Help" -msgstr "Til að fá hjálp" - -#: mod/newmember.php:54 -msgid "Go to the Help Section" -msgstr "Fara í hjálparhlutann" - -#: mod/newmember.php:54 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Hægt er að styðjast við Hjálp síðuna til að fá leiðbeiningar um aðra eiginleika." - -#: mod/nogroup.php:42 mod/viewcontacts.php:112 mod/contacts.php:619 -#: mod/contacts.php:959 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Heimsækja forsíðu %s [%s]" - -#: mod/nogroup.php:43 mod/contacts.php:960 -msgid "Edit contact" -msgstr "Breyta tengilið" - -#: mod/nogroup.php:63 -msgid "Contacts who are not members of a group" -msgstr "Tengiliðir sem ekki eru í neinum hópi" - -#: mod/p.php:14 -msgid "Not Extended" -msgstr "" - -#: mod/repair_ostatus.php:18 -msgid "Resubscribing to OStatus contacts" -msgstr "" - -#: mod/repair_ostatus.php:34 -msgid "Error" -msgstr "Villa" - -#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64 -msgid "Done" -msgstr "Lokið" - -#: mod/repair_ostatus.php:54 mod/ostatus_subscribe.php:88 -msgid "Keep this window open until done." -msgstr "Halda þessum glugga opnum þar til öllu er lokið." - -#: mod/suggest.php:36 -msgid "Do you really want to delete this suggestion?" -msgstr "Viltu örugglega eyða þessari tillögu?" - -#: mod/suggest.php:73 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Engar uppástungur tiltækar. Ef þetta er nýr vefur, reyndu þá aftur eftir um 24 klukkustundir." - -#: mod/suggest.php:84 mod/suggest.php:104 -msgid "Ignore/Hide" -msgstr "Hunsa/Fela" - -#: mod/suggest.php:114 view/theme/vier/theme.php:204 src/Content/Widget.php:64 -msgid "Friend Suggestions" -msgstr "Vina uppástungur" - -#: mod/update_community.php:27 mod/update_display.php:27 -#: mod/update_notes.php:40 mod/update_profile.php:39 mod/update_network.php:33 -msgid "[Embedded content - reload page to view]" -msgstr "[Innfelt efni - endurhlaða síðu til að sjá]" - -#: mod/uimport.php:55 mod/register.php:192 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Þessi vefur hefur náð hámarks fjölda daglegra nýskráninga. Reyndu aftur á morgun." - -#: mod/uimport.php:70 mod/register.php:288 -msgid "Import" -msgstr "Flytja inn" - -#: mod/uimport.php:72 -msgid "Move account" -msgstr "Flytja aðgang" - -#: mod/uimport.php:73 -msgid "You can import an account from another Friendica server." -msgstr "Þú getur flutt inn notandaaðgang frá öðrum Friendica-þjóni." - -#: mod/uimport.php:74 -msgid "" -"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." -msgstr "" - -#: mod/uimport.php:75 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "" - -#: mod/uimport.php:76 -msgid "Account file" -msgstr "Notandaaðgangsskrá" - -#: mod/uimport.php:76 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" - -#: mod/match.php:48 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Engin leitarorð. Bættu við leitarorðum í sjálfgefnu forsíðuna." - -#: mod/match.php:104 -msgid "is interested in:" -msgstr "hefur áhuga á:" - -#: mod/match.php:120 -msgid "Profile Match" -msgstr "Forsíða fannst" - -#: mod/match.php:125 mod/dirfind.php:253 -msgid "No matches" -msgstr "Engar leitarniðurstöður" - -#: mod/manage.php:180 -msgid "Manage Identities and/or Pages" -msgstr "Sýsla með notendur og/eða síður" - -#: mod/manage.php:181 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Skipta á milli auðkenna eða hópa- / stjörnunotanda sem deila þínum aðgangs upplýsingum eða þér verið úthlutað \"umsýslu\" réttindum." - -#: mod/manage.php:182 -msgid "Select an identity to manage: " -msgstr "Veldu notanda til að sýsla með:" - -#: mod/manage.php:184 mod/localtime.php:56 mod/poke.php:199 -#: mod/fsuggest.php:114 mod/photos.php:1080 mod/photos.php:1160 -#: mod/photos.php:1445 mod/photos.php:1491 mod/photos.php:1530 -#: mod/photos.php:1603 mod/contacts.php:610 mod/events.php:530 -#: mod/invite.php:154 mod/crepair.php:148 mod/install.php:198 -#: mod/install.php:237 mod/message.php:246 mod/message.php:413 -#: mod/profiles.php:579 view/theme/duepuntozero/config.php:71 -#: view/theme/frio/config.php:118 view/theme/quattro/config.php:73 -#: view/theme/vier/config.php:119 src/Object/Post.php:804 -msgid "Submit" -msgstr "Senda inn" - -#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83 -#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112 -#: mod/wall_upload.php:155 mod/wall_upload.php:158 -msgid "Invalid request." -msgstr "Ógild fyrirspurn." - -#: mod/wall_attach.php:101 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: mod/wall_attach.php:101 -msgid "Or - did you try to upload an empty file?" -msgstr "Eða - reyndirðu að senda inn tóma skrá?" - -#: mod/wall_attach.php:112 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Skrá fer leyfileg takmörk sem eru %s" - -#: mod/wall_attach.php:136 mod/wall_attach.php:152 -msgid "File upload failed." -msgstr "Skráar upphlöðun mistókst." - -#: mod/filer.php:34 -msgid "- select -" -msgstr "- veldu -" - -#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: mod/localtime.php:33 -msgid "Time Conversion" -msgstr "Tíma leiðréttir" - -#: mod/localtime.php:35 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica veitir þessa þjónustu til að deila atburðum milli neta og vina í óþekktum tímabeltum." - -#: mod/localtime.php:39 -#, php-format -msgid "UTC time: %s" -msgstr "Máltími: %s" - -#: mod/localtime.php:42 -#, php-format -msgid "Current timezone: %s" -msgstr "Núverandi tímabelti: %s" - -#: mod/localtime.php:46 -#, php-format -msgid "Converted localtime: %s" -msgstr "Umbreyttur staðartími: %s" - -#: mod/localtime.php:52 -msgid "Please select your timezone:" -msgstr "Veldu tímabeltið þitt:" - -#: mod/notify.php:77 -msgid "No more system notifications." -msgstr "Ekki fleiri kerfistilkynningar." - -#: mod/notify.php:81 mod/notifications.php:113 -msgid "System Notifications" -msgstr "Kerfistilkynningar" - -#: mod/ping.php:292 -msgid "{0} wants to be your friend" -msgstr "{0} vill vera vinur þinn" - -#: mod/ping.php:307 -msgid "{0} sent you a message" -msgstr "{0} sendi þér skilboð" - -#: mod/ping.php:322 -msgid "{0} requested registration" -msgstr "{0} óskaði eftir skráningu" - -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Pota/Ýta" - -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "pota, ýta eða gera eitthvað við einhvern" - -#: mod/poke.php:194 -msgid "Recipient" -msgstr "Viðtakandi" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Gera þessa færslu einka" - -#: mod/probe.php:13 mod/search.php:98 mod/search.php:104 -#: mod/viewcontacts.php:45 mod/webfinger.php:16 mod/photos.php:932 -#: mod/videos.php:199 mod/directory.php:42 mod/community.php:27 -#: mod/dfrn_request.php:602 mod/display.php:203 -msgid "Public access denied." -msgstr "Opinber aðgangur ekki veittur." - -#: mod/probe.php:14 mod/webfinger.php:17 -msgid "Only logged in users are permitted to perform a probing." -msgstr "" - -#: mod/profperm.php:28 mod/group.php:83 index.php:435 -msgid "Permission denied" -msgstr "Bannaður aðgangur" - -#: mod/profperm.php:34 mod/profperm.php:65 -msgid "Invalid profile identifier." -msgstr "Ógilt tengiliða auðkenni" - -#: mod/profperm.php:111 -msgid "Profile Visibility Editor" -msgstr "Sýsla með sjáanleika forsíðu" - -#: mod/profperm.php:115 mod/group.php:265 -msgid "Click on a contact to add or remove." -msgstr "Ýttu á tengilið til að bæta við hóp eða taka úr hóp." - -#: mod/profperm.php:124 -msgid "Visible To" -msgstr "Sjáanlegur hverjum" - -#: mod/profperm.php:140 -msgid "All Contacts (with secure profile access)" -msgstr "Allir tengiliðir (með öruggann aðgang að forsíðu)" - -#: mod/regmod.php:68 -msgid "Account approved." -msgstr "Notandi samþykktur." - -#: mod/regmod.php:93 -#, php-format -msgid "Registration revoked for %s" -msgstr "Skráning afturköllurð vegna %s" - -#: mod/regmod.php:102 -msgid "Please login." -msgstr "Skráðu yður inn." - -#: mod/search.php:37 mod/network.php:194 -msgid "Remove term" -msgstr "Fjarlæga gildi" - -#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100 -msgid "Saved Searches" -msgstr "Vistaðar leitir" - -#: mod/search.php:105 -msgid "Only logged in users are permitted to perform a search." -msgstr "Aðeins innskráðir notendur geta framkvæmt leit." - -#: mod/search.php:129 -msgid "Too Many Requests" -msgstr "Of margar beiðnir" - -#: mod/search.php:130 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "Notendur sem ekki eru innskráðir geta aðeins framkvæmt eina leit á mínútu." - -#: mod/search.php:228 mod/community.php:141 -msgid "No results." -msgstr "Engar leitarniðurstöður." - -#: mod/search.php:234 -#, php-format -msgid "Items tagged with: %s" -msgstr "Atriði merkt með: %s" - -#: mod/search.php:236 mod/contacts.php:819 -#, php-format -msgid "Results for: %s" -msgstr "Niðurstöður fyrir: %s" - -#: mod/subthread.php:113 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s fylgist með %3$s hjá %2$s" - -#: mod/tagrm.php:47 -msgid "Tag removed" -msgstr "Merki fjarlægt" - -#: mod/tagrm.php:85 -msgid "Remove Item Tag" -msgstr "Fjarlægja merki " - -#: mod/tagrm.php:87 -msgid "Select a tag to remove: " -msgstr "Veldu merki til að fjarlægja:" - -#: mod/tagrm.php:98 mod/delegate.php:177 -msgid "Remove" -msgstr "Fjarlægja" - -#: mod/uexport.php:44 -msgid "Export account" -msgstr "Flytja út notandaaðgang" - -#: mod/uexport.php:44 -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 "" - -#: mod/uexport.php:45 -msgid "Export all" -msgstr "Flytja út allt" - -#: mod/uexport.php:45 -msgid "" -"Export your accout 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 "" - -#: mod/uexport.php:52 mod/settings.php:108 -msgid "Export personal data" -msgstr "Sækja persónuleg gögn" - -#: mod/viewcontacts.php:87 -msgid "No contacts." -msgstr "Enginn tengiliður" - -#: mod/viewsrc.php:12 mod/community.php:34 -msgid "Access denied." -msgstr "Aðgangi hafnað." - -#: mod/wall_upload.php:186 mod/photos.php:763 mod/photos.php:766 -#: mod/photos.php:795 mod/profile_photo.php:153 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "" - -#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162 -msgid "Unable to process image." -msgstr "Ekki mögulegt afgreiða mynd" - -#: mod/wall_upload.php:231 mod/item.php:471 src/Object/Image.php:953 -#: src/Object/Image.php:969 src/Object/Image.php:977 src/Object/Image.php:1002 -msgid "Wall Photos" -msgstr "Veggmyndir" - -#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307 -msgid "Image upload failed." -msgstr "Ekki hægt að hlaða upp mynd." - -#: mod/wallmessage.php:49 mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "" - -#: mod/wallmessage.php:57 mod/message.php:73 -msgid "No recipient selected." -msgstr "Engir viðtakendur valdir." - -#: mod/wallmessage.php:60 -msgid "Unable to check your home location." -msgstr "" - -#: mod/wallmessage.php:63 mod/message.php:80 -msgid "Message could not be sent." -msgstr "Ekki tókst að senda skilaboð." - -#: mod/wallmessage.php:66 mod/message.php:83 -msgid "Message collection failure." -msgstr "Ekki tókst að sækja skilaboð." - -#: mod/wallmessage.php:69 mod/message.php:86 -msgid "Message sent." -msgstr "Skilaboð send." - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Enginn viðtakandi" - -#: mod/wallmessage.php:132 mod/message.php:231 -msgid "Send Private Message" -msgstr "Senda einkaskilaboð" - -#: mod/wallmessage.php:133 -#, 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 "" - -#: mod/wallmessage.php:134 mod/message.php:232 mod/message.php:402 -msgid "To:" -msgstr "Til:" - -#: mod/wallmessage.php:135 mod/message.php:236 mod/message.php:404 -msgid "Subject:" -msgstr "Efni:" - -#: mod/wallmessage.php:141 mod/invite.php:149 mod/message.php:240 -#: mod/message.php:407 -msgid "Your message:" -msgstr "Skilaboðin:" - -#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:313 -msgid "Login" -msgstr "Innskráning" - -#: mod/bookmarklet.php:51 -msgid "The post was created" -msgstr "" - -#: mod/editpost.php:25 mod/editpost.php:35 -msgid "Item not found" -msgstr "Atriði fannst ekki" - -#: mod/editpost.php:42 -msgid "Edit post" -msgstr "Breyta skilaboðum" - -#: mod/editpost.php:134 src/Core/ACL.php:315 -msgid "CC: email addresses" -msgstr "CC: tölvupóstfang" - -#: mod/editpost.php:141 src/Core/ACL.php:316 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Dæmi: bibbi@vefur.is, mgga@vefur.is" - -#: mod/fsuggest.php:30 mod/fsuggest.php:96 mod/crepair.php:110 -#: mod/dfrn_confirm.php:129 -msgid "Contact not found." -msgstr "Tengiliður fannst ekki." - -#: mod/fsuggest.php:72 -msgid "Friend suggestion sent." -msgstr "Vina tillaga send" - -#: mod/fsuggest.php:101 -msgid "Suggest Friends" -msgstr "Stinga uppá vinum" - -#: mod/fsuggest.php:103 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Stinga uppá vin fyrir %s" - -#: mod/notes.php:52 src/Model/Profile.php:944 -msgid "Personal Notes" -msgstr "Persónulegar glósur" - -#: mod/photos.php:108 src/Model/Profile.php:905 -msgid "Photo Albums" -msgstr "Myndabækur" - -#: mod/photos.php:109 mod/photos.php:1713 -msgid "Recent Photos" -msgstr "Nýlegar myndir" - -#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715 -msgid "Upload New Photos" -msgstr "Hlaða upp nýjum myndum" - -#: mod/photos.php:126 mod/settings.php:51 -msgid "everybody" -msgstr "allir" - -#: mod/photos.php:184 -msgid "Contact information unavailable" -msgstr "Tengiliða upplýsingar ekki til" - -#: mod/photos.php:204 -msgid "Album not found." -msgstr "Myndabók finnst ekki." - -#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161 -msgid "Delete Album" -msgstr "Fjarlægja myndabók" - -#: mod/photos.php:243 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "" - -#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446 -msgid "Delete Photo" -msgstr "Fjarlægja mynd" - -#: mod/photos.php:319 -msgid "Do you really want to delete this photo?" -msgstr "" - -#: mod/photos.php:667 -msgid "a photo" -msgstr "mynd" - -#: mod/photos.php:667 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s var merkt í %2$s af %3$s" - -#: mod/photos.php:769 -msgid "Image upload didn't complete, please try again" -msgstr "" - -#: mod/photos.php:772 -msgid "Image file is missing" -msgstr "Myndskrá vantar" - -#: mod/photos.php:777 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "" - -#: mod/photos.php:803 -msgid "Image file is empty." -msgstr "Mynda skrá er tóm." - -#: mod/photos.php:940 -msgid "No photos selected" -msgstr "Engar myndir valdar" - -#: mod/photos.php:1036 mod/videos.php:309 -msgid "Access to this item is restricted." -msgstr "Aðgangur að þessum hlut hefur verið heftur" - -#: mod/photos.php:1090 -msgid "Upload Photos" -msgstr "Hlaða upp myndum" - -#: mod/photos.php:1094 mod/photos.php:1156 -msgid "New album name: " -msgstr "Nýtt nafn myndbókar:" - -#: mod/photos.php:1095 -msgid "or existing album name: " -msgstr "eða fyrra nafn myndbókar:" - -#: mod/photos.php:1096 -msgid "Do not show a status post for this upload" -msgstr "Ekki sýna færslu fyrir þessari upphölun" - -#: mod/photos.php:1098 mod/photos.php:1441 mod/events.php:533 -#: src/Core/ACL.php:318 -msgid "Permissions" -msgstr "Aðgangsheimildir" - -#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1218 -msgid "Show to Groups" -msgstr "Birta hópum" - -#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1219 -msgid "Show to Contacts" -msgstr "Birta tengiliðum" - -#: mod/photos.php:1167 -msgid "Edit Album" -msgstr "Breyta myndbók" - -#: mod/photos.php:1172 -msgid "Show Newest First" -msgstr "Birta nýjast fyrst" - -#: mod/photos.php:1174 -msgid "Show Oldest First" -msgstr "Birta elsta fyrst" - -#: mod/photos.php:1195 mod/photos.php:1698 -msgid "View Photo" -msgstr "Skoða mynd" - -#: mod/photos.php:1236 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Aðgangi hafnað. Aðgangur að þessum hlut kann að vera skertur." - -#: mod/photos.php:1238 -msgid "Photo not available" -msgstr "Mynd ekki til" - -#: mod/photos.php:1301 -msgid "View photo" -msgstr "Birta mynd" - -#: mod/photos.php:1301 -msgid "Edit photo" -msgstr "Breyta mynd" - -#: mod/photos.php:1302 -msgid "Use as profile photo" -msgstr "Nota sem forsíðu mynd" - -#: mod/photos.php:1308 src/Object/Post.php:149 -msgid "Private Message" -msgstr "Einkaskilaboð" - -#: mod/photos.php:1327 -msgid "View Full Size" -msgstr "Skoða í fullri stærð" - -#: mod/photos.php:1414 -msgid "Tags: " -msgstr "Merki:" - -#: mod/photos.php:1417 -msgid "[Remove any tag]" -msgstr "[Fjarlægja öll merki]" - -#: mod/photos.php:1432 -msgid "New album name" -msgstr "Nýtt nafn myndbókar" - -#: mod/photos.php:1433 -msgid "Caption" -msgstr "Yfirskrift" - -#: mod/photos.php:1434 -msgid "Add a Tag" -msgstr "Bæta við merki" - -#: mod/photos.php:1434 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Til dæmis: @bob, @Barbara_Jensen, @jim@example.com, #Reykjavík #tjalda" - -#: mod/photos.php:1435 -msgid "Do not rotate" -msgstr "Ekki snúa" - -#: mod/photos.php:1436 -msgid "Rotate CW (right)" -msgstr "Snúa réttsælis (hægri)" - -#: mod/photos.php:1437 -msgid "Rotate CCW (left)" -msgstr "Snúa rangsælis (vinstri)" - -#: mod/photos.php:1471 src/Object/Post.php:304 -msgid "I like this (toggle)" -msgstr "Mér líkar þetta (kveikja/slökkva)" - -#: mod/photos.php:1472 src/Object/Post.php:305 -msgid "I don't like this (toggle)" -msgstr "Mér líkar þetta ekki (kveikja/slökkva)" - -#: mod/photos.php:1488 mod/photos.php:1527 mod/photos.php:1600 -#: mod/contacts.php:953 src/Object/Post.php:801 -msgid "This is you" -msgstr "Þetta ert þú" - -#: mod/photos.php:1490 mod/photos.php:1529 mod/photos.php:1602 -#: src/Object/Post.php:407 src/Object/Post.php:803 -msgid "Comment" -msgstr "Athugasemd" - -#: mod/photos.php:1634 -msgid "Map" -msgstr "Landakort" - -#: mod/photos.php:1704 mod/videos.php:387 -msgid "View Album" -msgstr "Skoða myndabók" - -#: mod/videos.php:139 -msgid "Do you really want to delete this video?" -msgstr "" - -#: mod/videos.php:144 -msgid "Delete Video" -msgstr "Eyða myndskeiði" - -#: mod/videos.php:207 -msgid "No videos selected" -msgstr "Engin myndskeið valin" - -#: mod/videos.php:396 -msgid "Recent Videos" -msgstr "Nýleg myndskeið" - -#: mod/videos.php:398 -msgid "Upload New Videos" -msgstr "Senda inn ný myndskeið" - -#: mod/cal.php:142 mod/display.php:316 mod/profile.php:174 -msgid "Access to this profile has been restricted." -msgstr "Aðgangur að þessari forsíðu hefur verið heftur." - -#: mod/cal.php:274 mod/events.php:391 view/theme/frio/theme.php:263 -#: view/theme/frio/theme.php:267 src/Content/Nav.php:104 -#: src/Content/Nav.php:170 src/Model/Profile.php:922 src/Model/Profile.php:933 -msgid "Events" -msgstr "Atburðir" - -#: mod/cal.php:275 mod/events.php:392 -msgid "View" -msgstr "Skoða" - -#: mod/cal.php:276 mod/events.php:394 -msgid "Previous" -msgstr "Fyrra" - -#: mod/cal.php:277 mod/events.php:395 mod/install.php:156 -msgid "Next" -msgstr "Næsta" - -#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412 -msgid "today" -msgstr "í dag" - -#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304 -#: src/Model/Event.php:413 -msgid "month" -msgstr "mánuður" - -#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305 -#: src/Model/Event.php:414 -msgid "week" -msgstr "vika" - -#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306 -#: src/Model/Event.php:415 -msgid "day" -msgstr "dagur" - -#: mod/cal.php:284 mod/events.php:404 -msgid "list" -msgstr "listi" - -#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214 -msgid "User not found" -msgstr "Notandi fannst ekki" - -#: mod/cal.php:313 -msgid "This calendar format is not supported" -msgstr "" - -#: mod/cal.php:315 -msgid "No exportable data found" -msgstr "" - -#: mod/cal.php:332 -msgid "calendar" -msgstr "dagatal" - -#: mod/contacts.php:71 mod/notifications.php:259 src/Model/Profile.php:516 -msgid "Network:" -msgstr "Netkerfi:" - -#: mod/contacts.php:157 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "" -msgstr[1] "" - -#: mod/contacts.php:184 mod/contacts.php:400 -msgid "Could not access contact record." -msgstr "Tókst ekki að ná í uppl. um tengilið" - -#: mod/contacts.php:194 -msgid "Could not locate selected profile." -msgstr "Tókst ekki að staðsetja valinn forsíðu" - -#: mod/contacts.php:228 -msgid "Contact updated." -msgstr "Tengiliður uppfærður" - -#: mod/contacts.php:230 mod/dfrn_request.php:415 -msgid "Failed to update contact record." -msgstr "Ekki tókst að uppfæra tengiliðs skrá." - -#: mod/contacts.php:421 -msgid "Contact has been blocked" -msgstr "Lokað á tengilið" - -#: mod/contacts.php:421 -msgid "Contact has been unblocked" -msgstr "Opnað á tengilið" - -#: mod/contacts.php:432 -msgid "Contact has been ignored" -msgstr "Tengiliður hunsaður" - -#: mod/contacts.php:432 -msgid "Contact has been unignored" -msgstr "Tengiliður afhunsaður" - -#: mod/contacts.php:443 -msgid "Contact has been archived" -msgstr "Tengiliður settur í geymslu" - -#: mod/contacts.php:443 -msgid "Contact has been unarchived" -msgstr "Tengiliður tekinn úr geymslu" - -#: mod/contacts.php:467 -msgid "Drop contact" -msgstr "Henda tengilið" - -#: mod/contacts.php:470 mod/contacts.php:823 -msgid "Do you really want to delete this contact?" -msgstr "Viltu í alvörunni eyða þessum tengilið?" - -#: mod/contacts.php:488 -msgid "Contact has been removed." -msgstr "Tengiliður fjarlægður" - -#: mod/contacts.php:519 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Þú ert gagnkvæmur vinur %s" - -#: mod/contacts.php:523 -#, php-format -msgid "You are sharing with %s" -msgstr "Þú ert að deila með %s" - -#: mod/contacts.php:527 -#, php-format -msgid "%s is sharing with you" -msgstr "%s er að deila með þér" - -#: mod/contacts.php:547 -msgid "Private communications are not available for this contact." -msgstr "Einkasamtal ekki í boði fyrir þennan" - -#: mod/contacts.php:549 -msgid "Never" -msgstr "Aldrei" - -#: mod/contacts.php:552 -msgid "(Update was successful)" -msgstr "(uppfærsla tókst)" - -#: mod/contacts.php:552 -msgid "(Update was not successful)" -msgstr "(uppfærsla tókst ekki)" - -#: mod/contacts.php:554 mod/contacts.php:992 -msgid "Suggest friends" -msgstr "Stinga uppá vinum" - -#: mod/contacts.php:558 -#, php-format -msgid "Network type: %s" -msgstr "Net tegund: %s" - -#: mod/contacts.php:563 -msgid "Communications lost with this contact!" -msgstr "" - -#: mod/contacts.php:569 -msgid "Fetch further information for feeds" -msgstr "Ná í ítarlegri upplýsingar um fréttaveitur" - -#: mod/contacts.php:571 -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 "" - -#: mod/contacts.php:572 mod/admin.php:1288 mod/admin.php:1450 -#: mod/admin.php:1460 -msgid "Disabled" -msgstr "Óvirkt" - -#: mod/contacts.php:573 -msgid "Fetch information" -msgstr "Ná í upplýsingar" - -#: mod/contacts.php:574 -msgid "Fetch keywords" -msgstr "Ná í stikkorð" - -#: mod/contacts.php:575 -msgid "Fetch information and keywords" -msgstr "Ná í upplýsingar og stikkorð" - -#: mod/contacts.php:599 mod/unfollow.php:100 -msgid "Disconnect/Unfollow" -msgstr "" - -#: mod/contacts.php:608 -msgid "Contact" -msgstr "Tengiliður" - -#: mod/contacts.php:611 -msgid "Profile Visibility" -msgstr "Forsíðu sjáanleiki" - -#: mod/contacts.php:612 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Veldu forsíðu sem á að birtast %s þegar hann skoðaður með öruggum hætti" - -#: mod/contacts.php:613 -msgid "Contact Information / Notes" -msgstr "Uppl. um tengilið / minnisatriði" - -#: mod/contacts.php:614 -msgid "Their personal note" -msgstr "" - -#: mod/contacts.php:616 -msgid "Edit contact notes" -msgstr "Breyta minnispunktum tengiliðs " - -#: mod/contacts.php:620 -msgid "Block/Unblock contact" -msgstr "útiloka/opna á tengilið" - -#: mod/contacts.php:621 -msgid "Ignore contact" -msgstr "Hunsa tengilið" - -#: mod/contacts.php:622 -msgid "Repair URL settings" -msgstr "Gera við stillingar á slóðum" - -#: mod/contacts.php:623 -msgid "View conversations" -msgstr "Skoða samtöl" - -#: mod/contacts.php:628 -msgid "Last update:" -msgstr "Síðasta uppfærsla:" - -#: mod/contacts.php:630 -msgid "Update public posts" -msgstr "Uppfæra opinberar færslur" - -#: mod/contacts.php:632 mod/contacts.php:1002 -msgid "Update now" -msgstr "Uppfæra núna" - -#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011 -#: mod/admin.php:489 mod/admin.php:1829 -msgid "Unblock" -msgstr "Afbanna" - -#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011 -#: mod/admin.php:488 mod/admin.php:1828 -msgid "Block" -msgstr "Útiloka" - -#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019 -msgid "Unignore" -msgstr "Byrja að fylgjast með á ný" - -#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019 -#: mod/notifications.php:62 mod/notifications.php:181 -#: mod/notifications.php:264 -msgid "Ignore" -msgstr "Hunsa" - -#: mod/contacts.php:642 -msgid "Currently blocked" -msgstr "Útilokaður sem stendur" - -#: mod/contacts.php:643 -msgid "Currently ignored" -msgstr "Hunsaður sem stendur" - -#: mod/contacts.php:644 -msgid "Currently archived" -msgstr "Í geymslu" - -#: mod/contacts.php:645 -msgid "Awaiting connection acknowledge" -msgstr "" - -#: mod/contacts.php:646 mod/notifications.php:175 mod/notifications.php:253 -msgid "Hide this contact from others" -msgstr "Gera þennan notanda ósýnilegan öðrum" - -#: mod/contacts.php:646 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Svör eða \"líkar við\" á opinberar færslur þínar geta mögulega verið sýnileg öðrum" - -#: mod/contacts.php:647 -msgid "Notification for new posts" -msgstr "" - -#: mod/contacts.php:647 -msgid "Send a notification of every new post of this contact" -msgstr "" - -#: mod/contacts.php:650 -msgid "Blacklisted keywords" -msgstr "" - -#: mod/contacts.php:650 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: mod/contacts.php:656 mod/unfollow.php:122 mod/follow.php:166 -#: mod/admin.php:494 mod/admin.php:504 mod/notifications.php:256 -msgid "Profile URL" -msgstr "Slóð á forsíðu" - -#: mod/contacts.php:660 mod/events.php:518 mod/directory.php:148 -#: mod/notifications.php:246 src/Model/Event.php:60 src/Model/Event.php:85 -#: src/Model/Event.php:421 src/Model/Event.php:900 src/Model/Profile.php:413 -msgid "Location:" -msgstr "Staðsetning:" - -#: mod/contacts.php:662 src/Model/Profile.php:420 -msgid "XMPP:" -msgstr "XMPP:" - -#: mod/contacts.php:664 mod/directory.php:154 mod/notifications.php:248 -#: src/Model/Profile.php:419 src/Model/Profile.php:804 -msgid "About:" -msgstr "Um:" - -#: mod/contacts.php:666 mod/follow.php:174 mod/notifications.php:250 -#: src/Model/Profile.php:792 -msgid "Tags:" -msgstr "Merki:" - -#: mod/contacts.php:667 -msgid "Actions" -msgstr "Aðgerðir" - -#: mod/contacts.php:669 mod/contacts.php:855 view/theme/frio/theme.php:259 -#: src/Content/Nav.php:100 src/Model/Profile.php:886 -msgid "Status" -msgstr "Staða" - -#: mod/contacts.php:670 -msgid "Contact Settings" -msgstr "Stillingar tengiliðar" - -#: mod/contacts.php:711 -msgid "Suggestions" -msgstr "Uppástungur" - -#: mod/contacts.php:714 -msgid "Suggest potential friends" -msgstr "Stinga uppá mögulegum vinum" - -#: mod/contacts.php:719 mod/group.php:215 -msgid "All Contacts" -msgstr "Allir tengiliðir" - -#: mod/contacts.php:722 -msgid "Show all contacts" -msgstr "Sýna alla tengiliði" - -#: mod/contacts.php:727 -msgid "Unblocked" -msgstr "Afhunsað" - -#: mod/contacts.php:730 -msgid "Only show unblocked contacts" -msgstr "" - -#: mod/contacts.php:735 -msgid "Blocked" -msgstr "Útilokað" - -#: mod/contacts.php:738 -msgid "Only show blocked contacts" -msgstr "" - -#: mod/contacts.php:743 -msgid "Ignored" -msgstr "Hunsa" - -#: mod/contacts.php:746 -msgid "Only show ignored contacts" -msgstr "" - -#: mod/contacts.php:751 -msgid "Archived" -msgstr "Í geymslu" - -#: mod/contacts.php:754 -msgid "Only show archived contacts" -msgstr "Aðeins sýna geymda tengiliði" - -#: mod/contacts.php:759 -msgid "Hidden" -msgstr "Falinn" - -#: mod/contacts.php:762 -msgid "Only show hidden contacts" -msgstr "Aðeins sýna falda tengiliði" - -#: mod/contacts.php:818 -msgid "Search your contacts" -msgstr "Leita í þínum vinum" - -#: mod/contacts.php:820 mod/directory.php:209 view/theme/vier/theme.php:203 -#: src/Content/Widget.php:63 -msgid "Find" -msgstr "Finna" - -#: mod/contacts.php:826 mod/settings.php:169 mod/settings.php:695 -msgid "Update" -msgstr "Uppfæra" - -#: mod/contacts.php:829 mod/contacts.php:1027 -msgid "Archive" -msgstr "Setja í geymslu" - -#: mod/contacts.php:829 mod/contacts.php:1027 -msgid "Unarchive" -msgstr "Taka úr geymslu" - -#: mod/contacts.php:832 -msgid "Batch Actions" -msgstr "Magnaðgerðir" - -#: mod/contacts.php:858 mod/unfollow.php:132 mod/follow.php:186 -#: src/Model/Profile.php:889 -msgid "Status Messages and Posts" -msgstr "Stöðu skilaboð og færslur" - -#: mod/contacts.php:866 src/Model/Profile.php:897 -msgid "Profile Details" -msgstr "Forsíðu upplýsingar" - -#: mod/contacts.php:878 -msgid "View all contacts" -msgstr "Skoða alla tengiliði" - -#: mod/contacts.php:889 -msgid "View all common friends" -msgstr "Skoða alla sameiginlega vini" - -#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1363 -#: src/Model/Profile.php:863 -msgid "Advanced" -msgstr "Flóknari" - -#: mod/contacts.php:898 -msgid "Advanced Contact Settings" -msgstr "" - -#: mod/contacts.php:930 -msgid "Mutual Friendship" -msgstr "Sameiginlegur vinskapur" - -#: mod/contacts.php:934 -msgid "is a fan of yours" -msgstr "er fylgjandi þinn" - -#: mod/contacts.php:938 -msgid "you are a fan of" -msgstr "þú er fylgjandi" - -#: mod/contacts.php:1013 -msgid "Toggle Blocked status" -msgstr "" - -#: mod/contacts.php:1021 -msgid "Toggle Ignored status" -msgstr "" - -#: mod/contacts.php:1029 -msgid "Toggle Archive status" -msgstr "" - -#: mod/contacts.php:1037 -msgid "Delete contact" -msgstr "Eyða tengilið" - -#: mod/delegate.php:37 -msgid "Parent user not found." -msgstr "" - -#: mod/delegate.php:144 -msgid "No parent user" -msgstr "" - -#: mod/delegate.php:159 -msgid "Parent Password:" -msgstr "" - -#: mod/delegate.php:159 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "" - -#: mod/delegate.php:164 -msgid "Parent User" -msgstr "" - -#: mod/delegate.php:167 -msgid "" -"Parent users have total control about this account, including the account " -"settings. Please double check whom you give this access." -msgstr "" - -#: mod/delegate.php:168 mod/admin.php:311 mod/admin.php:1358 -#: mod/admin.php:1994 mod/admin.php:2247 mod/admin.php:2321 mod/admin.php:2468 -#: mod/settings.php:669 mod/settings.php:776 mod/settings.php:864 -#: mod/settings.php:953 mod/settings.php:1183 -msgid "Save Settings" -msgstr "Vista stillingar" - -#: mod/delegate.php:169 src/Content/Nav.php:205 -msgid "Delegate Page Management" -msgstr "" - -#: mod/delegate.php:170 -msgid "Delegates" -msgstr "" - -#: mod/delegate.php:172 -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 "" - -#: mod/delegate.php:173 -msgid "Existing Page Delegates" -msgstr "" - -#: mod/delegate.php:175 -msgid "Potential Delegates" -msgstr "" - -#: mod/delegate.php:178 -msgid "Add" -msgstr "Bæta við" - -#: mod/delegate.php:179 -msgid "No entries." -msgstr "Engar færslur." - -#: mod/events.php:105 mod/events.php:107 -msgid "Event can not end before it has started." -msgstr "" - -#: mod/events.php:114 mod/events.php:116 -msgid "Event title and start time are required." -msgstr "" - -#: mod/events.php:393 -msgid "Create New Event" -msgstr "Stofna nýjan atburð" - -#: mod/events.php:506 -msgid "Event details" -msgstr "Nánar um atburð" - -#: mod/events.php:507 -msgid "Starting date and Title are required." -msgstr "" - -#: mod/events.php:508 mod/events.php:509 -msgid "Event Starts:" -msgstr "Atburður hefst:" - -#: mod/events.php:508 mod/events.php:520 mod/profiles.php:607 -msgid "Required" -msgstr "Nauðsynlegt" - -#: mod/events.php:510 mod/events.php:526 -msgid "Finish date/time is not known or not relevant" -msgstr "Loka dagsetning/tímasetning ekki vituð eða skiptir ekki máli" - -#: mod/events.php:512 mod/events.php:513 -msgid "Event Finishes:" -msgstr "Atburður klárar:" - -#: mod/events.php:514 mod/events.php:527 -msgid "Adjust for viewer timezone" -msgstr "Heimfæra á tímabelti áhorfanda" - -#: mod/events.php:516 -msgid "Description:" -msgstr "Lýsing:" - -#: mod/events.php:520 mod/events.php:522 -msgid "Title:" -msgstr "Titill:" - -#: mod/events.php:523 mod/events.php:524 -msgid "Share this event" -msgstr "Deila þessum atburði" - -#: mod/events.php:531 src/Model/Profile.php:862 -msgid "Basic" -msgstr "Einfalt" - -#: mod/events.php:552 -msgid "Failed to remove event" -msgstr "" - -#: mod/events.php:554 -msgid "Event removed" -msgstr "" - -#: mod/feedtest.php:20 -msgid "You must be logged in to use this module" -msgstr "" - -#: mod/feedtest.php:48 -msgid "Source URL" -msgstr "Upprunaslóð" - -#: mod/oexchange.php:30 -msgid "Post successful." -msgstr "Melding tókst." - -#: mod/ostatus_subscribe.php:21 -msgid "Subscribing to OStatus contacts" -msgstr "" - -#: mod/ostatus_subscribe.php:33 -msgid "No contact provided." -msgstr "Enginn tengiliður uppgefinn." - -#: mod/ostatus_subscribe.php:40 -msgid "Couldn't fetch information for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:50 -msgid "Couldn't fetch friends for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:78 -msgid "success" -msgstr "tókst" - -#: mod/ostatus_subscribe.php:80 -msgid "failed" -msgstr "mistókst" - -#: mod/ostatus_subscribe.php:83 src/Object/Post.php:287 -msgid "ignored" -msgstr "hunsað" - -#: mod/profile_photo.php:55 -msgid "Image uploaded but image cropping failed." -msgstr "Tókst að hala upp mynd en afskurður tókst ekki." - -#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104 -#: mod/profile_photo.php:315 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Myndar minnkun [%s] tókst ekki." - -#: mod/profile_photo.php:125 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Ýta þarf á " - -#: mod/profile_photo.php:134 -msgid "Unable to process image" -msgstr "Ekki tókst að vinna mynd" - -#: mod/profile_photo.php:247 -msgid "Upload File:" -msgstr "Hlaða upp skrá:" - -#: mod/profile_photo.php:248 -msgid "Select a profile:" -msgstr "" - -#: mod/profile_photo.php:253 -msgid "or" -msgstr "eða" - -#: mod/profile_photo.php:253 -msgid "skip this step" -msgstr "sleppa þessu skrefi" - -#: mod/profile_photo.php:253 -msgid "select a photo from your photo albums" -msgstr "velja mynd í myndabókum" - -#: mod/profile_photo.php:266 -msgid "Crop Image" -msgstr "Skera af mynd" - -#: mod/profile_photo.php:267 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Stilltu afskurð fyrir besta birtingu." - -#: mod/profile_photo.php:269 -msgid "Done Editing" -msgstr "Breyting kláruð" - -#: mod/profile_photo.php:305 -msgid "Image uploaded successfully." -msgstr "Upphölun á mynd tóks." - -#: mod/unfollow.php:34 -msgid "Contact wasn't found or can't be unfollowed." -msgstr "" - -#: mod/unfollow.php:47 -msgid "Contact unfollowed" -msgstr "" - -#: mod/unfollow.php:65 mod/follow.php:62 mod/dfrn_request.php:657 -msgid "Submit Request" -msgstr "Senda beiðni" - -#: mod/unfollow.php:73 -msgid "You aren't a friend of this contact." -msgstr "" - -#: mod/unfollow.php:79 -msgid "Unfollowing is currently not supported by your network." -msgstr "" - -#: mod/unfollow.php:113 mod/follow.php:157 mod/dfrn_request.php:655 -msgid "Your Identity Address:" -msgstr "Auðkennisnetfang þitt:" - -#: mod/directory.php:151 mod/notifications.php:252 src/Model/Profile.php:416 -#: src/Model/Profile.php:743 -msgid "Gender:" -msgstr "Kyn:" - -#: mod/directory.php:152 src/Model/Profile.php:417 src/Model/Profile.php:767 -msgid "Status:" -msgstr "Staða:" - -#: mod/directory.php:153 src/Model/Profile.php:418 src/Model/Profile.php:784 -msgid "Homepage:" -msgstr "Heimasíða:" - -#: mod/directory.php:202 view/theme/vier/theme.php:208 -#: src/Content/Widget.php:68 -msgid "Global Directory" -msgstr "Alheimstengiliðaskrá" - -#: mod/directory.php:204 -msgid "Find on this site" -msgstr "Leita á þessum vef" - -#: mod/directory.php:206 -msgid "Results for:" -msgstr "Niðurstöður fyrir:" - -#: mod/directory.php:208 -msgid "Site Directory" -msgstr "Skrá yfir tengiliði á þessum vef" - -#: mod/directory.php:213 -msgid "No entries (some entries may be hidden)." -msgstr "Engar færslur (sumar geta verið faldar)." - -#: mod/dirfind.php:49 -#, php-format -msgid "People Search - %s" -msgstr "Leita að fólki - %s" - -#: mod/dirfind.php:60 -#, php-format -msgid "Forum Search - %s" -msgstr "Leita á spjallsvæði - %s" - -#: mod/follow.php:45 -msgid "The contact could not be added." -msgstr "" - -#: mod/follow.php:73 -msgid "You already added this contact." -msgstr "" - -#: mod/follow.php:83 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:90 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:97 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "" - -#: mod/follow.php:149 mod/dfrn_request.php:647 -msgid "Please answer the following:" -msgstr "Vinnsamlegast svaraðu eftirfarandi:" - -#: mod/follow.php:150 mod/dfrn_request.php:648 -#, php-format -msgid "Does %s know you?" -msgstr "Þekkir %s þig?" - -#: mod/follow.php:151 mod/dfrn_request.php:649 -msgid "Add a personal note:" -msgstr "Bæta við persónulegri athugasemd" - -#: mod/lostpass.php:27 +#: mod/lostpass.php:40 msgid "No valid account found." msgstr "Engin gildur aðgangur fannst." -#: mod/lostpass.php:39 +#: mod/lostpass.php:52 msgid "Password reset request issued. Check your email." msgstr "Gefin var beiðni um breytingu á lykilorði. Opnaðu tölvupóstinn þinn." -#: mod/lostpass.php:45 +#: mod/lostpass.php:58 #, php-format msgid "" "\n" @@ -3069,7 +113,7 @@ msgid "" "\t\tissued this request." msgstr "" -#: mod/lostpass.php:56 +#: mod/lostpass.php:69 #, php-format msgid "" "\n" @@ -3086,66 +130,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "" -#: mod/lostpass.php:73 +#: mod/lostpass.php:84 #, php-format msgid "Password reset requested at %s" msgstr "Beðið var um endurstillingu lykilorðs %s" -#: mod/lostpass.php:89 +#: mod/lostpass.php:100 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Ekki var hægt að sannreyna beiðni. (Það getur verið að þú hafir þegar verið búin/n að senda hana.) Endurstilling á lykilorði tókst ekki." -#: mod/lostpass.php:102 +#: mod/lostpass.php:113 msgid "Request has expired, please make a new one." msgstr "" -#: mod/lostpass.php:117 +#: mod/lostpass.php:128 msgid "Forgot your Password?" msgstr "Gleymdir þú lykilorði þínu?" -#: mod/lostpass.php:118 +#: mod/lostpass.php:129 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Sláðu inn tölvupóstfangið þitt til að endurstilla aðgangsorðið og fá leiðbeiningar sendar með tölvupósti." -#: mod/lostpass.php:119 src/Module/Login.php:315 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " msgstr "Gælunafn eða tölvupóstfang: " -#: mod/lostpass.php:120 +#: mod/lostpass.php:131 msgid "Reset" msgstr "Endurstilla" -#: mod/lostpass.php:136 src/Module/Login.php:327 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 msgid "Password Reset" msgstr "Endurstilling aðgangsorðs" -#: mod/lostpass.php:137 +#: mod/lostpass.php:147 msgid "Your password has been reset as requested." msgstr "Aðgangsorðið þitt hefur verið endurstilt." -#: mod/lostpass.php:138 +#: mod/lostpass.php:148 msgid "Your new password is" msgstr "Nýja aðgangsorð þitt er " -#: mod/lostpass.php:139 +#: mod/lostpass.php:149 msgid "Save or copy your new password - and then" msgstr "Vistaðu eða afritaðu nýja aðgangsorðið - og" -#: mod/lostpass.php:140 +#: mod/lostpass.php:150 msgid "click here to login" msgstr "smelltu síðan hér til að skrá þig inn" -#: mod/lostpass.php:141 +#: mod/lostpass.php:151 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Þú getur breytt aðgangsorðinu þínu á Stillingar síðunni eftir að þú hefur skráð þig inn." -#: mod/lostpass.php:149 +#: mod/lostpass.php:155 +msgid "Your password has been reset." +msgstr "" + +#: mod/lostpass.php:158 #, php-format msgid "" "\n" @@ -3156,7 +204,7 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:155 +#: mod/lostpass.php:164 #, php-format msgid "" "\n" @@ -3170,5639 +218,2841 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:169 +#: mod/lostpass.php:176 #, php-format msgid "Your password has been changed at %s" msgstr "Aðgangsorðinu þínu var breytt í %s" -#: mod/babel.php:22 -msgid "Source input" -msgstr "" - -#: mod/babel.php:28 -msgid "BBCode::toPlaintext" -msgstr "" - -#: mod/babel.php:34 -msgid "BBCode::convert (raw HTML)" -msgstr "" - -#: mod/babel.php:39 -msgid "BBCode::convert" -msgstr "" - -#: mod/babel.php:45 -msgid "BBCode::convert => HTML::toBBCode" -msgstr "" - -#: mod/babel.php:51 -msgid "BBCode::toMarkdown" -msgstr "" - -#: mod/babel.php:57 -msgid "BBCode::toMarkdown => Markdown::convert" -msgstr "" - -#: mod/babel.php:63 -msgid "BBCode::toMarkdown => Markdown::toBBCode" -msgstr "" - -#: mod/babel.php:69 -msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -msgstr "" - -#: mod/babel.php:76 -msgid "Source input \\x28Diaspora format\\x29" -msgstr "" - -#: mod/babel.php:82 -msgid "Markdown::toBBCode" -msgstr "Markdown::toBBCode" - -#: mod/babel.php:89 -msgid "Raw HTML input" -msgstr "Hrátt HTML-ílag" - -#: mod/babel.php:94 -msgid "HTML Input" -msgstr "HTML Input" - -#: mod/babel.php:100 -msgid "HTML::toBBCode" -msgstr "HTML::toBBCode" - -#: mod/babel.php:106 -msgid "HTML::toPlaintext" -msgstr "HTML::toPlaintext" - -#: mod/babel.php:114 -msgid "Source text" -msgstr "Frumtexti" - -#: mod/babel.php:115 -msgid "BBCode" -msgstr "BBCode" - -#: mod/babel.php:116 -msgid "Markdown" -msgstr "Markdown" - -#: mod/babel.php:117 -msgid "HTML" -msgstr "HTML" - -#: mod/community.php:51 -msgid "Community option not available." -msgstr "" - -#: mod/community.php:68 -msgid "Not available." -msgstr "Ekki tiltækt." - -#: mod/community.php:81 -msgid "Local Community" -msgstr "" - -#: mod/community.php:84 -msgid "Posts from local users on this server" -msgstr "" - -#: mod/community.php:92 -msgid "Global Community" -msgstr "" - -#: mod/community.php:95 -msgid "Posts from users of the whole federated network" -msgstr "" - -#: mod/community.php:185 -msgid "" -"This community stream shows all public posts received by this node. They may" -" not reflect the opinions of this node’s users." -msgstr "" - -#: mod/friendica.php:77 -msgid "This is Friendica, version" -msgstr "Þetta er Friendica útgáfa" - -#: mod/friendica.php:78 -msgid "running at web location" -msgstr "Keyrir á slóð" - -#: mod/friendica.php:82 -msgid "" -"Please visit Friendi.ca to learn more " -"about the Friendica project." -msgstr "" - -#: mod/friendica.php:86 -msgid "Bug reports and issues: please visit" -msgstr "Villu tilkynningar og vandamál: endilega skoða" - -#: mod/friendica.php:86 -msgid "the bugtracker at github" -msgstr "villuskráningu á GitHub" - -#: mod/friendica.php:89 -msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -msgstr "" - -#: mod/friendica.php:103 -msgid "Installed addons/apps:" -msgstr "" - -#: mod/friendica.php:117 -msgid "No installed addons/apps" -msgstr "" - -#: mod/friendica.php:122 -#, php-format -msgid "Read about the Terms of Service of this node." -msgstr "" - -#: mod/friendica.php:127 -msgid "On this server the following remote servers are blocked." -msgstr "" - -#: mod/friendica.php:128 mod/admin.php:357 mod/admin.php:375 -#: mod/dfrn_request.php:347 src/Model/Contact.php:1281 -msgid "Blocked domain" -msgstr "Útilokað lén" - -#: mod/friendica.php:128 mod/admin.php:358 mod/admin.php:376 -msgid "Reason for the block" -msgstr "" - -#: mod/invite.php:33 -msgid "Total invitation limit exceeded." -msgstr "" - -#: mod/invite.php:55 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Ekki gilt tölvupóstfang." - -#: mod/invite.php:87 -msgid "Please join us on Friendica" -msgstr "Komdu í hópinn á Friendica" - -#: mod/invite.php:96 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: mod/invite.php:100 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Skilaboð komust ekki til skila." - -#: mod/invite.php:104 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d skilaboð send." -msgstr[1] "%d skilaboð send" - -#: mod/invite.php:122 -msgid "You have no more invitations available" -msgstr "Þú hefur ekki fleiri boðskort." - -#: mod/invite.php:130 -#, 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 "" - -#: mod/invite.php:132 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "" - -#: mod/invite.php:133 -#, 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 "" - -#: mod/invite.php:137 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "" - -#: mod/invite.php:141 -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 "" - -#: mod/invite.php:140 -#, php-format -msgid "To accept this invitation, please visit and register at %s." -msgstr "" - -#: mod/invite.php:147 -msgid "Send invitations" -msgstr "Senda kynningar" - -#: mod/invite.php:148 -msgid "Enter email addresses, one per line:" -msgstr "Settu inn tölvupóstföng, eitt í hverja línu:" - -#: mod/invite.php:149 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "" - -#: mod/invite.php:151 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Þú þarft að nota eftirfarandi boðskorta auðkenni: $invite_code" - -#: mod/invite.php:151 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Þegar þú hefur nýskráð þig, hafðu samband við mig gegnum síðuna mína á:" - -#: mod/invite.php:153 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendi.ca" -msgstr "" - -#: mod/network.php:202 src/Model/Group.php:413 -msgid "add" -msgstr "bæta við" - -#: mod/network.php:547 -#, php-format -msgid "" -"Warning: This group contains %s member from a network that doesn't allow non" -" public messages." -msgid_plural "" -"Warning: This group contains %s members from a network that doesn't allow " -"non public messages." -msgstr[0] "" -msgstr[1] "" - -#: mod/network.php:550 -msgid "Messages in this group won't be send to these receivers." -msgstr "" - -#: mod/network.php:618 -msgid "No such group" -msgstr "Enginn slíkur hópur" - -#: mod/network.php:639 mod/group.php:216 -msgid "Group is empty" -msgstr "Hópur er tómur" - -#: mod/network.php:643 -#, php-format -msgid "Group: %s" -msgstr "Hópur: %s" - -#: mod/network.php:669 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Einka skilaboð send á þennan notanda eiga á hættu að verða opinber." - -#: mod/network.php:672 -msgid "Invalid contact." -msgstr "Ógildur tengiliður." - -#: mod/network.php:937 -msgid "Commented Order" -msgstr "Athugasemdar röð" - -#: mod/network.php:940 -msgid "Sort by Comment Date" -msgstr "Raða eftir umræðu dagsetningu" - -#: mod/network.php:945 -msgid "Posted Order" -msgstr "Færlsu röð" - -#: mod/network.php:948 -msgid "Sort by Post Date" -msgstr "Raða eftir færslu dagsetningu" - -#: mod/network.php:956 mod/profiles.php:594 -#: src/Core/NotificationsManager.php:185 -msgid "Personal" -msgstr "Einka" - -#: mod/network.php:959 -msgid "Posts that mention or involve you" -msgstr "Færslur sem tengjast þér" - -#: mod/network.php:967 -msgid "New" -msgstr "Nýtt" - -#: mod/network.php:970 -msgid "Activity Stream - by date" -msgstr "Færslu straumur - raðað eftir dagsetningu" - -#: mod/network.php:978 -msgid "Shared Links" -msgstr "Sameignartenglar" - -#: mod/network.php:981 -msgid "Interesting Links" -msgstr "Áhugaverðir tenglar" - -#: mod/network.php:989 -msgid "Starred" -msgstr "Stjörnumerkt" - -#: mod/network.php:992 -msgid "Favourite Posts" -msgstr "Uppáhalds færslur" - -#: mod/crepair.php:87 -msgid "Contact settings applied." -msgstr "Stillingar tengiliðs uppfærðar." - -#: mod/crepair.php:89 -msgid "Contact update failed." -msgstr "Uppfærsla tengiliðs mistókst." - -#: mod/crepair.php:114 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "AÐVÖRUN: Þetta er mjög flókið og ef þú setur inn vitlausar upplýsingar þá munu samskipti við þennan tengilið hætta að virka." - -#: mod/crepair.php:115 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Notaðu \"Til baka\" hnappinn núna ef þú ert ekki viss um hvað þú eigir að gera á þessari síðu." - -#: mod/crepair.php:129 mod/crepair.php:131 -msgid "No mirroring" -msgstr "" - -#: mod/crepair.php:129 -msgid "Mirror as forwarded posting" -msgstr "" - -#: mod/crepair.php:129 mod/crepair.php:131 -msgid "Mirror as my own posting" -msgstr "" - -#: mod/crepair.php:144 -msgid "Return to contact editor" -msgstr "Fara til baka í tengiliðasýsl" - -#: mod/crepair.php:146 -msgid "Refetch contact data" -msgstr "" - -#: mod/crepair.php:149 -msgid "Remote Self" -msgstr "" - -#: mod/crepair.php:152 -msgid "Mirror postings from this contact" -msgstr "" - -#: mod/crepair.php:154 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - -#: mod/crepair.php:158 mod/admin.php:494 mod/admin.php:1811 mod/admin.php:1822 -#: mod/admin.php:1835 mod/admin.php:1851 mod/settings.php:671 -#: mod/settings.php:697 -msgid "Name" -msgstr "Nafn" - -#: mod/crepair.php:159 -msgid "Account Nickname" -msgstr "Gælunafn notanda" - -#: mod/crepair.php:160 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Merkjanafn - yfirskrifar Nafn/Gælunafn" - -#: mod/crepair.php:161 -msgid "Account URL" -msgstr "Heimasíða notanda" - -#: mod/crepair.php:162 -msgid "Friend Request URL" -msgstr "Slóð vinabeiðnar" - -#: mod/crepair.php:163 -msgid "Friend Confirm URL" -msgstr "Slóð vina staðfestingar " - -#: mod/crepair.php:164 -msgid "Notification Endpoint URL" -msgstr "Slóð loka tilkynningar" - -#: mod/crepair.php:165 -msgid "Poll/Feed URL" -msgstr "Slóð á könnun/fréttastraum" - -#: mod/crepair.php:166 -msgid "New photo from this URL" -msgstr "Ný mynd frá slóð" - -#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:539 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "" - -#: mod/help.php:48 -msgid "Help:" -msgstr "Hjálp:" - -#: mod/help.php:54 view/theme/vier/theme.php:297 src/Content/Nav.php:134 -msgid "Help" -msgstr "Hjálp" - -#: mod/help.php:63 index.php:317 -msgid "Page not found." -msgstr "Síða fannst ekki." - -#: mod/install.php:87 -msgid "Friendica Communications Server - Setup" -msgstr "" - -#: mod/install.php:93 -msgid "Could not connect to database." -msgstr "Gat ekki tengst gagnagrunn." - -#: mod/install.php:97 -msgid "Could not create table." -msgstr "Gat ekki búið til töflu." - -#: mod/install.php:103 -msgid "Your Friendica site database has been installed." -msgstr "Friendica gagnagrunnurinn þinn hefur verið uppsettur." - -#: mod/install.php:108 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Þú þarft mögulega að keyra inn skránna \"database.sql\" handvirkt með phpmyadmin eða mysql." - -#: mod/install.php:109 mod/install.php:155 mod/install.php:267 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Lestu skrána \"INSTALL.txt\"." - -#: mod/install.php:121 -msgid "Database already in use." -msgstr "Gagnagrunnur er þegar í notkun." - -#: mod/install.php:152 -msgid "System check" -msgstr "Kerfis prófun" - -#: mod/install.php:157 -msgid "Check again" -msgstr "Prófa aftur" - -#: mod/install.php:177 -msgid "Database connection" -msgstr "Gangagrunns tenging" - -#: mod/install.php:178 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Til að setja upp Friendica þurfum við að vita hvernig á að tengjast gagnagrunninum þínum." - -#: mod/install.php:179 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Hafðu samband við hýsingaraðilann þinn eða kerfisstjóra ef þú hefur spurningar varðandi þessar stillingar." - -#: mod/install.php:180 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Gagnagrunnurinn sem þú bendir á þarf þegar að vera til. Ef ekki þá þarf að stofna hann áður en haldið er áfram." - -#: mod/install.php:184 -msgid "Database Server Name" -msgstr "Vélanafn gagangrunns" - -#: mod/install.php:185 -msgid "Database Login Name" -msgstr "Notendanafn í gagnagrunn" - -#: mod/install.php:186 -msgid "Database Login Password" -msgstr "Aðgangsorð í gagnagrunns" - -#: mod/install.php:186 -msgid "For security reasons the password must not be empty" -msgstr "" - -#: mod/install.php:187 -msgid "Database Name" -msgstr "Nafn gagnagrunns" - -#: mod/install.php:188 mod/install.php:228 -msgid "Site administrator email address" -msgstr "Tölvupóstfang kerfisstjóra vefsvæðis" - -#: mod/install.php:188 mod/install.php:228 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Póstfang aðgangsins þíns verður að passa við þetta til að hægt sé að nota umsýsluvefviðmótið." - -#: mod/install.php:192 mod/install.php:231 -msgid "Please select a default timezone for your website" -msgstr "Veldu sjálfgefið tímabelti fyrir vefsíðuna" - -#: mod/install.php:218 -msgid "Site settings" -msgstr "Stillingar vefsvæðis" - -#: mod/install.php:232 -msgid "System Language:" -msgstr "Tungumál kerfis:" - -#: mod/install.php:232 -msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." -msgstr "" - -#: mod/install.php:248 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Ekki tókst að skrifa stillingaskrá gagnagrunns \".htconfig.php\". Notað meðfylgjandi texta til að búa til stillingarskrá í rót vefþjónsins." - -#: mod/install.php:265 -msgid "

    What next

    " -msgstr "" - -#: mod/install.php:266 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"worker." -msgstr "" - -#: mod/install.php:269 -#, 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 "" - -#: mod/message.php:30 src/Content/Nav.php:199 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 msgid "New Message" msgstr "Ný skilaboð" -#: mod/message.php:77 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 +msgid "No recipient selected." +msgstr "Engir viðtakendur valdir." + +#: mod/message.php:87 msgid "Unable to locate contact information." msgstr "Ekki tókst að staðsetja tengiliðs upplýsingar." -#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:196 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 +msgid "Message could not be sent." +msgstr "Ekki tókst að senda skilaboð." + +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 +msgid "Message collection failure." +msgstr "Ekki tókst að sækja skilaboð." + +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 +msgid "Discard" +msgstr "Henda" + +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" msgstr "Skilaboð" -#: mod/message.php:136 -msgid "Do you really want to delete this message?" -msgstr "Viltu virkilega eyða þessum skilaboðum?" +#: mod/message.php:148 +msgid "Conversation not found." +msgstr "" -#: mod/message.php:152 -msgid "Message deleted." -msgstr "Skilaboðum eytt." +#: mod/message.php:153 +msgid "Message was not deleted." +msgstr "" -#: mod/message.php:166 -msgid "Conversation removed." -msgstr "Samtali eytt." +#: mod/message.php:168 +msgid "Conversation was not removed." +msgstr "" -#: mod/message.php:272 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 +msgid "Please enter a link URL:" +msgstr "Sláðu inn slóð:" + +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 +msgid "Send Private Message" +msgstr "Senda einkaskilaboð" + +#: mod/message.php:191 mod/message.php:346 +msgid "To:" +msgstr "Til:" + +#: mod/message.php:192 mod/message.php:347 +msgid "Subject:" +msgstr "Efni:" + +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 +msgid "Your message:" +msgstr "Skilaboðin:" + +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "Hlaða upp mynd" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "Setja inn vefslóð" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:578 +msgid "Please wait" +msgstr "Hinkraðu aðeins" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:145 +#: src/Module/Install.php:234 src/Module/Install.php:274 +#: src/Module/Install.php:309 src/Module/Invite.php:178 +#: src/Module/Item/Compose.php:189 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Object/Post.php:1095 +#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171 +#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Senda inn" + +#: mod/message.php:223 msgid "No messages." msgstr "Engin skilaboð." -#: mod/message.php:311 +#: mod/message.php:279 msgid "Message not available." msgstr "Ekki næst í skilaboð." -#: mod/message.php:378 +#: mod/message.php:323 msgid "Delete message" msgstr "Eyða skilaboðum" -#: mod/message.php:380 mod/message.php:481 +#: mod/message.php:325 mod/message.php:456 msgid "D, d M Y - g:i A" msgstr "D, d. M Y - g:i A" -#: mod/message.php:395 mod/message.php:478 +#: mod/message.php:340 mod/message.php:453 msgid "Delete conversation" msgstr "Eyða samtali" -#: mod/message.php:397 +#: mod/message.php:342 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "" -#: mod/message.php:401 +#: mod/message.php:345 msgid "Send Reply" msgstr "Senda svar" -#: mod/message.php:452 +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "Óþekktur sendandi - %s" -#: mod/message.php:454 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "Þú og %s" -#: mod/message.php:456 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "%s og þú" -#: mod/message.php:484 +#: mod/message.php:459 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d skilaboð" msgstr[1] "%d skilaboð" -#: mod/group.php:36 -msgid "Group created." -msgstr "Hópur stofnaður" +#: mod/notes.php:52 src/Module/BaseProfile.php:108 +msgid "Personal Notes" +msgstr "Persónulegar glósur" -#: mod/group.php:42 -msgid "Could not create group." -msgstr "Gat ekki stofnað hóp." - -#: mod/group.php:56 mod/group.php:157 -msgid "Group not found." -msgstr "Hópur fannst ekki." - -#: mod/group.php:70 -msgid "Group name changed." -msgstr "Hópur endurskýrður." - -#: mod/group.php:97 -msgid "Save Group" -msgstr "Vista hóp" - -#: mod/group.php:102 -msgid "Create a group of contacts/friends." -msgstr "Stofna hóp af tengiliðum/vinum" - -#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421 -msgid "Group Name: " -msgstr "Nafn hóps: " - -#: mod/group.php:127 -msgid "Group removed." -msgstr "Hópi eytt." - -#: mod/group.php:129 -msgid "Unable to remove group." -msgstr "Ekki tókst að eyða hóp." - -#: mod/group.php:192 -msgid "Delete Group" -msgstr "Eyða hópi" - -#: mod/group.php:198 -msgid "Group Editor" -msgstr "Hópa sýslari" - -#: mod/group.php:203 -msgid "Edit Group Name" -msgstr "Breyta nafni hóps" - -#: mod/group.php:213 -msgid "Members" -msgstr "Meðlimir" - -#: mod/group.php:229 -msgid "Remove contact from group" +#: mod/notes.php:56 +msgid "Personal notes are visible only by yourself." msgstr "" -#: mod/group.php:253 -msgid "Add contact to group" +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 +msgid "Save" +msgstr "Vista" + +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." msgstr "" -#: mod/openid.php:29 -msgid "OpenID protocol error. No ID returned." -msgstr "Samskiptavilla í OpenID. Ekkert auðkenni barst." +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 +msgid "Photo Albums" +msgstr "Myndabækur" -#: mod/openid.php:66 -msgid "" -"Account not found and OpenID registration is not permitted on this site." +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 +msgid "Recent Photos" +msgstr "Nýlegar myndir" + +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 +msgid "Upload New Photos" +msgstr "Hlaða upp nýjum myndum" + +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 +msgid "everybody" +msgstr "allir" + +#: mod/photos.php:159 +msgid "Contact information unavailable" +msgstr "Tengiliða upplýsingar ekki til" + +#: mod/photos.php:188 +msgid "Album not found." +msgstr "Myndabók finnst ekki." + +#: mod/photos.php:244 +msgid "Album successfully deleted" msgstr "" -#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:135 -msgid "Login failed." -msgstr "Innskráning mistókst." - -#: mod/admin.php:107 -msgid "Theme settings updated." -msgstr "Þemastillingar uppfærðar." - -#: mod/admin.php:180 src/Content/Nav.php:175 -msgid "Information" -msgstr "Upplýsingar" - -#: mod/admin.php:181 -msgid "Overview" -msgstr "Yfirlit" - -#: mod/admin.php:182 mod/admin.php:722 -msgid "Federation Statistics" -msgstr "Tölfræði þjónasambands" - -#: mod/admin.php:183 -msgid "Configuration" -msgstr "Uppsetning" - -#: mod/admin.php:184 mod/admin.php:1357 -msgid "Site" -msgstr "Vefur" - -#: mod/admin.php:185 mod/admin.php:1289 mod/admin.php:1817 mod/admin.php:1833 -msgid "Users" -msgstr "Notendur" - -#: mod/admin.php:186 mod/admin.php:1933 mod/admin.php:1993 mod/settings.php:87 -msgid "Addons" -msgstr "Forritsviðbætur" - -#: mod/admin.php:187 mod/admin.php:2202 mod/admin.php:2246 -msgid "Themes" -msgstr "Þemu" - -#: mod/admin.php:188 mod/settings.php:65 -msgid "Additional features" -msgstr "Viðbótareiginleikar" - -#: mod/admin.php:189 mod/admin.php:304 mod/register.php:291 -#: src/Content/Nav.php:178 src/Module/Tos.php:70 -msgid "Terms of Service" -msgstr "Þjónustuskilmálar" - -#: mod/admin.php:190 -msgid "Database" -msgstr "Gagnagrunnur" - -#: mod/admin.php:191 -msgid "DB updates" -msgstr "Gagnagrunnsuppfærslur" - -#: mod/admin.php:192 mod/admin.php:757 -msgid "Inspect Queue" +#: mod/photos.php:246 +msgid "Album was empty." msgstr "" -#: mod/admin.php:193 -msgid "Tools" -msgstr "Verkfæri" - -#: mod/admin.php:194 -msgid "Contact Blocklist" -msgstr "Svartur listi tengiliðar" - -#: mod/admin.php:195 mod/admin.php:366 -msgid "Server Blocklist" -msgstr "Svartur listi vefþjóns" - -#: mod/admin.php:196 mod/admin.php:525 -msgid "Delete Item" -msgstr "Eyða atriði" - -#: mod/admin.php:197 mod/admin.php:198 mod/admin.php:2320 -msgid "Logs" -msgstr "Atburðaskrá" - -#: mod/admin.php:199 mod/admin.php:2387 -msgid "View Logs" -msgstr "Skoða atburðaskrár" - -#: mod/admin.php:201 -msgid "Diagnostics" -msgstr "Bilanagreining" - -#: mod/admin.php:202 -msgid "PHP Info" -msgstr "PHP-upplýsingar" - -#: mod/admin.php:203 -msgid "probe address" -msgstr "finna vistfang" - -#: mod/admin.php:204 -msgid "check webfinger" +#: mod/photos.php:277 +msgid "Failed to delete the photo." msgstr "" -#: mod/admin.php:223 src/Content/Nav.php:218 -msgid "Admin" -msgstr "Stjórnandi" +#: mod/photos.php:545 +msgid "a photo" +msgstr "mynd" -#: mod/admin.php:224 -msgid "Addon Features" -msgstr "Eiginleikar forritsviðbótar" - -#: mod/admin.php:225 -msgid "User registrations waiting for confirmation" -msgstr "Notenda nýskráningar bíða samþykkis" - -#: mod/admin.php:303 mod/admin.php:365 mod/admin.php:482 mod/admin.php:524 -#: mod/admin.php:721 mod/admin.php:756 mod/admin.php:852 mod/admin.php:1356 -#: mod/admin.php:1816 mod/admin.php:1932 mod/admin.php:1992 mod/admin.php:2201 -#: mod/admin.php:2245 mod/admin.php:2319 mod/admin.php:2386 -msgid "Administration" -msgstr "Stjórnun" - -#: mod/admin.php:305 -msgid "Display Terms of Service" -msgstr "" - -#: mod/admin.php:305 -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 "" - -#: mod/admin.php:306 -msgid "Display Privacy Statement" -msgstr "" - -#: mod/admin.php:306 +#: mod/photos.php:545 #, php-format -msgid "" -"Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." -msgstr "" +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s var merkt í %2$s af %3$s" -#: mod/admin.php:307 -msgid "Privacy Statement Preview" -msgstr "" +#: mod/photos.php:582 src/Module/Conversation/Community.php:159 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Opinber aðgangur ekki veittur." -#: mod/admin.php:309 -msgid "The Terms of Service" -msgstr "" +#: mod/photos.php:587 +msgid "No photos selected" +msgstr "Engar myndir valdar" -#: mod/admin.php:309 -msgid "" -"Enter the Terms of Service for your node here. You can use BBCode. Headers " -"of sections should be [h2] and below." -msgstr "" - -#: mod/admin.php:357 -msgid "The blocked domain" -msgstr "" - -#: mod/admin.php:358 mod/admin.php:371 -msgid "The reason why you blocked this domain." -msgstr "" - -#: mod/admin.php:359 -msgid "Delete domain" -msgstr "Eyða léni" - -#: mod/admin.php:359 -msgid "Check to delete this entry from the blocklist" -msgstr "" - -#: mod/admin.php:367 -msgid "" -"This page can be used to define a black list of servers from the federated " -"network that are not allowed to interact with your node. For all entered " -"domains you should also give a reason why you have blocked the remote " -"server." -msgstr "" - -#: mod/admin.php:368 -msgid "" -"The list of blocked servers will be made publically available on the " -"/friendica page so that your users and people investigating communication " -"problems can find the reason easily." -msgstr "" - -#: mod/admin.php:369 -msgid "Add new entry to block list" -msgstr "" - -#: mod/admin.php:370 -msgid "Server Domain" -msgstr "" - -#: mod/admin.php:370 -msgid "" -"The domain of the new server to add to the block list. Do not include the " -"protocol." -msgstr "" - -#: mod/admin.php:371 -msgid "Block reason" -msgstr "Ástæða fyrir útilokun" - -#: mod/admin.php:372 -msgid "Add Entry" -msgstr "Bæta við færslu" - -#: mod/admin.php:373 -msgid "Save changes to the blocklist" -msgstr "" - -#: mod/admin.php:374 -msgid "Current Entries in the Blocklist" -msgstr "" - -#: mod/admin.php:377 -msgid "Delete entry from blocklist" -msgstr "" - -#: mod/admin.php:380 -msgid "Delete entry from blocklist?" -msgstr "" - -#: mod/admin.php:406 -msgid "Server added to blocklist." -msgstr "" - -#: mod/admin.php:422 -msgid "Site blocklist updated." -msgstr "" - -#: mod/admin.php:445 src/Core/Console/GlobalCommunityBlock.php:72 -msgid "The contact has been blocked from the node" -msgstr "" - -#: mod/admin.php:447 src/Core/Console/GlobalCommunityBlock.php:69 +#: mod/photos.php:721 #, php-format -msgid "Could not find any contact entry for this URL (%s)" +msgid "The maximum accepted image size is %s" msgstr "" -#: mod/admin.php:454 +#: mod/photos.php:728 +msgid "Upload Photos" +msgstr "Hlaða upp myndum" + +#: mod/photos.php:732 mod/photos.php:820 +msgid "New album name: " +msgstr "Nýtt nafn myndbókar:" + +#: mod/photos.php:733 +msgid "or select existing album:" +msgstr "" + +#: mod/photos.php:734 +msgid "Do not show a status post for this upload" +msgstr "Ekki sýna færslu fyrir þessari upphölun" + +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "Aðgangsheimildir" + +#: mod/photos.php:801 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "" + +#: mod/photos.php:802 mod/photos.php:825 +msgid "Delete Album" +msgstr "Fjarlægja myndabók" + +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Hætta við" + +#: mod/photos.php:829 +msgid "Edit Album" +msgstr "Breyta myndbók" + +#: mod/photos.php:830 +msgid "Drop Album" +msgstr "" + +#: mod/photos.php:834 +msgid "Show Newest First" +msgstr "Birta nýjast fyrst" + +#: mod/photos.php:836 +msgid "Show Oldest First" +msgstr "Birta elsta fyrst" + +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +msgid "View Photo" +msgstr "Skoða mynd" + +#: mod/photos.php:889 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Aðgangi hafnað. Aðgangur að þessum hlut kann að vera skertur." + +#: mod/photos.php:891 +msgid "Photo not available" +msgstr "Mynd ekki til" + +#: mod/photos.php:901 +msgid "Do you really want to delete this photo?" +msgstr "" + +#: mod/photos.php:902 mod/photos.php:1102 +msgid "Delete Photo" +msgstr "Fjarlægja mynd" + +#: mod/photos.php:1000 +msgid "View photo" +msgstr "Birta mynd" + +#: mod/photos.php:1002 +msgid "Edit photo" +msgstr "Breyta mynd" + +#: mod/photos.php:1003 +msgid "Delete photo" +msgstr "" + +#: mod/photos.php:1004 +msgid "Use as profile photo" +msgstr "Nota sem forsíðu mynd" + +#: mod/photos.php:1011 +msgid "Private Photo" +msgstr "" + +#: mod/photos.php:1017 +msgid "View Full Size" +msgstr "Skoða í fullri stærð" + +#: mod/photos.php:1070 +msgid "Tags: " +msgstr "Merki:" + +#: mod/photos.php:1073 +msgid "[Select tags to remove]" +msgstr "" + +#: mod/photos.php:1088 +msgid "New album name" +msgstr "Nýtt nafn myndbókar" + +#: mod/photos.php:1089 +msgid "Caption" +msgstr "Yfirskrift" + +#: mod/photos.php:1090 +msgid "Add a Tag" +msgstr "Bæta við merki" + +#: mod/photos.php:1090 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Til dæmis: @bob, @Barbara_Jensen, @jim@example.com, #Reykjavík #tjalda" + +#: mod/photos.php:1091 +msgid "Do not rotate" +msgstr "Ekki snúa" + +#: mod/photos.php:1092 +msgid "Rotate CW (right)" +msgstr "Snúa réttsælis (hægri)" + +#: mod/photos.php:1093 +msgid "Rotate CCW (left)" +msgstr "Snúa rangsælis (vinstri)" + +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1092 +msgid "This is you" +msgstr "Þetta ert þú" + +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:572 +#: src/Object/Post.php:1094 +msgid "Comment" +msgstr "Athugasemd" + +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1108 +msgid "Preview" +msgstr "Forskoðun" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1096 +msgid "Loading..." +msgstr "" + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:260 +msgid "Select" +msgstr "Velja" + +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 +msgid "Delete" +msgstr "Eyða" + +#: mod/photos.php:1298 src/Object/Post.php:408 +msgid "Like" +msgstr "" + +#: mod/photos.php:1299 src/Object/Post.php:408 +msgid "I like this (toggle)" +msgstr "Mér líkar þetta (kveikja/slökkva)" + +#: mod/photos.php:1300 src/Object/Post.php:409 +msgid "Dislike" +msgstr "" + +#: mod/photos.php:1302 src/Object/Post.php:409 +msgid "I don't like this (toggle)" +msgstr "Mér líkar þetta ekki (kveikja/slökkva)" + +#: mod/photos.php:1324 +msgid "Map" +msgstr "Landakort" + +#: src/App.php:473 +msgid "No system theme config value set." +msgstr "" + +#: src/App.php:580 +msgid "Apologies but the website is unavailable at the moment." +msgstr "" + +#: src/App/Page.php:248 +msgid "Delete this item?" +msgstr "Eyða þessu atriði?" + +#: src/App/Page.php:249 +msgid "" +"Block this author? They won't be able to follow you nor see your public " +"posts, and you won't be able to see their posts and their notifications." +msgstr "" + +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "" + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "" + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "" + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "" + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "" + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "" + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "" + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "" + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "" + +#: src/App/Page.php:351 +msgid "toggle mobile" +msgstr "" + +#: src/App/Router.php:309 #, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "" -msgstr[1] "" - -#: mod/admin.php:483 -msgid "Remote Contact Blocklist" -msgstr "" - -#: mod/admin.php:484 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "" - -#: mod/admin.php:485 -msgid "Block Remote Contact" -msgstr "Útiloka fjartengdan tengilið" - -#: mod/admin.php:486 mod/admin.php:1819 -msgid "select all" -msgstr "velja alla" - -#: mod/admin.php:487 -msgid "select none" -msgstr "velja ekkert" - -#: mod/admin.php:490 -msgid "No remote contact is blocked from this node." -msgstr "" - -#: mod/admin.php:492 -msgid "Blocked Remote Contacts" -msgstr "Útilokaðir fjartengdir tengiliðir" - -#: mod/admin.php:493 -msgid "Block New Remote Contact" -msgstr "Útiloka nýjan fjartengdan tengilið" - -#: mod/admin.php:494 -msgid "Photo" -msgstr "Ljósmynd" - -#: mod/admin.php:494 mod/profiles.php:394 -msgid "Address" -msgstr "Heimilisfang" - -#: mod/admin.php:502 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "" -msgstr[1] "" - -#: mod/admin.php:504 -msgid "URL of the remote contact to block." -msgstr "" - -#: mod/admin.php:526 -msgid "Delete this Item" -msgstr "Eyða þessu atriði" - -#: mod/admin.php:527 -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 "" - -#: mod/admin.php:528 -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 "" - -#: mod/admin.php:529 -msgid "GUID" -msgstr "" - -#: mod/admin.php:529 -msgid "The GUID of the item you want to delete." -msgstr "" - -#: mod/admin.php:568 -msgid "Item marked for deletion." -msgstr "Atriði merkt til eyðingar." - -#: mod/admin.php:639 -msgid "unknown" -msgstr "óþekkt" - -#: mod/admin.php:715 -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 "" - -#: mod/admin.php:716 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "" - -#: mod/admin.php:728 -#, php-format -msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " -"following platforms:" -msgstr "" - -#: mod/admin.php:759 -msgid "ID" -msgstr "Auðkenni (ID)" - -#: mod/admin.php:760 -msgid "Recipient Name" -msgstr "Nafn viðtakanda" - -#: mod/admin.php:761 -msgid "Recipient Profile" -msgstr "Forsíða viðtakanda" - -#: mod/admin.php:762 view/theme/frio/theme.php:266 -#: src/Core/NotificationsManager.php:178 src/Content/Nav.php:183 -msgid "Network" -msgstr "Samfélag" - -#: mod/admin.php:763 -msgid "Created" -msgstr "Búið til" - -#: mod/admin.php:764 -msgid "Last Tried" -msgstr "Síðast prófað" - -#: mod/admin.php:765 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "" - -#: mod/admin.php:789 -#, 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 "" - -#: mod/admin.php:796 -#, 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 "" - -#: mod/admin.php:806 -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 "" - -#: mod/admin.php:812 -msgid "The worker was never executed. Please check your database structure!" -msgstr "" - -#: mod/admin.php:815 -#, php-format -msgid "" -"The last worker execution was on %s UTC. This is older than one hour. Please" -" check your crontab settings." -msgstr "" - -#: mod/admin.php:820 -msgid "Normal Account" -msgstr "Venjulegur notandi" - -#: mod/admin.php:821 -msgid "Automatic Follower Account" -msgstr "" - -#: mod/admin.php:822 -msgid "Public Forum Account" -msgstr "" - -#: mod/admin.php:823 -msgid "Automatic Friend Account" -msgstr "Verður sjálfkrafa vinur notandi" - -#: mod/admin.php:824 -msgid "Blog Account" -msgstr "" - -#: mod/admin.php:825 -msgid "Private Forum Account" -msgstr "" - -#: mod/admin.php:847 -msgid "Message queues" -msgstr "" - -#: mod/admin.php:853 -msgid "Summary" -msgstr "Samantekt" - -#: mod/admin.php:855 -msgid "Registered users" -msgstr "Skráðir notendur" - -#: mod/admin.php:857 -msgid "Pending registrations" -msgstr "Nýskráningar í bið" - -#: mod/admin.php:858 -msgid "Version" -msgstr "Útgáfunúmer" - -#: mod/admin.php:863 -msgid "Active addons" -msgstr "" - -#: mod/admin.php:894 -msgid "Can not parse base url. Must have at least ://" -msgstr "" - -#: mod/admin.php:1224 -msgid "Site settings updated." -msgstr "Stillingar vefsvæðis uppfærðar." - -#: mod/admin.php:1251 mod/settings.php:897 -msgid "No special theme for mobile devices" -msgstr "" - -#: mod/admin.php:1280 -msgid "No community page for local users" -msgstr "" - -#: mod/admin.php:1281 -msgid "No community page" -msgstr "" - -#: mod/admin.php:1282 -msgid "Public postings from users of this site" -msgstr "" - -#: mod/admin.php:1283 -msgid "Public postings from the federated network" -msgstr "" - -#: mod/admin.php:1284 -msgid "Public postings from local users and the federated network" -msgstr "" - -#: mod/admin.php:1290 -msgid "Users, Global Contacts" -msgstr "" - -#: mod/admin.php:1291 -msgid "Users, Global Contacts/fallback" -msgstr "" - -#: mod/admin.php:1295 -msgid "One month" -msgstr "Einn mánuður" - -#: mod/admin.php:1296 -msgid "Three months" -msgstr "Þrír mánuðir" - -#: mod/admin.php:1297 -msgid "Half a year" -msgstr "Hálft ár" - -#: mod/admin.php:1298 -msgid "One year" -msgstr "Eitt ár" - -#: mod/admin.php:1303 -msgid "Multi user instance" -msgstr "" - -#: mod/admin.php:1326 -msgid "Closed" -msgstr "Lokað" - -#: mod/admin.php:1327 -msgid "Requires approval" -msgstr "Þarf samþykki" - -#: mod/admin.php:1328 -msgid "Open" -msgstr "Opið" - -#: mod/admin.php:1332 -msgid "No SSL policy, links will track page SSL state" -msgstr "" - -#: mod/admin.php:1333 -msgid "Force all links to use SSL" -msgstr "" - -#: mod/admin.php:1334 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" - -#: mod/admin.php:1338 -msgid "Don't check" -msgstr "" - -#: mod/admin.php:1339 -msgid "check the stable version" -msgstr "" - -#: mod/admin.php:1340 -msgid "check the development version" -msgstr "" - -#: mod/admin.php:1359 -msgid "Republish users to directory" -msgstr "" - -#: mod/admin.php:1360 mod/register.php:267 -msgid "Registration" -msgstr "Nýskráning" - -#: mod/admin.php:1361 -msgid "File upload" -msgstr "Hlaða upp skrá" - -#: mod/admin.php:1362 -msgid "Policies" -msgstr "Stefna" - -#: mod/admin.php:1364 -msgid "Auto Discovered Contact Directory" -msgstr "" - -#: mod/admin.php:1365 -msgid "Performance" -msgstr "Afköst" - -#: mod/admin.php:1366 -msgid "Worker" -msgstr "" - -#: mod/admin.php:1367 -msgid "Message Relay" -msgstr "" - -#: mod/admin.php:1368 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" - -#: mod/admin.php:1371 -msgid "Site name" -msgstr "Nafn vefsvæðis" - -#: mod/admin.php:1372 -msgid "Host name" -msgstr "Vélarheiti" - -#: mod/admin.php:1373 -msgid "Sender Email" -msgstr "Tölvupóstfang sendanda" - -#: mod/admin.php:1373 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "" - -#: mod/admin.php:1374 -msgid "Banner/Logo" -msgstr "Borði/Merki" - -#: mod/admin.php:1375 -msgid "Shortcut icon" -msgstr "Táknmynd flýtivísunar" - -#: mod/admin.php:1375 -msgid "Link to an icon that will be used for browsers." -msgstr "" - -#: mod/admin.php:1376 -msgid "Touch icon" -msgstr "" - -#: mod/admin.php:1376 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "" - -#: mod/admin.php:1377 -msgid "Additional Info" -msgstr "Viðbótarupplýsingar" - -#: mod/admin.php:1377 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/servers." -msgstr "" - -#: mod/admin.php:1378 -msgid "System language" -msgstr "Tungumál kerfis" - -#: mod/admin.php:1379 -msgid "System theme" -msgstr "Þema kerfis" - -#: mod/admin.php:1379 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: mod/admin.php:1380 -msgid "Mobile system theme" -msgstr "" - -#: mod/admin.php:1380 -msgid "Theme for mobile devices" -msgstr "" - -#: mod/admin.php:1381 -msgid "SSL link policy" -msgstr "" - -#: mod/admin.php:1381 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "" - -#: mod/admin.php:1382 -msgid "Force SSL" -msgstr "Þvinga SSL" - -#: mod/admin.php:1382 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "" - -#: mod/admin.php:1383 -msgid "Hide help entry from navigation menu" -msgstr "" - -#: mod/admin.php:1383 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "" - -#: mod/admin.php:1384 -msgid "Single user instance" -msgstr "" - -#: mod/admin.php:1384 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "" - -#: mod/admin.php:1385 -msgid "Maximum image size" -msgstr "Mesta stærð mynda" - -#: mod/admin.php:1385 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: mod/admin.php:1386 -msgid "Maximum image length" -msgstr "" - -#: mod/admin.php:1386 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "" - -#: mod/admin.php:1387 -msgid "JPEG image quality" -msgstr "JPEG myndgæði" - -#: mod/admin.php:1387 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "" - -#: mod/admin.php:1389 -msgid "Register policy" -msgstr "Stefna varðandi nýskráningar" - -#: mod/admin.php:1390 -msgid "Maximum Daily Registrations" -msgstr "" - -#: mod/admin.php:1390 -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 "" - -#: mod/admin.php:1391 -msgid "Register text" -msgstr "Texti við nýskráningu" - -#: mod/admin.php:1391 -msgid "" -"Will be displayed prominently on the registration page. You can use BBCode " -"here." -msgstr "" - -#: mod/admin.php:1392 -msgid "Accounts abandoned after x days" -msgstr "Yfirgefnir notendur eftir x daga" - -#: mod/admin.php:1392 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Hættir að eyða afli í að sækja færslur á ytri vefi fyrir yfirgefna notendur. 0 þýðir notendur merkjast ekki yfirgefnir." - -#: mod/admin.php:1393 -msgid "Allowed friend domains" -msgstr "Leyfð lén vina" - -#: mod/admin.php:1393 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "" - -#: mod/admin.php:1394 -msgid "Allowed email domains" -msgstr "Leyfð tölvupóstfangalén" - -#: mod/admin.php:1394 -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 "" - -#: mod/admin.php:1395 -msgid "No OEmbed rich content" -msgstr "" - -#: mod/admin.php:1395 -msgid "" -"Don't show the rich content (e.g. embedded PDF), except from the domains " -"listed below." -msgstr "" - -#: mod/admin.php:1396 -msgid "Allowed OEmbed domains" -msgstr "" - -#: mod/admin.php:1396 -msgid "" -"Comma separated list of domains which oembed content is allowed to be " -"displayed. Wildcards are accepted." -msgstr "" - -#: mod/admin.php:1397 -msgid "Block public" -msgstr "Loka á opinberar færslur" - -#: mod/admin.php:1397 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "" - -#: mod/admin.php:1398 -msgid "Force publish" -msgstr "Skylda að vera í tengiliðalista" - -#: mod/admin.php:1398 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: mod/admin.php:1399 -msgid "Global directory URL" -msgstr "" - -#: mod/admin.php:1399 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "" - -#: mod/admin.php:1400 -msgid "Private posts by default for new users" -msgstr "" - -#: mod/admin.php:1400 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "" - -#: mod/admin.php:1401 -msgid "Don't include post content in email notifications" -msgstr "" - -#: mod/admin.php:1401 -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 "" - -#: mod/admin.php:1402 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Hindra opið aðgengi að viðbótum í forritavalmyndinni." - -#: mod/admin.php:1402 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Ef hakað er í þetta verður aðgengi að viðbótum í forritavalmyndinni takmarkað við meðlimi." - -#: mod/admin.php:1403 -msgid "Don't embed private images in posts" -msgstr "" - -#: mod/admin.php:1403 -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 "" - -#: mod/admin.php:1404 -msgid "Allow Users to set remote_self" -msgstr "" - -#: mod/admin.php:1404 -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 "" - -#: mod/admin.php:1405 -msgid "Block multiple registrations" -msgstr "Banna margar skráningar" - -#: mod/admin.php:1405 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "" - -#: mod/admin.php:1406 -msgid "OpenID support" -msgstr "Leyfa OpenID auðkenningu" - -#: mod/admin.php:1406 -msgid "OpenID support for registration and logins." -msgstr "" - -#: mod/admin.php:1407 -msgid "Fullname check" -msgstr "Fullt nafn skilyrði" - -#: mod/admin.php:1407 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "" - -#: mod/admin.php:1408 -msgid "Community pages for visitors" -msgstr "" - -#: mod/admin.php:1408 -msgid "" -"Which community pages should be available for visitors. Local users always " -"see both pages." -msgstr "" - -#: mod/admin.php:1409 -msgid "Posts per user on community page" -msgstr "" - -#: mod/admin.php:1409 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "" - -#: mod/admin.php:1410 -msgid "Enable OStatus support" -msgstr "Leyfa OStatus stuðning" - -#: mod/admin.php:1410 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "" - -#: mod/admin.php:1411 -msgid "Only import OStatus threads from our contacts" -msgstr "" - -#: mod/admin.php:1411 -msgid "" -"Normally we import every content from our OStatus contacts. With this option" -" we only store threads that are started by a contact that is known on our " -"system." -msgstr "" - -#: mod/admin.php:1412 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "" - -#: mod/admin.php:1414 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "" - -#: mod/admin.php:1415 -msgid "Enable Diaspora support" -msgstr "Leyfa Diaspora tengingar" - -#: mod/admin.php:1415 -msgid "Provide built-in Diaspora network compatibility." -msgstr "" - -#: mod/admin.php:1416 -msgid "Only allow Friendica contacts" -msgstr "Aðeins leyfa Friendica notendur" - -#: mod/admin.php:1416 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "" - -#: mod/admin.php:1417 -msgid "Verify SSL" -msgstr "Sannreyna SSL" - -#: mod/admin.php:1417 -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 "" - -#: mod/admin.php:1418 -msgid "Proxy user" -msgstr "Proxy notandi" - -#: mod/admin.php:1419 -msgid "Proxy URL" -msgstr "Proxy slóð" - -#: mod/admin.php:1420 -msgid "Network timeout" -msgstr "Net tími útrunninn" - -#: mod/admin.php:1420 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: mod/admin.php:1421 -msgid "Maximum Load Average" -msgstr "Mesta meðaltals álag" - -#: mod/admin.php:1421 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: mod/admin.php:1422 -msgid "Maximum Load Average (Frontend)" -msgstr "" - -#: mod/admin.php:1422 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "" - -#: mod/admin.php:1423 -msgid "Minimal Memory" -msgstr "" - -#: mod/admin.php:1423 -msgid "" -"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " -"default 0 (deactivated)." -msgstr "" - -#: mod/admin.php:1424 -msgid "Maximum table size for optimization" -msgstr "" - -#: mod/admin.php:1424 -msgid "" -"Maximum table size (in MB) for the automatic optimization. Enter -1 to " -"disable it." -msgstr "" - -#: mod/admin.php:1425 -msgid "Minimum level of fragmentation" -msgstr "" - -#: mod/admin.php:1425 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "" - -#: mod/admin.php:1427 -msgid "Periodical check of global contacts" -msgstr "" - -#: mod/admin.php:1427 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "" - -#: mod/admin.php:1428 -msgid "Days between requery" -msgstr "" - -#: mod/admin.php:1428 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "" - -#: mod/admin.php:1429 -msgid "Discover contacts from other servers" -msgstr "" - -#: mod/admin.php:1429 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." -msgstr "" - -#: mod/admin.php:1430 -msgid "Timeframe for fetching global contacts" -msgstr "" - -#: mod/admin.php:1430 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "" - -#: mod/admin.php:1431 -msgid "Search the local directory" -msgstr "" - -#: mod/admin.php:1431 -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 "" - -#: mod/admin.php:1433 -msgid "Publish server information" -msgstr "" - -#: mod/admin.php:1433 -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 "" - -#: mod/admin.php:1435 -msgid "Check upstream version" -msgstr "" - -#: mod/admin.php:1435 -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 "" - -#: mod/admin.php:1436 -msgid "Suppress Tags" -msgstr "" - -#: mod/admin.php:1436 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" - -#: mod/admin.php:1437 -msgid "Clean database" -msgstr "" - -#: mod/admin.php:1437 -msgid "" -"Remove old remote items, orphaned database records and old content from some" -" other helper tables." -msgstr "" - -#: mod/admin.php:1438 -msgid "Lifespan of remote items" -msgstr "Líftími fjartengdra atriða" - -#: mod/admin.php:1438 -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 "" - -#: mod/admin.php:1439 -msgid "Lifespan of unclaimed items" -msgstr "" - -#: mod/admin.php:1439 -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 "" - -#: mod/admin.php:1440 -msgid "Path to item cache" -msgstr "" - -#: mod/admin.php:1440 -msgid "The item caches buffers generated bbcode and external images." -msgstr "" - -#: mod/admin.php:1441 -msgid "Cache duration in seconds" -msgstr "" - -#: mod/admin.php:1441 -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 "" - -#: mod/admin.php:1442 -msgid "Maximum numbers of comments per post" -msgstr "" - -#: mod/admin.php:1442 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: mod/admin.php:1443 -msgid "Temp path" -msgstr "" - -#: mod/admin.php:1443 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "" - -#: mod/admin.php:1444 -msgid "Base path to installation" -msgstr "" - -#: mod/admin.php:1444 -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 "" - -#: mod/admin.php:1445 -msgid "Disable picture proxy" -msgstr "" - -#: mod/admin.php:1445 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "" - -#: mod/admin.php:1446 -msgid "Only search in tags" -msgstr "" - -#: mod/admin.php:1446 -msgid "On large systems the text search can slow down the system extremely." -msgstr "" - -#: mod/admin.php:1448 -msgid "New base url" -msgstr "" - -#: mod/admin.php:1448 -msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." -msgstr "" - -#: mod/admin.php:1450 -msgid "RINO Encryption" -msgstr "" - -#: mod/admin.php:1450 -msgid "Encryption layer between nodes." -msgstr "" - -#: mod/admin.php:1450 -msgid "Enabled" -msgstr "Virkt" - -#: mod/admin.php:1452 -msgid "Maximum number of parallel workers" -msgstr "" - -#: mod/admin.php:1452 -msgid "" -"On shared hosters set this to 2. On larger systems, values of 10 are great. " -"Default value is 4." -msgstr "" - -#: mod/admin.php:1453 -msgid "Don't use 'proc_open' with the worker" -msgstr "" - -#: mod/admin.php:1453 -msgid "" -"Enable this if your system doesn't allow the use of 'proc_open'. This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of worker calls in your crontab." -msgstr "" - -#: mod/admin.php:1454 -msgid "Enable fastlane" -msgstr "" - -#: mod/admin.php:1454 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes" -" with higher priority are blocked by processes of lower priority." -msgstr "" - -#: mod/admin.php:1455 -msgid "Enable frontend worker" -msgstr "" - -#: mod/admin.php:1455 -#, php-format -msgid "" -"When enabled the Worker process is triggered when backend access is " -"performed \\x28e.g. messages being delivered\\x29. On smaller sites you " -"might want to call %s/worker on a regular basis via an external cron job. " -"You should only enable this option if you cannot utilize cron/scheduled jobs" -" on your server." -msgstr "" - -#: mod/admin.php:1457 -msgid "Subscribe to relay" -msgstr "" - -#: mod/admin.php:1457 -msgid "" -"Enables the receiving of public posts from the relay. They will be included " -"in the search, subscribed tags and on the global community page." -msgstr "" - -#: mod/admin.php:1458 -msgid "Relay server" -msgstr "" - -#: mod/admin.php:1458 -msgid "" -"Address of the relay server where public posts should be send to. For " -"example https://relay.diasp.org" -msgstr "" - -#: mod/admin.php:1459 -msgid "Direct relay transfer" -msgstr "" - -#: mod/admin.php:1459 -msgid "" -"Enables the direct transfer to other servers without using the relay servers" -msgstr "" - -#: mod/admin.php:1460 -msgid "Relay scope" -msgstr "" - -#: mod/admin.php:1460 -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 "" - -#: mod/admin.php:1460 -msgid "all" -msgstr "allt" - -#: mod/admin.php:1460 -msgid "tags" -msgstr "merki" - -#: mod/admin.php:1461 -msgid "Server tags" -msgstr "" - -#: mod/admin.php:1461 -msgid "Comma separated list of tags for the 'tags' subscription." -msgstr "" - -#: mod/admin.php:1462 -msgid "Allow user tags" -msgstr "" - -#: mod/admin.php:1462 -msgid "" -"If enabled, the tags from the saved searches will used for the 'tags' " -"subscription in addition to the 'relay_server_tags'." -msgstr "" - -#: mod/admin.php:1490 -msgid "Update has been marked successful" -msgstr "Uppfærsla merkt sem tókst" - -#: mod/admin.php:1497 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "" - -#: mod/admin.php:1500 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "" - -#: mod/admin.php:1513 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "" - -#: mod/admin.php:1515 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Uppfærsla %s framkvæmd." - -#: mod/admin.php:1518 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Uppfærsla %s skilaði ekki gildi. Óvíst hvort tókst." - -#: mod/admin.php:1521 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" - -#: mod/admin.php:1541 -msgid "No failed updates." -msgstr "Engar uppfærslur mistókust." - -#: mod/admin.php:1542 -msgid "Check database structure" -msgstr "" - -#: mod/admin.php:1547 -msgid "Failed Updates" -msgstr "Uppfærslur sem mistókust" - -#: mod/admin.php:1548 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Þetta á ekki við uppfærslur fyrir 1139, þær skiluðu ekki lokastöðu." - -#: mod/admin.php:1549 -msgid "Mark success (if update was manually applied)" -msgstr "Merkja sem tókst (ef uppfærsla var framkvæmd handvirkt)" - -#: mod/admin.php:1550 -msgid "Attempt to execute this update step automatically" -msgstr "Framkvæma þessa uppfærslu sjálfkrafa" - -#: mod/admin.php:1589 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" - -#: mod/admin.php:1592 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$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 %1$s/removeme\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "" - -#: mod/admin.php:1626 src/Model/User.php:663 -#, php-format -msgid "Registration details for %s" -msgstr "Nýskráningar upplýsingar fyrir %s" - -#: mod/admin.php:1636 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: mod/admin.php:1642 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s notanda eytt" -msgstr[1] "%s notendum eytt" - -#: mod/admin.php:1689 -#, php-format -msgid "User '%s' deleted" -msgstr "Notanda '%s' eytt" - -#: mod/admin.php:1697 -#, php-format -msgid "User '%s' unblocked" -msgstr "Notanda '%s' gefið frelsi" - -#: mod/admin.php:1697 -#, php-format -msgid "User '%s' blocked" -msgstr "Notandi '%s' settur í bann" - -#: mod/admin.php:1754 mod/settings.php:1058 -msgid "Normal Account Page" -msgstr "" - -#: mod/admin.php:1755 mod/settings.php:1062 -msgid "Soapbox Page" -msgstr "" - -#: mod/admin.php:1756 mod/settings.php:1066 -msgid "Public Forum" -msgstr "" - -#: mod/admin.php:1757 mod/settings.php:1070 -msgid "Automatic Friend Page" -msgstr "" - -#: mod/admin.php:1758 -msgid "Private Forum" -msgstr "Einkaspjallsvæði" - -#: mod/admin.php:1761 mod/settings.php:1042 -msgid "Personal Page" -msgstr "" - -#: mod/admin.php:1762 mod/settings.php:1046 -msgid "Organisation Page" -msgstr "" - -#: mod/admin.php:1763 mod/settings.php:1050 -msgid "News Page" -msgstr "" - -#: mod/admin.php:1764 mod/settings.php:1054 -msgid "Community Forum" -msgstr "" - -#: mod/admin.php:1811 mod/admin.php:1822 mod/admin.php:1835 mod/admin.php:1853 -#: src/Content/ContactSelector.php:82 -msgid "Email" -msgstr "Tölvupóstur" - -#: mod/admin.php:1811 mod/admin.php:1835 -msgid "Register date" -msgstr "Skráningardagur" - -#: mod/admin.php:1811 mod/admin.php:1835 -msgid "Last login" -msgstr "Síðast innskráður" - -#: mod/admin.php:1811 mod/admin.php:1835 -msgid "Last item" -msgstr "Síðasta atriði" - -#: mod/admin.php:1811 -msgid "Type" -msgstr "Tegund" - -#: mod/admin.php:1818 -msgid "Add User" -msgstr "Bæta við notanda" - -#: mod/admin.php:1820 -msgid "User registrations waiting for confirm" -msgstr "Skráning notanda býður samþykkis" - -#: mod/admin.php:1821 -msgid "User waiting for permanent deletion" -msgstr "" - -#: mod/admin.php:1822 -msgid "Request date" -msgstr "Dagsetning beiðnar" - -#: mod/admin.php:1823 -msgid "No registrations." -msgstr "Engin skráning" - -#: mod/admin.php:1824 -msgid "Note from the user" -msgstr "" - -#: mod/admin.php:1825 mod/notifications.php:178 mod/notifications.php:262 -msgid "Approve" -msgstr "Samþykkja" - -#: mod/admin.php:1826 -msgid "Deny" -msgstr "Hafnað" - -#: mod/admin.php:1830 -msgid "Site admin" -msgstr "Vefstjóri" - -#: mod/admin.php:1831 -msgid "Account expired" -msgstr "Notandaaðgangur útrunninn" - -#: mod/admin.php:1834 -msgid "New User" -msgstr "Nýr notandi" - -#: mod/admin.php:1835 -msgid "Deleted since" -msgstr "Eytt síðan" - -#: mod/admin.php:1840 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Valdir notendur verður eytt!\\n\\nAllt sem þessir notendur hafa deilt á þessum vef verður varanlega eytt!\\n\\nErtu alveg viss?" - -#: mod/admin.php:1841 -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 "Notandinn {0} verður eytt!\\n\\nAllt sem þessi notandi hefur deilt á þessum vef veður varanlega eytt!\\n\\nErtu alveg viss?" - -#: mod/admin.php:1851 -msgid "Name of the new user." -msgstr "" - -#: mod/admin.php:1852 -msgid "Nickname" -msgstr "Stuttnefni" - -#: mod/admin.php:1852 -msgid "Nickname of the new user." -msgstr "" - -#: mod/admin.php:1853 -msgid "Email address of the new user." -msgstr "" - -#: mod/admin.php:1895 -#, php-format -msgid "Addon %s disabled." -msgstr "" - -#: mod/admin.php:1899 -#, php-format -msgid "Addon %s enabled." -msgstr "" - -#: mod/admin.php:1909 mod/admin.php:2158 -msgid "Disable" -msgstr "Gera óvirkt" - -#: mod/admin.php:1912 mod/admin.php:2161 -msgid "Enable" -msgstr "Virkja" - -#: mod/admin.php:1934 mod/admin.php:2203 -msgid "Toggle" -msgstr "Skipta" - -#: mod/admin.php:1942 mod/admin.php:2212 -msgid "Author: " -msgstr "Höfundur:" - -#: mod/admin.php:1943 mod/admin.php:2213 -msgid "Maintainer: " -msgstr "Umsjónarmaður: " - -#: mod/admin.php:1995 -msgid "Reload active addons" -msgstr "" - -#: mod/admin.php:2000 -#, 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 "" - -#: mod/admin.php:2120 -msgid "No themes found." -msgstr "Engin þemu fundust" - -#: mod/admin.php:2194 -msgid "Screenshot" -msgstr "Skjámynd" - -#: mod/admin.php:2248 -msgid "Reload active themes" -msgstr "" - -#: mod/admin.php:2253 -#, php-format -msgid "No themes found on the system. They should be placed in %1$s" -msgstr "" - -#: mod/admin.php:2254 -msgid "[Experimental]" -msgstr "[Á tilraunastigi]" - -#: mod/admin.php:2255 -msgid "[Unsupported]" -msgstr "[Óstutt]" - -#: mod/admin.php:2279 -msgid "Log settings updated." -msgstr "Stillingar atburðaskrár uppfærðar. " - -#: mod/admin.php:2311 -msgid "PHP log currently enabled." -msgstr "" - -#: mod/admin.php:2313 -msgid "PHP log currently disabled." -msgstr "" - -#: mod/admin.php:2322 -msgid "Clear" -msgstr "Hreinsa" - -#: mod/admin.php:2326 -msgid "Enable Debugging" -msgstr "" - -#: mod/admin.php:2327 -msgid "Log file" -msgstr "Atburðaskrá" - -#: mod/admin.php:2327 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Vefþjónn verður að hafa skrifréttindi. Afstætt við Friendica rótar skráarsafn." - -#: mod/admin.php:2328 -msgid "Log level" -msgstr "Stig atburðaskráningar" - -#: mod/admin.php:2330 -msgid "PHP logging" -msgstr "" - -#: mod/admin.php:2331 -msgid "" -"To enable logging of PHP errors and warnings you can add the following to " -"the .htconfig.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 "" - -#: mod/admin.php:2362 -#, 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 "" - -#: mod/admin.php:2366 -#, php-format -msgid "" -"Couldn't open %1$s log file.\\r\\n
    Check to see if file" -" %1$s is readable." -msgstr "" - -#: mod/admin.php:2457 mod/admin.php:2458 mod/settings.php:767 -msgid "Off" -msgstr "Slökkt" - -#: mod/admin.php:2457 mod/admin.php:2458 mod/settings.php:767 -msgid "On" -msgstr "Kveikt" - -#: mod/admin.php:2458 -#, php-format -msgid "Lock feature %s" -msgstr "" - -#: mod/admin.php:2466 -msgid "Manage Additional Features" -msgstr "" - -#: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149 -#: mod/profiles.php:196 mod/profiles.php:525 -msgid "Profile not found." -msgstr "Forsíða fannst ekki." - -#: mod/dfrn_confirm.php:130 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "" - -#: mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Ekki tókst að skilja svar frá fjartengdum vef." - -#: mod/dfrn_confirm.php:247 mod/dfrn_confirm.php:252 -msgid "Unexpected response from remote site: " -msgstr "Óskiljanlegt svar frá fjartengdum vef:" - -#: mod/dfrn_confirm.php:261 -msgid "Confirmation completed successfully." -msgstr "Staðfesting kláraði eðlilega." - -#: mod/dfrn_confirm.php:273 -msgid "Temporary failure. Please wait and try again." -msgstr "Tímabundin villa. Bíddu aðeins og reyndu svo aftur." - -#: mod/dfrn_confirm.php:276 -msgid "Introduction failed or was revoked." -msgstr "Kynning mistókst eða var afturkölluð." - -#: mod/dfrn_confirm.php:281 -msgid "Remote site reported: " -msgstr "Fjartengdur vefur svaraði:" - -#: mod/dfrn_confirm.php:392 -msgid "Unable to set contact photo." -msgstr "Ekki tókst að setja tengiliðamynd." - -#: mod/dfrn_confirm.php:450 -#, php-format -msgid "No user record found for '%s' " -msgstr "Engin notandafærsla fannst fyrir '%s'" - -#: mod/dfrn_confirm.php:460 -msgid "Our site encryption key is apparently messed up." -msgstr "Dulkóðunnar lykill síðunnar okker er í döðlu." - -#: mod/dfrn_confirm.php:471 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Tómt slóð var uppgefin eða ekki okkur tókst ekki að afkóða slóð." - -#: mod/dfrn_confirm.php:487 -msgid "Contact record was not found for you on our site." -msgstr "Tengiliðafærslan þín fannst ekki á þjóninum okkar." - -#: mod/dfrn_confirm.php:501 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Opinber lykill er ekki til í tengiliðafærslu fyrir slóð %s." - -#: mod/dfrn_confirm.php:517 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Skilríkið sem þjónninn þinn gaf upp er þegar afritað á okkar þjón. Þetta ætti að virka ef þú bara reynir aftur." - -#: mod/dfrn_confirm.php:528 -msgid "Unable to set your contact credentials on our system." -msgstr "Ekki tókst að setja tengiliða skilríkið þitt upp á þjóninum okkar." - -#: mod/dfrn_confirm.php:583 -msgid "Unable to update your contact profile details on our system" -msgstr "Ekki tókst að uppfæra tengiliða skilríkis upplýsingarnar á okkar þjón" - -#: mod/dfrn_confirm.php:613 mod/dfrn_request.php:564 -#: src/Model/Contact.php:1578 -msgid "[Name Withheld]" -msgstr "[Nafn ekki sýnt]" - -#: mod/dfrn_request.php:94 -msgid "This introduction has already been accepted." -msgstr "Þessi kynning hefur þegar verið samþykkt." - -#: mod/dfrn_request.php:112 mod/dfrn_request.php:355 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Forsíðu slóð er ekki í lagi eða inniheldur ekki forsíðu upplýsingum." - -#: mod/dfrn_request.php:116 mod/dfrn_request.php:359 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Aðvörun: forsíðu staðsetning hefur ekki aðgreinanlegt eigendanafn." - -#: mod/dfrn_request.php:119 mod/dfrn_request.php:362 -msgid "Warning: profile location has no profile photo." -msgstr "Aðvörun: forsíðu slóð hefur ekki forsíðu mynd." - -#: mod/dfrn_request.php:123 mod/dfrn_request.php:366 -#, 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 skilyrt breyta fannst ekki á uppgefinni staðsetningu" -msgstr[1] "%d skilyrtar breytur fundust ekki á uppgefninni staðsetningu" - -#: mod/dfrn_request.php:162 -msgid "Introduction complete." -msgstr "Kynning tilbúinn." - -#: mod/dfrn_request.php:199 -msgid "Unrecoverable protocol error." -msgstr "Alvarleg samskipta villa." - -#: mod/dfrn_request.php:226 -msgid "Profile unavailable." -msgstr "Ekki hægt að sækja forsíðu" - -#: mod/dfrn_request.php:248 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s hefur fengið of margar tengibeiðnir í dag." - -#: mod/dfrn_request.php:249 -msgid "Spam protection measures have been invoked." -msgstr "Kveikt hefur verið á ruslsíu" - -#: mod/dfrn_request.php:250 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Vinir eru beðnir um að reyna aftur eftir 24 klukkustundir." - -#: mod/dfrn_request.php:276 -msgid "Invalid locator" -msgstr "Ógild staðsetning" - -#: mod/dfrn_request.php:312 -msgid "You have already introduced yourself here." -msgstr "Kynning hefur þegar átt sér stað hér." - -#: mod/dfrn_request.php:315 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Þú ert þegar vinur %s." - -#: mod/dfrn_request.php:335 -msgid "Invalid profile URL." -msgstr "Ógild forsíðu slóð." - -#: mod/dfrn_request.php:341 src/Model/Contact.php:1276 -msgid "Disallowed profile URL." -msgstr "Óleyfileg forsíðu slóð." - -#: mod/dfrn_request.php:435 -msgid "Your introduction has been sent." -msgstr "Kynningin þín hefur verið send." - -#: mod/dfrn_request.php:473 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "" - -#: mod/dfrn_request.php:489 -msgid "Please login to confirm introduction." -msgstr "Skráðu þig inn til að staðfesta kynningu." - -#: mod/dfrn_request.php:497 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Ekki réttur notandi skráður inn. Skráðu þig inn sem þessi notandi." - -#: mod/dfrn_request.php:511 mod/dfrn_request.php:528 -msgid "Confirm" -msgstr "Staðfesta" - -#: mod/dfrn_request.php:523 -msgid "Hide this contact" -msgstr "Fela þennan tengilið" - -#: mod/dfrn_request.php:526 -#, php-format -msgid "Welcome home %s." -msgstr "Velkomin(n) heim %s." - -#: mod/dfrn_request.php:527 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Staðfestu kynninguna/tengibeiðnina við %s." - -#: mod/dfrn_request.php:637 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Settu inn 'Auðkennisnetfang' þitt úr einhverjum af eftirfarandi samskiptanetum:" - -#: mod/dfrn_request.php:640 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow " -"this link to find a public Friendica site and join us today." -msgstr "" - -#: mod/dfrn_request.php:645 -msgid "Friend/Connection Request" -msgstr "Vinabeiðni/Tengibeiðni" - -#: mod/dfrn_request.php:646 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@gnusocial.de" -msgstr "" - -#: mod/dfrn_request.php:651 src/Content/ContactSelector.php:79 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:652 -msgid "GNU Social (Pleroma, Mastodon)" -msgstr "GNU Social (Pleroma, Mastodon)" - -#: mod/dfrn_request.php:653 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/dfrn_request.php:654 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "" - -#: mod/item.php:114 -msgid "Unable to locate original post." -msgstr "Ekki tókst að finna upphaflega færslu." - -#: mod/item.php:274 -msgid "Empty post discarded." -msgstr "Tóm færsla eytt." - -#: mod/item.php:804 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Skilaboðið sendi %s, notandi á Friendica samfélagsnetinu." - -#: mod/item.php:806 -#, php-format -msgid "You may visit them online at %s" -msgstr "Þú getur heimsótt þau á netinu á %s" - -#: mod/item.php:807 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Hafðu samband við sendanda með því að svara á þessari færslu ef þú villt ekki fá þessi skilaboð." - -#: mod/item.php:811 -#, php-format -msgid "%s posted an update." -msgstr "%s hefur sent uppfærslu." - -#: mod/notifications.php:37 -msgid "Invalid request identifier." -msgstr "Ógilt auðkenni beiðnar." - -#: mod/notifications.php:46 mod/notifications.php:182 -#: mod/notifications.php:229 -msgid "Discard" -msgstr "Henda" - -#: mod/notifications.php:98 src/Content/Nav.php:191 -msgid "Notifications" -msgstr "Tilkynningar" - -#: mod/notifications.php:107 -msgid "Network Notifications" -msgstr "Tilkynningar á neti" - -#: mod/notifications.php:119 -msgid "Personal Notifications" -msgstr "Einkatilkynningar." - -#: mod/notifications.php:125 -msgid "Home Notifications" -msgstr "Tilkynningar frá heimasvæði" - -#: mod/notifications.php:155 -msgid "Show Ignored Requests" -msgstr "Sýna hunsaðar beiðnir" - -#: mod/notifications.php:155 -msgid "Hide Ignored Requests" -msgstr "Fela hunsaðar beiðnir" - -#: mod/notifications.php:167 mod/notifications.php:236 -msgid "Notification type: " -msgstr "Gerð skilaboða: " - -#: mod/notifications.php:170 -#, php-format -msgid "suggested by %s" -msgstr "stungið uppá af %s" - -#: mod/notifications.php:197 -msgid "Claims to be known to you: " -msgstr "Þykist þekkja þig:" - -#: mod/notifications.php:198 -msgid "yes" -msgstr "já" - -#: mod/notifications.php:198 -msgid "no" -msgstr "nei" - -#: mod/notifications.php:199 mod/notifications.php:204 -msgid "Shall your connection be bidirectional or not?" -msgstr "" - -#: mod/notifications.php:200 mod/notifications.php:205 -#, 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 "" - -#: mod/notifications.php:201 -#, 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 "" - -#: mod/notifications.php:206 -#, php-format -msgid "" -"Accepting %s as a sharer allows them to subscribe to your posts, but you " -"will not receive updates from them in your news feed." -msgstr "" - -#: mod/notifications.php:217 -msgid "Friend" -msgstr "Vin" - -#: mod/notifications.php:218 -msgid "Sharer" -msgstr "Deilir" - -#: mod/notifications.php:218 -msgid "Subscriber" -msgstr "Áskrifandi" - -#: mod/notifications.php:273 -msgid "No introductions." -msgstr "Engar kynningar." - -#: mod/notifications.php:314 -msgid "Show unread" -msgstr "Birta ólesið" - -#: mod/notifications.php:314 -msgid "Show all" -msgstr "Birta allt" - -#: mod/notifications.php:320 -#, php-format -msgid "No more %s notifications." -msgstr "Ekki fleiri %s tilkynningar." - -#: mod/profile.php:37 src/Model/Profile.php:118 -msgid "Requested profile is not available." -msgstr "Umbeðin forsíða ekki til." - -#: mod/profile.php:78 mod/profile.php:81 src/Protocol/OStatus.php:1251 -#, php-format -msgid "%s's timeline" -msgstr "Tímalína fyrir %s" - -#: mod/profile.php:79 src/Protocol/OStatus.php:1252 -#, php-format -msgid "%s's posts" -msgstr "Færslur frá %s" - -#: mod/profile.php:80 src/Protocol/OStatus.php:1253 -#, php-format -msgid "%s's comments" -msgstr "Athugasemdir frá %s" - -#: mod/profile.php:195 -msgid "Tips for New Members" -msgstr "Ábendingar fyrir nýja notendur" - -#: mod/profiles.php:58 -msgid "Profile deleted." -msgstr "Forsíðu eytt." - -#: mod/profiles.php:74 mod/profiles.php:110 -msgid "Profile-" -msgstr "Forsíða-" - -#: mod/profiles.php:93 mod/profiles.php:132 -msgid "New profile created." -msgstr "Ný forsíða búinn til." - -#: mod/profiles.php:116 -msgid "Profile unavailable to clone." -msgstr "Ekki tókst að klóna forsíðu" - -#: mod/profiles.php:206 -msgid "Profile Name is required." -msgstr "Nafn á forsíðu er skilyrði" - -#: mod/profiles.php:347 -msgid "Marital Status" -msgstr "Hjúskaparstaða" - -#: mod/profiles.php:351 -msgid "Romantic Partner" -msgstr "" - -#: mod/profiles.php:363 -msgid "Work/Employment" -msgstr "Atvinna/Starf" - -#: mod/profiles.php:366 -msgid "Religion" -msgstr "Trúarbrögð" - -#: mod/profiles.php:370 -msgid "Political Views" -msgstr "Stórnmálaskoðanir" - -#: mod/profiles.php:374 -msgid "Gender" -msgstr "Kyn" - -#: mod/profiles.php:378 -msgid "Sexual Preference" -msgstr "Kynhneigð" - -#: mod/profiles.php:382 -msgid "XMPP" -msgstr "XMPP" - -#: mod/profiles.php:386 -msgid "Homepage" -msgstr "Heimasíða" - -#: mod/profiles.php:390 mod/profiles.php:593 -msgid "Interests" -msgstr "Áhugamál" - -#: mod/profiles.php:401 mod/profiles.php:589 -msgid "Location" -msgstr "Staðsetning" - -#: mod/profiles.php:483 -msgid "Profile updated." -msgstr "Forsíða uppfærð." - -#: mod/profiles.php:540 -msgid "Hide contacts and friends:" -msgstr "Fela tengiliði og vini" - -#: mod/profiles.php:545 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Fela tengiliða-/vinalista á þessari forsíðu?" - -#: mod/profiles.php:565 -msgid "Show more profile fields:" -msgstr "" - -#: mod/profiles.php:577 -msgid "Profile Actions" -msgstr "" - -#: mod/profiles.php:578 -msgid "Edit Profile Details" -msgstr "Breyta forsíðu upplýsingum" - -#: mod/profiles.php:580 -msgid "Change Profile Photo" -msgstr "Breyta forsíðumynd" - -#: mod/profiles.php:581 -msgid "View this profile" -msgstr "Skoða þessa forsíðu" - -#: mod/profiles.php:582 mod/profiles.php:677 src/Model/Profile.php:389 -msgid "Edit visibility" -msgstr "Sýsla með sýnileika" - -#: mod/profiles.php:583 -msgid "Create a new profile using these settings" -msgstr "Búa til nýja forsíðu með þessum stillingum" - -#: mod/profiles.php:584 -msgid "Clone this profile" -msgstr "Klóna þessa forsíðu" - -#: mod/profiles.php:585 -msgid "Delete this profile" -msgstr "Eyða þessari forsíðu" - -#: mod/profiles.php:587 -msgid "Basic information" -msgstr "Grunnupplýsingar" - -#: mod/profiles.php:588 -msgid "Profile picture" -msgstr "Notandamynd" - -#: mod/profiles.php:590 -msgid "Preferences" -msgstr "Kjörstillingar" - -#: mod/profiles.php:591 -msgid "Status information" -msgstr "" - -#: mod/profiles.php:592 -msgid "Additional information" -msgstr "Viðbótarupplýsingar" - -#: mod/profiles.php:595 -msgid "Relation" -msgstr "Vensl" - -#: mod/profiles.php:596 src/Util/Temporal.php:81 src/Util/Temporal.php:83 -msgid "Miscellaneous" -msgstr "Ýmislegt" - -#: mod/profiles.php:599 -msgid "Your Gender:" -msgstr "Kyn:" - -#: mod/profiles.php:600 -msgid " Marital Status:" -msgstr " Hjúskaparstaða:" - -#: mod/profiles.php:601 src/Model/Profile.php:780 -msgid "Sexual Preference:" -msgstr "Kynhneigð:" - -#: mod/profiles.php:602 -msgid "Example: fishing photography software" -msgstr "Til dæmis: fishing photography software" - -#: mod/profiles.php:607 -msgid "Profile Name:" -msgstr "Forsíðu nafn:" - -#: mod/profiles.php:609 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "Þetta er opinber forsíða.
    Hún verður sjáanleg öðrum sem nota alnetið." - -#: mod/profiles.php:610 -msgid "Your Full Name:" -msgstr "Fullt nafn:" - -#: mod/profiles.php:611 -msgid "Title/Description:" -msgstr "Starfsheiti/Lýsing:" - -#: mod/profiles.php:614 -msgid "Street Address:" -msgstr "Gata:" - -#: mod/profiles.php:615 -msgid "Locality/City:" -msgstr "Bær/Borg:" - -#: mod/profiles.php:616 -msgid "Region/State:" -msgstr "Svæði/Sýsla" - -#: mod/profiles.php:617 -msgid "Postal/Zip Code:" -msgstr "Póstnúmer:" - -#: mod/profiles.php:618 -msgid "Country:" -msgstr "Land:" - -#: mod/profiles.php:619 src/Util/Temporal.php:149 -msgid "Age: " -msgstr "Aldur: " - -#: mod/profiles.php:622 -msgid "Who: (if applicable)" -msgstr "Hver: (ef við á)" - -#: mod/profiles.php:622 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Dæmi: cathy123, Cathy Williams, cathy@example.com" - -#: mod/profiles.php:623 -msgid "Since [date]:" -msgstr "Síðan [date]:" - -#: mod/profiles.php:625 -msgid "Tell us about yourself..." -msgstr "Segðu okkur frá sjálfum þér..." - -#: mod/profiles.php:626 -msgid "XMPP (Jabber) address:" -msgstr "XMPP (Jabber) vistfang:" - -#: mod/profiles.php:626 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." -msgstr "" - -#: mod/profiles.php:627 -msgid "Homepage URL:" -msgstr "Slóð heimasíðu:" - -#: mod/profiles.php:628 src/Model/Profile.php:788 -msgid "Hometown:" -msgstr "Heimabær:" - -#: mod/profiles.php:629 src/Model/Profile.php:796 -msgid "Political Views:" -msgstr "Stórnmálaskoðanir:" - -#: mod/profiles.php:630 -msgid "Religious Views:" -msgstr "Trúarskoðanir" - -#: mod/profiles.php:631 -msgid "Public Keywords:" -msgstr "Opinber leitarorð:" - -#: mod/profiles.php:631 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)" - -#: mod/profiles.php:632 -msgid "Private Keywords:" -msgstr "Einka leitarorð:" - -#: mod/profiles.php:632 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)" - -#: mod/profiles.php:633 src/Model/Profile.php:812 -msgid "Likes:" -msgstr "Líkar:" - -#: mod/profiles.php:634 src/Model/Profile.php:816 -msgid "Dislikes:" -msgstr "Mislíkar:" - -#: mod/profiles.php:635 -msgid "Musical interests" -msgstr "Tónlistarsmekkur" - -#: mod/profiles.php:636 -msgid "Books, literature" -msgstr "Bækur, bókmenntir" - -#: mod/profiles.php:637 -msgid "Television" -msgstr "Sjónvarp" - -#: mod/profiles.php:638 -msgid "Film/dance/culture/entertainment" -msgstr "Kvikmyndir/dans/menning/afþreying" - -#: mod/profiles.php:639 -msgid "Hobbies/Interests" -msgstr "Áhugamál" - -#: mod/profiles.php:640 -msgid "Love/romance" -msgstr "Ást/rómantík" - -#: mod/profiles.php:641 -msgid "Work/employment" -msgstr "Atvinna:" - -#: mod/profiles.php:642 -msgid "School/education" -msgstr "Skóli/menntun" - -#: mod/profiles.php:643 -msgid "Contact information and Social Networks" -msgstr "Tengiliðaupplýsingar og samfélagsnet" - -#: mod/profiles.php:674 src/Model/Profile.php:385 -msgid "Profile Image" -msgstr "Forsíðumynd" - -#: mod/profiles.php:676 src/Model/Profile.php:388 -msgid "visible to everybody" -msgstr "sýnilegt öllum" - -#: mod/profiles.php:683 -msgid "Edit/Manage Profiles" -msgstr "Sýsla með forsíður" - -#: mod/profiles.php:684 src/Model/Profile.php:375 src/Model/Profile.php:397 -msgid "Change profile photo" -msgstr "Breyta forsíðumynd" - -#: mod/profiles.php:685 src/Model/Profile.php:376 -msgid "Create New Profile" -msgstr "Stofna nýja forsíðu" - -#: mod/register.php:100 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti." - -#: mod/register.php:104 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
    login: %s
    " -"password: %s

    You can change your password after login." -msgstr "" - -#: mod/register.php:111 -msgid "Registration successful." -msgstr "Nýskráning tókst." - -#: mod/register.php:116 -msgid "Your registration can not be processed." -msgstr "Skráninguna þína er ekki hægt að vinna." - -#: mod/register.php:163 -msgid "Your registration is pending approval by the site owner." -msgstr "Skráningin þín bíður samþykkis af eiganda síðunnar." - -#: mod/register.php:221 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Þú mátt (valfrjálst) fylla í þetta svæði gegnum OpenID með því gefa upp þitt OpenID og ýta á 'Skrá'." - -#: mod/register.php:222 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Ef þú veist ekki hvað OpenID er, skildu þá þetta svæði eftir tómt en fylltu í restin af svæðunum." - -#: mod/register.php:223 -msgid "Your OpenID (optional): " -msgstr "Þitt OpenID (valfrjálst):" - -#: mod/register.php:235 -msgid "Include your profile in member directory?" -msgstr "Á forsíðan þín að sjást í notendalistanum?" - -#: mod/register.php:262 -msgid "Note for the admin" -msgstr "" - -#: mod/register.php:262 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "" - -#: mod/register.php:263 -msgid "Membership on this site is by invitation only." -msgstr "Aðild að þessum vef er " - -#: mod/register.php:264 -msgid "Your invitation code: " -msgstr "" - -#: mod/register.php:273 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "" - -#: mod/register.php:274 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "" - -#: mod/register.php:276 mod/settings.php:1190 -msgid "New Password:" -msgstr "Nýtt aðgangsorð:" - -#: mod/register.php:276 -msgid "Leave empty for an auto generated password." -msgstr "" - -#: mod/register.php:277 mod/settings.php:1191 -msgid "Confirm:" -msgstr "Staðfesta:" - -#: mod/register.php:278 -#, 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 "" - -#: mod/register.php:279 -msgid "Choose a nickname: " -msgstr "Veldu gælunafn:" - -#: mod/register.php:282 src/Content/Nav.php:128 src/Module/Login.php:284 -msgid "Register" -msgstr "Nýskrá" - -#: mod/register.php:289 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: mod/removeme.php:44 -msgid "User deleted their account" -msgstr "" - -#: mod/removeme.php:45 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "" - -#: mod/removeme.php:46 -#, php-format -msgid "The user id is %d" -msgstr "" - -#: mod/removeme.php:77 mod/removeme.php:80 -msgid "Remove My Account" -msgstr "Eyða þessum notanda" - -#: mod/removeme.php:78 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft." - -#: mod/removeme.php:79 -msgid "Please enter your password for verification:" -msgstr "Sláðu inn aðgangsorð yðar:" - -#: mod/settings.php:56 -msgid "Account" -msgstr "Notandi" - -#: mod/settings.php:73 -msgid "Display" -msgstr "Birting" - -#: mod/settings.php:80 mod/settings.php:834 -msgid "Social Networks" -msgstr "Samfélagsnet" - -#: mod/settings.php:94 src/Content/Nav.php:205 -msgid "Delegations" -msgstr "" - -#: mod/settings.php:101 -msgid "Connected apps" -msgstr "Tengd forrit" - -#: mod/settings.php:115 -msgid "Remove account" -msgstr "Henda tengilið" - -#: mod/settings.php:167 -msgid "Missing some important data!" -msgstr "Vantar mikilvæg gögn!" - -#: mod/settings.php:278 -msgid "Failed to connect with email account using the settings provided." -msgstr "Ekki tókst að tengjast við pósthólf með stillingum sem uppgefnar eru." - -#: mod/settings.php:283 -msgid "Email settings updated." -msgstr "Stillingar póstfangs uppfærðar." - -#: mod/settings.php:299 -msgid "Features updated" -msgstr "" - -#: mod/settings.php:372 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: mod/settings.php:384 src/Model/User.php:339 -msgid "Passwords do not match. Password unchanged." -msgstr "Aðgangsorð ber ekki saman. Aðgangsorð óbreytt." - -#: mod/settings.php:389 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Tóm aðgangsorð eru ekki leyfileg. Aðgangsorð óbreytt." - -#: mod/settings.php:394 src/Core/Console/NewPassword.php:87 -msgid "" -"The new password has been exposed in a public data dump, please choose " -"another." -msgstr "" - -#: mod/settings.php:400 -msgid "Wrong password." -msgstr "Rangt lykilorð." - -#: mod/settings.php:407 src/Core/Console/NewPassword.php:94 -msgid "Password changed." -msgstr "Aðgangsorði breytt." - -#: mod/settings.php:409 src/Core/Console/NewPassword.php:91 -msgid "Password update failed. Please try again." -msgstr "Uppfærsla á aðgangsorði tókst ekki. Reyndu aftur." - -#: mod/settings.php:493 -msgid " Please use a shorter name." -msgstr " Notaðu styttra nafn." - -#: mod/settings.php:496 -msgid " Name too short." -msgstr "Nafn of stutt." - -#: mod/settings.php:504 -msgid "Wrong Password" -msgstr "Rangt lykilorð" - -#: mod/settings.php:509 -msgid "Invalid email." -msgstr "Ógilt tölvupóstfang." - -#: mod/settings.php:516 -msgid "Cannot change to that email." -msgstr "" - -#: mod/settings.php:566 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "" - -#: mod/settings.php:569 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" - -#: mod/settings.php:609 -msgid "Settings updated." -msgstr "Stillingar uppfærðar." - -#: mod/settings.php:668 mod/settings.php:694 mod/settings.php:728 -msgid "Add application" -msgstr "Bæta við forriti" - -#: mod/settings.php:672 mod/settings.php:698 -msgid "Consumer Key" -msgstr "Notenda lykill" - -#: mod/settings.php:673 mod/settings.php:699 -msgid "Consumer Secret" -msgstr "Notenda leyndarmál" - -#: mod/settings.php:674 mod/settings.php:700 -msgid "Redirect" -msgstr "Áframsenda" - -#: mod/settings.php:675 mod/settings.php:701 -msgid "Icon url" -msgstr "Táknmyndar slóð" - -#: mod/settings.php:686 -msgid "You can't edit this application." -msgstr "Þú getur ekki breytt þessu forriti." - -#: mod/settings.php:727 -msgid "Connected Apps" -msgstr "Tengd forrit" - -#: mod/settings.php:729 src/Object/Post.php:155 src/Object/Post.php:157 -msgid "Edit" -msgstr "Breyta" - -#: mod/settings.php:731 -msgid "Client key starts with" -msgstr "Lykill viðskiptavinar byrjar á" - -#: mod/settings.php:732 -msgid "No name" -msgstr "Ekkert nafn" - -#: mod/settings.php:733 -msgid "Remove authorization" -msgstr "Fjarlæga auðkenningu" - -#: mod/settings.php:744 -msgid "No Addon settings configured" -msgstr "" - -#: mod/settings.php:753 -msgid "Addon Settings" -msgstr "" - -#: mod/settings.php:774 -msgid "Additional Features" -msgstr "Viðbótareiginleikar" - -#: mod/settings.php:797 src/Content/ContactSelector.php:83 -msgid "Diaspora" -msgstr "Diaspora" - -#: mod/settings.php:797 mod/settings.php:798 -msgid "enabled" -msgstr "kveikt" - -#: mod/settings.php:797 mod/settings.php:798 -msgid "disabled" -msgstr "slökkt" - -#: mod/settings.php:797 mod/settings.php:798 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Innbyggður stuðningur fyrir %s tenging er%s" - -#: mod/settings.php:798 -msgid "GNU Social (OStatus)" -msgstr "GNU Social (OStatus)" - -#: mod/settings.php:829 -msgid "Email access is disabled on this site." -msgstr "Slökkt hefur verið á tölvupóst aðgang á þessum þjón." - -#: mod/settings.php:839 -msgid "General Social Media Settings" -msgstr "Almennar stillingar samfélagsmiðla" - -#: mod/settings.php:840 -msgid "Disable Content Warning" -msgstr "" - -#: mod/settings.php:840 -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 " -"collapsing and sets the content warning as the post title. Doesn't affect " -"any other content filtering you eventually set up." -msgstr "" - -#: mod/settings.php:841 -msgid "Disable intelligent shortening" -msgstr "" - -#: mod/settings.php:841 -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:842 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "" - -#: mod/settings.php:842 -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:843 -msgid "Default group for OStatus contacts" -msgstr "" - -#: mod/settings.php:844 -msgid "Your legacy GNU Social account" -msgstr "" - -#: mod/settings.php:844 -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:847 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: mod/settings.php:851 -msgid "Email/Mailbox Setup" -msgstr "Tölvupóstur stilling" - -#: mod/settings.php:852 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Ef þú villt hafa samskipti við tölvupóststengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu." - -#: mod/settings.php:853 -msgid "Last successful email check:" -msgstr "Síðasta prófun á tölvupóstfangi:" - -#: mod/settings.php:855 -msgid "IMAP server name:" -msgstr "IMAP þjónn:" - -#: mod/settings.php:856 -msgid "IMAP port:" -msgstr "IMAP port:" - -#: mod/settings.php:857 -msgid "Security:" -msgstr "Öryggi:" - -#: mod/settings.php:857 mod/settings.php:862 -msgid "None" -msgstr "Ekkert" - -#: mod/settings.php:858 -msgid "Email login name:" -msgstr "Notandanafn tölvupóstfangs:" - -#: mod/settings.php:859 -msgid "Email password:" -msgstr "Lykilorð tölvupóstfangs:" - -#: mod/settings.php:860 -msgid "Reply-to address:" -msgstr "Svarpóstfang:" - -#: mod/settings.php:861 -msgid "Send public posts to all email contacts:" -msgstr "Senda opinberar færslur á alla tölvupóst viðtakendur:" - -#: mod/settings.php:862 -msgid "Action after import:" -msgstr "" - -#: mod/settings.php:862 src/Content/Nav.php:193 -msgid "Mark as seen" -msgstr "Merka sem séð" - -#: mod/settings.php:862 -msgid "Move to folder" -msgstr "Flytja yfir í skrásafn" - -#: mod/settings.php:863 -msgid "Move to folder:" -msgstr "Flytja yfir í skrásafn:" - -#: mod/settings.php:906 -#, php-format -msgid "%s - (Unsupported)" -msgstr "%s - (ekki stutt)" - -#: mod/settings.php:908 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (á tilraunastigi)" - -#: mod/settings.php:951 -msgid "Display Settings" -msgstr "Birtingarstillingar" - -#: mod/settings.php:957 mod/settings.php:981 -msgid "Display Theme:" -msgstr "Útlits þema:" - -#: mod/settings.php:958 -msgid "Mobile Theme:" -msgstr "Farsímaþema" - -#: mod/settings.php:959 -msgid "Suppress warning of insecure networks" -msgstr "" - -#: mod/settings.php:959 -msgid "" -"Should the system suppress the warning that the current group contains " -"members of networks that can't receive non public postings." -msgstr "" - -#: mod/settings.php:960 -msgid "Update browser every xx seconds" -msgstr "Endurhlaða vefsíðu á xx sekúndu fresti" - -#: mod/settings.php:960 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "" - -#: mod/settings.php:961 -msgid "Number of items to display per page:" -msgstr "" - -#: mod/settings.php:961 mod/settings.php:962 -msgid "Maximum of 100 items" -msgstr "" - -#: mod/settings.php:962 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" - -#: mod/settings.php:963 -msgid "Don't show emoticons" -msgstr "Ekki birta tjáningartákn" - -#: mod/settings.php:964 -msgid "Calendar" -msgstr "Dagatal" - -#: mod/settings.php:965 -msgid "Beginning of week:" -msgstr "Upphaf viku:" - -#: mod/settings.php:966 -msgid "Don't show notices" -msgstr "Ekki birta tilkynningar" - -#: mod/settings.php:967 -msgid "Infinite scroll" -msgstr "" - -#: mod/settings.php:968 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: mod/settings.php:968 -msgid "" -"When disabled, the network page is updated all the time, which could be " -"confusing while reading." -msgstr "" - -#: mod/settings.php:969 -msgid "Bandwith Saver Mode" -msgstr "" - -#: mod/settings.php:969 -msgid "" -"When enabled, embedded content is not displayed on automatic updates, they " -"only show on page reload." -msgstr "" - -#: mod/settings.php:970 -msgid "Smart Threading" -msgstr "" - -#: mod/settings.php:970 -msgid "" -"When enabled, suppress extraneous thread indentation while keeping it where " -"it matters. Only works if threading is available and enabled." -msgstr "" - -#: mod/settings.php:972 -msgid "General Theme Settings" -msgstr "" - -#: mod/settings.php:973 -msgid "Custom Theme Settings" -msgstr "" - -#: mod/settings.php:974 -msgid "Content Settings" -msgstr "Stillingar efnis" - -#: mod/settings.php:975 view/theme/duepuntozero/config.php:73 -#: view/theme/frio/config.php:120 view/theme/quattro/config.php:75 -#: view/theme/vier/config.php:121 -msgid "Theme settings" -msgstr "Þemastillingar" - -#: mod/settings.php:994 -msgid "Unable to find your profile. Please contact your admin." -msgstr "" - -#: mod/settings.php:1033 -msgid "Account Types" -msgstr "Gerðir notendaaðganga" - -#: mod/settings.php:1034 -msgid "Personal Page Subtypes" -msgstr "" - -#: mod/settings.php:1035 -msgid "Community Forum Subtypes" -msgstr "" - -#: mod/settings.php:1043 -msgid "Account for a personal profile." -msgstr "" - -#: mod/settings.php:1047 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "" - -#: mod/settings.php:1051 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "" - -#: mod/settings.php:1055 -msgid "Account for community discussions." -msgstr "" - -#: mod/settings.php:1059 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "" - -#: mod/settings.php:1063 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "" - -#: mod/settings.php:1067 -msgid "Automatically approves all contact requests." -msgstr "" - -#: mod/settings.php:1071 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "" - -#: mod/settings.php:1074 -msgid "Private Forum [Experimental]" -msgstr "Einkaspjallsvæði [á tilraunastigi]" - -#: mod/settings.php:1075 -msgid "Requires manual approval of contact requests." -msgstr "" - -#: mod/settings.php:1086 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1086 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Valfrjálst) Leyfa þessu OpenID til að auðkennast sem þessi notandi." - -#: mod/settings.php:1094 -msgid "Publish your default profile in your local site directory?" -msgstr "Gefa út sjálfgefna forsíðu í tengiliðalista á þessum þjón?" - -#: mod/settings.php:1094 -#, php-format -msgid "" -"Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public." -msgstr "" - -#: mod/settings.php:1100 -msgid "Publish your default profile in the global social directory?" -msgstr "Gefa sjálfgefna forsíðu út í alheimstengiliðalista?" - -#: mod/settings.php:1100 -#, php-format -msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "" - -#: mod/settings.php:1107 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Fela tengiliða-/vinalistann þinn fyrir áhorfendum á sjálfgefinni forsíðu?" - -#: mod/settings.php:1107 -msgid "" -"Your contact list won't be shown in your default profile page. You can " -"decide to show your contact list separately for each additional profile you " -"create" -msgstr "" - -#: mod/settings.php:1111 -msgid "Hide your profile details from anonymous viewers?" -msgstr "" - -#: mod/settings.php:1111 -msgid "" -"Anonymous visitors will only see your profile picture, your display name and" -" the nickname you are using on your profile page. Disables posting public " -"messages to Diaspora and other networks." -msgstr "" - -#: mod/settings.php:1115 -msgid "Allow friends to post to your profile page?" -msgstr "Leyfa vinum að deila á forsíðuna þína?" - -#: mod/settings.php:1115 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "" - -#: mod/settings.php:1119 -msgid "Allow friends to tag your posts?" -msgstr "Leyfa vinum að merkja færslurnar þínar?" - -#: mod/settings.php:1119 -msgid "Your contacts can add additional tags to your posts." -msgstr "" - -#: mod/settings.php:1123 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Leyfa að stungið verði uppá þér sem hugsamlegum vinur fyrir aðra notendur? " - -#: mod/settings.php:1123 -msgid "" -"If you like, Friendica may suggest new members to add you as a contact." -msgstr "" - -#: mod/settings.php:1127 -msgid "Permit unknown people to send you private mail?" -msgstr "" - -#: mod/settings.php:1127 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "" - -#: mod/settings.php:1131 -msgid "Profile is not published." -msgstr "Forsíðu hefur ekki verið gefinn út." - -#: mod/settings.php:1137 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "" - -#: mod/settings.php:1144 -msgid "Automatically expire posts after this many days:" -msgstr "Sjálfkrafa fyrna færslu eftir hvað marga daga:" - -#: mod/settings.php:1144 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Tómar færslur renna ekki út. Útrunnum færslum er eytt" - -#: mod/settings.php:1145 -msgid "Advanced expiration settings" -msgstr "Ítarlegar stillingar fyrningatíma" - -#: mod/settings.php:1146 -msgid "Advanced Expiration" -msgstr "Flókin fyrning" - -#: mod/settings.php:1147 -msgid "Expire posts:" -msgstr "Fyrna færslur:" - -#: mod/settings.php:1148 -msgid "Expire personal notes:" -msgstr "Fyrna einka glósur:" - -#: mod/settings.php:1149 -msgid "Expire starred posts:" -msgstr "Fyrna stjörnumerktar færslur:" - -#: mod/settings.php:1150 -msgid "Expire photos:" -msgstr "Fyrna myndum:" - -#: mod/settings.php:1151 -msgid "Only expire posts by others:" -msgstr "" - -#: mod/settings.php:1181 -msgid "Account Settings" -msgstr "Stillingar aðgangs" - -#: mod/settings.php:1189 -msgid "Password Settings" -msgstr "Stillingar aðgangsorða" - -#: mod/settings.php:1191 -msgid "Leave password fields blank unless changing" -msgstr "Hafðu aðgangsorða svæði tóm nema þegar verið er að breyta" - -#: mod/settings.php:1192 -msgid "Current Password:" -msgstr "Núverandi lykilorð:" - -#: mod/settings.php:1192 mod/settings.php:1193 -msgid "Your current password to confirm the changes" -msgstr "" - -#: mod/settings.php:1193 -msgid "Password:" -msgstr "Lykilorð:" - -#: mod/settings.php:1197 -msgid "Basic Settings" -msgstr "Grunnstillingar" - -#: mod/settings.php:1198 src/Model/Profile.php:736 -msgid "Full Name:" -msgstr "Fullt nafn:" - -#: mod/settings.php:1199 -msgid "Email Address:" -msgstr "Tölvupóstfang:" - -#: mod/settings.php:1200 -msgid "Your Timezone:" -msgstr "Þitt tímabelti:" - -#: mod/settings.php:1201 -msgid "Your Language:" -msgstr "Tungumálið þitt:" - -#: mod/settings.php:1201 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "" - -#: mod/settings.php:1202 -msgid "Default Post Location:" -msgstr "Sjálfgefin staðsetning færslu:" - -#: mod/settings.php:1203 -msgid "Use Browser Location:" -msgstr "Nota vafra staðsetningu:" - -#: mod/settings.php:1206 -msgid "Security and Privacy Settings" -msgstr "Öryggis og friðhelgistillingar" - -#: mod/settings.php:1208 -msgid "Maximum Friend Requests/Day:" -msgstr "Hámarks vinabeiðnir á dag:" - -#: mod/settings.php:1208 mod/settings.php:1237 -msgid "(to prevent spam abuse)" -msgstr "(til að koma í veg fyrir rusl misnotkun)" - -#: mod/settings.php:1209 -msgid "Default Post Permissions" -msgstr "Sjálfgefnar aðgangstýring á færslum" - -#: mod/settings.php:1210 -msgid "(click to open/close)" -msgstr "(ýttu á til að opna/loka)" - -#: mod/settings.php:1220 -msgid "Default Private Post" -msgstr "Sjálfgefin einkafærsla" - -#: mod/settings.php:1221 -msgid "Default Public Post" -msgstr "Sjálfgefin opinber færsla" - -#: mod/settings.php:1225 -msgid "Default Permissions for New Posts" -msgstr "Sjálfgefnar heimildir á nýjum færslum" - -#: mod/settings.php:1237 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: mod/settings.php:1240 -msgid "Notification Settings" -msgstr "Stillingar á tilkynningum" - -#: mod/settings.php:1241 -msgid "Send a notification email when:" -msgstr "Senda tilkynningapóst þegar:" - -#: mod/settings.php:1242 -msgid "You receive an introduction" -msgstr "Þú færð kynningu" - -#: mod/settings.php:1243 -msgid "Your introductions are confirmed" -msgstr "Kynningarnar þínar eru samþykktar" - -#: mod/settings.php:1244 -msgid "Someone writes on your profile wall" -msgstr "Einhver skrifar á vegginn þinn" - -#: mod/settings.php:1245 -msgid "Someone writes a followup comment" -msgstr "Einhver skrifar athugasemd á færslu hjá þér" - -#: mod/settings.php:1246 -msgid "You receive a private message" -msgstr "Þú færð einkaskilaboð" - -#: mod/settings.php:1247 -msgid "You receive a friend suggestion" -msgstr "Þér hefur borist vina uppástunga" - -#: mod/settings.php:1248 -msgid "You are tagged in a post" -msgstr "Þú varst merkt(ur) í færslu" - -#: mod/settings.php:1249 -msgid "You are poked/prodded/etc. in a post" -msgstr "Það var potað/ýtt/o.s.frv. við þér í færslu" - -#: mod/settings.php:1251 -msgid "Activate desktop notifications" -msgstr "" - -#: mod/settings.php:1251 -msgid "Show desktop popup on new notifications" -msgstr "" - -#: mod/settings.php:1253 -msgid "Text-only notification emails" -msgstr "" - -#: mod/settings.php:1255 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: mod/settings.php:1257 -msgid "Show detailled notifications" -msgstr "" - -#: mod/settings.php:1259 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "" - -#: mod/settings.php:1261 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: mod/settings.php:1262 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: mod/settings.php:1265 -msgid "Relocate" -msgstr "Endurstaðsetja" - -#: mod/settings.php:1266 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." +msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "" -#: mod/settings.php:1267 -msgid "Resend relocate message to contacts" -msgstr "" - -#: view/theme/duepuntozero/config.php:54 src/Model/User.php:502 -msgid "default" -msgstr "sjálfgefið" - -#: view/theme/duepuntozero/config.php:55 -msgid "greenzero" -msgstr "" - -#: view/theme/duepuntozero/config.php:56 -msgid "purplezero" -msgstr "" - -#: view/theme/duepuntozero/config.php:57 -msgid "easterbunny" -msgstr "" - -#: view/theme/duepuntozero/config.php:58 -msgid "darkzero" -msgstr "" - -#: view/theme/duepuntozero/config.php:59 -msgid "comix" -msgstr "" - -#: view/theme/duepuntozero/config.php:60 -msgid "slackr" -msgstr "" - -#: view/theme/duepuntozero/config.php:74 -msgid "Variations" -msgstr "Tilbrigði" - -#: view/theme/frio/php/Image.php:24 -msgid "Top Banner" -msgstr "Borði efst" +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +msgid "Page not found." +msgstr "Síða fannst ekki." -#: view/theme/frio/php/Image.php:24 -msgid "" -"Resize image to the width of the screen and show background color below on " -"long pages." -msgstr "" - -#: view/theme/frio/php/Image.php:25 -msgid "Full screen" -msgstr "Skjáfylli" - -#: view/theme/frio/php/Image.php:25 -msgid "" -"Resize image to fill entire screen, clipping either the right or the bottom." -msgstr "" - -#: view/theme/frio/php/Image.php:26 -msgid "Single row mosaic" -msgstr "" +#: src/App/Router.php:323 +msgid "You must be logged in to use addons. " +msgstr "Þú verður að vera skráður inn til að geta notað viðbætur. " -#: view/theme/frio/php/Image.php:26 +#: src/BaseModule.php:401 msgid "" -"Resize image to repeat it on a single row, either vertical or horizontal." -msgstr "" - -#: view/theme/frio/php/Image.php:27 -msgid "Mosaic" -msgstr "Mósaík" - -#: view/theme/frio/php/Image.php:27 -msgid "Repeat image to fill the screen." -msgstr "" - -#: view/theme/frio/config.php:102 -msgid "Custom" -msgstr "Sérsniðið" - -#: view/theme/frio/config.php:114 -msgid "Note" -msgstr "Minnispunktur" - -#: view/theme/frio/config.php:114 -msgid "Check image permissions if all users are allowed to see the image" -msgstr "" - -#: view/theme/frio/config.php:121 -msgid "Select color scheme" -msgstr "Veldu litastef" - -#: view/theme/frio/config.php:122 -msgid "Navigation bar background color" -msgstr "" - -#: view/theme/frio/config.php:123 -msgid "Navigation bar icon color " -msgstr "" - -#: view/theme/frio/config.php:124 -msgid "Link color" -msgstr "Litur tengils" - -#: view/theme/frio/config.php:125 -msgid "Set the background color" -msgstr "Stilltu bakgrunnslit" - -#: view/theme/frio/config.php:126 -msgid "Content background opacity" -msgstr "" - -#: view/theme/frio/config.php:127 -msgid "Set the background image" -msgstr "" - -#: view/theme/frio/config.php:128 -msgid "Background image style" -msgstr "Stíll bakgrunnsmyndar" - -#: view/theme/frio/config.php:133 -msgid "Login page background image" -msgstr "" - -#: view/theme/frio/config.php:137 -msgid "Login page background color" -msgstr "" - -#: view/theme/frio/config.php:137 -msgid "Leave background image and color empty for theme defaults" -msgstr "" - -#: view/theme/frio/theme.php:238 -msgid "Guest" -msgstr "Gestur" - -#: view/theme/frio/theme.php:243 -msgid "Visitor" -msgstr "Í heimsókn" - -#: view/theme/frio/theme.php:256 src/Content/Nav.php:97 -#: src/Module/Login.php:312 -msgid "Logout" -msgstr "Útskráning" - -#: view/theme/frio/theme.php:256 src/Content/Nav.php:97 -msgid "End this session" -msgstr "Loka þessu innliti" - -#: view/theme/frio/theme.php:259 src/Content/Nav.php:100 -#: src/Content/Nav.php:186 -msgid "Your posts and conversations" -msgstr "Samtölin þín" - -#: view/theme/frio/theme.php:260 src/Content/Nav.php:101 -msgid "Your profile page" -msgstr "Forsíðan þín" - -#: view/theme/frio/theme.php:261 src/Content/Nav.php:102 -msgid "Your photos" -msgstr "Myndirnar þínar" - -#: view/theme/frio/theme.php:262 src/Content/Nav.php:103 -#: src/Model/Profile.php:910 src/Model/Profile.php:913 -msgid "Videos" -msgstr "Myndskeið" - -#: view/theme/frio/theme.php:262 src/Content/Nav.php:103 -msgid "Your videos" -msgstr "Myndskeiðin þín" - -#: view/theme/frio/theme.php:263 src/Content/Nav.php:104 -msgid "Your events" -msgstr "Atburðirnir þínir" - -#: view/theme/frio/theme.php:266 src/Content/Nav.php:183 -msgid "Conversations from your friends" -msgstr "Samtöl frá vinum" - -#: view/theme/frio/theme.php:267 src/Content/Nav.php:170 -#: src/Model/Profile.php:925 src/Model/Profile.php:936 -msgid "Events and Calendar" -msgstr "Atburðir og dagskrá" - -#: view/theme/frio/theme.php:268 src/Content/Nav.php:196 -msgid "Private mail" -msgstr "Einka skilaboð" - -#: view/theme/frio/theme.php:269 src/Content/Nav.php:207 -msgid "Account settings" -msgstr "Stillingar aðgangsreiknings" - -#: view/theme/frio/theme.php:270 src/Content/Nav.php:213 -msgid "Manage/edit friends and contacts" -msgstr "Sýsla með vini og tengiliði" - -#: view/theme/quattro/config.php:76 -msgid "Alignment" -msgstr "Hliðjöfnun" - -#: view/theme/quattro/config.php:76 -msgid "Left" -msgstr "Vinstri" - -#: view/theme/quattro/config.php:76 -msgid "Center" -msgstr "Miðjað" - -#: view/theme/quattro/config.php:77 -msgid "Color scheme" -msgstr "Litastef" - -#: view/theme/quattro/config.php:78 -msgid "Posts font size" -msgstr "Leturstærð færslna" - -#: view/theme/quattro/config.php:79 -msgid "Textareas font size" -msgstr "Leturstærð textareita" - -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" +"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 "" -#: view/theme/vier/config.php:115 src/Core/ACL.php:309 -msgid "don't show" -msgstr "fela" - -#: view/theme/vier/config.php:115 src/Core/ACL.php:308 -msgid "show" -msgstr "sýna" - -#: view/theme/vier/config.php:122 -msgid "Set style" -msgstr "Setja stíl" - -#: view/theme/vier/config.php:123 -msgid "Community Pages" -msgstr "Síður samfélagsins" - -#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150 -msgid "Community Profiles" -msgstr "Forsíður samfélagsins" - -#: view/theme/vier/config.php:125 -msgid "Help or @NewHere ?" -msgstr "Hjálp eða @NýrHér ?" - -#: view/theme/vier/config.php:126 view/theme/vier/theme.php:388 -msgid "Connect Services" -msgstr "Tengja þjónustur" - -#: view/theme/vier/config.php:127 -msgid "Find Friends" -msgstr "Finna vini" - -#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181 -msgid "Last users" -msgstr "Nýjustu notendurnir" - -#: view/theme/vier/theme.php:199 src/Content/Widget.php:59 -msgid "Find People" -msgstr "Finna fólk" - -#: view/theme/vier/theme.php:200 src/Content/Widget.php:60 -msgid "Enter name or interest" -msgstr "Settu inn nafn eða áhugamál" - -#: view/theme/vier/theme.php:202 src/Content/Widget.php:62 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Dæmi: Jón Jónsson, Veiði" - -#: view/theme/vier/theme.php:205 src/Content/Widget.php:65 -msgid "Similar Interests" -msgstr "Svipuð áhugamál" - -#: view/theme/vier/theme.php:206 src/Content/Widget.php:66 -msgid "Random Profile" -msgstr "Forsíða af handahófi" - -#: view/theme/vier/theme.php:207 src/Content/Widget.php:67 -msgid "Invite Friends" -msgstr "Bjóða vinum aðgang" - -#: view/theme/vier/theme.php:210 src/Content/Widget.php:70 -msgid "Local Directory" -msgstr "Staðvær mappa" - -#: view/theme/vier/theme.php:255 src/Content/ForumManager.php:127 -msgid "External link to forum" -msgstr "Ytri tengill á spjallsvæði" - -#: view/theme/vier/theme.php:291 -msgid "Quick Start" +#: src/BaseModule.php:428 +msgid "All contacts" msgstr "" -#: src/Core/UserImport.php:104 -msgid "Error decoding account file" +#: src/BaseModule.php:433 src/Content/Conversation/Factory/Timeline.php:62 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 +msgid "Followers" msgstr "" -#: src/Core/UserImport.php:110 -msgid "Error! No version data in file! This is not a Friendica account file?" +#: src/BaseModule.php:438 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 +msgid "Following" msgstr "" -#: src/Core/UserImport.php:118 -#, php-format -msgid "User '%s' already exists on this server!" +#: src/BaseModule.php:443 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 +msgid "Mutual friends" msgstr "" -#: src/Core/UserImport.php:151 -msgid "User creation error" +#: src/BaseModule.php:451 +msgid "Common" msgstr "" -#: src/Core/UserImport.php:169 -msgid "User profile creation error" +#: src/Console/Addon.php:175 src/Console/Addon.php:199 +msgid "Addon not found" msgstr "" -#: src/Core/UserImport.php:213 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" - -#: src/Core/UserImport.php:278 -msgid "Done. You can now login with your username and password" +#: src/Console/Addon.php:179 +msgid "Addon already enabled" msgstr "" -#: src/Core/ACL.php:295 -msgid "Post to Email" -msgstr "Senda skilaboð á tölvupóst" - -#: src/Core/ACL.php:301 -msgid "Hide your profile details from unknown viewers?" -msgstr "Fela forsíðuupplýsingar fyrir óþekktum?" - -#: src/Core/ACL.php:300 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." +#: src/Console/Addon.php:203 +msgid "Addon already disabled" msgstr "" -#: src/Core/ACL.php:307 -msgid "Visible to everybody" -msgstr "Sjáanlegt öllum" - -#: src/Core/ACL.php:319 -msgid "Close" -msgstr "Loka" - -#: src/Core/Console/NewPassword.php:78 -msgid "Enter new password: " -msgstr "Settu inn nýtt lykilorð: " - -#: src/Core/Console/NewPassword.php:83 src/Model/User.php:262 -msgid "Password can't be empty" -msgstr "Lykilorð getur ekki verið autt" - -#: src/Core/Console/ArchiveContact.php:67 +#: src/Console/ArchiveContact.php:106 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "" -#: src/Core/Console/ArchiveContact.php:72 +#: src/Console/ArchiveContact.php:109 msgid "The contact entries have been archived" msgstr "" -#: src/Core/NotificationsManager.php:171 -msgid "System" -msgstr "Kerfi" - -#: src/Core/NotificationsManager.php:192 src/Content/Nav.php:124 -#: src/Content/Nav.php:186 -msgid "Home" -msgstr "Heim" - -#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:190 -msgid "Introductions" -msgstr "Kynningar" - -#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268 +#: src/Console/GlobalCommunityBlock.php:96 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format -msgid "%s commented on %s's post" -msgstr "%s athugasemd við %s's færslu" +msgid "Could not find any contact entry for this URL (%s)" +msgstr "" -#: src/Core/NotificationsManager.php:267 +#: src/Console/GlobalCommunityBlock.php:101 +#: src/Module/Moderation/Blocklist/Contact.php:82 +msgid "The contact has been blocked from the node" +msgstr "" + +#: src/Console/MergeContacts.php:75 #, php-format -msgid "%s created a new post" -msgstr "%s bjó til færslu" +msgid "%d %s, %d duplicates." +msgstr "" -#: src/Core/NotificationsManager.php:281 +#: src/Console/MergeContacts.php:78 #, php-format -msgid "%s liked %s's post" -msgstr "%s líkaði færsla hjá %s" +msgid "uri-id is empty for contact %s." +msgstr "" -#: src/Core/NotificationsManager.php:294 +#: src/Console/MergeContacts.php:91 #, php-format -msgid "%s disliked %s's post" -msgstr "%s mislíkaði færsla hjá %s" +msgid "No valid first contact found for uri-id %d." +msgstr "" -#: src/Core/NotificationsManager.php:307 +#: src/Console/MergeContacts.php:102 #, php-format -msgid "%s is attending %s's event" +msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "" -#: src/Core/NotificationsManager.php:320 +#: src/Console/MergeContacts.php:106 #, php-format -msgid "%s is not attending %s's event" +msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "" -#: src/Core/NotificationsManager.php:333 +#: src/Console/MergeContacts.php:142 #, php-format -msgid "%s may attend %s's event" +msgid "Deletion of id %d failed" msgstr "" -#: src/Core/NotificationsManager.php:350 +#: src/Console/MergeContacts.php:144 #, php-format -msgid "%s is now friends with %s" -msgstr "%s er nú vinur %s" - -#: src/Core/NotificationsManager.php:825 -msgid "Friend Suggestion" -msgstr "Vina tillaga" - -#: src/Core/NotificationsManager.php:851 -msgid "Friend/Connect Request" -msgstr "Vinabeiðni/Tengibeiðni" - -#: src/Core/NotificationsManager.php:851 -msgid "New Follower" -msgstr "Nýr fylgjandi" - -#: src/Core/Install.php:157 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Gat ekki fundið skipanalínu útgáfu af PHP í vefþjóns PATH." - -#: src/Core/Install.php:158 -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'" +msgid "Deletion of id %d was successful" msgstr "" -#: src/Core/Install.php:162 -msgid "PHP executable path" -msgstr "PHP keyrslu slóð" - -#: src/Core/Install.php:162 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: src/Core/Install.php:167 -msgid "Command line PHP" -msgstr "Skipanalínu PHP" - -#: src/Core/Install.php:176 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: src/Core/Install.php:177 -msgid "Found PHP version: " -msgstr "Fann PHP útgáfu: " - -#: src/Core/Install.php:179 -msgid "PHP cli binary" -msgstr "" - -#: src/Core/Install.php:189 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Skipanalínu útgáfa af PHP á vefþjóninum hefur ekki kveikt á \"register_argc_argv\"." - -#: src/Core/Install.php:190 -msgid "This is required for message delivery to work." -msgstr "Þetta er skilyrt fyrir því að skilaboð komist til skila." - -#: src/Core/Install.php:192 -msgid "PHP register_argc_argv" -msgstr "" - -#: src/Core/Install.php:220 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Villa: Stefjan \"openssl_pkey_new\" á vefþjóninum getur ekki stofnað dulkóðunar lykla" - -#: src/Core/Install.php:221 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Ef keyrt er á Window, skoðaðu þá \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: src/Core/Install.php:223 -msgid "Generate encryption keys" -msgstr "Búa til dulkóðunar lykla" - -#: src/Core/Install.php:244 -msgid "libCurl PHP module" -msgstr "libCurl PHP eining" - -#: src/Core/Install.php:245 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP eining" - -#: src/Core/Install.php:246 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP eining" - -#: src/Core/Install.php:247 -msgid "PDO or MySQLi PHP module" -msgstr "" - -#: src/Core/Install.php:248 -msgid "mb_string PHP module" -msgstr "mb_string PHP eining" - -#: src/Core/Install.php:249 -msgid "XML PHP module" -msgstr "" - -#: src/Core/Install.php:250 -msgid "iconv PHP module" -msgstr "" - -#: src/Core/Install.php:251 -msgid "POSIX PHP module" -msgstr "" - -#: src/Core/Install.php:255 src/Core/Install.php:257 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite eining" - -#: src/Core/Install.php:255 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Villa: Apache vefþjóns eining mod-rewrite er skilyrði og er ekki uppsett. " - -#: src/Core/Install.php:263 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Villa: libCurl PHP eining er skilyrði og er ekki uppsett." - -#: src/Core/Install.php:267 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Villa: GD graphics PHP eining með JPEG stuðningi er skilyrði og er ekki uppsett." - -#: src/Core/Install.php:271 -msgid "Error: openssl PHP module required but not installed." -msgstr "Villa: openssl PHP eining skilyrði og er ekki uppsett." - -#: src/Core/Install.php:275 -msgid "Error: PDO or MySQLi PHP module required but not installed." -msgstr "" - -#: src/Core/Install.php:279 -msgid "Error: The MySQL driver for PDO is not installed." -msgstr "" - -#: src/Core/Install.php:283 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Villa: mb_string PHP eining skilyrði en ekki uppsett." - -#: src/Core/Install.php:287 -msgid "Error: iconv PHP module required but not installed." -msgstr "" - -#: src/Core/Install.php:291 -msgid "Error: POSIX PHP module required but not installed." -msgstr "" - -#: src/Core/Install.php:301 -msgid "Error, XML PHP module required but not installed." -msgstr "" - -#: src/Core/Install.php:320 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "Vef uppsetningar forrit þarf að geta stofnað skránna \".htconfig.php\" in efsta skráarsafninu á vefþjóninum og það getur ekki gert það." - -#: src/Core/Install.php:321 -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 "Þetta er oftast aðgangsstýringa stilling, þar sem vefþjónninn getur ekki skrifað út skrár í skráarsafnið - þó þú getir það." - -#: src/Core/Install.php:322 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "" - -#: src/Core/Install.php:323 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "" - -#: src/Core/Install.php:326 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php er skrifanleg" - -#: src/Core/Install.php:344 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" - -#: src/Core/Install.php:345 -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 "" - -#: src/Core/Install.php:346 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "" - -#: src/Core/Install.php:347 -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 "" - -#: src/Core/Install.php:350 -msgid "view/smarty3 is writable" -msgstr "" - -#: src/Core/Install.php:375 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" - -#: src/Core/Install.php:377 -msgid "Error message from Curl when fetching" -msgstr "" - -#: src/Core/Install.php:381 -msgid "Url rewrite is working" -msgstr "" - -#: src/Core/Install.php:408 -msgid "ImageMagick PHP extension is not installed" -msgstr "" - -#: src/Core/Install.php:410 -msgid "ImageMagick PHP extension is installed" -msgstr "" - -#: src/Core/Install.php:412 -msgid "ImageMagick supports GIF" -msgstr "" - -#: src/Util/Temporal.php:147 src/Model/Profile.php:756 -msgid "Birthday:" -msgstr "Afmælisdagur:" - -#: src/Util/Temporal.php:151 -msgid "YYYY-MM-DD or MM-DD" -msgstr "ÁÁÁÁ-MM-DD eða MM-DD" - -#: src/Util/Temporal.php:294 -msgid "never" -msgstr "aldrei" - -#: src/Util/Temporal.php:300 -msgid "less than a second ago" -msgstr "fyrir minna en sekúndu" - -#: src/Util/Temporal.php:303 -msgid "year" -msgstr "ár" - -#: src/Util/Temporal.php:303 -msgid "years" -msgstr "ár" - -#: src/Util/Temporal.php:304 -msgid "months" -msgstr "mánuðir" - -#: src/Util/Temporal.php:305 -msgid "weeks" -msgstr "vikur" - -#: src/Util/Temporal.php:306 -msgid "days" -msgstr "dagar" - -#: src/Util/Temporal.php:307 -msgid "hour" -msgstr "klukkustund" - -#: src/Util/Temporal.php:307 -msgid "hours" -msgstr "klukkustundir" - -#: src/Util/Temporal.php:308 -msgid "minute" -msgstr "mínúta" - -#: src/Util/Temporal.php:308 -msgid "minutes" -msgstr "mínútur" - -#: src/Util/Temporal.php:309 -msgid "second" -msgstr "sekúnda" - -#: src/Util/Temporal.php:309 -msgid "seconds" -msgstr "sekúndur" - -#: src/Util/Temporal.php:318 +#: src/Console/MergeContacts.php:150 #, php-format -msgid "%1$d %2$s ago" -msgstr "Fyrir %1$d %2$s síðan" +msgid "Updating \"%s\" in \"%s\" from %d to %d" +msgstr "" -#: src/Content/Text/BBCode.php:416 -msgid "view full size" -msgstr "Skoða í fullri stærð" +#: src/Console/MergeContacts.php:152 +msgid " - found" +msgstr "" -#: src/Content/Text/BBCode.php:842 src/Content/Text/BBCode.php:1611 -#: src/Content/Text/BBCode.php:1612 -msgid "Image/photo" -msgstr "Mynd" +#: src/Console/MergeContacts.php:159 +msgid " - failed" +msgstr "" -#: src/Content/Text/BBCode.php:980 +#: src/Console/MergeContacts.php:161 +msgid " - success" +msgstr "" + +#: src/Console/MergeContacts.php:165 +msgid " - deleted" +msgstr "" + +#: src/Console/MergeContacts.php:168 +msgid " - done" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:91 +msgid "The avatar cache needs to be enabled to use this command." +msgstr "" + +#: src/Console/MoveToAvatarCache.php:109 #, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: src/Content/Text/BBCode.php:1538 src/Content/Text/BBCode.php:1560 -msgid "$1 wrote:" -msgstr "$1 skrifaði:" - -#: src/Content/Text/BBCode.php:1620 src/Content/Text/BBCode.php:1621 -msgid "Encrypted content" -msgstr "Dulritað efni" - -#: src/Content/Text/BBCode.php:1740 -msgid "Invalid source protocol" +msgid "no resource in photo %s" msgstr "" -#: src/Content/Text/BBCode.php:1751 -msgid "Invalid link protocol" +#: src/Console/MoveToAvatarCache.php:137 +#, php-format +msgid "no photo with id %s" msgstr "" -#: src/Content/OEmbed.php:253 -msgid "Embedding disabled" -msgstr "Innfelling ekki leyfð" +#: src/Console/MoveToAvatarCache.php:146 +#, php-format +msgid "no image data for photo with id %s" +msgstr "" -#: src/Content/OEmbed.php:373 -msgid "Embedded content" -msgstr "Innbyggt efni" +#: src/Console/MoveToAvatarCache.php:155 +#, php-format +msgid "invalid image for id %s" +msgstr "" -#: src/Content/Widget/CalendarExport.php:61 -msgid "Export" -msgstr "Flytja út" +#: src/Console/MoveToAvatarCache.php:168 +#, php-format +msgid "Quit on invalid photo %s" +msgstr "" -#: src/Content/Widget/CalendarExport.php:62 -msgid "Export calendar as ical" -msgstr "Flytja dagatal út sem ICAL" +#: src/Console/PostUpdate.php:87 +#, php-format +msgid "Post update version number has been set to %s." +msgstr "" -#: src/Content/Widget/CalendarExport.php:63 -msgid "Export calendar as csv" -msgstr "Flytja dagatal út sem CSV" +#: src/Console/PostUpdate.php:95 +msgid "Check for pending update actions." +msgstr "" -#: src/Content/ContactSelector.php:55 +#: src/Console/PostUpdate.php:97 +msgid "Done." +msgstr "" + +#: src/Console/PostUpdate.php:99 +msgid "Execute pending post updates." +msgstr "" + +#: src/Console/PostUpdate.php:105 +msgid "All pending post updates are done." +msgstr "" + +#: src/Console/User.php:158 src/Console/User.php:245 +msgid "Enter user nickname: " +msgstr "" + +#: src/Console/User.php:182 src/Model/User.php:711 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "Notandi fannst ekki" + +#: src/Console/User.php:202 +msgid "Enter new password: " +msgstr "Settu inn nýtt lykilorð: " + +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 +msgid "Password update failed. Please try again." +msgstr "Uppfærsla á aðgangsorði tókst ekki. Reyndu aftur." + +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 +msgid "Password changed." +msgstr "Aðgangsorði breytt." + +#: src/Console/User.php:237 +msgid "Enter user name: " +msgstr "" + +#: src/Console/User.php:253 +msgid "Enter user email address: " +msgstr "" + +#: src/Console/User.php:261 +msgid "Enter a language (optional): " +msgstr "" + +#: src/Console/User.php:286 +msgid "User is not pending." +msgstr "" + +#: src/Console/User.php:318 +msgid "User has already been marked for deletion." +msgstr "" + +#: src/Console/User.php:323 +#, php-format +msgid "Type \"yes\" to delete %s" +msgstr "" + +#: src/Console/User.php:325 +msgid "Deletion aborted." +msgstr "" + +#: src/Console/User.php:450 +msgid "Enter category: " +msgstr "" + +#: src/Console/User.php:460 +msgid "Enter key: " +msgstr "" + +#: src/Console/User.php:494 +msgid "Enter value: " +msgstr "" + +#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +msgid "newer" +msgstr "nýrri" + +#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +msgid "older" +msgstr "eldri" + +#: src/Content/ContactSelector.php:51 msgid "Frequently" msgstr "Oft" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:52 msgid "Hourly" msgstr "Á klukkustundar fresti" -#: src/Content/ContactSelector.php:57 +#: src/Content/ContactSelector.php:53 msgid "Twice daily" msgstr "Tvisvar á dag" -#: src/Content/ContactSelector.php:58 +#: src/Content/ContactSelector.php:54 msgid "Daily" msgstr "Daglega" -#: src/Content/ContactSelector.php:59 +#: src/Content/ContactSelector.php:55 msgid "Weekly" msgstr "Vikulega" -#: src/Content/ContactSelector.php:60 +#: src/Content/ContactSelector.php:56 msgid "Monthly" msgstr "Mánaðarlega" -#: src/Content/ContactSelector.php:80 +#: src/Content/ContactSelector.php:126 +msgid "DFRN" +msgstr "" + +#: src/Content/ContactSelector.php:127 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:81 +#: src/Content/ContactSelector.php:128 msgid "RSS/Atom" msgstr "RSS / Atom" -#: src/Content/ContactSelector.php:84 -msgid "Facebook" -msgstr "Facebook" +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Email" +msgstr "Tölvupóstur" -#: src/Content/ContactSelector.php:85 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +msgid "Diaspora" +msgstr "Diaspora" + +#: src/Content/ContactSelector.php:131 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:86 +#: src/Content/ContactSelector.php:132 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:87 +#: src/Content/ContactSelector.php:133 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:88 +#: src/Content/ContactSelector.php:134 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:89 +#: src/Content/ContactSelector.php:135 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:90 +#: src/Content/ContactSelector.php:136 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:91 +#: src/Content/ContactSelector.php:137 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:92 +#: src/Content/ContactSelector.php:138 +msgid "Discourse" +msgstr "" + +#: src/Content/ContactSelector.php:139 msgid "Diaspora Connector" msgstr "Diaspora tenging" -#: src/Content/ContactSelector.php:93 +#: src/Content/ContactSelector.php:140 msgid "GNU Social Connector" msgstr "GNU Social tenging" -#: src/Content/ContactSelector.php:94 +#: src/Content/ContactSelector.php:141 +msgid "ActivityPub" +msgstr "" + +#: src/Content/ContactSelector.php:142 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:95 -msgid "App.net" -msgstr "App.net" - -#: src/Content/ContactSelector.php:125 -msgid "Male" -msgstr "Karl" - -#: src/Content/ContactSelector.php:125 -msgid "Female" -msgstr "Kona" - -#: src/Content/ContactSelector.php:125 -msgid "Currently Male" -msgstr "Karlkyns í augnablikinu" - -#: src/Content/ContactSelector.php:125 -msgid "Currently Female" -msgstr "Kvenkyns í augnablikinu" - -#: src/Content/ContactSelector.php:125 -msgid "Mostly Male" -msgstr "Aðallega karlkyns" - -#: src/Content/ContactSelector.php:125 -msgid "Mostly Female" -msgstr "Aðallega kvenkyns" - -#: src/Content/ContactSelector.php:125 -msgid "Transgender" -msgstr "Kyngervingur (trans)" - -#: src/Content/ContactSelector.php:125 -msgid "Intersex" -msgstr "Hvorugkyn" - -#: src/Content/ContactSelector.php:125 -msgid "Transsexual" -msgstr "Kynskiptingur" - -#: src/Content/ContactSelector.php:125 -msgid "Hermaphrodite" -msgstr "Tvíkynja" - -#: src/Content/ContactSelector.php:125 -msgid "Neuter" -msgstr "Kynlaus" - -#: src/Content/ContactSelector.php:125 -msgid "Non-specific" -msgstr "Ekki ákveðið" - -#: src/Content/ContactSelector.php:125 -msgid "Other" -msgstr "Annað" - -#: src/Content/ContactSelector.php:147 -msgid "Males" -msgstr "Karlar" - -#: src/Content/ContactSelector.php:147 -msgid "Females" -msgstr "Konur" - -#: src/Content/ContactSelector.php:147 -msgid "Gay" -msgstr "Hommi" - -#: src/Content/ContactSelector.php:147 -msgid "Lesbian" -msgstr "Lesbía" - -#: src/Content/ContactSelector.php:147 -msgid "No Preference" -msgstr "Til í allt" - -#: src/Content/ContactSelector.php:147 -msgid "Bisexual" -msgstr "Tvíkynhneigð/ur" - -#: src/Content/ContactSelector.php:147 -msgid "Autosexual" -msgstr "Sjálfkynhneigð/ur" - -#: src/Content/ContactSelector.php:147 -msgid "Abstinent" -msgstr "Skírlíf/ur" - -#: src/Content/ContactSelector.php:147 -msgid "Virgin" -msgstr "Hrein mey/Hreinn sveinn" - -#: src/Content/ContactSelector.php:147 -msgid "Deviant" -msgstr "Óþekkur" - -#: src/Content/ContactSelector.php:147 -msgid "Fetish" -msgstr "Blæti" - -#: src/Content/ContactSelector.php:147 -msgid "Oodles" -msgstr "Mikið af því" - -#: src/Content/ContactSelector.php:147 -msgid "Nonsexual" -msgstr "Engin kynhneigð" - -#: src/Content/ContactSelector.php:169 -msgid "Single" -msgstr "Einhleyp/ur" - -#: src/Content/ContactSelector.php:169 -msgid "Lonely" -msgstr "Einmanna" - -#: src/Content/ContactSelector.php:169 -msgid "Available" -msgstr "Á lausu" - -#: src/Content/ContactSelector.php:169 -msgid "Unavailable" -msgstr "Frátekin/n" - -#: src/Content/ContactSelector.php:169 -msgid "Has crush" -msgstr "Er skotin(n)" - -#: src/Content/ContactSelector.php:169 -msgid "Infatuated" +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:169 -msgid "Dating" -msgstr "Deita" +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "" -#: src/Content/ContactSelector.php:169 -msgid "Unfaithful" -msgstr "Ótrú/r" +#: src/Content/ContactSelector.php:180 +#, php-format +msgid "%s (via %s)" +msgstr "" -#: src/Content/ContactSelector.php:169 -msgid "Sex Addict" -msgstr "Kynlífsfíkill" +#: src/Content/Conversation.php:226 +msgid "and" +msgstr "og" -#: src/Content/ContactSelector.php:169 src/Model/User.php:519 -msgid "Friends" -msgstr "Vinir" +#: src/Content/Conversation.php:229 +#, php-format +msgid "and %d other people" +msgstr "og %d öðrum" -#: src/Content/ContactSelector.php:169 -msgid "Friends/Benefits" -msgstr "Vinir með meiru" +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Casual" -msgstr "Lauslát/ur" +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Engaged" -msgstr "Trúlofuð/Trúlofaður" +#: src/Content/Conversation.php:239 +#, php-format +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Married" -msgstr "Gift/ur" +#: src/Content/Conversation.php:241 +#, php-format +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Imaginarily married" -msgstr "Gift/ur í huganum" +#: src/Content/Conversation.php:243 +#, php-format +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Partners" -msgstr "Félagar" +#: src/Content/Conversation.php:245 +#, php-format +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Cohabiting" -msgstr "Í sambúð" +#: src/Content/Conversation.php:274 +#, php-format +msgid " likes this" +msgid_plural " like this" +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Common law" -msgstr "Löggilt sambúð" +#: src/Content/Conversation.php:277 +#, php-format +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Happy" -msgstr "Hamingjusöm/Hamingjusamur" +#: src/Content/Conversation.php:280 +#, php-format +msgid " attends" +msgid_plural " attend" +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Not looking" -msgstr "Ekki að leita" +#: src/Content/Conversation.php:283 +#, php-format +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Swinger" -msgstr "Svingari" +#: src/Content/Conversation.php:286 +#, php-format +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Betrayed" -msgstr "Svikin/n" +#: src/Content/Conversation.php:289 +#, php-format +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] "" +msgstr[1] "" -#: src/Content/ContactSelector.php:169 -msgid "Separated" -msgstr "Skilin/n að borði og sæng" +#: src/Content/Conversation.php:336 +msgid "Visible to everybody" +msgstr "Sjáanlegt öllum" -#: src/Content/ContactSelector.php:169 -msgid "Unstable" -msgstr "Óstabíll" +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1107 +msgid "Please enter a image/video/audio/webpage URL:" +msgstr "" -#: src/Content/ContactSelector.php:169 -msgid "Divorced" -msgstr "Fráskilin/n" +#: src/Content/Conversation.php:338 +msgid "Tag term:" +msgstr "Merka með:" -#: src/Content/ContactSelector.php:169 -msgid "Imaginarily divorced" -msgstr "Fráskilin/n í huganum" +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 +msgid "Save to Folder:" +msgstr "Vista í möppu:" -#: src/Content/ContactSelector.php:169 -msgid "Widowed" -msgstr "Ekkja/Ekkill" +#: src/Content/Conversation.php:340 +msgid "Where are you right now?" +msgstr "Hvar ert þú núna?" -#: src/Content/ContactSelector.php:169 -msgid "Uncertain" -msgstr "Óviss" +#: src/Content/Conversation.php:341 +msgid "Delete item(s)?" +msgstr "Eyða atriði/atriðum?" -#: src/Content/ContactSelector.php:169 -msgid "It's complicated" -msgstr "Þetta er flókið" +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 +msgid "Created at" +msgstr "" -#: src/Content/ContactSelector.php:169 -msgid "Don't care" -msgstr "Gæti ekki verið meira sama" +#: src/Content/Conversation.php:363 +msgid "New Post" +msgstr "Ný færsla" -#: src/Content/ContactSelector.php:169 -msgid "Ask me" -msgstr "Spurðu mig" +#: src/Content/Conversation.php:366 +msgid "Share" +msgstr "Deila" -#: src/Content/Widget.php:33 +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "Hlaða upp mynd" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Bæta við skrá" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "Hengja skrá við" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1097 +msgid "Bold" +msgstr "Feitletrað" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1098 +msgid "Italic" +msgstr "Skáletrað" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1099 +msgid "Underline" +msgstr "Undirstrikað" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1101 +msgid "Quote" +msgstr "Gæsalappir" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1102 +msgid "Add emojis" +msgstr "" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1100 +msgid "Content Warning" +msgstr "" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1103 +msgid "Code" +msgstr "Kóði" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1104 +msgid "Image" +msgstr "Mynd" + +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1105 +msgid "Link" +msgstr "Tengill" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1106 +msgid "Link or Media" +msgstr "" + +#: src/Content/Conversation.php:382 +msgid "Video" +msgstr "" + +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "Veldu staðsetningu þína" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "stilla staðsetningu" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "Hreinsa staðsetningu í vafra" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "hreinsa staðsetningu" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Setja titil" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Flokkar (listi aðskilinn með kommum)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 +msgid "Scheduled at" +msgstr "" + +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Stillingar aðgangsheimilda" + +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Opinber færsla" + +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:120 +#: src/Model/Profile.php:467 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "Skilaboð" + +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Vafri" + +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "" + +#: src/Content/Conversation.php:595 +msgid "remove" +msgstr "fjarlægja" + +#: src/Content/Conversation.php:599 +msgid "Delete Selected Items" +msgstr "Eyða völdum færslum" + +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 +#, php-format +msgid "You had been addressed (%s)." +msgstr "" + +#: src/Content/Conversation.php:769 +#, php-format +msgid "You are following %s." +msgstr "" + +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "" + +#: src/Content/Conversation.php:776 +msgid "You subscribed to one or more tags in this post." +msgstr "" + +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "" + +#: src/Content/Conversation.php:798 +msgid "Reshared" +msgstr "" + +#: src/Content/Conversation.php:798 +#, php-format +msgid "Reshared by %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:801 +#, php-format +msgid "%s is participating in this thread." +msgstr "" + +#: src/Content/Conversation.php:804 +msgid "Stored for general reasons" +msgstr "" + +#: src/Content/Conversation.php:807 +msgid "Global post" +msgstr "" + +#: src/Content/Conversation.php:810 +msgid "Sent via an relay server" +msgstr "" + +#: src/Content/Conversation.php:810 +#, php-format +msgid "Sent via the relay server %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:813 +msgid "Fetched" +msgstr "" + +#: src/Content/Conversation.php:813 +#, php-format +msgid "Fetched because of %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:816 +msgid "Stored because of a child post to complete this thread." +msgstr "" + +#: src/Content/Conversation.php:819 +msgid "Local delivery" +msgstr "" + +#: src/Content/Conversation.php:822 +msgid "Stored because of your activity (like, comment, star, ...)" +msgstr "" + +#: src/Content/Conversation.php:825 +msgid "Distributed" +msgstr "" + +#: src/Content/Conversation.php:828 +msgid "Pushed to us" +msgstr "" + +#: src/Content/Conversation.php:1492 src/Object/Post.php:247 +msgid "Pinned item" +msgstr "" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:521 +#: src/Object/Post.php:522 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Birta forsíðu %s hjá %s" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:509 +msgid "Categories:" +msgstr "Flokkar:" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:510 +msgid "Filed under:" +msgstr "Skráð undir:" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:535 +#, php-format +msgid "%s from %s" +msgstr "%s til %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "Birta í samhengi" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "For you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "What's Hot" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "Posts with a lot of interactions" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:61 +#, php-format +msgid "Posts in %s" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:62 +msgid "Posts from your followers that you don't follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Sharers of sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Posts with images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Posts with audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Posts with videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Local Community" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Posts from local users on this server" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Global Community" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Posts from users of the whole federated network" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Latest Activity" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Sort by latest activity" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Latest Posts" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Sort by post received date" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Latest Creation" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Sort by post creation date" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:106 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "Einka" + +#: src/Content/Conversation/Factory/Timeline.php:106 +msgid "Posts that mention or involve you" +msgstr "Færslur sem tengjast þér" + +#: src/Content/Conversation/Factory/Timeline.php:107 src/Object/Post.php:380 +msgid "Starred" +msgstr "Stjörnumerkt" + +#: src/Content/Conversation/Factory/Timeline.php:107 +msgid "Favourite Posts" +msgstr "Uppáhalds færslur" + +#: src/Content/Feature.php:96 +msgid "General Features" +msgstr "Almennir eiginleikar" + +#: src/Content/Feature.php:98 +msgid "Photo Location" +msgstr "Staðsetning ljósmyndar" + +#: 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 "" + +#: src/Content/Feature.php:99 +msgid "Trending Tags" +msgstr "" + +#: src/Content/Feature.php:99 +msgid "" +"Show a community page widget with a list of the most popular tags in recent " +"public posts." +msgstr "" + +#: src/Content/Feature.php:104 +msgid "Post Composition Features" +msgstr "" + +#: src/Content/Feature.php:105 +msgid "Auto-mention Groups" +msgstr "" + +#: src/Content/Feature.php:105 +msgid "" +"Add/remove mention when a group page is selected/deselected in ACL window." +msgstr "" + +#: src/Content/Feature.php:106 +msgid "Explicit Mentions" +msgstr "" + +#: src/Content/Feature.php:106 +msgid "" +"Add explicit mentions to comment box for manual control over who gets " +"mentioned in replies." +msgstr "" + +#: src/Content/Feature.php:107 +msgid "Add an abstract from ActivityPub content warnings" +msgstr "" + +#: src/Content/Feature.php:107 +msgid "" +"Add an abstract when commenting on ActivityPub posts with a content warning." +" Abstracts are displayed as content warning on systems like Mastodon or " +"Pleroma." +msgstr "" + +#: src/Content/Feature.php:112 +msgid "Post/Comment Tools" +msgstr "" + +#: src/Content/Feature.php:113 +msgid "Post Categories" +msgstr "" + +#: src/Content/Feature.php:113 +msgid "Add categories to your posts" +msgstr "" + +#: src/Content/Feature.php:118 +msgid "Advanced Profile Settings" +msgstr "" + +#: src/Content/Feature.php:119 +msgid "List Groups" +msgstr "" + +#: src/Content/Feature.php:119 +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "" + +#: src/Content/Feature.php:120 +msgid "Tag Cloud" +msgstr "Merkjaský" + +#: src/Content/Feature.php:120 +msgid "Provide a personal tag cloud on your profile page" +msgstr "" + +#: src/Content/Feature.php:121 +msgid "Display Membership Date" +msgstr "" + +#: src/Content/Feature.php:121 +msgid "Display membership date in profile" +msgstr "" + +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "" + +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "" + +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "" + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1273 +msgid "Groups" +msgstr "" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 +msgid "show less" +msgstr "" + +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 +msgid "show more" +msgstr "birta meira" + +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "" + +#: src/Content/Item.php:331 src/Model/Item.php:3003 +msgid "event" +msgstr "atburður" + +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "staða" + +#: src/Content/Item.php:340 src/Model/Item.php:3005 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "mynd" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s merkti %2$s's %3$s með %4$s" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 +msgid "Follow Thread" +msgstr "Fylgja þræði" + +#: src/Content/Item.php:429 src/Model/Contact.php:1227 +msgid "View Status" +msgstr "Skoða stöðu" + +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1219 +#: src/Model/Contact.php:1228 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 +msgid "View Profile" +msgstr "Skoða forsíðu" + +#: src/Content/Item.php:431 src/Model/Contact.php:1229 +msgid "View Photos" +msgstr "Skoða myndir" + +#: src/Content/Item.php:432 src/Model/Contact.php:1220 +#: src/Model/Contact.php:1230 +msgid "Network Posts" +msgstr "Færslur á neti" + +#: src/Content/Item.php:433 src/Model/Contact.php:1221 +#: src/Model/Contact.php:1231 +msgid "View Contact" +msgstr "Skoða tengilið" + +#: src/Content/Item.php:434 src/Model/Contact.php:1232 +msgid "Send PM" +msgstr "Senda einkaboð" + +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 +msgid "Block" +msgstr "Útiloka" + +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 +msgid "Ignore" +msgstr "Hunsa" + +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "" + +#: src/Content/Item.php:438 src/Object/Post.php:288 +#, php-format +msgid "Ignore %s server" +msgstr "" + +#: src/Content/Item.php:442 src/Object/Post.php:490 +msgid "Languages" +msgstr "" + +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1222 src/Model/Contact.php:1233 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Tengjast/fylgja" + +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "" + +#: src/Content/Nav.php:121 +msgid "Nothing new here" +msgstr "Ekkert nýtt hér" + +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +msgid "Go back" +msgstr "" + +#: src/Content/Nav.php:126 +msgid "Clear notifications" +msgstr "Hreinsa tilkynningar" + +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" +msgstr "" + +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 +msgid "Logout" +msgstr "Útskráning" + +#: src/Content/Nav.php:222 +msgid "End this session" +msgstr "Loka þessu innliti" + +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 +msgid "Login" +msgstr "Innskráning" + +#: src/Content/Nav.php:224 +msgid "Sign in" +msgstr "Innskrá" + +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "" + +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "" + +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +msgid "Profile" +msgstr "Forsíða" + +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +msgid "Your profile page" +msgstr "Forsíðan þín" + +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Myndir" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +msgid "Your photos" +msgstr "Myndirnar þínar" + +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 +msgid "Media" +msgstr "" + +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +msgid "Your postings with media" +msgstr "" + +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "Dagatal" + +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "" + +#: src/Content/Nav.php:234 +msgid "Personal notes" +msgstr "Einkaglósur" + +#: src/Content/Nav.php:234 +msgid "Your personal notes" +msgstr "Einkaglósurnar þínar" + +#: src/Content/Nav.php:251 src/Content/Nav.php:308 +msgid "Home" +msgstr "Heim" + +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "Heimasíða" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 +#: src/Module/Security/Login.php:124 +msgid "Register" +msgstr "Nýskrá" + +#: src/Content/Nav.php:255 +msgid "Create an account" +msgstr "Stofna notanda" + +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 +msgid "Help" +msgstr "Hjálp" + +#: src/Content/Nav.php:261 +msgid "Help and documentation" +msgstr "Hjálp og leiðbeiningar" + +#: src/Content/Nav.php:265 +msgid "Apps" +msgstr "Forrit" + +#: src/Content/Nav.php:265 +msgid "Addon applications, utilities, games" +msgstr "Viðbótarforrit, nytjatól, leikir" + +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 +msgid "Search" +msgstr "Leita" + +#: src/Content/Nav.php:269 +msgid "Search site content" +msgstr "Leita í efni á vef" + +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 +msgid "Full Text" +msgstr "Allur textinn" + +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 +#: src/Content/Widget/TagCloud.php:68 +msgid "Tags" +msgstr "Merki" + +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 +msgid "Contacts" +msgstr "Tengiliðir" + +#: src/Content/Nav.php:289 +msgid "Community" +msgstr "Samfélag" + +#: src/Content/Nav.php:289 +msgid "Conversations on this and other servers" +msgstr "" + +#: src/Content/Nav.php:296 +msgid "Directory" +msgstr "Mappa" + +#: src/Content/Nav.php:296 +msgid "People directory" +msgstr "Nafnaskrá" + +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 +msgid "Information" +msgstr "Upplýsingar" + +#: src/Content/Nav.php:298 +msgid "Information about this friendica instance" +msgstr "Upplýsingar um þetta tilvik Friendica" + +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 +msgid "Terms of Service" +msgstr "Þjónustuskilmálar" + +#: src/Content/Nav.php:301 +msgid "Terms of Service of this Friendica instance" +msgstr "" + +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +msgid "Network" +msgstr "Samfélag" + +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +msgid "Conversations from your friends" +msgstr "Samtöl frá vinum" + +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "Samtölin þín" + +#: src/Content/Nav.php:312 +msgid "Introductions" +msgstr "Kynningar" + +#: src/Content/Nav.php:312 +msgid "Friend Requests" +msgstr "Vinabeiðnir" + +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 +msgid "Notifications" +msgstr "Tilkynningar" + +#: src/Content/Nav.php:314 +msgid "See all notifications" +msgstr "Sjá allar tilkynningar" + +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Merka sem séð" + +#: src/Content/Nav.php:315 +msgid "Mark all system notifications as seen" +msgstr "" + +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +msgid "Private mail" +msgstr "Einka skilaboð" + +#: src/Content/Nav.php:319 +msgid "Inbox" +msgstr "Innhólf" + +#: src/Content/Nav.php:320 +msgid "Outbox" +msgstr "Úthólf" + +#: src/Content/Nav.php:324 +msgid "Accounts" +msgstr "" + +#: src/Content/Nav.php:324 +msgid "Manage other pages" +msgstr "Sýsla með aðrar síður" + +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:175 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +msgid "Settings" +msgstr "Stillingar" + +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +msgid "Account settings" +msgstr "Stillingar aðgangsreiknings" + +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +msgid "Manage/edit friends and contacts" +msgstr "Sýsla með vini og tengiliði" + +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +msgid "Admin" +msgstr "Stjórnandi" + +#: src/Content/Nav.php:334 +msgid "Site setup and configuration" +msgstr "Uppsetning og stillingar vefsvæðis" + +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "" + +#: src/Content/Nav.php:338 +msgid "Navigation" +msgstr "Yfirsýn" + +#: src/Content/Nav.php:338 +msgid "Site map" +msgstr "Yfirlit um vefsvæði" + +#: src/Content/OEmbed.php:316 +msgid "Embedding disabled" +msgstr "Innfelling ekki leyfð" + +#: src/Content/OEmbed.php:440 +msgid "Embedded content" +msgstr "Innbyggt efni" + +#: src/Content/Pager.php:216 +msgid "first" +msgstr "fremsta" + +#: src/Content/Pager.php:221 +msgid "prev" +msgstr "á undan" + +#: src/Content/Pager.php:276 +msgid "next" +msgstr "næsta" + +#: src/Content/Pager.php:281 +msgid "last" +msgstr "síðasta" + +#: src/Content/Text/BBCode.php:696 src/Content/Text/BBCode.php:1636 +#: src/Content/Text/BBCode.php:1637 +msgid "Image/photo" +msgstr "Mynd" + +#: src/Content/Text/BBCode.php:914 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: src/Content/Text/BBCode.php:939 src/Model/Item.php:3745 +#: src/Model/Item.php:3751 src/Model/Item.php:3752 +msgid "Link to source" +msgstr "" + +#: src/Content/Text/BBCode.php:1543 src/Content/Text/HTML.php:904 +msgid "Click to open/close" +msgstr "Smelltu til að opna/loka" + +#: src/Content/Text/BBCode.php:1576 +msgid "$1 wrote:" +msgstr "$1 skrifaði:" + +#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642 +msgid "Encrypted content" +msgstr "Dulritað efni" + +#: src/Content/Text/BBCode.php:1901 +msgid "Invalid source protocol" +msgstr "" + +#: src/Content/Text/BBCode.php:1920 +msgid "Invalid link protocol" +msgstr "" + +#: src/Content/Text/HTML.php:782 +msgid "Loading more entries..." +msgstr "Hleð inn fleiri færslum..." + +#: src/Content/Text/HTML.php:783 +msgid "The end" +msgstr "Endir" + +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:116 +#: src/Model/Profile.php:461 src/Module/Contact/Profile.php:471 +msgid "Follow" +msgstr "Fylgja" + +#: src/Content/Widget.php:51 msgid "Add New Contact" msgstr "Bæta við tengilið" -#: src/Content/Widget.php:34 +#: src/Content/Widget.php:52 msgid "Enter address or web location" msgstr "Settu inn slóð" -#: src/Content/Widget.php:35 +#: src/Content/Widget.php:53 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Dæmi: gudmundur@simnet.is, http://simnet.is/gudmundur" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:55 +msgid "Connect" +msgstr "Tengjast" + +#: src/Content/Widget.php:72 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d boðskort í boði" msgstr[1] "%d boðskort í boði" -#: src/Content/Widget.php:164 -msgid "Networks" -msgstr "Net" +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +msgid "Find People" +msgstr "Finna fólk" -#: src/Content/Widget.php:167 -msgid "All Networks" -msgstr "Öll net" +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +msgid "Enter name or interest" +msgstr "Settu inn nafn eða áhugamál" -#: src/Content/Widget.php:205 src/Content/Feature.php:118 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Dæmi: Jón Jónsson, Veiði" + +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 +msgid "Find" +msgstr "Finna" + +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "Vina uppástungur" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +msgid "Similar Interests" +msgstr "Svipuð áhugamál" + +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +msgid "Random Profile" +msgstr "Forsíða af handahófi" + +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +msgid "Invite Friends" +msgstr "Bjóða vinum aðgang" + +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 +msgid "Global Directory" +msgstr "Alheimstengiliðaskrá" + +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +msgid "Local Directory" +msgstr "Staðvær mappa" + +#: src/Content/Widget.php:215 src/Model/Circle.php:600 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "" + +#: src/Content/Widget.php:217 +msgid "Everyone" +msgstr "" + +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "" + +#: src/Content/Widget.php:247 +msgid "Relationships" +msgstr "" + +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 +msgid "All Contacts" +msgstr "Allir tengiliðir" + +#: src/Content/Widget.php:288 +msgid "Protocols" +msgstr "" + +#: src/Content/Widget.php:290 +msgid "All Protocols" +msgstr "" + +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "Vistaðar möppur" -#: src/Content/Widget.php:208 src/Content/Widget.php:248 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "Allt" -#: src/Content/Widget.php:245 +#: src/Content/Widget.php:349 msgid "Categories" msgstr "Flokkar" -#: src/Content/Widget.php:312 +#: src/Content/Widget.php:406 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d tengiliður sameiginlegur" msgstr[1] "%d tengiliðir sameiginlegir" -#: src/Content/Feature.php:79 -msgid "General Features" -msgstr "Almennir eiginleikar" +#: src/Content/Widget.php:506 +msgid "Archives" +msgstr "Safnskrár" -#: src/Content/Feature.php:81 -msgid "Multiple Profiles" +#: src/Content/Widget.php:514 +msgid "On this date" msgstr "" -#: src/Content/Feature.php:81 -msgid "Ability to create multiple profiles" +#: src/Content/Widget.php:534 +msgid "Persons" msgstr "" -#: src/Content/Feature.php:82 -msgid "Photo Location" -msgstr "Staðsetning ljósmyndar" +#: src/Content/Widget.php:535 +msgid "Organisations" +msgstr "" -#: src/Content/Feature.php:82 +#: src/Content/Widget.php:536 src/Model/Contact.php:1698 +msgid "News" +msgstr "Fréttir" + +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 +msgid "Account Types" +msgstr "Gerðir notendaaðganga" + +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 +msgid "All" +msgstr "" + +#: src/Content/Widget.php:573 src/Module/Settings/Display.php:266 +msgid "Channels" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:56 +msgid "Export" +msgstr "Flytja út" + +#: src/Content/Widget/CalendarExport.php:57 +msgid "Export calendar as ical" +msgstr "Flytja dagatal út sem ICAL" + +#: src/Content/Widget/CalendarExport.php:58 +msgid "Export calendar as csv" +msgstr "Flytja dagatal út sem CSV" + +#: src/Content/Widget/ContactBlock.php:79 +msgid "No contacts" +msgstr "Engir tengiliðir" + +#: src/Content/Widget/ContactBlock.php:110 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d tengiliður" +msgstr[1] "%d tengiliðir" + +#: src/Content/Widget/ContactBlock.php:127 +msgid "View Contacts" +msgstr "Skoða tengiliði" + +#: src/Content/Widget/SavedSearches.php:47 +msgid "Remove term" +msgstr "Fjarlæga gildi" + +#: src/Content/Widget/SavedSearches.php:60 +msgid "Saved Searches" +msgstr "Vistaðar leitir" + +#: src/Content/Widget/TrendingTags.php:52 +#, php-format +msgid "Trending Tags (last %d hour)" +msgid_plural "Trending Tags (last %d hours)" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Widget/TrendingTags.php:53 +msgid "More Trending Tags" +msgstr "" + +#: src/Content/Widget/VCard.php:109 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 +msgid "XMPP:" +msgstr "XMPP:" + +#: src/Content/Widget/VCard.php:110 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 +msgid "Matrix:" +msgstr "" + +#: src/Content/Widget/VCard.php:111 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Staðsetning:" + +#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:474 +#: src/Module/Notifications/Introductions.php:201 +msgid "Network:" +msgstr "Netkerfi:" + +#: src/Content/Widget/VCard.php:118 src/Model/Contact.php:1223 +#: src/Model/Contact.php:1234 src/Model/Profile.php:463 +#: src/Module/Contact/Profile.php:463 +msgid "Unfollow" +msgstr "" + +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +msgid "Yourself" +msgstr "" + +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 +msgid "Mutuals" +msgstr "" + +#: src/Core/ACL.php:294 +msgid "Post to Email" +msgstr "Senda skilaboð á tölvupóst" + +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 +msgid "Public" +msgstr "" + +#: src/Core/ACL.php:322 msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." +"This content will be shown to all your followers and can be seen in the " +"community pages and by anyone with its link." msgstr "" -#: src/Content/Feature.php:83 -msgid "Export Public Calendar" -msgstr "Flytja út opinbert dagatal" - -#: src/Content/Feature.php:83 -msgid "Ability for visitors to download the public calendar" +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 +msgid "Limited/Private" msgstr "" -#: src/Content/Feature.php:88 -msgid "Post Composition Features" -msgstr "" - -#: src/Content/Feature.php:89 -msgid "Post Preview" -msgstr "" - -#: src/Content/Feature.php:89 -msgid "Allow previewing posts and comments before publishing them" -msgstr "" - -#: src/Content/Feature.php:90 -msgid "Auto-mention Forums" -msgstr "" - -#: src/Content/Feature.php:90 +#: src/Core/ACL.php:324 msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." +"This content will be shown only to the people in the first box, to the " +"exception of the people mentioned in the second box. It won't appear " +"anywhere public." msgstr "" -#: src/Content/Feature.php:95 -msgid "Network Sidebar" +#: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "" -#: src/Content/Feature.php:96 -msgid "Ability to select posts by date ranges" +#: src/Core/ACL.php:325 +msgid "Show to:" msgstr "" -#: src/Content/Feature.php:97 src/Content/Feature.php:127 -msgid "List Forums" -msgstr "Spjallsvæðalistar" - -#: src/Content/Feature.php:97 -msgid "Enable widget to display the forums your are connected with" +#: src/Core/ACL.php:326 +msgid "Except to:" msgstr "" -#: src/Content/Feature.php:98 -msgid "Group Filter" +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "CC: tölvupóstfang" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Dæmi: bibbi@vefur.is, mgga@vefur.is" + +#: src/Core/ACL.php:329 +msgid "Connectors" msgstr "" -#: src/Content/Feature.php:98 -msgid "Enable widget to display Network posts only from selected group" +#: src/Core/Installer.php:180 +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 "" -#: src/Content/Feature.php:99 -msgid "Network Filter" +#: src/Core/Installer.php:197 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Þú þarft mögulega að keyra inn skránna \"database.sql\" handvirkt með phpmyadmin eða mysql." + +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 +msgid "Please see the file \"doc/INSTALL.md\"." msgstr "" -#: src/Content/Feature.php:99 -msgid "Enable widget to display Network posts only from selected network" +#: src/Core/Installer.php:259 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Gat ekki fundið skipanalínu útgáfu af PHP í vefþjóns PATH." + +#: src/Core/Installer.php:260 +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 "" -#: src/Content/Feature.php:100 -msgid "Save search terms for re-use" +#: src/Core/Installer.php:265 +msgid "PHP executable path" +msgstr "PHP keyrslu slóð" + +#: src/Core/Installer.php:265 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." msgstr "" -#: src/Content/Feature.php:105 -msgid "Network Tabs" +#: src/Core/Installer.php:270 +msgid "Command line PHP" +msgstr "Skipanalínu PHP" + +#: src/Core/Installer.php:279 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "" -#: src/Content/Feature.php:106 -msgid "Network Personal Tab" +#: src/Core/Installer.php:280 +msgid "Found PHP version: " +msgstr "Fann PHP útgáfu: " + +#: src/Core/Installer.php:282 +msgid "PHP cli binary" msgstr "" -#: src/Content/Feature.php:106 -msgid "Enable tab to display only Network posts that you've interacted on" +#: src/Core/Installer.php:295 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Skipanalínu útgáfa af PHP á vefþjóninum hefur ekki kveikt á \"register_argc_argv\"." + +#: src/Core/Installer.php:296 +msgid "This is required for message delivery to work." +msgstr "Þetta er skilyrt fyrir því að skilaboð komist til skila." + +#: src/Core/Installer.php:301 +msgid "PHP register_argc_argv" msgstr "" -#: src/Content/Feature.php:107 -msgid "Network New Tab" +#: src/Core/Installer.php:333 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Villa: Stefjan \"openssl_pkey_new\" á vefþjóninum getur ekki stofnað dulkóðunar lykla" + +#: src/Core/Installer.php:334 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Ef keyrt er á Window, skoðaðu þá \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: src/Core/Installer.php:337 +msgid "Generate encryption keys" +msgstr "Búa til dulkóðunar lykla" + +#: src/Core/Installer.php:389 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Villa: Apache vefþjóns eining mod-rewrite er skilyrði og er ekki uppsett. " + +#: src/Core/Installer.php:394 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite eining" + +#: src/Core/Installer.php:400 +msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "" -#: src/Content/Feature.php:107 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" +#: src/Core/Installer.php:405 +msgid "Error: The MySQL driver for PDO is not installed." msgstr "" -#: src/Content/Feature.php:108 -msgid "Network Shared Links Tab" +#: src/Core/Installer.php:409 +msgid "PDO or MySQLi PHP module" msgstr "" -#: src/Content/Feature.php:108 -msgid "Enable tab to display only Network posts with links in them" +#: src/Core/Installer.php:417 +msgid "Error, XML PHP module required but not installed." msgstr "" -#: src/Content/Feature.php:113 -msgid "Post/Comment Tools" +#: src/Core/Installer.php:421 +msgid "XML PHP module" msgstr "" -#: src/Content/Feature.php:114 -msgid "Multiple Deletion" +#: src/Core/Installer.php:424 +msgid "libCurl PHP module" +msgstr "libCurl PHP eining" + +#: src/Core/Installer.php:425 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Villa: libCurl PHP eining er skilyrði og er ekki uppsett." + +#: src/Core/Installer.php:431 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP eining" + +#: src/Core/Installer.php:432 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Villa: GD graphics PHP eining með JPEG stuðningi er skilyrði og er ekki uppsett." + +#: src/Core/Installer.php:438 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP eining" + +#: src/Core/Installer.php:439 +msgid "Error: openssl PHP module required but not installed." +msgstr "Villa: openssl PHP eining skilyrði og er ekki uppsett." + +#: src/Core/Installer.php:445 +msgid "mb_string PHP module" +msgstr "mb_string PHP eining" + +#: src/Core/Installer.php:446 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Villa: mb_string PHP eining skilyrði en ekki uppsett." + +#: src/Core/Installer.php:452 +msgid "iconv PHP module" msgstr "" -#: src/Content/Feature.php:114 -msgid "Select and delete multiple posts/comments at once" +#: src/Core/Installer.php:453 +msgid "Error: iconv PHP module required but not installed." msgstr "" -#: src/Content/Feature.php:115 -msgid "Edit Sent Posts" +#: src/Core/Installer.php:459 +msgid "POSIX PHP module" msgstr "" -#: src/Content/Feature.php:115 -msgid "Edit and correct posts and comments after sending" +#: src/Core/Installer.php:460 +msgid "Error: POSIX PHP module required but not installed." msgstr "" -#: src/Content/Feature.php:116 -msgid "Tagging" +#: src/Core/Installer.php:466 +msgid "Program execution functions" msgstr "" -#: src/Content/Feature.php:116 -msgid "Ability to tag existing posts" +#: src/Core/Installer.php:467 +msgid "" +"Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Content/Feature.php:117 -msgid "Post Categories" +#: src/Core/Installer.php:473 +msgid "JSON PHP module" msgstr "" -#: src/Content/Feature.php:117 -msgid "Add categories to your posts" +#: src/Core/Installer.php:474 +msgid "Error: JSON PHP module required but not installed." msgstr "" -#: src/Content/Feature.php:118 -msgid "Ability to file posts under folders" +#: src/Core/Installer.php:480 +msgid "File Information PHP module" msgstr "" -#: src/Content/Feature.php:119 -msgid "Dislike Posts" +#: src/Core/Installer.php:481 +msgid "Error: File Information PHP module required but not installed." msgstr "" -#: src/Content/Feature.php:119 -msgid "Ability to dislike posts/comments" +#: src/Core/Installer.php:487 +msgid "GNU Multiple Precision PHP module" msgstr "" -#: src/Content/Feature.php:120 -msgid "Star Posts" +#: src/Core/Installer.php:488 +msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "" -#: src/Content/Feature.php:120 -msgid "Ability to mark special posts with a star indicator" +#: src/Core/Installer.php:511 +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 "" -#: src/Content/Feature.php:121 -msgid "Mute Post Notifications" +#: src/Core/Installer.php:512 +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 "Þetta er oftast aðgangsstýringa stilling, þar sem vefþjónninn getur ekki skrifað út skrár í skráarsafnið - þó þú getir það." + +#: src/Core/Installer.php:513 +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 "" -#: src/Content/Feature.php:121 -msgid "Ability to mute notifications for a thread" +#: src/Core/Installer.php:514 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"doc/INSTALL.md\" for instructions." msgstr "" -#: src/Content/Feature.php:126 -msgid "Advanced Profile Settings" +#: src/Core/Installer.php:517 +msgid "config/local.config.php is writable" msgstr "" -#: src/Content/Feature.php:127 -msgid "Show visitors public community forums at the Advanced Profile Page" +#: src/Core/Installer.php:537 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." msgstr "" -#: src/Content/Feature.php:128 -msgid "Tag Cloud" -msgstr "Merkjaský" - -#: src/Content/Feature.php:128 -msgid "Provide a personal tag cloud on your profile page" +#: src/Core/Installer.php:538 +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 "" -#: src/Content/Feature.php:129 -msgid "Display Membership Date" +#: src/Core/Installer.php:539 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." msgstr "" -#: src/Content/Feature.php:129 -msgid "Display membership date in profile" +#: src/Core/Installer.php:540 +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 "" -#: src/Content/Nav.php:53 -msgid "Nothing new here" -msgstr "Ekkert nýtt hér" - -#: src/Content/Nav.php:57 -msgid "Clear notifications" -msgstr "Hreinsa tilkynningar" - -#: src/Content/Nav.php:105 -msgid "Personal notes" -msgstr "Einkaglósur" - -#: src/Content/Nav.php:105 -msgid "Your personal notes" -msgstr "Einkaglósurnar þínar" - -#: src/Content/Nav.php:114 -msgid "Sign in" -msgstr "Innskrá" - -#: src/Content/Nav.php:124 -msgid "Home Page" -msgstr "Heimasíða" - -#: src/Content/Nav.php:128 -msgid "Create an account" -msgstr "Stofna notanda" - -#: src/Content/Nav.php:134 -msgid "Help and documentation" -msgstr "Hjálp og leiðbeiningar" - -#: src/Content/Nav.php:138 -msgid "Apps" -msgstr "Forrit" - -#: src/Content/Nav.php:138 -msgid "Addon applications, utilities, games" -msgstr "Viðbótarforrit, nytjatól, leikir" - -#: src/Content/Nav.php:142 -msgid "Search site content" -msgstr "Leita í efni á vef" - -#: src/Content/Nav.php:166 -msgid "Community" -msgstr "Samfélag" - -#: src/Content/Nav.php:166 -msgid "Conversations on this and other servers" +#: src/Core/Installer.php:543 +msgid "view/smarty3 is writable" msgstr "" -#: src/Content/Nav.php:173 -msgid "Directory" -msgstr "Mappa" - -#: src/Content/Nav.php:173 -msgid "People directory" -msgstr "Nafnaskrá" - -#: src/Content/Nav.php:175 -msgid "Information about this friendica instance" -msgstr "Upplýsingar um þetta tilvik Friendica" - -#: src/Content/Nav.php:178 -msgid "Terms of Service of this Friendica instance" +#: src/Core/Installer.php:571 +msgid "" +"Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" +"dist to .htaccess." msgstr "" -#: src/Content/Nav.php:184 -msgid "Network Reset" -msgstr "Núllstilling netkerfis" - -#: src/Content/Nav.php:184 -msgid "Load Network page with no filters" +#: src/Core/Installer.php:572 +msgid "" +"In some circumstances (like running inside containers), you can skip this " +"error." msgstr "" -#: src/Content/Nav.php:190 -msgid "Friend Requests" -msgstr "Vinabeiðnir" - -#: src/Content/Nav.php:192 -msgid "See all notifications" -msgstr "Sjá allar tilkynningar" - -#: src/Content/Nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Merkja allar tilkynningar sem séðar" - -#: src/Content/Nav.php:197 -msgid "Inbox" -msgstr "Innhólf" - -#: src/Content/Nav.php:198 -msgid "Outbox" -msgstr "Úthólf" - -#: src/Content/Nav.php:202 -msgid "Manage" -msgstr "Umsýsla" - -#: src/Content/Nav.php:202 -msgid "Manage other pages" -msgstr "Sýsla með aðrar síður" - -#: src/Content/Nav.php:210 src/Model/Profile.php:368 -msgid "Profiles" -msgstr "Forsíður" - -#: src/Content/Nav.php:210 -msgid "Manage/Edit Profiles" -msgstr "Sýsla með forsíður" - -#: src/Content/Nav.php:218 -msgid "Site setup and configuration" -msgstr "Uppsetning og stillingar vefsvæðis" - -#: src/Content/Nav.php:221 -msgid "Navigation" -msgstr "Yfirsýn" - -#: src/Content/Nav.php:221 -msgid "Site map" -msgstr "Yfirlit um vefsvæði" - -#: src/Database/DBStructure.php:32 -msgid "There are no tables on MyISAM." +#: src/Core/Installer.php:574 +msgid "Error message from Curl when fetching" msgstr "" -#: src/Database/DBStructure.php:75 +#: src/Core/Installer.php:580 +msgid "Url rewrite is working" +msgstr "" + +#: src/Core/Installer.php:609 +msgid "" +"The detection of TLS to secure the communication between the browser and the" +" new Friendica server failed." +msgstr "" + +#: src/Core/Installer.php:610 +msgid "" +"It is highly encouraged to use Friendica only over a secure connection as " +"sensitive information like passwords will be transmitted." +msgstr "" + +#: src/Core/Installer.php:611 +msgid "Please ensure that the connection to the server is secure." +msgstr "" + +#: src/Core/Installer.php:612 +msgid "No TLS detected" +msgstr "" + +#: src/Core/Installer.php:614 +msgid "TLS detected" +msgstr "" + +#: src/Core/Installer.php:641 +msgid "ImageMagick PHP extension is not installed" +msgstr "" + +#: src/Core/Installer.php:643 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: src/Core/Installer.php:645 +msgid "ImageMagick supports GIF" +msgstr "" + +#: src/Core/Installer.php:667 +msgid "Database already in use." +msgstr "Gagnagrunnur er þegar í notkun." + +#: src/Core/Installer.php:672 +msgid "Could not connect to database." +msgstr "Gat ekki tengst gagnagrunn." + +#: src/Core/L10n.php:476 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:235 +msgid "Monday" +msgstr "Mánudagur" + +#: src/Core/L10n.php:476 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:236 +msgid "Tuesday" +msgstr "Þriðjudagur" + +#: src/Core/L10n.php:476 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:237 +msgid "Wednesday" +msgstr "Miðvikudagur" + +#: src/Core/L10n.php:476 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:238 +msgid "Thursday" +msgstr "Fimmtudagur" + +#: src/Core/L10n.php:476 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:239 +msgid "Friday" +msgstr "Föstudagur" + +#: src/Core/L10n.php:476 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:240 +msgid "Saturday" +msgstr "Laugardagur" + +#: src/Core/L10n.php:476 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:234 +msgid "Sunday" +msgstr "Sunnudagur" + +#: src/Core/L10n.php:480 src/Model/Event.php:450 +msgid "January" +msgstr "Janúar" + +#: src/Core/L10n.php:480 src/Model/Event.php:451 +msgid "February" +msgstr "Febrúar" + +#: src/Core/L10n.php:480 src/Model/Event.php:452 +msgid "March" +msgstr "Mars" + +#: src/Core/L10n.php:480 src/Model/Event.php:453 +msgid "April" +msgstr "Apríl" + +#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441 +msgid "May" +msgstr "Maí" + +#: src/Core/L10n.php:480 src/Model/Event.php:454 +msgid "June" +msgstr "Júní" + +#: src/Core/L10n.php:480 src/Model/Event.php:455 +msgid "July" +msgstr "Júlí" + +#: src/Core/L10n.php:480 src/Model/Event.php:456 +msgid "August" +msgstr "Ágúst" + +#: src/Core/L10n.php:480 src/Model/Event.php:457 +msgid "September" +msgstr "September" + +#: src/Core/L10n.php:480 src/Model/Event.php:458 +msgid "October" +msgstr "Október" + +#: src/Core/L10n.php:480 src/Model/Event.php:459 +msgid "November" +msgstr "Nóvember" + +#: src/Core/L10n.php:480 src/Model/Event.php:460 +msgid "December" +msgstr "Desember" + +#: src/Core/L10n.php:495 src/Model/Event.php:422 +msgid "Mon" +msgstr "Mán" + +#: src/Core/L10n.php:495 src/Model/Event.php:423 +msgid "Tue" +msgstr "Þri" + +#: src/Core/L10n.php:495 src/Model/Event.php:424 +msgid "Wed" +msgstr "Mið" + +#: src/Core/L10n.php:495 src/Model/Event.php:425 +msgid "Thu" +msgstr "Fim" + +#: src/Core/L10n.php:495 src/Model/Event.php:426 +msgid "Fri" +msgstr "Fös" + +#: src/Core/L10n.php:495 src/Model/Event.php:427 +msgid "Sat" +msgstr "Lau" + +#: src/Core/L10n.php:495 src/Model/Event.php:421 +msgid "Sun" +msgstr "Sun" + +#: src/Core/L10n.php:499 src/Model/Event.php:437 +msgid "Jan" +msgstr "Jan" + +#: src/Core/L10n.php:499 src/Model/Event.php:438 +msgid "Feb" +msgstr "Feb" + +#: src/Core/L10n.php:499 src/Model/Event.php:439 +msgid "Mar" +msgstr "Mar" + +#: src/Core/L10n.php:499 src/Model/Event.php:440 +msgid "Apr" +msgstr "Apr" + +#: src/Core/L10n.php:499 src/Model/Event.php:442 +msgid "Jun" +msgstr "Jún" + +#: src/Core/L10n.php:499 src/Model/Event.php:443 +msgid "Jul" +msgstr "Júl" + +#: src/Core/L10n.php:499 src/Model/Event.php:444 +msgid "Aug" +msgstr "Ágú" + +#: src/Core/L10n.php:499 +msgid "Sep" +msgstr "sep" + +#: src/Core/L10n.php:499 src/Model/Event.php:446 +msgid "Oct" +msgstr "Okt" + +#: src/Core/L10n.php:499 src/Model/Event.php:447 +msgid "Nov" +msgstr "Nóv" + +#: src/Core/L10n.php:499 src/Model/Event.php:448 +msgid "Dec" +msgstr "Des" + +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Core/Renderer.php:89 src/Core/Renderer.php:118 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 +msgid "" +"Friendica can't display this page at the moment, please contact the " +"administrator." +msgstr "" + +#: src/Core/Renderer.php:143 +msgid "template engine cannot be registered without a name." +msgstr "" + +#: src/Core/Renderer.php:177 +msgid "template engine is not registered!" +msgstr "" + +#: src/Core/Storage/Type/FilesystemConfig.php:78 +msgid "Storage base path" +msgstr "" + +#: src/Core/Storage/Type/FilesystemConfig.php:80 +msgid "" +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "" + +#: src/Core/Storage/Type/FilesystemConfig.php:93 +msgid "Enter a valid existing folder" +msgstr "" + +#: src/Core/Update.php:80 +#, php-format +msgid "" +"Updates from version %s are not supported. Please update at least to version" +" 2021.01 and wait until the postupdate finished version 1383." +msgstr "" + +#: src/Core/Update.php:91 +#, php-format +msgid "" +"Updates from postupdate version %s are not supported. Please update at least" +" to version 2021.01 and wait until the postupdate finished version 1383." +msgstr "" + +#: src/Core/Update.php:183 +#, php-format +msgid "%s: executing pre update %d" +msgstr "" + +#: src/Core/Update.php:225 +#, php-format +msgid "%s: executing post update %d" +msgstr "" + +#: src/Core/Update.php:299 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Uppfærsla á %s mistókst. Skoðaðu villuannál." + +#: src/Core/Update.php:339 #, php-format msgid "" "\n" @@ -8812,14 +3062,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "" -#: src/Database/DBStructure.php:80 +#: src/Core/Update.php:345 #, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" +msgid "The error message is\\n[pre]%s[/pre]" msgstr "" -#: src/Database/DBStructure.php:191 +#: src/Core/Update.php:349 src/Core/Update.php:377 +msgid "[Friendica Notify] Database update" +msgstr "" + +#: src/Core/Update.php:371 +#, php-format +msgid "" +"\n" +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "" + +#: src/Database/DBStructure.php:57 +#, php-format +msgid "The database version had been set to %s." +msgstr "" + +#: src/Database/DBStructure.php:82 +#, 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:95 +msgid "No unused tables found." +msgstr "" + +#: src/Database/DBStructure.php:100 +msgid "" +"These tables are not used for friendica and will be deleted when you execute" +" \"dbstructure drop -e\":" +msgstr "" + +#: src/Database/DBStructure.php:137 +msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." +msgstr "" + +#: src/Database/DBStructure.php:161 #, php-format msgid "" "\n" @@ -8827,346 +3112,715 @@ msgid "" "%s\n" msgstr "" -#: src/Database/DBStructure.php:194 +#: src/Database/DBStructure.php:164 msgid "Errors encountered performing database changes: " msgstr "" -#: src/Database/DBStructure.php:210 +#: src/Database/DBStructure.php:232 +msgid "Another database update is currently running." +msgstr "" + +#: src/Database/DBStructure.php:236 #, php-format msgid "%s: Database update" msgstr "" -#: src/Database/DBStructure.php:460 +#: src/Database/DBStructure.php:493 #, php-format msgid "%s: updating %s table." msgstr "" -#: src/Model/Mail.php:40 src/Model/Mail.php:174 -msgid "[no subject]" -msgstr "[ekkert efni]" - -#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419 -#: src/Model/Event.php:882 -msgid "Starts:" -msgstr "Byrjar:" - -#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420 -#: src/Model/Event.php:886 -msgid "Finishes:" -msgstr "Endar:" - -#: src/Model/Event.php:368 -msgid "all-day" -msgstr "allan-daginn" - -#: src/Model/Event.php:391 -msgid "Jun" -msgstr "Jún" - -#: src/Model/Event.php:394 -msgid "Sept" -msgstr "Sept" - -#: src/Model/Event.php:417 -msgid "No events to display" -msgstr "Engir atburðir til að birta" - -#: src/Model/Event.php:543 -msgid "l, F j" -msgstr "l, F j" - -#: src/Model/Event.php:566 -msgid "Edit event" -msgstr "Breyta atburð" - -#: src/Model/Event.php:567 -msgid "Duplicate event" -msgstr "Tvítaka atburð" - -#: src/Model/Event.php:568 -msgid "Delete event" -msgstr "Eyða atburði" - -#: src/Model/Event.php:815 -msgid "D g:i A" -msgstr "D g:i A" - -#: src/Model/Event.php:816 -msgid "g:i A" -msgstr "g:i A" - -#: src/Model/Event.php:901 src/Model/Event.php:903 -msgid "Show map" -msgstr "Birta kort" - -#: src/Model/Event.php:902 -msgid "Hide map" -msgstr "Fela kort" - -#: src/Model/Group.php:44 -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 "Hóp sem var eytt hefur verið endurlífgaður. Færslur sem þegar voru til geta mögulega farið á hópinn og framtíðar meðlimir. Ef þetta er ekki það sem þú vilt, þá þarftu að búa til nýjan hóp með öðru nafni." - -#: src/Model/Group.php:341 -msgid "Default privacy group for new contacts" +#: src/Factory/Api/Mastodon/Error.php:55 +msgid "Record not found" msgstr "" -#: src/Model/Group.php:374 +#: src/Factory/Api/Mastodon/Error.php:65 +msgid "Unprocessable Entity" +msgstr "" + +#: src/Factory/Api/Mastodon/Error.php:75 +msgid "Unauthorized" +msgstr "" + +#: src/Factory/Api/Mastodon/Error.php:84 +msgid "" +"Token is not authorized with a valid user or is missing a required scope" +msgstr "" + +#: src/Factory/Api/Mastodon/Error.php:94 +msgid "Internal Server Error" +msgstr "" + +#: src/LegacyModule.php:63 +#, php-format +msgid "Legacy module file not found: %s" +msgstr "" + +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." +msgstr "" + +#: src/Model/Circle.php:543 msgid "Everybody" msgstr "Allir" -#: src/Model/Group.php:394 +#: src/Model/Circle.php:562 msgid "edit" msgstr "breyta" -#: src/Model/Group.php:418 -msgid "Edit group" -msgstr "Breyta hóp" +#: src/Model/Circle.php:599 +msgid "add" +msgstr "bæta við" -#: src/Model/Group.php:419 -msgid "Contacts not in any group" -msgstr "Tengiliðir ekki í neinum hópum" +#: src/Model/Circle.php:604 +msgid "Edit circle" +msgstr "" -#: src/Model/Group.php:420 -msgid "Create a new group" -msgstr "Stofna nýjan hóp" +#: src/Model/Circle.php:605 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "" -#: src/Model/Group.php:422 -msgid "Edit groups" -msgstr "Breyta hópum" +#: src/Model/Circle.php:607 +msgid "Create a new circle" +msgstr "" -#: src/Model/Profile.php:97 -msgid "Requested account is not available." -msgstr "Umbeðin forsíða er ekki til." +#: src/Model/Circle.php:608 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "" -#: src/Model/Profile.php:164 src/Model/Profile.php:395 -#: src/Model/Profile.php:857 +#: src/Model/Circle.php:609 +msgid "Edit circles" +msgstr "" + +#: src/Model/Contact.php:1240 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 +msgid "Approve" +msgstr "Samþykkja" + +#: src/Model/Contact.php:1694 +msgid "Organisation" +msgstr "" + +#: src/Model/Contact.php:1702 +msgid "Group" +msgstr "" + +#: src/Model/Contact.php:3005 +msgid "Disallowed profile URL." +msgstr "Óleyfileg forsíðu slóð." + +#: src/Model/Contact.php:3010 src/Module/Friendica.php:101 +msgid "Blocked domain" +msgstr "Útilokað lén" + +#: src/Model/Contact.php:3015 +msgid "Connect URL missing." +msgstr "Tengislóð vantar." + +#: src/Model/Contact.php:3024 +msgid "" +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "" + +#: src/Model/Contact.php:3042 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "" + +#: src/Model/Contact.php:3059 +msgid "The profile address specified does not provide adequate information." +msgstr "Uppgefin forsíðuslóð inniheldur ekki nægilegar upplýsingar." + +#: src/Model/Contact.php:3061 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Engir samhæfðir samskiptastaðlar né fréttastraumar fundust." + +#: src/Model/Contact.php:3064 +msgid "An author or name was not found." +msgstr "Höfundur eða nafn fannst ekki." + +#: src/Model/Contact.php:3067 +msgid "No browser URL could be matched to this address." +msgstr "Engin vefslóð passaði við þetta vistfang." + +#: src/Model/Contact.php:3070 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "" + +#: src/Model/Contact.php:3071 +msgid "Use mailto: in front of address to force email check." +msgstr "" + +#: src/Model/Contact.php:3077 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef." + +#: src/Model/Contact.php:3082 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér." + +#: src/Model/Contact.php:3148 +msgid "Unable to retrieve contact information." +msgstr "Ekki hægt að sækja tengiliðs upplýsingar." + +#: src/Model/Event.php:54 +msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" +msgstr "" + +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 +msgid "Starts:" +msgstr "Byrjar:" + +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 +msgid "Finishes:" +msgstr "Endar:" + +#: src/Model/Event.php:419 +msgid "all-day" +msgstr "allan-daginn" + +#: src/Model/Event.php:445 +msgid "Sept" +msgstr "Sept" + +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "í dag" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:245 src/Util/Temporal.php:353 +msgid "month" +msgstr "mánuður" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:246 src/Util/Temporal.php:354 +msgid "week" +msgstr "vika" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:247 src/Util/Temporal.php:355 +msgid "day" +msgstr "dagur" + +#: src/Model/Event.php:467 +msgid "No events to display" +msgstr "Engir atburðir til að birta" + +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "Aðgangur að þessari forsíðu hefur verið heftur." + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "" + +#: src/Model/Event.php:637 +msgid "l, F j" +msgstr "l, F j" + +#: src/Model/Event.php:664 +msgid "Edit event" +msgstr "Breyta atburð" + +#: src/Model/Event.php:665 +msgid "Duplicate event" +msgstr "Tvítaka atburð" + +#: src/Model/Event.php:666 +msgid "Delete event" +msgstr "Eyða atburði" + +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: src/Model/Event.php:897 +msgid "D g:i A" +msgstr "D g:i A" + +#: src/Model/Event.php:898 +msgid "g:i A" +msgstr "g:i A" + +#: src/Model/Event.php:964 src/Model/Event.php:966 +msgid "Show map" +msgstr "Birta kort" + +#: src/Model/Event.php:965 +msgid "Hide map" +msgstr "Fela kort" + +#: src/Model/Event.php:1058 +#, php-format +msgid "%s's birthday" +msgstr "Afmælisdagur %s" + +#: src/Model/Event.php:1059 +#, php-format +msgid "Happy Birthday %s" +msgstr "Til hamingju með afmælið %s" + +#: src/Model/Item.php:2062 +#, php-format +msgid "Detected languages in this post:\\n%s" +msgstr "" + +#: src/Model/Item.php:3007 +msgid "activity" +msgstr "virkni" + +#: src/Model/Item.php:3009 +msgid "comment" +msgstr "" + +#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123 +msgid "post" +msgstr "senda" + +#: src/Model/Item.php:3182 +#, php-format +msgid "%s is blocked" +msgstr "" + +#: src/Model/Item.php:3184 +#, php-format +msgid "%s is ignored" +msgstr "" + +#: src/Model/Item.php:3186 +#, php-format +msgid "Content from %s is collapsed" +msgstr "" + +#: src/Model/Item.php:3190 +#, php-format +msgid "Content warning: %s" +msgstr "Viðvörun vegna innihalds: %s" + +#: src/Model/Item.php:3652 +msgid "bytes" +msgstr "bæti" + +#: src/Model/Item.php:3683 +#, php-format +msgid "%2$s (%3$d%%, %1$d vote)" +msgid_plural "%2$s (%3$d%%, %1$d votes)" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3685 +#, php-format +msgid "%2$s (%1$d vote)" +msgid_plural "%2$s (%1$d votes)" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3690 +#, php-format +msgid "%d voter. Poll end: %s" +msgid_plural "%d voters. Poll end: %s" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3692 +#, php-format +msgid "%d voter." +msgid_plural "%d voters." +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3694 +#, php-format +msgid "Poll end: %s" +msgstr "" + +#: src/Model/Item.php:3728 src/Model/Item.php:3729 +msgid "View on separate page" +msgstr "Skoða á sérstakri síðu" + +#: src/Model/Mail.php:137 src/Model/Mail.php:266 +msgid "[no subject]" +msgstr "[ekkert efni]" + +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Veggmyndir" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 msgid "Edit profile" msgstr "Breyta forsíðu" -#: src/Model/Profile.php:332 +#: src/Model/Profile.php:361 +msgid "Change profile photo" +msgstr "Breyta forsíðumynd" + +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 +msgid "Homepage:" +msgstr "Heimasíða:" + +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 +msgid "About:" +msgstr "Um:" + +#: src/Model/Profile.php:465 msgid "Atom feed" msgstr "Atom fréttaveita" -#: src/Model/Profile.php:368 -msgid "Manage/edit profiles" -msgstr "Sýsla með forsíður" +#: src/Model/Profile.php:472 +msgid "This website has been verified to belong to the same person." +msgstr "" -#: src/Model/Profile.php:546 src/Model/Profile.php:639 -msgid "g A l F d" -msgstr "g A l F d" - -#: src/Model/Profile.php:547 +#: src/Model/Profile.php:509 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:604 src/Model/Profile.php:701 +#: src/Model/Profile.php:573 src/Model/Profile.php:662 msgid "[today]" msgstr "[í dag]" -#: src/Model/Profile.php:615 +#: src/Model/Profile.php:582 msgid "Birthday Reminders" msgstr "Afmælisáminningar" -#: src/Model/Profile.php:616 +#: src/Model/Profile.php:583 msgid "Birthdays this week:" msgstr "Afmæli í þessari viku:" -#: src/Model/Profile.php:688 +#: src/Model/Profile.php:611 +msgid "g A l F d" +msgstr "g A l F d" + +#: src/Model/Profile.php:649 msgid "[No description]" msgstr "[Engin lýsing]" -#: src/Model/Profile.php:715 +#: src/Model/Profile.php:675 msgid "Event Reminders" msgstr "Atburðaáminningar" -#: src/Model/Profile.php:716 -msgid "Events this week:" -msgstr "Atburðir vikunnar:" +#: src/Model/Profile.php:676 +msgid "Upcoming events the next 7 days:" +msgstr "" -#: src/Model/Profile.php:739 -msgid "Member since:" -msgstr "Meðlimur síðan:" - -#: src/Model/Profile.php:747 -msgid "j F, Y" -msgstr "j F, Y" - -#: src/Model/Profile.php:748 -msgid "j F" -msgstr "j F" - -#: src/Model/Profile.php:763 -msgid "Age:" -msgstr "Aldur:" - -#: src/Model/Profile.php:776 +#: src/Model/Profile.php:873 #, php-format -msgid "for %1$d %2$s" -msgstr "fyrir %1$d %2$s" +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" -#: src/Model/Profile.php:800 -msgid "Religion:" -msgstr "Trúarskoðanir:" +#: src/Model/Profile.php:1013 +msgid "Hometown:" +msgstr "Heimabær:" -#: src/Model/Profile.php:808 -msgid "Hobbies/Interests:" -msgstr "Áhugamál/Áhugasvið:" +#: src/Model/Profile.php:1014 +msgid "Marital Status:" +msgstr "" -#: src/Model/Profile.php:820 -msgid "Contact information and Social Networks:" -msgstr "Tengiliðaupplýsingar og samfélagsnet:" +#: src/Model/Profile.php:1015 +msgid "With:" +msgstr "" -#: src/Model/Profile.php:824 -msgid "Musical interests:" -msgstr "Tónlistaráhugi:" +#: src/Model/Profile.php:1016 +msgid "Since:" +msgstr "" -#: src/Model/Profile.php:828 -msgid "Books, literature:" -msgstr "Bækur, bókmenntir:" +#: src/Model/Profile.php:1017 +msgid "Sexual Preference:" +msgstr "Kynhneigð:" -#: src/Model/Profile.php:832 -msgid "Television:" -msgstr "Sjónvarp:" +#: src/Model/Profile.php:1018 +msgid "Political Views:" +msgstr "Stórnmálaskoðanir:" -#: src/Model/Profile.php:836 -msgid "Film/dance/culture/entertainment:" -msgstr "Kvikmyndir/dans/menning/afþreying:" +#: src/Model/Profile.php:1019 +msgid "Religious Views:" +msgstr "Trúarskoðanir" -#: src/Model/Profile.php:840 -msgid "Love/Romance:" -msgstr "Ást/rómantík:" +#: src/Model/Profile.php:1020 +msgid "Likes:" +msgstr "Líkar:" -#: src/Model/Profile.php:844 -msgid "Work/employment:" +#: src/Model/Profile.php:1021 +msgid "Dislikes:" +msgstr "Mislíkar:" + +#: src/Model/Profile.php:1022 +msgid "Title/Description:" +msgstr "Starfsheiti/Lýsing:" + +#: src/Model/Profile.php:1023 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 +msgid "Summary" +msgstr "Samantekt" + +#: src/Model/Profile.php:1024 +msgid "Musical interests" +msgstr "Tónlistarsmekkur" + +#: src/Model/Profile.php:1025 +msgid "Books, literature" +msgstr "Bækur, bókmenntir" + +#: src/Model/Profile.php:1026 +msgid "Television" +msgstr "Sjónvarp" + +#: src/Model/Profile.php:1027 +msgid "Film/dance/culture/entertainment" +msgstr "Kvikmyndir/dans/menning/afþreying" + +#: src/Model/Profile.php:1028 +msgid "Hobbies/Interests" +msgstr "Áhugamál" + +#: src/Model/Profile.php:1029 +msgid "Love/romance" +msgstr "Ást/rómantík" + +#: src/Model/Profile.php:1030 +msgid "Work/employment" msgstr "Atvinna:" -#: src/Model/Profile.php:848 -msgid "School/education:" -msgstr "Skóli/menntun:" +#: src/Model/Profile.php:1031 +msgid "School/education" +msgstr "Skóli/menntun" -#: src/Model/Profile.php:853 -msgid "Forums:" -msgstr "Spjallsvæði:" +#: src/Model/Profile.php:1032 +msgid "Contact information and Social Networks" +msgstr "Tengiliðaupplýsingar og samfélagsnet" -#: src/Model/Profile.php:947 -msgid "Only You Can See This" -msgstr "Aðeins þú sérð þetta" +#: src/Model/User.php:227 src/Model/User.php:1186 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "VERULEGA ALVARLEG VILLA: Stofnun á öryggislyklum tókst ekki." -#: src/Model/User.php:154 +#: src/Model/User.php:620 src/Model/User.php:653 msgid "Login failed" msgstr "Innskráning mistókst" -#: src/Model/User.php:185 +#: src/Model/User.php:685 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:346 +#: src/Model/User.php:806 +msgid "Password can't be empty" +msgstr "Lykilorð getur ekki verið autt" + +#: src/Model/User.php:848 +msgid "Empty passwords are not allowed." +msgstr "" + +#: src/Model/User.php:852 +msgid "" +"The new password has been exposed in a public data dump, please choose " +"another." +msgstr "" + +#: src/Model/User.php:856 +msgid "The password length is limited to 72 characters." +msgstr "" + +#: src/Model/User.php:860 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "" + +#: src/Model/User.php:1069 +msgid "Passwords do not match. Password unchanged." +msgstr "Aðgangsorð ber ekki saman. Aðgangsorð óbreytt." + +#: src/Model/User.php:1076 msgid "An invitation is required." msgstr "Boðskort er skilyrði." -#: src/Model/User.php:350 +#: src/Model/User.php:1080 msgid "Invitation could not be verified." msgstr "Ekki hægt að sannreyna boðskort." -#: src/Model/User.php:357 +#: src/Model/User.php:1088 msgid "Invalid OpenID url" msgstr "OpenID slóð ekki til" -#: src/Model/User.php:370 src/Module/Login.php:101 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 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:370 src/Module/Login.php:101 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "Villumeldingin var:" -#: src/Model/User.php:376 +#: src/Model/User.php:1107 msgid "Please enter the required information." msgstr "Settu inn umbeðnar upplýsingar." -#: src/Model/User.php:389 -msgid "Please use a shorter name." -msgstr "Notaðu styttra nafn." +#: src/Model/User.php:1121 +#, 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:392 -msgid "Name too short." -msgstr "Nafn of stutt." +#: src/Model/User.php:1128 +#, 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:400 +#: src/Model/User.php:1132 +#, 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:1140 msgid "That doesn't appear to be your full (First Last) name." msgstr "Þetta virðist ekki vera fullt nafn (Jón Jónsson)." -#: src/Model/User.php:405 +#: src/Model/User.php:1145 msgid "Your email domain is not among those allowed on this site." msgstr "Póstþjónninn er ekki í lista yfir leyfða póstþjóna á þessum vef." -#: src/Model/User.php:409 +#: src/Model/User.php:1149 msgid "Not a valid email address." msgstr "Ekki tækt tölvupóstfang." -#: src/Model/User.php:413 src/Model/User.php:421 +#: src/Model/User.php:1152 +msgid "The nickname was blocked from registration by the nodes admin." +msgstr "" + +#: src/Model/User.php:1156 src/Model/User.php:1162 msgid "Cannot use that email." msgstr "Ekki hægt að nota þetta póstfang." -#: src/Model/User.php:428 +#: src/Model/User.php:1168 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "" -#: src/Model/User.php:435 src/Model/User.php:491 +#: src/Model/User.php:1176 src/Model/User.php:1233 msgid "Nickname is already registered. Please choose another." msgstr "Gælunafn þegar skráð. Veldu annað." -#: src/Model/User.php:445 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "VERULEGA ALVARLEG VILLA: Stofnun á öryggislyklum tókst ekki." - -#: src/Model/User.php:478 src/Model/User.php:482 +#: src/Model/User.php:1220 src/Model/User.php:1224 msgid "An error occurred during registration. Please try again." msgstr "Villa kom upp við nýskráningu. Reyndu aftur." -#: src/Model/User.php:507 +#: src/Model/User.php:1247 msgid "An error occurred creating your default profile. Please try again." msgstr "Villa kom upp við að stofna sjálfgefna forsíðu. Vinnsamlegast reyndu aftur." -#: src/Model/User.php:514 +#: src/Model/User.php:1254 msgid "An error occurred creating your self contact. Please try again." msgstr "" -#: src/Model/User.php:523 +#: src/Model/User.php:1259 +msgid "Friends" +msgstr "Vinir" + +#: src/Model/User.php:1263 msgid "" -"An error occurred creating your default contact group. Please try again." +"An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:597 +#: src/Model/User.php:1307 +msgid "Profile Photos" +msgstr "Forsíðumyndir" + +#: src/Model/User.php:1487 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: src/Model/User.php:1490 +#, 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/settings/removeme\n" +"\n" +"\t\tThank you and welcome to %4$s." +msgstr "" + +#: src/Model/User.php:1523 src/Model/User.php:1630 +#, php-format +msgid "Registration details for %s" +msgstr "Nýskráningar upplýsingar fyrir %s" + +#: src/Model/User.php:1543 #, 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 "" -#: src/Model/User.php:607 +#: src/Model/User.php:1562 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:625 +#: src/Model/User.php:1586 #, php-format msgid "" "\n" -"\t\t\tDear %1$s,\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\t\t" msgstr "" -#: src/Model/User.php:629 +#: src/Model/User.php:1594 #, php-format msgid "" "\n" @@ -9193,180 +3847,7168 @@ msgid "" "\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" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/Contact.php:667 -msgid "Drop Contact" +#: src/Module/Admin/Addons/Details.php:65 +msgid "Addon not found." +msgstr "" + +#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 +#, php-format +msgid "Addon %s disabled." +msgstr "" + +#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 +#, php-format +msgid "Addon %s enabled." +msgstr "" + +#: src/Module/Admin/Addons/Details.php:88 +#: src/Module/Admin/Themes/Details.php:46 +msgid "Disable" +msgstr "Gera óvirkt" + +#: src/Module/Admin/Addons/Details.php:91 +#: src/Module/Admin/Themes/Details.php:49 +msgid "Enable" +msgstr "Virkja" + +#: src/Module/Admin/Addons/Details.php:111 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 +#: src/Module/Admin/Themes/Details.php:90 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 +msgid "Administration" +msgstr "Stjórnun" + +#: src/Module/Admin/Addons/Details.php:112 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:132 +msgid "Addons" +msgstr "Forritsviðbætur" + +#: src/Module/Admin/Addons/Details.php:113 +#: src/Module/Admin/Themes/Details.php:92 +msgid "Toggle" +msgstr "Skipta" + +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 +msgid "Author: " +msgstr "Höfundur:" + +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 +msgid "Maintainer: " +msgstr "Umsjónarmaður: " + +#: src/Module/Admin/Addons/Index.php:42 +msgid "Addons reloaded" +msgstr "" + +#: src/Module/Admin/Addons/Index.php:53 +#, php-format +msgid "Addon %s failed to install." +msgstr "" + +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Vista stillingar" + +#: src/Module/Admin/Addons/Index.php:70 +msgid "Reload active addons" +msgstr "" + +#: src/Module/Admin/Addons/Index.php:74 +#, 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 "" + +#: src/Module/Admin/DBSync.php:51 +msgid "Update has been marked successful" +msgstr "Uppfærsla merkt sem tókst" + +#: src/Module/Admin/DBSync.php:59 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "" + +#: src/Module/Admin/DBSync.php:61 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" + +#: src/Module/Admin/DBSync.php:76 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: src/Module/Admin/DBSync.php:78 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Uppfærsla %s framkvæmd." + +#: src/Module/Admin/DBSync.php:81 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Uppfærsla %s skilaði ekki gildi. Óvíst hvort tókst." + +#: src/Module/Admin/DBSync.php:84 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: src/Module/Admin/DBSync.php:105 +msgid "No failed updates." +msgstr "Engar uppfærslur mistókust." + +#: src/Module/Admin/DBSync.php:106 +msgid "Check database structure" +msgstr "" + +#: src/Module/Admin/DBSync.php:110 +msgid "Failed Updates" +msgstr "Uppfærslur sem mistókust" + +#: src/Module/Admin/DBSync.php:111 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Þetta á ekki við uppfærslur fyrir 1139, þær skiluðu ekki lokastöðu." + +#: src/Module/Admin/DBSync.php:112 +msgid "Mark success (if update was manually applied)" +msgstr "Merkja sem tókst (ef uppfærsla var framkvæmd handvirkt)" + +#: src/Module/Admin/DBSync.php:113 +msgid "Attempt to execute this update step automatically" +msgstr "Framkvæma þessa uppfærslu sjálfkrafa" + +#: src/Module/Admin/Features.php:76 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: src/Module/Admin/Features.php:84 +msgid "Manage Additional Features" +msgstr "" + +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 +msgid "Other" +msgstr "Annað" + +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 +msgid "unknown" +msgstr "óþekkt" + +#: src/Module/Admin/Federation.php:187 +#, php-format +msgid "%2$s total system" +msgid_plural "%2$s total systems" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:188 +#, php-format +msgid "%2$s active user last month" +msgid_plural "%2$s active users last month" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:189 +#, php-format +msgid "%2$s active user last six months" +msgid_plural "%2$s active users last six months" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:190 +#, php-format +msgid "%2$s registered user" +msgid_plural "%2$s registered users" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:191 +#, php-format +msgid "%2$s locally created post or comment" +msgid_plural "%2$s locally created posts and comments" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:194 +#, php-format +msgid "%2$s post per user" +msgid_plural "%2$s posts per user" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:199 +#, php-format +msgid "%2$s user per system" +msgid_plural "%2$s users per system" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:209 +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:215 src/Module/BaseAdmin.php:87 +msgid "Federation Statistics" +msgstr "Tölfræði þjónasambands" + +#: src/Module/Admin/Federation.php:219 +#, php-format +msgid "" +"Currently this node is aware of %2$s node (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgid_plural "" +"Currently this node is aware of %2$s nodes (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Logs/Settings.php:47 +#, php-format +msgid "The logfile '%s' is not writable. No logging possible" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:77 +msgid "PHP log currently enabled." +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:79 +msgid "PHP log currently disabled." +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 +msgid "Logs" +msgstr "Atburðaskrá" + +#: src/Module/Admin/Logs/Settings.php:88 +msgid "Clear" +msgstr "Hreinsa" + +#: src/Module/Admin/Logs/Settings.php:91 +msgid "Enable Debugging" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:92 +msgid "Log file" +msgstr "Atburðaskrá" + +#: src/Module/Admin/Logs/Settings.php:92 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Vefþjónn verður að hafa skrifréttindi. Afstætt við Friendica rótar skráarsafn." + +#: src/Module/Admin/Logs/Settings.php:93 +msgid "Log level" +msgstr "Stig atburðaskráningar" + +#: src/Module/Admin/Logs/Settings.php:95 +msgid "PHP logging" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:96 +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 "" + +#: src/Module/Admin/Logs/View.php:70 +#, php-format +msgid "" +"Error trying to open %1$s log file.
    Check to see if " +"file %1$s exist and is readable." +msgstr "" + +#: src/Module/Admin/Logs/View.php:79 +#, php-format +msgid "" +"Couldn't open %1$s log file.
    Check to see if file %1$s " +"is readable." +msgstr "" + +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 +msgid "View Logs" +msgstr "Skoða atburðaskrár" + +#: src/Module/Admin/Logs/View.php:87 +msgid "Search in logs" +msgstr "" + +#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Notifications/Notifications.php:140 +msgid "Show all" +msgstr "Birta allt" + +#: src/Module/Admin/Logs/View.php:89 +msgid "Date" +msgstr "" + +#: src/Module/Admin/Logs/View.php:90 +msgid "Level" +msgstr "" + +#: src/Module/Admin/Logs/View.php:91 +msgid "Context" +msgstr "" + +#: src/Module/Admin/Logs/View.php:93 +msgid "ALL" +msgstr "" + +#: src/Module/Admin/Logs/View.php:94 +msgid "View details" +msgstr "" + +#: src/Module/Admin/Logs/View.php:95 +msgid "Click to view details" +msgstr "" + +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Nánar um atburð" + +#: src/Module/Admin/Logs/View.php:97 +msgid "Data" +msgstr "" + +#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Debug/ActivityPubConversion.php:57 +msgid "Source" +msgstr "" + +#: src/Module/Admin/Logs/View.php:99 +msgid "File" +msgstr "" + +#: src/Module/Admin/Logs/View.php:100 +msgid "Line" +msgstr "" + +#: src/Module/Admin/Logs/View.php:101 +msgid "Function" +msgstr "" + +#: src/Module/Admin/Logs/View.php:102 +msgid "UID" +msgstr "" + +#: src/Module/Admin/Logs/View.php:103 +msgid "Process ID" +msgstr "" + +#: src/Module/Admin/Logs/View.php:104 +msgid "Close" +msgstr "" + +#: src/Module/Admin/Queue.php:50 +msgid "Inspect Deferred Worker Queue" +msgstr "" + +#: 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 "" + +#: src/Module/Admin/Queue.php:54 +msgid "Inspect Worker Queue" +msgstr "" + +#: 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 "" + +#: src/Module/Admin/Queue.php:75 +msgid "ID" +msgstr "Auðkenni (ID)" + +#: src/Module/Admin/Queue.php:76 +msgid "Command" +msgstr "" + +#: src/Module/Admin/Queue.php:77 +msgid "Job Parameters" +msgstr "" + +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "Búið til" + +#: src/Module/Admin/Queue.php:79 +msgid "Priority" +msgstr "" + +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" +msgstr "" + +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:178 +msgid "No special theme for mobile devices" +msgstr "" + +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (á tilraunastigi)" + +#: src/Module/Admin/Site.php:342 +msgid "No community page" +msgstr "" + +#: src/Module/Admin/Site.php:343 +msgid "No community page for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:344 +msgid "Public postings from users of this site" +msgstr "" + +#: src/Module/Admin/Site.php:345 +msgid "Public postings from the federated network" +msgstr "" + +#: src/Module/Admin/Site.php:346 +msgid "Public postings from local users and the federated network" +msgstr "" + +#: src/Module/Admin/Site.php:352 +msgid "Multi user instance" +msgstr "" + +#: src/Module/Admin/Site.php:375 +msgid "Closed" +msgstr "Lokað" + +#: src/Module/Admin/Site.php:376 +msgid "Requires approval" +msgstr "Þarf samþykki" + +#: src/Module/Admin/Site.php:377 +msgid "Open" +msgstr "Opið" + +#: src/Module/Admin/Site.php:381 +msgid "Don't check" +msgstr "" + +#: src/Module/Admin/Site.php:382 +msgid "check the stable version" +msgstr "" + +#: src/Module/Admin/Site.php:383 +msgid "check the development version" +msgstr "" + +#: src/Module/Admin/Site.php:387 +msgid "none" +msgstr "" + +#: src/Module/Admin/Site.php:388 +msgid "Local contacts" +msgstr "" + +#: src/Module/Admin/Site.php:389 +msgid "Interactors" +msgstr "" + +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 +msgid "Site" +msgstr "Vefur" + +#: src/Module/Admin/Site.php:400 +msgid "General Information" +msgstr "" + +#: src/Module/Admin/Site.php:402 +msgid "Republish users to directory" +msgstr "" + +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 +msgid "Registration" +msgstr "Nýskráning" + +#: src/Module/Admin/Site.php:404 +msgid "File upload" +msgstr "Hlaða upp skrá" + +#: src/Module/Admin/Site.php:405 +msgid "Policies" +msgstr "Stefna" + +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "Flóknari" + +#: src/Module/Admin/Site.php:407 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: src/Module/Admin/Site.php:408 +msgid "Performance" +msgstr "Afköst" + +#: src/Module/Admin/Site.php:409 +msgid "Worker" +msgstr "" + +#: src/Module/Admin/Site.php:410 +msgid "Message Relay" +msgstr "" + +#: src/Module/Admin/Site.php:411 +msgid "" +"Use the command \"console relay\" in the command line to add or remove " +"relays." +msgstr "" + +#: src/Module/Admin/Site.php:412 +msgid "The system is not subscribed to any relays at the moment." +msgstr "" + +#: src/Module/Admin/Site.php:413 +msgid "The system is currently subscribed to the following relays:" +msgstr "" + +#: src/Module/Admin/Site.php:415 +msgid "Relocate Node" +msgstr "" + +#: src/Module/Admin/Site.php:416 +msgid "" +"Relocating your node enables you to change the DNS domain of this node and " +"keep all the existing users and posts. This process takes a while and can " +"only be started from the relocate console command like this:" +msgstr "" + +#: src/Module/Admin/Site.php:417 +msgid "(Friendica directory)# bin/console relocate https://newdomain.com" +msgstr "" + +#: src/Module/Admin/Site.php:420 +msgid "Site name" +msgstr "Nafn vefsvæðis" + +#: src/Module/Admin/Site.php:421 +msgid "Sender Email" +msgstr "Tölvupóstfang sendanda" + +#: src/Module/Admin/Site.php:421 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: src/Module/Admin/Site.php:422 +msgid "Name of the system actor" +msgstr "" + +#: src/Module/Admin/Site.php:422 +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:423 +msgid "Banner/Logo" +msgstr "Borði/Merki" + +#: src/Module/Admin/Site.php:424 +msgid "Email Banner/Logo" +msgstr "" + +#: src/Module/Admin/Site.php:425 +msgid "Shortcut icon" +msgstr "Táknmynd flýtivísunar" + +#: src/Module/Admin/Site.php:425 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: src/Module/Admin/Site.php:426 +msgid "Touch icon" +msgstr "" + +#: src/Module/Admin/Site.php:426 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: src/Module/Admin/Site.php:427 +msgid "Additional Info" +msgstr "Viðbótarupplýsingar" + +#: src/Module/Admin/Site.php:427 +#, 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:428 +msgid "System language" +msgstr "Tungumál kerfis" + +#: src/Module/Admin/Site.php:429 +msgid "System theme" +msgstr "Þema kerfis" + +#: src/Module/Admin/Site.php:429 +#, php-format +msgid "" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "" + +#: src/Module/Admin/Site.php:430 +msgid "Mobile system theme" +msgstr "" + +#: src/Module/Admin/Site.php:430 +msgid "Theme for mobile devices" +msgstr "" + +#: src/Module/Admin/Site.php:431 +msgid "Force SSL" +msgstr "Þvinga SSL" + +#: src/Module/Admin/Site.php:431 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" + +#: src/Module/Admin/Site.php:432 +msgid "Show help entry from navigation menu" +msgstr "" + +#: src/Module/Admin/Site.php:432 +msgid "" +"Displays the menu entry for the Help pages from the navigation menu. It is " +"always accessible by calling /help directly." +msgstr "" + +#: src/Module/Admin/Site.php:433 +msgid "Single user instance" +msgstr "" + +#: src/Module/Admin/Site.php:433 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "" + +#: src/Module/Admin/Site.php:435 +msgid "Maximum image size" +msgstr "Mesta stærð mynda" + +#: src/Module/Admin/Site.php:435 +#, php-format +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "" + +#: src/Module/Admin/Site.php:439 +msgid "Maximum image length" +msgstr "" + +#: src/Module/Admin/Site.php:439 +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:440 +msgid "JPEG image quality" +msgstr "JPEG myndgæði" + +#: src/Module/Admin/Site.php:440 +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:442 +msgid "Register policy" +msgstr "Stefna varðandi nýskráningar" + +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "" + +#: src/Module/Admin/Site.php:444 +msgid "Maximum Daily Registrations" +msgstr "" + +#: src/Module/Admin/Site.php:444 +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:445 +msgid "Register text" +msgstr "Texti við nýskráningu" + +#: src/Module/Admin/Site.php:445 +msgid "" +"Will be displayed prominently on the registration page. You can use BBCode " +"here." +msgstr "" + +#: src/Module/Admin/Site.php:446 +msgid "Forbidden Nicknames" +msgstr "" + +#: src/Module/Admin/Site.php:446 +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:447 +msgid "Accounts abandoned after x days" +msgstr "Yfirgefnir notendur eftir x daga" + +#: src/Module/Admin/Site.php:447 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Hættir að eyða afli í að sækja færslur á ytri vefi fyrir yfirgefna notendur. 0 þýðir notendur merkjast ekki yfirgefnir." + +#: src/Module/Admin/Site.php:448 +msgid "Allowed friend domains" +msgstr "Leyfð lén vina" + +#: src/Module/Admin/Site.php:448 +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:449 +msgid "Allowed email domains" +msgstr "Leyfð tölvupóstfangalén" + +#: src/Module/Admin/Site.php:449 +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:450 +msgid "No OEmbed rich content" +msgstr "" + +#: src/Module/Admin/Site.php:450 +msgid "" +"Don't show the rich content (e.g. embedded PDF), except from the domains " +"listed below." +msgstr "" + +#: src/Module/Admin/Site.php:451 +msgid "Trusted third-party domains" +msgstr "" + +#: src/Module/Admin/Site.php:451 +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:452 +msgid "Block public" +msgstr "Loka á opinberar færslur" + +#: src/Module/Admin/Site.php:452 +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:453 +msgid "Force publish" +msgstr "Skylda að vera í tengiliðalista" + +#: src/Module/Admin/Site.php:453 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: src/Module/Admin/Site.php:453 +msgid "Enabling this may violate privacy laws like the GDPR" +msgstr "" + +#: src/Module/Admin/Site.php:454 +msgid "Global directory URL" +msgstr "" + +#: src/Module/Admin/Site.php:454 +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:455 +msgid "Private posts by default for new users" +msgstr "" + +#: src/Module/Admin/Site.php:455 +msgid "" +"Set default post permissions for all new members to the default privacy " +"circle rather than public." +msgstr "" + +#: src/Module/Admin/Site.php:456 +msgid "Don't include post content in email notifications" +msgstr "" + +#: src/Module/Admin/Site.php:456 +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:457 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Hindra opið aðgengi að viðbótum í forritavalmyndinni." + +#: src/Module/Admin/Site.php:457 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Ef hakað er í þetta verður aðgengi að viðbótum í forritavalmyndinni takmarkað við meðlimi." + +#: src/Module/Admin/Site.php:458 +msgid "Don't embed private images in posts" +msgstr "" + +#: src/Module/Admin/Site.php:458 +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:459 +msgid "Explicit Content" +msgstr "" + +#: src/Module/Admin/Site.php:459 +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 "" + +#: src/Module/Admin/Site.php:460 +msgid "Proxify external content" +msgstr "" + +#: src/Module/Admin/Site.php:460 +msgid "" +"Route external content via the proxy functionality. This is used for example" +" for some OEmbed accesses and in some other rare cases." +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "Cache contact avatars" +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "" +"Locally store the avatar pictures of the contacts. This uses a lot of " +"storage space but it increases the performance." +msgstr "" + +#: src/Module/Admin/Site.php:462 +msgid "Allow Users to set remote_self" +msgstr "" + +#: src/Module/Admin/Site.php:462 +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:463 +msgid "Enable multiple registrations" +msgstr "" + +#: src/Module/Admin/Site.php:463 +msgid "Enable users to register additional accounts for use as pages." +msgstr "" + +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID" +msgstr "" + +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID support for registration and logins." +msgstr "" + +#: src/Module/Admin/Site.php:465 +msgid "Enable Fullname check" +msgstr "" + +#: src/Module/Admin/Site.php:465 +msgid "" +"Enable check to only allow users to register with a space between the first " +"name and the last name in their full name." +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "" + +#: src/Module/Admin/Site.php:467 +msgid "Community pages for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:467 +msgid "" +"Which community pages should be available for visitors. Local users always " +"see both pages." +msgstr "" + +#: src/Module/Admin/Site.php:468 +msgid "Posts per user on community page" +msgstr "" + +#: src/Module/Admin/Site.php:468 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"\"Global Community\")" +msgstr "" + +#: src/Module/Admin/Site.php:470 +msgid "Enable Mail support" +msgstr "" + +#: src/Module/Admin/Site.php:470 +msgid "" +"Enable built-in mail support to poll IMAP folders and to reply via mail." +msgstr "" + +#: src/Module/Admin/Site.php:471 +msgid "" +"Mail support can't be enabled because the PHP IMAP module is not installed." +msgstr "" + +#: src/Module/Admin/Site.php:472 +msgid "Enable OStatus support" +msgstr "" + +#: src/Module/Admin/Site.php:472 +msgid "" +"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public." +msgstr "" + +#: src/Module/Admin/Site.php:474 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "" + +#: src/Module/Admin/Site.php:475 +msgid "Enable Diaspora support" +msgstr "Leyfa Diaspora tengingar" + +#: src/Module/Admin/Site.php:475 +msgid "" +"Enable built-in Diaspora network compatibility for communicating with " +"diaspora servers." +msgstr "" + +#: src/Module/Admin/Site.php:476 +msgid "Verify SSL" +msgstr "Sannreyna SSL" + +#: src/Module/Admin/Site.php:476 +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:477 +msgid "Proxy user" +msgstr "Proxy notandi" + +#: src/Module/Admin/Site.php:477 +msgid "User name for the proxy server." +msgstr "" + +#: src/Module/Admin/Site.php:478 +msgid "Proxy URL" +msgstr "Proxy slóð" + +#: src/Module/Admin/Site.php:478 +msgid "" +"If you want to use a proxy server that Friendica should use to connect to " +"the network, put the URL of the proxy here." +msgstr "" + +#: src/Module/Admin/Site.php:479 +msgid "Network timeout" +msgstr "Net tími útrunninn" + +#: src/Module/Admin/Site.php:479 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: src/Module/Admin/Site.php:480 +msgid "Maximum Load Average" +msgstr "Mesta meðaltals álag" + +#: src/Module/Admin/Site.php:480 +#, php-format +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default %d." +msgstr "" + +#: src/Module/Admin/Site.php:481 +msgid "Minimal Memory" +msgstr "" + +#: src/Module/Admin/Site.php:481 +msgid "" +"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "" + +#: src/Module/Admin/Site.php:482 +msgid "Periodically optimize tables" +msgstr "" + +#: src/Module/Admin/Site.php:482 +msgid "Periodically optimize tables like the cache and the workerqueue" +msgstr "" + +#: src/Module/Admin/Site.php:484 +msgid "Discover followers/followings from contacts" +msgstr "" + +#: src/Module/Admin/Site.php:484 +msgid "" +"If enabled, contacts are checked for their followers and following contacts." +msgstr "" + +#: src/Module/Admin/Site.php:485 +msgid "None - deactivated" +msgstr "" + +#: src/Module/Admin/Site.php:486 +msgid "" +"Local contacts - contacts of our local contacts are discovered for their " +"followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:487 +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:489 +msgid "Synchronize the contacts with the directory server" +msgstr "" + +#: src/Module/Admin/Site.php:489 +msgid "" +"if enabled, the system will check periodically for new contacts on the " +"defined directory server." +msgstr "" + +#: src/Module/Admin/Site.php:491 +msgid "Days between requery" +msgstr "" + +#: src/Module/Admin/Site.php:491 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: src/Module/Admin/Site.php:492 +msgid "Discover contacts from other servers" +msgstr "" + +#: src/Module/Admin/Site.php:492 +msgid "" +"Periodically query other servers for contacts. The system queries Friendica," +" Mastodon and Hubzilla servers." +msgstr "" + +#: src/Module/Admin/Site.php:493 +msgid "Search the local directory" +msgstr "" + +#: src/Module/Admin/Site.php:493 +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:495 +msgid "Publish server information" +msgstr "" + +#: src/Module/Admin/Site.php:495 +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 "" + +#: src/Module/Admin/Site.php:497 +msgid "Check upstream version" +msgstr "" + +#: src/Module/Admin/Site.php:497 +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:498 +msgid "Suppress Tags" +msgstr "" + +#: src/Module/Admin/Site.php:498 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: src/Module/Admin/Site.php:499 +msgid "Clean database" +msgstr "" + +#: src/Module/Admin/Site.php:499 +msgid "" +"Remove old remote items, orphaned database records and old content from some" +" other helper tables." +msgstr "" + +#: src/Module/Admin/Site.php:500 +msgid "Lifespan of remote items" +msgstr "Líftími fjartengdra atriða" + +#: src/Module/Admin/Site.php:500 +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:501 +msgid "Lifespan of unclaimed items" +msgstr "" + +#: src/Module/Admin/Site.php:501 +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 "" + +#: src/Module/Admin/Site.php:502 +msgid "Lifespan of raw conversation data" +msgstr "" + +#: src/Module/Admin/Site.php:502 +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:503 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: src/Module/Admin/Site.php:503 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: src/Module/Admin/Site.php:504 +msgid "Maximum numbers of comments per post on the display page" +msgstr "" + +#: src/Module/Admin/Site.php:504 +msgid "" +"How many comments should be shown on the single view for each post? Default " +"value is 1000." +msgstr "" + +#: src/Module/Admin/Site.php:505 +msgid "Temp path" +msgstr "" + +#: src/Module/Admin/Site.php:505 +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:506 +msgid "Only search in tags" +msgstr "" + +#: src/Module/Admin/Site.php:506 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "" + +#: src/Module/Admin/Site.php:507 +msgid "" +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "" + +#: src/Module/Admin/Site.php:509 +msgid "Maximum number of parallel workers" +msgstr "" + +#: src/Module/Admin/Site.php:509 +#, 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:510 +msgid "Enable fastlane" +msgstr "" + +#: src/Module/Admin/Site.php:510 +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:512 +msgid "Direct relay transfer" +msgstr "" + +#: src/Module/Admin/Site.php:512 +msgid "" +"Enables the direct transfer to other servers without using the relay servers" +msgstr "" + +#: src/Module/Admin/Site.php:513 +msgid "Relay scope" +msgstr "" + +#: src/Module/Admin/Site.php:513 +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:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Disabled" +msgstr "Óvirkt" + +#: src/Module/Admin/Site.php:513 +msgid "all" +msgstr "allt" + +#: src/Module/Admin/Site.php:513 +msgid "tags" +msgstr "merki" + +#: src/Module/Admin/Site.php:514 +msgid "Server tags" +msgstr "" + +#: src/Module/Admin/Site.php:514 +msgid "Comma separated list of tags for the \"tags\" subscription." +msgstr "" + +#: src/Module/Admin/Site.php:515 +msgid "Deny Server tags" +msgstr "" + +#: src/Module/Admin/Site.php:515 +msgid "Comma separated list of tags that are rejected." +msgstr "" + +#: src/Module/Admin/Site.php:516 +msgid "Allow user tags" +msgstr "" + +#: src/Module/Admin/Site.php:516 +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:519 +msgid "Start Relocation" +msgstr "" + +#: src/Module/Admin/Storage.php:46 +#, php-format +msgid "Storage backend, %s is invalid." +msgstr "" + +#: src/Module/Admin/Storage.php:73 +#, php-format +msgid "Storage backend %s error: %s" +msgstr "" + +#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +msgid "Invalid storage backend setting value." +msgstr "" + +#: src/Module/Admin/Storage.php:139 +msgid "Current Storage Backend" +msgstr "" + +#: src/Module/Admin/Storage.php:140 +msgid "Storage Configuration" +msgstr "" + +#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +msgid "Storage" +msgstr "" + +#: src/Module/Admin/Storage.php:143 +msgid "Save & Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:144 +msgid "Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:145 +msgid "Save & Reload" +msgstr "" + +#: src/Module/Admin/Storage.php:146 +msgid "This backend doesn't have custom settings" +msgstr "" + +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "" + +#: src/Module/Admin/Storage.php:150 +msgid "Database (legacy)" +msgstr "" + +#: src/Module/Admin/Summary.php:55 +#, php-format +msgid "Template engine (%s) error: %s" +msgstr "" + +#: src/Module/Admin/Summary.php:59 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"bin/console.php dbstructure toinnodb of your Friendica installation for" +" an automatic conversion.
    " +msgstr "" + +#: src/Module/Admin/Summary.php:64 +#, php-format +msgid "" +"Your DB still runs with InnoDB tables in the Antelope file format. You " +"should change the file format to Barracuda. Friendica is using features that" +" are not provided by the Antelope format. See here for a " +"guide that may be helpful converting the table engines. You may also use the" +" command php bin/console.php dbstructure toinnodb of your Friendica" +" installation for an automatic conversion.
    " +msgstr "" + +#: src/Module/Admin/Summary.php:74 +#, php-format +msgid "" +"Your table_definition_cache is too low (%d). This can lead to the database " +"error \"Prepared statement needs to be re-prepared\". Please set it at least" +" to %d. See here for more information.
    " +msgstr "" + +#: src/Module/Admin/Summary.php:85 +#, php-format +msgid "" +"There is a new version of Friendica available for download. Your current " +"version is %1$s, upstream version is %2$s" +msgstr "" + +#: src/Module/Admin/Summary.php:94 +msgid "" +"The database update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "" + +#: src/Module/Admin/Summary.php:98 +msgid "" +"The last update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear. (Some of the errors are possibly inside the logfile.)" +msgstr "" + +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "" + +#: src/Module/Admin/Summary.php:107 +msgid "The worker was never executed. Please check your database structure!" +msgstr "" + +#: src/Module/Admin/Summary.php:109 +#, php-format +msgid "" +"The last worker execution was on %s UTC. This is older than one hour. Please" +" check your crontab settings." +msgstr "" + +#: src/Module/Admin/Summary.php:114 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +".htconfig.php. See the Config help page for " +"help with the transition." +msgstr "" + +#: src/Module/Admin/Summary.php:118 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +"config/local.ini.php. See the Config help " +"page for help with the transition." +msgstr "" + +#: src/Module/Admin/Summary.php:124 +#, php-format +msgid "" +"%s is not reachable on your system. This is a severe " +"configuration issue that prevents server to server communication. See the installation page for help." +msgstr "" + +#: src/Module/Admin/Summary.php:148 +#, php-format +msgid "" +"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" +" system.basepath from your db to avoid differences." +msgstr "" + +#: src/Module/Admin/Summary.php:156 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is wrong and the config file '%s' " +"isn't used." +msgstr "" + +#: src/Module/Admin/Summary.php:164 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is not equal to the config file " +"'%s'. Please fix your configuration." +msgstr "" + +#: src/Module/Admin/Summary.php:175 +msgid "Message queues" +msgstr "" + +#: src/Module/Admin/Summary.php:181 +msgid "Server Settings" +msgstr "" + +#: src/Module/Admin/Summary.php:199 +msgid "Version" +msgstr "Útgáfunúmer" + +#: src/Module/Admin/Summary.php:203 +msgid "Active addons" +msgstr "" + +#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 +#, php-format +msgid "Theme %s disabled." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 +#, php-format +msgid "Theme %s successfully enabled." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 +#, php-format +msgid "Theme %s failed to install." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:83 +msgid "Screenshot" +msgstr "Skjámynd" + +#: src/Module/Admin/Themes/Details.php:91 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 +msgid "Themes" +msgstr "Þemu" + +#: src/Module/Admin/Themes/Embed.php:80 +msgid "Unknown theme." +msgstr "" + +#: src/Module/Admin/Themes/Index.php:51 +msgid "Themes reloaded" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:114 +msgid "Reload active themes" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:118 +#, php-format +msgid "No themes found on the system. They should be placed in %1$s" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:119 +msgid "[Experimental]" +msgstr "[Á tilraunastigi]" + +#: src/Module/Admin/Themes/Index.php:120 +msgid "[Unsupported]" +msgstr "[Óstutt]" + +#: src/Module/Admin/Tos.php:79 +msgid "Display Terms of Service" +msgstr "" + +#: src/Module/Admin/Tos.php:79 +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 "" + +#: src/Module/Admin/Tos.php:80 +msgid "Display Privacy Statement" +msgstr "" + +#: src/Module/Admin/Tos.php:80 +#, php-format +msgid "" +"Show some informations regarding the needed information to operate the node " +"according e.g. to EU-GDPR." +msgstr "" + +#: src/Module/Admin/Tos.php:81 +msgid "Privacy Statement Preview" +msgstr "" + +#: src/Module/Admin/Tos.php:83 +msgid "The Terms of Service" +msgstr "" + +#: src/Module/Admin/Tos.php:83 +msgid "" +"Enter the Terms of Service for your node here. You can use BBCode. Headers " +"of sections should be [h2] and below." +msgstr "" + +#: src/Module/Admin/Tos.php:84 +msgid "The rules" +msgstr "" + +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." +msgstr "" + +#: src/Module/Api/ApiResponse.php:279 +#, php-format +msgid "API endpoint %s %s is not implemented but might be in the future." +msgstr "" + +#: src/Module/Api/Mastodon/Apps.php:73 +msgid "Missing parameters" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:51 +msgid "Only starting posts can be bookmarked" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +msgid "Only starting posts can be muted" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Reblog.php:56 +#, php-format +msgid "Posts from %s can't be shared" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +msgid "Only starting posts can be unbookmarked" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +msgid "Only starting posts can be unmuted" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:62 +#, php-format +msgid "Posts from %s can't be unshared" +msgstr "" + +#: src/Module/Api/Twitter/ContactEndpoint.php:66 +msgid "Contact not found" +msgstr "" + +#: src/Module/Apps.php:62 +msgid "No installed applications." +msgstr "Engin uppsett forrit" + +#: src/Module/Apps.php:67 +msgid "Applications" +msgstr "Forrit" + +#: src/Module/Attach.php:49 src/Module/Attach.php:61 +msgid "Item was not found." +msgstr "Atriði fannst ekki" + +#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +msgid "Please login to continue." +msgstr "Skráðu þig inn til að halda áfram." + +#: src/Module/BaseAdmin.php:63 +msgid "You don't have access to administration pages." +msgstr "" + +#: src/Module/BaseAdmin.php:67 +msgid "" +"Submanaged account can't access the administration pages. Please log back in" +" as the main account." +msgstr "" + +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +msgid "Overview" +msgstr "Yfirlit" + +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +msgid "Configuration" +msgstr "Uppsetning" + +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +msgid "Additional features" +msgstr "Viðbótareiginleikar" + +#: src/Module/BaseAdmin.php:97 +msgid "Database" +msgstr "Gagnagrunnur" + +#: src/Module/BaseAdmin.php:98 +msgid "DB updates" +msgstr "Gagnagrunnsuppfærslur" + +#: src/Module/BaseAdmin.php:99 +msgid "Inspect Deferred Workers" +msgstr "" + +#: src/Module/BaseAdmin.php:100 +msgid "Inspect worker Queue" +msgstr "" + +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +msgid "Diagnostics" +msgstr "Bilanagreining" + +#: src/Module/BaseAdmin.php:107 +msgid "PHP Info" +msgstr "PHP-upplýsingar" + +#: src/Module/BaseAdmin.php:108 +msgid "probe address" +msgstr "finna vistfang" + +#: src/Module/BaseAdmin.php:109 +msgid "check webfinger" +msgstr "" + +#: src/Module/BaseAdmin.php:110 +msgid "Babel" +msgstr "" + +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 +msgid "ActivityPub Conversion" +msgstr "" + +#: src/Module/BaseAdmin.php:120 +msgid "Addon Features" +msgstr "Eiginleikar forritsviðbótar" + +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +msgid "User registrations waiting for confirmation" +msgstr "Notenda nýskráningar bíða samþykkis" + +#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467 +#: src/Module/BaseApi.php:483 +msgid "Too Many Requests" +msgstr "" + +#: src/Module/BaseApi.php:452 +#, php-format +msgid "Daily posting limit of %d post reached. The post was rejected." +msgid_plural "Daily posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseApi.php:468 +#, php-format +msgid "Weekly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Weekly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseApi.php:484 +#, php-format +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Monthly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "" + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "" + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Notendur" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "Verkfæri" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "Svartur listi tengiliðar" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "Svartur listi vefþjóns" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "Eyða atriði" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 +msgid "Profile Details" +msgstr "Forsíðu upplýsingar" + +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "" + +#: src/Module/BaseProfile.php:111 +msgid "Only You Can See This" +msgstr "Aðeins þú sérð þetta" + +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +msgid "Scheduled Posts" +msgstr "" + +#: src/Module/BaseProfile.php:119 +msgid "Posts that are scheduled for publishing" +msgstr "" + +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +msgid "Tips for New Members" +msgstr "Ábendingar fyrir nýja notendur" + +#: src/Module/BaseSearch.php:71 +#, php-format +msgid "People Search - %s" +msgstr "Leita að fólki - %s" + +#: src/Module/BaseSearch.php:75 +#, php-format +msgid "Group Search - %s" +msgstr "" + +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "Engar leitarniðurstöður" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseSettings.php:78 +msgid "Account" +msgstr "Notandi" + +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 +msgid "Two-factor authentication" +msgstr "" + +#: src/Module/BaseSettings.php:118 +msgid "Display" +msgstr "Birting" + +#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "Samfélagsnet" + +#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172 +msgid "Manage Accounts" +msgstr "" + +#: src/Module/BaseSettings.php:146 +msgid "Connected apps" +msgstr "Tengd forrit" + +#: src/Module/BaseSettings.php:153 +msgid "Remote servers" +msgstr "" + +#: src/Module/BaseSettings.php:160 src/Module/Settings/UserExport.php:98 +msgid "Export personal data" +msgstr "Sækja persónuleg gögn" + +#: src/Module/BaseSettings.php:167 +msgid "Remove account" msgstr "Henda tengilið" -#: src/Model/Contact.php:1101 -msgid "Organisation" +#: src/Module/Bookmarklet.php:54 +msgid "This page is missing a url parameter." msgstr "" -#: src/Model/Contact.php:1104 -msgid "News" -msgstr "Fréttir" +#: src/Module/Bookmarklet.php:66 +msgid "The post was created" +msgstr "" -#: src/Model/Contact.php:1107 -msgid "Forum" -msgstr "Spjallsvæði" +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "" -#: src/Model/Contact.php:1286 -msgid "Connect URL missing." -msgstr "Tengislóð vantar." +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "" -#: src/Model/Contact.php:1295 +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "" + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "" + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "Atburður hefst:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Nauðsynlegt" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "Loka dagsetning/tímasetning ekki vituð eða skiptir ekki máli" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "Atburður klárar:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Deila þessum atburði" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "Einfalt" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "dagatal" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Atburðir" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "Skoða" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Stofna nýjan atburð" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:248 +msgid "list" +msgstr "listi" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "" + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "" + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "" + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "" + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "Tengiliður fannst ekki." + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "Ógildur tengiliður." + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "" + +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "" + +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "" + +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "" + +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "" + +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "" + +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "" + +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "" + +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "" + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "" + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "Meðlimir" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "Ýttu á tengilið til að bæta við hóp eða taka úr hóp." + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "" + +#: src/Module/Contact.php:97 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact.php:348 +msgid "Show all contacts" +msgstr "Sýna alla tengiliði" + +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "" + +#: src/Module/Contact.php:356 +msgid "Only show pending contacts" +msgstr "" + +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Útilokað" + +#: src/Module/Contact.php:364 +msgid "Only show blocked contacts" +msgstr "" + +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:368 +msgid "Ignored" +msgstr "Hunsa" + +#: src/Module/Contact.php:372 +msgid "Only show ignored contacts" +msgstr "" + +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 +msgid "Archived" +msgstr "Í geymslu" + +#: src/Module/Contact.php:388 +msgid "Only show archived contacts" +msgstr "Aðeins sýna geymda tengiliði" + +#: src/Module/Contact.php:393 src/Module/Contact.php:438 +msgid "Hidden" +msgstr "Falinn" + +#: src/Module/Contact.php:396 +msgid "Only show hidden contacts" +msgstr "Aðeins sýna falda tengiliði" + +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "" + +#: src/Module/Contact.php:459 +msgid "Search your contacts" +msgstr "Leita í þínum vinum" + +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 +#, php-format +msgid "Results for: %s" +msgstr "Niðurstöður fyrir: %s" + +#: src/Module/Contact.php:467 +msgid "Update" +msgstr "Uppfæra" + +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Afbanna" + +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 +msgid "Unignore" +msgstr "Byrja að fylgjast með á ný" + +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "" + +#: src/Module/Contact.php:472 +msgid "Batch Actions" +msgstr "Magnaðgerðir" + +#: src/Module/Contact.php:515 +msgid "Conversations started by this contact" +msgstr "" + +#: src/Module/Contact.php:520 +msgid "Posts and Comments" +msgstr "" + +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "" + +#: src/Module/Contact.php:531 +msgid "Posts containing media objects" +msgstr "" + +#: src/Module/Contact.php:539 +msgid "View all known contacts" +msgstr "" + +#: src/Module/Contact.php:550 +msgid "Advanced Contact Settings" +msgstr "" + +#: src/Module/Contact.php:586 +msgid "Mutual Friendship" +msgstr "Sameiginlegur vinskapur" + +#: src/Module/Contact.php:590 +msgid "is a fan of yours" +msgstr "er fylgjandi þinn" + +#: src/Module/Contact.php:594 +msgid "you are a fan of" +msgstr "þú er fylgjandi" + +#: src/Module/Contact.php:612 +msgid "Pending outgoing contact request" +msgstr "" + +#: src/Module/Contact.php:614 +msgid "Pending incoming contact request" +msgstr "" + +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Heimsækja forsíðu %s [%s]" + +#: src/Module/Contact/Advanced.php:99 +msgid "Contact update failed." +msgstr "Uppfærsla tengiliðs mistókst." + +#: src/Module/Contact/Advanced.php:130 +msgid "Return to contact editor" +msgstr "Fara til baka í tengiliðasýsl" + +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Nafn" + +#: src/Module/Contact/Advanced.php:135 +msgid "Account Nickname" +msgstr "Gælunafn notanda" + +#: src/Module/Contact/Advanced.php:136 +msgid "Account URL" +msgstr "Heimasíða notanda" + +#: src/Module/Contact/Advanced.php:137 +msgid "Poll/Feed URL" +msgstr "Slóð á könnun/fréttastraum" + +#: src/Module/Contact/Advanced.php:138 +msgid "New photo from this URL" +msgstr "Ný mynd frá slóð" + +#: src/Module/Contact/Contacts.php:89 +msgid "No known contacts." +msgstr "" + +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +msgid "No common contacts." +msgstr "" + +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#, php-format +msgid "Follower (%s)" +msgid_plural "Followers (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#, php-format +msgid "Following (%s)" +msgid_plural "Following (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#, php-format +msgid "Mutual friend (%s)" +msgid_plural "Mutual friends (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#, php-format +msgid "These contacts both follow and are followed by %s." +msgstr "" + +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#, php-format +msgid "Common contact (%s)" +msgid_plural "Common contacts (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#, php-format msgid "" -"The contact could not be added. Please check the relevant network " -"credentials in your Settings -> Social Networks page." +"Both %s and yourself have publicly interacted with these " +"contacts (follow, comment or likes on public posts)." msgstr "" -#: src/Model/Contact.php:1342 +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#, php-format +msgid "Contact (%s)" +msgid_plural "Contacts (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:165 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Aðgangi hafnað." + +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Senda beiðni" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "" + +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "" + +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Vinnsamlegast svaraðu eftirfarandi:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "Auðkennisnetfang þitt:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "Slóð á forsíðu" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Merki:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Bæta við persónulegri athugasemd" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" +msgstr "" + +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "" + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "Ógild fyrirspurn." + +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "" + +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "Forsíða fannst" + +#: src/Module/Contact/Profile.php:140 +msgid "Failed to update contact record." +msgstr "Ekki tókst að uppfæra tengiliðs skrá." + +#: src/Module/Contact/Profile.php:190 +msgid "Contact has been unblocked" +msgstr "Opnað á tengilið" + +#: src/Module/Contact/Profile.php:194 +msgid "Contact has been blocked" +msgstr "Lokað á tengilið" + +#: src/Module/Contact/Profile.php:206 +msgid "Contact has been unignored" +msgstr "Tengiliður afhunsaður" + +#: src/Module/Contact/Profile.php:210 +msgid "Contact has been ignored" +msgstr "Tengiliður hunsaður" + +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:254 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Þú ert gagnkvæmur vinur %s" + +#: src/Module/Contact/Profile.php:255 +#, php-format +msgid "You are sharing with %s" +msgstr "Þú ert að deila með %s" + +#: src/Module/Contact/Profile.php:256 +#, php-format +msgid "%s is sharing with you" +msgstr "%s er að deila með þér" + +#: src/Module/Contact/Profile.php:272 +msgid "Private communications are not available for this contact." +msgstr "Einkasamtal ekki í boði fyrir þennan" + +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "" + +#: src/Module/Contact/Profile.php:285 +msgid "Never" +msgstr "Aldrei" + +#: src/Module/Contact/Profile.php:288 +msgid "(Update was not successful)" +msgstr "(uppfærsla tókst ekki)" + +#: src/Module/Contact/Profile.php:288 +msgid "(Update was successful)" +msgstr "(uppfærsla tókst)" + +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 +msgid "Suggest friends" +msgstr "Stinga uppá vinum" + +#: src/Module/Contact/Profile.php:294 +#, php-format +msgid "Network type: %s" +msgstr "Net tegund: %s" + +#: src/Module/Contact/Profile.php:299 +msgid "Communications lost with this contact!" +msgstr "" + +#: src/Module/Contact/Profile.php:305 +msgid "Fetch further information for feeds" +msgstr "Ná í ítarlegri upplýsingar um fréttaveitur" + +#: src/Module/Contact/Profile.php:307 msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Þessi vefur er ekki uppsettur til að leyfa samskipti við önnur samfélagsnet." +"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 "" -#: src/Model/Contact.php:1343 src/Model/Contact.php:1357 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Engir samhæfðir samskiptastaðlar né fréttastraumar fundust." +#: src/Module/Contact/Profile.php:310 +msgid "Fetch information" +msgstr "Ná í upplýsingar" -#: src/Model/Contact.php:1355 -msgid "The profile address specified does not provide adequate information." -msgstr "Uppgefin forsíðuslóð inniheldur ekki nægilegar upplýsingar." +#: src/Module/Contact/Profile.php:311 +msgid "Fetch keywords" +msgstr "Ná í stikkorð" -#: src/Model/Contact.php:1360 -msgid "An author or name was not found." -msgstr "Höfundur eða nafn fannst ekki." +#: src/Module/Contact/Profile.php:312 +msgid "Fetch information and keywords" +msgstr "Ná í upplýsingar og stikkorð" -#: src/Model/Contact.php:1363 -msgid "No browser URL could be matched to this address." -msgstr "Engin vefslóð passaði við þetta vistfang." +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 +msgid "No mirroring" +msgstr "" -#: src/Model/Contact.php:1366 +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 +msgid "Mirror as my own posting" +msgstr "" + +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 +msgid "Native reshare" +msgstr "" + +#: src/Module/Contact/Profile.php:353 +msgid "Contact Information / Notes" +msgstr "Uppl. um tengilið / minnisatriði" + +#: src/Module/Contact/Profile.php:354 +msgid "Contact Settings" +msgstr "Stillingar tengiliðar" + +#: src/Module/Contact/Profile.php:362 +msgid "Contact" +msgstr "Tengiliður" + +#: src/Module/Contact/Profile.php:366 +msgid "Their personal note" +msgstr "" + +#: src/Module/Contact/Profile.php:368 +msgid "Edit contact notes" +msgstr "Breyta minnispunktum tengiliðs " + +#: src/Module/Contact/Profile.php:372 +msgid "Block/Unblock contact" +msgstr "útiloka/opna á tengilið" + +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 +msgid "Ignore contact" +msgstr "Hunsa tengilið" + +#: src/Module/Contact/Profile.php:374 +msgid "View conversations" +msgstr "Skoða samtöl" + +#: src/Module/Contact/Profile.php:379 +msgid "Last update:" +msgstr "Síðasta uppfærsla:" + +#: src/Module/Contact/Profile.php:381 +msgid "Update public posts" +msgstr "Uppfæra opinberar færslur" + +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 +msgid "Update now" +msgstr "Uppfæra núna" + +#: src/Module/Contact/Profile.php:385 +msgid "Awaiting connection acknowledge" +msgstr "" + +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "Útilokaður sem stendur" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "Hunsaður sem stendur" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "Í geymslu" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "" + +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 +msgid "Hide this contact from others" +msgstr "Gera þennan notanda ósýnilegan öðrum" + +#: src/Module/Contact/Profile.php:394 msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." +"Replies/likes to your public posts may still be visible" +msgstr "Svör eða \"líkar við\" á opinberar færslur þínar geta mögulega verið sýnileg öðrum" + +#: src/Module/Contact/Profile.php:395 +msgid "Notification for new posts" msgstr "" -#: src/Model/Contact.php:1367 -msgid "Use mailto: in front of address to force email check." +#: src/Module/Contact/Profile.php:395 +msgid "Send a notification of every new post of this contact" msgstr "" -#: src/Model/Contact.php:1373 +#: src/Module/Contact/Profile.php:397 +msgid "Keyword Deny List" +msgstr "" + +#: src/Module/Contact/Profile.php:397 msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef." +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" -#: src/Model/Contact.php:1378 +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:139 +msgid "Actions" +msgstr "Aðgerðir" + +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "Staða" + +#: src/Module/Contact/Profile.php:423 +msgid "Mirror postings from this contact" +msgstr "" + +#: src/Module/Contact/Profile.php:425 msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér." - -#: src/Model/Contact.php:1429 -msgid "Unable to retrieve contact information." -msgstr "Ekki hægt að sækja tengiliðs upplýsingar." - -#: src/Model/Contact.php:1646 src/Protocol/DFRN.php:1513 -#, php-format -msgid "%s's birthday" -msgstr "Afmælisdagur %s" - -#: src/Model/Contact.php:1647 src/Protocol/DFRN.php:1514 -#, php-format -msgid "Happy Birthday %s" -msgstr "Til hamingju með afmælið %s" - -#: src/Model/Item.php:1851 -#, php-format -msgid "%1$s is attending %2$s's %3$s" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." msgstr "" -#: src/Model/Item.php:1856 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" msgstr "" -#: src/Model/Item.php:1861 -#, php-format -msgid "%1$s may attend %2$s's %3$s" +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" msgstr "" -#: src/Protocol/OStatus.php:1799 -#, php-format -msgid "%s is now following %s." -msgstr "%s fylgist núna með %s." - -#: src/Protocol/OStatus.php:1800 -msgid "following" -msgstr "fylgist með" - -#: src/Protocol/OStatus.php:1803 -#, php-format -msgid "%s stopped following %s." +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." msgstr "" -#: src/Protocol/OStatus.php:1804 -msgid "stopped following" -msgstr "hætt að fylgja" +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "" -#: src/Protocol/Diaspora.php:2521 -msgid "Sharing notification from Diaspora network" -msgstr "Tilkynning um að einhver deildi atriði á Diaspora netinu" +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "" -#: src/Protocol/Diaspora.php:3609 -msgid "Attachments:" -msgstr "Viðhengi:" +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "" -#: src/Worker/Delivery.php:415 -msgid "(no subject)" -msgstr "(ekkert efni)" +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "" -#: src/Module/Logout.php:28 -msgid "Logged out." -msgstr "Skráður út." +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "" -#: src/Module/Login.php:283 +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "" + +#: src/Module/Contact/Profile.php:502 +msgid "Refetch contact data" +msgstr "" + +#: src/Module/Contact/Profile.php:513 +msgid "Toggle Blocked status" +msgstr "" + +#: src/Module/Contact/Profile.php:521 +msgid "Toggle Ignored status" +msgstr "" + +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" +msgstr "" + +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 +msgid "Revoke Follow" +msgstr "" + +#: src/Module/Contact/Profile.php:538 +msgid "Revoke the follow from this contact" +msgstr "" + +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "" + +#: src/Module/Contact/Revoke.php:63 +msgid "Unknown contact." +msgstr "" + +#: src/Module/Contact/Revoke.php:77 +msgid "Contact is being deleted." +msgstr "" + +#: src/Module/Contact/Revoke.php:91 +msgid "Follow was successfully revoked." +msgstr "" + +#: src/Module/Contact/Revoke.php:107 +msgid "" +"Do you really want to revoke this contact's follow? This cannot be undone " +"and they will have to manually follow you back again." +msgstr "" + +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "Yes" +msgstr "Já" + +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Engar uppástungur tiltækar. Ef þetta er nýr vefur, reyndu þá aftur eftir um 24 klukkustundir." + +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "" + +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "" + +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "" + +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "" + +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "" + +#: src/Module/Conversation/Channel.php:121 +#: src/Module/Conversation/Community.php:125 src/Module/Search/Index.php:152 +#: src/Module/Search/Index.php:194 +msgid "No results." +msgstr "Engar leitarniðurstöður." + +#: src/Module/Conversation/Channel.php:159 +msgid "Channel not available." +msgstr "" + +#: src/Module/Conversation/Community.php:91 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "" + +#: src/Module/Conversation/Community.php:179 +msgid "Community option not available." +msgstr "" + +#: src/Module/Conversation/Community.php:195 +msgid "Not available." +msgstr "Ekki tiltækt." + +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "" + +#: src/Module/Conversation/Network.php:222 +#, php-format +msgid "Circle: %s" +msgstr "" + +#: src/Module/Conversation/Network.php:317 +msgid "Network feed not available." +msgstr "" + +#: src/Module/Conversation/Timeline.php:158 +msgid "Own Contacts" +msgstr "" + +#: src/Module/Conversation/Timeline.php:162 +msgid "Include" +msgstr "" + +#: src/Module/Conversation/Timeline.php:163 +msgid "Hide" +msgstr "" + +#: src/Module/Credits.php:44 +msgid "Credits" +msgstr "Þakkir" + +#: 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 "" + +#: src/Module/Debug/ActivityPubConversion.php:53 +msgid "Formatted" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:65 +msgid "Activity" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:117 +msgid "Object data" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:124 +msgid "Result Item" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Debug/ActivityPubConversion.php:138 +msgid "Source activity" +msgstr "" + +#: src/Module/Debug/Babel.php:51 +msgid "Source input" +msgstr "" + +#: src/Module/Debug/Babel.php:57 +msgid "BBCode::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:63 +msgid "BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:68 +msgid "BBCode::convert (hex)" +msgstr "" + +#: src/Module/Debug/Babel.php:73 +msgid "BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:79 +msgid "BBCode::convert => HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:85 +msgid "BBCode::toMarkdown" +msgstr "" + +#: src/Module/Debug/Babel.php:91 +msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:95 +msgid "BBCode::toMarkdown => Markdown::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:101 +msgid "BBCode::toMarkdown => Markdown::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:107 +msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:115 +msgid "Item Body" +msgstr "" + +#: src/Module/Debug/Babel.php:119 +msgid "Item Tags" +msgstr "" + +#: src/Module/Debug/Babel.php:125 +msgid "PageInfo::appendToBody" +msgstr "" + +#: src/Module/Debug/Babel.php:130 +msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:134 +msgid "PageInfo::appendToBody => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:141 +msgid "Source input (Diaspora format)" +msgstr "" + +#: src/Module/Debug/Babel.php:150 +msgid "Source input (Markdown)" +msgstr "" + +#: src/Module/Debug/Babel.php:156 +msgid "Markdown::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:161 +msgid "Markdown::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:167 +msgid "Markdown::toBBCode" +msgstr "Markdown::toBBCode" + +#: src/Module/Debug/Babel.php:174 +msgid "Raw HTML input" +msgstr "Hrátt HTML-ílag" + +#: src/Module/Debug/Babel.php:179 +msgid "HTML Input" +msgstr "HTML Input" + +#: src/Module/Debug/Babel.php:186 +msgid "HTML Purified (raw)" +msgstr "" + +#: src/Module/Debug/Babel.php:191 +msgid "HTML Purified (hex)" +msgstr "" + +#: src/Module/Debug/Babel.php:196 +msgid "HTML Purified" +msgstr "" + +#: src/Module/Debug/Babel.php:202 +msgid "HTML::toBBCode" +msgstr "HTML::toBBCode" + +#: src/Module/Debug/Babel.php:208 +msgid "HTML::toBBCode => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:213 +msgid "HTML::toBBCode => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:219 +msgid "HTML::toBBCode => BBCode::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:225 +msgid "HTML::toMarkdown" +msgstr "" + +#: src/Module/Debug/Babel.php:231 +msgid "HTML::toPlaintext" +msgstr "HTML::toPlaintext" + +#: src/Module/Debug/Babel.php:237 +msgid "HTML::toPlaintext (compact)" +msgstr "" + +#: src/Module/Debug/Babel.php:255 +msgid "Decoded post" +msgstr "" + +#: src/Module/Debug/Babel.php:276 +msgid "Post array before expand entities" +msgstr "" + +#: src/Module/Debug/Babel.php:283 +msgid "Post converted" +msgstr "" + +#: src/Module/Debug/Babel.php:288 +msgid "Converted body" +msgstr "" + +#: src/Module/Debug/Babel.php:294 +msgid "Twitter addon is absent from the addon/ folder." +msgstr "" + +#: src/Module/Debug/Babel.php:304 +msgid "Babel Diagnostic" +msgstr "" + +#: src/Module/Debug/Babel.php:305 +msgid "Source text" +msgstr "Frumtexti" + +#: 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 "" + +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:177 +msgid "You must be logged in to use this module" +msgstr "" + +#: src/Module/Debug/Feed.php:77 +msgid "Source URL" +msgstr "Upprunaslóð" + +#: src/Module/Debug/Localtime.php:49 +msgid "Time Conversion" +msgstr "Tíma leiðréttir" + +#: src/Module/Debug/Localtime.php:50 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica veitir þessa þjónustu til að deila atburðum milli neta og vina í óþekktum tímabeltum." + +#: src/Module/Debug/Localtime.php:51 +#, php-format +msgid "UTC time: %s" +msgstr "Máltími: %s" + +#: src/Module/Debug/Localtime.php:54 +#, php-format +msgid "Current timezone: %s" +msgstr "Núverandi tímabelti: %s" + +#: src/Module/Debug/Localtime.php:58 +#, php-format +msgid "Converted localtime: %s" +msgstr "Umbreyttur staðartími: %s" + +#: src/Module/Debug/Localtime.php:62 +msgid "Please select your timezone:" +msgstr "Veldu tímabeltið þitt:" + +#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +msgid "Only logged in users are permitted to perform a probing." +msgstr "" + +#: src/Module/Debug/Probe.php:52 +msgid "Probe Diagnostic" +msgstr "" + +#: src/Module/Debug/Probe.php:53 +msgid "Output" +msgstr "" + +#: src/Module/Debug/Probe.php:56 +msgid "Lookup address" +msgstr "" + +#: src/Module/Debug/WebFinger.php:50 +msgid "Webfinger Diagnostic" +msgstr "" + +#: src/Module/Debug/WebFinger.php:52 +msgid "Lookup address:" +msgstr "" + +#: src/Module/Delegation.php:110 +#, php-format +msgid "You are now logged in as %s" +msgstr "" + +#: src/Module/Delegation.php:142 +msgid "Switch between your accounts" +msgstr "" + +#: src/Module/Delegation.php:143 +msgid "Manage your accounts" +msgstr "" + +#: src/Module/Delegation.php:144 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Skipta á milli auðkenna eða hópa- / stjörnunotanda sem deila þínum aðgangs upplýsingum eða þér verið úthlutað \"umsýslu\" réttindum." + +#: src/Module/Delegation.php:145 +msgid "Select an identity to manage: " +msgstr "Veldu notanda til að sýsla með:" + +#: src/Module/Directory.php:74 +msgid "No entries (some entries may be hidden)." +msgstr "Engar færslur (sumar geta verið faldar)." + +#: src/Module/Directory.php:90 +msgid "Find on this site" +msgstr "Leita á þessum vef" + +#: src/Module/Directory.php:92 +msgid "Results for:" +msgstr "Niðurstöður fyrir:" + +#: src/Module/Directory.php:94 +msgid "Site Directory" +msgstr "Skrá yfir tengiliði á þessum vef" + +#: src/Module/Filer/RemoveTag.php:105 +msgid "Item was not deleted" +msgstr "" + +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "" + +#: src/Module/Filer/SaveTag.php:73 +msgid "- select -" +msgstr "- veldu -" + +#: src/Module/FriendSuggest.php:82 +msgid "Suggested contact not found." +msgstr "" + +#: src/Module/FriendSuggest.php:100 +msgid "Friend suggestion sent." +msgstr "Vina tillaga send" + +#: src/Module/FriendSuggest.php:137 +msgid "Suggest Friends" +msgstr "Stinga uppá vinum" + +#: src/Module/FriendSuggest.php:140 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Stinga uppá vin fyrir %s" + +#: src/Module/Friendica.php:82 +msgid "Installed addons/apps:" +msgstr "" + +#: src/Module/Friendica.php:87 +msgid "No installed addons/apps" +msgstr "" + +#: src/Module/Friendica.php:92 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "" + +#: src/Module/Friendica.php:99 +msgid "On this server the following remote servers are blocked." +msgstr "" + +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +msgid "Reason for the block" +msgstr "" + +#: src/Module/Friendica.php:104 +msgid "Download this list in CSV format" +msgstr "" + +#: src/Module/Friendica.php:118 +#, php-format +msgid "" +"This is Friendica, version %s that is running at the web location %s. The " +"database version is %s, the post update version is %s." +msgstr "" + +#: src/Module/Friendica.php:123 +msgid "" +"Please visit Friendi.ca to learn more " +"about the Friendica project." +msgstr "" + +#: src/Module/Friendica.php:124 +msgid "Bug reports and issues: please visit" +msgstr "Villu tilkynningar og vandamál: endilega skoða" + +#: src/Module/Friendica.php:124 +msgid "the bugtracker at github" +msgstr "villuskráningu á GitHub" + +#: src/Module/Friendica.php:125 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +msgstr "" + +#: src/Module/HCard.php:45 +msgid "No profile" +msgstr "Engin forsíða" + +#: src/Module/HTTPException/MethodNotAllowed.php:31 +msgid "Method Not Allowed." +msgstr "" + +#: src/Module/Help.php:60 +msgid "Help:" +msgstr "Hjálp:" + +#: src/Module/Home.php:63 +#, php-format +msgid "Welcome to %s" +msgstr "Velkomin í %s" + +#: src/Module/Install.php:189 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: src/Module/Install.php:200 +msgid "System check" +msgstr "Kerfis prófun" + +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 +msgid "Requirement not satisfied" +msgstr "" + +#: src/Module/Install.php:203 +msgid "Optional requirement not satisfied" +msgstr "" + +#: src/Module/Install.php:204 +msgid "OK" +msgstr "" + +#: src/Module/Install.php:208 +msgid "Next" +msgstr "Næsta" + +#: src/Module/Install.php:209 +msgid "Check again" +msgstr "Prófa aftur" + +#: src/Module/Install.php:222 +msgid "Base settings" +msgstr "" + +#: src/Module/Install.php:224 +msgid "Base path to installation" +msgstr "" + +#: src/Module/Install.php:226 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: src/Module/Install.php:229 +msgid "The Friendica system URL" +msgstr "" + +#: src/Module/Install.php:231 +msgid "" +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." +msgstr "" + +#: src/Module/Install.php:242 +msgid "Database connection" +msgstr "Gangagrunns tenging" + +#: src/Module/Install.php:243 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Til að setja upp Friendica þurfum við að vita hvernig á að tengjast gagnagrunninum þínum." + +#: src/Module/Install.php:244 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Hafðu samband við hýsingaraðilann þinn eða kerfisstjóra ef þú hefur spurningar varðandi þessar stillingar." + +#: src/Module/Install.php:245 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Gagnagrunnurinn sem þú bendir á þarf þegar að vera til. Ef ekki þá þarf að stofna hann áður en haldið er áfram." + +#: src/Module/Install.php:252 +msgid "Database Server Name" +msgstr "Vélanafn gagangrunns" + +#: src/Module/Install.php:257 +msgid "Database Login Name" +msgstr "Notendanafn í gagnagrunn" + +#: src/Module/Install.php:263 +msgid "Database Login Password" +msgstr "Aðgangsorð í gagnagrunns" + +#: src/Module/Install.php:265 +msgid "For security reasons the password must not be empty" +msgstr "" + +#: src/Module/Install.php:268 +msgid "Database Name" +msgstr "Nafn gagnagrunns" + +#: src/Module/Install.php:272 src/Module/Install.php:300 +msgid "Please select a default timezone for your website" +msgstr "Veldu sjálfgefið tímabelti fyrir vefsíðuna" + +#: src/Module/Install.php:287 +msgid "Site settings" +msgstr "Stillingar vefsvæðis" + +#: src/Module/Install.php:295 +msgid "Site administrator email address" +msgstr "Tölvupóstfang kerfisstjóra vefsvæðis" + +#: src/Module/Install.php:297 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Póstfang aðgangsins þíns verður að passa við þetta til að hægt sé að nota umsýsluvefviðmótið." + +#: src/Module/Install.php:304 +msgid "System Language:" +msgstr "Tungumál kerfis:" + +#: src/Module/Install.php:306 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "" + +#: src/Module/Install.php:318 +msgid "Your Friendica site database has been installed." +msgstr "Friendica gagnagrunnurinn þinn hefur verið uppsettur." + +#: src/Module/Install.php:328 +msgid "Installation finished" +msgstr "" + +#: src/Module/Install.php:348 +msgid "

    What next

    " +msgstr "" + +#: src/Module/Install.php:349 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"worker." +msgstr "" + +#: src/Module/Install.php:352 +#, php-format +msgid "" +"Go to your new Friendica node registration page " +"and register as new user. Remember to use the same email you have entered as" +" administrator email. This will allow you to enter the site admin panel." +msgstr "" + +#: src/Module/Invite.php:57 +msgid "Total invitation limit exceeded." +msgstr "" + +#: src/Module/Invite.php:82 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Ekki gilt tölvupóstfang." + +#: src/Module/Invite.php:108 +msgid "Please join us on Friendica" +msgstr "Komdu í hópinn á Friendica" + +#: src/Module/Invite.php:117 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "" + +#: src/Module/Invite.php:121 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Skilaboð komust ekki til skila." + +#: src/Module/Invite.php:125 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d skilaboð send." +msgstr[1] "%d skilaboð send" + +#: src/Module/Invite.php:143 +msgid "You have no more invitations available" +msgstr "Þú hefur ekki fleiri boðskort." + +#: src/Module/Invite.php:150 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "" + +#: src/Module/Invite.php:152 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "" + +#: src/Module/Invite.php:153 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "" + +#: src/Module/Invite.php:157 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "" + +#: src/Module/Invite.php:160 +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks." +msgstr "" + +#: src/Module/Invite.php:159 +#, php-format +msgid "To accept this invitation, please visit and register at %s." +msgstr "" + +#: src/Module/Invite.php:167 +msgid "Send invitations" +msgstr "Senda kynningar" + +#: src/Module/Invite.php:168 +msgid "Enter email addresses, one per line:" +msgstr "Settu inn tölvupóstföng, eitt í hverja línu:" + +#: src/Module/Invite.php:172 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "" + +#: src/Module/Invite.php:174 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Þú þarft að nota eftirfarandi boðskorta auðkenni: $invite_code" + +#: src/Module/Invite.php:174 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Þegar þú hefur nýskráð þig, hafðu samband við mig gegnum síðuna mína á:" + +#: src/Module/Invite.php:176 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendi.ca" +msgstr "" + +#: src/Module/Item/Compose.php:85 +msgid "Please enter a post body." +msgstr "" + +#: src/Module/Item/Compose.php:98 +msgid "This feature is only available with the frio theme." +msgstr "" + +#: src/Module/Item/Compose.php:122 +msgid "Compose new personal note" +msgstr "" + +#: src/Module/Item/Compose.php:131 +msgid "Compose new post" +msgstr "" + +#: src/Module/Item/Compose.php:187 +msgid "Visibility" +msgstr "" + +#: src/Module/Item/Compose.php:203 +msgid "Clear the location" +msgstr "" + +#: src/Module/Item/Compose.php:204 +msgid "Location services are unavailable on your device" +msgstr "" + +#: src/Module/Item/Compose.php:205 +msgid "" +"Location services are disabled. Please check the website's permissions on " +"your device" +msgstr "" + +#: src/Module/Item/Compose.php:211 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "" + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "" + +#: src/Module/Item/Follow.php:51 +msgid "Unable to follow this item." +msgstr "" + +#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +msgid "System down for maintenance" +msgstr "Kerfið er óvirkt vegna viðhalds" + +#: 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 "" + +#: src/Module/Manifest.php:40 +msgid "A Decentralized Social Network" +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Skrár" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload" +msgstr "Senda inn" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "Eða - reyndirðu að senda inn tóma skrá?" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Skrá fer leyfileg takmörk sem eru %s" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "Skráar upphlöðun mistókst." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:68 +msgid "Unable to process image." +msgstr "Ekki mögulegt afgreiða mynd" + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:95 +msgid "Image upload failed." +msgstr "Ekki hægt að hlaða upp mynd." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "Útiloka fjartengdan tengilið" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "velja alla" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "velja ekkert" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "Útilokaðir fjartengdir tengiliðir" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "Útiloka nýjan fjartengdan tengilið" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "Ljósmynd" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "Ástæða fyrir útilokun" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +msgid "Blocked server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "Atriði merkt til eyðingar." + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "Eyða þessu atriði" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "" + +#: src/Module/Moderation/Item/Delete.php:65 +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 "" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "Tegund" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Atriði fannst ekki" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "" + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "" + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Venjulegur notandi" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Verður sjálfkrafa vinur notandi" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Skráðir notendur" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Nýskráningar í bið" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s notanda eytt" +msgstr[1] "%s notendum eytt" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Skráningardagur" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "Síðast innskráður" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "Vefstjóri" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "Notandaaðgangur útrunninn" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Valdir notendur verður eytt!\\n\\nAllt sem þessir notendur hafa deilt á þessum vef verður varanlega eytt!\\n\\nErtu alveg viss?" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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 "Notandinn {0} verður eytt!\\n\\nAllt sem þessi notandi hefur deilt á þessum vef veður varanlega eytt!\\n\\nErtu alveg viss?" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "Nýr notandi" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "Bæta við notanda" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "Stuttnefni" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "" + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "" + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Notandi samþykktur." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Dagsetning beiðnar" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "Engin skráning" + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Hafnað" + +#: src/Module/Notifications/Introductions.php:99 +msgid "Show Ignored Requests" +msgstr "Sýna hunsaðar beiðnir" + +#: src/Module/Notifications/Introductions.php:99 +msgid "Hide Ignored Requests" +msgstr "Fela hunsaðar beiðnir" + +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 +msgid "Notification type:" +msgstr "" + +#: src/Module/Notifications/Introductions.php:118 +msgid "Suggested by:" +msgstr "" + +#: src/Module/Notifications/Introductions.php:143 +msgid "Claims to be known to you: " +msgstr "Þykist þekkja þig:" + +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "No" +msgstr "Nei" + +#: src/Module/Notifications/Introductions.php:152 +msgid "Shall your connection be bidirectional or not?" +msgstr "" + +#: src/Module/Notifications/Introductions.php:153 +#, 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 "" + +#: src/Module/Notifications/Introductions.php:154 +#, 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 "" + +#: src/Module/Notifications/Introductions.php:156 +msgid "Friend" +msgstr "Vin" + +#: src/Module/Notifications/Introductions.php:157 +msgid "Subscriber" +msgstr "Áskrifandi" + +#: src/Module/Notifications/Introductions.php:216 +msgid "No introductions." +msgstr "Engar kynningar." + +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 +#, php-format +msgid "No more %s notifications." +msgstr "Ekki fleiri %s tilkynningar." + +#: src/Module/Notifications/Notification.php:135 +msgid "You must be logged in to show this page." +msgstr "" + +#: src/Module/Notifications/Notifications.php:66 +msgid "Network Notifications" +msgstr "Tilkynningar á neti" + +#: src/Module/Notifications/Notifications.php:72 +msgid "System Notifications" +msgstr "Kerfistilkynningar" + +#: src/Module/Notifications/Notifications.php:78 +msgid "Personal Notifications" +msgstr "Einkatilkynningar." + +#: src/Module/Notifications/Notifications.php:84 +msgid "Home Notifications" +msgstr "Tilkynningar frá heimasvæði" + +#: src/Module/Notifications/Notifications.php:140 +msgid "Show unread" +msgstr "Birta ólesið" + +#: src/Module/Notifications/Ping.php:246 +msgid "{0} requested registration" +msgstr "{0} óskaði eftir skráningu" + +#: src/Module/Notifications/Ping.php:255 +#, php-format +msgid "{0} and %d others requested registration" +msgstr "" + +#: src/Module/OAuth/Acknowledge.php:51 +msgid "Authorize application connection" +msgstr "Leyfa forriti að tengjast" + +#: src/Module/OAuth/Acknowledge.php:53 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengiliðum, og/eða stofna nýjar færslur fyrir þig?" + +#: src/Module/OAuth/Authorize.php:54 +msgid "Unsupported or missing response type" +msgstr "" + +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +msgid "Incomplete request data" +msgstr "" + +#: 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:83 +msgid "Invalid data or unknown client" +msgstr "" + +#: src/Module/OAuth/Token.php:108 +msgid "Unsupported or missing grant type" +msgstr "" + +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "Halda þessum glugga opnum þar til öllu er lokið." + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "Enginn tengiliður uppgefinn." + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Lokið" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "tókst" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "mistókst" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "hunsað" + +#: src/Module/PermissionTooltip.php:49 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "" + +#: src/Module/PermissionTooltip.php:79 +msgid "Model not found" +msgstr "" + +#: src/Module/PermissionTooltip.php:94 +msgid "Unlisted" +msgstr "" + +#: src/Module/PermissionTooltip.php:112 +msgid "Remote privacy information not available." +msgstr "Persónuverndarupplýsingar ekki fyrir hendi á fjartengdum vefþjóni." + +#: src/Module/PermissionTooltip.php:121 +msgid "Visible to:" +msgstr "Sýnilegt eftirfarandi:" + +#: src/Module/PermissionTooltip.php:204 +#, php-format +msgid "Collection (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:208 +#, php-format +msgid "Followers (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:227 +#, php-format +msgid "%d more" +msgstr "" + +#: src/Module/PermissionTooltip.php:231 +#, php-format +msgid "To: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:234 +#, php-format +msgid "CC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:237 +#, php-format +msgid "BCC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "" + +#: src/Module/Photo.php:130 +msgid "The Photo is not available." +msgstr "" + +#: src/Module/Photo.php:155 +#, php-format +msgid "The Photo with id %s is not available." +msgstr "" + +#: src/Module/Photo.php:192 +#, php-format +msgid "Invalid external resource with url %s." +msgstr "" + +#: src/Module/Photo.php:194 +#, php-format +msgid "Invalid photo with id %s." +msgstr "" + +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "" + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Breyta skilaboðum" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "vefslóð" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Setja inn slóð á myndskeið" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "slóð á myndskeið" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Setja inn slóð á hljóðskrá" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "slóð á hljóðskrá" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Fjarlægja merki " + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Veldu merki til að fjarlægja:" + +#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Fjarlægja" + +#: src/Module/Profile/Contacts.php:159 +msgid "No contacts." +msgstr "Enginn tengiliður" + +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "Tímalína fyrir %s" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "Færslur frá %s" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "Athugasemdir frá %s" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:59 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "" + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "Myndskrá vantar" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "Mynda skrá er tóm." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "Skoða myndabók" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +msgid "Profile not found." +msgstr "Forsíða fannst ekki." + +#: src/Module/Profile/Profile.php:158 +#, php-format +msgid "" +"You're currently viewing your profile as %s Cancel" +msgstr "" + +#: src/Module/Profile/Profile.php:167 +msgid "Full Name:" +msgstr "Fullt nafn:" + +#: src/Module/Profile/Profile.php:172 +msgid "Member since:" +msgstr "Meðlimur síðan:" + +#: src/Module/Profile/Profile.php:178 +msgid "j F, Y" +msgstr "j F, Y" + +#: src/Module/Profile/Profile.php:179 +msgid "j F" +msgstr "j F" + +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 +msgid "Birthday:" +msgstr "Afmælisdagur:" + +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +msgid "Age: " +msgstr "Aldur: " + +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#, php-format +msgid "%d year old" +msgid_plural "%d years old" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "Lýsing:" + +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "" + +#: src/Module/Profile/Profile.php:273 +msgid "View profile as:" +msgstr "" + +#: src/Module/Profile/Profile.php:290 +msgid "View as" +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "Ekki hægt að sækja forsíðu" + +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "Ógild staðsetning" + +#: src/Module/Profile/RemoteFollow.php:95 +msgid "The provided profile link doesn't seem to be valid" +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:100 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:128 +msgid "Friend/Connection Request" +msgstr "Vinabeiðni/Tengibeiðni" + +#: src/Module/Profile/RemoteFollow.php:129 +#, 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 "" + +#: src/Module/Profile/RemoteFollow.php:130 +#, 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 "" + +#: src/Module/Profile/RemoteFollow.php:131 +msgid "Your Webfinger address or profile URL:" +msgstr "" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "" + +#: src/Module/Profile/Schedule.php:83 +msgid "Scheduled" +msgstr "" + +#: src/Module/Profile/Schedule.php:84 +msgid "Content" +msgstr "" + +#: src/Module/Profile/Schedule.php:85 +msgid "Remove post" +msgstr "" + +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "" + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "" + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "" + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "" + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "" + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "" + +#: src/Module/Register.php:84 +msgid "Only parent users can create additional accounts." +msgstr "" + +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Þessi vefur hefur náð hámarks fjölda daglegra nýskráninga. Reyndu aftur á morgun." + +#: src/Module/Register.php:116 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." +msgstr "" + +#: src/Module/Register.php:117 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Ef þú veist ekki hvað OpenID er, skildu þá þetta svæði eftir tómt en fylltu í restin af svæðunum." + +#: src/Module/Register.php:118 +msgid "Your OpenID (optional): " +msgstr "Þitt OpenID (valfrjálst):" + +#: src/Module/Register.php:127 +msgid "Include your profile in member directory?" +msgstr "Á forsíðan þín að sjást í notendalistanum?" + +#: src/Module/Register.php:148 +msgid "Note for the admin" +msgstr "" + +#: src/Module/Register.php:148 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "" + +#: src/Module/Register.php:149 +msgid "Membership on this site is by invitation only." +msgstr "Aðild að þessum vef er " + +#: src/Module/Register.php:150 +msgid "Your invitation code: " +msgstr "" + +#: src/Module/Register.php:158 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: src/Module/Register.php:159 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "" + +#: src/Module/Register.php:160 +msgid "Please repeat your e-mail address:" +msgstr "" + +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 +msgid "New Password:" +msgstr "Nýtt aðgangsorð:" + +#: src/Module/Register.php:162 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 +msgid "Confirm:" +msgstr "Staðfesta:" + +#: src/Module/Register.php:164 +#, php-format +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be \"nickname@%s\"." +msgstr "" + +#: src/Module/Register.php:165 +msgid "Choose a nickname: " +msgstr "Veldu gælunafn:" + +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Flytja inn" + +#: src/Module/Register.php:174 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: src/Module/Register.php:181 +msgid "Note: This node explicitly contains adult content" +msgstr "" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "Parent Password:" +msgstr "" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "" + +#: src/Module/Register.php:212 +msgid "Password doesn't match." +msgstr "" + +#: src/Module/Register.php:218 +msgid "Please enter your password." +msgstr "" + +#: src/Module/Register.php:260 +msgid "You have entered too much information." +msgstr "" + +#: src/Module/Register.php:283 +msgid "Please enter the identical mail address in the second field." +msgstr "" + +#: src/Module/Register.php:310 +msgid "The additional account was created." +msgstr "" + +#: src/Module/Register.php:335 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti." + +#: src/Module/Register.php:342 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "" + +#: src/Module/Register.php:348 +msgid "Registration successful." +msgstr "Nýskráning tókst." + +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 +msgid "Your registration can not be processed." +msgstr "Skráninguna þína er ekki hægt að vinna." + +#: src/Module/Register.php:363 +msgid "You have to leave a request note for the admin." +msgstr "" + +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "" + +#: src/Module/Register.php:395 +msgid "Your registration is pending approval by the site owner." +msgstr "Skráningin þín bíður samþykkis af eiganda síðunnar." + +#: src/Module/Search/Acl.php:73 +msgid "You must be logged in to use this module." +msgstr "" + +#: src/Module/Search/Index.php:69 +msgid "Only logged in users are permitted to perform a search." +msgstr "Aðeins innskráðir notendur geta framkvæmt leit." + +#: src/Module/Search/Index.php:89 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "Notendur sem ekki eru innskráðir geta aðeins framkvæmt eina leit á mínútu." + +#: src/Module/Search/Index.php:205 +#, php-format +msgid "Items tagged with: %s" +msgstr "Atriði merkt með: %s" + +#: src/Module/Search/Saved.php:59 +msgid "Search term was not saved." +msgstr "" + +#: src/Module/Search/Saved.php:62 +msgid "Search term already saved." +msgstr "" + +#: src/Module/Search/Saved.php:68 +msgid "Search term was not removed." +msgstr "" + +#: src/Module/Security/Login.php:123 msgid "Create a New Account" msgstr "Stofna nýjan notanda" -#: src/Module/Login.php:316 -msgid "Password: " -msgstr "Aðgangsorð: " +#: src/Module/Security/Login.php:142 +msgid "Your OpenID: " +msgstr "" -#: src/Module/Login.php:317 -msgid "Remember me" -msgstr "Muna eftir mér" +#: src/Module/Security/Login.php:145 +msgid "" +"Please enter your username and password to add the OpenID to your existing " +"account." +msgstr "" -#: src/Module/Login.php:320 +#: src/Module/Security/Login.php:147 msgid "Or login using OpenID: " msgstr "Eða auðkenna með OpenID: " -#: src/Module/Login.php:326 +#: src/Module/Security/Login.php:161 +msgid "Password: " +msgstr "Aðgangsorð: " + +#: src/Module/Security/Login.php:162 +msgid "Remember me" +msgstr "Muna eftir mér" + +#: src/Module/Security/Login.php:171 msgid "Forgot your password?" msgstr "Gleymt lykilorð?" -#: src/Module/Login.php:329 +#: src/Module/Security/Login.php:174 msgid "Website Terms of Service" msgstr "Þjónustuskilmálar vefsvæðis" -#: src/Module/Login.php:330 +#: src/Module/Security/Login.php:175 msgid "terms of service" msgstr "þjónustuskilmálar" -#: src/Module/Login.php:332 +#: src/Module/Security/Login.php:177 msgid "Website Privacy Policy" msgstr "Persónuverndarstefna" -#: src/Module/Login.php:333 +#: src/Module/Security/Login.php:178 msgid "privacy policy" msgstr "persónuverndarstefna" -#: src/Module/Tos.php:34 src/Module/Tos.php:74 +#: src/Module/Security/Logout.php:84 +#: src/Module/Security/TwoFactor/SignOut.php:78 +#: src/Module/Security/TwoFactor/SignOut.php:86 +#: src/Module/Security/TwoFactor/SignOut.php:108 +#: src/Module/Security/TwoFactor/SignOut.php:115 +msgid "Logged out." +msgstr "Skráður út." + +#: src/Module/Security/OpenID.php:54 +msgid "OpenID protocol error. No ID returned" +msgstr "" + +#: src/Module/Security/OpenID.php:90 +msgid "" +"Account not found. Please login to your existing account to add the OpenID " +"to it." +msgstr "" + +#: src/Module/Security/OpenID.php:92 +msgid "" +"Account not found. Please register a new account or login to your existing " +"account to add the OpenID to it." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 +msgid "Passwords do not match." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:64 +msgid "Password does not need changing." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 +msgid "Password unchanged." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:91 +msgid "Password Too Long" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:92 +msgid "" +"Since version 2022.09, we've realized that any password longer than 72 " +"characters is truncated during hashing. To prevent any confusion about this " +"behavior, please update your password to be fewer or equal to 72 characters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:93 +msgid "Update Password" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Current Password:" +msgstr "Núverandi lykilorð:" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Your current password to confirm the changes" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces and accentuated letters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 +msgid "Password length is limited to 72 characters." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:74 +#, php-format +msgid "Remaining recovery codes: %d" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:80 +#: src/Module/Security/TwoFactor/Verify.php:77 +#: src/Module/Settings/TwoFactor/Verify.php:95 +msgid "Invalid code, please retry." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:99 +msgid "Two-factor recovery" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:100 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:101 +#, php-format +msgid "Don’t have your phone? Enter a two-factor recovery code" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:102 +msgid "Please enter a recovery code" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:103 +msgid "Submit recovery code and complete login" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:122 +msgid "Sign out of this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:123 +msgid "" +"

    If you trust this browser, you will not be asked for verification code " +"the next time you sign in.

    " +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:124 +msgid "Sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:126 +msgid "Trust and sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:96 +msgid "Couldn't save browser to Cookie." +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:141 +msgid "Trust this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:142 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:143 +msgid "Not now" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:144 +msgid "Don't trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:145 +msgid "Trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:97 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:100 +#, php-format +msgid "" +"If you do not have access to your authentication code you can use a two-factor recovery code." +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Please enter a code from your authentication app" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:102 +msgid "Verify code and complete login" +msgstr "" + +#: src/Module/Settings/Account.php:96 +msgid "Please use a shorter name." +msgstr "" + +#: src/Module/Settings/Account.php:99 +msgid "Name too short." +msgstr "" + +#: src/Module/Settings/Account.php:108 +msgid "Wrong Password." +msgstr "" + +#: src/Module/Settings/Account.php:113 +msgid "Invalid email." +msgstr "Ógilt tölvupóstfang." + +#: src/Module/Settings/Account.php:117 +msgid "Cannot change to that email." +msgstr "" + +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 +msgid "Settings were not updated." +msgstr "" + +#: src/Module/Settings/Account.php:364 +msgid "Contact CSV file upload error" +msgstr "" + +#: src/Module/Settings/Account.php:383 +msgid "Importing Contacts done" +msgstr "" + +#: src/Module/Settings/Account.php:396 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: src/Module/Settings/Account.php:413 +msgid "Unable to find your profile. Please contact your admin." +msgstr "" + +#: src/Module/Settings/Account.php:455 +msgid "Personal Page Subtypes" +msgstr "" + +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" +msgstr "" + +#: src/Module/Settings/Account.php:466 +msgid "Account for a personal profile." +msgstr "" + +#: src/Module/Settings/Account.php:473 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:480 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:487 +msgid "Account for community discussions." +msgstr "" + +#: src/Module/Settings/Account.php:494 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:501 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:508 +msgid "Automatically approves all contact requests." +msgstr "" + +#: src/Module/Settings/Account.php:515 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "" + +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "" + +#: src/Module/Settings/Account.php:522 +msgid "Requires manual approval of contact requests." +msgstr "" + +#: src/Module/Settings/Account.php:531 +msgid "OpenID:" +msgstr "OpenID:" + +#: src/Module/Settings/Account.php:531 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Valfrjálst) Leyfa þessu OpenID til að auðkennast sem þessi notandi." + +#: src/Module/Settings/Account.php:539 +msgid "Publish your profile in your local site directory?" +msgstr "" + +#: src/Module/Settings/Account.php:539 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "" + +#: src/Module/Settings/Account.php:545 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "" + +#: src/Module/Settings/Account.php:558 +msgid "Account Settings" +msgstr "Stillingar aðgangs" + +#: src/Module/Settings/Account.php:559 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: src/Module/Settings/Account.php:566 +msgid "Password Settings" +msgstr "Stillingar aðgangsorða" + +#: src/Module/Settings/Account.php:568 +msgid "Leave password fields blank unless changing" +msgstr "Hafðu aðgangsorða svæði tóm nema þegar verið er að breyta" + +#: src/Module/Settings/Account.php:570 +msgid "Password:" +msgstr "Lykilorð:" + +#: src/Module/Settings/Account.php:570 +msgid "Your current password to confirm the changes of the email address" +msgstr "" + +#: src/Module/Settings/Account.php:573 +msgid "Delete OpenID URL" +msgstr "" + +#: src/Module/Settings/Account.php:575 +msgid "Basic Settings" +msgstr "Grunnstillingar" + +#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "" + +#: src/Module/Settings/Account.php:577 +msgid "Email Address:" +msgstr "Tölvupóstfang:" + +#: src/Module/Settings/Account.php:578 +msgid "Your Timezone:" +msgstr "Þitt tímabelti:" + +#: src/Module/Settings/Account.php:579 +msgid "Your Language:" +msgstr "Tungumálið þitt:" + +#: src/Module/Settings/Account.php:579 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: src/Module/Settings/Account.php:580 +msgid "Default Post Location:" +msgstr "Sjálfgefin staðsetning færslu:" + +#: src/Module/Settings/Account.php:581 +msgid "Use Browser Location:" +msgstr "Nota vafra staðsetningu:" + +#: src/Module/Settings/Account.php:583 +msgid "Security and Privacy Settings" +msgstr "Öryggis og friðhelgistillingar" + +#: src/Module/Settings/Account.php:585 +msgid "Maximum Friend Requests/Day:" +msgstr "Hámarks vinabeiðnir á dag:" + +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 +msgid "(to prevent spam abuse)" +msgstr "(til að koma í veg fyrir rusl misnotkun)" + +#: src/Module/Settings/Account.php:587 +msgid "Allow your profile to be searchable globally?" +msgstr "" + +#: src/Module/Settings/Account.php:587 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "" + +#: src/Module/Settings/Account.php:588 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "" + +#: src/Module/Settings/Account.php:588 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "" +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "Make public posts unlisted" +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "" + +#: src/Module/Settings/Account.php:591 +msgid "Make all posted pictures accessible" +msgstr "" + +#: src/Module/Settings/Account.php:591 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "" + +#: src/Module/Settings/Account.php:592 +msgid "Allow friends to post to your profile page?" +msgstr "Leyfa vinum að deila á forsíðuna þína?" + +#: src/Module/Settings/Account.php:592 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "" + +#: src/Module/Settings/Account.php:593 +msgid "Allow friends to tag your posts?" +msgstr "Leyfa vinum að merkja færslurnar þínar?" + +#: src/Module/Settings/Account.php:593 +msgid "Your contacts can add additional tags to your posts." +msgstr "" + +#: src/Module/Settings/Account.php:594 +msgid "Permit unknown people to send you private mail?" +msgstr "" + +#: src/Module/Settings/Account.php:594 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "" + +#: src/Module/Settings/Account.php:595 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "" + +#: src/Module/Settings/Account.php:598 +msgid "Default Post Permissions" +msgstr "Sjálfgefnar aðgangstýring á færslum" + +#: src/Module/Settings/Account.php:602 +msgid "Expiration settings" +msgstr "" + +#: src/Module/Settings/Account.php:603 +msgid "Automatically expire posts after this many days:" +msgstr "Sjálfkrafa fyrna færslu eftir hvað marga daga:" + +#: src/Module/Settings/Account.php:603 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Tómar færslur renna ekki út. Útrunnum færslum er eytt" + +#: src/Module/Settings/Account.php:604 +msgid "Expire posts" +msgstr "" + +#: src/Module/Settings/Account.php:604 +msgid "When activated, posts and comments will be expired." +msgstr "" + +#: src/Module/Settings/Account.php:605 +msgid "Expire personal notes" +msgstr "" + +#: src/Module/Settings/Account.php:605 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "" + +#: src/Module/Settings/Account.php:606 +msgid "Expire starred posts" +msgstr "" + +#: src/Module/Settings/Account.php:606 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "" + +#: src/Module/Settings/Account.php:607 +msgid "Only expire posts by others" +msgstr "" + +#: src/Module/Settings/Account.php:607 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "" + +#: src/Module/Settings/Account.php:610 +msgid "Notification Settings" +msgstr "Stillingar á tilkynningum" + +#: src/Module/Settings/Account.php:611 +msgid "Send a notification email when:" +msgstr "Senda tilkynningapóst þegar:" + +#: src/Module/Settings/Account.php:612 +msgid "You receive an introduction" +msgstr "Þú færð kynningu" + +#: src/Module/Settings/Account.php:613 +msgid "Your introductions are confirmed" +msgstr "Kynningarnar þínar eru samþykktar" + +#: src/Module/Settings/Account.php:614 +msgid "Someone writes on your profile wall" +msgstr "Einhver skrifar á vegginn þinn" + +#: src/Module/Settings/Account.php:615 +msgid "Someone writes a followup comment" +msgstr "Einhver skrifar athugasemd á færslu hjá þér" + +#: src/Module/Settings/Account.php:616 +msgid "You receive a private message" +msgstr "Þú færð einkaskilaboð" + +#: src/Module/Settings/Account.php:617 +msgid "You receive a friend suggestion" +msgstr "Þér hefur borist vina uppástunga" + +#: src/Module/Settings/Account.php:618 +msgid "You are tagged in a post" +msgstr "Þú varst merkt(ur) í færslu" + +#: src/Module/Settings/Account.php:620 +msgid "Create a desktop notification when:" +msgstr "" + +#: src/Module/Settings/Account.php:621 +msgid "Someone tagged you" +msgstr "" + +#: src/Module/Settings/Account.php:622 +msgid "Someone directly commented on your post" +msgstr "" + +#: src/Module/Settings/Account.php:623 +msgid "Someone liked your content" +msgstr "" + +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +msgid "Can only be enabled, when the direct comment notification is enabled." +msgstr "" + +#: src/Module/Settings/Account.php:624 +msgid "Someone shared your content" +msgstr "" + +#: src/Module/Settings/Account.php:625 +msgid "Someone commented in your thread" +msgstr "" + +#: src/Module/Settings/Account.php:626 +msgid "Someone commented in a thread where you commented" +msgstr "" + +#: src/Module/Settings/Account.php:627 +msgid "Someone commented in a thread where you interacted" +msgstr "" + +#: src/Module/Settings/Account.php:629 +msgid "Activate desktop notifications" +msgstr "" + +#: src/Module/Settings/Account.php:629 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: src/Module/Settings/Account.php:633 +msgid "Text-only notification emails" +msgstr "" + +#: src/Module/Settings/Account.php:635 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: src/Module/Settings/Account.php:639 +msgid "Show detailled notifications" +msgstr "" + +#: src/Module/Settings/Account.php:641 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "" + +#: src/Module/Settings/Account.php:645 +msgid "Show notifications of ignored contacts" +msgstr "" + +#: src/Module/Settings/Account.php:647 +msgid "" +"You don't see posts from ignored contacts. But you still see their comments." +" This setting controls if you want to still receive regular notifications " +"that are caused by ignored contacts or not." +msgstr "" + +#: src/Module/Settings/Account.php:650 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: src/Module/Settings/Account.php:651 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: src/Module/Settings/Account.php:654 +msgid "Import Contacts" +msgstr "" + +#: src/Module/Settings/Account.php:655 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "" + +#: src/Module/Settings/Account.php:656 +msgid "Upload File" +msgstr "" + +#: src/Module/Settings/Account.php:659 +msgid "Relocate" +msgstr "Endurstaðsetja" + +#: src/Module/Settings/Account.php:660 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: src/Module/Settings/Account.php:661 +msgid "Resend relocate message to contacts" +msgstr "" + +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "Ekki tókst að tengjast við pósthólf með stillingum sem uppgefnar eru." + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "Slökkt hefur verið á tölvupóst aðgang á þessum þjón." + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "Ekkert" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "Almennar stillingar samfélagsmiðla" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "" + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "Tölvupóstur stilling" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Ef þú villt hafa samskipti við tölvupóststengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu." + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "Síðasta prófun á tölvupóstfangi:" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "IMAP þjónn:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "IMAP port:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "Öryggi:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "Notandanafn tölvupóstfangs:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "Lykilorð tölvupóstfangs:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "Svarpóstfang:" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "Senda opinberar færslur á alla tölvupóst viðtakendur:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "Flytja yfir í skrásafn" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "Flytja yfir í skrásafn:" + +#: src/Module/Settings/Delegation.php:54 +msgid "Delegation successfully granted." +msgstr "" + +#: src/Module/Settings/Delegation.php:56 +msgid "Parent user not found, unavailable or password doesn't match." +msgstr "" + +#: src/Module/Settings/Delegation.php:60 +msgid "Delegation successfully revoked." +msgstr "" + +#: src/Module/Settings/Delegation.php:82 +#: src/Module/Settings/Delegation.php:104 +msgid "" +"Delegated administrators can view but not change delegation permissions." +msgstr "" + +#: src/Module/Settings/Delegation.php:96 +msgid "Delegate user not found." +msgstr "" + +#: src/Module/Settings/Delegation.php:144 +msgid "No parent user" +msgstr "" + +#: src/Module/Settings/Delegation.php:155 +#: src/Module/Settings/Delegation.php:166 +msgid "Parent User" +msgstr "" + +#: src/Module/Settings/Delegation.php:163 +msgid "Additional Accounts" +msgstr "" + +#: src/Module/Settings/Delegation.php:164 +msgid "" +"Register additional accounts that are automatically connected to your " +"existing account so you can manage them from this account." +msgstr "" + +#: src/Module/Settings/Delegation.php:165 +msgid "Register an additional account" +msgstr "" + +#: src/Module/Settings/Delegation.php:169 +msgid "" +"Parent users have total control about this account, including the account " +"settings. Please double check whom you give this access." +msgstr "" + +#: src/Module/Settings/Delegation.php:173 +msgid "Delegates" +msgstr "" + +#: src/Module/Settings/Delegation.php:175 +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 "" + +#: src/Module/Settings/Delegation.php:176 +msgid "Existing Page Delegates" +msgstr "" + +#: src/Module/Settings/Delegation.php:178 +msgid "Potential Delegates" +msgstr "" + +#: src/Module/Settings/Delegation.php:181 +msgid "Add" +msgstr "Bæta við" + +#: src/Module/Settings/Delegation.php:182 +msgid "No entries." +msgstr "Engar færslur." + +#: src/Module/Settings/Display.php:146 +msgid "The theme you chose isn't available." +msgstr "" + +#: src/Module/Settings/Display.php:186 +#, php-format +msgid "%s - (Unsupported)" +msgstr "%s - (ekki stutt)" + +#: src/Module/Settings/Display.php:221 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:222 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:223 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:224 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:259 +msgid "Display Settings" +msgstr "Birtingarstillingar" + +#: src/Module/Settings/Display.php:261 +msgid "General Theme Settings" +msgstr "" + +#: src/Module/Settings/Display.php:262 +msgid "Custom Theme Settings" +msgstr "" + +#: src/Module/Settings/Display.php:263 +msgid "Content Settings" +msgstr "Stillingar efnis" + +#: src/Module/Settings/Display.php:264 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 +msgid "Theme settings" +msgstr "Þemastillingar" + +#: src/Module/Settings/Display.php:265 +msgid "Timelines" +msgstr "" + +#: src/Module/Settings/Display.php:272 +msgid "Display Theme:" +msgstr "Útlits þema:" + +#: src/Module/Settings/Display.php:273 +msgid "Mobile Theme:" +msgstr "Farsímaþema" + +#: src/Module/Settings/Display.php:276 +msgid "Number of items to display per page:" +msgstr "" + +#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277 +msgid "Maximum of 100 items" +msgstr "" + +#: src/Module/Settings/Display.php:277 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: src/Module/Settings/Display.php:278 +msgid "Update browser every xx seconds" +msgstr "Endurhlaða vefsíðu á xx sekúndu fresti" + +#: src/Module/Settings/Display.php:278 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" + +#: src/Module/Settings/Display.php:279 +msgid "Display emoticons" +msgstr "" + +#: src/Module/Settings/Display.php:279 +msgid "When enabled, emoticons are replaced with matching symbols." +msgstr "" + +#: src/Module/Settings/Display.php:280 +msgid "Infinite scroll" +msgstr "" + +#: src/Module/Settings/Display.php:280 +msgid "Automatic fetch new items when reaching the page end." +msgstr "" + +#: src/Module/Settings/Display.php:281 +msgid "Enable Smart Threading" +msgstr "" + +#: src/Module/Settings/Display.php:281 +msgid "Enable the automatic suppression of extraneous thread indentation." +msgstr "" + +#: src/Module/Settings/Display.php:282 +msgid "Display the Dislike feature" +msgstr "" + +#: src/Module/Settings/Display.php:282 +msgid "" +"Display the Dislike button and dislike reactions on posts and comments." +msgstr "" + +#: src/Module/Settings/Display.php:283 +msgid "Display the resharer" +msgstr "" + +#: src/Module/Settings/Display.php:283 +msgid "Display the first resharer as icon and text on a reshared item." +msgstr "" + +#: src/Module/Settings/Display.php:284 +msgid "Stay local" +msgstr "" + +#: src/Module/Settings/Display.php:284 +msgid "Don't go to a remote system when following a contact link." +msgstr "" + +#: src/Module/Settings/Display.php:285 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:285 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Timelines for the network page:" +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Select all the timelines that you want to see on your network page." +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Channel languages:" +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Select all languages that you want to see in your channels." +msgstr "" + +#: src/Module/Settings/Display.php:290 +msgid "Beginning of week:" +msgstr "Upphaf viku:" + +#: src/Module/Settings/Display.php:291 +msgid "Default calendar view:" +msgstr "" + +#: src/Module/Settings/Display.php:300 src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:312 +#, php-format +msgid "%s: %s" +msgstr "" + +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "Viðbótareiginleikar" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Tengd forrit" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "Fjarlæga auðkenningu" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:167 +msgid "Profile couldn't be updated." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 +msgid "Label:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 +msgid "Value:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 +msgid "Field Permissions" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 +msgid "(click to open/close)" +msgstr "(ýttu á til að opna/loka)" + +#: src/Module/Settings/Profile/Index.php:224 +msgid "Add a new profile field" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:247 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:249 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:255 +msgid "Profile Actions" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:256 +msgid "Edit Profile Details" +msgstr "Breyta forsíðu upplýsingum" + +#: src/Module/Settings/Profile/Index.php:258 +msgid "Change Profile Photo" +msgstr "Breyta forsíðumynd" + +#: src/Module/Settings/Profile/Index.php:261 +msgid "Profile picture" +msgstr "Notandamynd" + +#: src/Module/Settings/Profile/Index.php:262 +msgid "Location" +msgstr "Staðsetning" + +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 +msgid "Miscellaneous" +msgstr "Ýmislegt" + +#: src/Module/Settings/Profile/Index.php:264 +msgid "Custom Profile Fields" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +msgid "Upload Profile Photo" +msgstr "Hlaða upp forsíðu mynd" + +#: src/Module/Settings/Profile/Index.php:266 +#, 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 circles.

    " +msgstr "" + +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "Gata:" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "Bær/Borg:" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "Svæði/Sýsla" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "Póstnúmer:" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "Land:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "XMPP (Jabber) vistfang:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "Slóð heimasíðu:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "Opinber leitarorð:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "Einka leitarorð:" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)" + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 +#: src/Module/Settings/Profile/Photo/Index.php:101 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Myndar minnkun [%s] tókst ekki." + +#: src/Module/Settings/Profile/Photo/Crop.php:150 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Ýta þarf á " + +#: src/Module/Settings/Profile/Photo/Crop.php:155 +msgid "Unable to process image" +msgstr "Ekki tókst að vinna mynd" + +#: src/Module/Settings/Profile/Photo/Crop.php:174 +msgid "Photo not found." +msgstr "" + +#: src/Module/Settings/Profile/Photo/Crop.php:196 +msgid "Profile picture successfully updated." +msgstr "" + +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 +msgid "Crop Image" +msgstr "Skera af mynd" + +#: src/Module/Settings/Profile/Photo/Crop.php:223 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Stilltu afskurð fyrir besta birtingu." + +#: src/Module/Settings/Profile/Photo/Crop.php:225 +msgid "Use Image As Is" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:45 +msgid "Missing uploaded image." +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:124 +msgid "Profile Picture Settings" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:125 +msgid "Current Profile Picture" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:126 +msgid "Upload Profile Picture" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:127 +msgid "Upload Picture:" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:132 +msgid "or" +msgstr "eða" + +#: src/Module/Settings/Profile/Photo/Index.php:134 +msgid "skip this step" +msgstr "sleppa þessu skrefi" + +#: src/Module/Settings/Profile/Photo/Index.php:136 +msgid "select a photo from your photo albums" +msgstr "velja mynd í myndabókum" + +#: src/Module/Settings/RemoveMe.php:94 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:94 +msgid "User deleted their account" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:95 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "" + +#: src/Module/Settings/RemoveMe.php:96 +#, php-format +msgid "The user id is %d" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:108 +msgid "Your user account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:128 +msgid "Remove My Account" +msgstr "Eyða þessum notanda" + +#: src/Module/Settings/RemoveMe.php:129 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft." + +#: src/Module/Settings/RemoveMe.php:131 +msgid "Please enter your password for verification:" +msgstr "Sláðu inn aðgangsorð yðar:" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "" + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 +msgid "Please enter your password to access this page." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 +msgid "App-specific password generation failed: The description is empty." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +msgid "" +"App-specific password generation failed: This description already exists." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 +msgid "New app-specific password generated." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 +msgid "App-specific passwords successfully revoked." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 +msgid "App-specific password successfully revoked." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +msgid "Two-factor app-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 +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 "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +msgid "" +"Make sure to copy your new app-specific password now. You won’t be able to " +"see it again!" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +msgid "Description" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 +msgid "Last Used" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 +msgid "Revoke" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +msgid "Revoke All" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +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 "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 +msgid "Generate new app-specific password" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 +msgid "Friendiqa on my Fairphone 2..." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +msgid "Generate" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:68 +msgid "Two-factor authentication successfully disabled." +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:124 +msgid "Authenticator app" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Configured" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Not Configured" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:126 +msgid "

    You haven't finished configuring your authenticator app.

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

    Your authenticator app is correctly configured.

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:129 +msgid "Recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:130 +msgid "Remaining valid codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:132 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:134 +msgid "App-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:135 +msgid "Generated app-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:137 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:140 +msgid "Current password:" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:140 +msgid "" +"You need to provide your current password to change two-factor " +"authentication settings." +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:141 +msgid "Enable two-factor authentication" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:142 +msgid "Disable two-factor authentication" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:143 +msgid "Show recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:144 +msgid "Manage app-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:145 +msgid "Manage trusted browsers" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:146 +msgid "Finish app configuration" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:80 +msgid "New recovery codes successfully generated." +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:106 +msgid "Two-factor recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:108 +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 "" + +#: src/Module/Settings/TwoFactor/Recovery.php:110 +msgid "" +"When you generate new recovery codes, you must copy the new codes. Your old " +"codes won’t work anymore." +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:111 +msgid "Generate new recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:113 +msgid "Next: Verification" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:84 +msgid "Trusted browsers successfully removed." +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:94 +msgid "Trusted browser successfully removed." +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:136 +msgid "Two-factor Trusted Browsers" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:137 +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 "" + +#: src/Module/Settings/TwoFactor/Trusted.php:138 +msgid "Device" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:139 +msgid "OS" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:141 +msgid "Trusted" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:142 +msgid "Created At" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:143 +msgid "Last Use" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:145 +msgid "Remove All" +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:91 +msgid "Two-factor authentication successfully activated." +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:125 +#, 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 "" + +#: src/Module/Settings/TwoFactor/Verify.php:145 +msgid "Two-factor code verification" +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:147 +msgid "" +"

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

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

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

    %s

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:156 +msgid "Verify code and enable two-factor authentication" +msgstr "" + +#: src/Module/Settings/UserExport.php:90 +msgid "Export account" +msgstr "Flytja út notandaaðgang" + +#: src/Module/Settings/UserExport.php:90 +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 "" + +#: src/Module/Settings/UserExport.php:91 +msgid "Export all" +msgstr "Flytja út allt" + +#: src/Module/Settings/UserExport.php:91 +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 "" + +#: src/Module/Settings/UserExport.php:92 +msgid "Export Contacts to CSV" +msgstr "" + +#: src/Module/Settings/UserExport.php:92 +msgid "" +"Export the list of the accounts you are following as CSV file. Compatible to" +" e.g. Mastodon." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:37 +msgid "" +"This node has blocked the top-level author or the author of the shared post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:38 +msgid "" +"You have ignored or blocked the top-level author or the author of the shared" +" post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:39 +msgid "" +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "" + +#: src/Module/Special/HTTPException.php:78 +msgid "Stack trace:" +msgstr "" + +#: src/Module/Special/HTTPException.php:83 +#, php-format +msgid "Exception thrown in %s:%d" +msgstr "" + +#: src/Module/Tos.php:58 src/Module/Tos.php:107 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" @@ -9379,177 +11021,1423 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:35 src/Module/Tos.php:75 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 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 "" -#: src/Module/Tos.php:36 src/Module/Tos.php:76 +#: src/Module/Tos.php:60 src/Module/Tos.php:109 #, 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." +" account settings. If the user " +"wants to delete their account they can do so at %1$s/settings/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 "" -#: src/Module/Tos.php:39 src/Module/Tos.php:73 +#: src/Module/Tos.php:63 src/Module/Tos.php:106 msgid "Privacy Statement" msgstr "Yfirlýsing um gagnaleynd" -#: src/Object/Post.php:128 +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "" + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "" + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "" + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "Flytja aðgang" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "Þú getur flutt inn notandaaðgang frá öðrum Friendica-þjóni." + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "" + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "" + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "Notandaaðgangsskrá" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "" + +#: src/Module/Welcome.php:44 +msgid "Welcome to Friendica" +msgstr "Velkomin(n) á Friendica" + +#: src/Module/Welcome.php:45 +msgid "New Member Checklist" +msgstr "Gátlisti nýs notanda" + +#: 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 "" + +#: src/Module/Welcome.php:48 +msgid "Getting Started" +msgstr "Til að komast í gang" + +#: src/Module/Welcome.php:49 +msgid "Friendica Walk-Through" +msgstr "Leiðarvísir Friendica" + +#: 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 "" + +#: src/Module/Welcome.php:53 +msgid "Go to Your Settings" +msgstr "Farðu í stillingarnar þínar" + +#: 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 "" + +#: 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 "Yfirfarðu aðrar stillingar, sérstaklega gagnaleyndarstillingar. Óútgefin forsíða er einsog óskráð símanúmer. Sem þýðir að líklega viltu gefa út forsíðuna þína - nema að allir vinir þínir og tilvonandi vinir viti nákvæmlega hvernig á að finna þig." + +#: 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 "Að hlaða upp forsíðu mynd ef þú hefur ekki þegar gert það. Rannsóknir sýna að fólk sem hefur alvöru mynd af sér er tíu sinnum líklegra til að eignast vini en fólk sem ekki hefur mynd." + +#: src/Module/Welcome.php:60 +msgid "Edit Your Profile" +msgstr "Breyta forsíðunni þinni" + +#: 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 "Breyttu sjálfgefnu forsíðunni einsog þú villt. Yfirfarðu stillingu til að fela vinalista á forsíðu og stillingu til að fela forsíðu fyrir ókunnum." + +#: src/Module/Welcome.php:62 +msgid "Profile Keywords" +msgstr "Stikkorð notandans" + +#: 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 "" + +#: src/Module/Welcome.php:65 +msgid "Connecting" +msgstr "Tengist" + +#: src/Module/Welcome.php:67 +msgid "Importing Emails" +msgstr "Flyt inn pósta" + +#: 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 "Fylltu út aðgangsupplýsingar póstfangsins þíns á Tengistillingasíðunni ef þú vilt sækja tölvupóst og eiga samskipti við vini eða póstlista úr innhólfi tölvupóstsins þíns" + +#: src/Module/Welcome.php:69 +msgid "Go to Your Contacts Page" +msgstr "Fara yfir á tengiliðasíðuna" + +#: 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 "Tengiliðasíðan er gáttin þín til að sýsla með vinasambönd og tengjast við vini á öðrum netum. Oftast setur þú vistfang eða slóð þeirra í Bæta við tengilið glugganum." + +#: src/Module/Welcome.php:71 +msgid "Go to Your Site's Directory" +msgstr "" + +#: 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 "Tengiliðalistinn er góð leit til að finna fólk á samfélagsnetinu eða öðrum sambandsnetum. Leitaðu að Tengjast/Connect eða Fylgja/Follow tenglum á forsíðunni þeirra. Mögulega þarftu að gefa upp auðkennisslóðina þína." + +#: src/Module/Welcome.php:73 +msgid "Finding New People" +msgstr "Finna nýtt fólk" + +#: 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 "" + +#: src/Module/Welcome.php:77 +msgid "Add Your Contacts To Circle" +msgstr "" + +#: src/Module/Welcome.php:78 +msgid "" +"Once you have made some friends, organize them into private conversation " +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "" + +#: src/Module/Welcome.php:80 +msgid "Why Aren't My Posts Public?" +msgstr "Hvers vegna eru færslurnar mínar ekki opinberar?" + +#: 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 "Friendica virðir gagnaleynd þína. Sjálfgefið er að færslurnar þínar birtast einungis þeim sem þú hefur bætt við sem vinum. Til að sjá nánari upplýsingar, skoðaðu þá hjálparhlutann með því að smella á tengilinn hér fyrir ofan." + +#: src/Module/Welcome.php:83 +msgid "Getting Help" +msgstr "Til að fá hjálp" + +#: src/Module/Welcome.php:84 +msgid "Go to the Help Section" +msgstr "Fara í hjálparhlutann" + +#: src/Module/Welcome.php:85 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Hægt er að styðjast við Hjálp síðuna til að fá leiðbeiningar um aðra eiginleika." + +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +msgid "{0} wants to follow you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +msgid "{0} has started following you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#, php-format +msgid "%s liked %s's post" +msgstr "%s líkaði færsla hjá %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s mislíkaði færsla hjá %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#, php-format +msgid "%s is attending %s's event" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#, php-format +msgid "%s is not attending %s's event" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#, php-format +msgid "%s may attending %s's event" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s er nú vinur %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s athugasemd við %s's færslu" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#, php-format +msgid "%s created a new post" +msgstr "%s bjó til færslu" + +#: src/Navigation/Notifications/Factory/Introduction.php:133 +msgid "Friend Suggestion" +msgstr "Vina tillaga" + +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "Friend/Connect Request" +msgstr "Vinabeiðni/Tengibeiðni" + +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "New Follower" +msgstr "Nýr fylgjandi" + +#: src/Navigation/Notifications/Factory/Notification.php:134 +#, php-format +msgid "%1$s wants to follow you" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:136 +#, php-format +msgid "%1$s has started following you" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:208 +#, php-format +msgid "%1$s liked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:211 +#, php-format +msgid "%1$s liked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:218 +#, php-format +msgid "%1$s disliked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:221 +#, php-format +msgid "%1$s disliked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:228 +#, php-format +msgid "%1$s shared your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 +#, php-format +msgid "%1$s shared your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:235 +#: src/Navigation/Notifications/Factory/Notification.php:305 +#, php-format +msgid "%1$s shared the post %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:237 +#: src/Navigation/Notifications/Factory/Notification.php:307 +#, php-format +msgid "%1$s shared a post from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:239 +#: src/Navigation/Notifications/Factory/Notification.php:309 +#, php-format +msgid "%1$s shared the post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:311 +#, php-format +msgid "%1$s shared a post" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:249 +#, php-format +msgid "%1$s wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:256 +#, php-format +msgid "%1$s does not want to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:263 +#, php-format +msgid "%1$s maybe wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:270 +#, php-format +msgid "%1$s tagged you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:274 +#, php-format +msgid "%1$s replied to you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:278 +#, php-format +msgid "%1$s commented in your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:282 +#, php-format +msgid "%1$s commented on your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:289 +#, php-format +msgid "%1$s commented in their thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:291 +#, php-format +msgid "%1$s commented in their thread" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:293 +#, php-format +msgid "%1$s commented in the thread %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:295 +#, php-format +msgid "%1$s commented in the thread from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:300 +#, php-format +msgid "%1$s commented on your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 +msgid "[Friendica:Notify]" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:293 +#, php-format +msgid "%s New mail received at %s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:295 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s sendi þér ný einkaskilaboð %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:296 +msgid "a private message" +msgstr "einkaskilaboð" + +#: src/Navigation/Notifications/Repository/Notify.php:296 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s sendi þér %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:298 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Farðu á %s til að skoða og/eða svara einkaskilaboðunum þínum." + +#: src/Navigation/Notifications/Repository/Notify.php:328 +#, php-format +msgid "%1$s commented on %2$s's %3$s %4$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:333 +#, php-format +msgid "%1$s commented on your %2$s %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:337 +#, php-format +msgid "%1$s commented on their %2$s %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 +#, php-format +msgid "%1$s Comment to conversation #%2$d by %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:343 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s skrifaði athugasemd á færslu/samtal sem þú ert að fylgja." + +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Farðu á %s til að skoða og/eða svara samtali." + +#: src/Navigation/Notifications/Repository/Notify.php:354 +#, php-format +msgid "%s %s posted to your profile wall" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:356 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s skrifaði á vegginn þinn %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:357 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s skrifaði á [url=%2$s]vegginn þinn[/url]" + +#: src/Navigation/Notifications/Repository/Notify.php:370 +#, php-format +msgid "%s Introduction received" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:372 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Þú tókst við kynningu frá '%1$s', %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:373 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Þú tókst við [url=%1$s]kynningu[/url] frá %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Þú getur heimsótt síðuna þeirra á %s" + +#: src/Navigation/Notifications/Repository/Notify.php:380 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Farðu á %s til að samþykkja eða hunsa þessa kynningu." + +#: src/Navigation/Notifications/Repository/Notify.php:387 +#, php-format +msgid "%s A new person is sharing with you" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s er að deila með þér, %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:397 +#, php-format +msgid "%s You have a new follower" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "Þú hefur nýjan fylgjanda á %2$s : %1$s" + +#: src/Navigation/Notifications/Repository/Notify.php:413 +#, php-format +msgid "%s Friend suggestion received" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:415 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Þér hefur borist uppástunga um vin frá '%1$s' kl. %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:416 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Þér hefur borist [url=%1$s]uppástunga um vin[/url] fyrir %2$s frá %3$s." + +#: src/Navigation/Notifications/Repository/Notify.php:422 +msgid "Name:" +msgstr "Nafn:" + +#: src/Navigation/Notifications/Repository/Notify.php:423 +msgid "Photo:" +msgstr "Mynd:" + +#: src/Navigation/Notifications/Repository/Notify.php:426 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Farðu á %s til að samþykkja eða hunsa þessa uppástungu." + +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 +#, php-format +msgid "%s Connection accepted" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "'%1$s' samþykkti tengibeiðni þína %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s samþykkti [url=%1$s]tengibeiðni þína[/url]." + +#: src/Navigation/Notifications/Repository/Notify.php:442 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "Þið eruð núna gagnkvæmir vinir og getið skipst á stöðuuppfærslum, myndum og tölvupósti án hindrana." + +#: src/Navigation/Notifications/Repository/Notify.php:444 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:457 +#, php-format +msgid "" +"'%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." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:459 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:461 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:471 +msgid "registration request" +msgstr "beiðni um skráningu" + +#: src/Navigation/Notifications/Repository/Notify.php:473 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:474 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 +#, php-format +msgid "" +"Full Name:\t%s\n" +"Site Location:\t%s\n" +"Login Name:\t%s (%s)" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:485 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Farðu á %s til að samþykkja eða hunsa þessa beiðni." + +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:780 +#, php-format +msgid "%s %s tagged you" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:783 +#, php-format +msgid "%s %s shared a new post" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "" + +#: src/Object/EMail/ItemCCEMail.php:42 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Skilaboðið sendi %s, notandi á Friendica samfélagsnetinu." + +#: src/Object/EMail/ItemCCEMail.php:44 +#, php-format +msgid "You may visit them online at %s" +msgstr "Þú getur heimsótt þau á netinu á %s" + +#: src/Object/EMail/ItemCCEMail.php:45 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Hafðu samband við sendanda með því að svara á þessari færslu ef þú villt ekki fá þessi skilaboð." + +#: src/Object/EMail/ItemCCEMail.php:49 +#, php-format +msgid "%s posted an update." +msgstr "%s hefur sent uppfærslu." + +#: src/Object/Post.php:138 +msgid "Private Message" +msgstr "Einkaskilaboð" + +#: src/Object/Post.php:142 +msgid "Public Message" +msgstr "" + +#: src/Object/Post.php:146 +msgid "Unlisted Message" +msgstr "" + +#: src/Object/Post.php:181 msgid "This entry was edited" msgstr "Þessari færslu var breytt" -#: src/Object/Post.php:187 -msgid "Remove from your stream" +#: src/Object/Post.php:209 +msgid "Connector Message" msgstr "" -#: src/Object/Post.php:200 -msgid "save to folder" -msgstr "vista í möppu" +#: src/Object/Post.php:225 src/Object/Post.php:227 +msgid "Edit" +msgstr "Breyta" -#: src/Object/Post.php:243 -msgid "I will attend" -msgstr "Ég mæti" +#: src/Object/Post.php:261 +msgid "Delete globally" +msgstr "" -#: src/Object/Post.php:243 -msgid "I will not attend" -msgstr "Ég mæti ekki" +#: src/Object/Post.php:261 +msgid "Remove locally" +msgstr "" -#: src/Object/Post.php:243 -msgid "I might attend" -msgstr "Ég gæti mætt" - -#: src/Object/Post.php:271 -msgid "add star" -msgstr "bæta við stjörnu" - -#: src/Object/Post.php:272 -msgid "remove star" -msgstr "eyða stjörnu" +#: src/Object/Post.php:268 +#, php-format +msgid "Block %s" +msgstr "" #: src/Object/Post.php:273 -msgid "toggle star status" -msgstr "Kveikja/slökkva á stjörnu" - -#: src/Object/Post.php:276 -msgid "starred" -msgstr "stjörnumerkt" - -#: src/Object/Post.php:282 -msgid "ignore thread" -msgstr "Hunsa þráð" - -#: src/Object/Post.php:283 -msgid "unignore thread" +#, php-format +msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:284 -msgid "toggle ignore status" +#: src/Object/Post.php:278 +#, php-format +msgid "Collapse %s" +msgstr "" + +#: src/Object/Post.php:282 +msgid "Report post" msgstr "" #: src/Object/Post.php:293 -msgid "add tag" -msgstr "bæta við merki" +msgid "Save to folder" +msgstr "" -#: src/Object/Post.php:304 -msgid "like" -msgstr "líkar" +#: src/Object/Post.php:333 +msgid "I will attend" +msgstr "Ég mæti" -#: src/Object/Post.php:305 -msgid "dislike" -msgstr "mislíkar" +#: src/Object/Post.php:333 +msgid "I will not attend" +msgstr "Ég mæti ekki" -#: src/Object/Post.php:308 -msgid "Share this" -msgstr "Deila þessu" +#: src/Object/Post.php:333 +msgid "I might attend" +msgstr "Ég gæti mætt" -#: src/Object/Post.php:308 -msgid "share" -msgstr "deila" +#: src/Object/Post.php:363 +msgid "Ignore thread" +msgstr "" -#: src/Object/Post.php:373 +#: src/Object/Post.php:364 +msgid "Unignore thread" +msgstr "" + +#: src/Object/Post.php:365 +msgid "Toggle ignore status" +msgstr "" + +#: src/Object/Post.php:375 +msgid "Add star" +msgstr "" + +#: src/Object/Post.php:376 +msgid "Remove star" +msgstr "" + +#: src/Object/Post.php:377 +msgid "Toggle star status" +msgstr "" + +#: src/Object/Post.php:388 +msgid "Pin" +msgstr "" + +#: src/Object/Post.php:389 +msgid "Unpin" +msgstr "" + +#: src/Object/Post.php:390 +msgid "Toggle pin status" +msgstr "" + +#: src/Object/Post.php:393 +msgid "Pinned" +msgstr "" + +#: src/Object/Post.php:398 +msgid "Add tag" +msgstr "" + +#: src/Object/Post.php:411 +msgid "Quote share this" +msgstr "" + +#: src/Object/Post.php:411 +msgid "Quote Share" +msgstr "" + +#: src/Object/Post.php:414 +msgid "Reshare this" +msgstr "" + +#: src/Object/Post.php:414 +msgid "Reshare" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Cancel your Reshare" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Unshare" +msgstr "" + +#: src/Object/Post.php:466 +#, php-format +msgid "%s (Received %s)" +msgstr "" + +#: src/Object/Post.php:472 +msgid "Comment this item on your system" +msgstr "" + +#: src/Object/Post.php:472 +msgid "Remote comment" +msgstr "" + +#: src/Object/Post.php:494 +msgid "Share via ..." +msgstr "" + +#: src/Object/Post.php:494 +msgid "Share via external services" +msgstr "" + +#: src/Object/Post.php:523 msgid "to" msgstr "við" -#: src/Object/Post.php:374 +#: src/Object/Post.php:524 msgid "via" msgstr "gegnum" -#: src/Object/Post.php:375 +#: src/Object/Post.php:525 msgid "Wall-to-Wall" msgstr "vegg við vegg" -#: src/Object/Post.php:376 +#: src/Object/Post.php:526 msgid "via Wall-To-Wall:" msgstr "gegnum vegg við vegg" -#: src/Object/Post.php:435 +#: src/Object/Post.php:573 +#, php-format +msgid "Reply to %s" +msgstr "" + +#: src/Object/Post.php:576 +msgid "More" +msgstr "" + +#: src/Object/Post.php:595 +msgid "Notifier task is pending" +msgstr "" + +#: src/Object/Post.php:596 +msgid "Delivery to remote servers is pending" +msgstr "" + +#: src/Object/Post.php:597 +msgid "Delivery to remote servers is underway" +msgstr "" + +#: src/Object/Post.php:598 +msgid "Delivery to remote servers is mostly done" +msgstr "" + +#: src/Object/Post.php:599 +msgid "Delivery to remote servers is done" +msgstr "" + +#: src/Object/Post.php:619 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d ummæli" msgstr[1] "%d ummæli" -#: src/Object/Post.php:805 -msgid "Bold" -msgstr "Feitletrað" - -#: src/Object/Post.php:806 -msgid "Italic" -msgstr "Skáletrað" - -#: src/Object/Post.php:807 -msgid "Underline" -msgstr "Undirstrikað" - -#: src/Object/Post.php:808 -msgid "Quote" -msgstr "Gæsalappir" - -#: src/Object/Post.php:809 -msgid "Code" -msgstr "Kóði" - -#: src/Object/Post.php:810 -msgid "Image" -msgstr "Mynd" - -#: src/Object/Post.php:811 -msgid "Link" -msgstr "Tengill" - -#: src/Object/Post.php:812 -msgid "Video" -msgstr "Myndband" - -#: src/App.php:524 -msgid "Delete this item?" -msgstr "Eyða þessu atriði?" - -#: src/App.php:526 -msgid "show fewer" -msgstr "birta minna" - -#: src/App.php:1114 -msgid "No system theme config value set." +#: src/Object/Post.php:620 +msgid "Show more" msgstr "" -#: index.php:464 -msgid "toggle mobile" +#: src/Object/Post.php:621 +msgid "Show fewer" msgstr "" -#: update.php:193 +#: src/Object/Post.php:657 #, php-format -msgid "%s: Updating author-id and owner-id in item and thread table. " +msgid "Reshared by: %s" msgstr "" -#: boot.php:796 +#: src/Object/Post.php:662 #, php-format -msgid "Update %s failed. See error logs." -msgstr "Uppfærsla á %s mistókst. Skoðaðu villuannál." +msgid "Viewed by: %s" +msgstr "" + +#: src/Object/Post.php:667 +#, php-format +msgid "Liked by: %s" +msgstr "" + +#: src/Object/Post.php:672 +#, php-format +msgid "Disliked by: %s" +msgstr "" + +#: src/Object/Post.php:677 +#, php-format +msgid "Attended by: %s" +msgstr "" + +#: src/Object/Post.php:682 +#, php-format +msgid "Maybe attended by: %s" +msgstr "" + +#: src/Object/Post.php:687 +#, php-format +msgid "Not attended by: %s" +msgstr "" + +#: src/Object/Post.php:692 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "" + +#: src/Protocol/OStatus.php:1390 +#, php-format +msgid "%s is now following %s." +msgstr "%s fylgist núna með %s." + +#: src/Protocol/OStatus.php:1391 +msgid "following" +msgstr "fylgist með" + +#: src/Protocol/OStatus.php:1394 +#, php-format +msgid "%s stopped following %s." +msgstr "" + +#: src/Protocol/OStatus.php:1395 +msgid "stopped following" +msgstr "hætt að fylgja" + +#: src/Render/FriendicaSmartyEngine.php:56 +#, php-format +msgid "The folder %s must be writable by webserver." +msgstr "" + +#: src/Security/Authentication.php:227 +msgid "Login failed." +msgstr "Innskráning mistókst." + +#: src/Security/Authentication.php:272 +msgid "Login failed. Please check your credentials." +msgstr "" + +#: src/Security/Authentication.php:391 +#, php-format +msgid "Welcome %s" +msgstr "" + +#: src/Security/Authentication.php:392 +msgid "Please upload a profile photo." +msgstr "Gerðu svo vel að hlaða inn forsíðumynd." + +#: src/Util/EMailer/MailBuilder.php:260 +msgid "Friendica Notification" +msgstr "" + +#: src/Util/EMailer/NotifyMailBuilder.php:78 +#: src/Util/EMailer/SystemMailBuilder.php:54 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "" + +#: src/Util/EMailer/NotifyMailBuilder.php:80 +#: src/Util/EMailer/SystemMailBuilder.php:56 +#, php-format +msgid "%s Administrator" +msgstr "" + +#: 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 "" + +#: src/Util/Temporal.php:172 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: src/Util/Temporal.php:280 +#, php-format +msgid "Time zone: %s Change in Settings" +msgstr "" + +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +msgid "never" +msgstr "" + +#: src/Util/Temporal.php:343 +msgid "less than a second ago" +msgstr "" + +#: src/Util/Temporal.php:352 +msgid "year" +msgstr "" + +#: src/Util/Temporal.php:352 +msgid "years" +msgstr "" + +#: src/Util/Temporal.php:353 +msgid "months" +msgstr "" + +#: src/Util/Temporal.php:354 +msgid "weeks" +msgstr "" + +#: src/Util/Temporal.php:355 +msgid "days" +msgstr "" + +#: src/Util/Temporal.php:356 +msgid "hour" +msgstr "" + +#: src/Util/Temporal.php:356 +msgid "hours" +msgstr "" + +#: src/Util/Temporal.php:357 +msgid "minute" +msgstr "" + +#: src/Util/Temporal.php:357 +msgid "minutes" +msgstr "" + +#: src/Util/Temporal.php:358 +msgid "second" +msgstr "" + +#: src/Util/Temporal.php:358 +msgid "seconds" +msgstr "" + +#: src/Util/Temporal.php:367 +#, php-format +msgid "in %1$d %2$s" +msgstr "" + +#: src/Util/Temporal.php:370 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: src/Worker/PushSubscription.php:110 +msgid "Notification from Friendica" +msgstr "" + +#: src/Worker/PushSubscription.php:111 +msgid "Empty Post" +msgstr "" + +#: view/theme/duepuntozero/config.php:68 +msgid "default" +msgstr "" + +#: view/theme/duepuntozero/config.php:69 +msgid "greenzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:70 +msgid "purplezero" +msgstr "" + +#: view/theme/duepuntozero/config.php:71 +msgid "easterbunny" +msgstr "" + +#: view/theme/duepuntozero/config.php:72 +msgid "darkzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:73 +msgid "comix" +msgstr "" + +#: view/theme/duepuntozero/config.php:74 +msgid "slackr" +msgstr "" + +#: view/theme/duepuntozero/config.php:87 +msgid "Variations" +msgstr "" + +#: view/theme/frio/config.php:153 +msgid "Light (Accented)" +msgstr "" + +#: view/theme/frio/config.php:154 +msgid "Dark (Accented)" +msgstr "" + +#: view/theme/frio/config.php:155 +msgid "Black (Accented)" +msgstr "" + +#: view/theme/frio/config.php:167 +msgid "Note" +msgstr "" + +#: view/theme/frio/config.php:167 +msgid "Check image permissions if all users are allowed to see the image" +msgstr "" + +#: view/theme/frio/config.php:173 +msgid "Custom" +msgstr "" + +#: view/theme/frio/config.php:174 +msgid "Legacy" +msgstr "" + +#: view/theme/frio/config.php:175 +msgid "Accented" +msgstr "" + +#: view/theme/frio/config.php:176 +msgid "Select color scheme" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Select scheme accent" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Blue" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Red" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Purple" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Green" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Pink" +msgstr "" + +#: view/theme/frio/config.php:178 +msgid "Copy or paste schemestring" +msgstr "" + +#: view/theme/frio/config.php:178 +msgid "" +"You can copy this string to share your theme with others. Pasting here " +"applies the schemestring" +msgstr "" + +#: view/theme/frio/config.php:179 +msgid "Navigation bar background color" +msgstr "" + +#: view/theme/frio/config.php:180 +msgid "Navigation bar icon color " +msgstr "" + +#: view/theme/frio/config.php:181 +msgid "Link color" +msgstr "" + +#: view/theme/frio/config.php:182 +msgid "Set the background color" +msgstr "" + +#: view/theme/frio/config.php:183 +msgid "Content background opacity" +msgstr "" + +#: view/theme/frio/config.php:184 +msgid "Set the background image" +msgstr "" + +#: view/theme/frio/config.php:185 +msgid "Background image style" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "" + +#: view/theme/frio/config.php:192 +msgid "Login page background image" +msgstr "" + +#: view/theme/frio/config.php:196 +msgid "Login page background color" +msgstr "" + +#: view/theme/frio/config.php:196 +msgid "Leave background image and color empty for theme defaults" +msgstr "" + +#: view/theme/frio/php/Image.php:39 +msgid "Top Banner" +msgstr "" + +#: view/theme/frio/php/Image.php:39 +msgid "" +"Resize image to the width of the screen and show background color below on " +"long pages." +msgstr "" + +#: view/theme/frio/php/Image.php:40 +msgid "Full screen" +msgstr "" + +#: view/theme/frio/php/Image.php:40 +msgid "" +"Resize image to fill entire screen, clipping either the right or the bottom." +msgstr "" + +#: view/theme/frio/php/Image.php:41 +msgid "Single row mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:41 +msgid "" +"Resize image to repeat it on a single row, either vertical or horizontal." +msgstr "" + +#: view/theme/frio/php/Image.php:42 +msgid "Mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:42 +msgid "Repeat image to fill the screen." +msgstr "" + +#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +msgid "Skip to main content" +msgstr "" + +#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +msgid "Back to top" +msgstr "" + +#: view/theme/frio/theme.php:211 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:214 +msgid "Visitor" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Alignment" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Left" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Center" +msgstr "" + +#: view/theme/quattro/config.php:90 +msgid "Color scheme" +msgstr "" + +#: view/theme/quattro/config.php:91 +msgid "Posts font size" +msgstr "" + +#: view/theme/quattro/config.php:92 +msgid "Textareas font size" +msgstr "" + +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" +msgstr "" + +#: view/theme/vier/config.php:131 +msgid "don't show" +msgstr "" + +#: view/theme/vier/config.php:131 +msgid "show" +msgstr "" + +#: view/theme/vier/config.php:137 +msgid "Set style" +msgstr "" + +#: view/theme/vier/config.php:138 +msgid "Community Pages" +msgstr "" + +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +msgid "Community Profiles" +msgstr "" + +#: view/theme/vier/config.php:140 +msgid "Help or @NewHere ?" +msgstr "" + +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +msgid "Connect Services" +msgstr "" + +#: view/theme/vier/config.php:142 +msgid "Find Friends" +msgstr "" + +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +msgid "Last users" +msgstr "" + +#: view/theme/vier/theme.php:234 +msgid "Quick Start" +msgstr "" diff --git a/view/lang/is/strings.php b/view/lang/is/strings.php index f6fc5c252..a95719684 100644 --- a/view/lang/is/strings.php +++ b/view/lang/is/strings.php @@ -5,139 +5,147 @@ function string_plural_select_is($n){ $n = intval($n); return intval($n % 10 != 1 || $n % 100 == 11); }} -$a->strings['Friendica Notification'] = 'Friendica tilkynning'; -$a->strings['Thank You,'] = 'Takk fyrir,'; -$a->strings['%s Administrator'] = 'Kerfisstjóri %s'; -$a->strings['%1$s, %2$s Administrator'] = '%1$s, kerfisstjóri %2$s'; -$a->strings['[Friendica:Notify] New mail received at %s'] = '[Friendica:Notify] Nýr póstur móttekinn %s'; -$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s sendi þér ný einkaskilaboð %2$s.'; -$a->strings['a private message'] = 'einkaskilaboð'; -$a->strings['%1$s sent you %2$s.'] = '%1$s sendi þér %2$s.'; -$a->strings['Please visit %s to view and/or reply to your private messages.'] = 'Farðu á %s til að skoða og/eða svara einkaskilaboðunum þínum.'; -$a->strings['%1$s commented on [url=%2$s]a %3$s[/url]'] = '%1$s setti inn athugasemd um [url=%2$s]a %3$s[/url]'; -$a->strings['%1$s commented on [url=%2$s]%3$s\'s %4$s[/url]'] = '%1$s setti inn athugasemd um [url=%2$s]frá %3$s %4$s[/url]'; -$a->strings['%1$s commented on [url=%2$s]your %3$s[/url]'] = '%1$s setti inn athugasemd um [url=%2$s]frá þér %3$s[/url]'; -$a->strings['[Friendica:Notify] Comment to conversation #%1$d by %2$s'] = '[Friendica:Notify] Athugasemd við samtal #%1$d eftir %2$s'; -$a->strings['%s commented on an item/conversation you have been following.'] = '%s skrifaði athugasemd á færslu/samtal sem þú ert að fylgja.'; -$a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Farðu á %s til að skoða og/eða svara samtali.'; -$a->strings['[Friendica:Notify] %s posted to your profile wall'] = '[Friendica:Notify] %s skrifaði á vegginn þinn'; -$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s skrifaði á vegginn þinn %2$s'; -$a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s skrifaði á [url=%2$s]vegginn þinn[/url]'; -$a->strings['[Friendica:Notify] %s tagged you'] = '[Friendica:Notify] %s merkti þig'; -$a->strings['%1$s tagged you at %2$s'] = '%1$s merkti þig %2$s'; -$a->strings['%1$s [url=%2$s]tagged you[/url].'] = '%1$s [url=%2$s]merkti þig[/url].'; -$a->strings['[Friendica:Notify] %s shared a new post'] = '[Friendica:Notify] %s deildi nýrri færslu'; -$a->strings['%1$s shared a new post at %2$s'] = '%1$s deildi nýrri færslu %2$s'; -$a->strings['%1$s [url=%2$s]shared a post[/url].'] = '%1$s [url=%2$s]deildi færslu[/url].'; -$a->strings['[Friendica:Notify] %1$s poked you'] = '[Friendica:Notify] %1$s potaði í þig'; -$a->strings['%1$s poked you at %2$s'] = '%1$s potaði í þig %2$s'; -$a->strings['%1$s [url=%2$s]poked you[/url].'] = '%1$s [url=%2$s]potaði í þig[/url].'; -$a->strings['[Friendica:Notify] %s tagged your post'] = '[Friendica:Notify] %s merkti færslu frá þér'; -$a->strings['%1$s tagged your post at %2$s'] = '%1$s merkti færslu frá þér %2$s'; -$a->strings['%1$s tagged [url=%2$s]your post[/url]'] = '%1$s merkti [url=%2$s]færslu frá þér[/url]'; -$a->strings['[Friendica:Notify] Introduction received'] = '[Friendica:Notify] Tók á móti kynningu'; -$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Þú tókst við kynningu frá \'%1$s\', %2$s'; -$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Þú tókst við [url=%1$s]kynningu[/url] frá %2$s.'; -$a->strings['You may visit their profile at %s'] = 'Þú getur heimsótt síðuna þeirra á %s'; -$a->strings['Please visit %s to approve or reject the introduction.'] = 'Farðu á %s til að samþykkja eða hunsa þessa kynningu.'; -$a->strings['[Friendica:Notify] A new person is sharing with you'] = '[Friendica:Notify] Nýr aðili er að deila með þér'; -$a->strings['%1$s is sharing with you at %2$s'] = '%1$s er að deila með þér, %2$s'; -$a->strings['[Friendica:Notify] You have a new follower'] = '[Friendica:Notify] Þú ert með nýjan fylgjanda'; -$a->strings['You have a new follower at %2$s : %1$s'] = 'Þú hefur nýjan fylgjanda á %2$s : %1$s'; -$a->strings['[Friendica:Notify] Friend suggestion received'] = '[Friendica:Notify] Tók á móti uppástungu um vin'; -$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = 'Þér hefur borist uppástunga um vin frá \'%1$s\' kl. %2$s'; -$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = 'Þér hefur borist [url=%1$s]uppástunga um vin[/url] fyrir %2$s frá %3$s.'; -$a->strings['Name:'] = 'Nafn:'; -$a->strings['Photo:'] = 'Mynd:'; -$a->strings['Please visit %s to approve or reject the suggestion.'] = 'Farðu á %s til að samþykkja eða hunsa þessa uppástungu.'; -$a->strings['[Friendica:Notify] Connection accepted'] = '[Friendica:Notify] Tenging samþykkt'; -$a->strings['\'%1$s\' has accepted your connection request at %2$s'] = '\'%1$s\' samþykkti tengibeiðni þína %2$s'; -$a->strings['%2$s has accepted your [url=%1$s]connection request[/url].'] = '%2$s samþykkti [url=%1$s]tengibeiðni þína[/url].'; -$a->strings['You are now mutual friends and may exchange status updates, photos, and email without restriction.'] = 'Þið eruð núna gagnkvæmir vinir og getið skipst á stöðuuppfærslum, myndum og tölvupósti án hindrana.'; -$a->strings['registration request'] = 'beiðni um skráningu'; -$a->strings['Please visit %s to approve or reject the request.'] = 'Farðu á %s til að samþykkja eða hunsa þessa beiðni.'; -$a->strings['Welcome '] = 'Velkomin(n)'; -$a->strings['Please upload a profile photo.'] = 'Gerðu svo vel að hlaða inn forsíðumynd.'; -$a->strings['Welcome back '] = 'Velkomin(n) aftur'; -$a->strings['Cannot locate DNS info for database server \'%s\''] = 'Get ekki flett upp DNS upplýsingum fyrir gagnagrunnsþjón \'%s\''; -$a->strings['Profile Photos'] = 'Forsíðumyndir'; -$a->strings['event'] = 'atburður'; -$a->strings['status'] = 'staða'; -$a->strings['photo'] = 'mynd'; -$a->strings['%1$s likes %2$s\'s %3$s'] = '%1$s líkar við %3$s hjá %2$s '; -$a->strings['%1$s doesn\'t like %2$s\'s %3$s'] = '%1$s líkar ekki við %3$s hjá %2$s '; -$a->strings['%1$s attends %2$s\'s %3$s'] = '%1$s mætir á %3$s hjá %2$s'; -$a->strings['%1$s doesn\'t attend %2$s\'s %3$s'] = '%1$s mætir ekki á %3$s hjá %2$s'; -$a->strings['%1$s attends maybe %2$s\'s %3$s'] = '%1$s mætir kannski á %3$s hjá %2$s'; -$a->strings['%1$s is now friends with %2$s'] = 'Núna er %1$s vinur %2$s'; -$a->strings['%1$s poked %2$s'] = '%1$s potaði í %2$s'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s merkti %2$s\'s %3$s með %4$s'; -$a->strings['post/item'] = 'færslur/atriði'; -$a->strings['%1$s marked %2$s\'s %3$s as favorite'] = '%1$s merkti %3$s hjá %2$s sem eftirlæti'; -$a->strings['Likes'] = 'Líkar'; -$a->strings['Dislikes'] = 'Mislíkar'; -$a->strings['Attending'] = [ - 0 => 'Mætir', - 1 => 'Mæta', +$a->strings['Unable to locate original post.'] = 'Ekki tókst að finna upphaflega færslu.'; +$a->strings['Empty post discarded.'] = 'Tóm færsla eytt.'; +$a->strings['Item not found.'] = 'Atriði fannst ekki.'; +$a->strings['Permission denied.'] = 'Heimild ekki veitt.'; +$a->strings['No valid account found.'] = 'Engin gildur aðgangur fannst.'; +$a->strings['Password reset request issued. Check your email.'] = 'Gefin var beiðni um breytingu á lykilorði. Opnaðu tölvupóstinn þinn.'; +$a->strings['Password reset requested at %s'] = 'Beðið var um endurstillingu lykilorðs %s'; +$a->strings['Request could not be verified. (You may have previously submitted it.) Password reset failed.'] = 'Ekki var hægt að sannreyna beiðni. (Það getur verið að þú hafir þegar verið búin/n að senda hana.) Endurstilling á lykilorði tókst ekki.'; +$a->strings['Forgot your Password?'] = 'Gleymdir þú lykilorði þínu?'; +$a->strings['Enter your email address and submit to have your password reset. Then check your email for further instructions.'] = 'Sláðu inn tölvupóstfangið þitt til að endurstilla aðgangsorðið og fá leiðbeiningar sendar með tölvupósti.'; +$a->strings['Nickname or Email: '] = 'Gælunafn eða tölvupóstfang: '; +$a->strings['Reset'] = 'Endurstilla'; +$a->strings['Password Reset'] = 'Endurstilling aðgangsorðs'; +$a->strings['Your password has been reset as requested.'] = 'Aðgangsorðið þitt hefur verið endurstilt.'; +$a->strings['Your new password is'] = 'Nýja aðgangsorð þitt er '; +$a->strings['Save or copy your new password - and then'] = 'Vistaðu eða afritaðu nýja aðgangsorðið - og'; +$a->strings['click here to login'] = 'smelltu síðan hér til að skrá þig inn'; +$a->strings['Your password may be changed from the Settings page after successful login.'] = 'Þú getur breytt aðgangsorðinu þínu á Stillingar síðunni eftir að þú hefur skráð þig inn.'; +$a->strings['Your password has been changed at %s'] = 'Aðgangsorðinu þínu var breytt í %s'; +$a->strings['New Message'] = 'Ný skilaboð'; +$a->strings['No recipient selected.'] = 'Engir viðtakendur valdir.'; +$a->strings['Unable to locate contact information.'] = 'Ekki tókst að staðsetja tengiliðs upplýsingar.'; +$a->strings['Message could not be sent.'] = 'Ekki tókst að senda skilaboð.'; +$a->strings['Message collection failure.'] = 'Ekki tókst að sækja skilaboð.'; +$a->strings['Discard'] = 'Henda'; +$a->strings['Messages'] = 'Skilaboð'; +$a->strings['Please enter a link URL:'] = 'Sláðu inn slóð:'; +$a->strings['Send Private Message'] = 'Senda einkaskilaboð'; +$a->strings['To:'] = 'Til:'; +$a->strings['Subject:'] = 'Efni:'; +$a->strings['Your message:'] = 'Skilaboðin:'; +$a->strings['Upload photo'] = 'Hlaða upp mynd'; +$a->strings['Insert web link'] = 'Setja inn vefslóð'; +$a->strings['Please wait'] = 'Hinkraðu aðeins'; +$a->strings['Submit'] = 'Senda inn'; +$a->strings['No messages.'] = 'Engin skilaboð.'; +$a->strings['Message not available.'] = 'Ekki næst í skilaboð.'; +$a->strings['Delete message'] = 'Eyða skilaboðum'; +$a->strings['D, d M Y - g:i A'] = 'D, d. M Y - g:i A'; +$a->strings['Delete conversation'] = 'Eyða samtali'; +$a->strings['Send Reply'] = 'Senda svar'; +$a->strings['Unknown sender - %s'] = 'Óþekktur sendandi - %s'; +$a->strings['You and %s'] = 'Þú og %s'; +$a->strings['%s and You'] = '%s og þú'; +$a->strings['%d message'] = [ + 0 => '%d skilaboð', + 1 => '%d skilaboð', ]; -$a->strings['Not attending'] = 'Mætir ekki'; -$a->strings['Might attend'] = 'Gæti mætt'; +$a->strings['Personal Notes'] = 'Persónulegar glósur'; +$a->strings['Save'] = 'Vista'; +$a->strings['Photo Albums'] = 'Myndabækur'; +$a->strings['Recent Photos'] = 'Nýlegar myndir'; +$a->strings['Upload New Photos'] = 'Hlaða upp nýjum myndum'; +$a->strings['everybody'] = 'allir'; +$a->strings['Contact information unavailable'] = 'Tengiliða upplýsingar ekki til'; +$a->strings['Album not found.'] = 'Myndabók finnst ekki.'; +$a->strings['a photo'] = 'mynd'; +$a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s var merkt í %2$s af %3$s'; +$a->strings['Public access denied.'] = 'Opinber aðgangur ekki veittur.'; +$a->strings['No photos selected'] = 'Engar myndir valdar'; +$a->strings['Upload Photos'] = 'Hlaða upp myndum'; +$a->strings['New album name: '] = 'Nýtt nafn myndbókar:'; +$a->strings['Do not show a status post for this upload'] = 'Ekki sýna færslu fyrir þessari upphölun'; +$a->strings['Permissions'] = 'Aðgangsheimildir'; +$a->strings['Delete Album'] = 'Fjarlægja myndabók'; +$a->strings['Cancel'] = 'Hætta við'; +$a->strings['Edit Album'] = 'Breyta myndbók'; +$a->strings['Show Newest First'] = 'Birta nýjast fyrst'; +$a->strings['Show Oldest First'] = 'Birta elsta fyrst'; +$a->strings['View Photo'] = 'Skoða mynd'; +$a->strings['Permission denied. Access to this item may be restricted.'] = 'Aðgangi hafnað. Aðgangur að þessum hlut kann að vera skertur.'; +$a->strings['Photo not available'] = 'Mynd ekki til'; +$a->strings['Delete Photo'] = 'Fjarlægja mynd'; +$a->strings['View photo'] = 'Birta mynd'; +$a->strings['Edit photo'] = 'Breyta mynd'; +$a->strings['Use as profile photo'] = 'Nota sem forsíðu mynd'; +$a->strings['View Full Size'] = 'Skoða í fullri stærð'; +$a->strings['Tags: '] = 'Merki:'; +$a->strings['New album name'] = 'Nýtt nafn myndbókar'; +$a->strings['Caption'] = 'Yfirskrift'; +$a->strings['Add a Tag'] = 'Bæta við merki'; +$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Til dæmis: @bob, @Barbara_Jensen, @jim@example.com, #Reykjavík #tjalda'; +$a->strings['Do not rotate'] = 'Ekki snúa'; +$a->strings['Rotate CW (right)'] = 'Snúa réttsælis (hægri)'; +$a->strings['Rotate CCW (left)'] = 'Snúa rangsælis (vinstri)'; +$a->strings['This is you'] = 'Þetta ert þú'; +$a->strings['Comment'] = 'Athugasemd'; +$a->strings['Preview'] = 'Forskoðun'; $a->strings['Select'] = 'Velja'; $a->strings['Delete'] = 'Eyða'; -$a->strings['View %s\'s profile @ %s'] = 'Birta forsíðu %s hjá %s'; -$a->strings['Categories:'] = 'Flokkar:'; -$a->strings['Filed under:'] = 'Skráð undir:'; -$a->strings['%s from %s'] = '%s til %s'; -$a->strings['View in context'] = 'Birta í samhengi'; -$a->strings['Please wait'] = 'Hinkraðu aðeins'; -$a->strings['remove'] = 'fjarlægja'; -$a->strings['Delete Selected Items'] = 'Eyða völdum færslum'; -$a->strings['Follow Thread'] = 'Fylgja þræði'; -$a->strings['View Status'] = 'Skoða stöðu'; -$a->strings['View Profile'] = 'Skoða forsíðu'; -$a->strings['View Photos'] = 'Skoða myndir'; -$a->strings['Network Posts'] = 'Færslur á neti'; -$a->strings['View Contact'] = 'Skoða tengilið'; -$a->strings['Send PM'] = 'Senda einkaboð'; -$a->strings['Poke'] = 'Pota'; -$a->strings['Connect/Follow'] = 'Tengjast/fylgja'; -$a->strings['%s likes this.'] = '%s líkar þetta.'; -$a->strings['%s doesn\'t like this.'] = '%s mislíkar þetta.'; -$a->strings['%s attends.'] = '%s mætir.'; -$a->strings['%s doesn\'t attend.'] = '%s mætir ekki.'; -$a->strings['%s attends maybe.'] = '%s mætir kannski.'; +$a->strings['I like this (toggle)'] = 'Mér líkar þetta (kveikja/slökkva)'; +$a->strings['I don\'t like this (toggle)'] = 'Mér líkar þetta ekki (kveikja/slökkva)'; +$a->strings['Map'] = 'Landakort'; +$a->strings['Delete this item?'] = 'Eyða þessu atriði?'; +$a->strings['Page not found.'] = 'Síða fannst ekki.'; +$a->strings['You must be logged in to use addons. '] = 'Þú verður að vera skráður inn til að geta notað viðbætur. '; +$a->strings['User not found'] = 'Notandi fannst ekki'; +$a->strings['Enter new password: '] = 'Settu inn nýtt lykilorð: '; +$a->strings['Password update failed. Please try again.'] = 'Uppfærsla á aðgangsorði tókst ekki. Reyndu aftur.'; +$a->strings['Password changed.'] = 'Aðgangsorði breytt.'; +$a->strings['newer'] = 'nýrri'; +$a->strings['older'] = 'eldri'; +$a->strings['Frequently'] = 'Oft'; +$a->strings['Hourly'] = 'Á klukkustundar fresti'; +$a->strings['Twice daily'] = 'Tvisvar á dag'; +$a->strings['Daily'] = 'Daglega'; +$a->strings['Weekly'] = 'Vikulega'; +$a->strings['Monthly'] = 'Mánaðarlega'; +$a->strings['OStatus'] = 'OStatus'; +$a->strings['RSS/Atom'] = 'RSS / Atom'; +$a->strings['Email'] = 'Tölvupóstur'; +$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['Diaspora Connector'] = 'Diaspora tenging'; +$a->strings['GNU Social Connector'] = 'GNU Social tenging'; +$a->strings['pnut'] = 'pnut'; $a->strings['and'] = 'og'; $a->strings['and %d other people'] = 'og %d öðrum'; -$a->strings['%2$d people like this'] = '%2$d fólki líkar þetta'; -$a->strings['%s like this.'] = '%s líkar þetta.'; -$a->strings['%2$d people don\'t like this'] = '%2$d fólki líkar þetta ekki'; -$a->strings['%s don\'t like this.'] = '%s líkar þetta ekki.'; -$a->strings['%2$d people attend'] = '%2$d fólki mæta'; -$a->strings['%s attend.'] = '%s mætir.'; -$a->strings['%2$d people don\'t attend'] = '%2$d fólki mæta ekki'; -$a->strings['%s don\'t attend.'] = '%s mætir ekki.'; -$a->strings['%2$d people attend maybe'] = '%2$d fólki mæta kannski'; -$a->strings['%s attend maybe.'] = '%s mætir kannski.'; $a->strings['Visible to everybody'] = 'Sjáanlegt öllum'; -$a->strings['Please enter a link URL:'] = 'Sláðu inn slóð:'; -$a->strings['Please enter a video link/URL:'] = 'Settu inn slóð á myndskeið:'; -$a->strings['Please enter an audio link/URL:'] = 'Settu inn slóð á hljóðskrá:'; $a->strings['Tag term:'] = 'Merka með:'; $a->strings['Save to Folder:'] = 'Vista í möppu:'; $a->strings['Where are you right now?'] = 'Hvar ert þú núna?'; $a->strings['Delete item(s)?'] = 'Eyða atriði/atriðum?'; $a->strings['New Post'] = 'Ný færsla'; $a->strings['Share'] = 'Deila'; -$a->strings['Upload photo'] = 'Hlaða upp mynd'; $a->strings['upload photo'] = 'Hlaða upp mynd'; $a->strings['Attach file'] = 'Bæta við skrá'; $a->strings['attach file'] = 'Hengja skrá við'; -$a->strings['Insert web link'] = 'Setja inn vefslóð'; -$a->strings['web link'] = 'vefslóð'; -$a->strings['Insert video link'] = 'Setja inn slóð á myndskeið'; -$a->strings['video link'] = 'slóð á myndskeið'; -$a->strings['Insert audio link'] = 'Setja inn slóð á hljóðskrá'; -$a->strings['audio link'] = 'slóð á hljóðskrá'; +$a->strings['Bold'] = 'Feitletrað'; +$a->strings['Italic'] = 'Skáletrað'; +$a->strings['Underline'] = 'Undirstrikað'; +$a->strings['Quote'] = 'Gæsalappir'; +$a->strings['Code'] = 'Kóði'; +$a->strings['Image'] = 'Mynd'; +$a->strings['Link'] = 'Tengill'; $a->strings['Set your location'] = 'Veldu staðsetningu þína'; $a->strings['set location'] = 'stilla staðsetningu'; $a->strings['Clear browser location'] = 'Hreinsa staðsetningu í vafra'; @@ -145,69 +153,171 @@ $a->strings['clear location'] = 'hreinsa staðsetningu'; $a->strings['Set title'] = 'Setja titil'; $a->strings['Categories (comma-separated list)'] = 'Flokkar (listi aðskilinn með kommum)'; $a->strings['Permission settings'] = 'Stillingar aðgangsheimilda'; -$a->strings['permissions'] = 'aðgangsstýring'; $a->strings['Public post'] = 'Opinber færsla'; -$a->strings['Preview'] = 'Forskoðun'; -$a->strings['Cancel'] = 'Hætta við'; -$a->strings['Post to Groups'] = 'Senda á hópa'; -$a->strings['Post to Contacts'] = 'Senda á tengiliði'; -$a->strings['Private post'] = 'Einkafærsla'; $a->strings['Message'] = 'Skilaboð'; $a->strings['Browser'] = 'Vafri'; -$a->strings['View all'] = 'Skoða allt'; -$a->strings['Like'] = [ - 0 => 'Líkar', - 1 => 'Líkar', -]; -$a->strings['Dislike'] = [ - 0 => 'Mislíkar', - 1 => 'Mislíkar', -]; -$a->strings['Not Attending'] = [ - 0 => 'Mæti ekki', - 1 => 'Mæta ekki', -]; -$a->strings['Undecided'] = [ - 0 => 'Óviss', - 1 => 'Óvissir', -]; -$a->strings['Item not found.'] = 'Atriði fannst ekki.'; -$a->strings['Do you really want to delete this item?'] = 'Viltu í alvörunni eyða þessu atriði?'; -$a->strings['Yes'] = 'Já'; -$a->strings['Permission denied.'] = 'Heimild ekki veitt.'; -$a->strings['Archives'] = 'Safnskrár'; +$a->strings['remove'] = 'fjarlægja'; +$a->strings['Delete Selected Items'] = 'Eyða völdum færslum'; +$a->strings['View %s\'s profile @ %s'] = 'Birta forsíðu %s hjá %s'; +$a->strings['Categories:'] = 'Flokkar:'; +$a->strings['Filed under:'] = 'Skráð undir:'; +$a->strings['%s from %s'] = '%s til %s'; +$a->strings['View in context'] = 'Birta í samhengi'; +$a->strings['Personal'] = 'Einka'; +$a->strings['Posts that mention or involve you'] = 'Færslur sem tengjast þér'; +$a->strings['Starred'] = 'Stjörnumerkt'; +$a->strings['Favourite Posts'] = 'Uppáhalds færslur'; +$a->strings['General Features'] = 'Almennir eiginleikar'; +$a->strings['Photo Location'] = 'Staðsetning ljósmyndar'; +$a->strings['Tag Cloud'] = 'Merkjaský'; $a->strings['show more'] = 'birta meira'; -$a->strings['newer'] = 'nýrri'; -$a->strings['older'] = 'eldri'; +$a->strings['event'] = 'atburður'; +$a->strings['status'] = 'staða'; +$a->strings['photo'] = 'mynd'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s merkti %2$s\'s %3$s með %4$s'; +$a->strings['Follow Thread'] = 'Fylgja þræði'; +$a->strings['View Status'] = 'Skoða stöðu'; +$a->strings['View Profile'] = 'Skoða forsíðu'; +$a->strings['View Photos'] = 'Skoða myndir'; +$a->strings['Network Posts'] = 'Færslur á neti'; +$a->strings['View Contact'] = 'Skoða tengilið'; +$a->strings['Send PM'] = 'Senda einkaboð'; +$a->strings['Block'] = 'Útiloka'; +$a->strings['Ignore'] = 'Hunsa'; +$a->strings['Connect/Follow'] = 'Tengjast/fylgja'; +$a->strings['Nothing new here'] = 'Ekkert nýtt hér'; +$a->strings['Clear notifications'] = 'Hreinsa tilkynningar'; +$a->strings['Logout'] = 'Útskráning'; +$a->strings['End this session'] = 'Loka þessu innliti'; +$a->strings['Login'] = 'Innskráning'; +$a->strings['Sign in'] = 'Innskrá'; +$a->strings['Profile'] = 'Forsíða'; +$a->strings['Your profile page'] = 'Forsíðan þín'; +$a->strings['Photos'] = 'Myndir'; +$a->strings['Your photos'] = 'Myndirnar þínar'; +$a->strings['Calendar'] = 'Dagatal'; +$a->strings['Personal notes'] = 'Einkaglósur'; +$a->strings['Your personal notes'] = 'Einkaglósurnar þínar'; +$a->strings['Home'] = 'Heim'; +$a->strings['Home Page'] = 'Heimasíða'; +$a->strings['Register'] = 'Nýskrá'; +$a->strings['Create an account'] = 'Stofna notanda'; +$a->strings['Help'] = 'Hjálp'; +$a->strings['Help and documentation'] = 'Hjálp og leiðbeiningar'; +$a->strings['Apps'] = 'Forrit'; +$a->strings['Addon applications, utilities, games'] = 'Viðbótarforrit, nytjatól, leikir'; +$a->strings['Search'] = 'Leita'; +$a->strings['Search site content'] = 'Leita í efni á vef'; +$a->strings['Full Text'] = 'Allur textinn'; +$a->strings['Tags'] = 'Merki'; +$a->strings['Contacts'] = 'Tengiliðir'; +$a->strings['Community'] = 'Samfélag'; +$a->strings['Directory'] = 'Mappa'; +$a->strings['People directory'] = 'Nafnaskrá'; +$a->strings['Information'] = 'Upplýsingar'; +$a->strings['Information about this friendica instance'] = 'Upplýsingar um þetta tilvik Friendica'; +$a->strings['Terms of Service'] = 'Þjónustuskilmálar'; +$a->strings['Network'] = 'Samfélag'; +$a->strings['Conversations from your friends'] = 'Samtöl frá vinum'; +$a->strings['Your posts and conversations'] = 'Samtölin þín'; +$a->strings['Introductions'] = 'Kynningar'; +$a->strings['Friend Requests'] = 'Vinabeiðnir'; +$a->strings['Notifications'] = 'Tilkynningar'; +$a->strings['See all notifications'] = 'Sjá allar tilkynningar'; +$a->strings['Mark as seen'] = 'Merka sem séð'; +$a->strings['Private mail'] = 'Einka skilaboð'; +$a->strings['Inbox'] = 'Innhólf'; +$a->strings['Outbox'] = 'Úthólf'; +$a->strings['Manage other pages'] = 'Sýsla með aðrar síður'; +$a->strings['Settings'] = 'Stillingar'; +$a->strings['Account settings'] = 'Stillingar aðgangsreiknings'; +$a->strings['Manage/edit friends and contacts'] = 'Sýsla með vini og tengiliði'; +$a->strings['Admin'] = 'Stjórnandi'; +$a->strings['Site setup and configuration'] = 'Uppsetning og stillingar vefsvæðis'; +$a->strings['Navigation'] = 'Yfirsýn'; +$a->strings['Site map'] = 'Yfirlit um vefsvæði'; +$a->strings['Embedding disabled'] = 'Innfelling ekki leyfð'; +$a->strings['Embedded content'] = 'Innbyggt efni'; $a->strings['first'] = 'fremsta'; $a->strings['prev'] = 'á undan'; $a->strings['next'] = 'næsta'; $a->strings['last'] = 'síðasta'; +$a->strings['Image/photo'] = 'Mynd'; +$a->strings['Click to open/close'] = 'Smelltu til að opna/loka'; +$a->strings['$1 wrote:'] = '$1 skrifaði:'; +$a->strings['Encrypted content'] = 'Dulritað efni'; $a->strings['Loading more entries...'] = 'Hleð inn fleiri færslum...'; $a->strings['The end'] = 'Endir'; +$a->strings['Follow'] = 'Fylgja'; +$a->strings['Add New Contact'] = 'Bæta við tengilið'; +$a->strings['Enter address or web location'] = 'Settu inn slóð'; +$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Dæmi: gudmundur@simnet.is, http://simnet.is/gudmundur'; +$a->strings['Connect'] = 'Tengjast'; +$a->strings['%d invitation available'] = [ + 0 => '%d boðskort í boði', + 1 => '%d boðskort í boði', +]; +$a->strings['Find People'] = 'Finna fólk'; +$a->strings['Enter name or interest'] = 'Settu inn nafn eða áhugamál'; +$a->strings['Examples: Robert Morgenstein, Fishing'] = 'Dæmi: Jón Jónsson, Veiði'; +$a->strings['Find'] = 'Finna'; +$a->strings['Friend Suggestions'] = 'Vina uppástungur'; +$a->strings['Similar Interests'] = 'Svipuð áhugamál'; +$a->strings['Random Profile'] = 'Forsíða af handahófi'; +$a->strings['Invite Friends'] = 'Bjóða vinum aðgang'; +$a->strings['Global Directory'] = 'Alheimstengiliðaskrá'; +$a->strings['Local Directory'] = 'Staðvær mappa'; +$a->strings['All Contacts'] = 'Allir tengiliðir'; +$a->strings['Saved Folders'] = 'Vistaðar möppur'; +$a->strings['Everything'] = 'Allt'; +$a->strings['Categories'] = 'Flokkar'; +$a->strings['%d contact in common'] = [ + 0 => '%d tengiliður sameiginlegur', + 1 => '%d tengiliðir sameiginlegir', +]; +$a->strings['Archives'] = 'Safnskrár'; +$a->strings['News'] = 'Fréttir'; +$a->strings['Account Types'] = 'Gerðir notendaaðganga'; +$a->strings['Export'] = 'Flytja út'; +$a->strings['Export calendar as ical'] = 'Flytja dagatal út sem ICAL'; +$a->strings['Export calendar as csv'] = 'Flytja dagatal út sem CSV'; $a->strings['No contacts'] = 'Engir tengiliðir'; $a->strings['%d Contact'] = [ 0 => '%d tengiliður', 1 => '%d tengiliðir', ]; $a->strings['View Contacts'] = 'Skoða tengiliði'; -$a->strings['Save'] = 'Vista'; -$a->strings['Follow'] = 'Fylgja'; -$a->strings['Search'] = 'Leita'; -$a->strings['@name, !forum, #tags, content'] = '@nafn, !spjallsvæði, #merki, innihald'; -$a->strings['Full Text'] = 'Allur textinn'; -$a->strings['Tags'] = 'Merki'; -$a->strings['Contacts'] = 'Tengiliðir'; -$a->strings['Forums'] = 'Spjallsvæði'; -$a->strings['poke'] = 'pota'; -$a->strings['poked'] = 'potaði'; -$a->strings['ping'] = 'bjalla'; -$a->strings['pinged'] = 'bjallað'; -$a->strings['prod'] = 'ýta'; -$a->strings['prodded'] = 'ýtti'; -$a->strings['slap'] = 'slá'; -$a->strings['slapped'] = 'slegið'; -$a->strings['finger'] = 'fingur'; +$a->strings['Remove term'] = 'Fjarlæga gildi'; +$a->strings['Saved Searches'] = 'Vistaðar leitir'; +$a->strings['XMPP:'] = 'XMPP:'; +$a->strings['Location:'] = 'Staðsetning:'; +$a->strings['Network:'] = 'Netkerfi:'; +$a->strings['Post to Email'] = 'Senda skilaboð á tölvupóst'; +$a->strings['CC: email addresses'] = 'CC: tölvupóstfang'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Dæmi: bibbi@vefur.is, mgga@vefur.is'; +$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Þú þarft mögulega að keyra inn skránna "database.sql" handvirkt með phpmyadmin eða mysql.'; +$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Gat ekki fundið skipanalínu útgáfu af PHP í vefþjóns PATH.'; +$a->strings['PHP executable path'] = 'PHP keyrslu slóð'; +$a->strings['Command line PHP'] = 'Skipanalínu PHP'; +$a->strings['Found PHP version: '] = 'Fann PHP útgáfu: '; +$a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'Skipanalínu útgáfa af PHP á vefþjóninum hefur ekki kveikt á "register_argc_argv".'; +$a->strings['This is required for message delivery to work.'] = 'Þetta er skilyrt fyrir því að skilaboð komist til skila.'; +$a->strings['Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys'] = 'Villa: Stefjan "openssl_pkey_new" á vefþjóninum getur ekki stofnað dulkóðunar lykla'; +$a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'Ef keyrt er á Window, skoðaðu þá "http://www.php.net/manual/en/openssl.installation.php".'; +$a->strings['Generate encryption keys'] = 'Búa til dulkóðunar lykla'; +$a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Villa: Apache vefþjóns eining mod-rewrite er skilyrði og er ekki uppsett. '; +$a->strings['Apache mod_rewrite module'] = 'Apache mod_rewrite eining'; +$a->strings['libCurl PHP module'] = 'libCurl PHP eining'; +$a->strings['Error: libCURL PHP module required but not installed.'] = 'Villa: libCurl PHP eining er skilyrði og er ekki uppsett.'; +$a->strings['GD graphics PHP module'] = 'GD graphics PHP eining'; +$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Villa: GD graphics PHP eining með JPEG stuðningi er skilyrði og er ekki uppsett.'; +$a->strings['OpenSSL PHP module'] = 'OpenSSL PHP eining'; +$a->strings['Error: openssl PHP module required but not installed.'] = 'Villa: openssl PHP eining skilyrði og er ekki uppsett.'; +$a->strings['mb_string PHP module'] = 'mb_string PHP eining'; +$a->strings['Error: mb_string PHP module required but not installed.'] = 'Villa: mb_string PHP eining skilyrði en ekki uppsett.'; +$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.'] = 'Þetta er oftast aðgangsstýringa stilling, þar sem vefþjónninn getur ekki skrifað út skrár í skráarsafnið - þó þú getir það.'; +$a->strings['Database already in use.'] = 'Gagnagrunnur er þegar í notkun.'; +$a->strings['Could not connect to database.'] = 'Gat ekki tengst gagnagrunn.'; $a->strings['Monday'] = 'Mánudagur'; $a->strings['Tuesday'] = 'Þriðjudagur'; $a->strings['Wednesday'] = 'Miðvikudagur'; @@ -238,566 +348,144 @@ $a->strings['Jan'] = 'Jan'; $a->strings['Feb'] = 'Feb'; $a->strings['Mar'] = 'Mar'; $a->strings['Apr'] = 'Apr'; +$a->strings['Jun'] = 'Jún'; $a->strings['Jul'] = 'Júl'; $a->strings['Aug'] = 'Ágú'; $a->strings['Sep'] = 'sep'; $a->strings['Oct'] = 'Okt'; $a->strings['Nov'] = 'Nóv'; $a->strings['Dec'] = 'Des'; -$a->strings['Content warning: %s'] = 'Viðvörun vegna innihalds: %s'; -$a->strings['View Video'] = 'Skoða myndskeið'; -$a->strings['bytes'] = 'bæti'; -$a->strings['Click to open/close'] = 'Smelltu til að opna/loka'; -$a->strings['View on separate page'] = 'Skoða á sérstakri síðu'; -$a->strings['view on separate page'] = 'skoða á sérstakri síðu'; -$a->strings['link to source'] = 'slóð á heimild'; -$a->strings['activity'] = 'virkni'; -$a->strings['comment'] = [ - 0 => 'athugasemd', - 1 => 'athugasemdir', -]; -$a->strings['post'] = 'senda'; -$a->strings['Item filed'] = 'Atriði skráð'; -$a->strings['No friends to display.'] = 'Engir vinir til að birta.'; -$a->strings['Connect'] = 'Tengjast'; -$a->strings['Authorize application connection'] = 'Leyfa forriti að tengjast'; -$a->strings['Return to your app and insert this Securty Code:'] = 'Farðu aftur í forritið þitt og settu þennan öryggiskóða þar'; -$a->strings['Please login to continue.'] = 'Skráðu þig inn til að halda áfram.'; -$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengiliðum, og/eða stofna nýjar færslur fyrir þig?'; -$a->strings['No'] = 'Nei'; -$a->strings['You must be logged in to use addons. '] = 'Þú verður að vera skráður inn til að geta notað viðbætur. '; -$a->strings['Applications'] = 'Forrit'; -$a->strings['No installed applications.'] = 'Engin uppsett forrit'; -$a->strings['Item not available.'] = 'Atriði ekki í boði.'; -$a->strings['Item was not found.'] = 'Atriði fannst ekki'; -$a->strings['No contacts in common.'] = 'Engir sameiginlegir tengiliðir.'; -$a->strings['Common Friends'] = 'Sameiginlegir vinir'; -$a->strings['Credits'] = 'Þakkir'; -$a->strings['Photos'] = 'Myndir'; -$a->strings['Contact Photos'] = 'Myndir tengiliðs'; -$a->strings['Upload'] = 'Senda inn'; -$a->strings['Files'] = 'Skrár'; -$a->strings['Not Found'] = 'Fannst ekki'; -$a->strings['No profile'] = 'Engin forsíða'; -$a->strings['Welcome to %s'] = 'Velkomin í %s'; -$a->strings['Remote privacy information not available.'] = 'Persónuverndarupplýsingar ekki fyrir hendi á fjartengdum vefþjóni.'; -$a->strings['Visible to:'] = 'Sýnilegt eftirfarandi:'; -$a->strings['System down for maintenance'] = 'Kerfið er óvirkt vegna viðhalds'; -$a->strings['Welcome to Friendica'] = 'Velkomin(n) á Friendica'; -$a->strings['New Member Checklist'] = 'Gátlisti nýs notanda'; -$a->strings['Getting Started'] = 'Til að komast í gang'; -$a->strings['Friendica Walk-Through'] = 'Leiðarvísir Friendica'; -$a->strings['Settings'] = 'Stillingar'; -$a->strings['Go to Your Settings'] = 'Farðu í stillingarnar þínar'; -$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.'] = 'Yfirfarðu aðrar stillingar, sérstaklega gagnaleyndarstillingar. Óútgefin forsíða er einsog óskráð símanúmer. Sem þýðir að líklega viltu gefa út forsíðuna þína - nema að allir vinir þínir og tilvonandi vinir viti nákvæmlega hvernig á að finna þig.'; -$a->strings['Profile'] = 'Forsíða'; -$a->strings['Upload Profile Photo'] = 'Hlaða upp forsíðu mynd'; -$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.'] = 'Að hlaða upp forsíðu mynd ef þú hefur ekki þegar gert það. Rannsóknir sýna að fólk sem hefur alvöru mynd af sér er tíu sinnum líklegra til að eignast vini en fólk sem ekki hefur mynd.'; -$a->strings['Edit Your Profile'] = 'Breyta forsíðunni þinni'; -$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.'] = 'Breyttu sjálfgefnu forsíðunni einsog þú villt. Yfirfarðu stillingu til að fela vinalista á forsíðu og stillingu til að fela forsíðu fyrir ókunnum.'; -$a->strings['Profile Keywords'] = 'Stikkorð notandans'; -$a->strings['Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships.'] = 'Bættu við leitarorðum í sjálfgefnu forsíðuna þína sem lýsa áhugamálum þínum. Þá er hægt að fólk með svipuð áhugamál og stinga uppá vinskap.'; -$a->strings['Connecting'] = 'Tengist'; -$a->strings['Importing Emails'] = 'Flyt inn pósta'; -$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'] = 'Fylltu út aðgangsupplýsingar póstfangsins þíns á Tengistillingasíðunni ef þú vilt sækja tölvupóst og eiga samskipti við vini eða póstlista úr innhólfi tölvupóstsins þíns'; -$a->strings['Go to Your Contacts Page'] = 'Fara yfir á tengiliðasíðuna'; -$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.'] = 'Tengiliðasíðan er gáttin þín til að sýsla með vinasambönd og tengjast við vini á öðrum netum. Oftast setur þú vistfang eða slóð þeirra í Bæta við tengilið glugganum.'; -$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.'] = 'Tengiliðalistinn er góð leit til að finna fólk á samfélagsnetinu eða öðrum sambandsnetum. Leitaðu að Tengjast/Connect eða Fylgja/Follow tenglum á forsíðunni þeirra. Mögulega þarftu að gefa upp auðkennisslóðina þína.'; -$a->strings['Finding New People'] = 'Finna nýtt fólk'; -$a->strings['Groups'] = 'Hópar'; -$a->strings['Group Your Contacts'] = 'Hópa tengiliðina þína'; -$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.'] = 'Eftir að þú hefur eignast nokkra vini, þá er best að flokka þá niður í hópa á hliðar slánni á Tengiliðasíðunni. Eftir það getur þú haft samskipti við hvern hóp fyrir sig á Samfélagssíðunni.'; -$a->strings['Why Aren\'t My Posts Public?'] = 'Hvers vegna eru færslurnar mínar ekki opinberar?'; -$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.'] = 'Friendica virðir gagnaleynd þína. Sjálfgefið er að færslurnar þínar birtast einungis þeim sem þú hefur bætt við sem vinum. Til að sjá nánari upplýsingar, skoðaðu þá hjálparhlutann með því að smella á tengilinn hér fyrir ofan.'; -$a->strings['Getting Help'] = 'Til að fá hjálp'; -$a->strings['Go to the Help Section'] = 'Fara í hjálparhlutann'; -$a->strings['Our help pages may be consulted for detail on other program features and resources.'] = 'Hægt er að styðjast við Hjálp síðuna til að fá leiðbeiningar um aðra eiginleika.'; -$a->strings['Visit %s\'s profile [%s]'] = 'Heimsækja forsíðu %s [%s]'; -$a->strings['Edit contact'] = 'Breyta tengilið'; -$a->strings['Contacts who are not members of a group'] = 'Tengiliðir sem ekki eru í neinum hópi'; -$a->strings['Error'] = 'Villa'; -$a->strings['Done'] = 'Lokið'; -$a->strings['Keep this window open until done.'] = 'Halda þessum glugga opnum þar til öllu er lokið.'; -$a->strings['Do you really want to delete this suggestion?'] = 'Viltu örugglega eyða þessari tillögu?'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Engar uppástungur tiltækar. Ef þetta er nýr vefur, reyndu þá aftur eftir um 24 klukkustundir.'; -$a->strings['Ignore/Hide'] = 'Hunsa/Fela'; -$a->strings['Friend Suggestions'] = 'Vina uppástungur'; -$a->strings['[Embedded content - reload page to view]'] = '[Innfelt efni - endurhlaða síðu til að sjá]'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Þessi vefur hefur náð hámarks fjölda daglegra nýskráninga. Reyndu aftur á morgun.'; -$a->strings['Import'] = 'Flytja inn'; -$a->strings['Move account'] = 'Flytja aðgang'; -$a->strings['You can import an account from another Friendica server.'] = 'Þú getur flutt inn notandaaðgang frá öðrum Friendica-þjóni.'; -$a->strings['Account file'] = 'Notandaaðgangsskrá'; -$a->strings['No keywords to match. Please add keywords to your default profile.'] = 'Engin leitarorð. Bættu við leitarorðum í sjálfgefnu forsíðuna.'; -$a->strings['is interested in:'] = 'hefur áhuga á:'; -$a->strings['Profile Match'] = 'Forsíða fannst'; -$a->strings['No matches'] = 'Engar leitarniðurstöður'; -$a->strings['Manage Identities and/or Pages'] = 'Sýsla með notendur og/eða síður'; -$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Skipta á milli auðkenna eða hópa- / stjörnunotanda sem deila þínum aðgangs upplýsingum eða þér verið úthlutað "umsýslu" réttindum.'; -$a->strings['Select an identity to manage: '] = 'Veldu notanda til að sýsla með:'; -$a->strings['Submit'] = 'Senda inn'; -$a->strings['Invalid request.'] = 'Ógild fyrirspurn.'; -$a->strings['Or - did you try to upload an empty file?'] = 'Eða - reyndirðu að senda inn tóma skrá?'; -$a->strings['File exceeds size limit of %s'] = 'Skrá fer leyfileg takmörk sem eru %s'; -$a->strings['File upload failed.'] = 'Skráar upphlöðun mistókst.'; -$a->strings['- select -'] = '- veldu -'; -$a->strings['l F d, Y \@ g:i A'] = 'l F d, Y \@ g:i A'; -$a->strings['Time Conversion'] = 'Tíma leiðréttir'; -$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica veitir þessa þjónustu til að deila atburðum milli neta og vina í óþekktum tímabeltum.'; -$a->strings['UTC time: %s'] = 'Máltími: %s'; -$a->strings['Current timezone: %s'] = 'Núverandi tímabelti: %s'; -$a->strings['Converted localtime: %s'] = 'Umbreyttur staðartími: %s'; -$a->strings['Please select your timezone:'] = 'Veldu tímabeltið þitt:'; -$a->strings['No more system notifications.'] = 'Ekki fleiri kerfistilkynningar.'; -$a->strings['System Notifications'] = 'Kerfistilkynningar'; -$a->strings['{0} wants to be your friend'] = '{0} vill vera vinur þinn'; -$a->strings['{0} sent you a message'] = '{0} sendi þér skilboð'; -$a->strings['{0} requested registration'] = '{0} óskaði eftir skráningu'; -$a->strings['Poke/Prod'] = 'Pota/Ýta'; -$a->strings['poke, prod or do other things to somebody'] = 'pota, ýta eða gera eitthvað við einhvern'; -$a->strings['Recipient'] = 'Viðtakandi'; -$a->strings['Make this post private'] = 'Gera þessa færslu einka'; -$a->strings['Public access denied.'] = 'Opinber aðgangur ekki veittur.'; -$a->strings['Permission denied'] = 'Bannaður aðgangur'; -$a->strings['Invalid profile identifier.'] = 'Ógilt tengiliða auðkenni'; -$a->strings['Profile Visibility Editor'] = 'Sýsla með sjáanleika forsíðu'; -$a->strings['Click on a contact to add or remove.'] = 'Ýttu á tengilið til að bæta við hóp eða taka úr hóp.'; -$a->strings['Visible To'] = 'Sjáanlegur hverjum'; -$a->strings['All Contacts (with secure profile access)'] = 'Allir tengiliðir (með öruggann aðgang að forsíðu)'; -$a->strings['Account approved.'] = 'Notandi samþykktur.'; -$a->strings['Registration revoked for %s'] = 'Skráning afturköllurð vegna %s'; -$a->strings['Please login.'] = 'Skráðu yður inn.'; -$a->strings['Remove term'] = 'Fjarlæga gildi'; -$a->strings['Saved Searches'] = 'Vistaðar leitir'; -$a->strings['Only logged in users are permitted to perform a search.'] = 'Aðeins innskráðir notendur geta framkvæmt leit.'; -$a->strings['Too Many Requests'] = 'Of margar beiðnir'; -$a->strings['Only one search per minute is permitted for not logged in users.'] = 'Notendur sem ekki eru innskráðir geta aðeins framkvæmt eina leit á mínútu.'; -$a->strings['No results.'] = 'Engar leitarniðurstöður.'; -$a->strings['Items tagged with: %s'] = 'Atriði merkt með: %s'; -$a->strings['Results for: %s'] = 'Niðurstöður fyrir: %s'; -$a->strings['%1$s is following %2$s\'s %3$s'] = '%1$s fylgist með %3$s hjá %2$s'; -$a->strings['Tag removed'] = 'Merki fjarlægt'; -$a->strings['Remove Item Tag'] = 'Fjarlægja merki '; -$a->strings['Select a tag to remove: '] = 'Veldu merki til að fjarlægja:'; -$a->strings['Remove'] = 'Fjarlægja'; -$a->strings['Export account'] = 'Flytja út notandaaðgang'; -$a->strings['Export all'] = 'Flytja út allt'; -$a->strings['Export personal data'] = 'Sækja persónuleg gögn'; -$a->strings['No contacts.'] = 'Enginn tengiliður'; -$a->strings['Access denied.'] = 'Aðgangi hafnað.'; -$a->strings['Unable to process image.'] = 'Ekki mögulegt afgreiða mynd'; -$a->strings['Wall Photos'] = 'Veggmyndir'; -$a->strings['Image upload failed.'] = 'Ekki hægt að hlaða upp mynd.'; -$a->strings['No recipient selected.'] = 'Engir viðtakendur valdir.'; -$a->strings['Message could not be sent.'] = 'Ekki tókst að senda skilaboð.'; -$a->strings['Message collection failure.'] = 'Ekki tókst að sækja skilaboð.'; -$a->strings['Message sent.'] = 'Skilaboð send.'; -$a->strings['No recipient.'] = 'Enginn viðtakandi'; -$a->strings['Send Private Message'] = 'Senda einkaskilaboð'; -$a->strings['To:'] = 'Til:'; -$a->strings['Subject:'] = 'Efni:'; -$a->strings['Your message:'] = 'Skilaboðin:'; -$a->strings['Login'] = 'Innskráning'; -$a->strings['Item not found'] = 'Atriði fannst ekki'; -$a->strings['Edit post'] = 'Breyta skilaboðum'; -$a->strings['CC: email addresses'] = 'CC: tölvupóstfang'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Dæmi: bibbi@vefur.is, mgga@vefur.is'; -$a->strings['Contact not found.'] = 'Tengiliður fannst ekki.'; -$a->strings['Friend suggestion sent.'] = 'Vina tillaga send'; -$a->strings['Suggest Friends'] = 'Stinga uppá vinum'; -$a->strings['Suggest a friend for %s'] = 'Stinga uppá vin fyrir %s'; -$a->strings['Personal Notes'] = 'Persónulegar glósur'; -$a->strings['Photo Albums'] = 'Myndabækur'; -$a->strings['Recent Photos'] = 'Nýlegar myndir'; -$a->strings['Upload New Photos'] = 'Hlaða upp nýjum myndum'; -$a->strings['everybody'] = 'allir'; -$a->strings['Contact information unavailable'] = 'Tengiliða upplýsingar ekki til'; -$a->strings['Album not found.'] = 'Myndabók finnst ekki.'; -$a->strings['Delete Album'] = 'Fjarlægja myndabók'; -$a->strings['Delete Photo'] = 'Fjarlægja mynd'; -$a->strings['a photo'] = 'mynd'; -$a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s var merkt í %2$s af %3$s'; -$a->strings['Image file is missing'] = 'Myndskrá vantar'; -$a->strings['Image file is empty.'] = 'Mynda skrá er tóm.'; -$a->strings['No photos selected'] = 'Engar myndir valdar'; -$a->strings['Access to this item is restricted.'] = 'Aðgangur að þessum hlut hefur verið heftur'; -$a->strings['Upload Photos'] = 'Hlaða upp myndum'; -$a->strings['New album name: '] = 'Nýtt nafn myndbókar:'; -$a->strings['or existing album name: '] = 'eða fyrra nafn myndbókar:'; -$a->strings['Do not show a status post for this upload'] = 'Ekki sýna færslu fyrir þessari upphölun'; -$a->strings['Permissions'] = 'Aðgangsheimildir'; -$a->strings['Show to Groups'] = 'Birta hópum'; -$a->strings['Show to Contacts'] = 'Birta tengiliðum'; -$a->strings['Edit Album'] = 'Breyta myndbók'; -$a->strings['Show Newest First'] = 'Birta nýjast fyrst'; -$a->strings['Show Oldest First'] = 'Birta elsta fyrst'; -$a->strings['View Photo'] = 'Skoða mynd'; -$a->strings['Permission denied. Access to this item may be restricted.'] = 'Aðgangi hafnað. Aðgangur að þessum hlut kann að vera skertur.'; -$a->strings['Photo not available'] = 'Mynd ekki til'; -$a->strings['View photo'] = 'Birta mynd'; -$a->strings['Edit photo'] = 'Breyta mynd'; -$a->strings['Use as profile photo'] = 'Nota sem forsíðu mynd'; -$a->strings['Private Message'] = 'Einkaskilaboð'; -$a->strings['View Full Size'] = 'Skoða í fullri stærð'; -$a->strings['Tags: '] = 'Merki:'; -$a->strings['[Remove any tag]'] = '[Fjarlægja öll merki]'; -$a->strings['New album name'] = 'Nýtt nafn myndbókar'; -$a->strings['Caption'] = 'Yfirskrift'; -$a->strings['Add a Tag'] = 'Bæta við merki'; -$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Til dæmis: @bob, @Barbara_Jensen, @jim@example.com, #Reykjavík #tjalda'; -$a->strings['Do not rotate'] = 'Ekki snúa'; -$a->strings['Rotate CW (right)'] = 'Snúa réttsælis (hægri)'; -$a->strings['Rotate CCW (left)'] = 'Snúa rangsælis (vinstri)'; -$a->strings['I like this (toggle)'] = 'Mér líkar þetta (kveikja/slökkva)'; -$a->strings['I don\'t like this (toggle)'] = 'Mér líkar þetta ekki (kveikja/slökkva)'; -$a->strings['This is you'] = 'Þetta ert þú'; -$a->strings['Comment'] = 'Athugasemd'; -$a->strings['Map'] = 'Landakort'; -$a->strings['View Album'] = 'Skoða myndabók'; -$a->strings['Delete Video'] = 'Eyða myndskeiði'; -$a->strings['No videos selected'] = 'Engin myndskeið valin'; -$a->strings['Recent Videos'] = 'Nýleg myndskeið'; -$a->strings['Upload New Videos'] = 'Senda inn ný myndskeið'; -$a->strings['Access to this profile has been restricted.'] = 'Aðgangur að þessari forsíðu hefur verið heftur.'; -$a->strings['Events'] = 'Atburðir'; -$a->strings['View'] = 'Skoða'; -$a->strings['Previous'] = 'Fyrra'; -$a->strings['Next'] = 'Næsta'; +$a->strings['Update %s failed. See error logs.'] = 'Uppfærsla á %s mistókst. Skoðaðu villuannál.'; +$a->strings['Everybody'] = 'Allir'; +$a->strings['edit'] = 'breyta'; +$a->strings['add'] = 'bæta við'; +$a->strings['Approve'] = 'Samþykkja'; +$a->strings['Disallowed profile URL.'] = 'Óleyfileg forsíðu slóð.'; +$a->strings['Blocked domain'] = 'Útilokað lén'; +$a->strings['Connect URL missing.'] = 'Tengislóð vantar.'; +$a->strings['The profile address specified does not provide adequate information.'] = 'Uppgefin forsíðuslóð inniheldur ekki nægilegar upplýsingar.'; +$a->strings['No compatible communication protocols or feeds were discovered.'] = 'Engir samhæfðir samskiptastaðlar né fréttastraumar fundust.'; +$a->strings['An author or name was not found.'] = 'Höfundur eða nafn fannst ekki.'; +$a->strings['No browser URL could be matched to this address.'] = 'Engin vefslóð passaði við þetta vistfang.'; +$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef.'; +$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér.'; +$a->strings['Unable to retrieve contact information.'] = 'Ekki hægt að sækja tengiliðs upplýsingar.'; +$a->strings['Starts:'] = 'Byrjar:'; +$a->strings['Finishes:'] = 'Endar:'; +$a->strings['all-day'] = 'allan-daginn'; +$a->strings['Sept'] = 'Sept'; $a->strings['today'] = 'í dag'; $a->strings['month'] = 'mánuður'; $a->strings['week'] = 'vika'; $a->strings['day'] = 'dagur'; -$a->strings['list'] = 'listi'; -$a->strings['User not found'] = 'Notandi fannst ekki'; -$a->strings['calendar'] = 'dagatal'; -$a->strings['Network:'] = 'Netkerfi:'; -$a->strings['Could not access contact record.'] = 'Tókst ekki að ná í uppl. um tengilið'; -$a->strings['Could not locate selected profile.'] = 'Tókst ekki að staðsetja valinn forsíðu'; -$a->strings['Contact updated.'] = 'Tengiliður uppfærður'; -$a->strings['Failed to update contact record.'] = 'Ekki tókst að uppfæra tengiliðs skrá.'; -$a->strings['Contact has been blocked'] = 'Lokað á tengilið'; -$a->strings['Contact has been unblocked'] = 'Opnað á tengilið'; -$a->strings['Contact has been ignored'] = 'Tengiliður hunsaður'; -$a->strings['Contact has been unignored'] = 'Tengiliður afhunsaður'; -$a->strings['Contact has been archived'] = 'Tengiliður settur í geymslu'; -$a->strings['Contact has been unarchived'] = 'Tengiliður tekinn úr geymslu'; -$a->strings['Drop contact'] = 'Henda tengilið'; -$a->strings['Do you really want to delete this contact?'] = 'Viltu í alvörunni eyða þessum tengilið?'; -$a->strings['Contact has been removed.'] = 'Tengiliður fjarlægður'; -$a->strings['You are mutual friends with %s'] = 'Þú ert gagnkvæmur vinur %s'; -$a->strings['You are sharing with %s'] = 'Þú ert að deila með %s'; -$a->strings['%s is sharing with you'] = '%s er að deila með þér'; -$a->strings['Private communications are not available for this contact.'] = 'Einkasamtal ekki í boði fyrir þennan'; -$a->strings['Never'] = 'Aldrei'; -$a->strings['(Update was successful)'] = '(uppfærsla tókst)'; -$a->strings['(Update was not successful)'] = '(uppfærsla tókst ekki)'; -$a->strings['Suggest friends'] = 'Stinga uppá vinum'; -$a->strings['Network type: %s'] = 'Net tegund: %s'; -$a->strings['Fetch further information for feeds'] = 'Ná í ítarlegri upplýsingar um fréttaveitur'; -$a->strings['Disabled'] = 'Óvirkt'; -$a->strings['Fetch information'] = 'Ná í upplýsingar'; -$a->strings['Fetch keywords'] = 'Ná í stikkorð'; -$a->strings['Fetch information and keywords'] = 'Ná í upplýsingar og stikkorð'; -$a->strings['Contact'] = 'Tengiliður'; -$a->strings['Profile Visibility'] = 'Forsíðu sjáanleiki'; -$a->strings['Please choose the profile you would like to display to %s when viewing your profile securely.'] = 'Veldu forsíðu sem á að birtast %s þegar hann skoðaður með öruggum hætti'; -$a->strings['Contact Information / Notes'] = 'Uppl. um tengilið / minnisatriði'; -$a->strings['Edit contact notes'] = 'Breyta minnispunktum tengiliðs '; -$a->strings['Block/Unblock contact'] = 'útiloka/opna á tengilið'; -$a->strings['Ignore contact'] = 'Hunsa tengilið'; -$a->strings['Repair URL settings'] = 'Gera við stillingar á slóðum'; -$a->strings['View conversations'] = 'Skoða samtöl'; -$a->strings['Last update:'] = 'Síðasta uppfærsla:'; -$a->strings['Update public posts'] = 'Uppfæra opinberar færslur'; -$a->strings['Update now'] = 'Uppfæra núna'; -$a->strings['Unblock'] = 'Afbanna'; -$a->strings['Block'] = 'Útiloka'; -$a->strings['Unignore'] = 'Byrja að fylgjast með á ný'; -$a->strings['Ignore'] = 'Hunsa'; -$a->strings['Currently blocked'] = 'Útilokaður sem stendur'; -$a->strings['Currently ignored'] = 'Hunsaður sem stendur'; -$a->strings['Currently archived'] = 'Í geymslu'; -$a->strings['Hide this contact from others'] = 'Gera þennan notanda ósýnilegan öðrum'; -$a->strings['Replies/likes to your public posts may still be visible'] = 'Svör eða "líkar við" á opinberar færslur þínar geta mögulega verið sýnileg öðrum'; -$a->strings['Profile URL'] = 'Slóð á forsíðu'; -$a->strings['Location:'] = 'Staðsetning:'; -$a->strings['XMPP:'] = 'XMPP:'; -$a->strings['About:'] = 'Um:'; -$a->strings['Tags:'] = 'Merki:'; -$a->strings['Actions'] = 'Aðgerðir'; -$a->strings['Status'] = 'Staða'; -$a->strings['Contact Settings'] = 'Stillingar tengiliðar'; -$a->strings['Suggestions'] = 'Uppástungur'; -$a->strings['Suggest potential friends'] = 'Stinga uppá mögulegum vinum'; -$a->strings['All Contacts'] = 'Allir tengiliðir'; -$a->strings['Show all contacts'] = 'Sýna alla tengiliði'; -$a->strings['Unblocked'] = 'Afhunsað'; -$a->strings['Blocked'] = 'Útilokað'; -$a->strings['Ignored'] = 'Hunsa'; -$a->strings['Archived'] = 'Í geymslu'; -$a->strings['Only show archived contacts'] = 'Aðeins sýna geymda tengiliði'; -$a->strings['Hidden'] = 'Falinn'; -$a->strings['Only show hidden contacts'] = 'Aðeins sýna falda tengiliði'; -$a->strings['Search your contacts'] = 'Leita í þínum vinum'; -$a->strings['Find'] = 'Finna'; -$a->strings['Update'] = 'Uppfæra'; -$a->strings['Archive'] = 'Setja í geymslu'; -$a->strings['Unarchive'] = 'Taka úr geymslu'; -$a->strings['Batch Actions'] = 'Magnaðgerðir'; -$a->strings['Status Messages and Posts'] = 'Stöðu skilaboð og færslur'; -$a->strings['Profile Details'] = 'Forsíðu upplýsingar'; -$a->strings['View all contacts'] = 'Skoða alla tengiliði'; -$a->strings['View all common friends'] = 'Skoða alla sameiginlega vini'; -$a->strings['Advanced'] = 'Flóknari'; -$a->strings['Mutual Friendship'] = 'Sameiginlegur vinskapur'; -$a->strings['is a fan of yours'] = 'er fylgjandi þinn'; -$a->strings['you are a fan of'] = 'þú er fylgjandi'; -$a->strings['Delete contact'] = 'Eyða tengilið'; -$a->strings['Save Settings'] = 'Vista stillingar'; -$a->strings['Add'] = 'Bæta við'; -$a->strings['No entries.'] = 'Engar færslur.'; -$a->strings['Create New Event'] = 'Stofna nýjan atburð'; -$a->strings['Event details'] = 'Nánar um atburð'; -$a->strings['Event Starts:'] = 'Atburður hefst:'; -$a->strings['Required'] = 'Nauðsynlegt'; -$a->strings['Finish date/time is not known or not relevant'] = 'Loka dagsetning/tímasetning ekki vituð eða skiptir ekki máli'; -$a->strings['Event Finishes:'] = 'Atburður klárar:'; -$a->strings['Adjust for viewer timezone'] = 'Heimfæra á tímabelti áhorfanda'; -$a->strings['Description:'] = 'Lýsing:'; -$a->strings['Title:'] = 'Titill:'; -$a->strings['Share this event'] = 'Deila þessum atburði'; -$a->strings['Basic'] = 'Einfalt'; -$a->strings['Source URL'] = 'Upprunaslóð'; -$a->strings['Post successful.'] = 'Melding tókst.'; -$a->strings['No contact provided.'] = 'Enginn tengiliður uppgefinn.'; -$a->strings['success'] = 'tókst'; -$a->strings['failed'] = 'mistókst'; -$a->strings['ignored'] = 'hunsað'; -$a->strings['Image uploaded but image cropping failed.'] = 'Tókst að hala upp mynd en afskurður tókst ekki.'; -$a->strings['Image size reduction [%s] failed.'] = 'Myndar minnkun [%s] tókst ekki.'; -$a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Ýta þarf á '; -$a->strings['Unable to process image'] = 'Ekki tókst að vinna mynd'; -$a->strings['Upload File:'] = 'Hlaða upp skrá:'; -$a->strings['or'] = 'eða'; -$a->strings['skip this step'] = 'sleppa þessu skrefi'; -$a->strings['select a photo from your photo albums'] = 'velja mynd í myndabókum'; -$a->strings['Crop Image'] = 'Skera af mynd'; -$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Stilltu afskurð fyrir besta birtingu.'; -$a->strings['Done Editing'] = 'Breyting kláruð'; -$a->strings['Image uploaded successfully.'] = 'Upphölun á mynd tóks.'; -$a->strings['Submit Request'] = 'Senda beiðni'; -$a->strings['Your Identity Address:'] = 'Auðkennisnetfang þitt:'; -$a->strings['Gender:'] = 'Kyn:'; -$a->strings['Status:'] = 'Staða:'; +$a->strings['No events to display'] = 'Engir atburðir til að birta'; +$a->strings['Access to this profile has been restricted.'] = 'Aðgangur að þessari forsíðu hefur verið heftur.'; +$a->strings['l, F j'] = 'l, F j'; +$a->strings['Edit event'] = 'Breyta atburð'; +$a->strings['Duplicate event'] = 'Tvítaka atburð'; +$a->strings['Delete event'] = 'Eyða atburði'; +$a->strings['l F d, Y \@ g:i A'] = 'l F d, Y \@ g:i A'; +$a->strings['D g:i A'] = 'D g:i A'; +$a->strings['g:i A'] = 'g:i A'; +$a->strings['Show map'] = 'Birta kort'; +$a->strings['Hide map'] = 'Fela kort'; +$a->strings['%s\'s birthday'] = 'Afmælisdagur %s'; +$a->strings['Happy Birthday %s'] = 'Til hamingju með afmælið %s'; +$a->strings['activity'] = 'virkni'; +$a->strings['post'] = 'senda'; +$a->strings['Content warning: %s'] = 'Viðvörun vegna innihalds: %s'; +$a->strings['bytes'] = 'bæti'; +$a->strings['View on separate page'] = 'Skoða á sérstakri síðu'; +$a->strings['[no subject]'] = '[ekkert efni]'; +$a->strings['Wall Photos'] = 'Veggmyndir'; +$a->strings['Edit profile'] = 'Breyta forsíðu'; +$a->strings['Change profile photo'] = 'Breyta forsíðumynd'; $a->strings['Homepage:'] = 'Heimasíða:'; -$a->strings['Global Directory'] = 'Alheimstengiliðaskrá'; -$a->strings['Find on this site'] = 'Leita á þessum vef'; -$a->strings['Results for:'] = 'Niðurstöður fyrir:'; -$a->strings['Site Directory'] = 'Skrá yfir tengiliði á þessum vef'; -$a->strings['No entries (some entries may be hidden).'] = 'Engar færslur (sumar geta verið faldar).'; -$a->strings['People Search - %s'] = 'Leita að fólki - %s'; -$a->strings['Forum Search - %s'] = 'Leita á spjallsvæði - %s'; -$a->strings['Please answer the following:'] = 'Vinnsamlegast svaraðu eftirfarandi:'; -$a->strings['Does %s know you?'] = 'Þekkir %s þig?'; -$a->strings['Add a personal note:'] = 'Bæta við persónulegri athugasemd'; -$a->strings['No valid account found.'] = 'Engin gildur aðgangur fannst.'; -$a->strings['Password reset request issued. Check your email.'] = 'Gefin var beiðni um breytingu á lykilorði. Opnaðu tölvupóstinn þinn.'; -$a->strings['Password reset requested at %s'] = 'Beðið var um endurstillingu lykilorðs %s'; -$a->strings['Request could not be verified. (You may have previously submitted it.) Password reset failed.'] = 'Ekki var hægt að sannreyna beiðni. (Það getur verið að þú hafir þegar verið búin/n að senda hana.) Endurstilling á lykilorði tókst ekki.'; -$a->strings['Forgot your Password?'] = 'Gleymdir þú lykilorði þínu?'; -$a->strings['Enter your email address and submit to have your password reset. Then check your email for further instructions.'] = 'Sláðu inn tölvupóstfangið þitt til að endurstilla aðgangsorðið og fá leiðbeiningar sendar með tölvupósti.'; -$a->strings['Nickname or Email: '] = 'Gælunafn eða tölvupóstfang: '; -$a->strings['Reset'] = 'Endurstilla'; -$a->strings['Password Reset'] = 'Endurstilling aðgangsorðs'; -$a->strings['Your password has been reset as requested.'] = 'Aðgangsorðið þitt hefur verið endurstilt.'; -$a->strings['Your new password is'] = 'Nýja aðgangsorð þitt er '; -$a->strings['Save or copy your new password - and then'] = 'Vistaðu eða afritaðu nýja aðgangsorðið - og'; -$a->strings['click here to login'] = 'smelltu síðan hér til að skrá þig inn'; -$a->strings['Your password may be changed from the Settings page after successful login.'] = 'Þú getur breytt aðgangsorðinu þínu á Stillingar síðunni eftir að þú hefur skráð þig inn.'; -$a->strings['Your password has been changed at %s'] = 'Aðgangsorðinu þínu var breytt í %s'; -$a->strings['Markdown::toBBCode'] = 'Markdown::toBBCode'; -$a->strings['Raw HTML input'] = 'Hrátt HTML-ílag'; -$a->strings['HTML Input'] = 'HTML Input'; -$a->strings['HTML::toBBCode'] = 'HTML::toBBCode'; -$a->strings['HTML::toPlaintext'] = 'HTML::toPlaintext'; -$a->strings['Source text'] = 'Frumtexti'; -$a->strings['BBCode'] = 'BBCode'; -$a->strings['Markdown'] = 'Markdown'; -$a->strings['HTML'] = 'HTML'; -$a->strings['Not available.'] = 'Ekki tiltækt.'; -$a->strings['This is Friendica, version'] = 'Þetta er Friendica útgáfa'; -$a->strings['running at web location'] = 'Keyrir á slóð'; -$a->strings['Bug reports and issues: please visit'] = 'Villu tilkynningar og vandamál: endilega skoða'; -$a->strings['the bugtracker at github'] = 'villuskráningu á GitHub'; -$a->strings['Blocked domain'] = 'Útilokað lén'; -$a->strings['%s : Not a valid email address.'] = '%s : Ekki gilt tölvupóstfang.'; -$a->strings['Please join us on Friendica'] = 'Komdu í hópinn á Friendica'; -$a->strings['%s : Message delivery failed.'] = '%s : Skilaboð komust ekki til skila.'; -$a->strings['%d message sent.'] = [ - 0 => '%d skilaboð send.', - 1 => '%d skilaboð send', -]; -$a->strings['You have no more invitations available'] = 'Þú hefur ekki fleiri boðskort.'; -$a->strings['Send invitations'] = 'Senda kynningar'; -$a->strings['Enter email addresses, one per line:'] = 'Settu inn tölvupóstföng, eitt í hverja línu:'; -$a->strings['You will need to supply this invitation code: $invite_code'] = 'Þú þarft að nota eftirfarandi boðskorta auðkenni: $invite_code'; -$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Þegar þú hefur nýskráð þig, hafðu samband við mig gegnum síðuna mína á:'; -$a->strings['add'] = 'bæta við'; -$a->strings['No such group'] = 'Enginn slíkur hópur'; -$a->strings['Group is empty'] = 'Hópur er tómur'; -$a->strings['Group: %s'] = 'Hópur: %s'; -$a->strings['Private messages to this person are at risk of public disclosure.'] = 'Einka skilaboð send á þennan notanda eiga á hættu að verða opinber.'; -$a->strings['Invalid contact.'] = 'Ógildur tengiliður.'; -$a->strings['Commented Order'] = 'Athugasemdar röð'; -$a->strings['Sort by Comment Date'] = 'Raða eftir umræðu dagsetningu'; -$a->strings['Posted Order'] = 'Færlsu röð'; -$a->strings['Sort by Post Date'] = 'Raða eftir færslu dagsetningu'; -$a->strings['Personal'] = 'Einka'; -$a->strings['Posts that mention or involve you'] = 'Færslur sem tengjast þér'; -$a->strings['New'] = 'Nýtt'; -$a->strings['Activity Stream - by date'] = 'Færslu straumur - raðað eftir dagsetningu'; -$a->strings['Shared Links'] = 'Sameignartenglar'; -$a->strings['Interesting Links'] = 'Áhugaverðir tenglar'; -$a->strings['Starred'] = 'Stjörnumerkt'; -$a->strings['Favourite Posts'] = 'Uppáhalds færslur'; -$a->strings['Contact settings applied.'] = 'Stillingar tengiliðs uppfærðar.'; -$a->strings['Contact update failed.'] = 'Uppfærsla tengiliðs mistókst.'; -$a->strings['WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working.'] = 'AÐVÖRUN: Þetta er mjög flókið og ef þú setur inn vitlausar upplýsingar þá munu samskipti við þennan tengilið hætta að virka.'; -$a->strings['Please use your browser \'Back\' button now if you are uncertain what to do on this page.'] = 'Notaðu "Til baka" hnappinn núna ef þú ert ekki viss um hvað þú eigir að gera á þessari síðu.'; -$a->strings['Return to contact editor'] = 'Fara til baka í tengiliðasýsl'; -$a->strings['Name'] = 'Nafn'; -$a->strings['Account Nickname'] = 'Gælunafn notanda'; -$a->strings['@Tagname - overrides Name/Nickname'] = '@Merkjanafn - yfirskrifar Nafn/Gælunafn'; -$a->strings['Account URL'] = 'Heimasíða notanda'; -$a->strings['Friend Request URL'] = 'Slóð vinabeiðnar'; -$a->strings['Friend Confirm URL'] = 'Slóð vina staðfestingar '; -$a->strings['Notification Endpoint URL'] = 'Slóð loka tilkynningar'; -$a->strings['Poll/Feed URL'] = 'Slóð á könnun/fréttastraum'; -$a->strings['New photo from this URL'] = 'Ný mynd frá slóð'; -$a->strings['Help:'] = 'Hjálp:'; -$a->strings['Help'] = 'Hjálp'; -$a->strings['Page not found.'] = 'Síða fannst ekki.'; -$a->strings['Could not connect to database.'] = 'Gat ekki tengst gagnagrunn.'; -$a->strings['Could not create table.'] = 'Gat ekki búið til töflu.'; -$a->strings['Your Friendica site database has been installed.'] = 'Friendica gagnagrunnurinn þinn hefur verið uppsettur.'; -$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Þú þarft mögulega að keyra inn skránna "database.sql" handvirkt með phpmyadmin eða mysql.'; -$a->strings['Please see the file "INSTALL.txt".'] = 'Lestu skrána "INSTALL.txt".'; -$a->strings['Database already in use.'] = 'Gagnagrunnur er þegar í notkun.'; -$a->strings['System check'] = 'Kerfis prófun'; -$a->strings['Check again'] = 'Prófa aftur'; -$a->strings['Database connection'] = 'Gangagrunns tenging'; -$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Til að setja upp Friendica þurfum við að vita hvernig á að tengjast gagnagrunninum þínum.'; -$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Hafðu samband við hýsingaraðilann þinn eða kerfisstjóra ef þú hefur spurningar varðandi þessar stillingar.'; -$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'Gagnagrunnurinn sem þú bendir á þarf þegar að vera til. Ef ekki þá þarf að stofna hann áður en haldið er áfram.'; -$a->strings['Database Server Name'] = 'Vélanafn gagangrunns'; -$a->strings['Database Login Name'] = 'Notendanafn í gagnagrunn'; -$a->strings['Database Login Password'] = 'Aðgangsorð í gagnagrunns'; -$a->strings['Database Name'] = 'Nafn gagnagrunns'; -$a->strings['Site administrator email address'] = 'Tölvupóstfang kerfisstjóra vefsvæðis'; -$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'Póstfang aðgangsins þíns verður að passa við þetta til að hægt sé að nota umsýsluvefviðmótið.'; -$a->strings['Please select a default timezone for your website'] = 'Veldu sjálfgefið tímabelti fyrir vefsíðuna'; -$a->strings['Site settings'] = 'Stillingar vefsvæðis'; -$a->strings['System Language:'] = 'Tungumál kerfis:'; -$a->strings['The database configuration file ".htconfig.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.'] = 'Ekki tókst að skrifa stillingaskrá gagnagrunns ".htconfig.php". Notað meðfylgjandi texta til að búa til stillingarskrá í rót vefþjónsins.'; -$a->strings['New Message'] = 'Ný skilaboð'; -$a->strings['Unable to locate contact information.'] = 'Ekki tókst að staðsetja tengiliðs upplýsingar.'; -$a->strings['Messages'] = 'Skilaboð'; -$a->strings['Do you really want to delete this message?'] = 'Viltu virkilega eyða þessum skilaboðum?'; -$a->strings['Message deleted.'] = 'Skilaboðum eytt.'; -$a->strings['Conversation removed.'] = 'Samtali eytt.'; -$a->strings['No messages.'] = 'Engin skilaboð.'; -$a->strings['Message not available.'] = 'Ekki næst í skilaboð.'; -$a->strings['Delete message'] = 'Eyða skilaboðum'; -$a->strings['D, d M Y - g:i A'] = 'D, d. M Y - g:i A'; -$a->strings['Delete conversation'] = 'Eyða samtali'; -$a->strings['Send Reply'] = 'Senda svar'; -$a->strings['Unknown sender - %s'] = 'Óþekktur sendandi - %s'; -$a->strings['You and %s'] = 'Þú og %s'; -$a->strings['%s and You'] = '%s og þú'; -$a->strings['%d message'] = [ - 0 => '%d skilaboð', - 1 => '%d skilaboð', -]; -$a->strings['Group created.'] = 'Hópur stofnaður'; -$a->strings['Could not create group.'] = 'Gat ekki stofnað hóp.'; -$a->strings['Group not found.'] = 'Hópur fannst ekki.'; -$a->strings['Group name changed.'] = 'Hópur endurskýrður.'; -$a->strings['Save Group'] = 'Vista hóp'; -$a->strings['Create a group of contacts/friends.'] = 'Stofna hóp af tengiliðum/vinum'; -$a->strings['Group Name: '] = 'Nafn hóps: '; -$a->strings['Group removed.'] = 'Hópi eytt.'; -$a->strings['Unable to remove group.'] = 'Ekki tókst að eyða hóp.'; -$a->strings['Delete Group'] = 'Eyða hópi'; -$a->strings['Group Editor'] = 'Hópa sýslari'; -$a->strings['Edit Group Name'] = 'Breyta nafni hóps'; -$a->strings['Members'] = 'Meðlimir'; -$a->strings['OpenID protocol error. No ID returned.'] = 'Samskiptavilla í OpenID. Ekkert auðkenni barst.'; -$a->strings['Login failed.'] = 'Innskráning mistókst.'; -$a->strings['Theme settings updated.'] = 'Þemastillingar uppfærðar.'; -$a->strings['Information'] = 'Upplýsingar'; -$a->strings['Overview'] = 'Yfirlit'; -$a->strings['Federation Statistics'] = 'Tölfræði þjónasambands'; -$a->strings['Configuration'] = 'Uppsetning'; -$a->strings['Site'] = 'Vefur'; -$a->strings['Users'] = 'Notendur'; -$a->strings['Addons'] = 'Forritsviðbætur'; -$a->strings['Themes'] = 'Þemu'; -$a->strings['Additional features'] = 'Viðbótareiginleikar'; -$a->strings['Terms of Service'] = 'Þjónustuskilmálar'; -$a->strings['Database'] = 'Gagnagrunnur'; -$a->strings['DB updates'] = 'Gagnagrunnsuppfærslur'; -$a->strings['Tools'] = 'Verkfæri'; -$a->strings['Contact Blocklist'] = 'Svartur listi tengiliðar'; -$a->strings['Server Blocklist'] = 'Svartur listi vefþjóns'; -$a->strings['Delete Item'] = 'Eyða atriði'; -$a->strings['Logs'] = 'Atburðaskrá'; -$a->strings['View Logs'] = 'Skoða atburðaskrár'; -$a->strings['Diagnostics'] = 'Bilanagreining'; -$a->strings['PHP Info'] = 'PHP-upplýsingar'; -$a->strings['probe address'] = 'finna vistfang'; -$a->strings['Admin'] = 'Stjórnandi'; -$a->strings['Addon Features'] = 'Eiginleikar forritsviðbótar'; -$a->strings['User registrations waiting for confirmation'] = 'Notenda nýskráningar bíða samþykkis'; -$a->strings['Administration'] = 'Stjórnun'; -$a->strings['Delete domain'] = 'Eyða léni'; -$a->strings['Block reason'] = 'Ástæða fyrir útilokun'; -$a->strings['Add Entry'] = 'Bæta við færslu'; -$a->strings['Block Remote Contact'] = 'Útiloka fjartengdan tengilið'; -$a->strings['select all'] = 'velja alla'; -$a->strings['select none'] = 'velja ekkert'; -$a->strings['Blocked Remote Contacts'] = 'Útilokaðir fjartengdir tengiliðir'; -$a->strings['Block New Remote Contact'] = 'Útiloka nýjan fjartengdan tengilið'; -$a->strings['Photo'] = 'Ljósmynd'; -$a->strings['Address'] = 'Heimilisfang'; -$a->strings['Delete this Item'] = 'Eyða þessu atriði'; -$a->strings['Item marked for deletion.'] = 'Atriði merkt til eyðingar.'; -$a->strings['unknown'] = 'óþekkt'; -$a->strings['ID'] = 'Auðkenni (ID)'; -$a->strings['Recipient Name'] = 'Nafn viðtakanda'; -$a->strings['Recipient Profile'] = 'Forsíða viðtakanda'; -$a->strings['Network'] = 'Samfélag'; -$a->strings['Created'] = 'Búið til'; -$a->strings['Last Tried'] = 'Síðast prófað'; -$a->strings['Normal Account'] = 'Venjulegur notandi'; -$a->strings['Automatic Friend Account'] = 'Verður sjálfkrafa vinur notandi'; +$a->strings['About:'] = 'Um:'; +$a->strings['Atom feed'] = 'Atom fréttaveita'; +$a->strings['F d'] = 'F d'; +$a->strings['[today]'] = '[í dag]'; +$a->strings['Birthday Reminders'] = 'Afmælisáminningar'; +$a->strings['Birthdays this week:'] = 'Afmæli í þessari viku:'; +$a->strings['g A l F d'] = 'g A l F d'; +$a->strings['[No description]'] = '[Engin lýsing]'; +$a->strings['Event Reminders'] = 'Atburðaáminningar'; +$a->strings['Hometown:'] = 'Heimabær:'; +$a->strings['Sexual Preference:'] = 'Kynhneigð:'; +$a->strings['Political Views:'] = 'Stórnmálaskoðanir:'; +$a->strings['Religious Views:'] = 'Trúarskoðanir'; +$a->strings['Likes:'] = 'Líkar:'; +$a->strings['Dislikes:'] = 'Mislíkar:'; +$a->strings['Title/Description:'] = 'Starfsheiti/Lýsing:'; $a->strings['Summary'] = 'Samantekt'; -$a->strings['Registered users'] = 'Skráðir notendur'; -$a->strings['Pending registrations'] = 'Nýskráningar í bið'; -$a->strings['Version'] = 'Útgáfunúmer'; -$a->strings['Site settings updated.'] = 'Stillingar vefsvæðis uppfærðar.'; -$a->strings['One month'] = 'Einn mánuður'; -$a->strings['Three months'] = 'Þrír mánuðir'; -$a->strings['Half a year'] = 'Hálft ár'; -$a->strings['One year'] = 'Eitt ár'; +$a->strings['Musical interests'] = 'Tónlistarsmekkur'; +$a->strings['Books, literature'] = 'Bækur, bókmenntir'; +$a->strings['Television'] = 'Sjónvarp'; +$a->strings['Film/dance/culture/entertainment'] = 'Kvikmyndir/dans/menning/afþreying'; +$a->strings['Hobbies/Interests'] = 'Áhugamál'; +$a->strings['Love/romance'] = 'Ást/rómantík'; +$a->strings['Work/employment'] = 'Atvinna:'; +$a->strings['School/education'] = 'Skóli/menntun'; +$a->strings['Contact information and Social Networks'] = 'Tengiliðaupplýsingar og samfélagsnet'; +$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'VERULEGA ALVARLEG VILLA: Stofnun á öryggislyklum tókst ekki.'; +$a->strings['Login failed'] = 'Innskráning mistókst'; +$a->strings['Password can\'t be empty'] = 'Lykilorð getur ekki verið autt'; +$a->strings['Passwords do not match. Password unchanged.'] = 'Aðgangsorð ber ekki saman. Aðgangsorð óbreytt.'; +$a->strings['An invitation is required.'] = 'Boðskort er skilyrði.'; +$a->strings['Invitation could not be verified.'] = 'Ekki hægt að sannreyna boðskort.'; +$a->strings['Invalid OpenID url'] = 'OpenID slóð ekki til'; +$a->strings['The error message was:'] = 'Villumeldingin var:'; +$a->strings['Please enter the required information.'] = 'Settu inn umbeðnar upplýsingar.'; +$a->strings['That doesn\'t appear to be your full (First Last) name.'] = 'Þetta virðist ekki vera fullt nafn (Jón Jónsson).'; +$a->strings['Your email domain is not among those allowed on this site.'] = 'Póstþjónninn er ekki í lista yfir leyfða póstþjóna á þessum vef.'; +$a->strings['Not a valid email address.'] = 'Ekki tækt tölvupóstfang.'; +$a->strings['Cannot use that email.'] = 'Ekki hægt að nota þetta póstfang.'; +$a->strings['Nickname is already registered. Please choose another.'] = 'Gælunafn þegar skráð. Veldu annað.'; +$a->strings['An error occurred during registration. Please try again.'] = 'Villa kom upp við nýskráningu. Reyndu aftur.'; +$a->strings['An error occurred creating your default profile. Please try again.'] = 'Villa kom upp við að stofna sjálfgefna forsíðu. Vinnsamlegast reyndu aftur.'; +$a->strings['Friends'] = 'Vinir'; +$a->strings['Profile Photos'] = 'Forsíðumyndir'; +$a->strings['Registration details for %s'] = 'Nýskráningar upplýsingar fyrir %s'; +$a->strings['Disable'] = 'Gera óvirkt'; +$a->strings['Enable'] = 'Virkja'; +$a->strings['Administration'] = 'Stjórnun'; +$a->strings['Addons'] = 'Forritsviðbætur'; +$a->strings['Toggle'] = 'Skipta'; +$a->strings['Author: '] = 'Höfundur:'; +$a->strings['Maintainer: '] = 'Umsjónarmaður: '; +$a->strings['Save Settings'] = 'Vista stillingar'; +$a->strings['Update has been marked successful'] = 'Uppfærsla merkt sem tókst'; +$a->strings['Update %s was successfully applied.'] = 'Uppfærsla %s framkvæmd.'; +$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'Uppfærsla %s skilaði ekki gildi. Óvíst hvort tókst.'; +$a->strings['No failed updates.'] = 'Engar uppfærslur mistókust.'; +$a->strings['Failed Updates'] = 'Uppfærslur sem mistókust'; +$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Þetta á ekki við uppfærslur fyrir 1139, þær skiluðu ekki lokastöðu.'; +$a->strings['Mark success (if update was manually applied)'] = 'Merkja sem tókst (ef uppfærsla var framkvæmd handvirkt)'; +$a->strings['Attempt to execute this update step automatically'] = 'Framkvæma þessa uppfærslu sjálfkrafa'; +$a->strings['Other'] = 'Annað'; +$a->strings['unknown'] = 'óþekkt'; +$a->strings['Federation Statistics'] = 'Tölfræði þjónasambands'; +$a->strings['Logs'] = 'Atburðaskrá'; +$a->strings['Clear'] = 'Hreinsa'; +$a->strings['Log file'] = 'Atburðaskrá'; +$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Vefþjónn verður að hafa skrifréttindi. Afstætt við Friendica rótar skráarsafn.'; +$a->strings['Log level'] = 'Stig atburðaskráningar'; +$a->strings['View Logs'] = 'Skoða atburðaskrár'; +$a->strings['Show all'] = 'Birta allt'; +$a->strings['Event details'] = 'Nánar um atburð'; +$a->strings['ID'] = 'Auðkenni (ID)'; +$a->strings['Created'] = 'Búið til'; +$a->strings['%s - (Experimental)'] = '%s - (á tilraunastigi)'; $a->strings['Closed'] = 'Lokað'; $a->strings['Requires approval'] = 'Þarf samþykki'; $a->strings['Open'] = 'Opið'; +$a->strings['Site'] = 'Vefur'; $a->strings['Registration'] = 'Nýskráning'; $a->strings['File upload'] = 'Hlaða upp skrá'; $a->strings['Policies'] = 'Stefna'; +$a->strings['Advanced'] = 'Flóknari'; $a->strings['Performance'] = 'Afköst'; $a->strings['Site name'] = 'Nafn vefsvæðis'; -$a->strings['Host name'] = 'Vélarheiti'; $a->strings['Sender Email'] = 'Tölvupóstfang sendanda'; $a->strings['Banner/Logo'] = 'Borði/Merki'; $a->strings['Shortcut icon'] = 'Táknmynd flýtivísunar'; @@ -817,230 +505,291 @@ $a->strings['Block public'] = 'Loka á opinberar færslur'; $a->strings['Force publish'] = 'Skylda að vera í tengiliðalista'; $a->strings['Disallow public access to addons listed in the apps menu.'] = 'Hindra opið aðgengi að viðbótum í forritavalmyndinni.'; $a->strings['Checking this box will restrict addons listed in the apps menu to members only.'] = 'Ef hakað er í þetta verður aðgengi að viðbótum í forritavalmyndinni takmarkað við meðlimi.'; -$a->strings['Block multiple registrations'] = 'Banna margar skráningar'; -$a->strings['OpenID support'] = 'Leyfa OpenID auðkenningu'; -$a->strings['Fullname check'] = 'Fullt nafn skilyrði'; -$a->strings['Enable OStatus support'] = 'Leyfa OStatus stuðning'; $a->strings['Enable Diaspora support'] = 'Leyfa Diaspora tengingar'; -$a->strings['Only allow Friendica contacts'] = 'Aðeins leyfa Friendica notendur'; $a->strings['Verify SSL'] = 'Sannreyna SSL'; $a->strings['Proxy user'] = 'Proxy notandi'; $a->strings['Proxy URL'] = 'Proxy slóð'; $a->strings['Network timeout'] = 'Net tími útrunninn'; $a->strings['Maximum Load Average'] = 'Mesta meðaltals álag'; $a->strings['Lifespan of remote items'] = 'Líftími fjartengdra atriða'; -$a->strings['Enabled'] = 'Virkt'; +$a->strings['Disabled'] = 'Óvirkt'; $a->strings['all'] = 'allt'; $a->strings['tags'] = 'merki'; -$a->strings['Update has been marked successful'] = 'Uppfærsla merkt sem tókst'; -$a->strings['Update %s was successfully applied.'] = 'Uppfærsla %s framkvæmd.'; -$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'Uppfærsla %s skilaði ekki gildi. Óvíst hvort tókst.'; -$a->strings['No failed updates.'] = 'Engar uppfærslur mistókust.'; -$a->strings['Failed Updates'] = 'Uppfærslur sem mistókust'; -$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Þetta á ekki við uppfærslur fyrir 1139, þær skiluðu ekki lokastöðu.'; -$a->strings['Mark success (if update was manually applied)'] = 'Merkja sem tókst (ef uppfærsla var framkvæmd handvirkt)'; -$a->strings['Attempt to execute this update step automatically'] = 'Framkvæma þessa uppfærslu sjálfkrafa'; -$a->strings['Registration details for %s'] = 'Nýskráningar upplýsingar fyrir %s'; +$a->strings['Version'] = 'Útgáfunúmer'; +$a->strings['Screenshot'] = 'Skjámynd'; +$a->strings['Themes'] = 'Þemu'; +$a->strings['[Experimental]'] = '[Á tilraunastigi]'; +$a->strings['[Unsupported]'] = '[Óstutt]'; +$a->strings['No installed applications.'] = 'Engin uppsett forrit'; +$a->strings['Applications'] = 'Forrit'; +$a->strings['Item was not found.'] = 'Atriði fannst ekki'; +$a->strings['Please login to continue.'] = 'Skráðu þig inn til að halda áfram.'; +$a->strings['Overview'] = 'Yfirlit'; +$a->strings['Configuration'] = 'Uppsetning'; +$a->strings['Additional features'] = 'Viðbótareiginleikar'; +$a->strings['Database'] = 'Gagnagrunnur'; +$a->strings['DB updates'] = 'Gagnagrunnsuppfærslur'; +$a->strings['Diagnostics'] = 'Bilanagreining'; +$a->strings['PHP Info'] = 'PHP-upplýsingar'; +$a->strings['probe address'] = 'finna vistfang'; +$a->strings['Addon Features'] = 'Eiginleikar forritsviðbótar'; +$a->strings['User registrations waiting for confirmation'] = 'Notenda nýskráningar bíða samþykkis'; +$a->strings['Users'] = 'Notendur'; +$a->strings['Tools'] = 'Verkfæri'; +$a->strings['Contact Blocklist'] = 'Svartur listi tengiliðar'; +$a->strings['Server Blocklist'] = 'Svartur listi vefþjóns'; +$a->strings['Delete Item'] = 'Eyða atriði'; +$a->strings['Profile Details'] = 'Forsíðu upplýsingar'; +$a->strings['Only You Can See This'] = 'Aðeins þú sérð þetta'; +$a->strings['Tips for New Members'] = 'Ábendingar fyrir nýja notendur'; +$a->strings['People Search - %s'] = 'Leita að fólki - %s'; +$a->strings['No matches'] = 'Engar leitarniðurstöður'; +$a->strings['Account'] = 'Notandi'; +$a->strings['Display'] = 'Birting'; +$a->strings['Social Networks'] = 'Samfélagsnet'; +$a->strings['Connected apps'] = 'Tengd forrit'; +$a->strings['Export personal data'] = 'Sækja persónuleg gögn'; +$a->strings['Remove account'] = 'Henda tengilið'; +$a->strings['Event Starts:'] = 'Atburður hefst:'; +$a->strings['Required'] = 'Nauðsynlegt'; +$a->strings['Finish date/time is not known or not relevant'] = 'Loka dagsetning/tímasetning ekki vituð eða skiptir ekki máli'; +$a->strings['Event Finishes:'] = 'Atburður klárar:'; +$a->strings['Share this event'] = 'Deila þessum atburði'; +$a->strings['Basic'] = 'Einfalt'; +$a->strings['calendar'] = 'dagatal'; +$a->strings['Events'] = 'Atburðir'; +$a->strings['View'] = 'Skoða'; +$a->strings['Create New Event'] = 'Stofna nýjan atburð'; +$a->strings['list'] = 'listi'; +$a->strings['Contact not found.'] = 'Tengiliður fannst ekki.'; +$a->strings['Invalid contact.'] = 'Ógildur tengiliður.'; +$a->strings['Members'] = 'Meðlimir'; +$a->strings['Click on a contact to add or remove.'] = 'Ýttu á tengilið til að bæta við hóp eða taka úr hóp.'; +$a->strings['Show all contacts'] = 'Sýna alla tengiliði'; +$a->strings['Blocked'] = 'Útilokað'; +$a->strings['Ignored'] = 'Hunsa'; +$a->strings['Archived'] = 'Í geymslu'; +$a->strings['Only show archived contacts'] = 'Aðeins sýna geymda tengiliði'; +$a->strings['Hidden'] = 'Falinn'; +$a->strings['Only show hidden contacts'] = 'Aðeins sýna falda tengiliði'; +$a->strings['Search your contacts'] = 'Leita í þínum vinum'; +$a->strings['Results for: %s'] = 'Niðurstöður fyrir: %s'; +$a->strings['Update'] = 'Uppfæra'; +$a->strings['Unblock'] = 'Afbanna'; +$a->strings['Unignore'] = 'Byrja að fylgjast með á ný'; +$a->strings['Batch Actions'] = 'Magnaðgerðir'; +$a->strings['Mutual Friendship'] = 'Sameiginlegur vinskapur'; +$a->strings['is a fan of yours'] = 'er fylgjandi þinn'; +$a->strings['you are a fan of'] = 'þú er fylgjandi'; +$a->strings['Visit %s\'s profile [%s]'] = 'Heimsækja forsíðu %s [%s]'; +$a->strings['Contact update failed.'] = 'Uppfærsla tengiliðs mistókst.'; +$a->strings['Return to contact editor'] = 'Fara til baka í tengiliðasýsl'; +$a->strings['Name'] = 'Nafn'; +$a->strings['Account Nickname'] = 'Gælunafn notanda'; +$a->strings['Account URL'] = 'Heimasíða notanda'; +$a->strings['Poll/Feed URL'] = 'Slóð á könnun/fréttastraum'; +$a->strings['New photo from this URL'] = 'Ný mynd frá slóð'; +$a->strings['Access denied.'] = 'Aðgangi hafnað.'; +$a->strings['Submit Request'] = 'Senda beiðni'; +$a->strings['Please answer the following:'] = 'Vinnsamlegast svaraðu eftirfarandi:'; +$a->strings['Your Identity Address:'] = 'Auðkennisnetfang þitt:'; +$a->strings['Profile URL'] = 'Slóð á forsíðu'; +$a->strings['Tags:'] = 'Merki:'; +$a->strings['Add a personal note:'] = 'Bæta við persónulegri athugasemd'; +$a->strings['Invalid request.'] = 'Ógild fyrirspurn.'; +$a->strings['Profile Match'] = 'Forsíða fannst'; +$a->strings['Failed to update contact record.'] = 'Ekki tókst að uppfæra tengiliðs skrá.'; +$a->strings['Contact has been unblocked'] = 'Opnað á tengilið'; +$a->strings['Contact has been blocked'] = 'Lokað á tengilið'; +$a->strings['Contact has been unignored'] = 'Tengiliður afhunsaður'; +$a->strings['Contact has been ignored'] = 'Tengiliður hunsaður'; +$a->strings['You are mutual friends with %s'] = 'Þú ert gagnkvæmur vinur %s'; +$a->strings['You are sharing with %s'] = 'Þú ert að deila með %s'; +$a->strings['%s is sharing with you'] = '%s er að deila með þér'; +$a->strings['Private communications are not available for this contact.'] = 'Einkasamtal ekki í boði fyrir þennan'; +$a->strings['Never'] = 'Aldrei'; +$a->strings['(Update was not successful)'] = '(uppfærsla tókst ekki)'; +$a->strings['(Update was successful)'] = '(uppfærsla tókst)'; +$a->strings['Suggest friends'] = 'Stinga uppá vinum'; +$a->strings['Network type: %s'] = 'Net tegund: %s'; +$a->strings['Fetch further information for feeds'] = 'Ná í ítarlegri upplýsingar um fréttaveitur'; +$a->strings['Fetch information'] = 'Ná í upplýsingar'; +$a->strings['Fetch keywords'] = 'Ná í stikkorð'; +$a->strings['Fetch information and keywords'] = 'Ná í upplýsingar og stikkorð'; +$a->strings['Contact Information / Notes'] = 'Uppl. um tengilið / minnisatriði'; +$a->strings['Contact Settings'] = 'Stillingar tengiliðar'; +$a->strings['Contact'] = 'Tengiliður'; +$a->strings['Edit contact notes'] = 'Breyta minnispunktum tengiliðs '; +$a->strings['Block/Unblock contact'] = 'útiloka/opna á tengilið'; +$a->strings['Ignore contact'] = 'Hunsa tengilið'; +$a->strings['View conversations'] = 'Skoða samtöl'; +$a->strings['Last update:'] = 'Síðasta uppfærsla:'; +$a->strings['Update public posts'] = 'Uppfæra opinberar færslur'; +$a->strings['Update now'] = 'Uppfæra núna'; +$a->strings['Currently blocked'] = 'Útilokaður sem stendur'; +$a->strings['Currently ignored'] = 'Hunsaður sem stendur'; +$a->strings['Currently archived'] = 'Í geymslu'; +$a->strings['Hide this contact from others'] = 'Gera þennan notanda ósýnilegan öðrum'; +$a->strings['Replies/likes to your public posts may still be visible'] = 'Svör eða "líkar við" á opinberar færslur þínar geta mögulega verið sýnileg öðrum'; +$a->strings['Actions'] = 'Aðgerðir'; +$a->strings['Status'] = 'Staða'; +$a->strings['Yes'] = 'Já'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Engar uppástungur tiltækar. Ef þetta er nýr vefur, reyndu þá aftur eftir um 24 klukkustundir.'; +$a->strings['No results.'] = 'Engar leitarniðurstöður.'; +$a->strings['Not available.'] = 'Ekki tiltækt.'; +$a->strings['Credits'] = 'Þakkir'; +$a->strings['Markdown::toBBCode'] = 'Markdown::toBBCode'; +$a->strings['Raw HTML input'] = 'Hrátt HTML-ílag'; +$a->strings['HTML Input'] = 'HTML Input'; +$a->strings['HTML::toBBCode'] = 'HTML::toBBCode'; +$a->strings['HTML::toPlaintext'] = 'HTML::toPlaintext'; +$a->strings['Source text'] = 'Frumtexti'; +$a->strings['BBCode'] = 'BBCode'; +$a->strings['Markdown'] = 'Markdown'; +$a->strings['HTML'] = 'HTML'; +$a->strings['Source URL'] = 'Upprunaslóð'; +$a->strings['Time Conversion'] = 'Tíma leiðréttir'; +$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica veitir þessa þjónustu til að deila atburðum milli neta og vina í óþekktum tímabeltum.'; +$a->strings['UTC time: %s'] = 'Máltími: %s'; +$a->strings['Current timezone: %s'] = 'Núverandi tímabelti: %s'; +$a->strings['Converted localtime: %s'] = 'Umbreyttur staðartími: %s'; +$a->strings['Please select your timezone:'] = 'Veldu tímabeltið þitt:'; +$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Skipta á milli auðkenna eða hópa- / stjörnunotanda sem deila þínum aðgangs upplýsingum eða þér verið úthlutað "umsýslu" réttindum.'; +$a->strings['Select an identity to manage: '] = 'Veldu notanda til að sýsla með:'; +$a->strings['No entries (some entries may be hidden).'] = 'Engar færslur (sumar geta verið faldar).'; +$a->strings['Find on this site'] = 'Leita á þessum vef'; +$a->strings['Results for:'] = 'Niðurstöður fyrir:'; +$a->strings['Site Directory'] = 'Skrá yfir tengiliði á þessum vef'; +$a->strings['- select -'] = '- veldu -'; +$a->strings['Friend suggestion sent.'] = 'Vina tillaga send'; +$a->strings['Suggest Friends'] = 'Stinga uppá vinum'; +$a->strings['Suggest a friend for %s'] = 'Stinga uppá vin fyrir %s'; +$a->strings['Bug reports and issues: please visit'] = 'Villu tilkynningar og vandamál: endilega skoða'; +$a->strings['the bugtracker at github'] = 'villuskráningu á GitHub'; +$a->strings['No profile'] = 'Engin forsíða'; +$a->strings['Help:'] = 'Hjálp:'; +$a->strings['Welcome to %s'] = 'Velkomin í %s'; +$a->strings['System check'] = 'Kerfis prófun'; +$a->strings['Next'] = 'Næsta'; +$a->strings['Check again'] = 'Prófa aftur'; +$a->strings['Database connection'] = 'Gangagrunns tenging'; +$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Til að setja upp Friendica þurfum við að vita hvernig á að tengjast gagnagrunninum þínum.'; +$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Hafðu samband við hýsingaraðilann þinn eða kerfisstjóra ef þú hefur spurningar varðandi þessar stillingar.'; +$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'Gagnagrunnurinn sem þú bendir á þarf þegar að vera til. Ef ekki þá þarf að stofna hann áður en haldið er áfram.'; +$a->strings['Database Server Name'] = 'Vélanafn gagangrunns'; +$a->strings['Database Login Name'] = 'Notendanafn í gagnagrunn'; +$a->strings['Database Login Password'] = 'Aðgangsorð í gagnagrunns'; +$a->strings['Database Name'] = 'Nafn gagnagrunns'; +$a->strings['Please select a default timezone for your website'] = 'Veldu sjálfgefið tímabelti fyrir vefsíðuna'; +$a->strings['Site settings'] = 'Stillingar vefsvæðis'; +$a->strings['Site administrator email address'] = 'Tölvupóstfang kerfisstjóra vefsvæðis'; +$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'Póstfang aðgangsins þíns verður að passa við þetta til að hægt sé að nota umsýsluvefviðmótið.'; +$a->strings['System Language:'] = 'Tungumál kerfis:'; +$a->strings['Your Friendica site database has been installed.'] = 'Friendica gagnagrunnurinn þinn hefur verið uppsettur.'; +$a->strings['%s : Not a valid email address.'] = '%s : Ekki gilt tölvupóstfang.'; +$a->strings['Please join us on Friendica'] = 'Komdu í hópinn á Friendica'; +$a->strings['%s : Message delivery failed.'] = '%s : Skilaboð komust ekki til skila.'; +$a->strings['%d message sent.'] = [ + 0 => '%d skilaboð send.', + 1 => '%d skilaboð send', +]; +$a->strings['You have no more invitations available'] = 'Þú hefur ekki fleiri boðskort.'; +$a->strings['Send invitations'] = 'Senda kynningar'; +$a->strings['Enter email addresses, one per line:'] = 'Settu inn tölvupóstföng, eitt í hverja línu:'; +$a->strings['You will need to supply this invitation code: $invite_code'] = 'Þú þarft að nota eftirfarandi boðskorta auðkenni: $invite_code'; +$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Þegar þú hefur nýskráð þig, hafðu samband við mig gegnum síðuna mína á:'; +$a->strings['System down for maintenance'] = 'Kerfið er óvirkt vegna viðhalds'; +$a->strings['Files'] = 'Skrár'; +$a->strings['Upload'] = 'Senda inn'; +$a->strings['Or - did you try to upload an empty file?'] = 'Eða - reyndirðu að senda inn tóma skrá?'; +$a->strings['File exceeds size limit of %s'] = 'Skrá fer leyfileg takmörk sem eru %s'; +$a->strings['File upload failed.'] = 'Skráar upphlöðun mistókst.'; +$a->strings['Unable to process image.'] = 'Ekki mögulegt afgreiða mynd'; +$a->strings['Image upload failed.'] = 'Ekki hægt að hlaða upp mynd.'; +$a->strings['Block Remote Contact'] = 'Útiloka fjartengdan tengilið'; +$a->strings['select all'] = 'velja alla'; +$a->strings['select none'] = 'velja ekkert'; +$a->strings['Blocked Remote Contacts'] = 'Útilokaðir fjartengdir tengiliðir'; +$a->strings['Block New Remote Contact'] = 'Útiloka nýjan fjartengdan tengilið'; +$a->strings['Photo'] = 'Ljósmynd'; +$a->strings['Block reason'] = 'Ástæða fyrir útilokun'; +$a->strings['Item marked for deletion.'] = 'Atriði merkt til eyðingar.'; +$a->strings['Delete this Item'] = 'Eyða þessu atriði'; +$a->strings['Type'] = 'Tegund'; +$a->strings['Item not found'] = 'Atriði fannst ekki'; +$a->strings['Normal Account'] = 'Venjulegur notandi'; +$a->strings['Automatic Friend Account'] = 'Verður sjálfkrafa vinur notandi'; +$a->strings['Registered users'] = 'Skráðir notendur'; +$a->strings['Pending registrations'] = 'Nýskráningar í bið'; $a->strings['%s user deleted'] = [ 0 => '%s notanda eytt', 1 => '%s notendum eytt', ]; -$a->strings['User \'%s\' deleted'] = 'Notanda \'%s\' eytt'; -$a->strings['User \'%s\' unblocked'] = 'Notanda \'%s\' gefið frelsi'; -$a->strings['User \'%s\' blocked'] = 'Notandi \'%s\' settur í bann'; -$a->strings['Private Forum'] = 'Einkaspjallsvæði'; -$a->strings['Email'] = 'Tölvupóstur'; $a->strings['Register date'] = 'Skráningardagur'; $a->strings['Last login'] = 'Síðast innskráður'; -$a->strings['Last item'] = 'Síðasta atriði'; -$a->strings['Type'] = 'Tegund'; -$a->strings['Add User'] = 'Bæta við notanda'; -$a->strings['User registrations waiting for confirm'] = 'Skráning notanda býður samþykkis'; -$a->strings['Request date'] = 'Dagsetning beiðnar'; -$a->strings['No registrations.'] = 'Engin skráning'; -$a->strings['Approve'] = 'Samþykkja'; -$a->strings['Deny'] = 'Hafnað'; $a->strings['Site admin'] = 'Vefstjóri'; $a->strings['Account expired'] = 'Notandaaðgangur útrunninn'; -$a->strings['New User'] = 'Nýr notandi'; -$a->strings['Deleted since'] = 'Eytt síðan'; $a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Valdir notendur verður eytt!\n\nAllt sem þessir notendur hafa deilt á þessum vef verður varanlega eytt!\n\nErtu alveg viss?'; $a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Notandinn {0} verður eytt!\n\nAllt sem þessi notandi hefur deilt á þessum vef veður varanlega eytt!\n\nErtu alveg viss?'; +$a->strings['New User'] = 'Nýr notandi'; +$a->strings['Add User'] = 'Bæta við notanda'; $a->strings['Nickname'] = 'Stuttnefni'; -$a->strings['Disable'] = 'Gera óvirkt'; -$a->strings['Enable'] = 'Virkja'; -$a->strings['Toggle'] = 'Skipta'; -$a->strings['Author: '] = 'Höfundur:'; -$a->strings['Maintainer: '] = 'Umsjónarmaður: '; -$a->strings['No themes found.'] = 'Engin þemu fundust'; -$a->strings['Screenshot'] = 'Skjámynd'; -$a->strings['[Experimental]'] = '[Á tilraunastigi]'; -$a->strings['[Unsupported]'] = '[Óstutt]'; -$a->strings['Log settings updated.'] = 'Stillingar atburðaskrár uppfærðar. '; -$a->strings['Clear'] = 'Hreinsa'; -$a->strings['Log file'] = 'Atburðaskrá'; -$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Vefþjónn verður að hafa skrifréttindi. Afstætt við Friendica rótar skráarsafn.'; -$a->strings['Log level'] = 'Stig atburðaskráningar'; -$a->strings['Off'] = 'Slökkt'; -$a->strings['On'] = 'Kveikt'; -$a->strings['Profile not found.'] = 'Forsíða fannst ekki.'; -$a->strings['Response from remote site was not understood.'] = 'Ekki tókst að skilja svar frá fjartengdum vef.'; -$a->strings['Unexpected response from remote site: '] = 'Óskiljanlegt svar frá fjartengdum vef:'; -$a->strings['Confirmation completed successfully.'] = 'Staðfesting kláraði eðlilega.'; -$a->strings['Temporary failure. Please wait and try again.'] = 'Tímabundin villa. Bíddu aðeins og reyndu svo aftur.'; -$a->strings['Introduction failed or was revoked.'] = 'Kynning mistókst eða var afturkölluð.'; -$a->strings['Remote site reported: '] = 'Fjartengdur vefur svaraði:'; -$a->strings['Unable to set contact photo.'] = 'Ekki tókst að setja tengiliðamynd.'; -$a->strings['No user record found for \'%s\' '] = 'Engin notandafærsla fannst fyrir \'%s\''; -$a->strings['Our site encryption key is apparently messed up.'] = 'Dulkóðunnar lykill síðunnar okker er í döðlu.'; -$a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'Tómt slóð var uppgefin eða ekki okkur tókst ekki að afkóða slóð.'; -$a->strings['Contact record was not found for you on our site.'] = 'Tengiliðafærslan þín fannst ekki á þjóninum okkar.'; -$a->strings['Site public key not available in contact record for URL %s.'] = 'Opinber lykill er ekki til í tengiliðafærslu fyrir slóð %s.'; -$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'Skilríkið sem þjónninn þinn gaf upp er þegar afritað á okkar þjón. Þetta ætti að virka ef þú bara reynir aftur.'; -$a->strings['Unable to set your contact credentials on our system.'] = 'Ekki tókst að setja tengiliða skilríkið þitt upp á þjóninum okkar.'; -$a->strings['Unable to update your contact profile details on our system'] = 'Ekki tókst að uppfæra tengiliða skilríkis upplýsingarnar á okkar þjón'; -$a->strings['[Name Withheld]'] = '[Nafn ekki sýnt]'; -$a->strings['This introduction has already been accepted.'] = 'Þessi kynning hefur þegar verið samþykkt.'; -$a->strings['Profile location is not valid or does not contain profile information.'] = 'Forsíðu slóð er ekki í lagi eða inniheldur ekki forsíðu upplýsingum.'; -$a->strings['Warning: profile location has no identifiable owner name.'] = 'Aðvörun: forsíðu staðsetning hefur ekki aðgreinanlegt eigendanafn.'; -$a->strings['Warning: profile location has no profile photo.'] = 'Aðvörun: forsíðu slóð hefur ekki forsíðu mynd.'; -$a->strings['%d required parameter was not found at the given location'] = [ - 0 => '%d skilyrt breyta fannst ekki á uppgefinni staðsetningu', - 1 => '%d skilyrtar breytur fundust ekki á uppgefninni staðsetningu', -]; -$a->strings['Introduction complete.'] = 'Kynning tilbúinn.'; -$a->strings['Unrecoverable protocol error.'] = 'Alvarleg samskipta villa.'; -$a->strings['Profile unavailable.'] = 'Ekki hægt að sækja forsíðu'; -$a->strings['%s has received too many connection requests today.'] = '%s hefur fengið of margar tengibeiðnir í dag.'; -$a->strings['Spam protection measures have been invoked.'] = 'Kveikt hefur verið á ruslsíu'; -$a->strings['Friends are advised to please try again in 24 hours.'] = 'Vinir eru beðnir um að reyna aftur eftir 24 klukkustundir.'; -$a->strings['Invalid locator'] = 'Ógild staðsetning'; -$a->strings['You have already introduced yourself here.'] = 'Kynning hefur þegar átt sér stað hér.'; -$a->strings['Apparently you are already friends with %s.'] = 'Þú ert þegar vinur %s.'; -$a->strings['Invalid profile URL.'] = 'Ógild forsíðu slóð.'; -$a->strings['Disallowed profile URL.'] = 'Óleyfileg forsíðu slóð.'; -$a->strings['Your introduction has been sent.'] = 'Kynningin þín hefur verið send.'; -$a->strings['Please login to confirm introduction.'] = 'Skráðu þig inn til að staðfesta kynningu.'; -$a->strings['Incorrect identity currently logged in. Please login to this profile.'] = 'Ekki réttur notandi skráður inn. Skráðu þig inn sem þessi notandi.'; -$a->strings['Confirm'] = 'Staðfesta'; -$a->strings['Hide this contact'] = 'Fela þennan tengilið'; -$a->strings['Welcome home %s.'] = 'Velkomin(n) heim %s.'; -$a->strings['Please confirm your introduction/connection request to %s.'] = 'Staðfestu kynninguna/tengibeiðnina við %s.'; -$a->strings['Please enter your \'Identity Address\' from one of the following supported communications networks:'] = 'Settu inn \'Auðkennisnetfang\' þitt úr einhverjum af eftirfarandi samskiptanetum:'; -$a->strings['Friend/Connection Request'] = 'Vinabeiðni/Tengibeiðni'; -$a->strings['Friendica'] = 'Friendica'; -$a->strings['GNU Social (Pleroma, Mastodon)'] = 'GNU Social (Pleroma, Mastodon)'; -$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings['Unable to locate original post.'] = 'Ekki tókst að finna upphaflega færslu.'; -$a->strings['Empty post discarded.'] = 'Tóm færsla eytt.'; -$a->strings['This message was sent to you by %s, a member of the Friendica social network.'] = 'Skilaboðið sendi %s, notandi á Friendica samfélagsnetinu.'; -$a->strings['You may visit them online at %s'] = 'Þú getur heimsótt þau á netinu á %s'; -$a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Hafðu samband við sendanda með því að svara á þessari færslu ef þú villt ekki fá þessi skilaboð.'; -$a->strings['%s posted an update.'] = '%s hefur sent uppfærslu.'; -$a->strings['Invalid request identifier.'] = 'Ógilt auðkenni beiðnar.'; -$a->strings['Discard'] = 'Henda'; -$a->strings['Notifications'] = 'Tilkynningar'; -$a->strings['Network Notifications'] = 'Tilkynningar á neti'; -$a->strings['Personal Notifications'] = 'Einkatilkynningar.'; -$a->strings['Home Notifications'] = 'Tilkynningar frá heimasvæði'; +$a->strings['Account approved.'] = 'Notandi samþykktur.'; +$a->strings['Request date'] = 'Dagsetning beiðnar'; +$a->strings['No registrations.'] = 'Engin skráning'; +$a->strings['Deny'] = 'Hafnað'; $a->strings['Show Ignored Requests'] = 'Sýna hunsaðar beiðnir'; $a->strings['Hide Ignored Requests'] = 'Fela hunsaðar beiðnir'; -$a->strings['Notification type: '] = 'Gerð skilaboða: '; -$a->strings['suggested by %s'] = 'stungið uppá af %s'; $a->strings['Claims to be known to you: '] = 'Þykist þekkja þig:'; -$a->strings['yes'] = 'já'; -$a->strings['no'] = 'nei'; +$a->strings['No'] = 'Nei'; $a->strings['Friend'] = 'Vin'; -$a->strings['Sharer'] = 'Deilir'; $a->strings['Subscriber'] = 'Áskrifandi'; $a->strings['No introductions.'] = 'Engar kynningar.'; -$a->strings['Show unread'] = 'Birta ólesið'; -$a->strings['Show all'] = 'Birta allt'; $a->strings['No more %s notifications.'] = 'Ekki fleiri %s tilkynningar.'; -$a->strings['Requested profile is not available.'] = 'Umbeðin forsíða ekki til.'; +$a->strings['Network Notifications'] = 'Tilkynningar á neti'; +$a->strings['System Notifications'] = 'Kerfistilkynningar'; +$a->strings['Personal Notifications'] = 'Einkatilkynningar.'; +$a->strings['Home Notifications'] = 'Tilkynningar frá heimasvæði'; +$a->strings['Show unread'] = 'Birta ólesið'; +$a->strings['{0} requested registration'] = '{0} óskaði eftir skráningu'; +$a->strings['Authorize application connection'] = 'Leyfa forriti að tengjast'; +$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengiliðum, og/eða stofna nýjar færslur fyrir þig?'; +$a->strings['Keep this window open until done.'] = 'Halda þessum glugga opnum þar til öllu er lokið.'; +$a->strings['No contact provided.'] = 'Enginn tengiliður uppgefinn.'; +$a->strings['Done'] = 'Lokið'; +$a->strings['success'] = 'tókst'; +$a->strings['failed'] = 'mistókst'; +$a->strings['ignored'] = 'hunsað'; +$a->strings['Remote privacy information not available.'] = 'Persónuverndarupplýsingar ekki fyrir hendi á fjartengdum vefþjóni.'; +$a->strings['Visible to:'] = 'Sýnilegt eftirfarandi:'; +$a->strings['Edit post'] = 'Breyta skilaboðum'; +$a->strings['web link'] = 'vefslóð'; +$a->strings['Insert video link'] = 'Setja inn slóð á myndskeið'; +$a->strings['video link'] = 'slóð á myndskeið'; +$a->strings['Insert audio link'] = 'Setja inn slóð á hljóðskrá'; +$a->strings['audio link'] = 'slóð á hljóðskrá'; +$a->strings['Remove Item Tag'] = 'Fjarlægja merki '; +$a->strings['Select a tag to remove: '] = 'Veldu merki til að fjarlægja:'; +$a->strings['Remove'] = 'Fjarlægja'; +$a->strings['No contacts.'] = 'Enginn tengiliður'; $a->strings['%s\'s timeline'] = 'Tímalína fyrir %s'; $a->strings['%s\'s posts'] = 'Færslur frá %s'; $a->strings['%s\'s comments'] = 'Athugasemdir frá %s'; -$a->strings['Tips for New Members'] = 'Ábendingar fyrir nýja notendur'; -$a->strings['Profile deleted.'] = 'Forsíðu eytt.'; -$a->strings['Profile-'] = 'Forsíða-'; -$a->strings['New profile created.'] = 'Ný forsíða búinn til.'; -$a->strings['Profile unavailable to clone.'] = 'Ekki tókst að klóna forsíðu'; -$a->strings['Profile Name is required.'] = 'Nafn á forsíðu er skilyrði'; -$a->strings['Marital Status'] = 'Hjúskaparstaða'; -$a->strings['Work/Employment'] = 'Atvinna/Starf'; -$a->strings['Religion'] = 'Trúarbrögð'; -$a->strings['Political Views'] = 'Stórnmálaskoðanir'; -$a->strings['Gender'] = 'Kyn'; -$a->strings['Sexual Preference'] = 'Kynhneigð'; -$a->strings['XMPP'] = 'XMPP'; -$a->strings['Homepage'] = 'Heimasíða'; -$a->strings['Interests'] = 'Áhugamál'; -$a->strings['Location'] = 'Staðsetning'; -$a->strings['Profile updated.'] = 'Forsíða uppfærð.'; -$a->strings['Hide contacts and friends:'] = 'Fela tengiliði og vini'; -$a->strings['Hide your contact/friend list from viewers of this profile?'] = 'Fela tengiliða-/vinalista á þessari forsíðu?'; -$a->strings['Edit Profile Details'] = 'Breyta forsíðu upplýsingum'; -$a->strings['Change Profile Photo'] = 'Breyta forsíðumynd'; -$a->strings['View this profile'] = 'Skoða þessa forsíðu'; -$a->strings['Edit visibility'] = 'Sýsla með sýnileika'; -$a->strings['Create a new profile using these settings'] = 'Búa til nýja forsíðu með þessum stillingum'; -$a->strings['Clone this profile'] = 'Klóna þessa forsíðu'; -$a->strings['Delete this profile'] = 'Eyða þessari forsíðu'; -$a->strings['Basic information'] = 'Grunnupplýsingar'; -$a->strings['Profile picture'] = 'Notandamynd'; -$a->strings['Preferences'] = 'Kjörstillingar'; -$a->strings['Additional information'] = 'Viðbótarupplýsingar'; -$a->strings['Relation'] = 'Vensl'; -$a->strings['Miscellaneous'] = 'Ýmislegt'; -$a->strings['Your Gender:'] = 'Kyn:'; -$a->strings[' Marital Status:'] = ' Hjúskaparstaða:'; -$a->strings['Sexual Preference:'] = 'Kynhneigð:'; -$a->strings['Example: fishing photography software'] = 'Til dæmis: fishing photography software'; -$a->strings['Profile Name:'] = 'Forsíðu nafn:'; -$a->strings['This is your public profile.
    It may be visible to anybody using the internet.'] = 'Þetta er opinber forsíða.
    Hún verður sjáanleg öðrum sem nota alnetið.'; -$a->strings['Your Full Name:'] = 'Fullt nafn:'; -$a->strings['Title/Description:'] = 'Starfsheiti/Lýsing:'; -$a->strings['Street Address:'] = 'Gata:'; -$a->strings['Locality/City:'] = 'Bær/Borg:'; -$a->strings['Region/State:'] = 'Svæði/Sýsla'; -$a->strings['Postal/Zip Code:'] = 'Póstnúmer:'; -$a->strings['Country:'] = 'Land:'; +$a->strings['Image file is missing'] = 'Myndskrá vantar'; +$a->strings['Image file is empty.'] = 'Mynda skrá er tóm.'; +$a->strings['View Album'] = 'Skoða myndabók'; +$a->strings['Profile not found.'] = 'Forsíða fannst ekki.'; +$a->strings['Full Name:'] = 'Fullt nafn:'; +$a->strings['Member since:'] = 'Meðlimur síðan:'; +$a->strings['j F, Y'] = 'j F, Y'; +$a->strings['j F'] = 'j F'; +$a->strings['Birthday:'] = 'Afmælisdagur:'; $a->strings['Age: '] = 'Aldur: '; -$a->strings['Who: (if applicable)'] = 'Hver: (ef við á)'; -$a->strings['Examples: cathy123, Cathy Williams, cathy@example.com'] = 'Dæmi: cathy123, Cathy Williams, cathy@example.com'; -$a->strings['Since [date]:'] = 'Síðan [date]:'; -$a->strings['Tell us about yourself...'] = 'Segðu okkur frá sjálfum þér...'; -$a->strings['XMPP (Jabber) address:'] = 'XMPP (Jabber) vistfang:'; -$a->strings['Homepage URL:'] = 'Slóð heimasíðu:'; -$a->strings['Hometown:'] = 'Heimabær:'; -$a->strings['Political Views:'] = 'Stórnmálaskoðanir:'; -$a->strings['Religious Views:'] = 'Trúarskoðanir'; -$a->strings['Public Keywords:'] = 'Opinber leitarorð:'; -$a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)'; -$a->strings['Private Keywords:'] = 'Einka leitarorð:'; -$a->strings['(Used for searching profiles, never shown to others)'] = '(Notað við leit að öðrum notendum, aldrei sýnt öðrum)'; -$a->strings['Likes:'] = 'Líkar:'; -$a->strings['Dislikes:'] = 'Mislíkar:'; -$a->strings['Musical interests'] = 'Tónlistarsmekkur'; -$a->strings['Books, literature'] = 'Bækur, bókmenntir'; -$a->strings['Television'] = 'Sjónvarp'; -$a->strings['Film/dance/culture/entertainment'] = 'Kvikmyndir/dans/menning/afþreying'; -$a->strings['Hobbies/Interests'] = 'Áhugamál'; -$a->strings['Love/romance'] = 'Ást/rómantík'; -$a->strings['Work/employment'] = 'Atvinna:'; -$a->strings['School/education'] = 'Skóli/menntun'; -$a->strings['Contact information and Social Networks'] = 'Tengiliðaupplýsingar og samfélagsnet'; -$a->strings['Profile Image'] = 'Forsíðumynd'; -$a->strings['visible to everybody'] = 'sýnilegt öllum'; -$a->strings['Edit/Manage Profiles'] = 'Sýsla með forsíður'; -$a->strings['Change profile photo'] = 'Breyta forsíðumynd'; -$a->strings['Create New Profile'] = 'Stofna nýja forsíðu'; -$a->strings['Registration successful. Please check your email for further instructions.'] = 'Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti.'; -$a->strings['Registration successful.'] = 'Nýskráning tókst.'; -$a->strings['Your registration can not be processed.'] = 'Skráninguna þína er ekki hægt að vinna.'; -$a->strings['Your registration is pending approval by the site owner.'] = 'Skráningin þín bíður samþykkis af eiganda síðunnar.'; -$a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \'Register\'.'] = 'Þú mátt (valfrjálst) fylla í þetta svæði gegnum OpenID með því gefa upp þitt OpenID og ýta á \'Skrá\'.'; +$a->strings['Description:'] = 'Lýsing:'; +$a->strings['Profile unavailable.'] = 'Ekki hægt að sækja forsíðu'; +$a->strings['Invalid locator'] = 'Ógild staðsetning'; +$a->strings['Friend/Connection Request'] = 'Vinabeiðni/Tengibeiðni'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Þessi vefur hefur náð hámarks fjölda daglegra nýskráninga. Reyndu aftur á morgun.'; $a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Ef þú veist ekki hvað OpenID er, skildu þá þetta svæði eftir tómt en fylltu í restin af svæðunum.'; $a->strings['Your OpenID (optional): '] = 'Þitt OpenID (valfrjálst):'; $a->strings['Include your profile in member directory?'] = 'Á forsíðan þín að sjást í notendalistanum?'; @@ -1048,99 +797,33 @@ $a->strings['Membership on this site is by invitation only.'] = 'Aðild að þes $a->strings['New Password:'] = 'Nýtt aðgangsorð:'; $a->strings['Confirm:'] = 'Staðfesta:'; $a->strings['Choose a nickname: '] = 'Veldu gælunafn:'; -$a->strings['Register'] = 'Nýskrá'; -$a->strings['Remove My Account'] = 'Eyða þessum notanda'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft.'; -$a->strings['Please enter your password for verification:'] = 'Sláðu inn aðgangsorð yðar:'; -$a->strings['Account'] = 'Notandi'; -$a->strings['Display'] = 'Birting'; -$a->strings['Social Networks'] = 'Samfélagsnet'; -$a->strings['Connected apps'] = 'Tengd forrit'; -$a->strings['Remove account'] = 'Henda tengilið'; -$a->strings['Missing some important data!'] = 'Vantar mikilvæg gögn!'; -$a->strings['Failed to connect with email account using the settings provided.'] = 'Ekki tókst að tengjast við pósthólf með stillingum sem uppgefnar eru.'; -$a->strings['Email settings updated.'] = 'Stillingar póstfangs uppfærðar.'; -$a->strings['Passwords do not match. Password unchanged.'] = 'Aðgangsorð ber ekki saman. Aðgangsorð óbreytt.'; -$a->strings['Empty passwords are not allowed. Password unchanged.'] = 'Tóm aðgangsorð eru ekki leyfileg. Aðgangsorð óbreytt.'; -$a->strings['Wrong password.'] = 'Rangt lykilorð.'; -$a->strings['Password changed.'] = 'Aðgangsorði breytt.'; -$a->strings['Password update failed. Please try again.'] = 'Uppfærsla á aðgangsorði tókst ekki. Reyndu aftur.'; -$a->strings[' Please use a shorter name.'] = ' Notaðu styttra nafn.'; -$a->strings[' Name too short.'] = 'Nafn of stutt.'; -$a->strings['Wrong Password'] = 'Rangt lykilorð'; +$a->strings['Import'] = 'Flytja inn'; +$a->strings['Registration successful. Please check your email for further instructions.'] = 'Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti.'; +$a->strings['Registration successful.'] = 'Nýskráning tókst.'; +$a->strings['Your registration can not be processed.'] = 'Skráninguna þína er ekki hægt að vinna.'; +$a->strings['Your registration is pending approval by the site owner.'] = 'Skráningin þín bíður samþykkis af eiganda síðunnar.'; +$a->strings['Only logged in users are permitted to perform a search.'] = 'Aðeins innskráðir notendur geta framkvæmt leit.'; +$a->strings['Only one search per minute is permitted for not logged in users.'] = 'Notendur sem ekki eru innskráðir geta aðeins framkvæmt eina leit á mínútu.'; +$a->strings['Items tagged with: %s'] = 'Atriði merkt með: %s'; +$a->strings['Create a New Account'] = 'Stofna nýjan notanda'; +$a->strings['Or login using OpenID: '] = 'Eða auðkenna með OpenID: '; +$a->strings['Password: '] = 'Aðgangsorð: '; +$a->strings['Remember me'] = 'Muna eftir mér'; +$a->strings['Forgot your password?'] = 'Gleymt lykilorð?'; +$a->strings['Website Terms of Service'] = 'Þjónustuskilmálar vefsvæðis'; +$a->strings['terms of service'] = 'þjónustuskilmálar'; +$a->strings['Website Privacy Policy'] = 'Persónuverndarstefna'; +$a->strings['privacy policy'] = 'persónuverndarstefna'; +$a->strings['Logged out.'] = 'Skráður út.'; +$a->strings['Current Password:'] = 'Núverandi lykilorð:'; $a->strings['Invalid email.'] = 'Ógilt tölvupóstfang.'; -$a->strings['Settings updated.'] = 'Stillingar uppfærðar.'; -$a->strings['Add application'] = 'Bæta við forriti'; -$a->strings['Consumer Key'] = 'Notenda lykill'; -$a->strings['Consumer Secret'] = 'Notenda leyndarmál'; -$a->strings['Redirect'] = 'Áframsenda'; -$a->strings['Icon url'] = 'Táknmyndar slóð'; -$a->strings['You can\'t edit this application.'] = 'Þú getur ekki breytt þessu forriti.'; -$a->strings['Connected Apps'] = 'Tengd forrit'; -$a->strings['Edit'] = 'Breyta'; -$a->strings['Client key starts with'] = 'Lykill viðskiptavinar byrjar á'; -$a->strings['No name'] = 'Ekkert nafn'; -$a->strings['Remove authorization'] = 'Fjarlæga auðkenningu'; -$a->strings['Additional Features'] = 'Viðbótareiginleikar'; -$a->strings['Diaspora'] = 'Diaspora'; -$a->strings['enabled'] = 'kveikt'; -$a->strings['disabled'] = 'slökkt'; -$a->strings['Built-in support for %s connectivity is %s'] = 'Innbyggður stuðningur fyrir %s tenging er%s'; -$a->strings['GNU Social (OStatus)'] = 'GNU Social (OStatus)'; -$a->strings['Email access is disabled on this site.'] = 'Slökkt hefur verið á tölvupóst aðgang á þessum þjón.'; -$a->strings['General Social Media Settings'] = 'Almennar stillingar samfélagsmiðla'; -$a->strings['Email/Mailbox Setup'] = 'Tölvupóstur stilling'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Ef þú villt hafa samskipti við tölvupóststengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu.'; -$a->strings['Last successful email check:'] = 'Síðasta prófun á tölvupóstfangi:'; -$a->strings['IMAP server name:'] = 'IMAP þjónn:'; -$a->strings['IMAP port:'] = 'IMAP port:'; -$a->strings['Security:'] = 'Öryggi:'; -$a->strings['None'] = 'Ekkert'; -$a->strings['Email login name:'] = 'Notandanafn tölvupóstfangs:'; -$a->strings['Email password:'] = 'Lykilorð tölvupóstfangs:'; -$a->strings['Reply-to address:'] = 'Svarpóstfang:'; -$a->strings['Send public posts to all email contacts:'] = 'Senda opinberar færslur á alla tölvupóst viðtakendur:'; -$a->strings['Mark as seen'] = 'Merka sem séð'; -$a->strings['Move to folder'] = 'Flytja yfir í skrásafn'; -$a->strings['Move to folder:'] = 'Flytja yfir í skrásafn:'; -$a->strings['%s - (Unsupported)'] = '%s - (ekki stutt)'; -$a->strings['%s - (Experimental)'] = '%s - (á tilraunastigi)'; -$a->strings['Display Settings'] = 'Birtingarstillingar'; -$a->strings['Display Theme:'] = 'Útlits þema:'; -$a->strings['Mobile Theme:'] = 'Farsímaþema'; -$a->strings['Update browser every xx seconds'] = 'Endurhlaða vefsíðu á xx sekúndu fresti'; -$a->strings['Don\'t show emoticons'] = 'Ekki birta tjáningartákn'; -$a->strings['Calendar'] = 'Dagatal'; -$a->strings['Beginning of week:'] = 'Upphaf viku:'; -$a->strings['Don\'t show notices'] = 'Ekki birta tilkynningar'; -$a->strings['Content Settings'] = 'Stillingar efnis'; -$a->strings['Theme settings'] = 'Þemastillingar'; -$a->strings['Account Types'] = 'Gerðir notendaaðganga'; -$a->strings['Private Forum [Experimental]'] = 'Einkaspjallsvæði [á tilraunastigi]'; $a->strings['OpenID:'] = 'OpenID:'; $a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Valfrjálst) Leyfa þessu OpenID til að auðkennast sem þessi notandi.'; -$a->strings['Publish your default profile in your local site directory?'] = 'Gefa út sjálfgefna forsíðu í tengiliðalista á þessum þjón?'; -$a->strings['Publish your default profile in the global social directory?'] = 'Gefa sjálfgefna forsíðu út í alheimstengiliðalista?'; -$a->strings['Hide your contact/friend list from viewers of your default profile?'] = 'Fela tengiliða-/vinalistann þinn fyrir áhorfendum á sjálfgefinni forsíðu?'; -$a->strings['Allow friends to post to your profile page?'] = 'Leyfa vinum að deila á forsíðuna þína?'; -$a->strings['Allow friends to tag your posts?'] = 'Leyfa vinum að merkja færslurnar þínar?'; -$a->strings['Allow us to suggest you as a potential friend to new members?'] = 'Leyfa að stungið verði uppá þér sem hugsamlegum vinur fyrir aðra notendur? '; -$a->strings['Profile is not published.'] = 'Forsíðu hefur ekki verið gefinn út.'; -$a->strings['Automatically expire posts after this many days:'] = 'Sjálfkrafa fyrna færslu eftir hvað marga daga:'; -$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Tómar færslur renna ekki út. Útrunnum færslum er eytt'; -$a->strings['Advanced expiration settings'] = 'Ítarlegar stillingar fyrningatíma'; -$a->strings['Advanced Expiration'] = 'Flókin fyrning'; -$a->strings['Expire posts:'] = 'Fyrna færslur:'; -$a->strings['Expire personal notes:'] = 'Fyrna einka glósur:'; -$a->strings['Expire starred posts:'] = 'Fyrna stjörnumerktar færslur:'; -$a->strings['Expire photos:'] = 'Fyrna myndum:'; $a->strings['Account Settings'] = 'Stillingar aðgangs'; $a->strings['Password Settings'] = 'Stillingar aðgangsorða'; $a->strings['Leave password fields blank unless changing'] = 'Hafðu aðgangsorða svæði tóm nema þegar verið er að breyta'; -$a->strings['Current Password:'] = 'Núverandi lykilorð:'; $a->strings['Password:'] = 'Lykilorð:'; $a->strings['Basic Settings'] = 'Grunnstillingar'; -$a->strings['Full Name:'] = 'Fullt nafn:'; $a->strings['Email Address:'] = 'Tölvupóstfang:'; $a->strings['Your Timezone:'] = 'Þitt tímabelti:'; $a->strings['Your Language:'] = 'Tungumálið þitt:'; @@ -1149,11 +832,11 @@ $a->strings['Use Browser Location:'] = 'Nota vafra staðsetningu:'; $a->strings['Security and Privacy Settings'] = 'Öryggis og friðhelgistillingar'; $a->strings['Maximum Friend Requests/Day:'] = 'Hámarks vinabeiðnir á dag:'; $a->strings['(to prevent spam abuse)'] = '(til að koma í veg fyrir rusl misnotkun)'; +$a->strings['Allow friends to post to your profile page?'] = 'Leyfa vinum að deila á forsíðuna þína?'; +$a->strings['Allow friends to tag your posts?'] = 'Leyfa vinum að merkja færslurnar þínar?'; $a->strings['Default Post Permissions'] = 'Sjálfgefnar aðgangstýring á færslum'; -$a->strings['(click to open/close)'] = '(ýttu á til að opna/loka)'; -$a->strings['Default Private Post'] = 'Sjálfgefin einkafærsla'; -$a->strings['Default Public Post'] = 'Sjálfgefin opinber færsla'; -$a->strings['Default Permissions for New Posts'] = 'Sjálfgefnar heimildir á nýjum færslum'; +$a->strings['Automatically expire posts after this many days:'] = 'Sjálfkrafa fyrna færslu eftir hvað marga daga:'; +$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Tómar færslur renna ekki út. Útrunnum færslum er eytt'; $a->strings['Notification Settings'] = 'Stillingar á tilkynningum'; $a->strings['Send a notification email when:'] = 'Senda tilkynningapóst þegar:'; $a->strings['You receive an introduction'] = 'Þú færð kynningu'; @@ -1163,360 +846,136 @@ $a->strings['Someone writes a followup comment'] = 'Einhver skrifar athugasemd $a->strings['You receive a private message'] = 'Þú færð einkaskilaboð'; $a->strings['You receive a friend suggestion'] = 'Þér hefur borist vina uppástunga'; $a->strings['You are tagged in a post'] = 'Þú varst merkt(ur) í færslu'; -$a->strings['You are poked/prodded/etc. in a post'] = 'Það var potað/ýtt/o.s.frv. við þér í færslu'; $a->strings['Relocate'] = 'Endurstaðsetja'; -$a->strings['default'] = 'sjálfgefið'; -$a->strings['Variations'] = 'Tilbrigði'; -$a->strings['Top Banner'] = 'Borði efst'; -$a->strings['Full screen'] = 'Skjáfylli'; -$a->strings['Mosaic'] = 'Mósaík'; -$a->strings['Custom'] = 'Sérsniðið'; -$a->strings['Note'] = 'Minnispunktur'; -$a->strings['Select color scheme'] = 'Veldu litastef'; -$a->strings['Link color'] = 'Litur tengils'; -$a->strings['Set the background color'] = 'Stilltu bakgrunnslit'; -$a->strings['Background image style'] = 'Stíll bakgrunnsmyndar'; -$a->strings['Guest'] = 'Gestur'; -$a->strings['Visitor'] = 'Í heimsókn'; -$a->strings['Logout'] = 'Útskráning'; -$a->strings['End this session'] = 'Loka þessu innliti'; -$a->strings['Your posts and conversations'] = 'Samtölin þín'; -$a->strings['Your profile page'] = 'Forsíðan þín'; -$a->strings['Your photos'] = 'Myndirnar þínar'; -$a->strings['Videos'] = 'Myndskeið'; -$a->strings['Your videos'] = 'Myndskeiðin þín'; -$a->strings['Your events'] = 'Atburðirnir þínir'; -$a->strings['Conversations from your friends'] = 'Samtöl frá vinum'; -$a->strings['Events and Calendar'] = 'Atburðir og dagskrá'; -$a->strings['Private mail'] = 'Einka skilaboð'; -$a->strings['Account settings'] = 'Stillingar aðgangsreiknings'; -$a->strings['Manage/edit friends and contacts'] = 'Sýsla með vini og tengiliði'; -$a->strings['Alignment'] = 'Hliðjöfnun'; -$a->strings['Left'] = 'Vinstri'; -$a->strings['Center'] = 'Miðjað'; -$a->strings['Color scheme'] = 'Litastef'; -$a->strings['Posts font size'] = 'Leturstærð færslna'; -$a->strings['Textareas font size'] = 'Leturstærð textareita'; -$a->strings['don\'t show'] = 'fela'; -$a->strings['show'] = 'sýna'; -$a->strings['Set style'] = 'Setja stíl'; -$a->strings['Community Pages'] = 'Síður samfélagsins'; -$a->strings['Community Profiles'] = 'Forsíður samfélagsins'; -$a->strings['Help or @NewHere ?'] = 'Hjálp eða @NýrHér ?'; -$a->strings['Connect Services'] = 'Tengja þjónustur'; -$a->strings['Find Friends'] = 'Finna vini'; -$a->strings['Last users'] = 'Nýjustu notendurnir'; -$a->strings['Find People'] = 'Finna fólk'; -$a->strings['Enter name or interest'] = 'Settu inn nafn eða áhugamál'; -$a->strings['Examples: Robert Morgenstein, Fishing'] = 'Dæmi: Jón Jónsson, Veiði'; -$a->strings['Similar Interests'] = 'Svipuð áhugamál'; -$a->strings['Random Profile'] = 'Forsíða af handahófi'; -$a->strings['Invite Friends'] = 'Bjóða vinum aðgang'; -$a->strings['Local Directory'] = 'Staðvær mappa'; -$a->strings['External link to forum'] = 'Ytri tengill á spjallsvæði'; -$a->strings['Post to Email'] = 'Senda skilaboð á tölvupóst'; -$a->strings['Hide your profile details from unknown viewers?'] = 'Fela forsíðuupplýsingar fyrir óþekktum?'; -$a->strings['Visible to everybody'] = 'Sjáanlegt öllum'; -$a->strings['Close'] = 'Loka'; -$a->strings['Enter new password: '] = 'Settu inn nýtt lykilorð: '; -$a->strings['Password can\'t be empty'] = 'Lykilorð getur ekki verið autt'; -$a->strings['System'] = 'Kerfi'; -$a->strings['Home'] = 'Heim'; -$a->strings['Introductions'] = 'Kynningar'; -$a->strings['%s commented on %s\'s post'] = '%s athugasemd við %s\'s færslu'; -$a->strings['%s created a new post'] = '%s bjó til færslu'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'Ekki tókst að tengjast við pósthólf með stillingum sem uppgefnar eru.'; +$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; +$a->strings['Email access is disabled on this site.'] = 'Slökkt hefur verið á tölvupóst aðgang á þessum þjón.'; +$a->strings['None'] = 'Ekkert'; +$a->strings['General Social Media Settings'] = 'Almennar stillingar samfélagsmiðla'; +$a->strings['Email/Mailbox Setup'] = 'Tölvupóstur stilling'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Ef þú villt hafa samskipti við tölvupóststengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu.'; +$a->strings['Last successful email check:'] = 'Síðasta prófun á tölvupóstfangi:'; +$a->strings['IMAP server name:'] = 'IMAP þjónn:'; +$a->strings['IMAP port:'] = 'IMAP port:'; +$a->strings['Security:'] = 'Öryggi:'; +$a->strings['Email login name:'] = 'Notandanafn tölvupóstfangs:'; +$a->strings['Email password:'] = 'Lykilorð tölvupóstfangs:'; +$a->strings['Reply-to address:'] = 'Svarpóstfang:'; +$a->strings['Send public posts to all email contacts:'] = 'Senda opinberar færslur á alla tölvupóst viðtakendur:'; +$a->strings['Move to folder'] = 'Flytja yfir í skrásafn'; +$a->strings['Move to folder:'] = 'Flytja yfir í skrásafn:'; +$a->strings['Add'] = 'Bæta við'; +$a->strings['No entries.'] = 'Engar færslur.'; +$a->strings['%s - (Unsupported)'] = '%s - (ekki stutt)'; +$a->strings['Display Settings'] = 'Birtingarstillingar'; +$a->strings['Content Settings'] = 'Stillingar efnis'; +$a->strings['Theme settings'] = 'Þemastillingar'; +$a->strings['Display Theme:'] = 'Útlits þema:'; +$a->strings['Mobile Theme:'] = 'Farsímaþema'; +$a->strings['Update browser every xx seconds'] = 'Endurhlaða vefsíðu á xx sekúndu fresti'; +$a->strings['Beginning of week:'] = 'Upphaf viku:'; +$a->strings['Additional Features'] = 'Viðbótareiginleikar'; +$a->strings['Connected Apps'] = 'Tengd forrit'; +$a->strings['Remove authorization'] = 'Fjarlæga auðkenningu'; +$a->strings['(click to open/close)'] = '(ýttu á til að opna/loka)'; +$a->strings['Edit Profile Details'] = 'Breyta forsíðu upplýsingum'; +$a->strings['Change Profile Photo'] = 'Breyta forsíðumynd'; +$a->strings['Profile picture'] = 'Notandamynd'; +$a->strings['Location'] = 'Staðsetning'; +$a->strings['Miscellaneous'] = 'Ýmislegt'; +$a->strings['Upload Profile Photo'] = 'Hlaða upp forsíðu mynd'; +$a->strings['Street Address:'] = 'Gata:'; +$a->strings['Locality/City:'] = 'Bær/Borg:'; +$a->strings['Region/State:'] = 'Svæði/Sýsla'; +$a->strings['Postal/Zip Code:'] = 'Póstnúmer:'; +$a->strings['Country:'] = 'Land:'; +$a->strings['XMPP (Jabber) address:'] = 'XMPP (Jabber) vistfang:'; +$a->strings['Homepage URL:'] = 'Slóð heimasíðu:'; +$a->strings['Public Keywords:'] = 'Opinber leitarorð:'; +$a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)'; +$a->strings['Private Keywords:'] = 'Einka leitarorð:'; +$a->strings['(Used for searching profiles, never shown to others)'] = '(Notað við leit að öðrum notendum, aldrei sýnt öðrum)'; +$a->strings['Image size reduction [%s] failed.'] = 'Myndar minnkun [%s] tókst ekki.'; +$a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Ýta þarf á '; +$a->strings['Unable to process image'] = 'Ekki tókst að vinna mynd'; +$a->strings['Crop Image'] = 'Skera af mynd'; +$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Stilltu afskurð fyrir besta birtingu.'; +$a->strings['or'] = 'eða'; +$a->strings['skip this step'] = 'sleppa þessu skrefi'; +$a->strings['select a photo from your photo albums'] = 'velja mynd í myndabókum'; +$a->strings['Remove My Account'] = 'Eyða þessum notanda'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft.'; +$a->strings['Please enter your password for verification:'] = 'Sláðu inn aðgangsorð yðar:'; +$a->strings['Export account'] = 'Flytja út notandaaðgang'; +$a->strings['Export all'] = 'Flytja út allt'; +$a->strings['Privacy Statement'] = 'Yfirlýsing um gagnaleynd'; +$a->strings['Move account'] = 'Flytja aðgang'; +$a->strings['You can import an account from another Friendica server.'] = 'Þú getur flutt inn notandaaðgang frá öðrum Friendica-þjóni.'; +$a->strings['Account file'] = 'Notandaaðgangsskrá'; +$a->strings['Welcome to Friendica'] = 'Velkomin(n) á Friendica'; +$a->strings['New Member Checklist'] = 'Gátlisti nýs notanda'; +$a->strings['Getting Started'] = 'Til að komast í gang'; +$a->strings['Friendica Walk-Through'] = 'Leiðarvísir Friendica'; +$a->strings['Go to Your Settings'] = 'Farðu í stillingarnar þínar'; +$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.'] = 'Yfirfarðu aðrar stillingar, sérstaklega gagnaleyndarstillingar. Óútgefin forsíða er einsog óskráð símanúmer. Sem þýðir að líklega viltu gefa út forsíðuna þína - nema að allir vinir þínir og tilvonandi vinir viti nákvæmlega hvernig á að finna þig.'; +$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.'] = 'Að hlaða upp forsíðu mynd ef þú hefur ekki þegar gert það. Rannsóknir sýna að fólk sem hefur alvöru mynd af sér er tíu sinnum líklegra til að eignast vini en fólk sem ekki hefur mynd.'; +$a->strings['Edit Your Profile'] = 'Breyta forsíðunni þinni'; +$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.'] = 'Breyttu sjálfgefnu forsíðunni einsog þú villt. Yfirfarðu stillingu til að fela vinalista á forsíðu og stillingu til að fela forsíðu fyrir ókunnum.'; +$a->strings['Profile Keywords'] = 'Stikkorð notandans'; +$a->strings['Connecting'] = 'Tengist'; +$a->strings['Importing Emails'] = 'Flyt inn pósta'; +$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'] = 'Fylltu út aðgangsupplýsingar póstfangsins þíns á Tengistillingasíðunni ef þú vilt sækja tölvupóst og eiga samskipti við vini eða póstlista úr innhólfi tölvupóstsins þíns'; +$a->strings['Go to Your Contacts Page'] = 'Fara yfir á tengiliðasíðuna'; +$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.'] = 'Tengiliðasíðan er gáttin þín til að sýsla með vinasambönd og tengjast við vini á öðrum netum. Oftast setur þú vistfang eða slóð þeirra í Bæta við tengilið glugganum.'; +$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.'] = 'Tengiliðalistinn er góð leit til að finna fólk á samfélagsnetinu eða öðrum sambandsnetum. Leitaðu að Tengjast/Connect eða Fylgja/Follow tenglum á forsíðunni þeirra. Mögulega þarftu að gefa upp auðkennisslóðina þína.'; +$a->strings['Finding New People'] = 'Finna nýtt fólk'; +$a->strings['Why Aren\'t My Posts Public?'] = 'Hvers vegna eru færslurnar mínar ekki opinberar?'; +$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.'] = 'Friendica virðir gagnaleynd þína. Sjálfgefið er að færslurnar þínar birtast einungis þeim sem þú hefur bætt við sem vinum. Til að sjá nánari upplýsingar, skoðaðu þá hjálparhlutann með því að smella á tengilinn hér fyrir ofan.'; +$a->strings['Getting Help'] = 'Til að fá hjálp'; +$a->strings['Go to the Help Section'] = 'Fara í hjálparhlutann'; +$a->strings['Our help pages may be consulted for detail on other program features and resources.'] = 'Hægt er að styðjast við Hjálp síðuna til að fá leiðbeiningar um aðra eiginleika.'; $a->strings['%s liked %s\'s post'] = '%s líkaði færsla hjá %s'; $a->strings['%s disliked %s\'s post'] = '%s mislíkaði færsla hjá %s'; $a->strings['%s is now friends with %s'] = '%s er nú vinur %s'; +$a->strings['%s commented on %s\'s post'] = '%s athugasemd við %s\'s færslu'; +$a->strings['%s created a new post'] = '%s bjó til færslu'; $a->strings['Friend Suggestion'] = 'Vina tillaga'; $a->strings['Friend/Connect Request'] = 'Vinabeiðni/Tengibeiðni'; $a->strings['New Follower'] = 'Nýr fylgjandi'; -$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Gat ekki fundið skipanalínu útgáfu af PHP í vefþjóns PATH.'; -$a->strings['PHP executable path'] = 'PHP keyrslu slóð'; -$a->strings['Command line PHP'] = 'Skipanalínu PHP'; -$a->strings['Found PHP version: '] = 'Fann PHP útgáfu: '; -$a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'Skipanalínu útgáfa af PHP á vefþjóninum hefur ekki kveikt á "register_argc_argv".'; -$a->strings['This is required for message delivery to work.'] = 'Þetta er skilyrt fyrir því að skilaboð komist til skila.'; -$a->strings['Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys'] = 'Villa: Stefjan "openssl_pkey_new" á vefþjóninum getur ekki stofnað dulkóðunar lykla'; -$a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'Ef keyrt er á Window, skoðaðu þá "http://www.php.net/manual/en/openssl.installation.php".'; -$a->strings['Generate encryption keys'] = 'Búa til dulkóðunar lykla'; -$a->strings['libCurl PHP module'] = 'libCurl PHP eining'; -$a->strings['GD graphics PHP module'] = 'GD graphics PHP eining'; -$a->strings['OpenSSL PHP module'] = 'OpenSSL PHP eining'; -$a->strings['mb_string PHP module'] = 'mb_string PHP eining'; -$a->strings['Apache mod_rewrite module'] = 'Apache mod_rewrite eining'; -$a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Villa: Apache vefþjóns eining mod-rewrite er skilyrði og er ekki uppsett. '; -$a->strings['Error: libCURL PHP module required but not installed.'] = 'Villa: libCurl PHP eining er skilyrði og er ekki uppsett.'; -$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Villa: GD graphics PHP eining með JPEG stuðningi er skilyrði og er ekki uppsett.'; -$a->strings['Error: openssl PHP module required but not installed.'] = 'Villa: openssl PHP eining skilyrði og er ekki uppsett.'; -$a->strings['Error: mb_string PHP module required but not installed.'] = 'Villa: mb_string PHP eining skilyrði en ekki uppsett.'; -$a->strings['The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.'] = 'Vef uppsetningar forrit þarf að geta stofnað skránna ".htconfig.php" in efsta skráarsafninu á vefþjóninum og það getur ekki gert það.'; -$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.'] = 'Þetta er oftast aðgangsstýringa stilling, þar sem vefþjónninn getur ekki skrifað út skrár í skráarsafnið - þó þú getir það.'; -$a->strings['.htconfig.php is writable'] = '.htconfig.php er skrifanleg'; -$a->strings['Birthday:'] = 'Afmælisdagur:'; -$a->strings['YYYY-MM-DD or MM-DD'] = 'ÁÁÁÁ-MM-DD eða MM-DD'; -$a->strings['never'] = 'aldrei'; -$a->strings['less than a second ago'] = 'fyrir minna en sekúndu'; -$a->strings['year'] = 'ár'; -$a->strings['years'] = 'ár'; -$a->strings['months'] = 'mánuðir'; -$a->strings['weeks'] = 'vikur'; -$a->strings['days'] = 'dagar'; -$a->strings['hour'] = 'klukkustund'; -$a->strings['hours'] = 'klukkustundir'; -$a->strings['minute'] = 'mínúta'; -$a->strings['minutes'] = 'mínútur'; -$a->strings['second'] = 'sekúnda'; -$a->strings['seconds'] = 'sekúndur'; -$a->strings['%1$d %2$s ago'] = 'Fyrir %1$d %2$s síðan'; -$a->strings['view full size'] = 'Skoða í fullri stærð'; -$a->strings['Image/photo'] = 'Mynd'; -$a->strings['%2$s %3$s'] = '%2$s %3$s'; -$a->strings['$1 wrote:'] = '$1 skrifaði:'; -$a->strings['Encrypted content'] = 'Dulritað efni'; -$a->strings['Embedding disabled'] = 'Innfelling ekki leyfð'; -$a->strings['Embedded content'] = 'Innbyggt efni'; -$a->strings['Export'] = 'Flytja út'; -$a->strings['Export calendar as ical'] = 'Flytja dagatal út sem ICAL'; -$a->strings['Export calendar as csv'] = 'Flytja dagatal út sem CSV'; -$a->strings['Frequently'] = 'Oft'; -$a->strings['Hourly'] = 'Á klukkustundar fresti'; -$a->strings['Twice daily'] = 'Tvisvar á dag'; -$a->strings['Daily'] = 'Daglega'; -$a->strings['Weekly'] = 'Vikulega'; -$a->strings['Monthly'] = 'Mánaðarlega'; -$a->strings['OStatus'] = 'OStatus'; -$a->strings['RSS/Atom'] = 'RSS / Atom'; -$a->strings['Facebook'] = 'Facebook'; -$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['Diaspora Connector'] = 'Diaspora tenging'; -$a->strings['GNU Social Connector'] = 'GNU Social tenging'; -$a->strings['pnut'] = 'pnut'; -$a->strings['App.net'] = 'App.net'; -$a->strings['Male'] = 'Karl'; -$a->strings['Female'] = 'Kona'; -$a->strings['Currently Male'] = 'Karlkyns í augnablikinu'; -$a->strings['Currently Female'] = 'Kvenkyns í augnablikinu'; -$a->strings['Mostly Male'] = 'Aðallega karlkyns'; -$a->strings['Mostly Female'] = 'Aðallega kvenkyns'; -$a->strings['Transgender'] = 'Kyngervingur (trans)'; -$a->strings['Intersex'] = 'Hvorugkyn'; -$a->strings['Transsexual'] = 'Kynskiptingur'; -$a->strings['Hermaphrodite'] = 'Tvíkynja'; -$a->strings['Neuter'] = 'Kynlaus'; -$a->strings['Non-specific'] = 'Ekki ákveðið'; -$a->strings['Other'] = 'Annað'; -$a->strings['Males'] = 'Karlar'; -$a->strings['Females'] = 'Konur'; -$a->strings['Gay'] = 'Hommi'; -$a->strings['Lesbian'] = 'Lesbía'; -$a->strings['No Preference'] = 'Til í allt'; -$a->strings['Bisexual'] = 'Tvíkynhneigð/ur'; -$a->strings['Autosexual'] = 'Sjálfkynhneigð/ur'; -$a->strings['Abstinent'] = 'Skírlíf/ur'; -$a->strings['Virgin'] = 'Hrein mey/Hreinn sveinn'; -$a->strings['Deviant'] = 'Óþekkur'; -$a->strings['Fetish'] = 'Blæti'; -$a->strings['Oodles'] = 'Mikið af því'; -$a->strings['Nonsexual'] = 'Engin kynhneigð'; -$a->strings['Single'] = 'Einhleyp/ur'; -$a->strings['Lonely'] = 'Einmanna'; -$a->strings['Available'] = 'Á lausu'; -$a->strings['Unavailable'] = 'Frátekin/n'; -$a->strings['Has crush'] = 'Er skotin(n)'; -$a->strings['Dating'] = 'Deita'; -$a->strings['Unfaithful'] = 'Ótrú/r'; -$a->strings['Sex Addict'] = 'Kynlífsfíkill'; -$a->strings['Friends'] = 'Vinir'; -$a->strings['Friends/Benefits'] = 'Vinir með meiru'; -$a->strings['Casual'] = 'Lauslát/ur'; -$a->strings['Engaged'] = 'Trúlofuð/Trúlofaður'; -$a->strings['Married'] = 'Gift/ur'; -$a->strings['Imaginarily married'] = 'Gift/ur í huganum'; -$a->strings['Partners'] = 'Félagar'; -$a->strings['Cohabiting'] = 'Í sambúð'; -$a->strings['Common law'] = 'Löggilt sambúð'; -$a->strings['Happy'] = 'Hamingjusöm/Hamingjusamur'; -$a->strings['Not looking'] = 'Ekki að leita'; -$a->strings['Swinger'] = 'Svingari'; -$a->strings['Betrayed'] = 'Svikin/n'; -$a->strings['Separated'] = 'Skilin/n að borði og sæng'; -$a->strings['Unstable'] = 'Óstabíll'; -$a->strings['Divorced'] = 'Fráskilin/n'; -$a->strings['Imaginarily divorced'] = 'Fráskilin/n í huganum'; -$a->strings['Widowed'] = 'Ekkja/Ekkill'; -$a->strings['Uncertain'] = 'Óviss'; -$a->strings['It\'s complicated'] = 'Þetta er flókið'; -$a->strings['Don\'t care'] = 'Gæti ekki verið meira sama'; -$a->strings['Ask me'] = 'Spurðu mig'; -$a->strings['Add New Contact'] = 'Bæta við tengilið'; -$a->strings['Enter address or web location'] = 'Settu inn slóð'; -$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Dæmi: gudmundur@simnet.is, http://simnet.is/gudmundur'; -$a->strings['%d invitation available'] = [ - 0 => '%d boðskort í boði', - 1 => '%d boðskort í boði', -]; -$a->strings['Networks'] = 'Net'; -$a->strings['All Networks'] = 'Öll net'; -$a->strings['Saved Folders'] = 'Vistaðar möppur'; -$a->strings['Everything'] = 'Allt'; -$a->strings['Categories'] = 'Flokkar'; -$a->strings['%d contact in common'] = [ - 0 => '%d tengiliður sameiginlegur', - 1 => '%d tengiliðir sameiginlegir', -]; -$a->strings['General Features'] = 'Almennir eiginleikar'; -$a->strings['Photo Location'] = 'Staðsetning ljósmyndar'; -$a->strings['Export Public Calendar'] = 'Flytja út opinbert dagatal'; -$a->strings['List Forums'] = 'Spjallsvæðalistar'; -$a->strings['Tag Cloud'] = 'Merkjaský'; -$a->strings['Nothing new here'] = 'Ekkert nýtt hér'; -$a->strings['Clear notifications'] = 'Hreinsa tilkynningar'; -$a->strings['Personal notes'] = 'Einkaglósur'; -$a->strings['Your personal notes'] = 'Einkaglósurnar þínar'; -$a->strings['Sign in'] = 'Innskrá'; -$a->strings['Home Page'] = 'Heimasíða'; -$a->strings['Create an account'] = 'Stofna notanda'; -$a->strings['Help and documentation'] = 'Hjálp og leiðbeiningar'; -$a->strings['Apps'] = 'Forrit'; -$a->strings['Addon applications, utilities, games'] = 'Viðbótarforrit, nytjatól, leikir'; -$a->strings['Search site content'] = 'Leita í efni á vef'; -$a->strings['Community'] = 'Samfélag'; -$a->strings['Directory'] = 'Mappa'; -$a->strings['People directory'] = 'Nafnaskrá'; -$a->strings['Information about this friendica instance'] = 'Upplýsingar um þetta tilvik Friendica'; -$a->strings['Network Reset'] = 'Núllstilling netkerfis'; -$a->strings['Friend Requests'] = 'Vinabeiðnir'; -$a->strings['See all notifications'] = 'Sjá allar tilkynningar'; -$a->strings['Mark all system notifications seen'] = 'Merkja allar tilkynningar sem séðar'; -$a->strings['Inbox'] = 'Innhólf'; -$a->strings['Outbox'] = 'Úthólf'; -$a->strings['Manage'] = 'Umsýsla'; -$a->strings['Manage other pages'] = 'Sýsla með aðrar síður'; -$a->strings['Profiles'] = 'Forsíður'; -$a->strings['Manage/Edit Profiles'] = 'Sýsla með forsíður'; -$a->strings['Site setup and configuration'] = 'Uppsetning og stillingar vefsvæðis'; -$a->strings['Navigation'] = 'Yfirsýn'; -$a->strings['Site map'] = 'Yfirlit um vefsvæði'; -$a->strings['[no subject]'] = '[ekkert efni]'; -$a->strings['Starts:'] = 'Byrjar:'; -$a->strings['Finishes:'] = 'Endar:'; -$a->strings['all-day'] = 'allan-daginn'; -$a->strings['Jun'] = 'Jún'; -$a->strings['Sept'] = 'Sept'; -$a->strings['No events to display'] = 'Engir atburðir til að birta'; -$a->strings['l, F j'] = 'l, F j'; -$a->strings['Edit event'] = 'Breyta atburð'; -$a->strings['Duplicate event'] = 'Tvítaka atburð'; -$a->strings['Delete event'] = 'Eyða atburði'; -$a->strings['D g:i A'] = 'D g:i A'; -$a->strings['g:i A'] = 'g:i A'; -$a->strings['Show map'] = 'Birta kort'; -$a->strings['Hide map'] = 'Fela kort'; -$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.'] = 'Hóp sem var eytt hefur verið endurlífgaður. Færslur sem þegar voru til geta mögulega farið á hópinn og framtíðar meðlimir. Ef þetta er ekki það sem þú vilt, þá þarftu að búa til nýjan hóp með öðru nafni.'; -$a->strings['Everybody'] = 'Allir'; -$a->strings['edit'] = 'breyta'; -$a->strings['Edit group'] = 'Breyta hóp'; -$a->strings['Contacts not in any group'] = 'Tengiliðir ekki í neinum hópum'; -$a->strings['Create a new group'] = 'Stofna nýjan hóp'; -$a->strings['Edit groups'] = 'Breyta hópum'; -$a->strings['Requested account is not available.'] = 'Umbeðin forsíða er ekki til.'; -$a->strings['Edit profile'] = 'Breyta forsíðu'; -$a->strings['Atom feed'] = 'Atom fréttaveita'; -$a->strings['Manage/edit profiles'] = 'Sýsla með forsíður'; -$a->strings['g A l F d'] = 'g A l F d'; -$a->strings['F d'] = 'F d'; -$a->strings['[today]'] = '[í dag]'; -$a->strings['Birthday Reminders'] = 'Afmælisáminningar'; -$a->strings['Birthdays this week:'] = 'Afmæli í þessari viku:'; -$a->strings['[No description]'] = '[Engin lýsing]'; -$a->strings['Event Reminders'] = 'Atburðaáminningar'; -$a->strings['Events this week:'] = 'Atburðir vikunnar:'; -$a->strings['Member since:'] = 'Meðlimur síðan:'; -$a->strings['j F, Y'] = 'j F, Y'; -$a->strings['j F'] = 'j F'; -$a->strings['Age:'] = 'Aldur:'; -$a->strings['for %1$d %2$s'] = 'fyrir %1$d %2$s'; -$a->strings['Religion:'] = 'Trúarskoðanir:'; -$a->strings['Hobbies/Interests:'] = 'Áhugamál/Áhugasvið:'; -$a->strings['Contact information and Social Networks:'] = 'Tengiliðaupplýsingar og samfélagsnet:'; -$a->strings['Musical interests:'] = 'Tónlistaráhugi:'; -$a->strings['Books, literature:'] = 'Bækur, bókmenntir:'; -$a->strings['Television:'] = 'Sjónvarp:'; -$a->strings['Film/dance/culture/entertainment:'] = 'Kvikmyndir/dans/menning/afþreying:'; -$a->strings['Love/Romance:'] = 'Ást/rómantík:'; -$a->strings['Work/employment:'] = 'Atvinna:'; -$a->strings['School/education:'] = 'Skóli/menntun:'; -$a->strings['Forums:'] = 'Spjallsvæði:'; -$a->strings['Only You Can See This'] = 'Aðeins þú sérð þetta'; -$a->strings['Login failed'] = 'Innskráning mistókst'; -$a->strings['An invitation is required.'] = 'Boðskort er skilyrði.'; -$a->strings['Invitation could not be verified.'] = 'Ekki hægt að sannreyna boðskort.'; -$a->strings['Invalid OpenID url'] = 'OpenID slóð ekki til'; -$a->strings['The error message was:'] = 'Villumeldingin var:'; -$a->strings['Please enter the required information.'] = 'Settu inn umbeðnar upplýsingar.'; -$a->strings['Please use a shorter name.'] = 'Notaðu styttra nafn.'; -$a->strings['Name too short.'] = 'Nafn of stutt.'; -$a->strings['That doesn\'t appear to be your full (First Last) name.'] = 'Þetta virðist ekki vera fullt nafn (Jón Jónsson).'; -$a->strings['Your email domain is not among those allowed on this site.'] = 'Póstþjónninn er ekki í lista yfir leyfða póstþjóna á þessum vef.'; -$a->strings['Not a valid email address.'] = 'Ekki tækt tölvupóstfang.'; -$a->strings['Cannot use that email.'] = 'Ekki hægt að nota þetta póstfang.'; -$a->strings['Nickname is already registered. Please choose another.'] = 'Gælunafn þegar skráð. Veldu annað.'; -$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'VERULEGA ALVARLEG VILLA: Stofnun á öryggislyklum tókst ekki.'; -$a->strings['An error occurred during registration. Please try again.'] = 'Villa kom upp við nýskráningu. Reyndu aftur.'; -$a->strings['An error occurred creating your default profile. Please try again.'] = 'Villa kom upp við að stofna sjálfgefna forsíðu. Vinnsamlegast reyndu aftur.'; -$a->strings['Drop Contact'] = 'Henda tengilið'; -$a->strings['News'] = 'Fréttir'; -$a->strings['Forum'] = 'Spjallsvæði'; -$a->strings['Connect URL missing.'] = 'Tengislóð vantar.'; -$a->strings['This site is not configured to allow communications with other networks.'] = 'Þessi vefur er ekki uppsettur til að leyfa samskipti við önnur samfélagsnet.'; -$a->strings['No compatible communication protocols or feeds were discovered.'] = 'Engir samhæfðir samskiptastaðlar né fréttastraumar fundust.'; -$a->strings['The profile address specified does not provide adequate information.'] = 'Uppgefin forsíðuslóð inniheldur ekki nægilegar upplýsingar.'; -$a->strings['An author or name was not found.'] = 'Höfundur eða nafn fannst ekki.'; -$a->strings['No browser URL could be matched to this address.'] = 'Engin vefslóð passaði við þetta vistfang.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef.'; -$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér.'; -$a->strings['Unable to retrieve contact information.'] = 'Ekki hægt að sækja tengiliðs upplýsingar.'; -$a->strings['%s\'s birthday'] = 'Afmælisdagur %s'; -$a->strings['Happy Birthday %s'] = 'Til hamingju með afmælið %s'; -$a->strings['%s is now following %s.'] = '%s fylgist núna með %s.'; -$a->strings['following'] = 'fylgist með'; -$a->strings['stopped following'] = 'hætt að fylgja'; -$a->strings['Sharing notification from Diaspora network'] = 'Tilkynning um að einhver deildi atriði á Diaspora netinu'; -$a->strings['Attachments:'] = 'Viðhengi:'; -$a->strings['(no subject)'] = '(ekkert efni)'; -$a->strings['Logged out.'] = 'Skráður út.'; -$a->strings['Create a New Account'] = 'Stofna nýjan notanda'; -$a->strings['Password: '] = 'Aðgangsorð: '; -$a->strings['Remember me'] = 'Muna eftir mér'; -$a->strings['Or login using OpenID: '] = 'Eða auðkenna með OpenID: '; -$a->strings['Forgot your password?'] = 'Gleymt lykilorð?'; -$a->strings['Website Terms of Service'] = 'Þjónustuskilmálar vefsvæðis'; -$a->strings['terms of service'] = 'þjónustuskilmálar'; -$a->strings['Website Privacy Policy'] = 'Persónuverndarstefna'; -$a->strings['privacy policy'] = 'persónuverndarstefna'; -$a->strings['Privacy Statement'] = 'Yfirlýsing um gagnaleynd'; +$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s sendi þér ný einkaskilaboð %2$s.'; +$a->strings['a private message'] = 'einkaskilaboð'; +$a->strings['%1$s sent you %2$s.'] = '%1$s sendi þér %2$s.'; +$a->strings['Please visit %s to view and/or reply to your private messages.'] = 'Farðu á %s til að skoða og/eða svara einkaskilaboðunum þínum.'; +$a->strings['%s commented on an item/conversation you have been following.'] = '%s skrifaði athugasemd á færslu/samtal sem þú ert að fylgja.'; +$a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Farðu á %s til að skoða og/eða svara samtali.'; +$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s skrifaði á vegginn þinn %2$s'; +$a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s skrifaði á [url=%2$s]vegginn þinn[/url]'; +$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Þú tókst við kynningu frá \'%1$s\', %2$s'; +$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Þú tókst við [url=%1$s]kynningu[/url] frá %2$s.'; +$a->strings['You may visit their profile at %s'] = 'Þú getur heimsótt síðuna þeirra á %s'; +$a->strings['Please visit %s to approve or reject the introduction.'] = 'Farðu á %s til að samþykkja eða hunsa þessa kynningu.'; +$a->strings['%1$s is sharing with you at %2$s'] = '%1$s er að deila með þér, %2$s'; +$a->strings['You have a new follower at %2$s : %1$s'] = 'Þú hefur nýjan fylgjanda á %2$s : %1$s'; +$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = 'Þér hefur borist uppástunga um vin frá \'%1$s\' kl. %2$s'; +$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = 'Þér hefur borist [url=%1$s]uppástunga um vin[/url] fyrir %2$s frá %3$s.'; +$a->strings['Name:'] = 'Nafn:'; +$a->strings['Photo:'] = 'Mynd:'; +$a->strings['Please visit %s to approve or reject the suggestion.'] = 'Farðu á %s til að samþykkja eða hunsa þessa uppástungu.'; +$a->strings['\'%1$s\' has accepted your connection request at %2$s'] = '\'%1$s\' samþykkti tengibeiðni þína %2$s'; +$a->strings['%2$s has accepted your [url=%1$s]connection request[/url].'] = '%2$s samþykkti [url=%1$s]tengibeiðni þína[/url].'; +$a->strings['You are now mutual friends and may exchange status updates, photos, and email without restriction.'] = 'Þið eruð núna gagnkvæmir vinir og getið skipst á stöðuuppfærslum, myndum og tölvupósti án hindrana.'; +$a->strings['registration request'] = 'beiðni um skráningu'; +$a->strings['Please visit %s to approve or reject the request.'] = 'Farðu á %s til að samþykkja eða hunsa þessa beiðni.'; +$a->strings['This message was sent to you by %s, a member of the Friendica social network.'] = 'Skilaboðið sendi %s, notandi á Friendica samfélagsnetinu.'; +$a->strings['You may visit them online at %s'] = 'Þú getur heimsótt þau á netinu á %s'; +$a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Hafðu samband við sendanda með því að svara á þessari færslu ef þú villt ekki fá þessi skilaboð.'; +$a->strings['%s posted an update.'] = '%s hefur sent uppfærslu.'; +$a->strings['Private Message'] = 'Einkaskilaboð'; $a->strings['This entry was edited'] = 'Þessari færslu var breytt'; -$a->strings['save to folder'] = 'vista í möppu'; +$a->strings['Edit'] = 'Breyta'; $a->strings['I will attend'] = 'Ég mæti'; $a->strings['I will not attend'] = 'Ég mæti ekki'; $a->strings['I might attend'] = 'Ég gæti mætt'; -$a->strings['add star'] = 'bæta við stjörnu'; -$a->strings['remove star'] = 'eyða stjörnu'; -$a->strings['toggle star status'] = 'Kveikja/slökkva á stjörnu'; -$a->strings['starred'] = 'stjörnumerkt'; -$a->strings['ignore thread'] = 'Hunsa þráð'; -$a->strings['add tag'] = 'bæta við merki'; -$a->strings['like'] = 'líkar'; -$a->strings['dislike'] = 'mislíkar'; -$a->strings['Share this'] = 'Deila þessu'; -$a->strings['share'] = 'deila'; $a->strings['to'] = 'við'; $a->strings['via'] = 'gegnum'; $a->strings['Wall-to-Wall'] = 'vegg við vegg'; @@ -1525,14 +984,8 @@ $a->strings['%d comment'] = [ 0 => '%d ummæli', 1 => '%d ummæli', ]; -$a->strings['Bold'] = 'Feitletrað'; -$a->strings['Italic'] = 'Skáletrað'; -$a->strings['Underline'] = 'Undirstrikað'; -$a->strings['Quote'] = 'Gæsalappir'; -$a->strings['Code'] = 'Kóði'; -$a->strings['Image'] = 'Mynd'; -$a->strings['Link'] = 'Tengill'; -$a->strings['Video'] = 'Myndband'; -$a->strings['Delete this item?'] = 'Eyða þessu atriði?'; -$a->strings['show fewer'] = 'birta minna'; -$a->strings['Update %s failed. See error logs.'] = 'Uppfærsla á %s mistókst. Skoðaðu villuannál.'; +$a->strings['%s is now following %s.'] = '%s fylgist núna með %s.'; +$a->strings['following'] = 'fylgist með'; +$a->strings['stopped following'] = 'hætt að fylgja'; +$a->strings['Login failed.'] = 'Innskráning mistókst.'; +$a->strings['Please upload a profile photo.'] = 'Gerðu svo vel að hlaða inn forsíðumynd.'; diff --git a/view/lang/it/messages.po b/view/lang/it/messages.po index 89beff8d2..3570cb30c 100644 --- a/view/lang/it/messages.po +++ b/view/lang/it/messages.po @@ -1,5 +1,5 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: @@ -17,534 +17,79 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-24 04:58+0000\n" -"PO-Revision-Date: 2022-01-27 15:40+0000\n" -"Last-Translator: fabrixxm \n" -"Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n" +"POT-Creation-Date: 2023-09-18 05:30+0000\n" +"PO-Revision-Date: 2011-05-05 10:19+0000\n" +"Last-Translator: fabrixxm , 2013-2015,2017-2022\n" +"Language-Team: Italian (http://app.transifex.com/Friendica/friendica/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: mod/cal.php:44 mod/cal.php:48 mod/follow.php:39 mod/redir.php:34 -#: mod/redir.php:175 src/Module/Conversation/Community.php:181 -#: src/Module/Debug/ItemBody.php:37 src/Module/Diaspora/Receive.php:57 -#: 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:43 -msgid "Access denied." -msgstr "Accesso negato." - -#: mod/cal.php:61 mod/cal.php:78 mod/photos.php:69 mod/photos.php:140 -#: mod/photos.php:804 src/Model/Profile.php:229 src/Module/HCard.php:52 -#: src/Module/Profile/Common.php:41 src/Module/Profile/Common.php:52 -#: src/Module/Profile/Contacts.php:40 src/Module/Profile/Contacts.php:50 -#: src/Module/Profile/Media.php:38 src/Module/Profile/Status.php:58 -#: src/Module/Register.php:267 src/Module/RemoteFollow.php:58 -msgid "User not found." -msgstr "Utente non trovato." - -#: mod/cal.php:120 mod/display.php:270 src/Module/Profile/Profile.php:94 -#: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:109 -#: src/Module/Update/Profile.php:56 -msgid "Access to this profile has been restricted." -msgstr "L'accesso a questo profilo è stato limitato." - -#: mod/cal.php:242 mod/events.php:377 src/Content/Nav.php:194 -#: src/Content/Nav.php:258 src/Module/BaseProfile.php:84 -#: src/Module/BaseProfile.php:95 view/theme/frio/theme.php:229 -#: view/theme/frio/theme.php:233 -msgid "Events" -msgstr "Eventi" - -#: mod/cal.php:243 mod/events.php:378 -msgid "View" -msgstr "Mostra" - -#: mod/cal.php:244 mod/events.php:380 -msgid "Previous" -msgstr "Precedente" - -#: mod/cal.php:245 mod/events.php:381 src/Module/Install.php:214 -msgid "Next" -msgstr "Successivo" - -#: mod/cal.php:248 mod/events.php:386 src/Model/Event.php:457 -msgid "today" -msgstr "oggi" - -#: mod/cal.php:249 mod/events.php:387 src/Model/Event.php:458 -#: src/Util/Temporal.php:334 -msgid "month" -msgstr "mese" - -#: mod/cal.php:250 mod/events.php:388 src/Model/Event.php:459 -#: src/Util/Temporal.php:335 -msgid "week" -msgstr "settimana" - -#: mod/cal.php:251 mod/events.php:389 src/Model/Event.php:460 -#: src/Util/Temporal.php:336 -msgid "day" -msgstr "giorno" - -#: mod/cal.php:252 mod/events.php:390 -msgid "list" -msgstr "lista" - -#: mod/cal.php:265 src/Console/User.php:182 src/Model/User.php:659 -#: 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:74 -msgid "User not found" -msgstr "Utente non trovato" - -#: mod/cal.php:274 -msgid "This calendar format is not supported" -msgstr "Questo formato di calendario non è supportato" - -#: mod/cal.php:276 -msgid "No exportable data found" -msgstr "Nessun dato esportabile trovato" - -#: mod/cal.php:293 -msgid "calendar" -msgstr "calendario" - -#: mod/display.php:165 mod/photos.php:808 -#: src/Module/Conversation/Community.php:175 src/Module/Directory.php:48 -#: src/Module/Search/Index.php:49 -msgid "Public access denied." -msgstr "Accesso negato." - -#: mod/display.php:221 mod/display.php:295 -msgid "The requested item doesn't exist or has been deleted." -msgstr "L'oggetto richiesto non esiste o è stato eliminato." - -#: mod/display.php:375 -msgid "The feed for this item is unavailable." -msgstr "Il flusso per questo oggetto non è disponibile." - -#: mod/editpost.php:38 mod/events.php:220 mod/follow.php:56 mod/follow.php:130 -#: mod/item.php:185 mod/item.php:190 mod/item.php:937 mod/message.php:69 -#: mod/message.php:111 mod/notes.php:44 mod/ostatus_subscribe.php:32 -#: mod/photos.php:160 mod/photos.php:897 mod/repair_ostatus.php:31 -#: mod/settings.php:46 mod/settings.php:56 mod/settings.php:412 -#: mod/suggest.php:34 mod/uimport.php:33 mod/unfollow.php:35 -#: mod/unfollow.php:50 mod/unfollow.php:82 mod/wall_attach.php:68 -#: mod/wall_attach.php:71 mod/wall_upload.php:90 mod/wall_upload.php:93 -#: mod/wallmessage.php:37 mod/wallmessage.php:56 mod/wallmessage.php:90 -#: mod/wallmessage.php:110 src/Module/Attach.php:55 src/Module/BaseApi.php:93 -#: src/Module/BaseNotifications.php:97 src/Module/Contact/Advanced.php:60 -#: src/Module/Delegation.php:119 src/Module/FollowConfirm.php:38 -#: src/Module/FriendSuggest.php:56 src/Module/Group.php:42 -#: src/Module/Group.php:85 src/Module/Invite.php:41 src/Module/Invite.php:130 -#: src/Module/Notifications/Notification.php:48 -#: src/Module/Notifications/Notification.php:79 -#: src/Module/Profile/Common.php:56 src/Module/Profile/Contacts.php:56 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:77 src/Module/Register.php:90 -#: src/Module/Register.php:206 src/Module/Register.php:245 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Delegation.php:42 -#: src/Module/Settings/Delegation.php:70 src/Module/Settings/Display.php:42 -#: src/Module/Settings/Display.php:120 -#: src/Module/Settings/Profile/Photo/Crop.php:166 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/UserExport.php:57 src/Module/Settings/UserExport.php:91 -#: src/Module/Settings/UserExport.php:196 -#: src/Module/Settings/UserExport.php:216 -#: src/Module/Settings/UserExport.php:281 -msgid "Permission denied." -msgstr "Permesso negato." - -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Oggetto non trovato" - -#: mod/editpost.php:64 -msgid "Edit post" -msgstr "Modifica messaggio" - -#: mod/editpost.php:91 mod/notes.php:56 src/Content/Text/HTML.php:875 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:73 -msgid "Save" -msgstr "Salva" - -#: mod/editpost.php:92 mod/photos.php:1344 src/Content/Conversation.php:326 -#: src/Module/Contact/Poke.php:176 src/Object/Post.php:966 -msgid "Loading..." -msgstr "Caricamento..." - -#: mod/editpost.php:93 mod/message.php:198 mod/message.php:355 -#: mod/wallmessage.php:140 src/Content/Conversation.php:327 -msgid "Upload photo" -msgstr "Carica foto" - -#: mod/editpost.php:94 src/Content/Conversation.php:328 -msgid "upload photo" -msgstr "carica foto" - -#: mod/editpost.php:95 src/Content/Conversation.php:329 -msgid "Attach file" -msgstr "Allega file" - -#: mod/editpost.php:96 src/Content/Conversation.php:330 -msgid "attach file" -msgstr "allega file" - -#: mod/editpost.php:97 mod/message.php:199 mod/message.php:356 -#: mod/wallmessage.php:141 -msgid "Insert web link" -msgstr "Inserisci collegamento web" - -#: mod/editpost.php:98 -msgid "web link" -msgstr "collegamento web" - -#: mod/editpost.php:99 -msgid "Insert video link" -msgstr "Inserire collegamento video" - -#: mod/editpost.php:100 -msgid "video link" -msgstr "collegamento video" - -#: mod/editpost.php:101 -msgid "Insert audio link" -msgstr "Inserisci collegamento audio" - -#: mod/editpost.php:102 -msgid "audio link" -msgstr "collegamento audio" - -#: mod/editpost.php:103 src/Content/Conversation.php:340 -#: src/Module/Item/Compose.php:161 -msgid "Set your location" -msgstr "La tua posizione" - -#: mod/editpost.php:104 src/Content/Conversation.php:341 -msgid "set location" -msgstr "posizione" - -#: mod/editpost.php:105 src/Content/Conversation.php:342 -msgid "Clear browser location" -msgstr "Rimuovi la localizzazione data dal browser" - -#: mod/editpost.php:106 src/Content/Conversation.php:343 -msgid "clear location" -msgstr "canc. pos." - -#: mod/editpost.php:107 mod/message.php:200 mod/message.php:358 -#: mod/photos.php:1495 mod/wallmessage.php:142 -#: src/Content/Conversation.php:355 src/Content/Conversation.php:690 -#: src/Module/Item/Compose.php:165 src/Object/Post.php:504 -msgid "Please wait" -msgstr "Attendi" - -#: mod/editpost.php:108 src/Content/Conversation.php:356 -msgid "Permission settings" -msgstr "Impostazioni permessi" - -#: mod/editpost.php:116 src/Core/ACL.php:325 -msgid "CC: email addresses" -msgstr "CC: indirizzi email" - -#: mod/editpost.php:117 src/Content/Conversation.php:366 -msgid "Public post" -msgstr "Messaggio pubblico" - -#: mod/editpost.php:120 src/Content/Conversation.php:345 -#: src/Module/Item/Compose.php:166 -msgid "Set title" -msgstr "Scegli un titolo" - -#: mod/editpost.php:122 src/Content/Conversation.php:347 -#: src/Module/Item/Compose.php:167 -msgid "Categories (comma-separated list)" -msgstr "Categorie (lista separata da virgola)" - -#: mod/editpost.php:123 src/Core/ACL.php:326 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Esempio: bob@example.com, mary@example.com" - -#: mod/editpost.php:128 mod/events.php:517 mod/photos.php:1343 -#: mod/photos.php:1399 mod/photos.php:1473 src/Content/Conversation.php:370 -#: src/Module/Item/Compose.php:160 src/Object/Post.php:976 -msgid "Preview" -msgstr "Anteprima" - -#: mod/editpost.php:130 mod/fbrowser.php:117 mod/fbrowser.php:144 -#: mod/follow.php:144 mod/photos.php:1010 mod/photos.php:1111 mod/tagrm.php:35 -#: mod/tagrm.php:127 mod/unfollow.php:97 src/Content/Conversation.php:373 -#: src/Module/Contact/Revoke.php:110 src/Module/RemoteFollow.php:127 -msgid "Cancel" -msgstr "Annulla" - -#: mod/editpost.php:134 src/Content/Conversation.php:331 -#: src/Module/Item/Compose.php:151 src/Object/Post.php:967 -msgid "Bold" -msgstr "Grassetto" - -#: mod/editpost.php:135 src/Content/Conversation.php:332 -#: src/Module/Item/Compose.php:152 src/Object/Post.php:968 -msgid "Italic" -msgstr "Corsivo" - -#: mod/editpost.php:136 src/Content/Conversation.php:333 -#: src/Module/Item/Compose.php:153 src/Object/Post.php:969 -msgid "Underline" -msgstr "Sottolineato" - -#: mod/editpost.php:137 src/Content/Conversation.php:334 -#: src/Module/Item/Compose.php:154 src/Object/Post.php:970 -msgid "Quote" -msgstr "Citazione" - -#: mod/editpost.php:138 src/Content/Conversation.php:335 -#: src/Module/Item/Compose.php:155 src/Object/Post.php:971 -msgid "Code" -msgstr "Codice" - -#: mod/editpost.php:139 src/Content/Conversation.php:337 -#: src/Module/Item/Compose.php:157 src/Object/Post.php:973 -msgid "Link" -msgstr "Collegamento" - -#: mod/editpost.php:140 src/Content/Conversation.php:338 -#: src/Module/Item/Compose.php:158 src/Object/Post.php:974 -msgid "Link or Media" -msgstr "Collegamento o Media" - -#: mod/editpost.php:143 src/Content/Conversation.php:380 -#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:460 -#: src/Module/Admin/Logs/View.php:92 -msgid "Message" -msgstr "Messaggio" - -#: mod/editpost.php:144 src/Content/Conversation.php:381 -#: src/Module/Settings/TwoFactor/Trusted.php:137 -msgid "Browser" -msgstr "Browser" - -#: mod/editpost.php:145 mod/events.php:522 mod/photos.php:945 -#: mod/photos.php:1297 src/Content/Conversation.php:357 -msgid "Permissions" -msgstr "Permessi" - -#: mod/editpost.php:147 src/Content/Conversation.php:383 -msgid "Open Compose page" -msgstr "Apri pagina di Composizione" - -#: mod/events.php:123 mod/events.php:125 -msgid "Event can not end before it has started." -msgstr "Un evento non può finire prima di iniziare." - -#: mod/events.php:132 mod/events.php:134 -msgid "Event title and start time are required." -msgstr "Titolo e ora di inizio dell'evento sono richiesti." - -#: mod/events.php:379 -msgid "Create New Event" -msgstr "Crea un nuovo evento" - -#: mod/events.php:478 src/Module/Admin/Logs/View.php:96 -msgid "Event details" -msgstr "Dettagli dell'evento" - -#: mod/events.php:479 -msgid "Starting date and Title are required." -msgstr "La data di inizio e il titolo sono richiesti." - -#: mod/events.php:480 mod/events.php:485 -msgid "Event Starts:" -msgstr "L'evento inizia:" - -#: mod/events.php:480 mod/events.php:510 -#: src/Module/Admin/Blocklist/Server/Add.php:104 -#: src/Module/Admin/Blocklist/Server/Add.php:106 -#: src/Module/Admin/Blocklist/Server/Index.php:68 -#: src/Module/Admin/Blocklist/Server/Index.php:69 -#: src/Module/Admin/Blocklist/Server/Index.php:96 -#: src/Module/Admin/Item/Delete.php:69 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:207 src/Module/Install.php:240 -#: src/Module/Install.php:245 src/Module/Install.php:264 -#: src/Module/Install.php:275 src/Module/Install.php:280 -#: src/Module/Install.php:286 src/Module/Install.php:291 -#: src/Module/Install.php:305 src/Module/Install.php:320 -#: src/Module/Install.php:347 src/Module/Register.php:148 -#: src/Module/Security/TwoFactor/Verify.php:100 -#: src/Module/Settings/TwoFactor/Index.php:133 -#: src/Module/Settings/TwoFactor/Verify.php:154 -msgid "Required" -msgstr "Richiesto" - -#: mod/events.php:493 mod/events.php:516 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/ora di fine non è definita" - -#: mod/events.php:495 mod/events.php:500 -msgid "Event Finishes:" -msgstr "L'evento finisce:" - -#: mod/events.php:506 src/Module/Profile/Profile.php:172 -#: src/Module/Settings/Profile/Index.php:238 -msgid "Description:" -msgstr "Descrizione:" - -#: mod/events.php:508 src/Content/Widget/VCard.php:98 src/Model/Event.php:80 -#: src/Model/Event.php:107 src/Model/Event.php:466 src/Model/Event.php:915 -#: src/Model/Profile.php:368 src/Module/Contact/Profile.php:369 -#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:185 -#: src/Module/Profile/Profile.php:194 -msgid "Location:" -msgstr "Posizione:" - -#: mod/events.php:510 mod/events.php:512 -msgid "Title:" -msgstr "Titolo:" - -#: mod/events.php:513 mod/events.php:514 -msgid "Share this event" -msgstr "Condividi questo evento" - -#: mod/events.php:519 mod/message.php:201 mod/message.php:357 -#: mod/photos.php:927 mod/photos.php:1031 mod/photos.php:1301 -#: mod/photos.php:1342 mod/photos.php:1398 mod/photos.php:1472 -#: src/Module/Admin/Item/Source.php:65 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Poke.php:177 src/Module/Contact/Profile.php:327 -#: src/Module/Debug/ActivityPubConversion.php:141 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/Delegation.php:148 src/Module/FriendSuggest.php:144 -#: src/Module/Install.php:252 src/Module/Install.php:294 -#: src/Module/Install.php:331 src/Module/Invite.php:177 -#: src/Module/Item/Compose.php:150 src/Module/Profile/Profile.php:247 -#: src/Module/Settings/Profile/Index.php:222 src/Object/Post.php:965 -#: 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 "Invia" - -#: mod/events.php:520 src/Module/Profile/Profile.php:248 -msgid "Basic" -msgstr "Base" - -#: mod/events.php:521 src/Module/Admin/Site.php:506 src/Module/Contact.php:474 -#: src/Module/Profile/Profile.php:249 -msgid "Advanced" -msgstr "Avanzate" - -#: mod/events.php:538 -msgid "Failed to remove event" -msgstr "Rimozione evento fallita." - -#: mod/fbrowser.php:60 src/Content/Nav.php:192 src/Module/BaseProfile.php:64 -#: view/theme/frio/theme.php:227 -msgid "Photos" -msgstr "Foto" - -#: mod/fbrowser.php:119 mod/fbrowser.php:146 -#: src/Module/Settings/Profile/Photo/Index.php:129 -msgid "Upload" -msgstr "Carica" - -#: mod/fbrowser.php:141 -msgid "Files" -msgstr "File" - -#: mod/follow.php:74 mod/unfollow.php:96 src/Module/RemoteFollow.php:126 -msgid "Submit Request" -msgstr "Invia richiesta" - -#: mod/follow.php:84 -msgid "You already added this contact." -msgstr "Hai già aggiunto questo contatto." - -#: mod/follow.php:100 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "Non è possibile rilevare il tipo di rete. Il contatto non può essere aggiunto." - -#: mod/follow.php:108 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Il supporto Diaspora non è abilitato. Il contatto non può essere aggiunto." - -#: mod/follow.php:113 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Il supporto OStatus non è abilitato. Il contatto non può essere aggiunto." - -#: mod/follow.php:138 src/Content/Item.php:463 src/Content/Widget.php:76 -#: src/Model/Contact.php:1056 src/Model/Contact.php:1068 -#: view/theme/vier/theme.php:172 -msgid "Connect/Follow" -msgstr "Connetti/segui" - -#: mod/follow.php:139 src/Module/RemoteFollow.php:125 -msgid "Please answer the following:" -msgstr "Rispondi:" - -#: mod/follow.php:140 mod/unfollow.php:94 -msgid "Your Identity Address:" -msgstr "L'indirizzo della tua identità:" - -#: mod/follow.php:141 mod/unfollow.php:100 -#: src/Module/Admin/Blocklist/Contact.php:116 -#: src/Module/Contact/Profile.php:365 -#: src/Module/Notifications/Introductions.php:127 -#: src/Module/Notifications/Introductions.php:196 -msgid "Profile URL" -msgstr "URL Profilo" - -#: mod/follow.php:142 src/Module/Contact/Profile.php:377 -#: src/Module/Notifications/Introductions.php:189 -#: src/Module/Profile/Profile.php:207 -msgid "Tags:" -msgstr "Tag:" - -#: mod/follow.php:153 -#, php-format -msgid "%s knows you" -msgstr "%s ti conosce" - -#: mod/follow.php:154 -msgid "Add a personal note:" -msgstr "Aggiungi una nota personale:" - -#: mod/follow.php:163 mod/unfollow.php:109 src/Module/BaseProfile.php:59 -#: src/Module/Contact.php:444 -msgid "Status Messages and Posts" -msgstr "Messaggi di stato e messaggi" - -#: mod/follow.php:191 -msgid "The contact could not be added." -msgstr "Il contatto non può essere aggiunto." - -#: mod/item.php:135 mod/item.php:139 +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 msgid "Unable to locate original post." msgstr "Impossibile trovare il messaggio originale." -#: mod/item.php:341 mod/item.php:346 -msgid "Empty post discarded." -msgstr "Messaggio vuoto scartato." - -#: mod/item.php:743 +#: mod/item.php:138 msgid "Post updated." msgstr "Messaggio aggiornato." -#: mod/item.php:753 mod/item.php:758 +#: mod/item.php:203 mod/item.php:207 msgid "Item wasn't stored." msgstr "L'oggetto non è stato salvato." -#: mod/item.php:769 +#: mod/item.php:217 msgid "Item couldn't be fetched." msgstr "L'oggetto non può essere recuperato." -#: mod/item.php:915 src/Module/Admin/Themes/Details.php:39 -#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:41 -#: src/Module/Debug/ItemBody.php:56 +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "Messaggio vuoto scartato." + +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 +#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Elemento non trovato." +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:99 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:38 +#: src/Module/FriendSuggest.php:57 src/Module/Invite.php:42 +#: src/Module/Invite.php:131 src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Delegation.php:41 src/Module/Settings/Delegation.php:71 +#: src/Module/Settings/Display.php:73 src/Module/Settings/Display.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:111 +#: src/Module/Settings/RemoveMe.php:117 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Import.php:84 +#: src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "Permesso negato." + #: mod/lostpass.php:40 msgid "No valid account found." msgstr "Nessun account valido trovato." @@ -611,7 +156,7 @@ msgid "" "your email for further instructions." msgstr "Inserisci il tuo indirizzo email per reimpostare la password." -#: mod/lostpass.php:130 src/Module/Security/Login.php:147 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " msgstr "Nome utente o email: " @@ -619,7 +164,7 @@ msgstr "Nome utente o email: " msgid "Reset" msgstr "Reimposta" -#: mod/lostpass.php:146 src/Module/Security/Login.php:159 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 msgid "Password Reset" msgstr "Reimpostazione password" @@ -679,23 +224,11 @@ msgstr "\nI dettagli del tuo account sono:\n\n\tIndirizzo del sito: %1$s\n\tNome msgid "Your password has been changed at %s" msgstr "La tua password presso %s è stata cambiata" -#: mod/match.php:62 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "Nessuna parola chiave corrisponde. Per favore aggiungi parole chiave al tuo profilo." - -#: mod/match.php:93 src/Module/BaseSearch.php:116 -msgid "No matches" -msgstr "Nessun risultato" - -#: mod/match.php:98 -msgid "Profile Match" -msgstr "Profili corrispondenti" - -#: mod/message.php:46 mod/message.php:126 src/Content/Nav.php:286 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 msgid "New Message" msgstr "Nuovo messaggio" -#: mod/message.php:83 mod/wallmessage.php:70 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 msgid "No recipient selected." msgstr "Nessun destinatario selezionato." @@ -703,62 +236,102 @@ msgstr "Nessun destinatario selezionato." msgid "Unable to locate contact information." msgstr "Impossibile trovare le informazioni del contatto." -#: mod/message.php:90 mod/wallmessage.php:76 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 msgid "Message could not be sent." msgstr "Il messaggio non può essere inviato." -#: mod/message.php:93 mod/wallmessage.php:79 +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 msgid "Message collection failure." msgstr "Errore recuperando il messaggio." -#: mod/message.php:120 src/Module/Notifications/Introductions.php:133 -#: src/Module/Notifications/Introductions.php:168 -#: src/Module/Notifications/Notification.php:57 +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 msgid "Discard" msgstr "Scarta" -#: mod/message.php:133 src/Content/Nav.php:283 view/theme/frio/theme.php:234 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" msgstr "Messaggi" -#: mod/message.php:146 +#: mod/message.php:148 msgid "Conversation not found." msgstr "Conversazione non trovata." -#: mod/message.php:151 +#: mod/message.php:153 msgid "Message was not deleted." msgstr "Il messaggio non è stato eliminato." -#: mod/message.php:166 +#: mod/message.php:168 msgid "Conversation was not removed." msgstr "La conversazione non è stata rimossa." -#: mod/message.php:180 mod/message.php:286 mod/wallmessage.php:124 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 msgid "Please enter a link URL:" msgstr "Inserisci un collegamento URL:" -#: mod/message.php:189 mod/wallmessage.php:129 +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 msgid "Send Private Message" msgstr "Invia un messaggio privato" -#: mod/message.php:190 mod/message.php:347 mod/wallmessage.php:131 +#: mod/message.php:191 mod/message.php:346 msgid "To:" msgstr "A:" -#: mod/message.php:191 mod/message.php:348 mod/wallmessage.php:132 +#: mod/message.php:192 mod/message.php:347 msgid "Subject:" msgstr "Oggetto:" -#: mod/message.php:195 mod/message.php:351 mod/wallmessage.php:138 -#: src/Module/Invite.php:170 +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 msgid "Your message:" msgstr "Il tuo messaggio:" -#: mod/message.php:222 +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "Carica foto" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "Inserisci collegamento web" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:578 +msgid "Please wait" +msgstr "Attendi" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:145 +#: src/Module/Install.php:234 src/Module/Install.php:274 +#: src/Module/Install.php:309 src/Module/Invite.php:178 +#: src/Module/Item/Compose.php:189 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Object/Post.php:1095 +#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171 +#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Invia" + +#: mod/message.php:223 msgid "No messages." msgstr "Nessun messaggio." -#: mod/message.php:278 +#: mod/message.php:279 msgid "Message not available." msgstr "Messaggio non disponibile." @@ -766,11 +339,11 @@ msgstr "Messaggio non disponibile." msgid "Delete message" msgstr "Elimina il messaggio" -#: mod/message.php:325 mod/message.php:457 +#: mod/message.php:325 mod/message.php:456 msgid "D, d M Y - g:i A" msgstr "D d M Y - G:i" -#: mod/message.php:340 mod/message.php:454 +#: mod/message.php:340 mod/message.php:453 msgid "Delete conversation" msgstr "Elimina la conversazione" @@ -780,1418 +353,482 @@ msgid "" "respond from the sender's profile page." msgstr "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente." -#: mod/message.php:346 +#: mod/message.php:345 msgid "Send Reply" msgstr "Invia la risposta" -#: mod/message.php:428 +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "Mittente sconosciuto - %s" -#: mod/message.php:430 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "Tu e %s" -#: mod/message.php:432 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "%s e Tu" -#: mod/message.php:460 +#: mod/message.php:459 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d messaggio" msgstr[1] "%d messaggi" +msgstr[2] "%d messaggi" -#: mod/notes.php:51 src/Module/BaseProfile.php:106 +#: mod/notes.php:52 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "Note personali" -#: mod/notes.php:55 +#: mod/notes.php:56 msgid "Personal notes are visible only by yourself." msgstr "Le note personali sono visibili solo da te." -#: mod/ostatus_subscribe.php:37 -msgid "Subscribing to contacts" -msgstr "Iscrizione a contatti" +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 +msgid "Save" +msgstr "Salva" -#: mod/ostatus_subscribe.php:47 -msgid "No contact provided." -msgstr "Nessun contatto disponibile." +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "Utente non trovato." -#: mod/ostatus_subscribe.php:53 -msgid "Couldn't fetch information for contact." -msgstr "Non è stato possibile recuperare le informazioni del contatto." - -#: mod/ostatus_subscribe.php:64 -msgid "Couldn't fetch friends for contact." -msgstr "Non è stato possibile recuperare gli amici del contatto." - -#: mod/ostatus_subscribe.php:70 mod/ostatus_subscribe.php:81 -msgid "Couldn't fetch following contacts." -msgstr "Non è stato possibile recuperare i contatti seguiti." - -#: mod/ostatus_subscribe.php:76 -msgid "Couldn't fetch remote profile." -msgstr "Non è stato possibile recuperare il profilo remoto." - -#: mod/ostatus_subscribe.php:86 -msgid "Unsupported network" -msgstr "Rete non supportata" - -#: mod/ostatus_subscribe.php:102 mod/repair_ostatus.php:51 -msgid "Done" -msgstr "Fatto" - -#: mod/ostatus_subscribe.php:116 -msgid "success" -msgstr "successo" - -#: mod/ostatus_subscribe.php:118 -msgid "failed" -msgstr "fallito" - -#: mod/ostatus_subscribe.php:121 -msgid "ignored" -msgstr "ignorato" - -#: mod/ostatus_subscribe.php:126 mod/repair_ostatus.php:57 -msgid "Keep this window open until done." -msgstr "Tieni questa finestra aperta fino a che ha finito." - -#: mod/photos.php:108 src/Module/BaseProfile.php:67 +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 msgid "Photo Albums" msgstr "Album foto" -#: mod/photos.php:109 mod/photos.php:1590 +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 msgid "Recent Photos" msgstr "Foto recenti" -#: mod/photos.php:111 mod/photos.php:1079 mod/photos.php:1592 +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 msgid "Upload New Photos" msgstr "Carica nuove foto" -#: mod/photos.php:129 src/Module/BaseSettings.php:35 +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 msgid "everybody" msgstr "tutti" -#: mod/photos.php:167 +#: mod/photos.php:159 msgid "Contact information unavailable" msgstr "I dati di questo contatto non sono disponibili" -#: mod/photos.php:196 +#: mod/photos.php:188 msgid "Album not found." msgstr "Album non trovato." -#: mod/photos.php:250 +#: mod/photos.php:244 msgid "Album successfully deleted" msgstr "Album eliminato con successo" -#: mod/photos.php:252 +#: mod/photos.php:246 msgid "Album was empty." msgstr "L'album era vuoto." -#: mod/photos.php:284 +#: mod/photos.php:277 msgid "Failed to delete the photo." msgstr "Eliminazione della foto non riuscita." -#: mod/photos.php:559 +#: mod/photos.php:545 msgid "a photo" msgstr "una foto" -#: mod/photos.php:559 +#: mod/photos.php:545 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s è stato taggato in %2$s da %3$s" -#: mod/photos.php:642 mod/photos.php:645 mod/photos.php:672 -#: mod/wall_upload.php:204 src/Module/Settings/Profile/Photo/Index.php:60 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "La dimensione dell'immagine supera il limite di %s" +#: mod/photos.php:582 src/Module/Conversation/Community.php:159 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Accesso negato." -#: mod/photos.php:648 -msgid "Image upload didn't complete, please try again" -msgstr "Caricamento dell'immagine non completato. Prova di nuovo." - -#: mod/photos.php:651 -msgid "Image file is missing" -msgstr "Il file dell'immagine è mancante" - -#: mod/photos.php:656 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "Il server non può accettare il caricamento di un nuovo file in questo momento, contattare l'amministratore" - -#: mod/photos.php:680 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." - -#: mod/photos.php:695 mod/wall_upload.php:166 -#: src/Module/Settings/Profile/Photo/Index.php:69 -msgid "Unable to process image." -msgstr "Impossibile caricare l'immagine." - -#: mod/photos.php:721 mod/wall_upload.php:229 -#: src/Module/Settings/Profile/Photo/Index.php:96 -msgid "Image upload failed." -msgstr "Caricamento immagine fallito." - -#: mod/photos.php:813 +#: mod/photos.php:587 msgid "No photos selected" msgstr "Nessuna foto selezionata" -#: mod/photos.php:882 -msgid "Access to this item is restricted." -msgstr "Questo oggetto non è visibile a tutti." +#: mod/photos.php:721 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "" -#: mod/photos.php:937 +#: mod/photos.php:728 msgid "Upload Photos" msgstr "Carica foto" -#: mod/photos.php:941 mod/photos.php:1027 +#: mod/photos.php:732 mod/photos.php:820 msgid "New album name: " msgstr "Nome nuovo album: " -#: mod/photos.php:942 +#: mod/photos.php:733 msgid "or select existing album:" msgstr "o seleziona un album esistente:" -#: mod/photos.php:943 +#: mod/photos.php:734 msgid "Do not show a status post for this upload" msgstr "Non creare un messaggio per questo upload" -#: mod/photos.php:1008 +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "Permessi" + +#: mod/photos.php:801 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?" -#: mod/photos.php:1009 mod/photos.php:1032 +#: mod/photos.php:802 mod/photos.php:825 msgid "Delete Album" msgstr "Rimuovi album" -#: mod/photos.php:1036 +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Annulla" + +#: mod/photos.php:829 msgid "Edit Album" msgstr "Modifica album" -#: mod/photos.php:1037 +#: mod/photos.php:830 msgid "Drop Album" msgstr "Elimina Album" -#: mod/photos.php:1041 +#: mod/photos.php:834 msgid "Show Newest First" msgstr "Mostra nuove foto per prime" -#: mod/photos.php:1043 +#: mod/photos.php:836 msgid "Show Oldest First" msgstr "Mostra vecchie foto per prime" -#: mod/photos.php:1064 mod/photos.php:1575 +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 msgid "View Photo" msgstr "Vedi foto" -#: mod/photos.php:1097 +#: mod/photos.php:889 msgid "Permission denied. Access to this item may be restricted." msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." -#: mod/photos.php:1099 +#: mod/photos.php:891 msgid "Photo not available" msgstr "Foto non disponibile" -#: mod/photos.php:1109 +#: mod/photos.php:901 msgid "Do you really want to delete this photo?" msgstr "Vuoi veramente cancellare questa foto?" -#: mod/photos.php:1110 mod/photos.php:1302 +#: mod/photos.php:902 mod/photos.php:1102 msgid "Delete Photo" msgstr "Rimuovi foto" -#: mod/photos.php:1200 +#: mod/photos.php:1000 msgid "View photo" msgstr "Vedi foto" -#: mod/photos.php:1202 +#: mod/photos.php:1002 msgid "Edit photo" msgstr "Modifica foto" -#: mod/photos.php:1203 +#: mod/photos.php:1003 msgid "Delete photo" msgstr "Elimina foto" -#: mod/photos.php:1204 +#: mod/photos.php:1004 msgid "Use as profile photo" msgstr "Usa come foto del profilo" -#: mod/photos.php:1211 +#: mod/photos.php:1011 msgid "Private Photo" msgstr "Foto privata" -#: mod/photos.php:1217 +#: mod/photos.php:1017 msgid "View Full Size" msgstr "Vedi dimensione intera" -#: mod/photos.php:1270 +#: mod/photos.php:1070 msgid "Tags: " msgstr "Tag: " -#: mod/photos.php:1273 +#: mod/photos.php:1073 msgid "[Select tags to remove]" msgstr "[Seleziona tag da rimuovere]" -#: mod/photos.php:1288 +#: mod/photos.php:1088 msgid "New album name" msgstr "Nuovo nome dell'album" -#: mod/photos.php:1289 +#: mod/photos.php:1089 msgid "Caption" msgstr "Titolo" -#: mod/photos.php:1290 +#: mod/photos.php:1090 msgid "Add a Tag" msgstr "Aggiungi tag" -#: mod/photos.php:1290 +#: mod/photos.php:1090 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1291 +#: mod/photos.php:1091 msgid "Do not rotate" msgstr "Non ruotare" -#: mod/photos.php:1292 +#: mod/photos.php:1092 msgid "Rotate CW (right)" msgstr "Ruota a destra" -#: mod/photos.php:1293 +#: mod/photos.php:1093 msgid "Rotate CCW (left)" msgstr "Ruota a sinistra" -#: mod/photos.php:1339 mod/photos.php:1395 mod/photos.php:1469 -#: src/Module/Contact.php:544 src/Module/Item/Compose.php:148 -#: src/Object/Post.php:962 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1092 msgid "This is you" msgstr "Questo sei tu" -#: mod/photos.php:1341 mod/photos.php:1397 mod/photos.php:1471 -#: src/Object/Post.php:498 src/Object/Post.php:964 +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:572 +#: src/Object/Post.php:1094 msgid "Comment" msgstr "Commento" -#: mod/photos.php:1430 src/Content/Conversation.php:615 -#: src/Object/Post.php:227 +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1108 +msgid "Preview" +msgstr "Anteprima" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1096 +msgid "Loading..." +msgstr "Caricamento..." + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:260 msgid "Select" msgstr "Seleziona" -#: mod/photos.php:1431 mod/settings.php:596 src/Content/Conversation.php:616 -#: src/Module/Admin/Users/Active.php:139 -#: src/Module/Admin/Users/Blocked.php:140 src/Module/Admin/Users/Index.php:153 +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 msgid "Delete" msgstr "Rimuovi" -#: mod/photos.php:1492 src/Object/Post.php:349 +#: mod/photos.php:1298 src/Object/Post.php:408 msgid "Like" msgstr "Mi Piace" -#: mod/photos.php:1493 src/Object/Post.php:349 +#: mod/photos.php:1299 src/Object/Post.php:408 msgid "I like this (toggle)" msgstr "Mi piace (clic per cambiare)" -#: mod/photos.php:1494 src/Object/Post.php:350 +#: mod/photos.php:1300 src/Object/Post.php:409 msgid "Dislike" msgstr "Non Mi Piace" -#: mod/photos.php:1496 src/Object/Post.php:350 +#: mod/photos.php:1302 src/Object/Post.php:409 msgid "I don't like this (toggle)" msgstr "Non mi piace (clic per cambiare)" -#: mod/photos.php:1518 +#: mod/photos.php:1324 msgid "Map" msgstr "Mappa" -#: mod/photos.php:1581 -msgid "View Album" -msgstr "Sfoglia l'album" - -#: mod/ping.php:275 -msgid "{0} wants to be your friend" -msgstr "{0} vuole essere tuo amico" - -#: mod/ping.php:292 -msgid "{0} requested registration" -msgstr "{0} chiede la registrazione" - -#: mod/ping.php:305 -#, php-format -msgid "{0} and %d others requested registration" -msgstr "{0} e %d altre registrazioni richieste" - -#: mod/redir.php:49 mod/redir.php:102 -msgid "Bad Request." -msgstr "Richiesta Errata." - -#: mod/redir.php:55 mod/redir.php:129 src/Module/Contact/Advanced.php:70 -#: src/Module/Contact/Advanced.php:109 src/Module/Contact/Contacts.php:55 -#: src/Module/Contact/Conversations.php:78 -#: src/Module/Contact/Conversations.php:83 -#: src/Module/Contact/Conversations.php:88 src/Module/Contact/Media.php:43 -#: src/Module/Contact/Posts.php:72 src/Module/Contact/Posts.php:77 -#: src/Module/Contact/Posts.php:82 src/Module/Contact/Profile.php:141 -#: src/Module/Contact/Profile.php:146 src/Module/Contact/Profile.php:151 -#: src/Module/FriendSuggest.php:70 src/Module/FriendSuggest.php:108 -#: src/Module/Group.php:99 src/Module/Group.php:108 -msgid "Contact not found." -msgstr "Contatto non trovato." - -#: mod/removeme.php:63 src/Navigation/Notifications/Repository/Notify.php:473 -msgid "[Friendica System Notify]" -msgstr "[Notifica di Sistema di Friendica]" - -#: mod/removeme.php:63 -msgid "User deleted their account" -msgstr "L'utente ha cancellato il suo account" - -#: mod/removeme.php:64 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "Sul tuo nodo Friendica un utente ha cancellato il suo account. Assicurati che i suoi dati siano rimossi dai backup." - -#: mod/removeme.php:65 -#, php-format -msgid "The user id is %d" -msgstr "L'id utente è %d" - -#: mod/removeme.php:99 mod/removeme.php:102 -msgid "Remove My Account" -msgstr "Rimuovi il mio account" - -#: mod/removeme.php:100 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." - -#: mod/removeme.php:101 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Risottoscrivi i contatti OStatus" - -#: mod/repair_ostatus.php:46 src/Module/Debug/ActivityPubConversion.php:130 -#: src/Module/Debug/Babel.php:293 src/Module/Security/TwoFactor/Verify.php:97 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Errori" -msgstr[1] "Errori" - -#: mod/settings.php:128 -msgid "Failed to connect with email account using the settings provided." -msgstr "Impossibile collegarsi all'account email con i parametri forniti." - -#: mod/settings.php:158 -msgid "Contact CSV file upload error" -msgstr "Errore nel caricamento del file CSV dei contatti" - -#: mod/settings.php:177 -msgid "Importing Contacts done" -msgstr "Importazione dei Contatti riuscita" - -#: mod/settings.php:190 -msgid "Relocate message has been send to your contacts" -msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti" - -#: mod/settings.php:202 -msgid "Passwords do not match." -msgstr "Le password non corrispondono." - -#: mod/settings.php:210 src/Console/User.php:210 -msgid "Password update failed. Please try again." -msgstr "Aggiornamento password fallito. Prova ancora." - -#: mod/settings.php:213 src/Console/User.php:213 -msgid "Password changed." -msgstr "Password cambiata." - -#: mod/settings.php:216 -msgid "Password unchanged." -msgstr "Password non modificata." - -#: mod/settings.php:304 -msgid "Please use a shorter name." -msgstr "Per favore utilizza un nome più corto." - -#: mod/settings.php:307 -msgid "Name too short." -msgstr "Nome troppo corto." - -#: mod/settings.php:316 -msgid "Wrong Password." -msgstr "Password Sbagliata." - -#: mod/settings.php:321 -msgid "Invalid email." -msgstr "Email non valida." - -#: mod/settings.php:327 -msgid "Cannot change to that email." -msgstr "Non puoi usare quella email." - -#: mod/settings.php:368 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito." - -#: mod/settings.php:371 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito." - -#: mod/settings.php:390 -msgid "Settings were not updated." -msgstr "Le impostazioni non sono state aggiornate." - -#: mod/settings.php:431 -msgid "Connected Apps" -msgstr "Applicazioni Collegate" - -#: mod/settings.php:432 src/Module/Admin/Blocklist/Contact.php:106 -#: 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 "Nome" - -#: mod/settings.php:433 src/Content/Nav.php:212 -msgid "Home Page" -msgstr "Home Page" - -#: mod/settings.php:434 src/Module/Admin/Queue.php:78 -msgid "Created" -msgstr "Creato" - -#: mod/settings.php:435 -msgid "Remove authorization" -msgstr "Rimuovi l'autorizzazione" - -#: mod/settings.php:461 mod/settings.php:493 mod/settings.php:524 -#: mod/settings.php:598 mod/settings.php:735 -#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:87 -#: src/Module/Admin/Logs/Settings.php:81 src/Module/Admin/Site.php:501 -#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:83 -#: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:193 -msgid "Save Settings" -msgstr "Salva Impostazioni" - -#: mod/settings.php:469 -msgid "Addon Settings" -msgstr "Impostazioni Componenti Aggiuntivi" - -#: mod/settings.php:470 -msgid "No Addon settings configured" -msgstr "Nessun componente aggiuntivo ha impostazioni modificabili" - -#: mod/settings.php:491 -msgid "Additional Features" -msgstr "Funzionalità aggiuntive" - -#: mod/settings.php:529 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/settings.php:529 mod/settings.php:530 -msgid "enabled" -msgstr "abilitato" - -#: mod/settings.php:529 mod/settings.php:530 -msgid "disabled" -msgstr "disabilitato" - -#: mod/settings.php:529 mod/settings.php:530 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Il supporto integrato per la connettività con %s è %s" - -#: mod/settings.php:530 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: mod/settings.php:556 -msgid "Email access is disabled on this site." -msgstr "L'accesso email è disabilitato su questo sito." - -#: mod/settings.php:561 mod/settings.php:596 -msgid "None" -msgstr "Nessuna" - -#: mod/settings.php:567 src/Module/BaseSettings.php:78 -msgid "Social Networks" -msgstr "Social Networks" - -#: mod/settings.php:572 -msgid "General Social Media Settings" -msgstr "Impostazioni Media Sociali" - -#: mod/settings.php:573 -msgid "Accept only top level posts by contacts you follow" -msgstr "Accetta solo messaggi di primo livello dai contatti che segui" - -#: mod/settings.php:573 -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 " -"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." -msgstr "Il sistema completa automaticamente le conversazioni quando arriva un commento. Questo può far si che tu riceva messaggi iniziati da qualcuno che non segui ma son stati commentati da qualcuno che segui. Questa impostazione disattiva questo comportamento. Quando attivo, riceverai solamente i messaggi da persone che veramente segui." - -#: mod/settings.php:574 -msgid "Enable Content Warning" -msgstr "Abilita Avviso Contenuto" - -#: mod/settings.php:574 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect any other content filtering you eventually set up." -msgstr "Gli utenti su reti come Mastodon o Pleroma sono in grado di impostare un campo di avviso sul contenuto. Questa impostazione nasconde in automatico il contenuto del messaggio in caso di avviso, invece di impostare l'avviso di contenuto come titolo del post. Non ha effetto su eventuali altri filtri impostati." - -#: mod/settings.php:575 -msgid "Enable intelligent shortening" -msgstr "Abilita accorciamento intelligente" - -#: mod/settings.php:575 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If disabled, every shortened post will always point to the original " -"friendica post." -msgstr "Normalmente il sistema tenta di trovare il collegamento migliore da aggiungere ad un messaggio accorciato. Se questa opzione è disabilitata, ogni messaggio accorciato conterrà sempre un collegamento al messaggio originale su Friendica." - -#: mod/settings.php:576 -msgid "Enable simple text shortening" -msgstr "Abilita accorciamento semplice del testo" - -#: mod/settings.php:576 -msgid "" -"Normally the system shortens posts at the next line feed. If this option is " -"enabled then the system will shorten the text at the maximum character " -"limit." -msgstr "Normalmente il sistema accorcia i messaggi alla successiva interruzione di linea. Se questa opzione è abilitata il sistema accorcerà il testo al raggiungimento del limite massimo di caratteri." - -#: mod/settings.php:577 -msgid "Attach the link title" -msgstr "Allega il titolo del collegamento" - -#: mod/settings.php:577 -msgid "" -"When activated, the title of the attached link will be added as a title on " -"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" -" share feed content." -msgstr "Quando attivato, il titolo del collegamento allegato sarà aggiunto come titolo dei messaggi su Diaspora. Questo è più che altro utile con i contatti \"remoti di sè stessi\" che condividono il contenuto del flusso." - -#: mod/settings.php:578 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "Il tuo vecchio account ActivityPub/GNU Social " - -#: mod/settings.php:578 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "Se inserisci il nome del tuo vecchio account su un sistema basato su ActivityPub o del tuo vecchio account GNU Social/Statusnet (nel formato utente@dominio.tld), i tuoi contatti verranno importati automaticamente. Il campo verrà svuotato una volta terminata l'operazione." - -#: mod/settings.php:581 -msgid "Repair OStatus subscriptions" -msgstr "Ripara le iscrizioni OStatus" - -#: mod/settings.php:585 -msgid "Email/Mailbox Setup" -msgstr "Impostazioni email" - -#: mod/settings.php:586 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)" - -#: mod/settings.php:587 -msgid "Last successful email check:" -msgstr "Ultimo controllo email eseguito con successo:" - -#: mod/settings.php:589 -msgid "IMAP server name:" -msgstr "Nome server IMAP:" - -#: mod/settings.php:590 -msgid "IMAP port:" -msgstr "Porta IMAP:" - -#: mod/settings.php:591 -msgid "Security:" -msgstr "Sicurezza:" - -#: mod/settings.php:592 -msgid "Email login name:" -msgstr "Nome utente email:" - -#: mod/settings.php:593 -msgid "Email password:" -msgstr "Password email:" - -#: mod/settings.php:594 -msgid "Reply-to address:" -msgstr "Indirizzo di risposta:" - -#: mod/settings.php:595 -msgid "Send public posts to all email contacts:" -msgstr "Invia i messaggi pubblici ai contatti email:" - -#: mod/settings.php:596 -msgid "Action after import:" -msgstr "Azione dopo importazione:" - -#: mod/settings.php:596 src/Content/Nav.php:280 -msgid "Mark as seen" -msgstr "Segna come letto" - -#: mod/settings.php:596 -msgid "Move to folder" -msgstr "Sposta nella cartella" - -#: mod/settings.php:597 -msgid "Move to folder:" -msgstr "Sposta nella cartella:" - -#: mod/settings.php:611 -msgid "Unable to find your profile. Please contact your admin." -msgstr "Impossibile trovare il tuo profilo. Contatta il tuo amministratore." - -#: mod/settings.php:649 src/Content/Widget.php:526 -msgid "Account Types" -msgstr "Tipi di Account" - -#: mod/settings.php:650 -msgid "Personal Page Subtypes" -msgstr "Sottotipi di Pagine Personali" - -#: mod/settings.php:651 -msgid "Community Forum Subtypes" -msgstr "Sottotipi di Community Forum" - -#: mod/settings.php:658 src/Module/Admin/BaseUsers.php:107 -msgid "Personal Page" -msgstr "Pagina Personale" - -#: mod/settings.php:659 -msgid "Account for a personal profile." -msgstr "Account per profilo personale." - -#: mod/settings.php:662 src/Module/Admin/BaseUsers.php:108 -msgid "Organisation Page" -msgstr "Pagina Organizzazione" - -#: mod/settings.php:663 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "Account per un'organizzazione, che automaticamente approva le richieste di contatto come \"Follower\"." - -#: mod/settings.php:666 src/Module/Admin/BaseUsers.php:109 -msgid "News Page" -msgstr "Pagina Notizie" - -#: mod/settings.php:667 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "Account per notizie, che automaticamente approva le richieste di contatto come \"Follower\"" - -#: mod/settings.php:670 src/Module/Admin/BaseUsers.php:110 -msgid "Community Forum" -msgstr "Community Forum" - -#: mod/settings.php:671 -msgid "Account for community discussions." -msgstr "Account per discussioni comunitarie." - -#: mod/settings.php:674 src/Module/Admin/BaseUsers.php:100 -msgid "Normal Account Page" -msgstr "Pagina Account Normale" - -#: mod/settings.php:675 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "Account per un profilo personale, che richiede l'approvazione delle richieste di contatto come \"Amico\" o \"Follower\"." - -#: mod/settings.php:678 src/Module/Admin/BaseUsers.php:101 -msgid "Soapbox Page" -msgstr "Pagina Sandbox" - -#: mod/settings.php:679 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "Account per un profilo publico, che automaticamente approva le richieste di contatto come \"Follower\"." - -#: mod/settings.php:682 src/Module/Admin/BaseUsers.php:102 -msgid "Public Forum" -msgstr "Forum Pubblico" - -#: mod/settings.php:683 -msgid "Automatically approves all contact requests." -msgstr "Approva automaticamente tutte le richieste di contatto." - -#: mod/settings.php:686 src/Module/Admin/BaseUsers.php:103 -msgid "Automatic Friend Page" -msgstr "Pagina con amicizia automatica" - -#: mod/settings.php:687 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "Account per un profilo popolare, che automaticamente approva le richieste di contatto come \"Amici\"." - -#: mod/settings.php:690 -msgid "Private Forum [Experimental]" -msgstr "Forum privato [sperimentale]" - -#: mod/settings.php:691 -msgid "Requires manual approval of contact requests." -msgstr "Richiede l'approvazione manuale delle richieste di contatto." - -#: mod/settings.php:702 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:702 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" - -#: mod/settings.php:710 -msgid "Publish your profile in your local site directory?" -msgstr "Pubblica il tuo profilo nell'elenco locale del tuo sito?" - -#: mod/settings.php:710 -#, php-format -msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "Il tuo profilo verrà pubblicato nella directory locale di questo nodo. I dettagli del tuo profilo potrebbero essere visibili pubblicamente a seconda delle impostazioni di sistema." - -#: mod/settings.php:716 -#, php-format -msgid "" -"Your profile will also be published in the global friendica directories " -"(e.g. %s)." -msgstr "Il tuo profilo sarà anche pubblicato nelle directory globali di friendica (es. %s)." - -#: mod/settings.php:722 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "L'indirizzo della tua identità è '%s' or '%s'." - -#: mod/settings.php:733 -msgid "Account Settings" -msgstr "Impostazioni account" - -#: mod/settings.php:741 -msgid "Password Settings" -msgstr "Impostazioni password" - -#: mod/settings.php:742 src/Module/Register.php:162 -msgid "New Password:" -msgstr "Nuova password:" - -#: mod/settings.php:742 -msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "I caratteri permessi sono a-z, A-Z, 0-9 e caratteri speciali tranne spazio, lettere accentate e due punti (:)." - -#: mod/settings.php:743 src/Module/Register.php:163 -msgid "Confirm:" -msgstr "Conferma:" - -#: mod/settings.php:743 -msgid "Leave password fields blank unless changing" -msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" - -#: mod/settings.php:744 -msgid "Current Password:" -msgstr "Password Attuale:" - -#: mod/settings.php:744 -msgid "Your current password to confirm the changes" -msgstr "La tua password attuale per confermare le modifiche" - -#: mod/settings.php:745 -msgid "Password:" -msgstr "Password:" - -#: mod/settings.php:745 -msgid "Your current password to confirm the changes of the email address" -msgstr "La tua password attuale per confermare il cambio di indirizzo email" - -#: mod/settings.php:748 -msgid "Delete OpenID URL" -msgstr "Elimina URL OpenID" - -#: mod/settings.php:750 -msgid "Basic Settings" -msgstr "Impostazioni base" - -#: mod/settings.php:751 src/Module/Profile/Profile.php:144 -msgid "Full Name:" -msgstr "Nome completo:" - -#: mod/settings.php:752 -msgid "Email Address:" -msgstr "Indirizzo Email:" - -#: mod/settings.php:753 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" - -#: mod/settings.php:754 -msgid "Your Language:" -msgstr "La tua lingua:" - -#: mod/settings.php:754 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Imposta la lingua che sarà usata per mostrarti l'interfaccia di Friendica e per inviarti le email" - -#: mod/settings.php:755 -msgid "Default Post Location:" -msgstr "Località predefinita:" - -#: mod/settings.php:756 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" - -#: mod/settings.php:758 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" - -#: mod/settings.php:760 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo di richieste di amicizia al giorno:" - -#: mod/settings.php:760 mod/settings.php:770 -msgid "(to prevent spam abuse)" -msgstr "(per prevenire lo spam)" - -#: mod/settings.php:762 -msgid "Allow your profile to be searchable globally?" -msgstr "Vuoi che il tuo profilo sia ricercabile globalmente?" - -#: mod/settings.php:762 -msgid "" -"Activate this setting if you want others to easily find and follow you. Your" -" profile will be searchable on remote systems. This setting also determines " -"whether Friendica will inform search engines that your profile should be " -"indexed or not." -msgstr "Attiva questa impostazione se vuoi che gli altri ti trovino facilmente e ti seguano. Il tuo profilo sarà ricercabile da sistemi remoti. Questa impostazione determina anche se Friendica informerà i motori di ricerca che il tuo profilo sia indicizzabile o meno." - -#: mod/settings.php:763 -msgid "Hide your contact/friend list from viewers of your profile?" -msgstr "Nascondere la lista dei tuo contatti/amici dai visitatori del tuo profilo?" - -#: mod/settings.php:763 -msgid "" -"A list of your contacts is displayed on your profile page. Activate this " -"option to disable the display of your contact list." -msgstr "La lista dei tuoi contatti è mostrata sulla tua pagina di profilo. Attiva questa opzione per disabilitare la visualizzazione del tuo elenco contatti." - -#: mod/settings.php:764 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Nascondi i dettagli del tuo profilo ai visitatori anonimi?" - -#: mod/settings.php:764 -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 "I visitatori anonimi vedranno nella tua pagina profilo solo la tua foto del profilo, il tuo nome e il nome utente che stai usando. I tuoi messaggi pubblici e le risposte saranno comunque accessibili in altre maniere." - -#: mod/settings.php:765 -msgid "Make public posts unlisted" -msgstr "Rendi messaggi pubblici non elencati" - -#: mod/settings.php:765 -msgid "" -"Your public posts will not appear on the community pages or in search " -"results, nor be sent to relay servers. However they can still appear on " -"public feeds on remote servers." -msgstr "I tuoi messaggi pubblici non appariranno sulle pagine della comunità o nei risultati di ricerca, e non saranno inviati ai server relay. Comunque appariranno sui feed pubblici su server remoti." - -#: mod/settings.php:766 -msgid "Make all posted pictures accessible" -msgstr "Rendi tutte le immagini pubblicate accessibili" - -#: mod/settings.php:766 -msgid "" -"This option makes every posted picture accessible via the direct link. This " -"is a workaround for the problem that most other networks can't handle " -"permissions on pictures. Non public pictures still won't be visible for the " -"public on your photo albums though." -msgstr "Questa opzione rende ogni immagine pubblicata accessibile attraverso il collegamento diretto. Questo è una soluzione alternativa al problema che la maggior parte delle altre reti non gestiscono i permessi sulle immagini. Le immagini non pubbliche non saranno visibili al pubblico nei tuoi album fotografici comunque." - -#: mod/settings.php:767 -msgid "Allow friends to post to your profile page?" -msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" - -#: mod/settings.php:767 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "I tuoi contatti possono scrivere messaggi sulla tua pagina di profilo. Questi messaggi saranno distribuiti a tutti i tuoi contatti." - -#: mod/settings.php:768 -msgid "Allow friends to tag your posts?" -msgstr "Permetti agli amici di aggiungere tag ai tuoi messaggi?" - -#: mod/settings.php:768 -msgid "Your contacts can add additional tags to your posts." -msgstr "I tuoi contatti possono aggiungere tag aggiuntivi ai tuoi messaggi." - -#: mod/settings.php:769 -msgid "Permit unknown people to send you private mail?" -msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" - -#: mod/settings.php:769 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "Gli utenti sulla rete Friendica possono inviarti messaggi privati anche se non sono nella tua lista di contatti." - -#: mod/settings.php:770 -msgid "Maximum private messages per day from unknown people:" -msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" - -#: mod/settings.php:772 -msgid "Default Post Permissions" -msgstr "Permessi predefiniti per i messaggi" - -#: mod/settings.php:776 -msgid "Expiration settings" -msgstr "Impostazioni di scadenza" - -#: mod/settings.php:777 -msgid "Automatically expire posts after this many days:" -msgstr "Fai scadere i messaggi automaticamente dopo x giorni:" - -#: mod/settings.php:777 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." - -#: mod/settings.php:778 -msgid "Expire posts" -msgstr "Fai scadere i messaggi" - -#: mod/settings.php:778 -msgid "When activated, posts and comments will be expired." -msgstr "Quando attivato, i messaggi e i commenti scadranno." - -#: mod/settings.php:779 -msgid "Expire personal notes" -msgstr "Fai scadere le note personali" - -#: mod/settings.php:779 -msgid "" -"When activated, the personal notes on your profile page will be expired." -msgstr "Quando attivato, le note personali sulla tua pagina del profilo scadranno." - -#: mod/settings.php:780 -msgid "Expire starred posts" -msgstr "Fai scadere i messaggi speciali" - -#: mod/settings.php:780 -msgid "" -"Starring posts keeps them from being expired. That behaviour is overwritten " -"by this setting." -msgstr "Inserire i messaggi negli speciali evita di farli scadere. Questo comportamento viene scavalcato da questa impostazione." - -#: mod/settings.php:781 -msgid "Expire photos" -msgstr "Fai scadere foto" - -#: mod/settings.php:781 -msgid "When activated, photos will be expired." -msgstr "Quando attivato, le foto scadranno." - -#: mod/settings.php:782 -msgid "Only expire posts by others" -msgstr "Fai scadere solo i messaggi degli altri" - -#: mod/settings.php:782 -msgid "" -"When activated, your own posts never expire. Then the settings above are " -"only valid for posts you received." -msgstr "Quando attivato, i tuoi messaggi non scadranno mai. Quindi le impostazioni qui sopra saranno valide solo per i messaggi che hai ricevuto." - -#: mod/settings.php:785 -msgid "Notification Settings" -msgstr "Impostazioni notifiche" - -#: mod/settings.php:786 -msgid "Send a notification email when:" -msgstr "Invia una mail di notifica quando:" - -#: mod/settings.php:787 -msgid "You receive an introduction" -msgstr "Ricevi una presentazione" - -#: mod/settings.php:788 -msgid "Your introductions are confirmed" -msgstr "Le tue presentazioni sono confermate" - -#: mod/settings.php:789 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla bacheca del tuo profilo" - -#: mod/settings.php:790 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento a un tuo messaggio" - -#: mod/settings.php:791 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" - -#: mod/settings.php:792 -msgid "You receive a friend suggestion" -msgstr "Hai ricevuto un suggerimento di amicizia" - -#: mod/settings.php:793 -msgid "You are tagged in a post" -msgstr "Sei stato taggato in un messaggio" - -#: mod/settings.php:794 -msgid "You are poked/prodded/etc. in a post" -msgstr "Sei 'toccato'/'spronato'/ecc. in un messaggio" - -#: mod/settings.php:796 -msgid "Create a desktop notification when:" -msgstr "Crea una notifica desktop quando:" - -#: mod/settings.php:797 -msgid "Someone liked your content" -msgstr "Qualcuno ha messo mi piace a un tuo contenuto" - -#: mod/settings.php:798 -msgid "Someone shared your content" -msgstr "Qualcuno ha condiviso un tuo contenuto" - -#: mod/settings.php:800 -msgid "Activate desktop notifications" -msgstr "Attiva notifiche desktop" - -#: mod/settings.php:800 -msgid "Show desktop popup on new notifications" -msgstr "Mostra un popup di notifica sul desktop all'arrivo di nuove notifiche" - -#: mod/settings.php:802 -msgid "Text-only notification emails" -msgstr "Email di notifica in solo testo" - -#: mod/settings.php:804 -msgid "Send text only notification emails, without the html part" -msgstr "Invia le email di notifica in solo testo, senza la parte in html" - -#: mod/settings.php:806 -msgid "Show detailled notifications" -msgstr "Mostra notifiche dettagliate" - -#: mod/settings.php:808 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "Per impostazione predefinita, le notifiche sono raggruppate in una singola notifica per articolo. Se abilitato, viene visualizzate tutte le notifiche." - -#: mod/settings.php:810 -msgid "Show notifications of ignored contacts" -msgstr "Mostra notifiche dai contatti ignorati" - -#: mod/settings.php:812 -msgid "" -"You don't see posts from ignored contacts. But you still see their comments." -" This setting controls if you want to still receive regular notifications " -"that are caused by ignored contacts or not." -msgstr "Non vedi i messaggi da contatti ignorati. Ma puoi ancora vedere i loro commenti. Questa impostazione controlla se vuoi o meno continuare a ricevere notifiche regolari che sono causate dai contatti ignorati." - -#: mod/settings.php:814 -msgid "Advanced Account/Page Type Settings" -msgstr "Impostazioni avanzate Account/Tipo di pagina" - -#: mod/settings.php:815 -msgid "Change the behaviour of this account for special situations" -msgstr "Modifica il comportamento di questo account in situazioni speciali" - -#: mod/settings.php:818 -msgid "Import Contacts" -msgstr "Importa Contatti" - -#: mod/settings.php:819 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "Carica un file CSV che contiene gli indirizzi dei tuoi account seguiti nella prima colonna che hai esportato dal vecchio account." - -#: mod/settings.php:820 -msgid "Upload File" -msgstr "Carica File" - -#: mod/settings.php:822 -msgid "Relocate" -msgstr "Trasloca" - -#: mod/settings.php:823 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone." - -#: mod/settings.php:824 -msgid "Resend relocate message to contacts" -msgstr "Invia nuovamente il messaggio di trasloco ai contatti" - -#: mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." - -#: mod/suggest.php:55 src/Content/Widget.php:79 view/theme/vier/theme.php:175 -msgid "Friend Suggestions" -msgstr "Contatti suggeriti" - -#: mod/tagger.php:78 src/Content/Item.php:346 src/Model/Item.php:2629 -msgid "photo" -msgstr "foto" - -#: mod/tagger.php:78 src/Content/Item.php:341 src/Content/Item.php:350 -msgid "status" -msgstr "stato" - -#: mod/tagger.php:111 src/Content/Item.php:360 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" - -#: mod/tagrm.php:113 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" - -#: mod/tagrm.php:115 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " - -#: mod/tagrm.php:126 src/Module/Settings/Delegation.php:179 -#: src/Module/Settings/TwoFactor/Trusted.php:140 -msgid "Remove" -msgstr "Rimuovi" - -#: mod/uimport.php:46 -msgid "User imports on closed servers can only be done by an administrator." -msgstr "L'importazione di utenti su server chiusi può essere effettuata solo da un amministratore." - -#: mod/uimport.php:55 src/Module/Register.php:99 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." - -#: mod/uimport.php:62 src/Module/Register.php:173 -msgid "Import" -msgstr "Importa" - -#: mod/uimport.php:64 -msgid "Move account" -msgstr "Muovi account" - -#: mod/uimport.php:65 -msgid "You can import an account from another Friendica server." -msgstr "Puoi importare un account da un altro server Friendica." - -#: mod/uimport.php:66 -msgid "" -"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." -msgstr "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." - -#: mod/uimport.php:67 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (GNU Social/Statusnet) o da Diaspora" - -#: mod/uimport.php:68 -msgid "Account file" -msgstr "File account" - -#: mod/uimport.php:68 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" - -#: mod/unfollow.php:65 mod/unfollow.php:135 -msgid "You aren't following this contact." -msgstr "Non stai seguendo questo contatto." - -#: mod/unfollow.php:71 -msgid "Unfollowing is currently not supported by your network." -msgstr "Smettere di seguire non è al momento supportato dalla tua rete." - -#: mod/unfollow.php:92 -msgid "Disconnect/Unfollow" -msgstr "Disconnetti/Non Seguire" - -#: mod/unfollow.php:146 -msgid "" -"Unable to unfollow this contact, please retry in a few minutes or contact " -"your administrator." -msgstr "Impossibile smettere di seguire questo contatto, riprova tra qualche minuto o contatta il tuo amministratore." - -#: mod/unfollow.php:148 -msgid "Contact was successfully unfollowed" -msgstr "Il contatto non è più seguito" - -#: mod/unfollow.php:152 -msgid "Unable to unfollow this contact, please contact your administrator" -msgstr "Impossibile smettere di seguire questo contatto, contatta il tuo amministratore" - -#: mod/wall_attach.php:39 mod/wall_attach.php:46 mod/wall_attach.php:77 -#: mod/wall_upload.php:53 mod/wall_upload.php:63 mod/wall_upload.php:99 -#: mod/wall_upload.php:150 mod/wall_upload.php:153 -msgid "Invalid request." -msgstr "Richiesta non valida." - -#: mod/wall_attach.php:95 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Mi spiace, forse il file che stai caricando è più grosso di quanto la configurazione di PHP permetta" - -#: mod/wall_attach.php:95 -msgid "Or - did you try to upload an empty file?" -msgstr "O.. non avrai provato a caricare un file vuoto?" - -#: mod/wall_attach.php:106 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Il file supera la dimensione massima di %s" - -#: mod/wall_attach.php:121 -msgid "File upload failed." -msgstr "Caricamento del file non riuscito." - -#: mod/wall_upload.php:221 src/Model/Photo.php:1049 -msgid "Wall Photos" -msgstr "Foto della bacheca" - -#: mod/wallmessage.php:62 mod/wallmessage.php:116 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito." - -#: mod/wallmessage.php:73 -msgid "Unable to check your home location." -msgstr "Impossibile controllare la tua posizione di origine." - -#: mod/wallmessage.php:97 mod/wallmessage.php:104 -msgid "No recipient." -msgstr "Nessun destinatario." - -#: mod/wallmessage.php:130 -#, 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 "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti." - -#: src/App.php:463 +#: src/App.php:473 msgid "No system theme config value set." msgstr "Nessun tema di sistema impostato." -#: src/App.php:583 +#: src/App.php:580 msgid "Apologies but the website is unavailable at the moment." msgstr "Ci scusiamo, il sito non è disponibile al momento." -#: src/App/Page.php:250 +#: src/App/Page.php:248 msgid "Delete this item?" msgstr "Cancellare questo elemento?" -#: src/App/Page.php:251 +#: src/App/Page.php:249 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "Bloccare questo autore? Non saranno in grado di seguirti e nemmeno di vedere i tuoi post pubblici, e tu non sarai in grado di vedere i loro messaggi e le loro notifiche." -#: src/App/Page.php:321 +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "" + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "" + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "" + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "" + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "" + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "" + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "" + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "" + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "" + +#: src/App/Page.php:351 msgid "toggle mobile" msgstr "commuta tema mobile" -#: src/App/Router.php:275 +#: src/App/Router.php:309 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Metodo non consentito per questo modulo. Metodo(i) consentiti: %s" -#: src/App/Router.php:277 src/Module/HTTPException/PageNotFound.php:33 +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 msgid "Page not found." msgstr "Pagina non trovata." -#: src/App/Router.php:305 +#: src/App/Router.php:323 msgid "You must be logged in to use addons. " msgstr "Devi aver effettuato il login per usare i componenti aggiuntivi." -#: src/BaseModule.php:377 +#: src/BaseModule.php:401 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 "Il token di sicurezza del modulo non era corretto. Probabilmente il modulo è rimasto aperto troppo a lungo (>3 ore) prima di inviarlo." -#: src/BaseModule.php:404 +#: src/BaseModule.php:428 msgid "All contacts" msgstr "Tutti i contatti" -#: src/BaseModule.php:409 src/Content/Widget.php:231 src/Core/ACL.php:193 -#: src/Module/Contact.php:367 src/Module/PermissionTooltip.php:98 -#: src/Module/PermissionTooltip.php:120 +#: src/BaseModule.php:433 src/Content/Conversation/Factory/Timeline.php:62 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 msgid "Followers" msgstr "Seguaci" -#: src/BaseModule.php:414 src/Content/Widget.php:232 -#: src/Module/Contact.php:368 +#: src/BaseModule.php:438 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 msgid "Following" msgstr "Seguendo" -#: src/BaseModule.php:419 src/Content/Widget.php:233 -#: src/Module/Contact.php:369 +#: src/BaseModule.php:443 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 msgid "Mutual friends" msgstr "Amici reciproci" -#: src/BaseModule.php:427 +#: src/BaseModule.php:451 msgid "Common" msgstr "Comune" -#: src/Console/Addon.php:177 src/Console/Addon.php:202 +#: src/Console/Addon.php:175 src/Console/Addon.php:199 msgid "Addon not found" msgstr "Componente aggiuntivo non trovato" -#: src/Console/Addon.php:181 +#: src/Console/Addon.php:179 msgid "Addon already enabled" msgstr "Componente aggiuntivo già abilitato" -#: src/Console/Addon.php:206 +#: src/Console/Addon.php:203 msgid "Addon already disabled" msgstr "Componente aggiuntivo già disabilitato" @@ -2205,16 +842,105 @@ msgid "The contact entries have been archived" msgstr "Il contatto è stato archiviato" #: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Impossibile trovare contatti a questo URL (%s)" #: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:66 +#: src/Module/Moderation/Blocklist/Contact.php:82 msgid "The contact has been blocked from the node" msgstr "Il contatto è stato bloccato dal nodo" +#: src/Console/MergeContacts.php:75 +#, php-format +msgid "%d %s, %d duplicates." +msgstr "" + +#: src/Console/MergeContacts.php:78 +#, php-format +msgid "uri-id is empty for contact %s." +msgstr "" + +#: src/Console/MergeContacts.php:91 +#, php-format +msgid "No valid first contact found for uri-id %d." +msgstr "" + +#: src/Console/MergeContacts.php:102 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:106 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:142 +#, php-format +msgid "Deletion of id %d failed" +msgstr "" + +#: src/Console/MergeContacts.php:144 +#, php-format +msgid "Deletion of id %d was successful" +msgstr "" + +#: src/Console/MergeContacts.php:150 +#, php-format +msgid "Updating \"%s\" in \"%s\" from %d to %d" +msgstr "" + +#: src/Console/MergeContacts.php:152 +msgid " - found" +msgstr "" + +#: src/Console/MergeContacts.php:159 +msgid " - failed" +msgstr "" + +#: src/Console/MergeContacts.php:161 +msgid " - success" +msgstr "" + +#: src/Console/MergeContacts.php:165 +msgid " - deleted" +msgstr "" + +#: src/Console/MergeContacts.php:168 +msgid " - done" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:91 +msgid "The avatar cache needs to be enabled to use this command." +msgstr "" + +#: src/Console/MoveToAvatarCache.php:109 +#, php-format +msgid "no resource in photo %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:137 +#, php-format +msgid "no photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:146 +#, php-format +msgid "no image data for photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:155 +#, php-format +msgid "invalid image for id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:168 +#, php-format +msgid "Quit on invalid photo %s" +msgstr "" + #: src/Console/PostUpdate.php:87 #, php-format msgid "Post update version number has been set to %s." @@ -2240,10 +966,29 @@ msgstr "Tutte le azioni post-aggiornamento sono state eseguite." msgid "Enter user nickname: " msgstr "Inserisci soprannome utente:" +#: src/Console/User.php:182 src/Model/User.php:711 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "Utente non trovato" + #: src/Console/User.php:202 msgid "Enter new password: " msgstr "Inserisci la nuova password:" +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 +msgid "Password update failed. Please try again." +msgstr "Aggiornamento password fallito. Prova ancora." + +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 +msgid "Password changed." +msgstr "Password cambiata." + #: src/Console/User.php:237 msgid "Enter user name: " msgstr "Inserisci nome utente:" @@ -2317,309 +1062,591 @@ msgstr "Settimanalmente" msgid "Monthly" msgstr "Mensilmente" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:126 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:127 msgid "OStatus" msgstr "Ostatus" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:128 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 +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 msgid "Email" msgstr "Email" -#: src/Content/ContactSelector.php:127 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:131 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:132 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:133 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:134 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:135 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:136 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:137 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:138 msgid "Discourse" msgstr "Discorso" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:139 msgid "Diaspora Connector" msgstr "Connettore Diaspora" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:140 msgid "GNU Social Connector" msgstr "Connettore GNU Social" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:141 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:142 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:175 +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "" + +#: src/Content/ContactSelector.php:180 #, php-format msgid "%s (via %s)" msgstr "%s (via %s)" -#: src/Content/Conversation.php:207 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." - -#: src/Content/Conversation.php:210 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." - -#: src/Content/Conversation.php:213 -#, php-format -msgid "%s attends." -msgstr "%s partecipa." - -#: src/Content/Conversation.php:216 -#, php-format -msgid "%s doesn't attend." -msgstr "%s non partecipa." - -#: src/Content/Conversation.php:219 -#, php-format -msgid "%s attends maybe." -msgstr "%s forse partecipa." - -#: src/Content/Conversation.php:222 src/Content/Conversation.php:260 -#: src/Content/Conversation.php:849 -#, php-format -msgid "%s reshared this." -msgstr "%s ha ricondiviso questo." - -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:226 msgid "and" msgstr "e" -#: src/Content/Conversation.php:231 +#: src/Content/Conversation.php:229 #, php-format msgid "and %d other people" msgstr "e altre %d persone" +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: src/Content/Conversation.php:239 #, php-format -msgid "%2$d people like this" -msgstr "Piace a %2$d persone." +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: src/Content/Conversation.php:240 +#: src/Content/Conversation.php:241 #, php-format -msgid "%s like this." -msgstr "a %s piace." +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: src/Content/Conversation.php:243 #, php-format -msgid "%2$d people don't like this" -msgstr "Non piace a %2$d persone." +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: src/Content/Conversation.php:244 +#: src/Content/Conversation.php:245 #, php-format -msgid "%s don't like this." -msgstr "a %s non piace." +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: src/Content/Conversation.php:247 +#: src/Content/Conversation.php:274 #, php-format -msgid "%2$d people attend" -msgstr "%2$d persone partecipano" +msgid " likes this" +msgid_plural " like this" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: src/Content/Conversation.php:248 +#: src/Content/Conversation.php:277 #, php-format -msgid "%s attend." -msgstr "%s partecipa." +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: src/Content/Conversation.php:251 +#: src/Content/Conversation.php:280 #, php-format -msgid "%2$d people don't attend" -msgstr "%2$d persone non partecipano" +msgid " attends" +msgid_plural " attend" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: src/Content/Conversation.php:252 +#: src/Content/Conversation.php:283 #, php-format -msgid "%s don't attend." -msgstr "%s non partecipa." +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: src/Content/Conversation.php:255 +#: src/Content/Conversation.php:286 #, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d persone forse partecipano" +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: src/Content/Conversation.php:256 +#: src/Content/Conversation.php:289 #, php-format -msgid "%s attend maybe." -msgstr "%s forse partecipano." +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: src/Content/Conversation.php:259 -#, php-format -msgid "%2$d people reshared this" -msgstr "%2$d persone hanno ricondiviso questo" - -#: src/Content/Conversation.php:307 +#: src/Content/Conversation.php:336 msgid "Visible to everybody" msgstr "Visibile a tutti" -#: src/Content/Conversation.php:308 src/Module/Item/Compose.php:159 -#: src/Object/Post.php:975 +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1107 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Inserisci l'indirizzo di una immagine, un video o una pagina web:" -#: src/Content/Conversation.php:309 +#: src/Content/Conversation.php:338 msgid "Tag term:" msgstr "Tag:" -#: src/Content/Conversation.php:310 src/Module/Filer/SaveTag.php:72 +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 msgid "Save to Folder:" msgstr "Salva nella Cartella:" -#: src/Content/Conversation.php:311 +#: src/Content/Conversation.php:340 msgid "Where are you right now?" msgstr "Dove sei ora?" -#: src/Content/Conversation.php:312 +#: src/Content/Conversation.php:341 msgid "Delete item(s)?" msgstr "Cancellare questo elemento/i?" -#: src/Content/Conversation.php:322 +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 +msgid "Created at" +msgstr "" + +#: src/Content/Conversation.php:363 msgid "New Post" msgstr "Nuovo Messaggio" -#: src/Content/Conversation.php:325 src/Object/Post.php:481 +#: src/Content/Conversation.php:366 msgid "Share" msgstr "Condividi" -#: src/Content/Conversation.php:336 src/Module/Item/Compose.php:156 -#: src/Object/Post.php:972 +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "carica foto" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Allega file" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "allega file" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1097 +msgid "Bold" +msgstr "Grassetto" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1098 +msgid "Italic" +msgstr "Corsivo" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1099 +msgid "Underline" +msgstr "Sottolineato" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1101 +msgid "Quote" +msgstr "Citazione" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1102 +msgid "Add emojis" +msgstr "" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1100 +msgid "Content Warning" +msgstr "" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1103 +msgid "Code" +msgstr "Codice" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1104 msgid "Image" msgstr "Immagine" -#: src/Content/Conversation.php:339 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1105 +msgid "Link" +msgstr "Collegamento" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1106 +msgid "Link or Media" +msgstr "Collegamento o Media" + +#: src/Content/Conversation.php:382 msgid "Video" msgstr "Video" -#: src/Content/Conversation.php:352 src/Module/Item/Compose.php:172 +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "La tua posizione" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "posizione" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "Rimuovi la localizzazione data dal browser" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "canc. pos." + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Scegli un titolo" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Categorie (lista separata da virgola)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 msgid "Scheduled at" msgstr "Programmato per" -#: src/Content/Conversation.php:651 src/Object/Post.php:454 -#: src/Object/Post.php:455 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Impostazioni permessi" -#: src/Content/Conversation.php:664 src/Object/Post.php:442 -msgid "Categories:" -msgstr "Categorie:" +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Messaggio pubblico" -#: src/Content/Conversation.php:665 src/Object/Post.php:443 -msgid "Filed under:" -msgstr "Archiviato in:" +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:120 +#: src/Model/Profile.php:467 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "Messaggio" -#: src/Content/Conversation.php:673 src/Object/Post.php:468 -#, php-format -msgid "%s from %s" -msgstr "%s da %s" +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Browser" -#: src/Content/Conversation.php:688 -msgid "View in context" -msgstr "Vedi nel contesto" +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "Apri pagina di Composizione" -#: src/Content/Conversation.php:753 +#: src/Content/Conversation.php:595 msgid "remove" msgstr "rimuovi" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:599 msgid "Delete Selected Items" msgstr "Cancella elementi selezionati" -#: src/Content/Conversation.php:821 src/Content/Conversation.php:824 -#: src/Content/Conversation.php:827 src/Content/Conversation.php:830 +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 #, php-format msgid "You had been addressed (%s)." msgstr "Sei stato nominato (%s)." -#: src/Content/Conversation.php:833 +#: src/Content/Conversation.php:769 #, php-format msgid "You are following %s." msgstr "Stai seguendo %s." -#: src/Content/Conversation.php:836 -msgid "Tagged" -msgstr "Menzionato" +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "" -#: src/Content/Conversation.php:851 +#: src/Content/Conversation.php:776 +msgid "You subscribed to one or more tags in this post." +msgstr "" + +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "%s ha ricondiviso questo." + +#: src/Content/Conversation.php:798 msgid "Reshared" msgstr "Ricondiviso" -#: src/Content/Conversation.php:851 +#: src/Content/Conversation.php:798 #, php-format msgid "Reshared by %s <%s>" msgstr "Ricondiviso da %s <%s>" -#: src/Content/Conversation.php:854 +#: src/Content/Conversation.php:801 #, php-format msgid "%s is participating in this thread." msgstr "%s partecipa in questa conversazione." -#: src/Content/Conversation.php:857 -msgid "Stored" -msgstr "Memorizzato" +#: src/Content/Conversation.php:804 +msgid "Stored for general reasons" +msgstr "" -#: src/Content/Conversation.php:860 -msgid "Global" -msgstr "Globale" +#: src/Content/Conversation.php:807 +msgid "Global post" +msgstr "" -#: src/Content/Conversation.php:863 -msgid "Relayed" -msgstr "Inoltrato" +#: src/Content/Conversation.php:810 +msgid "Sent via an relay server" +msgstr "" -#: src/Content/Conversation.php:863 +#: src/Content/Conversation.php:810 #, php-format -msgid "Relayed by %s <%s>" -msgstr "Inoltrato da %s <%s>" +msgid "Sent via the relay server %s <%s>" +msgstr "" -#: src/Content/Conversation.php:866 +#: src/Content/Conversation.php:813 msgid "Fetched" msgstr "Recuperato" -#: src/Content/Conversation.php:866 +#: src/Content/Conversation.php:813 #, php-format msgid "Fetched because of %s <%s>" msgstr "Recuperato a causa di %s <%s>" +#: src/Content/Conversation.php:816 +msgid "Stored because of a child post to complete this thread." +msgstr "" + +#: src/Content/Conversation.php:819 +msgid "Local delivery" +msgstr "" + +#: src/Content/Conversation.php:822 +msgid "Stored because of your activity (like, comment, star, ...)" +msgstr "" + +#: src/Content/Conversation.php:825 +msgid "Distributed" +msgstr "" + +#: src/Content/Conversation.php:828 +msgid "Pushed to us" +msgstr "" + +#: src/Content/Conversation.php:1492 src/Object/Post.php:247 +msgid "Pinned item" +msgstr "Oggetto in evidenza" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:521 +#: src/Object/Post.php:522 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:509 +msgid "Categories:" +msgstr "Categorie:" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:510 +msgid "Filed under:" +msgstr "Archiviato in:" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:535 +#, php-format +msgid "%s from %s" +msgstr "%s da %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "Vedi nel contesto" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "For you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "What's Hot" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "Posts with a lot of interactions" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:61 +#, php-format +msgid "Posts in %s" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:62 +msgid "Posts from your followers that you don't follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Sharers of sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Posts with images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Posts with audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Posts with videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Local Community" +msgstr "Comunità Locale" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Posts from local users on this server" +msgstr "Messaggi dagli utenti locali su questo sito" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Global Community" +msgstr "Comunità Globale" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Posts from users of the whole federated network" +msgstr "Messaggi dagli utenti della rete federata" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Latest Activity" +msgstr "Ultima Attività" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Sort by latest activity" +msgstr "Ordina per ultima attività" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Latest Posts" +msgstr "Ultimi Messaggi" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Sort by post received date" +msgstr "Ordina per data di ricezione del messaggio" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Latest Creation" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Sort by post creation date" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:106 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "Personale" + +#: src/Content/Conversation/Factory/Timeline.php:106 +msgid "Posts that mention or involve you" +msgstr "Messaggi che ti citano o coinvolgono" + +#: src/Content/Conversation/Factory/Timeline.php:107 src/Object/Post.php:380 +msgid "Starred" +msgstr "Preferiti" + +#: src/Content/Conversation/Factory/Timeline.php:107 +msgid "Favourite Posts" +msgstr "Messaggi preferiti" + #: src/Content/Feature.php:96 msgid "General Features" msgstr "Funzionalità generali" @@ -2649,13 +1676,13 @@ msgid "Post Composition Features" msgstr "Funzionalità di composizione dei messaggi" #: src/Content/Feature.php:105 -msgid "Auto-mention Forums" -msgstr "Auto-cita i Forum" +msgid "Auto-mention Groups" +msgstr "" #: src/Content/Feature.php:105 msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Aggiunge/rimuove una menzione quando una pagina forum è selezionata/deselezionata nella finestra dei permessi." +"Add/remove mention when a group page is selected/deselected in ACL window." +msgstr "" #: src/Content/Feature.php:106 msgid "Explicit Mentions" @@ -2667,390 +1694,484 @@ msgid "" "mentioned in replies." msgstr "Aggiungi menzioni esplicite al riquadro di commento per avere un controllo manuale su chi viene menzionato nelle risposte. " -#: src/Content/Feature.php:111 +#: src/Content/Feature.php:107 +msgid "Add an abstract from ActivityPub content warnings" +msgstr "" + +#: src/Content/Feature.php:107 +msgid "" +"Add an abstract when commenting on ActivityPub posts with a content warning." +" Abstracts are displayed as content warning on systems like Mastodon or " +"Pleroma." +msgstr "" + +#: src/Content/Feature.php:112 msgid "Post/Comment Tools" msgstr "Strumenti per messaggi/commenti" -#: src/Content/Feature.php:112 +#: src/Content/Feature.php:113 msgid "Post Categories" msgstr "Categorie Messaggi" -#: src/Content/Feature.php:112 +#: src/Content/Feature.php:113 msgid "Add categories to your posts" msgstr "Aggiungi categorie ai tuoi messaggi" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:118 msgid "Advanced Profile Settings" msgstr "Impostazioni Avanzate Profilo" -#: src/Content/Feature.php:118 -msgid "List Forums" -msgstr "Elenco forum" - -#: src/Content/Feature.php:118 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Mostra ai visitatori i forum nella pagina Profilo Avanzato" +#: src/Content/Feature.php:119 +msgid "List Groups" +msgstr "" #: src/Content/Feature.php:119 +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "" + +#: src/Content/Feature.php:120 msgid "Tag Cloud" msgstr "Tag Cloud" -#: src/Content/Feature.php:119 +#: src/Content/Feature.php:120 msgid "Provide a personal tag cloud on your profile page" msgstr "Mostra una nuvola dei tag personali sulla tua pagina di profilo" -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:121 msgid "Display Membership Date" msgstr "Mostra la Data di Registrazione" -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:121 msgid "Display membership date in profile" msgstr "Mostra la data in cui ti sei registrato nel profilo" -#: src/Content/ForumManager.php:145 src/Content/Nav.php:239 -#: src/Content/Text/HTML.php:896 src/Content/Widget.php:523 -msgid "Forums" -msgstr "Forum" +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "" -#: src/Content/ForumManager.php:147 -msgid "External link to forum" -msgstr "Collegamento esterno al forum" +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "" -#: src/Content/ForumManager.php:150 src/Content/Widget.php:502 +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "" + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1273 +msgid "Groups" +msgstr "" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 msgid "show less" msgstr "mostra meno" -#: src/Content/ForumManager.php:151 src/Content/Widget.php:404 -#: src/Content/Widget.php:503 +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 msgid "show more" msgstr "mostra di più" -#: src/Content/Item.php:305 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha stuzzicato %2$s" +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "" -#: src/Content/Item.php:338 src/Model/Item.php:2627 +#: src/Content/Item.php:331 src/Model/Item.php:3003 msgid "event" msgstr "l'evento" -#: src/Content/Item.php:442 view/theme/frio/theme.php:254 +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "stato" + +#: src/Content/Item.php:340 src/Model/Item.php:3005 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "foto" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha taggato %3$s di %2$s con %4$s" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 msgid "Follow Thread" msgstr "Segui la discussione" -#: src/Content/Item.php:443 src/Model/Contact.php:1061 +#: src/Content/Item.php:429 src/Model/Contact.php:1227 msgid "View Status" msgstr "Visualizza stato" -#: src/Content/Item.php:444 src/Content/Item.php:466 src/Model/Contact.php:995 -#: src/Model/Contact.php:1053 src/Model/Contact.php:1062 -#: src/Module/Directory.php:157 src/Module/Settings/Profile/Index.php:225 +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1219 +#: src/Model/Contact.php:1228 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Visualizza profilo" -#: src/Content/Item.php:445 src/Model/Contact.php:1063 +#: src/Content/Item.php:431 src/Model/Contact.php:1229 msgid "View Photos" msgstr "Visualizza foto" -#: src/Content/Item.php:446 src/Model/Contact.php:1054 -#: src/Model/Contact.php:1064 +#: src/Content/Item.php:432 src/Model/Contact.php:1220 +#: src/Model/Contact.php:1230 msgid "Network Posts" msgstr "Messaggi della Rete" -#: src/Content/Item.php:447 src/Model/Contact.php:1055 -#: src/Model/Contact.php:1065 +#: src/Content/Item.php:433 src/Model/Contact.php:1221 +#: src/Model/Contact.php:1231 msgid "View Contact" msgstr "Mostra contatto" -#: src/Content/Item.php:448 src/Model/Contact.php:1066 +#: src/Content/Item.php:434 src/Model/Contact.php:1232 msgid "Send PM" msgstr "Invia messaggio privato" -#: src/Content/Item.php:449 src/Module/Admin/Blocklist/Contact.php:100 -#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 -#: src/Module/Contact.php:398 src/Module/Contact/Profile.php:348 -#: src/Module/Contact/Profile.php:449 +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 msgid "Block" msgstr "Blocca" -#: src/Content/Item.php:450 src/Module/Contact.php:399 -#: src/Module/Contact/Profile.php:349 src/Module/Contact/Profile.php:457 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 -#: src/Module/Notifications/Notification.php:61 +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 msgid "Ignore" msgstr "Ignora" -#: src/Content/Item.php:454 src/Object/Post.php:429 +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "" + +#: src/Content/Item.php:438 src/Object/Post.php:288 +#, php-format +msgid "Ignore %s server" +msgstr "" + +#: src/Content/Item.php:442 src/Object/Post.php:490 msgid "Languages" msgstr "Lingue" -#: src/Content/Item.php:458 src/Model/Contact.php:1067 -msgid "Poke" -msgstr "Stuzzica" +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1222 src/Model/Contact.php:1233 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Connetti/segui" -#: src/Content/Nav.php:90 +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "" + +#: src/Content/Nav.php:121 msgid "Nothing new here" msgstr "Niente di nuovo qui" -#: src/Content/Nav.php:94 src/Module/Special/HTTPException.php:50 +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 msgid "Go back" msgstr "Torna indietro" -#: src/Content/Nav.php:95 +#: src/Content/Nav.php:126 msgid "Clear notifications" msgstr "Pulisci le notifiche" -#: src/Content/Nav.php:96 src/Content/Text/HTML.php:883 -msgid "@name, !forum, #tags, content" -msgstr "@nome, !forum, #tag, contenuto" +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" +msgstr "" -#: src/Content/Nav.php:183 src/Module/Security/Login.php:144 +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 msgid "Logout" msgstr "Esci" -#: src/Content/Nav.php:183 +#: src/Content/Nav.php:222 msgid "End this session" msgstr "Finisci questa sessione" -#: src/Content/Nav.php:185 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:145 +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 msgid "Login" msgstr "Accedi" -#: src/Content/Nav.php:185 +#: src/Content/Nav.php:224 msgid "Sign in" msgstr "Entra" -#: src/Content/Nav.php:190 src/Module/BaseProfile.php:56 -#: src/Module/Contact.php:433 src/Module/Contact/Profile.php:380 -#: src/Module/Settings/TwoFactor/Index.php:112 view/theme/frio/theme.php:225 -msgid "Status" -msgstr "Stato" +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "" -#: src/Content/Nav.php:190 src/Content/Nav.php:273 -#: view/theme/frio/theme.php:225 -msgid "Your posts and conversations" -msgstr "I tuoi messaggi e le tue conversazioni" +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "" -#: src/Content/Nav.php:191 src/Module/BaseProfile.php:48 -#: src/Module/BaseSettings.php:55 src/Module/Contact.php:457 -#: src/Module/Contact/Profile.php:382 src/Module/Profile/Profile.php:241 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:226 +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 msgid "Profile" msgstr "Profilo" -#: src/Content/Nav.php:191 view/theme/frio/theme.php:226 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 msgid "Your profile page" msgstr "Pagina del tuo profilo" -#: src/Content/Nav.php:192 view/theme/frio/theme.php:227 +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Foto" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 msgid "Your photos" msgstr "Le tue foto" -#: src/Content/Nav.php:193 src/Module/BaseProfile.php:72 -#: src/Module/BaseProfile.php:75 src/Module/Contact.php:449 -#: view/theme/frio/theme.php:228 +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 msgid "Media" msgstr "Media" -#: src/Content/Nav.php:193 view/theme/frio/theme.php:228 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 msgid "Your postings with media" msgstr "I tuoi messaggi con media" -#: src/Content/Nav.php:194 view/theme/frio/theme.php:229 -msgid "Your events" -msgstr "I tuoi eventi" +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "Calendario" -#: src/Content/Nav.php:195 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "" + +#: src/Content/Nav.php:234 msgid "Personal notes" msgstr "Note personali" -#: src/Content/Nav.php:195 +#: src/Content/Nav.php:234 msgid "Your personal notes" msgstr "Le tue note personali" -#: src/Content/Nav.php:212 src/Content/Nav.php:273 +#: src/Content/Nav.php:251 src/Content/Nav.php:308 msgid "Home" msgstr "Home" -#: src/Content/Nav.php:216 src/Module/Register.php:168 -#: src/Module/Security/Login.php:105 +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "Home Page" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 +#: src/Module/Security/Login.php:124 msgid "Register" msgstr "Registrati" -#: src/Content/Nav.php:216 +#: src/Content/Nav.php:255 msgid "Create an account" msgstr "Crea un account" -#: src/Content/Nav.php:222 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 -#: src/Module/Settings/TwoFactor/Index.php:111 -#: src/Module/Settings/TwoFactor/Recovery.php:105 -#: src/Module/Settings/TwoFactor/Verify.php:145 view/theme/vier/theme.php:217 +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 msgid "Help" msgstr "Guida" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:261 msgid "Help and documentation" msgstr "Guida e documentazione" -#: src/Content/Nav.php:226 +#: src/Content/Nav.php:265 msgid "Apps" msgstr "Applicazioni" -#: src/Content/Nav.php:226 +#: src/Content/Nav.php:265 msgid "Addon applications, utilities, games" msgstr "Applicazioni, utilità e giochi aggiuntivi" -#: src/Content/Nav.php:230 src/Content/Text/HTML.php:881 -#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:96 +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 msgid "Search" msgstr "Cerca" -#: src/Content/Nav.php:230 +#: src/Content/Nav.php:269 msgid "Search site content" msgstr "Cerca nel contenuto del sito" -#: src/Content/Nav.php:233 src/Content/Text/HTML.php:890 +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 msgid "Full Text" msgstr "Testo Completo" -#: src/Content/Nav.php:234 src/Content/Text/HTML.php:891 +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 #: src/Content/Widget/TagCloud.php:68 msgid "Tags" msgstr "Tags:" -#: src/Content/Nav.php:235 src/Content/Nav.php:294 -#: src/Content/Text/HTML.php:892 src/Module/BaseProfile.php:125 -#: src/Module/BaseProfile.php:128 src/Module/Contact.php:370 -#: src/Module/Contact.php:464 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 msgid "Contacts" msgstr "Contatti" -#: src/Content/Nav.php:254 +#: src/Content/Nav.php:289 msgid "Community" msgstr "Comunità" -#: src/Content/Nav.php:254 +#: src/Content/Nav.php:289 msgid "Conversations on this and other servers" msgstr "Conversazioni su questo e su altri server" -#: src/Content/Nav.php:258 src/Module/BaseProfile.php:87 -#: src/Module/BaseProfile.php:98 view/theme/frio/theme.php:233 -msgid "Events and Calendar" -msgstr "Eventi e calendario" - -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:296 msgid "Directory" msgstr "Elenco" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:296 msgid "People directory" msgstr "Elenco delle persone" -#: src/Content/Nav.php:263 src/Module/BaseAdmin.php:85 +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 msgid "Information" msgstr "Informazioni" -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:298 msgid "Information about this friendica instance" msgstr "Informazioni su questo server friendica" -#: src/Content/Nav.php:266 src/Module/Admin/Tos.php:76 -#: src/Module/BaseAdmin.php:96 src/Module/Register.php:176 -#: src/Module/Tos.php:87 +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 msgid "Terms of Service" msgstr "Termini di Servizio" -#: src/Content/Nav.php:266 +#: src/Content/Nav.php:301 msgid "Terms of Service of this Friendica instance" msgstr "Termini di Servizio di questa istanza Friendica" -#: src/Content/Nav.php:271 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Network" msgstr "Rete" -#: src/Content/Nav.php:271 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Conversations from your friends" msgstr "Conversazioni dai tuoi amici" -#: src/Content/Nav.php:277 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "I tuoi messaggi e le tue conversazioni" + +#: src/Content/Nav.php:312 msgid "Introductions" msgstr "Presentazioni" -#: src/Content/Nav.php:277 +#: src/Content/Nav.php:312 msgid "Friend Requests" msgstr "Richieste di amicizia" -#: src/Content/Nav.php:278 src/Module/BaseNotifications.php:148 -#: src/Module/Notifications/Introductions.php:73 +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 msgid "Notifications" msgstr "Notifiche" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:314 msgid "See all notifications" msgstr "Vedi tutte le notifiche" -#: src/Content/Nav.php:280 +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Segna come letto" + +#: src/Content/Nav.php:315 msgid "Mark all system notifications as seen" msgstr "Segna tutte le notifiche di sistema come viste" -#: src/Content/Nav.php:283 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Private mail" msgstr "Posta privata" -#: src/Content/Nav.php:284 +#: src/Content/Nav.php:319 msgid "Inbox" msgstr "In arrivo" -#: src/Content/Nav.php:285 +#: src/Content/Nav.php:320 msgid "Outbox" msgstr "Inviati" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:324 msgid "Accounts" msgstr "Account" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:324 msgid "Manage other pages" msgstr "Gestisci altre pagine" -#: src/Content/Nav.php:292 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:122 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:175 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 msgid "Settings" msgstr "Impostazioni" -#: src/Content/Nav.php:292 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 msgid "Account settings" msgstr "Parametri account" -#: src/Content/Nav.php:294 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 msgid "Manage/edit friends and contacts" msgstr "Gestisci/modifica amici e contatti" -#: src/Content/Nav.php:299 src/Module/BaseAdmin.php:126 +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 msgid "Admin" msgstr "Amministrazione" -#: src/Content/Nav.php:299 +#: src/Content/Nav.php:334 msgid "Site setup and configuration" msgstr "Configurazione del sito" -#: src/Content/Nav.php:302 +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "" + +#: src/Content/Nav.php:338 msgid "Navigation" msgstr "Navigazione" -#: src/Content/Nav.php:302 +#: src/Content/Nav.php:338 msgid "Site map" msgstr "Mappa del sito" -#: src/Content/OEmbed.php:298 +#: src/Content/OEmbed.php:316 msgid "Embedding disabled" msgstr "Embed disabilitato" -#: src/Content/OEmbed.php:416 +#: src/Content/OEmbed.php:440 msgid "Embedded content" msgstr "Contenuto incorporato" @@ -3070,189 +2191,212 @@ msgstr "succ" msgid "last" msgstr "ultimo" -#: src/Content/Text/BBCode.php:987 src/Content/Text/BBCode.php:1781 -#: src/Content/Text/BBCode.php:1782 +#: src/Content/Text/BBCode.php:696 src/Content/Text/BBCode.php:1636 +#: src/Content/Text/BBCode.php:1637 msgid "Image/photo" msgstr "Immagine/foto" -#: src/Content/Text/BBCode.php:1160 +#: src/Content/Text/BBCode.php:914 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1185 src/Model/Item.php:3158 -#: src/Model/Item.php:3164 src/Model/Item.php:3165 +#: src/Content/Text/BBCode.php:939 src/Model/Item.php:3745 +#: src/Model/Item.php:3751 src/Model/Item.php:3752 msgid "Link to source" msgstr "Collegamento all'originale" -#: src/Content/Text/BBCode.php:1699 src/Content/Text/HTML.php:933 +#: src/Content/Text/BBCode.php:1543 src/Content/Text/HTML.php:904 msgid "Click to open/close" msgstr "Clicca per aprire/chiudere" -#: src/Content/Text/BBCode.php:1730 +#: src/Content/Text/BBCode.php:1576 msgid "$1 wrote:" msgstr "$1 ha scritto:" -#: src/Content/Text/BBCode.php:1786 src/Content/Text/BBCode.php:1787 +#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642 msgid "Encrypted content" msgstr "Contenuto criptato" -#: src/Content/Text/BBCode.php:2002 +#: src/Content/Text/BBCode.php:1901 msgid "Invalid source protocol" msgstr "Protocollo sorgente non valido" -#: src/Content/Text/BBCode.php:2017 +#: src/Content/Text/BBCode.php:1920 msgid "Invalid link protocol" msgstr "Protocollo collegamento non valido" -#: src/Content/Text/HTML.php:797 +#: src/Content/Text/HTML.php:782 msgid "Loading more entries..." msgstr "Carico più elementi..." -#: src/Content/Text/HTML.php:798 +#: src/Content/Text/HTML.php:783 msgid "The end" msgstr "Fine" -#: src/Content/Text/HTML.php:875 src/Content/Widget/VCard.php:103 -#: src/Model/Profile.php:454 +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:116 +#: src/Model/Profile.php:461 src/Module/Contact/Profile.php:471 msgid "Follow" msgstr "Segui" -#: src/Content/Widget.php:49 +#: src/Content/Widget.php:51 msgid "Add New Contact" msgstr "Aggiungi nuovo contatto" -#: src/Content/Widget.php:50 +#: src/Content/Widget.php:52 msgid "Enter address or web location" msgstr "Inserisci posizione o indirizzo web" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:53 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Esempio: bob@example.com, http://example.com/barbara" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:55 msgid "Connect" msgstr "Connetti" -#: src/Content/Widget.php:68 +#: src/Content/Widget.php:72 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d invito disponibile" msgstr[1] "%d inviti disponibili" +msgstr[2] "%d inviti disponibili" -#: src/Content/Widget.php:74 view/theme/vier/theme.php:170 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 msgid "Find People" msgstr "Trova persone" -#: src/Content/Widget.php:75 view/theme/vier/theme.php:171 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 msgid "Enter name or interest" msgstr "Inserisci un nome o un interesse" -#: src/Content/Widget.php:77 view/theme/vier/theme.php:173 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Esempi: Mario Rossi, Pesca" -#: src/Content/Widget.php:78 src/Module/Contact.php:391 -#: src/Module/Directory.php:96 view/theme/vier/theme.php:174 +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 msgid "Find" msgstr "Trova" -#: src/Content/Widget.php:80 view/theme/vier/theme.php:176 +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "Contatti suggeriti" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 msgid "Similar Interests" msgstr "Interessi simili" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:177 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 msgid "Random Profile" msgstr "Profilo Casuale" -#: src/Content/Widget.php:82 view/theme/vier/theme.php:178 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 msgid "Invite Friends" msgstr "Invita amici" -#: src/Content/Widget.php:83 src/Module/Directory.php:88 -#: view/theme/vier/theme.php:179 +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 msgid "Global Directory" msgstr "Elenco globale" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:181 +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 msgid "Local Directory" msgstr "Elenco Locale" -#: src/Content/Widget.php:207 src/Model/Group.php:507 -#: src/Module/Contact.php:354 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "Gruppi" +#: src/Content/Widget.php:215 src/Model/Circle.php:600 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "" -#: src/Content/Widget.php:209 +#: src/Content/Widget.php:217 msgid "Everyone" msgstr "Chiunque" -#: src/Content/Widget.php:238 +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "" + +#: src/Content/Widget.php:247 msgid "Relationships" msgstr "Relazioni" -#: src/Content/Widget.php:240 src/Module/Contact.php:306 -#: src/Module/Group.php:293 +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 msgid "All Contacts" msgstr "Tutti i contatti" -#: src/Content/Widget.php:279 +#: src/Content/Widget.php:288 msgid "Protocols" msgstr "Protocolli" -#: src/Content/Widget.php:281 +#: src/Content/Widget.php:290 msgid "All Protocols" msgstr "Tutti i Protocolli" -#: src/Content/Widget.php:309 +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "Cartelle Salvate" -#: src/Content/Widget.php:311 src/Content/Widget.php:345 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "Tutto" -#: src/Content/Widget.php:343 +#: src/Content/Widget.php:349 msgid "Categories" msgstr "Categorie" -#: src/Content/Widget.php:400 +#: src/Content/Widget.php:406 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d contatto in comune" msgstr[1] "%d contatti in comune" +msgstr[2] "%d contatti in comune" -#: src/Content/Widget.php:496 +#: src/Content/Widget.php:506 msgid "Archives" msgstr "Archivi" -#: src/Content/Widget.php:520 +#: src/Content/Widget.php:514 +msgid "On this date" +msgstr "" + +#: src/Content/Widget.php:534 msgid "Persons" msgstr "Persone" -#: src/Content/Widget.php:521 +#: src/Content/Widget.php:535 msgid "Organisations" msgstr "Organizzazioni" -#: src/Content/Widget.php:522 src/Model/Contact.php:1494 +#: src/Content/Widget.php:536 src/Model/Contact.php:1698 msgid "News" msgstr "Notizie" -#: src/Content/Widget.php:527 src/Module/Admin/BaseUsers.php:51 +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 +msgid "Account Types" +msgstr "Tipi di Account" + +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "Tutto" -#: src/Content/Widget/CalendarExport.php:54 +#: src/Content/Widget.php:573 src/Module/Settings/Display.php:266 +msgid "Channels" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:56 msgid "Export" msgstr "Esporta" -#: src/Content/Widget/CalendarExport.php:55 +#: src/Content/Widget/CalendarExport.php:57 msgid "Export calendar as ical" msgstr "Esporta il calendario in formato ical" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:58 msgid "Export calendar as csv" msgstr "Esporta il calendario in formato csv" @@ -3260,14 +2404,15 @@ msgstr "Esporta il calendario in formato csv" msgid "No contacts" msgstr "Nessun contatto" -#: src/Content/Widget/ContactBlock.php:108 +#: src/Content/Widget/ContactBlock.php:110 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d contatto" msgstr[1] "%d contatti" +msgstr[2] "%d contatti" -#: src/Content/Widget/ContactBlock.php:125 +#: src/Content/Widget/ContactBlock.php:127 msgid "View Contacts" msgstr "Visualizza i contatti" @@ -3279,105 +2424,131 @@ msgstr "Rimuovi termine" msgid "Saved Searches" msgstr "Ricerche salvate" -#: src/Content/Widget/TrendingTags.php:51 +#: src/Content/Widget/TrendingTags.php:52 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" msgstr[0] "Etichette di Tendenza (ultima %d ora)" msgstr[1] "Etichette di Tendenza (ultime %d ore)" +msgstr[2] "Etichette di Tendenza (ultime %d ore)" -#: src/Content/Widget/TrendingTags.php:52 +#: src/Content/Widget/TrendingTags.php:53 msgid "More Trending Tags" msgstr "Più Etichette di Tendenza" -#: src/Content/Widget/VCard.php:96 src/Model/Profile.php:373 -#: src/Module/Contact/Profile.php:371 src/Module/Profile/Profile.php:176 +#: src/Content/Widget/VCard.php:109 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:97 src/Model/Profile.php:374 -#: src/Module/Contact/Profile.php:373 src/Module/Profile/Profile.php:180 +#: src/Content/Widget/VCard.php:110 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:101 src/Model/Profile.php:466 -#: src/Module/Notifications/Introductions.php:199 +#: src/Content/Widget/VCard.php:111 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Posizione:" + +#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:474 +#: src/Module/Notifications/Introductions.php:201 msgid "Network:" msgstr "Rete:" -#: src/Content/Widget/VCard.php:105 src/Model/Profile.php:456 +#: src/Content/Widget/VCard.php:118 src/Model/Contact.php:1223 +#: src/Model/Contact.php:1234 src/Model/Profile.php:463 +#: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Smetti di seguire" -#: src/Core/ACL.php:164 src/Module/Profile/Profile.php:242 +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 msgid "Yourself" msgstr "Te stesso" -#: src/Core/ACL.php:200 src/Module/PermissionTooltip.php:104 -#: src/Module/PermissionTooltip.php:126 +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 msgid "Mutuals" msgstr "Amici reciproci" -#: src/Core/ACL.php:292 +#: src/Core/ACL.php:294 msgid "Post to Email" msgstr "Invia a email" -#: src/Core/ACL.php:319 +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 msgid "Public" msgstr "Pubblico" -#: src/Core/ACL.php:320 +#: src/Core/ACL.php:322 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "Questo contenuto sarà mostrato a tutti i tuoi seguaci e può essere visto nelle pagine della communità e da chiunque con questo collegamento." -#: src/Core/ACL.php:321 +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 msgid "Limited/Private" msgstr "Limitato/Privato" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:324 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "Questo contenuto sarà mostrato solo alle persone nel primo campo, ad eccezione delle persone menzionate nel secondo campo. Non apparirà da qualsiasi parte in pubblico." -#: src/Core/ACL.php:323 +#: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." +msgstr "" + +#: src/Core/ACL.php:325 msgid "Show to:" msgstr "Mostra a:" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:326 msgid "Except to:" msgstr "Ad eccezione di:" -#: src/Core/ACL.php:327 +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "CC: indirizzi email" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Esempio: bob@example.com, mary@example.com" + +#: src/Core/ACL.php:329 msgid "Connectors" msgstr "Connettori" -#: src/Core/Installer.php:183 +#: src/Core/Installer.php:180 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 "Il file di configurazione del database \"config/local.config.php\" non può essere scritto. Usa il testo allegato per creare un file di configurazione nell tuo server web." -#: src/Core/Installer.php:202 +#: src/Core/Installer.php:197 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql" -#: src/Core/Installer.php:203 src/Module/Install.php:213 -#: src/Module/Install.php:372 +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "Per favore leggi il file \"doc/INSTALL.md\"." -#: src/Core/Installer.php:264 +#: src/Core/Installer.php:259 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:260 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 "Se non hai una versione a riga di comando di PHP installata sul tuo server, non sarai in grado di eseguire i processi in background. Vedi 'Imposta i worker'" -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:265 msgid "PHP executable path" msgstr "Percorso eseguibile PHP" -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:265 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione." -#: src/Core/Installer.php:275 +#: src/Core/Installer.php:270 msgid "Command line PHP" msgstr "PHP da riga di comando" -#: src/Core/Installer.php:284 +#: src/Core/Installer.php:279 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)" -#: src/Core/Installer.php:285 +#: src/Core/Installer.php:280 msgid "Found PHP version: " msgstr "Versione PHP:" -#: src/Core/Installer.php:287 +#: src/Core/Installer.php:282 msgid "PHP cli binary" msgstr "Binario PHP cli" -#: src/Core/Installer.php:300 +#: src/Core/Installer.php:295 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:296 msgid "This is required for message delivery to work." msgstr "E' obbligatorio per far funzionare la consegna dei messaggi." -#: src/Core/Installer.php:306 +#: src/Core/Installer.php:301 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:338 +#: src/Core/Installer.php:333 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione" -#: src/Core/Installer.php:339 +#: src/Core/Installer.php:334 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:342 +#: src/Core/Installer.php:337 msgid "Generate encryption keys" msgstr "Genera chiavi di criptazione" -#: src/Core/Installer.php:394 +#: src/Core/Installer.php:389 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato" -#: src/Core/Installer.php:399 +#: src/Core/Installer.php:394 msgid "Apache mod_rewrite module" msgstr "Modulo mod_rewrite di Apache" -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:400 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Errore: uno dei due moduli PHP PDO o MySQLi è richiesto ma non installato." -#: src/Core/Installer.php:410 +#: src/Core/Installer.php:405 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Errore: il driver MySQL per PDO non è installato." -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:409 msgid "PDO or MySQLi PHP module" msgstr "modulo PHP PDO o MySQLi" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:417 msgid "Error, XML PHP module required but not installed." msgstr "Errore, il modulo PHP XML è richiesto ma non installato." -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:421 msgid "XML PHP module" msgstr "Modulo PHP XML" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:424 msgid "libCurl PHP module" msgstr "modulo PHP libCurl" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:425 msgid "Error: libCURL PHP module required but not installed." msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato." -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:431 msgid "GD graphics PHP module" msgstr "modulo PHP GD graphics" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:432 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato." -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:438 msgid "OpenSSL PHP module" msgstr "modulo PHP OpenSSL" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:439 msgid "Error: openssl PHP module required but not installed." msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato." -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:445 msgid "mb_string PHP module" msgstr "modulo PHP mb_string" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:446 msgid "Error: mb_string PHP module required but not installed." msgstr "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato." -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:452 msgid "iconv PHP module" msgstr "modulo PHP iconv" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:453 msgid "Error: iconv PHP module required but not installed." msgstr "Errore: il modulo PHP iconv è richiesto ma non installato." -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:459 msgid "POSIX PHP module" msgstr "mooduo PHP POSIX" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:460 msgid "Error: POSIX PHP module required but not installed." msgstr "Errore, il modulo PHP POSIX è richiesto ma non installato." -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:466 msgid "Program execution functions" msgstr "Funzioni di esecuzione del programma" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:467 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "Errore: Funzioni di esecuzione programma (proc_open) richieste ma non abilitate." -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:473 msgid "JSON PHP module" msgstr "modulo PHP JSON" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:474 msgid "Error: JSON PHP module required but not installed." msgstr "Errore: il modulo PHP JSON è richiesto ma non installato." -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:480 msgid "File Information PHP module" msgstr "Modulo PHP File Information" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:481 msgid "Error: File Information PHP module required but not installed." msgstr "Errore: il modulo PHP File Information è richiesto ma non è installato." -#: src/Core/Installer.php:509 +#: src/Core/Installer.php:487 +msgid "GNU Multiple Precision PHP module" +msgstr "" + +#: src/Core/Installer.php:488 +msgid "Error: GNU Multiple Precision PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:511 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 "L'installer web deve essere in grado di creare un file chiamato \"local.config.php\" nella cartella \"config\" del tuo server web, ma non è in grado di farlo." -#: src/Core/Installer.php:510 +#: src/Core/Installer.php:512 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 "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi." -#: src/Core/Installer.php:511 +#: src/Core/Installer.php:513 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 "Alla fine di questa procedura, ti daremo un testo da salvare in un file chiamato \"local.config.php\" nella cartella \"config\" della tua installazione di Friendica." -#: src/Core/Installer.php:512 +#: src/Core/Installer.php:514 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"doc/INSTALL.md\" per le istruzioni." -#: src/Core/Installer.php:515 +#: src/Core/Installer.php:517 msgid "config/local.config.php is writable" msgstr "config/local.config.php è scrivibile" -#: src/Core/Installer.php:535 +#: src/Core/Installer.php:537 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering." -#: src/Core/Installer.php:536 +#: src/Core/Installer.php:538 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 "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica." -#: src/Core/Installer.php:537 +#: src/Core/Installer.php:539 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella." -#: src/Core/Installer.php:538 +#: src/Core/Installer.php:540 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 "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene." -#: src/Core/Installer.php:541 +#: src/Core/Installer.php:543 msgid "view/smarty3 is writable" msgstr "view/smarty3 è scrivibile" -#: src/Core/Installer.php:569 +#: src/Core/Installer.php:571 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "La riscrittura degli url in .htaccess sembra non funzionare. Controlla di aver copiato .htaccess-dist in .htaccess." -#: src/Core/Installer.php:570 +#: src/Core/Installer.php:572 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "In alcune circostanze (come il funzionamento dentro a contenitori), puoi ignorare questo errore." -#: src/Core/Installer.php:572 +#: src/Core/Installer.php:574 msgid "Error message from Curl when fetching" msgstr "Messaggio di errore da Curl durante la richiesta" -#: src/Core/Installer.php:578 +#: src/Core/Installer.php:580 msgid "Url rewrite is working" msgstr "La riscrittura degli url funziona" -#: src/Core/Installer.php:607 +#: src/Core/Installer.php:609 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "Il rilevamento di TLS per proteggere le comunicazioni tra il browser e il nuovo server Friendica è fallito." -#: src/Core/Installer.php:608 +#: src/Core/Installer.php:610 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "È altamente incoraggiato usare Friendica solo attraverso una connessione sicura, dato che saranno trasmesse informazioni sensibili, come le password." -#: src/Core/Installer.php:609 +#: src/Core/Installer.php:611 msgid "Please ensure that the connection to the server is secure." msgstr "Assicurati che la connessione al server sia sicura." -#: src/Core/Installer.php:610 +#: src/Core/Installer.php:612 msgid "No TLS detected" msgstr "TLS non rlevato" -#: src/Core/Installer.php:612 +#: src/Core/Installer.php:614 msgid "TLS detected" msgstr "TLS rilevato" -#: src/Core/Installer.php:639 +#: src/Core/Installer.php:641 msgid "ImageMagick PHP extension is not installed" msgstr "L'estensione PHP ImageMagick non è installata" -#: src/Core/Installer.php:641 +#: src/Core/Installer.php:643 msgid "ImageMagick PHP extension is installed" msgstr "L'estensione PHP ImageMagick è installata" -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:645 msgid "ImageMagick supports GIF" msgstr "ImageMagick supporta i GIF" -#: src/Core/Installer.php:665 +#: src/Core/Installer.php:667 msgid "Database already in use." msgstr "Database già in uso." -#: src/Core/Installer.php:670 +#: src/Core/Installer.php:672 msgid "Could not connect to database." msgstr " Impossibile collegarsi con il database." -#: src/Core/L10n.php:377 src/Model/Event.php:425 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:476 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:235 msgid "Monday" msgstr "Lunedì" -#: src/Core/L10n.php:377 src/Model/Event.php:426 +#: src/Core/L10n.php:476 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:236 msgid "Tuesday" msgstr "Martedì" -#: src/Core/L10n.php:377 src/Model/Event.php:427 +#: src/Core/L10n.php:476 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:237 msgid "Wednesday" msgstr "Mercoledì" -#: src/Core/L10n.php:377 src/Model/Event.php:428 +#: src/Core/L10n.php:476 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:238 msgid "Thursday" msgstr "Giovedì" -#: src/Core/L10n.php:377 src/Model/Event.php:429 +#: src/Core/L10n.php:476 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:239 msgid "Friday" msgstr "Venerdì" -#: src/Core/L10n.php:377 src/Model/Event.php:430 +#: src/Core/L10n.php:476 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:240 msgid "Saturday" msgstr "Sabato" -#: src/Core/L10n.php:377 src/Model/Event.php:424 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:476 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:234 msgid "Sunday" msgstr "Domenica" -#: src/Core/L10n.php:381 src/Model/Event.php:445 +#: src/Core/L10n.php:480 src/Model/Event.php:450 msgid "January" msgstr "Gennaio" -#: src/Core/L10n.php:381 src/Model/Event.php:446 +#: src/Core/L10n.php:480 src/Model/Event.php:451 msgid "February" msgstr "Febbraio" -#: src/Core/L10n.php:381 src/Model/Event.php:447 +#: src/Core/L10n.php:480 src/Model/Event.php:452 msgid "March" msgstr "Marzo" -#: src/Core/L10n.php:381 src/Model/Event.php:448 +#: src/Core/L10n.php:480 src/Model/Event.php:453 msgid "April" msgstr "Aprile" -#: src/Core/L10n.php:381 src/Core/L10n.php:401 src/Model/Event.php:436 +#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441 msgid "May" msgstr "Maggio" -#: src/Core/L10n.php:381 src/Model/Event.php:449 +#: src/Core/L10n.php:480 src/Model/Event.php:454 msgid "June" msgstr "Giugno" -#: src/Core/L10n.php:381 src/Model/Event.php:450 +#: src/Core/L10n.php:480 src/Model/Event.php:455 msgid "July" msgstr "Luglio" -#: src/Core/L10n.php:381 src/Model/Event.php:451 +#: src/Core/L10n.php:480 src/Model/Event.php:456 msgid "August" msgstr "Agosto" -#: src/Core/L10n.php:381 src/Model/Event.php:452 +#: src/Core/L10n.php:480 src/Model/Event.php:457 msgid "September" msgstr "Settembre" -#: src/Core/L10n.php:381 src/Model/Event.php:453 +#: src/Core/L10n.php:480 src/Model/Event.php:458 msgid "October" msgstr "Ottobre" -#: src/Core/L10n.php:381 src/Model/Event.php:454 +#: src/Core/L10n.php:480 src/Model/Event.php:459 msgid "November" msgstr "Novembre" -#: src/Core/L10n.php:381 src/Model/Event.php:455 +#: src/Core/L10n.php:480 src/Model/Event.php:460 msgid "December" msgstr "Dicembre" -#: src/Core/L10n.php:397 src/Model/Event.php:417 +#: src/Core/L10n.php:495 src/Model/Event.php:422 msgid "Mon" msgstr "Lun" -#: src/Core/L10n.php:397 src/Model/Event.php:418 +#: src/Core/L10n.php:495 src/Model/Event.php:423 msgid "Tue" msgstr "Mar" -#: src/Core/L10n.php:397 src/Model/Event.php:419 +#: src/Core/L10n.php:495 src/Model/Event.php:424 msgid "Wed" msgstr "Mer" -#: src/Core/L10n.php:397 src/Model/Event.php:420 +#: src/Core/L10n.php:495 src/Model/Event.php:425 msgid "Thu" msgstr "Gio" -#: src/Core/L10n.php:397 src/Model/Event.php:421 +#: src/Core/L10n.php:495 src/Model/Event.php:426 msgid "Fri" msgstr "Ven" -#: src/Core/L10n.php:397 src/Model/Event.php:422 +#: src/Core/L10n.php:495 src/Model/Event.php:427 msgid "Sat" msgstr "Sab" -#: src/Core/L10n.php:397 src/Model/Event.php:416 +#: src/Core/L10n.php:495 src/Model/Event.php:421 msgid "Sun" msgstr "Dom" -#: src/Core/L10n.php:401 src/Model/Event.php:432 +#: src/Core/L10n.php:499 src/Model/Event.php:437 msgid "Jan" msgstr "Gen" -#: src/Core/L10n.php:401 src/Model/Event.php:433 +#: src/Core/L10n.php:499 src/Model/Event.php:438 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:401 src/Model/Event.php:434 +#: src/Core/L10n.php:499 src/Model/Event.php:439 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:401 src/Model/Event.php:435 +#: src/Core/L10n.php:499 src/Model/Event.php:440 msgid "Apr" msgstr "Apr" -#: src/Core/L10n.php:401 src/Model/Event.php:437 +#: src/Core/L10n.php:499 src/Model/Event.php:442 msgid "Jun" msgstr "Giu" -#: src/Core/L10n.php:401 src/Model/Event.php:438 +#: src/Core/L10n.php:499 src/Model/Event.php:443 msgid "Jul" msgstr "Lug" -#: src/Core/L10n.php:401 src/Model/Event.php:439 +#: src/Core/L10n.php:499 src/Model/Event.php:444 msgid "Aug" msgstr "Ago" -#: src/Core/L10n.php:401 +#: src/Core/L10n.php:499 msgid "Sep" msgstr "Set" -#: src/Core/L10n.php:401 src/Model/Event.php:441 +#: src/Core/L10n.php:499 src/Model/Event.php:446 msgid "Oct" msgstr "Ott" -#: src/Core/L10n.php:401 src/Model/Event.php:442 +#: src/Core/L10n.php:499 src/Model/Event.php:447 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:401 src/Model/Event.php:443 +#: src/Core/L10n.php:499 src/Model/Event.php:448 msgid "Dec" msgstr "Dic" -#: src/Core/L10n.php:420 -msgid "poke" -msgstr "stuzzica" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "Il file di registro '%s' non è utilizzabile. Nessuna registrazione possibile (errore: '%s')" -#: src/Core/L10n.php:420 -msgid "poked" -msgstr "ha stuzzicato" - -#: src/Core/L10n.php:421 -msgid "ping" -msgstr "invia un ping" - -#: src/Core/L10n.php:421 -msgid "pinged" -msgstr "ha inviato un ping" - -#: src/Core/L10n.php:422 -msgid "prod" -msgstr "pungola" - -#: src/Core/L10n.php:422 -msgid "prodded" -msgstr "ha pungolato" - -#: src/Core/L10n.php:423 -msgid "slap" -msgstr "schiaffeggia" - -#: src/Core/L10n.php:423 -msgid "slapped" -msgstr "ha schiaffeggiato" - -#: src/Core/L10n.php:424 -msgid "finger" -msgstr "tocca" - -#: src/Core/L10n.php:424 -msgid "fingered" -msgstr "ha toccato" - -#: src/Core/L10n.php:425 -msgid "rebuff" -msgstr "respingi" - -#: src/Core/L10n.php:425 -msgid "rebuffed" -msgstr "ha respinto" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "Il file di debug '%s' non è utilizzabile. Nessuna registrazione possibile (errore: '%s')" #: src/Core/Renderer.php:89 src/Core/Renderer.php:118 -#: src/Core/Renderer.php:145 src/Core/Renderer.php:179 -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "Friendica non piò mostrare questa pagina al momento, per favore contatta l'amministratore." -#: src/Core/Renderer.php:141 +#: src/Core/Renderer.php:143 msgid "template engine cannot be registered without a name." msgstr "il motore di modelli non può essere registrato senza un nome." -#: src/Core/Renderer.php:175 +#: src/Core/Renderer.php:177 msgid "template engine is not registered!" msgstr "il motore di modelli non è registrato!" @@ -3894,36 +3041,36 @@ msgstr "Cartella dove i file caricati vengono salvati. Per una maggiore sicurezz msgid "Enter a valid existing folder" msgstr "Inserisci una cartella valida ed esistente" -#: src/Core/Update.php:67 +#: src/Core/Update.php:80 #, 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 "Gli aggiornamenti dalla versione %s non sono supportati. Per favore aggiorna almeno alla versione 2021.01 e attenti finchè il postupdate finisce alla versione 1383." -#: src/Core/Update.php:78 +#: src/Core/Update.php:91 #, 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 "Gli aggiornamenti dal postupdate versione %s non sono supportati. Per favore aggiorna almeno alla versione 2021.01 e attenti finchè il postupdate finisce alla versione 1383." -#: src/Core/Update.php:152 +#: src/Core/Update.php:183 #, php-format msgid "%s: executing pre update %d" msgstr "%s: eseguendo pre aggiornamento %d" -#: src/Core/Update.php:190 +#: src/Core/Update.php:225 #, php-format msgid "%s: executing post update %d" msgstr "%s: eseguendo post aggiornamento %d" -#: src/Core/Update.php:261 +#: src/Core/Update.php:299 #, php-format msgid "Update %s failed. See error logs." msgstr "aggiornamento %s fallito. Guarda i log di errore." -#: src/Core/Update.php:314 +#: src/Core/Update.php:339 #, php-format msgid "" "\n" @@ -3933,81 +3080,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non sei in grado di aiutarmi. Il mio database potrebbe essere invalido." -#: src/Core/Update.php:320 +#: src/Core/Update.php:345 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "Il messaggio di errore è\\n[pre]%s[/pre]" -#: src/Core/Update.php:324 src/Core/Update.php:366 +#: src/Core/Update.php:349 src/Core/Update.php:377 msgid "[Friendica Notify] Database update" msgstr "[Notifica di Friendica] Aggiornamento database" -#: src/Core/Update.php:360 +#: src/Core/Update.php:371 #, php-format msgid "" "\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n\t\t\t\t\tIl database di friendica è stato aggiornato con succeso da %s a %s." +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "" -#: src/Core/UserImport.php:125 -msgid "Error decoding account file" -msgstr "Errore decodificando il file account" - -#: src/Core/UserImport.php:131 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?" - -#: src/Core/UserImport.php:139 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "L'utente '%s' esiste già su questo server!" - -#: src/Core/UserImport.php:175 -msgid "User creation error" -msgstr "Errore creando l'utente" - -#: src/Core/UserImport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contatto non importato" -msgstr[1] "%d contatti non importati" - -#: src/Core/UserImport.php:273 -msgid "User profile creation error" -msgstr "Errore durante la creazione del profilo dell'utente" - -#: src/Core/UserImport.php:326 -msgid "Done. You can now login with your username and password" -msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" - -#: src/Database/DBStructure.php:65 +#: src/Database/DBStructure.php:57 #, php-format msgid "The database version had been set to %s." msgstr "La versione del database è stata impostata come %s." -#: src/Database/DBStructure.php:78 +#: src/Database/DBStructure.php:82 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "Il post aggiornamento è alla versione %d, deve essere a %d per fare il drop delle tabelle in sicurezza." -#: src/Database/DBStructure.php:91 +#: src/Database/DBStructure.php:95 msgid "No unused tables found." msgstr "Nessuna tabella inutilizzata trovata." -#: src/Database/DBStructure.php:96 +#: src/Database/DBStructure.php:100 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "Queste tabelle non sono utilizzate da friendica e saranno eliminate quando eseguirai \"dbstructure drop -e\":" -#: src/Database/DBStructure.php:134 +#: src/Database/DBStructure.php:137 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "Non ci sono tabelle su MyISAM o InnoDB con il formato file Antelope" -#: src/Database/DBStructure.php:158 +#: src/Database/DBStructure.php:161 #, php-format msgid "" "\n" @@ -4015,20 +3130,20 @@ msgid "" "%s\n" msgstr "\nErrore %d durante l'aggiornamento del database:\n%s\n" -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:164 msgid "Errors encountered performing database changes: " msgstr "Errori riscontrati eseguendo le modifiche al database:" -#: src/Database/DBStructure.php:549 +#: src/Database/DBStructure.php:232 msgid "Another database update is currently running." msgstr "Un altro aggiornamento del database è attualmente in corso." -#: src/Database/DBStructure.php:553 +#: src/Database/DBStructure.php:236 #, php-format msgid "%s: Database update" msgstr "%s: Aggiornamento database" -#: src/Database/DBStructure.php:803 +#: src/Database/DBStructure.php:493 #, php-format msgid "%s: updating %s table." msgstr "%s: aggiornando la tabella %s." @@ -4045,12 +3160,12 @@ msgstr "Entità non processabile" msgid "Unauthorized" msgstr "Non autorizzato" -#: src/Factory/Api/Mastodon/Error.php:85 +#: src/Factory/Api/Mastodon/Error.php:84 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "Il token non è autorizzato con un utente valido o manca uno scopo richiesto" -#: src/Factory/Api/Mastodon/Error.php:95 +#: src/Factory/Api/Mastodon/Error.php:94 msgid "Internal Server Error" msgstr "Errore Interno del Server" @@ -4059,510 +3174,603 @@ msgstr "Errore Interno del Server" msgid "Legacy module file not found: %s" msgstr "File del modulo legacy non trovato: %s" -#: src/Model/Contact.php:1057 src/Model/Contact.php:1069 -msgid "UnFollow" -msgstr "Smetti di seguire" +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." +msgstr "" -#: src/Model/Contact.php:1075 src/Module/Admin/Users/Pending.php:107 -#: src/Module/Notifications/Introductions.php:130 -#: src/Module/Notifications/Introductions.php:202 +#: src/Model/Circle.php:543 +msgid "Everybody" +msgstr "Tutti" + +#: src/Model/Circle.php:562 +msgid "edit" +msgstr "modifica" + +#: src/Model/Circle.php:599 +msgid "add" +msgstr "aggiungi" + +#: src/Model/Circle.php:604 +msgid "Edit circle" +msgstr "" + +#: src/Model/Circle.php:605 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "" + +#: src/Model/Circle.php:607 +msgid "Create a new circle" +msgstr "" + +#: src/Model/Circle.php:608 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "" + +#: src/Model/Circle.php:609 +msgid "Edit circles" +msgstr "" + +#: src/Model/Contact.php:1240 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Approva" -#: src/Model/Contact.php:1490 +#: src/Model/Contact.php:1694 msgid "Organisation" msgstr "Organizzazione" -#: src/Model/Contact.php:1498 -msgid "Forum" -msgstr "Forum" +#: src/Model/Contact.php:1702 +msgid "Group" +msgstr "" -#: src/Model/Contact.php:2426 +#: src/Model/Contact.php:3005 msgid "Disallowed profile URL." msgstr "Indirizzo profilo non permesso." -#: src/Model/Contact.php:2431 src/Module/Friendica.php:81 +#: src/Model/Contact.php:3010 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Dominio bloccato" -#: src/Model/Contact.php:2436 +#: src/Model/Contact.php:3015 msgid "Connect URL missing." msgstr "URL di connessione mancante." -#: src/Model/Contact.php:2445 +#: src/Model/Contact.php:3024 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Il contatto non può essere aggiunto. Controlla le credenziali della rete nella tua pagina Impostazioni -> Reti Sociali" -#: src/Model/Contact.php:2482 +#: src/Model/Contact.php:3042 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "" + +#: src/Model/Contact.php:3059 msgid "The profile address specified does not provide adequate information." msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." -#: src/Model/Contact.php:2484 +#: src/Model/Contact.php:3061 msgid "No compatible communication protocols or feeds were discovered." msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." -#: src/Model/Contact.php:2487 +#: src/Model/Contact.php:3064 msgid "An author or name was not found." msgstr "Non è stato trovato un nome o un autore" -#: src/Model/Contact.php:2490 +#: src/Model/Contact.php:3067 msgid "No browser URL could be matched to this address." msgstr "Nessun URL può essere associato a questo indirizzo." -#: src/Model/Contact.php:2493 +#: src/Model/Contact.php:3070 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email." -#: src/Model/Contact.php:2494 +#: src/Model/Contact.php:3071 msgid "Use mailto: in front of address to force email check." msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email." -#: src/Model/Contact.php:2500 +#: src/Model/Contact.php:3077 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito." -#: src/Model/Contact.php:2505 +#: src/Model/Contact.php:3082 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te." -#: src/Model/Contact.php:2564 +#: src/Model/Contact.php:3148 msgid "Unable to retrieve contact information." msgstr "Impossibile recuperare informazioni sul contatto." -#: src/Model/Event.php:52 +#: src/Model/Event.php:54 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "l F d, Y \\@ g:i A \\G\\M\\TP (e)" -#: src/Model/Event.php:73 src/Model/Event.php:90 src/Model/Event.php:464 -#: src/Model/Event.php:897 +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 msgid "Starts:" msgstr "Inizia:" -#: src/Model/Event.php:76 src/Model/Event.php:96 src/Model/Event.php:465 -#: src/Model/Event.php:901 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 msgid "Finishes:" msgstr "Finisce:" -#: src/Model/Event.php:414 +#: src/Model/Event.php:419 msgid "all-day" msgstr "tutto il giorno" -#: src/Model/Event.php:440 +#: src/Model/Event.php:445 msgid "Sept" msgstr "Set" -#: src/Model/Event.php:462 +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "oggi" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:245 src/Util/Temporal.php:353 +msgid "month" +msgstr "mese" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:246 src/Util/Temporal.php:354 +msgid "week" +msgstr "settimana" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:247 src/Util/Temporal.php:355 +msgid "day" +msgstr "giorno" + +#: src/Model/Event.php:467 msgid "No events to display" msgstr "Nessun evento da mostrare" -#: src/Model/Event.php:578 +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "L'accesso a questo profilo è stato limitato." + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "" + +#: src/Model/Event.php:637 msgid "l, F j" msgstr "l j F" -#: src/Model/Event.php:609 +#: src/Model/Event.php:664 msgid "Edit event" msgstr "Modifica evento" -#: src/Model/Event.php:610 +#: src/Model/Event.php:665 msgid "Duplicate event" msgstr "Duplica evento" -#: src/Model/Event.php:611 +#: src/Model/Event.php:666 msgid "Delete event" msgstr "Elimina evento" -#: src/Model/Event.php:853 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 msgid "l F d, Y \\@ g:i A" msgstr "l d F Y \\@ G:i" -#: src/Model/Event.php:854 +#: src/Model/Event.php:897 msgid "D g:i A" msgstr "D G:i" -#: src/Model/Event.php:855 +#: src/Model/Event.php:898 msgid "g:i A" msgstr "G:i" -#: src/Model/Event.php:916 src/Model/Event.php:918 +#: src/Model/Event.php:964 src/Model/Event.php:966 msgid "Show map" msgstr "Mostra mappa" -#: src/Model/Event.php:917 +#: src/Model/Event.php:965 msgid "Hide map" msgstr "Nascondi mappa" -#: src/Model/Event.php:1009 +#: src/Model/Event.php:1058 #, php-format msgid "%s's birthday" msgstr "Compleanno di %s" -#: src/Model/Event.php:1010 +#: src/Model/Event.php:1059 #, php-format msgid "Happy Birthday %s" msgstr "Buon compleanno %s" -#: src/Model/Group.php:94 -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 "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso." - -#: src/Model/Group.php:423 -msgid "Default privacy group for new contacts" -msgstr "Gruppo predefinito per i nuovi contatti" - -#: src/Model/Group.php:455 -msgid "Everybody" -msgstr "Tutti" - -#: src/Model/Group.php:474 -msgid "edit" -msgstr "modifica" - -#: src/Model/Group.php:506 -msgid "add" -msgstr "aggiungi" - -#: src/Model/Group.php:511 -msgid "Edit group" -msgstr "Modifica gruppo" - -#: src/Model/Group.php:512 src/Module/Group.php:194 -msgid "Contacts not in any group" -msgstr "Contatti in nessun gruppo." - -#: src/Model/Group.php:514 -msgid "Create a new group" -msgstr "Crea un nuovo gruppo" - -#: src/Model/Group.php:515 src/Module/Group.php:179 src/Module/Group.php:202 -#: src/Module/Group.php:277 -msgid "Group Name: " -msgstr "Nome del gruppo:" - -#: src/Model/Group.php:516 -msgid "Edit groups" -msgstr "Modifica gruppi" - -#: src/Model/Item.php:1680 +#: src/Model/Item.php:2062 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Lingue rilevate in questo messaggio:\\n%s" -#: src/Model/Item.php:2631 +#: src/Model/Item.php:3007 msgid "activity" msgstr "attività" -#: src/Model/Item.php:2633 +#: src/Model/Item.php:3009 msgid "comment" msgstr "commento" -#: src/Model/Item.php:2636 +#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "messaggio" -#: src/Model/Item.php:2773 +#: src/Model/Item.php:3182 +#, php-format +msgid "%s is blocked" +msgstr "" + +#: src/Model/Item.php:3184 +#, php-format +msgid "%s is ignored" +msgstr "" + +#: src/Model/Item.php:3186 +#, php-format +msgid "Content from %s is collapsed" +msgstr "" + +#: src/Model/Item.php:3190 #, php-format msgid "Content warning: %s" msgstr "Avviso contenuto: %s" -#: src/Model/Item.php:3123 +#: src/Model/Item.php:3652 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:3152 src/Model/Item.php:3153 +#: src/Model/Item.php:3683 +#, php-format +msgid "%2$s (%3$d%%, %1$d vote)" +msgid_plural "%2$s (%3$d%%, %1$d votes)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Model/Item.php:3685 +#, php-format +msgid "%2$s (%1$d vote)" +msgid_plural "%2$s (%1$d votes)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Model/Item.php:3690 +#, php-format +msgid "%d voter. Poll end: %s" +msgid_plural "%d voters. Poll end: %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Model/Item.php:3692 +#, php-format +msgid "%d voter." +msgid_plural "%d voters." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Model/Item.php:3694 +#, php-format +msgid "Poll end: %s" +msgstr "" + +#: src/Model/Item.php:3728 src/Model/Item.php:3729 msgid "View on separate page" msgstr "Vedi in una pagina separata" -#: src/Model/Mail.php:134 src/Model/Mail.php:266 +#: src/Model/Mail.php:137 src/Model/Mail.php:266 msgid "[no subject]" msgstr "[nessun oggetto]" -#: src/Model/Profile.php:356 src/Module/Profile/Profile.php:256 -#: src/Module/Profile/Profile.php:258 +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Foto della bacheca" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 msgid "Edit profile" msgstr "Modifica il profilo" -#: src/Model/Profile.php:358 +#: src/Model/Profile.php:361 msgid "Change profile photo" msgstr "Cambia la foto del profilo" -#: src/Model/Profile.php:371 src/Module/Directory.php:152 -#: src/Module/Profile/Profile.php:184 +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 msgid "Homepage:" msgstr "Homepage:" -#: src/Model/Profile.php:372 src/Module/Contact/Profile.php:375 -#: src/Module/Notifications/Introductions.php:187 +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "Informazioni:" -#: src/Model/Profile.php:458 +#: src/Model/Profile.php:465 msgid "Atom feed" msgstr "Feed Atom" -#: src/Model/Profile.php:502 +#: src/Model/Profile.php:472 +msgid "This website has been verified to belong to the same person." +msgstr "" + +#: src/Model/Profile.php:509 msgid "F d" msgstr "d F" -#: src/Model/Profile.php:566 src/Model/Profile.php:650 +#: src/Model/Profile.php:573 src/Model/Profile.php:662 msgid "[today]" msgstr "[oggi]" -#: src/Model/Profile.php:575 +#: src/Model/Profile.php:582 msgid "Birthday Reminders" msgstr "Promemoria compleanni" -#: src/Model/Profile.php:576 +#: src/Model/Profile.php:583 msgid "Birthdays this week:" msgstr "Compleanni questa settimana:" -#: src/Model/Profile.php:599 +#: src/Model/Profile.php:611 msgid "g A l F d" msgstr "g A l d F" -#: src/Model/Profile.php:637 +#: src/Model/Profile.php:649 msgid "[No description]" msgstr "[Nessuna descrizione]" -#: src/Model/Profile.php:663 +#: src/Model/Profile.php:675 msgid "Event Reminders" msgstr "Promemoria" -#: src/Model/Profile.php:664 +#: src/Model/Profile.php:676 msgid "Upcoming events the next 7 days:" msgstr "Eventi dei prossimi 7 giorni:" -#: src/Model/Profile.php:852 +#: src/Model/Profile.php:873 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s da il benvenuto a %2$s" -#: src/Model/Profile.php:984 +#: src/Model/Profile.php:1013 msgid "Hometown:" msgstr "Paese natale:" -#: src/Model/Profile.php:985 +#: src/Model/Profile.php:1014 msgid "Marital Status:" msgstr "Stato Coniugale:" -#: src/Model/Profile.php:986 +#: src/Model/Profile.php:1015 msgid "With:" msgstr "Con:" -#: src/Model/Profile.php:987 +#: src/Model/Profile.php:1016 msgid "Since:" msgstr "Dal:" -#: src/Model/Profile.php:988 +#: src/Model/Profile.php:1017 msgid "Sexual Preference:" msgstr "Preferenze sessuali:" -#: src/Model/Profile.php:989 +#: src/Model/Profile.php:1018 msgid "Political Views:" msgstr "Orientamento politico:" -#: src/Model/Profile.php:990 +#: src/Model/Profile.php:1019 msgid "Religious Views:" msgstr "Orientamento religioso:" -#: src/Model/Profile.php:991 +#: src/Model/Profile.php:1020 msgid "Likes:" msgstr "Mi piace:" -#: src/Model/Profile.php:992 +#: src/Model/Profile.php:1021 msgid "Dislikes:" msgstr "Non mi piace:" -#: src/Model/Profile.php:993 +#: src/Model/Profile.php:1022 msgid "Title/Description:" msgstr "Breve descrizione (es. titolo, posizione, altro):" -#: src/Model/Profile.php:994 src/Module/Admin/Summary.php:233 +#: src/Model/Profile.php:1023 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 msgid "Summary" msgstr "Sommario" -#: src/Model/Profile.php:995 +#: src/Model/Profile.php:1024 msgid "Musical interests" msgstr "Interessi musicali" -#: src/Model/Profile.php:996 +#: src/Model/Profile.php:1025 msgid "Books, literature" msgstr "Libri, letteratura" -#: src/Model/Profile.php:997 +#: src/Model/Profile.php:1026 msgid "Television" msgstr "Televisione" -#: src/Model/Profile.php:998 +#: src/Model/Profile.php:1027 msgid "Film/dance/culture/entertainment" msgstr "Film/danza/cultura/intrattenimento" -#: src/Model/Profile.php:999 +#: src/Model/Profile.php:1028 msgid "Hobbies/Interests" msgstr "Hobby/interessi" -#: src/Model/Profile.php:1000 +#: src/Model/Profile.php:1029 msgid "Love/romance" msgstr "Amore" -#: src/Model/Profile.php:1001 +#: src/Model/Profile.php:1030 msgid "Work/employment" msgstr "Lavoro/impiego" -#: src/Model/Profile.php:1002 +#: src/Model/Profile.php:1031 msgid "School/education" msgstr "Scuola/educazione" -#: src/Model/Profile.php:1003 +#: src/Model/Profile.php:1032 msgid "Contact information and Social Networks" msgstr "Informazioni su contatti e social network" -#: src/Model/User.php:208 src/Model/User.php:1056 +#: src/Model/User.php:227 src/Model/User.php:1186 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." -#: src/Model/User.php:568 src/Model/User.php:601 +#: src/Model/User.php:620 src/Model/User.php:653 msgid "Login failed" msgstr "Accesso fallito." -#: src/Model/User.php:633 +#: src/Model/User.php:685 msgid "Not enough information to authenticate" msgstr "Informazioni insufficienti per l'autenticazione" -#: src/Model/User.php:728 +#: src/Model/User.php:806 msgid "Password can't be empty" msgstr "La password non può essere vuota" -#: src/Model/User.php:747 +#: src/Model/User.php:848 msgid "Empty passwords are not allowed." msgstr "Password vuote non sono consentite." -#: src/Model/User.php:751 +#: src/Model/User.php:852 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "La nuova password è stata esposta in un dump di dati pubblici, per favore scegline un'altra." -#: src/Model/User.php:757 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "La password non può contenere lettere accentate, spazi o due punti (:)" +#: src/Model/User.php:856 +msgid "The password length is limited to 72 characters." +msgstr "" -#: src/Model/User.php:936 +#: src/Model/User.php:860 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "" + +#: src/Model/User.php:1069 msgid "Passwords do not match. Password unchanged." msgstr "Le password non corrispondono. Password non cambiata." -#: src/Model/User.php:943 +#: src/Model/User.php:1076 msgid "An invitation is required." msgstr "E' richiesto un invito." -#: src/Model/User.php:947 +#: src/Model/User.php:1080 msgid "Invitation could not be verified." msgstr "L'invito non può essere verificato." -#: src/Model/User.php:955 +#: src/Model/User.php:1088 msgid "Invalid OpenID url" msgstr "Url OpenID non valido" -#: src/Model/User.php:968 src/Security/Authentication.php:235 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto." -#: src/Model/User.php:968 src/Security/Authentication.php:235 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "Il messaggio riportato era:" -#: src/Model/User.php:974 +#: src/Model/User.php:1107 msgid "Please enter the required information." msgstr "Inserisci le informazioni richieste." -#: src/Model/User.php:988 +#: src/Model/User.php:1121 #, 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) are excluding each other, swapping values." -#: src/Model/User.php:995 +#: src/Model/User.php:1128 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." msgstr[0] "Il nome utente dovrebbe essere lungo almeno %s carattere." msgstr[1] "Il nome utente dovrebbe essere lungo almeno %s caratteri." +msgstr[2] "Il nome utente dovrebbe essere lungo almeno %s caratteri." -#: src/Model/User.php:999 +#: src/Model/User.php:1132 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." msgstr[0] "Il nome utente dovrebbe essere lungo al massimo %s carattere." msgstr[1] "Il nome utente dovrebbe essere lungo al massimo %s caratteri." +msgstr[2] "Il nome utente dovrebbe essere lungo al massimo %s caratteri." -#: src/Model/User.php:1007 +#: src/Model/User.php:1140 msgid "That doesn't appear to be your full (First Last) name." msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." -#: src/Model/User.php:1012 +#: src/Model/User.php:1145 msgid "Your email domain is not among those allowed on this site." msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito." -#: src/Model/User.php:1016 +#: src/Model/User.php:1149 msgid "Not a valid email address." msgstr "L'indirizzo email non è valido." -#: src/Model/User.php:1019 +#: src/Model/User.php:1152 msgid "The nickname was blocked from registration by the nodes admin." msgstr "Il nome utente non è utilizzabile in registrazione, per impostazione dell'amministratore del nodo." -#: src/Model/User.php:1023 src/Model/User.php:1031 +#: src/Model/User.php:1156 src/Model/User.php:1162 msgid "Cannot use that email." msgstr "Non puoi usare quell'email." -#: src/Model/User.php:1038 +#: src/Model/User.php:1168 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Il tuo nome utente può contenere solo a-z, 0-9 e _." -#: src/Model/User.php:1046 src/Model/User.php:1103 +#: src/Model/User.php:1176 src/Model/User.php:1233 msgid "Nickname is already registered. Please choose another." msgstr "Nome utente già registrato. Scegline un altro." -#: src/Model/User.php:1090 src/Model/User.php:1094 +#: src/Model/User.php:1220 src/Model/User.php:1224 msgid "An error occurred during registration. Please try again." msgstr "C'è stato un errore durante la registrazione. Prova ancora." -#: src/Model/User.php:1117 +#: src/Model/User.php:1247 msgid "An error occurred creating your default profile. Please try again." msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora." -#: src/Model/User.php:1124 +#: src/Model/User.php:1254 msgid "An error occurred creating your self contact. Please try again." msgstr "C'è stato un errore nella creazione del tuo contatto. Prova ancora." -#: src/Model/User.php:1129 +#: src/Model/User.php:1259 msgid "Friends" msgstr "Amici" -#: src/Model/User.php:1133 +#: src/Model/User.php:1263 msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "C'è stato un errore nella creazione del tuo gruppo contatti di default. Prova ancora." +"An error occurred creating your default contact circle. Please try again." +msgstr "" -#: src/Model/User.php:1171 +#: src/Model/User.php:1307 msgid "Profile Photos" msgstr "Foto del profilo" -#: src/Model/User.php:1365 +#: src/Model/User.php:1487 #, php-format msgid "" "\n" @@ -4570,7 +3778,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\tCaro/a %1$s,\n\t\t\tl'amministratore di %2$s ha impostato un account per te." -#: src/Model/User.php:1368 +#: src/Model/User.php:1490 #, php-format msgid "" "\n" @@ -4597,17 +3805,17 @@ msgid "" "\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" +"\t\tIf you ever want to delete your account, you can do so at %1$s/settings/removeme\n" "\n" "\t\tThank you and welcome to %4$s." -msgstr "\n\t\tI dettagli di accesso sono i seguenti:\n\n\t\tIndirizzo del Sito:\t%1$s\n\t\tNome Utente:\t\t%2$s\n\t\tPassword:\t\t%3$s\n\n\t\tPuoi cambiare la tua password dalla pagina \"Impostazioni\" del tuo account una volta effettuato l'accesso\n\n\t\tPrenditi qualche momento per rivedere le impostazioni del tuo account in quella pagina.\n\n\t\tPuoi anche aggiungere se vuoi alcune informazioni di base al tuo profilo predefinito\n\t\t(sulla pagina \"Profili\") così altre persone possono trovarti facilmente.\n\n\t\tTi consigliamo di impostare il tuo nome completo, aggiungendo una foto di profilo,\n\t\taggiungendo alcune \"parole chiave\" del profilo (molto utile per farti nuovi amici) - e\n\t\tmagari in quale nazione vivi; se non vuoi essere più specifico\n\t\tdi così.\n\n\t\tRispettiamo totalmente il tuo diritto alla privacy, e nessuno di questi campi è necessario.\n\t\tSe sei nuovo e non conosci nessuno qui, potrebbero aiutarti\n\t\ta farti nuovi e interessanti amici.\n\n\t\tSe volessi eliminare il tuo account, puoi farlo qui: %1$s/removeme\n\n\t\tGrazie e benvenuto/a su %4$s." +msgstr "" -#: src/Model/User.php:1401 src/Model/User.php:1508 +#: src/Model/User.php:1523 src/Model/User.php:1630 #, php-format msgid "Registration details for %s" msgstr "Dettagli della registrazione di %s" -#: src/Model/User.php:1421 +#: src/Model/User.php:1543 #, php-format msgid "" "\n" @@ -4622,12 +3830,12 @@ msgid "" "\t\t" msgstr "\n\t\t\tGentile %1$s,\n\t\t\t\tGrazie di esserti registrato/a su %2$s. Il tuo account è in attesa di approvazione dall'amministratore.\n\n\t\t\tI tuoi dettagli di login sono i seguenti:\n\n\t\t\tIndirizzo del Sito:\t%3$s\n\t\t\tNome Utente:\t\t%4$s\n\t\t\tPassword:\t\t%5$s\n\t\t" -#: src/Model/User.php:1440 +#: src/Model/User.php:1562 #, php-format msgid "Registration at %s" msgstr "Registrazione su %s" -#: src/Model/User.php:1464 +#: src/Model/User.php:1586 #, php-format msgid "" "\n" @@ -4636,7 +3844,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\tCaro/a %1$s,\n\t\t\t\tGrazie per esserti registrato/a su %2$s. Il tuo account è stato creato.\n\t\t\t" -#: src/Model/User.php:1472 +#: src/Model/User.php:1594 #, php-format msgid "" "\n" @@ -4663,10 +3871,10 @@ msgid "" "\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" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." -msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3$s\n Nome utente:%1$s \n Password:%5$s \n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\n\t\t\tSe mai vorrai cancellare il tuo account, lo potrai fare su %3$s/removeme\n\nGrazie e benvenuto su %2$s" +msgstr "" #: src/Module/Admin/Addons/Details.php:65 msgid "Addon not found." @@ -4693,26 +3901,20 @@ msgid "Enable" msgstr "Abilita" #: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:94 -#: src/Module/Admin/Blocklist/Server/Add.php:89 -#: src/Module/Admin/Blocklist/Server/Index.php:78 -#: src/Module/Admin/Federation.php:159 src/Module/Admin/Item/Delete.php:64 -#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:498 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:232 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:75 -#: 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 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 msgid "Administration" msgstr "Amministrazione" #: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:93 -#: src/Module/BaseSettings.php:85 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:132 msgid "Addons" msgstr "Componenti aggiuntivi" @@ -4721,13 +3923,13 @@ msgstr "Componenti aggiuntivi" msgid "Toggle" msgstr "Inverti" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 msgid "Author: " msgstr "Autore: " -#: src/Module/Admin/Addons/Details.php:122 -#: src/Module/Admin/Themes/Details.php:102 +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 msgid "Maintainer: " msgstr "Manutentore: " @@ -4740,11 +3942,22 @@ msgstr "Componenti aggiuntivi ricaricati" msgid "Addon %s failed to install." msgstr "Installazione del componente aggiuntivo %s non riuscita." +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Salva Impostazioni" + #: src/Module/Admin/Addons/Index.php:70 msgid "Reload active addons" msgstr "Ricarica componenti aggiuntivi attivi." -#: src/Module/Admin/Addons/Index.php:75 +#: src/Module/Admin/Addons/Index.php:74 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4752,295 +3965,6 @@ msgid "" " the open addon registry at %2$s" msgstr "Non sono disponibili componenti aggiuntivi sul tuo nodo. Puoi trovare il repository ufficiale dei componenti aggiuntivi su %1$s e potresti trovare altri componenti aggiuntivi interessanti nell'open addon repository su %2$s" -#: src/Module/Admin/BaseUsers.php:54 -msgid "List of all users" -msgstr "Elenco di tutti gli utenti" - -#: src/Module/Admin/BaseUsers.php:59 -msgid "Active" -msgstr "Attivo" - -#: src/Module/Admin/BaseUsers.php:62 -msgid "List of active accounts" -msgstr "Elenco degli account attivi" - -#: src/Module/Admin/BaseUsers.php:67 src/Module/Contact.php:314 -#: src/Module/Contact.php:374 -msgid "Pending" -msgstr "In sospeso" - -#: src/Module/Admin/BaseUsers.php:70 -msgid "List of pending registrations" -msgstr "Elenco delle registrazioni in attesa" - -#: src/Module/Admin/BaseUsers.php:75 src/Module/Contact.php:322 -#: src/Module/Contact.php:375 -msgid "Blocked" -msgstr "Bloccato" - -#: src/Module/Admin/BaseUsers.php:78 -msgid "List of blocked users" -msgstr "Elenco degli utenti bloccati" - -#: src/Module/Admin/BaseUsers.php:83 -msgid "Deleted" -msgstr "Eliminato" - -#: src/Module/Admin/BaseUsers.php:86 -msgid "List of pending user deletions" -msgstr "Elenco delle cancellazioni di utenti in attesa" - -#: src/Module/Admin/BaseUsers.php:104 -msgid "Private Forum" -msgstr "Forum Privato" - -#: src/Module/Admin/BaseUsers.php:111 -msgid "Relay" -msgstr "Relay" - -#: src/Module/Admin/Blocklist/Contact.php:54 -msgid "You can't block a local contact, please block the user instead" -msgstr "Non puoi bloccare un contatto locale, blocca invece l'utente" - -#: src/Module/Admin/Blocklist/Contact.php:73 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s contatto sbloccato" -msgstr[1] "%s contatti sbloccati" - -#: src/Module/Admin/Blocklist/Contact.php:95 -msgid "Remote Contact Blocklist" -msgstr "Blocklist Contatti Remoti" - -#: src/Module/Admin/Blocklist/Contact.php:96 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "Questa pagina ti permette di impedire che qualsiasi messaggio da un contatto remoto raggiunga il tuo nodo." - -#: src/Module/Admin/Blocklist/Contact.php:97 -msgid "Block Remote Contact" -msgstr "Blocca Contatto Remoto" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#: 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 "seleziona tutti" - -#: src/Module/Admin/Blocklist/Contact.php:99 -msgid "select none" -msgstr "seleziona niente" - -#: src/Module/Admin/Blocklist/Contact.php:101 -#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156 -#: src/Module/Contact.php:398 src/Module/Contact/Profile.php:348 -#: src/Module/Contact/Profile.php:449 -msgid "Unblock" -msgstr "Sblocca" - -#: src/Module/Admin/Blocklist/Contact.php:102 -msgid "No remote contact is blocked from this node." -msgstr "Nessun contatto remoto è bloccato da questo nodo." - -#: src/Module/Admin/Blocklist/Contact.php:104 -msgid "Blocked Remote Contacts" -msgstr "Contatti Remoti Bloccati" - -#: src/Module/Admin/Blocklist/Contact.php:105 -msgid "Block New Remote Contact" -msgstr "Blocca Nuovo Contatto Remoto" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Photo" -msgstr "Foto" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Reason" -msgstr "Motivazione" - -#: src/Module/Admin/Blocklist/Contact.php:114 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "%scontatto bloccato totale" -msgstr[1] "%scontatti bloccati totali" - -#: src/Module/Admin/Blocklist/Contact.php:116 -msgid "URL of the remote contact to block." -msgstr "URL del contatto remoto da bloccare." - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "Also purge contact" -msgstr "Rimuovi anche contenuti contatto" - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "" -"Removes all content related to this contact from the node. Keeps the contact" -" record. This action cannot be undone." -msgstr "Rimuove tutto il contenuto relativo a questo contatto dal nodo. Mantiene il record del contatto. Questa azione non può essere annullata." - -#: src/Module/Admin/Blocklist/Contact.php:118 -msgid "Block Reason" -msgstr "Motivazione del Blocco" - -#: src/Module/Admin/Blocklist/Server/Add.php:55 -msgid "Server domain pattern added to the blocklist." -msgstr "Schema di dominio del server aggiunto alla blocklist." - -#: src/Module/Admin/Blocklist/Server/Add.php:63 -#, php-format -msgid "%s server scheduled to be purged." -msgid_plural "%s servers scheduled to be purged." -msgstr[0] "%s server in attesa di essere rimosso." -msgstr[1] "%s server in attesa di essere rimossi." - -#: src/Module/Admin/Blocklist/Server/Add.php:88 -msgid "← Return to the list" -msgstr "← Ritorna alla lista" - -#: src/Module/Admin/Blocklist/Server/Add.php:90 -msgid "Block A New Server Domain Pattern" -msgstr "Blocca Un Nuovo Server Per Schema di Dominio " - -#: src/Module/Admin/Blocklist/Server/Add.php:91 -#: src/Module/Admin/Blocklist/Server/Index.php:82 -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" -"
    " -msgstr "

    La sintassi dello schema di dominio server usa i caratteri jolly e non tiene conto di maiuscole e minuscole, e comprende i seguenti caratteri speciali:

    \n
      \n\t
    • *: Qualsiasi numero di caratteri
    • \n\t
    • ?: Qualsiasi singolo carattere
    • \n
    " - -#: src/Module/Admin/Blocklist/Server/Add.php:96 -#: src/Module/Admin/Blocklist/Server/Index.php:88 -msgid "Check pattern" -msgstr "Controlla schema" - -#: src/Module/Admin/Blocklist/Server/Add.php:97 -msgid "Matching known servers" -msgstr "Server conosciuti corrispondenti" - -#: src/Module/Admin/Blocklist/Server/Add.php:98 -msgid "Server Name" -msgstr "Nome del Server" - -#: src/Module/Admin/Blocklist/Server/Add.php:99 -msgid "Server Domain" -msgstr "Dominio del Server" - -#: src/Module/Admin/Blocklist/Server/Add.php:100 -msgid "Known Contacts" -msgstr "Contatti Conosciuti" - -#: src/Module/Admin/Blocklist/Server/Add.php:101 -#, php-format -msgid "%d known server" -msgid_plural "%d known servers" -msgstr[0] "%d server conosciuto" -msgstr[1] "%d server conosciuti" - -#: src/Module/Admin/Blocklist/Server/Add.php:102 -msgid "Add pattern to the blocklist" -msgstr "Aggiungi schema alla blocklist" - -#: src/Module/Admin/Blocklist/Server/Add.php:104 -#: src/Module/Admin/Blocklist/Server/Index.php:96 -msgid "Server Domain Pattern" -msgstr "Schema di Dominio di Server" - -#: src/Module/Admin/Blocklist/Server/Add.php:104 -#: src/Module/Admin/Blocklist/Server/Index.php:96 -msgid "" -"The domain pattern of the new server to add to the blocklist. Do not include" -" the protocol." -msgstr "Lo schema di dominio del nuovo server da aggiungere alla blocklist. Non includere il protocollo." - -#: src/Module/Admin/Blocklist/Server/Add.php:105 -msgid "Purge server" -msgstr "Rimuovi contenuti server" - -#: src/Module/Admin/Blocklist/Server/Add.php:105 -msgid "" -"Also purges all the locally stored content authored by the known contacts " -"registered on that server. Keeps the contacts and the server records. This " -"action cannot be undone." -msgid_plural "" -"Also purges all the locally stored content authored by the known contacts " -"registered on these servers. Keeps the contacts and the servers records. " -"This action cannot be undone." -msgstr[0] "Rimuove completamente anche i contenuti salvati localmente creati dai contatti conosciuti registrati sul server. Mantiene i record dei contatti e del server. Questa azione non può essere annullata." -msgstr[1] "Rimuove completamente anche i contenuti salvati localmente creati dai contatti conosciuti registrati su questi server. Mantiene i record dei contatti e dei server. Questa azione non può essere annullata." - -#: src/Module/Admin/Blocklist/Server/Add.php:106 -msgid "Block reason" -msgstr "Ragione blocco" - -#: src/Module/Admin/Blocklist/Server/Add.php:106 -msgid "" -"The reason why you blocked this server domain pattern. This reason will be " -"shown publicly in the server information page." -msgstr "La ragione per cui hai bloccato questo schema di dominio. Questa motivazione verrà mostrata pubblicamente nella pagina di informazione del server." - -#: src/Module/Admin/Blocklist/Server/Index.php:68 -#: src/Module/Admin/Blocklist/Server/Index.php:91 -msgid "Blocked server domain pattern" -msgstr "Schema di dominio del server bloccato" - -#: src/Module/Admin/Blocklist/Server/Index.php:69 -#: src/Module/Admin/Blocklist/Server/Index.php:92 src/Module/Friendica.php:82 -msgid "Reason for the block" -msgstr "Motivazione del blocco" - -#: src/Module/Admin/Blocklist/Server/Index.php:70 -msgid "Delete server domain pattern" -msgstr "Elimina schema di dominio server" - -#: src/Module/Admin/Blocklist/Server/Index.php:70 -msgid "Check to delete this entry from the blocklist" -msgstr "Seleziona per eliminare questa voce dalla blocklist" - -#: src/Module/Admin/Blocklist/Server/Index.php:79 -msgid "Server Domain Pattern Blocklist" -msgstr "Blocklist degli Schemi di Dominio di Server" - -#: src/Module/Admin/Blocklist/Server/Index.php:80 -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 "Questa pagina può essere utilizzata per definire una blocklist di schemi di server di dominio della rete federata ai quali non è consentito interagire con questo nodo. Per ogni schema di dominio dovresti anche fornire la motivazione per la quale lo hai bloccato." - -#: src/Module/Admin/Blocklist/Server/Index.php:81 -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 "La lista degli schemi di dominio di server bloccati sarà resa pubblicamente disponibile sulla pagina /friendica in modo che i tuoi utenti e persone che cercano soluzioni ai problemi di comunicazione possano trovare la motivazione facilmente." - -#: src/Module/Admin/Blocklist/Server/Index.php:87 -msgid "Add new entry to the blocklist" -msgstr "Aggiungi nuova voce alla blocklist" - -#: src/Module/Admin/Blocklist/Server/Index.php:89 -msgid "Save changes to the blocklist" -msgstr "Salva modifiche alla blocklist" - -#: src/Module/Admin/Blocklist/Server/Index.php:90 -msgid "Current Entries in the Blocklist" -msgstr "Voci correnti nella blocklist" - -#: src/Module/Admin/Blocklist/Server/Index.php:93 -msgid "Delete entry from the blocklist" -msgstr "Elimina voce dalla blocklist" - -#: src/Module/Admin/Blocklist/Server/Index.php:94 -msgid "Delete entry from the blocklist?" -msgstr "Eliminare la voce dalla blocklist?" - #: src/Module/Admin/DBSync.php:51 msgid "Update has been marked successful" msgstr "L'aggiornamento è stato segnato come di successo" @@ -5075,28 +3999,28 @@ msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buo msgid "There was no additional update function %s that needed to be called." msgstr "Non ci sono altre funzioni di aggiornamento %s da richiamare." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:105 msgid "No failed updates." msgstr "Nessun aggiornamento fallito." -#: src/Module/Admin/DBSync.php:107 +#: src/Module/Admin/DBSync.php:106 msgid "Check database structure" msgstr "Controlla struttura database" -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:110 msgid "Failed Updates" msgstr "Aggiornamenti falliti" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:111 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato." -#: src/Module/Admin/DBSync.php:114 +#: src/Module/Admin/DBSync.php:112 msgid "Mark success (if update was manually applied)" msgstr "Segna completato (se l'update è stato applicato manualmente)" -#: src/Module/Admin/DBSync.php:115 +#: src/Module/Admin/DBSync.php:113 msgid "Attempt to execute this update step automatically" msgstr "Cerco di eseguire questo aggiornamento in automatico" @@ -5105,164 +4029,153 @@ msgstr "Cerco di eseguire questo aggiornamento in automatico" msgid "Lock feature %s" msgstr "Blocca funzionalità %s" -#: src/Module/Admin/Features.php:85 +#: src/Module/Admin/Features.php:84 msgid "Manage Additional Features" msgstr "Gestisci Funzionalità Aggiuntive" -#: src/Module/Admin/Federation.php:56 +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 msgid "Other" msgstr "Altro" -#: src/Module/Admin/Federation.php:118 src/Module/Admin/Federation.php:348 +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 msgid "unknown" msgstr "sconosciuto" -#: src/Module/Admin/Federation.php:154 +#: src/Module/Admin/Federation.php:187 +#, php-format +msgid "%2$s total system" +msgid_plural "%2$s total systems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Admin/Federation.php:188 +#, php-format +msgid "%2$s active user last month" +msgid_plural "%2$s active users last month" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Admin/Federation.php:189 +#, php-format +msgid "%2$s active user last six months" +msgid_plural "%2$s active users last six months" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Admin/Federation.php:190 +#, php-format +msgid "%2$s registered user" +msgid_plural "%2$s registered users" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Admin/Federation.php:191 +#, php-format +msgid "%2$s locally created post or comment" +msgid_plural "%2$s locally created posts and comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Admin/Federation.php:194 +#, php-format +msgid "%2$s post per user" +msgid_plural "%2$s posts per user" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Admin/Federation.php:199 +#, php-format +msgid "%2$s user per system" +msgid_plural "%2$s users per system" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Admin/Federation.php:209 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 "Questa pagina offre alcuni numeri riguardo la porzione del social network federato di cui il tuo nodo Friendica fa parte. Questi numeri non sono completi ma riflettono esclusivamente la porzione di rete di cui il tuo nodo e' a conoscenza." -#: src/Module/Admin/Federation.php:160 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "Statistiche sulla Federazione" -#: src/Module/Admin/Federation.php:164 +#: src/Module/Admin/Federation.php:219 #, php-format msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " +"Currently this node is aware of %2$s node (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " "following platforms:" -msgstr "Attualmente questo nodo conosce %d nodi con %d utenti registrati dalle seguenti piattaforme:" - -#: src/Module/Admin/Item/Delete.php:53 -msgid "Item marked for deletion." -msgstr "Elemento selezionato per l'eliminazione." - -#: src/Module/Admin/Item/Delete.php:65 src/Module/BaseAdmin.php:106 -msgid "Delete Item" -msgstr "Rimuovi elemento" - -#: src/Module/Admin/Item/Delete.php:66 -msgid "Delete this Item" -msgstr "Rimuovi questo elemento" - -#: src/Module/Admin/Item/Delete.php:67 -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 "Su questa pagina puoi cancellare un qualsiasi elemento dal tuo nodo. Se l'elemento è un messaggio di primo livello, l'intera discussione sarà cancellata." - -#: src/Module/Admin/Item/Delete.php:68 -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 "Serve il GUID dell'elemento. Lo puoi trovare, per esempio, guardando l'URL display: l'ultima parte di http://example.com/display/123456 è il GUID, qui 123456." - -#: src/Module/Admin/Item/Delete.php:69 -msgid "GUID" -msgstr "GUID" - -#: src/Module/Admin/Item/Delete.php:69 -msgid "The GUID of the item you want to delete." -msgstr "Il GUID dell'elemento che vuoi cancellare." - -#: src/Module/Admin/Item/Source.php:57 src/Module/BaseAdmin.php:116 -msgid "Item Source" -msgstr "Sorgente Oggetto" - -#: src/Module/Admin/Item/Source.php:58 -msgid "Item Guid" -msgstr "Item Guid" - -#: src/Module/Admin/Item/Source.php:63 -msgid "Item Id" -msgstr "Item Id" - -#: src/Module/Admin/Item/Source.php:64 -msgid "Item URI" -msgstr "Item URI" - -#: src/Module/Admin/Item/Source.php:66 -msgid "Terms" -msgstr "Termini" - -#: src/Module/Admin/Item/Source.php:67 -msgid "Tag" -msgstr "Etichetta" - -#: 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 "Tipo" - -#: src/Module/Admin/Item/Source.php:69 -msgid "Term" -msgstr "Termine" - -#: src/Module/Admin/Item/Source.php:70 -msgid "URL" -msgstr "URL" - -#: src/Module/Admin/Item/Source.php:71 -msgid "Mention" -msgstr "Menzione" - -#: src/Module/Admin/Item/Source.php:72 -msgid "Implicit Mention" -msgstr "Menzione Implicita" - -#: src/Module/Admin/Item/Source.php:73 src/Module/Admin/Logs/View.php:98 -#: src/Module/Debug/ActivityPubConversion.php:62 -msgid "Source" -msgstr "Sorgente" +msgid_plural "" +"Currently this node is aware of %2$s nodes (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: src/Module/Admin/Logs/Settings.php:47 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "Il file di registro '%s' non è scrivibile. Nessuna registrazione possibile" -#: src/Module/Admin/Logs/Settings.php:71 +#: src/Module/Admin/Logs/Settings.php:77 msgid "PHP log currently enabled." msgstr "Log PHP abilitato." -#: src/Module/Admin/Logs/Settings.php:73 +#: src/Module/Admin/Logs/Settings.php:79 msgid "PHP log currently disabled." msgstr "Log PHP disabilitato" -#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:108 -#: src/Module/BaseAdmin.php:109 +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 msgid "Logs" msgstr "Log" -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:88 msgid "Clear" msgstr "Pulisci" -#: src/Module/Admin/Logs/Settings.php:86 +#: src/Module/Admin/Logs/Settings.php:91 msgid "Enable Debugging" msgstr "Abilita Debugging" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:92 msgid "Log file" msgstr "File di Log" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:92 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Il server web deve avere i permessi di scrittura. Relativo alla cartella di livello superiore di Friendica." -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:93 msgid "Log level" msgstr "Livello di Log" -#: src/Module/Admin/Logs/Settings.php:90 +#: src/Module/Admin/Logs/Settings.php:95 msgid "PHP logging" msgstr "Log PHP" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:96 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 " @@ -5285,7 +4198,7 @@ msgid "" "is readable." msgstr "Impossibile aprire il file di registro %1$s.
    Controlla se il file %1$s è leggibile." -#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:110 +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 msgid "View Logs" msgstr "Vedi i log" @@ -5294,7 +4207,7 @@ msgid "Search in logs" msgstr "Cerca nel registro" #: src/Module/Admin/Logs/View.php:88 -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Notifications/Notifications.php:140 msgid "Show all" msgstr "Mostra tutti" @@ -5322,10 +4235,19 @@ msgstr "Vedi dettagli" msgid "Click to view details" msgstr "Clicca per vedere i dettagli" +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Dettagli dell'evento" + #: src/Module/Admin/Logs/View.php:97 msgid "Data" msgstr "Dati" +#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Debug/ActivityPubConversion.php:57 +msgid "Source" +msgstr "Sorgente" + #: src/Module/Admin/Logs/View.php:99 msgid "File" msgstr "File" @@ -5382,465 +4304,472 @@ msgstr "Comando" msgid "Job Parameters" msgstr "Parametri lavoro" +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "Creato" + #: src/Module/Admin/Queue.php:79 msgid "Priority" msgstr "Priorità" -#: src/Module/Admin/Site.php:71 -msgid "Can not parse base url. Must have at least ://" -msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]" +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" +msgstr "" -#: src/Module/Admin/Site.php:125 -msgid "Relocation started. Could take a while to complete." -msgstr "Riallocazione iniziata. Potrebbe volerci un po'." - -#: src/Module/Admin/Site.php:403 src/Module/Settings/Display.php:138 +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:178 msgid "No special theme for mobile devices" msgstr "Nessun tema speciale per i dispositivi mobili" -#: src/Module/Admin/Site.php:420 src/Module/Settings/Display.php:148 +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Sperimentale)" -#: src/Module/Admin/Site.php:432 -msgid "No community page for local users" -msgstr "Nessuna pagina di comunità per gli utenti locali" - -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:342 msgid "No community page" msgstr "Nessuna pagina Comunità" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:343 +msgid "No community page for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:344 msgid "Public postings from users of this site" msgstr "Messaggi pubblici dagli utenti di questo sito" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:345 msgid "Public postings from the federated network" msgstr "Messaggi pubblici dalla rete federata" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:346 msgid "Public postings from local users and the federated network" msgstr "Messaggi pubblici dagli utenti di questo sito e dalla rete federata" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:352 msgid "Multi user instance" msgstr "Istanza multi utente" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:375 msgid "Closed" msgstr "Chiusa" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:376 msgid "Requires approval" msgstr "Richiede l'approvazione" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:377 msgid "Open" msgstr "Aperta" -#: src/Module/Admin/Site.php:475 src/Module/Install.php:222 -msgid "No SSL policy, links will track page SSL state" -msgstr "Nessuna gestione SSL, i collegamenti seguiranno lo stato SSL della pagina" - -#: src/Module/Admin/Site.php:476 src/Module/Install.php:223 -msgid "Force all links to use SSL" -msgstr "Forza tutti i collegamenti ad usare SSL" - -#: src/Module/Admin/Site.php:477 src/Module/Install.php:224 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certificato auto-firmato, usa SSL solo per i collegamenti locali (sconsigliato)" - -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:381 msgid "Don't check" msgstr "Non controllare" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:382 msgid "check the stable version" msgstr "controlla la versione stabile" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:383 msgid "check the development version" msgstr "controlla la versione di sviluppo" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:387 msgid "none" msgstr "niente" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:388 msgid "Local contacts" msgstr "Contatti locali" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:389 msgid "Interactors" msgstr "Interlocutori" -#: src/Module/Admin/Site.php:499 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Sito" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:400 msgid "General Information" msgstr "Informazioni Generali" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:402 msgid "Republish users to directory" msgstr "Ripubblica gli utenti sulla directory" -#: src/Module/Admin/Site.php:503 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 msgid "Registration" msgstr "Registrazione" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:404 msgid "File upload" msgstr "Caricamento file" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:405 msgid "Policies" msgstr "Politiche" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "Avanzate" + +#: src/Module/Admin/Site.php:407 msgid "Auto Discovered Contact Directory" msgstr "Elenco Contatti Scoperto Automaticamente" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:408 msgid "Performance" msgstr "Performance" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:409 msgid "Worker" msgstr "Worker" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:410 msgid "Message Relay" msgstr "Relay Messaggio" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:411 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "Usa il comando \"console relay\" da riga di comando per aggiungere o rimuovere i relay." -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:412 msgid "The system is not subscribed to any relays at the moment." msgstr "Il sistema non è iscritto a nessun relay al momento." -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:413 msgid "The system is currently subscribed to the following relays:" msgstr "Il sistema è iscritto ai seguenti relay:" -#: src/Module/Admin/Site.php:515 -msgid "Relocate Instance" -msgstr "Trasloca Istanza" +#: src/Module/Admin/Site.php:415 +msgid "Relocate Node" +msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:416 msgid "" -"Warning! Advanced function. Could make this server " -"unreachable." -msgstr "Attenzione! Funzione avanzata. Può rendere questo server irraggiungibile." +"Relocating your node enables you to change the DNS domain of this node and " +"keep all the existing users and posts. This process takes a while and can " +"only be started from the relocate console command like this:" +msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:417 +msgid "(Friendica directory)# bin/console relocate https://newdomain.com" +msgstr "" + +#: src/Module/Admin/Site.php:420 msgid "Site name" msgstr "Nome del sito" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:421 msgid "Sender Email" msgstr "Mittente email" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:421 msgid "" "The email address your server shall use to send notification emails from." msgstr "L'indirizzo email che il tuo server dovrà usare per inviare notifiche via email." -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:422 msgid "Name of the system actor" msgstr "Nome dell'attore di sistema" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:422 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 "Nomina un account interno del sistema che venga utilizzato per le richieste ActivityPub. Questo dev'essere un nome utente non utilizzato. Una volta impostato, non potrà essere cambiato." -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:423 msgid "Banner/Logo" msgstr "Banner/Logo" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:424 msgid "Email Banner/Logo" msgstr "Intestazione/Logo Email" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:425 msgid "Shortcut icon" msgstr "Icona shortcut" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:425 msgid "Link to an icon that will be used for browsers." msgstr "Collegamento ad un'icona che verrà usata dai browser." -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:426 msgid "Touch icon" msgstr "Icona touch" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:426 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Collegamento ad un'icona che verrà usata dai tablet e i telefonini." -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:427 msgid "Additional Info" msgstr "Informazioni aggiuntive" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:427 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "Per server pubblici: puoi aggiungere informazioni extra che verranno mostrate su %s/servers." -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:428 msgid "System language" msgstr "Lingua di sistema" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:429 msgid "System theme" msgstr "Tema di sistema" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:429 +#, php-format msgid "" -"Default system theme - may be over-ridden by user profiles - Change default theme settings" -msgstr "Tema predefinito di sistema - può essere sovrascritto dai profili utente - Cambia impostazioni del tema predefinito" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:430 msgid "Mobile system theme" msgstr "Tema mobile di sistema" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:430 msgid "Theme for mobile devices" msgstr "Tema per dispositivi mobili" -#: src/Module/Admin/Site.php:531 src/Module/Install.php:232 -msgid "SSL link policy" -msgstr "Gestione collegamenti SSL" - -#: src/Module/Admin/Site.php:531 src/Module/Install.php:234 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determina se i collegamenti generati devono essere forzati a usare SSL" - -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:431 msgid "Force SSL" msgstr "Forza SSL" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:431 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Forza tutte le richieste non SSL su SSL - Attenzione: su alcuni sistemi può portare a loop senza fine" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:432 msgid "Show help entry from navigation menu" msgstr "Mostra la voce Guida nel menu di navigazione" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:432 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:433 msgid "Single user instance" msgstr "Istanza a singolo utente" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:433 msgid "Make this instance multi-user or single-user for the named user" msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:435 msgid "Maximum image size" msgstr "Massima dimensione immagini" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:435 +#, php-format msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:439 msgid "Maximum image length" msgstr "Massima lunghezza immagine" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:439 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite." -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:440 msgid "JPEG image quality" msgstr "Qualità immagini JPEG" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:440 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena." -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:442 msgid "Register policy" msgstr "Politica di registrazione" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "" + +#: src/Module/Admin/Site.php:444 msgid "Maximum Daily Registrations" msgstr "Massime registrazioni giornaliere" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:444 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 "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto." -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:445 msgid "Register text" msgstr "Testo registrazione" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:445 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Sarà mostrato ben visibile nella pagina di registrazione. Puoi usare BBCode." -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:446 msgid "Forbidden Nicknames" msgstr "Nomi utente Vietati" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:446 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "Lista separata da virgola di nomi utente che sono vietati nella registrazione. Il valore preimpostato è una lista di nomi di ruoli secondo RFC 2142." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:447 msgid "Accounts abandoned after x days" msgstr "Account abbandonati dopo x giorni" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:447 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo." -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:448 msgid "Allowed friend domains" msgstr "Domini amici consentiti" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:448 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Vuoto per accettare qualsiasi dominio." -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:449 msgid "Allowed email domains" msgstr "Domini email consentiti" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:449 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 "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:450 msgid "No OEmbed rich content" msgstr "Nessun contenuto ricco da OEmbed" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:450 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "Non mostrare il contenuto ricco (p.e. PDF), tranne che dai domini elencati di seguito." -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:451 msgid "Trusted third-party domains" msgstr "Domini fidati di terze parti" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:451 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 "Elenco separato da virgola di domini per i quali è consentita l'incorporazione del loro contenuto in messaggi come OEmbed. Anche tutti i sottodomini dei domini elencati sono consentiti." -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:452 msgid "Block public" msgstr "Blocca pagine pubbliche" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:452 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato." -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:453 msgid "Force publish" msgstr "Forza pubblicazione" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:453 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito." -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:453 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Abilitare questo potrebbe violare leggi sulla privacy come il GDPR" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:454 msgid "Global directory URL" msgstr "URL della directory globale" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:454 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato." -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:455 msgid "Private posts by default for new users" msgstr "Messaggi privati come impostazioni predefinita per i nuovi utenti" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:455 msgid "" "Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici." +"circle rather than public." +msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:456 msgid "Don't include post content in email notifications" msgstr "Non includere il contenuto dei messaggi nelle notifiche via email" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:456 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 "Non include il contenuti del messaggio/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:457 msgid "Disallow public access to addons listed in the apps menu." msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps." -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:457 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Selezionando questo box si limiterà ai soli membri l'accesso ai componenti aggiuntivi nel menu applicazioni" -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:458 msgid "Don't embed private images in posts" msgstr "Non inglobare immagini private nei messaggi" -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:458 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 " @@ -5848,11 +4777,11 @@ msgid "" "while." msgstr "Non sostituire le foto locali nei messaggi con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i messaggi contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che può richiedere un po' di tempo." -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:459 msgid "Explicit Content" msgstr "Contenuto Esplicito" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:459 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 " @@ -5861,247 +4790,267 @@ msgid "" "will be shown at the user registration page." msgstr "Imposta questo per avvisare che il tuo noto è usato principalmente per contenuto esplicito che potrebbe non essere adatto a minori. Questa informazione sarà pubblicata nella pagina di informazioni sul noto e potrà essere usata, per esempio nella directory globale, per filtrare il tuo nodo dalla lista di nodi su cui registrarsi. In più, una nota sarà mostrata nella pagina di registrazione." -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:460 msgid "Proxify external content" msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:460 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:461 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:461 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:462 msgid "Allow Users to set remote_self" msgstr "Permetti agli utenti di impostare 'io remoto'" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:462 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 "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream dell'utente." -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:463 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:463 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:561 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:561 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:465 msgid "Enable Fullname check" msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:465 msgid "" "Enable check to only allow users to register with a space between the first " "name and the last name in their full name." msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "" + +#: src/Module/Admin/Site.php:467 msgid "Community pages for visitors" msgstr "Pagina comunità per i visitatori" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:467 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Quale pagina comunità verrà mostrata ai visitatori. Gli utenti locali vedranno sempre entrambe le pagine." -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:468 msgid "Posts per user on community page" msgstr "Messaggi per utente nella pagina Comunità" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:468 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "\"Global Community\")" msgstr "Il numero massimo di messaggi per utente sulla pagina della comunità. (Non valido per \"Comunità Globale\")" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:470 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:470 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:471 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:472 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:472 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:474 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Il supporto a Diaspora non può essere abilitato perché Friendica è stato installato in una sottocartella." -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:475 msgid "Enable Diaspora support" msgstr "Abilita il supporto a Diaspora" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:475 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:476 msgid "Verify SSL" msgstr "Verifica SSL" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:476 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 "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati." -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:477 msgid "Proxy user" msgstr "Utente Proxy" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:477 +msgid "User name for the proxy server." +msgstr "" + +#: src/Module/Admin/Site.php:478 msgid "Proxy URL" msgstr "URL Proxy" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:478 +msgid "" +"If you want to use a proxy server that Friendica should use to connect to " +"the network, put the URL of the proxy here." +msgstr "" + +#: src/Module/Admin/Site.php:479 msgid "Network timeout" msgstr "Timeout rete" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:479 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)." -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:480 msgid "Maximum Load Average" msgstr "Massimo carico medio" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:480 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "Carico massimo del sistema prima che i processi di invio e richiesta siano rinviati - predefinito %d." -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:481 msgid "Minimal Memory" msgstr "Memoria Minima" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:481 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "Minima memoria libera in MB per il worker. Necessita di avere accesso a /proc/meminfo - default 0 (disabilitato)." -#: src/Module/Admin/Site.php:578 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables" msgstr "Ottimizza le tabelle periodicamente" -#: src/Module/Admin/Site.php:578 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "Ottimizza periodicamente le tabelle come la cache e la coda dei worker" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:484 msgid "Discover followers/followings from contacts" msgstr "Scopri seguiti/seguaci dai contatti" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:484 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "Se abilitato, ad ogni contatto saranno controllati i propri seguaci e le persone seguite." -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:485 msgid "None - deactivated" msgstr "Nessuno - disattivato" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:486 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "Contatti locali - contatti che i nostri contatti locali hanno scoperto con i loro seguaci/persone seguite." -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:487 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "Interlocutori - contatti dei tuoi contatti locali e contatti che hanno interagito sui messaggi visibili localmente saranno analizzati per i loro seguaci/seguiti" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:489 msgid "Synchronize the contacts with the directory server" msgstr "Sincronizza i contatti con il server directory" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:489 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "Se abilitato, il sistema controllerà periodicamente nuovi contatti sulle directory server indicate." -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:491 msgid "Days between requery" msgstr "Giorni tra le richieste" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:491 msgid "Number of days after which a server is requeried for his contacts." msgstr "Numero di giorni dopo i quali al server vengono richiesti i suoi contatti." -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:492 msgid "Discover contacts from other servers" msgstr "Trova contatti dagli altri server" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:492 msgid "" "Periodically query other servers for contacts. The system queries Friendica," " Mastodon and Hubzilla servers." msgstr "Periodicamente interroga gli altri server per i contatti. Il sistema interroga server Friendica, Mastodon e Hubzilla." -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:493 msgid "Search the local directory" msgstr "Cerca la directory locale" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:493 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 "Cerca nella directory locale invece che nella directory globale. Durante la ricerca a livello locale, ogni ricerca verrà eseguita sulla directory globale in background. Ciò migliora i risultati della ricerca quando la ricerca viene ripetuta." -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:495 msgid "Publish server information" msgstr "Pubblica informazioni server" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:495 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 " @@ -6109,50 +5058,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "Se abilitato, saranno pubblicate le informazioni sul server e i dati di utilizzo. Le informazioni contengono nome e versione del server, numero di utenti con profilo pubblico, numero di messaggi e quali protocolli e connettori sono stati attivati.\nVedi the-federation.info per dettagli." -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:497 msgid "Check upstream version" msgstr "Controlla versione upstream" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:497 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 "Abilita il controllo di nuove versioni di Friendica su Github. Se sono disponibili nuove versioni, ne sarai informato nel pannello Panoramica dell'amministrazione." -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:498 msgid "Suppress Tags" msgstr "Sopprimi Tags" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:498 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Non mostra la lista di hashtag in coda al messaggio" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:499 msgid "Clean database" msgstr "Pulisci database" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:499 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Rimuove i i vecchi elementi remoti, i record del database orfani e il vecchio contenuto da alcune tabelle di supporto." -#: src/Module/Admin/Site.php:596 +#: src/Module/Admin/Site.php:500 msgid "Lifespan of remote items" msgstr "Durata della vita di oggetti remoti" -#: src/Module/Admin/Site.php:596 +#: src/Module/Admin/Site.php:500 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 "Quando la pulizia del database è abilitata, questa impostazione definisce quali elementi remoti saranno cancellati. I propri elementi e quelli marcati preferiti o salvati in cartelle saranno sempre mantenuti. Il valore 0 disabilita questa funzionalità." -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:501 msgid "Lifespan of unclaimed items" msgstr "Durata della vita di oggetti non reclamati" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:501 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -6160,144 +5109,144 @@ msgid "" "items if set to 0." msgstr "Quando la pulizia del database è abilitata, questa impostazione definisce dopo quanti giorni gli elementi remoti non reclamanti (principalmente il contenuto dai relay) sarà cancellato. Il valore di default è 90 giorni. Se impostato a 0, verrà utilizzato il valore della durata della vita degli elementi remoti." -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:502 msgid "Lifespan of raw conversation data" msgstr "Durata della vita di dati di conversazione grezzi" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:502 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 "I dati di conversazione sono usati per ActivityPub e OStatus, come anche per necessità di debug. Dovrebbe essere sicuro rimuoverli dopo 14 giorni. Il default è 90 giorni." -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:503 msgid "Maximum numbers of comments per post" msgstr "Numero massimo di commenti per messaggio" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:503 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Quanti commenti devono essere mostrati per ogni messaggio? Default : 100." -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:504 msgid "Maximum numbers of comments per post on the display page" msgstr "Numero massimo di commenti per messaggio sulla pagina di visualizzazione" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:504 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "Quanti commenti devono essere mostrati sulla pagina dedicata per ogni messaggio? Il valore predefinito è 1000." -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:505 msgid "Temp path" msgstr "Percorso file temporanei" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:505 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Se si dispone di un sistema ristretto in cui il server web non può accedere al percorso temporaneo di sistema, inserire un altro percorso qui." -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:506 msgid "Only search in tags" msgstr "Cerca solo nei tag" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:506 msgid "On large systems the text search can slow down the system extremely." msgstr "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema." -#: src/Module/Admin/Site.php:604 -msgid "New base url" -msgstr "Nuovo url base" +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:507 msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." -msgstr "Cambia l'URL base di questo server. Invia il messaggio di trasloco a tutti i contatti Friendica e Diaspora* di tutti gli utenti." +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "" -#: src/Module/Admin/Site.php:606 +#: src/Module/Admin/Site.php:509 msgid "Maximum number of parallel workers" msgstr "Massimo numero di lavori in parallelo" -#: src/Module/Admin/Site.php:606 +#: src/Module/Admin/Site.php:509 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "Con hosting condiviso, imposta a %d. Su sistemi più grandi, vanno bene valori come %d. Il valore di default è %d." -#: src/Module/Admin/Site.php:607 +#: src/Module/Admin/Site.php:510 msgid "Enable fastlane" msgstr "Abilita fastlane" -#: src/Module/Admin/Site.php:607 +#: src/Module/Admin/Site.php:510 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "Quando abilitato, il meccanismo di fastlane avvia processi aggiuntivi se processi con priorità più alta sono bloccati da processi con priorità più bassa." -#: src/Module/Admin/Site.php:609 +#: src/Module/Admin/Site.php:512 msgid "Direct relay transfer" msgstr "Trasferimento relay diretto" -#: src/Module/Admin/Site.php:609 +#: src/Module/Admin/Site.php:512 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Abilita il trasferimento diretto agli altri server senza utilizzare i server relay." -#: src/Module/Admin/Site.php:610 +#: src/Module/Admin/Site.php:513 msgid "Relay scope" msgstr "Ambito del relay" -#: src/Module/Admin/Site.php:610 +#: src/Module/Admin/Site.php:513 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 "Può essere \"tutto\" o \"etichette\". \"tutto\" significa che ogni messaggio pubblico può essere ricevuto. \"etichette\" significa che solo i messaggi con le etichette selezionate saranno ricevuti." -#: src/Module/Admin/Site.php:610 src/Module/Contact/Profile.php:273 -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Disabled" msgstr "Disabilitato" -#: src/Module/Admin/Site.php:610 +#: src/Module/Admin/Site.php:513 msgid "all" msgstr "tutti" -#: src/Module/Admin/Site.php:610 +#: src/Module/Admin/Site.php:513 msgid "tags" msgstr "tags" -#: src/Module/Admin/Site.php:611 +#: src/Module/Admin/Site.php:514 msgid "Server tags" msgstr "Tags server" -#: src/Module/Admin/Site.php:611 +#: src/Module/Admin/Site.php:514 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Lista separata da virgola di etichette per la sottoscrizione \"etichette\"." -#: src/Module/Admin/Site.php:612 +#: src/Module/Admin/Site.php:515 msgid "Deny Server tags" msgstr "Etichette Negate del Server" -#: src/Module/Admin/Site.php:612 +#: src/Module/Admin/Site.php:515 msgid "Comma separated list of tags that are rejected." msgstr "Lista separata da virgola di etichette che vengono rifiutate." -#: src/Module/Admin/Site.php:613 +#: src/Module/Admin/Site.php:516 msgid "Allow user tags" msgstr "Permetti tag utente" -#: src/Module/Admin/Site.php:613 +#: src/Module/Admin/Site.php:516 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "Se abilitato, le etichette delle ricerche salvate saranno usate per la sottoscrizione \"etichette\" in aggiunta ai \"server_etichette\"." -#: src/Module/Admin/Site.php:616 +#: src/Module/Admin/Site.php:519 msgid "Start Relocation" msgstr "Inizia il Trasloco" @@ -6343,16 +5292,22 @@ msgstr "" msgid "This backend doesn't have custom settings" msgstr "" -#: src/Module/Admin/Storage.php:149 +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "" + +#: src/Module/Admin/Storage.php:150 msgid "Database (legacy)" msgstr "Database (legacy)" -#: src/Module/Admin/Summary.php:53 +#: src/Module/Admin/Summary.php:55 #, php-format msgid "Template engine (%s) error: %s" msgstr "Errore del motore di modelli (%s): %s" -#: src/Module/Admin/Summary.php:57 +#: src/Module/Admin/Summary.php:59 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -6363,7 +5318,7 @@ msgid "" " an automatic conversion.
    " msgstr "Stai ancora usando tabelle MyISAM. Dovresti cambiare il tipo motore a InnoDB. Siccome Friendica userà funzionalità specifiche di InnoDB nel futuro, dovresti modificarlo. Vedi quinel per una guida che può esserti utile nel convertire il motore delle tabelle. Puoi anche usare il comando php bin/console.php dbstructure toinnodb della tua installazione di Friendica per eseguire una conversione automatica.
    " -#: src/Module/Admin/Summary.php:62 +#: src/Module/Admin/Summary.php:64 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -6374,7 +5329,7 @@ msgid "" " installation for an automatic conversion.
    " msgstr "Il tuo DB sta ancora eseguendo tabelle InnoDB con il formato file Antelope. Dovresti cambiare il formato file in Barracuda. Friendica utilizza funzionalità che non sono fornite dal formato Antelope. Guarda qui per una guida che potrebbe esserti utile per convertire il motore delle tabelle. Potresti anche utilizzare il comando php bin/console.php dbstructure toinnodb della tua installazione Friendica per una conversione automatica.
    " -#: src/Module/Admin/Summary.php:72 +#: src/Module/Admin/Summary.php:74 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -6382,39 +5337,46 @@ msgid "" " to %d. See here for more information.
    " msgstr "La tua table_definition_cache è troppo piccola (%d). Questo può portare all'errore del database \"Prepared statement needs to be re-prepared\". Per favore impostala almeno a %d. Guarda qui per avere più informazioni.
    " -#: src/Module/Admin/Summary.php:82 +#: src/Module/Admin/Summary.php:85 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "È disponibile per il download una nuova versione di Friendica. La tua versione è %1$s, la versione upstream è %2$s" -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:94 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "L'aggiornamento del database è fallito. Esegui \"php bin/console.php dbstructure update\" dalla riga di comando per poter vedere gli eventuali errori che potrebbero apparire." -#: src/Module/Admin/Summary.php:95 +#: src/Module/Admin/Summary.php:98 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "L'ultimo aggiornamento non è riuscito. Per favore esegui \"php bin/console.php dbstructure update\" dal terminale e dai un'occhiata agli errori che potrebbe mostrare. (Alcuni di questi errori potrebbero essere nei file di log.)" -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "" + +#: src/Module/Admin/Summary.php:107 msgid "The worker was never executed. Please check your database structure!" msgstr "Il worker non è mai stato eseguito. Controlla la struttura del tuo database!" -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:109 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "L'ultima esecuzione del worker è stata alle %sUTC, ovvero più di un'ora fa. Controlla le impostazioni del tuo crontab." -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:114 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6423,7 +5385,7 @@ msgid "" "help with the transition." msgstr "La configurazione di Friendica è adesso salvata in config/local.config.php: copia config/local-sample.config.php e sposta la tua configurazione da .htconfig.php. Vedi la pagina della guida sulla Configurazione per avere aiuto con la transizione." -#: src/Module/Admin/Summary.php:111 +#: src/Module/Admin/Summary.php:118 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6432,7 +5394,7 @@ msgid "" "page for help with the transition." msgstr "La configurazione di Friendica è adesso salvata in config/local.config.php: copia config/local-sample.config.php e sposta la tua configurazione da config/local.ini.php. Vedi la pagina della guida sulla Configurazione per avere aiuto con la transizione." -#: src/Module/Admin/Summary.php:117 +#: src/Module/Admin/Summary.php:124 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -6440,83 +5402,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s non è raggiungibile sul tuo sistema. È un grave problema di configurazione che impedisce la comunicazione da server a server. Vedi la pagina sull'installazione per un aiuto." -#: src/Module/Admin/Summary.php:135 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "Il file di registro '%s' non è utilizzabile. Nessuna registrazione possibile (errore: '%s')" - -#: src/Module/Admin/Summary.php:149 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "Il file di debug '%s' non è utilizzabile. Nessuna registrazione possibile (errore: '%s')" - -#: src/Module/Admin/Summary.php:165 +#: src/Module/Admin/Summary.php:148 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "La system.basepath di Friendica è stata aggiornata da '%s' a '%s'. Per favore rimuovi la system.basepath dal tuo db per evitare differenze." -#: src/Module/Admin/Summary.php:173 +#: src/Module/Admin/Summary.php:156 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "L'attuale system.basepath di Friendica '%s' è errata e il file di configurazione '%s' non è utilizzato." -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:164 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "L'attuale system.basepath di Friendica '%s' non è uguale a quella del file di configurazione '%s'. Per favore correggi la tua configurazione." -#: src/Module/Admin/Summary.php:188 -msgid "Normal Account" -msgstr "Account normale" - -#: src/Module/Admin/Summary.php:189 -msgid "Automatic Follower Account" -msgstr "Account Follower Automatico" - -#: src/Module/Admin/Summary.php:190 -msgid "Public Forum Account" -msgstr "Account Forum Publico" - -#: src/Module/Admin/Summary.php:191 -msgid "Automatic Friend Account" -msgstr "Account per amicizia automatizzato" - -#: src/Module/Admin/Summary.php:192 -msgid "Blog Account" -msgstr "Account Blog" - -#: src/Module/Admin/Summary.php:193 -msgid "Private Forum Account" -msgstr "Account Forum Privato" - -#: src/Module/Admin/Summary.php:213 +#: src/Module/Admin/Summary.php:175 msgid "Message queues" msgstr "Code messaggi" -#: src/Module/Admin/Summary.php:219 +#: src/Module/Admin/Summary.php:181 msgid "Server Settings" msgstr "Impostazioni Server" -#: src/Module/Admin/Summary.php:235 -msgid "Registered users" -msgstr "Utenti registrati" - -#: src/Module/Admin/Summary.php:237 -msgid "Pending registrations" -msgstr "Registrazioni in attesa" - -#: src/Module/Admin/Summary.php:238 +#: src/Module/Admin/Summary.php:199 msgid "Version" msgstr "Versione" -#: src/Module/Admin/Summary.php:242 +#: src/Module/Admin/Summary.php:203 msgid "Active addons" msgstr "Componenti aggiuntivi attivi" @@ -6540,11 +5459,11 @@ msgid "Screenshot" msgstr "Anteprima" #: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:94 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 msgid "Themes" msgstr "Temi" -#: src/Module/Admin/Themes/Embed.php:79 +#: src/Module/Admin/Themes/Embed.php:80 msgid "Unknown theme." msgstr "Tema sconosciuto." @@ -6556,34 +5475,34 @@ msgstr "Temi ricaricati" msgid "Reload active themes" msgstr "Ricarica i temi attivi" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:118 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "Non sono stati trovati temi sul tuo sistema. Dovrebbero essere in %1$s" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:119 msgid "[Experimental]" msgstr "[Sperimentale]" -#: src/Module/Admin/Themes/Index.php:121 +#: src/Module/Admin/Themes/Index.php:120 msgid "[Unsupported]" msgstr "[Non supportato]" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 msgid "Display Terms of Service" msgstr "Mostra i Termini di Servizio" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 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 "Abilita la pagina dei Termini di Servizio. Se abilitato, un collegamento ai termini sarà aggiunto alla pagina di registrazione e nella pagina delle informazioni generali." -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 msgid "Display Privacy Statement" msgstr "Visualizza l'Informativa sulla Privacy" -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -6591,220 +5510,34 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "Mostra alcune informazioni richieste per gestire il nodo in accordo, per esempio, al GDPR." -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:81 msgid "Privacy Statement Preview" msgstr "Anteprima Informativa sulla Privacy" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "The Terms of Service" msgstr "I Termini di Servizio" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "Inserisci i Termini di Servizio del tuo nodo qui. Puoi usare BBCode. Le intestazioni delle sezioni dovrebbero partire da [h2]." -#: src/Module/Admin/Users/Active.php:45 src/Module/Admin/Users/Index.php:45 +#: src/Module/Admin/Tos.php:84 +msgid "The rules" +msgstr "" + +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." +msgstr "" + +#: src/Module/Api/ApiResponse.php:279 #, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "%s utente bloccato" -msgstr[1] "%s utenti bloccati" +msgid "API endpoint %s %s is not implemented but might be in the future." +msgstr "" -#: 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 "Non puoi rimuovere te stesso" - -#: 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 utente cancellato" -msgstr[1] "%s utenti cancellati" - -#: 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 "Utente \"%s\" eliminato" - -#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103 -#, php-format -msgid "User \"%s\" blocked" -msgstr "Utente \"%s\" bloccato" - -#: 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 "Data registrazione" - -#: 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 "Ultimo accesso" - -#: 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 "Ultimo elemento pubblico" - -#: src/Module/Admin/Users/Active.php:137 -msgid "Active Accounts" -msgstr "Account attivi" - -#: 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 "Utente bloccato" - -#: 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 "Amministrazione sito" - -#: 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 "Account scaduto" - -#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161 -msgid "Create a new user" -msgstr "Crea un nuovo utente" - -#: 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 "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" - -#: 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 "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?" - -#: 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 utente sbloccato" -msgstr[1] "%s utenti sbloccati" - -#: src/Module/Admin/Users/Blocked.php:96 src/Module/Admin/Users/Index.php:109 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "Utente \"%s\" sbloccato" - -#: src/Module/Admin/Users/Blocked.php:138 -msgid "Blocked Users" -msgstr "Utenti bloccati" - -#: src/Module/Admin/Users/Create.php:62 -msgid "New User" -msgstr "Nuovo Utente" - -#: src/Module/Admin/Users/Create.php:63 -msgid "Add User" -msgstr "Aggiungi utente" - -#: src/Module/Admin/Users/Create.php:71 -msgid "Name of the new user." -msgstr "Nome del nuovo utente." - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname" -msgstr "Nome utente" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname of the new user." -msgstr "Nome utente del nuovo utente." - -#: src/Module/Admin/Users/Create.php:73 -msgid "Email address of the new user." -msgstr "Indirizzo Email del nuovo utente." - -#: src/Module/Admin/Users/Deleted.php:86 -msgid "Users awaiting permanent deletion" -msgstr "Utenti in attesa della cancellazione definitiva" - -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:162 -msgid "Permanent deletion" -msgstr "Cancellazione permanente" - -#: src/Module/Admin/Users/Index.php:150 src/Module/Admin/Users/Index.php:160 -#: src/Module/BaseAdmin.php:92 -msgid "Users" -msgstr "Utenti" - -#: src/Module/Admin/Users/Index.php:152 -msgid "User waiting for permanent deletion" -msgstr "Utente in attesa di cancellazione definitiva" - -#: src/Module/Admin/Users/Pending.php:48 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "%s utente approvato" -msgstr[1] "%s utenti approvati" - -#: src/Module/Admin/Users/Pending.php:55 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "%s registrazione revocata" -msgstr[1] "%s registrazioni revocate" - -#: src/Module/Admin/Users/Pending.php:81 -msgid "Account approved." -msgstr "Account approvato." - -#: src/Module/Admin/Users/Pending.php:87 -msgid "Registration revoked" -msgstr "Registrazione revocata" - -#: src/Module/Admin/Users/Pending.php:102 -msgid "User registrations awaiting review" -msgstr "Registrazioni utente in attesa di verifica" - -#: src/Module/Admin/Users/Pending.php:104 -msgid "Request date" -msgstr "Data richiesta" - -#: src/Module/Admin/Users/Pending.php:105 -msgid "No registrations." -msgstr "Nessuna registrazione." - -#: src/Module/Admin/Users/Pending.php:106 -msgid "Note from the user" -msgstr "Nota dall'utente" - -#: src/Module/Admin/Users/Pending.php:108 -msgid "Deny" -msgstr "Nega" - -#: src/Module/Api/ApiResponse.php:272 -#, php-format -msgid "API endpoint %s %s is not implemented" -msgstr "L'endpoint API %s%s non è implementato" - -#: src/Module/Api/ApiResponse.php:273 -msgid "" -"The API endpoint is currently not implemented but might be in the future." -msgstr "L'endpoint API attualmente non è implementato ma potrebbe esserlo in futuro." - -#: src/Module/Api/Mastodon/Apps.php:63 +#: src/Module/Api/Mastodon/Apps.php:73 msgid "Missing parameters" msgstr "Parametri mancanti" @@ -6812,16 +5545,11 @@ msgstr "Parametri mancanti" msgid "Only starting posts can be bookmarked" msgstr "Solo i messaggi iniziali possono essere aggiunti ai preferiti" -#: src/Module/Api/Mastodon/Statuses/Mute.php:50 +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 msgid "Only starting posts can be muted" msgstr "Solo i messaggi iniziali possono essere silenziati" -#: src/Module/Api/Mastodon/Statuses/Pin.php:50 -#: src/Module/Api/Mastodon/Statuses/Unpin.php:50 -msgid "Only starting posts can be pinned" -msgstr "Solo i messaggi iniziali possono essere messi in evidenza" - -#: src/Module/Api/Mastodon/Statuses/Reblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:56 #, php-format msgid "Posts from %s can't be shared" msgstr "I messaggi da %s non possono essere condivisi" @@ -6830,11 +5558,11 @@ msgstr "I messaggi da %s non possono essere condivisi" msgid "Only starting posts can be unbookmarked" msgstr "Solo i messaggi iniziali possono essere rimossi dai preferiti" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:50 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 msgid "Only starting posts can be unmuted" msgstr "Solo i messaggi iniziali possono essere de-silenziati" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:62 #, php-format msgid "Posts from %s can't be unshared" msgstr "I messaggi da %snon possono essere condivisi" @@ -6843,11 +5571,11 @@ msgstr "I messaggi da %snon possono essere condivisi" msgid "Contact not found" msgstr "Contatto non trovato" -#: src/Module/Apps.php:54 +#: src/Module/Apps.php:62 msgid "No installed applications." msgstr "Nessuna applicazione installata." -#: src/Module/Apps.php:59 +#: src/Module/Apps.php:67 msgid "Applications" msgstr "Applicazioni" @@ -6856,6 +5584,7 @@ msgid "Item was not found." msgstr "Oggetto non trovato." #: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 msgid "Please login to continue." msgstr "Effettua il login per continuare." @@ -6869,159 +5598,222 @@ msgid "" " as the main account." msgstr "Account sottogestiti non possono accedere alle pagine di amministrazione. Per favore autenticati con l'account principale." -#: src/Module/BaseAdmin.php:86 +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 msgid "Overview" msgstr "Panoramica" -#: src/Module/BaseAdmin.php:89 +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 msgid "Configuration" msgstr "Configurazione" -#: src/Module/BaseAdmin.php:95 src/Module/BaseSettings.php:63 +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 msgid "Additional features" msgstr "Funzionalità aggiuntive" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:97 msgid "Database" msgstr "Database" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:98 msgid "DB updates" msgstr "Aggiornamenti Database" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:99 msgid "Inspect Deferred Workers" msgstr "Analizza i lavori rinviati" -#: src/Module/BaseAdmin.php:101 +#: src/Module/BaseAdmin.php:100 msgid "Inspect worker Queue" msgstr "Analizza coda lavori" -#: src/Module/BaseAdmin.php:103 -msgid "Tools" -msgstr "Strumenti" - -#: src/Module/BaseAdmin.php:104 -msgid "Contact Blocklist" -msgstr "Blocklist Contatti" - -#: src/Module/BaseAdmin.php:105 -msgid "Server Blocklist" -msgstr "Server Blocklist" - -#: src/Module/BaseAdmin.php:112 +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 msgid "Diagnostics" msgstr "Diagnostiche" -#: src/Module/BaseAdmin.php:113 +#: src/Module/BaseAdmin.php:107 msgid "PHP Info" msgstr "Info PHP" -#: src/Module/BaseAdmin.php:114 +#: src/Module/BaseAdmin.php:108 msgid "probe address" msgstr "controlla indirizzo" -#: src/Module/BaseAdmin.php:115 +#: src/Module/BaseAdmin.php:109 msgid "check webfinger" msgstr "verifica webfinger" -#: src/Module/BaseAdmin.php:117 +#: src/Module/BaseAdmin.php:110 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:118 src/Module/Debug/ActivityPubConversion.php:138 +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 msgid "ActivityPub Conversion" msgstr "Conversione ActivityPub" -#: src/Module/BaseAdmin.php:127 +#: src/Module/BaseAdmin.php:120 msgid "Addon Features" msgstr "Funzionalità Componenti Aggiuntivi" -#: src/Module/BaseAdmin.php:128 +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 msgid "User registrations waiting for confirmation" msgstr "Utenti registrati in attesa di conferma" -#: src/Module/BaseApi.php:241 src/Module/BaseApi.php:257 -#: src/Module/BaseApi.php:273 +#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467 +#: src/Module/BaseApi.php:483 msgid "Too Many Requests" msgstr "" -#: src/Module/BaseApi.php:242 +#: src/Module/BaseApi.php:452 #, 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] "Limite giornaliero di %d messaggio raggiunto. Il messaggio è stato rifiutato" msgstr[1] "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato." +msgstr[2] "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato." -#: src/Module/BaseApi.php:258 +#: src/Module/BaseApi.php:468 #, 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] "Limite settimanale di %d messaggio raggiunto. Il messaggio è stato rifiutato" msgstr[1] "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato." +msgstr[2] "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato." -#: src/Module/BaseApi.php:274 +#: src/Module/BaseApi.php:484 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato." +msgid_plural "" +"Monthly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: src/Module/BaseProfile.php:51 src/Module/Contact.php:460 +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "" + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "" + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Utenti" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "Strumenti" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "Blocklist Contatti" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "Server Blocklist" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "Rimuovi elemento" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "Sorgente Oggetto" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 msgid "Profile Details" msgstr "Dettagli del profilo" -#: src/Module/BaseProfile.php:109 +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "" + +#: src/Module/BaseProfile.php:111 msgid "Only You Can See This" msgstr "Solo tu puoi vedere questo" -#: src/Module/BaseProfile.php:114 src/Module/Profile/Schedule.php:82 +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 msgid "Scheduled Posts" msgstr "" -#: src/Module/BaseProfile.php:117 +#: src/Module/BaseProfile.php:119 msgid "Posts that are scheduled for publishing" msgstr "" -#: src/Module/BaseProfile.php:136 src/Module/BaseProfile.php:139 +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 msgid "Tips for New Members" msgstr "Consigli per i Nuovi Utenti" -#: src/Module/BaseSearch.php:68 +#: src/Module/BaseSearch.php:71 #, php-format msgid "People Search - %s" msgstr "Cerca persone - %s" -#: src/Module/BaseSearch.php:78 +#: src/Module/BaseSearch.php:75 #, php-format -msgid "Forum Search - %s" -msgstr "Ricerca Forum - %s" +msgid "Group Search - %s" +msgstr "" -#: src/Module/BaseSettings.php:41 +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "Nessun risultato" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/BaseSettings.php:78 msgid "Account" msgstr "Account" -#: src/Module/BaseSettings.php:48 src/Module/Security/TwoFactor/Verify.php:95 -#: src/Module/Settings/TwoFactor/Index.php:110 +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 msgid "Two-factor authentication" msgstr "Autenticazione a due fattori" -#: src/Module/BaseSettings.php:71 +#: src/Module/BaseSettings.php:118 msgid "Display" msgstr "Visualizzazione" -#: src/Module/BaseSettings.php:92 src/Module/Settings/Delegation.php:171 +#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "Social Networks" + +#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172 msgid "Manage Accounts" msgstr "Gestisci Account" -#: src/Module/BaseSettings.php:99 +#: src/Module/BaseSettings.php:146 msgid "Connected apps" msgstr "Applicazioni collegate" -#: src/Module/BaseSettings.php:106 src/Module/Settings/UserExport.php:75 +#: src/Module/BaseSettings.php:153 +msgid "Remote servers" +msgstr "" + +#: src/Module/BaseSettings.php:160 src/Module/Settings/UserExport.php:98 msgid "Export personal data" msgstr "Esporta dati personali" -#: src/Module/BaseSettings.php:113 +#: src/Module/BaseSettings.php:167 msgid "Remove account" msgstr "Rimuovi account" @@ -7033,117 +5825,365 @@ msgstr "A questa pagina manca il parametro url." msgid "The post was created" msgstr "Il messaggio è stato creato" -#: src/Module/Contact.php:88 +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "" + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "Rimozione evento fallita." + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "Un evento non può finire prima di iniziare." + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "Titolo e ora di inizio dell'evento sono richiesti." + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "La data di inizio e il titolo sono richiesti." + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "L'evento inizia:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Richiesto" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "La data/ora di fine non è definita" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "L'evento finisce:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Condividi questo evento" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "Base" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "Questo formato di calendario non è supportato" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "Nessun dato esportabile trovato" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "calendario" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Eventi" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "Mostra" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Crea un nuovo evento" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:248 +msgid "list" +msgstr "lista" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "" + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "" + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "" + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "" + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "Contatto non trovato." + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "Contatto non valido." + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "Contatto eliminato." + +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "" + +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "" + +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "" + +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "" + +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "Richiesta sbagliata." + +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "" + +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "Filtro" + +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "" + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "" + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "Membri" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "" + +#: src/Module/Contact.php:97 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "%d contatto modificato." msgstr[1] "%d contatti modificati" +msgstr[2] "%d contatti modificati" -#: src/Module/Contact.php:309 +#: src/Module/Contact.php:348 msgid "Show all contacts" msgstr "Mostra tutti i contatti" -#: src/Module/Contact.php:317 +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "In sospeso" + +#: src/Module/Contact.php:356 msgid "Only show pending contacts" msgstr "Mostra solo contatti in sospeso" -#: src/Module/Contact.php:325 +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Bloccato" + +#: src/Module/Contact.php:364 msgid "Only show blocked contacts" msgstr "Mostra solo contatti bloccati" -#: src/Module/Contact.php:330 src/Module/Contact.php:377 -#: src/Object/Post.php:309 +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:368 msgid "Ignored" msgstr "Ignorato" -#: src/Module/Contact.php:333 +#: src/Module/Contact.php:372 msgid "Only show ignored contacts" msgstr "Mostra solo contatti ignorati" -#: src/Module/Contact.php:338 src/Module/Contact.php:378 +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 msgid "Archived" msgstr "Archiviato" -#: src/Module/Contact.php:341 +#: src/Module/Contact.php:388 msgid "Only show archived contacts" msgstr "Mostra solo contatti archiviati" -#: src/Module/Contact.php:346 src/Module/Contact.php:376 +#: src/Module/Contact.php:393 src/Module/Contact.php:438 msgid "Hidden" msgstr "Nascosto" -#: src/Module/Contact.php:349 +#: src/Module/Contact.php:396 msgid "Only show hidden contacts" msgstr "Mostra solo contatti nascosti" -#: src/Module/Contact.php:357 -msgid "Organize your contact groups" -msgstr "Organizza i tuoi gruppi di contatti" +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "" -#: src/Module/Contact.php:389 +#: src/Module/Contact.php:459 msgid "Search your contacts" msgstr "Cerca nei tuoi contatti" -#: src/Module/Contact.php:390 src/Module/Search/Index.php:191 +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 #, php-format msgid "Results for: %s" msgstr "Risultati per: %s" -#: src/Module/Contact.php:397 +#: src/Module/Contact.php:467 msgid "Update" msgstr "Aggiorna" -#: src/Module/Contact.php:399 src/Module/Contact/Profile.php:349 -#: src/Module/Contact/Profile.php:457 +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Sblocca" + +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 msgid "Unignore" msgstr "Non ignorare" -#: src/Module/Contact.php:401 +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "" + +#: src/Module/Contact.php:472 msgid "Batch Actions" msgstr "Azioni Batch" -#: src/Module/Contact.php:436 +#: src/Module/Contact.php:515 msgid "Conversations started by this contact" msgstr "Conversazioni iniziate da questo contatto" -#: src/Module/Contact.php:441 +#: src/Module/Contact.php:520 msgid "Posts and Comments" msgstr "Messaggi e Commenti" -#: src/Module/Contact.php:452 +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "" + +#: src/Module/Contact.php:531 msgid "Posts containing media objects" msgstr "" -#: src/Module/Contact.php:467 +#: src/Module/Contact.php:539 msgid "View all known contacts" msgstr "Vedi tutti i contatti conosciuti" -#: src/Module/Contact.php:477 +#: src/Module/Contact.php:550 msgid "Advanced Contact Settings" msgstr "Impostazioni avanzate Contatto" -#: src/Module/Contact.php:511 +#: src/Module/Contact.php:586 msgid "Mutual Friendship" msgstr "Amicizia reciproca" -#: src/Module/Contact.php:515 +#: src/Module/Contact.php:590 msgid "is a fan of yours" msgstr "è un tuo fan" -#: src/Module/Contact.php:519 +#: src/Module/Contact.php:594 msgid "you are a fan of" msgstr "sei un fan di" -#: src/Module/Contact.php:537 +#: src/Module/Contact.php:612 msgid "Pending outgoing contact request" msgstr "Richiesta di contatto in uscita in sospeso" -#: src/Module/Contact.php:539 +#: src/Module/Contact.php:614 msgid "Pending incoming contact request" msgstr "Richiesta di contatto in arrivo in sospeso" -#: src/Module/Contact.php:552 src/Module/Contact/Profile.php:334 +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visita il profilo di %s [%s]" @@ -7156,6 +6196,19 @@ msgstr "Le modifiche al contatto non sono state salvate." msgid "Return to contact editor" msgstr "Ritorna alla modifica contatto" +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Nome" + #: src/Module/Contact/Advanced.php:135 msgid "Account Nickname" msgstr "Nome utente" @@ -7172,446 +6225,565 @@ msgstr "URL Feed" msgid "New photo from this URL" msgstr "Nuova foto da questo URL" -#: src/Module/Contact/Contacts.php:50 src/Module/Conversation/Network.php:187 -#: src/Module/Group.php:103 -msgid "Invalid contact." -msgstr "Contatto non valido." - -#: src/Module/Contact/Contacts.php:73 +#: src/Module/Contact/Contacts.php:89 msgid "No known contacts." msgstr "Nessun contatto conosciuto." -#: src/Module/Contact/Contacts.php:87 src/Module/Profile/Common.php:98 +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 msgid "No common contacts." msgstr "Nessun contatto in comune." -#: src/Module/Contact/Contacts.php:99 src/Module/Profile/Contacts.php:96 +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" msgstr[0] "Seguace (%s)" msgstr[1] "Seguaci (%s)" +msgstr[2] "Seguaci (%s)" -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Contacts.php:99 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" msgstr[0] "Seguendo (%s)" msgstr[1] "Seguendo (%s)" +msgstr[2] "Seguendo (%s)" -#: src/Module/Contact/Contacts.php:107 src/Module/Profile/Contacts.php:102 +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" msgstr[0] "Amico reciproco (%s)" msgstr[1] "Amici reciproci (%s)" +msgstr[2] "Amici reciproci (%s)" -#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:104 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "Questi contatti seguono e sono seguiti da %s." -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Common.php:86 +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" msgstr[0] "Contatto in comune (%s)" msgstr[1] "Contatti in comune (%s)" +msgstr[2] "Contatti in comune (%s)" -#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:88 +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "Sia tu che %s avete pubblicamente interagito con questi contatti (seguendo, commentando o mettendo mi piace su messaggi pubblici)." -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:110 +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "Contatto (%s)" msgstr[1] "Contatti (%s)" +msgstr[2] "Contatti (%s)" -#: src/Module/Contact/Poke.php:135 -msgid "Error while sending poke, please retry." -msgstr "Errore durante l'invio dello stuzzicamento, per favore riprova." +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:165 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Accesso negato." -#: src/Module/Contact/Poke.php:148 src/Module/Search/Acl.php:54 -msgid "You must be logged in to use this module." -msgstr "Devi aver essere autenticato per usare questo modulo." +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Invia richiesta" -#: src/Module/Contact/Poke.php:171 -msgid "Poke/Prod" -msgstr "Tocca/Pungola" +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "Hai già aggiunto questo contatto." -#: src/Module/Contact/Poke.php:172 -msgid "poke, prod or do other things to somebody" -msgstr "tocca, pungola o fai altre cose a qualcuno" +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Non è possibile rilevare il tipo di rete. Il contatto non può essere aggiunto." -#: src/Module/Contact/Poke.php:174 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi fare al destinatario" +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Il supporto Diaspora non è abilitato. Il contatto non può essere aggiunto." -#: src/Module/Contact/Poke.php:175 -msgid "Make this post private" -msgstr "Rendi questo messaggio privato" +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "Il supporto OStatus non è abilitato. Il contatto non può essere aggiunto." -#: src/Module/Contact/Profile.php:127 +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Rispondi:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "L'indirizzo della tua identità:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "URL Profilo" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Tag:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "%s ti conosce" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Aggiungi una nota personale:" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" +msgstr "" + +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "Il contatto non può essere aggiunto." + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "Richiesta non valida." + +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "Nessuna parola chiave corrisponde. Per favore aggiungi parole chiave al tuo profilo." + +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "Profili corrispondenti" + +#: src/Module/Contact/Profile.php:140 msgid "Failed to update contact record." msgstr "Errore nell'aggiornamento del contatto." -#: src/Module/Contact/Profile.php:177 +#: src/Module/Contact/Profile.php:190 msgid "Contact has been unblocked" msgstr "Il contatto è stato sbloccato" -#: src/Module/Contact/Profile.php:181 +#: src/Module/Contact/Profile.php:194 msgid "Contact has been blocked" msgstr "Il contatto è stato bloccato" -#: src/Module/Contact/Profile.php:193 +#: src/Module/Contact/Profile.php:206 msgid "Contact has been unignored" msgstr "Il contatto non è più ignorato" -#: src/Module/Contact/Profile.php:197 +#: src/Module/Contact/Profile.php:210 msgid "Contact has been ignored" msgstr "Il contatto è ignorato" -#: src/Module/Contact/Profile.php:229 +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:254 #, php-format msgid "You are mutual friends with %s" msgstr "Sei amico reciproco con %s" -#: src/Module/Contact/Profile.php:230 +#: src/Module/Contact/Profile.php:255 #, php-format msgid "You are sharing with %s" msgstr "Stai condividendo con %s" -#: src/Module/Contact/Profile.php:231 +#: src/Module/Contact/Profile.php:256 #, php-format msgid "%s is sharing with you" msgstr "%s sta condividendo con te" -#: src/Module/Contact/Profile.php:247 +#: src/Module/Contact/Profile.php:272 msgid "Private communications are not available for this contact." msgstr "Le comunicazioni private non sono disponibili per questo contatto." -#: src/Module/Contact/Profile.php:249 +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "" + +#: src/Module/Contact/Profile.php:285 msgid "Never" msgstr "Mai" -#: src/Module/Contact/Profile.php:252 +#: src/Module/Contact/Profile.php:288 msgid "(Update was not successful)" msgstr "(L'aggiornamento non è stato completato)" -#: src/Module/Contact/Profile.php:252 +#: src/Module/Contact/Profile.php:288 msgid "(Update was successful)" msgstr "(L'aggiornamento è stato completato)" -#: src/Module/Contact/Profile.php:254 src/Module/Contact/Profile.php:420 +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 msgid "Suggest friends" msgstr "Suggerisci amici" -#: src/Module/Contact/Profile.php:258 +#: src/Module/Contact/Profile.php:294 #, php-format msgid "Network type: %s" msgstr "Tipo di rete: %s" -#: src/Module/Contact/Profile.php:263 +#: src/Module/Contact/Profile.php:299 msgid "Communications lost with this contact!" msgstr "Comunicazione con questo contatto persa!" -#: src/Module/Contact/Profile.php:269 +#: src/Module/Contact/Profile.php:305 msgid "Fetch further information for feeds" msgstr "Recupera maggiori informazioni per i feed" -#: src/Module/Contact/Profile.php:271 +#: src/Module/Contact/Profile.php:307 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 "Recupera informazioni come immagini di anteprima, titolo e teaser dall'elemento del feed. Puoi attivare questa funzione se il feed non contiene molto testo. Le parole chiave sono recuperate dal tag meta nella pagina dell'elemento e inseriti come hashtag." -#: src/Module/Contact/Profile.php:274 +#: src/Module/Contact/Profile.php:310 msgid "Fetch information" msgstr "Recupera informazioni" -#: src/Module/Contact/Profile.php:275 +#: src/Module/Contact/Profile.php:311 msgid "Fetch keywords" msgstr "Recupera parole chiave" -#: src/Module/Contact/Profile.php:276 +#: src/Module/Contact/Profile.php:312 msgid "Fetch information and keywords" msgstr "Recupera informazioni e parole chiave" -#: src/Module/Contact/Profile.php:286 src/Module/Contact/Profile.php:292 -#: src/Module/Contact/Profile.php:297 src/Module/Contact/Profile.php:303 +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 msgid "No mirroring" msgstr "Non duplicare" -#: src/Module/Contact/Profile.php:287 -msgid "Mirror as forwarded posting" -msgstr "Duplica come messaggi ricondivisi" - -#: src/Module/Contact/Profile.php:288 src/Module/Contact/Profile.php:298 -#: src/Module/Contact/Profile.php:304 +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 msgid "Mirror as my own posting" msgstr "Duplica come miei messaggi" -#: src/Module/Contact/Profile.php:293 src/Module/Contact/Profile.php:299 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 msgid "Native reshare" msgstr "Ricondivisione nativa" -#: src/Module/Contact/Profile.php:316 +#: src/Module/Contact/Profile.php:353 msgid "Contact Information / Notes" msgstr "Informazioni / Note sul contatto" -#: src/Module/Contact/Profile.php:317 +#: src/Module/Contact/Profile.php:354 msgid "Contact Settings" msgstr "Impostazioni Contatto" -#: src/Module/Contact/Profile.php:325 +#: src/Module/Contact/Profile.php:362 msgid "Contact" msgstr "Contatto" -#: src/Module/Contact/Profile.php:329 +#: src/Module/Contact/Profile.php:366 msgid "Their personal note" msgstr "La loro nota personale" -#: src/Module/Contact/Profile.php:331 +#: src/Module/Contact/Profile.php:368 msgid "Edit contact notes" msgstr "Modifica note contatto" -#: src/Module/Contact/Profile.php:335 +#: src/Module/Contact/Profile.php:372 msgid "Block/Unblock contact" msgstr "Blocca/Sblocca contatto" -#: src/Module/Contact/Profile.php:336 +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 msgid "Ignore contact" msgstr "Ignora il contatto" -#: src/Module/Contact/Profile.php:337 +#: src/Module/Contact/Profile.php:374 msgid "View conversations" msgstr "Vedi conversazioni" -#: src/Module/Contact/Profile.php:342 +#: src/Module/Contact/Profile.php:379 msgid "Last update:" msgstr "Ultimo aggiornamento:" -#: src/Module/Contact/Profile.php:344 +#: src/Module/Contact/Profile.php:381 msgid "Update public posts" msgstr "Aggiorna messaggi pubblici" -#: src/Module/Contact/Profile.php:346 src/Module/Contact/Profile.php:430 +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 msgid "Update now" msgstr "Aggiorna adesso" -#: src/Module/Contact/Profile.php:353 -msgid "Currently blocked" -msgstr "Bloccato" - -#: src/Module/Contact/Profile.php:354 -msgid "Currently ignored" -msgstr "Ignorato" - -#: src/Module/Contact/Profile.php:355 -msgid "Currently archived" -msgstr "Al momento archiviato" - -#: src/Module/Contact/Profile.php:356 +#: src/Module/Contact/Profile.php:385 msgid "Awaiting connection acknowledge" msgstr "In attesa di conferma della connessione" -#: src/Module/Contact/Profile.php:357 -#: src/Module/Notifications/Introductions.php:190 +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "Bloccato" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "Ignorato" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "Al momento archiviato" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "" + +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 msgid "Hide this contact from others" msgstr "Nascondi questo contatto agli altri" -#: src/Module/Contact/Profile.php:357 +#: src/Module/Contact/Profile.php:394 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Risposte/Mi Piace ai tuoi messaggi pubblici possono essere comunque visibili" -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:395 msgid "Notification for new posts" msgstr "Notifica per i nuovi messaggi" -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:395 msgid "Send a notification of every new post of this contact" msgstr "Invia una notifica per ogni nuovo messaggio di questo contatto" -#: src/Module/Contact/Profile.php:360 +#: src/Module/Contact/Profile.php:397 msgid "Keyword Deny List" msgstr "Elenco di Parole Chiave Negate" -#: src/Module/Contact/Profile.php:360 +#: src/Module/Contact/Profile.php:397 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Lista separata da virgola di parole chiave che non dovranno essere convertite in hashtag, quando \"Recupera informazioni e parole chiave\" è selezionato" -#: src/Module/Contact/Profile.php:378 -#: src/Module/Settings/TwoFactor/Index.php:132 +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "Actions" msgstr "Azioni" -#: src/Module/Contact/Profile.php:386 +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "Stato" + +#: src/Module/Contact/Profile.php:423 msgid "Mirror postings from this contact" msgstr "Ripeti i messaggi di questo contatto" -#: src/Module/Contact/Profile.php:388 +#: src/Module/Contact/Profile.php:425 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "Imposta questo contatto come 'io remoto', questo farà si che friendica re invii i nuovi messaggi da questo contatto." -#: src/Module/Contact/Profile.php:440 +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" +msgstr "" + +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "" + +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "" + +#: src/Module/Contact/Profile.php:502 msgid "Refetch contact data" msgstr "Ricarica dati contatto" -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:513 msgid "Toggle Blocked status" msgstr "Inverti stato \"Blocca\"" -#: src/Module/Contact/Profile.php:459 +#: src/Module/Contact/Profile.php:521 msgid "Toggle Ignored status" msgstr "Inverti stato \"Ignora\"" -#: src/Module/Contact/Profile.php:466 src/Module/Contact/Revoke.php:107 +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" +msgstr "" + +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 msgid "Revoke Follow" msgstr "" -#: src/Module/Contact/Profile.php:468 +#: src/Module/Contact/Profile.php:538 msgid "Revoke the follow from this contact" msgstr "" -#: src/Module/Contact/Revoke.php:59 +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "Richiesta Errata." + +#: src/Module/Contact/Revoke.php:63 msgid "Unknown contact." msgstr "" -#: src/Module/Contact/Revoke.php:69 src/Module/Group.php:112 -msgid "Contact is deleted." -msgstr "Contatto eliminato." - -#: src/Module/Contact/Revoke.php:73 +#: src/Module/Contact/Revoke.php:77 msgid "Contact is being deleted." msgstr "" -#: src/Module/Contact/Revoke.php:87 +#: src/Module/Contact/Revoke.php:91 msgid "Follow was successfully revoked." msgstr "" -#: src/Module/Contact/Revoke.php:89 -msgid "" -"Follow was successfully revoked, however the remote contact won't be aware " -"of this revokation." -msgstr "" - -#: src/Module/Contact/Revoke.php:91 -msgid "" -"Unable to revoke follow, please try again later or contact the " -"administrator." -msgstr "" - -#: src/Module/Contact/Revoke.php:108 +#: src/Module/Contact/Revoke.php:107 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "" -#: src/Module/Contact/Revoke.php:109 -#: src/Module/Notifications/Introductions.php:142 -#: src/Module/OAuth/Acknowledge.php:53 src/Module/Register.php:130 +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "Yes" msgstr "Si" -#: src/Module/Conversation/Community.php:68 -msgid "Local Community" -msgstr "Comunità Locale" +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." -#: src/Module/Conversation/Community.php:71 -msgid "Posts from local users on this server" -msgstr "Messaggi dagli utenti locali su questo sito" +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "Non stai seguendo questo contatto." -#: src/Module/Conversation/Community.php:79 -msgid "Global Community" -msgstr "Comunità Globale" +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "Smettere di seguire non è al momento supportato dalla tua rete." -#: src/Module/Conversation/Community.php:82 -msgid "Posts from users of the whole federated network" -msgstr "Messaggi dagli utenti della rete federata" +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "Disconnetti/Non Seguire" -#: src/Module/Conversation/Community.php:115 -msgid "Own Contacts" -msgstr "Propri Contatti" +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "Il contatto non è più seguito" -#: src/Module/Conversation/Community.php:119 -msgid "Include" -msgstr "Includi" +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "Impossibile smettere di seguire questo contatto, contatta il tuo amministratore" -#: src/Module/Conversation/Community.php:120 -msgid "Hide" -msgstr "Nascondi" - -#: src/Module/Conversation/Community.php:137 src/Module/Search/Index.php:136 -#: src/Module/Search/Index.php:178 +#: src/Module/Conversation/Channel.php:121 +#: src/Module/Conversation/Community.php:125 src/Module/Search/Index.php:152 +#: src/Module/Search/Index.php:194 msgid "No results." msgstr "Nessun risultato." -#: src/Module/Conversation/Community.php:162 +#: src/Module/Conversation/Channel.php:159 +msgid "Channel not available." +msgstr "" + +#: src/Module/Conversation/Community.php:91 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "Questa pagina comunità mostra tutti i messaggi pubblici ricevuti da questo nodo. Potrebbero non riflettere le opinioni degli utenti di questo nodo." -#: src/Module/Conversation/Community.php:199 +#: src/Module/Conversation/Community.php:179 msgid "Community option not available." msgstr "Opzione Comunità non disponibile" -#: src/Module/Conversation/Community.php:215 +#: src/Module/Conversation/Community.php:195 msgid "Not available." msgstr "Non disponibile." -#: src/Module/Conversation/Network.php:173 -msgid "No such group" -msgstr "Nessun gruppo" +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "" -#: src/Module/Conversation/Network.php:177 +#: src/Module/Conversation/Network.php:222 #, php-format -msgid "Group: %s" -msgstr "Gruppo: %s" +msgid "Circle: %s" +msgstr "" -#: src/Module/Conversation/Network.php:253 -msgid "Latest Activity" -msgstr "Ultima Attività" +#: src/Module/Conversation/Network.php:317 +msgid "Network feed not available." +msgstr "" -#: src/Module/Conversation/Network.php:256 -msgid "Sort by latest activity" -msgstr "Ordina per ultima attività" +#: src/Module/Conversation/Timeline.php:158 +msgid "Own Contacts" +msgstr "Propri Contatti" -#: src/Module/Conversation/Network.php:261 -msgid "Latest Posts" -msgstr "Ultimi Messaggi" +#: src/Module/Conversation/Timeline.php:162 +msgid "Include" +msgstr "Includi" -#: src/Module/Conversation/Network.php:264 -msgid "Sort by post received date" -msgstr "Ordina per data di ricezione del messaggio" - -#: src/Module/Conversation/Network.php:269 -#: src/Module/Settings/Profile/Index.php:227 -msgid "Personal" -msgstr "Personale" - -#: src/Module/Conversation/Network.php:272 -msgid "Posts that mention or involve you" -msgstr "Messaggi che ti citano o coinvolgono" - -#: src/Module/Conversation/Network.php:277 src/Object/Post.php:321 -msgid "Starred" -msgstr "Preferiti" - -#: src/Module/Conversation/Network.php:280 -msgid "Favourite Posts" -msgstr "Messaggi preferiti" +#: src/Module/Conversation/Timeline.php:163 +msgid "Hide" +msgstr "Nascondi" #: src/Module/Credits.php:44 msgid "Credits" @@ -7624,23 +6796,32 @@ msgid "" "code or the translation of Friendica. Thank you all!" msgstr "Friendica è un progetto comunitario, che non sarebbe stato possibile realizzare senza l'aiuto di molte persone.\nQuesta è una lista di chi ha contribuito al codice o alle traduzioni di Friendica. Grazie a tutti!" -#: src/Module/Debug/ActivityPubConversion.php:58 +#: src/Module/Debug/ActivityPubConversion.php:53 msgid "Formatted" msgstr "Formattato" -#: src/Module/Debug/ActivityPubConversion.php:70 +#: src/Module/Debug/ActivityPubConversion.php:65 msgid "Activity" msgstr "Attività" -#: src/Module/Debug/ActivityPubConversion.php:118 +#: src/Module/Debug/ActivityPubConversion.php:117 msgid "Object data" msgstr "Dati dell'oggetto" -#: src/Module/Debug/ActivityPubConversion.php:125 +#: src/Module/Debug/ActivityPubConversion.php:124 msgid "Result Item" msgstr "Oggetto Ritornato" -#: src/Module/Debug/ActivityPubConversion.php:139 +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Errori" +msgstr[1] "Errori" +msgstr[2] "Errori" + +#: src/Module/Debug/ActivityPubConversion.php:138 msgid "Source activity" msgstr "Sorgente attività" @@ -7820,12 +7001,12 @@ msgstr "HTML" msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Sorgente Twitter / URL Tweet (richiede chiave API)" -#: src/Module/Debug/Feed.php:50 src/Module/Filer/SaveTag.php:46 -#: src/Module/Settings/Profile/Index.php:141 +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:177 msgid "You must be logged in to use this module" msgstr "Devi aver essere autenticato per usare questo modulo" -#: src/Module/Debug/Feed.php:75 +#: src/Module/Debug/Feed.php:77 msgid "Source URL" msgstr "URL Sorgente" @@ -7882,26 +7063,26 @@ msgstr "Diagnostica Webfinger" msgid "Lookup address:" msgstr "Indirizzo di consultazione:" -#: src/Module/Delegation.php:111 +#: src/Module/Delegation.php:110 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/Delegation.php:143 +#: src/Module/Delegation.php:142 msgid "Switch between your accounts" msgstr "Passa da un account all'altro" -#: src/Module/Delegation.php:144 +#: src/Module/Delegation.php:143 msgid "Manage your accounts" msgstr "Gestisci i tuoi account" -#: src/Module/Delegation.php:145 +#: src/Module/Delegation.php:144 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" -#: src/Module/Delegation.php:146 +#: src/Module/Delegation.php:145 msgid "Select an identity to manage: " msgstr "Seleziona un'identità da gestire:" @@ -7921,162 +7102,92 @@ msgstr "Risultati per:" msgid "Site Directory" msgstr "Elenco del sito" -#: src/Module/Filer/RemoveTag.php:68 -msgid "Item was not removed" -msgstr "L'oggetto non è stato rimosso" - -#: src/Module/Filer/RemoveTag.php:71 +#: src/Module/Filer/RemoveTag.php:105 msgid "Item was not deleted" msgstr "L'oggetto non è stato eliminato" -#: src/Module/Filer/SaveTag.php:72 +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "L'oggetto non è stato rimosso" + +#: src/Module/Filer/SaveTag.php:73 msgid "- select -" msgstr "- seleziona -" -#: src/Module/FriendSuggest.php:81 +#: src/Module/FriendSuggest.php:82 msgid "Suggested contact not found." msgstr "Contatto suggerito non trovato." -#: src/Module/FriendSuggest.php:99 +#: src/Module/FriendSuggest.php:100 msgid "Friend suggestion sent." msgstr "Suggerimento di amicizia inviato." -#: src/Module/FriendSuggest.php:136 +#: src/Module/FriendSuggest.php:137 msgid "Suggest Friends" msgstr "Suggerisci amici" -#: src/Module/FriendSuggest.php:139 +#: src/Module/FriendSuggest.php:140 #, php-format msgid "Suggest a friend for %s" msgstr "Suggerisci un amico a %s" -#: src/Module/Friendica.php:62 +#: src/Module/Friendica.php:82 msgid "Installed addons/apps:" msgstr "Componenti aggiuntivi/applicazioni installate:" -#: src/Module/Friendica.php:67 +#: src/Module/Friendica.php:87 msgid "No installed addons/apps" msgstr "Nessun componente aggiuntivo/applicazione installata" -#: src/Module/Friendica.php:72 +#: src/Module/Friendica.php:92 #, php-format msgid "Read about the Terms of Service of this node." msgstr "Leggi i Termini di Servizio di questo nodo." -#: src/Module/Friendica.php:79 +#: src/Module/Friendica.php:99 msgid "On this server the following remote servers are blocked." msgstr "In questo server i seguenti server remoti sono bloccati." -#: src/Module/Friendica.php:97 +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +msgid "Reason for the block" +msgstr "Motivazione del blocco" + +#: src/Module/Friendica.php:104 +msgid "Download this list in CSV format" +msgstr "" + +#: src/Module/Friendica.php:118 #, 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 "Questo è Friendica, versione %s in esecuzione all'indirizzo web %s. La versione del database è %s, la versione post-aggiornamento è %s." -#: src/Module/Friendica.php:102 +#: src/Module/Friendica.php:123 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "Visita Friendi.ca per saperne di più sul progetto Friendica." -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:124 msgid "Bug reports and issues: please visit" msgstr "Segnalazioni di bug e problemi: visita" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:124 msgid "the bugtracker at github" msgstr "il bugtracker su github" -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:125 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "Per suggerimenti, lodi, ecc., invia una mail a info chiocciola friendi punto ca" -#: src/Module/Group.php:58 -msgid "Could not create group." -msgstr "Impossibile creare il gruppo." - -#: src/Module/Group.php:69 src/Module/Group.php:215 src/Module/Group.php:239 -msgid "Group not found." -msgstr "Gruppo non trovato." - -#: src/Module/Group.php:75 -msgid "Group name was not changed." -msgstr "Il nome del gruppo non è stato cambiato." - -#: src/Module/Group.php:93 -msgid "Unknown group." -msgstr "Gruppo sconosciuto." - -#: src/Module/Group.php:118 -msgid "Unable to add the contact to the group." -msgstr "Impossibile aggiungere il contatto al gruppo." - -#: src/Module/Group.php:121 -msgid "Contact successfully added to group." -msgstr "Contatto aggiunto con successo al gruppo." - -#: src/Module/Group.php:125 -msgid "Unable to remove the contact from the group." -msgstr "Impossibile rimuovere il contatto dal gruppo." - -#: src/Module/Group.php:128 -msgid "Contact successfully removed from group." -msgstr "Contatto rimosso con successo dal gruppo." - -#: src/Module/Group.php:132 -msgid "Bad request." -msgstr "Richiesta sbagliata." - -#: src/Module/Group.php:171 -msgid "Save Group" -msgstr "Salva gruppo" - -#: src/Module/Group.php:172 -msgid "Filter" -msgstr "Filtro" - -#: src/Module/Group.php:178 -msgid "Create a group of contacts/friends." -msgstr "Crea un gruppo di amici/contatti." - -#: src/Module/Group.php:220 -msgid "Unable to remove group." -msgstr "Impossibile rimuovere il gruppo." - -#: src/Module/Group.php:271 -msgid "Delete Group" -msgstr "Elimina Gruppo" - -#: src/Module/Group.php:281 -msgid "Edit Group Name" -msgstr "Modifica Nome Gruppo" - -#: src/Module/Group.php:291 -msgid "Members" -msgstr "Membri" - -#: src/Module/Group.php:294 -msgid "Group is empty" -msgstr "Il gruppo è vuoto" - -#: src/Module/Group.php:307 -msgid "Remove contact from group" -msgstr "Rimuovi il contatto dal gruppo" - -#: src/Module/Group.php:328 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." - -#: src/Module/Group.php:342 -msgid "Add contact to group" -msgstr "Aggiungi il contatto al gruppo" - -#: src/Module/HCard.php:46 +#: src/Module/HCard.php:45 msgid "No profile" msgstr "Nessun profilo" -#: src/Module/HTTPException/MethodNotAllowed.php:32 +#: src/Module/HTTPException/MethodNotAllowed.php:31 msgid "Method Not Allowed." msgstr "Metodo Non Consentito." @@ -8084,161 +7195,154 @@ msgstr "Metodo Non Consentito." msgid "Help:" msgstr "Guida:" -#: src/Module/Home.php:54 +#: src/Module/Home.php:63 #, php-format msgid "Welcome to %s" msgstr "Benvenuto su %s" -#: src/Module/Install.php:195 +#: src/Module/Install.php:189 msgid "Friendica Communications Server - Setup" msgstr "Friendica Comunicazione Server - Installazione" -#: src/Module/Install.php:206 +#: src/Module/Install.php:200 msgid "System check" msgstr "Controllo sistema" -#: src/Module/Install.php:208 src/Module/Install.php:265 -#: src/Module/Install.php:348 +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 msgid "Requirement not satisfied" msgstr "Requisiti non soddisfatti" -#: src/Module/Install.php:209 +#: src/Module/Install.php:203 msgid "Optional requirement not satisfied" msgstr "Requisiti opzionali non soddisfatti" -#: src/Module/Install.php:210 +#: src/Module/Install.php:204 msgid "OK" msgstr "OK" -#: src/Module/Install.php:215 +#: src/Module/Install.php:208 +msgid "Next" +msgstr "Successivo" + +#: src/Module/Install.php:209 msgid "Check again" msgstr "Controlla ancora" -#: src/Module/Install.php:230 +#: src/Module/Install.php:222 msgid "Base settings" msgstr "Impostazioni base" -#: src/Module/Install.php:237 -msgid "Host name" -msgstr "Nome host" - -#: src/Module/Install.php:239 -msgid "" -"Overwrite this field in case the determinated hostname isn't right, " -"otherweise leave it as is." -msgstr "Sovrascrivi questo campo nel caso che l'hostname rilevato non sia correto, altrimenti lascialo com'è." - -#: src/Module/Install.php:242 +#: src/Module/Install.php:224 msgid "Base path to installation" msgstr "Percorso base all'installazione" -#: src/Module/Install.php:244 +#: src/Module/Install.php:226 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 "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot." -#: src/Module/Install.php:247 -msgid "Sub path of the URL" -msgstr "Sottopercorso dell'URL" +#: src/Module/Install.php:229 +msgid "The Friendica system URL" +msgstr "" -#: src/Module/Install.php:249 +#: src/Module/Install.php:231 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 "Sovrascrivi questo campo nel caso il sottopercorso rilevato non sia corretto, altrimenti lascialo com'è. Lasciando questo campo vuoto significa che l'installazione si trova all'URL base senza sottopercorsi." +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." +msgstr "" -#: src/Module/Install.php:260 +#: src/Module/Install.php:242 msgid "Database connection" msgstr "Connessione al database" -#: src/Module/Install.php:261 +#: src/Module/Install.php:243 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database." -#: src/Module/Install.php:262 +#: src/Module/Install.php:244 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." -#: src/Module/Install.php:263 +#: src/Module/Install.php:245 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare." -#: src/Module/Install.php:272 +#: src/Module/Install.php:252 msgid "Database Server Name" msgstr "Nome del database server" -#: src/Module/Install.php:277 +#: src/Module/Install.php:257 msgid "Database Login Name" msgstr "Nome utente database" -#: src/Module/Install.php:283 +#: src/Module/Install.php:263 msgid "Database Login Password" msgstr "Password utente database" -#: src/Module/Install.php:285 +#: src/Module/Install.php:265 msgid "For security reasons the password must not be empty" msgstr "Per motivi di sicurezza la password non può essere vuota." -#: src/Module/Install.php:288 +#: src/Module/Install.php:268 msgid "Database Name" msgstr "Nome database" -#: src/Module/Install.php:292 src/Module/Install.php:322 +#: src/Module/Install.php:272 src/Module/Install.php:300 msgid "Please select a default timezone for your website" msgstr "Seleziona il fuso orario predefinito per il tuo sito web" -#: src/Module/Install.php:307 +#: src/Module/Install.php:287 msgid "Site settings" msgstr "Impostazioni sito" -#: src/Module/Install.php:317 +#: src/Module/Install.php:295 msgid "Site administrator email address" msgstr "Indirizzo email dell'amministratore del sito" -#: src/Module/Install.php:319 +#: src/Module/Install.php:297 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." -#: src/Module/Install.php:326 +#: src/Module/Install.php:304 msgid "System Language:" msgstr "Lingua di Sistema:" -#: src/Module/Install.php:328 +#: src/Module/Install.php:306 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "Imposta la lingua di default per l'interfaccia e l'invio delle email." -#: src/Module/Install.php:340 +#: src/Module/Install.php:318 msgid "Your Friendica site database has been installed." msgstr "Il tuo Friendica è stato installato." -#: src/Module/Install.php:350 +#: src/Module/Install.php:328 msgid "Installation finished" msgstr "Installazione completata" -#: src/Module/Install.php:370 +#: src/Module/Install.php:348 msgid "

    What next

    " msgstr "

    Cosa fare ora

    " -#: src/Module/Install.php:371 +#: src/Module/Install.php:349 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del worker." -#: src/Module/Install.php:374 +#: src/Module/Install.php:352 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -8246,40 +7350,41 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Vai nella pagina di registrazione del tuo nuovo nodo Friendica e registra un nuovo utente. Ricorda di usare la stessa email che hai inserito come email dell'utente amministratore. Questo ti permetterà di entrare nel pannello di amministrazione del sito." -#: src/Module/Invite.php:56 +#: src/Module/Invite.php:57 msgid "Total invitation limit exceeded." msgstr "Limite totale degli inviti superato." -#: src/Module/Invite.php:81 +#: src/Module/Invite.php:82 #, php-format msgid "%s : Not a valid email address." msgstr "%s: non è un indirizzo email valido." -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:108 msgid "Please join us on Friendica" msgstr "Unisciti a noi su Friendica" -#: src/Module/Invite.php:116 +#: src/Module/Invite.php:117 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito." -#: src/Module/Invite.php:120 +#: src/Module/Invite.php:121 #, php-format msgid "%s : Message delivery failed." msgstr "%s: la consegna del messaggio fallita." -#: src/Module/Invite.php:124 +#: src/Module/Invite.php:125 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d messaggio inviato." msgstr[1] "%d messaggi inviati." +msgstr[2] "%d messaggi inviati." -#: src/Module/Invite.php:142 +#: src/Module/Invite.php:143 msgid "You have no more invitations available" msgstr "Non hai altri inviti disponibili" -#: src/Module/Invite.php:149 +#: src/Module/Invite.php:150 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -8287,14 +7392,14 @@ msgid "" " other social networks." msgstr "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network." -#: src/Module/Invite.php:151 +#: src/Module/Invite.php:152 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Per accettare questo invito, visita e registrati su %s o su un'altro sito web Friendica aperto al pubblico." -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:153 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -8303,88 +7408,98 @@ msgid "" "sites you can join." msgstr "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti." -#: src/Module/Invite.php:156 +#: src/Module/Invite.php:157 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri." -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:160 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali." -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:159 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Per accettare questo invito, visita e registrati su %s" -#: src/Module/Invite.php:166 +#: src/Module/Invite.php:167 msgid "Send invitations" msgstr "Invia inviti" -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:168 msgid "Enter email addresses, one per line:" msgstr "Inserisci gli indirizzi email, uno per riga:" -#: src/Module/Invite.php:171 +#: src/Module/Invite.php:172 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Sei cordialmente invitato/a ad unirti a me e ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore." -#: src/Module/Invite.php:173 +#: src/Module/Invite.php:174 msgid "You will need to supply this invitation code: $invite_code" msgstr "Sarà necessario fornire questo codice invito: $invite_code" -#: src/Module/Invite.php:173 +#: src/Module/Invite.php:174 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Una volta registrato, connettiti con me dal mio profilo:" -#: src/Module/Invite.php:175 +#: src/Module/Invite.php:176 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendi.ca " -#: src/Module/Item/Compose.php:50 +#: src/Module/Item/Compose.php:85 msgid "Please enter a post body." msgstr "Per favore inserisci il corpo del messaggio." -#: src/Module/Item/Compose.php:63 +#: src/Module/Item/Compose.php:98 msgid "This feature is only available with the frio theme." msgstr "Questa caratteristica è disponibile solo con il tema frio." -#: src/Module/Item/Compose.php:90 +#: src/Module/Item/Compose.php:122 msgid "Compose new personal note" msgstr "Componi una nuova nota personale" -#: src/Module/Item/Compose.php:99 +#: src/Module/Item/Compose.php:131 msgid "Compose new post" msgstr "Componi un nuovo messaggio" -#: src/Module/Item/Compose.php:141 +#: src/Module/Item/Compose.php:187 msgid "Visibility" msgstr "Visibilità" -#: src/Module/Item/Compose.php:162 +#: src/Module/Item/Compose.php:203 msgid "Clear the location" msgstr "Rimuovi la posizione" -#: src/Module/Item/Compose.php:163 +#: src/Module/Item/Compose.php:204 msgid "Location services are unavailable on your device" msgstr "I servizi di localizzazione non sono disponibili sul tuo dispositivo" -#: src/Module/Item/Compose.php:164 +#: src/Module/Item/Compose.php:205 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "I servizi di localizzazione sono disabilitati. Per favore controlla i permessi del sito web sul tuo dispositivo" -#: src/Module/Item/Follow.php:52 +#: src/Module/Item/Compose.php:211 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "" + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "Il flusso per questo oggetto non è disponibile." + +#: src/Module/Item/Follow.php:51 msgid "Unable to follow this item." msgstr "Impossibile seguire questo oggetto." @@ -8399,101 +7514,1109 @@ msgid "" "condition should be temporary, please come back in a few minutes." msgstr "Questo nodo Friendica è attualmente in modalità manutenzione, o automaticamente perchè in auto-aggiornamento o manualmente dall'amministratore del nodo. Questa condizione dovrebbe essere temporanea, riprova tra qualche minuto." -#: src/Module/Manifest.php:42 +#: src/Module/Manifest.php:40 msgid "A Decentralized Social Network" msgstr "Un Social Network Decentralizzato" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "File" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload" +msgstr "Carica" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Mi spiace, forse il file che stai caricando è più grosso di quanto la configurazione di PHP permetta" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "O.. non avrai provato a caricare un file vuoto?" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Il file supera la dimensione massima di %s" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "Caricamento del file non riuscito." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:68 +msgid "Unable to process image." +msgstr "Impossibile caricare l'immagine." + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:95 +msgid "Image upload failed." +msgstr "Caricamento immagine fallito." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "Elenco di tutti gli utenti" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "Attivo" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "Elenco degli account attivi" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "Elenco delle registrazioni in attesa" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "Elenco degli utenti bloccati" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "Eliminato" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "Elenco delle cancellazioni di utenti in attesa" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "Pagina Account Normale" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "Pagina Sandbox" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "Pagina con amicizia automatica" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "Pagina Personale" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "Pagina Organizzazione" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "Pagina Notizie" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "Relay" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "Non puoi bloccare un contatto locale, blocca invece l'utente" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s contatto sbloccato" +msgstr[1] "%s contatti sbloccati" +msgstr[2] "%s contatti sbloccati" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "Blocklist Contatti Remoti" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "Questa pagina ti permette di impedire che qualsiasi messaggio da un contatto remoto raggiunga il tuo nodo." + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "Blocca Contatto Remoto" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "seleziona tutti" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "seleziona niente" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "Nessun contatto remoto è bloccato da questo nodo." + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "Contatti Remoti Bloccati" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "Blocca Nuovo Contatto Remoto" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "Foto" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "Motivazione" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "%scontatto bloccato totale" +msgstr[1] "%scontatti bloccati totali" +msgstr[2] "%scontatti bloccati totali" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "URL del contatto remoto da bloccare." + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "Rimuovi anche contenuti contatto" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "Rimuove tutto il contenuto relativo a questo contatto dal nodo. Mantiene il record del contatto. Questa azione non può essere annullata." + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "Motivazione del Blocco" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "Schema di dominio del server aggiunto alla blocklist." + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "%s server in attesa di essere rimosso." +msgstr[1] "%s server in attesa di essere rimossi." +msgstr[2] "%s server in attesa di essere rimossi." + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "← Ritorna alla lista" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "Blocca Un Nuovo Server Per Schema di Dominio " + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "

    La sintassi dello schema di dominio server usa i caratteri jolly e non tiene conto di maiuscole e minuscole, e comprende i seguenti caratteri speciali:

    \n
      \n\t
    • *: Qualsiasi numero di caratteri
    • \n\t
    • ?: Qualsiasi singolo carattere
    • \n
    " + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "Controlla schema" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "Server conosciuti corrispondenti" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "Nome del Server" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "Dominio del Server" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "Contatti Conosciuti" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "%d server conosciuto" +msgstr[1] "%d server conosciuti" +msgstr[2] "%d server conosciuti" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "Aggiungi schema alla blocklist" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "Schema di Dominio di Server" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "Lo schema di dominio del nuovo server da aggiungere alla blocklist. Non includere il protocollo." + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "Rimuovi contenuti server" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "Rimuove completamente anche i contenuti salvati localmente creati dai contatti conosciuti registrati sul server. Mantiene i record dei contatti e del server. Questa azione non può essere annullata." +msgstr[1] "Rimuove completamente anche i contenuti salvati localmente creati dai contatti conosciuti registrati su questi server. Mantiene i record dei contatti e dei server. Questa azione non può essere annullata." +msgstr[2] "Rimuove completamente anche i contenuti salvati localmente creati dai contatti conosciuti registrati su questi server. Mantiene i record dei contatti e dei server. Questa azione non può essere annullata." + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "Ragione blocco" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "La ragione per cui hai bloccato questo schema di dominio. Questa motivazione verrà mostrata pubblicamente nella pagina di informazione del server." + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +msgid "Blocked server domain pattern" +msgstr "Schema di dominio del server bloccato" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "Elimina schema di dominio server" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "Seleziona per eliminare questa voce dalla blocklist" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "Blocklist degli Schemi di Dominio di Server" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +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 "Questa pagina può essere utilizzata per definire una blocklist di schemi di server di dominio della rete federata ai quali non è consentito interagire con questo nodo. Per ogni schema di dominio dovresti anche fornire la motivazione per la quale lo hai bloccato." + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +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 "La lista degli schemi di dominio di server bloccati sarà resa pubblicamente disponibile sulla pagina /friendica in modo che i tuoi utenti e persone che cercano soluzioni ai problemi di comunicazione possano trovare la motivazione facilmente." + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "Aggiungi nuova voce alla blocklist" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "Salva modifiche alla blocklist" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "Voci correnti nella blocklist" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "Elimina voce dalla blocklist" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "Eliminare la voce dalla blocklist?" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "Elemento selezionato per l'eliminazione." + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "Rimuovi questo elemento" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "Su questa pagina puoi cancellare un qualsiasi elemento dal tuo nodo. Se l'elemento è un messaggio di primo livello, l'intera discussione sarà cancellata." + +#: src/Module/Moderation/Item/Delete.php:65 +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 "Serve il GUID dell'elemento. Lo puoi trovare, per esempio, guardando l'URL display: l'ultima parte di http://example.com/display/123456 è il GUID, qui 123456." + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "Il GUID dell'elemento che vuoi cancellare." + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "Item Id" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "Item URI" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "Termini" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "Etichetta" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "Tipo" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "Termine" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "URL" + +#: src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "Menzione" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "Menzione Implicita" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Oggetto non trovato" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "Item Guid" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "" + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "" + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Account normale" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "Account Follower Automatico" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Account per amicizia automatizzato" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Account Blog" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Utenti registrati" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Registrazioni in attesa" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "%s utente bloccato" +msgstr[1] "%s utenti bloccati" +msgstr[2] "%s utenti bloccati" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "Non puoi rimuovere te stesso" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utente cancellato" +msgstr[1] "%s utenti cancellati" +msgstr[2] "%s utenti cancellati" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "Utente \"%s\" eliminato" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "Utente \"%s\" bloccato" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Data registrazione" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "Ultimo accesso" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "Ultimo elemento pubblico" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "Account attivi" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "Utente bloccato" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "Amministrazione sito" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "Account scaduto" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "Crea un nuovo utente" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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 "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "%s utente sbloccato" +msgstr[1] "%s utenti sbloccati" +msgstr[2] "%s utenti sbloccati" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "Utente \"%s\" sbloccato" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "Utenti bloccati" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "Nuovo Utente" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "Aggiungi utente" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "Nome del nuovo utente." + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "Nome utente" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "Nome utente del nuovo utente." + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "Indirizzo Email del nuovo utente." + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "Utenti in attesa della cancellazione definitiva" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "Cancellazione permanente" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "Utente in attesa di cancellazione definitiva" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "%s utente approvato" +msgstr[1] "%s utenti approvati" +msgstr[2] "%s utenti approvati" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "%s registrazione revocata" +msgstr[1] "%s registrazioni revocate" +msgstr[2] "%s registrazioni revocate" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Account approvato." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "Registrazione revocata" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "Registrazioni utente in attesa di verifica" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Data richiesta" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "Nessuna registrazione." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "Nota dall'utente" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Nega" + +#: src/Module/Notifications/Introductions.php:99 msgid "Show Ignored Requests" msgstr "Mostra richieste ignorate" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Notifications/Introductions.php:99 msgid "Hide Ignored Requests" msgstr "Nascondi richieste ignorate" -#: src/Module/Notifications/Introductions.php:113 -#: src/Module/Notifications/Introductions.php:176 +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 msgid "Notification type:" msgstr "Tipo di notifica:" -#: src/Module/Notifications/Introductions.php:116 +#: src/Module/Notifications/Introductions.php:118 msgid "Suggested by:" msgstr "Suggerito da:" -#: src/Module/Notifications/Introductions.php:141 +#: src/Module/Notifications/Introductions.php:143 msgid "Claims to be known to you: " msgstr "Dice di conoscerti: " -#: src/Module/Notifications/Introductions.php:142 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:131 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "No" msgstr "No" -#: src/Module/Notifications/Introductions.php:150 +#: src/Module/Notifications/Introductions.php:152 msgid "Shall your connection be bidirectional or not?" msgstr "La connessione dovrà essere bidirezionale o no?" -#: src/Module/Notifications/Introductions.php:151 +#: src/Module/Notifications/Introductions.php:153 #, 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 "Accettando %s come amico permette a %s di seguire i tuoi messaggi, e a te di riceverne gli aggiornamenti." -#: src/Module/Notifications/Introductions.php:152 +#: src/Module/Notifications/Introductions.php:154 #, 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 "Accettando %s come abbonato gli permetti di abbonarsi ai tuoi messaggi, ma tu non riceverai aggiornamenti da lui." -#: src/Module/Notifications/Introductions.php:154 +#: src/Module/Notifications/Introductions.php:156 msgid "Friend" msgstr "Amico" -#: src/Module/Notifications/Introductions.php:155 +#: src/Module/Notifications/Introductions.php:157 msgid "Subscriber" msgstr "Abbonato" -#: src/Module/Notifications/Introductions.php:214 +#: src/Module/Notifications/Introductions.php:216 msgid "No introductions." msgstr "Nessuna presentazione." -#: src/Module/Notifications/Introductions.php:215 -#: src/Module/Notifications/Notifications.php:134 +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 #, php-format msgid "No more %s notifications." msgstr "Nessun'altra notifica %s." -#: src/Module/Notifications/Notification.php:107 +#: src/Module/Notifications/Notification.php:135 msgid "You must be logged in to show this page." msgstr "Devi essere autenticato per vedere questa pagina." -#: src/Module/Notifications/Notifications.php:65 +#: src/Module/Notifications/Notifications.php:66 msgid "Network Notifications" msgstr "Notifiche dalla rete" -#: src/Module/Notifications/Notifications.php:71 +#: src/Module/Notifications/Notifications.php:72 msgid "System Notifications" msgstr "Notifiche di sistema" -#: src/Module/Notifications/Notifications.php:77 +#: src/Module/Notifications/Notifications.php:78 msgid "Personal Notifications" msgstr "Notifiche personali" -#: src/Module/Notifications/Notifications.php:83 +#: src/Module/Notifications/Notifications.php:84 msgid "Home Notifications" msgstr "Notifiche bacheca" -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Notifications/Notifications.php:140 msgid "Show unread" msgstr "Mostra non letti" -#: src/Module/OAuth/Acknowledge.php:50 +#: src/Module/Notifications/Ping.php:246 +msgid "{0} requested registration" +msgstr "{0} chiede la registrazione" + +#: src/Module/Notifications/Ping.php:255 +#, php-format +msgid "{0} and %d others requested registration" +msgstr "{0} e %d altre registrazioni richieste" + +#: src/Module/OAuth/Acknowledge.php:51 msgid "Authorize application connection" msgstr "Autorizza la connessione dell'applicazione" -#: src/Module/OAuth/Acknowledge.php:52 +#: src/Module/OAuth/Acknowledge.php:53 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" @@ -8503,7 +8626,7 @@ msgstr "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai conta msgid "Unsupported or missing response type" msgstr "Tipo di risposta mancante o non supportato" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:72 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 msgid "Incomplete request data" msgstr "Dati richiesta incompleti" @@ -8514,137 +8637,419 @@ msgid "" "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:96 +#: src/Module/OAuth/Token.php:83 +msgid "Invalid data or unknown client" +msgstr "" + +#: src/Module/OAuth/Token.php:108 msgid "Unsupported or missing grant type" msgstr "Tipo di concessione mancante o non supportato" -#: src/Module/PermissionTooltip.php:44 +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "Risottoscrivi i contatti OStatus" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "Tieni questa finestra aperta fino a che ha finito." + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "Iscrizione a contatti" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "Nessun contatto disponibile." + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "Non è stato possibile recuperare le informazioni del contatto." + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "Non è stato possibile recuperare gli amici del contatto." + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "Non è stato possibile recuperare i contatti seguiti." + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "Non è stato possibile recuperare il profilo remoto." + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "Rete non supportata" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Fatto" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "successo" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "fallito" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "ignorato" + +#: src/Module/PermissionTooltip.php:49 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "Tipo \"%s\" errato, ci si aspettava uno di: %s" -#: src/Module/PermissionTooltip.php:61 +#: src/Module/PermissionTooltip.php:79 msgid "Model not found" msgstr "Modello non trovato" -#: src/Module/PermissionTooltip.php:83 +#: src/Module/PermissionTooltip.php:94 +msgid "Unlisted" +msgstr "" + +#: src/Module/PermissionTooltip.php:112 msgid "Remote privacy information not available." msgstr "Informazioni remote sulla privacy non disponibili." -#: src/Module/PermissionTooltip.php:92 +#: src/Module/PermissionTooltip.php:121 msgid "Visible to:" msgstr "Visibile a:" -#: src/Module/Photo.php:123 +#: src/Module/PermissionTooltip.php:204 +#, php-format +msgid "Collection (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:208 +#, php-format +msgid "Followers (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:227 +#, php-format +msgid "%d more" +msgstr "" + +#: src/Module/PermissionTooltip.php:231 +#, php-format +msgid "To: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:234 +#, php-format +msgid "CC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:237 +#, php-format +msgid "BCC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "" + +#: src/Module/Photo.php:130 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:136 +#: src/Module/Photo.php:155 #, php-format msgid "The Photo with id %s is not available." msgstr "La Foto con id %s non è disponibile." -#: src/Module/Photo.php:169 +#: src/Module/Photo.php:192 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:171 +#: src/Module/Photo.php:194 #, php-format msgid "Invalid photo with id %s." msgstr "Foto con id %s non valida." -#: src/Module/Profile/Contacts.php:120 +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "" + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Modifica messaggio" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "collegamento web" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Inserire collegamento video" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "collegamento video" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Inserisci collegamento audio" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "collegamento audio" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " + +#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Rimuovi" + +#: src/Module/Profile/Contacts.php:159 msgid "No contacts." msgstr "Nessun contatto." -#: src/Module/Profile/Profile.php:82 +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "la timeline di %s" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "il messaggio di %s" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "il commento di %s" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:59 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "La dimensione dell'immagine supera il limite di %s" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "Caricamento dell'immagine non completato. Prova di nuovo." + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "Il file dell'immagine è mancante" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "Il server non può accettare il caricamento di un nuovo file in questo momento, contattare l'amministratore" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "Sfoglia l'album" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 msgid "Profile not found." msgstr "Profilo non trovato." -#: src/Module/Profile/Profile.php:135 +#: src/Module/Profile/Profile.php:158 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "Attualmente stai vedendo il tuo profilo come %s Annulla" -#: src/Module/Profile/Profile.php:149 +#: src/Module/Profile/Profile.php:167 +msgid "Full Name:" +msgstr "Nome completo:" + +#: src/Module/Profile/Profile.php:172 msgid "Member since:" msgstr "Membro dal:" -#: src/Module/Profile/Profile.php:155 +#: src/Module/Profile/Profile.php:178 msgid "j F, Y" msgstr "j F Y" -#: src/Module/Profile/Profile.php:156 +#: src/Module/Profile/Profile.php:179 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 msgid "Birthday:" msgstr "Compleanno:" -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 msgid "Age: " msgstr "Età : " -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "%d anno" msgstr[1] "%d anni" +msgstr[2] "%d anni" -#: src/Module/Profile/Profile.php:234 -msgid "Forums:" -msgstr "Forum:" +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "Descrizione:" -#: src/Module/Profile/Profile.php:246 +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "" + +#: src/Module/Profile/Profile.php:273 msgid "View profile as:" msgstr "Vedi il tuo profilo come:" -#: src/Module/Profile/Profile.php:263 +#: src/Module/Profile/Profile.php:290 msgid "View as" msgstr "Vedi come" -#: src/Module/Profile/Profile.php:326 src/Module/Profile/Profile.php:329 -#: src/Module/Profile/Status.php:65 src/Module/Profile/Status.php:68 -#: src/Protocol/Feed.php:985 src/Protocol/OStatus.php:1242 -#, php-format -msgid "%s's timeline" -msgstr "la timeline di %s" +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "Profilo non disponibile." -#: src/Module/Profile/Profile.php:327 src/Module/Profile/Status.php:66 -#: src/Protocol/Feed.php:989 src/Protocol/OStatus.php:1246 -#, php-format -msgid "%s's posts" -msgstr "il messaggio di %s" +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "Indirizzo non valido" -#: src/Module/Profile/Profile.php:328 src/Module/Profile/Status.php:67 -#: src/Protocol/Feed.php:992 src/Protocol/OStatus.php:1249 -#, php-format -msgid "%s's comments" -msgstr "il commento di %s" +#: src/Module/Profile/RemoteFollow.php:95 +msgid "The provided profile link doesn't seem to be valid" +msgstr "Il collegamento al profilo fornito non sembra essere valido" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/RemoteFollow.php:100 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "La richiesta di connessione remota non può essere effettuata per la tua rete. Invia la richiesta direttamente sul nostro sistema." + +#: src/Module/Profile/RemoteFollow.php:128 +msgid "Friend/Connection Request" +msgstr "Richieste di amicizia/connessione" + +#: src/Module/Profile/RemoteFollow.php:129 +#, 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 "Inserisci il tuo indirizzo Webfinger (utente@dominio.tld) o l'URL del profilo qui. Se non è supportato dal tuo sistema, devi abbonarti a %s o %s direttamente sul tuo sistema." + +#: src/Module/Profile/RemoteFollow.php:130 +#, 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 "Non sei ancora un membro del social network libero, segui questo collegamento per trovare un nodo pubblico Friendica e unisciti a noi oggi." + +#: src/Module/Profile/RemoteFollow.php:131 +msgid "Your Webfinger address or profile URL:" +msgstr "Il tuo indirizzo Webfinger o l'URL del profilo:" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "" + +#: src/Module/Profile/Schedule.php:83 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:84 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:86 +#: src/Module/Profile/Schedule.php:85 msgid "Remove post" msgstr "" +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "" + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Impossibile controllare la tua posizione di origine." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "" + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito." + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti." + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "" + #: src/Module/Register.php:84 msgid "Only parent users can create additional accounts." msgstr "Solo gli utenti principali possono creare account aggiuntivi." +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." + #: src/Module/Register.php:116 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " @@ -8695,10 +9100,20 @@ msgstr "Il tuo indirizzo email: (Le informazioni iniziali verranno inviate lì, msgid "Please repeat your e-mail address:" msgstr "Per favore ripeti il tuo indirizzo email:" +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 +msgid "New Password:" +msgstr "Nuova password:" + #: src/Module/Register.php:162 msgid "Leave empty for an auto generated password." msgstr "Lascia vuoto per generare automaticamente una password." +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 +msgid "Confirm:" +msgstr "Conferma:" + #: src/Module/Register.php:164 #, php-format msgid "" @@ -8710,6 +9125,10 @@ msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del msgid "Choose a nickname: " msgstr "Scegli un nome utente: " +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Importa" + #: src/Module/Register.php:174 msgid "Import your profile to this friendica instance" msgstr "Importa il tuo profilo in questo server friendica" @@ -8718,11 +9137,11 @@ msgstr "Importa il tuo profilo in questo server friendica" msgid "Note: This node explicitly contains adult content" msgstr "Nota: Questo nodo contiene esplicitamente contenuti per adulti" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:155 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 msgid "Parent Password:" msgstr "Password Principale:" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:155 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "Inserisci la password dell'account principale per autorizzare la tua richiesta." @@ -8752,142 +9171,114 @@ msgid "" "Registration successful. Please check your email for further instructions." msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni." -#: src/Module/Register.php:339 +#: src/Module/Register.php:342 #, php-format msgid "" "Failed to send email message. Here your accout details:
    login: %s
    " "password: %s

    You can change your password after login." msgstr "Si è verificato un errore inviando l'email. I dettagli del tuo account:
    login: %s
    password: %s

    Puoi cambiare la password dopo il login." -#: src/Module/Register.php:345 +#: src/Module/Register.php:348 msgid "Registration successful." msgstr "Registrazione completata." -#: src/Module/Register.php:350 src/Module/Register.php:357 +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 msgid "Your registration can not be processed." msgstr "La tua registrazione non può essere elaborata." -#: src/Module/Register.php:356 +#: src/Module/Register.php:363 msgid "You have to leave a request note for the admin." msgstr "Devi lasciare una nota di richiesta per l'amministratore." -#: src/Module/Register.php:402 +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "" + +#: src/Module/Register.php:395 msgid "Your registration is pending approval by the site owner." msgstr "La tua richiesta è in attesa di approvazione da parte del proprietario del sito." -#: src/Module/RemoteFollow.php:71 -msgid "Profile unavailable." -msgstr "Profilo non disponibile." +#: src/Module/Search/Acl.php:73 +msgid "You must be logged in to use this module." +msgstr "Devi aver essere autenticato per usare questo modulo." -#: src/Module/RemoteFollow.php:77 -msgid "Invalid locator" -msgstr "Indirizzo non valido" - -#: src/Module/RemoteFollow.php:84 -msgid "The provided profile link doesn't seem to be valid" -msgstr "Il collegamento al profilo fornito non sembra essere valido" - -#: src/Module/RemoteFollow.php:89 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "La richiesta di connessione remota non può essere effettuata per la tua rete. Invia la richiesta direttamente sul nostro sistema." - -#: src/Module/RemoteFollow.php:121 -msgid "Friend/Connection Request" -msgstr "Richieste di amicizia/connessione" - -#: src/Module/RemoteFollow.php:122 -#, 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 "Inserisci il tuo indirizzo Webfinger (utente@dominio.tld) o l'URL del profilo qui. Se non è supportato dal tuo sistema, devi abbonarti a %s o %s direttamente sul tuo sistema." - -#: src/Module/RemoteFollow.php:123 -#, 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 "Non sei ancora un membro del social network libero, segui questo collegamento per trovare un nodo pubblico Friendica e unisciti a noi oggi." - -#: src/Module/RemoteFollow.php:124 -msgid "Your Webfinger address or profile URL:" -msgstr "Il tuo indirizzo Webfinger o l'URL del profilo:" - -#: src/Module/Search/Index.php:53 +#: src/Module/Search/Index.php:69 msgid "Only logged in users are permitted to perform a search." msgstr "Solo agli utenti autenticati è permesso eseguire ricerche." -#: src/Module/Search/Index.php:73 +#: src/Module/Search/Index.php:89 msgid "Only one search per minute is permitted for not logged in users." msgstr "Solo una ricerca al minuto è permessa agli utenti non autenticati." -#: src/Module/Search/Index.php:189 +#: src/Module/Search/Index.php:205 #, php-format msgid "Items tagged with: %s" msgstr "Elementi taggati con: %s" -#: src/Module/Search/Saved.php:58 +#: src/Module/Search/Saved.php:59 msgid "Search term was not saved." msgstr "Il termine di ricerca non è stato salvato." -#: src/Module/Search/Saved.php:61 +#: src/Module/Search/Saved.php:62 msgid "Search term already saved." msgstr "Termine di ricerca già salvato." -#: src/Module/Search/Saved.php:67 +#: src/Module/Search/Saved.php:68 msgid "Search term was not removed." msgstr "Il termine di ricerca non è stato rimosso." -#: src/Module/Security/Login.php:104 +#: src/Module/Security/Login.php:123 msgid "Create a New Account" msgstr "Crea un nuovo account" -#: src/Module/Security/Login.php:129 +#: src/Module/Security/Login.php:142 msgid "Your OpenID: " msgstr "Il tuo OpenID:" -#: src/Module/Security/Login.php:132 +#: src/Module/Security/Login.php:145 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "Per favore inserisci il tuo nome utente e password per aggiungere OpenID al tuo account esistente." -#: src/Module/Security/Login.php:134 +#: src/Module/Security/Login.php:147 msgid "Or login using OpenID: " msgstr "O entra con OpenID:" -#: src/Module/Security/Login.php:148 +#: src/Module/Security/Login.php:161 msgid "Password: " msgstr "Password: " -#: src/Module/Security/Login.php:149 +#: src/Module/Security/Login.php:162 msgid "Remember me" msgstr "Ricordati di me" -#: src/Module/Security/Login.php:158 +#: src/Module/Security/Login.php:171 msgid "Forgot your password?" msgstr "Hai dimenticato la password?" -#: src/Module/Security/Login.php:161 +#: src/Module/Security/Login.php:174 msgid "Website Terms of Service" msgstr "Termini di Servizio del sito web " -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:175 msgid "terms of service" msgstr "termini di servizio" -#: src/Module/Security/Login.php:164 +#: src/Module/Security/Login.php:177 msgid "Website Privacy Policy" msgstr "Politiche di privacy del sito" -#: src/Module/Security/Login.php:165 +#: src/Module/Security/Login.php:178 msgid "privacy policy" msgstr "politiche di privacy" -#: src/Module/Security/Logout.php:87 +#: src/Module/Security/Logout.php:84 +#: src/Module/Security/TwoFactor/SignOut.php:78 +#: src/Module/Security/TwoFactor/SignOut.php:86 +#: src/Module/Security/TwoFactor/SignOut.php:108 +#: src/Module/Security/TwoFactor/SignOut.php:115 msgid "Logged out." msgstr "Uscita effettuata." @@ -8895,669 +9286,1599 @@ msgstr "Uscita effettuata." msgid "OpenID protocol error. No ID returned" msgstr "Errore di protocollo OpenID. Nessun ID ricevuto" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:90 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "Account non trovato. Per favore accedi al tuo account esistente per aggiungere OpenID ad esso." -#: src/Module/Security/OpenID.php:94 +#: src/Module/Security/OpenID.php:92 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "Account non trovato. Per favore registra un nuovo account o accedi al tuo account esistente per aggiungere OpenID ad esso." -#: src/Module/Security/TwoFactor/Recovery.php:73 +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 +msgid "Passwords do not match." +msgstr "Le password non corrispondono." + +#: src/Module/Security/PasswordTooLong.php:64 +msgid "Password does not need changing." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 +msgid "Password unchanged." +msgstr "Password non modificata." + +#: src/Module/Security/PasswordTooLong.php:91 +msgid "Password Too Long" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:92 +msgid "" +"Since version 2022.09, we've realized that any password longer than 72 " +"characters is truncated during hashing. To prevent any confusion about this " +"behavior, please update your password to be fewer or equal to 72 characters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:93 +msgid "Update Password" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Current Password:" +msgstr "Password Attuale:" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Your current password to confirm the changes" +msgstr "La tua password attuale per confermare le modifiche" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces and accentuated letters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 +msgid "Password length is limited to 72 characters." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:74 #, php-format msgid "Remaining recovery codes: %d" msgstr "Codici di recupero rimanenti: %d" -#: src/Module/Security/TwoFactor/Recovery.php:77 -#: src/Module/Security/TwoFactor/Verify.php:76 -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Security/TwoFactor/Recovery.php:80 +#: src/Module/Security/TwoFactor/Verify.php:77 +#: src/Module/Settings/TwoFactor/Verify.php:95 msgid "Invalid code, please retry." msgstr "Codice non valido, per favore riprova." -#: src/Module/Security/TwoFactor/Recovery.php:96 +#: src/Module/Security/TwoFactor/Recovery.php:99 msgid "Two-factor recovery" msgstr "Recupero due fattori" -#: src/Module/Security/TwoFactor/Recovery.php:97 +#: src/Module/Security/TwoFactor/Recovery.php:100 msgid "" "

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

    " msgstr "

    Puoi inserire uno dei tuoi codici di recupero usa e getta nel caso tu perda l'accesso al tuo dispositivo mobile.

    " -#: src/Module/Security/TwoFactor/Recovery.php:98 -#: src/Module/Security/TwoFactor/Verify.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:101 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Non hai il tuo telefono? Inserisci il codice di recupero a due fattori" -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:102 msgid "Please enter a recovery code" msgstr "Per favore inserisci un codice di recupero" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:103 msgid "Submit recovery code and complete login" msgstr "Inserisci il codice di recupero e completa l'accesso" -#: src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Security/TwoFactor/SignOut.php:122 +msgid "Sign out of this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:123 +msgid "" +"

    If you trust this browser, you will not be asked for verification code " +"the next time you sign in.

    " +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:124 +msgid "Sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:126 +msgid "Trust and sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:96 +msgid "Couldn't save browser to Cookie." +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:141 +msgid "Trust this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:142 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:143 +msgid "Not now" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:144 +msgid "Don't trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:145 +msgid "Trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:97 msgid "" "

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

    " msgstr "

    Apri l'app di autenticazione a due fattori sul tuo dispositivo per ottenere un codice di autenticazione e verificare la tua identità.

    " #: src/Module/Security/TwoFactor/Verify.php:100 -#: src/Module/Settings/TwoFactor/Verify.php:154 -msgid "Please enter a code from your authentication app" -msgstr "Per favore inserisci il codice dalla tua app di autenticazione" +#, php-format +msgid "" +"If you do not have access to your authentication code you can use a two-factor recovery code." +msgstr "" #: src/Module/Security/TwoFactor/Verify.php:101 -msgid "This is my two-factor authenticator app device" -msgstr "Questo è il mio dispositivo sul quale è presente l'applicazione di autenticazione a due fattori" +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Please enter a code from your authentication app" +msgstr "Per favore inserisci il codice dalla tua app di autenticazione" #: src/Module/Security/TwoFactor/Verify.php:102 msgid "Verify code and complete login" msgstr "Verifica codice e completa l'accesso" -#: src/Module/Settings/Delegation.php:53 +#: src/Module/Settings/Account.php:96 +msgid "Please use a shorter name." +msgstr "Per favore utilizza un nome più corto." + +#: src/Module/Settings/Account.php:99 +msgid "Name too short." +msgstr "Nome troppo corto." + +#: src/Module/Settings/Account.php:108 +msgid "Wrong Password." +msgstr "Password Sbagliata." + +#: src/Module/Settings/Account.php:113 +msgid "Invalid email." +msgstr "Email non valida." + +#: src/Module/Settings/Account.php:117 +msgid "Cannot change to that email." +msgstr "Non puoi usare quella email." + +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 +msgid "Settings were not updated." +msgstr "Le impostazioni non sono state aggiornate." + +#: src/Module/Settings/Account.php:364 +msgid "Contact CSV file upload error" +msgstr "Errore nel caricamento del file CSV dei contatti" + +#: src/Module/Settings/Account.php:383 +msgid "Importing Contacts done" +msgstr "Importazione dei Contatti riuscita" + +#: src/Module/Settings/Account.php:396 +msgid "Relocate message has been send to your contacts" +msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti" + +#: src/Module/Settings/Account.php:413 +msgid "Unable to find your profile. Please contact your admin." +msgstr "Impossibile trovare il tuo profilo. Contatta il tuo amministratore." + +#: src/Module/Settings/Account.php:455 +msgid "Personal Page Subtypes" +msgstr "Sottotipi di Pagine Personali" + +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" +msgstr "" + +#: src/Module/Settings/Account.php:466 +msgid "Account for a personal profile." +msgstr "Account per profilo personale." + +#: src/Module/Settings/Account.php:473 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "Account per un'organizzazione, che automaticamente approva le richieste di contatto come \"Follower\"." + +#: src/Module/Settings/Account.php:480 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "Account per notizie, che automaticamente approva le richieste di contatto come \"Follower\"" + +#: src/Module/Settings/Account.php:487 +msgid "Account for community discussions." +msgstr "Account per discussioni comunitarie." + +#: src/Module/Settings/Account.php:494 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "Account per un profilo personale, che richiede l'approvazione delle richieste di contatto come \"Amico\" o \"Follower\"." + +#: src/Module/Settings/Account.php:501 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "Account per un profilo publico, che automaticamente approva le richieste di contatto come \"Follower\"." + +#: src/Module/Settings/Account.php:508 +msgid "Automatically approves all contact requests." +msgstr "Approva automaticamente tutte le richieste di contatto." + +#: src/Module/Settings/Account.php:515 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "Account per un profilo popolare, che automaticamente approva le richieste di contatto come \"Amici\"." + +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "" + +#: src/Module/Settings/Account.php:522 +msgid "Requires manual approval of contact requests." +msgstr "Richiede l'approvazione manuale delle richieste di contatto." + +#: src/Module/Settings/Account.php:531 +msgid "OpenID:" +msgstr "OpenID:" + +#: src/Module/Settings/Account.php:531 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" + +#: src/Module/Settings/Account.php:539 +msgid "Publish your profile in your local site directory?" +msgstr "Pubblica il tuo profilo nell'elenco locale del tuo sito?" + +#: src/Module/Settings/Account.php:539 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "Il tuo profilo verrà pubblicato nella directory locale di questo nodo. I dettagli del tuo profilo potrebbero essere visibili pubblicamente a seconda delle impostazioni di sistema." + +#: src/Module/Settings/Account.php:545 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "Il tuo profilo sarà anche pubblicato nelle directory globali di friendica (es. %s)." + +#: src/Module/Settings/Account.php:558 +msgid "Account Settings" +msgstr "Impostazioni account" + +#: src/Module/Settings/Account.php:559 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "L'indirizzo della tua identità è '%s' or '%s'." + +#: src/Module/Settings/Account.php:566 +msgid "Password Settings" +msgstr "Impostazioni password" + +#: src/Module/Settings/Account.php:568 +msgid "Leave password fields blank unless changing" +msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" + +#: src/Module/Settings/Account.php:570 +msgid "Password:" +msgstr "Password:" + +#: src/Module/Settings/Account.php:570 +msgid "Your current password to confirm the changes of the email address" +msgstr "La tua password attuale per confermare il cambio di indirizzo email" + +#: src/Module/Settings/Account.php:573 +msgid "Delete OpenID URL" +msgstr "Elimina URL OpenID" + +#: src/Module/Settings/Account.php:575 +msgid "Basic Settings" +msgstr "Impostazioni base" + +#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "Nome visualizzato:" + +#: src/Module/Settings/Account.php:577 +msgid "Email Address:" +msgstr "Indirizzo Email:" + +#: src/Module/Settings/Account.php:578 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" + +#: src/Module/Settings/Account.php:579 +msgid "Your Language:" +msgstr "La tua lingua:" + +#: src/Module/Settings/Account.php:579 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Imposta la lingua che sarà usata per mostrarti l'interfaccia di Friendica e per inviarti le email" + +#: src/Module/Settings/Account.php:580 +msgid "Default Post Location:" +msgstr "Località predefinita:" + +#: src/Module/Settings/Account.php:581 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" + +#: src/Module/Settings/Account.php:583 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di sicurezza e privacy" + +#: src/Module/Settings/Account.php:585 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo di richieste di amicizia al giorno:" + +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 +msgid "(to prevent spam abuse)" +msgstr "(per prevenire lo spam)" + +#: src/Module/Settings/Account.php:587 +msgid "Allow your profile to be searchable globally?" +msgstr "Vuoi che il tuo profilo sia ricercabile globalmente?" + +#: src/Module/Settings/Account.php:587 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "Attiva questa impostazione se vuoi che gli altri ti trovino facilmente e ti seguano. Il tuo profilo sarà ricercabile da sistemi remoti. Questa impostazione determina anche se Friendica informerà i motori di ricerca che il tuo profilo sia indicizzabile o meno." + +#: src/Module/Settings/Account.php:588 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "Nascondere la lista dei tuo contatti/amici dai visitatori del tuo profilo?" + +#: src/Module/Settings/Account.php:588 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "La lista dei tuoi contatti è mostrata sulla tua pagina di profilo. Attiva questa opzione per disabilitare la visualizzazione del tuo elenco contatti." + +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "" +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "Make public posts unlisted" +msgstr "Rendi messaggi pubblici non elencati" + +#: src/Module/Settings/Account.php:590 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "I tuoi messaggi pubblici non appariranno sulle pagine della comunità o nei risultati di ricerca, e non saranno inviati ai server relay. Comunque appariranno sui feed pubblici su server remoti." + +#: src/Module/Settings/Account.php:591 +msgid "Make all posted pictures accessible" +msgstr "Rendi tutte le immagini pubblicate accessibili" + +#: src/Module/Settings/Account.php:591 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "Questa opzione rende ogni immagine pubblicata accessibile attraverso il collegamento diretto. Questo è una soluzione alternativa al problema che la maggior parte delle altre reti non gestiscono i permessi sulle immagini. Le immagini non pubbliche non saranno visibili al pubblico nei tuoi album fotografici comunque." + +#: src/Module/Settings/Account.php:592 +msgid "Allow friends to post to your profile page?" +msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" + +#: src/Module/Settings/Account.php:592 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "I tuoi contatti possono scrivere messaggi sulla tua pagina di profilo. Questi messaggi saranno distribuiti a tutti i tuoi contatti." + +#: src/Module/Settings/Account.php:593 +msgid "Allow friends to tag your posts?" +msgstr "Permetti agli amici di aggiungere tag ai tuoi messaggi?" + +#: src/Module/Settings/Account.php:593 +msgid "Your contacts can add additional tags to your posts." +msgstr "I tuoi contatti possono aggiungere tag aggiuntivi ai tuoi messaggi." + +#: src/Module/Settings/Account.php:594 +msgid "Permit unknown people to send you private mail?" +msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" + +#: src/Module/Settings/Account.php:594 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "Gli utenti sulla rete Friendica possono inviarti messaggi privati anche se non sono nella tua lista di contatti." + +#: src/Module/Settings/Account.php:595 +msgid "Maximum private messages per day from unknown people:" +msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" + +#: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "" + +#: src/Module/Settings/Account.php:598 +msgid "Default Post Permissions" +msgstr "Permessi predefiniti per i messaggi" + +#: src/Module/Settings/Account.php:602 +msgid "Expiration settings" +msgstr "Impostazioni di scadenza" + +#: src/Module/Settings/Account.php:603 +msgid "Automatically expire posts after this many days:" +msgstr "Fai scadere i messaggi automaticamente dopo x giorni:" + +#: src/Module/Settings/Account.php:603 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." + +#: src/Module/Settings/Account.php:604 +msgid "Expire posts" +msgstr "Fai scadere i messaggi" + +#: src/Module/Settings/Account.php:604 +msgid "When activated, posts and comments will be expired." +msgstr "Quando attivato, i messaggi e i commenti scadranno." + +#: src/Module/Settings/Account.php:605 +msgid "Expire personal notes" +msgstr "Fai scadere le note personali" + +#: src/Module/Settings/Account.php:605 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "Quando attivato, le note personali sulla tua pagina del profilo scadranno." + +#: src/Module/Settings/Account.php:606 +msgid "Expire starred posts" +msgstr "Fai scadere i messaggi speciali" + +#: src/Module/Settings/Account.php:606 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "Inserire i messaggi negli speciali evita di farli scadere. Questo comportamento viene scavalcato da questa impostazione." + +#: src/Module/Settings/Account.php:607 +msgid "Only expire posts by others" +msgstr "Fai scadere solo i messaggi degli altri" + +#: src/Module/Settings/Account.php:607 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "Quando attivato, i tuoi messaggi non scadranno mai. Quindi le impostazioni qui sopra saranno valide solo per i messaggi che hai ricevuto." + +#: src/Module/Settings/Account.php:610 +msgid "Notification Settings" +msgstr "Impostazioni notifiche" + +#: src/Module/Settings/Account.php:611 +msgid "Send a notification email when:" +msgstr "Invia una mail di notifica quando:" + +#: src/Module/Settings/Account.php:612 +msgid "You receive an introduction" +msgstr "Ricevi una presentazione" + +#: src/Module/Settings/Account.php:613 +msgid "Your introductions are confirmed" +msgstr "Le tue presentazioni sono confermate" + +#: src/Module/Settings/Account.php:614 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla bacheca del tuo profilo" + +#: src/Module/Settings/Account.php:615 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento a un tuo messaggio" + +#: src/Module/Settings/Account.php:616 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" + +#: src/Module/Settings/Account.php:617 +msgid "You receive a friend suggestion" +msgstr "Hai ricevuto un suggerimento di amicizia" + +#: src/Module/Settings/Account.php:618 +msgid "You are tagged in a post" +msgstr "Sei stato taggato in un messaggio" + +#: src/Module/Settings/Account.php:620 +msgid "Create a desktop notification when:" +msgstr "Crea una notifica desktop quando:" + +#: src/Module/Settings/Account.php:621 +msgid "Someone tagged you" +msgstr "" + +#: src/Module/Settings/Account.php:622 +msgid "Someone directly commented on your post" +msgstr "" + +#: src/Module/Settings/Account.php:623 +msgid "Someone liked your content" +msgstr "Qualcuno ha messo mi piace a un tuo contenuto" + +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +msgid "Can only be enabled, when the direct comment notification is enabled." +msgstr "" + +#: src/Module/Settings/Account.php:624 +msgid "Someone shared your content" +msgstr "Qualcuno ha condiviso un tuo contenuto" + +#: src/Module/Settings/Account.php:625 +msgid "Someone commented in your thread" +msgstr "" + +#: src/Module/Settings/Account.php:626 +msgid "Someone commented in a thread where you commented" +msgstr "" + +#: src/Module/Settings/Account.php:627 +msgid "Someone commented in a thread where you interacted" +msgstr "" + +#: src/Module/Settings/Account.php:629 +msgid "Activate desktop notifications" +msgstr "Attiva notifiche desktop" + +#: src/Module/Settings/Account.php:629 +msgid "Show desktop popup on new notifications" +msgstr "Mostra un popup di notifica sul desktop all'arrivo di nuove notifiche" + +#: src/Module/Settings/Account.php:633 +msgid "Text-only notification emails" +msgstr "Email di notifica in solo testo" + +#: src/Module/Settings/Account.php:635 +msgid "Send text only notification emails, without the html part" +msgstr "Invia le email di notifica in solo testo, senza la parte in html" + +#: src/Module/Settings/Account.php:639 +msgid "Show detailled notifications" +msgstr "Mostra notifiche dettagliate" + +#: src/Module/Settings/Account.php:641 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "Per impostazione predefinita, le notifiche sono raggruppate in una singola notifica per articolo. Se abilitato, viene visualizzate tutte le notifiche." + +#: src/Module/Settings/Account.php:645 +msgid "Show notifications of ignored contacts" +msgstr "Mostra notifiche dai contatti ignorati" + +#: src/Module/Settings/Account.php:647 +msgid "" +"You don't see posts from ignored contacts. But you still see their comments." +" This setting controls if you want to still receive regular notifications " +"that are caused by ignored contacts or not." +msgstr "Non vedi i messaggi da contatti ignorati. Ma puoi ancora vedere i loro commenti. Questa impostazione controlla se vuoi o meno continuare a ricevere notifiche regolari che sono causate dai contatti ignorati." + +#: src/Module/Settings/Account.php:650 +msgid "Advanced Account/Page Type Settings" +msgstr "Impostazioni avanzate Account/Tipo di pagina" + +#: src/Module/Settings/Account.php:651 +msgid "Change the behaviour of this account for special situations" +msgstr "Modifica il comportamento di questo account in situazioni speciali" + +#: src/Module/Settings/Account.php:654 +msgid "Import Contacts" +msgstr "Importa Contatti" + +#: src/Module/Settings/Account.php:655 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "Carica un file CSV che contiene gli indirizzi dei tuoi account seguiti nella prima colonna che hai esportato dal vecchio account." + +#: src/Module/Settings/Account.php:656 +msgid "Upload File" +msgstr "Carica File" + +#: src/Module/Settings/Account.php:659 +msgid "Relocate" +msgstr "Trasloca" + +#: src/Module/Settings/Account.php:660 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone." + +#: src/Module/Settings/Account.php:661 +msgid "Resend relocate message to contacts" +msgstr "Invia nuovamente il messaggio di trasloco ai contatti" + +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "Impostazioni Componenti Aggiuntivi" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "Nessun componente aggiuntivo ha impostazioni modificabili" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "Impossibile collegarsi all'account email con i parametri forniti." + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "OStatus (GNU Social)" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "L'accesso email è disabilitato su questo sito." + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "Nessuna" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "Impostazioni Media Sociali" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "" + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "Abilita Avviso Contenuto" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "Gli utenti su reti come Mastodon o Pleroma sono in grado di impostare un campo di avviso sul contenuto. Questa impostazione nasconde in automatico il contenuto del messaggio in caso di avviso, invece di impostare l'avviso di contenuto come titolo del post. Non ha effetto su eventuali altri filtri impostati." + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "Abilita accorciamento intelligente" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "Normalmente il sistema tenta di trovare il collegamento migliore da aggiungere ad un messaggio accorciato. Se questa opzione è disabilitata, ogni messaggio accorciato conterrà sempre un collegamento al messaggio originale su Friendica." + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "Abilita accorciamento semplice del testo" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "Normalmente il sistema accorcia i messaggi alla successiva interruzione di linea. Se questa opzione è abilitata il sistema accorcerà il testo al raggiungimento del limite massimo di caratteri." + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "Allega il titolo del collegamento" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "Quando attivato, il titolo del collegamento allegato sarà aggiunto come titolo dei messaggi su Diaspora. Questo è più che altro utile con i contatti \"remoti di sè stessi\" che condividono il contenuto del flusso." + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "Il tuo vecchio account ActivityPub/GNU Social " + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "Se inserisci il nome del tuo vecchio account su un sistema basato su ActivityPub o del tuo vecchio account GNU Social/Statusnet (nel formato utente@dominio.tld), i tuoi contatti verranno importati automaticamente. Il campo verrà svuotato una volta terminata l'operazione." + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "Ripara le iscrizioni OStatus" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "Impostazioni email" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)" + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "Ultimo controllo email eseguito con successo:" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "Nome server IMAP:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "Porta IMAP:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "Sicurezza:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "Nome utente email:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "Password email:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "Indirizzo di risposta:" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "Invia i messaggi pubblici ai contatti email:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "Azione dopo importazione:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "Sposta nella cartella" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "Sposta nella cartella:" + +#: src/Module/Settings/Delegation.php:54 msgid "Delegation successfully granted." msgstr "Delega concessa con successo." -#: src/Module/Settings/Delegation.php:55 +#: src/Module/Settings/Delegation.php:56 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Utente principale non trovato, non disponibile o la password non corrisponde." -#: src/Module/Settings/Delegation.php:59 +#: src/Module/Settings/Delegation.php:60 msgid "Delegation successfully revoked." msgstr "Delega revocata con successo." -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 +#: src/Module/Settings/Delegation.php:82 +#: src/Module/Settings/Delegation.php:104 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Amministratori delegati possono vedere ma non cambiare i permessi di delega." -#: src/Module/Settings/Delegation.php:95 +#: src/Module/Settings/Delegation.php:96 msgid "Delegate user not found." msgstr "Utente delegato non trovato." -#: src/Module/Settings/Delegation.php:143 +#: src/Module/Settings/Delegation.php:144 msgid "No parent user" msgstr "Nessun utente principale" -#: src/Module/Settings/Delegation.php:154 -#: src/Module/Settings/Delegation.php:165 +#: src/Module/Settings/Delegation.php:155 +#: src/Module/Settings/Delegation.php:166 msgid "Parent User" msgstr "Utente Principale" -#: src/Module/Settings/Delegation.php:162 +#: src/Module/Settings/Delegation.php:163 msgid "Additional Accounts" msgstr "Account Aggiuntivi" -#: src/Module/Settings/Delegation.php:163 +#: src/Module/Settings/Delegation.php:164 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Registra account aggiuntivi che saranno automaticamente connessi al tuo account esistente così potrai gestirli da questo account." -#: src/Module/Settings/Delegation.php:164 +#: src/Module/Settings/Delegation.php:165 msgid "Register an additional account" msgstr "Registra un account aggiuntivo" -#: src/Module/Settings/Delegation.php:168 +#: src/Module/Settings/Delegation.php:169 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Gli utenti principali hanno il controllo totale su questo account, comprese le impostazioni. Assicurati di controllare due volte a chi stai fornendo questo accesso." -#: src/Module/Settings/Delegation.php:172 +#: src/Module/Settings/Delegation.php:173 msgid "Delegates" msgstr "Delegati" -#: src/Module/Settings/Delegation.php:174 +#: src/Module/Settings/Delegation.php:175 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 "I Delegati sono in grado di gestire tutti gli aspetti di questa pagina, tranne per le impostazioni di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." -#: src/Module/Settings/Delegation.php:175 +#: src/Module/Settings/Delegation.php:176 msgid "Existing Page Delegates" msgstr "Delegati Pagina Esistenti" -#: src/Module/Settings/Delegation.php:177 +#: src/Module/Settings/Delegation.php:178 msgid "Potential Delegates" msgstr "Delegati Potenziali" -#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:181 msgid "Add" msgstr "Aggiungi" -#: src/Module/Settings/Delegation.php:181 +#: src/Module/Settings/Delegation.php:182 msgid "No entries." msgstr "Nessuna voce." -#: src/Module/Settings/Display.php:107 +#: src/Module/Settings/Display.php:146 msgid "The theme you chose isn't available." msgstr "Il tema che hai scelto non è disponibile." -#: src/Module/Settings/Display.php:146 +#: src/Module/Settings/Display.php:186 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Non supportato)" -#: src/Module/Settings/Display.php:192 +#: src/Module/Settings/Display.php:221 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:222 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:223 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:224 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:259 msgid "Display Settings" msgstr "Impostazioni Grafiche" -#: src/Module/Settings/Display.php:194 +#: src/Module/Settings/Display.php:261 msgid "General Theme Settings" msgstr "Opzioni Generali Tema" -#: src/Module/Settings/Display.php:195 +#: src/Module/Settings/Display.php:262 msgid "Custom Theme Settings" msgstr "Opzioni Personalizzate Tema" -#: src/Module/Settings/Display.php:196 +#: src/Module/Settings/Display.php:263 msgid "Content Settings" msgstr "Opzioni Contenuto" -#: src/Module/Settings/Display.php:197 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:161 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 +#: src/Module/Settings/Display.php:264 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Impostazioni tema" -#: src/Module/Settings/Display.php:198 -msgid "Calendar" -msgstr "Calendario" +#: src/Module/Settings/Display.php:265 +msgid "Timelines" +msgstr "" -#: src/Module/Settings/Display.php:204 +#: src/Module/Settings/Display.php:272 msgid "Display Theme:" msgstr "Tema:" -#: src/Module/Settings/Display.php:205 +#: src/Module/Settings/Display.php:273 msgid "Mobile Theme:" msgstr "Tema mobile:" -#: src/Module/Settings/Display.php:208 +#: src/Module/Settings/Display.php:276 msgid "Number of items to display per page:" msgstr "Numero di elementi da mostrare per pagina:" -#: src/Module/Settings/Display.php:208 src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277 msgid "Maximum of 100 items" msgstr "Massimo 100 voci" -#: src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:277 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:" -#: src/Module/Settings/Display.php:210 +#: src/Module/Settings/Display.php:278 msgid "Update browser every xx seconds" msgstr "Aggiorna il browser ogni x secondi" -#: src/Module/Settings/Display.php:210 +#: src/Module/Settings/Display.php:278 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimo 10 secondi. Inserisci -1 per disabilitarlo" -#: src/Module/Settings/Display.php:211 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "Aggiornamenti automatici solo in cima alle pagine dei flussi" - -#: src/Module/Settings/Display.php:211 -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 "L'aggiornamento automatico potrebbe aggiungere nuovi messaggi in alto alle pagine dei flussi, e può influenzare la posizione del contenuto e quindi disturbare la lettura se avviene da qualsiasi parte che non sia in cima alla pagina." - -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:279 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:279 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:280 msgid "Infinite scroll" msgstr "Scroll infinito" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:280 msgid "Automatic fetch new items when reaching the page end." msgstr "Recupero automatico di nuovi oggetti quando viene raggiunta la fine della pagina." -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:281 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:281 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:282 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:282 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:283 msgid "Display the resharer" msgstr "Mostra chi ha condiviso" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:283 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Mostra chi ha condiviso per primo come icona e testo su un oggetto ricondiviso." -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:284 msgid "Stay local" msgstr "Rimani in locale" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:284 msgid "Don't go to a remote system when following a contact link." msgstr "Non andare sul sistema remoto mentre segui il collegamento di un contatto." -#: src/Module/Settings/Display.php:219 +#: src/Module/Settings/Display.php:285 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:285 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Timelines for the network page:" +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Select all the timelines that you want to see on your network page." +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Channel languages:" +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Select all languages that you want to see in your channels." +msgstr "" + +#: src/Module/Settings/Display.php:290 msgid "Beginning of week:" msgstr "Inizio della settimana:" -#: src/Module/Settings/Profile/Index.php:83 -msgid "Profile Name is required." -msgstr "Il nome profilo è obbligatorio ." +#: src/Module/Settings/Display.php:291 +msgid "Default calendar view:" +msgstr "" -#: src/Module/Settings/Profile/Index.php:131 +#: src/Module/Settings/Display.php:300 src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:312 +#, php-format +msgid "%s: %s" +msgstr "" + +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "Funzionalità aggiuntive" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Applicazioni Collegate" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "Rimuovi l'autorizzazione" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:167 msgid "Profile couldn't be updated." msgstr "Il Profilo non può essere aggiornato." -#: src/Module/Settings/Profile/Index.php:172 -#: src/Module/Settings/Profile/Index.php:192 +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 msgid "Label:" msgstr "Etichetta:" -#: src/Module/Settings/Profile/Index.php:173 -#: src/Module/Settings/Profile/Index.php:193 +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 msgid "Value:" msgstr "Valore:" -#: src/Module/Settings/Profile/Index.php:183 -#: src/Module/Settings/Profile/Index.php:203 +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 msgid "Field Permissions" msgstr "Permessi del campo" -#: src/Module/Settings/Profile/Index.php:184 -#: src/Module/Settings/Profile/Index.php:204 +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 msgid "(click to open/close)" msgstr "(clicca per aprire/chiudere)" -#: src/Module/Settings/Profile/Index.php:190 +#: src/Module/Settings/Profile/Index.php:224 msgid "Add a new profile field" msgstr "Aggiungi nuovo campo del profilo" -#: src/Module/Settings/Profile/Index.php:220 +#: src/Module/Settings/Profile/Index.php:247 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:249 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:255 msgid "Profile Actions" msgstr "Azioni Profilo" -#: src/Module/Settings/Profile/Index.php:221 +#: src/Module/Settings/Profile/Index.php:256 msgid "Edit Profile Details" msgstr "Modifica i dettagli del profilo" -#: src/Module/Settings/Profile/Index.php:223 +#: src/Module/Settings/Profile/Index.php:258 msgid "Change Profile Photo" msgstr "Cambia la foto del profilo" -#: src/Module/Settings/Profile/Index.php:228 +#: src/Module/Settings/Profile/Index.php:261 msgid "Profile picture" msgstr "Immagine del profilo" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:262 msgid "Location" msgstr "Posizione" -#: src/Module/Settings/Profile/Index.php:230 src/Util/Temporal.php:93 -#: src/Util/Temporal.php:95 +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 msgid "Miscellaneous" msgstr "Varie" -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:264 msgid "Custom Profile Fields" msgstr "Campi Profilo Personalizzati" -#: src/Module/Settings/Profile/Index.php:233 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 msgid "Upload Profile Photo" msgstr "Carica la foto del profilo" -#: src/Module/Settings/Profile/Index.php:237 -msgid "Display name:" -msgstr "Nome visualizzato:" - -#: src/Module/Settings/Profile/Index.php:240 -msgid "Street Address:" -msgstr "Indirizzo (via/piazza):" - -#: src/Module/Settings/Profile/Index.php:241 -msgid "Locality/City:" -msgstr "Località:" - -#: src/Module/Settings/Profile/Index.php:242 -msgid "Region/State:" -msgstr "Regione/Stato:" - -#: src/Module/Settings/Profile/Index.php:243 -msgid "Postal/Zip Code:" -msgstr "CAP:" - -#: src/Module/Settings/Profile/Index.php:244 -msgid "Country:" -msgstr "Nazione:" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "XMPP (Jabber) address:" -msgstr "Indirizzo XMPP (Jabber):" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "" -"The XMPP address will be published so that people can follow you there." -msgstr "" - -#: src/Module/Settings/Profile/Index.php:247 -msgid "Matrix (Element) address:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:247 -msgid "" -"The Matrix address will be published so that people can follow you there." -msgstr "" - -#: src/Module/Settings/Profile/Index.php:248 -msgid "Homepage URL:" -msgstr "Homepage:" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "Public Keywords:" -msgstr "Parole chiave visibili a tutti:" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "Private Keywords:" -msgstr "Parole chiave private:" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" - -#: src/Module/Settings/Profile/Index.php:251 +#: src/Module/Settings/Profile/Index.php:266 #, 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 "

    I campi personalizzati appaiono sulla tua pagina del profilo.

    \n\t\t\t\t

    Puoi utilizzare i BBCode nei campi personalizzati.

    \n\t\t\t\t

    Riordina trascinando i titoli dei campi.

    \n\t\t\t\t

    Svuota le etichette dei campi per rimuovere il campo personalizzato.

    \n\t\t\t\t

    Campi personalizzati non pubblici possono essere visti solo da contatti Friendica selezionati o da contatti Friendica nei gruppi selezionati.

    " +"\t\t\t\t

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

    " +msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:108 -#: src/Module/Settings/Profile/Photo/Crop.php:126 -#: src/Module/Settings/Profile/Photo/Crop.php:144 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "Indirizzo (via/piazza):" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "Località:" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "Regione/Stato:" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "CAP:" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "Nazione:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "Indirizzo XMPP (Jabber):" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "Homepage:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "Parole chiave visibili a tutti:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "Parole chiave private:" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 +#: src/Module/Settings/Profile/Photo/Index.php:101 #, php-format msgid "Image size reduction [%s] failed." msgstr "Il ridimensionamento dell'immagine [%s] è fallito." -#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Crop.php:150 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." -#: src/Module/Settings/Profile/Photo/Crop.php:156 +#: src/Module/Settings/Profile/Photo/Crop.php:155 msgid "Unable to process image" msgstr "Impossibile elaborare l'immagine" -#: src/Module/Settings/Profile/Photo/Crop.php:175 +#: src/Module/Settings/Profile/Photo/Crop.php:174 msgid "Photo not found." msgstr "Foto non trovata." -#: src/Module/Settings/Profile/Photo/Crop.php:197 +#: src/Module/Settings/Profile/Photo/Crop.php:196 msgid "Profile picture successfully updated." msgstr "Immagine di profilo aggiornata con successo." -#: src/Module/Settings/Profile/Photo/Crop.php:223 -#: src/Module/Settings/Profile/Photo/Crop.php:227 +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 msgid "Crop Image" msgstr "Ritaglia immagine" -#: src/Module/Settings/Profile/Photo/Crop.php:224 +#: src/Module/Settings/Profile/Photo/Crop.php:223 msgid "Please adjust the image cropping for optimum viewing." msgstr "Ritaglia l'immagine per una visualizzazione migliore." -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:225 msgid "Use Image As Is" msgstr "Usa immagine così com'è" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:45 msgid "Missing uploaded image." msgstr "Immagine caricata mancante." -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Profile Picture Settings" msgstr "Impostazioni Immagine di Profilo" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Current Profile Picture" msgstr "Immagine del profilo attuale" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Profile Picture" msgstr "Carica la foto del profilo" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload Picture:" msgstr "Carica Foto:" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:132 msgid "or" msgstr "o" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:134 msgid "skip this step" msgstr "salta questo passaggio" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:136 msgid "select a photo from your photo albums" msgstr "seleziona una foto dai tuoi album" -#: src/Module/Settings/TwoFactor/AppSpecific.php:64 -#: src/Module/Settings/TwoFactor/Recovery.php:62 -#: src/Module/Settings/TwoFactor/Trusted.php:65 -#: src/Module/Settings/TwoFactor/Verify.php:68 +#: src/Module/Settings/RemoveMe.php:94 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[Notifica di Sistema di Friendica]" + +#: src/Module/Settings/RemoveMe.php:94 +msgid "User deleted their account" +msgstr "L'utente ha cancellato il suo account" + +#: src/Module/Settings/RemoveMe.php:95 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "Sul tuo nodo Friendica un utente ha cancellato il suo account. Assicurati che i suoi dati siano rimossi dai backup." + +#: src/Module/Settings/RemoveMe.php:96 +#, php-format +msgid "The user id is %d" +msgstr "L'id utente è %d" + +#: src/Module/Settings/RemoveMe.php:108 +msgid "Your user account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:128 +msgid "Remove My Account" +msgstr "Rimuovi il mio account" + +#: src/Module/Settings/RemoveMe.php:129 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." + +#: src/Module/Settings/RemoveMe.php:131 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "" + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 msgid "Please enter your password to access this page." msgstr "Per favore inserisci la tua password per accedere a questa pagina." -#: src/Module/Settings/TwoFactor/AppSpecific.php:82 +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 msgid "App-specific password generation failed: The description is empty." msgstr "Generazione della password specifica per l'app non riuscita: La descrizione è vuota." -#: src/Module/Settings/TwoFactor/AppSpecific.php:85 +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 msgid "" "App-specific password generation failed: This description already exists." msgstr "Generazione della password specifica per l'app non riuscita: La descrizione esiste già." -#: src/Module/Settings/TwoFactor/AppSpecific.php:89 +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 msgid "New app-specific password generated." msgstr "Nuova password specifica per app generata." -#: src/Module/Settings/TwoFactor/AppSpecific.php:95 +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 msgid "App-specific passwords successfully revoked." msgstr "Password specifiche per le app revocate con successo." -#: src/Module/Settings/TwoFactor/AppSpecific.php:105 +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 msgid "App-specific password successfully revoked." msgstr "Password specifica per l'app revocata con successo." -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 msgid "Two-factor app-specific passwords" msgstr "Password specifiche per app a due fattori" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 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 "

    Password specifiche per le app sono generate casualmente e vengono usate al posto della tua password dell'account per autenticarti con applicazioni di terze parti che non supportano l'autenticazione a due fattori.

    " -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Assicurati di copiare la tua nuova password specifica per l'app ora. Non sarai in grado di vederla un'altra volta!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 msgid "Description" msgstr "Descrizione" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 msgid "Last Used" msgstr "Ultimo Utilizzo" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 msgid "Revoke" msgstr "Revoca" -#: src/Module/Settings/TwoFactor/AppSpecific.php:135 +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Revoke All" msgstr "Revoca Tutti" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 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 "Quando generi una nuova password specifica per l'app, devi utilizzarla immediatamente, ti sarà mostrata una volta generata." -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 msgid "Generate new app-specific password" msgstr "Genera nuova password specifica per app" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa sul mio Fairphone 2..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:141 +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 msgid "Generate" msgstr "Genera" -#: src/Module/Settings/TwoFactor/Index.php:67 +#: src/Module/Settings/TwoFactor/Index.php:68 msgid "Two-factor authentication successfully disabled." msgstr "Autenticazione a due fattori disabilitata con successo." -#: src/Module/Settings/TwoFactor/Index.php:93 -msgid "Wrong Password" -msgstr "Password Sbagliata" - -#: src/Module/Settings/TwoFactor/Index.php:113 +#: src/Module/Settings/TwoFactor/Index.php:120 msgid "" "

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

    " msgstr "

    Usa un'applicazione su un dispositivo mobile per generare codici di autenticazione a due fattori quando richiesto all'accesso.

    " -#: src/Module/Settings/TwoFactor/Index.php:117 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Authenticator app" msgstr "App di autenticazione" -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Configured" msgstr "Configurata" -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Not Configured" msgstr "Non Configurata" -#: src/Module/Settings/TwoFactor/Index.php:119 +#: src/Module/Settings/TwoFactor/Index.php:126 msgid "

    You haven't finished configuring your authenticator app.

    " msgstr "

    Non hai terminato la configurazione della tua app di autenticazione.

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

    Your authenticator app is correctly configured.

    " msgstr "

    La tua app di autenticazione è correttamente configurata.

    " -#: src/Module/Settings/TwoFactor/Index.php:122 +#: src/Module/Settings/TwoFactor/Index.php:129 msgid "Recovery codes" msgstr "Codici di recupero" -#: src/Module/Settings/TwoFactor/Index.php:123 +#: src/Module/Settings/TwoFactor/Index.php:130 msgid "Remaining valid codes" msgstr "Codici validi rimanenti" -#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "" "

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

    " msgstr "

    Questi codici monouso possono sostituire l'app di autenticazione nel caso avessi perso il suo accesso.

    " -#: src/Module/Settings/TwoFactor/Index.php:127 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "App-specific passwords" msgstr "Password specifiche per app" -#: src/Module/Settings/TwoFactor/Index.php:128 +#: src/Module/Settings/TwoFactor/Index.php:135 msgid "Generated app-specific passwords" msgstr "Genera password specifiche per app" -#: src/Module/Settings/TwoFactor/Index.php:130 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "" "

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

    " msgstr "

    Queste password generate casualmente ti consentono di autenticarti con app che non supportano l'autenticazione a due fattori.

    " -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "Current password:" msgstr "Password attuale:" -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "Devi inserire la tua password attuale per cambiare le impostazioni di autenticazione a due fattori." -#: src/Module/Settings/TwoFactor/Index.php:134 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "Enable two-factor authentication" msgstr "Abilita autenticazione a due fattori" -#: src/Module/Settings/TwoFactor/Index.php:135 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Disable two-factor authentication" msgstr "Disabilita autenticazione a due fattori" -#: src/Module/Settings/TwoFactor/Index.php:136 +#: src/Module/Settings/TwoFactor/Index.php:143 msgid "Show recovery codes" msgstr "Mostra codici di recupero" -#: src/Module/Settings/TwoFactor/Index.php:137 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "Manage app-specific passwords" msgstr "Gestisci password specifiche per app" -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/Settings/TwoFactor/Index.php:145 msgid "Manage trusted browsers" msgstr "Gestisci browser fidàti" -#: src/Module/Settings/TwoFactor/Index.php:139 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Finish app configuration" msgstr "Completa configurazione dell'app" -#: src/Module/Settings/TwoFactor/Recovery.php:78 +#: src/Module/Settings/TwoFactor/Recovery.php:80 msgid "New recovery codes successfully generated." msgstr "Nuovi codici di recupero generati con successo." -#: src/Module/Settings/TwoFactor/Recovery.php:104 +#: src/Module/Settings/TwoFactor/Recovery.php:106 msgid "Two-factor recovery codes" msgstr "Codici di recupero a due fattori" -#: src/Module/Settings/TwoFactor/Recovery.php:106 +#: src/Module/Settings/TwoFactor/Recovery.php:108 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 " @@ -9566,64 +10887,68 @@ msgid "" "account.

    " msgstr "

    I codici di recupero possono essere utilizzati per accedere al tuo account nel caso tu perda l'accesso al tuo dispositivo e non possa ricevere i codici di autenticazione a due fattori.

    Salvali in un posto sicuro! Se dovessi perdere il tuo dispositivo e non hai i codici di recupero perderai l'accesso al tuo account.

    " -#: src/Module/Settings/TwoFactor/Recovery.php:108 +#: src/Module/Settings/TwoFactor/Recovery.php:110 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Quando generi nuovi codici di recupero, dovrai copiare i nuovi codici. I codici precedenti non funzioneranno più." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:111 msgid "Generate new recovery codes" msgstr "Genera nuovi codici di recupero" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "Next: Verification" msgstr "Successivo: Verifica" -#: src/Module/Settings/TwoFactor/Trusted.php:82 +#: src/Module/Settings/TwoFactor/Trusted.php:84 msgid "Trusted browsers successfully removed." msgstr "Browser fidàti rimossi con successo." -#: src/Module/Settings/TwoFactor/Trusted.php:92 +#: src/Module/Settings/TwoFactor/Trusted.php:94 msgid "Trusted browser successfully removed." msgstr "Browser fidato rimosso con successo." -#: src/Module/Settings/TwoFactor/Trusted.php:133 +#: src/Module/Settings/TwoFactor/Trusted.php:136 msgid "Two-factor Trusted Browsers" msgstr "Browser fidàti a due fattori" -#: src/Module/Settings/TwoFactor/Trusted.php:134 +#: src/Module/Settings/TwoFactor/Trusted.php:137 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 "Browser fidàti sono browser sui quali hai schelto di saltare l'autenticazione a due fattori per accedere a Friendica. Per favore utilizza questa funzionalità con parsimonia, visto che può annullare i benefici dell'autenticazione a due fattori." -#: src/Module/Settings/TwoFactor/Trusted.php:135 +#: src/Module/Settings/TwoFactor/Trusted.php:138 msgid "Device" msgstr "Dispositivo" -#: src/Module/Settings/TwoFactor/Trusted.php:136 +#: src/Module/Settings/TwoFactor/Trusted.php:139 msgid "OS" msgstr "SO" -#: src/Module/Settings/TwoFactor/Trusted.php:138 +#: src/Module/Settings/TwoFactor/Trusted.php:141 msgid "Trusted" msgstr "Fidato" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:142 +msgid "Created At" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:143 msgid "Last Use" msgstr "Ultimo Utilizzo" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:145 msgid "Remove All" msgstr "Rimuovi Tutto" -#: src/Module/Settings/TwoFactor/Verify.php:90 +#: src/Module/Settings/TwoFactor/Verify.php:91 msgid "Two-factor authentication successfully activated." msgstr "Autenticazione a due fattori abilitata con successo." -#: src/Module/Settings/TwoFactor/Verify.php:124 +#: src/Module/Settings/TwoFactor/Verify.php:125 #, php-format msgid "" "

    Or you can submit the authentication settings manually:

    \n" @@ -9643,68 +10968,105 @@ msgid "" "" msgstr "

    Oppure puoi inserire le impostazioni di autenticazione manualmente:

    \n
    \n\t
    Soggetto
    \n\t
    %s
    \n\t
    Nome Account
    \n\t
    %s
    \n\t
    Chiave Segreta
    \n\t
    %s
    \n\t
    Tipo
    \n\t
    Basato sul tempo
    \n\t
    Numero di cifre
    \n\t
    6
    \n\t
    Algoritmo di crittografia
    \n\t
    SHA-1
    \n
    " -#: src/Module/Settings/TwoFactor/Verify.php:144 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Two-factor code verification" msgstr "Verifica codice a due fattori" -#: src/Module/Settings/TwoFactor/Verify.php:146 +#: src/Module/Settings/TwoFactor/Verify.php:147 msgid "" "

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

    " msgstr "

    Per favore scansione questo Codice QR con la tua app di autenticazione e invia il codice fornito.

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

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

    %s

    " msgstr "

    O puoi aprire il seguente indiririzzo sul tuo dispositivo mobile:

    %s

    " -#: src/Module/Settings/TwoFactor/Verify.php:155 +#: src/Module/Settings/TwoFactor/Verify.php:156 msgid "Verify code and enable two-factor authentication" msgstr "Verifica codice e abilita l'autenticazione a due fattori" -#: src/Module/Settings/UserExport.php:67 +#: src/Module/Settings/UserExport.php:90 msgid "Export account" msgstr "Esporta account" -#: src/Module/Settings/UserExport.php:67 +#: src/Module/Settings/UserExport.php:90 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 "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:91 msgid "Export all" msgstr "Esporta tutto" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:91 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 "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Può diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:92 msgid "Export Contacts to CSV" msgstr "Esporta Contatti come CSV" -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:92 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Esporta la lista degli account che segui come file CSV. Compatibile per esempio con Mastodon." -#: src/Module/Special/HTTPException.php:51 +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:37 +msgid "" +"This node has blocked the top-level author or the author of the shared post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:38 +msgid "" +"You have ignored or blocked the top-level author or the author of the shared" +" post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:39 +msgid "" +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "" + +#: src/Module/Special/HTTPException.php:78 msgid "Stack trace:" msgstr "Traccia dello stack:" -#: src/Module/Special/HTTPException.php:55 +#: src/Module/Special/HTTPException.php:83 #, php-format msgid "Exception thrown in %s:%d" msgstr "Eccezione lanciata in %s:%d" -#: src/Module/Tos.php:57 src/Module/Tos.php:91 +#: src/Module/Tos.php:58 src/Module/Tos.php:107 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" @@ -9717,28 +11079,108 @@ msgid "" "settings, it is not necessary for communication." msgstr "Al momento della registrazione, e per fornire le comunicazioni tra l'account dell'utente e i suoi contatti, l'utente deve fornire un nome da visualizzare (pseudonimo), un nome utente (soprannome) e un indirizzo email funzionante. I nomi saranno accessibili sulla pagina profilo dell'account da parte di qualsiasi visitatore, anche quando altri dettagli del profilo non sono mostrati. L'indirizzo email sarà usato solo per inviare notifiche riguardo l'interazione coi contatti, ma non sarà mostrato. L'inserimento dell'account nella rubrica degli utenti del nodo o nella rubrica globale è opzionale, può essere impostato nelle impostazioni dell'utente, e non è necessario ai fini delle comunicazioni." -#: src/Module/Tos.php:58 src/Module/Tos.php:92 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 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 "Queste informazioni sono richiesta per la comunicazione e sono inviate ai nodi che partecipano alla comunicazione dove sono salvati. Gli utenti possono inserire aggiuntive informazioni private che potrebbero essere trasmesse agli account che partecipano alla comunicazione." -#: src/Module/Tos.php:59 src/Module/Tos.php:93 +#: src/Module/Tos.php:60 src/Module/Tos.php:109 #, 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 "In qualsiasi momento un utente autenticato può esportare i dati del suo account dalle impostazioni dell'account. Se l'utente vuole cancellare il suo account lo può fare da %1$s/removeme. L'eliminazione dell'account sarà permanente. L'eliminazione dei dati sarà altresì richiesta ai nodi che partecipano alle comunicazioni." +"href=\"%1$s/settings/removeme\">%1$s/settings/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 "" -#: src/Module/Tos.php:62 src/Module/Tos.php:90 +#: src/Module/Tos.php:63 src/Module/Tos.php:106 msgid "Privacy Statement" msgstr "Note sulla Privacy" +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "" + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "L'oggetto richiesto non esiste o è stato eliminato." + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "L'importazione di utenti su server chiusi può essere effettuata solo da un amministratore." + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "Muovi account" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "Puoi importare un account da un altro server Friendica." + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (GNU Social/Statusnet) o da Diaspora" + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "File account" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "Errore decodificando il file account" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?" + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "L'utente '%s' esiste già su questo server!" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "Errore creando l'utente" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contatto non importato" +msgstr[1] "%d contatti non importati" +msgstr[2] "%d contatti non importati" + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "Errore durante la creazione del profilo dell'utente" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" + #: src/Module/Welcome.php:44 msgid "Welcome to Friendica" msgstr "Benvenuto su Friendica" @@ -9869,15 +11311,15 @@ msgid "" msgstr "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore." #: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "Raggruppa i tuoi contatti" +msgid "Add Your Contacts To Circle" +msgstr "" #: 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 "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete" +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "" #: src/Module/Welcome.php:80 msgid "Why Aren't My Posts Public?" @@ -9904,43 +11346,51 @@ msgid "" " features and resources." msgstr "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse." -#: src/Navigation/Notifications/Factory/FormattedNotification.php:89 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +msgid "{0} wants to follow you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +msgid "{0} has started following you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 #, php-format msgid "%s liked %s's post" msgstr "a %s è piaciuto il messaggio di %s" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:101 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 #, php-format msgid "%s disliked %s's post" msgstr "a %s non è piaciuto il messaggio di %s" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:113 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 #, php-format msgid "%s is attending %s's event" msgstr "%s partecipa all'evento di %s" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:125 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 #, php-format msgid "%s is not attending %s's event" msgstr "%s non partecipa all'evento di %s" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:137 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 #, php-format msgid "%s may attending %s's event" msgstr "%s potrebbe partecipare all'evento di %s" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:167 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 #, php-format msgid "%s is now friends with %s" msgstr "%s è ora amico di %s" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:334 -#: src/Navigation/Notifications/Factory/FormattedNotification.php:372 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 #, php-format msgid "%s commented on %s's post" msgstr "%s ha commentato il messaggio di %s" -#: src/Navigation/Notifications/Factory/FormattedNotification.php:371 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 #, php-format msgid "%s created a new post" msgstr "%s a creato un nuovo messaggio" @@ -9957,326 +11407,315 @@ msgstr "Richiesta amicizia/connessione" msgid "New Follower" msgstr "Qualcuno inizia a seguirti" -#: src/Navigation/Notifications/Factory/Notification.php:93 +#: src/Navigation/Notifications/Factory/Notification.php:134 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:95 +#: src/Navigation/Notifications/Factory/Notification.php:136 #, php-format -msgid "%1$s had started following you" +msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:149 +#: src/Navigation/Notifications/Factory/Notification.php:208 #, php-format -msgid "%1$s liked your comment %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:152 -#, php-format -msgid "%1$s liked your post %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:159 -#, php-format -msgid "%1$s disliked your comment %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:162 -#, php-format -msgid "%1$s disliked your post %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:169 -#, php-format -msgid "%1$s shared your comment %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:172 -#, php-format -msgid "%1$s shared your post %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:176 -#, php-format -msgid "%1$s shared the post %2$s from %3$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:178 -#, php-format -msgid "%1$s shared a post from %3$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:180 -#, php-format -msgid "%1$s shared the post %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:182 -#, php-format -msgid "%1$s shared a post" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:190 -#, php-format -msgid "%1$s wants to attend your event %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:197 -#, php-format -msgid "%1$s does not want to attend your event %2$s" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:204 -#, php-format -msgid "%1$s maybe wants to attend your event %2$s" +msgid "%1$s liked your comment on %2$s" msgstr "" #: src/Navigation/Notifications/Factory/Notification.php:211 #, php-format +msgid "%1$s liked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:218 +#, php-format +msgid "%1$s disliked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:221 +#, php-format +msgid "%1$s disliked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:228 +#, php-format +msgid "%1$s shared your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 +#, php-format +msgid "%1$s shared your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:235 +#: src/Navigation/Notifications/Factory/Notification.php:305 +#, php-format +msgid "%1$s shared the post %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:237 +#: src/Navigation/Notifications/Factory/Notification.php:307 +#, php-format +msgid "%1$s shared a post from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:239 +#: src/Navigation/Notifications/Factory/Notification.php:309 +#, php-format +msgid "%1$s shared the post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:311 +#, php-format +msgid "%1$s shared a post" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:249 +#, php-format +msgid "%1$s wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:256 +#, php-format +msgid "%1$s does not want to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:263 +#, php-format +msgid "%1$s maybe wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:270 +#, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:215 +#: src/Navigation/Notifications/Factory/Notification.php:274 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:219 +#: src/Navigation/Notifications/Factory/Notification.php:278 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:282 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:229 +#: src/Navigation/Notifications/Factory/Notification.php:289 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:233 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:240 +#: src/Navigation/Notifications/Factory/Notification.php:300 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:211 -#: src/Navigation/Notifications/Repository/Notify.php:694 +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 msgid "[Friendica:Notify]" msgstr "[Friendica:Notifica]" -#: src/Navigation/Notifications/Repository/Notify.php:275 +#: src/Navigation/Notifications/Repository/Notify.php:293 #, php-format msgid "%s New mail received at %s" msgstr "%s Nuova mail ricevuta su %s" -#: src/Navigation/Notifications/Repository/Notify.php:277 +#: src/Navigation/Notifications/Repository/Notify.php:295 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s ti ha inviato un nuovo messaggio privato su %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:278 +#: src/Navigation/Notifications/Repository/Notify.php:296 msgid "a private message" msgstr "un messaggio privato" -#: src/Navigation/Notifications/Repository/Notify.php:278 +#: src/Navigation/Notifications/Repository/Notify.php:296 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s ti ha inviato %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:280 +#: src/Navigation/Notifications/Repository/Notify.php:298 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Visita %s per vedere e/o rispondere ai tuoi messaggi privati." -#: src/Navigation/Notifications/Repository/Notify.php:311 +#: src/Navigation/Notifications/Repository/Notify.php:328 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s ha commentato il %3$s di %2$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:316 +#: src/Navigation/Notifications/Repository/Notify.php:333 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s ha commentato il tuo %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:320 +#: src/Navigation/Notifications/Repository/Notify.php:337 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s ha commentato il suo %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:324 -#: src/Navigation/Notifications/Repository/Notify.php:729 +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Commento alla conversazione #%2$d di %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:326 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s ha commentato un elemento che stavi seguendo." -#: src/Navigation/Notifications/Repository/Notify.php:330 -#: src/Navigation/Notifications/Repository/Notify.php:345 -#: src/Navigation/Notifications/Repository/Notify.php:364 -#: src/Navigation/Notifications/Repository/Notify.php:744 +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Visita %s per vedere e/o commentare la conversazione" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:354 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s ha scritto sulla bacheca del tuo profilo" -#: src/Navigation/Notifications/Repository/Notify.php:339 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s ha scritto sulla tua bacheca su %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:340 +#: src/Navigation/Notifications/Repository/Notify.php:357 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s ha inviato un messaggio sulla [url=%2$s]tua bacheca[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:352 -#, php-format -msgid "%1$s %2$s poked you" -msgstr "%1$s %2$s ti ha stuzzicato" - -#: src/Navigation/Notifications/Repository/Notify.php:354 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s ti ha stuzzicato su %2$s" - -#: src/Navigation/Notifications/Repository/Notify.php:355 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]ti ha stuzzicato[/url]." - -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:370 #, php-format msgid "%s Introduction received" msgstr "%s Introduzione ricevuta" -#: src/Navigation/Notifications/Repository/Notify.php:374 +#: src/Navigation/Notifications/Repository/Notify.php:372 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Hai ricevuto un'introduzione da '%1$s' su %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Hai ricevuto [url=%1$s]un'introduzione[/url] da %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:380 -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 #, php-format msgid "You may visit their profile at %s" msgstr "Puoi visitare il suo profilo presso %s" -#: src/Navigation/Notifications/Repository/Notify.php:382 +#: src/Navigation/Notifications/Repository/Notify.php:380 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Visita %s per approvare o rifiutare la presentazione." -#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:387 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Una nuova persona sta condividendo con te" -#: src/Navigation/Notifications/Repository/Notify.php:391 -#: src/Navigation/Notifications/Repository/Notify.php:392 +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s sta condividendo con te su %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:397 #, php-format msgid "%s You have a new follower" msgstr "%s Hai un nuovo seguace" -#: src/Navigation/Notifications/Repository/Notify.php:401 -#: src/Navigation/Notifications/Repository/Notify.php:402 +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Un nuovo utente ha iniziato a seguirti su %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:413 #, php-format msgid "%s Friend suggestion received" msgstr "%s Suggerimento di amicizia ricevuto" -#: src/Navigation/Notifications/Repository/Notify.php:417 +#: src/Navigation/Notifications/Repository/Notify.php:415 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Hai ricevuto un suggerimento di amicizia da '%1$s' su %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:418 +#: src/Navigation/Notifications/Repository/Notify.php:416 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Hai ricevuto [url=%1$s]un suggerimento di amicizia[/url] per %2$s su %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:422 msgid "Name:" msgstr "Nome:" -#: src/Navigation/Notifications/Repository/Notify.php:425 +#: src/Navigation/Notifications/Repository/Notify.php:423 msgid "Photo:" msgstr "Foto:" -#: src/Navigation/Notifications/Repository/Notify.php:428 +#: src/Navigation/Notifications/Repository/Notify.php:426 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Visita %s per approvare o rifiutare il suggerimento." -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 #, php-format msgid "%s Connection accepted" msgstr "%s Connessione accettata" -#: src/Navigation/Notifications/Repository/Notify.php:438 -#: src/Navigation/Notifications/Repository/Notify.php:453 +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' ha accettato la tua richiesta di connessione su %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:439 -#: src/Navigation/Notifications/Repository/Notify.php:454 +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s ha accettato la tua [url=%1$s]richiesta di connessione[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:442 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Ora siete amici reciproci e potete scambiarvi aggiornamenti di stato, foto e messaggi privati senza restrizioni." -#: src/Navigation/Notifications/Repository/Notify.php:446 +#: src/Navigation/Notifications/Repository/Notify.php:444 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Visita %s se vuoi modificare questa relazione." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:457 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -10285,33 +11724,34 @@ msgid "" "automatically." msgstr "'%1$s' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibilità di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente." -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' può scegliere di estendere questa relazione in una relazione più permissiva in futuro." -#: src/Navigation/Notifications/Repository/Notify.php:463 +#: src/Navigation/Notifications/Repository/Notify.php:461 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Visita %s se desideri modificare questo collegamento." -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:471 msgid "registration request" msgstr "richiesta di registrazione" -#: src/Navigation/Notifications/Repository/Notify.php:475 +#: src/Navigation/Notifications/Repository/Notify.php:473 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Hai ricevuto una richiesta di registrazione da '%1$s' su %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:476 +#: src/Navigation/Notifications/Repository/Notify.php:474 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Hai ricevuto una [url=%1$s]richiesta di registrazione[/url] da %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:481 +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 #, php-format msgid "" "Full Name:\t%s\n" @@ -10319,21 +11759,50 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Nome Completo:\t%s\nIndirizzo del sito:\t%s\nNome utente:\t%s (%s)" -#: src/Navigation/Notifications/Repository/Notify.php:487 +#: src/Navigation/Notifications/Repository/Notify.php:485 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Visita %s per approvare o rifiutare la richiesta." -#: src/Navigation/Notifications/Repository/Notify.php:723 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:780 #, php-format msgid "%s %s tagged you" msgstr "%s %s ti ha taggato" -#: src/Navigation/Notifications/Repository/Notify.php:726 +#: src/Navigation/Notifications/Repository/Notify.php:783 #, php-format msgid "%s %s shared a new post" msgstr "%s %s ha condiviso un nuovo messaggio" +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "" + #: src/Object/EMail/ItemCCEMail.php:42 #, php-format msgid "" @@ -10357,244 +11826,308 @@ msgstr "Contatta il mittente rispondendo a questo messaggio se non vuoi ricevere msgid "%s posted an update." msgstr "%s ha inviato un aggiornamento." -#: src/Object/Post.php:147 -msgid "This entry was edited" -msgstr "Questa voce è stata modificata" - -#: src/Object/Post.php:175 +#: src/Object/Post.php:138 msgid "Private Message" msgstr "Messaggio privato" -#: src/Object/Post.php:178 +#: src/Object/Post.php:142 +msgid "Public Message" +msgstr "" + +#: src/Object/Post.php:146 +msgid "Unlisted Message" +msgstr "" + +#: src/Object/Post.php:181 +msgid "This entry was edited" +msgstr "Questa voce è stata modificata" + +#: src/Object/Post.php:209 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:193 src/Object/Post.php:195 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Modifica" -#: src/Object/Post.php:215 -msgid "Pinned item" -msgstr "Oggetto in evidenza" - -#: src/Object/Post.php:219 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Rimuovi globalmente" -#: src/Object/Post.php:219 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Rimuovi localmente" -#: src/Object/Post.php:235 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "Blocca %s" -#: src/Object/Post.php:240 +#: src/Object/Post.php:273 +#, php-format +msgid "Ignore %s" +msgstr "" + +#: src/Object/Post.php:278 +#, php-format +msgid "Collapse %s" +msgstr "" + +#: src/Object/Post.php:282 +msgid "Report post" +msgstr "" + +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "Salva nella cartella" -#: src/Object/Post.php:274 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Parteciperò" -#: src/Object/Post.php:274 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Non parteciperò" -#: src/Object/Post.php:274 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Forse parteciperò" -#: src/Object/Post.php:304 +#: src/Object/Post.php:363 msgid "Ignore thread" msgstr "Ignora la conversazione" -#: src/Object/Post.php:305 +#: src/Object/Post.php:364 msgid "Unignore thread" msgstr "Non ignorare la conversazione" -#: src/Object/Post.php:306 +#: src/Object/Post.php:365 msgid "Toggle ignore status" msgstr "Inverti stato ignora" -#: src/Object/Post.php:316 +#: src/Object/Post.php:375 msgid "Add star" msgstr "Aggiungi a preferiti" -#: src/Object/Post.php:317 +#: src/Object/Post.php:376 msgid "Remove star" msgstr "Rimuovi da preferiti" -#: src/Object/Post.php:318 +#: src/Object/Post.php:377 msgid "Toggle star status" msgstr "Inverti stato preferito" -#: src/Object/Post.php:329 +#: src/Object/Post.php:388 msgid "Pin" msgstr "Metti in evidenza" -#: src/Object/Post.php:330 +#: src/Object/Post.php:389 msgid "Unpin" msgstr "Togli da in evidenza" -#: src/Object/Post.php:331 +#: src/Object/Post.php:390 msgid "Toggle pin status" msgstr "Inverti stato in evidenza" -#: src/Object/Post.php:334 +#: src/Object/Post.php:393 msgid "Pinned" msgstr "In evidenza" -#: src/Object/Post.php:339 +#: src/Object/Post.php:398 msgid "Add tag" msgstr "Aggiungi tag" -#: src/Object/Post.php:352 +#: src/Object/Post.php:411 msgid "Quote share this" msgstr "Condividi citando questo" -#: src/Object/Post.php:352 +#: src/Object/Post.php:411 msgid "Quote Share" msgstr "Cita e Condividi" -#: src/Object/Post.php:355 +#: src/Object/Post.php:414 msgid "Reshare this" msgstr "Ricondividi questo" -#: src/Object/Post.php:355 +#: src/Object/Post.php:414 msgid "Reshare" msgstr "Ricondividi" -#: src/Object/Post.php:356 +#: src/Object/Post.php:415 msgid "Cancel your Reshare" msgstr "Annulla la tua Ricondivisione" -#: src/Object/Post.php:356 +#: src/Object/Post.php:415 msgid "Unshare" msgstr "Non ricondividere più" -#: src/Object/Post.php:401 +#: src/Object/Post.php:466 #, php-format msgid "%s (Received %s)" msgstr "%s (Ricevuto %s)" -#: src/Object/Post.php:406 +#: src/Object/Post.php:472 msgid "Comment this item on your system" msgstr "Commenta questo oggetto sul tuo sistema" -#: src/Object/Post.php:406 +#: src/Object/Post.php:472 msgid "Remote comment" msgstr "Commento remoto" -#: src/Object/Post.php:422 -msgid "Pushed" -msgstr "Inviato" +#: src/Object/Post.php:494 +msgid "Share via ..." +msgstr "" -#: src/Object/Post.php:422 -msgid "Pulled" -msgstr "Recuperato" +#: src/Object/Post.php:494 +msgid "Share via external services" +msgstr "" -#: src/Object/Post.php:456 +#: src/Object/Post.php:523 msgid "to" msgstr "a" -#: src/Object/Post.php:457 +#: src/Object/Post.php:524 msgid "via" msgstr "via" -#: src/Object/Post.php:458 +#: src/Object/Post.php:525 msgid "Wall-to-Wall" msgstr "Da bacheca a bacheca" -#: src/Object/Post.php:459 +#: src/Object/Post.php:526 msgid "via Wall-To-Wall:" msgstr "da bacheca a bacheca" -#: src/Object/Post.php:499 +#: src/Object/Post.php:573 #, php-format msgid "Reply to %s" msgstr "Rispondi a %s" -#: src/Object/Post.php:502 +#: src/Object/Post.php:576 msgid "More" msgstr "Mostra altro" -#: src/Object/Post.php:520 +#: src/Object/Post.php:595 msgid "Notifier task is pending" msgstr "L'attività di notifica è in attesa" -#: src/Object/Post.php:521 +#: src/Object/Post.php:596 msgid "Delivery to remote servers is pending" msgstr "La consegna ai server remoti è in attesa" -#: src/Object/Post.php:522 +#: src/Object/Post.php:597 msgid "Delivery to remote servers is underway" msgstr "La consegna ai server remoti è in corso" -#: src/Object/Post.php:523 +#: src/Object/Post.php:598 msgid "Delivery to remote servers is mostly done" msgstr "La consegna ai server remoti è quasi completata" -#: src/Object/Post.php:524 +#: src/Object/Post.php:599 msgid "Delivery to remote servers is done" msgstr "La consegna ai server remoti è completata" -#: src/Object/Post.php:544 +#: src/Object/Post.php:619 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d commento" msgstr[1] "%d commenti" +msgstr[2] "%d commenti" -#: src/Object/Post.php:545 +#: src/Object/Post.php:620 msgid "Show more" msgstr "Mostra di più" -#: src/Object/Post.php:546 +#: src/Object/Post.php:621 msgid "Show fewer" msgstr "Mostra di meno" -#: src/Protocol/OStatus.php:1645 +#: src/Object/Post.php:657 +#, php-format +msgid "Reshared by: %s" +msgstr "" + +#: src/Object/Post.php:662 +#, php-format +msgid "Viewed by: %s" +msgstr "" + +#: src/Object/Post.php:667 +#, php-format +msgid "Liked by: %s" +msgstr "" + +#: src/Object/Post.php:672 +#, php-format +msgid "Disliked by: %s" +msgstr "" + +#: src/Object/Post.php:677 +#, php-format +msgid "Attended by: %s" +msgstr "" + +#: src/Object/Post.php:682 +#, php-format +msgid "Maybe attended by: %s" +msgstr "" + +#: src/Object/Post.php:687 +#, php-format +msgid "Not attended by: %s" +msgstr "" + +#: src/Object/Post.php:692 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "(nessun oggetto)" + +#: src/Protocol/OStatus.php:1390 #, php-format msgid "%s is now following %s." msgstr "%s sta seguendo %s" -#: src/Protocol/OStatus.php:1646 +#: src/Protocol/OStatus.php:1391 msgid "following" msgstr "segue" -#: src/Protocol/OStatus.php:1649 +#: src/Protocol/OStatus.php:1394 #, php-format msgid "%s stopped following %s." msgstr "%s ha smesso di seguire %s" -#: src/Protocol/OStatus.php:1650 +#: src/Protocol/OStatus.php:1395 msgid "stopped following" msgstr "tolto dai seguiti" -#: src/Render/FriendicaSmartyEngine.php:52 -msgid "The folder view/smarty3/ must be writable by webserver." -msgstr "La cartella view/smarty3/ deve essere scrivibile dal webserver." +#: src/Render/FriendicaSmartyEngine.php:56 +#, php-format +msgid "The folder %s must be writable by webserver." +msgstr "" -#: src/Security/Authentication.php:221 +#: src/Security/Authentication.php:227 msgid "Login failed." msgstr "Accesso fallito." -#: src/Security/Authentication.php:262 +#: src/Security/Authentication.php:272 msgid "Login failed. Please check your credentials." msgstr "Accesso non riuscito. Per favore controlla le tue credenziali." -#: src/Security/Authentication.php:360 +#: src/Security/Authentication.php:391 #, php-format msgid "Welcome %s" msgstr "Benvenuto %s" -#: src/Security/Authentication.php:361 +#: src/Security/Authentication.php:392 msgid "Please upload a profile photo." msgstr "Carica una foto per il profilo." -#: src/Util/EMailer/MailBuilder.php:259 +#: src/Util/EMailer/MailBuilder.php:260 msgid "Friendica Notification" msgstr "Notifica Friendica" @@ -10617,264 +12150,271 @@ msgstr "%s Amministratore" msgid "thanks" msgstr "grazie" -#: src/Util/Temporal.php:167 +#: src/Util/Temporal.php:172 msgid "YYYY-MM-DD or MM-DD" msgstr "AAAA-MM-GG o MM-GG" -#: src/Util/Temporal.php:275 +#: src/Util/Temporal.php:280 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:318 +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 msgid "never" msgstr "mai" -#: src/Util/Temporal.php:325 +#: src/Util/Temporal.php:343 msgid "less than a second ago" msgstr "meno di un secondo fa" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:352 msgid "year" msgstr "anno" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:352 msgid "years" msgstr "anni" -#: src/Util/Temporal.php:334 +#: src/Util/Temporal.php:353 msgid "months" msgstr "mesi" -#: src/Util/Temporal.php:335 +#: src/Util/Temporal.php:354 msgid "weeks" msgstr "settimane" -#: src/Util/Temporal.php:336 +#: src/Util/Temporal.php:355 msgid "days" msgstr "giorni" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:356 msgid "hour" msgstr "ora" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:356 msgid "hours" msgstr "ore" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:357 msgid "minute" msgstr "minuto" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:357 msgid "minutes" msgstr "minuti" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:358 msgid "second" msgstr "secondo" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:358 msgid "seconds" msgstr "secondi" -#: src/Util/Temporal.php:349 +#: src/Util/Temporal.php:367 #, php-format msgid "in %1$d %2$s" msgstr "in %1$d %2$s" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:370 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s fa" -#: src/Worker/Delivery.php:525 -msgid "(no subject)" -msgstr "(nessun oggetto)" - -#: src/Worker/PushSubscription.php:103 +#: src/Worker/PushSubscription.php:110 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:104 +#: src/Worker/PushSubscription.php:111 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:52 +#: view/theme/duepuntozero/config.php:68 msgid "default" msgstr "predefinito" -#: view/theme/duepuntozero/config.php:53 +#: view/theme/duepuntozero/config.php:69 msgid "greenzero" msgstr "greenzero" -#: view/theme/duepuntozero/config.php:54 +#: view/theme/duepuntozero/config.php:70 msgid "purplezero" msgstr "purplezero" -#: view/theme/duepuntozero/config.php:55 +#: view/theme/duepuntozero/config.php:71 msgid "easterbunny" msgstr "easterbunny" -#: view/theme/duepuntozero/config.php:56 +#: view/theme/duepuntozero/config.php:72 msgid "darkzero" msgstr "darkzero" -#: view/theme/duepuntozero/config.php:57 +#: view/theme/duepuntozero/config.php:73 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:58 +#: view/theme/duepuntozero/config.php:74 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:87 msgid "Variations" msgstr "Varianti" -#: view/theme/frio/config.php:142 +#: view/theme/frio/config.php:153 msgid "Light (Accented)" msgstr "Chiaro (Con accenti)" -#: view/theme/frio/config.php:143 +#: view/theme/frio/config.php:154 msgid "Dark (Accented)" msgstr "Scuro (Con accenti)" -#: view/theme/frio/config.php:144 +#: view/theme/frio/config.php:155 msgid "Black (Accented)" msgstr "Nero (Con accenti)" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Note" msgstr "Note" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Check image permissions if all users are allowed to see the image" msgstr "Controlla i permessi dell'immagine che tutti gli utenti possano vederla" -#: view/theme/frio/config.php:162 +#: view/theme/frio/config.php:173 msgid "Custom" msgstr "Personalizzato" -#: view/theme/frio/config.php:163 +#: view/theme/frio/config.php:174 msgid "Legacy" msgstr "Precedente" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:175 msgid "Accented" msgstr "Con accenti" -#: view/theme/frio/config.php:165 +#: view/theme/frio/config.php:176 msgid "Select color scheme" msgstr "Seleziona lo schema colori" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Select scheme accent" msgstr "Seleziona accento schema" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Blue" msgstr "Blu" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Red" msgstr "Rosso" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Purple" msgstr "Viola" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Green" msgstr "Verde" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Pink" msgstr "Rosa" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "Copy or paste schemestring" msgstr "Copia o incolla stringa di schema" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Puoi copiare questa stringa per condividere il tuo tema con altri. Incollarla qui applica la stringa di schema" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:179 msgid "Navigation bar background color" msgstr "Colore di sfondo barra di navigazione" -#: view/theme/frio/config.php:169 +#: view/theme/frio/config.php:180 msgid "Navigation bar icon color " msgstr "Colore icona barra di navigazione" -#: view/theme/frio/config.php:170 +#: view/theme/frio/config.php:181 msgid "Link color" msgstr "Colore collegamento" -#: view/theme/frio/config.php:171 +#: view/theme/frio/config.php:182 msgid "Set the background color" msgstr "Imposta il colore di sfondo" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:183 msgid "Content background opacity" msgstr "Trasparenza sfondo contenuto" -#: view/theme/frio/config.php:173 +#: view/theme/frio/config.php:184 msgid "Set the background image" msgstr "Imposta l'immagine di sfondo" -#: view/theme/frio/config.php:174 +#: view/theme/frio/config.php:185 msgid "Background image style" msgstr "Stile immagine di sfondo" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "" + +#: view/theme/frio/config.php:192 msgid "Login page background image" msgstr "Immagine di sfondo per la pagina di accesso" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Login page background color" msgstr "Colore di sfondo della pagina di accesso" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Leave background image and color empty for theme defaults" msgstr "Lascia l'immagine e il colore di sfondo vuoti per usare le impostazioni predefinite del tema" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:39 msgid "Top Banner" msgstr "Top Banner" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:39 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "Scala l'immagine alla larghezza dello schermo e mostra un colore di sfondo sulle pagine lunghe." -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:40 msgid "Full screen" msgstr "Schermo intero" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:40 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "Scala l'immagine a schermo intero, tagliando a destra o sotto." -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:41 msgid "Single row mosaic" msgstr "Mosaico a riga singola" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:41 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "Scala l'immagine per ripeterla in una singola riga, verticale o orizzontale." -#: view/theme/frio/php/Image.php:43 +#: view/theme/frio/php/Image.php:42 msgid "Mosaic" msgstr "Mosaico" -#: view/theme/frio/php/Image.php:43 +#: view/theme/frio/php/Image.php:42 msgid "Repeat image to fill the screen." msgstr "Ripete l'immagine per riempire lo schermo." @@ -10886,78 +12426,78 @@ msgstr "Salta al contenuto principale" msgid "Back to top" msgstr "Torna all'inizio" -#: view/theme/frio/theme.php:207 +#: view/theme/frio/theme.php:211 msgid "Guest" msgstr "Ospite" -#: view/theme/frio/theme.php:210 +#: view/theme/frio/theme.php:214 msgid "Visitor" msgstr "Visitatore" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Alignment" msgstr "Allineamento" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Left" msgstr "Sinistra" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Center" msgstr "Centrato" -#: view/theme/quattro/config.php:74 +#: view/theme/quattro/config.php:90 msgid "Color scheme" msgstr "Schema colori" -#: view/theme/quattro/config.php:75 +#: view/theme/quattro/config.php:91 msgid "Posts font size" msgstr "Dimensione carattere messaggi" -#: view/theme/quattro/config.php:76 +#: view/theme/quattro/config.php:92 msgid "Textareas font size" msgstr "Dimensione carattere nelle aree di testo" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" -msgstr "Elenco separato da virgole di forum di aiuto" +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" +msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "don't show" msgstr "non mostrare" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "show" msgstr "mostra" -#: view/theme/vier/config.php:121 +#: view/theme/vier/config.php:137 msgid "Set style" msgstr "Imposta stile" -#: view/theme/vier/config.php:122 +#: view/theme/vier/config.php:138 msgid "Community Pages" msgstr "Pagine della Comunità" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:125 +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 msgid "Community Profiles" msgstr "Profili Comunità" -#: view/theme/vier/config.php:124 +#: view/theme/vier/config.php:140 msgid "Help or @NewHere ?" msgstr "Serve aiuto? Sei nuovo?" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:296 +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 msgid "Connect Services" msgstr "Servizi Connessi" -#: view/theme/vier/config.php:126 +#: view/theme/vier/config.php:142 msgid "Find Friends" msgstr "Trova Amici" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:152 +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 msgid "Last users" msgstr "Ultimi utenti" -#: view/theme/vier/theme.php:211 +#: view/theme/vier/theme.php:234 msgid "Quick Start" msgstr "Partenza Rapida" diff --git a/view/lang/it/strings.php b/view/lang/it/strings.php index 5b3f56bb7..9a5c7c5fb 100644 --- a/view/lang/it/strings.php +++ b/view/lang/it/strings.php @@ -3,106 +3,15 @@ if(! function_exists("string_plural_select_it")) { function string_plural_select_it($n){ $n = intval($n); - return intval($n != 1); + if ($n == 1) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else { return 2; } }} -$a->strings['Access denied.'] = 'Accesso negato.'; -$a->strings['User not found.'] = 'Utente non trovato.'; -$a->strings['Access to this profile has been restricted.'] = 'L\'accesso a questo profilo è stato limitato.'; -$a->strings['Events'] = 'Eventi'; -$a->strings['View'] = 'Mostra'; -$a->strings['Previous'] = 'Precedente'; -$a->strings['Next'] = 'Successivo'; -$a->strings['today'] = 'oggi'; -$a->strings['month'] = 'mese'; -$a->strings['week'] = 'settimana'; -$a->strings['day'] = 'giorno'; -$a->strings['list'] = 'lista'; -$a->strings['User not found'] = 'Utente non trovato'; -$a->strings['This calendar format is not supported'] = 'Questo formato di calendario non è supportato'; -$a->strings['No exportable data found'] = 'Nessun dato esportabile trovato'; -$a->strings['calendar'] = 'calendario'; -$a->strings['Public access denied.'] = 'Accesso negato.'; -$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'L\'oggetto richiesto non esiste o è stato eliminato.'; -$a->strings['The feed for this item is unavailable.'] = 'Il flusso per questo oggetto non è disponibile.'; -$a->strings['Permission denied.'] = 'Permesso negato.'; -$a->strings['Item not found'] = 'Oggetto non trovato'; -$a->strings['Edit post'] = 'Modifica messaggio'; -$a->strings['Save'] = 'Salva'; -$a->strings['Loading...'] = 'Caricamento...'; -$a->strings['Upload photo'] = 'Carica foto'; -$a->strings['upload photo'] = 'carica foto'; -$a->strings['Attach file'] = 'Allega file'; -$a->strings['attach file'] = 'allega file'; -$a->strings['Insert web link'] = 'Inserisci collegamento web'; -$a->strings['web link'] = 'collegamento web'; -$a->strings['Insert video link'] = 'Inserire collegamento video'; -$a->strings['video link'] = 'collegamento video'; -$a->strings['Insert audio link'] = 'Inserisci collegamento audio'; -$a->strings['audio link'] = 'collegamento audio'; -$a->strings['Set your location'] = 'La tua posizione'; -$a->strings['set location'] = 'posizione'; -$a->strings['Clear browser location'] = 'Rimuovi la localizzazione data dal browser'; -$a->strings['clear location'] = 'canc. pos.'; -$a->strings['Please wait'] = 'Attendi'; -$a->strings['Permission settings'] = 'Impostazioni permessi'; -$a->strings['CC: email addresses'] = 'CC: indirizzi email'; -$a->strings['Public post'] = 'Messaggio pubblico'; -$a->strings['Set title'] = 'Scegli un titolo'; -$a->strings['Categories (comma-separated list)'] = 'Categorie (lista separata da virgola)'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Esempio: bob@example.com, mary@example.com'; -$a->strings['Preview'] = 'Anteprima'; -$a->strings['Cancel'] = 'Annulla'; -$a->strings['Bold'] = 'Grassetto'; -$a->strings['Italic'] = 'Corsivo'; -$a->strings['Underline'] = 'Sottolineato'; -$a->strings['Quote'] = 'Citazione'; -$a->strings['Code'] = 'Codice'; -$a->strings['Link'] = 'Collegamento'; -$a->strings['Link or Media'] = 'Collegamento o Media'; -$a->strings['Message'] = 'Messaggio'; -$a->strings['Browser'] = 'Browser'; -$a->strings['Permissions'] = 'Permessi'; -$a->strings['Open Compose page'] = 'Apri pagina di Composizione'; -$a->strings['Event can not end before it has started.'] = 'Un evento non può finire prima di iniziare.'; -$a->strings['Event title and start time are required.'] = 'Titolo e ora di inizio dell\'evento sono richiesti.'; -$a->strings['Create New Event'] = 'Crea un nuovo evento'; -$a->strings['Event details'] = 'Dettagli dell\'evento'; -$a->strings['Starting date and Title are required.'] = 'La data di inizio e il titolo sono richiesti.'; -$a->strings['Event Starts:'] = 'L\'evento inizia:'; -$a->strings['Required'] = 'Richiesto'; -$a->strings['Finish date/time is not known or not relevant'] = 'La data/ora di fine non è definita'; -$a->strings['Event Finishes:'] = 'L\'evento finisce:'; -$a->strings['Description:'] = 'Descrizione:'; -$a->strings['Location:'] = 'Posizione:'; -$a->strings['Title:'] = 'Titolo:'; -$a->strings['Share this event'] = 'Condividi questo evento'; -$a->strings['Submit'] = 'Invia'; -$a->strings['Basic'] = 'Base'; -$a->strings['Advanced'] = 'Avanzate'; -$a->strings['Failed to remove event'] = 'Rimozione evento fallita.'; -$a->strings['Photos'] = 'Foto'; -$a->strings['Upload'] = 'Carica'; -$a->strings['Files'] = 'File'; -$a->strings['Submit Request'] = 'Invia richiesta'; -$a->strings['You already added this contact.'] = 'Hai già aggiunto questo contatto.'; -$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Non è possibile rilevare il tipo di rete. Il contatto non può essere aggiunto.'; -$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Il supporto Diaspora non è abilitato. Il contatto non può essere aggiunto.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Il supporto OStatus non è abilitato. Il contatto non può essere aggiunto.'; -$a->strings['Connect/Follow'] = 'Connetti/segui'; -$a->strings['Please answer the following:'] = 'Rispondi:'; -$a->strings['Your Identity Address:'] = 'L\'indirizzo della tua identità:'; -$a->strings['Profile URL'] = 'URL Profilo'; -$a->strings['Tags:'] = 'Tag:'; -$a->strings['%s knows you'] = '%s ti conosce'; -$a->strings['Add a personal note:'] = 'Aggiungi una nota personale:'; -$a->strings['Status Messages and Posts'] = 'Messaggi di stato e messaggi'; -$a->strings['The contact could not be added.'] = 'Il contatto non può essere aggiunto.'; $a->strings['Unable to locate original post.'] = 'Impossibile trovare il messaggio originale.'; -$a->strings['Empty post discarded.'] = 'Messaggio vuoto scartato.'; $a->strings['Post updated.'] = 'Messaggio aggiornato.'; $a->strings['Item wasn\'t stored.'] = 'L\'oggetto non è stato salvato.'; $a->strings['Item couldn\'t be fetched.'] = 'L\'oggetto non può essere recuperato.'; +$a->strings['Empty post discarded.'] = 'Messaggio vuoto scartato.'; $a->strings['Item not found.'] = 'Elemento non trovato.'; +$a->strings['Permission denied.'] = 'Permesso negato.'; $a->strings['No valid account found.'] = 'Nessun account valido trovato.'; $a->strings['Password reset request issued. Check your email.'] = 'La richiesta per reimpostare la password è stata inviata. Controlla la tua email.'; $a->strings[' @@ -184,9 +93,6 @@ I dettagli del tuo account sono: Puoi cambiare questa password dalla pagina "Impostazioni" del tuo account dopo esserti autenticato.'; $a->strings['Your password has been changed at %s'] = 'La tua password presso %s è stata cambiata'; -$a->strings['No keywords to match. Please add keywords to your profile.'] = 'Nessuna parola chiave corrisponde. Per favore aggiungi parole chiave al tuo profilo.'; -$a->strings['No matches'] = 'Nessun risultato'; -$a->strings['Profile Match'] = 'Profili corrispondenti'; $a->strings['New Message'] = 'Nuovo messaggio'; $a->strings['No recipient selected.'] = 'Nessun destinatario selezionato.'; $a->strings['Unable to locate contact information.'] = 'Impossibile trovare le informazioni del contatto.'; @@ -202,6 +108,10 @@ $a->strings['Send Private Message'] = 'Invia un messaggio privato'; $a->strings['To:'] = 'A:'; $a->strings['Subject:'] = 'Oggetto:'; $a->strings['Your message:'] = 'Il tuo messaggio:'; +$a->strings['Upload photo'] = 'Carica foto'; +$a->strings['Insert web link'] = 'Inserisci collegamento web'; +$a->strings['Please wait'] = 'Attendi'; +$a->strings['Submit'] = 'Invia'; $a->strings['No messages.'] = 'Nessun messaggio.'; $a->strings['Message not available.'] = 'Messaggio non disponibile.'; $a->strings['Delete message'] = 'Elimina il messaggio'; @@ -215,21 +125,12 @@ $a->strings['%s and You'] = '%s e Tu'; $a->strings['%d message'] = [ 0 => '%d messaggio', 1 => '%d messaggi', + 2 => '%d messaggi', ]; $a->strings['Personal Notes'] = 'Note personali'; $a->strings['Personal notes are visible only by yourself.'] = 'Le note personali sono visibili solo da te.'; -$a->strings['Subscribing to contacts'] = 'Iscrizione a contatti'; -$a->strings['No contact provided.'] = 'Nessun contatto disponibile.'; -$a->strings['Couldn\'t fetch information for contact.'] = 'Non è stato possibile recuperare le informazioni del contatto.'; -$a->strings['Couldn\'t fetch friends for contact.'] = 'Non è stato possibile recuperare gli amici del contatto.'; -$a->strings['Couldn\'t fetch following contacts.'] = 'Non è stato possibile recuperare i contatti seguiti.'; -$a->strings['Couldn\'t fetch remote profile.'] = 'Non è stato possibile recuperare il profilo remoto.'; -$a->strings['Unsupported network'] = 'Rete non supportata'; -$a->strings['Done'] = 'Fatto'; -$a->strings['success'] = 'successo'; -$a->strings['failed'] = 'fallito'; -$a->strings['ignored'] = 'ignorato'; -$a->strings['Keep this window open until done.'] = 'Tieni questa finestra aperta fino a che ha finito.'; +$a->strings['Save'] = 'Salva'; +$a->strings['User not found.'] = 'Utente non trovato.'; $a->strings['Photo Albums'] = 'Album foto'; $a->strings['Recent Photos'] = 'Foto recenti'; $a->strings['Upload New Photos'] = 'Carica nuove foto'; @@ -241,21 +142,16 @@ $a->strings['Album was empty.'] = 'L\'album era vuoto.'; $a->strings['Failed to delete the photo.'] = 'Eliminazione della foto non riuscita.'; $a->strings['a photo'] = 'una foto'; $a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s è stato taggato in %2$s da %3$s'; -$a->strings['Image exceeds size limit of %s'] = 'La dimensione dell\'immagine supera il limite di %s'; -$a->strings['Image upload didn\'t complete, please try again'] = 'Caricamento dell\'immagine non completato. Prova di nuovo.'; -$a->strings['Image file is missing'] = 'Il file dell\'immagine è mancante'; -$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Il server non può accettare il caricamento di un nuovo file in questo momento, contattare l\'amministratore'; -$a->strings['Image file is empty.'] = 'Il file dell\'immagine è vuoto.'; -$a->strings['Unable to process image.'] = 'Impossibile caricare l\'immagine.'; -$a->strings['Image upload failed.'] = 'Caricamento immagine fallito.'; +$a->strings['Public access denied.'] = 'Accesso negato.'; $a->strings['No photos selected'] = 'Nessuna foto selezionata'; -$a->strings['Access to this item is restricted.'] = 'Questo oggetto non è visibile a tutti.'; $a->strings['Upload Photos'] = 'Carica foto'; $a->strings['New album name: '] = 'Nome nuovo album: '; $a->strings['or select existing album:'] = 'o seleziona un album esistente:'; $a->strings['Do not show a status post for this upload'] = 'Non creare un messaggio per questo upload'; +$a->strings['Permissions'] = 'Permessi'; $a->strings['Do you really want to delete this photo album and all its photos?'] = 'Vuoi davvero cancellare questo album e tutte le sue foto?'; $a->strings['Delete Album'] = 'Rimuovi album'; +$a->strings['Cancel'] = 'Annulla'; $a->strings['Edit Album'] = 'Modifica album'; $a->strings['Drop Album'] = 'Elimina Album'; $a->strings['Show Newest First'] = 'Mostra nuove foto per prime'; @@ -282,6 +178,8 @@ $a->strings['Rotate CW (right)'] = 'Ruota a destra'; $a->strings['Rotate CCW (left)'] = 'Ruota a sinistra'; $a->strings['This is you'] = 'Questo sei tu'; $a->strings['Comment'] = 'Commento'; +$a->strings['Preview'] = 'Anteprima'; +$a->strings['Loading...'] = 'Caricamento...'; $a->strings['Select'] = 'Seleziona'; $a->strings['Delete'] = 'Rimuovi'; $a->strings['Like'] = 'Mi Piace'; @@ -289,228 +187,6 @@ $a->strings['I like this (toggle)'] = 'Mi piace (clic per cambiare)'; $a->strings['Dislike'] = 'Non Mi Piace'; $a->strings['I don\'t like this (toggle)'] = 'Non mi piace (clic per cambiare)'; $a->strings['Map'] = 'Mappa'; -$a->strings['View Album'] = 'Sfoglia l\'album'; -$a->strings['{0} wants to be your friend'] = '{0} vuole essere tuo amico'; -$a->strings['{0} requested registration'] = '{0} chiede la registrazione'; -$a->strings['{0} and %d others requested registration'] = '{0} e %d altre registrazioni richieste'; -$a->strings['Bad Request.'] = 'Richiesta Errata.'; -$a->strings['Contact not found.'] = 'Contatto non trovato.'; -$a->strings['[Friendica System Notify]'] = '[Notifica di Sistema di Friendica]'; -$a->strings['User deleted their account'] = 'L\'utente ha cancellato il suo account'; -$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Sul tuo nodo Friendica un utente ha cancellato il suo account. Assicurati che i suoi dati siano rimossi dai backup.'; -$a->strings['The user id is %d'] = 'L\'id utente è %d'; -$a->strings['Remove My Account'] = 'Rimuovi il mio account'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo.'; -$a->strings['Please enter your password for verification:'] = 'Inserisci la tua password per verifica:'; -$a->strings['Resubscribing to OStatus contacts'] = 'Risottoscrivi i contatti OStatus'; -$a->strings['Error'] = [ - 0 => 'Errori', - 1 => 'Errori', -]; -$a->strings['Failed to connect with email account using the settings provided.'] = 'Impossibile collegarsi all\'account email con i parametri forniti.'; -$a->strings['Contact CSV file upload error'] = 'Errore nel caricamento del file CSV dei contatti'; -$a->strings['Importing Contacts done'] = 'Importazione dei Contatti riuscita'; -$a->strings['Relocate message has been send to your contacts'] = 'Il messaggio di trasloco è stato inviato ai tuoi contatti'; -$a->strings['Passwords do not match.'] = 'Le password non corrispondono.'; -$a->strings['Password update failed. Please try again.'] = 'Aggiornamento password fallito. Prova ancora.'; -$a->strings['Password changed.'] = 'Password cambiata.'; -$a->strings['Password unchanged.'] = 'Password non modificata.'; -$a->strings['Please use a shorter name.'] = 'Per favore utilizza un nome più corto.'; -$a->strings['Name too short.'] = 'Nome troppo corto.'; -$a->strings['Wrong Password.'] = 'Password Sbagliata.'; -$a->strings['Invalid email.'] = 'Email non valida.'; -$a->strings['Cannot change to that email.'] = 'Non puoi usare quella email.'; -$a->strings['Private forum has no privacy permissions. Using default privacy group.'] = 'Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito.'; -$a->strings['Private forum has no privacy permissions and no default privacy group.'] = 'Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito.'; -$a->strings['Settings were not updated.'] = 'Le impostazioni non sono state aggiornate.'; -$a->strings['Connected Apps'] = 'Applicazioni Collegate'; -$a->strings['Name'] = 'Nome'; -$a->strings['Home Page'] = 'Home Page'; -$a->strings['Created'] = 'Creato'; -$a->strings['Remove authorization'] = 'Rimuovi l\'autorizzazione'; -$a->strings['Save Settings'] = 'Salva Impostazioni'; -$a->strings['Addon Settings'] = 'Impostazioni Componenti Aggiuntivi'; -$a->strings['No Addon settings configured'] = 'Nessun componente aggiuntivo ha impostazioni modificabili'; -$a->strings['Additional Features'] = 'Funzionalità aggiuntive'; -$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings['enabled'] = 'abilitato'; -$a->strings['disabled'] = 'disabilitato'; -$a->strings['Built-in support for %s connectivity is %s'] = 'Il supporto integrato per la connettività con %s è %s'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; -$a->strings['Email access is disabled on this site.'] = 'L\'accesso email è disabilitato su questo sito.'; -$a->strings['None'] = 'Nessuna'; -$a->strings['Social Networks'] = 'Social Networks'; -$a->strings['General Social Media Settings'] = 'Impostazioni Media Sociali'; -$a->strings['Accept only top level posts by contacts you follow'] = 'Accetta solo messaggi di primo livello dai contatti che segui'; -$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.'] = 'Il sistema completa automaticamente le conversazioni quando arriva un commento. Questo può far si che tu riceva messaggi iniziati da qualcuno che non segui ma son stati commentati da qualcuno che segui. Questa impostazione disattiva questo comportamento. Quando attivo, riceverai solamente i messaggi da persone che veramente segui.'; -$a->strings['Enable Content Warning'] = 'Abilita Avviso Contenuto'; -$a->strings['Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.'] = 'Gli utenti su reti come Mastodon o Pleroma sono in grado di impostare un campo di avviso sul contenuto. Questa impostazione nasconde in automatico il contenuto del messaggio in caso di avviso, invece di impostare l\'avviso di contenuto come titolo del post. Non ha effetto su eventuali altri filtri impostati.'; -$a->strings['Enable intelligent shortening'] = 'Abilita accorciamento intelligente'; -$a->strings['Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.'] = 'Normalmente il sistema tenta di trovare il collegamento migliore da aggiungere ad un messaggio accorciato. Se questa opzione è disabilitata, ogni messaggio accorciato conterrà sempre un collegamento al messaggio originale su Friendica.'; -$a->strings['Enable simple text shortening'] = 'Abilita accorciamento semplice del testo'; -$a->strings['Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'] = 'Normalmente il sistema accorcia i messaggi alla successiva interruzione di linea. Se questa opzione è abilitata il sistema accorcerà il testo al raggiungimento del limite massimo di caratteri.'; -$a->strings['Attach the link title'] = 'Allega il titolo del collegamento'; -$a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'Quando attivato, il titolo del collegamento allegato sarà aggiunto come titolo dei messaggi su Diaspora. Questo è più che altro utile con i contatti "remoti di sè stessi" che condividono il contenuto del flusso.'; -$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Il tuo vecchio account ActivityPub/GNU Social '; -$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Se inserisci il nome del tuo vecchio account su un sistema basato su ActivityPub o del tuo vecchio account GNU Social/Statusnet (nel formato utente@dominio.tld), i tuoi contatti verranno importati automaticamente. Il campo verrà svuotato una volta terminata l\'operazione.'; -$a->strings['Repair OStatus subscriptions'] = 'Ripara le iscrizioni OStatus'; -$a->strings['Email/Mailbox Setup'] = 'Impostazioni email'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)'; -$a->strings['Last successful email check:'] = 'Ultimo controllo email eseguito con successo:'; -$a->strings['IMAP server name:'] = 'Nome server IMAP:'; -$a->strings['IMAP port:'] = 'Porta IMAP:'; -$a->strings['Security:'] = 'Sicurezza:'; -$a->strings['Email login name:'] = 'Nome utente email:'; -$a->strings['Email password:'] = 'Password email:'; -$a->strings['Reply-to address:'] = 'Indirizzo di risposta:'; -$a->strings['Send public posts to all email contacts:'] = 'Invia i messaggi pubblici ai contatti email:'; -$a->strings['Action after import:'] = 'Azione dopo importazione:'; -$a->strings['Mark as seen'] = 'Segna come letto'; -$a->strings['Move to folder'] = 'Sposta nella cartella'; -$a->strings['Move to folder:'] = 'Sposta nella cartella:'; -$a->strings['Unable to find your profile. Please contact your admin.'] = 'Impossibile trovare il tuo profilo. Contatta il tuo amministratore.'; -$a->strings['Account Types'] = 'Tipi di Account'; -$a->strings['Personal Page Subtypes'] = 'Sottotipi di Pagine Personali'; -$a->strings['Community Forum Subtypes'] = 'Sottotipi di Community Forum'; -$a->strings['Personal Page'] = 'Pagina Personale'; -$a->strings['Account for a personal profile.'] = 'Account per profilo personale.'; -$a->strings['Organisation Page'] = 'Pagina Organizzazione'; -$a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'Account per un\'organizzazione, che automaticamente approva le richieste di contatto come "Follower".'; -$a->strings['News Page'] = 'Pagina Notizie'; -$a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'Account per notizie, che automaticamente approva le richieste di contatto come "Follower"'; -$a->strings['Community Forum'] = 'Community Forum'; -$a->strings['Account for community discussions.'] = 'Account per discussioni comunitarie.'; -$a->strings['Normal Account Page'] = 'Pagina Account Normale'; -$a->strings['Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'] = 'Account per un profilo personale, che richiede l\'approvazione delle richieste di contatto come "Amico" o "Follower".'; -$a->strings['Soapbox Page'] = 'Pagina Sandbox'; -$a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'Account per un profilo publico, che automaticamente approva le richieste di contatto come "Follower".'; -$a->strings['Public Forum'] = 'Forum Pubblico'; -$a->strings['Automatically approves all contact requests.'] = 'Approva automaticamente tutte le richieste di contatto.'; -$a->strings['Automatic Friend Page'] = 'Pagina con amicizia automatica'; -$a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'Account per un profilo popolare, che automaticamente approva le richieste di contatto come "Amici".'; -$a->strings['Private Forum [Experimental]'] = 'Forum privato [sperimentale]'; -$a->strings['Requires manual approval of contact requests.'] = 'Richiede l\'approvazione manuale delle richieste di contatto.'; -$a->strings['OpenID:'] = 'OpenID:'; -$a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Opzionale) Consente di loggarti in questo account con questo OpenID'; -$a->strings['Publish your profile in your local site directory?'] = 'Pubblica il tuo profilo nell\'elenco locale del tuo sito?'; -$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.'] = 'Il tuo profilo verrà pubblicato nella directory locale di questo nodo. I dettagli del tuo profilo potrebbero essere visibili pubblicamente a seconda delle impostazioni di sistema.'; -$a->strings['Your profile will also be published in the global friendica directories (e.g. %s).'] = 'Il tuo profilo sarà anche pubblicato nelle directory globali di friendica (es. %s).'; -$a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'L\'indirizzo della tua identità è \'%s\' or \'%s\'.'; -$a->strings['Account Settings'] = 'Impostazioni account'; -$a->strings['Password Settings'] = 'Impostazioni password'; -$a->strings['New Password:'] = 'Nuova password:'; -$a->strings['Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).'] = 'I caratteri permessi sono a-z, A-Z, 0-9 e caratteri speciali tranne spazio, lettere accentate e due punti (:).'; -$a->strings['Confirm:'] = 'Conferma:'; -$a->strings['Leave password fields blank unless changing'] = 'Lascia questi campi in bianco per non effettuare variazioni alla password'; -$a->strings['Current Password:'] = 'Password Attuale:'; -$a->strings['Your current password to confirm the changes'] = 'La tua password attuale per confermare le modifiche'; -$a->strings['Password:'] = 'Password:'; -$a->strings['Your current password to confirm the changes of the email address'] = 'La tua password attuale per confermare il cambio di indirizzo email'; -$a->strings['Delete OpenID URL'] = 'Elimina URL OpenID'; -$a->strings['Basic Settings'] = 'Impostazioni base'; -$a->strings['Full Name:'] = 'Nome completo:'; -$a->strings['Email Address:'] = 'Indirizzo Email:'; -$a->strings['Your Timezone:'] = 'Il tuo fuso orario:'; -$a->strings['Your Language:'] = 'La tua lingua:'; -$a->strings['Set the language we use to show you friendica interface and to send you emails'] = 'Imposta la lingua che sarà usata per mostrarti l\'interfaccia di Friendica e per inviarti le email'; -$a->strings['Default Post Location:'] = 'Località predefinita:'; -$a->strings['Use Browser Location:'] = 'Usa la località rilevata dal browser:'; -$a->strings['Security and Privacy Settings'] = 'Impostazioni di sicurezza e privacy'; -$a->strings['Maximum Friend Requests/Day:'] = 'Numero massimo di richieste di amicizia al giorno:'; -$a->strings['(to prevent spam abuse)'] = '(per prevenire lo spam)'; -$a->strings['Allow your profile to be searchable globally?'] = 'Vuoi che il tuo profilo sia ricercabile globalmente?'; -$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.'] = 'Attiva questa impostazione se vuoi che gli altri ti trovino facilmente e ti seguano. Il tuo profilo sarà ricercabile da sistemi remoti. Questa impostazione determina anche se Friendica informerà i motori di ricerca che il tuo profilo sia indicizzabile o meno.'; -$a->strings['Hide your contact/friend list from viewers of your profile?'] = 'Nascondere la lista dei tuo contatti/amici dai visitatori del tuo profilo?'; -$a->strings['A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list.'] = 'La lista dei tuoi contatti è mostrata sulla tua pagina di profilo. Attiva questa opzione per disabilitare la visualizzazione del tuo elenco contatti.'; -$a->strings['Hide your profile details from anonymous viewers?'] = 'Nascondi i dettagli del tuo profilo ai visitatori anonimi?'; -$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.'] = 'I visitatori anonimi vedranno nella tua pagina profilo solo la tua foto del profilo, il tuo nome e il nome utente che stai usando. I tuoi messaggi pubblici e le risposte saranno comunque accessibili in altre maniere.'; -$a->strings['Make public posts unlisted'] = 'Rendi messaggi pubblici non elencati'; -$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.'] = 'I tuoi messaggi pubblici non appariranno sulle pagine della comunità o nei risultati di ricerca, e non saranno inviati ai server relay. Comunque appariranno sui feed pubblici su server remoti.'; -$a->strings['Make all posted pictures accessible'] = 'Rendi tutte le immagini pubblicate accessibili'; -$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.'] = 'Questa opzione rende ogni immagine pubblicata accessibile attraverso il collegamento diretto. Questo è una soluzione alternativa al problema che la maggior parte delle altre reti non gestiscono i permessi sulle immagini. Le immagini non pubbliche non saranno visibili al pubblico nei tuoi album fotografici comunque.'; -$a->strings['Allow friends to post to your profile page?'] = 'Permetti agli amici di scrivere sulla tua pagina profilo?'; -$a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'I tuoi contatti possono scrivere messaggi sulla tua pagina di profilo. Questi messaggi saranno distribuiti a tutti i tuoi contatti.'; -$a->strings['Allow friends to tag your posts?'] = 'Permetti agli amici di aggiungere tag ai tuoi messaggi?'; -$a->strings['Your contacts can add additional tags to your posts.'] = 'I tuoi contatti possono aggiungere tag aggiuntivi ai tuoi messaggi.'; -$a->strings['Permit unknown people to send you private mail?'] = 'Permetti a utenti sconosciuti di inviarti messaggi privati?'; -$a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Gli utenti sulla rete Friendica possono inviarti messaggi privati anche se non sono nella tua lista di contatti.'; -$a->strings['Maximum private messages per day from unknown people:'] = 'Numero massimo di messaggi privati da utenti sconosciuti per giorno:'; -$a->strings['Default Post Permissions'] = 'Permessi predefiniti per i messaggi'; -$a->strings['Expiration settings'] = 'Impostazioni di scadenza'; -$a->strings['Automatically expire posts after this many days:'] = 'Fai scadere i messaggi automaticamente dopo x giorni:'; -$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Se lasciato vuoto, i messaggi non verranno cancellati.'; -$a->strings['Expire posts'] = 'Fai scadere i messaggi'; -$a->strings['When activated, posts and comments will be expired.'] = 'Quando attivato, i messaggi e i commenti scadranno.'; -$a->strings['Expire personal notes'] = 'Fai scadere le note personali'; -$a->strings['When activated, the personal notes on your profile page will be expired.'] = 'Quando attivato, le note personali sulla tua pagina del profilo scadranno.'; -$a->strings['Expire starred posts'] = 'Fai scadere i messaggi speciali'; -$a->strings['Starring posts keeps them from being expired. That behaviour is overwritten by this setting.'] = 'Inserire i messaggi negli speciali evita di farli scadere. Questo comportamento viene scavalcato da questa impostazione.'; -$a->strings['Expire photos'] = 'Fai scadere foto'; -$a->strings['When activated, photos will be expired.'] = 'Quando attivato, le foto scadranno.'; -$a->strings['Only expire posts by others'] = 'Fai scadere solo i messaggi degli altri'; -$a->strings['When activated, your own posts never expire. Then the settings above are only valid for posts you received.'] = 'Quando attivato, i tuoi messaggi non scadranno mai. Quindi le impostazioni qui sopra saranno valide solo per i messaggi che hai ricevuto.'; -$a->strings['Notification Settings'] = 'Impostazioni notifiche'; -$a->strings['Send a notification email when:'] = 'Invia una mail di notifica quando:'; -$a->strings['You receive an introduction'] = 'Ricevi una presentazione'; -$a->strings['Your introductions are confirmed'] = 'Le tue presentazioni sono confermate'; -$a->strings['Someone writes on your profile wall'] = 'Qualcuno scrive sulla bacheca del tuo profilo'; -$a->strings['Someone writes a followup comment'] = 'Qualcuno scrive un commento a un tuo messaggio'; -$a->strings['You receive a private message'] = 'Ricevi un messaggio privato'; -$a->strings['You receive a friend suggestion'] = 'Hai ricevuto un suggerimento di amicizia'; -$a->strings['You are tagged in a post'] = 'Sei stato taggato in un messaggio'; -$a->strings['You are poked/prodded/etc. in a post'] = 'Sei \'toccato\'/\'spronato\'/ecc. in un messaggio'; -$a->strings['Create a desktop notification when:'] = 'Crea una notifica desktop quando:'; -$a->strings['Someone liked your content'] = 'Qualcuno ha messo mi piace a un tuo contenuto'; -$a->strings['Someone shared your content'] = 'Qualcuno ha condiviso un tuo contenuto'; -$a->strings['Activate desktop notifications'] = 'Attiva notifiche desktop'; -$a->strings['Show desktop popup on new notifications'] = 'Mostra un popup di notifica sul desktop all\'arrivo di nuove notifiche'; -$a->strings['Text-only notification emails'] = 'Email di notifica in solo testo'; -$a->strings['Send text only notification emails, without the html part'] = 'Invia le email di notifica in solo testo, senza la parte in html'; -$a->strings['Show detailled notifications'] = 'Mostra notifiche dettagliate'; -$a->strings['Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.'] = 'Per impostazione predefinita, le notifiche sono raggruppate in una singola notifica per articolo. Se abilitato, viene visualizzate tutte le notifiche.'; -$a->strings['Show notifications of ignored contacts'] = 'Mostra notifiche dai contatti ignorati'; -$a->strings['You don\'t see posts from ignored contacts. But you still see their comments. This setting controls if you want to still receive regular notifications that are caused by ignored contacts or not.'] = 'Non vedi i messaggi da contatti ignorati. Ma puoi ancora vedere i loro commenti. Questa impostazione controlla se vuoi o meno continuare a ricevere notifiche regolari che sono causate dai contatti ignorati.'; -$a->strings['Advanced Account/Page Type Settings'] = 'Impostazioni avanzate Account/Tipo di pagina'; -$a->strings['Change the behaviour of this account for special situations'] = 'Modifica il comportamento di questo account in situazioni speciali'; -$a->strings['Import Contacts'] = 'Importa Contatti'; -$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Carica un file CSV che contiene gli indirizzi dei tuoi account seguiti nella prima colonna che hai esportato dal vecchio account.'; -$a->strings['Upload File'] = 'Carica File'; -$a->strings['Relocate'] = 'Trasloca'; -$a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Se hai spostato questo profilo da un\'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone.'; -$a->strings['Resend relocate message to contacts'] = 'Invia nuovamente il messaggio di trasloco ai contatti'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore.'; -$a->strings['Friend Suggestions'] = 'Contatti suggeriti'; -$a->strings['photo'] = 'foto'; -$a->strings['status'] = 'stato'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s ha taggato %3$s di %2$s con %4$s'; -$a->strings['Remove Item Tag'] = 'Rimuovi il tag'; -$a->strings['Select a tag to remove: '] = 'Seleziona un tag da rimuovere: '; -$a->strings['Remove'] = 'Rimuovi'; -$a->strings['User imports on closed servers can only be done by an administrator.'] = 'L\'importazione di utenti su server chiusi può essere effettuata solo da un amministratore.'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani.'; -$a->strings['Import'] = 'Importa'; -$a->strings['Move account'] = 'Muovi account'; -$a->strings['You can import an account from another Friendica server.'] = 'Puoi importare un account da un altro server Friendica.'; -$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.'] = 'Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui.'; -$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (GNU Social/Statusnet) o da Diaspora'; -$a->strings['Account file'] = 'File account'; -$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Per esportare il tuo account, vai su "Impostazioni -> Esporta i tuoi dati personali" e seleziona "Esporta account"'; -$a->strings['You aren\'t following this contact.'] = 'Non stai seguendo questo contatto.'; -$a->strings['Unfollowing is currently not supported by your network.'] = 'Smettere di seguire non è al momento supportato dalla tua rete.'; -$a->strings['Disconnect/Unfollow'] = 'Disconnetti/Non Seguire'; -$a->strings['Unable to unfollow this contact, please retry in a few minutes or contact your administrator.'] = 'Impossibile smettere di seguire questo contatto, riprova tra qualche minuto o contatta il tuo amministratore.'; -$a->strings['Contact was successfully unfollowed'] = 'Il contatto non è più seguito'; -$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Impossibile smettere di seguire questo contatto, contatta il tuo amministratore'; -$a->strings['Invalid request.'] = 'Richiesta non valida.'; -$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Mi spiace, forse il file che stai caricando è più grosso di quanto la configurazione di PHP permetta'; -$a->strings['Or - did you try to upload an empty file?'] = 'O.. non avrai provato a caricare un file vuoto?'; -$a->strings['File exceeds size limit of %s'] = 'Il file supera la dimensione massima di %s'; -$a->strings['File upload failed.'] = 'Caricamento del file non riuscito.'; -$a->strings['Wall Photos'] = 'Foto della bacheca'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Numero giornaliero di messaggi per %s superato. Invio fallito.'; -$a->strings['Unable to check your home location.'] = 'Impossibile controllare la tua posizione di origine.'; -$a->strings['No recipient.'] = 'Nessun destinatario.'; -$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti.'; $a->strings['No system theme config value set.'] = 'Nessun tema di sistema impostato.'; $a->strings['Apologies but the website is unavailable at the moment.'] = 'Ci scusiamo, il sito non è disponibile al momento.'; $a->strings['Delete this item?'] = 'Cancellare questo elemento?'; @@ -538,7 +214,10 @@ $a->strings['Done.'] = 'Fatto.'; $a->strings['Execute pending post updates.'] = 'Esegui le azioni post-aggiornamento in sospeso.'; $a->strings['All pending post updates are done.'] = 'Tutte le azioni post-aggiornamento sono state eseguite.'; $a->strings['Enter user nickname: '] = 'Inserisci soprannome utente:'; +$a->strings['User not found'] = 'Utente non trovato'; $a->strings['Enter new password: '] = 'Inserisci la nuova password:'; +$a->strings['Password update failed. Please try again.'] = 'Aggiornamento password fallito. Prova ancora.'; +$a->strings['Password changed.'] = 'Password cambiata.'; $a->strings['Enter user name: '] = 'Inserisci nome utente:'; $a->strings['Enter user email address: '] = 'Inserisci l\'indirizzo email dell\'utente:'; $a->strings['Enter a language (optional): '] = 'Inserisci lingua (facoltativo):'; @@ -575,25 +254,8 @@ $a->strings['GNU Social Connector'] = 'Connettore GNU Social'; $a->strings['ActivityPub'] = 'ActivityPub'; $a->strings['pnut'] = 'pnut'; $a->strings['%s (via %s)'] = '%s (via %s)'; -$a->strings['%s likes this.'] = 'Piace a %s.'; -$a->strings['%s doesn\'t like this.'] = 'Non piace a %s.'; -$a->strings['%s attends.'] = '%s partecipa.'; -$a->strings['%s doesn\'t attend.'] = '%s non partecipa.'; -$a->strings['%s attends maybe.'] = '%s forse partecipa.'; -$a->strings['%s reshared this.'] = '%s ha ricondiviso questo.'; $a->strings['and'] = 'e'; $a->strings['and %d other people'] = 'e altre %d persone'; -$a->strings['%2$d people like this'] = 'Piace a %2$d persone.'; -$a->strings['%s like this.'] = 'a %s piace.'; -$a->strings['%2$d people don\'t like this'] = 'Non piace a %2$d persone.'; -$a->strings['%s don\'t like this.'] = 'a %s non piace.'; -$a->strings['%2$d people attend'] = '%2$d persone partecipano'; -$a->strings['%s attend.'] = '%s partecipa.'; -$a->strings['%2$d people don\'t attend'] = '%2$d persone non partecipano'; -$a->strings['%s don\'t attend.'] = '%s non partecipa.'; -$a->strings['%2$d people attend maybe'] = '%2$d persone forse partecipano'; -$a->strings['%s attend maybe.'] = '%s forse partecipano.'; -$a->strings['%2$d people reshared this'] = '%2$d persone hanno ricondiviso questo'; $a->strings['Visible to everybody'] = 'Visibile a tutti'; $a->strings['Please enter a image/video/audio/webpage URL:'] = 'Inserisci l\'indirizzo di una immagine, un video o una pagina web:'; $a->strings['Tag term:'] = 'Tag:'; @@ -602,54 +264,80 @@ $a->strings['Where are you right now?'] = 'Dove sei ora?'; $a->strings['Delete item(s)?'] = 'Cancellare questo elemento/i?'; $a->strings['New Post'] = 'Nuovo Messaggio'; $a->strings['Share'] = 'Condividi'; +$a->strings['upload photo'] = 'carica foto'; +$a->strings['Attach file'] = 'Allega file'; +$a->strings['attach file'] = 'allega file'; +$a->strings['Bold'] = 'Grassetto'; +$a->strings['Italic'] = 'Corsivo'; +$a->strings['Underline'] = 'Sottolineato'; +$a->strings['Quote'] = 'Citazione'; +$a->strings['Code'] = 'Codice'; $a->strings['Image'] = 'Immagine'; +$a->strings['Link'] = 'Collegamento'; +$a->strings['Link or Media'] = 'Collegamento o Media'; $a->strings['Video'] = 'Video'; +$a->strings['Set your location'] = 'La tua posizione'; +$a->strings['set location'] = 'posizione'; +$a->strings['Clear browser location'] = 'Rimuovi la localizzazione data dal browser'; +$a->strings['clear location'] = 'canc. pos.'; +$a->strings['Set title'] = 'Scegli un titolo'; +$a->strings['Categories (comma-separated list)'] = 'Categorie (lista separata da virgola)'; $a->strings['Scheduled at'] = 'Programmato per'; +$a->strings['Permission settings'] = 'Impostazioni permessi'; +$a->strings['Public post'] = 'Messaggio pubblico'; +$a->strings['Message'] = 'Messaggio'; +$a->strings['Browser'] = 'Browser'; +$a->strings['Open Compose page'] = 'Apri pagina di Composizione'; +$a->strings['remove'] = 'rimuovi'; +$a->strings['Delete Selected Items'] = 'Cancella elementi selezionati'; +$a->strings['You had been addressed (%s).'] = 'Sei stato nominato (%s).'; +$a->strings['You are following %s.'] = 'Stai seguendo %s.'; +$a->strings['%s reshared this.'] = '%s ha ricondiviso questo.'; +$a->strings['Reshared'] = 'Ricondiviso'; +$a->strings['Reshared by %s <%s>'] = 'Ricondiviso da %s <%s>'; +$a->strings['%s is participating in this thread.'] = '%s partecipa in questa conversazione.'; +$a->strings['Fetched'] = 'Recuperato'; +$a->strings['Fetched because of %s <%s>'] = 'Recuperato a causa di %s <%s>'; +$a->strings['Pinned item'] = 'Oggetto in evidenza'; $a->strings['View %s\'s profile @ %s'] = 'Vedi il profilo di %s @ %s'; $a->strings['Categories:'] = 'Categorie:'; $a->strings['Filed under:'] = 'Archiviato in:'; $a->strings['%s from %s'] = '%s da %s'; $a->strings['View in context'] = 'Vedi nel contesto'; -$a->strings['remove'] = 'rimuovi'; -$a->strings['Delete Selected Items'] = 'Cancella elementi selezionati'; -$a->strings['You had been addressed (%s).'] = 'Sei stato nominato (%s).'; -$a->strings['You are following %s.'] = 'Stai seguendo %s.'; -$a->strings['Tagged'] = 'Menzionato'; -$a->strings['Reshared'] = 'Ricondiviso'; -$a->strings['Reshared by %s <%s>'] = 'Ricondiviso da %s <%s>'; -$a->strings['%s is participating in this thread.'] = '%s partecipa in questa conversazione.'; -$a->strings['Stored'] = 'Memorizzato'; -$a->strings['Global'] = 'Globale'; -$a->strings['Relayed'] = 'Inoltrato'; -$a->strings['Relayed by %s <%s>'] = 'Inoltrato da %s <%s>'; -$a->strings['Fetched'] = 'Recuperato'; -$a->strings['Fetched because of %s <%s>'] = 'Recuperato a causa di %s <%s>'; +$a->strings['Local Community'] = 'Comunità Locale'; +$a->strings['Posts from local users on this server'] = 'Messaggi dagli utenti locali su questo sito'; +$a->strings['Global Community'] = 'Comunità Globale'; +$a->strings['Posts from users of the whole federated network'] = 'Messaggi dagli utenti della rete federata'; +$a->strings['Latest Activity'] = 'Ultima Attività'; +$a->strings['Sort by latest activity'] = 'Ordina per ultima attività'; +$a->strings['Latest Posts'] = 'Ultimi Messaggi'; +$a->strings['Sort by post received date'] = 'Ordina per data di ricezione del messaggio'; +$a->strings['Personal'] = 'Personale'; +$a->strings['Posts that mention or involve you'] = 'Messaggi che ti citano o coinvolgono'; +$a->strings['Starred'] = 'Preferiti'; +$a->strings['Favourite Posts'] = 'Messaggi preferiti'; $a->strings['General Features'] = 'Funzionalità generali'; $a->strings['Photo Location'] = 'Località Foto'; $a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'I metadati delle foto vengono rimossi. Questa opzione estrae la località (se presenta) prima di rimuovere i metadati e la collega a una mappa.'; $a->strings['Trending Tags'] = 'Etichette di Tendenza'; $a->strings['Show a community page widget with a list of the most popular tags in recent public posts.'] = 'Mostra un widget della pagina della comunità con un elenco delle etichette più popolari nei recenti messaggi pubblici.'; $a->strings['Post Composition Features'] = 'Funzionalità di composizione dei messaggi'; -$a->strings['Auto-mention Forums'] = 'Auto-cita i Forum'; -$a->strings['Add/remove mention when a forum page is selected/deselected in ACL window.'] = 'Aggiunge/rimuove una menzione quando una pagina forum è selezionata/deselezionata nella finestra dei permessi.'; $a->strings['Explicit Mentions'] = 'Menzioni Esplicite'; $a->strings['Add explicit mentions to comment box for manual control over who gets mentioned in replies.'] = 'Aggiungi menzioni esplicite al riquadro di commento per avere un controllo manuale su chi viene menzionato nelle risposte. '; $a->strings['Post/Comment Tools'] = 'Strumenti per messaggi/commenti'; $a->strings['Post Categories'] = 'Categorie Messaggi'; $a->strings['Add categories to your posts'] = 'Aggiungi categorie ai tuoi messaggi'; $a->strings['Advanced Profile Settings'] = 'Impostazioni Avanzate Profilo'; -$a->strings['List Forums'] = 'Elenco forum'; -$a->strings['Show visitors public community forums at the Advanced Profile Page'] = 'Mostra ai visitatori i forum nella pagina Profilo Avanzato'; $a->strings['Tag Cloud'] = 'Tag Cloud'; $a->strings['Provide a personal tag cloud on your profile page'] = 'Mostra una nuvola dei tag personali sulla tua pagina di profilo'; $a->strings['Display Membership Date'] = 'Mostra la Data di Registrazione'; $a->strings['Display membership date in profile'] = 'Mostra la data in cui ti sei registrato nel profilo'; -$a->strings['Forums'] = 'Forum'; -$a->strings['External link to forum'] = 'Collegamento esterno al forum'; $a->strings['show less'] = 'mostra meno'; $a->strings['show more'] = 'mostra di più'; -$a->strings['%1$s poked %2$s'] = '%1$s ha stuzzicato %2$s'; $a->strings['event'] = 'l\'evento'; +$a->strings['status'] = 'stato'; +$a->strings['photo'] = 'foto'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s ha taggato %3$s di %2$s con %4$s'; $a->strings['Follow Thread'] = 'Segui la discussione'; $a->strings['View Status'] = 'Visualizza stato'; $a->strings['View Profile'] = 'Visualizza profilo'; @@ -660,26 +348,25 @@ $a->strings['Send PM'] = 'Invia messaggio privato'; $a->strings['Block'] = 'Blocca'; $a->strings['Ignore'] = 'Ignora'; $a->strings['Languages'] = 'Lingue'; -$a->strings['Poke'] = 'Stuzzica'; +$a->strings['Connect/Follow'] = 'Connetti/segui'; $a->strings['Nothing new here'] = 'Niente di nuovo qui'; $a->strings['Go back'] = 'Torna indietro'; $a->strings['Clear notifications'] = 'Pulisci le notifiche'; -$a->strings['@name, !forum, #tags, content'] = '@nome, !forum, #tag, contenuto'; $a->strings['Logout'] = 'Esci'; $a->strings['End this session'] = 'Finisci questa sessione'; $a->strings['Login'] = 'Accedi'; $a->strings['Sign in'] = 'Entra'; -$a->strings['Status'] = 'Stato'; -$a->strings['Your posts and conversations'] = 'I tuoi messaggi e le tue conversazioni'; $a->strings['Profile'] = 'Profilo'; $a->strings['Your profile page'] = 'Pagina del tuo profilo'; +$a->strings['Photos'] = 'Foto'; $a->strings['Your photos'] = 'Le tue foto'; $a->strings['Media'] = 'Media'; $a->strings['Your postings with media'] = 'I tuoi messaggi con media'; -$a->strings['Your events'] = 'I tuoi eventi'; +$a->strings['Calendar'] = 'Calendario'; $a->strings['Personal notes'] = 'Note personali'; $a->strings['Your personal notes'] = 'Le tue note personali'; $a->strings['Home'] = 'Home'; +$a->strings['Home Page'] = 'Home Page'; $a->strings['Register'] = 'Registrati'; $a->strings['Create an account'] = 'Crea un account'; $a->strings['Help'] = 'Guida'; @@ -693,7 +380,6 @@ $a->strings['Tags'] = 'Tags:'; $a->strings['Contacts'] = 'Contatti'; $a->strings['Community'] = 'Comunità'; $a->strings['Conversations on this and other servers'] = 'Conversazioni su questo e su altri server'; -$a->strings['Events and Calendar'] = 'Eventi e calendario'; $a->strings['Directory'] = 'Elenco'; $a->strings['People directory'] = 'Elenco delle persone'; $a->strings['Information'] = 'Informazioni'; @@ -702,10 +388,12 @@ $a->strings['Terms of Service'] = 'Termini di Servizio'; $a->strings['Terms of Service of this Friendica instance'] = 'Termini di Servizio di questa istanza Friendica'; $a->strings['Network'] = 'Rete'; $a->strings['Conversations from your friends'] = 'Conversazioni dai tuoi amici'; +$a->strings['Your posts and conversations'] = 'I tuoi messaggi e le tue conversazioni'; $a->strings['Introductions'] = 'Presentazioni'; $a->strings['Friend Requests'] = 'Richieste di amicizia'; $a->strings['Notifications'] = 'Notifiche'; $a->strings['See all notifications'] = 'Vedi tutte le notifiche'; +$a->strings['Mark as seen'] = 'Segna come letto'; $a->strings['Mark all system notifications as seen'] = 'Segna tutte le notifiche di sistema come viste'; $a->strings['Private mail'] = 'Posta privata'; $a->strings['Inbox'] = 'In arrivo'; @@ -743,17 +431,18 @@ $a->strings['Connect'] = 'Connetti'; $a->strings['%d invitation available'] = [ 0 => '%d invito disponibile', 1 => '%d inviti disponibili', + 2 => '%d inviti disponibili', ]; $a->strings['Find People'] = 'Trova persone'; $a->strings['Enter name or interest'] = 'Inserisci un nome o un interesse'; $a->strings['Examples: Robert Morgenstein, Fishing'] = 'Esempi: Mario Rossi, Pesca'; $a->strings['Find'] = 'Trova'; +$a->strings['Friend Suggestions'] = 'Contatti suggeriti'; $a->strings['Similar Interests'] = 'Interessi simili'; $a->strings['Random Profile'] = 'Profilo Casuale'; $a->strings['Invite Friends'] = 'Invita amici'; $a->strings['Global Directory'] = 'Elenco globale'; $a->strings['Local Directory'] = 'Elenco Locale'; -$a->strings['Groups'] = 'Gruppi'; $a->strings['Everyone'] = 'Chiunque'; $a->strings['Relationships'] = 'Relazioni'; $a->strings['All Contacts'] = 'Tutti i contatti'; @@ -765,11 +454,13 @@ $a->strings['Categories'] = 'Categorie'; $a->strings['%d contact in common'] = [ 0 => '%d contatto in comune', 1 => '%d contatti in comune', + 2 => '%d contatti in comune', ]; $a->strings['Archives'] = 'Archivi'; $a->strings['Persons'] = 'Persone'; $a->strings['Organisations'] = 'Organizzazioni'; $a->strings['News'] = 'Notizie'; +$a->strings['Account Types'] = 'Tipi di Account'; $a->strings['All'] = 'Tutto'; $a->strings['Export'] = 'Esporta'; $a->strings['Export calendar as ical'] = 'Esporta il calendario in formato ical'; @@ -778,6 +469,7 @@ $a->strings['No contacts'] = 'Nessun contatto'; $a->strings['%d Contact'] = [ 0 => '%d contatto', 1 => '%d contatti', + 2 => '%d contatti', ]; $a->strings['View Contacts'] = 'Visualizza i contatti'; $a->strings['Remove term'] = 'Rimuovi termine'; @@ -785,10 +477,12 @@ $a->strings['Saved Searches'] = 'Ricerche salvate'; $a->strings['Trending Tags (last %d hour)'] = [ 0 => 'Etichette di Tendenza (ultima %d ora)', 1 => 'Etichette di Tendenza (ultime %d ore)', + 2 => 'Etichette di Tendenza (ultime %d ore)', ]; $a->strings['More Trending Tags'] = 'Più Etichette di Tendenza'; $a->strings['XMPP:'] = 'XMPP:'; $a->strings['Matrix:'] = 'Matrix:'; +$a->strings['Location:'] = 'Posizione:'; $a->strings['Network:'] = 'Rete:'; $a->strings['Unfollow'] = 'Smetti di seguire'; $a->strings['Yourself'] = 'Te stesso'; @@ -800,6 +494,8 @@ $a->strings['Limited/Private'] = 'Limitato/Privato'; $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.'] = 'Questo contenuto sarà mostrato solo alle persone nel primo campo, ad eccezione delle persone menzionate nel secondo campo. Non apparirà da qualsiasi parte in pubblico.'; $a->strings['Show to:'] = 'Mostra a:'; $a->strings['Except to:'] = 'Ad eccezione di:'; +$a->strings['CC: email addresses'] = 'CC: indirizzi email'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Esempio: bob@example.com, mary@example.com'; $a->strings['Connectors'] = 'Connettori'; $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.'] = 'Il file di configurazione del database "config/local.config.php" non può essere scritto. Usa il testo allegato per creare un file di configurazione nell tuo server web.'; $a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Potresti dover importare il file "database.sql" manualmente con phpmyadmin o mysql'; @@ -904,18 +600,8 @@ $a->strings['Sep'] = 'Set'; $a->strings['Oct'] = 'Ott'; $a->strings['Nov'] = 'Nov'; $a->strings['Dec'] = 'Dic'; -$a->strings['poke'] = 'stuzzica'; -$a->strings['poked'] = 'ha stuzzicato'; -$a->strings['ping'] = 'invia un ping'; -$a->strings['pinged'] = 'ha inviato un ping'; -$a->strings['prod'] = 'pungola'; -$a->strings['prodded'] = 'ha pungolato'; -$a->strings['slap'] = 'schiaffeggia'; -$a->strings['slapped'] = 'ha schiaffeggiato'; -$a->strings['finger'] = 'tocca'; -$a->strings['fingered'] = 'ha toccato'; -$a->strings['rebuff'] = 'respingi'; -$a->strings['rebuffed'] = 'ha respinto'; +$a->strings['The logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Il file di registro \'%s\' non è utilizzabile. Nessuna registrazione possibile (errore: \'%s\')'; +$a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Il file di debug \'%s\' non è utilizzabile. Nessuna registrazione possibile (errore: \'%s\')'; $a->strings['Friendica can\'t display this page at the moment, please contact the administrator.'] = 'Friendica non piò mostrare questa pagina al momento, per favore contatta l\'amministratore.'; $a->strings['template engine cannot be registered without a name.'] = 'il motore di modelli non può essere registrato senza un nome.'; $a->strings['template engine is not registered!'] = 'il motore di modelli non è registrato!'; @@ -939,19 +625,6 @@ Bisogna sistemare le cose e non posso farlo da solo. Contatta uno sviluppatore se non sei in grado di aiutarmi. Il mio database potrebbe essere invalido.'; $a->strings['The error message is\n[pre]%s[/pre]'] = 'Il messaggio di errore è\n[pre]%s[/pre]'; $a->strings['[Friendica Notify] Database update'] = '[Notifica di Friendica] Aggiornamento database'; -$a->strings[' - The friendica database was successfully updated from %s to %s.'] = ' - Il database di friendica è stato aggiornato con succeso da %s a %s.'; -$a->strings['Error decoding account file'] = 'Errore decodificando il file account'; -$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?'; -$a->strings['User \'%s\' already exists on this server!'] = 'L\'utente \'%s\' esiste già su questo server!'; -$a->strings['User creation error'] = 'Errore creando l\'utente'; -$a->strings['%d contact not imported'] = [ - 0 => '%d contatto non importato', - 1 => '%d contatti non importati', -]; -$a->strings['User profile creation error'] = 'Errore durante la creazione del profilo dell\'utente'; -$a->strings['Done. You can now login with your username and password'] = 'Fatto. Ora puoi entrare con il tuo nome utente e la tua password'; $a->strings['The database version had been set to %s.'] = 'La versione del database è stata impostata come %s.'; $a->strings['The post update is at version %d, it has to be at %d to safely drop the tables.'] = 'Il post aggiornamento è alla versione %d, deve essere a %d per fare il drop delle tabelle in sicurezza.'; $a->strings['No unused tables found.'] = 'Nessuna tabella inutilizzata trovata.'; @@ -974,10 +647,11 @@ $a->strings['Unauthorized'] = 'Non autorizzato'; $a->strings['Token is not authorized with a valid user or is missing a required scope'] = 'Il token non è autorizzato con un utente valido o manca uno scopo richiesto'; $a->strings['Internal Server Error'] = 'Errore Interno del Server'; $a->strings['Legacy module file not found: %s'] = 'File del modulo legacy non trovato: %s'; -$a->strings['UnFollow'] = 'Smetti di seguire'; +$a->strings['Everybody'] = 'Tutti'; +$a->strings['edit'] = 'modifica'; +$a->strings['add'] = 'aggiungi'; $a->strings['Approve'] = 'Approva'; $a->strings['Organisation'] = 'Organizzazione'; -$a->strings['Forum'] = 'Forum'; $a->strings['Disallowed profile URL.'] = 'Indirizzo profilo non permesso.'; $a->strings['Blocked domain'] = 'Dominio bloccato'; $a->strings['Connect URL missing.'] = 'URL di connessione mancante.'; @@ -996,7 +670,12 @@ $a->strings['Starts:'] = 'Inizia:'; $a->strings['Finishes:'] = 'Finisce:'; $a->strings['all-day'] = 'tutto il giorno'; $a->strings['Sept'] = 'Set'; +$a->strings['today'] = 'oggi'; +$a->strings['month'] = 'mese'; +$a->strings['week'] = 'settimana'; +$a->strings['day'] = 'giorno'; $a->strings['No events to display'] = 'Nessun evento da mostrare'; +$a->strings['Access to this profile has been restricted.'] = 'L\'accesso a questo profilo è stato limitato.'; $a->strings['l, F j'] = 'l j F'; $a->strings['Edit event'] = 'Modifica evento'; $a->strings['Duplicate event'] = 'Duplica evento'; @@ -1008,16 +687,6 @@ $a->strings['Show map'] = 'Mostra mappa'; $a->strings['Hide map'] = 'Nascondi mappa'; $a->strings['%s\'s birthday'] = 'Compleanno di %s'; $a->strings['Happy Birthday %s'] = 'Buon compleanno %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.'] = 'Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso.'; -$a->strings['Default privacy group for new contacts'] = 'Gruppo predefinito per i nuovi contatti'; -$a->strings['Everybody'] = 'Tutti'; -$a->strings['edit'] = 'modifica'; -$a->strings['add'] = 'aggiungi'; -$a->strings['Edit group'] = 'Modifica gruppo'; -$a->strings['Contacts not in any group'] = 'Contatti in nessun gruppo.'; -$a->strings['Create a new group'] = 'Crea un nuovo gruppo'; -$a->strings['Group Name: '] = 'Nome del gruppo:'; -$a->strings['Edit groups'] = 'Modifica gruppi'; $a->strings['Detected languages in this post:\n%s'] = 'Lingue rilevate in questo messaggio:\n%s'; $a->strings['activity'] = 'attività'; $a->strings['comment'] = 'commento'; @@ -1026,6 +695,7 @@ $a->strings['Content warning: %s'] = 'Avviso contenuto: %s'; $a->strings['bytes'] = 'bytes'; $a->strings['View on separate page'] = 'Vedi in una pagina separata'; $a->strings['[no subject]'] = '[nessun oggetto]'; +$a->strings['Wall Photos'] = 'Foto della bacheca'; $a->strings['Edit profile'] = 'Modifica il profilo'; $a->strings['Change profile photo'] = 'Cambia la foto del profilo'; $a->strings['Homepage:'] = 'Homepage:'; @@ -1066,7 +736,6 @@ $a->strings['Not enough information to authenticate'] = 'Informazioni insufficie $a->strings['Password can\'t be empty'] = 'La password non può essere vuota'; $a->strings['Empty passwords are not allowed.'] = 'Password vuote non sono consentite.'; $a->strings['The new password has been exposed in a public data dump, please choose another.'] = 'La nuova password è stata esposta in un dump di dati pubblici, per favore scegline un\'altra.'; -$a->strings['The password can\'t contain accentuated letters, white spaces or colons (:)'] = 'La password non può contenere lettere accentate, spazi o due punti (:)'; $a->strings['Passwords do not match. Password unchanged.'] = 'Le password non corrispondono. Password non cambiata.'; $a->strings['An invitation is required.'] = 'E\' richiesto un invito.'; $a->strings['Invitation could not be verified.'] = 'L\'invito non può essere verificato.'; @@ -1078,10 +747,12 @@ $a->strings['system.username_min_length (%s) and system.username_max_length (%s) $a->strings['Username should be at least %s character.'] = [ 0 => 'Il nome utente dovrebbe essere lungo almeno %s carattere.', 1 => 'Il nome utente dovrebbe essere lungo almeno %s caratteri.', + 2 => 'Il nome utente dovrebbe essere lungo almeno %s caratteri.', ]; $a->strings['Username should be at most %s character.'] = [ 0 => 'Il nome utente dovrebbe essere lungo al massimo %s carattere.', 1 => 'Il nome utente dovrebbe essere lungo al massimo %s caratteri.', + 2 => 'Il nome utente dovrebbe essere lungo al massimo %s caratteri.', ]; $a->strings['That doesn\'t appear to be your full (First Last) name.'] = 'Questo non sembra essere il tuo nome completo (Nome Cognome).'; $a->strings['Your email domain is not among those allowed on this site.'] = 'Il dominio della tua email non è tra quelli autorizzati su questo sito.'; @@ -1094,65 +765,12 @@ $a->strings['An error occurred during registration. Please try again.'] = 'C\'è $a->strings['An error occurred creating your default profile. Please try again.'] = 'C\'è stato un errore nella creazione del tuo profilo. Prova ancora.'; $a->strings['An error occurred creating your self contact. Please try again.'] = 'C\'è stato un errore nella creazione del tuo contatto. Prova ancora.'; $a->strings['Friends'] = 'Amici'; -$a->strings['An error occurred creating your default contact group. Please try again.'] = 'C\'è stato un errore nella creazione del tuo gruppo contatti di default. Prova ancora.'; $a->strings['Profile Photos'] = 'Foto del profilo'; $a->strings[' Dear %1$s, the administrator of %2$s has set up an account for you.'] = ' Caro/a %1$s, l\'amministratore di %2$s ha impostato un account per te.'; -$a->strings[' - The login details are as follows: - - Site Location: %1$s - Login Name: %2$s - Password: %3$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %1$s/removeme - - Thank you and welcome to %4$s.'] = ' - I dettagli di accesso sono i seguenti: - - Indirizzo del Sito: %1$s - Nome Utente: %2$s - Password: %3$s - - Puoi cambiare la tua password dalla pagina "Impostazioni" del tuo account una volta effettuato l\'accesso - - Prenditi qualche momento per rivedere le impostazioni del tuo account in quella pagina. - - Puoi anche aggiungere se vuoi alcune informazioni di base al tuo profilo predefinito - (sulla pagina "Profili") così altre persone possono trovarti facilmente. - - Ti consigliamo di impostare il tuo nome completo, aggiungendo una foto di profilo, - aggiungendo alcune "parole chiave" del profilo (molto utile per farti nuovi amici) - e - magari in quale nazione vivi; se non vuoi essere più specifico - di così. - - Rispettiamo totalmente il tuo diritto alla privacy, e nessuno di questi campi è necessario. - Se sei nuovo e non conosci nessuno qui, potrebbero aiutarti - a farti nuovi e interessanti amici. - - Se volessi eliminare il tuo account, puoi farlo qui: %1$s/removeme - - Grazie e benvenuto/a su %4$s.'; $a->strings['Registration details for %s'] = 'Dettagli della registrazione di %s'; $a->strings[' Dear %1$s, @@ -1181,52 +799,6 @@ $a->strings[' Caro/a %1$s, Grazie per esserti registrato/a su %2$s. Il tuo account è stato creato. '; -$a->strings[' - The login details are as follows: - - Site Location: %3$s - Login Name: %1$s - Password: %5$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %3$s/removeme - - Thank you and welcome to %2$s.'] = ' -I dettagli del tuo utente sono: - Indirizzo del sito: %3$s - Nome utente:%1$s - Password:%5$s - -Puoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato. - -Per favore, prenditi qualche momento per esaminare tutte le impostazioni presenti. - -Potresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina "Profili"), così che le altre persone possano trovarti più facilmente. - -Ti raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così. - -Noi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria. -Se sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto. - - Se mai vorrai cancellare il tuo account, lo potrai fare su %3$s/removeme - -Grazie e benvenuto su %2$s'; $a->strings['Addon not found.'] = 'Componente aggiuntivo non trovato.'; $a->strings['Addon %s disabled.'] = 'Componente aggiuntivo %s disabilitato.'; $a->strings['Addon %s enabled.'] = 'Componente aggiuntivo %s abilitato.'; @@ -1239,90 +811,9 @@ $a->strings['Author: '] = 'Autore: '; $a->strings['Maintainer: '] = 'Manutentore: '; $a->strings['Addons reloaded'] = 'Componenti aggiuntivi ricaricati'; $a->strings['Addon %s failed to install.'] = 'Installazione del componente aggiuntivo %s non riuscita.'; +$a->strings['Save Settings'] = 'Salva Impostazioni'; $a->strings['Reload active addons'] = 'Ricarica componenti aggiuntivi attivi.'; $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'] = 'Non sono disponibili componenti aggiuntivi sul tuo nodo. Puoi trovare il repository ufficiale dei componenti aggiuntivi su %1$s e potresti trovare altri componenti aggiuntivi interessanti nell\'open addon repository su %2$s'; -$a->strings['List of all users'] = 'Elenco di tutti gli utenti'; -$a->strings['Active'] = 'Attivo'; -$a->strings['List of active accounts'] = 'Elenco degli account attivi'; -$a->strings['Pending'] = 'In sospeso'; -$a->strings['List of pending registrations'] = 'Elenco delle registrazioni in attesa'; -$a->strings['Blocked'] = 'Bloccato'; -$a->strings['List of blocked users'] = 'Elenco degli utenti bloccati'; -$a->strings['Deleted'] = 'Eliminato'; -$a->strings['List of pending user deletions'] = 'Elenco delle cancellazioni di utenti in attesa'; -$a->strings['Private Forum'] = 'Forum Privato'; -$a->strings['Relay'] = 'Relay'; -$a->strings['You can\'t block a local contact, please block the user instead'] = 'Non puoi bloccare un contatto locale, blocca invece l\'utente'; -$a->strings['%s contact unblocked'] = [ - 0 => '%s contatto sbloccato', - 1 => '%s contatti sbloccati', -]; -$a->strings['Remote Contact Blocklist'] = 'Blocklist Contatti Remoti'; -$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'Questa pagina ti permette di impedire che qualsiasi messaggio da un contatto remoto raggiunga il tuo nodo.'; -$a->strings['Block Remote Contact'] = 'Blocca Contatto Remoto'; -$a->strings['select all'] = 'seleziona tutti'; -$a->strings['select none'] = 'seleziona niente'; -$a->strings['Unblock'] = 'Sblocca'; -$a->strings['No remote contact is blocked from this node.'] = 'Nessun contatto remoto è bloccato da questo nodo.'; -$a->strings['Blocked Remote Contacts'] = 'Contatti Remoti Bloccati'; -$a->strings['Block New Remote Contact'] = 'Blocca Nuovo Contatto Remoto'; -$a->strings['Photo'] = 'Foto'; -$a->strings['Reason'] = 'Motivazione'; -$a->strings['%s total blocked contact'] = [ - 0 => '%scontatto bloccato totale', - 1 => '%scontatti bloccati totali', -]; -$a->strings['URL of the remote contact to block.'] = 'URL del contatto remoto da bloccare.'; -$a->strings['Also purge contact'] = 'Rimuovi anche contenuti contatto'; -$a->strings['Removes all content related to this contact from the node. Keeps the contact record. This action cannot be undone.'] = 'Rimuove tutto il contenuto relativo a questo contatto dal nodo. Mantiene il record del contatto. Questa azione non può essere annullata.'; -$a->strings['Block Reason'] = 'Motivazione del Blocco'; -$a->strings['Server domain pattern added to the blocklist.'] = 'Schema di dominio del server aggiunto alla blocklist.'; -$a->strings['%s server scheduled to be purged.'] = [ - 0 => '%s server in attesa di essere rimosso.', - 1 => '%s server in attesa di essere rimossi.', -]; -$a->strings['← Return to the list'] = '← Ritorna alla lista'; -$a->strings['Block A New Server Domain Pattern'] = 'Blocca Un Nuovo Server Per Schema di Dominio '; -$a->strings['

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

    -
      -
    • *: Any number of characters
    • -
    • ?: Any single character
    • -
    '] = '

    La sintassi dello schema di dominio server usa i caratteri jolly e non tiene conto di maiuscole e minuscole, e comprende i seguenti caratteri speciali:

    -
      -
    • *: Qualsiasi numero di caratteri
    • -
    • ?: Qualsiasi singolo carattere
    • -
    '; -$a->strings['Check pattern'] = 'Controlla schema'; -$a->strings['Matching known servers'] = 'Server conosciuti corrispondenti'; -$a->strings['Server Name'] = 'Nome del Server'; -$a->strings['Server Domain'] = 'Dominio del Server'; -$a->strings['Known Contacts'] = 'Contatti Conosciuti'; -$a->strings['%d known server'] = [ - 0 => '%d server conosciuto', - 1 => '%d server conosciuti', -]; -$a->strings['Add pattern to the blocklist'] = 'Aggiungi schema alla blocklist'; -$a->strings['Server Domain Pattern'] = 'Schema di Dominio di Server'; -$a->strings['The domain pattern of the new server to add to the blocklist. Do not include the protocol.'] = 'Lo schema di dominio del nuovo server da aggiungere alla blocklist. Non includere il protocollo.'; -$a->strings['Purge server'] = 'Rimuovi contenuti server'; -$a->strings['Also purges all the locally stored content authored by the known contacts registered on that server. Keeps the contacts and the server records. This action cannot be undone.'] = [ - 0 => 'Rimuove completamente anche i contenuti salvati localmente creati dai contatti conosciuti registrati sul server. Mantiene i record dei contatti e del server. Questa azione non può essere annullata.', - 1 => 'Rimuove completamente anche i contenuti salvati localmente creati dai contatti conosciuti registrati su questi server. Mantiene i record dei contatti e dei server. Questa azione non può essere annullata.', -]; -$a->strings['Block reason'] = 'Ragione blocco'; -$a->strings['The reason why you blocked this server domain pattern. This reason will be shown publicly in the server information page.'] = 'La ragione per cui hai bloccato questo schema di dominio. Questa motivazione verrà mostrata pubblicamente nella pagina di informazione del server.'; -$a->strings['Blocked server domain pattern'] = 'Schema di dominio del server bloccato'; -$a->strings['Reason for the block'] = 'Motivazione del blocco'; -$a->strings['Delete server domain pattern'] = 'Elimina schema di dominio server'; -$a->strings['Check to delete this entry from the blocklist'] = 'Seleziona per eliminare questa voce dalla blocklist'; -$a->strings['Server Domain Pattern Blocklist'] = 'Blocklist degli Schemi di Dominio di Server'; -$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.'] = 'Questa pagina può essere utilizzata per definire una blocklist di schemi di server di dominio della rete federata ai quali non è consentito interagire con questo nodo. Per ogni schema di dominio dovresti anche fornire la motivazione per la quale lo hai bloccato.'; -$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.'] = 'La lista degli schemi di dominio di server bloccati sarà resa pubblicamente disponibile sulla pagina /friendica in modo che i tuoi utenti e persone che cercano soluzioni ai problemi di comunicazione possano trovare la motivazione facilmente.'; -$a->strings['Add new entry to the blocklist'] = 'Aggiungi nuova voce alla blocklist'; -$a->strings['Save changes to the blocklist'] = 'Salva modifiche alla blocklist'; -$a->strings['Current Entries in the Blocklist'] = 'Voci correnti nella blocklist'; -$a->strings['Delete entry from the blocklist'] = 'Elimina voce dalla blocklist'; -$a->strings['Delete entry from the blocklist?'] = 'Eliminare la voce dalla blocklist?'; $a->strings['Update has been marked successful'] = 'L\'aggiornamento è stato segnato come di successo'; $a->strings['Database structure update %s was successfully applied.'] = 'Aggiornamento struttura database %s applicata con successo.'; $a->strings['Executing of database structure update %s failed with error: %s'] = 'Aggiornamento struttura database %s fallita con errore: %s'; @@ -1342,26 +833,6 @@ $a->strings['Other'] = 'Altro'; $a->strings['unknown'] = 'sconosciuto'; $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.'] = 'Questa pagina offre alcuni numeri riguardo la porzione del social network federato di cui il tuo nodo Friendica fa parte. Questi numeri non sono completi ma riflettono esclusivamente la porzione di rete di cui il tuo nodo e\' a conoscenza.'; $a->strings['Federation Statistics'] = 'Statistiche sulla Federazione'; -$a->strings['Currently this node is aware of %d nodes with %d registered users from the following platforms:'] = 'Attualmente questo nodo conosce %d nodi con %d utenti registrati dalle seguenti piattaforme:'; -$a->strings['Item marked for deletion.'] = 'Elemento selezionato per l\'eliminazione.'; -$a->strings['Delete Item'] = 'Rimuovi elemento'; -$a->strings['Delete this Item'] = 'Rimuovi questo elemento'; -$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.'] = 'Su questa pagina puoi cancellare un qualsiasi elemento dal tuo nodo. Se l\'elemento è un messaggio di primo livello, l\'intera discussione sarà cancellata.'; -$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.'] = 'Serve il GUID dell\'elemento. Lo puoi trovare, per esempio, guardando l\'URL display: l\'ultima parte di http://example.com/display/123456 è il GUID, qui 123456.'; -$a->strings['GUID'] = 'GUID'; -$a->strings['The GUID of the item you want to delete.'] = 'Il GUID dell\'elemento che vuoi cancellare.'; -$a->strings['Item Source'] = 'Sorgente Oggetto'; -$a->strings['Item Guid'] = 'Item Guid'; -$a->strings['Item Id'] = 'Item Id'; -$a->strings['Item URI'] = 'Item URI'; -$a->strings['Terms'] = 'Termini'; -$a->strings['Tag'] = 'Etichetta'; -$a->strings['Type'] = 'Tipo'; -$a->strings['Term'] = 'Termine'; -$a->strings['URL'] = 'URL'; -$a->strings['Mention'] = 'Menzione'; -$a->strings['Implicit Mention'] = 'Menzione Implicita'; -$a->strings['Source'] = 'Sorgente'; $a->strings['The logfile \'%s\' is not writable. No logging possible'] = 'Il file di registro \'%s\' non è scrivibile. Nessuna registrazione possibile'; $a->strings['PHP log currently enabled.'] = 'Log PHP abilitato.'; $a->strings['PHP log currently disabled.'] = 'Log PHP disabilitato'; @@ -1384,7 +855,9 @@ $a->strings['Context'] = 'Contesto'; $a->strings['ALL'] = 'TUTTI'; $a->strings['View details'] = 'Vedi dettagli'; $a->strings['Click to view details'] = 'Clicca per vedere i dettagli'; +$a->strings['Event details'] = 'Dettagli dell\'evento'; $a->strings['Data'] = 'Dati'; +$a->strings['Source'] = 'Sorgente'; $a->strings['File'] = 'File'; $a->strings['Line'] = 'Linea'; $a->strings['Function'] = 'Funzione'; @@ -1398,12 +871,10 @@ $a->strings['This page lists the currently queued worker jobs. These jobs are ha $a->strings['ID'] = 'ID'; $a->strings['Command'] = 'Comando'; $a->strings['Job Parameters'] = 'Parametri lavoro'; +$a->strings['Created'] = 'Creato'; $a->strings['Priority'] = 'Priorità'; -$a->strings['Can not parse base url. Must have at least ://'] = 'Impossibile analizzare l\'url base. Deve avere almeno [schema]://[dominio]'; -$a->strings['Relocation started. Could take a while to complete.'] = 'Riallocazione iniziata. Potrebbe volerci un po\'.'; $a->strings['No special theme for mobile devices'] = 'Nessun tema speciale per i dispositivi mobili'; $a->strings['%s - (Experimental)'] = '%s - (Sperimentale)'; -$a->strings['No community page for local users'] = 'Nessuna pagina di comunità per gli utenti locali'; $a->strings['No community page'] = 'Nessuna pagina Comunità'; $a->strings['Public postings from users of this site'] = 'Messaggi pubblici dagli utenti di questo sito'; $a->strings['Public postings from the federated network'] = 'Messaggi pubblici dalla rete federata'; @@ -1412,9 +883,6 @@ $a->strings['Multi user instance'] = 'Istanza multi utente'; $a->strings['Closed'] = 'Chiusa'; $a->strings['Requires approval'] = 'Richiede l\'approvazione'; $a->strings['Open'] = 'Aperta'; -$a->strings['No SSL policy, links will track page SSL state'] = 'Nessuna gestione SSL, i collegamenti seguiranno lo stato SSL della pagina'; -$a->strings['Force all links to use SSL'] = 'Forza tutti i collegamenti ad usare SSL'; -$a->strings['Self-signed certificate, use SSL for local links only (discouraged)'] = 'Certificato auto-firmato, usa SSL solo per i collegamenti locali (sconsigliato)'; $a->strings['Don\'t check'] = 'Non controllare'; $a->strings['check the stable version'] = 'controlla la versione stabile'; $a->strings['check the development version'] = 'controlla la versione di sviluppo'; @@ -1427,6 +895,7 @@ $a->strings['Republish users to directory'] = 'Ripubblica gli utenti sulla direc $a->strings['Registration'] = 'Registrazione'; $a->strings['File upload'] = 'Caricamento file'; $a->strings['Policies'] = 'Politiche'; +$a->strings['Advanced'] = 'Avanzate'; $a->strings['Auto Discovered Contact Directory'] = 'Elenco Contatti Scoperto Automaticamente'; $a->strings['Performance'] = 'Performance'; $a->strings['Worker'] = 'Worker'; @@ -1434,8 +903,6 @@ $a->strings['Message Relay'] = 'Relay Messaggio'; $a->strings['Use the command "console relay" in the command line to add or remove relays.'] = 'Usa il comando "console relay" da riga di comando per aggiungere o rimuovere i relay.'; $a->strings['The system is not subscribed to any relays at the moment.'] = 'Il sistema non è iscritto a nessun relay al momento.'; $a->strings['The system is currently subscribed to the following relays:'] = 'Il sistema è iscritto ai seguenti relay:'; -$a->strings['Relocate Instance'] = 'Trasloca Istanza'; -$a->strings['Warning! Advanced function. Could make this server unreachable.'] = 'Attenzione! Funzione avanzata. Può rendere questo server irraggiungibile.'; $a->strings['Site name'] = 'Nome del sito'; $a->strings['Sender Email'] = 'Mittente email'; $a->strings['The email address your server shall use to send notification emails from.'] = 'L\'indirizzo email che il tuo server dovrà usare per inviare notifiche via email.'; @@ -1451,18 +918,14 @@ $a->strings['Additional Info'] = 'Informazioni aggiuntive'; $a->strings['For public servers: you can add additional information here that will be listed at %s/servers.'] = 'Per server pubblici: puoi aggiungere informazioni extra che verranno mostrate su %s/servers.'; $a->strings['System language'] = 'Lingua di sistema'; $a->strings['System theme'] = 'Tema di sistema'; -$a->strings['Default system theme - may be over-ridden by user profiles - Change default theme settings'] = 'Tema predefinito di sistema - può essere sovrascritto dai profili utente - Cambia impostazioni del tema predefinito'; $a->strings['Mobile system theme'] = 'Tema mobile di sistema'; $a->strings['Theme for mobile devices'] = 'Tema per dispositivi mobili'; -$a->strings['SSL link policy'] = 'Gestione collegamenti SSL'; -$a->strings['Determines whether generated links should be forced to use SSL'] = 'Determina se i collegamenti generati devono essere forzati a usare SSL'; $a->strings['Force SSL'] = 'Forza SSL'; $a->strings['Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'] = 'Forza tutte le richieste non SSL su SSL - Attenzione: su alcuni sistemi può portare a loop senza fine'; $a->strings['Show help entry from navigation menu'] = 'Mostra la voce Guida nel menu di navigazione'; $a->strings['Single user instance'] = 'Istanza a singolo utente'; $a->strings['Make this instance multi-user or single-user for the named user'] = 'Rendi questa istanza multi utente o a singolo utente per l\'utente selezionato'; $a->strings['Maximum image size'] = 'Massima dimensione immagini'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite.'; $a->strings['Maximum image length'] = 'Massima lunghezza immagine'; $a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite.'; $a->strings['JPEG image quality'] = 'Qualità immagini JPEG'; @@ -1492,7 +955,6 @@ $a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Abilitare $a->strings['Global directory URL'] = 'URL della directory globale'; $a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'URL dell\'elenco globale. Se vuoto, l\'elenco globale sarà completamente disabilitato.'; $a->strings['Private posts by default for new users'] = 'Messaggi privati come impostazioni predefinita per i nuovi utenti'; -$a->strings['Set default post permissions for all new members to the default privacy group rather than public.'] = 'Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici.'; $a->strings['Don\'t include post content in email notifications'] = 'Non includere il contenuto dei messaggi nelle notifiche via email'; $a->strings['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.'] = 'Non include il contenuti del messaggio/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy'; $a->strings['Disallow public access to addons listed in the apps menu.'] = 'Disabilita l\'accesso pubblico ai plugin raccolti nel menu apps.'; @@ -1557,8 +1019,6 @@ $a->strings['Temp path'] = 'Percorso file temporanei'; $a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Se si dispone di un sistema ristretto in cui il server web non può accedere al percorso temporaneo di sistema, inserire un altro percorso qui.'; $a->strings['Only search in tags'] = 'Cerca solo nei tag'; $a->strings['On large systems the text search can slow down the system extremely.'] = 'Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema.'; -$a->strings['New base url'] = 'Nuovo url base'; -$a->strings['Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users.'] = 'Cambia l\'URL base di questo server. Invia il messaggio di trasloco a tutti i contatti Friendica e Diaspora* di tutti gli utenti.'; $a->strings['Maximum number of parallel workers'] = 'Massimo numero di lavori in parallelo'; $a->strings['On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d.'] = 'Con hosting condiviso, imposta a %d. Su sistemi più grandi, vanno bene valori come %d. Il valore di default è %d.'; $a->strings['Enable fastlane'] = 'Abilita fastlane'; @@ -1591,21 +1051,11 @@ $a->strings['The last worker execution was on %s UTC. This is older than one hou $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.'] = 'La configurazione di Friendica è adesso salvata in config/local.config.php: copia config/local-sample.config.php e sposta la tua configurazione da .htconfig.php. Vedi la pagina della guida sulla Configurazione per avere aiuto con la transizione.'; $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.'] = 'La configurazione di Friendica è adesso salvata in config/local.config.php: copia config/local-sample.config.php e sposta la tua configurazione da config/local.ini.php. Vedi la pagina della guida sulla Configurazione per avere aiuto con la transizione.'; $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.'] = '%s non è raggiungibile sul tuo sistema. È un grave problema di configurazione che impedisce la comunicazione da server a server. Vedi la pagina sull\'installazione per un aiuto.'; -$a->strings['The logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Il file di registro \'%s\' non è utilizzabile. Nessuna registrazione possibile (errore: \'%s\')'; -$a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Il file di debug \'%s\' non è utilizzabile. Nessuna registrazione possibile (errore: \'%s\')'; $a->strings['Friendica\'s system.basepath was updated from \'%s\' to \'%s\'. Please remove the system.basepath from your db to avoid differences.'] = 'La system.basepath di Friendica è stata aggiornata da \'%s\' a \'%s\'. Per favore rimuovi la system.basepath dal tuo db per evitare differenze.'; $a->strings['Friendica\'s current system.basepath \'%s\' is wrong and the config file \'%s\' isn\'t used.'] = 'L\'attuale system.basepath di Friendica \'%s\' è errata e il file di configurazione \'%s\' non è utilizzato.'; $a->strings['Friendica\'s current system.basepath \'%s\' is not equal to the config file \'%s\'. Please fix your configuration.'] = 'L\'attuale system.basepath di Friendica \'%s\' non è uguale a quella del file di configurazione \'%s\'. Per favore correggi la tua configurazione.'; -$a->strings['Normal Account'] = 'Account normale'; -$a->strings['Automatic Follower Account'] = 'Account Follower Automatico'; -$a->strings['Public Forum Account'] = 'Account Forum Publico'; -$a->strings['Automatic Friend Account'] = 'Account per amicizia automatizzato'; -$a->strings['Blog Account'] = 'Account Blog'; -$a->strings['Private Forum Account'] = 'Account Forum Privato'; $a->strings['Message queues'] = 'Code messaggi'; $a->strings['Server Settings'] = 'Impostazioni Server'; -$a->strings['Registered users'] = 'Utenti registrati'; -$a->strings['Pending registrations'] = 'Registrazioni in attesa'; $a->strings['Version'] = 'Versione'; $a->strings['Active addons'] = 'Componenti aggiuntivi attivi'; $a->strings['Theme %s disabled.'] = 'Tema %s disabilitato.'; @@ -1626,64 +1076,9 @@ $a->strings['Show some informations regarding the needed information to operate $a->strings['Privacy Statement Preview'] = 'Anteprima Informativa sulla Privacy'; $a->strings['The Terms of Service'] = 'I Termini di Servizio'; $a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = 'Inserisci i Termini di Servizio del tuo nodo qui. Puoi usare BBCode. Le intestazioni delle sezioni dovrebbero partire da [h2].'; -$a->strings['%s user blocked'] = [ - 0 => '%s utente bloccato', - 1 => '%s utenti bloccati', -]; -$a->strings['You can\'t remove yourself'] = 'Non puoi rimuovere te stesso'; -$a->strings['%s user deleted'] = [ - 0 => '%s utente cancellato', - 1 => '%s utenti cancellati', -]; -$a->strings['User "%s" deleted'] = 'Utente "%s" eliminato'; -$a->strings['User "%s" blocked'] = 'Utente "%s" bloccato'; -$a->strings['Register date'] = 'Data registrazione'; -$a->strings['Last login'] = 'Ultimo accesso'; -$a->strings['Last public item'] = 'Ultimo elemento pubblico'; -$a->strings['Active Accounts'] = 'Account attivi'; -$a->strings['User blocked'] = 'Utente bloccato'; -$a->strings['Site admin'] = 'Amministrazione sito'; -$a->strings['Account expired'] = 'Account scaduto'; -$a->strings['Create a new user'] = 'Crea un nuovo utente'; -$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Gli utenti selezionati saranno cancellati!\n\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\n\nSei sicuro?'; -$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'L\'utente {0} sarà cancellato!\n\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\n\nSei sicuro?'; -$a->strings['%s user unblocked'] = [ - 0 => '%s utente sbloccato', - 1 => '%s utenti sbloccati', -]; -$a->strings['User "%s" unblocked'] = 'Utente "%s" sbloccato'; -$a->strings['Blocked Users'] = 'Utenti bloccati'; -$a->strings['New User'] = 'Nuovo Utente'; -$a->strings['Add User'] = 'Aggiungi utente'; -$a->strings['Name of the new user.'] = 'Nome del nuovo utente.'; -$a->strings['Nickname'] = 'Nome utente'; -$a->strings['Nickname of the new user.'] = 'Nome utente del nuovo utente.'; -$a->strings['Email address of the new user.'] = 'Indirizzo Email del nuovo utente.'; -$a->strings['Users awaiting permanent deletion'] = 'Utenti in attesa della cancellazione definitiva'; -$a->strings['Permanent deletion'] = 'Cancellazione permanente'; -$a->strings['Users'] = 'Utenti'; -$a->strings['User waiting for permanent deletion'] = 'Utente in attesa di cancellazione definitiva'; -$a->strings['%s user approved'] = [ - 0 => '%s utente approvato', - 1 => '%s utenti approvati', -]; -$a->strings['%s registration revoked'] = [ - 0 => '%s registrazione revocata', - 1 => '%s registrazioni revocate', -]; -$a->strings['Account approved.'] = 'Account approvato.'; -$a->strings['Registration revoked'] = 'Registrazione revocata'; -$a->strings['User registrations awaiting review'] = 'Registrazioni utente in attesa di verifica'; -$a->strings['Request date'] = 'Data richiesta'; -$a->strings['No registrations.'] = 'Nessuna registrazione.'; -$a->strings['Note from the user'] = 'Nota dall\'utente'; -$a->strings['Deny'] = 'Nega'; -$a->strings['API endpoint %s %s is not implemented'] = 'L\'endpoint API %s%s non è implementato'; -$a->strings['The API endpoint is currently not implemented but might be in the future.'] = 'L\'endpoint API attualmente non è implementato ma potrebbe esserlo in futuro.'; $a->strings['Missing parameters'] = 'Parametri mancanti'; $a->strings['Only starting posts can be bookmarked'] = 'Solo i messaggi iniziali possono essere aggiunti ai preferiti'; $a->strings['Only starting posts can be muted'] = 'Solo i messaggi iniziali possono essere silenziati'; -$a->strings['Only starting posts can be pinned'] = 'Solo i messaggi iniziali possono essere messi in evidenza'; $a->strings['Posts from %s can\'t be shared'] = 'I messaggi da %s non possono essere condivisi'; $a->strings['Only starting posts can be unbookmarked'] = 'Solo i messaggi iniziali possono essere rimossi dai preferiti'; $a->strings['Only starting posts can be unmuted'] = 'Solo i messaggi iniziali possono essere de-silenziati'; @@ -1702,9 +1097,6 @@ $a->strings['Database'] = 'Database'; $a->strings['DB updates'] = 'Aggiornamenti Database'; $a->strings['Inspect Deferred Workers'] = 'Analizza i lavori rinviati'; $a->strings['Inspect worker Queue'] = 'Analizza coda lavori'; -$a->strings['Tools'] = 'Strumenti'; -$a->strings['Contact Blocklist'] = 'Blocklist Contatti'; -$a->strings['Server Blocklist'] = 'Server Blocklist'; $a->strings['Diagnostics'] = 'Diagnostiche'; $a->strings['PHP Info'] = 'Info PHP'; $a->strings['probe address'] = 'controlla indirizzo'; @@ -1716,32 +1108,67 @@ $a->strings['User registrations waiting for confirmation'] = 'Utenti registrati $a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ 0 => 'Limite giornaliero di %d messaggio raggiunto. Il messaggio è stato rifiutato', 1 => 'Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato.', + 2 => 'Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato.', ]; $a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ 0 => 'Limite settimanale di %d messaggio raggiunto. Il messaggio è stato rifiutato', 1 => 'Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato.', + 2 => 'Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato.', ]; -$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = 'Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato.'; +$a->strings['Users'] = 'Utenti'; +$a->strings['Tools'] = 'Strumenti'; +$a->strings['Contact Blocklist'] = 'Blocklist Contatti'; +$a->strings['Server Blocklist'] = 'Server Blocklist'; +$a->strings['Delete Item'] = 'Rimuovi elemento'; +$a->strings['Item Source'] = 'Sorgente Oggetto'; $a->strings['Profile Details'] = 'Dettagli del profilo'; $a->strings['Only You Can See This'] = 'Solo tu puoi vedere questo'; $a->strings['Tips for New Members'] = 'Consigli per i Nuovi Utenti'; $a->strings['People Search - %s'] = 'Cerca persone - %s'; -$a->strings['Forum Search - %s'] = 'Ricerca Forum - %s'; +$a->strings['No matches'] = 'Nessun risultato'; $a->strings['Account'] = 'Account'; $a->strings['Two-factor authentication'] = 'Autenticazione a due fattori'; $a->strings['Display'] = 'Visualizzazione'; +$a->strings['Social Networks'] = 'Social Networks'; $a->strings['Manage Accounts'] = 'Gestisci Account'; $a->strings['Connected apps'] = 'Applicazioni collegate'; $a->strings['Export personal data'] = 'Esporta dati personali'; $a->strings['Remove account'] = 'Rimuovi account'; $a->strings['This page is missing a url parameter.'] = 'A questa pagina manca il parametro url.'; $a->strings['The post was created'] = 'Il messaggio è stato creato'; +$a->strings['Failed to remove event'] = 'Rimozione evento fallita.'; +$a->strings['Event can not end before it has started.'] = 'Un evento non può finire prima di iniziare.'; +$a->strings['Event title and start time are required.'] = 'Titolo e ora di inizio dell\'evento sono richiesti.'; +$a->strings['Starting date and Title are required.'] = 'La data di inizio e il titolo sono richiesti.'; +$a->strings['Event Starts:'] = 'L\'evento inizia:'; +$a->strings['Required'] = 'Richiesto'; +$a->strings['Finish date/time is not known or not relevant'] = 'La data/ora di fine non è definita'; +$a->strings['Event Finishes:'] = 'L\'evento finisce:'; +$a->strings['Share this event'] = 'Condividi questo evento'; +$a->strings['Basic'] = 'Base'; +$a->strings['This calendar format is not supported'] = 'Questo formato di calendario non è supportato'; +$a->strings['No exportable data found'] = 'Nessun dato esportabile trovato'; +$a->strings['calendar'] = 'calendario'; +$a->strings['Events'] = 'Eventi'; +$a->strings['View'] = 'Mostra'; +$a->strings['Create New Event'] = 'Crea un nuovo evento'; +$a->strings['list'] = 'lista'; +$a->strings['Contact not found.'] = 'Contatto non trovato.'; +$a->strings['Invalid contact.'] = 'Contatto non valido.'; +$a->strings['Contact is deleted.'] = 'Contatto eliminato.'; +$a->strings['Bad request.'] = 'Richiesta sbagliata.'; +$a->strings['Filter'] = 'Filtro'; +$a->strings['Members'] = 'Membri'; +$a->strings['Click on a contact to add or remove.'] = 'Clicca su un contatto per aggiungerlo o rimuoverlo.'; $a->strings['%d contact edited.'] = [ 0 => '%d contatto modificato.', 1 => '%d contatti modificati', + 2 => '%d contatti modificati', ]; $a->strings['Show all contacts'] = 'Mostra tutti i contatti'; +$a->strings['Pending'] = 'In sospeso'; $a->strings['Only show pending contacts'] = 'Mostra solo contatti in sospeso'; +$a->strings['Blocked'] = 'Bloccato'; $a->strings['Only show blocked contacts'] = 'Mostra solo contatti bloccati'; $a->strings['Ignored'] = 'Ignorato'; $a->strings['Only show ignored contacts'] = 'Mostra solo contatti ignorati'; @@ -1749,10 +1176,10 @@ $a->strings['Archived'] = 'Archiviato'; $a->strings['Only show archived contacts'] = 'Mostra solo contatti archiviati'; $a->strings['Hidden'] = 'Nascosto'; $a->strings['Only show hidden contacts'] = 'Mostra solo contatti nascosti'; -$a->strings['Organize your contact groups'] = 'Organizza i tuoi gruppi di contatti'; $a->strings['Search your contacts'] = 'Cerca nei tuoi contatti'; $a->strings['Results for: %s'] = 'Risultati per: %s'; $a->strings['Update'] = 'Aggiorna'; +$a->strings['Unblock'] = 'Sblocca'; $a->strings['Unignore'] = 'Non ignorare'; $a->strings['Batch Actions'] = 'Azioni Batch'; $a->strings['Conversations started by this contact'] = 'Conversazioni iniziate da questo contatto'; @@ -1767,41 +1194,56 @@ $a->strings['Pending incoming contact request'] = 'Richiesta di contatto in arri $a->strings['Visit %s\'s profile [%s]'] = 'Visita il profilo di %s [%s]'; $a->strings['Contact update failed.'] = 'Le modifiche al contatto non sono state salvate.'; $a->strings['Return to contact editor'] = 'Ritorna alla modifica contatto'; +$a->strings['Name'] = 'Nome'; $a->strings['Account Nickname'] = 'Nome utente'; $a->strings['Account URL'] = 'URL dell\'utente'; $a->strings['Poll/Feed URL'] = 'URL Feed'; $a->strings['New photo from this URL'] = 'Nuova foto da questo URL'; -$a->strings['Invalid contact.'] = 'Contatto non valido.'; $a->strings['No known contacts.'] = 'Nessun contatto conosciuto.'; $a->strings['No common contacts.'] = 'Nessun contatto in comune.'; $a->strings['Follower (%s)'] = [ 0 => 'Seguace (%s)', 1 => 'Seguaci (%s)', + 2 => 'Seguaci (%s)', ]; $a->strings['Following (%s)'] = [ 0 => 'Seguendo (%s)', 1 => 'Seguendo (%s)', + 2 => 'Seguendo (%s)', ]; $a->strings['Mutual friend (%s)'] = [ 0 => 'Amico reciproco (%s)', 1 => 'Amici reciproci (%s)', + 2 => 'Amici reciproci (%s)', ]; $a->strings['These contacts both follow and are followed by %s.'] = 'Questi contatti seguono e sono seguiti da %s.'; $a->strings['Common contact (%s)'] = [ 0 => 'Contatto in comune (%s)', 1 => 'Contatti in comune (%s)', + 2 => 'Contatti in comune (%s)', ]; $a->strings['Both %s and yourself have publicly interacted with these contacts (follow, comment or likes on public posts).'] = 'Sia tu che %s avete pubblicamente interagito con questi contatti (seguendo, commentando o mettendo mi piace su messaggi pubblici).'; $a->strings['Contact (%s)'] = [ 0 => 'Contatto (%s)', 1 => 'Contatti (%s)', + 2 => 'Contatti (%s)', ]; -$a->strings['Error while sending poke, please retry.'] = 'Errore durante l\'invio dello stuzzicamento, per favore riprova.'; -$a->strings['You must be logged in to use this module.'] = 'Devi aver essere autenticato per usare questo modulo.'; -$a->strings['Poke/Prod'] = 'Tocca/Pungola'; -$a->strings['poke, prod or do other things to somebody'] = 'tocca, pungola o fai altre cose a qualcuno'; -$a->strings['Choose what you wish to do to recipient'] = 'Scegli cosa vuoi fare al destinatario'; -$a->strings['Make this post private'] = 'Rendi questo messaggio privato'; +$a->strings['Access denied.'] = 'Accesso negato.'; +$a->strings['Submit Request'] = 'Invia richiesta'; +$a->strings['You already added this contact.'] = 'Hai già aggiunto questo contatto.'; +$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Non è possibile rilevare il tipo di rete. Il contatto non può essere aggiunto.'; +$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Il supporto Diaspora non è abilitato. Il contatto non può essere aggiunto.'; +$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Il supporto OStatus non è abilitato. Il contatto non può essere aggiunto.'; +$a->strings['Please answer the following:'] = 'Rispondi:'; +$a->strings['Your Identity Address:'] = 'L\'indirizzo della tua identità:'; +$a->strings['Profile URL'] = 'URL Profilo'; +$a->strings['Tags:'] = 'Tag:'; +$a->strings['%s knows you'] = '%s ti conosce'; +$a->strings['Add a personal note:'] = 'Aggiungi una nota personale:'; +$a->strings['The contact could not be added.'] = 'Il contatto non può essere aggiunto.'; +$a->strings['Invalid request.'] = 'Richiesta non valida.'; +$a->strings['No keywords to match. Please add keywords to your profile.'] = 'Nessuna parola chiave corrisponde. Per favore aggiungi parole chiave al tuo profilo.'; +$a->strings['Profile Match'] = 'Profili corrispondenti'; $a->strings['Failed to update contact record.'] = 'Errore nell\'aggiornamento del contatto.'; $a->strings['Contact has been unblocked'] = 'Il contatto è stato sbloccato'; $a->strings['Contact has been blocked'] = 'Il contatto è stato bloccato'; @@ -1823,7 +1265,6 @@ $a->strings['Fetch information'] = 'Recupera informazioni'; $a->strings['Fetch keywords'] = 'Recupera parole chiave'; $a->strings['Fetch information and keywords'] = 'Recupera informazioni e parole chiave'; $a->strings['No mirroring'] = 'Non duplicare'; -$a->strings['Mirror as forwarded posting'] = 'Duplica come messaggi ricondivisi'; $a->strings['Mirror as my own posting'] = 'Duplica come miei messaggi'; $a->strings['Native reshare'] = 'Ricondivisione nativa'; $a->strings['Contact Information / Notes'] = 'Informazioni / Note sul contatto'; @@ -1837,10 +1278,10 @@ $a->strings['View conversations'] = 'Vedi conversazioni'; $a->strings['Last update:'] = 'Ultimo aggiornamento:'; $a->strings['Update public posts'] = 'Aggiorna messaggi pubblici'; $a->strings['Update now'] = 'Aggiorna adesso'; +$a->strings['Awaiting connection acknowledge'] = 'In attesa di conferma della connessione'; $a->strings['Currently blocked'] = 'Bloccato'; $a->strings['Currently ignored'] = 'Ignorato'; $a->strings['Currently archived'] = 'Al momento archiviato'; -$a->strings['Awaiting connection acknowledge'] = 'In attesa di conferma della connessione'; $a->strings['Hide this contact from others'] = 'Nascondi questo contatto agli altri'; $a->strings['Replies/likes to your public posts may still be visible'] = 'Risposte/Mi Piace ai tuoi messaggi pubblici possono essere comunque visibili'; $a->strings['Notification for new posts'] = 'Notifica per i nuovi messaggi'; @@ -1848,34 +1289,27 @@ $a->strings['Send a notification of every new post of this contact'] = 'Invia un $a->strings['Keyword Deny List'] = 'Elenco di Parole Chiave Negate'; $a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Lista separata da virgola di parole chiave che non dovranno essere convertite in hashtag, quando "Recupera informazioni e parole chiave" è selezionato'; $a->strings['Actions'] = 'Azioni'; +$a->strings['Status'] = 'Stato'; $a->strings['Mirror postings from this contact'] = 'Ripeti i messaggi di questo contatto'; $a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'Imposta questo contatto come \'io remoto\', questo farà si che friendica re invii i nuovi messaggi da questo contatto.'; $a->strings['Refetch contact data'] = 'Ricarica dati contatto'; $a->strings['Toggle Blocked status'] = 'Inverti stato "Blocca"'; $a->strings['Toggle Ignored status'] = 'Inverti stato "Ignora"'; -$a->strings['Contact is deleted.'] = 'Contatto eliminato.'; +$a->strings['Bad Request.'] = 'Richiesta Errata.'; $a->strings['Yes'] = 'Si'; -$a->strings['Local Community'] = 'Comunità Locale'; -$a->strings['Posts from local users on this server'] = 'Messaggi dagli utenti locali su questo sito'; -$a->strings['Global Community'] = 'Comunità Globale'; -$a->strings['Posts from users of the whole federated network'] = 'Messaggi dagli utenti della rete federata'; -$a->strings['Own Contacts'] = 'Propri Contatti'; -$a->strings['Include'] = 'Includi'; -$a->strings['Hide'] = 'Nascondi'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore.'; +$a->strings['You aren\'t following this contact.'] = 'Non stai seguendo questo contatto.'; +$a->strings['Unfollowing is currently not supported by your network.'] = 'Smettere di seguire non è al momento supportato dalla tua rete.'; +$a->strings['Disconnect/Unfollow'] = 'Disconnetti/Non Seguire'; +$a->strings['Contact was successfully unfollowed'] = 'Il contatto non è più seguito'; +$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Impossibile smettere di seguire questo contatto, contatta il tuo amministratore'; $a->strings['No results.'] = 'Nessun risultato.'; $a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'Questa pagina comunità mostra tutti i messaggi pubblici ricevuti da questo nodo. Potrebbero non riflettere le opinioni degli utenti di questo nodo.'; $a->strings['Community option not available.'] = 'Opzione Comunità non disponibile'; $a->strings['Not available.'] = 'Non disponibile.'; -$a->strings['No such group'] = 'Nessun gruppo'; -$a->strings['Group: %s'] = 'Gruppo: %s'; -$a->strings['Latest Activity'] = 'Ultima Attività'; -$a->strings['Sort by latest activity'] = 'Ordina per ultima attività'; -$a->strings['Latest Posts'] = 'Ultimi Messaggi'; -$a->strings['Sort by post received date'] = 'Ordina per data di ricezione del messaggio'; -$a->strings['Personal'] = 'Personale'; -$a->strings['Posts that mention or involve you'] = 'Messaggi che ti citano o coinvolgono'; -$a->strings['Starred'] = 'Preferiti'; -$a->strings['Favourite Posts'] = 'Messaggi preferiti'; +$a->strings['Own Contacts'] = 'Propri Contatti'; +$a->strings['Include'] = 'Includi'; +$a->strings['Hide'] = 'Nascondi'; $a->strings['Credits'] = 'Crediti'; $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!'] = 'Friendica è un progetto comunitario, che non sarebbe stato possibile realizzare senza l\'aiuto di molte persone. Questa è una lista di chi ha contribuito al codice o alle traduzioni di Friendica. Grazie a tutti!'; @@ -1883,6 +1317,11 @@ $a->strings['Formatted'] = 'Formattato'; $a->strings['Activity'] = 'Attività'; $a->strings['Object data'] = 'Dati dell\'oggetto'; $a->strings['Result Item'] = 'Oggetto Ritornato'; +$a->strings['Error'] = [ + 0 => 'Errori', + 1 => 'Errori', + 2 => 'Errori', +]; $a->strings['Source activity'] = 'Sorgente attività'; $a->strings['Source input'] = 'Sorgente'; $a->strings['BBCode::toPlaintext'] = 'BBCode::toPlaintext'; @@ -1950,8 +1389,8 @@ $a->strings['No entries (some entries may be hidden).'] = 'Nessuna voce (qualche $a->strings['Find on this site'] = 'Cerca nel sito'; $a->strings['Results for:'] = 'Risultati per:'; $a->strings['Site Directory'] = 'Elenco del sito'; -$a->strings['Item was not removed'] = 'L\'oggetto non è stato rimosso'; $a->strings['Item was not deleted'] = 'L\'oggetto non è stato eliminato'; +$a->strings['Item was not removed'] = 'L\'oggetto non è stato rimosso'; $a->strings['- select -'] = '- seleziona -'; $a->strings['Suggested contact not found.'] = 'Contatto suggerito non trovato.'; $a->strings['Friend suggestion sent.'] = 'Suggerimento di amicizia inviato.'; @@ -1961,31 +1400,12 @@ $a->strings['Installed addons/apps:'] = 'Componenti aggiuntivi/applicazioni inst $a->strings['No installed addons/apps'] = 'Nessun componente aggiuntivo/applicazione installata'; $a->strings['Read about the Terms of Service of this node.'] = 'Leggi i Termini di Servizio di questo nodo.'; $a->strings['On this server the following remote servers are blocked.'] = 'In questo server i seguenti server remoti sono bloccati.'; +$a->strings['Reason for the block'] = 'Motivazione del blocco'; $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.'] = 'Questo è Friendica, versione %s in esecuzione all\'indirizzo web %s. La versione del database è %s, la versione post-aggiornamento è %s.'; $a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Visita Friendi.ca per saperne di più sul progetto Friendica.'; $a->strings['Bug reports and issues: please visit'] = 'Segnalazioni di bug e problemi: visita'; $a->strings['the bugtracker at github'] = 'il bugtracker su github'; $a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = 'Per suggerimenti, lodi, ecc., invia una mail a info chiocciola friendi punto ca'; -$a->strings['Could not create group.'] = 'Impossibile creare il gruppo.'; -$a->strings['Group not found.'] = 'Gruppo non trovato.'; -$a->strings['Group name was not changed.'] = 'Il nome del gruppo non è stato cambiato.'; -$a->strings['Unknown group.'] = 'Gruppo sconosciuto.'; -$a->strings['Unable to add the contact to the group.'] = 'Impossibile aggiungere il contatto al gruppo.'; -$a->strings['Contact successfully added to group.'] = 'Contatto aggiunto con successo al gruppo.'; -$a->strings['Unable to remove the contact from the group.'] = 'Impossibile rimuovere il contatto dal gruppo.'; -$a->strings['Contact successfully removed from group.'] = 'Contatto rimosso con successo dal gruppo.'; -$a->strings['Bad request.'] = 'Richiesta sbagliata.'; -$a->strings['Save Group'] = 'Salva gruppo'; -$a->strings['Filter'] = 'Filtro'; -$a->strings['Create a group of contacts/friends.'] = 'Crea un gruppo di amici/contatti.'; -$a->strings['Unable to remove group.'] = 'Impossibile rimuovere il gruppo.'; -$a->strings['Delete Group'] = 'Elimina Gruppo'; -$a->strings['Edit Group Name'] = 'Modifica Nome Gruppo'; -$a->strings['Members'] = 'Membri'; -$a->strings['Group is empty'] = 'Il gruppo è vuoto'; -$a->strings['Remove contact from group'] = 'Rimuovi il contatto dal gruppo'; -$a->strings['Click on a contact to add or remove.'] = 'Clicca su un contatto per aggiungerlo o rimuoverlo.'; -$a->strings['Add contact to group'] = 'Aggiungi il contatto al gruppo'; $a->strings['No profile'] = 'Nessun profilo'; $a->strings['Method Not Allowed.'] = 'Metodo Non Consentito.'; $a->strings['Help:'] = 'Guida:'; @@ -1995,14 +1415,11 @@ $a->strings['System check'] = 'Controllo sistema'; $a->strings['Requirement not satisfied'] = 'Requisiti non soddisfatti'; $a->strings['Optional requirement not satisfied'] = 'Requisiti opzionali non soddisfatti'; $a->strings['OK'] = 'OK'; +$a->strings['Next'] = 'Successivo'; $a->strings['Check again'] = 'Controlla ancora'; $a->strings['Base settings'] = 'Impostazioni base'; -$a->strings['Host name'] = 'Nome host'; -$a->strings['Overwrite this field in case the determinated hostname isn\'t right, otherweise leave it as is.'] = 'Sovrascrivi questo campo nel caso che l\'hostname rilevato non sia correto, altrimenti lascialo com\'è.'; $a->strings['Base path to installation'] = 'Percorso base all\'installazione'; $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.'] = 'Se il sistema non è in grado di rilevare il percorso corretto per l\'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot.'; -$a->strings['Sub path of the URL'] = 'Sottopercorso dell\'URL'; -$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.'] = 'Sovrascrivi questo campo nel caso il sottopercorso rilevato non sia corretto, altrimenti lascialo com\'è. Lasciando questo campo vuoto significa che l\'installazione si trova all\'URL base senza sottopercorsi.'; $a->strings['Database connection'] = 'Connessione al database'; $a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Per installare Friendica dobbiamo sapere come collegarci al tuo database.'; $a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Contatta il tuo fornitore di hosting o l\'amministratore del sito se hai domande su queste impostazioni.'; @@ -2031,6 +1448,7 @@ $a->strings['%s : Message delivery failed.'] = '%s: la consegna del messaggio fa $a->strings['%d message sent.'] = [ 0 => '%d messaggio inviato.', 1 => '%d messaggi inviati.', + 2 => '%d messaggi inviati.', ]; $a->strings['You have no more invitations available'] = 'Non hai altri inviti disponibili'; $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.'] = 'Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l\'altro, come con membri di molti altri social network.'; @@ -2053,10 +1471,186 @@ $a->strings['Visibility'] = 'Visibilità'; $a->strings['Clear the location'] = 'Rimuovi la posizione'; $a->strings['Location services are unavailable on your device'] = 'I servizi di localizzazione non sono disponibili sul tuo dispositivo'; $a->strings['Location services are disabled. Please check the website\'s permissions on your device'] = 'I servizi di localizzazione sono disabilitati. Per favore controlla i permessi del sito web sul tuo dispositivo'; +$a->strings['The feed for this item is unavailable.'] = 'Il flusso per questo oggetto non è disponibile.'; $a->strings['Unable to follow this item.'] = 'Impossibile seguire questo oggetto.'; $a->strings['System down for maintenance'] = 'Sistema in manutenzione'; $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.'] = 'Questo nodo Friendica è attualmente in modalità manutenzione, o automaticamente perchè in auto-aggiornamento o manualmente dall\'amministratore del nodo. Questa condizione dovrebbe essere temporanea, riprova tra qualche minuto.'; $a->strings['A Decentralized Social Network'] = 'Un Social Network Decentralizzato'; +$a->strings['Files'] = 'File'; +$a->strings['Upload'] = 'Carica'; +$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Mi spiace, forse il file che stai caricando è più grosso di quanto la configurazione di PHP permetta'; +$a->strings['Or - did you try to upload an empty file?'] = 'O.. non avrai provato a caricare un file vuoto?'; +$a->strings['File exceeds size limit of %s'] = 'Il file supera la dimensione massima di %s'; +$a->strings['File upload failed.'] = 'Caricamento del file non riuscito.'; +$a->strings['Unable to process image.'] = 'Impossibile caricare l\'immagine.'; +$a->strings['Image upload failed.'] = 'Caricamento immagine fallito.'; +$a->strings['List of all users'] = 'Elenco di tutti gli utenti'; +$a->strings['Active'] = 'Attivo'; +$a->strings['List of active accounts'] = 'Elenco degli account attivi'; +$a->strings['List of pending registrations'] = 'Elenco delle registrazioni in attesa'; +$a->strings['List of blocked users'] = 'Elenco degli utenti bloccati'; +$a->strings['Deleted'] = 'Eliminato'; +$a->strings['List of pending user deletions'] = 'Elenco delle cancellazioni di utenti in attesa'; +$a->strings['Normal Account Page'] = 'Pagina Account Normale'; +$a->strings['Soapbox Page'] = 'Pagina Sandbox'; +$a->strings['Automatic Friend Page'] = 'Pagina con amicizia automatica'; +$a->strings['Personal Page'] = 'Pagina Personale'; +$a->strings['Organisation Page'] = 'Pagina Organizzazione'; +$a->strings['News Page'] = 'Pagina Notizie'; +$a->strings['Relay'] = 'Relay'; +$a->strings['You can\'t block a local contact, please block the user instead'] = 'Non puoi bloccare un contatto locale, blocca invece l\'utente'; +$a->strings['%s contact unblocked'] = [ + 0 => '%s contatto sbloccato', + 1 => '%s contatti sbloccati', + 2 => '%s contatti sbloccati', +]; +$a->strings['Remote Contact Blocklist'] = 'Blocklist Contatti Remoti'; +$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'Questa pagina ti permette di impedire che qualsiasi messaggio da un contatto remoto raggiunga il tuo nodo.'; +$a->strings['Block Remote Contact'] = 'Blocca Contatto Remoto'; +$a->strings['select all'] = 'seleziona tutti'; +$a->strings['select none'] = 'seleziona niente'; +$a->strings['No remote contact is blocked from this node.'] = 'Nessun contatto remoto è bloccato da questo nodo.'; +$a->strings['Blocked Remote Contacts'] = 'Contatti Remoti Bloccati'; +$a->strings['Block New Remote Contact'] = 'Blocca Nuovo Contatto Remoto'; +$a->strings['Photo'] = 'Foto'; +$a->strings['Reason'] = 'Motivazione'; +$a->strings['%s total blocked contact'] = [ + 0 => '%scontatto bloccato totale', + 1 => '%scontatti bloccati totali', + 2 => '%scontatti bloccati totali', +]; +$a->strings['URL of the remote contact to block.'] = 'URL del contatto remoto da bloccare.'; +$a->strings['Also purge contact'] = 'Rimuovi anche contenuti contatto'; +$a->strings['Removes all content related to this contact from the node. Keeps the contact record. This action cannot be undone.'] = 'Rimuove tutto il contenuto relativo a questo contatto dal nodo. Mantiene il record del contatto. Questa azione non può essere annullata.'; +$a->strings['Block Reason'] = 'Motivazione del Blocco'; +$a->strings['Server domain pattern added to the blocklist.'] = 'Schema di dominio del server aggiunto alla blocklist.'; +$a->strings['%s server scheduled to be purged.'] = [ + 0 => '%s server in attesa di essere rimosso.', + 1 => '%s server in attesa di essere rimossi.', + 2 => '%s server in attesa di essere rimossi.', +]; +$a->strings['← Return to the list'] = '← Ritorna alla lista'; +$a->strings['Block A New Server Domain Pattern'] = 'Blocca Un Nuovo Server Per Schema di Dominio '; +$a->strings['

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

    +
      +
    • *: Any number of characters
    • +
    • ?: Any single character
    • +
    '] = '

    La sintassi dello schema di dominio server usa i caratteri jolly e non tiene conto di maiuscole e minuscole, e comprende i seguenti caratteri speciali:

    +
      +
    • *: Qualsiasi numero di caratteri
    • +
    • ?: Qualsiasi singolo carattere
    • +
    '; +$a->strings['Check pattern'] = 'Controlla schema'; +$a->strings['Matching known servers'] = 'Server conosciuti corrispondenti'; +$a->strings['Server Name'] = 'Nome del Server'; +$a->strings['Server Domain'] = 'Dominio del Server'; +$a->strings['Known Contacts'] = 'Contatti Conosciuti'; +$a->strings['%d known server'] = [ + 0 => '%d server conosciuto', + 1 => '%d server conosciuti', + 2 => '%d server conosciuti', +]; +$a->strings['Add pattern to the blocklist'] = 'Aggiungi schema alla blocklist'; +$a->strings['Server Domain Pattern'] = 'Schema di Dominio di Server'; +$a->strings['The domain pattern of the new server to add to the blocklist. Do not include the protocol.'] = 'Lo schema di dominio del nuovo server da aggiungere alla blocklist. Non includere il protocollo.'; +$a->strings['Purge server'] = 'Rimuovi contenuti server'; +$a->strings['Also purges all the locally stored content authored by the known contacts registered on that server. Keeps the contacts and the server records. This action cannot be undone.'] = [ + 0 => 'Rimuove completamente anche i contenuti salvati localmente creati dai contatti conosciuti registrati sul server. Mantiene i record dei contatti e del server. Questa azione non può essere annullata.', + 1 => 'Rimuove completamente anche i contenuti salvati localmente creati dai contatti conosciuti registrati su questi server. Mantiene i record dei contatti e dei server. Questa azione non può essere annullata.', + 2 => 'Rimuove completamente anche i contenuti salvati localmente creati dai contatti conosciuti registrati su questi server. Mantiene i record dei contatti e dei server. Questa azione non può essere annullata.', +]; +$a->strings['Block reason'] = 'Ragione blocco'; +$a->strings['The reason why you blocked this server domain pattern. This reason will be shown publicly in the server information page.'] = 'La ragione per cui hai bloccato questo schema di dominio. Questa motivazione verrà mostrata pubblicamente nella pagina di informazione del server.'; +$a->strings['Blocked server domain pattern'] = 'Schema di dominio del server bloccato'; +$a->strings['Delete server domain pattern'] = 'Elimina schema di dominio server'; +$a->strings['Check to delete this entry from the blocklist'] = 'Seleziona per eliminare questa voce dalla blocklist'; +$a->strings['Server Domain Pattern Blocklist'] = 'Blocklist degli Schemi di Dominio di Server'; +$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.'] = 'Questa pagina può essere utilizzata per definire una blocklist di schemi di server di dominio della rete federata ai quali non è consentito interagire con questo nodo. Per ogni schema di dominio dovresti anche fornire la motivazione per la quale lo hai bloccato.'; +$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.'] = 'La lista degli schemi di dominio di server bloccati sarà resa pubblicamente disponibile sulla pagina /friendica in modo che i tuoi utenti e persone che cercano soluzioni ai problemi di comunicazione possano trovare la motivazione facilmente.'; +$a->strings['Add new entry to the blocklist'] = 'Aggiungi nuova voce alla blocklist'; +$a->strings['Save changes to the blocklist'] = 'Salva modifiche alla blocklist'; +$a->strings['Current Entries in the Blocklist'] = 'Voci correnti nella blocklist'; +$a->strings['Delete entry from the blocklist'] = 'Elimina voce dalla blocklist'; +$a->strings['Delete entry from the blocklist?'] = 'Eliminare la voce dalla blocklist?'; +$a->strings['Item marked for deletion.'] = 'Elemento selezionato per l\'eliminazione.'; +$a->strings['Delete this Item'] = 'Rimuovi questo elemento'; +$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.'] = 'Su questa pagina puoi cancellare un qualsiasi elemento dal tuo nodo. Se l\'elemento è un messaggio di primo livello, l\'intera discussione sarà cancellata.'; +$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.'] = 'Serve il GUID dell\'elemento. Lo puoi trovare, per esempio, guardando l\'URL display: l\'ultima parte di http://example.com/display/123456 è il GUID, qui 123456.'; +$a->strings['GUID'] = 'GUID'; +$a->strings['The GUID of the item you want to delete.'] = 'Il GUID dell\'elemento che vuoi cancellare.'; +$a->strings['Item Id'] = 'Item Id'; +$a->strings['Item URI'] = 'Item URI'; +$a->strings['Terms'] = 'Termini'; +$a->strings['Tag'] = 'Etichetta'; +$a->strings['Type'] = 'Tipo'; +$a->strings['Term'] = 'Termine'; +$a->strings['URL'] = 'URL'; +$a->strings['Mention'] = 'Menzione'; +$a->strings['Implicit Mention'] = 'Menzione Implicita'; +$a->strings['Item not found'] = 'Oggetto non trovato'; +$a->strings['Item Guid'] = 'Item Guid'; +$a->strings['Normal Account'] = 'Account normale'; +$a->strings['Automatic Follower Account'] = 'Account Follower Automatico'; +$a->strings['Automatic Friend Account'] = 'Account per amicizia automatizzato'; +$a->strings['Blog Account'] = 'Account Blog'; +$a->strings['Registered users'] = 'Utenti registrati'; +$a->strings['Pending registrations'] = 'Registrazioni in attesa'; +$a->strings['%s user blocked'] = [ + 0 => '%s utente bloccato', + 1 => '%s utenti bloccati', + 2 => '%s utenti bloccati', +]; +$a->strings['You can\'t remove yourself'] = 'Non puoi rimuovere te stesso'; +$a->strings['%s user deleted'] = [ + 0 => '%s utente cancellato', + 1 => '%s utenti cancellati', + 2 => '%s utenti cancellati', +]; +$a->strings['User "%s" deleted'] = 'Utente "%s" eliminato'; +$a->strings['User "%s" blocked'] = 'Utente "%s" bloccato'; +$a->strings['Register date'] = 'Data registrazione'; +$a->strings['Last login'] = 'Ultimo accesso'; +$a->strings['Last public item'] = 'Ultimo elemento pubblico'; +$a->strings['Active Accounts'] = 'Account attivi'; +$a->strings['User blocked'] = 'Utente bloccato'; +$a->strings['Site admin'] = 'Amministrazione sito'; +$a->strings['Account expired'] = 'Account scaduto'; +$a->strings['Create a new user'] = 'Crea un nuovo utente'; +$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Gli utenti selezionati saranno cancellati!\n\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\n\nSei sicuro?'; +$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'L\'utente {0} sarà cancellato!\n\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\n\nSei sicuro?'; +$a->strings['%s user unblocked'] = [ + 0 => '%s utente sbloccato', + 1 => '%s utenti sbloccati', + 2 => '%s utenti sbloccati', +]; +$a->strings['User "%s" unblocked'] = 'Utente "%s" sbloccato'; +$a->strings['Blocked Users'] = 'Utenti bloccati'; +$a->strings['New User'] = 'Nuovo Utente'; +$a->strings['Add User'] = 'Aggiungi utente'; +$a->strings['Name of the new user.'] = 'Nome del nuovo utente.'; +$a->strings['Nickname'] = 'Nome utente'; +$a->strings['Nickname of the new user.'] = 'Nome utente del nuovo utente.'; +$a->strings['Email address of the new user.'] = 'Indirizzo Email del nuovo utente.'; +$a->strings['Users awaiting permanent deletion'] = 'Utenti in attesa della cancellazione definitiva'; +$a->strings['Permanent deletion'] = 'Cancellazione permanente'; +$a->strings['User waiting for permanent deletion'] = 'Utente in attesa di cancellazione definitiva'; +$a->strings['%s user approved'] = [ + 0 => '%s utente approvato', + 1 => '%s utenti approvati', + 2 => '%s utenti approvati', +]; +$a->strings['%s registration revoked'] = [ + 0 => '%s registrazione revocata', + 1 => '%s registrazioni revocate', + 2 => '%s registrazioni revocate', +]; +$a->strings['Account approved.'] = 'Account approvato.'; +$a->strings['Registration revoked'] = 'Registrazione revocata'; +$a->strings['User registrations awaiting review'] = 'Registrazioni utente in attesa di verifica'; +$a->strings['Request date'] = 'Data richiesta'; +$a->strings['No registrations.'] = 'Nessuna registrazione.'; +$a->strings['Note from the user'] = 'Nota dall\'utente'; +$a->strings['Deny'] = 'Nega'; $a->strings['Show Ignored Requests'] = 'Mostra richieste ignorate'; $a->strings['Hide Ignored Requests'] = 'Nascondi richieste ignorate'; $a->strings['Notification type:'] = 'Tipo di notifica:'; @@ -2076,20 +1670,54 @@ $a->strings['System Notifications'] = 'Notifiche di sistema'; $a->strings['Personal Notifications'] = 'Notifiche personali'; $a->strings['Home Notifications'] = 'Notifiche bacheca'; $a->strings['Show unread'] = 'Mostra non letti'; +$a->strings['{0} requested registration'] = '{0} chiede la registrazione'; +$a->strings['{0} and %d others requested registration'] = '{0} e %d altre registrazioni richieste'; $a->strings['Authorize application connection'] = 'Autorizza la connessione dell\'applicazione'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?'; $a->strings['Unsupported or missing response type'] = 'Tipo di risposta mancante o non supportato'; $a->strings['Incomplete request data'] = 'Dati richiesta incompleti'; $a->strings['Unsupported or missing grant type'] = 'Tipo di concessione mancante o non supportato'; +$a->strings['Resubscribing to OStatus contacts'] = 'Risottoscrivi i contatti OStatus'; +$a->strings['Keep this window open until done.'] = 'Tieni questa finestra aperta fino a che ha finito.'; +$a->strings['Subscribing to contacts'] = 'Iscrizione a contatti'; +$a->strings['No contact provided.'] = 'Nessun contatto disponibile.'; +$a->strings['Couldn\'t fetch information for contact.'] = 'Non è stato possibile recuperare le informazioni del contatto.'; +$a->strings['Couldn\'t fetch friends for contact.'] = 'Non è stato possibile recuperare gli amici del contatto.'; +$a->strings['Couldn\'t fetch following contacts.'] = 'Non è stato possibile recuperare i contatti seguiti.'; +$a->strings['Couldn\'t fetch remote profile.'] = 'Non è stato possibile recuperare il profilo remoto.'; +$a->strings['Unsupported network'] = 'Rete non supportata'; +$a->strings['Done'] = 'Fatto'; +$a->strings['success'] = 'successo'; +$a->strings['failed'] = 'fallito'; +$a->strings['ignored'] = 'ignorato'; $a->strings['Wrong type "%s", expected one of: %s'] = 'Tipo "%s" errato, ci si aspettava uno di: %s'; $a->strings['Model not found'] = 'Modello non trovato'; $a->strings['Remote privacy information not available.'] = 'Informazioni remote sulla privacy non disponibili.'; $a->strings['Visible to:'] = 'Visibile a:'; $a->strings['The Photo with id %s is not available.'] = 'La Foto con id %s non è disponibile.'; $a->strings['Invalid photo with id %s.'] = 'Foto con id %s non valida.'; +$a->strings['Edit post'] = 'Modifica messaggio'; +$a->strings['web link'] = 'collegamento web'; +$a->strings['Insert video link'] = 'Inserire collegamento video'; +$a->strings['video link'] = 'collegamento video'; +$a->strings['Insert audio link'] = 'Inserisci collegamento audio'; +$a->strings['audio link'] = 'collegamento audio'; +$a->strings['Remove Item Tag'] = 'Rimuovi il tag'; +$a->strings['Select a tag to remove: '] = 'Seleziona un tag da rimuovere: '; +$a->strings['Remove'] = 'Rimuovi'; $a->strings['No contacts.'] = 'Nessun contatto.'; +$a->strings['%s\'s timeline'] = 'la timeline di %s'; +$a->strings['%s\'s posts'] = 'il messaggio di %s'; +$a->strings['%s\'s comments'] = 'il commento di %s'; +$a->strings['Image exceeds size limit of %s'] = 'La dimensione dell\'immagine supera il limite di %s'; +$a->strings['Image upload didn\'t complete, please try again'] = 'Caricamento dell\'immagine non completato. Prova di nuovo.'; +$a->strings['Image file is missing'] = 'Il file dell\'immagine è mancante'; +$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Il server non può accettare il caricamento di un nuovo file in questo momento, contattare l\'amministratore'; +$a->strings['Image file is empty.'] = 'Il file dell\'immagine è vuoto.'; +$a->strings['View Album'] = 'Sfoglia l\'album'; $a->strings['Profile not found.'] = 'Profilo non trovato.'; $a->strings['You\'re currently viewing your profile as %s Cancel'] = 'Attualmente stai vedendo il tuo profilo come %s Annulla'; +$a->strings['Full Name:'] = 'Nome completo:'; $a->strings['Member since:'] = 'Membro dal:'; $a->strings['j F, Y'] = 'j F Y'; $a->strings['j F'] = 'j F'; @@ -2098,14 +1726,24 @@ $a->strings['Age: '] = 'Età : '; $a->strings['%d year old'] = [ 0 => '%d anno', 1 => '%d anni', + 2 => '%d anni', ]; -$a->strings['Forums:'] = 'Forum:'; +$a->strings['Description:'] = 'Descrizione:'; $a->strings['View profile as:'] = 'Vedi il tuo profilo come:'; $a->strings['View as'] = 'Vedi come'; -$a->strings['%s\'s timeline'] = 'la timeline di %s'; -$a->strings['%s\'s posts'] = 'il messaggio di %s'; -$a->strings['%s\'s comments'] = 'il commento di %s'; +$a->strings['Profile unavailable.'] = 'Profilo non disponibile.'; +$a->strings['Invalid locator'] = 'Indirizzo non valido'; +$a->strings['The provided profile link doesn\'t seem to be valid'] = 'Il collegamento al profilo fornito non sembra essere valido'; +$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'La richiesta di connessione remota non può essere effettuata per la tua rete. Invia la richiesta direttamente sul nostro sistema.'; +$a->strings['Friend/Connection Request'] = 'Richieste di amicizia/connessione'; +$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.'] = 'Inserisci il tuo indirizzo Webfinger (utente@dominio.tld) o l\'URL del profilo qui. Se non è supportato dal tuo sistema, devi abbonarti a %s o %s direttamente sul tuo sistema.'; +$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.'] = 'Non sei ancora un membro del social network libero, segui questo collegamento per trovare un nodo pubblico Friendica e unisciti a noi oggi.'; +$a->strings['Your Webfinger address or profile URL:'] = 'Il tuo indirizzo Webfinger o l\'URL del profilo:'; +$a->strings['Unable to check your home location.'] = 'Impossibile controllare la tua posizione di origine.'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Numero giornaliero di messaggi per %s superato. Invio fallito.'; +$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti.'; $a->strings['Only parent users can create additional accounts.'] = 'Solo gli utenti principali possono creare account aggiuntivi.'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani.'; $a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking "Register".'] = 'Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando "Registra".'; $a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera.'; $a->strings['Your OpenID (optional): '] = 'Il tuo OpenID (opzionale): '; @@ -2117,9 +1755,12 @@ $a->strings['Your invitation code: '] = 'Il tuo codice di invito:'; $a->strings['Your Full Name (e.g. Joe Smith, real or real-looking): '] = 'Il tuo nome completo (es. Mario Rossi, vero o che sembri vero): '; $a->strings['Your Email Address: (Initial information will be send there, so this has to be an existing address.)'] = 'Il tuo indirizzo email: (Le informazioni iniziali verranno inviate lì, quindi questo deve essere un indirizzo esistente.)'; $a->strings['Please repeat your e-mail address:'] = 'Per favore ripeti il tuo indirizzo email:'; +$a->strings['New Password:'] = 'Nuova password:'; $a->strings['Leave empty for an auto generated password.'] = 'Lascia vuoto per generare automaticamente una password.'; +$a->strings['Confirm:'] = 'Conferma:'; $a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be "nickname@%s".'] = 'Scegli un nome utente. Deve cominciare con una lettera. L\'indirizzo del tuo profilo sarà "nomeutente@%s".'; $a->strings['Choose a nickname: '] = 'Scegli un nome utente: '; +$a->strings['Import'] = 'Importa'; $a->strings['Import your profile to this friendica instance'] = 'Importa il tuo profilo in questo server friendica'; $a->strings['Note: This node explicitly contains adult content'] = 'Nota: Questo nodo contiene esplicitamente contenuti per adulti'; $a->strings['Parent Password:'] = 'Password Principale:'; @@ -2135,14 +1776,7 @@ $a->strings['Registration successful.'] = 'Registrazione completata.'; $a->strings['Your registration can not be processed.'] = 'La tua registrazione non può essere elaborata.'; $a->strings['You have to leave a request note for the admin.'] = 'Devi lasciare una nota di richiesta per l\'amministratore.'; $a->strings['Your registration is pending approval by the site owner.'] = 'La tua richiesta è in attesa di approvazione da parte del proprietario del sito.'; -$a->strings['Profile unavailable.'] = 'Profilo non disponibile.'; -$a->strings['Invalid locator'] = 'Indirizzo non valido'; -$a->strings['The provided profile link doesn\'t seem to be valid'] = 'Il collegamento al profilo fornito non sembra essere valido'; -$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'La richiesta di connessione remota non può essere effettuata per la tua rete. Invia la richiesta direttamente sul nostro sistema.'; -$a->strings['Friend/Connection Request'] = 'Richieste di amicizia/connessione'; -$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.'] = 'Inserisci il tuo indirizzo Webfinger (utente@dominio.tld) o l\'URL del profilo qui. Se non è supportato dal tuo sistema, devi abbonarti a %s o %s direttamente sul tuo sistema.'; -$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.'] = 'Non sei ancora un membro del social network libero, segui questo collegamento per trovare un nodo pubblico Friendica e unisciti a noi oggi.'; -$a->strings['Your Webfinger address or profile URL:'] = 'Il tuo indirizzo Webfinger o l\'URL del profilo:'; +$a->strings['You must be logged in to use this module.'] = 'Devi aver essere autenticato per usare questo modulo.'; $a->strings['Only logged in users are permitted to perform a search.'] = 'Solo agli utenti autenticati è permesso eseguire ricerche.'; $a->strings['Only one search per minute is permitted for not logged in users.'] = 'Solo una ricerca al minuto è permessa agli utenti non autenticati.'; $a->strings['Items tagged with: %s'] = 'Elementi taggati con: %s'; @@ -2164,6 +1798,10 @@ $a->strings['Logged out.'] = 'Uscita effettuata.'; $a->strings['OpenID protocol error. No ID returned'] = 'Errore di protocollo OpenID. Nessun ID ricevuto'; $a->strings['Account not found. Please login to your existing account to add the OpenID to it.'] = 'Account non trovato. Per favore accedi al tuo account esistente per aggiungere OpenID ad esso.'; $a->strings['Account not found. Please register a new account or login to your existing account to add the OpenID to it.'] = 'Account non trovato. Per favore registra un nuovo account o accedi al tuo account esistente per aggiungere OpenID ad esso.'; +$a->strings['Passwords do not match.'] = 'Le password non corrispondono.'; +$a->strings['Password unchanged.'] = 'Password non modificata.'; +$a->strings['Current Password:'] = 'Password Attuale:'; +$a->strings['Your current password to confirm the changes'] = 'La tua password attuale per confermare le modifiche'; $a->strings['Remaining recovery codes: %d'] = 'Codici di recupero rimanenti: %d'; $a->strings['Invalid code, please retry.'] = 'Codice non valido, per favore riprova.'; $a->strings['Two-factor recovery'] = 'Recupero due fattori'; @@ -2173,8 +1811,137 @@ $a->strings['Please enter a recovery code'] = 'Per favore inserisci un codice di $a->strings['Submit recovery code and complete login'] = 'Inserisci il codice di recupero e completa l\'accesso'; $a->strings['

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

    '] = '

    Apri l\'app di autenticazione a due fattori sul tuo dispositivo per ottenere un codice di autenticazione e verificare la tua identità.

    '; $a->strings['Please enter a code from your authentication app'] = 'Per favore inserisci il codice dalla tua app di autenticazione'; -$a->strings['This is my two-factor authenticator app device'] = 'Questo è il mio dispositivo sul quale è presente l\'applicazione di autenticazione a due fattori'; $a->strings['Verify code and complete login'] = 'Verifica codice e completa l\'accesso'; +$a->strings['Please use a shorter name.'] = 'Per favore utilizza un nome più corto.'; +$a->strings['Name too short.'] = 'Nome troppo corto.'; +$a->strings['Wrong Password.'] = 'Password Sbagliata.'; +$a->strings['Invalid email.'] = 'Email non valida.'; +$a->strings['Cannot change to that email.'] = 'Non puoi usare quella email.'; +$a->strings['Settings were not updated.'] = 'Le impostazioni non sono state aggiornate.'; +$a->strings['Contact CSV file upload error'] = 'Errore nel caricamento del file CSV dei contatti'; +$a->strings['Importing Contacts done'] = 'Importazione dei Contatti riuscita'; +$a->strings['Relocate message has been send to your contacts'] = 'Il messaggio di trasloco è stato inviato ai tuoi contatti'; +$a->strings['Unable to find your profile. Please contact your admin.'] = 'Impossibile trovare il tuo profilo. Contatta il tuo amministratore.'; +$a->strings['Personal Page Subtypes'] = 'Sottotipi di Pagine Personali'; +$a->strings['Account for a personal profile.'] = 'Account per profilo personale.'; +$a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'Account per un\'organizzazione, che automaticamente approva le richieste di contatto come "Follower".'; +$a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'Account per notizie, che automaticamente approva le richieste di contatto come "Follower"'; +$a->strings['Account for community discussions.'] = 'Account per discussioni comunitarie.'; +$a->strings['Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'] = 'Account per un profilo personale, che richiede l\'approvazione delle richieste di contatto come "Amico" o "Follower".'; +$a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'Account per un profilo publico, che automaticamente approva le richieste di contatto come "Follower".'; +$a->strings['Automatically approves all contact requests.'] = 'Approva automaticamente tutte le richieste di contatto.'; +$a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'Account per un profilo popolare, che automaticamente approva le richieste di contatto come "Amici".'; +$a->strings['Requires manual approval of contact requests.'] = 'Richiede l\'approvazione manuale delle richieste di contatto.'; +$a->strings['OpenID:'] = 'OpenID:'; +$a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Opzionale) Consente di loggarti in questo account con questo OpenID'; +$a->strings['Publish your profile in your local site directory?'] = 'Pubblica il tuo profilo nell\'elenco locale del tuo sito?'; +$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.'] = 'Il tuo profilo verrà pubblicato nella directory locale di questo nodo. I dettagli del tuo profilo potrebbero essere visibili pubblicamente a seconda delle impostazioni di sistema.'; +$a->strings['Your profile will also be published in the global friendica directories (e.g. %s).'] = 'Il tuo profilo sarà anche pubblicato nelle directory globali di friendica (es. %s).'; +$a->strings['Account Settings'] = 'Impostazioni account'; +$a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'L\'indirizzo della tua identità è \'%s\' or \'%s\'.'; +$a->strings['Password Settings'] = 'Impostazioni password'; +$a->strings['Leave password fields blank unless changing'] = 'Lascia questi campi in bianco per non effettuare variazioni alla password'; +$a->strings['Password:'] = 'Password:'; +$a->strings['Your current password to confirm the changes of the email address'] = 'La tua password attuale per confermare il cambio di indirizzo email'; +$a->strings['Delete OpenID URL'] = 'Elimina URL OpenID'; +$a->strings['Basic Settings'] = 'Impostazioni base'; +$a->strings['Display name:'] = 'Nome visualizzato:'; +$a->strings['Email Address:'] = 'Indirizzo Email:'; +$a->strings['Your Timezone:'] = 'Il tuo fuso orario:'; +$a->strings['Your Language:'] = 'La tua lingua:'; +$a->strings['Set the language we use to show you friendica interface and to send you emails'] = 'Imposta la lingua che sarà usata per mostrarti l\'interfaccia di Friendica e per inviarti le email'; +$a->strings['Default Post Location:'] = 'Località predefinita:'; +$a->strings['Use Browser Location:'] = 'Usa la località rilevata dal browser:'; +$a->strings['Security and Privacy Settings'] = 'Impostazioni di sicurezza e privacy'; +$a->strings['Maximum Friend Requests/Day:'] = 'Numero massimo di richieste di amicizia al giorno:'; +$a->strings['(to prevent spam abuse)'] = '(per prevenire lo spam)'; +$a->strings['Allow your profile to be searchable globally?'] = 'Vuoi che il tuo profilo sia ricercabile globalmente?'; +$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.'] = 'Attiva questa impostazione se vuoi che gli altri ti trovino facilmente e ti seguano. Il tuo profilo sarà ricercabile da sistemi remoti. Questa impostazione determina anche se Friendica informerà i motori di ricerca che il tuo profilo sia indicizzabile o meno.'; +$a->strings['Hide your contact/friend list from viewers of your profile?'] = 'Nascondere la lista dei tuo contatti/amici dai visitatori del tuo profilo?'; +$a->strings['A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list.'] = 'La lista dei tuoi contatti è mostrata sulla tua pagina di profilo. Attiva questa opzione per disabilitare la visualizzazione del tuo elenco contatti.'; +$a->strings['Make public posts unlisted'] = 'Rendi messaggi pubblici non elencati'; +$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.'] = 'I tuoi messaggi pubblici non appariranno sulle pagine della comunità o nei risultati di ricerca, e non saranno inviati ai server relay. Comunque appariranno sui feed pubblici su server remoti.'; +$a->strings['Make all posted pictures accessible'] = 'Rendi tutte le immagini pubblicate accessibili'; +$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.'] = 'Questa opzione rende ogni immagine pubblicata accessibile attraverso il collegamento diretto. Questo è una soluzione alternativa al problema che la maggior parte delle altre reti non gestiscono i permessi sulle immagini. Le immagini non pubbliche non saranno visibili al pubblico nei tuoi album fotografici comunque.'; +$a->strings['Allow friends to post to your profile page?'] = 'Permetti agli amici di scrivere sulla tua pagina profilo?'; +$a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'I tuoi contatti possono scrivere messaggi sulla tua pagina di profilo. Questi messaggi saranno distribuiti a tutti i tuoi contatti.'; +$a->strings['Allow friends to tag your posts?'] = 'Permetti agli amici di aggiungere tag ai tuoi messaggi?'; +$a->strings['Your contacts can add additional tags to your posts.'] = 'I tuoi contatti possono aggiungere tag aggiuntivi ai tuoi messaggi.'; +$a->strings['Permit unknown people to send you private mail?'] = 'Permetti a utenti sconosciuti di inviarti messaggi privati?'; +$a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Gli utenti sulla rete Friendica possono inviarti messaggi privati anche se non sono nella tua lista di contatti.'; +$a->strings['Maximum private messages per day from unknown people:'] = 'Numero massimo di messaggi privati da utenti sconosciuti per giorno:'; +$a->strings['Default Post Permissions'] = 'Permessi predefiniti per i messaggi'; +$a->strings['Expiration settings'] = 'Impostazioni di scadenza'; +$a->strings['Automatically expire posts after this many days:'] = 'Fai scadere i messaggi automaticamente dopo x giorni:'; +$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Se lasciato vuoto, i messaggi non verranno cancellati.'; +$a->strings['Expire posts'] = 'Fai scadere i messaggi'; +$a->strings['When activated, posts and comments will be expired.'] = 'Quando attivato, i messaggi e i commenti scadranno.'; +$a->strings['Expire personal notes'] = 'Fai scadere le note personali'; +$a->strings['When activated, the personal notes on your profile page will be expired.'] = 'Quando attivato, le note personali sulla tua pagina del profilo scadranno.'; +$a->strings['Expire starred posts'] = 'Fai scadere i messaggi speciali'; +$a->strings['Starring posts keeps them from being expired. That behaviour is overwritten by this setting.'] = 'Inserire i messaggi negli speciali evita di farli scadere. Questo comportamento viene scavalcato da questa impostazione.'; +$a->strings['Only expire posts by others'] = 'Fai scadere solo i messaggi degli altri'; +$a->strings['When activated, your own posts never expire. Then the settings above are only valid for posts you received.'] = 'Quando attivato, i tuoi messaggi non scadranno mai. Quindi le impostazioni qui sopra saranno valide solo per i messaggi che hai ricevuto.'; +$a->strings['Notification Settings'] = 'Impostazioni notifiche'; +$a->strings['Send a notification email when:'] = 'Invia una mail di notifica quando:'; +$a->strings['You receive an introduction'] = 'Ricevi una presentazione'; +$a->strings['Your introductions are confirmed'] = 'Le tue presentazioni sono confermate'; +$a->strings['Someone writes on your profile wall'] = 'Qualcuno scrive sulla bacheca del tuo profilo'; +$a->strings['Someone writes a followup comment'] = 'Qualcuno scrive un commento a un tuo messaggio'; +$a->strings['You receive a private message'] = 'Ricevi un messaggio privato'; +$a->strings['You receive a friend suggestion'] = 'Hai ricevuto un suggerimento di amicizia'; +$a->strings['You are tagged in a post'] = 'Sei stato taggato in un messaggio'; +$a->strings['Create a desktop notification when:'] = 'Crea una notifica desktop quando:'; +$a->strings['Someone liked your content'] = 'Qualcuno ha messo mi piace a un tuo contenuto'; +$a->strings['Someone shared your content'] = 'Qualcuno ha condiviso un tuo contenuto'; +$a->strings['Activate desktop notifications'] = 'Attiva notifiche desktop'; +$a->strings['Show desktop popup on new notifications'] = 'Mostra un popup di notifica sul desktop all\'arrivo di nuove notifiche'; +$a->strings['Text-only notification emails'] = 'Email di notifica in solo testo'; +$a->strings['Send text only notification emails, without the html part'] = 'Invia le email di notifica in solo testo, senza la parte in html'; +$a->strings['Show detailled notifications'] = 'Mostra notifiche dettagliate'; +$a->strings['Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.'] = 'Per impostazione predefinita, le notifiche sono raggruppate in una singola notifica per articolo. Se abilitato, viene visualizzate tutte le notifiche.'; +$a->strings['Show notifications of ignored contacts'] = 'Mostra notifiche dai contatti ignorati'; +$a->strings['You don\'t see posts from ignored contacts. But you still see their comments. This setting controls if you want to still receive regular notifications that are caused by ignored contacts or not.'] = 'Non vedi i messaggi da contatti ignorati. Ma puoi ancora vedere i loro commenti. Questa impostazione controlla se vuoi o meno continuare a ricevere notifiche regolari che sono causate dai contatti ignorati.'; +$a->strings['Advanced Account/Page Type Settings'] = 'Impostazioni avanzate Account/Tipo di pagina'; +$a->strings['Change the behaviour of this account for special situations'] = 'Modifica il comportamento di questo account in situazioni speciali'; +$a->strings['Import Contacts'] = 'Importa Contatti'; +$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Carica un file CSV che contiene gli indirizzi dei tuoi account seguiti nella prima colonna che hai esportato dal vecchio account.'; +$a->strings['Upload File'] = 'Carica File'; +$a->strings['Relocate'] = 'Trasloca'; +$a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Se hai spostato questo profilo da un\'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone.'; +$a->strings['Resend relocate message to contacts'] = 'Invia nuovamente il messaggio di trasloco ai contatti'; +$a->strings['Addon Settings'] = 'Impostazioni Componenti Aggiuntivi'; +$a->strings['No Addon settings configured'] = 'Nessun componente aggiuntivo ha impostazioni modificabili'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'Impossibile collegarsi all\'account email con i parametri forniti.'; +$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; +$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; +$a->strings['Email access is disabled on this site.'] = 'L\'accesso email è disabilitato su questo sito.'; +$a->strings['None'] = 'Nessuna'; +$a->strings['General Social Media Settings'] = 'Impostazioni Media Sociali'; +$a->strings['Enable Content Warning'] = 'Abilita Avviso Contenuto'; +$a->strings['Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.'] = 'Gli utenti su reti come Mastodon o Pleroma sono in grado di impostare un campo di avviso sul contenuto. Questa impostazione nasconde in automatico il contenuto del messaggio in caso di avviso, invece di impostare l\'avviso di contenuto come titolo del post. Non ha effetto su eventuali altri filtri impostati.'; +$a->strings['Enable intelligent shortening'] = 'Abilita accorciamento intelligente'; +$a->strings['Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.'] = 'Normalmente il sistema tenta di trovare il collegamento migliore da aggiungere ad un messaggio accorciato. Se questa opzione è disabilitata, ogni messaggio accorciato conterrà sempre un collegamento al messaggio originale su Friendica.'; +$a->strings['Enable simple text shortening'] = 'Abilita accorciamento semplice del testo'; +$a->strings['Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'] = 'Normalmente il sistema accorcia i messaggi alla successiva interruzione di linea. Se questa opzione è abilitata il sistema accorcerà il testo al raggiungimento del limite massimo di caratteri.'; +$a->strings['Attach the link title'] = 'Allega il titolo del collegamento'; +$a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'Quando attivato, il titolo del collegamento allegato sarà aggiunto come titolo dei messaggi su Diaspora. Questo è più che altro utile con i contatti "remoti di sè stessi" che condividono il contenuto del flusso.'; +$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Il tuo vecchio account ActivityPub/GNU Social '; +$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Se inserisci il nome del tuo vecchio account su un sistema basato su ActivityPub o del tuo vecchio account GNU Social/Statusnet (nel formato utente@dominio.tld), i tuoi contatti verranno importati automaticamente. Il campo verrà svuotato una volta terminata l\'operazione.'; +$a->strings['Repair OStatus subscriptions'] = 'Ripara le iscrizioni OStatus'; +$a->strings['Email/Mailbox Setup'] = 'Impostazioni email'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)'; +$a->strings['Last successful email check:'] = 'Ultimo controllo email eseguito con successo:'; +$a->strings['IMAP server name:'] = 'Nome server IMAP:'; +$a->strings['IMAP port:'] = 'Porta IMAP:'; +$a->strings['Security:'] = 'Sicurezza:'; +$a->strings['Email login name:'] = 'Nome utente email:'; +$a->strings['Email password:'] = 'Password email:'; +$a->strings['Reply-to address:'] = 'Indirizzo di risposta:'; +$a->strings['Send public posts to all email contacts:'] = 'Invia i messaggi pubblici ai contatti email:'; +$a->strings['Action after import:'] = 'Azione dopo importazione:'; +$a->strings['Move to folder'] = 'Sposta nella cartella'; +$a->strings['Move to folder:'] = 'Sposta nella cartella:'; $a->strings['Delegation successfully granted.'] = 'Delega concessa con successo.'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'Utente principale non trovato, non disponibile o la password non corrisponde.'; $a->strings['Delegation successfully revoked.'] = 'Delega revocata con successo.'; @@ -2199,7 +1966,6 @@ $a->strings['General Theme Settings'] = 'Opzioni Generali Tema'; $a->strings['Custom Theme Settings'] = 'Opzioni Personalizzate Tema'; $a->strings['Content Settings'] = 'Opzioni Contenuto'; $a->strings['Theme settings'] = 'Impostazioni tema'; -$a->strings['Calendar'] = 'Calendario'; $a->strings['Display Theme:'] = 'Tema:'; $a->strings['Mobile Theme:'] = 'Tema mobile:'; $a->strings['Number of items to display per page:'] = 'Numero di elementi da mostrare per pagina:'; @@ -2207,8 +1973,6 @@ $a->strings['Maximum of 100 items'] = 'Massimo 100 voci'; $a->strings['Number of items to display per page when viewed from mobile device:'] = 'Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:'; $a->strings['Update browser every xx seconds'] = 'Aggiorna il browser ogni x secondi'; $a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Minimo 10 secondi. Inserisci -1 per disabilitarlo'; -$a->strings['Automatic updates only at the top of the post stream pages'] = 'Aggiornamenti automatici solo in cima alle pagine dei flussi'; -$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.'] = 'L\'aggiornamento automatico potrebbe aggiungere nuovi messaggi in alto alle pagine dei flussi, e può influenzare la posizione del contenuto e quindi disturbare la lettura se avviene da qualsiasi parte che non sia in cima alla pagina.'; $a->strings['Infinite scroll'] = 'Scroll infinito'; $a->strings['Automatic fetch new items when reaching the page end.'] = 'Recupero automatico di nuovi oggetti quando viene raggiunta la fine della pagina.'; $a->strings['Display the resharer'] = 'Mostra chi ha condiviso'; @@ -2216,7 +1980,9 @@ $a->strings['Display the first resharer as icon and text on a reshared item.'] = $a->strings['Stay local'] = 'Rimani in locale'; $a->strings['Don\'t go to a remote system when following a contact link.'] = 'Non andare sul sistema remoto mentre segui il collegamento di un contatto.'; $a->strings['Beginning of week:'] = 'Inizio della settimana:'; -$a->strings['Profile Name is required.'] = 'Il nome profilo è obbligatorio .'; +$a->strings['Additional Features'] = 'Funzionalità aggiuntive'; +$a->strings['Connected Apps'] = 'Applicazioni Collegate'; +$a->strings['Remove authorization'] = 'Rimuovi l\'autorizzazione'; $a->strings['Profile couldn\'t be updated.'] = 'Il Profilo non può essere aggiornato.'; $a->strings['Label:'] = 'Etichetta:'; $a->strings['Value:'] = 'Valore:'; @@ -2231,7 +1997,6 @@ $a->strings['Location'] = 'Posizione'; $a->strings['Miscellaneous'] = 'Varie'; $a->strings['Custom Profile Fields'] = 'Campi Profilo Personalizzati'; $a->strings['Upload Profile Photo'] = 'Carica la foto del profilo'; -$a->strings['Display name:'] = 'Nome visualizzato:'; $a->strings['Street Address:'] = 'Indirizzo (via/piazza):'; $a->strings['Locality/City:'] = 'Località:'; $a->strings['Region/State:'] = 'Regione/Stato:'; @@ -2243,15 +2008,6 @@ $a->strings['Public Keywords:'] = 'Parole chiave visibili a tutti:'; $a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(E\' utilizzato per suggerire potenziali amici, può essere visto da altri)'; $a->strings['Private Keywords:'] = 'Parole chiave private:'; $a->strings['(Used for searching profiles, never shown to others)'] = '(Usato per cercare tra i profili, non è mai visibile agli altri)'; -$a->strings['

    Custom fields appear on your profile page.

    -

    You can use BBCodes in the field values.

    -

    Reorder by dragging the field title.

    -

    Empty the label field to remove a custom field.

    -

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

    '] = '

    I campi personalizzati appaiono sulla tua pagina del profilo.

    -

    Puoi utilizzare i BBCode nei campi personalizzati.

    -

    Riordina trascinando i titoli dei campi.

    -

    Svuota le etichette dei campi per rimuovere il campo personalizzato.

    -

    Campi personalizzati non pubblici possono essere visti solo da contatti Friendica selezionati o da contatti Friendica nei gruppi selezionati.

    '; $a->strings['Image size reduction [%s] failed.'] = 'Il ridimensionamento dell\'immagine [%s] è fallito.'; $a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente.'; $a->strings['Unable to process image'] = 'Impossibile elaborare l\'immagine'; @@ -2268,6 +2024,13 @@ $a->strings['Upload Picture:'] = 'Carica Foto:'; $a->strings['or'] = 'o'; $a->strings['skip this step'] = 'salta questo passaggio'; $a->strings['select a photo from your photo albums'] = 'seleziona una foto dai tuoi album'; +$a->strings['[Friendica System Notify]'] = '[Notifica di Sistema di Friendica]'; +$a->strings['User deleted their account'] = 'L\'utente ha cancellato il suo account'; +$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Sul tuo nodo Friendica un utente ha cancellato il suo account. Assicurati che i suoi dati siano rimossi dai backup.'; +$a->strings['The user id is %d'] = 'L\'id utente è %d'; +$a->strings['Remove My Account'] = 'Rimuovi il mio account'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo.'; +$a->strings['Please enter your password for verification:'] = 'Inserisci la tua password per verifica:'; $a->strings['Please enter your password to access this page.'] = 'Per favore inserisci la tua password per accedere a questa pagina.'; $a->strings['App-specific password generation failed: The description is empty.'] = 'Generazione della password specifica per l\'app non riuscita: La descrizione è vuota.'; $a->strings['App-specific password generation failed: This description already exists.'] = 'Generazione della password specifica per l\'app non riuscita: La descrizione esiste già.'; @@ -2286,7 +2049,6 @@ $a->strings['Generate new app-specific password'] = 'Genera nuova password speci $a->strings['Friendiqa on my Fairphone 2...'] = 'Friendiqa sul mio Fairphone 2...'; $a->strings['Generate'] = 'Genera'; $a->strings['Two-factor authentication successfully disabled.'] = 'Autenticazione a due fattori disabilitata con successo.'; -$a->strings['Wrong Password'] = 'Password Sbagliata'; $a->strings['

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

    '] = '

    Usa un\'applicazione su un dispositivo mobile per generare codici di autenticazione a due fattori quando richiesto all\'accesso.

    '; $a->strings['Authenticator app'] = 'App di autenticazione'; $a->strings['Configured'] = 'Configurata'; @@ -2366,8 +2128,26 @@ $a->strings['Stack trace:'] = 'Traccia dello stack:'; $a->strings['Exception thrown in %s:%d'] = 'Eccezione lanciata in %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.'] = 'Al momento della registrazione, e per fornire le comunicazioni tra l\'account dell\'utente e i suoi contatti, l\'utente deve fornire un nome da visualizzare (pseudonimo), un nome utente (soprannome) e un indirizzo email funzionante. I nomi saranno accessibili sulla pagina profilo dell\'account da parte di qualsiasi visitatore, anche quando altri dettagli del profilo non sono mostrati. L\'indirizzo email sarà usato solo per inviare notifiche riguardo l\'interazione coi contatti, ma non sarà mostrato. L\'inserimento dell\'account nella rubrica degli utenti del nodo o nella rubrica globale è opzionale, può essere impostato nelle impostazioni dell\'utente, e non è necessario ai fini delle comunicazioni.'; $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.'] = 'Queste informazioni sono richiesta per la comunicazione e sono inviate ai nodi che partecipano alla comunicazione dove sono salvati. Gli utenti possono inserire aggiuntive informazioni private che potrebbero essere trasmesse agli account che partecipano alla comunicazione.'; -$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.'] = 'In qualsiasi momento un utente autenticato può esportare i dati del suo account dalle impostazioni dell\'account. Se l\'utente vuole cancellare il suo account lo può fare da %1$s/removeme. L\'eliminazione dell\'account sarà permanente. L\'eliminazione dei dati sarà altresì richiesta ai nodi che partecipano alle comunicazioni.'; $a->strings['Privacy Statement'] = 'Note sulla Privacy'; +$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'L\'oggetto richiesto non esiste o è stato eliminato.'; +$a->strings['User imports on closed servers can only be done by an administrator.'] = 'L\'importazione di utenti su server chiusi può essere effettuata solo da un amministratore.'; +$a->strings['Move account'] = 'Muovi account'; +$a->strings['You can import an account from another Friendica server.'] = 'Puoi importare un account da un altro server Friendica.'; +$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.'] = 'Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui.'; +$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (GNU Social/Statusnet) o da Diaspora'; +$a->strings['Account file'] = 'File account'; +$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Per esportare il tuo account, vai su "Impostazioni -> Esporta i tuoi dati personali" e seleziona "Esporta account"'; +$a->strings['Error decoding account file'] = 'Errore decodificando il file account'; +$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?'; +$a->strings['User \'%s\' already exists on this server!'] = 'L\'utente \'%s\' esiste già su questo server!'; +$a->strings['User creation error'] = 'Errore creando l\'utente'; +$a->strings['%d contact not imported'] = [ + 0 => '%d contatto non importato', + 1 => '%d contatti non importati', + 2 => '%d contatti non importati', +]; +$a->strings['User profile creation error'] = 'Errore durante la creazione del profilo dell\'utente'; +$a->strings['Done. You can now login with your username and password'] = 'Fatto. Ora puoi entrare con il tuo nome utente e la tua password'; $a->strings['Welcome to Friendica'] = 'Benvenuto su Friendica'; $a->strings['New Member Checklist'] = 'Cose da fare per i Nuovi Utenti'; $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.'] = 'Vorremmo offrirti qualche trucco e dei collegamenti alla guida per aiutarti ad avere un\'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un collegamento a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione.'; @@ -2391,8 +2171,6 @@ $a->strings['Go to Your Site\'s Directory'] = 'Vai all\'Elenco del tuo sito'; $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.'] = 'La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un collegamento Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto.'; $a->strings['Finding New People'] = 'Trova nuove persone'; $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.'] = 'Nel pannello laterale nella pagina "Contatti", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore.'; -$a->strings['Group Your Contacts'] = 'Raggruppa i tuoi contatti'; -$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.'] = 'Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete'; $a->strings['Why Aren\'t My Posts Public?'] = 'Perchè i miei messaggi non sono pubblici?'; $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.'] = 'Friendica rispetta la tua privacy. Per impostazione predefinita, i tuoi messaggi sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal collegamento qui sopra.'; $a->strings['Getting Help'] = 'Ottenere Aiuto'; @@ -2424,9 +2202,6 @@ $a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Visi $a->strings['%s %s posted to your profile wall'] = '%s %s ha scritto sulla bacheca del tuo profilo'; $a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s ha scritto sulla tua bacheca su %2$s'; $a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s ha inviato un messaggio sulla [url=%2$s]tua bacheca[/url]'; -$a->strings['%1$s %2$s poked you'] = '%1$s %2$s ti ha stuzzicato'; -$a->strings['%1$s poked you at %2$s'] = '%1$s ti ha stuzzicato su %2$s'; -$a->strings['%1$s [url=%2$s]poked you[/url].'] = '%1$s [url=%2$s]ti ha stuzzicato[/url].'; $a->strings['%s Introduction received'] = '%s Introduzione ricevuta'; $a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Hai ricevuto un\'introduzione da \'%1$s\' su %2$s'; $a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Hai ricevuto [url=%1$s]un\'introduzione[/url] da %2$s.'; @@ -2465,10 +2240,9 @@ $a->strings['This message was sent to you by %s, a member of the Friendica socia $a->strings['You may visit them online at %s'] = 'Puoi visitarli online su %s'; $a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Contatta il mittente rispondendo a questo messaggio se non vuoi ricevere questi messaggi.'; $a->strings['%s posted an update.'] = '%s ha inviato un aggiornamento.'; -$a->strings['This entry was edited'] = 'Questa voce è stata modificata'; $a->strings['Private Message'] = 'Messaggio privato'; +$a->strings['This entry was edited'] = 'Questa voce è stata modificata'; $a->strings['Edit'] = 'Modifica'; -$a->strings['Pinned item'] = 'Oggetto in evidenza'; $a->strings['Delete globally'] = 'Rimuovi globalmente'; $a->strings['Remove locally'] = 'Rimuovi localmente'; $a->strings['Block %s'] = 'Blocca %s'; @@ -2496,8 +2270,6 @@ $a->strings['Unshare'] = 'Non ricondividere più'; $a->strings['%s (Received %s)'] = '%s (Ricevuto %s)'; $a->strings['Comment this item on your system'] = 'Commenta questo oggetto sul tuo sistema'; $a->strings['Remote comment'] = 'Commento remoto'; -$a->strings['Pushed'] = 'Inviato'; -$a->strings['Pulled'] = 'Recuperato'; $a->strings['to'] = 'a'; $a->strings['via'] = 'via'; $a->strings['Wall-to-Wall'] = 'Da bacheca a bacheca'; @@ -2512,14 +2284,15 @@ $a->strings['Delivery to remote servers is done'] = 'La consegna ai server remot $a->strings['%d comment'] = [ 0 => '%d commento', 1 => '%d commenti', + 2 => '%d commenti', ]; $a->strings['Show more'] = 'Mostra di più'; $a->strings['Show fewer'] = 'Mostra di meno'; +$a->strings['(no subject)'] = '(nessun oggetto)'; $a->strings['%s is now following %s.'] = '%s sta seguendo %s'; $a->strings['following'] = 'segue'; $a->strings['%s stopped following %s.'] = '%s ha smesso di seguire %s'; $a->strings['stopped following'] = 'tolto dai seguiti'; -$a->strings['The folder view/smarty3/ must be writable by webserver.'] = 'La cartella view/smarty3/ deve essere scrivibile dal webserver.'; $a->strings['Login failed.'] = 'Accesso fallito.'; $a->strings['Login failed. Please check your credentials.'] = 'Accesso non riuscito. Per favore controlla le tue credenziali.'; $a->strings['Welcome %s'] = 'Benvenuto %s'; @@ -2544,7 +2317,6 @@ $a->strings['second'] = 'secondo'; $a->strings['seconds'] = 'secondi'; $a->strings['in %1$d %2$s'] = 'in %1$d %2$s'; $a->strings['%1$d %2$s ago'] = '%1$d %2$s fa'; -$a->strings['(no subject)'] = '(nessun oggetto)'; $a->strings['default'] = 'predefinito'; $a->strings['greenzero'] = 'greenzero'; $a->strings['purplezero'] = 'purplezero'; @@ -2598,7 +2370,6 @@ $a->strings['Center'] = 'Centrato'; $a->strings['Color scheme'] = 'Schema colori'; $a->strings['Posts font size'] = 'Dimensione carattere messaggi'; $a->strings['Textareas font size'] = 'Dimensione carattere nelle aree di testo'; -$a->strings['Comma separated list of helper forums'] = 'Elenco separato da virgole di forum di aiuto'; $a->strings['don\'t show'] = 'non mostrare'; $a->strings['show'] = 'mostra'; $a->strings['Set style'] = 'Imposta stile'; diff --git a/view/lang/ja/messages.po b/view/lang/ja/messages.po index 2b3ecfe4e..277a37096 100644 --- a/view/lang/ja/messages.po +++ b/view/lang/ja/messages.po @@ -1,1466 +1,91 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: # Antron Samurai , 2018 +# nnsrymni, 2022 # ozero dien , 2019-2020 # ozero dien , 2019 # XMPPはいいぞ, 2021 +# daingewuvzeevisiddfddd, 2021 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \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" +"POT-Creation-Date: 2023-09-18 05:30+0000\n" +"PO-Revision-Date: 2011-05-05 10:19+0000\n" +"Last-Translator: XMPPはいいぞ, 2021\n" +"Language-Team: Japanese (http://app.transifex.com/Friendica/friendica/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: 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: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:1163 -#, php-format -msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "月間の最大投稿数 %d 件を超えたため、投稿できませんでした。" - -#: 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 -msgid "Profile Photos" -msgstr "プロフィール写真" - -#: include/conversation.php:195 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s が %2$s にpokeを送りました" - -#: include/conversation.php:227 src/Model/Item.php:2605 -msgid "event" -msgstr "イベント" - -#: include/conversation.php:230 include/conversation.php:239 mod/tagger.php:90 -msgid "status" -msgstr "ステータス" - -#: include/conversation.php:235 mod/tagger.php:90 src/Model/Item.php:2607 -msgid "photo" -msgstr "写真" - -#: 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 が %2$s の %3$s を %4$s としてタグ付けしました" - -#: include/conversation.php:564 mod/photos.php:1470 src/Object/Post.php:226 -msgid "Select" -msgstr "選択" - -#: 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 "削除" - -#: 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:441 -msgid "Categories:" -msgstr "カテゴリ:" - -#: include/conversation.php:614 src/Object/Post.php:442 -msgid "Filed under:" -msgstr "格納先:" - -#: include/conversation.php:621 src/Object/Post.php:467 -#, php-format -msgid "%s from %s" -msgstr "%s から %s" - -#: include/conversation.php:636 -msgid "View in context" -msgstr "文脈で表示する" - -#: 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 "お待ち下さい" - -#: include/conversation.php:702 -msgid "remove" -msgstr "削除" - -#: include/conversation.php:707 -msgid "Delete Selected Items" -msgstr "選択した項目を削除" - -#: 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:754 -#, php-format -msgid "You are following %s." -msgstr "" - -#: include/conversation.php:757 -msgid "Tagged" -msgstr "" - -#: include/conversation.php:770 include/conversation.php:1114 -#: include/conversation.php:1152 -#, php-format -msgid "%s reshared this." -msgstr "%s が再共有しました。" - -#: include/conversation.php:772 -msgid "Reshared" -msgstr "" - -#: include/conversation.php:772 -#, php-format -msgid "Reshared by %s <%s>" -msgstr "" - -#: include/conversation.php:775 -#, php-format -msgid "%s is participating in this thread." -msgstr "" - -#: include/conversation.php:778 -msgid "Stored" -msgstr "" - -#: include/conversation.php:781 -msgid "Global" -msgstr "" - -#: include/conversation.php:784 -msgid "Relayed" -msgstr "" - -#: include/conversation.php:784 -#, php-format -msgid "Relayed by %s <%s>" -msgstr "" - -#: include/conversation.php:787 -msgid "Fetched" -msgstr "" - -#: include/conversation.php:787 -#, php-format -msgid "Fetched because of %s <%s>" -msgstr "" - -#: include/conversation.php:947 view/theme/frio/theme.php:323 -msgid "Follow Thread" -msgstr "このスレッドをフォロー" - -#: include/conversation.php:948 src/Model/Contact.php:999 -msgid "View Status" -msgstr "ステータスを見る" - -#: 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:950 src/Model/Contact.php:1001 -msgid "View Photos" -msgstr "写真を見る" - -#: include/conversation.php:951 src/Model/Contact.php:992 -#: src/Model/Contact.php:1002 -msgid "Network Posts" -msgstr "ネットワーク投稿" - -#: include/conversation.php:952 src/Model/Contact.php:993 -#: src/Model/Contact.php:1003 -msgid "View Contact" -msgstr "コンタクトを見る" - -#: include/conversation.php:953 src/Model/Contact.php:1005 -msgid "Send PM" -msgstr "PMを送る" - -#: 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: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 "無視" - -#: include/conversation.php:959 src/Object/Post.php:428 -msgid "Languages" -msgstr "言語" - -#: include/conversation.php:963 src/Model/Contact.php:1006 -msgid "Poke" -msgstr "Pokeを送る" - -#: 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:1099 -#, php-format -msgid "%s likes this." -msgstr "%s がいいねしました" - -#: include/conversation.php:1102 -#, php-format -msgid "%s doesn't like this." -msgstr "%s はこれを好きではないようです" - -#: include/conversation.php:1105 -#, php-format -msgid "%s attends." -msgstr "%s が参加します。" - -#: include/conversation.php:1108 -#, php-format -msgid "%s doesn't attend." -msgstr "%s は欠席します。" - -#: include/conversation.php:1111 -#, php-format -msgid "%s attends maybe." -msgstr "%s は様子見しています。" - -#: include/conversation.php:1120 -msgid "and" -msgstr "と" - -#: include/conversation.php:1123 -#, php-format -msgid "and %d other people" -msgstr "と他 %d 人" - -#: include/conversation.php:1131 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d 人 がいいねしました" - -#: include/conversation.php:1132 -#, php-format -msgid "%s like this." -msgstr "%s がいいねしました" - -#: include/conversation.php:1135 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d 人 がこれを好きでは無いようです" - -#: include/conversation.php:1136 -#, php-format -msgid "%s don't like this." -msgstr "%s はこれを好きではないようです" - -#: include/conversation.php:1139 -#, php-format -msgid "%2$d people attend" -msgstr "%2$d 人 が参加します" - -#: include/conversation.php:1140 -#, php-format -msgid "%s attend." -msgstr "%s が参加します。" - -#: include/conversation.php:1143 -#, php-format -msgid "%2$d people don't attend" -msgstr "%2$d 人 が欠席します" - -#: include/conversation.php:1144 -#, php-format -msgid "%s don't attend." -msgstr "%s は欠席します。" - -#: include/conversation.php:1147 -#, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d 人 が様子見しています" - -#: include/conversation.php:1148 -#, php-format -msgid "%s attend maybe." -msgstr "%s は様子見しています。" - -#: include/conversation.php:1151 -#, php-format -msgid "%2$d people reshared this" -msgstr "%2$d 人 が再共有しました" - -#: include/conversation.php:1181 -msgid "Visible to everybody" -msgstr "すべての人 が閲覧可能です" - -#: 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:1183 -msgid "Tag term:" -msgstr "用語のタグ付け:" - -#: include/conversation.php:1184 src/Module/Filer/SaveTag.php:69 -msgid "Save to Folder:" -msgstr "保存先のフォルダ:" - -#: include/conversation.php:1185 -msgid "Where are you right now?" -msgstr "どこにいますか?:" - -#: include/conversation.php:1186 -msgid "Delete item(s)?" -msgstr "これ(ら)の項目を削除しますか?" - -#: include/conversation.php:1196 -msgid "New Post" -msgstr "新しい投稿" - -#: include/conversation.php:1199 -msgid "Share" -msgstr "共有" - -#: 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:1201 mod/editpost.php:90 mod/message.php:202 -#: mod/message.php:371 mod/wallmessage.php:153 -msgid "Upload photo" -msgstr "写真をアップロード" - -#: include/conversation.php:1202 mod/editpost.php:91 -msgid "upload photo" -msgstr "写真をアップロード" - -#: include/conversation.php:1203 mod/editpost.php:92 -msgid "Attach file" -msgstr "ファイルを添付" - -#: include/conversation.php:1204 mod/editpost.php:93 -msgid "attach file" -msgstr "ファイルを添付" - -#: include/conversation.php:1205 src/Module/Item/Compose.php:145 -#: src/Object/Post.php:962 -msgid "Bold" -msgstr "太字" - -#: include/conversation.php:1206 src/Module/Item/Compose.php:146 -#: src/Object/Post.php:963 -msgid "Italic" -msgstr "斜体" - -#: include/conversation.php:1207 src/Module/Item/Compose.php:147 -#: src/Object/Post.php:964 -msgid "Underline" -msgstr "下線" - -#: include/conversation.php:1208 src/Module/Item/Compose.php:148 -#: src/Object/Post.php:965 -msgid "Quote" -msgstr "引用" - -#: include/conversation.php:1209 src/Module/Item/Compose.php:149 -#: src/Object/Post.php:966 -msgid "Code" -msgstr "コード" - -#: include/conversation.php:1210 src/Module/Item/Compose.php:150 -#: src/Object/Post.php:967 -msgid "Image" -msgstr "画像" - -#: include/conversation.php:1211 src/Module/Item/Compose.php:151 -#: src/Object/Post.php:968 -msgid "Link" -msgstr "リンク" - -#: include/conversation.php:1212 src/Module/Item/Compose.php:152 -#: src/Object/Post.php:969 -msgid "Link or Media" -msgstr "リンク/メディア" - -#: include/conversation.php:1213 -msgid "Video" -msgstr "動画" - -#: include/conversation.php:1214 mod/editpost.php:100 -#: src/Module/Item/Compose.php:155 -msgid "Set your location" -msgstr "現在地を設定" - -#: include/conversation.php:1215 mod/editpost.php:101 -msgid "set location" -msgstr "現在地を設定" - -#: include/conversation.php:1216 mod/editpost.php:102 -msgid "Clear browser location" -msgstr "ブラウザの現在地を解除" - -#: include/conversation.php:1217 mod/editpost.php:103 -msgid "clear location" -msgstr "現在地を解除" - -#: include/conversation.php:1219 mod/editpost.php:117 -#: src/Module/Item/Compose.php:160 -msgid "Set title" -msgstr "件名を設定" - -#: include/conversation.php:1221 mod/editpost.php:119 -#: src/Module/Item/Compose.php:161 -msgid "Categories (comma-separated list)" -msgstr "カテゴリ(半角カンマ区切り)" - -#: include/conversation.php:1223 mod/editpost.php:105 -msgid "Permission settings" -msgstr "権限設定" - -#: 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:1233 mod/editpost.php:114 -msgid "Public post" -msgstr "一般公開の投稿" - -#: 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 "プレビュー" - -#: 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 "キャンセル" - -#: include/conversation.php:1248 mod/editpost.php:132 -#: src/Model/Profile.php:460 src/Module/Contact.php:344 -msgid "Message" -msgstr "メッセージ" - -#: include/conversation.php:1249 mod/editpost.php:133 -#: src/Module/Settings/TwoFactor/Trusted.php:101 -msgid "Browser" -msgstr "ブラウザ" - -#: include/conversation.php:1251 mod/editpost.php:136 -msgid "Open Compose page" -msgstr "作成ページを開く" - -#: include/enotify.php:51 -msgid "[Friendica:Notify]" -msgstr "" - -#: include/enotify.php:137 -#, php-format -msgid "%s New mail received at %s" -msgstr "" - -#: include/enotify.php:139 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s さんが %2$s に あなたにプライベートメッセージを送りました" - -#: include/enotify.php:140 -msgid "a private message" -msgstr "プライベートメッセージ" - -#: include/enotify.php:140 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s があなたに %2$s を送りました" - -#: include/enotify.php:142 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "%s を開いて、プライベートメッセージを確認・返信してください" - -#: include/enotify.php:188 -#, php-format -msgid "%1$s replied to you on %2$s's %3$s %4$s" -msgstr "" - -#: include/enotify.php:190 -#, php-format -msgid "%1$s tagged you on %2$s's %3$s %4$s" -msgstr "" - -#: include/enotify.php:192 -#, php-format -msgid "%1$s commented on %2$s's %3$s %4$s" -msgstr "" - -#: include/enotify.php:202 -#, php-format -msgid "%1$s replied to you on your %2$s %3$s" -msgstr "" - -#: include/enotify.php:204 -#, php-format -msgid "%1$s tagged you on your %2$s %3$s" -msgstr "" - -#: include/enotify.php:206 -#, php-format -msgid "%1$s commented on your %2$s %3$s" -msgstr "" - -#: include/enotify.php:213 -#, php-format -msgid "%1$s replied to you on their %2$s %3$s" -msgstr "" - -#: include/enotify.php:215 -#, php-format -msgid "%1$s tagged you on their %2$s %3$s" -msgstr "" - -#: include/enotify.php:217 -#, php-format -msgid "%1$s commented on their %2$s %3$s" -msgstr "" - -#: include/enotify.php:228 -#, php-format -msgid "%s %s tagged you" -msgstr "" - -#: include/enotify.php:230 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s さんが %2$s にて あなたをタグ付けしました" - -#: include/enotify.php:232 -#, php-format -msgid "%1$s Comment to conversation #%2$d by %3$s" -msgstr "" - -#: include/enotify.php:234 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s さんが、あなたがフォローしている項目/会話にコメントしました" - -#: include/enotify.php:239 include/enotify.php:254 include/enotify.php:279 -#: include/enotify.php:298 include/enotify.php:314 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr " %s を開いて、コメントを確認・返信してください" - -#: include/enotify.php:246 -#, php-format -msgid "%s %s posted to your profile wall" -msgstr "" - -#: include/enotify.php:248 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s が %2$s に あなたのプロフィールウォールへ投稿しました" - -#: include/enotify.php:249 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s が [url=%2$s]あなたのウォール[/url] に投稿しました" - -#: include/enotify.php:262 -#, php-format -msgid "%s %s shared a new post" -msgstr "" - -#: include/enotify.php:264 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s が %2$s に 投稿を共有しました" - -#: include/enotify.php:265 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s が [url=%2$s]投稿を共有しました[/url]." - -#: include/enotify.php:270 -#, php-format -msgid "%s %s shared a post from %s" -msgstr "" - -#: include/enotify.php:272 -#, php-format -msgid "%1$s shared a post from %2$s at %3$s" -msgstr "" - -#: include/enotify.php:273 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url] from %3$s." -msgstr "" - -#: include/enotify.php:286 -#, php-format -msgid "%1$s %2$s poked you" -msgstr "" - -#: include/enotify.php:288 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s からあなたへ %2$s に Pokeがありました" - -#: include/enotify.php:289 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s から [url=%2$s]Pokeがありました[/url]." - -#: include/enotify.php:306 -#, php-format -msgid "%s %s tagged your post" -msgstr "" - -#: include/enotify.php:308 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s が %2$s に あなたの投稿をタグ付けしました" - -#: include/enotify.php:309 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s が [url=%2$s]あなたの投稿[/url] をタグ付けしました" - -#: include/enotify.php:321 -#, php-format -msgid "%s Introduction received" -msgstr "" - -#: include/enotify.php:323 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "'%1$s' から %2$s に 招待が来ています" - -#: include/enotify.php:324 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "[url=%1$s]招待[/url] が %2$s から来ています。" - -#: include/enotify.php:329 include/enotify.php:375 -#, php-format -msgid "You may visit their profile at %s" -msgstr "彼らのプロフィールを %s にて開けるかもしれません。" - -#: include/enotify.php:331 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr " %s を開いて、招待を承諾・拒否してください。" - -#: include/enotify.php:338 -#, php-format -msgid "%s A new person is sharing with you" -msgstr "" - -#: include/enotify.php:340 include/enotify.php:341 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "%1$s さんが %2$s にて あなたの投稿を共有しました" - -#: include/enotify.php:348 -#, php-format -msgid "%s You have a new follower" -msgstr "" - -#: include/enotify.php:350 include/enotify.php:351 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "新しいフォロワーです %2$s : %1$s" - -#: include/enotify.php:364 -#, php-format -msgid "%s Friend suggestion received" -msgstr "" - -#: include/enotify.php:366 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "'%1$s' より %2$s に 友達の候補を受け取りました" - -#: include/enotify.php:367 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "%3$s から %2$s への [url=%1$s]友達の候補[/url] を受け取りました。" - -#: include/enotify.php:373 -msgid "Name:" -msgstr "名前:" - -#: include/enotify.php:374 -msgid "Photo:" -msgstr "写真:" - -#: include/enotify.php:377 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "%s を開いて、候補を承諾・拒否してください。" - -#: include/enotify.php:385 include/enotify.php:400 -#, php-format -msgid "%s Connection accepted" -msgstr "%s つながりが承諾されました" - -#: include/enotify.php:387 include/enotify.php:402 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "'%1$s' は %2$s に あなたからのつながりの申込みを承諾しました" - -#: include/enotify.php:388 include/enotify.php:403 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "%2$s は あなたからの [url=%1$s]つながりの申し込み[/url] を承諾しました。" - -#: include/enotify.php:393 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and " -"email without restriction." -msgstr "あなたたちは友達になりました。ステータスの更新、写真、メールを制限なくやりとりできます。" - -#: include/enotify.php:395 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "このつながりを変更する場合は %s を開いてください。" - -#: include/enotify.php:408 -#, php-format -msgid "" -"'%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." -msgstr "'%1$s' はあなたをファンとして受け入れました。プライベートメッセージやプロフィール インタラクションなど、一部のやりとりは制限されています。 有名人またはコミュニティページの場合、これらの設定は自動的に適用されます。" - -#: include/enotify.php:410 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future." -msgstr "'%1$s' は後日、これを双方向・より寛容な関係へと拡張する場合があります。" - -#: include/enotify.php:412 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "このつながりを変更する場合は %s を開いてください。" - -#: include/enotify.php:422 mod/removeme.php:63 -msgid "[Friendica System Notify]" -msgstr "[Friendica システム通知]" - -#: include/enotify.php:422 -msgid "registration request" -msgstr "登録リクエスト" - -#: include/enotify.php:424 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "'%1$s' より %2$s に 登録リクエストを受け取りました" - -#: include/enotify.php:425 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "[url=%1$s]登録リクエスト[/url] が %2$s から来ています。" - -#: include/enotify.php:430 -#, php-format -msgid "" -"Full Name:\t%s\n" -"Site Location:\t%s\n" -"Login Name:\t%s (%s)" -msgstr "フルネーム:\t%s\nサイト:\t%s\nログイン名:\t%s (%s)" - -#: include/enotify.php:436 -#, php-format -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: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 "必要な権限が有りません。" - -#: mod/api.php:102 mod/api.php:124 src/Module/OAuth/Acknowledge.php:44 -msgid "Authorize application connection" -msgstr "アプリからの接続を承認します" - -#: mod/api.php:103 -msgid "Return to your app and insert this Securty Code:" -msgstr "アプリの画面に戻り、以下のセキュリティコードを入力してください:" - -#: mod/api.php:112 src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -msgid "Please login to continue." -msgstr "この先に進むにはログインしてください。" - -#: mod/api.php:126 src/Module/OAuth/Acknowledge.php:46 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "このアプリケーションによる、あなたの投稿・コンタクトの読み取りや、新しい投稿の作成を許可しますか?" - -#: 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 "はい" - -#: mod/api.php:128 src/Module/Notifications/Introductions.php:123 -#: src/Module/OAuth/Acknowledge.php:48 src/Module/Register.php:116 -msgid "No" -msgstr "いいえ" - -#: 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 "アクセスが拒否されました。" - -#: 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 "ユーザーが見つかりません。" - -#: 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 "このプロフィールへのアクセスは制限されています。" - -#: 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 "イベント" - -#: mod/cal.php:275 mod/events.php:418 -msgid "View" -msgstr "表示する" - -#: mod/cal.php:276 mod/events.php:420 -msgid "Previous" -msgstr "前" - -#: mod/cal.php:277 mod/events.php:421 src/Module/Install.php:207 -msgid "Next" -msgstr "次" - -#: mod/cal.php:280 mod/events.php:426 src/Model/Event.php:463 -msgid "today" -msgstr "今日" - -#: mod/cal.php:281 mod/events.php:427 src/Model/Event.php:464 -#: src/Util/Temporal.php:330 -msgid "month" -msgstr "月" - -#: mod/cal.php:282 mod/events.php:428 src/Model/Event.php:465 -#: src/Util/Temporal.php:331 -msgid "week" -msgstr "週間" - -#: mod/cal.php:283 mod/events.php:429 src/Model/Event.php:466 -#: src/Util/Temporal.php:332 -msgid "day" -msgstr "日" - -#: mod/cal.php:284 mod/events.php:430 -msgid "list" -msgstr "リスト" - -#: 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 "ユーザーが見つかりません" - -#: mod/cal.php:306 -msgid "This calendar format is not supported" -msgstr "このカレンダー形式はサポートされていません" - -#: mod/cal.php:308 -msgid "No exportable data found" -msgstr "エクスポート可能なデータが見つかりません" - -#: mod/cal.php:325 -msgid "calendar" -msgstr "カレンダー" - -#: mod/dfrn_confirm.php:84 src/Module/Profile/Profile.php:82 -msgid "Profile not found." -msgstr "プロフィールが見つかりません。" - -#: 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 "コンタクトが見つかりません。" - -#: mod/dfrn_confirm.php:140 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "これは、連絡が両方の人から要求され、すでに承認されている場合に発生することがあります。" - -#: mod/dfrn_confirm.php:241 -msgid "Response from remote site was not understood." -msgstr "リモートサイトから解釈できない応答がありました。" - -#: mod/dfrn_confirm.php:248 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "リモートサイトからの予期しない応答:" - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "確認が正常に完了しました。" - -#: mod/dfrn_confirm.php:275 -msgid "Temporary failure. Please wait and try again." -msgstr "一時的な障害。しばらくしてからもう一度お試しください。" - -#: mod/dfrn_confirm.php:278 -msgid "Introduction failed or was revoked." -msgstr "招待が失敗したか取り消されました。" - -#: mod/dfrn_confirm.php:283 -msgid "Remote site reported: " -msgstr "報告されたリモートサイト:" - -#: mod/dfrn_confirm.php:388 -#, php-format -msgid "No user record found for '%s' " -msgstr "' %s 'のユーザーレコードが見つかりません" - -#: mod/dfrn_confirm.php:398 -msgid "Our site encryption key is apparently messed up." -msgstr "当サイトの暗号化鍵が破損しているようです。" - -#: mod/dfrn_confirm.php:409 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "空のサイトURLが提供されたか、URLを解読できませんでした。" - -#: mod/dfrn_confirm.php:425 -msgid "Contact record was not found for you on our site." -msgstr "私たちのサイトでコンタクトレコードが見つかりませんでした。" - -#: mod/dfrn_confirm.php:439 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "URL %sのコンタクトレコードに対応したサイトの公開鍵がありません。" - -#: 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 "あなたのシステムから提供されたIDは、このサーバ上で重複しています。再試行すると使えるかもしれません。" - -#: mod/dfrn_confirm.php:466 -msgid "Unable to set your contact credentials on our system." -msgstr "このサーバ上のあなたのコンタクトの資格情報を設定できません。" - -#: mod/dfrn_confirm.php:522 -msgid "Unable to update your contact profile details on our system" -msgstr "このサーバ上のあなたのコンタクトプロフィールの詳細を更新できません" - -#: mod/dfrn_poll.php:136 mod/dfrn_poll.php:509 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%2$sさん、%1$sへようこそ" - -#: mod/dfrn_request.php:113 -msgid "This introduction has already been accepted." -msgstr "この招待はすでに承諾されています。" - -#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 -msgid "Profile location is not valid or does not contain profile information." -msgstr "プロフィールに書かれた場所が無効であるか、プロフィール情報が含まれていません。" - -#: mod/dfrn_request.php:135 mod/dfrn_request.php:373 -msgid "Warning: profile location has no identifiable owner name." -msgstr "警告:プロフィールに書かれた場所には識別可能な所有者名がありません。" - -#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 -msgid "Warning: profile location has no profile photo." -msgstr "警告:プロフィールに書かれた場所にはプロフィール写真がありません。" - -#: 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必須パラメータが見つかりませんでした" - -#: mod/dfrn_request.php:180 -msgid "Introduction complete." -msgstr "招待が完了しました。" - -#: mod/dfrn_request.php:216 -msgid "Unrecoverable protocol error." -msgstr "回復不能なプロトコルエラー。" - -#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:54 -msgid "Profile unavailable." -msgstr "プロフィールを利用できません。" - -#: mod/dfrn_request.php:264 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "今日、 %sが受信したつながりリクエストが多すぎます。" - -#: mod/dfrn_request.php:265 -msgid "Spam protection measures have been invoked." -msgstr "スパム対策が呼び出されました。" - -#: mod/dfrn_request.php:266 -msgid "Friends are advised to please try again in 24 hours." -msgstr "24時間以内にもう一度お試しください。" - -#: mod/dfrn_request.php:290 src/Module/RemoteFollow.php:60 -msgid "Invalid locator" -msgstr "無効なロケーター" - -#: mod/dfrn_request.php:326 -msgid "You have already introduced yourself here." -msgstr "あなたはすでにここで自己紹介しています。" - -#: mod/dfrn_request.php:329 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "どうやらあなたはすでに%sと友達です。" - -#: mod/dfrn_request.php:349 -msgid "Invalid profile URL." -msgstr "無効なプロフィールURL。" - -#: 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:2182 -#: src/Module/Friendica.php:80 -msgid "Blocked domain" -msgstr "ブロックされたドメイン" - -#: mod/dfrn_request.php:428 src/Module/Contact.php:157 -msgid "Failed to update contact record." -msgstr "コンタクトレコードを更新できませんでした。" - -#: mod/dfrn_request.php:448 -msgid "Your introduction has been sent." -msgstr "招待文が送信されました。" - -#: 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 "あなたのネットワークではリモート購読ができません。あなたのシステム上で直接購読してください。" - -#: mod/dfrn_request.php:496 -msgid "Please login to confirm introduction." -msgstr "ログインして招待を確認してください。" - -#: mod/dfrn_request.php:504 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "現在ログインしているIDが正しくありません。こちらのプロフィールにログインしてください。" - -#: mod/dfrn_request.php:518 mod/dfrn_request.php:533 -msgid "Confirm" -msgstr "確認する" - -#: mod/dfrn_request.php:529 -msgid "Hide this contact" -msgstr "このコンタクトを非表示" - -#: mod/dfrn_request.php:531 -#, php-format -msgid "Welcome home %s." -msgstr "おかえりなさい、%s 。" - -#: mod/dfrn_request.php:532 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "%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 "パブリックアクセスが拒否されました。" - -#: mod/dfrn_request.php:636 src/Module/RemoteFollow.php:104 -msgid "Friend/Connection Request" -msgstr "友達/接続リクエスト" - -#: 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 "" - -#: 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 "まだ'自由なソーシャルウェブ'のメンバーでない場合は、このリンクをクリックして、Friendicaの公開サイトを見つけて、今すぐ参加してください。" - -#: mod/dfrn_request.php:639 src/Module/RemoteFollow.php:107 -msgid "Your Webfinger address or profile URL:" -msgstr "" - -#: mod/dfrn_request.php:640 mod/follow.php:147 src/Module/RemoteFollow.php:108 -msgid "Please answer the following:" -msgstr "以下に答えてください。" - -#: mod/dfrn_request.php:641 mod/follow.php:74 mod/unfollow.php:99 -#: src/Module/RemoteFollow.php:109 -msgid "Submit Request" -msgstr "リクエストを送る" - -#: mod/dfrn_request.php:648 mod/follow.php:161 -#, php-format -msgid "%s knows you" -msgstr "%sはあなたを知っています" - -#: mod/dfrn_request.php:649 mod/follow.php:162 -msgid "Add a personal note:" -msgstr "個人メモを追加します。" - -#: mod/display.php:235 mod/display.php:320 -msgid "The requested item doesn't exist or has been deleted." -msgstr "要求された項目は存在しないか、削除されました。" - -#: mod/display.php:400 -msgid "The feed for this item is unavailable." -msgstr "この項目のフィードは利用できません。" - -#: mod/editpost.php:44 mod/editpost.php:54 -msgid "Item not found" -msgstr "項目が見つかりません" - -#: mod/editpost.php:61 -msgid "Edit post" -msgstr "投稿を編集" - -#: mod/editpost.php:88 mod/notes.php:63 src/Content/Text/HTML.php:893 -#: src/Module/Filer/SaveTag.php:70 -msgid "Save" -msgstr "保存する" - -#: mod/editpost.php:94 mod/message.php:203 mod/message.php:372 -#: mod/wallmessage.php:154 -msgid "Insert web link" -msgstr "webリンクを挿入" - -#: mod/editpost.php:95 -msgid "web link" -msgstr "ウェブリンク" - -#: mod/editpost.php:96 -msgid "Insert video link" -msgstr "ビデオリンクを挿入" - -#: mod/editpost.php:97 -msgid "video link" -msgstr "ビデオリンク" - -#: mod/editpost.php:98 -msgid "Insert audio link" -msgstr "オーディオリンクを挿入" - -#: mod/editpost.php:99 -msgid "audio link" -msgstr "オーディオリンク" - -#: mod/editpost.php:113 src/Core/ACL.php:313 -msgid "CC: email addresses" -msgstr "CC:メールアドレス" - -#: mod/editpost.php:120 src/Core/ACL.php:314 -msgid "Example: bob@example.com, mary@example.com" -msgstr "例:bob @ example.com、mary @ example.com" - -#: mod/events.php:138 mod/events.php:140 -msgid "Event can not end before it has started." -msgstr "イベントは開始する前に終了できません。" - -#: mod/events.php:147 mod/events.php:149 -msgid "Event title and start time are required." -msgstr "イベントのタイトルと開始時間が必要です。" - -#: mod/events.php:419 -msgid "Create New Event" -msgstr "新しいイベントを作成" - -#: mod/events.php:531 -msgid "Event details" -msgstr "イベントの詳細" - -#: mod/events.php:532 -msgid "Starting date and Title are required." -msgstr "開始日とタイトルが必要です。" - -#: mod/events.php:533 mod/events.php:538 -msgid "Event Starts:" -msgstr "イベント開始:" - -#: 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 "必須" - -#: mod/events.php:546 mod/events.php:571 -msgid "Finish date/time is not known or not relevant" -msgstr "終了日時が不明であるか、関連性がない" - -#: mod/events.php:548 mod/events.php:553 -msgid "Event Finishes:" -msgstr "イベント終了:" - -#: mod/events.php:559 mod/events.php:572 -msgid "Adjust for viewer timezone" -msgstr "視聴者のタイムゾーンに合わせて調整する" - -#: mod/events.php:561 src/Module/Profile/Profile.php:172 -#: src/Module/Settings/Profile/Index.php:253 -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: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 "ロケーション:" - -#: mod/events.php:565 mod/events.php:567 -msgid "Title:" -msgstr "タイトル:" - -#: mod/events.php:568 mod/events.php:569 -msgid "Share this event" -msgstr "このイベントを共有する" - -#: 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 "送信する" - -#: mod/events.php:576 src/Module/Profile/Profile.php:244 -msgid "Basic" -msgstr "ベーシック" - -#: mod/events.php:577 src/Module/Admin/Site.php:584 src/Module/Contact.php:961 -#: src/Module/Profile/Profile.php:245 -msgid "Advanced" -msgstr "詳細" - -#: mod/events.php:594 -msgid "Failed to remove event" -msgstr "イベントを削除できませんでした" - -#: mod/fbrowser.php:43 src/Content/Nav.php:193 src/Module/BaseProfile.php:68 -#: view/theme/frio/theme.php:228 -msgid "Photos" -msgstr "写真" - -#: mod/fbrowser.php:107 mod/fbrowser.php:136 -#: src/Module/Settings/Profile/Photo/Index.php:130 -msgid "Upload" -msgstr "アップロードする" - -#: mod/fbrowser.php:131 -msgid "Files" -msgstr "ファイル" - -#: mod/follow.php:84 -msgid "You already added this contact." -msgstr "このコンタクトは既に追加されています。" - -#: mod/follow.php:100 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "ネットワークの種類を検出できませんでした。コンタクトを追加できません。" - -#: mod/follow.php:108 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Diasporaのサポートは有効になっていません。コンタクトを追加できません。" - -#: mod/follow.php:113 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatusサポートは無効です。コンタクトを追加できません。" - -#: mod/follow.php:148 mod/unfollow.php:97 -msgid "Your Identity Address:" -msgstr "あなたのIdentityアドレス:" - -#: 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 "プロフィール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 "タグ:" - -#: mod/follow.php:171 mod/unfollow.php:113 src/Module/BaseProfile.php:63 -#: src/Module/Contact.php:939 -msgid "Status Messages and Posts" -msgstr "ステータスメッセージと投稿" - -#: mod/follow.php:203 -msgid "The contact could not be added." -msgstr "コンタクトを追加できませんでした。" - -#: mod/item.php:136 mod/item.php:140 +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 msgid "Unable to locate original post." msgstr "元の投稿が見つかりません。" -#: mod/item.php:341 mod/item.php:346 -msgid "Empty post discarded." -msgstr "空の投稿は破棄されました。" - -#: mod/item.php:717 +#: mod/item.php:138 msgid "Post updated." msgstr "投稿が更新されました。" -#: mod/item.php:727 mod/item.php:732 +#: mod/item.php:203 mod/item.php:207 msgid "Item wasn't stored." msgstr "項目が保存されませんでした。" -#: mod/item.php:743 +#: mod/item.php:217 msgid "Item couldn't be fetched." msgstr "項目を取得できませんでした。" -#: 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 +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "空の投稿は破棄されました。" + +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 +#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "見つかりませんでした。" +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:99 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:38 +#: src/Module/FriendSuggest.php:57 src/Module/Invite.php:42 +#: src/Module/Invite.php:131 src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Delegation.php:41 src/Module/Settings/Delegation.php:71 +#: src/Module/Settings/Display.php:73 src/Module/Settings/Display.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:111 +#: src/Module/Settings/RemoveMe.php:117 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Import.php:84 +#: src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "必要な権限が有りません。" + #: mod/lostpass.php:40 msgid "No valid account found." msgstr "有効なアカウントが見つかりません。" @@ -1527,7 +152,7 @@ msgid "" "your email for further instructions." msgstr "メールアドレスを入力して送信し、パスワードをリセットしてください。その後、メールで詳細な手順を確認してください。" -#: mod/lostpass.php:130 src/Module/Security/Login.php:148 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " msgstr "ニックネームまたはメール:" @@ -1535,7 +160,7 @@ msgstr "ニックネームまたはメール:" msgid "Reset" msgstr "リセットする" -#: mod/lostpass.php:146 src/Module/Security/Login.php:160 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 msgid "Password Reset" msgstr "パスワードのリセット" @@ -1595,23 +220,11 @@ msgstr "\n\t\t\tログインの詳細は次のとおりです:\n\n\t\t\tサイ msgid "Your password has been changed at %s" msgstr "パスワードは%s変更されました" -#: mod/match.php:62 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "合致するキーワードが有りません。あなたのプロフィールにキーワードを追加してください。" - -#: mod/match.php:93 src/Module/BaseSearch.php:117 -msgid "No matches" -msgstr "一致する項目がありません" - -#: mod/match.php:98 -msgid "Profile Match" -msgstr "一致するプロフィール" - -#: mod/message.php:46 mod/message.php:127 src/Content/Nav.php:290 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 msgid "New Message" msgstr "新しいメッセージ" -#: mod/message.php:83 mod/wallmessage.php:76 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 msgid "No recipient selected." msgstr "宛先が未指定です。" @@ -1619,1460 +232,709 @@ msgstr "宛先が未指定です。" msgid "Unable to locate contact information." msgstr "コンタクト情報が見つかりません。" -#: mod/message.php:90 mod/wallmessage.php:82 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 msgid "Message could not be sent." msgstr "メッセージを送信できませんでした。" -#: mod/message.php:93 mod/wallmessage.php:85 +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 msgid "Message collection failure." msgstr "メッセージの収集に失敗しました。" -#: mod/message.php:121 src/Module/Notifications/Introductions.php:114 -#: src/Module/Notifications/Introductions.php:155 -#: src/Module/Notifications/Notification.php:56 +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 msgid "Discard" msgstr "捨てる" -#: mod/message.php:134 src/Content/Nav.php:287 view/theme/frio/theme.php:235 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" msgstr "メッセージ" -#: mod/message.php:147 +#: mod/message.php:148 msgid "Conversation not found." msgstr "会話が見つかりません。" -#: mod/message.php:152 +#: mod/message.php:153 msgid "Message was not deleted." msgstr "メッセージを削除しませんでした。" -#: mod/message.php:170 +#: mod/message.php:168 msgid "Conversation was not removed." msgstr "会話を削除しませんでした。" -#: mod/message.php:184 mod/message.php:297 mod/wallmessage.php:137 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 msgid "Please enter a link URL:" msgstr "リンクURLを入力してください。" -#: mod/message.php:193 mod/wallmessage.php:142 +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 msgid "Send Private Message" msgstr "プライベートメッセージを送信する" -#: mod/message.php:194 mod/message.php:363 mod/wallmessage.php:144 +#: mod/message.php:191 mod/message.php:346 msgid "To:" msgstr "送信先:" -#: mod/message.php:195 mod/message.php:364 mod/wallmessage.php:145 +#: mod/message.php:192 mod/message.php:347 msgid "Subject:" msgstr "件名" -#: mod/message.php:199 mod/message.php:367 mod/wallmessage.php:151 -#: src/Module/Invite.php:167 +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 msgid "Your message:" msgstr "メッセージ" -#: mod/message.php:233 +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "写真をアップロード" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "webリンクを挿入" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:578 +msgid "Please wait" +msgstr "お待ち下さい" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:145 +#: src/Module/Install.php:234 src/Module/Install.php:274 +#: src/Module/Install.php:309 src/Module/Invite.php:178 +#: src/Module/Item/Compose.php:189 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Object/Post.php:1095 +#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171 +#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135 +msgid "Submit" +msgstr "送信する" + +#: mod/message.php:223 msgid "No messages." msgstr "メッセージはありません。" -#: mod/message.php:289 +#: mod/message.php:279 msgid "Message not available." msgstr "メッセージは利用できません。" -#: mod/message.php:339 +#: mod/message.php:323 msgid "Delete message" msgstr "メッセージを削除" -#: mod/message.php:341 mod/message.php:473 +#: mod/message.php:325 mod/message.php:456 msgid "D, d M Y - g:i A" msgstr "D、d MY-g:i A" -#: mod/message.php:356 mod/message.php:470 +#: mod/message.php:340 mod/message.php:453 msgid "Delete conversation" msgstr "会話を削除" -#: mod/message.php:358 +#: mod/message.php:342 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "安全な通信は利用できません。送信者のプロフィールページから返信できる場合があります。" -#: mod/message.php:362 +#: mod/message.php:345 msgid "Send Reply" msgstr "返信する" -#: mod/message.php:444 +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "不明な送信者です - %s" -#: mod/message.php:446 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "あなたと%s" -#: mod/message.php:448 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "%sとあなた" -#: mod/message.php:476 +#: mod/message.php:459 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%dメッセージ" -#: mod/notes.php:51 src/Module/BaseProfile.php:110 +#: mod/notes.php:52 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "個人メモ" -#: mod/notes.php:59 +#: mod/notes.php:56 msgid "Personal notes are visible only by yourself." msgstr "個人メモは自分自身によってのみ見えます。" -#: mod/ostatus_subscribe.php:35 -msgid "Subscribing to OStatus contacts" -msgstr "Ostatusコンタクトを購読しています。" +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 +msgid "Save" +msgstr "保存する" -#: mod/ostatus_subscribe.php:45 -msgid "No contact provided." -msgstr "コンタクトは提供されていません。" +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "ユーザーが見つかりません。" -#: mod/ostatus_subscribe.php:51 -msgid "Couldn't fetch information for contact." -msgstr "コンタクトの情報を取得できませんでした。" - -#: mod/ostatus_subscribe.php:61 -msgid "Couldn't fetch friends for contact." -msgstr "コンタクトの友達関係を取得できませんでした。" - -#: mod/ostatus_subscribe.php:79 mod/repair_ostatus.php:65 -msgid "Done" -msgstr "完了" - -#: mod/ostatus_subscribe.php:93 -msgid "success" -msgstr "成功" - -#: mod/ostatus_subscribe.php:95 -msgid "failed" -msgstr "失敗" - -#: mod/ostatus_subscribe.php:98 -msgid "ignored" -msgstr "無視" - -#: mod/ostatus_subscribe.php:103 mod/repair_ostatus.php:71 -msgid "Keep this window open until done." -msgstr "ウィンドウを閉じずにお待ちください…" - -#: mod/photos.php:129 src/Module/BaseProfile.php:71 +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 msgid "Photo Albums" msgstr "フォトアルバム" -#: mod/photos.php:130 mod/photos.php:1638 +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 msgid "Recent Photos" msgstr "最近の写真" -#: mod/photos.php:132 mod/photos.php:1105 mod/photos.php:1640 +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 msgid "Upload New Photos" msgstr "新しい写真をアップロード" -#: mod/photos.php:150 src/Module/BaseSettings.php:37 +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 msgid "everybody" msgstr "みなさん" -#: mod/photos.php:183 +#: mod/photos.php:159 msgid "Contact information unavailable" msgstr "コンタクト情報は利用できません" -#: mod/photos.php:222 +#: mod/photos.php:188 msgid "Album not found." msgstr "アルバムが見つかりません。" -#: mod/photos.php:280 +#: mod/photos.php:244 msgid "Album successfully deleted" msgstr "アルバムを削除しました" -#: mod/photos.php:282 +#: mod/photos.php:246 msgid "Album was empty." msgstr "アルバムは空でした。" -#: mod/photos.php:314 +#: mod/photos.php:277 msgid "Failed to delete the photo." msgstr "写真を削除できませんでした" -#: mod/photos.php:589 +#: mod/photos.php:545 msgid "a photo" msgstr "写真" -#: mod/photos.php:589 +#: mod/photos.php:545 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$sが%2$sで%3$sによってタグ付けされました" -#: 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 "画像サイズ上限 %s を超えています。" +#: mod/photos.php:582 src/Module/Conversation/Community.php:159 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "パブリックアクセスが拒否されました。" -#: mod/photos.php:678 -msgid "Image upload didn't complete, please try again" -msgstr "画像のアップロードが完了しませんでした。もう一度お試しください" - -#: mod/photos.php:681 -msgid "Image file is missing" -msgstr "画像ファイルがありません" - -#: mod/photos.php:686 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "サーバーは現在、新しいファイルのアップロードを受け入れられません。管理者に連絡してください" - -#: mod/photos.php:710 -msgid "Image file is empty." -msgstr "画像ファイルが空です。" - -#: mod/photos.php:725 mod/wall_upload.php:175 -#: src/Module/Settings/Profile/Photo/Index.php:70 -msgid "Unable to process image." -msgstr "画像を処理できません。" - -#: mod/photos.php:754 mod/wall_upload.php:241 -#: src/Module/Settings/Profile/Photo/Index.php:97 -msgid "Image upload failed." -msgstr "画像アップロードに失敗しました。" - -#: mod/photos.php:841 +#: mod/photos.php:587 msgid "No photos selected" msgstr "写真が選択されていません" -#: mod/photos.php:907 mod/videos.php:182 -msgid "Access to this item is restricted." -msgstr "この項目へのアクセスは制限されています。" +#: mod/photos.php:721 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "" -#: mod/photos.php:961 +#: mod/photos.php:728 msgid "Upload Photos" msgstr "写真をアップロードする" -#: mod/photos.php:965 mod/photos.php:1050 +#: mod/photos.php:732 mod/photos.php:820 msgid "New album name: " msgstr "新しいアルバム名:" -#: mod/photos.php:966 +#: mod/photos.php:733 msgid "or select existing album:" msgstr "または既存のアルバムを選択:" -#: mod/photos.php:967 +#: mod/photos.php:734 msgid "Do not show a status post for this upload" msgstr "このアップロードのステータス投稿を表示しません" -#: mod/photos.php:1033 +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "許可" + +#: mod/photos.php:801 msgid "Do you really want to delete this photo album and all its photos?" msgstr "このフォトアルバムとそのすべての写真を本当に削除しますか?" -#: mod/photos.php:1034 mod/photos.php:1055 +#: mod/photos.php:802 mod/photos.php:825 msgid "Delete Album" msgstr "アルバムを削除" -#: mod/photos.php:1061 +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "キャンセル" + +#: mod/photos.php:829 msgid "Edit Album" msgstr "アルバムを編集" -#: mod/photos.php:1062 +#: mod/photos.php:830 msgid "Drop Album" msgstr "アルバムを削除" -#: mod/photos.php:1067 +#: mod/photos.php:834 msgid "Show Newest First" msgstr "新しいもの順に表示" -#: mod/photos.php:1069 +#: mod/photos.php:836 msgid "Show Oldest First" msgstr "最も古いものを最初に表示" -#: mod/photos.php:1090 mod/photos.php:1623 +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 msgid "View Photo" msgstr "写真を見る" -#: mod/photos.php:1127 +#: mod/photos.php:889 msgid "Permission denied. Access to this item may be restricted." msgstr "アクセス拒否。この項目へのアクセスは制限される場合があります。" -#: mod/photos.php:1129 +#: mod/photos.php:891 msgid "Photo not available" msgstr "写真は利用できません" -#: mod/photos.php:1139 +#: mod/photos.php:901 msgid "Do you really want to delete this photo?" msgstr "この写真を本当に削除しますか?" -#: mod/photos.php:1140 mod/photos.php:1340 +#: mod/photos.php:902 mod/photos.php:1102 msgid "Delete Photo" msgstr "写真を削除" -#: mod/photos.php:1231 +#: mod/photos.php:1000 msgid "View photo" msgstr "写真を見る" -#: mod/photos.php:1233 +#: mod/photos.php:1002 msgid "Edit photo" msgstr "写真を編集する" -#: mod/photos.php:1234 +#: mod/photos.php:1003 msgid "Delete photo" msgstr "写真を削除" -#: mod/photos.php:1235 +#: mod/photos.php:1004 msgid "Use as profile photo" msgstr "プロフィール写真として使用" -#: mod/photos.php:1242 +#: mod/photos.php:1011 msgid "Private Photo" msgstr "プライベート写真" -#: mod/photos.php:1248 +#: mod/photos.php:1017 msgid "View Full Size" msgstr "フルサイズを表示" -#: mod/photos.php:1308 +#: mod/photos.php:1070 msgid "Tags: " msgstr "タグ:" -#: mod/photos.php:1311 +#: mod/photos.php:1073 msgid "[Select tags to remove]" msgstr "[削除するタグを選択]" -#: mod/photos.php:1326 +#: mod/photos.php:1088 msgid "New album name" msgstr "新しいアルバム名" -#: mod/photos.php:1327 +#: mod/photos.php:1089 msgid "Caption" msgstr "キャプション" -#: mod/photos.php:1328 +#: mod/photos.php:1090 msgid "Add a Tag" msgstr "タグを追加する" -#: mod/photos.php:1328 +#: mod/photos.php:1090 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "例:@ bob、@ Barbara_Jensen、@ jim @ example.com、#California、#camping" -#: mod/photos.php:1329 +#: mod/photos.php:1091 msgid "Do not rotate" msgstr "回転させないでください" -#: mod/photos.php:1330 +#: mod/photos.php:1092 msgid "Rotate CW (right)" msgstr "CWを回転(右)" -#: mod/photos.php:1331 +#: mod/photos.php:1093 msgid "Rotate CCW (left)" 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:957 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1092 msgid "This is you" msgstr "これはあなたです" -#: mod/photos.php:1379 mod/photos.php:1436 mod/photos.php:1511 -#: src/Object/Post.php:495 src/Object/Post.php:959 +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:572 +#: src/Object/Post.php:1094 msgid "Comment" msgstr "コメント" -#: mod/photos.php:1533 src/Object/Post.php:348 +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1108 +msgid "Preview" +msgstr "プレビュー" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1096 +msgid "Loading..." +msgstr "読み込み中…" + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:260 +msgid "Select" +msgstr "選択" + +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 +msgid "Delete" +msgstr "削除" + +#: mod/photos.php:1298 src/Object/Post.php:408 msgid "Like" msgstr "いいね" -#: mod/photos.php:1534 src/Object/Post.php:348 +#: mod/photos.php:1299 src/Object/Post.php:408 msgid "I like this (toggle)" msgstr "私はこれが好きです(トグル)" -#: mod/photos.php:1535 src/Object/Post.php:349 +#: mod/photos.php:1300 src/Object/Post.php:409 msgid "Dislike" msgstr "嫌い" -#: mod/photos.php:1537 src/Object/Post.php:349 +#: mod/photos.php:1302 src/Object/Post.php:409 msgid "I don't like this (toggle)" msgstr "気に入らない(トグル)" -#: mod/photos.php:1559 +#: mod/photos.php:1324 msgid "Map" msgstr "地図" -#: mod/photos.php:1629 mod/videos.php:259 -msgid "View Album" -msgstr "アルバムを見る" - -#: mod/ping.php:285 -msgid "{0} wants to be your friend" -msgstr "{0}は友達になりたい" - -#: mod/ping.php:302 -msgid "{0} requested registration" -msgstr "{0}は登録をリクエストしました" - -#: mod/ping.php:315 -#, php-format -msgid "{0} and %d others requested registration" -msgstr "" - -#: mod/redir.php:50 mod/redir.php:130 -msgid "Bad Request." -msgstr "要求の形式が正しくありません。" - -#: mod/removeme.php:63 -msgid "User deleted their account" -msgstr "このユーザはアカウントを削除しました。" - -#: mod/removeme.php:64 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "Friendicaノードで、ユーザーがアカウントを削除しました。 それらのデータがバックアップから削除されていることを確認してください。" - -#: mod/removeme.php:65 -#, php-format -msgid "The user id is %d" -msgstr "ユーザIDは %d です" - -#: mod/removeme.php:99 mod/removeme.php:102 -msgid "Remove My Account" -msgstr "自分のアカウントを削除します" - -#: mod/removeme.php:100 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "これにより、アカウントが完全に削除されます。 これが完了すると、回復できなくなります。" - -#: mod/removeme.php:101 -msgid "Please enter your password for verification:" -msgstr "確認のため、あなたのパスワードを入力してください。" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Ostatusコンタクトをもう一度購読します" - -#: 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] "エラー" - -#: mod/settings.php:90 -msgid "Missing some important data!" -msgstr "重要なデータがありません!" - -#: mod/settings.php:92 src/Module/Contact.php:890 -msgid "Update" -msgstr "更新" - -#: mod/settings.php:200 -msgid "Failed to connect with email account using the settings provided." -msgstr "提供された設定を使用してメールアカウントに接続できませんでした。" - -#: mod/settings.php:229 -msgid "Contact CSV file upload error" -msgstr "アップロードエラー:コンタクトCSVファイル" - -#: mod/settings.php:248 -msgid "Importing Contacts done" -msgstr "コンタクトのインポートが完了しました" - -#: mod/settings.php:261 -msgid "Relocate message has been send to your contacts" -msgstr "再配置メッセージがコンタクトに送信されました" - -#: mod/settings.php:273 -msgid "Passwords do not match." -msgstr "パスワードが一致していません。" - -#: mod/settings.php:281 src/Console/User.php:210 -msgid "Password update failed. Please try again." -msgstr "パスワードの更新に失敗しました。もう一度試してください。" - -#: mod/settings.php:284 src/Console/User.php:213 -msgid "Password changed." -msgstr "パスワード変更済み。" - -#: mod/settings.php:287 -msgid "Password unchanged." -msgstr "パスワードは変更されていません。" - -#: mod/settings.php:372 -msgid "Please use a shorter name." -msgstr "短い名前を使用してください。" - -#: mod/settings.php:375 -msgid "Name too short." -msgstr "名前が短すぎます。" - -#: mod/settings.php:382 -msgid "Wrong Password." -msgstr "パスワードが間違っています。" - -#: mod/settings.php:387 -msgid "Invalid email." -msgstr "無効なメール。" - -#: mod/settings.php:393 -msgid "Cannot change to that email." -msgstr "そのメールに変更できません。" - -#: mod/settings.php:431 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "プライベートフォーラムにはプライバシー権限がありません。デフォルトのプライバシーグループを使用します。" - -#: mod/settings.php:434 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "プライベートフォーラムにはプライバシー権限がなく、デフォルトのプライバシーグループもありません。" - -#: mod/settings.php:451 -msgid "Settings were not updated." -msgstr "設定が更新されませんでした。" - -#: mod/settings.php:517 -msgid "Connected Apps" -msgstr "接続されたアプリ" - -#: 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 "名" - -#: mod/settings.php:519 src/Content/Nav.php:216 -msgid "Home Page" -msgstr "ホームページ" - -#: mod/settings.php:520 src/Module/Admin/Queue.php:78 -msgid "Created" -msgstr "作成した" - -#: mod/settings.php:521 -msgid "Remove authorization" -msgstr "承認を削除" - -#: mod/settings.php:532 -msgid "No Addon settings configured" -msgstr "アドオン設定は構成されていません" - -#: mod/settings.php:541 -msgid "Addon Settings" -msgstr "アドオン設定" - -#: mod/settings.php:562 -msgid "Additional Features" -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: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 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora(Socialhome、Hubzilla)" - -#: mod/settings.php:587 mod/settings.php:588 -msgid "enabled" -msgstr "有効" - -#: mod/settings.php:587 mod/settings.php:588 -msgid "disabled" -msgstr "無効" - -#: mod/settings.php:587 mod/settings.php:588 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "%s接続の組み込みサポートは%s" - -#: mod/settings.php:588 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: mod/settings.php:619 -msgid "Email access is disabled on this site." -msgstr "このサイトではメールアクセスが無効になっています。" - -#: mod/settings.php:624 mod/settings.php:660 -msgid "None" -msgstr "無し" - -#: mod/settings.php:630 src/Module/BaseSettings.php:80 -msgid "Social Networks" -msgstr "ソーシャルネットワーク" - -#: mod/settings.php:635 -msgid "General Social Media Settings" -msgstr "一般的なソーシャルメディア設定" - -#: mod/settings.php:636 -msgid "Accept only top level posts by contacts you follow" -msgstr "フォローしているコンタクトによるトップレベルの投稿のみを受け入れます" - -#: 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 " -"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." -msgstr "システムは、コメントが到着するとスレッドの自動補完を行います。これには、非フォロワーによって開始されたが、フォローしているユーザーによってコメントされた投稿を受信できるという副作用があります。この設定により、この動作が無効になります。有効にすると、あなたが本当にフォローしている人からの投稿のみを厳密に受け取ります。" - -#: mod/settings.php:637 -msgid "Disable Content Warning" -msgstr "コンテンツ警告を無効にする" - -#: 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 " -"collapsing and sets the content warning as the post title. Doesn't affect " -"any other content filtering you eventually set up." -msgstr "MastodonやPleromaなどのネットワーク上のユーザーは、デフォルトで投稿を折りたたむコンテンツ警告フィールドを設定できます。これにより、自動折りたたみが無効になり、コンテンツの警告が投稿タイトルとして設定されます。最終的に設定する他のコンテンツフィルタリングには影響しません。" - -#: mod/settings.php:638 -msgid "Disable intelligent shortening" -msgstr "インテリジェントな短縮を無効にする" - -#: 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 "通常、システムは短縮された投稿に追加するのに最適なリンクを見つけようとします。このオプションを有効にすると、すべての短縮された投稿は常に元のfriendica投稿を指すようになります。" - -#: mod/settings.php:639 -msgid "Attach the link title" -msgstr "リンクの件名を添付します" - -#: 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 "有効にすると、添付されたリンクのタイトルがDiasporaへの投稿のタイトルとして追加されます。 これは主に、フィードコンテンツを共有する「リモート セルフ」コンタクトで役立ちます。" - -#: mod/settings.php:640 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "GNU Social(OStatus)のフォロワー/メンショナーを自動的にフォローする" - -#: 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 "不明なOStatusユーザーからメッセージを受信した場合、このオプションは何をするかを決定します。チェックされている場合、未知のユーザーごとに新しいコンタクトが作成されます。" - -#: mod/settings.php:641 -msgid "Default group for OStatus contacts" -msgstr "OStatusコンタクトのデフォルトグループ" - -#: mod/settings.php:642 -msgid "Your legacy GNU Social account" -msgstr "レガシーGNU Socialアカウント" - -#: 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 "ここに古いGNU Social / Statusnetアカウント名を入力すると(user@domain.tldの形式で)、コンタクトが自動的に追加されます。完了すると、フィールドは空になります。" - -#: mod/settings.php:645 -msgid "Repair OStatus subscriptions" -msgstr "OStatusサブスクリプションを修復する" - -#: mod/settings.php:649 -msgid "Email/Mailbox Setup" -msgstr "メール/メールボックスのセットアップ" - -#: 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 "このサービス(オプション)を使用してメールコンタクトと通信する場合は、メールボックスへの接続方法を指定してください。" - -#: mod/settings.php:651 -msgid "Last successful email check:" -msgstr "最後に成功したメールチェック:" - -#: mod/settings.php:653 -msgid "IMAP server name:" -msgstr "IMAPサーバー名:" - -#: mod/settings.php:654 -msgid "IMAP port:" -msgstr "IMAPポート:" - -#: mod/settings.php:655 -msgid "Security:" -msgstr "セキュリティ:" - -#: mod/settings.php:656 -msgid "Email login name:" -msgstr "メールのログイン名:" - -#: mod/settings.php:657 -msgid "Email password:" -msgstr "メールのパスワード:" - -#: mod/settings.php:658 -msgid "Reply-to address:" -msgstr "返信先アドレス:" - -#: mod/settings.php:659 -msgid "Send public posts to all email contacts:" -msgstr "すべてのメールコンタクトに一般公開投稿を送信します。" - -#: mod/settings.php:660 -msgid "Action after import:" -msgstr "インポート後のアクション:" - -#: mod/settings.php:660 src/Content/Nav.php:284 -msgid "Mark as seen" -msgstr "既読にする" - -#: mod/settings.php:660 -msgid "Move to folder" -msgstr "フォルダへ移動" - -#: mod/settings.php:661 -msgid "Move to folder:" -msgstr "フォルダへ移動:" - -#: mod/settings.php:675 -msgid "Unable to find your profile. Please contact your admin." -msgstr "プロフィールが見つかりません。管理者に連絡してください。" - -#: mod/settings.php:711 src/Content/Widget.php:536 -msgid "Account Types" -msgstr "アカウントの種類" - -#: mod/settings.php:712 -msgid "Personal Page Subtypes" -msgstr "個人ページのサブタイプ" - -#: mod/settings.php:713 -msgid "Community Forum Subtypes" -msgstr "コミュニティフォーラムのサブタイプ" - -#: mod/settings.php:720 src/Module/Admin/BaseUsers.php:106 -msgid "Personal Page" -msgstr "個人ページ" - -#: mod/settings.php:721 -msgid "Account for a personal profile." -msgstr "個人プロフィールを説明します。" - -#: mod/settings.php:724 src/Module/Admin/BaseUsers.php:107 -msgid "Organisation Page" -msgstr "組織ページ" - -#: mod/settings.php:725 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "コンタクトリクエストを「フォロワー」として自動的に承認します。組織に適したアカウントです。" - -#: mod/settings.php:728 src/Module/Admin/BaseUsers.php:108 -msgid "News Page" -msgstr "ニュースページ" - -#: mod/settings.php:729 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "コンタクトのリクエストを「フォロワー」として自動的に承認します。ニュース再配信に適したアカウントです。" - -#: mod/settings.php:732 src/Module/Admin/BaseUsers.php:109 -msgid "Community Forum" -msgstr "コミュニティフォーラム" - -#: mod/settings.php:733 -msgid "Account for community discussions." -msgstr "コミュニティディスカッションのアカウント。" - -#: mod/settings.php:736 src/Module/Admin/BaseUsers.php:99 -msgid "Normal Account Page" -msgstr "通常のアカウントページ" - -#: mod/settings.php:737 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "\"Friends \"および\"Followers \"の手動承認を必要とする通常の個人プロフィールのアカウント。" - -#: mod/settings.php:740 src/Module/Admin/BaseUsers.php:100 -msgid "Soapbox Page" -msgstr "Soapboxページ" - -#: mod/settings.php:741 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "コンタクトリクエストを「フォロワー」として自動的に承認します。一般公開プロフィールのアカウントです。" - -#: mod/settings.php:744 src/Module/Admin/BaseUsers.php:101 -msgid "Public Forum" -msgstr "一般公開フォーラム" - -#: mod/settings.php:745 -msgid "Automatically approves all contact requests." -msgstr "すべてのコンタクトリクエストを自動的に承認します。" - -#: mod/settings.php:748 src/Module/Admin/BaseUsers.php:102 -msgid "Automatic Friend Page" -msgstr "自動友達ページ" - -#: mod/settings.php:749 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "コンタクトのリクエストを「フレンド」として自動的に承認します。知名度のあるプロフィールに適したアカウントです。" - -#: mod/settings.php:752 -msgid "Private Forum [Experimental]" -msgstr "プライベートフォーラム[実験的]" - -#: mod/settings.php:753 -msgid "Requires manual approval of contact requests." -msgstr "コンタクトリクエストの手動承認が必要です。" - -#: mod/settings.php:764 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:764 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(オプション)このOpenIDがこのアカウントにログインできるようにします。" - -#: mod/settings.php:772 -msgid "Publish your profile in your local site directory?" -msgstr "ローカルサイトディレクトリにプロフィールを公開しますか?" - -#: mod/settings.php:772 -#, php-format -msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "プロフィールはこのノードのローカルディレクトリで公開されます。システム設定によっては、プロフィールの詳細が公開される場合があります。" - -#: mod/settings.php:778 -#, php-format -msgid "" -"Your profile will also be published in the global friendica directories " -"(e.g. %s)." -msgstr "あなたのプロフィールはグローバルなFriendicaディレクトリに公開されます(例: %s )。" - -#: mod/settings.php:784 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "IDアドレスは ' %s ' または ' %s 'です。" - -#: mod/settings.php:795 -msgid "Account Settings" -msgstr "アカウント設定" - -#: mod/settings.php:803 -msgid "Password Settings" -msgstr "パスワード設定" - -#: mod/settings.php:804 src/Module/Register.php:149 -msgid "New Password:" -msgstr "新しいパスワード:" - -#: 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 "使用できる文字は、a〜z、A〜Z、0〜9、および空白、アクセント文字、コロン(:)を除く特殊文字です。" - -#: mod/settings.php:805 src/Module/Register.php:150 -msgid "Confirm:" -msgstr "確認:" - -#: mod/settings.php:805 -msgid "Leave password fields blank unless changing" -msgstr "変更しない限り、パスワードフィールドは空白のままにしてください" - -#: mod/settings.php:806 -msgid "Current Password:" -msgstr "現在のパスワード:" - -#: mod/settings.php:806 -msgid "Your current password to confirm the changes" -msgstr "変更を確認するための現在のパスワード" - -#: mod/settings.php:807 -msgid "Password:" -msgstr "パスワード:" - -#: mod/settings.php:807 -msgid "Your current password to confirm the changes of the email address" -msgstr "変更を確認するための電子メールアドレスの現在のパスワード" - -#: mod/settings.php:810 -msgid "Delete OpenID URL" -msgstr "OpenID URLを削除" - -#: mod/settings.php:812 -msgid "Basic Settings" -msgstr "基本設定" - -#: mod/settings.php:813 src/Module/Profile/Profile.php:144 -msgid "Full Name:" -msgstr "フルネーム:" - -#: mod/settings.php:814 -msgid "Email Address:" -msgstr "電子メールアドレス:" - -#: mod/settings.php:815 -msgid "Your Timezone:" -msgstr "あなたのタイムゾーン:" - -#: mod/settings.php:816 -msgid "Your Language:" -msgstr "あなたの言語:" - -#: mod/settings.php:816 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "friendicaインターフェイスを表示し、メールを送信するために使用する言語を設定します" - -#: mod/settings.php:817 -msgid "Default Post Location:" -msgstr "デフォルトの投稿場所:" - -#: mod/settings.php:818 -msgid "Use Browser Location:" -msgstr "ブラウザのロケーションを使用:" - -#: mod/settings.php:820 -msgid "Security and Privacy Settings" -msgstr "セキュリティとプライバシーの設定" - -#: mod/settings.php:822 -msgid "Maximum Friend Requests/Day:" -msgstr "1日あたりの友達リクエスト上限:" - -#: mod/settings.php:822 mod/settings.php:832 -msgid "(to prevent spam abuse)" -msgstr "(スパムの悪用を防ぐため)" - -#: mod/settings.php:824 -msgid "Allow your profile to be searchable globally?" -msgstr "自分のプロフィールを世界中で検索できるようにしますか?" - -#: 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 " -"whether Friendica will inform search engines that your profile should be " -"indexed or not." -msgstr "他の人があなたを簡単に見つけてフォローできるようにしたい場合は、この設定を有効にしてください。あなたのプロフィールはリモートシステムで検索可能です。この設定は、Friendicaが検索エンジンにあなたのプロフィールをインデックス化するかどうかも決定します。" - -#: mod/settings.php:825 -msgid "Hide your contact/friend list from viewers of your profile?" -msgstr "プロフィールの閲覧者からコンタクト/友人リストを非表示にしますか?" - -#: 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 "自分のプロフィールページには、コンタクトリストが表示されます。このオプションを有効にすると、コンタクトリストの表示が無効になります。" - -#: mod/settings.php:826 -msgid "Hide your profile details from anonymous viewers?" -msgstr "匿名の閲覧者からプロフィールの詳細を非表示にしますか?" - -#: 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 "匿名の訪問者には、プロフィールページで使用しているプロフィール写真、表示名、ニックネームのみが表示されます。一般公開の投稿と返信には、他の方法で引き続きアクセスできます。" - -#: mod/settings.php:827 -msgid "Make public posts unlisted" -msgstr "公開投稿を非表示にする" - -#: 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 "公開された投稿は、コミュニティページや検索結果には表示されず、中継サーバーにも送信されません。ただし、リモートサーバーの公開フィードには表示されます。" - -#: mod/settings.php:828 -msgid "Make all posted pictures accessible" -msgstr "投稿した写真は全てアクセス可能にする" - -#: 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 " -"permissions on pictures. Non public pictures still won't be visible for the " -"public on your photo albums though." -msgstr "このオプションは、投稿したすべての写真をダイレクトリンクでアクセスできるようにします。これは、他の多くのネットワークが写真のパーミッションを処理できないという問題を回避するためのものです。ただし、公開していない写真はフォトアルバムでは一般に公開されません。" - -#: mod/settings.php:829 -msgid "Allow friends to post to your profile page?" -msgstr "友人があなたのプロフィールページに投稿することを許可しますか?" - -#: mod/settings.php:829 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "コンタクトは、プロフィールウォールに投稿を書くことができます。これらの投稿はコンタクトに配信されます" - -#: mod/settings.php:830 -msgid "Allow friends to tag your posts?" -msgstr "友達があなたの投稿にタグを付けることを許可しますか?" - -#: mod/settings.php:830 -msgid "Your contacts can add additional tags to your posts." -msgstr "コンタクトは、投稿にタグを追加できます。" - -#: mod/settings.php:831 -msgid "Permit unknown people to send you private mail?" -msgstr "知らない人にプライベートメールを送ることを許可しますか?" - -#: mod/settings.php:831 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "Friendicaネットワークユーザーは、コンタクトリストにない場合でもプライベートメッセージを送信する場合があります。" - -#: mod/settings.php:832 -msgid "Maximum private messages per day from unknown people:" -msgstr "不明な人からの 1日あたりのプライベートメッセージ上限:" - -#: mod/settings.php:834 -msgid "Default Post Permissions" -msgstr "投稿の既定の権限" - -#: mod/settings.php:838 -msgid "Expiration settings" -msgstr "有効期限設定" - -#: mod/settings.php:839 -msgid "Automatically expire posts after this many days:" -msgstr "この数日後に投稿を自動的に期限切れにします:" - -#: mod/settings.php:839 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "空の場合、投稿は期限切れになりません。期限切れの投稿は削除されます" - -#: mod/settings.php:840 -msgid "Expire posts" -msgstr "投稿の有効期限" - -#: mod/settings.php:840 -msgid "When activated, posts and comments will be expired." -msgstr "有効にすると、投稿とコメントは期限切れになるでしょう。" - -#: mod/settings.php:841 -msgid "Expire personal notes" -msgstr "個人メモの有効期限" - -#: mod/settings.php:841 -msgid "" -"When activated, the personal notes on your profile page will be expired." -msgstr "有効にすると、プロフィールページ上の個人メモは期限切れになるでしょう。" - -#: mod/settings.php:842 -msgid "Expire starred posts" -msgstr "スター付き投稿の有効期限" - -#: mod/settings.php:842 -msgid "" -"Starring posts keeps them from being expired. That behaviour is overwritten " -"by this setting." -msgstr "投稿にスターを付けると、投稿が期限切れにならないようにします。動作はこの設定で上書きされます。" - -#: mod/settings.php:843 -msgid "Expire photos" -msgstr "写真の有効期限" - -#: mod/settings.php:843 -msgid "When activated, photos will be expired." -msgstr "有効にすると、写真は期限切れになるでしょう。" - -#: mod/settings.php:844 -msgid "Only expire posts by others" -msgstr "他のユーザーによる投稿のみを期限切れにする" - -#: mod/settings.php:844 -msgid "" -"When activated, your own posts never expire. Then the settings above are " -"only valid for posts you received." -msgstr "有効にすると、自分の投稿は期限切れになりません。そうすると、上記の設定は自分が受け取った投稿に対してのみ有効となります。" - -#: mod/settings.php:847 -msgid "Notification Settings" -msgstr "通知設定" - -#: mod/settings.php:848 -msgid "Send a notification email when:" -msgstr "次の場合に通知メールを送信します。" - -#: mod/settings.php:849 -msgid "You receive an introduction" -msgstr "招待を受けます" - -#: mod/settings.php:850 -msgid "Your introductions are confirmed" -msgstr "あなたの招待が確認されました" - -#: mod/settings.php:851 -msgid "Someone writes on your profile wall" -msgstr "誰かがあなたのプロフィールウォールに書き込みます" - -#: mod/settings.php:852 -msgid "Someone writes a followup comment" -msgstr "誰かがフォローアップコメントを書く" - -#: mod/settings.php:853 -msgid "You receive a private message" -msgstr "プライベートメッセージを受け取ります" - -#: mod/settings.php:854 -msgid "You receive a friend suggestion" -msgstr "友達の提案を受け取ります" - -#: mod/settings.php:855 -msgid "You are tagged in a post" -msgstr "あなたは投稿でタグ付けされています" - -#: mod/settings.php:856 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: mod/settings.php:858 -msgid "Activate desktop notifications" -msgstr "デスクトップ通知を有効にする" - -#: mod/settings.php:858 -msgid "Show desktop popup on new notifications" -msgstr "新しい通知にデスクトップポップアップを表示する" - -#: mod/settings.php:860 -msgid "Text-only notification emails" -msgstr "テキストのみの通知メール" - -#: mod/settings.php:862 -msgid "Send text only notification emails, without the html part" -msgstr "HTML部分なしで、テキストのみの通知メールを送信します" - -#: mod/settings.php:864 -msgid "Show detailled notifications" -msgstr "詳細な通知を表示" - -#: mod/settings.php:866 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "デフォルトでは、通知は項目ごとに1つの通知にまとめられます。有効にすると、すべての通知が表示されます。" - -#: mod/settings.php:868 -msgid "Show notifications of ignored contacts" -msgstr "無視されたコンタクトの通知を表示" - -#: 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 "無視されたコンタクトからの投稿は表示されません。しかし、相手のコメントは表示されます。この設定では、無視されたコンタクトからの通知を定期的に受け取るかどうかを設定します。" - -#: mod/settings.php:872 -msgid "Advanced Account/Page Type Settings" -msgstr "アカウント/ページタイプの詳細設定" - -#: mod/settings.php:873 -msgid "Change the behaviour of this account for special situations" -msgstr "特別な状況でこのアカウントの動作を変更する" - -#: mod/settings.php:876 -msgid "Import Contacts" -msgstr "コンタクトをインポートする" - -#: 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 "古いアカウントからエクスポートしたCSVファイルをアップロードします。これは最初の列に、フォローしているアカウントのハンドルを含みます。" - -#: mod/settings.php:878 -msgid "Upload File" -msgstr "ファイルをアップロード" - -#: mod/settings.php:880 -msgid "Relocate" -msgstr "再配置" - -#: 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 "このプロフィールを別のサーバーから移動し、コンタクトの一部が更新を受信しない場合は、このボタンを押してみてください。" - -#: mod/settings.php:882 -msgid "Resend relocate message to contacts" -msgstr "再配置メッセージをコンタクトに再送信する" - -#: mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "利用可能な提案はありません。新しいサイトの場合は、24時間後にもう一度お試しください。" - -#: mod/suggest.php:55 src/Content/Widget.php:79 view/theme/vier/theme.php:175 -msgid "Friend Suggestions" -msgstr "友達の提案" - -#: mod/tagrm.php:115 -msgid "Remove Item Tag" -msgstr "タグの削除" - -#: mod/tagrm.php:117 -msgid "Select a tag to remove: " -msgstr "削除するタグを選択:" - -#: mod/tagrm.php:128 src/Module/Settings/Delegation.php:179 -#: src/Module/Settings/TwoFactor/Trusted.php:104 -msgid "Remove" -msgstr "削除" - -#: mod/uimport.php:45 -msgid "User imports on closed servers can only be done by an administrator." -msgstr "クローズドなサーバでのユーザーインポートは、管理者のみが実行できます。" - -#: 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 "このサイトは、1日あたりに許可されているアカウント登録数の上限を超えています。 明日再度お試しください。" - -#: mod/uimport.php:61 src/Module/Register.php:160 -msgid "Import" -msgstr "インポート" - -#: mod/uimport.php:63 -msgid "Move account" -msgstr "アカウントの移動" - -#: mod/uimport.php:64 -msgid "You can import an account from another Friendica server." -msgstr "別のFriendicaサーバーからアカウントをインポートできます。" - -#: mod/uimport.php:65 -msgid "" -"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." -msgstr "古いサーバからアカウントをエクスポートして、このサーバにアップロードする必要があります。 アップロード後、このサーバが、すべてのコンタクト・元のアカウントを再作成します。 また、あなたがこのサーバに移転したことを友人にお知らせします。" - -#: mod/uimport.php:66 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "この機能はまだ実験的なものです。 OStatusネットワーク(GNU Social / Statusnet)またはDiasporaからのコンタクトはインポートできません。" - -#: mod/uimport.php:67 -msgid "Account file" -msgstr "アカウントファイル" - -#: mod/uimport.php:67 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "アカウントをエクスポートするには、「設定」->「個人データのエクスポート」に進み、「アカウントのエクスポート」を選択します" - -#: mod/unfollow.php:65 mod/unfollow.php:133 -msgid "You aren't following this contact." -msgstr "あなたはこのコンタクトをフォローしていません" - -#: mod/unfollow.php:71 mod/unfollow.php:139 -msgid "Unfollowing is currently not supported by your network." -msgstr "現在、フォロー解除はあなたのネットワークではサポートされていません" - -#: mod/unfollow.php:95 -msgid "Disconnect/Unfollow" -msgstr "接続・フォローを解除" - -#: mod/videos.php:134 -msgid "No videos selected" -msgstr "動画が選択されていません" - -#: mod/videos.php:252 -msgid "View Video" -msgstr "ビデオを見る" - -#: mod/videos.php:267 -msgid "Recent Videos" -msgstr "最近の動画" - -#: mod/videos.php:269 -msgid "Upload New Videos" -msgstr "新しい動画をアップロード" - -#: 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 "無効なリクエストです。" - -#: mod/wall_attach.php:105 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "すいません、サーバのPHP設定で許可されたサイズよりも大きいファイルをアップロードしている可能性があります。" - -#: mod/wall_attach.php:105 -msgid "Or - did you try to upload an empty file?" -msgstr "または、空のファイルをアップロードしようとしていませんか?" - -#: mod/wall_attach.php:116 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "ファイルサイズ上限 %s を超えています。" - -#: mod/wall_attach.php:131 -msgid "File upload failed." -msgstr "アップロードが失敗しました。" - -#: mod/wall_upload.php:233 src/Model/Photo.php:953 -msgid "Wall Photos" -msgstr "ウォール写真" - -#: mod/wallmessage.php:68 mod/wallmessage.php:129 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "一日のウォールメッセージ上限 %s 通を超えました。投稿できません。" - -#: mod/wallmessage.php:79 -msgid "Unable to check your home location." -msgstr "あなたのホームロケーションを確認できません。" - -#: mod/wallmessage.php:103 mod/wallmessage.php:112 -msgid "No recipient." -msgstr "宛先がありません。" - -#: 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 "%s からの返信を受け取りたい場合は、サイトのプライバシー設定で「不明な送信者からのプライベートメール」を許可しているか確認してください。" - -#: src/App.php:312 +#: src/App.php:473 msgid "No system theme config value set." msgstr "システムテーマの構成値が設定されていません。" -#: src/App/Module.php:241 -msgid "You must be logged in to use addons. " -msgstr "アドオンを使用するにはログインする必要があります。" +#: src/App.php:580 +msgid "Apologies but the website is unavailable at the moment." +msgstr "" -#: src/App/Page.php:250 +#: src/App/Page.php:248 msgid "Delete this item?" msgstr "この項目を削除しますか?" -#: src/App/Page.php:251 +#: src/App/Page.php:249 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "この作者をブロックしますか?その人はあなたをフォローできなくなり、あなたの公開された投稿を見ることができなくなります。また、あなたはその人の投稿や通知を見ることができなくなります。" -#: src/App/Page.php:299 +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "" + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "" + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "" + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "" + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "" + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "" + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "" + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "" + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "" + +#: src/App/Page.php:351 msgid "toggle mobile" msgstr "モバイルを切り替え" -#: src/App/Router.php:236 +#: src/App/Router.php:309 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "そのメソッドは、このモジュールでは許可されていません。 このメソッド(たち)が許可されています: %s" -#: src/App/Router.php:238 src/Module/HTTPException/PageNotFound.php:32 +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 msgid "Page not found." msgstr "ページが見つかりません。" -#: src/BaseModule.php:180 +#: src/App/Router.php:323 +msgid "You must be logged in to use addons. " +msgstr "アドオンを使用するにはログインする必要があります。" + +#: src/BaseModule.php:401 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 "フォームセキュリティトークンが正しくありませんでした。これは、フォームを送信する前にフォームが長時間(3時間以上)開かれたために発生した可能性があります。" -#: src/BaseModule.php:209 +#: src/BaseModule.php:428 msgid "All contacts" msgstr "すべてのコンタクト" -#: 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 +#: src/BaseModule.php:433 src/Content/Conversation/Factory/Timeline.php:62 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 msgid "Followers" msgstr "フォロワー" -#: src/BaseModule.php:219 src/Content/Widget.php:239 -#: src/Module/Contact.php:861 +#: src/BaseModule.php:438 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 msgid "Following" -msgstr "以下" +msgstr "フォロー中" -#: src/BaseModule.php:224 src/Content/Widget.php:240 -#: src/Module/Contact.php:862 +#: src/BaseModule.php:443 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 msgid "Mutual friends" msgstr "共通の友人" -#: src/BaseModule.php:232 +#: src/BaseModule.php:451 msgid "Common" msgstr "" -#: src/Console/Addon.php:177 src/Console/Addon.php:202 +#: src/Console/Addon.php:175 src/Console/Addon.php:199 msgid "Addon not found" msgstr "" -#: src/Console/Addon.php:181 +#: src/Console/Addon.php:179 msgid "Addon already enabled" msgstr "" -#: src/Console/Addon.php:206 +#: src/Console/Addon.php:203 msgid "Addon already disabled" msgstr "" -#: src/Console/ArchiveContact.php:105 +#: src/Console/ArchiveContact.php:106 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "このURL( %s )のアーカイブされていないコンタクトエントリが見つかりませんでした" -#: src/Console/ArchiveContact.php:108 +#: src/Console/ArchiveContact.php:109 msgid "The contact entries have been archived" msgstr "コンタクトエントリがアーカイブされました" #: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "このURL( %s )のコンタクトエントリが見つかりませんでした" #: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:47 +#: src/Module/Moderation/Blocklist/Contact.php:82 msgid "The contact has been blocked from the node" msgstr "このコンタクトはノードからブロックされています" +#: src/Console/MergeContacts.php:75 +#, php-format +msgid "%d %s, %d duplicates." +msgstr "" + +#: src/Console/MergeContacts.php:78 +#, php-format +msgid "uri-id is empty for contact %s." +msgstr "" + +#: src/Console/MergeContacts.php:91 +#, php-format +msgid "No valid first contact found for uri-id %d." +msgstr "" + +#: src/Console/MergeContacts.php:102 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:106 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:142 +#, php-format +msgid "Deletion of id %d failed" +msgstr "" + +#: src/Console/MergeContacts.php:144 +#, php-format +msgid "Deletion of id %d was successful" +msgstr "" + +#: src/Console/MergeContacts.php:150 +#, php-format +msgid "Updating \"%s\" in \"%s\" from %d to %d" +msgstr "" + +#: src/Console/MergeContacts.php:152 +msgid " - found" +msgstr "" + +#: src/Console/MergeContacts.php:159 +msgid " - failed" +msgstr "" + +#: src/Console/MergeContacts.php:161 +msgid " - success" +msgstr "" + +#: src/Console/MergeContacts.php:165 +msgid " - deleted" +msgstr "" + +#: src/Console/MergeContacts.php:168 +msgid " - done" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:91 +msgid "The avatar cache needs to be enabled to use this command." +msgstr "" + +#: src/Console/MoveToAvatarCache.php:109 +#, php-format +msgid "no resource in photo %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:137 +#, php-format +msgid "no photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:146 +#, php-format +msgid "no image data for photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:155 +#, php-format +msgid "invalid image for id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:168 +#, php-format +msgid "Quit on invalid photo %s" +msgstr "" + #: src/Console/PostUpdate.php:87 #, php-format msgid "Post update version number has been set to %s." @@ -3098,10 +960,29 @@ msgstr "保留中の投稿の更新はすべて完了しました。" msgid "Enter user nickname: " msgstr "" +#: src/Console/User.php:182 src/Model/User.php:711 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "ユーザーが見つかりません" + #: src/Console/User.php:202 msgid "Enter new password: " msgstr "新しいパスワードを入力してください:" +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 +msgid "Password update failed. Please try again." +msgstr "パスワードの更新に失敗しました。もう一度試してください。" + +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 +msgid "Password changed." +msgstr "パスワード変更済み。" + #: src/Console/User.php:237 msgid "Enter user name: " msgstr "" @@ -3175,82 +1056,567 @@ msgstr "毎週" msgid "Monthly" msgstr "毎月" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:126 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:127 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:128 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 +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 msgid "Email" msgstr "Eメール" -#: src/Content/ContactSelector.php:127 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 msgid "Diaspora" msgstr "ディアスポラ" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:131 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:132 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:133 msgid "XMPP/IM" msgstr "XMPP / IM" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:134 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:135 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:136 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:137 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:138 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:139 msgid "Diaspora Connector" msgstr "Diaspora コネクタ" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:140 msgid "GNU Social Connector" msgstr "GNU Social Connector" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:141 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:142 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:175 +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "" + +#: src/Content/ContactSelector.php:180 #, php-format msgid "%s (via %s)" msgstr "%s (経由: %s)" +#: src/Content/Conversation.php:226 +msgid "and" +msgstr "と" + +#: src/Content/Conversation.php:229 +#, php-format +msgid "and %d other people" +msgstr "と他 %d 人" + +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "" + +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "" + +#: src/Content/Conversation.php:239 +#, php-format +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "" + +#: src/Content/Conversation.php:241 +#, php-format +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "" + +#: src/Content/Conversation.php:243 +#, php-format +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "" + +#: src/Content/Conversation.php:245 +#, php-format +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "" + +#: src/Content/Conversation.php:274 +#, php-format +msgid " likes this" +msgid_plural " like this" +msgstr[0] "" + +#: src/Content/Conversation.php:277 +#, php-format +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] "" + +#: src/Content/Conversation.php:280 +#, php-format +msgid " attends" +msgid_plural " attend" +msgstr[0] "" + +#: src/Content/Conversation.php:283 +#, php-format +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] "" + +#: src/Content/Conversation.php:286 +#, php-format +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] "" + +#: src/Content/Conversation.php:289 +#, php-format +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] "" + +#: src/Content/Conversation.php:336 +msgid "Visible to everybody" +msgstr "すべての人 が閲覧可能です" + +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1107 +msgid "Please enter a image/video/audio/webpage URL:" +msgstr "画像/動画/音声/ウェブページのURLを入力してください:" + +#: src/Content/Conversation.php:338 +msgid "Tag term:" +msgstr "用語のタグ付け:" + +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 +msgid "Save to Folder:" +msgstr "保存先のフォルダ:" + +#: src/Content/Conversation.php:340 +msgid "Where are you right now?" +msgstr "どこにいますか?:" + +#: src/Content/Conversation.php:341 +msgid "Delete item(s)?" +msgstr "これ(ら)の項目を削除しますか?" + +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 +msgid "Created at" +msgstr "" + +#: src/Content/Conversation.php:363 +msgid "New Post" +msgstr "新しい投稿" + +#: src/Content/Conversation.php:366 +msgid "Share" +msgstr "共有" + +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "写真をアップロード" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "ファイルを添付" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "ファイルを添付" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1097 +msgid "Bold" +msgstr "太字" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1098 +msgid "Italic" +msgstr "斜体" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1099 +msgid "Underline" +msgstr "下線" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1101 +msgid "Quote" +msgstr "引用" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1102 +msgid "Add emojis" +msgstr "" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1100 +msgid "Content Warning" +msgstr "" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1103 +msgid "Code" +msgstr "コード" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1104 +msgid "Image" +msgstr "画像" + +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1105 +msgid "Link" +msgstr "リンク" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1106 +msgid "Link or Media" +msgstr "リンク/メディア" + +#: src/Content/Conversation.php:382 +msgid "Video" +msgstr "動画" + +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "現在地を設定" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "現在地を設定" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "ブラウザの現在地を解除" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "現在地を解除" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "件名を設定" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "カテゴリ(半角カンマ区切り)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 +msgid "Scheduled at" +msgstr "" + +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "権限設定" + +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "一般公開の投稿" + +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:120 +#: src/Model/Profile.php:467 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "メッセージ" + +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "ブラウザ" + +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "作成ページを開く" + +#: src/Content/Conversation.php:595 +msgid "remove" +msgstr "削除" + +#: src/Content/Conversation.php:599 +msgid "Delete Selected Items" +msgstr "選択した項目を削除" + +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 +#, php-format +msgid "You had been addressed (%s)." +msgstr "" + +#: src/Content/Conversation.php:769 +#, php-format +msgid "You are following %s." +msgstr "" + +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "" + +#: src/Content/Conversation.php:776 +msgid "You subscribed to one or more tags in this post." +msgstr "" + +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "%s が再共有しました。" + +#: src/Content/Conversation.php:798 +msgid "Reshared" +msgstr "" + +#: src/Content/Conversation.php:798 +#, php-format +msgid "Reshared by %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:801 +#, php-format +msgid "%s is participating in this thread." +msgstr "" + +#: src/Content/Conversation.php:804 +msgid "Stored for general reasons" +msgstr "" + +#: src/Content/Conversation.php:807 +msgid "Global post" +msgstr "" + +#: src/Content/Conversation.php:810 +msgid "Sent via an relay server" +msgstr "" + +#: src/Content/Conversation.php:810 +#, php-format +msgid "Sent via the relay server %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:813 +msgid "Fetched" +msgstr "" + +#: src/Content/Conversation.php:813 +#, php-format +msgid "Fetched because of %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:816 +msgid "Stored because of a child post to complete this thread." +msgstr "" + +#: src/Content/Conversation.php:819 +msgid "Local delivery" +msgstr "" + +#: src/Content/Conversation.php:822 +msgid "Stored because of your activity (like, comment, star, ...)" +msgstr "" + +#: src/Content/Conversation.php:825 +msgid "Distributed" +msgstr "" + +#: src/Content/Conversation.php:828 +msgid "Pushed to us" +msgstr "" + +#: src/Content/Conversation.php:1492 src/Object/Post.php:247 +msgid "Pinned item" +msgstr "ピン留め項目" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:521 +#: src/Object/Post.php:522 +#, php-format +msgid "View %s's profile @ %s" +msgstr "%sのプロフィールを確認 @ %s" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:509 +msgid "Categories:" +msgstr "カテゴリ:" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:510 +msgid "Filed under:" +msgstr "格納先:" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:535 +#, php-format +msgid "%s from %s" +msgstr "%s から %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "文脈で表示する" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "For you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "What's Hot" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "Posts with a lot of interactions" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:61 +#, php-format +msgid "Posts in %s" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:62 +msgid "Posts from your followers that you don't follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Sharers of sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Posts with images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Posts with audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Posts with videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Local Community" +msgstr "ローカル コミュニティ" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Posts from local users on this server" +msgstr "このサーバー上のローカルユーザーからの投稿" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Global Community" +msgstr "グローバルコミュニティ" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Posts from users of the whole federated network" +msgstr "フェデレーションネットワーク全体のユーザーからの投稿" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Latest Activity" +msgstr "最近の操作" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Sort by latest activity" +msgstr "最終更新順に並び替え" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Latest Posts" +msgstr "最新の投稿" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Sort by post received date" +msgstr "投稿を受信した順に並び替え" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Latest Creation" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Sort by post creation date" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:106 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "パーソナル" + +#: src/Content/Conversation/Factory/Timeline.php:106 +msgid "Posts that mention or involve you" +msgstr "あなたに言及または関与している投稿" + +#: src/Content/Conversation/Factory/Timeline.php:107 src/Object/Post.php:380 +msgid "Starred" +msgstr "スター付き" + +#: src/Content/Conversation/Factory/Timeline.php:107 +msgid "Favourite Posts" +msgstr "お気に入りの投稿" + #: src/Content/Feature.php:96 msgid "General Features" msgstr "一般的な機能" @@ -3280,13 +1646,13 @@ msgid "Post Composition Features" msgstr "合成後の機能" #: src/Content/Feature.php:105 -msgid "Auto-mention Forums" -msgstr "自動メンションフォーラム" +msgid "Auto-mention Groups" +msgstr "" #: src/Content/Feature.php:105 msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "ACLウィンドウでフォーラムページが選択/選択解除されたときにメンションを追加/削除します。" +"Add/remove mention when a group page is selected/deselected in ACL window." +msgstr "" #: src/Content/Feature.php:106 msgid "Explicit Mentions" @@ -3298,325 +1664,484 @@ msgid "" "mentioned in replies." msgstr "コメントボックスに明示的なメンションを追加して、返信の通知先をカスタマイズします。" -#: src/Content/Feature.php:111 +#: src/Content/Feature.php:107 +msgid "Add an abstract from ActivityPub content warnings" +msgstr "" + +#: src/Content/Feature.php:107 +msgid "" +"Add an abstract when commenting on ActivityPub posts with a content warning." +" Abstracts are displayed as content warning on systems like Mastodon or " +"Pleroma." +msgstr "" + +#: src/Content/Feature.php:112 msgid "Post/Comment Tools" msgstr "投稿/コメントツール" -#: src/Content/Feature.php:112 +#: src/Content/Feature.php:113 msgid "Post Categories" msgstr "投稿カテゴリ" -#: src/Content/Feature.php:112 +#: src/Content/Feature.php:113 msgid "Add categories to your posts" msgstr "投稿にカテゴリを追加する" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:118 msgid "Advanced Profile Settings" msgstr "高度なプロフィール設定" -#: src/Content/Feature.php:118 -msgid "List Forums" -msgstr "フォーラムのリスト" - -#: src/Content/Feature.php:118 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "詳細プロフィールページで訪問者の一般公開コミュニティフォーラムを表示する" +#: src/Content/Feature.php:119 +msgid "List Groups" +msgstr "" #: src/Content/Feature.php:119 +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "" + +#: src/Content/Feature.php:120 msgid "Tag Cloud" msgstr "タグクラウド" -#: src/Content/Feature.php:119 +#: src/Content/Feature.php:120 msgid "Provide a personal tag cloud on your profile page" msgstr "プロフィールページで個人タグクラウドを提供する" -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:121 msgid "Display Membership Date" msgstr "会員日を表示する" -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:121 msgid "Display membership date in profile" msgstr "プロフィールにメンバーシップ日を表示する" -#: src/Content/ForumManager.php:145 src/Content/Nav.php:243 -#: src/Content/Text/HTML.php:914 src/Content/Widget.php:533 -msgid "Forums" -msgstr "フォーラム" +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "" -#: src/Content/ForumManager.php:147 -msgid "External link to forum" -msgstr "フォーラムへの外部リンク" +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "" -#: src/Content/ForumManager.php:150 src/Content/Widget.php:512 +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "" + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1273 +msgid "Groups" +msgstr "" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 msgid "show less" msgstr "" -#: src/Content/ForumManager.php:151 src/Content/Widget.php:411 +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 #: src/Content/Widget.php:513 msgid "show more" msgstr "もっと見せる" -#: src/Content/Nav.php:90 +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "" + +#: src/Content/Item.php:331 src/Model/Item.php:3003 +msgid "event" +msgstr "イベント" + +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "ステータス" + +#: src/Content/Item.php:340 src/Model/Item.php:3005 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "写真" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s が %2$s の %3$s を %4$s としてタグ付けしました" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 +msgid "Follow Thread" +msgstr "このスレッドをフォロー" + +#: src/Content/Item.php:429 src/Model/Contact.php:1227 +msgid "View Status" +msgstr "ステータスを見る" + +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1219 +#: src/Model/Contact.php:1228 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 +msgid "View Profile" +msgstr "プロフィールを見る" + +#: src/Content/Item.php:431 src/Model/Contact.php:1229 +msgid "View Photos" +msgstr "写真を見る" + +#: src/Content/Item.php:432 src/Model/Contact.php:1220 +#: src/Model/Contact.php:1230 +msgid "Network Posts" +msgstr "ネットワーク投稿" + +#: src/Content/Item.php:433 src/Model/Contact.php:1221 +#: src/Model/Contact.php:1231 +msgid "View Contact" +msgstr "コンタクトを見る" + +#: src/Content/Item.php:434 src/Model/Contact.php:1232 +msgid "Send PM" +msgstr "PMを送る" + +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 +msgid "Block" +msgstr "ブロック" + +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 +msgid "Ignore" +msgstr "無視" + +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "" + +#: src/Content/Item.php:438 src/Object/Post.php:288 +#, php-format +msgid "Ignore %s server" +msgstr "" + +#: src/Content/Item.php:442 src/Object/Post.php:490 +msgid "Languages" +msgstr "言語" + +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1222 src/Model/Contact.php:1233 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "つながる/フォローする" + +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "" + +#: src/Content/Nav.php:121 msgid "Nothing new here" msgstr "ここに新しいものはありません" -#: src/Content/Nav.php:94 src/Module/Special/HTTPException.php:75 +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 msgid "Go back" msgstr "戻る" -#: src/Content/Nav.php:95 +#: src/Content/Nav.php:126 msgid "Clear notifications" msgstr "クリア通知" -#: src/Content/Nav.php:96 src/Content/Text/HTML.php:901 -msgid "@name, !forum, #tags, content" -msgstr "@name, !forum, #tags, コンテンツ" +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" +msgstr "" -#: src/Content/Nav.php:183 src/Module/Security/Login.php:145 +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 msgid "Logout" msgstr "ログアウト" -#: src/Content/Nav.php:183 +#: src/Content/Nav.php:222 msgid "End this session" msgstr "このセッションを終了" -#: src/Content/Nav.php:185 src/Module/Bookmarklet.php:46 -#: src/Module/Security/Login.php:146 +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 msgid "Login" msgstr "ログイン" -#: src/Content/Nav.php:185 +#: src/Content/Nav.php:224 msgid "Sign in" msgstr "サインイン" -#: 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 "状態" +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "" -#: src/Content/Nav.php:191 src/Content/Nav.php:277 -#: view/theme/frio/theme.php:226 -msgid "Your posts and conversations" -msgstr "あなたの投稿と会話" +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "" -#: 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 +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 msgid "Profile" msgstr "プロフィール" -#: src/Content/Nav.php:192 view/theme/frio/theme.php:227 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 msgid "Your profile page" msgstr "あなたのプロフィールページ" -#: src/Content/Nav.php:193 view/theme/frio/theme.php:228 +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "写真" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 msgid "Your photos" msgstr "あなたの写真" -#: src/Content/Nav.php:194 src/Module/BaseProfile.php:76 -#: src/Module/BaseProfile.php:79 view/theme/frio/theme.php:229 -msgid "Videos" -msgstr "動画" +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 +msgid "Media" +msgstr "" -#: src/Content/Nav.php:194 view/theme/frio/theme.php:229 -msgid "Your videos" -msgstr "あなたの動画" +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +msgid "Your postings with media" +msgstr "" -#: src/Content/Nav.php:195 view/theme/frio/theme.php:230 -msgid "Your events" -msgstr "あなたのイベント" +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "カレンダー" -#: src/Content/Nav.php:196 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "" + +#: src/Content/Nav.php:234 msgid "Personal notes" msgstr "個人メモ" -#: src/Content/Nav.php:196 +#: src/Content/Nav.php:234 msgid "Your personal notes" msgstr "あなたの個人的なメモ" -#: src/Content/Nav.php:216 src/Content/Nav.php:277 +#: src/Content/Nav.php:251 src/Content/Nav.php:308 msgid "Home" msgstr "ホーム" -#: src/Content/Nav.php:220 src/Module/Register.php:155 -#: src/Module/Security/Login.php:106 +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "ホームページ" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 +#: src/Module/Security/Login.php:124 msgid "Register" msgstr "登録" -#: src/Content/Nav.php:220 +#: src/Content/Nav.php:255 msgid "Create an account" msgstr "アカウントを作成する" -#: 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 +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 msgid "Help" msgstr "ヘルプ" -#: src/Content/Nav.php:226 +#: src/Content/Nav.php:261 msgid "Help and documentation" msgstr "ヘルプとドキュメント" -#: src/Content/Nav.php:230 +#: src/Content/Nav.php:265 msgid "Apps" msgstr "アプリ" -#: src/Content/Nav.php:230 +#: src/Content/Nav.php:265 msgid "Addon applications, utilities, games" msgstr "アドオンアプリケーション、ユーティリティ、ゲーム" -#: src/Content/Nav.php:234 src/Content/Text/HTML.php:899 -#: src/Module/Search/Index.php:99 +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 msgid "Search" msgstr "検索" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:269 msgid "Search site content" msgstr "サイトのコンテンツを検索" -#: src/Content/Nav.php:237 src/Content/Text/HTML.php:908 +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 msgid "Full Text" msgstr "全文" -#: src/Content/Nav.php:238 src/Content/Text/HTML.php:909 +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 #: src/Content/Widget/TagCloud.php:68 msgid "Tags" msgstr "タグ" -#: 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 +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 msgid "Contacts" msgstr "コンタクト" -#: src/Content/Nav.php:258 +#: src/Content/Nav.php:289 msgid "Community" msgstr "コミュニティ" -#: src/Content/Nav.php:258 +#: src/Content/Nav.php:289 msgid "Conversations on this and other servers" msgstr "このサーバーと他のサーバーでの会話" -#: 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 "イベントとカレンダー" - -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:296 msgid "Directory" msgstr "ディレクトリ" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:296 msgid "People directory" msgstr "人々の名簿" -#: src/Content/Nav.php:267 src/Module/BaseAdmin.php:85 +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 msgid "Information" msgstr "情報" -#: src/Content/Nav.php:267 +#: src/Content/Nav.php:298 msgid "Information about this friendica instance" msgstr "このfriendicaインスタンスに関する情報" -#: 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 +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 msgid "Terms of Service" msgstr "利用規約" -#: src/Content/Nav.php:270 +#: src/Content/Nav.php:301 msgid "Terms of Service of this Friendica instance" msgstr "このFriendicaインスタンスの利用規約" -#: src/Content/Nav.php:275 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Network" msgstr "ネットワーク" -#: src/Content/Nav.php:275 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Conversations from your friends" msgstr "友達からの会話" -#: src/Content/Nav.php:281 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "あなたの投稿と会話" + +#: src/Content/Nav.php:312 msgid "Introductions" msgstr "招待" -#: src/Content/Nav.php:281 +#: src/Content/Nav.php:312 msgid "Friend Requests" msgstr "友達リクエスト" -#: src/Content/Nav.php:282 src/Module/BaseNotifications.php:139 -#: src/Module/Notifications/Introductions.php:54 +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 msgid "Notifications" msgstr "通知" -#: src/Content/Nav.php:283 +#: src/Content/Nav.php:314 msgid "See all notifications" msgstr "すべての通知を見る" -#: src/Content/Nav.php:284 -msgid "Mark all system notifications seen" -msgstr "すべてのシステム通知を確認済みにする" +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "既読にする" -#: src/Content/Nav.php:287 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:315 +msgid "Mark all system notifications as seen" +msgstr "" + +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Private mail" msgstr "プライベートメール" -#: src/Content/Nav.php:288 +#: src/Content/Nav.php:319 msgid "Inbox" msgstr "受信トレイ" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:320 msgid "Outbox" msgstr "送信トレイ" -#: src/Content/Nav.php:293 +#: src/Content/Nav.php:324 msgid "Accounts" msgstr "" -#: src/Content/Nav.php:293 +#: src/Content/Nav.php:324 msgid "Manage other pages" msgstr "他のページを管理する" -#: 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 +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:175 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 msgid "Settings" msgstr "設定" -#: src/Content/Nav.php:296 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 msgid "Account settings" msgstr "アカウント設定" -#: src/Content/Nav.php:298 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 msgid "Manage/edit friends and contacts" msgstr "友達とコンタクトを管理/編集する" -#: src/Content/Nav.php:303 src/Module/BaseAdmin.php:125 +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 msgid "Admin" msgstr "管理者" -#: src/Content/Nav.php:303 +#: src/Content/Nav.php:334 msgid "Site setup and configuration" msgstr "サイトのセットアップと構成" -#: src/Content/Nav.php:306 +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "" + +#: src/Content/Nav.php:338 msgid "Navigation" msgstr "ナビゲーション" -#: src/Content/Nav.php:306 +#: src/Content/Nav.php:338 msgid "Site map" msgstr "サイトマップ" -#: src/Content/OEmbed.php:298 +#: src/Content/OEmbed.php:316 msgid "Embedding disabled" msgstr "埋め込みが無効です" -#: src/Content/OEmbed.php:416 +#: src/Content/OEmbed.php:440 msgid "Embedded content" msgstr "埋め込みコンテンツ" @@ -3636,153 +2161,162 @@ msgstr "次" msgid "last" msgstr "最終" -#: src/Content/Text/BBCode.php:942 src/Content/Text/BBCode.php:1607 -#: src/Content/Text/BBCode.php:1608 +#: src/Content/Text/BBCode.php:696 src/Content/Text/BBCode.php:1636 +#: src/Content/Text/BBCode.php:1637 msgid "Image/photo" msgstr "画像/写真" -#: src/Content/Text/BBCode.php:1066 +#: src/Content/Text/BBCode.php:914 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:1091 src/Model/Item.php:3113 -#: src/Model/Item.php:3119 src/Model/Item.php:3120 +#: src/Content/Text/BBCode.php:939 src/Model/Item.php:3745 +#: src/Model/Item.php:3751 src/Model/Item.php:3752 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1525 src/Content/Text/HTML.php:951 +#: src/Content/Text/BBCode.php:1543 src/Content/Text/HTML.php:904 msgid "Click to open/close" msgstr "クリックして開閉" -#: src/Content/Text/BBCode.php:1556 +#: src/Content/Text/BBCode.php:1576 msgid "$1 wrote:" msgstr "$1 の投稿:" -#: src/Content/Text/BBCode.php:1610 src/Content/Text/BBCode.php:1611 +#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642 msgid "Encrypted content" msgstr "暗号化されたコンテンツ" -#: src/Content/Text/BBCode.php:1824 +#: src/Content/Text/BBCode.php:1901 msgid "Invalid source protocol" msgstr "無効なソースプロトコル" -#: src/Content/Text/BBCode.php:1839 +#: src/Content/Text/BBCode.php:1920 msgid "Invalid link protocol" msgstr "無効なリンクプロトコル" -#: src/Content/Text/HTML.php:799 +#: src/Content/Text/HTML.php:782 msgid "Loading more entries..." msgstr "さらにエントリを読み込んでいます..." -#: src/Content/Text/HTML.php:800 +#: src/Content/Text/HTML.php:783 msgid "The end" msgstr "終わり" -#: src/Content/Text/HTML.php:893 src/Model/Profile.php:454 -#: src/Module/Contact.php:340 +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:116 +#: src/Model/Profile.php:461 src/Module/Contact/Profile.php:471 msgid "Follow" msgstr "フォロー" -#: src/Content/Widget.php:49 +#: src/Content/Widget.php:51 msgid "Add New Contact" msgstr "新しいコンタクトを追加" -#: src/Content/Widget.php:50 +#: src/Content/Widget.php:52 msgid "Enter address or web location" msgstr "住所またはウェブの場所を入力してください" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:53 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "例: bob@example.com, http://example.com/barbara" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:55 msgid "Connect" msgstr "つながる" -#: src/Content/Widget.php:68 +#: src/Content/Widget.php:72 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d通の招待が利用できます" -#: src/Content/Widget.php:74 view/theme/vier/theme.php:170 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 msgid "Find People" msgstr "人を見つけます" -#: src/Content/Widget.php:75 view/theme/vier/theme.php:171 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 msgid "Enter name or interest" msgstr "名前または興味を入力してください" -#: src/Content/Widget.php:77 view/theme/vier/theme.php:173 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 msgid "Examples: Robert Morgenstein, Fishing" msgstr "例:Robert Morgenstein、釣り" -#: src/Content/Widget.php:78 src/Module/Contact.php:884 -#: src/Module/Directory.php:105 view/theme/vier/theme.php:174 +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 msgid "Find" msgstr "見つける" -#: src/Content/Widget.php:80 view/theme/vier/theme.php:176 +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "友達の提案" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 msgid "Similar Interests" msgstr "同様の興味" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:177 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 msgid "Random Profile" msgstr "ランダムプロフィール" -#: src/Content/Widget.php:82 view/theme/vier/theme.php:178 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 msgid "Invite Friends" msgstr "友達を招待" -#: src/Content/Widget.php:83 src/Module/Directory.php:97 -#: view/theme/vier/theme.php:179 +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 msgid "Global Directory" msgstr "グローバルディレクトリ" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:181 +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 msgid "Local Directory" msgstr "ローカルディレクトリ" -#: src/Content/Widget.php:214 src/Model/Group.php:535 -#: src/Module/Contact.php:847 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "グループ" +#: src/Content/Widget.php:215 src/Model/Circle.php:600 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "" -#: src/Content/Widget.php:216 +#: src/Content/Widget.php:217 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:245 +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "" + +#: src/Content/Widget.php:247 msgid "Relationships" msgstr "関係" -#: src/Content/Widget.php:247 src/Module/Contact.php:799 -#: src/Module/Group.php:292 +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 msgid "All Contacts" msgstr "すべてのコンタクト" -#: src/Content/Widget.php:286 +#: src/Content/Widget.php:288 msgid "Protocols" msgstr "プロトコル" -#: src/Content/Widget.php:288 +#: src/Content/Widget.php:290 msgid "All Protocols" msgstr "すべてのプロトコル" -#: src/Content/Widget.php:316 +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "保存されたフォルダー" -#: src/Content/Widget.php:318 src/Content/Widget.php:352 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "すべて" -#: src/Content/Widget.php:350 +#: src/Content/Widget.php:349 msgid "Categories" msgstr "カテゴリー" -#: src/Content/Widget.php:407 +#: src/Content/Widget.php:406 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -3792,45 +2326,57 @@ msgstr[0] "共通の %d 件のコンタクト" msgid "Archives" msgstr "アーカイブ" -#: src/Content/Widget.php:530 +#: src/Content/Widget.php:514 +msgid "On this date" +msgstr "" + +#: src/Content/Widget.php:534 msgid "Persons" msgstr "" -#: src/Content/Widget.php:531 +#: src/Content/Widget.php:535 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:532 src/Model/Contact.php:1423 +#: src/Content/Widget.php:536 src/Model/Contact.php:1698 msgid "News" msgstr "ニュース" -#: src/Content/Widget.php:537 src/Module/Admin/BaseUsers.php:50 +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 +msgid "Account Types" +msgstr "アカウントの種類" + +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "" -#: src/Content/Widget/CalendarExport.php:54 -msgid "Export" -msgstr "輸出する" +#: src/Content/Widget.php:573 src/Module/Settings/Display.php:266 +msgid "Channels" +msgstr "" -#: src/Content/Widget/CalendarExport.php:55 +#: src/Content/Widget/CalendarExport.php:56 +msgid "Export" +msgstr "エクスポート" + +#: src/Content/Widget/CalendarExport.php:57 msgid "Export calendar as ical" msgstr "カレンダーをicalとしてエクスポート" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:58 msgid "Export calendar as csv" msgstr "カレンダーをcsvとしてエクスポート" -#: src/Content/Widget/ContactBlock.php:73 +#: src/Content/Widget/ContactBlock.php:79 msgid "No contacts" msgstr "コンタクトなし" -#: src/Content/Widget/ContactBlock.php:105 +#: src/Content/Widget/ContactBlock.php:110 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%dコンタクト" -#: src/Content/Widget/ContactBlock.php:124 +#: src/Content/Widget/ContactBlock.php:127 msgid "View Contacts" msgstr "コンタクトを表示" @@ -3842,85 +2388,129 @@ msgstr "用語を削除" msgid "Saved Searches" msgstr "保存された検索" -#: src/Content/Widget/TrendingTags.php:51 +#: src/Content/Widget/TrendingTags.php:52 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" msgstr[0] "トレンドタグ(過去%d時間)" -#: src/Content/Widget/TrendingTags.php:52 +#: src/Content/Widget/TrendingTags.php:53 msgid "More Trending Tags" msgstr "よりトレンドのタグ" -#: src/Core/ACL.php:154 src/Module/Profile/Profile.php:238 +#: src/Content/Widget/VCard.php:109 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 +msgid "XMPP:" +msgstr "XMPP:" + +#: src/Content/Widget/VCard.php:110 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 +msgid "Matrix:" +msgstr "" + +#: src/Content/Widget/VCard.php:111 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "ロケーション:" + +#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:474 +#: src/Module/Notifications/Introductions.php:201 +msgid "Network:" +msgstr "ネットワーク:" + +#: src/Content/Widget/VCard.php:118 src/Model/Contact.php:1223 +#: src/Model/Contact.php:1234 src/Model/Profile.php:463 +#: src/Module/Contact/Profile.php:463 +msgid "Unfollow" +msgstr "フォロー解除" + +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:190 src/Module/PermissionTooltip.php:83 -#: src/Module/PermissionTooltip.php:105 +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 msgid "Mutuals" msgstr "相互" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:294 msgid "Post to Email" msgstr "メールに投稿" -#: src/Core/ACL.php:307 +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 msgid "Public" msgstr "一般公開" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:322 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "このコンテンツはすべてのフォロワーに表示され、コミュニティページやリンクを知っている人なら誰でも見ることができます。" -#: src/Core/ACL.php:309 +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 msgid "Limited/Private" msgstr "限定/プライベート" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:324 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "このコンテンツは、最初のボックスに記載されたメンバーから、2番目のボックスに記載されている人を除いた範囲に対して表示されます。 一般公開はされません。" -#: src/Core/ACL.php:311 +#: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." +msgstr "" + +#: src/Core/ACL.php:325 msgid "Show to:" msgstr "限定公開先:" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:326 msgid "Except to:" msgstr "この連絡先を除く:" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "CC:メールアドレス" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "例:bob @ example.com、mary @ example.com" + +#: src/Core/ACL.php:329 msgid "Connectors" msgstr "コネクター" -#: src/Core/Installer.php:179 +#: src/Core/Installer.php:180 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 "データベース構成ファイル \"config/local.config.php\" に書き込めませんでした。同封のテキストを使用して、Webサーバーのルートに構成ファイルを作成してください。" -#: src/Core/Installer.php:198 +#: src/Core/Installer.php:197 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "phpmyadminまたはmysqlを使用して、手動でファイル\"database.sql \"をインポートする必要がある場合があります。" -#: src/Core/Installer.php:199 src/Module/Install.php:206 -#: src/Module/Install.php:365 +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "" -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:259 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "WebサーバーPATHに CLI版のPHPが見つかりませんでした。" -#: src/Core/Installer.php:261 +#: src/Core/Installer.php:260 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 "" -#: src/Core/Installer.php:266 +#: src/Core/Installer.php:265 msgid "PHP executable path" msgstr "PHP実行可能ファイルへのPath" -#: src/Core/Installer.php:266 +#: src/Core/Installer.php:265 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "php実行可能ファイルへのフルパスを入力します。これを空白のままにしてインストールを続行できます。" -#: src/Core/Installer.php:271 +#: src/Core/Installer.php:270 msgid "Command line PHP" msgstr "コマンドライン, CLI PHP" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:279 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "PHP実行可能ファイルはphp cliバイナリではありません(cgi-fgciバージョンである可能性があります)" -#: src/Core/Installer.php:281 +#: src/Core/Installer.php:280 msgid "Found PHP version: " msgstr "PHPバージョンが見つかりました:" -#: src/Core/Installer.php:283 +#: src/Core/Installer.php:282 msgid "PHP cli binary" msgstr "PHP CLIバイナリ" -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:295 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "ご使用のシステムのコマンドラインバージョンのPHPでは、\"register_argc_argv \"が有効になっていません。" -#: src/Core/Installer.php:297 +#: src/Core/Installer.php:296 msgid "This is required for message delivery to work." msgstr "これは、メッセージ配信が機能するために必要です。" -#: src/Core/Installer.php:302 +#: src/Core/Installer.php:301 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:333 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "エラー:このシステムの\"openssl_pkey_new \"関数は暗号化鍵を生成できません" -#: src/Core/Installer.php:335 +#: src/Core/Installer.php:334 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Windowsで実行している場合は、「 http://www.php.net/manual/en/openssl.installation.php 」を参照してください。" -#: src/Core/Installer.php:338 +#: src/Core/Installer.php:337 msgid "Generate encryption keys" msgstr "暗号化鍵を生成する" -#: src/Core/Installer.php:390 +#: src/Core/Installer.php:389 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "エラー:Apache webserver mod-rewriteモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:395 +#: src/Core/Installer.php:394 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewriteモジュール" -#: src/Core/Installer.php:401 +#: src/Core/Installer.php:400 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "エラー:PDOまたはMySQLi PHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:406 +#: src/Core/Installer.php:405 msgid "Error: The MySQL driver for PDO is not installed." msgstr "エラー:PDO用のMySQLドライバーがインストールされていません。" -#: src/Core/Installer.php:410 +#: src/Core/Installer.php:409 msgid "PDO or MySQLi PHP module" msgstr "PDOまたはMySQLi PHPモジュール" -#: src/Core/Installer.php:418 +#: src/Core/Installer.php:417 msgid "Error, XML PHP module required but not installed." msgstr "エラー、XML PHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:421 msgid "XML PHP module" msgstr "XML PHPモジュール" -#: src/Core/Installer.php:425 +#: src/Core/Installer.php:424 msgid "libCurl PHP module" msgstr "libCurl PHPモジュール" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:425 msgid "Error: libCURL PHP module required but not installed." msgstr "エラー:libCURL PHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:432 +#: src/Core/Installer.php:431 msgid "GD graphics PHP module" msgstr "GDグラフィックスPHPモジュール" -#: src/Core/Installer.php:433 +#: src/Core/Installer.php:432 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "エラー:JPEGサポート付きのGDグラフィックPHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:439 +#: src/Core/Installer.php:438 msgid "OpenSSL PHP module" msgstr "OpenSSL PHPモジュール" -#: src/Core/Installer.php:440 +#: src/Core/Installer.php:439 msgid "Error: openssl PHP module required but not installed." msgstr "エラー:openssl PHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:446 +#: src/Core/Installer.php:445 msgid "mb_string PHP module" msgstr "mb_string PHPモジュール" -#: src/Core/Installer.php:447 +#: src/Core/Installer.php:446 msgid "Error: mb_string PHP module required but not installed." msgstr "エラー:mb_string PHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:453 +#: src/Core/Installer.php:452 msgid "iconv PHP module" msgstr "iconv PHPモジュール" -#: src/Core/Installer.php:454 +#: src/Core/Installer.php:453 msgid "Error: iconv PHP module required but not installed." msgstr "エラー:iconv PHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:460 +#: src/Core/Installer.php:459 msgid "POSIX PHP module" msgstr "POSIX PHPモジュール" -#: src/Core/Installer.php:461 +#: src/Core/Installer.php:460 msgid "Error: POSIX PHP module required but not installed." msgstr "エラー:POSIX PHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:467 +#: src/Core/Installer.php:466 msgid "Program execution functions" msgstr "" -#: src/Core/Installer.php:468 +#: src/Core/Installer.php:467 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Core/Installer.php:474 +#: src/Core/Installer.php:473 msgid "JSON PHP module" msgstr "JSON PHPモジュール" -#: src/Core/Installer.php:475 +#: src/Core/Installer.php:474 msgid "Error: JSON PHP module required but not installed." msgstr "エラー:JSON PHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:481 +#: src/Core/Installer.php:480 msgid "File Information PHP module" msgstr "ファイル情報PHPモジュール" -#: src/Core/Installer.php:482 +#: src/Core/Installer.php:481 msgid "Error: File Information PHP module required but not installed." msgstr "エラー:ファイル情報PHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:505 +#: src/Core/Installer.php:487 +msgid "GNU Multiple Precision PHP module" +msgstr "" + +#: src/Core/Installer.php:488 +msgid "Error: GNU Multiple Precision PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:511 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 "Webインストーラーは、Webサーバーの\"config \"フォルダーに\"local.config.php \"というファイルを作成できる必要がありますが、作成できません。" -#: src/Core/Installer.php:506 +#: src/Core/Installer.php:512 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 "これはほとんどの場合、Webサーバーがフォルダーにファイルを書き込むことができない場合でも、許可設定です。" -#: src/Core/Installer.php:507 +#: src/Core/Installer.php:513 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 "この手順の最後に、Friendica \"config \"フォルダーのlocal.config.phpという名前のファイルに保存するテキストを提供します。" -#: src/Core/Installer.php:508 +#: src/Core/Installer.php:514 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "" -#: src/Core/Installer.php:511 +#: src/Core/Installer.php:517 msgid "config/local.config.php is writable" msgstr "config/local.config.php は書き込み可能です" -#: src/Core/Installer.php:531 +#: src/Core/Installer.php:537 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "FriendicaはSmarty3テンプレートエンジンを使用してWebビューをレンダリングします。 Smarty3はテンプレートをPHPにコンパイルして、レンダリングを高速化します。" -#: src/Core/Installer.php:532 +#: src/Core/Installer.php:538 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 "これらのコンパイル済みテンプレートを保存するには、WebサーバーがFriendica最上位フォルダーの下のディレクトリview / smarty3 /への書き込みアクセス権を持っている必要があります。" -#: src/Core/Installer.php:533 +#: src/Core/Installer.php:539 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Webサーバーを実行するユーザー(www-dataなど)がこのフォルダーへの書き込みアクセス権を持っていることを確認してください。" -#: src/Core/Installer.php:534 +#: src/Core/Installer.php:540 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 "注:セキュリティ対策として、Webサーバーにview / smarty3 /のみへの書き込みアクセス権を与える必要があります。含まれるテンプレートファイル(.tpl)ではありません。" -#: src/Core/Installer.php:537 +#: src/Core/Installer.php:543 msgid "view/smarty3 is writable" msgstr "view / smarty3は書き込み可能です" -#: src/Core/Installer.php:565 +#: src/Core/Installer.php:571 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "" -#: src/Core/Installer.php:566 +#: src/Core/Installer.php:572 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "" -#: src/Core/Installer.php:568 +#: src/Core/Installer.php:574 msgid "Error message from Curl when fetching" msgstr "取得時のCurlからのエラーメッセージ" -#: src/Core/Installer.php:574 +#: src/Core/Installer.php:580 msgid "Url rewrite is working" msgstr "URLの書き換えが機能しています" -#: src/Core/Installer.php:603 +#: src/Core/Installer.php:609 +msgid "" +"The detection of TLS to secure the communication between the browser and the" +" new Friendica server failed." +msgstr "" + +#: src/Core/Installer.php:610 +msgid "" +"It is highly encouraged to use Friendica only over a secure connection as " +"sensitive information like passwords will be transmitted." +msgstr "" + +#: src/Core/Installer.php:611 +msgid "Please ensure that the connection to the server is secure." +msgstr "" + +#: src/Core/Installer.php:612 +msgid "No TLS detected" +msgstr "" + +#: src/Core/Installer.php:614 +msgid "TLS detected" +msgstr "" + +#: src/Core/Installer.php:641 msgid "ImageMagick PHP extension is not installed" msgstr "ImageMagick PHP拡張機能がインストールされていません" -#: src/Core/Installer.php:605 +#: src/Core/Installer.php:643 msgid "ImageMagick PHP extension is installed" msgstr "ImageMagick PHP拡張機能がインストールされています" -#: src/Core/Installer.php:607 +#: src/Core/Installer.php:645 msgid "ImageMagick supports GIF" msgstr "ImageMagickはGIFをサポートします" -#: src/Core/Installer.php:629 +#: src/Core/Installer.php:667 msgid "Database already in use." msgstr "データベースはすでに使用されています。" -#: src/Core/Installer.php:634 +#: src/Core/Installer.php:672 msgid "Could not connect to database." msgstr "データベースに接続できません。" -#: src/Core/L10n.php:377 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:178 +#: src/Core/L10n.php:476 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:235 msgid "Monday" msgstr "月曜" -#: src/Core/L10n.php:377 src/Model/Event.php:432 +#: src/Core/L10n.php:476 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:236 msgid "Tuesday" msgstr "火曜日" -#: src/Core/L10n.php:377 src/Model/Event.php:433 +#: src/Core/L10n.php:476 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:237 msgid "Wednesday" msgstr "水曜日" -#: src/Core/L10n.php:377 src/Model/Event.php:434 +#: src/Core/L10n.php:476 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:238 msgid "Thursday" msgstr "木曜日" -#: src/Core/L10n.php:377 src/Model/Event.php:435 +#: src/Core/L10n.php:476 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:239 msgid "Friday" msgstr "金曜日" -#: src/Core/L10n.php:377 src/Model/Event.php:436 +#: src/Core/L10n.php:476 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:240 msgid "Saturday" msgstr "土曜日" -#: src/Core/L10n.php:377 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:178 +#: src/Core/L10n.php:476 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:234 msgid "Sunday" msgstr "日曜日" -#: src/Core/L10n.php:381 src/Model/Event.php:451 +#: src/Core/L10n.php:480 src/Model/Event.php:450 msgid "January" msgstr "1月" -#: src/Core/L10n.php:381 src/Model/Event.php:452 +#: src/Core/L10n.php:480 src/Model/Event.php:451 msgid "February" msgstr "2月" -#: src/Core/L10n.php:381 src/Model/Event.php:453 +#: src/Core/L10n.php:480 src/Model/Event.php:452 msgid "March" msgstr "3月" -#: src/Core/L10n.php:381 src/Model/Event.php:454 +#: src/Core/L10n.php:480 src/Model/Event.php:453 msgid "April" msgstr "4月" -#: src/Core/L10n.php:381 src/Core/L10n.php:401 src/Model/Event.php:442 +#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441 msgid "May" msgstr "5月" -#: src/Core/L10n.php:381 src/Model/Event.php:455 +#: src/Core/L10n.php:480 src/Model/Event.php:454 msgid "June" msgstr "6月" -#: src/Core/L10n.php:381 src/Model/Event.php:456 +#: src/Core/L10n.php:480 src/Model/Event.php:455 msgid "July" msgstr "7月" -#: src/Core/L10n.php:381 src/Model/Event.php:457 +#: src/Core/L10n.php:480 src/Model/Event.php:456 msgid "August" msgstr "8月" -#: src/Core/L10n.php:381 src/Model/Event.php:458 +#: src/Core/L10n.php:480 src/Model/Event.php:457 msgid "September" msgstr "9月" -#: src/Core/L10n.php:381 src/Model/Event.php:459 +#: src/Core/L10n.php:480 src/Model/Event.php:458 msgid "October" msgstr "10月" -#: src/Core/L10n.php:381 src/Model/Event.php:460 +#: src/Core/L10n.php:480 src/Model/Event.php:459 msgid "November" msgstr "11月" -#: src/Core/L10n.php:381 src/Model/Event.php:461 +#: src/Core/L10n.php:480 src/Model/Event.php:460 msgid "December" msgstr "12月" -#: src/Core/L10n.php:397 src/Model/Event.php:423 +#: src/Core/L10n.php:495 src/Model/Event.php:422 msgid "Mon" msgstr "月" -#: src/Core/L10n.php:397 src/Model/Event.php:424 +#: src/Core/L10n.php:495 src/Model/Event.php:423 msgid "Tue" msgstr "火" -#: src/Core/L10n.php:397 src/Model/Event.php:425 +#: src/Core/L10n.php:495 src/Model/Event.php:424 msgid "Wed" msgstr "水" -#: src/Core/L10n.php:397 src/Model/Event.php:426 +#: src/Core/L10n.php:495 src/Model/Event.php:425 msgid "Thu" msgstr "木" -#: src/Core/L10n.php:397 src/Model/Event.php:427 +#: src/Core/L10n.php:495 src/Model/Event.php:426 msgid "Fri" msgstr "金" -#: src/Core/L10n.php:397 src/Model/Event.php:428 +#: src/Core/L10n.php:495 src/Model/Event.php:427 msgid "Sat" msgstr "土" -#: src/Core/L10n.php:397 src/Model/Event.php:422 +#: src/Core/L10n.php:495 src/Model/Event.php:421 msgid "Sun" msgstr "日" -#: src/Core/L10n.php:401 src/Model/Event.php:438 +#: src/Core/L10n.php:499 src/Model/Event.php:437 msgid "Jan" msgstr "1月" -#: src/Core/L10n.php:401 src/Model/Event.php:439 +#: src/Core/L10n.php:499 src/Model/Event.php:438 msgid "Feb" msgstr "2月" -#: src/Core/L10n.php:401 src/Model/Event.php:440 +#: src/Core/L10n.php:499 src/Model/Event.php:439 msgid "Mar" msgstr "3月" -#: src/Core/L10n.php:401 src/Model/Event.php:441 +#: src/Core/L10n.php:499 src/Model/Event.php:440 msgid "Apr" msgstr "4月" -#: src/Core/L10n.php:401 src/Model/Event.php:443 +#: src/Core/L10n.php:499 src/Model/Event.php:442 msgid "Jun" msgstr "6月" -#: src/Core/L10n.php:401 src/Model/Event.php:444 +#: src/Core/L10n.php:499 src/Model/Event.php:443 msgid "Jul" msgstr "7月" -#: src/Core/L10n.php:401 src/Model/Event.php:445 +#: src/Core/L10n.php:499 src/Model/Event.php:444 msgid "Aug" msgstr "8月" -#: src/Core/L10n.php:401 +#: src/Core/L10n.php:499 msgid "Sep" msgstr "9月" -#: src/Core/L10n.php:401 src/Model/Event.php:447 +#: src/Core/L10n.php:499 src/Model/Event.php:446 msgid "Oct" msgstr "10月" -#: src/Core/L10n.php:401 src/Model/Event.php:448 +#: src/Core/L10n.php:499 src/Model/Event.php:447 msgid "Nov" msgstr "11月" -#: src/Core/L10n.php:401 src/Model/Event.php:449 +#: src/Core/L10n.php:499 src/Model/Event.php:448 msgid "Dec" msgstr "12月" -#: src/Core/L10n.php:420 -msgid "poke" -msgstr "poke" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "ログファイル ' %s ' は使用できません。ログ機能が使用できません。(エラー: ' %s ' )" -#: src/Core/L10n.php:420 -msgid "poked" -msgstr "pokeされました" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "デバッグログファイル ' %s ' は使用できません。ログ機能が使用できません。(エラー: ' %s ' )" -#: src/Core/L10n.php:421 -msgid "ping" -msgstr "ping" - -#: src/Core/L10n.php:421 -msgid "pinged" -msgstr "pingされました" - -#: src/Core/L10n.php:422 -msgid "prod" -msgstr "製品" - -#: src/Core/L10n.php:422 -msgid "prodded" -msgstr "prodされた" - -#: src/Core/L10n.php:423 -msgid "slap" -msgstr "slap" - -#: src/Core/L10n.php:423 -msgid "slapped" -msgstr "slappされました" - -#: src/Core/L10n.php:424 -msgid "finger" -msgstr "フィンガー" - -#: src/Core/L10n.php:424 -msgid "fingered" -msgstr "フィンガーされました" - -#: src/Core/L10n.php:425 -msgid "rebuff" -msgstr "拒絶" - -#: src/Core/L10n.php:425 -msgid "rebuffed" -msgstr "拒否された" - -#: 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 +#: src/Core/Renderer.php:89 src/Core/Renderer.php:118 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "" -#: src/Core/Renderer.php:142 +#: src/Core/Renderer.php:143 msgid "template engine cannot be registered without a name." msgstr "" -#: src/Core/Renderer.php:176 +#: src/Core/Renderer.php:177 msgid "template engine is not registered!" msgstr "" -#: src/Core/Update.php:67 +#: src/Core/Storage/Type/FilesystemConfig.php:78 +msgid "Storage base path" +msgstr "ストレージのbase path" + +#: src/Core/Storage/Type/FilesystemConfig.php:80 +msgid "" +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "アップロードされたファイルが保存されるフォルダです。最大限のセキュリティを確保するために、これはWebサーバーフォルダツリー外のパスである必要があります" + +#: src/Core/Storage/Type/FilesystemConfig.php:93 +msgid "Enter a valid existing folder" +msgstr "有効な既存のフォルダを入力してください" + +#: src/Core/Update.php:80 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:78 +#: src/Core/Update.php:91 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:152 +#: src/Core/Update.php:183 #, php-format msgid "%s: executing pre update %d" msgstr "" -#: src/Core/Update.php:190 +#: src/Core/Update.php:225 #, php-format msgid "%s: executing post update %d" msgstr "" -#: src/Core/Update.php:259 +#: src/Core/Update.php:299 #, php-format msgid "Update %s failed. See error logs." msgstr "%sの更新に失敗しました。エラーログを参照してください。" -#: src/Core/Update.php:312 +#: src/Core/Update.php:339 #, php-format msgid "" "\n" @@ -4438,80 +3042,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\tfriendicaの開発者は更新 %s をリリースしました。\n\t\t\t\tしかし、私がそれをインストールしようとしたとき、何かをひどく間違ったようです。\n\t\t\t\tこれはすぐに修正される必要がありますが、私一人では解決できません。\n自己解決が無理な場合はfriendica開発者へコンタクトをとってください。データベースが無効である可能性があります。" -#: src/Core/Update.php:318 +#: src/Core/Update.php:345 #, 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:349 src/Core/Update.php:377 msgid "[Friendica Notify] Database update" msgstr "[Friendica Notify]データベースの更新" -#: src/Core/Update.php:358 +#: src/Core/Update.php:371 #, php-format msgid "" "\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n\t\t\t\tfriendicaデータベースは %s から %s に正常に更新されました。" +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "" -#: src/Core/UserImport.php:126 -msgid "Error decoding account file" -msgstr "アカウントファイルのデコードエラー" - -#: src/Core/UserImport.php:132 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "エラー!ファイルにバージョンデータがありません!これはFriendicaアカウントファイルではなさそうです。" - -#: src/Core/UserImport.php:140 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "ユーザー '%s' はこのサーバーに既に存在します!" - -#: src/Core/UserImport.php:176 -msgid "User creation error" -msgstr "ユーザ作成エラー" - -#: src/Core/UserImport.php:221 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%dコンタクトはインポートされませんでした" - -#: src/Core/UserImport.php:274 -msgid "User profile creation error" -msgstr "ユーザープロフィール作成エラー" - -#: src/Core/UserImport.php:330 -msgid "Done. You can now login with your username and password" -msgstr "完了しました。これでであなたのユーザー名とパスワードでログインできます。 " - -#: src/Database/DBStructure.php:65 +#: src/Database/DBStructure.php:57 #, php-format msgid "The database version had been set to %s." msgstr "" -#: src/Database/DBStructure.php:78 +#: src/Database/DBStructure.php:82 #, 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:90 +#: src/Database/DBStructure.php:95 msgid "No unused tables found." msgstr "" -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:100 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "" -#: src/Database/DBStructure.php:133 +#: src/Database/DBStructure.php:137 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Database/DBStructure.php:157 +#: src/Database/DBStructure.php:161 #, php-format msgid "" "\n" @@ -4519,570 +3092,635 @@ msgid "" "%s\n" msgstr "\nデータベースの更新中にエラー%dが発生しました:\n%s\n" -#: src/Database/DBStructure.php:160 +#: src/Database/DBStructure.php:164 msgid "Errors encountered performing database changes: " msgstr "データベース変更の実行中に発生したエラー:" -#: src/Database/DBStructure.php:550 +#: src/Database/DBStructure.php:232 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:554 +#: src/Database/DBStructure.php:236 #, php-format msgid "%s: Database update" msgstr "%s :データベースの更新" -#: src/Database/DBStructure.php:854 +#: src/Database/DBStructure.php:493 #, php-format msgid "%s: updating %s table." msgstr "%s : %sテーブルを更新しています。" -#: src/Factory/Api/Mastodon/Error.php:38 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Record not found" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:48 +#: src/Factory/Api/Mastodon/Error.php:65 msgid "Unprocessable Entity" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:58 -#: src/Module/Special/HTTPException.php:50 +#: src/Factory/Api/Mastodon/Error.php:75 msgid "Unauthorized" msgstr "認証されていません" -#: src/Factory/Api/Mastodon/Error.php:68 +#: src/Factory/Api/Mastodon/Error.php:84 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:78 -#: src/Module/Special/HTTPException.php:53 +#: src/Factory/Api/Mastodon/Error.php:94 msgid "Internal Server Error" msgstr "内部サーバーエラー" -#: src/Factory/Notification/Introduction.php:135 -msgid "Friend Suggestion" -msgstr "友達の提案" - -#: src/Factory/Notification/Introduction.php:161 -msgid "Friend/Connect Request" -msgstr "フレンド/接続リクエスト" - -#: src/Factory/Notification/Introduction.php:161 -msgid "New Follower" -msgstr "新しいフォロワー" - -#: src/Factory/Notification/Notification.php:103 -#, php-format -msgid "%s created a new post" -msgstr "%sが新しい投稿を作成しました" - -#: src/Factory/Notification/Notification.php:104 -#: src/Factory/Notification/Notification.php:362 -#, php-format -msgid "%s commented on %s's post" -msgstr "%sが%sの投稿にコメントしました" - -#: src/Factory/Notification/Notification.php:130 -#, php-format -msgid "%s liked %s's post" -msgstr "%sが%sの投稿を高く評価しました" - -#: src/Factory/Notification/Notification.php:141 -#, php-format -msgid "%s disliked %s's post" -msgstr "%sは%sの投稿を好きではないようです" - -#: src/Factory/Notification/Notification.php:152 -#, php-format -msgid "%s is attending %s's event" -msgstr "%sは%sのイベントに参加しています" - -#: src/Factory/Notification/Notification.php:163 -#, php-format -msgid "%s is not attending %s's event" -msgstr "%sは%sのイベントを欠席します" - -#: src/Factory/Notification/Notification.php:174 -#, php-format -msgid "%s may attending %s's event" -msgstr "" - -#: src/Factory/Notification/Notification.php:201 -#, php-format -msgid "%s is now friends with %s" -msgstr "%sは%sと友達になりました" - -#: src/LegacyModule.php:49 +#: src/LegacyModule.php:63 #, php-format msgid "Legacy module file not found: %s" msgstr "レガシーモジュールファイルが見つかりません: %s" -#: src/Model/Contact.php:995 src/Model/Contact.php:1008 -msgid "UnFollow" -msgstr "フォロー解除" +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." +msgstr "" -#: src/Model/Contact.php:1004 -msgid "Drop Contact" -msgstr "コンタクトを削除" +#: src/Model/Circle.php:543 +msgid "Everybody" +msgstr "みんな" -#: src/Model/Contact.php:1014 src/Module/Admin/Users/Pending.php:107 -#: src/Module/Notifications/Introductions.php:111 -#: src/Module/Notifications/Introductions.php:189 +#: src/Model/Circle.php:562 +msgid "edit" +msgstr "編集する" + +#: src/Model/Circle.php:599 +msgid "add" +msgstr "加える" + +#: src/Model/Circle.php:604 +msgid "Edit circle" +msgstr "" + +#: src/Model/Circle.php:605 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "" + +#: src/Model/Circle.php:607 +msgid "Create a new circle" +msgstr "" + +#: src/Model/Circle.php:608 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "" + +#: src/Model/Circle.php:609 +msgid "Edit circles" +msgstr "" + +#: src/Model/Contact.php:1240 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "承認する" -#: src/Model/Contact.php:1419 +#: src/Model/Contact.php:1694 msgid "Organisation" msgstr "組織" -#: src/Model/Contact.php:1427 -msgid "Forum" -msgstr "フォーラム" +#: src/Model/Contact.php:1702 +msgid "Group" +msgstr "" -#: src/Model/Contact.php:2187 +#: src/Model/Contact.php:3005 +msgid "Disallowed profile URL." +msgstr "許可されていないプロフィールURL。" + +#: src/Model/Contact.php:3010 src/Module/Friendica.php:101 +msgid "Blocked domain" +msgstr "ブロックされたドメイン" + +#: src/Model/Contact.php:3015 msgid "Connect URL missing." msgstr "接続URLがありません。" -#: src/Model/Contact.php:2196 +#: src/Model/Contact.php:3024 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "コンタクトを追加できませんでした。ページの \"設定\" -> \"ソーシャルネットワーク\" で、関連するネットワーク認証情報を確認してください。" -#: src/Model/Contact.php:2237 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "このサイトは、他のネットワークとの通信を許可するように構成されていません。" +#: src/Model/Contact.php:3042 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "" -#: src/Model/Contact.php:2238 src/Model/Contact.php:2251 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "互換性のある通信プロトコルまたはフィードは見つかりませんでした。" - -#: src/Model/Contact.php:2249 +#: src/Model/Contact.php:3059 msgid "The profile address specified does not provide adequate information." msgstr "指定されたプロフィールアドレスは、適切な情報を提供しません。" -#: src/Model/Contact.php:2254 +#: src/Model/Contact.php:3061 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "互換性のある通信プロトコルまたはフィードは見つかりませんでした。" + +#: src/Model/Contact.php:3064 msgid "An author or name was not found." msgstr "著者または名前が見つかりませんでした。" -#: src/Model/Contact.php:2257 +#: src/Model/Contact.php:3067 msgid "No browser URL could be matched to this address." msgstr "このアドレスに一致するブラウザURLはありません。" -#: src/Model/Contact.php:2260 +#: src/Model/Contact.php:3070 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "@スタイルのIDアドレスを既知のプロトコルまたは電子メールのコンタクトと一致させることができません。" -#: src/Model/Contact.php:2261 +#: src/Model/Contact.php:3071 msgid "Use mailto: in front of address to force email check." msgstr "メールチェックを強制するには、アドレスの前にmailto:を使用します。" -#: src/Model/Contact.php:2267 +#: src/Model/Contact.php:3077 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "指定されたプロフィールアドレスは、このサイトで無効にされたネットワークに属します。" -#: src/Model/Contact.php:2272 +#: src/Model/Contact.php:3082 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "限定公開のプロフィールです。この人はあなたから直接/個人的な通知を受け取ることができません。" -#: src/Model/Contact.php:2331 +#: src/Model/Contact.php:3148 msgid "Unable to retrieve contact information." msgstr "コンタクト情報を取得できません。" -#: 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 "l F d, Y \\@ g:i A" +#: src/Model/Event.php:54 +msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" +msgstr "" -#: src/Model/Event.php:77 src/Model/Event.php:94 src/Model/Event.php:470 -#: src/Model/Event.php:941 +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 msgid "Starts:" msgstr "開始:" -#: src/Model/Event.php:80 src/Model/Event.php:100 src/Model/Event.php:471 -#: src/Model/Event.php:945 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 msgid "Finishes:" msgstr "終了:" -#: src/Model/Event.php:420 +#: src/Model/Event.php:419 msgid "all-day" msgstr "一日中" -#: src/Model/Event.php:446 +#: src/Model/Event.php:445 msgid "Sept" msgstr "9月" -#: src/Model/Event.php:468 +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "今日" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:245 src/Util/Temporal.php:353 +msgid "month" +msgstr "月" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:246 src/Util/Temporal.php:354 +msgid "week" +msgstr "週間" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:247 src/Util/Temporal.php:355 +msgid "day" +msgstr "日" + +#: src/Model/Event.php:467 msgid "No events to display" msgstr "表示するイベントはありません" -#: src/Model/Event.php:587 +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "このプロフィールへのアクセスは制限されています。" + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "" + +#: src/Model/Event.php:637 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:618 +#: src/Model/Event.php:664 msgid "Edit event" msgstr "イベントを編集" -#: src/Model/Event.php:619 +#: src/Model/Event.php:665 msgid "Duplicate event" msgstr "重複イベント" -#: src/Model/Event.php:620 +#: src/Model/Event.php:666 msgid "Delete event" msgstr "イベントを削除" -#: src/Model/Event.php:872 +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: src/Model/Event.php:897 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:873 +#: src/Model/Event.php:898 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:960 src/Model/Event.php:962 +#: src/Model/Event.php:964 src/Model/Event.php:966 msgid "Show map" msgstr "地図を表示" -#: src/Model/Event.php:961 +#: src/Model/Event.php:965 msgid "Hide map" msgstr "地図を隠す" -#: src/Model/Event.php:1053 +#: src/Model/Event.php:1058 #, php-format msgid "%s's birthday" msgstr "%sの誕生日" -#: src/Model/Event.php:1054 +#: src/Model/Event.php:1059 #, php-format msgid "Happy Birthday %s" msgstr "ハッピーバースデー %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 "この名前の削除されたグループが復活しました。既存の項目の権限は、このグループと将来のメンバーに適用される可能性があります。これが意図したものでない場合は、別の名前で別のグループを作成してください。" - -#: src/Model/Group.php:451 -msgid "Default privacy group for new contacts" -msgstr "新しいコンタクトのデフォルトのプライバシーグループ" - -#: src/Model/Group.php:483 -msgid "Everybody" -msgstr "みんな" - -#: src/Model/Group.php:502 -msgid "edit" -msgstr "編集する" - -#: src/Model/Group.php:534 -msgid "add" -msgstr "加える" - -#: src/Model/Group.php:539 -msgid "Edit group" -msgstr "グループを編集" - -#: src/Model/Group.php:540 src/Module/Group.php:193 -msgid "Contacts not in any group" -msgstr "どのグループにも属していないコンタクト" - -#: src/Model/Group.php:542 -msgid "Create a new group" -msgstr "新しいグループを作成する" - -#: src/Model/Group.php:543 src/Module/Group.php:178 src/Module/Group.php:201 -#: src/Module/Group.php:276 -msgid "Group Name: " -msgstr "グループ名:" - -#: src/Model/Group.php:544 -msgid "Edit groups" -msgstr "グループを編集" - -#: src/Model/Item.php:1659 +#: src/Model/Item.php:2062 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "" -#: src/Model/Item.php:2609 +#: src/Model/Item.php:3007 msgid "activity" msgstr "アクティビティ" -#: src/Model/Item.php:2611 +#: src/Model/Item.php:3009 msgid "comment" msgstr "" -#: src/Model/Item.php:2614 +#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "投稿" -#: src/Model/Item.php:2728 +#: src/Model/Item.php:3182 +#, php-format +msgid "%s is blocked" +msgstr "" + +#: src/Model/Item.php:3184 +#, php-format +msgid "%s is ignored" +msgstr "" + +#: src/Model/Item.php:3186 +#, php-format +msgid "Content from %s is collapsed" +msgstr "" + +#: src/Model/Item.php:3190 #, php-format msgid "Content warning: %s" msgstr "コンテンツの警告: %s" -#: src/Model/Item.php:3078 +#: src/Model/Item.php:3652 msgid "bytes" msgstr "バイト" -#: src/Model/Item.php:3107 src/Model/Item.php:3108 +#: src/Model/Item.php:3683 +#, php-format +msgid "%2$s (%3$d%%, %1$d vote)" +msgid_plural "%2$s (%3$d%%, %1$d votes)" +msgstr[0] "" + +#: src/Model/Item.php:3685 +#, php-format +msgid "%2$s (%1$d vote)" +msgid_plural "%2$s (%1$d votes)" +msgstr[0] "" + +#: src/Model/Item.php:3690 +#, php-format +msgid "%d voter. Poll end: %s" +msgid_plural "%d voters. Poll end: %s" +msgstr[0] "" + +#: src/Model/Item.php:3692 +#, php-format +msgid "%d voter." +msgid_plural "%d voters." +msgstr[0] "" + +#: src/Model/Item.php:3694 +#, php-format +msgid "Poll end: %s" +msgstr "" + +#: src/Model/Item.php:3728 src/Model/Item.php:3729 msgid "View on separate page" msgstr "個別のページで見る" -#: src/Model/Mail.php:136 src/Model/Mail.php:268 +#: src/Model/Mail.php:137 src/Model/Mail.php:266 msgid "[no subject]" msgstr "[件名なし]" -#: src/Model/Profile.php:356 src/Module/Profile/Profile.php:252 -#: src/Module/Profile/Profile.php:254 +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "ウォール写真" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 msgid "Edit profile" msgstr "プロフィール編集" -#: src/Model/Profile.php:358 +#: src/Model/Profile.php:361 msgid "Change profile photo" msgstr "プロフィール写真を変更" -#: src/Model/Profile.php:371 src/Module/Directory.php:161 -#: src/Module/Profile/Profile.php:180 +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 msgid "Homepage:" msgstr "ホームページ:" -#: src/Model/Profile.php:372 src/Module/Contact.php:658 -#: src/Module/Notifications/Introductions.php:174 +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "この場所について:" -#: 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 "フォロー解除" - -#: src/Model/Profile.php:458 +#: src/Model/Profile.php:465 msgid "Atom feed" msgstr "Atomフィード" -#: src/Model/Profile.php:466 src/Module/Contact.php:338 -#: src/Module/Notifications/Introductions.php:186 -msgid "Network:" -msgstr "ネットワーク:" +#: src/Model/Profile.php:472 +msgid "This website has been verified to belong to the same person." +msgstr "" -#: 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:497 +#: src/Model/Profile.php:509 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:559 src/Model/Profile.php:644 +#: src/Model/Profile.php:573 src/Model/Profile.php:662 msgid "[today]" msgstr "[今日]" -#: src/Model/Profile.php:569 +#: src/Model/Profile.php:582 msgid "Birthday Reminders" msgstr "誕生日のリマインダー" -#: src/Model/Profile.php:570 +#: src/Model/Profile.php:583 msgid "Birthdays this week:" msgstr "今週の誕生日:" -#: src/Model/Profile.php:631 +#: src/Model/Profile.php:611 +msgid "g A l F d" +msgstr "g A l F d" + +#: src/Model/Profile.php:649 msgid "[No description]" msgstr "[説明なし]" -#: src/Model/Profile.php:657 +#: src/Model/Profile.php:675 msgid "Event Reminders" msgstr "イベントリマインダー" -#: src/Model/Profile.php:658 +#: src/Model/Profile.php:676 msgid "Upcoming events the next 7 days:" msgstr "今後7日間の今後のイベント:" -#: src/Model/Profile.php:833 +#: src/Model/Profile.php:873 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %2$sさん、%1$sへようこそ" -#: src/Model/Storage/Database.php:74 -#, php-format -msgid "Database storage failed to update %s" -msgstr "データベースストレージは%sを更新できませんました" +#: src/Model/Profile.php:1013 +msgid "Hometown:" +msgstr "出身地:" -#: src/Model/Storage/Database.php:82 -msgid "Database storage failed to insert data" -msgstr "データベースストレージがデータの挿入に失敗しました" +#: src/Model/Profile.php:1014 +msgid "Marital Status:" +msgstr "" -#: src/Model/Storage/Filesystem.php:100 -#, php-format -msgid "Filesystem storage failed to create \"%s\". Check you write permissions." -msgstr "ファイルシステムストレージは\"%s\" の作成に失敗しました。書き込み権限を確認してください。" +#: src/Model/Profile.php:1015 +msgid "With:" +msgstr "" -#: src/Model/Storage/Filesystem.php:148 -#, php-format -msgid "" -"Filesystem storage failed to save data to \"%s\". Check your write " -"permissions" -msgstr "ファイルシステムストレージは、データを\"%s\"に保存できませんでした。書き込み権限を確認してください" +#: src/Model/Profile.php:1016 +msgid "Since:" +msgstr "" -#: src/Model/Storage/Filesystem.php:176 -msgid "Storage base path" -msgstr "ストレージのbase path" +#: src/Model/Profile.php:1017 +msgid "Sexual Preference:" +msgstr "性的嗜好:" -#: 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 "アップロードされたファイルが保存されるフォルダです。最大限のセキュリティを確保するために、これはWebサーバーフォルダツリー外のパスである必要があります" +#: src/Model/Profile.php:1018 +msgid "Political Views:" +msgstr "政見:" -#: src/Model/Storage/Filesystem.php:191 -msgid "Enter a valid existing folder" -msgstr "有効な既存のフォルダを入力してください" +#: src/Model/Profile.php:1019 +msgid "Religious Views:" +msgstr "宗教的見解:" -#: src/Model/User.php:186 src/Model/User.php:986 +#: src/Model/Profile.php:1020 +msgid "Likes:" +msgstr "好きなもの:" + +#: src/Model/Profile.php:1021 +msgid "Dislikes:" +msgstr "嫌いなもの:" + +#: src/Model/Profile.php:1022 +msgid "Title/Description:" +msgstr "タイトル説明:" + +#: src/Model/Profile.php:1023 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 +msgid "Summary" +msgstr "概要" + +#: src/Model/Profile.php:1024 +msgid "Musical interests" +msgstr "音楽的興味" + +#: src/Model/Profile.php:1025 +msgid "Books, literature" +msgstr "本、文学" + +#: src/Model/Profile.php:1026 +msgid "Television" +msgstr "テレビ" + +#: src/Model/Profile.php:1027 +msgid "Film/dance/culture/entertainment" +msgstr "映画/ダンス/文化/エンターテイメント" + +#: src/Model/Profile.php:1028 +msgid "Hobbies/Interests" +msgstr "趣味/興味" + +#: src/Model/Profile.php:1029 +msgid "Love/romance" +msgstr "愛/ロマンス" + +#: src/Model/Profile.php:1030 +msgid "Work/employment" +msgstr "仕事/雇用" + +#: src/Model/Profile.php:1031 +msgid "School/education" +msgstr "学校教育" + +#: src/Model/Profile.php:1032 +msgid "Contact information and Social Networks" +msgstr "コンタクト情報とソーシャルネットワーク" + +#: src/Model/User.php:227 src/Model/User.php:1186 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "重大なエラー:セキュリティキーの生成に失敗しました。" -#: src/Model/User.php:571 src/Model/User.php:604 +#: src/Model/User.php:620 src/Model/User.php:653 msgid "Login failed" msgstr "ログインに失敗しました" -#: src/Model/User.php:636 +#: src/Model/User.php:685 msgid "Not enough information to authenticate" msgstr "認証に十分な情報がありません" -#: src/Model/User.php:731 +#: src/Model/User.php:806 msgid "Password can't be empty" msgstr "パスワードは空にできません" -#: src/Model/User.php:750 +#: src/Model/User.php:848 msgid "Empty passwords are not allowed." msgstr "空のパスワードは許可されていません。" -#: src/Model/User.php:754 +#: src/Model/User.php:852 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "新しいパスワードは公開データダンプで公開されています。別のパスワードを選択してください。" -#: src/Model/User.php:760 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "パスワードには、アクセント文字、空白、またはコロン(:)を含めることはできません" +#: src/Model/User.php:856 +msgid "The password length is limited to 72 characters." +msgstr "" -#: src/Model/User.php:866 +#: src/Model/User.php:860 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "" + +#: src/Model/User.php:1069 msgid "Passwords do not match. Password unchanged." msgstr "パスワードが一致していません。パスワードは変更されていません。" -#: src/Model/User.php:873 +#: src/Model/User.php:1076 msgid "An invitation is required." msgstr "招待状が必要です。" -#: src/Model/User.php:877 +#: src/Model/User.php:1080 msgid "Invitation could not be verified." msgstr "招待を確認できませんでした。" -#: src/Model/User.php:885 +#: src/Model/User.php:1088 msgid "Invalid OpenID url" msgstr "無効なOpenID URL" -#: src/Model/User.php:898 src/Security/Authentication.php:224 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 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:898 src/Security/Authentication.php:224 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "エラーメッセージは次のとおりです。" -#: src/Model/User.php:904 +#: src/Model/User.php:1107 msgid "Please enter the required information." msgstr "必要な情報を入力してください。" -#: src/Model/User.php:918 +#: src/Model/User.php:1121 #, 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:925 +#: src/Model/User.php:1128 #, 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:929 +#: src/Model/User.php:1132 #, 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:937 +#: src/Model/User.php:1140 msgid "That doesn't appear to be your full (First Last) name." msgstr "それはあなたのフルネーム(ファースト/ラスト)ではないようです。" -#: src/Model/User.php:942 +#: src/Model/User.php:1145 msgid "Your email domain is not among those allowed on this site." msgstr "あなたのメールドメインは、このサイトで許可されているものではありません。" -#: src/Model/User.php:946 +#: src/Model/User.php:1149 msgid "Not a valid email address." msgstr "有効な電子メールアドレスではありません。" -#: src/Model/User.php:949 +#: src/Model/User.php:1152 msgid "The nickname was blocked from registration by the nodes admin." msgstr "そのニックネームは、ノード管理者によって登録がブロックされました。" -#: src/Model/User.php:953 src/Model/User.php:961 +#: src/Model/User.php:1156 src/Model/User.php:1162 msgid "Cannot use that email." msgstr "そのメールは使用できません。" -#: src/Model/User.php:968 +#: src/Model/User.php:1168 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "ニックネームにはa-z、0-9、および _ のみを含めることができます。" -#: src/Model/User.php:976 src/Model/User.php:1033 +#: src/Model/User.php:1176 src/Model/User.php:1233 msgid "Nickname is already registered. Please choose another." msgstr "ニックネームはすでに登録されています。別のものを選択してください。" -#: src/Model/User.php:1020 src/Model/User.php:1024 +#: src/Model/User.php:1220 src/Model/User.php:1224 msgid "An error occurred during registration. Please try again." msgstr "登録中にエラーが発生しました。もう一度試してください。" -#: src/Model/User.php:1047 +#: src/Model/User.php:1247 msgid "An error occurred creating your default profile. Please try again." msgstr "既定のプロフィールの作成中にエラーが発生しました。もう一度試してください。" -#: src/Model/User.php:1054 +#: src/Model/User.php:1254 msgid "An error occurred creating your self contact. Please try again." msgstr "自己コンタクトの作成中にエラーが発生しました。もう一度試してください。" -#: src/Model/User.php:1059 +#: src/Model/User.php:1259 msgid "Friends" msgstr "友だち" -#: src/Model/User.php:1063 +#: src/Model/User.php:1263 msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "既定のコンタクトグループの作成中にエラーが発生しました。もう一度試してください。" +"An error occurred creating your default contact circle. Please try again." +msgstr "" -#: src/Model/User.php:1256 +#: src/Model/User.php:1307 +msgid "Profile Photos" +msgstr "プロフィール写真" + +#: src/Model/User.php:1487 #, php-format msgid "" "\n" @@ -5090,7 +3728,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1259 +#: src/Model/User.php:1490 #, php-format msgid "" "\n" @@ -5117,17 +3755,17 @@ msgid "" "\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" +"\t\tIf you ever want to delete your account, you can do so at %1$s/settings/removeme\n" "\n" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1292 src/Model/User.php:1399 +#: src/Model/User.php:1523 src/Model/User.php:1630 #, php-format msgid "Registration details for %s" msgstr "%s の登録の詳細" -#: src/Model/User.php:1312 +#: src/Model/User.php:1543 #, php-format msgid "" "\n" @@ -5142,12 +3780,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:1331 +#: src/Model/User.php:1562 #, php-format msgid "Registration at %s" msgstr "%s登録" -#: src/Model/User.php:1355 +#: src/Model/User.php:1586 #, php-format msgid "" "\n" @@ -5156,7 +3794,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:1363 +#: src/Model/User.php:1594 #, php-format msgid "" "\n" @@ -5183,10 +3821,10 @@ msgid "" "\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" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." -msgstr "\nログインの詳細は次のとおりです:\n\nサイトの場所:\t%3$s\nログイン名:\t\t%1$s\nPassword:\t\t%5$s\n\nパスワードは、ログイン後にアカウントの「設定」ページから変更できます。\nしばらくしてから、そのページの他のアカウント設定を確認してください。\n\n既定のプロフィールに基本情報を追加することもできます(\"プロフィール\"\nページ上)。他の人があなたを簡単に見つけられるようにします。\n\nフルネームを設定し、プロフィール写真、いくつかのプロフィール\"キーワード\"\n(新しい友達を作るのに非常に便利です)を追加することをお勧めします。\n具体的に書きたくない場合は、あなたが住んでいる国のみを書くのが良いでしょう。\n\nこれらの項目は必須では有りません。プライバシーに対する権利を完全に尊重します。\nあなたが新しく、ここに誰も知らない場合、彼らは新しい興味深い友人を作るのを\n助けてくれるかもしれません\n\nあなたのアカウントを削除したいなら、\n%3$s/removeme\nから可能です。\n\nありがとうございます。%2$sへようこそ。" +msgstr "" #: src/Module/Admin/Addons/Details.php:65 msgid "Addon not found." @@ -5213,24 +3851,20 @@ msgid "Enable" 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: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 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 +#: src/Module/Admin/Themes/Details.php:90 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 msgid "Administration" msgstr "運営管理" #: src/Module/Admin/Addons/Details.php:112 #: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:87 +#: src/Module/BaseSettings.php:132 msgid "Addons" msgstr "アドオン" @@ -5239,13 +3873,13 @@ msgstr "アドオン" msgid "Toggle" msgstr "トグル" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 msgid "Author: " msgstr "著者:" -#: src/Module/Admin/Addons/Details.php:122 -#: src/Module/Admin/Themes/Details.php:102 +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 msgid "Maintainer: " msgstr "メンテナー:" @@ -5258,11 +3892,22 @@ msgstr "" msgid "Addon %s failed to install." msgstr "アドオン %s のインストールに失敗しました。" +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "設定を保存" + #: src/Module/Admin/Addons/Index.php:70 msgid "Reload active addons" msgstr "アクティブなアドオンをリロードする" -#: src/Module/Admin/Addons/Index.php:75 +#: src/Module/Admin/Addons/Index.php:74 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -5270,216 +3915,6 @@ msgid "" " the open addon registry at %2$s" msgstr "現在、ノードで使用可能なアドオンはありません。公式のアドオンリポジトリは %1$s にあり、他の興味深いアドオンは %2$s オープン アドオン レジストリにあります。" -#: src/Module/Admin/BaseUsers.php:53 -msgid "List of all users" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:58 -msgid "Active" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:61 -msgid "List of active accounts" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:66 src/Module/Contact.php:807 -#: src/Module/Contact.php:867 -msgid "Pending" -msgstr "保留" - -#: src/Module/Admin/BaseUsers.php:69 -msgid "List of pending registrations" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:74 src/Module/Contact.php:815 -#: src/Module/Contact.php:868 -msgid "Blocked" -msgstr "ブロックされました" - -#: src/Module/Admin/BaseUsers.php:77 -msgid "List of blocked users" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:82 -msgid "Deleted" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:85 -msgid "List of pending user deletions" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:103 -msgid "Private Forum" -msgstr "プライベートフォーラム" - -#: src/Module/Admin/BaseUsers.php:110 -msgid "Relay" -msgstr "中継" - -#: src/Module/Admin/Blocklist/Contact.php:57 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s はコンタクトのブロックを解除しました" - -#: src/Module/Admin/Blocklist/Contact.php:79 -msgid "Remote Contact Blocklist" -msgstr "リモートコンタクトブロックリスト" - -#: 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 "このページを使用すると、リモートコンタクトからのメッセージがあなたのノードに届かないようにできます。" - -#: src/Module/Admin/Blocklist/Contact.php:81 -msgid "Block Remote Contact" -msgstr "リモートコンタクトをブロック" - -#: 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 "すべて選択" - -#: src/Module/Admin/Blocklist/Contact.php:83 -msgid "select none" -msgstr "どれも選択しない" - -#: 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 "ブロック解除" - -#: src/Module/Admin/Blocklist/Contact.php:86 -msgid "No remote contact is blocked from this node." -msgstr "このノードからのリモートコンタクトはブロックされていません。" - -#: src/Module/Admin/Blocklist/Contact.php:88 -msgid "Blocked Remote Contacts" -msgstr "ブロックされたリモートコンタクト" - -#: src/Module/Admin/Blocklist/Contact.php:89 -msgid "Block New Remote Contact" -msgstr "新しいリモートコンタクトをブロック" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Photo" -msgstr "写真" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Reason" -msgstr "理由" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "%s 件のブロック済みコンタクト" - -#: src/Module/Admin/Blocklist/Contact.php:100 -msgid "URL of the remote contact to block." -msgstr "ブロックするリモートコンタクトのURL。" - -#: src/Module/Admin/Blocklist/Contact.php:101 -msgid "Block Reason" -msgstr "ブロックの理由" - -#: src/Module/Admin/Blocklist/Server.php:49 -msgid "Server domain pattern added to blocklist." -msgstr "ブロックリストに追加されたサーバードメインパターン。" - -#: src/Module/Admin/Blocklist/Server.php:79 -#: src/Module/Admin/Blocklist/Server.php:104 -msgid "Blocked server domain pattern" -msgstr "ブロックされたサーバードメインパターン" - -#: 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 "ブロックの理由" - -#: src/Module/Admin/Blocklist/Server.php:81 -msgid "Delete server domain pattern" -msgstr "サーバードメインパターンの削除" - -#: src/Module/Admin/Blocklist/Server.php:81 -msgid "Check to delete this entry from the blocklist" -msgstr "ブロックリストからこのエントリを削除する場合にチェックします" - -#: src/Module/Admin/Blocklist/Server.php:89 -msgid "Server Domain Pattern Blocklist" -msgstr "サーバードメインパターンブロックリスト" - -#: 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 "" - -#: 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 "ブロックされたサーバードメインパターンのリストは、 /friendica ページで公開され、ユーザーやコミュニケーションの問題を調査している人々が理由を簡単に見つけることができます。" - -#: 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 "

    サーバードメインパターンの構文は、大文字と小文字を区別しないシェルワイルドカードであり、次の特殊文字で構成されています。

    \n
      \n\t
    • *:任意の数の文字
    • \n\t
    • ?:任意の1文字
    • \n\t
    • [<char1><char2>...]:char1またはchar2
    • \n
    " - -#: src/Module/Admin/Blocklist/Server.php:98 -msgid "Add new entry to block list" -msgstr "ブロックリストに新しいエントリを追加する" - -#: src/Module/Admin/Blocklist/Server.php:99 -msgid "Server Domain Pattern" -msgstr "サーバードメインパターン" - -#: 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 "ブロックリストに追加する新しいサーバーのドメインパターン。プロトコルを含めないでください。" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "Block reason" -msgstr "ブロック理由" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "The reason why you blocked this server domain pattern." -msgstr "このサーバードメインパターンをブロックした理由。" - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "Add Entry" -msgstr "エントリーを追加" - -#: src/Module/Admin/Blocklist/Server.php:102 -msgid "Save changes to the blocklist" -msgstr "変更をブロックリストに保存する" - -#: src/Module/Admin/Blocklist/Server.php:103 -msgid "Current Entries in the Blocklist" -msgstr "ブロックリストの現在のエントリ" - -#: src/Module/Admin/Blocklist/Server.php:106 -msgid "Delete entry from blocklist" -msgstr "ブロックリストからエントリを削除" - -#: src/Module/Admin/Blocklist/Server.php:109 -msgid "Delete entry from blocklist?" -msgstr "ブロックリストからエントリを削除しますか?" - #: src/Module/Admin/DBSync.php:51 msgid "Update has been marked successful" msgstr "更新は正常にマークされました" @@ -5514,28 +3949,28 @@ msgstr "更新 %s はステータスを返しませんでした。成功した msgid "There was no additional update function %s that needed to be called." msgstr "呼び出される必要のある機能 %s について追加の更新はありませんでした。" -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:105 msgid "No failed updates." msgstr "失敗した更新はありません。" -#: src/Module/Admin/DBSync.php:107 +#: src/Module/Admin/DBSync.php:106 msgid "Check database structure" msgstr "データベース構造を確認する" -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:110 msgid "Failed Updates" msgstr "失敗した更新" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:111 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "これには、ステータスを返さなかった1139より前の更新は含まれません。" -#: src/Module/Admin/DBSync.php:114 +#: src/Module/Admin/DBSync.php:112 msgid "Mark success (if update was manually applied)" msgstr "成功をマークする(更新が手動で適用された場合)" -#: src/Module/Admin/DBSync.php:115 +#: src/Module/Admin/DBSync.php:113 msgid "Attempt to execute this update step automatically" msgstr "この更新手順を自動的に実行しようとします" @@ -5544,164 +3979,137 @@ msgstr "この更新手順を自動的に実行しようとします" msgid "Lock feature %s" msgstr "機能 %s をロック" -#: src/Module/Admin/Features.php:85 +#: src/Module/Admin/Features.php:84 msgid "Manage Additional Features" msgstr "追加機能を管理する" -#: src/Module/Admin/Federation.php:56 +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 msgid "Other" msgstr "その他" -#: src/Module/Admin/Federation.php:118 src/Module/Admin/Federation.php:348 +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 msgid "unknown" msgstr "未知の" -#: src/Module/Admin/Federation.php:154 +#: src/Module/Admin/Federation.php:187 +#, php-format +msgid "%2$s total system" +msgid_plural "%2$s total systems" +msgstr[0] "" + +#: src/Module/Admin/Federation.php:188 +#, php-format +msgid "%2$s active user last month" +msgid_plural "%2$s active users last month" +msgstr[0] "" + +#: src/Module/Admin/Federation.php:189 +#, php-format +msgid "%2$s active user last six months" +msgid_plural "%2$s active users last six months" +msgstr[0] "" + +#: src/Module/Admin/Federation.php:190 +#, php-format +msgid "%2$s registered user" +msgid_plural "%2$s registered users" +msgstr[0] "" + +#: src/Module/Admin/Federation.php:191 +#, php-format +msgid "%2$s locally created post or comment" +msgid_plural "%2$s locally created posts and comments" +msgstr[0] "" + +#: src/Module/Admin/Federation.php:194 +#, php-format +msgid "%2$s post per user" +msgid_plural "%2$s posts per user" +msgstr[0] "" + +#: src/Module/Admin/Federation.php:199 +#, php-format +msgid "%2$s user per system" +msgid_plural "%2$s users per system" +msgstr[0] "" + +#: src/Module/Admin/Federation.php:209 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:160 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "フェデレーション統計" -#: src/Module/Admin/Federation.php:164 +#: src/Module/Admin/Federation.php:219 #, php-format msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " +"Currently this node is aware of %2$s node (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " "following platforms:" -msgstr "現在、このノードは %d ノードと、以下のプラットフォームからの登録ユーザー %d 人を認識しています:" +msgid_plural "" +"Currently this node is aware of %2$s nodes (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgstr[0] "" -#: src/Module/Admin/Item/Delete.php:54 -msgid "Item marked for deletion." -msgstr "削除対象としてマークされた項目。" - -#: src/Module/Admin/Item/Delete.php:66 src/Module/BaseAdmin.php:105 -msgid "Delete Item" -msgstr "項目を削除" - -#: src/Module/Admin/Item/Delete.php:67 -msgid "Delete this Item" -msgstr "この項目を削除" - -#: 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 "このページでは、ノードから項目を削除できます。項目がトップレベルの投稿である場合、スレッド全体が削除されます。" - -#: 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 "項目のGUIDを知る必要があります。たとえば、表示URLを調べることで見つけることができます。たとえば http://example.com/display/123456 の最後の部分がGUIDであり、ここでは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 "削除する項目のGUID。" - -#: src/Module/Admin/Item/Source.php:57 src/Module/BaseAdmin.php:115 -msgid "Item Source" -msgstr "項目ソース" - -#: src/Module/Admin/Item/Source.php:58 -msgid "Item Guid" -msgstr "項目GUID" - -#: src/Module/Admin/Item/Source.php:63 -msgid "Item Id" -msgstr "" - -#: src/Module/Admin/Item/Source.php:64 -msgid "Item URI" -msgstr "" - -#: src/Module/Admin/Item/Source.php:66 -msgid "Terms" -msgstr "" - -#: src/Module/Admin/Item/Source.php:67 -msgid "Tag" -msgstr "" - -#: 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 "タイプ" - -#: src/Module/Admin/Item/Source.php:69 -msgid "Term" -msgstr "" - -#: src/Module/Admin/Item/Source.php:70 -msgid "URL" -msgstr "" - -#: src/Module/Admin/Item/Source.php:71 -msgid "Mention" -msgstr "" - -#: src/Module/Admin/Item/Source.php:72 -msgid "Implicit Mention" -msgstr "" - -#: src/Module/Admin/Item/Source.php:73 -#: src/Module/Debug/ActivityPubConversion.php:62 -msgid "Source" -msgstr "" - -#: src/Module/Admin/Logs/Settings.php:48 +#: src/Module/Admin/Logs/Settings.php:47 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "ログファイル ' %s ' は書き込みできません。ログ機能が使用できません。" -#: src/Module/Admin/Logs/Settings.php:72 +#: src/Module/Admin/Logs/Settings.php:77 msgid "PHP log currently enabled." msgstr "現在有効なPHPログ。" -#: src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/Settings.php:79 msgid "PHP log currently disabled." msgstr "PHPログは現在無効になっています。" -#: src/Module/Admin/Logs/Settings.php:81 src/Module/BaseAdmin.php:107 -#: src/Module/BaseAdmin.php:108 +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 msgid "Logs" msgstr "ログ" -#: src/Module/Admin/Logs/Settings.php:83 +#: src/Module/Admin/Logs/Settings.php:88 msgid "Clear" msgstr "クリア" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:91 msgid "Enable Debugging" msgstr "デバッグを有効にする" -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:92 msgid "Log file" msgstr "ログファイル" -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:92 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Webサーバーから書き込み可能である必要があります。 Friendicaの最上位ディレクトリからの相対パス。" -#: src/Module/Admin/Logs/Settings.php:89 +#: src/Module/Admin/Logs/Settings.php:93 msgid "Log level" msgstr "ログレベル" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:95 msgid "PHP logging" msgstr "PHPロギング" -#: src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:96 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 " @@ -5710,24 +4118,94 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "PHPのエラーと警告のログを一時的に有効にするには、インストールのindex.phpファイルに次を追加します。 「error_log」行に設定されたファイル名は、Friendicaの最上位ディレクトリに関連しており、Webサーバーが書き込み可能である必要があります。 「log_errors」および「display_errors」のオプション「1」はこれらのオプションを有効にすることであり、「0」に設定すると無効になります。" -#: src/Module/Admin/Logs/View.php:40 +#: src/Module/Admin/Logs/View.php:70 #, 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 "ログファイル %1$s を開こうとしてエラーが発生しました。
    \nファイル%1$sが存在し、読み取り可能かどうかを確認してください。" +"Error trying to open %1$s log file.
    Check to see if " +"file %1$s exist and is readable." +msgstr "" -#: src/Module/Admin/Logs/View.php:44 +#: src/Module/Admin/Logs/View.php:79 #, php-format msgid "" -"Couldn't open %1$s log file.\\r\\n
    Check to see if file" -" %1$s is readable." -msgstr "ログファイル %1$s を開けませんでした。
    \nファイル %1$s が読み取り可能かどうかを確認してください。" +"Couldn't open %1$s log file.
    Check to see if file %1$s " +"is readable." +msgstr "" -#: src/Module/Admin/Logs/View.php:65 src/Module/BaseAdmin.php:109 +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 msgid "View Logs" msgstr "ログを見る" +#: src/Module/Admin/Logs/View.php:87 +msgid "Search in logs" +msgstr "" + +#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Notifications/Notifications.php:140 +msgid "Show all" +msgstr "すべて表示する" + +#: src/Module/Admin/Logs/View.php:89 +msgid "Date" +msgstr "" + +#: src/Module/Admin/Logs/View.php:90 +msgid "Level" +msgstr "" + +#: src/Module/Admin/Logs/View.php:91 +msgid "Context" +msgstr "" + +#: src/Module/Admin/Logs/View.php:93 +msgid "ALL" +msgstr "" + +#: src/Module/Admin/Logs/View.php:94 +msgid "View details" +msgstr "" + +#: src/Module/Admin/Logs/View.php:95 +msgid "Click to view details" +msgstr "" + +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "イベントの詳細" + +#: src/Module/Admin/Logs/View.php:97 +msgid "Data" +msgstr "" + +#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Debug/ActivityPubConversion.php:57 +msgid "Source" +msgstr "" + +#: src/Module/Admin/Logs/View.php:99 +msgid "File" +msgstr "" + +#: src/Module/Admin/Logs/View.php:100 +msgid "Line" +msgstr "" + +#: src/Module/Admin/Logs/View.php:101 +msgid "Function" +msgstr "" + +#: src/Module/Admin/Logs/View.php:102 +msgid "UID" +msgstr "" + +#: src/Module/Admin/Logs/View.php:103 +msgid "Process ID" +msgstr "" + +#: src/Module/Admin/Logs/View.php:104 +msgid "Close" +msgstr "" + #: src/Module/Admin/Queue.php:50 msgid "Inspect Deferred Worker Queue" msgstr "遅延ワーカーキューの詳細を見る" @@ -5760,486 +4238,472 @@ msgstr "" msgid "Job Parameters" msgstr "ジョブパラメータ" +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "作成した" + #: src/Module/Admin/Queue.php:79 msgid "Priority" msgstr "優先度" -#: src/Module/Admin/Site.php:70 -msgid "Can not parse base url. Must have at least ://" -msgstr "ベースURLを解析できません。少なくとも://が必要です" - -#: src/Module/Admin/Site.php:124 -msgid "Relocation started. Could take a while to complete." +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:248 -msgid "Invalid storage backend setting value." -msgstr "無効なストレージバックエンド設定値です。" - -#: src/Module/Admin/Site.php:446 src/Module/Settings/Display.php:134 +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:178 msgid "No special theme for mobile devices" msgstr "モバイルデバイス向けの特別なテーマはありません" -#: src/Module/Admin/Site.php:463 src/Module/Settings/Display.php:144 +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188 #, php-format msgid "%s - (Experimental)" msgstr "%s (実験的)" -#: src/Module/Admin/Site.php:475 -msgid "No community page for local users" -msgstr "ローカルユーザー向けのコミュニティページはありません" - -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:342 msgid "No community page" msgstr "コミュニティページなし" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:343 +msgid "No community page for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:344 msgid "Public postings from users of this site" msgstr "このサイトのユーザーからの一般公開投稿" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:345 msgid "Public postings from the federated network" msgstr "フェデレーションネットワークからの一般公開投稿" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:346 msgid "Public postings from local users and the federated network" msgstr "ローカルユーザーとフェデレーションネットワークからの一般公開投稿" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:352 msgid "Multi user instance" msgstr "マルチユーザーインスタンス" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:375 msgid "Closed" msgstr "閉まっている" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:376 msgid "Requires approval" msgstr "承認が必要" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:377 msgid "Open" msgstr "開いた" -#: 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:520 src/Module/Install.php:216 -msgid "Force all links to use SSL" -msgstr "すべてのリンクに強制的にSSLを使用させる" - -#: 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:525 +#: src/Module/Admin/Site.php:381 msgid "Don't check" msgstr "チェックしない" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:382 msgid "check the stable version" msgstr "安定版を確認してください" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:383 msgid "check the development version" msgstr "開発バージョンを確認する" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:387 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:388 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:389 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:546 -msgid "Database (legacy)" -msgstr "データベース(レガシー)" - -#: src/Module/Admin/Site.php:577 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "サイト" -#: src/Module/Admin/Site.php:578 +#: src/Module/Admin/Site.php:400 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:402 msgid "Republish users to directory" msgstr "ユーザーをディレクトリに再公開する" -#: src/Module/Admin/Site.php:581 src/Module/Register.php:139 +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 msgid "Registration" msgstr "登録" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:404 msgid "File upload" msgstr "ファイルのアップロード" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:405 msgid "Policies" msgstr "ポリシー" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "詳細" + +#: src/Module/Admin/Site.php:407 msgid "Auto Discovered Contact Directory" msgstr "自動検出されたコンタクトディレクトリ" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:408 msgid "Performance" msgstr "性能" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:409 msgid "Worker" msgstr "ワーカー" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:410 msgid "Message Relay" msgstr "メッセージ中継" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:411 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:412 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:413 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." +#: src/Module/Admin/Site.php:415 +msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:416 +msgid "" +"Relocating your node enables you to change the DNS domain of this node and " +"keep all the existing users and posts. This process takes a while and can " +"only be started from the relocate console command like this:" +msgstr "" + +#: src/Module/Admin/Site.php:417 +msgid "(Friendica directory)# bin/console relocate https://newdomain.com" +msgstr "" + +#: src/Module/Admin/Site.php:420 msgid "Site name" msgstr "サイト名" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:421 msgid "Sender Email" msgstr "送信者のメール" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:421 msgid "" "The email address your server shall use to send notification emails from." msgstr "サーバーが通知メールの送信に使用するメールアドレス。" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:422 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:422 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:601 +#: src/Module/Admin/Site.php:423 msgid "Banner/Logo" msgstr "バナー/ロゴ" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:424 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:425 msgid "Shortcut icon" msgstr "ショートカットアイコン" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:425 msgid "Link to an icon that will be used for browsers." msgstr "ブラウザーに使用されるアイコンへのリンク。" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:426 msgid "Touch icon" msgstr "タッチアイコン" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:426 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "タブレットやモバイルで使用されるアイコンへのリンク。" -#: src/Module/Admin/Site.php:605 +#: src/Module/Admin/Site.php:427 msgid "Additional Info" msgstr "追加情報" -#: src/Module/Admin/Site.php:605 +#: src/Module/Admin/Site.php:427 #, 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:606 +#: src/Module/Admin/Site.php:428 msgid "System language" msgstr "システム言語" -#: src/Module/Admin/Site.php:607 +#: src/Module/Admin/Site.php:429 msgid "System theme" msgstr "システムテーマ" -#: src/Module/Admin/Site.php:607 +#: src/Module/Admin/Site.php:429 +#, php-format msgid "" -"Default system theme - may be over-ridden by user profiles - Change default theme settings" -msgstr "既定のシステムテーマ - ユーザープロフィールによって上書きされる場合があります -既定のテーマ設定を変更します" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "" -#: src/Module/Admin/Site.php:608 +#: src/Module/Admin/Site.php:430 msgid "Mobile system theme" msgstr "モバイルシステムのテーマ" -#: src/Module/Admin/Site.php:608 +#: src/Module/Admin/Site.php:430 msgid "Theme for mobile devices" msgstr "モバイルデバイスのテーマ" -#: src/Module/Admin/Site.php:609 src/Module/Install.php:225 -msgid "SSL link policy" -msgstr "SSLリンクポリシー" - -#: 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:610 +#: src/Module/Admin/Site.php:431 msgid "Force SSL" msgstr "SSLを強制する" -#: src/Module/Admin/Site.php:610 +#: src/Module/Admin/Site.php:431 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:611 -msgid "Hide help entry from navigation menu" -msgstr "ナビゲーションメニューからヘルプエントリを非表示にする" +#: src/Module/Admin/Site.php:432 +msgid "Show help entry from navigation menu" +msgstr "" -#: src/Module/Admin/Site.php:611 +#: src/Module/Admin/Site.php:432 msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "ナビゲーションメニューからヘルプページのメニューエントリを非表示にします。 / helpを直接呼び出してアクセスできます。" +"Displays the menu entry for the Help pages from the navigation menu. It is " +"always accessible by calling /help directly." +msgstr "" -#: src/Module/Admin/Site.php:612 +#: src/Module/Admin/Site.php:433 msgid "Single user instance" msgstr "シングルユーザーインスタンス" -#: src/Module/Admin/Site.php:612 +#: src/Module/Admin/Site.php:433 msgid "Make this instance multi-user or single-user for the named user" msgstr "指定されたユーザーに対してこのインスタンスをマルチユーザーまたはシングルユーザーにします" -#: src/Module/Admin/Site.php:614 -msgid "File storage backend" -msgstr "ファイルストレージバックエンド" - -#: 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 "アップロードされたデータを保存するために使用されるバックエンド。ストレージバックエンドを変更する場合、既存のファイルを手動で移動できます。変更しない場合、変更前にアップロードされたファイルは古いバックエンドで引き続き利用できます。選択肢と移動手順の詳細については、設定ドキュメントをご覧ください。" - -#: src/Module/Admin/Site.php:616 +#: src/Module/Admin/Site.php:435 msgid "Maximum image size" msgstr "最大画像サイズ" -#: src/Module/Admin/Site.php:616 +#: src/Module/Admin/Site.php:435 +#, php-format msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "アップロードされる画像の最大サイズ(バイト単位)。デフォルトは0で、制限がないことを意味します。" +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "" -#: src/Module/Admin/Site.php:617 +#: src/Module/Admin/Site.php:439 msgid "Maximum image length" msgstr "最大画像長" -#: src/Module/Admin/Site.php:617 +#: src/Module/Admin/Site.php:439 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:618 +#: src/Module/Admin/Site.php:440 msgid "JPEG image quality" msgstr "JPEG画像品質" -#: src/Module/Admin/Site.php:618 +#: src/Module/Admin/Site.php:440 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:620 +#: src/Module/Admin/Site.php:442 msgid "Register policy" msgstr "登録ポリシー" -#: src/Module/Admin/Site.php:621 +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "" + +#: src/Module/Admin/Site.php:444 msgid "Maximum Daily Registrations" msgstr "毎日の最大登録数" -#: src/Module/Admin/Site.php:621 +#: src/Module/Admin/Site.php:444 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:622 +#: src/Module/Admin/Site.php:445 msgid "Register text" msgstr "登録テキスト" -#: src/Module/Admin/Site.php:622 +#: src/Module/Admin/Site.php:445 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "登録ページに目立つように表示されます。ここでBBCodeを使用できます。" -#: src/Module/Admin/Site.php:623 +#: src/Module/Admin/Site.php:446 msgid "Forbidden Nicknames" msgstr "禁止されたニックネーム" -#: src/Module/Admin/Site.php:623 +#: src/Module/Admin/Site.php:446 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:624 +#: src/Module/Admin/Site.php:447 msgid "Accounts abandoned after x days" msgstr "x日の間 放置されたアカウント" -#: src/Module/Admin/Site.php:624 +#: src/Module/Admin/Site.php:447 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:625 +#: src/Module/Admin/Site.php:448 msgid "Allowed friend domains" msgstr "許可された友達ドメイン" -#: src/Module/Admin/Site.php:625 +#: src/Module/Admin/Site.php:448 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:626 +#: src/Module/Admin/Site.php:449 msgid "Allowed email domains" msgstr "許可されたメールドメイン" -#: src/Module/Admin/Site.php:626 +#: src/Module/Admin/Site.php:449 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:627 +#: src/Module/Admin/Site.php:450 msgid "No OEmbed rich content" msgstr "OEmbed リッチコンテンツなし" -#: src/Module/Admin/Site.php:627 +#: src/Module/Admin/Site.php:450 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "以下にリストされているドメインを除き、リッチコンテンツ(埋め込みPDFなど)を表示しないでください。" -#: src/Module/Admin/Site.php:628 +#: src/Module/Admin/Site.php:451 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:628 +#: src/Module/Admin/Site.php:451 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:629 +#: src/Module/Admin/Site.php:452 msgid "Block public" msgstr "一般公開をブロック" -#: src/Module/Admin/Site.php:629 +#: src/Module/Admin/Site.php:452 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:630 +#: src/Module/Admin/Site.php:453 msgid "Force publish" msgstr "公開を強制する" -#: src/Module/Admin/Site.php:630 +#: src/Module/Admin/Site.php:453 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "このサイトのすべてのプロフィールがサイトディレクトリにリストされるように強制するには、チェックします。" -#: src/Module/Admin/Site.php:630 +#: src/Module/Admin/Site.php:453 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "これを有効にすると、GDPRなどのプライバシー法に違反する可能性があります。" -#: src/Module/Admin/Site.php:631 +#: src/Module/Admin/Site.php:454 msgid "Global directory URL" msgstr "グローバルディレクトリURL" -#: src/Module/Admin/Site.php:631 +#: src/Module/Admin/Site.php:454 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:632 +#: src/Module/Admin/Site.php:455 msgid "Private posts by default for new users" msgstr "新規ユーザー向けの 既定のプライベート投稿" -#: src/Module/Admin/Site.php:632 +#: src/Module/Admin/Site.php:455 msgid "" "Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "すべての新しいメンバーの既定の投稿許可を、一般公開ではなく既定のプライバシーグループに設定します。" +"circle rather than public." +msgstr "" -#: src/Module/Admin/Site.php:633 +#: src/Module/Admin/Site.php:456 msgid "Don't include post content in email notifications" msgstr "メール通知に投稿本文を含めないでください" -#: src/Module/Admin/Site.php:633 +#: src/Module/Admin/Site.php:456 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:634 +#: src/Module/Admin/Site.php:457 msgid "Disallow public access to addons listed in the apps menu." msgstr "アプリメニューにリストされているアドオンへの公開アクセスを許可しません。" -#: src/Module/Admin/Site.php:634 +#: src/Module/Admin/Site.php:457 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "このチェックボックスをオンにすると、アプリメニューにリストされているアドオンがメンバーのみに制限されます。" -#: src/Module/Admin/Site.php:635 +#: src/Module/Admin/Site.php:458 msgid "Don't embed private images in posts" msgstr "投稿にプライベート画像を埋め込まないでください" -#: src/Module/Admin/Site.php:635 +#: src/Module/Admin/Site.php:458 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 " @@ -6247,11 +4711,11 @@ msgid "" "while." msgstr "投稿内のローカルでホストされているプライベート写真を画像の埋め込みコピーで置き換えないでください。つまり、プライベート写真を含む投稿を受け取ったコンタクトは、各画像を認証して読み込む必要があり、時間がかかる場合があります。" -#: src/Module/Admin/Site.php:636 +#: src/Module/Admin/Site.php:459 msgid "Explicit Content" msgstr "明示的なコンテンツ" -#: src/Module/Admin/Site.php:636 +#: src/Module/Admin/Site.php:459 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 " @@ -6260,234 +4724,267 @@ msgid "" "will be shown at the user registration page." msgstr "これを設定して、このノードが主に未成年者には適さない可能性のある露骨なコンテンツを目的とすることを通知します。この情報はノード情報で公開され、たとえばグローバルディレクトリによって使用され、参加するノードのリストからノードをフィルタリングします。さらに、これに関するメモがユーザー登録ページに表示されます。" -#: src/Module/Admin/Site.php:637 +#: src/Module/Admin/Site.php:460 +msgid "Proxify external content" +msgstr "" + +#: src/Module/Admin/Site.php:460 +msgid "" +"Route external content via the proxy functionality. This is used for example" +" for some OEmbed accesses and in some other rare cases." +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "Cache contact avatars" +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "" +"Locally store the avatar pictures of the contacts. This uses a lot of " +"storage space but it increases the performance." +msgstr "" + +#: src/Module/Admin/Site.php:462 msgid "Allow Users to set remote_self" msgstr "ユーザーがremote_selfを設定できるようにする" -#: src/Module/Admin/Site.php:637 +#: src/Module/Admin/Site.php:462 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:638 -msgid "Block multiple registrations" -msgstr "複数の登録をブロックする" +#: src/Module/Admin/Site.php:463 +msgid "Enable multiple registrations" +msgstr "" -#: src/Module/Admin/Site.php:638 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "ユーザーがページとして使用する追加のアカウントを登録できないようにします。" +#: src/Module/Admin/Site.php:463 +msgid "Enable users to register additional accounts for use as pages." +msgstr "" -#: src/Module/Admin/Site.php:639 -msgid "Disable OpenID" -msgstr "OpenIDを無効にする" +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID" +msgstr "" -#: src/Module/Admin/Site.php:639 -msgid "Disable OpenID support for registration and logins." -msgstr "登録とログインのOpenIDサポートを無効にします。" +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID support for registration and logins." +msgstr "" -#: src/Module/Admin/Site.php:640 -msgid "No Fullname check" -msgstr "氏名チェックなし" +#: src/Module/Admin/Site.php:465 +msgid "Enable Fullname check" +msgstr "" -#: src/Module/Admin/Site.php:640 +#: src/Module/Admin/Site.php:465 msgid "" -"Allow users to register without a space between the first name and the last " -"name in their full name." -msgstr "ユーザーがフルネームの名と姓の間にスペースを入れずに登録できるようにします。" +"Enable check to only allow users to register with a space between the first " +"name and the last name in their full name." +msgstr "" -#: src/Module/Admin/Site.php:641 +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "" + +#: src/Module/Admin/Site.php:467 msgid "Community pages for visitors" msgstr "訪問者向けのコミュニティページ" -#: src/Module/Admin/Site.php:641 +#: src/Module/Admin/Site.php:467 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "訪問者が利用できるコミュニティページ。ローカルユーザーには常に両方のページが表示されます。" -#: src/Module/Admin/Site.php:642 +#: src/Module/Admin/Site.php:468 msgid "Posts per user on community page" msgstr "コミュニティページのユーザーごとの投稿" -#: src/Module/Admin/Site.php:642 +#: src/Module/Admin/Site.php:468 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "\"Global Community\")" msgstr "コミュニティページのユーザーごとの投稿の最大数。 (「グローバルコミュニティ」には無効)" -#: src/Module/Admin/Site.php:643 -msgid "Disable OStatus support" -msgstr "OStatusサポートを無効にする" +#: src/Module/Admin/Site.php:470 +msgid "Enable Mail support" +msgstr "" -#: src/Module/Admin/Site.php:643 +#: src/Module/Admin/Site.php:470 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の通信はすべて公開されているため、プライバシーに関する警告がときどき表示されます。" +"Enable built-in mail support to poll IMAP folders and to reply via mail." +msgstr "" -#: src/Module/Admin/Site.php:644 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "OStatusサポートは、スレッドが有効な場合にのみ有効にできます。" +#: src/Module/Admin/Site.php:471 +msgid "" +"Mail support can't be enabled because the PHP IMAP module is not installed." +msgstr "" -#: src/Module/Admin/Site.php:646 +#: src/Module/Admin/Site.php:472 +msgid "Enable OStatus support" +msgstr "" + +#: src/Module/Admin/Site.php:472 +msgid "" +"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public." +msgstr "" + +#: src/Module/Admin/Site.php:474 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Friendicaがサブディレクトリにインストールされたため、Diasporaサポートを有効にできません。" -#: src/Module/Admin/Site.php:647 +#: src/Module/Admin/Site.php:475 msgid "Enable Diaspora support" msgstr "Diasporaサポートを有効にする" -#: src/Module/Admin/Site.php:647 -msgid "Provide built-in Diaspora network compatibility." -msgstr "組み込みのDiasporaネットワーク互換機能を提供します。" - -#: src/Module/Admin/Site.php:648 -msgid "Only allow Friendica contacts" -msgstr "Friendicaコンタクトのみを許可する" - -#: src/Module/Admin/Site.php:648 +#: src/Module/Admin/Site.php:475 msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "すべてのコンタクトはFriendicaプロトコルを使用する必要があります。他のすべての組み込み通信プロトコルは無効です。" +"Enable built-in Diaspora network compatibility for communicating with " +"diaspora servers." +msgstr "" -#: src/Module/Admin/Site.php:649 +#: src/Module/Admin/Site.php:476 msgid "Verify SSL" msgstr "SSLを検証する" -#: src/Module/Admin/Site.php:649 +#: src/Module/Admin/Site.php:476 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:650 +#: src/Module/Admin/Site.php:477 msgid "Proxy user" msgstr "プロキシユーザー" -#: src/Module/Admin/Site.php:651 +#: src/Module/Admin/Site.php:477 +msgid "User name for the proxy server." +msgstr "" + +#: src/Module/Admin/Site.php:478 msgid "Proxy URL" msgstr "プロキシURL" -#: src/Module/Admin/Site.php:652 +#: src/Module/Admin/Site.php:478 +msgid "" +"If you want to use a proxy server that Friendica should use to connect to " +"the network, put the URL of the proxy here." +msgstr "" + +#: src/Module/Admin/Site.php:479 msgid "Network timeout" msgstr "ネットワークタイムアウト" -#: src/Module/Admin/Site.php:652 +#: src/Module/Admin/Site.php:479 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "値は秒単位です。無制限の場合は0に設定します(推奨されません)。" -#: src/Module/Admin/Site.php:653 +#: src/Module/Admin/Site.php:480 msgid "Maximum Load Average" msgstr "最大負荷平均" -#: src/Module/Admin/Site.php:653 +#: src/Module/Admin/Site.php:480 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "このシステム 負荷/Load を超えると、配信・ポーリングプロセスの実行は延期されます。 - 既定の値は%dです。" -#: src/Module/Admin/Site.php:654 -msgid "Maximum Load Average (Frontend)" -msgstr "最大負荷平均(フロントエンド)" - -#: src/Module/Admin/Site.php:654 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "フロントエンドがサービスを終了する前の最大システム負荷-デフォルト50" - -#: src/Module/Admin/Site.php:655 +#: src/Module/Admin/Site.php:481 msgid "Minimal Memory" msgstr "最小限のメモリ" -#: src/Module/Admin/Site.php:655 +#: src/Module/Admin/Site.php:481 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:656 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:656 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:658 +#: src/Module/Admin/Site.php:484 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:658 +#: src/Module/Admin/Site.php:484 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:659 +#: src/Module/Admin/Site.php:485 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:660 +#: src/Module/Admin/Site.php:486 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:661 +#: src/Module/Admin/Site.php:487 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:663 +#: src/Module/Admin/Site.php:489 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:663 +#: src/Module/Admin/Site.php:489 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:665 +#: src/Module/Admin/Site.php:491 msgid "Days between requery" msgstr "再クエリの間隔" -#: src/Module/Admin/Site.php:665 +#: src/Module/Admin/Site.php:491 msgid "Number of days after which a server is requeried for his contacts." msgstr "コンタクトについてサーバーが再照会されるまでの日数。" -#: src/Module/Admin/Site.php:666 +#: src/Module/Admin/Site.php:492 msgid "Discover contacts from other servers" msgstr "他のサーバーからコンタクトを発見する" -#: src/Module/Admin/Site.php:666 +#: src/Module/Admin/Site.php:492 msgid "" "Periodically query other servers for contacts. The system queries Friendica," " Mastodon and Hubzilla servers." msgstr "" -#: src/Module/Admin/Site.php:667 +#: src/Module/Admin/Site.php:493 msgid "Search the local directory" msgstr "ローカルディレクトリを検索する" -#: src/Module/Admin/Site.php:667 +#: src/Module/Admin/Site.php:493 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:669 +#: src/Module/Admin/Site.php:495 msgid "Publish server information" msgstr "サーバー情報を公開する" -#: src/Module/Admin/Site.php:669 +#: src/Module/Admin/Site.php:495 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 " @@ -6495,50 +4992,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "有効にすると、一般的なサーバーと使用状況データが公開されます。データには、サーバーの名前とバージョン、パブリックプロフィールを持つユーザーの数、投稿の数、およびアクティブ化されたプロトコルとコネクタが含まれます。詳細については、 the-federation.info をご覧ください。" -#: src/Module/Admin/Site.php:671 +#: src/Module/Admin/Site.php:497 msgid "Check upstream version" msgstr "アップストリームバージョンを確認する" -#: src/Module/Admin/Site.php:671 +#: src/Module/Admin/Site.php:497 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:672 +#: src/Module/Admin/Site.php:498 msgid "Suppress Tags" msgstr "タグを非表示" -#: src/Module/Admin/Site.php:672 +#: src/Module/Admin/Site.php:498 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "投稿の最後にハッシュタグのリストを表示しないようにします。" -#: src/Module/Admin/Site.php:673 +#: src/Module/Admin/Site.php:499 msgid "Clean database" msgstr "データベースを消去" -#: src/Module/Admin/Site.php:673 +#: src/Module/Admin/Site.php:499 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "古いリモート項目、孤立したデータベースレコード、および古いコンテンツを他のヘルパーテーブルから削除します。" -#: src/Module/Admin/Site.php:674 +#: src/Module/Admin/Site.php:500 msgid "Lifespan of remote items" msgstr "リモート項目の寿命" -#: src/Module/Admin/Site.php:674 +#: src/Module/Admin/Site.php:500 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:675 +#: src/Module/Admin/Site.php:501 msgid "Lifespan of unclaimed items" msgstr "請求されていない項目の寿命" -#: src/Module/Admin/Site.php:675 +#: src/Module/Admin/Site.php:501 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -6546,193 +5043,205 @@ msgid "" "items if set to 0." msgstr "データベースのクリーンアップが有効になっている場合、これは、要求されていないリモート項目(主に中継からのコンテンツ)が削除されるまでの日数を定義します。デフォルト値は90日です。 0に設定されている場合、リモート項目の一般的なライフスパン値がデフォルトになります。" -#: src/Module/Admin/Site.php:676 +#: src/Module/Admin/Site.php:502 msgid "Lifespan of raw conversation data" msgstr "Raw会話データの寿命" -#: src/Module/Admin/Site.php:676 +#: src/Module/Admin/Site.php:502 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:677 -msgid "Path to item cache" -msgstr "項目キャッシュへのパス" - -#: src/Module/Admin/Site.php:677 -msgid "The item caches buffers generated bbcode and external images." -msgstr "項目は、生成されたbbcodeと外部画像のバッファーをキャッシュします。" - -#: src/Module/Admin/Site.php:678 -msgid "Cache duration in seconds" -msgstr "秒単位のキャッシュ期間" - -#: 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:679 +#: src/Module/Admin/Site.php:503 msgid "Maximum numbers of comments per post" msgstr "投稿あたりのコメントの最大数" -#: src/Module/Admin/Site.php:679 +#: src/Module/Admin/Site.php:503 msgid "How much comments should be shown for each post? Default value is 100." msgstr "各投稿に表示されるコメントの数は?デフォルト値は100です。" -#: src/Module/Admin/Site.php:680 +#: src/Module/Admin/Site.php:504 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:680 +#: src/Module/Admin/Site.php:504 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:681 +#: src/Module/Admin/Site.php:505 msgid "Temp path" msgstr "一時パス" -#: src/Module/Admin/Site.php:681 +#: src/Module/Admin/Site.php:505 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:682 -msgid "Disable picture proxy" -msgstr "画像プロキシを無効にする" - -#: 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:683 +#: src/Module/Admin/Site.php:506 msgid "Only search in tags" msgstr "タグでのみ検索" -#: src/Module/Admin/Site.php:683 +#: src/Module/Admin/Site.php:506 msgid "On large systems the text search can slow down the system extremely." msgstr "大規模なシステムでは、テキスト検索によりシステムの速度が著しく低下する可能性があります。" -#: src/Module/Admin/Site.php:685 -msgid "New base url" -msgstr "新しいベースURL" +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "" -#: src/Module/Admin/Site.php:685 +#: src/Module/Admin/Site.php:507 msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." -msgstr "このサーバーのベースURLを変更します。すべてのユーザーのFriendicaおよびDiaspora *のすべてのコンタクトに再配置メッセージを送信します。" +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "" -#: src/Module/Admin/Site.php:687 -msgid "RINO Encryption" -msgstr "RINO暗号化" - -#: src/Module/Admin/Site.php:687 -msgid "Encryption layer between nodes." -msgstr "ノード間の暗号化レイヤー。" - -#: 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:687 -msgid "Enabled" -msgstr "有効化" - -#: src/Module/Admin/Site.php:689 +#: src/Module/Admin/Site.php:509 msgid "Maximum number of parallel workers" msgstr "並列ワーカーの最大数" -#: src/Module/Admin/Site.php:689 +#: src/Module/Admin/Site.php:509 #, 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:690 +#: src/Module/Admin/Site.php:510 msgid "Enable fastlane" msgstr "fastlaneを有効にする" -#: src/Module/Admin/Site.php:690 +#: src/Module/Admin/Site.php:510 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:692 +#: src/Module/Admin/Site.php:512 msgid "Direct relay transfer" msgstr "直接中継転送" -#: src/Module/Admin/Site.php:692 +#: src/Module/Admin/Site.php:512 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "中継サーバーを使用せずに他のサーバーに直接転送できるようにします" -#: src/Module/Admin/Site.php:693 +#: src/Module/Admin/Site.php:513 msgid "Relay scope" msgstr "中継スコープ" -#: src/Module/Admin/Site.php:693 +#: src/Module/Admin/Site.php:513 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:693 +#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Disabled" +msgstr "無効" + +#: src/Module/Admin/Site.php:513 msgid "all" msgstr "すべて" -#: src/Module/Admin/Site.php:693 +#: src/Module/Admin/Site.php:513 msgid "tags" msgstr "タグ" -#: src/Module/Admin/Site.php:694 +#: src/Module/Admin/Site.php:514 msgid "Server tags" msgstr "サーバータグ" -#: src/Module/Admin/Site.php:694 +#: src/Module/Admin/Site.php:514 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "\"tags \"サブスクリプションのタグのコンマ区切りリスト。" -#: src/Module/Admin/Site.php:695 +#: src/Module/Admin/Site.php:515 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:695 +#: src/Module/Admin/Site.php:515 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:696 +#: src/Module/Admin/Site.php:516 msgid "Allow user tags" msgstr "ユーザータグを許可する" -#: src/Module/Admin/Site.php:696 +#: src/Module/Admin/Site.php:516 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:699 +#: src/Module/Admin/Site.php:519 msgid "Start Relocation" msgstr "再配置を開始" -#: src/Module/Admin/Summary.php:53 +#: src/Module/Admin/Storage.php:46 +#, php-format +msgid "Storage backend, %s is invalid." +msgstr "" + +#: src/Module/Admin/Storage.php:73 +#, php-format +msgid "Storage backend %s error: %s" +msgstr "" + +#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +msgid "Invalid storage backend setting value." +msgstr "無効なストレージバックエンド設定値です。" + +#: src/Module/Admin/Storage.php:139 +msgid "Current Storage Backend" +msgstr "" + +#: src/Module/Admin/Storage.php:140 +msgid "Storage Configuration" +msgstr "" + +#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +msgid "Storage" +msgstr "" + +#: src/Module/Admin/Storage.php:143 +msgid "Save & Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:144 +msgid "Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:145 +msgid "Save & Reload" +msgstr "" + +#: src/Module/Admin/Storage.php:146 +msgid "This backend doesn't have custom settings" +msgstr "" + +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "" + +#: src/Module/Admin/Storage.php:150 +msgid "Database (legacy)" +msgstr "データベース(レガシー)" + +#: src/Module/Admin/Summary.php:55 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:57 +#: src/Module/Admin/Summary.php:59 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -6743,7 +5252,7 @@ msgid "" " an automatic conversion.
    " msgstr "DBは引き続きMyISAMテーブルで実行されます。エンジンタイプをInnoDBに変更する必要があります。 Friendicaは今後InnoDBのみの機能を使用するため、これを変更する必要があります。テーブルエンジンの変換に役立つガイドについては、こちらをご覧ください。 Friendicaインストールの php bin/console.php dbstructure toinnodb コマンドを使用して自動変換することもできます。
    " -#: src/Module/Admin/Summary.php:62 +#: src/Module/Admin/Summary.php:64 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -6754,7 +5263,7 @@ msgid "" " installation for an automatic conversion.
    " msgstr "" -#: src/Module/Admin/Summary.php:72 +#: src/Module/Admin/Summary.php:74 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -6762,39 +5271,46 @@ msgid "" " to %d. See here for more information.
    " msgstr "" -#: src/Module/Admin/Summary.php:82 +#: src/Module/Admin/Summary.php:85 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "ダウンロード可能なFriendicaの新しいバージョンがあります。現在のバージョンは%1$s 、アップストリームバージョンは%2$sです。" -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:94 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "データベースの更新に失敗しました。コマンドラインから「php bin/console.php dbstructure update」を実行し、表示される可能性のあるエラーを確認してください。" -#: src/Module/Admin/Summary.php:95 +#: src/Module/Admin/Summary.php:98 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "最後の更新に失敗しました。コマンドラインから「php bin/console.php dbstructure update」を実行し、表示される可能性のあるエラーを確認してください。 (エラーの一部は、おそらくログファイル内にあります。)" -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "" + +#: src/Module/Admin/Summary.php:107 msgid "The worker was never executed. Please check your database structure!" msgstr "ワーカーは実行されませんでした。データベース構造を確認してください!" -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:109 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "最後のワーカー実行は%s UTCでした。これは1時間以上前です。 crontabの設定を確認してください。" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:114 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6803,7 +5319,7 @@ msgid "" "help with the transition." msgstr "Friendicaの設定はconfig/local.config.phpに保存されるようになりました。config/local-sample.config.phpをコピーし、設定を .htconfig.php から移動してください。移行のヘルプについては、 Configヘルプページをご覧ください。" -#: src/Module/Admin/Summary.php:111 +#: src/Module/Admin/Summary.php:118 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6812,7 +5328,7 @@ msgid "" "page for help with the transition." msgstr "Friendicaの設定はconfig/local.config.phpに保存されるようになりました。config/ local-sample.config.phpをコピーして、設定を config / local.ini.php から移動してください。移行のヘルプについては、 Configヘルプページをご覧ください。" -#: src/Module/Admin/Summary.php:117 +#: src/Module/Admin/Summary.php:124 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -6820,87 +5336,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "システムで %s に到達できません。これは、サーバー間の通信を妨げる重大な構成の問題です。ヘルプについては、インストールページをご覧ください。" -#: src/Module/Admin/Summary.php:135 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "ログファイル ' %s ' は使用できません。ログ機能が使用できません。(エラー: ' %s ' )" - -#: src/Module/Admin/Summary.php:149 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "デバッグログファイル ' %s ' は使用できません。ログ機能が使用できません。(エラー: ' %s ' )" - -#: src/Module/Admin/Summary.php:165 +#: src/Module/Admin/Summary.php:148 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "Friendicaのsystem.basepathは '%s' から '%s' に更新されました。差異を避けるために、データベースからsystem.basepathを削除してください。" -#: src/Module/Admin/Summary.php:173 +#: src/Module/Admin/Summary.php:156 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "Friendicaの現在のsystem.basepath '%s' は間違っています。構成ファイル '%s'は使用されていません。" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:164 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "Friendicaの現在のsystem.basepath '%s'は、構成ファイル '%s'と等しくありません。設定を修正してください。" -#: src/Module/Admin/Summary.php:188 -msgid "Normal Account" -msgstr "通常アカウント" - -#: src/Module/Admin/Summary.php:189 -msgid "Automatic Follower Account" -msgstr "自動フォロワーアカウント" - -#: src/Module/Admin/Summary.php:190 -msgid "Public Forum Account" -msgstr "公開フォーラムアカウント" - -#: src/Module/Admin/Summary.php:191 -msgid "Automatic Friend Account" -msgstr "自動友達アカウント" - -#: src/Module/Admin/Summary.php:192 -msgid "Blog Account" -msgstr "ブログアカウント" - -#: src/Module/Admin/Summary.php:193 -msgid "Private Forum Account" -msgstr "プライベートフォーラムアカウント" - -#: src/Module/Admin/Summary.php:213 +#: src/Module/Admin/Summary.php:175 msgid "Message queues" msgstr "メッセージキュー" -#: src/Module/Admin/Summary.php:219 +#: src/Module/Admin/Summary.php:181 msgid "Server Settings" msgstr "サーバー設定" -#: src/Module/Admin/Summary.php:233 src/Repository/ProfileField.php:285 -msgid "Summary" -msgstr "概要" - -#: src/Module/Admin/Summary.php:235 -msgid "Registered users" -msgstr "登録ユーザー" - -#: src/Module/Admin/Summary.php:237 -msgid "Pending registrations" -msgstr "保留中の登録" - -#: src/Module/Admin/Summary.php:238 +#: src/Module/Admin/Summary.php:199 msgid "Version" msgstr "バージョン" -#: src/Module/Admin/Summary.php:242 +#: src/Module/Admin/Summary.php:203 msgid "Active addons" msgstr "アクティブなアドオン" @@ -6928,7 +5397,7 @@ msgstr "スクリーンショット" msgid "Themes" msgstr "テーマ" -#: src/Module/Admin/Themes/Embed.php:65 +#: src/Module/Admin/Themes/Embed.php:80 msgid "Unknown theme." msgstr "不明なテーマ。" @@ -6940,240 +5409,69 @@ msgstr "" msgid "Reload active themes" msgstr "アクティブなテーマをリロードする" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:118 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "システムにテーマが見つかりません。 %1$sに配置する必要があります" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:119 msgid "[Experimental]" msgstr "[実験的]" -#: src/Module/Admin/Themes/Index.php:121 +#: src/Module/Admin/Themes/Index.php:120 msgid "[Unsupported]" msgstr "[サポートされていません]" -#: src/Module/Admin/Tos.php:60 +#: src/Module/Admin/Tos.php:79 msgid "Display Terms of Service" msgstr "利用規約を表示する" -#: src/Module/Admin/Tos.php:60 +#: src/Module/Admin/Tos.php:79 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 "利用規約ページを有効にします。これを有効にすると、登録フォームと一般情報ページに規約へのリンクが追加されます。" -#: src/Module/Admin/Tos.php:61 +#: src/Module/Admin/Tos.php:80 msgid "Display Privacy Statement" msgstr "プライバシーに関する声明を表示する" -#: src/Module/Admin/Tos.php:61 +#: src/Module/Admin/Tos.php:80 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." +"according e.g. to EU-GDPR." msgstr "" -#: src/Module/Admin/Tos.php:62 +#: src/Module/Admin/Tos.php:81 msgid "Privacy Statement Preview" msgstr "プライバシーに関する声明のプレビュー" -#: src/Module/Admin/Tos.php:64 +#: src/Module/Admin/Tos.php:83 msgid "The Terms of Service" msgstr "利用規約" -#: src/Module/Admin/Tos.php:64 +#: src/Module/Admin/Tos.php:83 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "ここにノードの利用規約を入力します。 BBCodeを使用できます。セクションのヘッダーは[h2]以下である必要があります。" -#: 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ユーザーがブロックされました" - -#: 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 "自分を削除することはできません" - -#: 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ユーザーが削除されました" - -#: 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\"が削除されました" - -#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103 -#, php-format -msgid "User \"%s\" blocked" -msgstr "ユーザー\"%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 "Register date" -msgstr "登録日" - -#: 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 "前回のログイン" - -#: 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" +#: src/Module/Admin/Tos.php:84 +msgid "The rules" msgstr "" -#: src/Module/Admin/Users/Active.php:137 -msgid "Active Accounts" +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." msgstr "" -#: 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 "ユーザーがブロックされました" - -#: 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 "サイト管理者" - -#: 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 "アカウントの有効期限が切れました" - -#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161 -msgid "Create a new user" -msgstr "" - -#: 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 "選択したユーザーは削除されます!\n\nこれらのユーザーがこのサイトに投稿したものはすべて完全に削除されます!\n\nよろしいですか?" - -#: 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}は削除されます!\n\nこのユーザーがこのサイトに投稿したものはすべて完全に削除されます!\n\nよろしいですか?" - -#: src/Module/Admin/Users/Blocked.php:46 src/Module/Admin/Users/Index.php:52 +#: src/Module/Api/ApiResponse.php:279 #, php-format -msgid "%s user unblocked" -msgid_plural "%s users unblocked" -msgstr[0] "%sユーザーのブロックを解除しました" - -#: src/Module/Admin/Users/Blocked.php:96 src/Module/Admin/Users/Index.php:109 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "ユーザー\"%s\"のブロックを解除しました" - -#: src/Module/Admin/Users/Blocked.php:138 -msgid "Blocked Users" +msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Admin/Users/Create.php:62 -msgid "New User" -msgstr "新しいユーザー" - -#: src/Module/Admin/Users/Create.php:63 -msgid "Add User" -msgstr "ユーザーを追加する" - -#: src/Module/Admin/Users/Create.php:71 -msgid "Name of the new user." -msgstr "新しいユーザーの名前。" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname" -msgstr "ニックネーム" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname of the new user." -msgstr "新しいユーザーのニックネーム。" - -#: src/Module/Admin/Users/Create.php:73 -msgid "Email address of the new user." -msgstr "新しいユーザーのメールアドレス。" - -#: src/Module/Admin/Users/Deleted.php:86 -msgid "Users awaiting permanent deletion" -msgstr "" - -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:162 -msgid "Permanent deletion" -msgstr "永久削除" - -#: src/Module/Admin/Users/Index.php:150 src/Module/Admin/Users/Index.php:160 -#: src/Module/BaseAdmin.php:91 -msgid "Users" -msgstr "ユーザー" - -#: src/Module/Admin/Users/Index.php:152 -msgid "User waiting for permanent deletion" -msgstr "永久削除を待っているユーザー" - -#: src/Module/Admin/Users/Pending.php:48 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "" - -#: src/Module/Admin/Users/Pending.php:55 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "" - -#: src/Module/Admin/Users/Pending.php:81 -msgid "Account approved." -msgstr "アカウントが承認されました。" - -#: src/Module/Admin/Users/Pending.php:87 -msgid "Registration revoked" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:102 -msgid "User registrations awaiting review" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:104 -msgid "Request date" -msgstr "依頼日" - -#: src/Module/Admin/Users/Pending.php:105 -msgid "No registrations." -msgstr "登録なし。" - -#: src/Module/Admin/Users/Pending.php:106 -msgid "Note from the user" -msgstr "ユーザーからのメモ" - -#: src/Module/Admin/Users/Pending.php:108 -msgid "Deny" -msgstr "拒否する" - -#: src/Module/Api/Mastodon/Apps.php:58 +#: src/Module/Api/Mastodon/Apps.php:73 msgid "Missing parameters" msgstr "" @@ -7181,16 +5479,11 @@ msgstr "" msgid "Only starting posts can be bookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Mute.php:50 +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 msgid "Only starting posts can be muted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Pin.php:50 -#: src/Module/Api/Mastodon/Statuses/Unpin.php:50 -msgid "Only starting posts can be pinned" -msgstr "" - -#: src/Module/Api/Mastodon/Statuses/Reblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:56 #, php-format msgid "Posts from %s can't be shared" msgstr "" @@ -7199,35 +5492,36 @@ msgstr "" msgid "Only starting posts can be unbookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:50 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 msgid "Only starting posts can be unmuted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:62 #, php-format msgid "Posts from %s can't be unshared" msgstr "" -#: src/Module/Api/Twitter/ContactEndpoint.php:63 src/Module/Contact.php:400 +#: src/Module/Api/Twitter/ContactEndpoint.php:66 msgid "Contact not found" msgstr "コンタクトが見つかりません" -#: src/Module/Api/Twitter/ContactEndpoint.php:133 -msgid "Profile not found" -msgstr "" - -#: src/Module/Apps.php:47 +#: src/Module/Apps.php:62 msgid "No installed applications." msgstr "アプリケーションがインストールされていません。" -#: src/Module/Apps.php:52 +#: src/Module/Apps.php:67 msgid "Applications" msgstr "アプリケーション" -#: src/Module/Attach.php:50 src/Module/Attach.php:62 +#: src/Module/Attach.php:49 src/Module/Attach.php:61 msgid "Item was not found." msgstr "項目が見つかりませんでした。" +#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +msgid "Please login to continue." +msgstr "この先に進むにはログインしてください。" + #: src/Module/BaseAdmin.php:63 msgid "You don't have access to administration pages." msgstr "" @@ -7238,15 +5532,15 @@ msgid "" " as the main account." msgstr "" -#: src/Module/BaseAdmin.php:86 +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 msgid "Overview" msgstr "概要" -#: src/Module/BaseAdmin.php:89 +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 msgid "Configuration" msgstr "構成" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:65 +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 msgid "Additional features" msgstr "追加機能" @@ -7266,709 +5560,1144 @@ msgstr "非同期実行ワーカーの検査" msgid "Inspect worker Queue" msgstr "ワーカーキューの検査" -#: src/Module/BaseAdmin.php:102 -msgid "Tools" -msgstr "ツール" - -#: src/Module/BaseAdmin.php:103 -msgid "Contact Blocklist" -msgstr "コンタクトブロックリスト" - -#: src/Module/BaseAdmin.php:104 -msgid "Server Blocklist" -msgstr "サーバーブロックリスト" - -#: src/Module/BaseAdmin.php:111 +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 msgid "Diagnostics" msgstr "診断" -#: src/Module/BaseAdmin.php:112 +#: src/Module/BaseAdmin.php:107 msgid "PHP Info" msgstr "PHP情報" -#: src/Module/BaseAdmin.php:113 +#: src/Module/BaseAdmin.php:108 msgid "probe address" msgstr "プローブアドレス" -#: src/Module/BaseAdmin.php:114 +#: src/Module/BaseAdmin.php:109 msgid "check webfinger" msgstr "webfingerで診断" -#: src/Module/BaseAdmin.php:116 +#: src/Module/BaseAdmin.php:110 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:117 src/Module/Debug/ActivityPubConversion.php:138 +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 msgid "ActivityPub Conversion" msgstr "" -#: src/Module/BaseAdmin.php:126 +#: src/Module/BaseAdmin.php:120 msgid "Addon Features" msgstr "アドオン機能" -#: src/Module/BaseAdmin.php:127 +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 msgid "User registrations waiting for confirmation" msgstr "確認待ちのユーザー登録" -#: src/Module/BaseApi.php:116 +#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467 +#: src/Module/BaseApi.php:483 +msgid "Too Many Requests" +msgstr "" + +#: src/Module/BaseApi.php:452 #, php-format -msgid "API endpoint %s %s is not implemented" +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 件を超えたため、投稿できませんでした。" + +#: src/Module/BaseApi.php:468 +#, 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 件を超えたため、投稿できませんでした。" + +#: src/Module/BaseApi.php:484 +#, php-format +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Monthly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" + +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." msgstr "" -#: src/Module/BaseApi.php:117 +#: src/Module/BaseModeration.php:90 msgid "" -"The API endpoint is currently not implemented but might be in the future." +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." msgstr "" -#: src/Module/BaseProfile.php:55 src/Module/Contact.php:947 +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "ユーザー" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "ツール" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "コンタクトブロックリスト" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "サーバーブロックリスト" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "項目を削除" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "項目ソース" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 msgid "Profile Details" msgstr "プロフィールの詳細" -#: src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "" + +#: src/Module/BaseProfile.php:111 msgid "Only You Can See This" msgstr "これしか見えない" -#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +msgid "Scheduled Posts" +msgstr "" + +#: src/Module/BaseProfile.php:119 +msgid "Posts that are scheduled for publishing" +msgstr "" + +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 msgid "Tips for New Members" msgstr "新会員のためのヒント" -#: src/Module/BaseSearch.php:69 +#: src/Module/BaseSearch.php:71 #, php-format msgid "People Search - %s" msgstr "人を検索- %s" -#: src/Module/BaseSearch.php:79 +#: src/Module/BaseSearch.php:75 #, php-format -msgid "Forum Search - %s" -msgstr "フォーラム検索- %s" +msgid "Group Search - %s" +msgstr "" -#: src/Module/BaseSettings.php:43 +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "一致する項目がありません" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "" + +#: src/Module/BaseSettings.php:78 msgid "Account" msgstr "アカウント" -#: src/Module/BaseSettings.php:50 src/Module/Security/TwoFactor/Verify.php:94 -#: src/Module/Settings/TwoFactor/Index.php:110 +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 msgid "Two-factor authentication" msgstr "二要素認証" -#: src/Module/BaseSettings.php:73 +#: src/Module/BaseSettings.php:118 msgid "Display" msgstr "表示" -#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:171 +#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "ソーシャルネットワーク" + +#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172 msgid "Manage Accounts" msgstr "アカウントの管理" -#: src/Module/BaseSettings.php:101 +#: src/Module/BaseSettings.php:146 msgid "Connected apps" msgstr "接続されたアプリ" -#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:77 +#: src/Module/BaseSettings.php:153 +msgid "Remote servers" +msgstr "" + +#: src/Module/BaseSettings.php:160 src/Module/Settings/UserExport.php:98 msgid "Export personal data" msgstr "個人データのエクスポート" -#: src/Module/BaseSettings.php:115 +#: src/Module/BaseSettings.php:167 msgid "Remove account" msgstr "アカウントを削除" -#: src/Module/Bookmarklet.php:56 +#: src/Module/Bookmarklet.php:54 msgid "This page is missing a url parameter." msgstr "このページにはurlパラメーターがありません。" -#: src/Module/Bookmarklet.php:78 +#: src/Module/Bookmarklet.php:66 msgid "The post was created" msgstr "投稿が作成されました" -#: src/Module/Contact.php:94 +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "" + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "イベントを削除できませんでした" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "イベントは開始する前に終了できません。" + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "イベントのタイトルと開始時間が必要です。" + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "開始日とタイトルが必要です。" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "イベント開始:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "必須" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "終了日時が不明であるか、関連性がない" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "イベント終了:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "このイベントを共有する" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "ベーシック" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "このカレンダー形式はサポートされていません" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "エクスポート可能なデータが見つかりません" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "カレンダー" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "イベント" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "表示する" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "新しいイベントを作成" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:248 +msgid "list" +msgstr "リスト" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "" + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "" + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "" + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "" + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "コンタクトが見つかりません。" + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "無効なコンタクト。" + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "コンタクトが削除されます。" + +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "" + +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "" + +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "" + +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "" + +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "要求の形式が正しくありません。" + +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "" + +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "フィルタ" + +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "" + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "" + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "会員" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "コンタクトをクリックして追加・削除" + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "" + +#: src/Module/Contact.php:97 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "%dコンタクトを編集しました。" -#: src/Module/Contact.php:121 -msgid "Could not access contact record." -msgstr "コンタクトレコードにアクセスできませんでした。" - -#: src/Module/Contact.php:417 -msgid "You can't block yourself" -msgstr "自分をブロックすることはできません" - -#: src/Module/Contact.php:423 -msgid "Contact has been blocked" -msgstr "コンタクトがブロックされました" - -#: src/Module/Contact.php:423 -msgid "Contact has been unblocked" -msgstr "コンタクトのブロックが解除されました" - -#: src/Module/Contact.php:431 -msgid "You can't ignore yourself" -msgstr "自分を無視することはできません" - -#: src/Module/Contact.php:437 -msgid "Contact has been ignored" -msgstr "コンタクトは無視されました" - -#: src/Module/Contact.php:437 -msgid "Contact has been unignored" -msgstr "コンタクトは無視されていません" - -#: src/Module/Contact.php:447 -msgid "Contact has been archived" -msgstr "コンタクトがアーカイブされました" - -#: src/Module/Contact.php:447 -msgid "Contact has been unarchived" -msgstr "コンタクトのアーカイブを解除しました" - -#: src/Module/Contact.php:460 -msgid "Drop contact" -msgstr "コンタクトを削除" - -#: src/Module/Contact.php:463 src/Module/Contact.php:887 -msgid "Do you really want to delete this contact?" -msgstr "このコンタクトを本当に削除しますか?" - -#: src/Module/Contact.php:476 -msgid "Contact has been removed." -msgstr "コンタクトは削除されました。" - -#: src/Module/Contact.php:504 -#, php-format -msgid "You are mutual friends with %s" -msgstr "あなたは%sと共通の友達です" - -#: src/Module/Contact.php:508 -#, php-format -msgid "You are sharing with %s" -msgstr "%sと共有しています" - -#: src/Module/Contact.php:512 -#, php-format -msgid "%s is sharing with you" -msgstr "%sはあなたと共有しています" - -#: src/Module/Contact.php:536 -msgid "Private communications are not available for this contact." -msgstr "このコンタクトへのプライベート通信は利用できません。" - -#: src/Module/Contact.php:538 -msgid "Never" -msgstr "全くない" - -#: src/Module/Contact.php:541 -msgid "(Update was not successful)" -msgstr "(更新は成功しませんでした)" - -#: src/Module/Contact.php:541 -msgid "(Update was successful)" -msgstr "(更新は成功しました)" - -#: src/Module/Contact.php:543 src/Module/Contact.php:1144 -msgid "Suggest friends" -msgstr "友人のおすすめ" - -#: src/Module/Contact.php:547 -#, php-format -msgid "Network type: %s" -msgstr "ネットワークの種類: %s" - -#: src/Module/Contact.php:552 -msgid "Communications lost with this contact!" -msgstr "このコンタクトとの通信が失われました!" - -#: src/Module/Contact.php:558 -msgid "Fetch further information for feeds" -msgstr "フィードの詳細情報を取得する" - -#: 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 "フィード項目からプレビュー画像、タイトル、ティーザーなどの情報を取得します。フィードに多くのテキストが含まれていない場合は、これをアクティブにできます。キーワードはフィード項目のメタヘッダーから取得され、ハッシュタグとして投稿されます。" - -#: src/Module/Contact.php:563 -msgid "Fetch information" -msgstr "情報を取得する" - -#: src/Module/Contact.php:564 -msgid "Fetch keywords" -msgstr "キーワードを取得する" - -#: src/Module/Contact.php:565 -msgid "Fetch information and keywords" -msgstr "情報とキーワードを取得する" - -#: src/Module/Contact.php:577 src/Module/Contact.php:581 -#: src/Module/Contact.php:584 src/Module/Contact.php:588 -msgid "No mirroring" -msgstr "ミラーリングなし" - -#: src/Module/Contact.php:578 -msgid "Mirror as forwarded posting" -msgstr "転送された投稿としてミラー" - -#: src/Module/Contact.php:579 src/Module/Contact.php:585 -#: src/Module/Contact.php:589 -msgid "Mirror as my own posting" -msgstr "自分の投稿としてミラー" - -#: src/Module/Contact.php:582 src/Module/Contact.php:586 -msgid "Native reshare" -msgstr "" - -#: src/Module/Contact.php:601 -msgid "Contact Information / Notes" -msgstr "コンタクト/メモ" - -#: src/Module/Contact.php:602 -msgid "Contact Settings" -msgstr "コンタクト設定" - -#: src/Module/Contact.php:610 -msgid "Contact" -msgstr "コンタクト" - -#: src/Module/Contact.php:614 -msgid "Their personal note" -msgstr "彼らの個人的なメモ" - -#: src/Module/Contact.php:616 -msgid "Edit contact notes" -msgstr "コンタクトメモを編集する" - -#: src/Module/Contact.php:619 src/Module/Contact.php:1112 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "%sのプロフィール[ %s ]を開く" - -#: src/Module/Contact.php:620 -msgid "Block/Unblock contact" -msgstr "コンタクトのブロック/ブロック解除" - -#: src/Module/Contact.php:621 -msgid "Ignore contact" -msgstr "コンタクトを無視" - -#: src/Module/Contact.php:622 -msgid "View conversations" -msgstr "会話を見る" - -#: src/Module/Contact.php:627 -msgid "Last update:" -msgstr "最後の更新:" - -#: src/Module/Contact.php:629 -msgid "Update public posts" -msgstr "一般公開の投稿を更新" - -#: src/Module/Contact.php:631 src/Module/Contact.php:1154 -msgid "Update now" -msgstr "今すぐ更新" - -#: src/Module/Contact.php:634 src/Module/Contact.php:892 -#: src/Module/Contact.php:1181 -msgid "Unignore" -msgstr "無視しない" - -#: src/Module/Contact.php:638 -msgid "Currently blocked" -msgstr "現在ブロックされています" - -#: src/Module/Contact.php:639 -msgid "Currently ignored" -msgstr "現在無視されます" - -#: src/Module/Contact.php:640 -msgid "Currently archived" -msgstr "現在アーカイブ済み" - -#: src/Module/Contact.php:641 -msgid "Awaiting connection acknowledge" -msgstr "接続確認応答待ち" - -#: src/Module/Contact.php:642 src/Module/Notifications/Introductions.php:177 -msgid "Hide this contact from others" -msgstr "このコンタクトを他の人から隠す" - -#: src/Module/Contact.php:642 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "一般公開の投稿への返信・いいねは、引き続き表示される場合があります" - -#: src/Module/Contact.php:643 -msgid "Notification for new posts" -msgstr "新しい投稿の通知" - -#: src/Module/Contact.php:643 -msgid "Send a notification of every new post of this contact" -msgstr "このコンタクトの新しい投稿ごとに通知を送信する" - -#: src/Module/Contact.php:645 -msgid "Keyword Deny List" -msgstr "" - -#: 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 "「情報とキーワードの取得」が選択されている場合、ハッシュタグに変換しないキーワードのカンマ区切りリスト" - -#: src/Module/Contact.php:661 src/Module/Settings/TwoFactor/Index.php:132 -msgid "Actions" -msgstr "操作" - -#: src/Module/Contact.php:668 -msgid "Mirror postings from this contact" -msgstr "このコンタクトからの投稿をミラーリングする" - -#: src/Module/Contact.php:670 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "このコンタクトをremote_selfとしてマークすると、friendicaがこのコンタクトから新しいエントリを再投稿します。" - -#: src/Module/Contact.php:802 +#: src/Module/Contact.php:348 msgid "Show all contacts" msgstr "すべてのコンタクトを表示" -#: src/Module/Contact.php:810 +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "保留" + +#: src/Module/Contact.php:356 msgid "Only show pending contacts" msgstr "保留中のコンタクトのみを表示" -#: src/Module/Contact.php:818 +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "ブロックされました" + +#: src/Module/Contact.php:364 msgid "Only show blocked contacts" msgstr "ブロックされたコンタクトのみを表示" -#: src/Module/Contact.php:823 src/Module/Contact.php:870 -#: src/Object/Post.php:308 +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:368 msgid "Ignored" msgstr "無視された" -#: src/Module/Contact.php:826 +#: src/Module/Contact.php:372 msgid "Only show ignored contacts" msgstr "無視されたコンタクトのみを表示" -#: src/Module/Contact.php:831 src/Module/Contact.php:871 +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 msgid "Archived" msgstr "アーカイブ済み" -#: src/Module/Contact.php:834 +#: src/Module/Contact.php:388 msgid "Only show archived contacts" msgstr "アーカイブされたコンタクトのみを表示" -#: src/Module/Contact.php:839 src/Module/Contact.php:869 +#: src/Module/Contact.php:393 src/Module/Contact.php:438 msgid "Hidden" msgstr "非表示" -#: src/Module/Contact.php:842 +#: src/Module/Contact.php:396 msgid "Only show hidden contacts" msgstr "非表示のコンタクトのみを表示" -#: src/Module/Contact.php:850 -msgid "Organize your contact groups" -msgstr "コンタクトグループを整理する" +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "" -#: src/Module/Contact.php:882 +#: src/Module/Contact.php:459 msgid "Search your contacts" msgstr "コンタクトを検索する" -#: src/Module/Contact.php:883 src/Module/Search/Index.php:194 +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 #, php-format msgid "Results for: %s" msgstr "結果: %s" -#: src/Module/Contact.php:893 src/Module/Contact.php:1190 -msgid "Archive" -msgstr "アーカイブ" +#: src/Module/Contact.php:467 +msgid "Update" +msgstr "更新" -#: src/Module/Contact.php:893 src/Module/Contact.php:1190 -msgid "Unarchive" -msgstr "アーカイブ解除" +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "ブロック解除" -#: src/Module/Contact.php:896 +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 +msgid "Unignore" +msgstr "無視しない" + +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "" + +#: src/Module/Contact.php:472 msgid "Batch Actions" msgstr "バッチアクション" -#: src/Module/Contact.php:931 +#: src/Module/Contact.php:515 msgid "Conversations started by this contact" msgstr "このコンタクトが開始した会話" -#: src/Module/Contact.php:936 +#: src/Module/Contact.php:520 msgid "Posts and Comments" msgstr "投稿とコメント" -#: src/Module/Contact.php:954 +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "" + +#: src/Module/Contact.php:531 +msgid "Posts containing media objects" +msgstr "" + +#: src/Module/Contact.php:539 msgid "View all known contacts" msgstr "" -#: src/Module/Contact.php:964 +#: src/Module/Contact.php:550 msgid "Advanced Contact Settings" msgstr "高度なコンタクト設定" -#: src/Module/Contact.php:1071 +#: src/Module/Contact.php:586 msgid "Mutual Friendship" msgstr "相互フォロー" -#: src/Module/Contact.php:1075 +#: src/Module/Contact.php:590 msgid "is a fan of yours" msgstr "あなたのファンです" -#: src/Module/Contact.php:1079 +#: src/Module/Contact.php:594 msgid "you are a fan of" msgstr "あなたはファンです" -#: src/Module/Contact.php:1097 +#: src/Module/Contact.php:612 msgid "Pending outgoing contact request" msgstr "保留中の送信済みコンタクトリクエスト" -#: src/Module/Contact.php:1099 +#: src/Module/Contact.php:614 msgid "Pending incoming contact request" msgstr "保留中の受信済みコンタクトリクエスト" -#: src/Module/Contact.php:1164 -msgid "Refetch contact data" -msgstr "コンタクトデータを再取得する" +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "%sのプロフィール[ %s ]を開く" -#: src/Module/Contact.php:1175 -msgid "Toggle Blocked status" -msgstr "ブロック状態の切り替え" - -#: src/Module/Contact.php:1183 -msgid "Toggle Ignored status" -msgstr "無視ステータスの切り替え" - -#: src/Module/Contact.php:1192 -msgid "Toggle Archive status" -msgstr "アーカイブステータスの切り替え" - -#: src/Module/Contact.php:1200 -msgid "Delete contact" -msgstr "コンタクトを削除" - -#: src/Module/Contact/Advanced.php:92 +#: src/Module/Contact/Advanced.php:99 msgid "Contact update failed." msgstr "コンタクトの更新に失敗しました。" -#: 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 "警告:これは非常に高度です。誤った情報を入力すると、このコンタクトとのコミュニケーションが機能しなくなる場合があります。" - -#: 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 "このページで何をすべきかわからない場合は、ブラウザの \"戻る\" ボタンを *今すぐ*クリックしてください。" - #: src/Module/Contact/Advanced.php:130 msgid "Return to contact editor" msgstr "コンタクトエディターに戻る" +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "名" + #: src/Module/Contact/Advanced.php:135 msgid "Account Nickname" msgstr "アカウントのニックネーム" #: src/Module/Contact/Advanced.php:136 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - 名前/ニックネームをオーバーライドします" - -#: src/Module/Contact/Advanced.php:137 msgid "Account URL" msgstr "アカウントURL" -#: src/Module/Contact/Advanced.php:138 -msgid "Account URL Alias" -msgstr "アカウントURLエイリアス" - -#: src/Module/Contact/Advanced.php:139 -msgid "Friend Request URL" -msgstr "フレンドリクエストURL" - -#: src/Module/Contact/Advanced.php:140 -msgid "Friend Confirm URL" -msgstr "友人確認URL" - -#: src/Module/Contact/Advanced.php:141 -msgid "Notification Endpoint URL" -msgstr "通知エンドポイントURL" - -#: src/Module/Contact/Advanced.php:142 +#: src/Module/Contact/Advanced.php:137 msgid "Poll/Feed URL" msgstr "ポーリング/フィードURL" -#: src/Module/Contact/Advanced.php:143 +#: src/Module/Contact/Advanced.php:138 msgid "New photo from this URL" msgstr "このURLからの新しい写真" -#: src/Module/Contact/Contacts.php:31 src/Module/Conversation/Network.php:177 -msgid "Invalid contact." -msgstr "無効なコンタクト。" - -#: src/Module/Contact/Contacts.php:54 +#: src/Module/Contact/Contacts.php:89 msgid "No known contacts." msgstr "" -#: src/Module/Contact/Contacts.php:68 src/Module/Profile/Common.php:99 +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 msgid "No common contacts." msgstr "" -#: src/Module/Contact/Contacts.php:80 src/Module/Profile/Contacts.php:97 +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" msgstr[0] "フォロワー( %s )" -#: src/Module/Contact/Contacts.php:84 src/Module/Profile/Contacts.php:100 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" msgstr[0] "フォロー中( %s )" -#: src/Module/Contact/Contacts.php:88 src/Module/Profile/Contacts.php:103 +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" msgstr[0] "相互の友人( %s )" -#: src/Module/Contact/Contacts.php:90 src/Module/Profile/Contacts.php:105 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "" -#: src/Module/Contact/Contacts.php:96 src/Module/Profile/Common.php:87 +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" msgstr[0] "" -#: src/Module/Contact/Contacts.php:98 src/Module/Profile/Common.php:89 +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "" -#: src/Module/Contact/Contacts.php:104 src/Module/Profile/Contacts.php:111 +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "コンタクト( %s )" -#: src/Module/Contact/Poke.php:113 -msgid "Error while sending poke, please retry." +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:165 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "アクセスが拒否されました。" + +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "リクエストを送る" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "このコンタクトは既に追加されています。" + +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "ネットワークの種類を検出できませんでした。コンタクトを追加できません。" + +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Diasporaのサポートは有効になっていません。コンタクトを追加できません。" + +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "OStatusサポートは無効です。コンタクトを追加できません。" + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "以下に答えてください。" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "あなたのIdentityアドレス:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "プロフィールURL" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "タグ:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "%sはあなたを知っています" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "個人メモを追加します。" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" msgstr "" -#: src/Module/Contact/Poke.php:126 src/Module/Search/Acl.php:55 -msgid "You must be logged in to use this module." -msgstr "このモジュールを使用するにはログインする必要があります" +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "コンタクトを追加できませんでした。" -#: src/Module/Contact/Poke.php:149 -msgid "Poke/Prod" -msgstr "突く/製品" +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "無効なリクエストです。" -#: src/Module/Contact/Poke.php:150 -msgid "poke, prod or do other things to somebody" -msgstr "誰かに突く、突く、または他のことをする" +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "合致するキーワードが有りません。あなたのプロフィールにキーワードを追加してください。" -#: src/Module/Contact/Poke.php:152 -msgid "Choose what you wish to do to recipient" -msgstr "受信者にしたいことを選択してください" +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "一致するプロフィール" -#: src/Module/Contact/Poke.php:153 -msgid "Make this post private" -msgstr "この投稿を非公開にします" +#: src/Module/Contact/Profile.php:140 +msgid "Failed to update contact record." +msgstr "コンタクトレコードを更新できませんでした。" -#: src/Module/Conversation/Community.php:69 -msgid "Local Community" -msgstr "ローカル コミュニティ" +#: src/Module/Contact/Profile.php:190 +msgid "Contact has been unblocked" +msgstr "コンタクトのブロックが解除されました" -#: src/Module/Conversation/Community.php:72 -msgid "Posts from local users on this server" -msgstr "このサーバー上のローカルユーザーからの投稿" +#: src/Module/Contact/Profile.php:194 +msgid "Contact has been blocked" +msgstr "コンタクトがブロックされました" -#: src/Module/Conversation/Community.php:80 -msgid "Global Community" -msgstr "グローバルコミュニティ" +#: src/Module/Contact/Profile.php:206 +msgid "Contact has been unignored" +msgstr "コンタクトは無視されていません" -#: src/Module/Conversation/Community.php:83 -msgid "Posts from users of the whole federated network" -msgstr "フェデレーションネットワーク全体のユーザーからの投稿" +#: src/Module/Contact/Profile.php:210 +msgid "Contact has been ignored" +msgstr "コンタクトは無視されました" -#: src/Module/Conversation/Community.php:116 -msgid "Own Contacts" +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" msgstr "" -#: src/Module/Conversation/Community.php:120 -msgid "Include" +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" msgstr "" -#: src/Module/Conversation/Community.php:121 -msgid "Hide" +#: src/Module/Contact/Profile.php:254 +#, php-format +msgid "You are mutual friends with %s" +msgstr "あなたは%sと共通の友達です" + +#: src/Module/Contact/Profile.php:255 +#, php-format +msgid "You are sharing with %s" +msgstr "%sと共有しています" + +#: src/Module/Contact/Profile.php:256 +#, php-format +msgid "%s is sharing with you" +msgstr "%sはあなたと共有しています" + +#: src/Module/Contact/Profile.php:272 +msgid "Private communications are not available for this contact." +msgstr "このコンタクトへのプライベート通信は利用できません。" + +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." msgstr "" -#: src/Module/Conversation/Community.php:149 src/Module/Search/Index.php:139 -#: src/Module/Search/Index.php:181 +#: src/Module/Contact/Profile.php:285 +msgid "Never" +msgstr "全くない" + +#: src/Module/Contact/Profile.php:288 +msgid "(Update was not successful)" +msgstr "(更新は成功しませんでした)" + +#: src/Module/Contact/Profile.php:288 +msgid "(Update was successful)" +msgstr "(更新は成功しました)" + +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 +msgid "Suggest friends" +msgstr "友人のおすすめ" + +#: src/Module/Contact/Profile.php:294 +#, php-format +msgid "Network type: %s" +msgstr "ネットワークの種類: %s" + +#: src/Module/Contact/Profile.php:299 +msgid "Communications lost with this contact!" +msgstr "このコンタクトとの通信が失われました!" + +#: src/Module/Contact/Profile.php:305 +msgid "Fetch further information for feeds" +msgstr "フィードの詳細情報を取得する" + +#: src/Module/Contact/Profile.php:307 +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 "フィード項目からプレビュー画像、タイトル、ティーザーなどの情報を取得します。フィードに多くのテキストが含まれていない場合は、これをアクティブにできます。キーワードはフィード項目のメタヘッダーから取得され、ハッシュタグとして投稿されます。" + +#: src/Module/Contact/Profile.php:310 +msgid "Fetch information" +msgstr "情報を取得する" + +#: src/Module/Contact/Profile.php:311 +msgid "Fetch keywords" +msgstr "キーワードを取得する" + +#: src/Module/Contact/Profile.php:312 +msgid "Fetch information and keywords" +msgstr "情報とキーワードを取得する" + +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 +msgid "No mirroring" +msgstr "ミラーリングなし" + +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 +msgid "Mirror as my own posting" +msgstr "自分の投稿としてミラー" + +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 +msgid "Native reshare" +msgstr "" + +#: src/Module/Contact/Profile.php:353 +msgid "Contact Information / Notes" +msgstr "コンタクト/メモ" + +#: src/Module/Contact/Profile.php:354 +msgid "Contact Settings" +msgstr "コンタクト設定" + +#: src/Module/Contact/Profile.php:362 +msgid "Contact" +msgstr "コンタクト" + +#: src/Module/Contact/Profile.php:366 +msgid "Their personal note" +msgstr "彼らの個人的なメモ" + +#: src/Module/Contact/Profile.php:368 +msgid "Edit contact notes" +msgstr "コンタクトメモを編集する" + +#: src/Module/Contact/Profile.php:372 +msgid "Block/Unblock contact" +msgstr "コンタクトのブロック/ブロック解除" + +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 +msgid "Ignore contact" +msgstr "コンタクトを無視" + +#: src/Module/Contact/Profile.php:374 +msgid "View conversations" +msgstr "会話を見る" + +#: src/Module/Contact/Profile.php:379 +msgid "Last update:" +msgstr "最後の更新:" + +#: src/Module/Contact/Profile.php:381 +msgid "Update public posts" +msgstr "一般公開の投稿を更新" + +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 +msgid "Update now" +msgstr "今すぐ更新" + +#: src/Module/Contact/Profile.php:385 +msgid "Awaiting connection acknowledge" +msgstr "接続確認応答待ち" + +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "現在ブロックされています" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "現在無視されます" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "現在アーカイブ済み" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "" + +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 +msgid "Hide this contact from others" +msgstr "このコンタクトを他の人から隠す" + +#: src/Module/Contact/Profile.php:394 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "一般公開の投稿への返信・いいねは、引き続き表示される場合があります" + +#: src/Module/Contact/Profile.php:395 +msgid "Notification for new posts" +msgstr "新しい投稿の通知" + +#: src/Module/Contact/Profile.php:395 +msgid "Send a notification of every new post of this contact" +msgstr "このコンタクトの新しい投稿ごとに通知を送信する" + +#: src/Module/Contact/Profile.php:397 +msgid "Keyword Deny List" +msgstr "" + +#: src/Module/Contact/Profile.php:397 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "「情報とキーワードの取得」が選択されている場合、ハッシュタグに変換しないキーワードのカンマ区切りリスト" + +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:139 +msgid "Actions" +msgstr "操作" + +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "状態" + +#: src/Module/Contact/Profile.php:423 +msgid "Mirror postings from this contact" +msgstr "このコンタクトからの投稿をミラーリングする" + +#: src/Module/Contact/Profile.php:425 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "このコンタクトをremote_selfとしてマークすると、friendicaがこのコンタクトから新しいエントリを再投稿します。" + +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" +msgstr "" + +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "" + +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "" + +#: src/Module/Contact/Profile.php:502 +msgid "Refetch contact data" +msgstr "コンタクトデータを再取得する" + +#: src/Module/Contact/Profile.php:513 +msgid "Toggle Blocked status" +msgstr "ブロック状態の切り替え" + +#: src/Module/Contact/Profile.php:521 +msgid "Toggle Ignored status" +msgstr "無視ステータスの切り替え" + +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" +msgstr "" + +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 +msgid "Revoke Follow" +msgstr "" + +#: src/Module/Contact/Profile.php:538 +msgid "Revoke the follow from this contact" +msgstr "" + +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "要求の形式が正しくありません。" + +#: src/Module/Contact/Revoke.php:63 +msgid "Unknown contact." +msgstr "" + +#: src/Module/Contact/Revoke.php:77 +msgid "Contact is being deleted." +msgstr "" + +#: src/Module/Contact/Revoke.php:91 +msgid "Follow was successfully revoked." +msgstr "" + +#: src/Module/Contact/Revoke.php:107 +msgid "" +"Do you really want to revoke this contact's follow? This cannot be undone " +"and they will have to manually follow you back again." +msgstr "" + +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "Yes" +msgstr "はい" + +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "利用可能な提案はありません。新しいサイトの場合は、24時間後にもう一度お試しください。" + +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "あなたはこのコンタクトをフォローしていません" + +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "現在、フォロー解除はあなたのネットワークではサポートされていません" + +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "接続・フォローを解除" + +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "" + +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "" + +#: src/Module/Conversation/Channel.php:121 +#: src/Module/Conversation/Community.php:125 src/Module/Search/Index.php:152 +#: src/Module/Search/Index.php:194 msgid "No results." msgstr "結果がありません。" -#: src/Module/Conversation/Community.php:174 +#: src/Module/Conversation/Channel.php:159 +msgid "Channel not available." +msgstr "" + +#: src/Module/Conversation/Community.php:91 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "このコミュニティストリームには、このノードが受信したすべての一般公開投稿が表示されます。このノードのユーザーの意見を反映していない場合があります。" -#: src/Module/Conversation/Community.php:212 +#: src/Module/Conversation/Community.php:179 msgid "Community option not available." msgstr "コミュニティオプションは利用できません。" -#: src/Module/Conversation/Community.php:228 +#: src/Module/Conversation/Community.php:195 msgid "Not available." msgstr "利用不可。" -#: src/Module/Conversation/Network.php:163 -msgid "No such group" -msgstr "そのようなグループはありません" +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "" -#: src/Module/Conversation/Network.php:167 +#: src/Module/Conversation/Network.php:222 #, php-format -msgid "Group: %s" -msgstr "グループ: %s" +msgid "Circle: %s" +msgstr "" -#: src/Module/Conversation/Network.php:243 -msgid "Latest Activity" -msgstr "最近の操作" +#: src/Module/Conversation/Network.php:317 +msgid "Network feed not available." +msgstr "" -#: src/Module/Conversation/Network.php:246 -msgid "Sort by latest activity" -msgstr "最終更新順に並び替え" +#: src/Module/Conversation/Timeline.php:158 +msgid "Own Contacts" +msgstr "" -#: src/Module/Conversation/Network.php:251 -msgid "Latest Posts" -msgstr "最新の投稿" +#: src/Module/Conversation/Timeline.php:162 +msgid "Include" +msgstr "" -#: src/Module/Conversation/Network.php:254 -msgid "Sort by post received date" -msgstr "投稿を受信した順に並び替え" - -#: src/Module/Conversation/Network.php:259 -#: src/Module/Settings/Profile/Index.php:242 -msgid "Personal" -msgstr "パーソナル" - -#: src/Module/Conversation/Network.php:262 -msgid "Posts that mention or involve you" -msgstr "あなたに言及または関与している投稿" - -#: src/Module/Conversation/Network.php:267 src/Object/Post.php:334 -msgid "Starred" -msgstr "スター付き" - -#: src/Module/Conversation/Network.php:270 -msgid "Favourite Posts" -msgstr "お気に入りの投稿" +#: src/Module/Conversation/Timeline.php:163 +msgid "Hide" +msgstr "" #: src/Module/Credits.php:44 msgid "Credits" @@ -7981,23 +6710,30 @@ msgid "" "code or the translation of Friendica. Thank you all!" msgstr "Friendicaはコミュニティプロジェクトであり、多くの人々の助けがなければ不可能です。以下は、Friendicaのコードまたは翻訳に貢献した人のリストです。皆さん、ありがとうございました!" -#: src/Module/Debug/ActivityPubConversion.php:58 +#: src/Module/Debug/ActivityPubConversion.php:53 msgid "Formatted" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:70 +#: src/Module/Debug/ActivityPubConversion.php:65 msgid "Activity" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:118 +#: src/Module/Debug/ActivityPubConversion.php:117 msgid "Object data" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:125 +#: src/Module/Debug/ActivityPubConversion.php:124 msgid "Result Item" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:139 +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "エラー" + +#: src/Module/Debug/ActivityPubConversion.php:138 msgid "Source activity" msgstr "" @@ -8177,12 +6913,12 @@ msgstr "HTML" 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/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:177 msgid "You must be logged in to use this module" msgstr "このモジュールを使用するにはログインする必要があります" -#: src/Module/Debug/Feed.php:63 +#: src/Module/Debug/Feed.php:77 msgid "Source URL" msgstr "ソースURL" @@ -8219,386 +6955,306 @@ msgstr "タイムゾーンを選択してください:" msgid "Only logged in users are permitted to perform a probing." msgstr "ログインしているユーザーのみがプローブを実行できます。" -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:52 msgid "Probe Diagnostic" msgstr "" -#: src/Module/Debug/Probe.php:54 +#: src/Module/Debug/Probe.php:53 msgid "Output" msgstr "出力" -#: src/Module/Debug/Probe.php:57 +#: src/Module/Debug/Probe.php:56 msgid "Lookup address" msgstr "ルックアップアドレス" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:50 msgid "Webfinger Diagnostic" msgstr "" -#: src/Module/Debug/WebFinger.php:54 +#: src/Module/Debug/WebFinger.php:52 msgid "Lookup address:" msgstr "" -#: src/Module/Delegation.php:147 +#: src/Module/Delegation.php:110 +#, php-format +msgid "You are now logged in as %s" +msgstr "" + +#: src/Module/Delegation.php:142 msgid "Switch between your accounts" msgstr "" -#: src/Module/Delegation.php:148 +#: src/Module/Delegation.php:143 msgid "Manage your accounts" msgstr "" -#: src/Module/Delegation.php:149 +#: src/Module/Delegation.php:144 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "アカウントの詳細を共有する、または「管理」権限が付与されているさまざまなIDまたはコミュニティ/グループページを切り替える" -#: src/Module/Delegation.php:150 +#: src/Module/Delegation.php:145 msgid "Select an identity to manage: " msgstr "管理するIDを選択します。" -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:74 msgid "No entries (some entries may be hidden)." msgstr "エントリなし(一部のエントリは非表示になる場合があります)" -#: src/Module/Directory.php:99 +#: src/Module/Directory.php:90 msgid "Find on this site" msgstr "このサイトで見つける" -#: src/Module/Directory.php:101 +#: src/Module/Directory.php:92 msgid "Results for:" msgstr "の結果:" -#: src/Module/Directory.php:103 +#: src/Module/Directory.php:94 msgid "Site Directory" msgstr "サイトディレクトリ" -#: src/Module/Filer/RemoveTag.php:69 -msgid "Item was not removed" -msgstr "" - -#: src/Module/Filer/RemoveTag.php:72 +#: src/Module/Filer/RemoveTag.php:105 msgid "Item was not deleted" msgstr "" -#: src/Module/Filer/SaveTag.php:69 +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "" + +#: src/Module/Filer/SaveTag.php:73 msgid "- select -" msgstr "-選択-" -#: src/Module/FriendSuggest.php:65 +#: src/Module/FriendSuggest.php:82 msgid "Suggested contact not found." msgstr "推奨コンタクトが見つかりません。" -#: src/Module/FriendSuggest.php:84 +#: src/Module/FriendSuggest.php:100 msgid "Friend suggestion sent." msgstr "友達の提案が送信されました。" -#: src/Module/FriendSuggest.php:121 +#: src/Module/FriendSuggest.php:137 msgid "Suggest Friends" msgstr "友人を示唆しています" -#: src/Module/FriendSuggest.php:124 +#: src/Module/FriendSuggest.php:140 #, php-format msgid "Suggest a friend for %s" msgstr "%s友達を提案する" -#: src/Module/Friendica.php:61 +#: src/Module/Friendica.php:82 msgid "Installed addons/apps:" msgstr "インストールされたアドオン/アプリ:" -#: src/Module/Friendica.php:66 +#: src/Module/Friendica.php:87 msgid "No installed addons/apps" msgstr "アドオン/アプリがインストールされていません" -#: src/Module/Friendica.php:71 +#: src/Module/Friendica.php:92 #, php-format msgid "Read about the Terms of Service of this node." msgstr "このノードの利用規約について読んでください。" -#: src/Module/Friendica.php:78 +#: src/Module/Friendica.php:99 msgid "On this server the following remote servers are blocked." msgstr "このサーバーでは、次のリモートサーバーがブロックされています。" -#: src/Module/Friendica.php:96 +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +msgid "Reason for the block" +msgstr "ブロックの理由" + +#: src/Module/Friendica.php:104 +msgid "Download this list in CSV format" +msgstr "" + +#: src/Module/Friendica.php:118 #, 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 "これは、Webロケーション%s実行されているFriendicaバージョン%sです。データベースのバージョンは%s 、更新後のバージョンは%sです。" -#: src/Module/Friendica.php:101 +#: src/Module/Friendica.php:123 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "Friendicaプロジェクトの詳細については、 Friendi.ca をご覧ください。" -#: src/Module/Friendica.php:102 +#: src/Module/Friendica.php:124 msgid "Bug reports and issues: please visit" msgstr "バグレポートと問題:こちらをご覧ください" -#: src/Module/Friendica.php:102 +#: src/Module/Friendica.php:124 msgid "the bugtracker at github" msgstr "githubのバグトラッカー" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:125 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "提案、ファンレターなどを \"info \" at \"friendi - dot - ca\"でお待ちしております。" -#: src/Module/Group.php:61 -msgid "Could not create group." -msgstr "グループを作成できませんでした。" +#: src/Module/HCard.php:45 +msgid "No profile" +msgstr "プロフィールなし" -#: src/Module/Group.php:72 src/Module/Group.php:214 src/Module/Group.php:238 -msgid "Group not found." -msgstr "グループが見つかりません。" - -#: src/Module/Group.php:78 -msgid "Group name was not changed." -msgstr "グループ名は変更されませんでした。" - -#: src/Module/Group.php:100 -msgid "Unknown group." -msgstr "不明なグループ。" - -#: src/Module/Group.php:109 -msgid "Contact is deleted." -msgstr "コンタクトが削除されます。" - -#: src/Module/Group.php:115 -msgid "Unable to add the contact to the group." -msgstr "グループにコンタクトを追加できません。" - -#: src/Module/Group.php:118 -msgid "Contact successfully added to group." -msgstr "グループにコンタクトを追加しました。" - -#: src/Module/Group.php:122 -msgid "Unable to remove the contact from the group." -msgstr "グループからコンタクトを削除できません。" - -#: src/Module/Group.php:125 -msgid "Contact successfully removed from group." -msgstr "グループからコンタクトを削除しました。" - -#: src/Module/Group.php:128 -msgid "Unknown group command." -msgstr "不明なグループコマンド。" - -#: src/Module/Group.php:131 -msgid "Bad request." -msgstr "要求の形式が正しくありません。" - -#: src/Module/Group.php:170 -msgid "Save Group" -msgstr "グループを保存" - -#: src/Module/Group.php:171 -msgid "Filter" -msgstr "フィルタ" - -#: src/Module/Group.php:177 -msgid "Create a group of contacts/friends." -msgstr "コンタクト/友人のグループを作成します。" - -#: src/Module/Group.php:219 -msgid "Unable to remove group." -msgstr "グループを削除できません。" - -#: src/Module/Group.php:270 -msgid "Delete Group" -msgstr "グループを削除" - -#: src/Module/Group.php:280 -msgid "Edit Group Name" -msgstr "グループ名を編集" - -#: src/Module/Group.php:290 -msgid "Members" -msgstr "会員" - -#: src/Module/Group.php:293 -msgid "Group is empty" -msgstr "グループは空です" - -#: src/Module/Group.php:306 -msgid "Remove contact from group" -msgstr "グループからコンタクトを削除" - -#: src/Module/Group.php:327 -msgid "Click on a contact to add or remove." -msgstr "コンタクトをクリックして追加・削除" - -#: src/Module/Group.php:341 -msgid "Add contact to group" -msgstr "グループにコンタクトを追加" - -#: src/Module/HTTPException/MethodNotAllowed.php:32 +#: src/Module/HTTPException/MethodNotAllowed.php:31 msgid "Method Not Allowed." msgstr "そのメソッドは許可されていません。" -#: src/Module/Help.php:62 +#: src/Module/Help.php:60 msgid "Help:" msgstr "ヘルプ:" -#: src/Module/Home.php:54 +#: src/Module/Home.php:63 #, php-format msgid "Welcome to %s" msgstr "%sへようこそ" -#: src/Module/HoverCard.php:47 -msgid "No profile" -msgstr "プロフィールなし" - -#: src/Module/Install.php:188 +#: src/Module/Install.php:189 msgid "Friendica Communications Server - Setup" msgstr "Friendica Communications Server-セットアップ" -#: src/Module/Install.php:199 +#: src/Module/Install.php:200 msgid "System check" msgstr "システムチェック" -#: src/Module/Install.php:201 src/Module/Install.php:258 -#: src/Module/Install.php:341 +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 msgid "Requirement not satisfied" msgstr "要件を満たしていない" -#: src/Module/Install.php:202 +#: src/Module/Install.php:203 msgid "Optional requirement not satisfied" msgstr "オプションの要件を満たしていない" -#: src/Module/Install.php:203 +#: src/Module/Install.php:204 msgid "OK" msgstr "" #: src/Module/Install.php:208 +msgid "Next" +msgstr "次" + +#: src/Module/Install.php:209 msgid "Check again" msgstr "再び確かめる" -#: src/Module/Install.php:223 +#: src/Module/Install.php:222 msgid "Base settings" msgstr "基本設定" -#: src/Module/Install.php:230 -msgid "Host name" -msgstr "ホスト名" - -#: src/Module/Install.php:232 -msgid "" -"Overwrite this field in case the determinated hostname isn't right, " -"otherweise leave it as is." -msgstr "決定されたホスト名が正しくない場合、このフィールドを上書きします。そうでない場合はそのままにします。" - -#: src/Module/Install.php:235 +#: src/Module/Install.php:224 msgid "Base path to installation" msgstr "インストールへの基本パス" -#: src/Module/Install.php:237 +#: src/Module/Install.php:226 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 "システムがインストールへの正しいパスを検出できない場合は、ここに正しいパスを入力します。この設定は、制限されたシステムとWebルートへのシンボリックリンクを使用している場合にのみ設定する必要があります。" -#: src/Module/Install.php:240 -msgid "Sub path of the URL" -msgstr "URLのサブパス" +#: src/Module/Install.php:229 +msgid "The Friendica system URL" +msgstr "" + +#: src/Module/Install.php:231 +msgid "" +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." +msgstr "" #: 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 "サブパスの決定が正しくない場合はこのフィールドを上書きし、そうでない場合はそのままにしておきます。このフィールドを空白のままにすると、サブパスなしでベースURLにインストールされます。" - -#: src/Module/Install.php:253 msgid "Database connection" msgstr "データベース接続" -#: src/Module/Install.php:254 +#: src/Module/Install.php:243 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Friendicaをインストールするには、データベースへの接続方法を知る必要があります。" -#: src/Module/Install.php:255 +#: src/Module/Install.php:244 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "これらの設定について質問がある場合は、ホスティングプロバイダーまたはサイト管理者にお問い合わせください。" -#: src/Module/Install.php:256 +#: src/Module/Install.php:245 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "以下で指定するデータベースはすでに存在している必要があります。存在しない場合は、続行する前に作成してください。" -#: src/Module/Install.php:265 +#: src/Module/Install.php:252 msgid "Database Server Name" msgstr "データベースサーバー名" -#: src/Module/Install.php:270 +#: src/Module/Install.php:257 msgid "Database Login Name" msgstr "データベースのログイン名" -#: src/Module/Install.php:276 +#: src/Module/Install.php:263 msgid "Database Login Password" msgstr "データベースログインパスワード" -#: src/Module/Install.php:278 +#: src/Module/Install.php:265 msgid "For security reasons the password must not be empty" msgstr "セキュリティ上の理由から、パスワードを空にしないでください" -#: src/Module/Install.php:281 +#: src/Module/Install.php:268 msgid "Database Name" msgstr "データベース名" -#: src/Module/Install.php:285 src/Module/Install.php:315 +#: src/Module/Install.php:272 src/Module/Install.php:300 msgid "Please select a default timezone for your website" msgstr "ウェブサイトのデフォルトのタイムゾーンを選択してください" -#: src/Module/Install.php:300 +#: src/Module/Install.php:287 msgid "Site settings" msgstr "サイト設定" -#: src/Module/Install.php:310 +#: src/Module/Install.php:295 msgid "Site administrator email address" msgstr "サイト管理者のメールアドレス" -#: src/Module/Install.php:312 +#: src/Module/Install.php:297 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "ウェブ管理パネルを使用するには、アカウントのメールアドレスがこれと一致する必要があります。" -#: src/Module/Install.php:319 +#: src/Module/Install.php:304 msgid "System Language:" msgstr "システムの言語:" -#: src/Module/Install.php:321 +#: src/Module/Install.php:306 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "Friendicaインストールインターフェイスのデフォルト言語を設定し、メールを送信します。" -#: src/Module/Install.php:333 +#: src/Module/Install.php:318 msgid "Your Friendica site database has been installed." msgstr "Friendicaサイトデータベースがインストールされました。" -#: src/Module/Install.php:343 +#: src/Module/Install.php:328 msgid "Installation finished" msgstr "インストール完了" -#: src/Module/Install.php:363 +#: src/Module/Install.php:348 msgid "

    What next

    " msgstr "

    次は何でしょうか

    " -#: src/Module/Install.php:364 +#: src/Module/Install.php:349 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "重要:ワーカーのスケジュールされたタスクを[手動で]設定する必要があります。" -#: src/Module/Install.php:367 +#: src/Module/Install.php:352 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -8606,39 +7262,39 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "新しいFriendicaノード登録ページに移動して、新しいユーザーとして登録します。管理者の電子メールとして入力したものと同じ電子メールを使用することを忘れないでください。これにより、サイト管理者パネルに入ることができます。" -#: src/Module/Invite.php:55 +#: src/Module/Invite.php:57 msgid "Total invitation limit exceeded." msgstr "合計招待制限を超えました。" -#: src/Module/Invite.php:78 +#: src/Module/Invite.php:82 #, php-format msgid "%s : Not a valid email address." msgstr "%s :有効なメールアドレスではありません。" -#: src/Module/Invite.php:104 +#: src/Module/Invite.php:108 msgid "Please join us on Friendica" msgstr "Friendicaにご参加ください" -#: src/Module/Invite.php:113 +#: src/Module/Invite.php:117 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "招待制限を超えました。サイト管理者に連絡してください。" -#: src/Module/Invite.php:117 +#: src/Module/Invite.php:121 #, php-format msgid "%s : Message delivery failed." msgstr "%s :メッセージの配信に失敗しました。" -#: src/Module/Invite.php:121 +#: src/Module/Invite.php:125 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%dメッセージを送信しました。" -#: src/Module/Invite.php:139 +#: src/Module/Invite.php:143 msgid "You have no more invitations available" msgstr "利用可能な招待はもうありません" -#: src/Module/Invite.php:146 +#: src/Module/Invite.php:150 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -8646,14 +7302,14 @@ msgid "" " other social networks." msgstr "参加できる公開サイトのリストについては、 %sにアクセスしてください。他のサイトのFriendicaメンバーは、他の多くのソーシャルネットワークのメンバーと同様に、お互いに接続できます。" -#: src/Module/Invite.php:148 +#: src/Module/Invite.php:152 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "この招待を受け入れるには、 %sまたはその他の公開Friendica Webサイトにアクセスして登録してください。" -#: src/Module/Invite.php:149 +#: src/Module/Invite.php:153 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -8662,88 +7318,98 @@ msgid "" "sites you can join." msgstr "Friendicaサイトはすべて相互接続して、メンバーが所有および管理する、プライバシーが強化された巨大なソーシャルWebを作成します。また、多くの従来のソーシャルネットワークに接続できます。参加できるFriendicaサイトのリストについては、 %sをご覧ください。" -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:157 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "申し訳ございません。このシステムは現在、他の公開サイトに接続したり、メンバーを招待するようには構成されていません。" -#: src/Module/Invite.php:156 +#: src/Module/Invite.php:160 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "Friendicaサイトはすべて相互接続して、メンバーが所有および管理する、プライバシーが強化された巨大なソーシャルWebを作成します。また、多くの従来のソーシャルネットワークに接続できます。" -#: src/Module/Invite.php:155 +#: src/Module/Invite.php:159 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "この招待を受け入れるには、 %sアクセスして登録してください。" -#: src/Module/Invite.php:163 +#: src/Module/Invite.php:167 msgid "Send invitations" msgstr "招待状を送信する" -#: src/Module/Invite.php:164 +#: src/Module/Invite.php:168 msgid "Enter email addresses, one per line:" msgstr "電子メールアドレスを1行に1つずつ入力します。" -#: src/Module/Invite.php:168 +#: src/Module/Invite.php:172 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Friendicaで私や他の親しい友人と一緒に参加してください。より良いソーシャルWebの作成を手伝ってください。" -#: src/Module/Invite.php:170 +#: src/Module/Invite.php:174 msgid "You will need to supply this invitation code: $invite_code" msgstr "この招待コードを提供する必要があります:$ invite_code" -#: src/Module/Invite.php:170 +#: src/Module/Invite.php:174 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "登録したら、次のプロフィールページから接続してください。" -#: src/Module/Invite.php:172 +#: src/Module/Invite.php:176 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "Friendicaプロジェクトの詳細と、それが重要だと感じる理由については、http://friendi.caをご覧ください。" -#: src/Module/Item/Compose.php:46 +#: src/Module/Item/Compose.php:85 msgid "Please enter a post body." msgstr "投稿本文を入力してください。" -#: src/Module/Item/Compose.php:59 +#: src/Module/Item/Compose.php:98 msgid "This feature is only available with the frio theme." msgstr "この機能は、frioテーマでのみ使用可能です。" -#: src/Module/Item/Compose.php:86 +#: src/Module/Item/Compose.php:122 msgid "Compose new personal note" msgstr "新しい個人メモを作成する" -#: src/Module/Item/Compose.php:95 +#: src/Module/Item/Compose.php:131 msgid "Compose new post" msgstr "新しい投稿を作成" -#: src/Module/Item/Compose.php:135 +#: src/Module/Item/Compose.php:187 msgid "Visibility" msgstr "公開範囲" -#: src/Module/Item/Compose.php:156 +#: src/Module/Item/Compose.php:203 msgid "Clear the location" msgstr "場所をクリアする" -#: src/Module/Item/Compose.php:157 +#: src/Module/Item/Compose.php:204 msgid "Location services are unavailable on your device" msgstr "デバイスで位置情報サービスを利用できません" -#: src/Module/Item/Compose.php:158 +#: src/Module/Item/Compose.php:205 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "位置情報サービスは無効になっています。お使いのデバイスでウェブサイトの権限を確認してください" -#: src/Module/Item/Follow.php:52 +#: src/Module/Item/Compose.php:211 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "" + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "この項目のフィードは利用できません。" + +#: src/Module/Item/Follow.php:51 msgid "Unable to follow this item." msgstr "" @@ -8758,100 +7424,1093 @@ msgid "" "condition should be temporary, please come back in a few minutes." msgstr "" -#: src/Module/Manifest.php:42 +#: src/Module/Manifest.php:40 msgid "A Decentralized Social Network" msgstr "分権化されたソーシャルネットワーク" -#: src/Module/Notifications/Introductions.php:78 +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "ファイル" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload" +msgstr "アップロードする" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "すいません、サーバのPHP設定で許可されたサイズよりも大きいファイルをアップロードしている可能性があります。" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "または、空のファイルをアップロードしようとしていませんか?" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "ファイルサイズ上限 %s を超えています。" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "アップロードが失敗しました。" + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:68 +msgid "Unable to process image." +msgstr "画像を処理できません。" + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:95 +msgid "Image upload failed." +msgstr "画像アップロードに失敗しました。" + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "通常のアカウントページ" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "Soapboxページ" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "自動友達ページ" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "個人ページ" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "組織ページ" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "ニュースページ" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "中継" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s はコンタクトのブロックを解除しました" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "リモートコンタクトブロックリスト" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "このページを使用すると、リモートコンタクトからのメッセージがあなたのノードに届かないようにできます。" + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "リモートコンタクトをブロック" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "すべて選択" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "どれも選択しない" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "このノードからのリモートコンタクトはブロックされていません。" + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "ブロックされたリモートコンタクト" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "新しいリモートコンタクトをブロック" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "写真" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "理由" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "%s 件のブロック済みコンタクト" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "ブロックするリモートコンタクトのURL。" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "ブロックの理由" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "サーバードメインパターン" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "ブロック理由" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +msgid "Blocked server domain pattern" +msgstr "ブロックされたサーバードメインパターン" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "サーバードメインパターンの削除" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "ブロックリストからこのエントリを削除する場合にチェックします" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "サーバードメインパターンブロックリスト" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +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 "ブロックされたサーバードメインパターンのリストは、 /friendica ページで公開され、ユーザーやコミュニケーションの問題を調査している人々が理由を簡単に見つけることができます。" + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "変更をブロックリストに保存する" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "ブロックリストの現在のエントリ" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "削除対象としてマークされた項目。" + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "この項目を削除" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "このページでは、ノードから項目を削除できます。項目がトップレベルの投稿である場合、スレッド全体が削除されます。" + +#: src/Module/Moderation/Item/Delete.php:65 +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 "項目のGUIDを知る必要があります。たとえば、表示URLを調べることで見つけることができます。たとえば http://example.com/display/123456 の最後の部分がGUIDであり、ここでは123456です。" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "削除する項目のGUID。" + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "タイプ" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "項目が見つかりません" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "項目GUID" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "" + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "" + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "通常アカウント" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "自動フォロワーアカウント" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "自動友達アカウント" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "ブログアカウント" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "登録ユーザー" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "保留中の登録" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "%sユーザーがブロックされました" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "自分を削除することはできません" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%sユーザーが削除されました" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "ユーザー\"%s\"が削除されました" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "ユーザー\"%s\"がブロックされました" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "登録日" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "前回のログイン" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "ユーザーがブロックされました" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "サイト管理者" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "アカウントの有効期限が切れました" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "選択したユーザーは削除されます!\n\nこれらのユーザーがこのサイトに投稿したものはすべて完全に削除されます!\n\nよろしいですか?" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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}は削除されます!\n\nこのユーザーがこのサイトに投稿したものはすべて完全に削除されます!\n\nよろしいですか?" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "%sユーザーのブロックを解除しました" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "ユーザー\"%s\"のブロックを解除しました" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "新しいユーザー" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "ユーザーを追加する" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "新しいユーザーの名前。" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "ニックネーム" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "新しいユーザーのニックネーム。" + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "新しいユーザーのメールアドレス。" + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "永久削除" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "永久削除を待っているユーザー" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "アカウントが承認されました。" + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "依頼日" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "登録なし。" + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "ユーザーからのメモ" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "拒否する" + +#: src/Module/Notifications/Introductions.php:99 msgid "Show Ignored Requests" msgstr "無視されたリクエストを表示" -#: src/Module/Notifications/Introductions.php:78 +#: src/Module/Notifications/Introductions.php:99 msgid "Hide Ignored Requests" msgstr "無視されたリクエストを隠す" -#: src/Module/Notifications/Introductions.php:94 -#: src/Module/Notifications/Introductions.php:163 +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 msgid "Notification type:" msgstr "通知の種類:" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Notifications/Introductions.php:118 msgid "Suggested by:" msgstr "によって提案されました:" -#: src/Module/Notifications/Introductions.php:122 +#: src/Module/Notifications/Introductions.php:143 msgid "Claims to be known to you: " msgstr "あなたに知られているという主張:" -#: src/Module/Notifications/Introductions.php:131 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "No" +msgstr "いいえ" + +#: src/Module/Notifications/Introductions.php:152 msgid "Shall your connection be bidirectional or not?" msgstr "つながりを相互フォローにしてもよいですか?" -#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:153 #, 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 を友達として受け入れた場合、%s はあなたの投稿を購読できます。また、あなたのニュースフィードにこのアカウントの投稿が表示されます。" -#: src/Module/Notifications/Introductions.php:133 +#: src/Module/Notifications/Introductions.php:154 #, 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を購読者として受け入れると、このアカウントはあなたの投稿を購読できますが、このアカウントからの投稿はあなたのニュースフィードに表示されません。" -#: src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:156 msgid "Friend" msgstr "ともだち" -#: src/Module/Notifications/Introductions.php:136 +#: src/Module/Notifications/Introductions.php:157 msgid "Subscriber" msgstr "購読者" -#: src/Module/Notifications/Introductions.php:201 +#: src/Module/Notifications/Introductions.php:216 msgid "No introductions." msgstr "招待はありません。" -#: src/Module/Notifications/Introductions.php:202 -#: src/Module/Notifications/Notifications.php:133 +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 #, php-format msgid "No more %s notifications." msgstr "これ以上%s通知はありません。" -#: src/Module/Notifications/Notification.php:103 +#: src/Module/Notifications/Notification.php:135 msgid "You must be logged in to show this page." msgstr "このページを表示するにはログインする必要があります" -#: src/Module/Notifications/Notifications.php:50 +#: src/Module/Notifications/Notifications.php:66 msgid "Network Notifications" msgstr "ネットワーク通知" -#: src/Module/Notifications/Notifications.php:58 +#: src/Module/Notifications/Notifications.php:72 msgid "System Notifications" msgstr "システム通知" -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:78 msgid "Personal Notifications" msgstr "個人的な通知" -#: src/Module/Notifications/Notifications.php:74 +#: src/Module/Notifications/Notifications.php:84 msgid "Home Notifications" msgstr "ホーム通知" -#: src/Module/Notifications/Notifications.php:138 +#: src/Module/Notifications/Notifications.php:140 msgid "Show unread" msgstr "未読を表示" -#: src/Module/Notifications/Notifications.php:138 -msgid "Show all" -msgstr "すべて表示する" +#: src/Module/Notifications/Ping.php:246 +msgid "{0} requested registration" +msgstr "{0}は登録をリクエストしました" + +#: src/Module/Notifications/Ping.php:255 +#, php-format +msgid "{0} and %d others requested registration" +msgstr "" + +#: src/Module/OAuth/Acknowledge.php:51 +msgid "Authorize application connection" +msgstr "アプリからの接続を承認します" + +#: src/Module/OAuth/Acknowledge.php:53 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "このアプリケーションによる、あなたの投稿・コンタクトの読み取りや、新しい投稿の作成を許可しますか?" #: src/Module/OAuth/Authorize.php:54 msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:58 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 msgid "Incomplete request data" msgstr "" @@ -8862,246 +8521,331 @@ msgid "" "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:82 +#: src/Module/OAuth/Token.php:83 +msgid "Invalid data or unknown client" +msgstr "" + +#: src/Module/OAuth/Token.php:108 msgid "Unsupported or missing grant type" msgstr "" -#: src/Module/PermissionTooltip.php:25 +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "Ostatusコンタクトをもう一度購読します" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "ウィンドウを閉じずにお待ちください…" + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "コンタクトは提供されていません。" + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "コンタクトの情報を取得できませんでした。" + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "コンタクトの友達関係を取得できませんでした。" + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "完了" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "成功" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "失敗" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "無視" + +#: src/Module/PermissionTooltip.php:49 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "" -#: src/Module/PermissionTooltip.php:38 +#: src/Module/PermissionTooltip.php:79 msgid "Model not found" msgstr "モジュールが見つかりません" -#: src/Module/PermissionTooltip.php:60 +#: src/Module/PermissionTooltip.php:94 +msgid "Unlisted" +msgstr "" + +#: src/Module/PermissionTooltip.php:112 msgid "Remote privacy information not available." msgstr "リモートプライバシー情報は利用できません。" -#: src/Module/PermissionTooltip.php:71 +#: src/Module/PermissionTooltip.php:121 msgid "Visible to:" msgstr "表示先:" -#: src/Module/Photo.php:93 +#: src/Module/PermissionTooltip.php:204 +#, php-format +msgid "Collection (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:208 +#, php-format +msgid "Followers (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:227 +#, php-format +msgid "%d more" +msgstr "" + +#: src/Module/PermissionTooltip.php:231 +#, php-format +msgid "To: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:234 +#, php-format +msgid "CC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:237 +#, php-format +msgid "BCC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "" + +#: src/Module/Photo.php:130 +msgid "The Photo is not available." +msgstr "" + +#: src/Module/Photo.php:155 #, php-format msgid "The Photo with id %s is not available." msgstr "ID%sの写真は利用できません" -#: src/Module/Photo.php:111 +#: src/Module/Photo.php:192 +#, php-format +msgid "Invalid external resource with url %s." +msgstr "" + +#: src/Module/Photo.php:194 #, php-format msgid "Invalid photo with id %s." msgstr "ID %s の写真が無効です。" -#: src/Module/Profile/Contacts.php:121 +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "" + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "投稿を編集" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "ウェブリンク" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "ビデオリンクを挿入" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "ビデオリンク" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "オーディオリンクを挿入" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "オーディオリンク" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "タグの削除" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "削除するタグを選択:" + +#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "削除" + +#: src/Module/Profile/Contacts.php:159 msgid "No contacts." msgstr "コンタクトはありません。" -#: src/Module/Profile/Profile.php:135 +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "%sのタイムライン" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "%sの投稿" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "%sのコメント" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:59 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "画像サイズ上限 %s を超えています。" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "画像のアップロードが完了しませんでした。もう一度お試しください" + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "画像ファイルがありません" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "サーバーは現在、新しいファイルのアップロードを受け入れられません。管理者に連絡してください" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "画像ファイルが空です。" + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "アルバムを見る" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +msgid "Profile not found." +msgstr "プロフィールが見つかりません。" + +#: src/Module/Profile/Profile.php:158 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "" -#: src/Module/Profile/Profile.php:149 +#: src/Module/Profile/Profile.php:167 +msgid "Full Name:" +msgstr "フルネーム:" + +#: src/Module/Profile/Profile.php:172 msgid "Member since:" msgstr "以来のメンバー:" -#: src/Module/Profile/Profile.php:155 +#: src/Module/Profile/Profile.php:178 msgid "j F, Y" msgstr "j F, Y" -#: src/Module/Profile/Profile.php:156 +#: src/Module/Profile/Profile.php:179 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 msgid "Birthday:" msgstr "お誕生日:" -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 msgid "Age: " msgstr "年齢:" -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "%d歳" -#: src/Module/Profile/Profile.php:230 -msgid "Forums:" -msgstr "フォーラム:" +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "説明:" -#: src/Module/Profile/Profile.php:242 +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "" + +#: src/Module/Profile/Profile.php:273 msgid "View profile as:" msgstr "" -#: src/Module/Profile/Profile.php:259 +#: src/Module/Profile/Profile.php:290 msgid "View as" msgstr "" -#: 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のタイムライン" +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "プロフィールを利用できません。" -#: 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の投稿" +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "無効なロケーター" -#: 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のコメント" - -#: src/Module/Register.php:69 -msgid "Only parent users can create additional accounts." -msgstr "追加アカウントを作成できるのは親ユーザのみです。" - -#: src/Module/Register.php:101 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking \"Register\"." -msgstr "(オプションで)OpenIDを提供し、「登録」をクリックして、OpenIDを介してこのフォームに入力できます。" - -#: 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 "OpenIDに慣れていない場合は、そのフィールドを空白のままにして、残りの項目を入力してください。" - -#: src/Module/Register.php:103 -msgid "Your OpenID (optional): " -msgstr "OpenID(オプション):" - -#: src/Module/Register.php:112 -msgid "Include your profile in member directory?" -msgstr "メンバーディレクトリにプロフィールを含めますか?" - -#: src/Module/Register.php:135 -msgid "Note for the admin" -msgstr "管理者への注意" - -#: src/Module/Register.php:135 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "このノードに参加する理由、管理者へのメッセージを残す" - -#: src/Module/Register.php:136 -msgid "Membership on this site is by invitation only." -msgstr "このサイトのメンバーシップは招待のみです。" - -#: src/Module/Register.php:137 -msgid "Your invitation code: " -msgstr "招待コード:" - -#: src/Module/Register.php:145 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "あなたの氏名(例:ジョー・スミス、本物または本物のような):" - -#: src/Module/Register.php:146 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "あなたのメールアドレス:(初回の情報はそこに送信されますので、これは既存のアドレスでなければなりません。)" - -#: src/Module/Register.php:147 -msgid "Please repeat your e-mail address:" -msgstr "メールアドレスを再入力してください。" - -#: src/Module/Register.php:149 -msgid "Leave empty for an auto generated password." -msgstr "自動生成されたパスワードの場合は空のままにします。" - -#: 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 "プロフィールのニックネームを選択します。これはテキスト文字で始まる必要があります。このサイトのプロフィールアドレスは\" nickname@%s \"になります。" - -#: src/Module/Register.php:152 -msgid "Choose a nickname: " -msgstr "ニックネームを選択:" - -#: src/Module/Register.php:161 -msgid "Import your profile to this friendica instance" -msgstr "このfriendicaインスタンスにプロフィールをインポートします" - -#: src/Module/Register.php:168 -msgid "Note: This node explicitly contains adult content" -msgstr "注:このノードには、露骨なアダルトコンテンツが含まれています" - -#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 -msgid "Parent Password:" -msgstr "親パスワード:" - -#: 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 "リクエストの確認のため、親アカウントのパスワードを入力してください。" - -#: src/Module/Register.php:199 -msgid "Password doesn't match." -msgstr "パスワードが一致しません。" - -#: src/Module/Register.php:205 -msgid "Please enter your password." -msgstr "パスワードを入力してください。" - -#: src/Module/Register.php:247 -msgid "You have entered too much information." -msgstr "入力件数が多すぎます" - -#: src/Module/Register.php:271 -msgid "Please enter the identical mail address in the second field." -msgstr "2番目の入力欄に同じメールアドレスを再入力してください。" - -#: src/Module/Register.php:298 -msgid "The additional account was created." -msgstr "追加アカウントが作成されました。" - -#: src/Module/Register.php:323 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "登録に成功。詳細については、メールを確認してください。" - -#: 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 "メールを送信できませんでした。ここでアカウントの詳細:
    ログイン: %s
    パスワード: %s

    ログイン後にパスワードを変更できます。" - -#: src/Module/Register.php:333 -msgid "Registration successful." -msgstr "登録に成功。" - -#: src/Module/Register.php:338 src/Module/Register.php:345 -msgid "Your registration can not be processed." -msgstr "登録を処理できません。" - -#: src/Module/Register.php:344 -msgid "You have to leave a request note for the admin." -msgstr "管理者へリクエストする内容を書く必要があります。" - -#: src/Module/Register.php:390 -msgid "Your registration is pending approval by the site owner." -msgstr "登録はサイト所有者による承認待ちです。" - -#: src/Module/RemoteFollow.php:67 +#: src/Module/Profile/RemoteFollow.php:95 msgid "The provided profile link doesn't seem to be valid" msgstr "" -#: src/Module/RemoteFollow.php:105 +#: src/Module/Profile/RemoteFollow.php:100 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "あなたのネットワークではリモート購読ができません。あなたのシステム上で直接購読してください。" + +#: src/Module/Profile/RemoteFollow.php:128 +msgid "Friend/Connection Request" +msgstr "友達/接続リクエスト" + +#: src/Module/Profile/RemoteFollow.php:129 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -9109,78 +8853,314 @@ msgid "" " or %s directly on your system." msgstr "" -#: src/Module/Search/Index.php:54 +#: src/Module/Profile/RemoteFollow.php:130 +#, 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 "まだ'自由なソーシャルウェブ'のメンバーでない場合は、このリンクをクリックして、Friendicaの公開サイトを見つけて、今すぐ参加してください。" + +#: src/Module/Profile/RemoteFollow.php:131 +msgid "Your Webfinger address or profile URL:" +msgstr "" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "" + +#: src/Module/Profile/Schedule.php:83 +msgid "Scheduled" +msgstr "" + +#: src/Module/Profile/Schedule.php:84 +msgid "Content" +msgstr "" + +#: src/Module/Profile/Schedule.php:85 +msgid "Remove post" +msgstr "" + +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "" + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "あなたのホームロケーションを確認できません。" + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "" + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "一日のウォールメッセージ上限 %s 通を超えました。投稿できません。" + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "%s からの返信を受け取りたい場合は、サイトのプライバシー設定で「不明な送信者からのプライベートメール」を許可しているか確認してください。" + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "" + +#: src/Module/Register.php:84 +msgid "Only parent users can create additional accounts." +msgstr "追加アカウントを作成できるのは親ユーザのみです。" + +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "このサイトは、1日あたりに許可されているアカウント登録数の上限を超えています。 明日再度お試しください。" + +#: src/Module/Register.php:116 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." +msgstr "(オプションで)OpenIDを提供し、「登録」をクリックして、OpenIDを介してこのフォームに入力できます。" + +#: src/Module/Register.php:117 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "OpenIDに慣れていない場合は、そのフィールドを空白のままにして、残りの項目を入力してください。" + +#: src/Module/Register.php:118 +msgid "Your OpenID (optional): " +msgstr "OpenID(オプション):" + +#: src/Module/Register.php:127 +msgid "Include your profile in member directory?" +msgstr "メンバーディレクトリにプロフィールを含めますか?" + +#: src/Module/Register.php:148 +msgid "Note for the admin" +msgstr "管理者への注意" + +#: src/Module/Register.php:148 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "このノードに参加する理由、管理者へのメッセージを残す" + +#: src/Module/Register.php:149 +msgid "Membership on this site is by invitation only." +msgstr "このサイトのメンバーシップは招待のみです。" + +#: src/Module/Register.php:150 +msgid "Your invitation code: " +msgstr "招待コード:" + +#: src/Module/Register.php:158 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "あなたの氏名(例:ジョー・スミス、本物または本物のような):" + +#: src/Module/Register.php:159 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "あなたのメールアドレス:(初回の情報はそこに送信されますので、これは既存のアドレスでなければなりません。)" + +#: src/Module/Register.php:160 +msgid "Please repeat your e-mail address:" +msgstr "メールアドレスを再入力してください。" + +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 +msgid "New Password:" +msgstr "新しいパスワード:" + +#: src/Module/Register.php:162 +msgid "Leave empty for an auto generated password." +msgstr "自動生成されたパスワードの場合は空のままにします。" + +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 +msgid "Confirm:" +msgstr "確認:" + +#: src/Module/Register.php:164 +#, 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 "プロフィールのニックネームを選択します。これはテキスト文字で始まる必要があります。このサイトのプロフィールアドレスは\" nickname@%s \"になります。" + +#: src/Module/Register.php:165 +msgid "Choose a nickname: " +msgstr "ニックネームを選択:" + +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "インポート" + +#: src/Module/Register.php:174 +msgid "Import your profile to this friendica instance" +msgstr "このfriendicaインスタンスにプロフィールをインポートします" + +#: src/Module/Register.php:181 +msgid "Note: This node explicitly contains adult content" +msgstr "注:このノードには、露骨なアダルトコンテンツが含まれています" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "Parent Password:" +msgstr "親パスワード:" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "リクエストの確認のため、親アカウントのパスワードを入力してください。" + +#: src/Module/Register.php:212 +msgid "Password doesn't match." +msgstr "パスワードが一致しません。" + +#: src/Module/Register.php:218 +msgid "Please enter your password." +msgstr "パスワードを入力してください。" + +#: src/Module/Register.php:260 +msgid "You have entered too much information." +msgstr "入力件数が多すぎます" + +#: src/Module/Register.php:283 +msgid "Please enter the identical mail address in the second field." +msgstr "2番目の入力欄に同じメールアドレスを再入力してください。" + +#: src/Module/Register.php:310 +msgid "The additional account was created." +msgstr "追加アカウントが作成されました。" + +#: src/Module/Register.php:335 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "登録に成功。詳細については、メールを確認してください。" + +#: src/Module/Register.php:342 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "メールを送信できませんでした。ここでアカウントの詳細:
    ログイン: %s
    パスワード: %s

    ログイン後にパスワードを変更できます。" + +#: src/Module/Register.php:348 +msgid "Registration successful." +msgstr "登録に成功。" + +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 +msgid "Your registration can not be processed." +msgstr "登録を処理できません。" + +#: src/Module/Register.php:363 +msgid "You have to leave a request note for the admin." +msgstr "管理者へリクエストする内容を書く必要があります。" + +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "" + +#: src/Module/Register.php:395 +msgid "Your registration is pending approval by the site owner." +msgstr "登録はサイト所有者による承認待ちです。" + +#: src/Module/Search/Acl.php:73 +msgid "You must be logged in to use this module." +msgstr "このモジュールを使用するにはログインする必要があります" + +#: src/Module/Search/Index.php:69 msgid "Only logged in users are permitted to perform a search." msgstr "ログインしたユーザーのみが検索を実行できます。" -#: src/Module/Search/Index.php:76 +#: src/Module/Search/Index.php:89 msgid "Only one search per minute is permitted for not logged in users." msgstr "ログインしていないユーザーには、1分間に1つの検索のみが許可されます。" -#: src/Module/Search/Index.php:192 +#: src/Module/Search/Index.php:205 #, php-format msgid "Items tagged with: %s" msgstr "タグ付けされた項目: %s" -#: src/Module/Search/Saved.php:45 +#: src/Module/Search/Saved.php:59 msgid "Search term was not saved." msgstr "" -#: src/Module/Search/Saved.php:48 +#: src/Module/Search/Saved.php:62 msgid "Search term already saved." msgstr "すでに保存された検索キーワードです。" -#: src/Module/Search/Saved.php:54 +#: src/Module/Search/Saved.php:68 msgid "Search term was not removed." msgstr "" -#: src/Module/Security/Login.php:105 +#: src/Module/Security/Login.php:123 msgid "Create a New Account" msgstr "新しいアカウントを作成する" -#: src/Module/Security/Login.php:130 +#: src/Module/Security/Login.php:142 msgid "Your OpenID: " msgstr "あなたの OpenID: " -#: src/Module/Security/Login.php:133 +#: src/Module/Security/Login.php:145 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "ユーザー名とパスワードを入力して、既存のアカウントにOpenIDを追加してください。" -#: src/Module/Security/Login.php:135 +#: src/Module/Security/Login.php:147 msgid "Or login using OpenID: " msgstr "または、OpenIDを使用してログインします。" -#: src/Module/Security/Login.php:149 +#: src/Module/Security/Login.php:161 msgid "Password: " msgstr "パスワード:" -#: src/Module/Security/Login.php:150 +#: src/Module/Security/Login.php:162 msgid "Remember me" msgstr "次から自動的にログイン" -#: src/Module/Security/Login.php:159 +#: src/Module/Security/Login.php:171 msgid "Forgot your password?" msgstr "パスワードをお忘れですか?" -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:174 msgid "Website Terms of Service" msgstr "ウェブサイト利用規約" -#: src/Module/Security/Login.php:163 +#: src/Module/Security/Login.php:175 msgid "terms of service" msgstr "利用規約" -#: src/Module/Security/Login.php:165 +#: src/Module/Security/Login.php:177 msgid "Website Privacy Policy" msgstr "ウェブサイトのプライバシーポリシー" -#: src/Module/Security/Login.php:166 +#: src/Module/Security/Login.php:178 msgid "privacy policy" msgstr "個人情報保護方針" -#: src/Module/Security/Logout.php:61 +#: src/Module/Security/Logout.php:84 +#: src/Module/Security/TwoFactor/SignOut.php:78 +#: src/Module/Security/TwoFactor/SignOut.php:86 +#: src/Module/Security/TwoFactor/SignOut.php:108 +#: src/Module/Security/TwoFactor/SignOut.php:115 msgid "Logged out." msgstr "ログアウトしました。" @@ -9188,662 +9168,1599 @@ msgstr "ログアウトしました。" msgid "OpenID protocol error. No ID returned" msgstr "OpenID プロトコルエラー。返答にてIDが返されませんでした。" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:90 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "アカウントが見つかりませんでした。 既存のアカウントにログインして、OpenIDを追加してください。" -#: src/Module/Security/OpenID.php:94 +#: src/Module/Security/OpenID.php:92 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "アカウントが見つかりませんでした。 OpenIDを追加するには、新しいアカウントを登録するか、既存のアカウントにログインしてください。" -#: src/Module/Security/TwoFactor/Recovery.php:60 +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 +msgid "Passwords do not match." +msgstr "パスワードが一致していません。" + +#: src/Module/Security/PasswordTooLong.php:64 +msgid "Password does not need changing." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 +msgid "Password unchanged." +msgstr "パスワードは変更されていません。" + +#: src/Module/Security/PasswordTooLong.php:91 +msgid "Password Too Long" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:92 +msgid "" +"Since version 2022.09, we've realized that any password longer than 72 " +"characters is truncated during hashing. To prevent any confusion about this " +"behavior, please update your password to be fewer or equal to 72 characters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:93 +msgid "Update Password" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Current Password:" +msgstr "現在のパスワード:" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Your current password to confirm the changes" +msgstr "変更を確認するための現在のパスワード" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces and accentuated letters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 +msgid "Password length is limited to 72 characters." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:74 #, php-format msgid "Remaining recovery codes: %d" msgstr "残りの復旧コード: %d" -#: src/Module/Security/TwoFactor/Recovery.php:64 -#: src/Module/Security/TwoFactor/Verify.php:75 -#: src/Module/Settings/TwoFactor/Verify.php:82 +#: src/Module/Security/TwoFactor/Recovery.php:80 +#: src/Module/Security/TwoFactor/Verify.php:77 +#: src/Module/Settings/TwoFactor/Verify.php:95 msgid "Invalid code, please retry." msgstr "無効なコードです。再試行してください。" -#: src/Module/Security/TwoFactor/Recovery.php:83 +#: src/Module/Security/TwoFactor/Recovery.php:99 msgid "Two-factor recovery" msgstr "二要素回復" -#: src/Module/Security/TwoFactor/Recovery.php:84 +#: src/Module/Security/TwoFactor/Recovery.php:100 msgid "" "

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

    " msgstr "

    モバイルデバイスにアクセスできなくなった場合に備えて、ワンタイムリカバリコードのいずれかを入力できます。

    " -#: src/Module/Security/TwoFactor/Recovery.php:85 -#: src/Module/Security/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:101 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "お使いの携帯電話を持ってませんか? 二要素認証の回復コードを入力" -#: src/Module/Security/TwoFactor/Recovery.php:86 +#: src/Module/Security/TwoFactor/Recovery.php:102 msgid "Please enter a recovery code" msgstr "復旧コードを入力してください" -#: src/Module/Security/TwoFactor/Recovery.php:87 +#: src/Module/Security/TwoFactor/Recovery.php:103 msgid "Submit recovery code and complete login" msgstr "復旧コードを送信してログインを完了する" -#: src/Module/Security/TwoFactor/Verify.php:95 +#: src/Module/Security/TwoFactor/SignOut.php:122 +msgid "Sign out of this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:123 +msgid "" +"

    If you trust this browser, you will not be asked for verification code " +"the next time you sign in.

    " +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:124 +msgid "Sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:126 +msgid "Trust and sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:96 +msgid "Couldn't save browser to Cookie." +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:141 +msgid "Trust this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:142 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:143 +msgid "Not now" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:144 +msgid "Don't trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:145 +msgid "Trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:97 msgid "" "

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

    " msgstr "

    デバイスで二要素認証アプリを開き、認証コードを取得して本人確認を行います。

    " -#: src/Module/Security/TwoFactor/Verify.php:99 -#: src/Module/Settings/TwoFactor/Verify.php:141 +#: src/Module/Security/TwoFactor/Verify.php:100 +#, php-format +msgid "" +"If you do not have access to your authentication code you can use a two-factor recovery code." +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Verify.php:155 msgid "Please enter a code from your authentication app" msgstr "認証アプリからコードを入力してください" -#: src/Module/Security/TwoFactor/Verify.php:100 -msgid "This is my two-factor authenticator app device" -msgstr "これは私の二要素認証アプリデバイスです" - -#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Security/TwoFactor/Verify.php:102 msgid "Verify code and complete login" msgstr "コードを確認してログインを完了する" -#: src/Module/Settings/Delegation.php:53 +#: src/Module/Settings/Account.php:96 +msgid "Please use a shorter name." +msgstr "短い名前を使用してください。" + +#: src/Module/Settings/Account.php:99 +msgid "Name too short." +msgstr "名前が短すぎます。" + +#: src/Module/Settings/Account.php:108 +msgid "Wrong Password." +msgstr "パスワードが間違っています。" + +#: src/Module/Settings/Account.php:113 +msgid "Invalid email." +msgstr "無効なメール。" + +#: src/Module/Settings/Account.php:117 +msgid "Cannot change to that email." +msgstr "そのメールに変更できません。" + +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 +msgid "Settings were not updated." +msgstr "設定が更新されませんでした。" + +#: src/Module/Settings/Account.php:364 +msgid "Contact CSV file upload error" +msgstr "アップロードエラー:コンタクトCSVファイル" + +#: src/Module/Settings/Account.php:383 +msgid "Importing Contacts done" +msgstr "コンタクトのインポートが完了しました" + +#: src/Module/Settings/Account.php:396 +msgid "Relocate message has been send to your contacts" +msgstr "再配置メッセージがコンタクトに送信されました" + +#: src/Module/Settings/Account.php:413 +msgid "Unable to find your profile. Please contact your admin." +msgstr "プロフィールが見つかりません。管理者に連絡してください。" + +#: src/Module/Settings/Account.php:455 +msgid "Personal Page Subtypes" +msgstr "個人ページのサブタイプ" + +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" +msgstr "" + +#: src/Module/Settings/Account.php:466 +msgid "Account for a personal profile." +msgstr "個人プロフィールを説明します。" + +#: src/Module/Settings/Account.php:473 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "コンタクトリクエストを「フォロワー」として自動的に承認します。組織に適したアカウントです。" + +#: src/Module/Settings/Account.php:480 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "コンタクトのリクエストを「フォロワー」として自動的に承認します。ニュース再配信に適したアカウントです。" + +#: src/Module/Settings/Account.php:487 +msgid "Account for community discussions." +msgstr "コミュニティディスカッションのアカウント。" + +#: src/Module/Settings/Account.php:494 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "\"Friends \"および\"Followers \"の手動承認を必要とする通常の個人プロフィールのアカウント。" + +#: src/Module/Settings/Account.php:501 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "コンタクトリクエストを「フォロワー」として自動的に承認します。一般公開プロフィールのアカウントです。" + +#: src/Module/Settings/Account.php:508 +msgid "Automatically approves all contact requests." +msgstr "すべてのコンタクトリクエストを自動的に承認します。" + +#: src/Module/Settings/Account.php:515 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "コンタクトのリクエストを「フレンド」として自動的に承認します。知名度のあるプロフィールに適したアカウントです。" + +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "" + +#: src/Module/Settings/Account.php:522 +msgid "Requires manual approval of contact requests." +msgstr "コンタクトリクエストの手動承認が必要です。" + +#: src/Module/Settings/Account.php:531 +msgid "OpenID:" +msgstr "OpenID:" + +#: src/Module/Settings/Account.php:531 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(オプション)このOpenIDがこのアカウントにログインできるようにします。" + +#: src/Module/Settings/Account.php:539 +msgid "Publish your profile in your local site directory?" +msgstr "ローカルサイトディレクトリにプロフィールを公開しますか?" + +#: src/Module/Settings/Account.php:539 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "プロフィールはこのノードのローカルディレクトリで公開されます。システム設定によっては、プロフィールの詳細が公開される場合があります。" + +#: src/Module/Settings/Account.php:545 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "あなたのプロフィールはグローバルなFriendicaディレクトリに公開されます(例: %s )。" + +#: src/Module/Settings/Account.php:558 +msgid "Account Settings" +msgstr "アカウント設定" + +#: src/Module/Settings/Account.php:559 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "IDアドレスは ' %s ' または ' %s 'です。" + +#: src/Module/Settings/Account.php:566 +msgid "Password Settings" +msgstr "パスワード設定" + +#: src/Module/Settings/Account.php:568 +msgid "Leave password fields blank unless changing" +msgstr "変更しない限り、パスワードフィールドは空白のままにしてください" + +#: src/Module/Settings/Account.php:570 +msgid "Password:" +msgstr "パスワード:" + +#: src/Module/Settings/Account.php:570 +msgid "Your current password to confirm the changes of the email address" +msgstr "変更を確認するための電子メールアドレスの現在のパスワード" + +#: src/Module/Settings/Account.php:573 +msgid "Delete OpenID URL" +msgstr "OpenID URLを削除" + +#: src/Module/Settings/Account.php:575 +msgid "Basic Settings" +msgstr "基本設定" + +#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "表示名:" + +#: src/Module/Settings/Account.php:577 +msgid "Email Address:" +msgstr "電子メールアドレス:" + +#: src/Module/Settings/Account.php:578 +msgid "Your Timezone:" +msgstr "あなたのタイムゾーン:" + +#: src/Module/Settings/Account.php:579 +msgid "Your Language:" +msgstr "あなたの言語:" + +#: src/Module/Settings/Account.php:579 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "friendicaインターフェイスを表示し、メールを送信するために使用する言語を設定します" + +#: src/Module/Settings/Account.php:580 +msgid "Default Post Location:" +msgstr "デフォルトの投稿場所:" + +#: src/Module/Settings/Account.php:581 +msgid "Use Browser Location:" +msgstr "ブラウザのロケーションを使用:" + +#: src/Module/Settings/Account.php:583 +msgid "Security and Privacy Settings" +msgstr "セキュリティとプライバシーの設定" + +#: src/Module/Settings/Account.php:585 +msgid "Maximum Friend Requests/Day:" +msgstr "1日あたりの友達リクエスト上限:" + +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 +msgid "(to prevent spam abuse)" +msgstr "(スパムの悪用を防ぐため)" + +#: src/Module/Settings/Account.php:587 +msgid "Allow your profile to be searchable globally?" +msgstr "自分のプロフィールを世界中で検索できるようにしますか?" + +#: src/Module/Settings/Account.php:587 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "他の人があなたを簡単に見つけてフォローできるようにしたい場合は、この設定を有効にしてください。あなたのプロフィールはリモートシステムで検索可能です。この設定は、Friendicaが検索エンジンにあなたのプロフィールをインデックス化するかどうかも決定します。" + +#: src/Module/Settings/Account.php:588 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "プロフィールの閲覧者からコンタクト/友人リストを非表示にしますか?" + +#: src/Module/Settings/Account.php:588 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "自分のプロフィールページには、コンタクトリストが表示されます。このオプションを有効にすると、コンタクトリストの表示が無効になります。" + +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "" +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "Make public posts unlisted" +msgstr "公開投稿を非表示にする" + +#: src/Module/Settings/Account.php:590 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "公開された投稿は、コミュニティページや検索結果には表示されず、中継サーバーにも送信されません。ただし、リモートサーバーの公開フィードには表示されます。" + +#: src/Module/Settings/Account.php:591 +msgid "Make all posted pictures accessible" +msgstr "投稿した写真は全てアクセス可能にする" + +#: src/Module/Settings/Account.php:591 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "このオプションは、投稿したすべての写真をダイレクトリンクでアクセスできるようにします。これは、他の多くのネットワークが写真のパーミッションを処理できないという問題を回避するためのものです。ただし、公開していない写真はフォトアルバムでは一般に公開されません。" + +#: src/Module/Settings/Account.php:592 +msgid "Allow friends to post to your profile page?" +msgstr "友人があなたのプロフィールページに投稿することを許可しますか?" + +#: src/Module/Settings/Account.php:592 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "コンタクトは、プロフィールウォールに投稿を書くことができます。これらの投稿はコンタクトに配信されます" + +#: src/Module/Settings/Account.php:593 +msgid "Allow friends to tag your posts?" +msgstr "友達があなたの投稿にタグを付けることを許可しますか?" + +#: src/Module/Settings/Account.php:593 +msgid "Your contacts can add additional tags to your posts." +msgstr "コンタクトは、投稿にタグを追加できます。" + +#: src/Module/Settings/Account.php:594 +msgid "Permit unknown people to send you private mail?" +msgstr "知らない人にプライベートメールを送ることを許可しますか?" + +#: src/Module/Settings/Account.php:594 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "Friendicaネットワークユーザーは、コンタクトリストにない場合でもプライベートメッセージを送信する場合があります。" + +#: src/Module/Settings/Account.php:595 +msgid "Maximum private messages per day from unknown people:" +msgstr "不明な人からの 1日あたりのプライベートメッセージ上限:" + +#: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "" + +#: src/Module/Settings/Account.php:598 +msgid "Default Post Permissions" +msgstr "投稿の既定の権限" + +#: src/Module/Settings/Account.php:602 +msgid "Expiration settings" +msgstr "有効期限設定" + +#: src/Module/Settings/Account.php:603 +msgid "Automatically expire posts after this many days:" +msgstr "この数日後に投稿を自動的に期限切れにします:" + +#: src/Module/Settings/Account.php:603 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "空の場合、投稿は期限切れになりません。期限切れの投稿は削除されます" + +#: src/Module/Settings/Account.php:604 +msgid "Expire posts" +msgstr "投稿の有効期限" + +#: src/Module/Settings/Account.php:604 +msgid "When activated, posts and comments will be expired." +msgstr "有効にすると、投稿とコメントは期限切れになるでしょう。" + +#: src/Module/Settings/Account.php:605 +msgid "Expire personal notes" +msgstr "個人メモの有効期限" + +#: src/Module/Settings/Account.php:605 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "有効にすると、プロフィールページ上の個人メモは期限切れになるでしょう。" + +#: src/Module/Settings/Account.php:606 +msgid "Expire starred posts" +msgstr "スター付き投稿の有効期限" + +#: src/Module/Settings/Account.php:606 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "投稿にスターを付けると、投稿が期限切れにならないようにします。動作はこの設定で上書きされます。" + +#: src/Module/Settings/Account.php:607 +msgid "Only expire posts by others" +msgstr "他のユーザーによる投稿のみを期限切れにする" + +#: src/Module/Settings/Account.php:607 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "有効にすると、自分の投稿は期限切れになりません。そうすると、上記の設定は自分が受け取った投稿に対してのみ有効となります。" + +#: src/Module/Settings/Account.php:610 +msgid "Notification Settings" +msgstr "通知設定" + +#: src/Module/Settings/Account.php:611 +msgid "Send a notification email when:" +msgstr "次の場合に通知メールを送信します。" + +#: src/Module/Settings/Account.php:612 +msgid "You receive an introduction" +msgstr "招待を受けます" + +#: src/Module/Settings/Account.php:613 +msgid "Your introductions are confirmed" +msgstr "あなたの招待が確認されました" + +#: src/Module/Settings/Account.php:614 +msgid "Someone writes on your profile wall" +msgstr "誰かがあなたのプロフィールウォールに書き込みます" + +#: src/Module/Settings/Account.php:615 +msgid "Someone writes a followup comment" +msgstr "誰かがフォローアップコメントを書く" + +#: src/Module/Settings/Account.php:616 +msgid "You receive a private message" +msgstr "プライベートメッセージを受け取ります" + +#: src/Module/Settings/Account.php:617 +msgid "You receive a friend suggestion" +msgstr "友達の提案を受け取ります" + +#: src/Module/Settings/Account.php:618 +msgid "You are tagged in a post" +msgstr "あなたは投稿でタグ付けされています" + +#: src/Module/Settings/Account.php:620 +msgid "Create a desktop notification when:" +msgstr "" + +#: src/Module/Settings/Account.php:621 +msgid "Someone tagged you" +msgstr "" + +#: src/Module/Settings/Account.php:622 +msgid "Someone directly commented on your post" +msgstr "" + +#: src/Module/Settings/Account.php:623 +msgid "Someone liked your content" +msgstr "" + +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +msgid "Can only be enabled, when the direct comment notification is enabled." +msgstr "" + +#: src/Module/Settings/Account.php:624 +msgid "Someone shared your content" +msgstr "" + +#: src/Module/Settings/Account.php:625 +msgid "Someone commented in your thread" +msgstr "" + +#: src/Module/Settings/Account.php:626 +msgid "Someone commented in a thread where you commented" +msgstr "" + +#: src/Module/Settings/Account.php:627 +msgid "Someone commented in a thread where you interacted" +msgstr "" + +#: src/Module/Settings/Account.php:629 +msgid "Activate desktop notifications" +msgstr "デスクトップ通知を有効にする" + +#: src/Module/Settings/Account.php:629 +msgid "Show desktop popup on new notifications" +msgstr "新しい通知にデスクトップポップアップを表示する" + +#: src/Module/Settings/Account.php:633 +msgid "Text-only notification emails" +msgstr "テキストのみの通知メール" + +#: src/Module/Settings/Account.php:635 +msgid "Send text only notification emails, without the html part" +msgstr "HTML部分なしで、テキストのみの通知メールを送信します" + +#: src/Module/Settings/Account.php:639 +msgid "Show detailled notifications" +msgstr "詳細な通知を表示" + +#: src/Module/Settings/Account.php:641 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "デフォルトでは、通知は項目ごとに1つの通知にまとめられます。有効にすると、すべての通知が表示されます。" + +#: src/Module/Settings/Account.php:645 +msgid "Show notifications of ignored contacts" +msgstr "無視されたコンタクトの通知を表示" + +#: src/Module/Settings/Account.php:647 +msgid "" +"You don't see posts from ignored contacts. But you still see their comments." +" This setting controls if you want to still receive regular notifications " +"that are caused by ignored contacts or not." +msgstr "無視されたコンタクトからの投稿は表示されません。しかし、相手のコメントは表示されます。この設定では、無視されたコンタクトからの通知を定期的に受け取るかどうかを設定します。" + +#: src/Module/Settings/Account.php:650 +msgid "Advanced Account/Page Type Settings" +msgstr "アカウント/ページタイプの詳細設定" + +#: src/Module/Settings/Account.php:651 +msgid "Change the behaviour of this account for special situations" +msgstr "特別な状況でこのアカウントの動作を変更する" + +#: src/Module/Settings/Account.php:654 +msgid "Import Contacts" +msgstr "コンタクトをインポートする" + +#: src/Module/Settings/Account.php:655 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "古いアカウントからエクスポートしたCSVファイルをアップロードします。これは最初の列に、フォローしているアカウントのハンドルを含みます。" + +#: src/Module/Settings/Account.php:656 +msgid "Upload File" +msgstr "ファイルをアップロード" + +#: src/Module/Settings/Account.php:659 +msgid "Relocate" +msgstr "再配置" + +#: src/Module/Settings/Account.php:660 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "このプロフィールを別のサーバーから移動し、コンタクトの一部が更新を受信しない場合は、このボタンを押してみてください。" + +#: src/Module/Settings/Account.php:661 +msgid "Resend relocate message to contacts" +msgstr "再配置メッセージをコンタクトに再送信する" + +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "アドオン設定" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "アドオン設定は構成されていません" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "提供された設定を使用してメールアカウントに接続できませんでした。" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora(Socialhome、Hubzilla)" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "OStatus (GNU Social)" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "このサイトではメールアクセスが無効になっています。" + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "無し" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "一般的なソーシャルメディア設定" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "" + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "リンクの件名を添付します" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "有効にすると、添付されたリンクのタイトルがDiasporaへの投稿のタイトルとして追加されます。 これは主に、フィードコンテンツを共有する「リモート セルフ」コンタクトで役立ちます。" + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "OStatusサブスクリプションを修復する" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "メール/メールボックスのセットアップ" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "このサービス(オプション)を使用してメールコンタクトと通信する場合は、メールボックスへの接続方法を指定してください。" + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "最後に成功したメールチェック:" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "IMAPサーバー名:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "IMAPポート:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "セキュリティ:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "メールのログイン名:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "メールのパスワード:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "返信先アドレス:" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "すべてのメールコンタクトに一般公開投稿を送信します。" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "インポート後のアクション:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "フォルダへ移動" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "フォルダへ移動:" + +#: src/Module/Settings/Delegation.php:54 msgid "Delegation successfully granted." msgstr "委任が正常に許可されました。" -#: src/Module/Settings/Delegation.php:55 +#: src/Module/Settings/Delegation.php:56 msgid "Parent user not found, unavailable or password doesn't match." msgstr "親ユーザーが見つからないか、利用できないか、パスワードが一致しません。" -#: src/Module/Settings/Delegation.php:59 +#: src/Module/Settings/Delegation.php:60 msgid "Delegation successfully revoked." msgstr "委任が正常に取り消されました。" -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 +#: src/Module/Settings/Delegation.php:82 +#: src/Module/Settings/Delegation.php:104 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "委任された管理者は、委任権限を確認できますが、変更はできません。" -#: src/Module/Settings/Delegation.php:95 +#: src/Module/Settings/Delegation.php:96 msgid "Delegate user not found." msgstr "移譲ユーザーが見つかりません。" -#: src/Module/Settings/Delegation.php:143 +#: src/Module/Settings/Delegation.php:144 msgid "No parent user" msgstr "親となるユーザが存在しません。" -#: src/Module/Settings/Delegation.php:154 -#: src/Module/Settings/Delegation.php:165 +#: src/Module/Settings/Delegation.php:155 +#: src/Module/Settings/Delegation.php:166 msgid "Parent User" msgstr "親ユーザ" -#: src/Module/Settings/Delegation.php:162 +#: src/Module/Settings/Delegation.php:163 msgid "Additional Accounts" msgstr "追加のアカウント" -#: src/Module/Settings/Delegation.php:163 +#: src/Module/Settings/Delegation.php:164 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "既存のアカウントに自動的に接続される追加のアカウントを登録して、このアカウントから管理できるようにします。" -#: src/Module/Settings/Delegation.php:164 +#: src/Module/Settings/Delegation.php:165 msgid "Register an additional account" msgstr "追加アカウントの登録" -#: src/Module/Settings/Delegation.php:168 +#: src/Module/Settings/Delegation.php:169 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "親ユーザは、このアカウントについてアカウント設定を含む全ての権限を持ちます。 このアクセスを許可するユーザ名を再確認してください。" -#: src/Module/Settings/Delegation.php:172 +#: src/Module/Settings/Delegation.php:173 msgid "Delegates" msgstr "移譲" -#: src/Module/Settings/Delegation.php:174 +#: src/Module/Settings/Delegation.php:175 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 "移譲された人は、このアカウント/ページの管理について、基本的なアカウント設定を除いた、すべての権限を得ます。 完全に信頼していない人には、あなたの個人アカウントを移譲しないでください。" -#: src/Module/Settings/Delegation.php:175 +#: src/Module/Settings/Delegation.php:176 msgid "Existing Page Delegates" msgstr "既存のページの移譲" -#: src/Module/Settings/Delegation.php:177 +#: src/Module/Settings/Delegation.php:178 msgid "Potential Delegates" msgstr "移譲先の候補" -#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:181 msgid "Add" msgstr "追加" -#: src/Module/Settings/Delegation.php:181 +#: src/Module/Settings/Delegation.php:182 msgid "No entries." msgstr "エントリは有りません。" -#: src/Module/Settings/Display.php:105 +#: src/Module/Settings/Display.php:146 msgid "The theme you chose isn't available." msgstr "選択したテーマは使用できません。" -#: src/Module/Settings/Display.php:142 +#: src/Module/Settings/Display.php:186 #, php-format msgid "%s - (Unsupported)" msgstr "%s (サポートされていません)" -#: src/Module/Settings/Display.php:188 +#: src/Module/Settings/Display.php:221 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:222 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:223 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:224 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:259 msgid "Display Settings" msgstr "ディスプレイの設定" -#: src/Module/Settings/Display.php:190 +#: src/Module/Settings/Display.php:261 msgid "General Theme Settings" msgstr "一般的なテーマ設定" -#: src/Module/Settings/Display.php:191 +#: src/Module/Settings/Display.php:262 msgid "Custom Theme Settings" msgstr "カスタムテーマ設定" -#: src/Module/Settings/Display.php:192 +#: src/Module/Settings/Display.php:263 msgid "Content Settings" msgstr "コンテンツ設定" -#: 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 +#: src/Module/Settings/Display.php:264 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "テーマ設定" -#: src/Module/Settings/Display.php:194 -msgid "Calendar" -msgstr "カレンダー" +#: src/Module/Settings/Display.php:265 +msgid "Timelines" +msgstr "" -#: src/Module/Settings/Display.php:200 +#: src/Module/Settings/Display.php:272 msgid "Display Theme:" msgstr "ディスプレイテーマ:" -#: src/Module/Settings/Display.php:201 +#: src/Module/Settings/Display.php:273 msgid "Mobile Theme:" msgstr "モバイルテーマ:" -#: src/Module/Settings/Display.php:204 +#: src/Module/Settings/Display.php:276 msgid "Number of items to display per page:" msgstr "ページごとに表示する項目の数:" -#: src/Module/Settings/Display.php:204 src/Module/Settings/Display.php:205 +#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277 msgid "Maximum of 100 items" msgstr "最大100項目" -#: src/Module/Settings/Display.php:205 +#: src/Module/Settings/Display.php:277 msgid "Number of items to display per page when viewed from mobile device:" msgstr "モバイルデバイスから表示したときにページごとに表示する項目の数:" -#: src/Module/Settings/Display.php:206 +#: src/Module/Settings/Display.php:278 msgid "Update browser every xx seconds" msgstr "xx秒ごとにブラウザーを更新する" -#: src/Module/Settings/Display.php:206 +#: src/Module/Settings/Display.php:278 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "10秒以上。 -1を入力して無効にします。" -#: src/Module/Settings/Display.php:207 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "投稿ストリームページの上部でのみ自動更新" +#: src/Module/Settings/Display.php:279 +msgid "Display emoticons" +msgstr "" -#: 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 "自動更新では、投稿ストリームページの最上部に新しい記事が追加されることがあります。これがページの最上部以外の場所で発生すると、スクロール位置に影響を与え、普通に読むことが妨げられることがあります。" +#: src/Module/Settings/Display.php:279 +msgid "When enabled, emoticons are replaced with matching symbols." +msgstr "" -#: src/Module/Settings/Display.php:208 -msgid "Don't show emoticons" -msgstr "絵文字を表示しない" - -#: src/Module/Settings/Display.php:208 -msgid "" -"Normally emoticons are replaced with matching symbols. This setting disables" -" this behaviour." -msgstr "通常、絵文字は一致する記号に置き換えられます。この設定は、この動作を無効にします。" - -#: src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:280 msgid "Infinite scroll" msgstr "無限スクロール" -#: src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:280 msgid "Automatic fetch new items when reaching the page end." msgstr "ページの最後に到達したとき、新規項目を自動取得する" -#: src/Module/Settings/Display.php:210 -msgid "Disable Smart Threading" -msgstr "スマートスレッドを無効にする" +#: src/Module/Settings/Display.php:281 +msgid "Enable Smart Threading" +msgstr "" -#: src/Module/Settings/Display.php:210 -msgid "Disable the automatic suppression of extraneous thread indentation." -msgstr "外部スレッドのインデントについて、自動抑制を無効にします。" +#: src/Module/Settings/Display.php:281 +msgid "Enable the automatic suppression of extraneous thread indentation." +msgstr "" -#: src/Module/Settings/Display.php:211 -msgid "Hide the Dislike feature" -msgstr "嫌い機能を隠す" +#: src/Module/Settings/Display.php:282 +msgid "Display the Dislike feature" +msgstr "" -#: src/Module/Settings/Display.php:211 -msgid "Hides the Dislike button and dislike reactions on posts and comments." -msgstr "投稿とコメント上の嫌いボタンと嫌いの反応を隠す" +#: src/Module/Settings/Display.php:282 +msgid "" +"Display the Dislike button and dislike reactions on posts and comments." +msgstr "" -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:283 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:283 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:284 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:284 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:285 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:285 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Timelines for the network page:" +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Select all the timelines that you want to see on your network page." +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Channel languages:" +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Select all languages that you want to see in your channels." +msgstr "" + +#: src/Module/Settings/Display.php:290 msgid "Beginning of week:" msgstr "週の始まり:" -#: src/Module/Settings/Profile/Index.php:85 -msgid "Profile Name is required." -msgstr "プロフィール名が必要です。" +#: src/Module/Settings/Display.php:291 +msgid "Default calendar view:" +msgstr "" -#: src/Module/Settings/Profile/Index.php:137 +#: src/Module/Settings/Display.php:300 src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:312 +#, php-format +msgid "%s: %s" +msgstr "" + +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "追加機能" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "接続されたアプリ" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "承認を削除" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:167 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:205 +#: src/Module/Settings/Profile/Index.php:226 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:188 -#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:198 -#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:199 -#: src/Module/Settings/Profile/Index.php:219 +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 msgid "(click to open/close)" msgstr "(クリックして開く・閉じる)" -#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:224 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:235 +#: src/Module/Settings/Profile/Index.php:247 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:249 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:255 msgid "Profile Actions" msgstr "プロフィールアクション" -#: src/Module/Settings/Profile/Index.php:236 +#: src/Module/Settings/Profile/Index.php:256 msgid "Edit Profile Details" msgstr "プロフィールの詳細を編集" -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:258 msgid "Change Profile Photo" msgstr "プロフィール写真の変更" -#: src/Module/Settings/Profile/Index.php:243 +#: src/Module/Settings/Profile/Index.php:261 msgid "Profile picture" msgstr "プロフィールの写真" -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:262 msgid "Location" msgstr "位置情報" -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:93 -#: src/Util/Temporal.php:95 +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 msgid "Miscellaneous" msgstr "その他" -#: src/Module/Settings/Profile/Index.php:246 +#: src/Module/Settings/Profile/Index.php:264 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:248 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 msgid "Upload Profile Photo" msgstr "プロフィール写真をアップロード" -#: src/Module/Settings/Profile/Index.php:252 -msgid "Display name:" -msgstr "表示名:" - -#: src/Module/Settings/Profile/Index.php:255 -msgid "Street Address:" -msgstr "住所:" - -#: src/Module/Settings/Profile/Index.php:256 -msgid "Locality/City:" -msgstr "地域/市:" - -#: src/Module/Settings/Profile/Index.php:257 -msgid "Region/State:" -msgstr "地域/州:" - -#: src/Module/Settings/Profile/Index.php:258 -msgid "Postal/Zip Code:" -msgstr "郵便番号:" - -#: src/Module/Settings/Profile/Index.php:259 -msgid "Country:" -msgstr "国:" - -#: src/Module/Settings/Profile/Index.php:261 -msgid "XMPP (Jabber) address:" -msgstr "XMPP(Jabber)アドレス:" - -#: src/Module/Settings/Profile/Index.php:261 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." -msgstr "XMPPアドレスがコンタクトに伝達され、コンタクトがあなたをフォローできるようになります。" - -#: src/Module/Settings/Profile/Index.php:262 -msgid "Homepage URL:" -msgstr "ホームページのURL:" - -#: src/Module/Settings/Profile/Index.php:263 -msgid "Public Keywords:" -msgstr "公開キーワード:" - -#: src/Module/Settings/Profile/Index.php:263 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(友人を候補を提案するために使用ます。また他の人が見ることができます。)" - -#: src/Module/Settings/Profile/Index.php:264 -msgid "Private Keywords:" -msgstr "プライベートキーワード:" - -#: src/Module/Settings/Profile/Index.php:264 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(プロフィールの検索に使用され、他のユーザーには表示されません)" - -#: src/Module/Settings/Profile/Index.php:265 +#: src/Module/Settings/Profile/Index.php:266 #, 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.

    " +"\t\t\t\t

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

    " 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/Index.php:103 +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "住所:" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "地域/市:" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "地域/州:" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "郵便番号:" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "国:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "XMPP(Jabber)アドレス:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "ホームページのURL:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "公開キーワード:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(友人を候補を提案するために使用ます。また他の人が見ることができます。)" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "プライベートキーワード:" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(プロフィールの検索に使用され、他のユーザーには表示されません)" + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 +#: src/Module/Settings/Profile/Photo/Index.php:101 #, php-format msgid "Image size reduction [%s] failed." msgstr "画像サイズの縮小[ %s ]に失敗しました。" -#: src/Module/Settings/Profile/Photo/Crop.php:139 +#: src/Module/Settings/Profile/Photo/Crop.php:150 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "新しい写真がすぐに表示されない場合は、Shiftキーを押しながらページをリロードするか、ブラウザーのキャッシュをクリアします。" -#: src/Module/Settings/Profile/Photo/Crop.php:147 +#: src/Module/Settings/Profile/Photo/Crop.php:155 msgid "Unable to process image" msgstr "画像を処理できません" -#: src/Module/Settings/Profile/Photo/Crop.php:166 +#: src/Module/Settings/Profile/Photo/Crop.php:174 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:190 +#: src/Module/Settings/Profile/Photo/Crop.php:196 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:213 -#: src/Module/Settings/Profile/Photo/Crop.php:217 +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 msgid "Crop Image" msgstr "クロップ画像" -#: src/Module/Settings/Profile/Photo/Crop.php:214 +#: src/Module/Settings/Profile/Photo/Crop.php:223 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:225 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:47 +#: src/Module/Settings/Profile/Photo/Index.php:45 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Profile Picture" msgstr "プロフィール画像をアップロード" -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:134 +#: src/Module/Settings/Profile/Photo/Index.php:132 msgid "or" msgstr "または" -#: src/Module/Settings/Profile/Photo/Index.php:136 +#: src/Module/Settings/Profile/Photo/Index.php:134 msgid "skip this step" msgstr "このステップを飛ばす" -#: src/Module/Settings/Profile/Photo/Index.php:138 +#: src/Module/Settings/Profile/Photo/Index.php:136 msgid "select a photo from your photo albums" msgstr "フォトアルバムから写真を選択する" -#: 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 +#: src/Module/Settings/RemoveMe.php:94 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[Friendica システム通知]" + +#: src/Module/Settings/RemoveMe.php:94 +msgid "User deleted their account" +msgstr "このユーザはアカウントを削除しました。" + +#: src/Module/Settings/RemoveMe.php:95 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "Friendicaノードで、ユーザーがアカウントを削除しました。 それらのデータがバックアップから削除されていることを確認してください。" + +#: src/Module/Settings/RemoveMe.php:96 +#, php-format +msgid "The user id is %d" +msgstr "ユーザIDは %d です" + +#: src/Module/Settings/RemoveMe.php:108 +msgid "Your user account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:128 +msgid "Remove My Account" +msgstr "自分のアカウントを削除します" + +#: src/Module/Settings/RemoveMe.php:129 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "これにより、アカウントが完全に削除されます。 これが完了すると、回復できなくなります。" + +#: src/Module/Settings/RemoveMe.php:131 +msgid "Please enter your password for verification:" +msgstr "確認のため、あなたのパスワードを入力してください。" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "" + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 msgid "Please enter your password to access this page." msgstr "このページにアクセスするには、パスワードを入力してください。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:70 +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 msgid "App-specific password generation failed: The description is empty." msgstr "アプリ固有のパスワード生成に失敗しました:説明は空です。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:73 +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 msgid "" "App-specific password generation failed: This description already exists." msgstr "アプリ固有のパスワード生成に失敗しました:この説明は既に存在します。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:77 +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 msgid "New app-specific password generated." msgstr "新しいアプリ固有のパスワードが生成されました。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:83 +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 msgid "App-specific passwords successfully revoked." msgstr "アプリ固有のパスワードが正常に取り消されました。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:93 +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 msgid "App-specific password successfully revoked." msgstr "アプリ固有のパスワードが正常に取り消されました。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:114 +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 msgid "Two-factor app-specific passwords" msgstr "二要素アプリ固有のパスワード" -#: src/Module/Settings/TwoFactor/AppSpecific.php:116 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 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 "

    アプリ固有のパスワードは、二要素認証をサポートしないサードパーティアプリケーションでアカウントを認証するために、通常のパスワードの代わりに使用されるランダムに生成されたパスワードです。

    " -#: src/Module/Settings/TwoFactor/AppSpecific.php:117 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "今すぐ新しいアプリ固有のパスワードをコピーしてください。あなたは再びそれを見ることができなくなります!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:120 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 msgid "Description" msgstr "説明" -#: src/Module/Settings/TwoFactor/AppSpecific.php:121 +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 msgid "Last Used" msgstr "最終使用" -#: src/Module/Settings/TwoFactor/AppSpecific.php:122 +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 msgid "Revoke" msgstr "取り消す" -#: src/Module/Settings/TwoFactor/AppSpecific.php:123 +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Revoke All" msgstr "すべて取り消す" -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 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 "新しいアプリ固有のパスワードを生成するときは、すぐに使用する必要があります。生成後、一度表示されます。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 msgid "Generate new app-specific password" msgstr "新しいアプリ固有のパスワードを生成する" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 msgid "Friendiqa on my Fairphone 2..." msgstr "フェアフォン2のFriendiqa ..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 msgid "Generate" msgstr "生成する" -#: src/Module/Settings/TwoFactor/Index.php:67 +#: src/Module/Settings/TwoFactor/Index.php:68 msgid "Two-factor authentication successfully disabled." msgstr "二要素認証が正常に無効になりました。" -#: src/Module/Settings/TwoFactor/Index.php:93 -msgid "Wrong Password" -msgstr "間違ったパスワード" - -#: src/Module/Settings/TwoFactor/Index.php:113 +#: src/Module/Settings/TwoFactor/Index.php:120 msgid "" "

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

    " msgstr "

    ログイン時にプロンプトが表示されたら、モバイルデバイスのアプリケーションを使用して二要素認証コードを取得します。

    " -#: src/Module/Settings/TwoFactor/Index.php:117 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Authenticator app" msgstr "認証アプリ" -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Configured" msgstr "設定済み" -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Not Configured" msgstr "設定されていません" -#: src/Module/Settings/TwoFactor/Index.php:119 +#: src/Module/Settings/TwoFactor/Index.php:126 msgid "

    You haven't finished configuring your authenticator app.

    " msgstr "

    認証アプリの設定が完了していません。

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

    Your authenticator app is correctly configured.

    " msgstr "

    認証アプリが正しく構成されています。

    " -#: src/Module/Settings/TwoFactor/Index.php:122 +#: src/Module/Settings/TwoFactor/Index.php:129 msgid "Recovery codes" msgstr "回復コード" -#: src/Module/Settings/TwoFactor/Index.php:123 +#: src/Module/Settings/TwoFactor/Index.php:130 msgid "Remaining valid codes" msgstr "残りの有効なコード" -#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "" "

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

    " msgstr "

    これらの使い捨てコードは、認証アプリのコードにアクセスできなくなった場合に、認証アプリのコードを置き換えることができます。

    " -#: src/Module/Settings/TwoFactor/Index.php:127 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "App-specific passwords" msgstr "アプリ固有のパスワード" -#: src/Module/Settings/TwoFactor/Index.php:128 +#: src/Module/Settings/TwoFactor/Index.php:135 msgid "Generated app-specific passwords" msgstr "生成されたアプリ固有のパスワード" -#: src/Module/Settings/TwoFactor/Index.php:130 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "" "

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

    " msgstr "

    これらのランダムに生成されたパスワードを使用すると、二要素認証をサポートしていないアプリで認証できます。

    " -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "Current password:" msgstr "現在のパスワード:" -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "二要素認証設定を変更するには、現在のパスワードを入力する必要があります。" -#: src/Module/Settings/TwoFactor/Index.php:134 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "Enable two-factor authentication" msgstr "二要素認証を有効にする" -#: src/Module/Settings/TwoFactor/Index.php:135 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Disable two-factor authentication" msgstr "二要素認証を無効にする" -#: src/Module/Settings/TwoFactor/Index.php:136 +#: src/Module/Settings/TwoFactor/Index.php:143 msgid "Show recovery codes" msgstr "復旧コードを表示" -#: src/Module/Settings/TwoFactor/Index.php:137 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "Manage app-specific passwords" msgstr "アプリ固有のパスワードを管理する" -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/Settings/TwoFactor/Index.php:145 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:139 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Finish app configuration" msgstr "アプリの構成を完了する" -#: src/Module/Settings/TwoFactor/Recovery.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:80 msgid "New recovery codes successfully generated." msgstr "新しい回復コードが正常に生成されました。" -#: src/Module/Settings/TwoFactor/Recovery.php:92 +#: src/Module/Settings/TwoFactor/Recovery.php:106 msgid "Two-factor recovery codes" msgstr "二要素回復コード" -#: src/Module/Settings/TwoFactor/Recovery.php:94 +#: src/Module/Settings/TwoFactor/Recovery.php:108 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 " @@ -9852,64 +10769,68 @@ msgid "" "account.

    " msgstr "

    リカバリコードは、デバイスへのアクセスを失い、二要素認証コードを受信できない場合にアカウントにアクセスするために使用できます。

    これらを安全な場所に置いてください!デバイスを紛失し、復旧コードをお持ちでない場合、アカウントにアクセスできなくなります。

    " -#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Recovery.php:110 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "新しい回復コードを生成する場合、新しいコードをコピーする必要があります。古いコードはもう機能しません。" -#: src/Module/Settings/TwoFactor/Recovery.php:97 +#: src/Module/Settings/TwoFactor/Recovery.php:111 msgid "Generate new recovery codes" msgstr "新しい回復コードを生成する" -#: src/Module/Settings/TwoFactor/Recovery.php:99 +#: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "Next: Verification" msgstr "次:検証" -#: src/Module/Settings/TwoFactor/Trusted.php:49 +#: src/Module/Settings/TwoFactor/Trusted.php:84 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:59 +#: src/Module/Settings/TwoFactor/Trusted.php:94 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:136 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:98 +#: src/Module/Settings/TwoFactor/Trusted.php:137 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 "" -#: src/Module/Settings/TwoFactor/Trusted.php:99 +#: src/Module/Settings/TwoFactor/Trusted.php:138 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:100 +#: src/Module/Settings/TwoFactor/Trusted.php:139 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:102 +#: src/Module/Settings/TwoFactor/Trusted.php:141 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:103 +#: src/Module/Settings/TwoFactor/Trusted.php:142 +msgid "Created At" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:143 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:105 +#: src/Module/Settings/TwoFactor/Trusted.php:145 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:78 +#: src/Module/Settings/TwoFactor/Verify.php:91 msgid "Two-factor authentication successfully activated." msgstr "二要素認証が正常にアクティブ化されました。" -#: src/Module/Settings/TwoFactor/Verify.php:111 +#: src/Module/Settings/TwoFactor/Verify.php:125 #, php-format msgid "" "

    Or you can submit the authentication settings manually:

    \n" @@ -9929,119 +10850,105 @@ msgid "" "" msgstr "

    または認証設定を手動で送信できます:

    \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
    " -#: src/Module/Settings/TwoFactor/Verify.php:131 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Two-factor code verification" msgstr "二要素コード検証" -#: src/Module/Settings/TwoFactor/Verify.php:133 +#: src/Module/Settings/TwoFactor/Verify.php:147 msgid "" "

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

    " msgstr "

    このQRコードを認証アプリでスキャンして、提供されたコードを送信してください。

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

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

    %s

    " msgstr "

    または、モバイルデバイスで次のURLを開くことができます。

    %s

    " -#: src/Module/Settings/TwoFactor/Verify.php:142 +#: src/Module/Settings/TwoFactor/Verify.php:156 msgid "Verify code and enable two-factor authentication" msgstr "コードを確認し、二要素認証を有効にします" -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:90 msgid "Export account" msgstr "アカウントのエクスポート" -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:90 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 "アカウント情報とコンタクトをエクスポートします。これを使用して、アカウントのバックアップを作成したり、別のサーバーに移動したりします。" -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:91 msgid "Export all" msgstr "すべてエクスポート" -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:91 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 "アカウント情報、コンタクト、すべてのアイテムをjsonとしてエクスポートします。非常に大きなファイルになる可能性があり、時間がかかる可能性があります。これを使用して、アカウントの完全バックアップを作成します(写真はエクスポートされません)" -#: src/Module/Settings/UserExport.php:71 +#: src/Module/Settings/UserExport.php:92 msgid "Export Contacts to CSV" msgstr "連絡先をCSV形式でエクスポート" -#: src/Module/Settings/UserExport.php:71 +#: src/Module/Settings/UserExport.php:92 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "フォローしているアカウントのリストをCSVファイルとしてエクスポートします。 マストドンなどに対応します。" -#: src/Module/Special/HTTPException.php:49 -msgid "Bad Request" -msgstr "要求の形式が正しくありません" +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "" -#: src/Module/Special/HTTPException.php:51 -msgid "Forbidden" -msgstr "禁止されています" +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "" -#: src/Module/Special/HTTPException.php:52 -msgid "Not Found" -msgstr "見つかりません" - -#: src/Module/Special/HTTPException.php:54 -msgid "Service Unavailable" -msgstr "サービスは利用できません" - -#: src/Module/Special/HTTPException.php:61 +#: src/Module/Special/DisplayNotFound.php:37 msgid "" -"The server cannot or will not process the request due to an apparent client " -"error." -msgstr "明らかなクライアントエラーのため、サーバーは要求を処理できないか、処理しません。" +"This node has blocked the top-level author or the author of the shared post." +msgstr "" -#: src/Module/Special/HTTPException.php:62 +#: src/Module/Special/DisplayNotFound.php:38 msgid "" -"Authentication is required and has failed or has not yet been provided." -msgstr "認証が必要であり、失敗したか、まだ提供されていません。" +"You have ignored or blocked the top-level author or the author of the shared" +" post." +msgstr "" -#: src/Module/Special/HTTPException.php:63 +#: src/Module/Special/DisplayNotFound.php:39 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 "要求は有効でしたが、サーバーはアクションを拒否しています。ユーザーがリソースに必要な権限を持っていないか、アカウントが必要な場合があります。" +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "" -#: src/Module/Special/HTTPException.php:64 -msgid "" -"The requested resource could not be found but may be available in the " -"future." -msgstr "要求されたリソースは見つかりませんでしたが、将来利用可能になる可能性があります。" +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "" -#: src/Module/Special/HTTPException.php:65 -msgid "" -"An unexpected condition was encountered and no more specific message is " -"suitable." -msgstr "予期しない状態が発生したため、適切な特定のメッセージはありません。" +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "" -#: 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 "サーバーは現在使用できません(メンテナンスのために過負荷になっているか、停止しているため)。後でもう一度やり直してください。" +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "" -#: src/Module/Special/HTTPException.php:76 +#: src/Module/Special/HTTPException.php:78 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:80 +#: src/Module/Special/HTTPException.php:83 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:46 src/Module/Tos.php:88 +#: src/Module/Tos.php:58 src/Module/Tos.php:107 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" @@ -10054,28 +10961,106 @@ msgid "" "settings, it is not necessary for communication." msgstr "登録時、およびユーザーアカウントとコンタクト間の通信を提供するために、ユーザーは表示名(ペンネーム)、ユーザー名(ニックネーム)、および有効な電子メールアドレスを提供する必要があります。\n他のプロフィールの詳細が表示されていなくても、ページの訪問者はアカウントのプロフィールページで名前にアクセスできます。\n電子メールアドレスは、インタラクションに関するユーザー通知の送信にのみ使用されますが、表示されることはありません。\nノードのユーザーディレクトリまたはグローバルユーザーディレクトリでのアカウントのリストはオプションであり、ユーザー設定で制御できます。通信には必要ありません。" -#: src/Module/Tos.php:47 src/Module/Tos.php:89 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 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 "このデータは通信に必要であり、通信パートナーのノードに渡されてそこに保存されます。ユーザーは、通信パートナーアカウントに送信される可能性のある追加のプライベートデータを入力できます。" -#: src/Module/Tos.php:48 src/Module/Tos.php:90 +#: src/Module/Tos.php:60 src/Module/Tos.php:109 #, 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 "ログインしたユーザーは、いつでもアカウント設定からアカウントデータをエクスポートできます。 ユーザーがアカウントを削除する場合は、 %1$s/removeme で削除できます。 アカウントの削除は取り消しできません。 データの削除は、通信パートナーのノードからも要求されます。" +"href=\"%1$s/settings/removeme\">%1$s/settings/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 "" -#: src/Module/Tos.php:51 src/Module/Tos.php:87 +#: src/Module/Tos.php:63 src/Module/Tos.php:106 msgid "Privacy Statement" msgstr "プライバシーに関する声明" +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "" + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "要求された項目は存在しないか、削除されました。" + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "クローズドなサーバでのユーザーインポートは、管理者のみが実行できます。" + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "アカウントの移動" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "別のFriendicaサーバーからアカウントをインポートできます。" + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "古いサーバからアカウントをエクスポートして、このサーバにアップロードする必要があります。 アップロード後、このサーバが、すべてのコンタクト・元のアカウントを再作成します。 また、あなたがこのサーバに移転したことを友人にお知らせします。" + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "この機能はまだ実験的なものです。 OStatusネットワーク(GNU Social / Statusnet)またはDiasporaからのコンタクトはインポートできません。" + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "アカウントファイル" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "アカウントをエクスポートするには、「設定」->「個人データのエクスポート」に進み、「アカウントのエクスポート」を選択します" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "アカウントファイルのデコードエラー" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "エラー!ファイルにバージョンデータがありません!これはFriendicaアカウントファイルではなさそうです。" + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "ユーザー '%s' はこのサーバーに既に存在します!" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "ユーザ作成エラー" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%dコンタクトはインポートされませんでした" + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "ユーザープロフィール作成エラー" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "完了しました。これでであなたのユーザー名とパスワードでログインできます。 " + #: src/Module/Welcome.php:44 msgid "Welcome to Friendica" msgstr "Friendicaへようこそ" @@ -10206,15 +11191,15 @@ msgid "" msgstr "コンタクトページのサイドパネルには、新しい友達を見つけるためのいくつかのツールがあります。関心ごとに人を照合し、名前または興味ごとに人を検索し、ネットワーク関係に基づいて提案を提供できます。新しいサイトでは、通常24時間以内に友人の提案が表示され始めます。" #: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "コンタクトをグループ化する" +msgid "Add Your Contacts To Circle" +msgstr "" #: 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 "友達を作成したら、コンタクトページのサイドバーからプライベートな会話グループに整理し、ネットワークページで各グループとプライベートにやり取りできます。" +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "" #: src/Module/Welcome.php:80 msgid "Why Aren't My Posts Public?" @@ -10241,342 +11226,786 @@ msgid "" " features and resources." msgstr "プログラムのその他の機能やリソースの詳細については、ヘルプページをご覧ください。" -#: src/Object/EMail/ItemCCEMail.php:39 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +msgid "{0} wants to follow you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +msgid "{0} has started following you" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#, php-format +msgid "%s liked %s's post" +msgstr "%sが%sの投稿を高く評価しました" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#, php-format +msgid "%s disliked %s's post" +msgstr "%sは%sの投稿を好きではないようです" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#, php-format +msgid "%s is attending %s's event" +msgstr "%sは%sのイベントに参加しています" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#, php-format +msgid "%s is not attending %s's event" +msgstr "%sは%sのイベントを欠席します" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#, php-format +msgid "%s may attending %s's event" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#, php-format +msgid "%s is now friends with %s" +msgstr "%sは%sと友達になりました" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#, php-format +msgid "%s commented on %s's post" +msgstr "%sが%sの投稿にコメントしました" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#, php-format +msgid "%s created a new post" +msgstr "%sが新しい投稿を作成しました" + +#: src/Navigation/Notifications/Factory/Introduction.php:133 +msgid "Friend Suggestion" +msgstr "友達の提案" + +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "Friend/Connect Request" +msgstr "フレンド/接続リクエスト" + +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "New Follower" +msgstr "新しいフォロワー" + +#: src/Navigation/Notifications/Factory/Notification.php:134 +#, php-format +msgid "%1$s wants to follow you" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:136 +#, php-format +msgid "%1$s has started following you" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:208 +#, php-format +msgid "%1$s liked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:211 +#, php-format +msgid "%1$s liked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:218 +#, php-format +msgid "%1$s disliked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:221 +#, php-format +msgid "%1$s disliked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:228 +#, php-format +msgid "%1$s shared your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 +#, php-format +msgid "%1$s shared your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:235 +#: src/Navigation/Notifications/Factory/Notification.php:305 +#, php-format +msgid "%1$s shared the post %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:237 +#: src/Navigation/Notifications/Factory/Notification.php:307 +#, php-format +msgid "%1$s shared a post from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:239 +#: src/Navigation/Notifications/Factory/Notification.php:309 +#, php-format +msgid "%1$s shared the post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:311 +#, php-format +msgid "%1$s shared a post" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:249 +#, php-format +msgid "%1$s wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:256 +#, php-format +msgid "%1$s does not want to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:263 +#, php-format +msgid "%1$s maybe wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:270 +#, php-format +msgid "%1$s tagged you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:274 +#, php-format +msgid "%1$s replied to you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:278 +#, php-format +msgid "%1$s commented in your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:282 +#, php-format +msgid "%1$s commented on your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:289 +#, php-format +msgid "%1$s commented in their thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:291 +#, php-format +msgid "%1$s commented in their thread" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:293 +#, php-format +msgid "%1$s commented in the thread %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:295 +#, php-format +msgid "%1$s commented in the thread from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:300 +#, php-format +msgid "%1$s commented on your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 +msgid "[Friendica:Notify]" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:293 +#, php-format +msgid "%s New mail received at %s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:295 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s さんが %2$s に あなたにプライベートメッセージを送りました" + +#: src/Navigation/Notifications/Repository/Notify.php:296 +msgid "a private message" +msgstr "プライベートメッセージ" + +#: src/Navigation/Notifications/Repository/Notify.php:296 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s があなたに %2$s を送りました" + +#: src/Navigation/Notifications/Repository/Notify.php:298 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "%s を開いて、プライベートメッセージを確認・返信してください" + +#: src/Navigation/Notifications/Repository/Notify.php:328 +#, php-format +msgid "%1$s commented on %2$s's %3$s %4$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:333 +#, php-format +msgid "%1$s commented on your %2$s %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:337 +#, php-format +msgid "%1$s commented on their %2$s %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 +#, php-format +msgid "%1$s Comment to conversation #%2$d by %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:343 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s さんが、あなたがフォローしている項目/会話にコメントしました" + +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr " %s を開いて、コメントを確認・返信してください" + +#: src/Navigation/Notifications/Repository/Notify.php:354 +#, php-format +msgid "%s %s posted to your profile wall" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:356 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s が %2$s に あなたのプロフィールウォールへ投稿しました" + +#: src/Navigation/Notifications/Repository/Notify.php:357 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s が [url=%2$s]あなたのウォール[/url] に投稿しました" + +#: src/Navigation/Notifications/Repository/Notify.php:370 +#, php-format +msgid "%s Introduction received" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:372 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "'%1$s' から %2$s に 招待が来ています" + +#: src/Navigation/Notifications/Repository/Notify.php:373 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "[url=%1$s]招待[/url] が %2$s から来ています。" + +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 +#, php-format +msgid "You may visit their profile at %s" +msgstr "彼らのプロフィールを %s にて開けるかもしれません。" + +#: src/Navigation/Notifications/Repository/Notify.php:380 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr " %s を開いて、招待を承諾・拒否してください。" + +#: src/Navigation/Notifications/Repository/Notify.php:387 +#, php-format +msgid "%s A new person is sharing with you" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s さんが %2$s にて あなたの投稿を共有しました" + +#: src/Navigation/Notifications/Repository/Notify.php:397 +#, php-format +msgid "%s You have a new follower" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "新しいフォロワーです %2$s : %1$s" + +#: src/Navigation/Notifications/Repository/Notify.php:413 +#, php-format +msgid "%s Friend suggestion received" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:415 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "'%1$s' より %2$s に 友達の候補を受け取りました" + +#: src/Navigation/Notifications/Repository/Notify.php:416 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "%3$s から %2$s への [url=%1$s]友達の候補[/url] を受け取りました。" + +#: src/Navigation/Notifications/Repository/Notify.php:422 +msgid "Name:" +msgstr "名前:" + +#: src/Navigation/Notifications/Repository/Notify.php:423 +msgid "Photo:" +msgstr "写真:" + +#: src/Navigation/Notifications/Repository/Notify.php:426 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "%s を開いて、候補を承諾・拒否してください。" + +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 +#, php-format +msgid "%s Connection accepted" +msgstr "%s つながりが承諾されました" + +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "'%1$s' は %2$s に あなたからのつながりの申込みを承諾しました" + +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s は あなたからの [url=%1$s]つながりの申し込み[/url] を承諾しました。" + +#: src/Navigation/Notifications/Repository/Notify.php:442 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "あなたたちは友達になりました。ステータスの更新、写真、メールを制限なくやりとりできます。" + +#: src/Navigation/Notifications/Repository/Notify.php:444 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "このつながりを変更する場合は %s を開いてください。" + +#: src/Navigation/Notifications/Repository/Notify.php:457 +#, php-format +msgid "" +"'%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." +msgstr "'%1$s' はあなたをファンとして受け入れました。プライベートメッセージやプロフィール インタラクションなど、一部のやりとりは制限されています。 有名人またはコミュニティページの場合、これらの設定は自動的に適用されます。" + +#: src/Navigation/Notifications/Repository/Notify.php:459 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future." +msgstr "'%1$s' は後日、これを双方向・より寛容な関係へと拡張する場合があります。" + +#: src/Navigation/Notifications/Repository/Notify.php:461 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "このつながりを変更する場合は %s を開いてください。" + +#: src/Navigation/Notifications/Repository/Notify.php:471 +msgid "registration request" +msgstr "登録リクエスト" + +#: src/Navigation/Notifications/Repository/Notify.php:473 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "'%1$s' より %2$s に 登録リクエストを受け取りました" + +#: src/Navigation/Notifications/Repository/Notify.php:474 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "[url=%1$s]登録リクエスト[/url] が %2$s から来ています。" + +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 +#, php-format +msgid "" +"Full Name:\t%s\n" +"Site Location:\t%s\n" +"Login Name:\t%s (%s)" +msgstr "フルネーム:\t%s\nサイト:\t%s\nログイン名:\t%s (%s)" + +#: src/Navigation/Notifications/Repository/Notify.php:485 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "%s を開いて、リクエストを承諾・拒否してください。" + +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:780 +#, php-format +msgid "%s %s tagged you" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:783 +#, php-format +msgid "%s %s shared a new post" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "" + +#: src/Object/EMail/ItemCCEMail.php:42 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "このメッセージは、Friendicaソーシャルネットワークのメンバーである%sから送信されました。" -#: src/Object/EMail/ItemCCEMail.php:41 +#: src/Object/EMail/ItemCCEMail.php:44 #, php-format msgid "You may visit them online at %s" msgstr "あなたは%sでそれらをオンラインで訪れることができます" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:45 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "これらのメッセージを受信したくない場合は、この投稿に返信して送信者に連絡してください。" -#: src/Object/EMail/ItemCCEMail.php:46 +#: src/Object/EMail/ItemCCEMail.php:49 #, php-format msgid "%s posted an update." msgstr "%sが更新を投稿しました。" -#: src/Object/Post.php:148 -msgid "This entry was edited" -msgstr "このエントリは編集されました" - -#: src/Object/Post.php:176 +#: src/Object/Post.php:138 msgid "Private Message" msgstr "自分のみ" -#: src/Object/Post.php:192 src/Object/Post.php:194 +#: src/Object/Post.php:142 +msgid "Public Message" +msgstr "" + +#: src/Object/Post.php:146 +msgid "Unlisted Message" +msgstr "" + +#: src/Object/Post.php:181 +msgid "This entry was edited" +msgstr "このエントリは編集されました" + +#: src/Object/Post.php:209 +msgid "Connector Message" +msgstr "" + +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "編集" -#: src/Object/Post.php:214 -msgid "Pinned item" -msgstr "ピン留め項目" - -#: src/Object/Post.php:218 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "グローバルに削除" -#: src/Object/Post.php:218 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "ローカルで削除" -#: src/Object/Post.php:234 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:239 +#: src/Object/Post.php:273 +#, php-format +msgid "Ignore %s" +msgstr "" + +#: src/Object/Post.php:278 +#, php-format +msgid "Collapse %s" +msgstr "" + +#: src/Object/Post.php:282 +msgid "Report post" +msgstr "" + +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "フォルダーに保存" -#: src/Object/Post.php:273 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "参加します" -#: src/Object/Post.php:273 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "私は出席しません" -#: src/Object/Post.php:273 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "私は出席するかもしれません" -#: src/Object/Post.php:303 +#: src/Object/Post.php:363 msgid "Ignore thread" msgstr "スレッドを無視" -#: src/Object/Post.php:304 +#: src/Object/Post.php:364 msgid "Unignore thread" msgstr "無視しないスレッド" -#: src/Object/Post.php:305 +#: src/Object/Post.php:365 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:317 -msgid "Pin" -msgstr "" - -#: src/Object/Post.php:318 -msgid "Unpin" -msgstr "" - -#: src/Object/Post.php:319 -msgid "Toggle pin status" -msgstr "" - -#: src/Object/Post.php:322 -msgid "Pinned" -msgstr "" - -#: src/Object/Post.php:329 +#: src/Object/Post.php:375 msgid "Add star" msgstr "" -#: src/Object/Post.php:330 +#: src/Object/Post.php:376 msgid "Remove star" msgstr "" -#: src/Object/Post.php:331 +#: src/Object/Post.php:377 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:338 +#: src/Object/Post.php:388 +msgid "Pin" +msgstr "" + +#: src/Object/Post.php:389 +msgid "Unpin" +msgstr "" + +#: src/Object/Post.php:390 +msgid "Toggle pin status" +msgstr "" + +#: src/Object/Post.php:393 +msgid "Pinned" +msgstr "" + +#: src/Object/Post.php:398 msgid "Add tag" msgstr "" -#: src/Object/Post.php:351 +#: src/Object/Post.php:411 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:351 +#: src/Object/Post.php:411 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:354 +#: src/Object/Post.php:414 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:354 +#: src/Object/Post.php:414 msgid "Reshare" msgstr "" -#: src/Object/Post.php:355 +#: src/Object/Post.php:415 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:355 +#: src/Object/Post.php:415 msgid "Unshare" msgstr "" -#: src/Object/Post.php:400 +#: src/Object/Post.php:466 #, php-format msgid "%s (Received %s)" msgstr "%s (%s を受け取りました)" -#: src/Object/Post.php:405 +#: src/Object/Post.php:472 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:405 +#: src/Object/Post.php:472 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:421 -msgid "Pushed" +#: src/Object/Post.php:494 +msgid "Share via ..." msgstr "" -#: src/Object/Post.php:421 -msgid "Pulled" +#: src/Object/Post.php:494 +msgid "Share via external services" msgstr "" -#: src/Object/Post.php:455 +#: src/Object/Post.php:523 msgid "to" msgstr "に" -#: src/Object/Post.php:456 +#: src/Object/Post.php:524 msgid "via" msgstr "投稿先:" -#: src/Object/Post.php:457 +#: src/Object/Post.php:525 msgid "Wall-to-Wall" msgstr "壁間" -#: src/Object/Post.php:458 +#: src/Object/Post.php:526 msgid "via Wall-To-Wall:" msgstr "Wall-to-Wall経由:" -#: src/Object/Post.php:496 +#: src/Object/Post.php:573 #, php-format msgid "Reply to %s" msgstr "%sへの返信" -#: src/Object/Post.php:499 +#: src/Object/Post.php:576 msgid "More" msgstr "更に" -#: src/Object/Post.php:517 +#: src/Object/Post.php:595 msgid "Notifier task is pending" msgstr "通知タスクは保留中です" -#: src/Object/Post.php:518 +#: src/Object/Post.php:596 msgid "Delivery to remote servers is pending" msgstr "リモートサーバーへの配信は保留中です" -#: src/Object/Post.php:519 +#: src/Object/Post.php:597 msgid "Delivery to remote servers is underway" msgstr "リモートサーバーへの配信が進行中です" -#: src/Object/Post.php:520 +#: src/Object/Post.php:598 msgid "Delivery to remote servers is mostly done" msgstr "リモートサーバーへの配信はもうすぐ完了します" -#: src/Object/Post.php:521 +#: src/Object/Post.php:599 msgid "Delivery to remote servers is done" msgstr "リモートサーバーへの配信が完了しました" -#: src/Object/Post.php:541 +#: src/Object/Post.php:619 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%dコメント" -#: src/Object/Post.php:542 +#: src/Object/Post.php:620 msgid "Show more" msgstr "もっと見せる" -#: src/Object/Post.php:543 +#: src/Object/Post.php:621 msgid "Show fewer" msgstr "表示を減らす" -#: src/Protocol/Diaspora.php:3434 -msgid "Attachments:" -msgstr "添付ファイル:" +#: src/Object/Post.php:657 +#, php-format +msgid "Reshared by: %s" +msgstr "" -#: src/Protocol/OStatus.php:1758 +#: src/Object/Post.php:662 +#, php-format +msgid "Viewed by: %s" +msgstr "" + +#: src/Object/Post.php:667 +#, php-format +msgid "Liked by: %s" +msgstr "" + +#: src/Object/Post.php:672 +#, php-format +msgid "Disliked by: %s" +msgstr "" + +#: src/Object/Post.php:677 +#, php-format +msgid "Attended by: %s" +msgstr "" + +#: src/Object/Post.php:682 +#, php-format +msgid "Maybe attended by: %s" +msgstr "" + +#: src/Object/Post.php:687 +#, php-format +msgid "Not attended by: %s" +msgstr "" + +#: src/Object/Post.php:692 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "" + +#: src/Protocol/OStatus.php:1390 #, php-format msgid "%s is now following %s." msgstr "%sは現在 %s をフォローしています。" -#: src/Protocol/OStatus.php:1759 +#: src/Protocol/OStatus.php:1391 msgid "following" msgstr "フォローしている" -#: src/Protocol/OStatus.php:1762 +#: src/Protocol/OStatus.php:1394 #, php-format msgid "%s stopped following %s." msgstr "%s は %s のフォローを解除しました" -#: src/Protocol/OStatus.php:1763 +#: src/Protocol/OStatus.php:1395 msgid "stopped following" msgstr "フォローを解除しました" -#: src/Render/FriendicaSmartyEngine.php:52 -msgid "The folder view/smarty3/ must be writable by webserver." +#: src/Render/FriendicaSmartyEngine.php:56 +#, php-format +msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Repository/ProfileField.php:275 -msgid "Hometown:" -msgstr "出身地:" - -#: src/Repository/ProfileField.php:276 -msgid "Marital Status:" -msgstr "" - -#: src/Repository/ProfileField.php:277 -msgid "With:" -msgstr "" - -#: src/Repository/ProfileField.php:278 -msgid "Since:" -msgstr "" - -#: src/Repository/ProfileField.php:279 -msgid "Sexual Preference:" -msgstr "性的嗜好:" - -#: src/Repository/ProfileField.php:280 -msgid "Political Views:" -msgstr "政見:" - -#: src/Repository/ProfileField.php:281 -msgid "Religious Views:" -msgstr "宗教的見解:" - -#: src/Repository/ProfileField.php:282 -msgid "Likes:" -msgstr "好きなもの:" - -#: src/Repository/ProfileField.php:283 -msgid "Dislikes:" -msgstr "嫌いなもの:" - -#: src/Repository/ProfileField.php:284 -msgid "Title/Description:" -msgstr "タイトル説明:" - -#: src/Repository/ProfileField.php:286 -msgid "Musical interests" -msgstr "音楽的興味" - -#: src/Repository/ProfileField.php:287 -msgid "Books, literature" -msgstr "本、文学" - -#: src/Repository/ProfileField.php:288 -msgid "Television" -msgstr "テレビ" - -#: src/Repository/ProfileField.php:289 -msgid "Film/dance/culture/entertainment" -msgstr "映画/ダンス/文化/エンターテイメント" - -#: src/Repository/ProfileField.php:290 -msgid "Hobbies/Interests" -msgstr "趣味/興味" - -#: src/Repository/ProfileField.php:291 -msgid "Love/romance" -msgstr "愛/ロマンス" - -#: src/Repository/ProfileField.php:292 -msgid "Work/employment" -msgstr "仕事/雇用" - -#: src/Repository/ProfileField.php:293 -msgid "School/education" -msgstr "学校教育" - -#: src/Repository/ProfileField.php:294 -msgid "Contact information and Social Networks" -msgstr "コンタクト情報とソーシャルネットワーク" - -#: src/Security/Authentication.php:210 +#: src/Security/Authentication.php:227 msgid "Login failed." msgstr "ログインに失敗しました。" -#: src/Security/Authentication.php:251 +#: src/Security/Authentication.php:272 msgid "Login failed. Please check your credentials." msgstr "ログインに失敗しました。認証情報を確かめてください。" -#: src/Security/Authentication.php:370 +#: src/Security/Authentication.php:391 #, php-format msgid "Welcome %s" msgstr "ようこそ%s" -#: src/Security/Authentication.php:371 +#: src/Security/Authentication.php:392 msgid "Please upload a profile photo." msgstr "プロフィール写真をアップロードしてください。" -#: src/Util/EMailer/MailBuilder.php:259 +#: src/Util/EMailer/MailBuilder.php:260 msgid "Friendica Notification" msgstr "Friendica の通知" @@ -10599,251 +12028,271 @@ msgstr "" msgid "thanks" msgstr "" -#: src/Util/Temporal.php:167 +#: src/Util/Temporal.php:172 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DDまたはMM-DD" -#: src/Util/Temporal.php:314 +#: src/Util/Temporal.php:280 +#, php-format +msgid "Time zone: %s Change in Settings" +msgstr "" + +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 msgid "never" msgstr "" -#: src/Util/Temporal.php:321 +#: src/Util/Temporal.php:343 msgid "less than a second ago" msgstr "1秒以内前" -#: src/Util/Temporal.php:329 +#: src/Util/Temporal.php:352 msgid "year" msgstr "年" -#: src/Util/Temporal.php:329 +#: src/Util/Temporal.php:352 msgid "years" msgstr "年" -#: src/Util/Temporal.php:330 +#: src/Util/Temporal.php:353 msgid "months" msgstr "月" -#: src/Util/Temporal.php:331 +#: src/Util/Temporal.php:354 msgid "weeks" msgstr "週間" -#: src/Util/Temporal.php:332 +#: src/Util/Temporal.php:355 msgid "days" msgstr "日" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:356 msgid "hour" msgstr "時間" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:356 msgid "hours" msgstr "時間" -#: src/Util/Temporal.php:334 +#: src/Util/Temporal.php:357 msgid "minute" msgstr "分" -#: src/Util/Temporal.php:334 +#: src/Util/Temporal.php:357 msgid "minutes" msgstr "分" -#: src/Util/Temporal.php:335 +#: src/Util/Temporal.php:358 msgid "second" msgstr "秒" -#: src/Util/Temporal.php:335 +#: src/Util/Temporal.php:358 msgid "seconds" msgstr "秒" -#: src/Util/Temporal.php:345 +#: src/Util/Temporal.php:367 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:348 +#: src/Util/Temporal.php:370 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d%2$s前" -#: src/Worker/Delivery.php:529 -msgid "(no subject)" +#: src/Worker/PushSubscription.php:110 +msgid "Notification from Friendica" msgstr "" -#: view/theme/duepuntozero/config.php:52 +#: src/Worker/PushSubscription.php:111 +msgid "Empty Post" +msgstr "" + +#: view/theme/duepuntozero/config.php:68 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:53 +#: view/theme/duepuntozero/config.php:69 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:54 +#: view/theme/duepuntozero/config.php:70 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:55 +#: view/theme/duepuntozero/config.php:71 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:56 +#: view/theme/duepuntozero/config.php:72 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:57 +#: view/theme/duepuntozero/config.php:73 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:58 +#: view/theme/duepuntozero/config.php:74 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:87 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:142 +#: view/theme/frio/config.php:153 msgid "Light (Accented)" msgstr "" -#: view/theme/frio/config.php:143 +#: view/theme/frio/config.php:154 msgid "Dark (Accented)" msgstr "" -#: view/theme/frio/config.php:144 +#: view/theme/frio/config.php:155 msgid "Black (Accented)" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Note" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:162 +#: view/theme/frio/config.php:173 msgid "Custom" msgstr "" -#: view/theme/frio/config.php:163 +#: view/theme/frio/config.php:174 msgid "Legacy" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:175 msgid "Accented" msgstr "" -#: view/theme/frio/config.php:165 +#: view/theme/frio/config.php:176 msgid "Select color scheme" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Select scheme accent" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Red" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Green" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "Copy or paste schemestring" msgstr "スキーム文字列のコピーまたは貼り付け" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "この文字列をコピーして、テーマを他の人と共有できます。ここに貼り付けると、スキーム文字列が適用されます" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:179 msgid "Navigation bar background color" msgstr "ナビゲーションバーの背景色" -#: view/theme/frio/config.php:169 +#: view/theme/frio/config.php:180 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:170 +#: view/theme/frio/config.php:181 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:171 +#: view/theme/frio/config.php:182 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:183 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:173 +#: view/theme/frio/config.php:184 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:174 +#: view/theme/frio/config.php:185 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "" + +#: view/theme/frio/config.php:192 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:39 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:39 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:40 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:40 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:41 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:41 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:43 +#: view/theme/frio/php/Image.php:42 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:43 +#: view/theme/frio/php/Image.php:42 msgid "Repeat image to fill the screen." msgstr "" @@ -10855,78 +12304,78 @@ msgstr "" msgid "Back to top" msgstr "" -#: view/theme/frio/theme.php:208 +#: view/theme/frio/theme.php:211 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:211 +#: view/theme/frio/theme.php:214 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:74 +#: view/theme/quattro/config.php:90 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:75 +#: view/theme/quattro/config.php:91 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:76 +#: view/theme/quattro/config.php:92 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "show" msgstr "" -#: view/theme/vier/config.php:121 +#: view/theme/vier/config.php:137 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:122 +#: view/theme/vier/config.php:138 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:125 +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:124 +#: view/theme/vier/config.php:140 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:296 +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:126 +#: view/theme/vier/config.php:142 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:152 +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:211 +#: view/theme/vier/theme.php:234 msgid "Quick Start" msgstr "" diff --git a/view/lang/ja/strings.php b/view/lang/ja/strings.php index 454b3bbf5..265125df7 100644 --- a/view/lang/ja/strings.php +++ b/view/lang/ja/strings.php @@ -5,265 +5,13 @@ function string_plural_select_ja($n){ $n = intval($n); return intval(0); }} -$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ - 0 => '一日の最大投稿数 %d 件を超えたため、投稿できませんでした。', -]; -$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ - 0 => '一週間の最大投稿数 %d 件を超えたため、投稿できませんでした。', -]; -$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = '月間の最大投稿数 %d 件を超えたため、投稿できませんでした。'; -$a->strings['Profile Photos'] = 'プロフィール写真'; -$a->strings['%1$s poked %2$s'] = '%1$s が %2$s にpokeを送りました'; -$a->strings['event'] = 'イベント'; -$a->strings['status'] = 'ステータス'; -$a->strings['photo'] = '写真'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s が %2$s の %3$s を %4$s としてタグ付けしました'; -$a->strings['Select'] = '選択'; -$a->strings['Delete'] = '削除'; -$a->strings['View %s\'s profile @ %s'] = '%sのプロフィールを確認 @ %s'; -$a->strings['Categories:'] = 'カテゴリ:'; -$a->strings['Filed under:'] = '格納先:'; -$a->strings['%s from %s'] = '%s から %s'; -$a->strings['View in context'] = '文脈で表示する'; -$a->strings['Please wait'] = 'お待ち下さい'; -$a->strings['remove'] = '削除'; -$a->strings['Delete Selected Items'] = '選択した項目を削除'; -$a->strings['%s reshared this.'] = '%s が再共有しました。'; -$a->strings['Follow Thread'] = 'このスレッドをフォロー'; -$a->strings['View Status'] = 'ステータスを見る'; -$a->strings['View Profile'] = 'プロフィールを見る'; -$a->strings['View Photos'] = '写真を見る'; -$a->strings['Network Posts'] = 'ネットワーク投稿'; -$a->strings['View Contact'] = 'コンタクトを見る'; -$a->strings['Send PM'] = 'PMを送る'; -$a->strings['Block'] = 'ブロック'; -$a->strings['Ignore'] = '無視'; -$a->strings['Languages'] = '言語'; -$a->strings['Poke'] = 'Pokeを送る'; -$a->strings['Connect/Follow'] = 'つながる/フォローする'; -$a->strings['%s likes this.'] = '%s がいいねしました'; -$a->strings['%s doesn\'t like this.'] = '%s はこれを好きではないようです'; -$a->strings['%s attends.'] = '%s が参加します。'; -$a->strings['%s doesn\'t attend.'] = '%s は欠席します。'; -$a->strings['%s attends maybe.'] = '%s は様子見しています。'; -$a->strings['and'] = 'と'; -$a->strings['and %d other people'] = 'と他 %d 人'; -$a->strings['%2$d people like this'] = '%2$d 人 がいいねしました'; -$a->strings['%s like this.'] = '%s がいいねしました'; -$a->strings['%2$d people don\'t like this'] = '%2$d 人 がこれを好きでは無いようです'; -$a->strings['%s don\'t like this.'] = '%s はこれを好きではないようです'; -$a->strings['%2$d people attend'] = '%2$d 人 が参加します'; -$a->strings['%s attend.'] = '%s が参加します。'; -$a->strings['%2$d people don\'t attend'] = '%2$d 人 が欠席します'; -$a->strings['%s don\'t attend.'] = '%s は欠席します。'; -$a->strings['%2$d people attend maybe'] = '%2$d 人 が様子見しています'; -$a->strings['%s attend maybe.'] = '%s は様子見しています。'; -$a->strings['%2$d people reshared this'] = '%2$d 人 が再共有しました'; -$a->strings['Visible to everybody'] = 'すべての人 が閲覧可能です'; -$a->strings['Please enter a image/video/audio/webpage URL:'] = '画像/動画/音声/ウェブページのURLを入力してください:'; -$a->strings['Tag term:'] = '用語のタグ付け:'; -$a->strings['Save to Folder:'] = '保存先のフォルダ:'; -$a->strings['Where are you right now?'] = 'どこにいますか?:'; -$a->strings['Delete item(s)?'] = 'これ(ら)の項目を削除しますか?'; -$a->strings['New Post'] = '新しい投稿'; -$a->strings['Share'] = '共有'; -$a->strings['Loading...'] = '読み込み中…'; -$a->strings['Upload photo'] = '写真をアップロード'; -$a->strings['upload photo'] = '写真をアップロード'; -$a->strings['Attach file'] = 'ファイルを添付'; -$a->strings['attach file'] = 'ファイルを添付'; -$a->strings['Bold'] = '太字'; -$a->strings['Italic'] = '斜体'; -$a->strings['Underline'] = '下線'; -$a->strings['Quote'] = '引用'; -$a->strings['Code'] = 'コード'; -$a->strings['Image'] = '画像'; -$a->strings['Link'] = 'リンク'; -$a->strings['Link or Media'] = 'リンク/メディア'; -$a->strings['Video'] = '動画'; -$a->strings['Set your location'] = '現在地を設定'; -$a->strings['set location'] = '現在地を設定'; -$a->strings['Clear browser location'] = 'ブラウザの現在地を解除'; -$a->strings['clear location'] = '現在地を解除'; -$a->strings['Set title'] = '件名を設定'; -$a->strings['Categories (comma-separated list)'] = 'カテゴリ(半角カンマ区切り)'; -$a->strings['Permission settings'] = '権限設定'; -$a->strings['Permissions'] = '許可'; -$a->strings['Public post'] = '一般公開の投稿'; -$a->strings['Preview'] = 'プレビュー'; -$a->strings['Cancel'] = 'キャンセル'; -$a->strings['Message'] = 'メッセージ'; -$a->strings['Browser'] = 'ブラウザ'; -$a->strings['Open Compose page'] = '作成ページを開く'; -$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s さんが %2$s に あなたにプライベートメッセージを送りました'; -$a->strings['a private message'] = 'プライベートメッセージ'; -$a->strings['%1$s sent you %2$s.'] = '%1$s があなたに %2$s を送りました'; -$a->strings['Please visit %s to view and/or reply to your private messages.'] = '%s を開いて、プライベートメッセージを確認・返信してください'; -$a->strings['%1$s tagged you at %2$s'] = '%1$s さんが %2$s にて あなたをタグ付けしました'; -$a->strings['%s commented on an item/conversation you have been following.'] = '%s さんが、あなたがフォローしている項目/会話にコメントしました'; -$a->strings['Please visit %s to view and/or reply to the conversation.'] = ' %s を開いて、コメントを確認・返信してください'; -$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s が %2$s に あなたのプロフィールウォールへ投稿しました'; -$a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s が [url=%2$s]あなたのウォール[/url] に投稿しました'; -$a->strings['%1$s shared a new post at %2$s'] = '%1$s が %2$s に 投稿を共有しました'; -$a->strings['%1$s [url=%2$s]shared a post[/url].'] = '%1$s が [url=%2$s]投稿を共有しました[/url].'; -$a->strings['%1$s poked you at %2$s'] = '%1$s からあなたへ %2$s に Pokeがありました'; -$a->strings['%1$s [url=%2$s]poked you[/url].'] = '%1$s から [url=%2$s]Pokeがありました[/url].'; -$a->strings['%1$s tagged your post at %2$s'] = '%1$s が %2$s に あなたの投稿をタグ付けしました'; -$a->strings['%1$s tagged [url=%2$s]your post[/url]'] = '%1$s が [url=%2$s]あなたの投稿[/url] をタグ付けしました'; -$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = '\'%1$s\' から %2$s に 招待が来ています'; -$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = '[url=%1$s]招待[/url] が %2$s から来ています。'; -$a->strings['You may visit their profile at %s'] = '彼らのプロフィールを %s にて開けるかもしれません。'; -$a->strings['Please visit %s to approve or reject the introduction.'] = ' %s を開いて、招待を承諾・拒否してください。'; -$a->strings['%1$s is sharing with you at %2$s'] = '%1$s さんが %2$s にて あなたの投稿を共有しました'; -$a->strings['You have a new follower at %2$s : %1$s'] = '新しいフォロワーです %2$s : %1$s'; -$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = '\'%1$s\' より %2$s に 友達の候補を受け取りました'; -$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = '%3$s から %2$s への [url=%1$s]友達の候補[/url] を受け取りました。'; -$a->strings['Name:'] = '名前:'; -$a->strings['Photo:'] = '写真:'; -$a->strings['Please visit %s to approve or reject the suggestion.'] = '%s を開いて、候補を承諾・拒否してください。'; -$a->strings['%s Connection accepted'] = '%s つながりが承諾されました'; -$a->strings['\'%1$s\' has accepted your connection request at %2$s'] = '\'%1$s\' は %2$s に あなたからのつながりの申込みを承諾しました'; -$a->strings['%2$s has accepted your [url=%1$s]connection request[/url].'] = '%2$s は あなたからの [url=%1$s]つながりの申し込み[/url] を承諾しました。'; -$a->strings['You are now mutual friends and may exchange status updates, photos, and email without restriction.'] = 'あなたたちは友達になりました。ステータスの更新、写真、メールを制限なくやりとりできます。'; -$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'このつながりを変更する場合は %s を開いてください。'; -$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\' はあなたをファンとして受け入れました。プライベートメッセージやプロフィール インタラクションなど、一部のやりとりは制限されています。 有名人またはコミュニティページの場合、これらの設定は自動的に適用されます。'; -$a->strings['\'%1$s\' may choose to extend this into a two-way or more permissive relationship in the future.'] = '\'%1$s\' は後日、これを双方向・より寛容な関係へと拡張する場合があります。'; -$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'このつながりを変更する場合は %s を開いてください。'; -$a->strings['[Friendica System Notify]'] = '[Friendica システム通知]'; -$a->strings['registration request'] = '登録リクエスト'; -$a->strings['You\'ve received a registration request from \'%1$s\' at %2$s'] = '\'%1$s\' より %2$s に 登録リクエストを受け取りました'; -$a->strings['You\'ve received a [url=%1$s]registration request[/url] from %2$s.'] = '[url=%1$s]登録リクエスト[/url] が %2$s から来ています。'; -$a->strings['Full Name: %s -Site Location: %s -Login Name: %s (%s)'] = 'フルネーム: %s -サイト: %s -ログイン名: %s (%s)'; -$a->strings['Please visit %s to approve or reject the request.'] = '%s を開いて、リクエストを承諾・拒否してください。'; -$a->strings['Permission denied.'] = '必要な権限が有りません。'; -$a->strings['Authorize application connection'] = 'アプリからの接続を承認します'; -$a->strings['Return to your app and insert this Securty Code:'] = 'アプリの画面に戻り、以下のセキュリティコードを入力してください:'; -$a->strings['Please login to continue.'] = 'この先に進むにはログインしてください。'; -$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'このアプリケーションによる、あなたの投稿・コンタクトの読み取りや、新しい投稿の作成を許可しますか?'; -$a->strings['Yes'] = 'はい'; -$a->strings['No'] = 'いいえ'; -$a->strings['Access denied.'] = 'アクセスが拒否されました。'; -$a->strings['User not found.'] = 'ユーザーが見つかりません。'; -$a->strings['Access to this profile has been restricted.'] = 'このプロフィールへのアクセスは制限されています。'; -$a->strings['Events'] = 'イベント'; -$a->strings['View'] = '表示する'; -$a->strings['Previous'] = '前'; -$a->strings['Next'] = '次'; -$a->strings['today'] = '今日'; -$a->strings['month'] = '月'; -$a->strings['week'] = '週間'; -$a->strings['day'] = '日'; -$a->strings['list'] = 'リスト'; -$a->strings['User not found'] = 'ユーザーが見つかりません'; -$a->strings['This calendar format is not supported'] = 'このカレンダー形式はサポートされていません'; -$a->strings['No exportable data found'] = 'エクスポート可能なデータが見つかりません'; -$a->strings['calendar'] = 'カレンダー'; -$a->strings['Profile not found.'] = 'プロフィールが見つかりません。'; -$a->strings['Contact not found.'] = 'コンタクトが見つかりません。'; -$a->strings['This may occasionally happen if contact was requested by both persons and it has already been approved.'] = 'これは、連絡が両方の人から要求され、すでに承認されている場合に発生することがあります。'; -$a->strings['Response from remote site was not understood.'] = 'リモートサイトから解釈できない応答がありました。'; -$a->strings['Unexpected response from remote site: '] = 'リモートサイトからの予期しない応答:'; -$a->strings['Confirmation completed successfully.'] = '確認が正常に完了しました。'; -$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['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のコンタクトレコードに対応したサイトの公開鍵がありません。'; -$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'あなたのシステムから提供されたIDは、このサーバ上で重複しています。再試行すると使えるかもしれません。'; -$a->strings['Unable to set your contact credentials on our system.'] = 'このサーバ上のあなたのコンタクトの資格情報を設定できません。'; -$a->strings['Unable to update your contact profile details on our system'] = 'このサーバ上のあなたのコンタクトプロフィールの詳細を更新できません'; -$a->strings['%1$s welcomes %2$s'] = '%2$sさん、%1$sへようこそ'; -$a->strings['This introduction has already been accepted.'] = 'この招待はすでに承諾されています。'; -$a->strings['Profile location is not valid or does not contain profile information.'] = 'プロフィールに書かれた場所が無効であるか、プロフィール情報が含まれていません。'; -$a->strings['Warning: profile location has no identifiable owner name.'] = '警告:プロフィールに書かれた場所には識別可能な所有者名がありません。'; -$a->strings['Warning: profile location has no profile photo.'] = '警告:プロフィールに書かれた場所にはプロフィール写真がありません。'; -$a->strings['%d required parameter was not found at the given location'] = [ - 0 => '指定された場所に%d必須パラメータが見つかりませんでした', -]; -$a->strings['Introduction complete.'] = '招待が完了しました。'; -$a->strings['Unrecoverable protocol error.'] = '回復不能なプロトコルエラー。'; -$a->strings['Profile unavailable.'] = 'プロフィールを利用できません。'; -$a->strings['%s has received too many connection requests today.'] = '今日、 %sが受信したつながりリクエストが多すぎます。'; -$a->strings['Spam protection measures have been invoked.'] = 'スパム対策が呼び出されました。'; -$a->strings['Friends are advised to please try again in 24 hours.'] = '24時間以内にもう一度お試しください。'; -$a->strings['Invalid locator'] = '無効なロケーター'; -$a->strings['You have already introduced yourself here.'] = 'あなたはすでにここで自己紹介しています。'; -$a->strings['Apparently you are already friends with %s.'] = 'どうやらあなたはすでに%sと友達です。'; -$a->strings['Invalid profile URL.'] = '無効なプロフィールURL。'; -$a->strings['Disallowed profile URL.'] = '許可されていないプロフィールURL。'; -$a->strings['Blocked domain'] = 'ブロックされたドメイン'; -$a->strings['Failed to update contact record.'] = 'コンタクトレコードを更新できませんでした。'; -$a->strings['Your introduction has been sent.'] = '招待文が送信されました。'; -$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'あなたのネットワークではリモート購読ができません。あなたのシステム上で直接購読してください。'; -$a->strings['Please login to confirm introduction.'] = 'ログインして招待を確認してください。'; -$a->strings['Incorrect identity currently logged in. Please login to this profile.'] = '現在ログインしているIDが正しくありません。こちらのプロフィールにログインしてください。'; -$a->strings['Confirm'] = '確認する'; -$a->strings['Hide this contact'] = 'このコンタクトを非表示'; -$a->strings['Welcome home %s.'] = 'おかえりなさい、%s 。'; -$a->strings['Please confirm your introduction/connection request to %s.'] = '%sへの招待/接続リクエストを確認してください。'; -$a->strings['Public access denied.'] = 'パブリックアクセスが拒否されました。'; -$a->strings['Friend/Connection Request'] = '友達/接続リクエスト'; -$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.'] = 'まだ\'自由なソーシャルウェブ\'のメンバーでない場合は、このリンクをクリックして、Friendicaの公開サイトを見つけて、今すぐ参加してください。'; -$a->strings['Please answer the following:'] = '以下に答えてください。'; -$a->strings['Submit Request'] = 'リクエストを送る'; -$a->strings['%s knows you'] = '%sはあなたを知っています'; -$a->strings['Add a personal note:'] = '個人メモを追加します。'; -$a->strings['The requested item doesn\'t exist or has been deleted.'] = '要求された項目は存在しないか、削除されました。'; -$a->strings['The feed for this item is unavailable.'] = 'この項目のフィードは利用できません。'; -$a->strings['Item not found'] = '項目が見つかりません'; -$a->strings['Edit post'] = '投稿を編集'; -$a->strings['Save'] = '保存する'; -$a->strings['Insert web link'] = 'webリンクを挿入'; -$a->strings['web link'] = 'ウェブリンク'; -$a->strings['Insert video link'] = 'ビデオリンクを挿入'; -$a->strings['video link'] = 'ビデオリンク'; -$a->strings['Insert audio link'] = 'オーディオリンクを挿入'; -$a->strings['audio link'] = 'オーディオリンク'; -$a->strings['CC: email addresses'] = 'CC:メールアドレス'; -$a->strings['Example: bob@example.com, mary@example.com'] = '例:bob @ example.com、mary @ example.com'; -$a->strings['Event can not end before it has started.'] = 'イベントは開始する前に終了できません。'; -$a->strings['Event title and start time are required.'] = 'イベントのタイトルと開始時間が必要です。'; -$a->strings['Create New Event'] = '新しいイベントを作成'; -$a->strings['Event details'] = 'イベントの詳細'; -$a->strings['Starting date and Title are required.'] = '開始日とタイトルが必要です。'; -$a->strings['Event Starts:'] = 'イベント開始:'; -$a->strings['Required'] = '必須'; -$a->strings['Finish date/time is not known or not relevant'] = '終了日時が不明であるか、関連性がない'; -$a->strings['Event Finishes:'] = 'イベント終了:'; -$a->strings['Adjust for viewer timezone'] = '視聴者のタイムゾーンに合わせて調整する'; -$a->strings['Description:'] = '説明:'; -$a->strings['Location:'] = 'ロケーション:'; -$a->strings['Title:'] = 'タイトル:'; -$a->strings['Share this event'] = 'このイベントを共有する'; -$a->strings['Submit'] = '送信する'; -$a->strings['Basic'] = 'ベーシック'; -$a->strings['Advanced'] = '詳細'; -$a->strings['Failed to remove event'] = 'イベントを削除できませんでした'; -$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['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アドレス:'; -$a->strings['Profile URL'] = 'プロフィールURL'; -$a->strings['Tags:'] = 'タグ:'; -$a->strings['Status Messages and Posts'] = 'ステータスメッセージと投稿'; -$a->strings['The contact could not be added.'] = 'コンタクトを追加できませんでした。'; $a->strings['Unable to locate original post.'] = '元の投稿が見つかりません。'; -$a->strings['Empty post discarded.'] = '空の投稿は破棄されました。'; $a->strings['Post updated.'] = '投稿が更新されました。'; $a->strings['Item wasn\'t stored.'] = '項目が保存されませんでした。'; $a->strings['Item couldn\'t be fetched.'] = '項目を取得できませんでした。'; +$a->strings['Empty post discarded.'] = '空の投稿は破棄されました。'; $a->strings['Item not found.'] = '見つかりませんでした。'; +$a->strings['Permission denied.'] = '必要な権限が有りません。'; $a->strings['No valid account found.'] = '有効なアカウントが見つかりません。'; $a->strings['Password reset request issued. Check your email.'] = 'パスワードリセット要求が発行されました。あなたのメールをチェックしてください。'; $a->strings[' @@ -351,9 +99,6 @@ $a->strings[' ログイン後にアカウント設定ページからパスワードを変更できます。 '; $a->strings['Your password has been changed at %s'] = 'パスワードは%s変更されました'; -$a->strings['No keywords to match. Please add keywords to your profile.'] = '合致するキーワードが有りません。あなたのプロフィールにキーワードを追加してください。'; -$a->strings['No matches'] = '一致する項目がありません'; -$a->strings['Profile Match'] = '一致するプロフィール'; $a->strings['New Message'] = '新しいメッセージ'; $a->strings['No recipient selected.'] = '宛先が未指定です。'; $a->strings['Unable to locate contact information.'] = 'コンタクト情報が見つかりません。'; @@ -369,6 +114,10 @@ $a->strings['Send Private Message'] = 'プライベートメッセージを送 $a->strings['To:'] = '送信先:'; $a->strings['Subject:'] = '件名'; $a->strings['Your message:'] = 'メッセージ'; +$a->strings['Upload photo'] = '写真をアップロード'; +$a->strings['Insert web link'] = 'webリンクを挿入'; +$a->strings['Please wait'] = 'お待ち下さい'; +$a->strings['Submit'] = '送信する'; $a->strings['No messages.'] = 'メッセージはありません。'; $a->strings['Message not available.'] = 'メッセージは利用できません。'; $a->strings['Delete message'] = 'メッセージを削除'; @@ -384,15 +133,8 @@ $a->strings['%d message'] = [ ]; $a->strings['Personal Notes'] = '個人メモ'; $a->strings['Personal notes are visible only by yourself.'] = '個人メモは自分自身によってのみ見えます。'; -$a->strings['Subscribing to OStatus contacts'] = 'Ostatusコンタクトを購読しています。'; -$a->strings['No contact provided.'] = 'コンタクトは提供されていません。'; -$a->strings['Couldn\'t fetch information for contact.'] = 'コンタクトの情報を取得できませんでした。'; -$a->strings['Couldn\'t fetch friends for contact.'] = 'コンタクトの友達関係を取得できませんでした。'; -$a->strings['Done'] = '完了'; -$a->strings['success'] = '成功'; -$a->strings['failed'] = '失敗'; -$a->strings['ignored'] = '無視'; -$a->strings['Keep this window open until done.'] = 'ウィンドウを閉じずにお待ちください…'; +$a->strings['Save'] = '保存する'; +$a->strings['User not found.'] = 'ユーザーが見つかりません。'; $a->strings['Photo Albums'] = 'フォトアルバム'; $a->strings['Recent Photos'] = '最近の写真'; $a->strings['Upload New Photos'] = '新しい写真をアップロード'; @@ -404,21 +146,16 @@ $a->strings['Album was empty.'] = 'アルバムは空でした。'; $a->strings['Failed to delete the photo.'] = '写真を削除できませんでした'; $a->strings['a photo'] = '写真'; $a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$sが%2$sで%3$sによってタグ付けされました'; -$a->strings['Image exceeds size limit of %s'] = '画像サイズ上限 %s を超えています。'; -$a->strings['Image upload didn\'t complete, please try again'] = '画像のアップロードが完了しませんでした。もう一度お試しください'; -$a->strings['Image file is missing'] = '画像ファイルがありません'; -$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'サーバーは現在、新しいファイルのアップロードを受け入れられません。管理者に連絡してください'; -$a->strings['Image file is empty.'] = '画像ファイルが空です。'; -$a->strings['Unable to process image.'] = '画像を処理できません。'; -$a->strings['Image upload failed.'] = '画像アップロードに失敗しました。'; +$a->strings['Public access denied.'] = 'パブリックアクセスが拒否されました。'; $a->strings['No photos selected'] = '写真が選択されていません'; -$a->strings['Access to this item is restricted.'] = 'この項目へのアクセスは制限されています。'; $a->strings['Upload Photos'] = '写真をアップロードする'; $a->strings['New album name: '] = '新しいアルバム名:'; $a->strings['or select existing album:'] = 'または既存のアルバムを選択:'; $a->strings['Do not show a status post for this upload'] = 'このアップロードのステータス投稿を表示しません'; +$a->strings['Permissions'] = '許可'; $a->strings['Do you really want to delete this photo album and all its photos?'] = 'このフォトアルバムとそのすべての写真を本当に削除しますか?'; $a->strings['Delete Album'] = 'アルバムを削除'; +$a->strings['Cancel'] = 'キャンセル'; $a->strings['Edit Album'] = 'アルバムを編集'; $a->strings['Drop Album'] = 'アルバムを削除'; $a->strings['Show Newest First'] = '新しいもの順に表示'; @@ -445,237 +182,26 @@ $a->strings['Rotate CW (right)'] = 'CWを回転(右)'; $a->strings['Rotate CCW (left)'] = 'CCWを回転(左)'; $a->strings['This is you'] = 'これはあなたです'; $a->strings['Comment'] = 'コメント'; +$a->strings['Preview'] = 'プレビュー'; +$a->strings['Loading...'] = '読み込み中…'; +$a->strings['Select'] = '選択'; +$a->strings['Delete'] = '削除'; $a->strings['Like'] = 'いいね'; $a->strings['I like this (toggle)'] = '私はこれが好きです(トグル)'; $a->strings['Dislike'] = '嫌い'; $a->strings['I don\'t like this (toggle)'] = '気に入らない(トグル)'; $a->strings['Map'] = '地図'; -$a->strings['View Album'] = 'アルバムを見る'; -$a->strings['{0} wants to be your friend'] = '{0}は友達になりたい'; -$a->strings['{0} requested registration'] = '{0}は登録をリクエストしました'; -$a->strings['Bad Request.'] = '要求の形式が正しくありません。'; -$a->strings['User deleted their account'] = 'このユーザはアカウントを削除しました。'; -$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Friendicaノードで、ユーザーがアカウントを削除しました。 それらのデータがバックアップから削除されていることを確認してください。'; -$a->strings['The user id is %d'] = 'ユーザIDは %d です'; -$a->strings['Remove My Account'] = '自分のアカウントを削除します'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'これにより、アカウントが完全に削除されます。 これが完了すると、回復できなくなります。'; -$a->strings['Please enter your password for verification:'] = '確認のため、あなたのパスワードを入力してください。'; -$a->strings['Resubscribing to OStatus contacts'] = 'Ostatusコンタクトをもう一度購読します'; -$a->strings['Error'] = [ - 0 => 'エラー', -]; -$a->strings['Missing some important data!'] = '重要なデータがありません!'; -$a->strings['Update'] = '更新'; -$a->strings['Failed to connect with email account using the settings provided.'] = '提供された設定を使用してメールアカウントに接続できませんでした。'; -$a->strings['Contact CSV file upload error'] = 'アップロードエラー:コンタクトCSVファイル'; -$a->strings['Importing Contacts done'] = 'コンタクトのインポートが完了しました'; -$a->strings['Relocate message has been send to your contacts'] = '再配置メッセージがコンタクトに送信されました'; -$a->strings['Passwords do not match.'] = 'パスワードが一致していません。'; -$a->strings['Password update failed. Please try again.'] = 'パスワードの更新に失敗しました。もう一度試してください。'; -$a->strings['Password changed.'] = 'パスワード変更済み。'; -$a->strings['Password unchanged.'] = 'パスワードは変更されていません。'; -$a->strings['Please use a shorter name.'] = '短い名前を使用してください。'; -$a->strings['Name too short.'] = '名前が短すぎます。'; -$a->strings['Wrong Password.'] = 'パスワードが間違っています。'; -$a->strings['Invalid email.'] = '無効なメール。'; -$a->strings['Cannot change to that email.'] = 'そのメールに変更できません。'; -$a->strings['Private forum has no privacy permissions. Using default privacy group.'] = 'プライベートフォーラムにはプライバシー権限がありません。デフォルトのプライバシーグループを使用します。'; -$a->strings['Private forum has no privacy permissions and no default privacy group.'] = 'プライベートフォーラムにはプライバシー権限がなく、デフォルトのプライバシーグループもありません。'; -$a->strings['Settings were not updated.'] = '設定が更新されませんでした。'; -$a->strings['Connected Apps'] = '接続されたアプリ'; -$a->strings['Name'] = '名'; -$a->strings['Home Page'] = 'ホームページ'; -$a->strings['Created'] = '作成した'; -$a->strings['Remove authorization'] = '承認を削除'; -$a->strings['No Addon settings configured'] = 'アドオン設定は構成されていません'; -$a->strings['Addon Settings'] = 'アドオン設定'; -$a->strings['Additional Features'] = '追加機能'; -$a->strings['Save Settings'] = '設定を保存'; -$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora(Socialhome、Hubzilla)'; -$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'] = 'ソーシャルネットワーク'; -$a->strings['General Social Media Settings'] = '一般的なソーシャルメディア設定'; -$a->strings['Accept only top level posts by contacts you follow'] = 'フォローしているコンタクトによるトップレベルの投稿のみを受け入れます'; -$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->strings['Disable Content Warning'] = 'コンテンツ警告を無効にする'; -$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.'] = 'MastodonやPleromaなどのネットワーク上のユーザーは、デフォルトで投稿を折りたたむコンテンツ警告フィールドを設定できます。これにより、自動折りたたみが無効になり、コンテンツの警告が投稿タイトルとして設定されます。最終的に設定する他のコンテンツフィルタリングには影響しません。'; -$a->strings['Disable intelligent shortening'] = 'インテリジェントな短縮を無効にする'; -$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.'] = '通常、システムは短縮された投稿に追加するのに最適なリンクを見つけようとします。このオプションを有効にすると、すべての短縮された投稿は常に元のfriendica投稿を指すようになります。'; -$a->strings['Attach the link title'] = 'リンクの件名を添付します'; -$a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = '有効にすると、添付されたリンクのタイトルがDiasporaへの投稿のタイトルとして追加されます。 これは主に、フィードコンテンツを共有する「リモート セルフ」コンタクトで役立ちます。'; -$a->strings['Automatically follow any GNU Social (OStatus) followers/mentioners'] = 'GNU Social(OStatus)のフォロワー/メンショナーを自動的にフォローする'; -$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.'] = '不明なOStatusユーザーからメッセージを受信した場合、このオプションは何をするかを決定します。チェックされている場合、未知のユーザーごとに新しいコンタクトが作成されます。'; -$a->strings['Default group for OStatus contacts'] = 'OStatusコンタクトのデフォルトグループ'; -$a->strings['Your legacy GNU Social account'] = 'レガシーGNU Socialアカウント'; -$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.'] = 'ここに古いGNU Social / Statusnetアカウント名を入力すると(user@domain.tldの形式で)、コンタクトが自動的に追加されます。完了すると、フィールドは空になります。'; -$a->strings['Repair OStatus subscriptions'] = 'OStatusサブスクリプションを修復する'; -$a->strings['Email/Mailbox Setup'] = 'メール/メールボックスのセットアップ'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'このサービス(オプション)を使用してメールコンタクトと通信する場合は、メールボックスへの接続方法を指定してください。'; -$a->strings['Last successful email check:'] = '最後に成功したメールチェック:'; -$a->strings['IMAP server name:'] = 'IMAPサーバー名:'; -$a->strings['IMAP port:'] = 'IMAPポート:'; -$a->strings['Security:'] = 'セキュリティ:'; -$a->strings['Email login name:'] = 'メールのログイン名:'; -$a->strings['Email password:'] = 'メールのパスワード:'; -$a->strings['Reply-to address:'] = '返信先アドレス:'; -$a->strings['Send public posts to all email contacts:'] = 'すべてのメールコンタクトに一般公開投稿を送信します。'; -$a->strings['Action after import:'] = 'インポート後のアクション:'; -$a->strings['Mark as seen'] = '既読にする'; -$a->strings['Move to folder'] = 'フォルダへ移動'; -$a->strings['Move to folder:'] = 'フォルダへ移動:'; -$a->strings['Unable to find your profile. Please contact your admin.'] = 'プロフィールが見つかりません。管理者に連絡してください。'; -$a->strings['Account Types'] = 'アカウントの種類'; -$a->strings['Personal Page Subtypes'] = '個人ページのサブタイプ'; -$a->strings['Community Forum Subtypes'] = 'コミュニティフォーラムのサブタイプ'; -$a->strings['Personal Page'] = '個人ページ'; -$a->strings['Account for a personal profile.'] = '個人プロフィールを説明します。'; -$a->strings['Organisation Page'] = '組織ページ'; -$a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'コンタクトリクエストを「フォロワー」として自動的に承認します。組織に適したアカウントです。'; -$a->strings['News Page'] = 'ニュースページ'; -$a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'コンタクトのリクエストを「フォロワー」として自動的に承認します。ニュース再配信に適したアカウントです。'; -$a->strings['Community Forum'] = 'コミュニティフォーラム'; -$a->strings['Account for community discussions.'] = 'コミュニティディスカッションのアカウント。'; -$a->strings['Normal Account Page'] = '通常のアカウントページ'; -$a->strings['Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'] = '"Friends "および"Followers "の手動承認を必要とする通常の個人プロフィールのアカウント。'; -$a->strings['Soapbox Page'] = 'Soapboxページ'; -$a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'コンタクトリクエストを「フォロワー」として自動的に承認します。一般公開プロフィールのアカウントです。'; -$a->strings['Public Forum'] = '一般公開フォーラム'; -$a->strings['Automatically approves all contact requests.'] = 'すべてのコンタクトリクエストを自動的に承認します。'; -$a->strings['Automatic Friend Page'] = '自動友達ページ'; -$a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'コンタクトのリクエストを「フレンド」として自動的に承認します。知名度のあるプロフィールに適したアカウントです。'; -$a->strings['Private Forum [Experimental]'] = 'プライベートフォーラム[実験的]'; -$a->strings['Requires manual approval of contact requests.'] = 'コンタクトリクエストの手動承認が必要です。'; -$a->strings['OpenID:'] = 'OpenID:'; -$a->strings['(Optional) Allow this OpenID to login to this account.'] = '(オプション)このOpenIDがこのアカウントにログインできるようにします。'; -$a->strings['Publish your profile in your local site directory?'] = 'ローカルサイトディレクトリにプロフィールを公開しますか?'; -$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->strings['Your profile will also be published in the global friendica directories (e.g. %s).'] = 'あなたのプロフィールはグローバルなFriendicaディレクトリに公開されます(例: %s )。'; -$a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'IDアドレスは \' %s \' または \' %s \'です。'; -$a->strings['Account Settings'] = 'アカウント設定'; -$a->strings['Password Settings'] = 'パスワード設定'; -$a->strings['New Password:'] = '新しいパスワード:'; -$a->strings['Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).'] = '使用できる文字は、a〜z、A〜Z、0〜9、および空白、アクセント文字、コロン(:)を除く特殊文字です。'; -$a->strings['Confirm:'] = '確認:'; -$a->strings['Leave password fields blank unless changing'] = '変更しない限り、パスワードフィールドは空白のままにしてください'; -$a->strings['Current Password:'] = '現在のパスワード:'; -$a->strings['Your current password to confirm the changes'] = '変更を確認するための現在のパスワード'; -$a->strings['Password:'] = 'パスワード:'; -$a->strings['Your current password to confirm the changes of the email address'] = '変更を確認するための電子メールアドレスの現在のパスワード'; -$a->strings['Delete OpenID URL'] = 'OpenID URLを削除'; -$a->strings['Basic Settings'] = '基本設定'; -$a->strings['Full Name:'] = 'フルネーム:'; -$a->strings['Email Address:'] = '電子メールアドレス:'; -$a->strings['Your Timezone:'] = 'あなたのタイムゾーン:'; -$a->strings['Your Language:'] = 'あなたの言語:'; -$a->strings['Set the language we use to show you friendica interface and to send you emails'] = 'friendicaインターフェイスを表示し、メールを送信するために使用する言語を設定します'; -$a->strings['Default Post Location:'] = 'デフォルトの投稿場所:'; -$a->strings['Use Browser Location:'] = 'ブラウザのロケーションを使用:'; -$a->strings['Security and Privacy Settings'] = 'セキュリティとプライバシーの設定'; -$a->strings['Maximum Friend Requests/Day:'] = '1日あたりの友達リクエスト上限:'; -$a->strings['(to prevent spam abuse)'] = '(スパムの悪用を防ぐため)'; -$a->strings['Allow your profile to be searchable globally?'] = '自分のプロフィールを世界中で検索できるようにしますか?'; -$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.'] = '他の人があなたを簡単に見つけてフォローできるようにしたい場合は、この設定を有効にしてください。あなたのプロフィールはリモートシステムで検索可能です。この設定は、Friendicaが検索エンジンにあなたのプロフィールをインデックス化するかどうかも決定します。'; -$a->strings['Hide your contact/friend list from viewers of your profile?'] = 'プロフィールの閲覧者からコンタクト/友人リストを非表示にしますか?'; -$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->strings['Hide your profile details from anonymous viewers?'] = '匿名の閲覧者からプロフィールの詳細を非表示にしますか?'; -$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->strings['Make public posts unlisted'] = '公開投稿を非表示にする'; -$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->strings['Make all posted pictures accessible'] = '投稿した写真は全てアクセス可能にする'; -$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.'] = 'このオプションは、投稿したすべての写真をダイレクトリンクでアクセスできるようにします。これは、他の多くのネットワークが写真のパーミッションを処理できないという問題を回避するためのものです。ただし、公開していない写真はフォトアルバムでは一般に公開されません。'; -$a->strings['Allow friends to post to your profile page?'] = '友人があなたのプロフィールページに投稿することを許可しますか?'; -$a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'コンタクトは、プロフィールウォールに投稿を書くことができます。これらの投稿はコンタクトに配信されます'; -$a->strings['Allow friends to tag your posts?'] = '友達があなたの投稿にタグを付けることを許可しますか?'; -$a->strings['Your contacts can add additional tags to your posts.'] = 'コンタクトは、投稿にタグを追加できます。'; -$a->strings['Permit unknown people to send you private mail?'] = '知らない人にプライベートメールを送ることを許可しますか?'; -$a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Friendicaネットワークユーザーは、コンタクトリストにない場合でもプライベートメッセージを送信する場合があります。'; -$a->strings['Maximum private messages per day from unknown people:'] = '不明な人からの 1日あたりのプライベートメッセージ上限:'; -$a->strings['Default Post Permissions'] = '投稿の既定の権限'; -$a->strings['Expiration settings'] = '有効期限設定'; -$a->strings['Automatically expire posts after this many days:'] = 'この数日後に投稿を自動的に期限切れにします:'; -$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = '空の場合、投稿は期限切れになりません。期限切れの投稿は削除されます'; -$a->strings['Expire posts'] = '投稿の有効期限'; -$a->strings['When activated, posts and comments will be expired.'] = '有効にすると、投稿とコメントは期限切れになるでしょう。'; -$a->strings['Expire personal notes'] = '個人メモの有効期限'; -$a->strings['When activated, the personal notes on your profile page will be expired.'] = '有効にすると、プロフィールページ上の個人メモは期限切れになるでしょう。'; -$a->strings['Expire starred posts'] = 'スター付き投稿の有効期限'; -$a->strings['Starring posts keeps them from being expired. That behaviour is overwritten by this setting.'] = '投稿にスターを付けると、投稿が期限切れにならないようにします。動作はこの設定で上書きされます。'; -$a->strings['Expire photos'] = '写真の有効期限'; -$a->strings['When activated, photos will be expired.'] = '有効にすると、写真は期限切れになるでしょう。'; -$a->strings['Only expire posts by others'] = '他のユーザーによる投稿のみを期限切れにする'; -$a->strings['When activated, your own posts never expire. Then the settings above are only valid for posts you received.'] = '有効にすると、自分の投稿は期限切れになりません。そうすると、上記の設定は自分が受け取った投稿に対してのみ有効となります。'; -$a->strings['Notification Settings'] = '通知設定'; -$a->strings['Send a notification email when:'] = '次の場合に通知メールを送信します。'; -$a->strings['You receive an introduction'] = '招待を受けます'; -$a->strings['Your introductions are confirmed'] = 'あなたの招待が確認されました'; -$a->strings['Someone writes on your profile wall'] = '誰かがあなたのプロフィールウォールに書き込みます'; -$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['Activate desktop notifications'] = 'デスクトップ通知を有効にする'; -$a->strings['Show desktop popup on new notifications'] = '新しい通知にデスクトップポップアップを表示する'; -$a->strings['Text-only notification emails'] = 'テキストのみの通知メール'; -$a->strings['Send text only notification emails, without the html part'] = 'HTML部分なしで、テキストのみの通知メールを送信します'; -$a->strings['Show detailled notifications'] = '詳細な通知を表示'; -$a->strings['Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.'] = 'デフォルトでは、通知は項目ごとに1つの通知にまとめられます。有効にすると、すべての通知が表示されます。'; -$a->strings['Show notifications of ignored contacts'] = '無視されたコンタクトの通知を表示'; -$a->strings['You don\'t see posts from ignored contacts. But you still see their comments. This setting controls if you want to still receive regular notifications that are caused by ignored contacts or not.'] = '無視されたコンタクトからの投稿は表示されません。しかし、相手のコメントは表示されます。この設定では、無視されたコンタクトからの通知を定期的に受け取るかどうかを設定します。'; -$a->strings['Advanced Account/Page Type Settings'] = 'アカウント/ページタイプの詳細設定'; -$a->strings['Change the behaviour of this account for special situations'] = '特別な状況でこのアカウントの動作を変更する'; -$a->strings['Import Contacts'] = 'コンタクトをインポートする'; -$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = '古いアカウントからエクスポートしたCSVファイルをアップロードします。これは最初の列に、フォローしているアカウントのハンドルを含みます。'; -$a->strings['Upload File'] = 'ファイルをアップロード'; -$a->strings['Relocate'] = '再配置'; -$a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'このプロフィールを別のサーバーから移動し、コンタクトの一部が更新を受信しない場合は、このボタンを押してみてください。'; -$a->strings['Resend relocate message to contacts'] = '再配置メッセージをコンタクトに再送信する'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = '利用可能な提案はありません。新しいサイトの場合は、24時間後にもう一度お試しください。'; -$a->strings['Friend Suggestions'] = '友達の提案'; -$a->strings['Remove Item Tag'] = 'タグの削除'; -$a->strings['Select a tag to remove: '] = '削除するタグを選択:'; -$a->strings['Remove'] = '削除'; -$a->strings['User imports on closed servers can only be done by an administrator.'] = 'クローズドなサーバでのユーザーインポートは、管理者のみが実行できます。'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'このサイトは、1日あたりに許可されているアカウント登録数の上限を超えています。 明日再度お試しください。'; -$a->strings['Import'] = 'インポート'; -$a->strings['Move account'] = 'アカウントの移動'; -$a->strings['You can import an account from another Friendica server.'] = '別のFriendicaサーバーからアカウントをインポートできます。'; -$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.'] = '古いサーバからアカウントをエクスポートして、このサーバにアップロードする必要があります。 アップロード後、このサーバが、すべてのコンタクト・元のアカウントを再作成します。 また、あなたがこのサーバに移転したことを友人にお知らせします。'; -$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'この機能はまだ実験的なものです。 OStatusネットワーク(GNU Social / Statusnet)またはDiasporaからのコンタクトはインポートできません。'; -$a->strings['Account file'] = 'アカウントファイル'; -$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'アカウントをエクスポートするには、「設定」->「個人データのエクスポート」に進み、「アカウントのエクスポート」を選択します'; -$a->strings['You aren\'t following this contact.'] = 'あなたはこのコンタクトをフォローしていません'; -$a->strings['Unfollowing is currently not supported by your network.'] = '現在、フォロー解除はあなたのネットワークではサポートされていません'; -$a->strings['Disconnect/Unfollow'] = '接続・フォローを解除'; -$a->strings['No videos selected'] = '動画が選択されていません'; -$a->strings['View Video'] = 'ビデオを見る'; -$a->strings['Recent Videos'] = '最近の動画'; -$a->strings['Upload New Videos'] = '新しい動画をアップロード'; -$a->strings['Invalid request.'] = '無効なリクエストです。'; -$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'すいません、サーバのPHP設定で許可されたサイズよりも大きいファイルをアップロードしている可能性があります。'; -$a->strings['Or - did you try to upload an empty file?'] = 'または、空のファイルをアップロードしようとしていませんか?'; -$a->strings['File exceeds size limit of %s'] = 'ファイルサイズ上限 %s を超えています。'; -$a->strings['File upload failed.'] = 'アップロードが失敗しました。'; -$a->strings['Wall Photos'] = 'ウォール写真'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = '一日のウォールメッセージ上限 %s 通を超えました。投稿できません。'; -$a->strings['Unable to check your home location.'] = 'あなたのホームロケーションを確認できません。'; -$a->strings['No recipient.'] = '宛先がありません。'; -$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = '%s からの返信を受け取りたい場合は、サイトのプライバシー設定で「不明な送信者からのプライベートメール」を許可しているか確認してください。'; $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.'] = 'ページが見つかりません。'; +$a->strings['You must be logged in to use addons. '] = 'アドオンを使用するにはログインする必要があります。'; $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.'] = 'フォームセキュリティトークンが正しくありませんでした。これは、フォームを送信する前にフォームが長時間(3時間以上)開かれたために発生した可能性があります。'; $a->strings['All contacts'] = 'すべてのコンタクト'; $a->strings['Followers'] = 'フォロワー'; -$a->strings['Following'] = '以下'; +$a->strings['Following'] = 'フォロー中'; $a->strings['Mutual friends'] = '共通の友人'; $a->strings['Could not find any unarchived contact entry for this URL (%s)'] = 'このURL( %s )のアーカイブされていないコンタクトエントリが見つかりませんでした'; $a->strings['The contact entries have been archived'] = 'コンタクトエントリがアーカイブされました'; @@ -686,7 +212,10 @@ $a->strings['Check for pending update actions.'] = '保留中の更新アクシ $a->strings['Done.'] = '完了しました。'; $a->strings['Execute pending post updates.'] = '保留中の投稿の更新を実行します。'; $a->strings['All pending post updates are done.'] = '保留中の投稿の更新はすべて完了しました。'; +$a->strings['User not found'] = 'ユーザーが見つかりません'; $a->strings['Enter new password: '] = '新しいパスワードを入力してください:'; +$a->strings['Password update failed. Please try again.'] = 'パスワードの更新に失敗しました。もう一度試してください。'; +$a->strings['Password changed.'] = 'パスワード変更済み。'; $a->strings['newer'] = '新しい'; $a->strings['older'] = '過去の'; $a->strings['Frequently'] = '頻度の高い'; @@ -713,48 +242,108 @@ $a->strings['GNU Social Connector'] = 'GNU Social Connector'; $a->strings['ActivityPub'] = 'ActivityPub'; $a->strings['pnut'] = 'pnut'; $a->strings['%s (via %s)'] = '%s (経由: %s)'; +$a->strings['and'] = 'と'; +$a->strings['and %d other people'] = 'と他 %d 人'; +$a->strings['Visible to everybody'] = 'すべての人 が閲覧可能です'; +$a->strings['Please enter a image/video/audio/webpage URL:'] = '画像/動画/音声/ウェブページのURLを入力してください:'; +$a->strings['Tag term:'] = '用語のタグ付け:'; +$a->strings['Save to Folder:'] = '保存先のフォルダ:'; +$a->strings['Where are you right now?'] = 'どこにいますか?:'; +$a->strings['Delete item(s)?'] = 'これ(ら)の項目を削除しますか?'; +$a->strings['New Post'] = '新しい投稿'; +$a->strings['Share'] = '共有'; +$a->strings['upload photo'] = '写真をアップロード'; +$a->strings['Attach file'] = 'ファイルを添付'; +$a->strings['attach file'] = 'ファイルを添付'; +$a->strings['Bold'] = '太字'; +$a->strings['Italic'] = '斜体'; +$a->strings['Underline'] = '下線'; +$a->strings['Quote'] = '引用'; +$a->strings['Code'] = 'コード'; +$a->strings['Image'] = '画像'; +$a->strings['Link'] = 'リンク'; +$a->strings['Link or Media'] = 'リンク/メディア'; +$a->strings['Video'] = '動画'; +$a->strings['Set your location'] = '現在地を設定'; +$a->strings['set location'] = '現在地を設定'; +$a->strings['Clear browser location'] = 'ブラウザの現在地を解除'; +$a->strings['clear location'] = '現在地を解除'; +$a->strings['Set title'] = '件名を設定'; +$a->strings['Categories (comma-separated list)'] = 'カテゴリ(半角カンマ区切り)'; +$a->strings['Permission settings'] = '権限設定'; +$a->strings['Public post'] = '一般公開の投稿'; +$a->strings['Message'] = 'メッセージ'; +$a->strings['Browser'] = 'ブラウザ'; +$a->strings['Open Compose page'] = '作成ページを開く'; +$a->strings['remove'] = '削除'; +$a->strings['Delete Selected Items'] = '選択した項目を削除'; +$a->strings['%s reshared this.'] = '%s が再共有しました。'; +$a->strings['Pinned item'] = 'ピン留め項目'; +$a->strings['View %s\'s profile @ %s'] = '%sのプロフィールを確認 @ %s'; +$a->strings['Categories:'] = 'カテゴリ:'; +$a->strings['Filed under:'] = '格納先:'; +$a->strings['%s from %s'] = '%s から %s'; +$a->strings['View in context'] = '文脈で表示する'; +$a->strings['Local Community'] = 'ローカル コミュニティ'; +$a->strings['Posts from local users on this server'] = 'このサーバー上のローカルユーザーからの投稿'; +$a->strings['Global Community'] = 'グローバルコミュニティ'; +$a->strings['Posts from users of the whole federated network'] = 'フェデレーションネットワーク全体のユーザーからの投稿'; +$a->strings['Latest Activity'] = '最近の操作'; +$a->strings['Sort by latest activity'] = '最終更新順に並び替え'; +$a->strings['Latest Posts'] = '最新の投稿'; +$a->strings['Sort by post received date'] = '投稿を受信した順に並び替え'; +$a->strings['Personal'] = 'パーソナル'; +$a->strings['Posts that mention or involve you'] = 'あなたに言及または関与している投稿'; +$a->strings['Starred'] = 'スター付き'; +$a->strings['Favourite Posts'] = 'お気に入りの投稿'; $a->strings['General Features'] = '一般的な機能'; $a->strings['Photo Location'] = '写真の場所'; $a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = '通常、写真のメタデータは削除されます。これにより、メタデータを除去する前に場所(存在する場合)が抽出され、マップにリンクされます。'; $a->strings['Trending Tags'] = 'トレンドタグ'; $a->strings['Show a community page widget with a list of the most popular tags in recent public posts.'] = '最近の一般公開投稿で、最も人気のあるタグのリストを含むコミュニティページウィジェットを表示します。'; $a->strings['Post Composition Features'] = '合成後の機能'; -$a->strings['Auto-mention Forums'] = '自動メンションフォーラム'; -$a->strings['Add/remove mention when a forum page is selected/deselected in ACL window.'] = 'ACLウィンドウでフォーラムページが選択/選択解除されたときにメンションを追加/削除します。'; $a->strings['Explicit Mentions'] = '明示的な言及'; $a->strings['Add explicit mentions to comment box for manual control over who gets mentioned in replies.'] = 'コメントボックスに明示的なメンションを追加して、返信の通知先をカスタマイズします。'; $a->strings['Post/Comment Tools'] = '投稿/コメントツール'; $a->strings['Post Categories'] = '投稿カテゴリ'; $a->strings['Add categories to your posts'] = '投稿にカテゴリを追加する'; $a->strings['Advanced Profile Settings'] = '高度なプロフィール設定'; -$a->strings['List Forums'] = 'フォーラムのリスト'; -$a->strings['Show visitors public community forums at the Advanced Profile Page'] = '詳細プロフィールページで訪問者の一般公開コミュニティフォーラムを表示する'; $a->strings['Tag Cloud'] = 'タグクラウド'; $a->strings['Provide a personal tag cloud on your profile page'] = 'プロフィールページで個人タグクラウドを提供する'; $a->strings['Display Membership Date'] = '会員日を表示する'; $a->strings['Display membership date in profile'] = 'プロフィールにメンバーシップ日を表示する'; -$a->strings['Forums'] = 'フォーラム'; -$a->strings['External link to forum'] = 'フォーラムへの外部リンク'; $a->strings['show more'] = 'もっと見せる'; +$a->strings['event'] = 'イベント'; +$a->strings['status'] = 'ステータス'; +$a->strings['photo'] = '写真'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s が %2$s の %3$s を %4$s としてタグ付けしました'; +$a->strings['Follow Thread'] = 'このスレッドをフォロー'; +$a->strings['View Status'] = 'ステータスを見る'; +$a->strings['View Profile'] = 'プロフィールを見る'; +$a->strings['View Photos'] = '写真を見る'; +$a->strings['Network Posts'] = 'ネットワーク投稿'; +$a->strings['View Contact'] = 'コンタクトを見る'; +$a->strings['Send PM'] = 'PMを送る'; +$a->strings['Block'] = 'ブロック'; +$a->strings['Ignore'] = '無視'; +$a->strings['Languages'] = '言語'; +$a->strings['Connect/Follow'] = 'つながる/フォローする'; $a->strings['Nothing new here'] = 'ここに新しいものはありません'; $a->strings['Go back'] = '戻る'; $a->strings['Clear notifications'] = 'クリア通知'; -$a->strings['@name, !forum, #tags, content'] = '@name, !forum, #tags, コンテンツ'; $a->strings['Logout'] = 'ログアウト'; $a->strings['End this session'] = 'このセッションを終了'; $a->strings['Login'] = 'ログイン'; $a->strings['Sign in'] = 'サインイン'; -$a->strings['Status'] = '状態'; -$a->strings['Your posts and conversations'] = 'あなたの投稿と会話'; $a->strings['Profile'] = 'プロフィール'; $a->strings['Your profile page'] = 'あなたのプロフィールページ'; +$a->strings['Photos'] = '写真'; $a->strings['Your photos'] = 'あなたの写真'; -$a->strings['Videos'] = '動画'; -$a->strings['Your videos'] = 'あなたの動画'; -$a->strings['Your events'] = 'あなたのイベント'; +$a->strings['Calendar'] = 'カレンダー'; $a->strings['Personal notes'] = '個人メモ'; $a->strings['Your personal notes'] = 'あなたの個人的なメモ'; $a->strings['Home'] = 'ホーム'; +$a->strings['Home Page'] = 'ホームページ'; $a->strings['Register'] = '登録'; $a->strings['Create an account'] = 'アカウントを作成する'; $a->strings['Help'] = 'ヘルプ'; @@ -768,7 +357,6 @@ $a->strings['Tags'] = 'タグ'; $a->strings['Contacts'] = 'コンタクト'; $a->strings['Community'] = 'コミュニティ'; $a->strings['Conversations on this and other servers'] = 'このサーバーと他のサーバーでの会話'; -$a->strings['Events and Calendar'] = 'イベントとカレンダー'; $a->strings['Directory'] = 'ディレクトリ'; $a->strings['People directory'] = '人々の名簿'; $a->strings['Information'] = '情報'; @@ -777,11 +365,12 @@ $a->strings['Terms of Service'] = '利用規約'; $a->strings['Terms of Service of this Friendica instance'] = 'このFriendicaインスタンスの利用規約'; $a->strings['Network'] = 'ネットワーク'; $a->strings['Conversations from your friends'] = '友達からの会話'; +$a->strings['Your posts and conversations'] = 'あなたの投稿と会話'; $a->strings['Introductions'] = '招待'; $a->strings['Friend Requests'] = '友達リクエスト'; $a->strings['Notifications'] = '通知'; $a->strings['See all notifications'] = 'すべての通知を見る'; -$a->strings['Mark all system notifications seen'] = 'すべてのシステム通知を確認済みにする'; +$a->strings['Mark as seen'] = '既読にする'; $a->strings['Private mail'] = 'プライベートメール'; $a->strings['Inbox'] = '受信トレイ'; $a->strings['Outbox'] = '送信トレイ'; @@ -819,12 +408,12 @@ $a->strings['Find People'] = '人を見つけます'; $a->strings['Enter name or interest'] = '名前または興味を入力してください'; $a->strings['Examples: Robert Morgenstein, Fishing'] = '例:Robert Morgenstein、釣り'; $a->strings['Find'] = '見つける'; +$a->strings['Friend Suggestions'] = '友達の提案'; $a->strings['Similar Interests'] = '同様の興味'; $a->strings['Random Profile'] = 'ランダムプロフィール'; $a->strings['Invite Friends'] = '友達を招待'; $a->strings['Global Directory'] = 'グローバルディレクトリ'; $a->strings['Local Directory'] = 'ローカルディレクトリ'; -$a->strings['Groups'] = 'グループ'; $a->strings['Relationships'] = '関係'; $a->strings['All Contacts'] = 'すべてのコンタクト'; $a->strings['Protocols'] = 'プロトコル'; @@ -837,7 +426,8 @@ $a->strings['%d contact in common'] = [ ]; $a->strings['Archives'] = 'アーカイブ'; $a->strings['News'] = 'ニュース'; -$a->strings['Export'] = '輸出する'; +$a->strings['Account Types'] = 'アカウントの種類'; +$a->strings['Export'] = 'エクスポート'; $a->strings['Export calendar as ical'] = 'カレンダーをicalとしてエクスポート'; $a->strings['Export calendar as csv'] = 'カレンダーをcsvとしてエクスポート'; $a->strings['No contacts'] = 'コンタクトなし'; @@ -851,6 +441,10 @@ $a->strings['Trending Tags (last %d hour)'] = [ 0 => 'トレンドタグ(過去%d時間)', ]; $a->strings['More Trending Tags'] = 'よりトレンドのタグ'; +$a->strings['XMPP:'] = 'XMPP:'; +$a->strings['Location:'] = 'ロケーション:'; +$a->strings['Network:'] = 'ネットワーク:'; +$a->strings['Unfollow'] = 'フォロー解除'; $a->strings['Mutuals'] = '相互'; $a->strings['Post to Email'] = 'メールに投稿'; $a->strings['Public'] = '一般公開'; @@ -859,6 +453,8 @@ $a->strings['Limited/Private'] = '限定/プライベート'; $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.'] = 'このコンテンツは、最初のボックスに記載されたメンバーから、2番目のボックスに記載されている人を除いた範囲に対して表示されます。 一般公開はされません。'; $a->strings['Show to:'] = '限定公開先:'; $a->strings['Except to:'] = 'この連絡先を除く:'; +$a->strings['CC: email addresses'] = 'CC:メールアドレス'; +$a->strings['Example: bob@example.com, mary@example.com'] = '例:bob @ example.com、mary @ example.com'; $a->strings['Connectors'] = 'コネクター'; $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.'] = 'データベース構成ファイル "config/local.config.php" に書き込めませんでした。同封のテキストを使用して、Webサーバーのルートに構成ファイルを作成してください。'; $a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'phpmyadminまたはmysqlを使用して、手動でファイル"database.sql "をインポートする必要がある場合があります。'; @@ -951,18 +547,11 @@ $a->strings['Sep'] = '9月'; $a->strings['Oct'] = '10月'; $a->strings['Nov'] = '11月'; $a->strings['Dec'] = '12月'; -$a->strings['poke'] = 'poke'; -$a->strings['poked'] = 'pokeされました'; -$a->strings['ping'] = 'ping'; -$a->strings['pinged'] = 'pingされました'; -$a->strings['prod'] = '製品'; -$a->strings['prodded'] = 'prodされた'; -$a->strings['slap'] = 'slap'; -$a->strings['slapped'] = 'slappされました'; -$a->strings['finger'] = 'フィンガー'; -$a->strings['fingered'] = 'フィンガーされました'; -$a->strings['rebuff'] = '拒絶'; -$a->strings['rebuffed'] = '拒否された'; +$a->strings['The logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'ログファイル \' %s \' は使用できません。ログ機能が使用できません。(エラー: \' %s \' )'; +$a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'デバッグログファイル \' %s \' は使用できません。ログ機能が使用できません。(エラー: \' %s \' )'; +$a->strings['Storage base path'] = 'ストレージのbase path'; +$a->strings['Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree'] = 'アップロードされたファイルが保存されるフォルダです。最大限のセキュリティを確保するために、これはWebサーバーフォルダツリー外のパスである必要があります'; +$a->strings['Enter a valid existing folder'] = '有効な既存のフォルダを入力してください'; $a->strings['Update %s failed. See error logs.'] = '%sの更新に失敗しました。エラーログを参照してください。'; $a->strings[' The friendica developers released update %s recently, @@ -974,18 +563,6 @@ $a->strings[' これはすぐに修正される必要がありますが、私一人では解決できません。 自己解決が無理な場合はfriendica開発者へコンタクトをとってください。データベースが無効である可能性があります。'; $a->strings['[Friendica Notify] Database update'] = '[Friendica Notify]データベースの更新'; -$a->strings[' - The friendica database was successfully updated from %s to %s.'] = ' - friendicaデータベースは %s から %s に正常に更新されました。'; -$a->strings['Error decoding account file'] = 'アカウントファイルのデコードエラー'; -$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'エラー!ファイルにバージョンデータがありません!これはFriendicaアカウントファイルではなさそうです。'; -$a->strings['User \'%s\' already exists on this server!'] = 'ユーザー \'%s\' はこのサーバーに既に存在します!'; -$a->strings['User creation error'] = 'ユーザ作成エラー'; -$a->strings['%d contact not imported'] = [ - 0 => '%dコンタクトはインポートされませんでした', -]; -$a->strings['User profile creation error'] = 'ユーザープロフィール作成エラー'; -$a->strings['Done. You can now login with your username and password'] = '完了しました。これでであなたのユーザー名とパスワードでログインできます。 '; $a->strings[' Error %d occurred during database update: %s @@ -998,27 +575,18 @@ $a->strings['%s: Database update'] = '%s :データベースの更新'; $a->strings['%s: updating %s table.'] = '%s : %sテーブルを更新しています。'; $a->strings['Unauthorized'] = '認証されていません'; $a->strings['Internal Server Error'] = '内部サーバーエラー'; -$a->strings['Friend Suggestion'] = '友達の提案'; -$a->strings['Friend/Connect Request'] = 'フレンド/接続リクエスト'; -$a->strings['New Follower'] = '新しいフォロワー'; -$a->strings['%s created a new post'] = '%sが新しい投稿を作成しました'; -$a->strings['%s commented on %s\'s post'] = '%sが%sの投稿にコメントしました'; -$a->strings['%s liked %s\'s post'] = '%sが%sの投稿を高く評価しました'; -$a->strings['%s disliked %s\'s post'] = '%sは%sの投稿を好きではないようです'; -$a->strings['%s is attending %s\'s event'] = '%sは%sのイベントに参加しています'; -$a->strings['%s is not attending %s\'s event'] = '%sは%sのイベントを欠席します'; -$a->strings['%s is now friends with %s'] = '%sは%sと友達になりました'; $a->strings['Legacy module file not found: %s'] = 'レガシーモジュールファイルが見つかりません: %s'; -$a->strings['UnFollow'] = 'フォロー解除'; -$a->strings['Drop Contact'] = 'コンタクトを削除'; +$a->strings['Everybody'] = 'みんな'; +$a->strings['edit'] = '編集する'; +$a->strings['add'] = '加える'; $a->strings['Approve'] = '承認する'; $a->strings['Organisation'] = '組織'; -$a->strings['Forum'] = 'フォーラム'; +$a->strings['Disallowed profile URL.'] = '許可されていないプロフィールURL。'; +$a->strings['Blocked domain'] = 'ブロックされたドメイン'; $a->strings['Connect URL missing.'] = '接続URLがありません。'; $a->strings['The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.'] = 'コンタクトを追加できませんでした。ページの "設定" -> "ソーシャルネットワーク" で、関連するネットワーク認証情報を確認してください。'; -$a->strings['This site is not configured to allow communications with other networks.'] = 'このサイトは、他のネットワークとの通信を許可するように構成されていません。'; -$a->strings['No compatible communication protocols or feeds were discovered.'] = '互換性のある通信プロトコルまたはフィードは見つかりませんでした。'; $a->strings['The profile address specified does not provide adequate information.'] = '指定されたプロフィールアドレスは、適切な情報を提供しません。'; +$a->strings['No compatible communication protocols or feeds were discovered.'] = '互換性のある通信プロトコルまたはフィードは見つかりませんでした。'; $a->strings['An author or name was not found.'] = '著者または名前が見つかりませんでした。'; $a->strings['No browser URL could be matched to this address.'] = 'このアドレスに一致するブラウザURLはありません。'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = '@スタイルのIDアドレスを既知のプロトコルまたは電子メールのコンタクトと一致させることができません。'; @@ -1026,69 +594,71 @@ $a->strings['Use mailto: in front of address to force email check.'] = 'メー $a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = '指定されたプロフィールアドレスは、このサイトで無効にされたネットワークに属します。'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = '限定公開のプロフィールです。この人はあなたから直接/個人的な通知を受け取ることができません。'; $a->strings['Unable to retrieve contact information.'] = 'コンタクト情報を取得できません。'; -$a->strings['l F d, Y \@ g:i A'] = 'l F d, Y \@ g:i A'; $a->strings['Starts:'] = '開始:'; $a->strings['Finishes:'] = '終了:'; $a->strings['all-day'] = '一日中'; $a->strings['Sept'] = '9月'; +$a->strings['today'] = '今日'; +$a->strings['month'] = '月'; +$a->strings['week'] = '週間'; +$a->strings['day'] = '日'; $a->strings['No events to display'] = '表示するイベントはありません'; +$a->strings['Access to this profile has been restricted.'] = 'このプロフィールへのアクセスは制限されています。'; $a->strings['l, F j'] = 'l, F j'; $a->strings['Edit event'] = 'イベントを編集'; $a->strings['Duplicate event'] = '重複イベント'; $a->strings['Delete event'] = 'イベントを削除'; +$a->strings['l F d, Y \@ g:i A'] = 'l F d, Y \@ g:i A'; $a->strings['D g:i A'] = 'D g:i A'; $a->strings['g:i A'] = 'g:i A'; $a->strings['Show map'] = '地図を表示'; $a->strings['Hide map'] = '地図を隠す'; $a->strings['%s\'s birthday'] = '%sの誕生日'; $a->strings['Happy Birthday %s'] = 'ハッピーバースデー %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.'] = 'この名前の削除されたグループが復活しました。既存の項目の権限は、このグループと将来のメンバーに適用される可能性があります。これが意図したものでない場合は、別の名前で別のグループを作成してください。'; -$a->strings['Default privacy group for new contacts'] = '新しいコンタクトのデフォルトのプライバシーグループ'; -$a->strings['Everybody'] = 'みんな'; -$a->strings['edit'] = '編集する'; -$a->strings['add'] = '加える'; -$a->strings['Edit group'] = 'グループを編集'; -$a->strings['Contacts not in any group'] = 'どのグループにも属していないコンタクト'; -$a->strings['Create a new group'] = '新しいグループを作成する'; -$a->strings['Group Name: '] = 'グループ名:'; -$a->strings['Edit groups'] = 'グループを編集'; $a->strings['activity'] = 'アクティビティ'; $a->strings['post'] = '投稿'; $a->strings['Content warning: %s'] = 'コンテンツの警告: %s'; $a->strings['bytes'] = 'バイト'; $a->strings['View on separate page'] = '個別のページで見る'; $a->strings['[no subject]'] = '[件名なし]'; +$a->strings['Wall Photos'] = 'ウォール写真'; $a->strings['Edit profile'] = 'プロフィール編集'; $a->strings['Change profile photo'] = 'プロフィール写真を変更'; $a->strings['Homepage:'] = 'ホームページ:'; $a->strings['About:'] = 'この場所について:'; -$a->strings['XMPP:'] = 'XMPP:'; -$a->strings['Unfollow'] = 'フォロー解除'; $a->strings['Atom feed'] = 'Atomフィード'; -$a->strings['Network:'] = 'ネットワーク:'; -$a->strings['g A l F d'] = 'g A l F d'; $a->strings['F d'] = 'F d'; $a->strings['[today]'] = '[今日]'; $a->strings['Birthday Reminders'] = '誕生日のリマインダー'; $a->strings['Birthdays this week:'] = '今週の誕生日:'; +$a->strings['g A l F d'] = 'g A l F d'; $a->strings['[No description]'] = '[説明なし]'; $a->strings['Event Reminders'] = 'イベントリマインダー'; $a->strings['Upcoming events the next 7 days:'] = '今後7日間の今後のイベント:'; $a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %2$sさん、%1$sへようこそ'; -$a->strings['Database storage failed to update %s'] = 'データベースストレージは%sを更新できませんました'; -$a->strings['Database storage failed to insert data'] = 'データベースストレージがデータの挿入に失敗しました'; -$a->strings['Filesystem storage failed to create "%s". Check you write permissions.'] = 'ファイルシステムストレージは"%s" の作成に失敗しました。書き込み権限を確認してください。'; -$a->strings['Filesystem storage failed to save data to "%s". Check your write permissions'] = 'ファイルシステムストレージは、データを"%s"に保存できませんでした。書き込み権限を確認してください'; -$a->strings['Storage base path'] = 'ストレージのbase path'; -$a->strings['Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree'] = 'アップロードされたファイルが保存されるフォルダです。最大限のセキュリティを確保するために、これはWebサーバーフォルダツリー外のパスである必要があります'; -$a->strings['Enter a valid existing folder'] = '有効な既存のフォルダを入力してください'; +$a->strings['Hometown:'] = '出身地:'; +$a->strings['Sexual Preference:'] = '性的嗜好:'; +$a->strings['Political Views:'] = '政見:'; +$a->strings['Religious Views:'] = '宗教的見解:'; +$a->strings['Likes:'] = '好きなもの:'; +$a->strings['Dislikes:'] = '嫌いなもの:'; +$a->strings['Title/Description:'] = 'タイトル説明:'; +$a->strings['Summary'] = '概要'; +$a->strings['Musical interests'] = '音楽的興味'; +$a->strings['Books, literature'] = '本、文学'; +$a->strings['Television'] = 'テレビ'; +$a->strings['Film/dance/culture/entertainment'] = '映画/ダンス/文化/エンターテイメント'; +$a->strings['Hobbies/Interests'] = '趣味/興味'; +$a->strings['Love/romance'] = '愛/ロマンス'; +$a->strings['Work/employment'] = '仕事/雇用'; +$a->strings['School/education'] = '学校教育'; +$a->strings['Contact information and Social Networks'] = 'コンタクト情報とソーシャルネットワーク'; $a->strings['SERIOUS ERROR: Generation of security keys failed.'] = '重大なエラー:セキュリティキーの生成に失敗しました。'; $a->strings['Login failed'] = 'ログインに失敗しました'; $a->strings['Not enough information to authenticate'] = '認証に十分な情報がありません'; $a->strings['Password can\'t be empty'] = 'パスワードは空にできません'; $a->strings['Empty passwords are not allowed.'] = '空のパスワードは許可されていません。'; $a->strings['The new password has been exposed in a public data dump, please choose another.'] = '新しいパスワードは公開データダンプで公開されています。別のパスワードを選択してください。'; -$a->strings['The password can\'t contain accentuated letters, white spaces or colons (:)'] = 'パスワードには、アクセント文字、空白、またはコロン(:)を含めることはできません'; $a->strings['Passwords do not match. Password unchanged.'] = 'パスワードが一致していません。パスワードは変更されていません。'; $a->strings['An invitation is required.'] = '招待状が必要です。'; $a->strings['Invitation could not be verified.'] = '招待を確認できませんでした。'; @@ -1114,7 +684,7 @@ $a->strings['An error occurred during registration. Please try again.'] = '登 $a->strings['An error occurred creating your default profile. Please try again.'] = '既定のプロフィールの作成中にエラーが発生しました。もう一度試してください。'; $a->strings['An error occurred creating your self contact. Please try again.'] = '自己コンタクトの作成中にエラーが発生しました。もう一度試してください。'; $a->strings['Friends'] = '友だち'; -$a->strings['An error occurred creating your default contact group. Please try again.'] = '既定のコンタクトグループの作成中にエラーが発生しました。もう一度試してください。'; +$a->strings['Profile Photos'] = 'プロフィール写真'; $a->strings['Registration details for %s'] = '%s の登録の詳細'; $a->strings[' Dear %1$s, @@ -1143,58 +713,6 @@ $a->strings[' %1$sさん、 %2$sで登録していただきありがとうございます。アカウントが作成されました。 '; -$a->strings[' - The login details are as follows: - - Site Location: %3$s - Login Name: %1$s - Password: %5$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %3$s/removeme - - Thank you and welcome to %2$s.'] = ' -ログインの詳細は次のとおりです: - -サイトの場所: %3$s -ログイン名: %1$s -Password: %5$s - -パスワードは、ログイン後にアカウントの「設定」ページから変更できます。 -しばらくしてから、そのページの他のアカウント設定を確認してください。 - -既定のプロフィールに基本情報を追加することもできます("プロフィール" -ページ上)。他の人があなたを簡単に見つけられるようにします。 - -フルネームを設定し、プロフィール写真、いくつかのプロフィール"キーワード" -(新しい友達を作るのに非常に便利です)を追加することをお勧めします。 -具体的に書きたくない場合は、あなたが住んでいる国のみを書くのが良いでしょう。 - -これらの項目は必須では有りません。プライバシーに対する権利を完全に尊重します。 -あなたが新しく、ここに誰も知らない場合、彼らは新しい興味深い友人を作るのを -助けてくれるかもしれません - -あなたのアカウントを削除したいなら、 -%3$s/removeme -から可能です。 - -ありがとうございます。%2$sへようこそ。'; $a->strings['Addon not found.'] = 'アドオンが見つかりません。'; $a->strings['Addon %s disabled.'] = 'アドオン%sを無効にしました。'; $a->strings['Addon %s enabled.'] = 'アドオン%sが有効になりました。'; @@ -1206,59 +724,9 @@ $a->strings['Toggle'] = 'トグル'; $a->strings['Author: '] = '著者:'; $a->strings['Maintainer: '] = 'メンテナー:'; $a->strings['Addon %s failed to install.'] = 'アドオン %s のインストールに失敗しました。'; +$a->strings['Save Settings'] = '設定を保存'; $a->strings['Reload active addons'] = 'アクティブなアドオンをリロードする'; $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'] = '現在、ノードで使用可能なアドオンはありません。公式のアドオンリポジトリは %1$s にあり、他の興味深いアドオンは %2$s オープン アドオン レジストリにあります。'; -$a->strings['Pending'] = '保留'; -$a->strings['Blocked'] = 'ブロックされました'; -$a->strings['Private Forum'] = 'プライベートフォーラム'; -$a->strings['Relay'] = '中継'; -$a->strings['%s contact unblocked'] = [ - 0 => '%s はコンタクトのブロックを解除しました', -]; -$a->strings['Remote Contact Blocklist'] = 'リモートコンタクトブロックリスト'; -$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'このページを使用すると、リモートコンタクトからのメッセージがあなたのノードに届かないようにできます。'; -$a->strings['Block Remote Contact'] = 'リモートコンタクトをブロック'; -$a->strings['select all'] = 'すべて選択'; -$a->strings['select none'] = 'どれも選択しない'; -$a->strings['Unblock'] = 'ブロック解除'; -$a->strings['No remote contact is blocked from this node.'] = 'このノードからのリモートコンタクトはブロックされていません。'; -$a->strings['Blocked Remote Contacts'] = 'ブロックされたリモートコンタクト'; -$a->strings['Block New Remote Contact'] = '新しいリモートコンタクトをブロック'; -$a->strings['Photo'] = '写真'; -$a->strings['Reason'] = '理由'; -$a->strings['%s total blocked contact'] = [ - 0 => '%s 件のブロック済みコンタクト', -]; -$a->strings['URL of the remote contact to block.'] = 'ブロックするリモートコンタクトのURL。'; -$a->strings['Block Reason'] = 'ブロックの理由'; -$a->strings['Server domain pattern added to blocklist.'] = 'ブロックリストに追加されたサーバードメインパターン。'; -$a->strings['Blocked server domain pattern'] = 'ブロックされたサーバードメインパターン'; -$a->strings['Reason for the block'] = 'ブロックの理由'; -$a->strings['Delete server domain pattern'] = 'サーバードメインパターンの削除'; -$a->strings['Check to delete this entry from the blocklist'] = 'ブロックリストからこのエントリを削除する場合にチェックします'; -$a->strings['Server Domain Pattern Blocklist'] = 'サーバードメインパターンブロックリスト'; -$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.'] = 'ブロックされたサーバードメインパターンのリストは、 /friendica ページで公開され、ユーザーやコミュニケーションの問題を調査している人々が理由を簡単に見つけることができます。'; -$a->strings['

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

    -
      -
    • *: Any number of characters
    • -
    • ?: Any single character
    • -
    • [<char1><char2>...]: char1 or char2
    • -
    '] = '

    サーバードメインパターンの構文は、大文字と小文字を区別しないシェルワイルドカードであり、次の特殊文字で構成されています。

    -
      -
    • *:任意の数の文字
    • -
    • ?:任意の1文字
    • -
    • [<char1><char2>...]:char1またはchar2
    • -
    '; -$a->strings['Add new entry to block list'] = 'ブロックリストに新しいエントリを追加する'; -$a->strings['Server Domain Pattern'] = 'サーバードメインパターン'; -$a->strings['The domain pattern of the new server to add to the block list. Do not include the protocol.'] = 'ブロックリストに追加する新しいサーバーのドメインパターン。プロトコルを含めないでください。'; -$a->strings['Block reason'] = 'ブロック理由'; -$a->strings['The reason why you blocked this server domain pattern.'] = 'このサーバードメインパターンをブロックした理由。'; -$a->strings['Add Entry'] = 'エントリーを追加'; -$a->strings['Save changes to the blocklist'] = '変更をブロックリストに保存する'; -$a->strings['Current Entries in the Blocklist'] = 'ブロックリストの現在のエントリ'; -$a->strings['Delete entry from blocklist'] = 'ブロックリストからエントリを削除'; -$a->strings['Delete entry from blocklist?'] = 'ブロックリストからエントリを削除しますか?'; $a->strings['Update has been marked successful'] = '更新は正常にマークされました'; $a->strings['Database structure update %s was successfully applied.'] = 'データベース構造の更新 %s が正常に適用されました。'; $a->strings['Executing of database structure update %s failed with error: %s'] = 'データベース構造の更新 %s は次のエラーで失敗しました: %s'; @@ -1278,17 +746,6 @@ $a->strings['Other'] = 'その他'; $a->strings['unknown'] = '未知の'; $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.'] = 'このページでは、Friendicaノードが属するフェデレーションソーシャルネットワークの既知の部分について統計を提供します。これらの数値は完全なものではなく、ノードが認識しているネットワークの部分のみを反映しています。'; $a->strings['Federation Statistics'] = 'フェデレーション統計'; -$a->strings['Currently this node is aware of %d nodes with %d registered users from the following platforms:'] = '現在、このノードは %d ノードと、以下のプラットフォームからの登録ユーザー %d 人を認識しています:'; -$a->strings['Item marked for deletion.'] = '削除対象としてマークされた項目。'; -$a->strings['Delete Item'] = '項目を削除'; -$a->strings['Delete this Item'] = 'この項目を削除'; -$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.'] = 'このページでは、ノードから項目を削除できます。項目がトップレベルの投稿である場合、スレッド全体が削除されます。'; -$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.'] = '項目のGUIDを知る必要があります。たとえば、表示URLを調べることで見つけることができます。たとえば http://example.com/display/123456 の最後の部分がGUIDであり、ここでは123456です。'; -$a->strings['GUID'] = 'GUID'; -$a->strings['The GUID of the item you want to delete.'] = '削除する項目のGUID。'; -$a->strings['Item Source'] = '項目ソース'; -$a->strings['Item Guid'] = '項目GUID'; -$a->strings['Type'] = 'タイプ'; $a->strings['The logfile \'%s\' is not writable. No logging possible'] = 'ログファイル \' %s \' は書き込みできません。ログ機能が使用できません。'; $a->strings['PHP log currently enabled.'] = '現在有効なPHPログ。'; $a->strings['PHP log currently disabled.'] = 'PHPログは現在無効になっています。'; @@ -1300,23 +757,19 @@ $a->strings['Must be writable by web server. Relative to your Friendica top-leve $a->strings['Log level'] = 'ログレベル'; $a->strings['PHP logging'] = 'PHPロギング'; $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.'] = 'PHPのエラーと警告のログを一時的に有効にするには、インストールのindex.phpファイルに次を追加します。 「error_log」行に設定されたファイル名は、Friendicaの最上位ディレクトリに関連しており、Webサーバーが書き込み可能である必要があります。 「log_errors」および「display_errors」のオプション「1」はこれらのオプションを有効にすることであり、「0」に設定すると無効になります。'; -$a->strings['Error trying to open %1$s log file.\r\n
    Check to see if file %1$s exist and is readable.'] = 'ログファイル %1$s を開こうとしてエラーが発生しました。
    -ファイル%1$sが存在し、読み取り可能かどうかを確認してください。'; -$a->strings['Couldn\'t open %1$s log file.\r\n
    Check to see if file %1$s is readable.'] = 'ログファイル %1$s を開けませんでした。
    -ファイル %1$s が読み取り可能かどうかを確認してください。'; $a->strings['View Logs'] = 'ログを見る'; +$a->strings['Show all'] = 'すべて表示する'; +$a->strings['Event details'] = 'イベントの詳細'; $a->strings['Inspect Deferred Worker Queue'] = '遅延ワーカーキューの詳細を見る'; $a->strings['This page lists the deferred worker jobs. This are jobs that couldn\'t be executed at the first time.'] = 'このページには、遅延ワーカージョブが一覧表示されます。これは、投入時に実行できなかったジョブです。'; $a->strings['Inspect Worker Queue'] = 'ワーカーキューの詳細を見る'; $a->strings['This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you\'ve set up during install.'] = 'このページには、現在キューに入れられているワーカージョブが一覧表示されます。これらのジョブは、インストール中に設定したワーカーcronジョブによって処理されます。'; $a->strings['ID'] = 'ID'; $a->strings['Job Parameters'] = 'ジョブパラメータ'; +$a->strings['Created'] = '作成した'; $a->strings['Priority'] = '優先度'; -$a->strings['Can not parse base url. Must have at least ://'] = 'ベースURLを解析できません。少なくとも://が必要です'; -$a->strings['Invalid storage backend setting value.'] = '無効なストレージバックエンド設定値です。'; $a->strings['No special theme for mobile devices'] = 'モバイルデバイス向けの特別なテーマはありません'; $a->strings['%s - (Experimental)'] = '%s (実験的)'; -$a->strings['No community page for local users'] = 'ローカルユーザー向けのコミュニティページはありません'; $a->strings['No community page'] = 'コミュニティページなし'; $a->strings['Public postings from users of this site'] = 'このサイトのユーザーからの一般公開投稿'; $a->strings['Public postings from the federated network'] = 'フェデレーションネットワークからの一般公開投稿'; @@ -1325,23 +778,19 @@ $a->strings['Multi user instance'] = 'マルチユーザーインスタンス'; $a->strings['Closed'] = '閉まっている'; $a->strings['Requires approval'] = '承認が必要'; $a->strings['Open'] = '開いた'; -$a->strings['No SSL policy, links will track page SSL state'] = 'SSLポリシーはありません。リンクはページのSSL状態を追跡します'; -$a->strings['Force all links to use SSL'] = 'すべてのリンクに強制的にSSLを使用させる'; -$a->strings['Self-signed certificate, use SSL for local links only (discouraged)'] = '自己署名証明書、ローカルリンクのみにSSLを使用(非開示)'; $a->strings['Don\'t check'] = 'チェックしない'; $a->strings['check the stable version'] = '安定版を確認してください'; $a->strings['check the development version'] = '開発バージョンを確認する'; -$a->strings['Database (legacy)'] = 'データベース(レガシー)'; $a->strings['Site'] = 'サイト'; $a->strings['Republish users to directory'] = 'ユーザーをディレクトリに再公開する'; $a->strings['Registration'] = '登録'; $a->strings['File upload'] = 'ファイルのアップロード'; $a->strings['Policies'] = 'ポリシー'; +$a->strings['Advanced'] = '詳細'; $a->strings['Auto Discovered Contact Directory'] = '自動検出されたコンタクトディレクトリ'; $a->strings['Performance'] = '性能'; $a->strings['Worker'] = 'ワーカー'; $a->strings['Message Relay'] = 'メッセージ中継'; -$a->strings['Relocate Instance'] = 'インスタンスの再配置'; $a->strings['Site name'] = 'サイト名'; $a->strings['Sender Email'] = '送信者のメール'; $a->strings['The email address your server shall use to send notification emails from.'] = 'サーバーが通知メールの送信に使用するメールアドレス。'; @@ -1354,21 +803,13 @@ $a->strings['Additional Info'] = '追加情報'; $a->strings['For public servers: you can add additional information here that will be listed at %s/servers.'] = 'パブリックサーバーの場合:追加の情報をここに追加して、 %s/servers にリストできます。'; $a->strings['System language'] = 'システム言語'; $a->strings['System theme'] = 'システムテーマ'; -$a->strings['Default system theme - may be over-ridden by user profiles - Change default theme settings'] = '既定のシステムテーマ - ユーザープロフィールによって上書きされる場合があります -既定のテーマ設定を変更します'; $a->strings['Mobile system theme'] = 'モバイルシステムのテーマ'; $a->strings['Theme for mobile devices'] = 'モバイルデバイスのテーマ'; -$a->strings['SSL link policy'] = 'SSLリンクポリシー'; -$a->strings['Determines whether generated links should be forced to use SSL'] = '生成されたリンクにSSLの使用を強制する必要があるかどうかを決定します'; $a->strings['Force SSL'] = 'SSLを強制する'; $a->strings['Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'] = 'すべての非SSL要求をSSLに強制する-注意:一部のシステムでは、無限ループにつながる可能性があります。'; -$a->strings['Hide help entry from navigation menu'] = 'ナビゲーションメニューからヘルプエントリを非表示にする'; -$a->strings['Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly.'] = 'ナビゲーションメニューからヘルプページのメニューエントリを非表示にします。 / helpを直接呼び出してアクセスできます。'; $a->strings['Single user instance'] = 'シングルユーザーインスタンス'; $a->strings['Make this instance multi-user or single-user for the named user'] = '指定されたユーザーに対してこのインスタンスをマルチユーザーまたはシングルユーザーにします'; -$a->strings['File storage backend'] = 'ファイルストレージバックエンド'; -$a->strings['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.'] = 'アップロードされたデータを保存するために使用されるバックエンド。ストレージバックエンドを変更する場合、既存のファイルを手動で移動できます。変更しない場合、変更前にアップロードされたファイルは古いバックエンドで引き続き利用できます。選択肢と移動手順の詳細については、設定ドキュメントをご覧ください。'; $a->strings['Maximum image size'] = '最大画像サイズ'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'アップロードされる画像の最大サイズ(バイト単位)。デフォルトは0で、制限がないことを意味します。'; $a->strings['Maximum image length'] = '最大画像長'; $a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'アップロードされた画像の最長辺のピクセル単位の最大長。デフォルトは-1で、制限がないことを意味します。'; $a->strings['JPEG image quality'] = 'JPEG画像品質'; @@ -1396,7 +837,6 @@ $a->strings['Enabling this may violate privacy laws like the GDPR'] = 'これを $a->strings['Global directory URL'] = 'グローバルディレクトリURL'; $a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'グローバルディレクトリへのURL。これが設定されていない場合、グローバルディレクトリはアプリケーションで全く利用できなくなります。'; $a->strings['Private posts by default for new users'] = '新規ユーザー向けの 既定のプライベート投稿'; -$a->strings['Set default post permissions for all new members to the default privacy group rather than public.'] = 'すべての新しいメンバーの既定の投稿許可を、一般公開ではなく既定のプライバシーグループに設定します。'; $a->strings['Don\'t include post content in email notifications'] = 'メール通知に投稿本文を含めないでください'; $a->strings['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.'] = 'プライバシー対策として、このサイトから送信されるメール通知に投稿/コメント/プライベートメッセージなどのコンテンツを含めないでください。'; $a->strings['Disallow public access to addons listed in the apps menu.'] = 'アプリメニューにリストされているアドオンへの公開アクセスを許可しません。'; @@ -1407,24 +847,12 @@ $a->strings['Explicit Content'] = '明示的なコンテンツ'; $a->strings['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.'] = 'これを設定して、このノードが主に未成年者には適さない可能性のある露骨なコンテンツを目的とすることを通知します。この情報はノード情報で公開され、たとえばグローバルディレクトリによって使用され、参加するノードのリストからノードをフィルタリングします。さらに、これに関するメモがユーザー登録ページに表示されます。'; $a->strings['Allow Users to set remote_self'] = 'ユーザーがremote_selfを設定できるようにする'; $a->strings['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.'] = 'これをチェックすると、すべてのユーザーがコンタクトの修復ダイアログですべてのコンタクトをremote_selfとしてマークできます。コンタクトにこのフラグを設定すると、ユーザーストリームでそのコンタクトのすべての投稿がミラーリングされます。'; -$a->strings['Block multiple registrations'] = '複数の登録をブロックする'; -$a->strings['Disallow users to register additional accounts for use as pages.'] = 'ユーザーがページとして使用する追加のアカウントを登録できないようにします。'; -$a->strings['Disable OpenID'] = 'OpenIDを無効にする'; -$a->strings['Disable OpenID support for registration and logins.'] = '登録とログインのOpenIDサポートを無効にします。'; -$a->strings['No Fullname check'] = '氏名チェックなし'; -$a->strings['Allow users to register without a space between the first name and the last name in their full name.'] = 'ユーザーがフルネームの名と姓の間にスペースを入れずに登録できるようにします。'; $a->strings['Community pages for visitors'] = '訪問者向けのコミュニティページ'; $a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = '訪問者が利用できるコミュニティページ。ローカルユーザーには常に両方のページが表示されます。'; $a->strings['Posts per user on community page'] = 'コミュニティページのユーザーごとの投稿'; $a->strings['The maximum number of posts per user on the community page. (Not valid for "Global Community")'] = 'コミュニティページのユーザーごとの投稿の最大数。 (「グローバルコミュニティ」には無効)'; -$a->strings['Disable OStatus support'] = 'OStatusサポートを無効にする'; -$a->strings['Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed.'] = '組み込みのOStatus(StatusNet、GNU Socialなど)互換機能を無効にします。 OStatusの通信はすべて公開されているため、プライバシーに関する警告がときどき表示されます。'; -$a->strings['OStatus support can only be enabled if threading is enabled.'] = 'OStatusサポートは、スレッドが有効な場合にのみ有効にできます。'; $a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Friendicaがサブディレクトリにインストールされたため、Diasporaサポートを有効にできません。'; $a->strings['Enable Diaspora support'] = 'Diasporaサポートを有効にする'; -$a->strings['Provide built-in Diaspora network compatibility.'] = '組み込みのDiasporaネットワーク互換機能を提供します。'; -$a->strings['Only allow Friendica contacts'] = 'Friendicaコンタクトのみを許可する'; -$a->strings['All contacts must use Friendica protocols. All other built-in communication protocols disabled.'] = 'すべてのコンタクトはFriendicaプロトコルを使用する必要があります。他のすべての組み込み通信プロトコルは無効です。'; $a->strings['Verify SSL'] = 'SSLを検証する'; $a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = '必要に応じて、厳密な証明書チェックをオンにすることができます。これは、自己署名SSLサイトに(まったく)接続できないことを意味します。'; $a->strings['Proxy user'] = 'プロキシユーザー'; @@ -1433,8 +861,6 @@ $a->strings['Network timeout'] = 'ネットワークタイムアウト'; $a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = '値は秒単位です。無制限の場合は0に設定します(推奨されません)。'; $a->strings['Maximum Load Average'] = '最大負荷平均'; $a->strings['Maximum system load before delivery and poll processes are deferred - default %d.'] = 'このシステム 負荷/Load を超えると、配信・ポーリングプロセスの実行は延期されます。 - 既定の値は%dです。'; -$a->strings['Maximum Load Average (Frontend)'] = '最大負荷平均(フロントエンド)'; -$a->strings['Maximum system load before the frontend quits service - default 50.'] = 'フロントエンドがサービスを終了する前の最大システム負荷-デフォルト50'; $a->strings['Minimal Memory'] = '最小限のメモリ'; $a->strings['Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).'] = 'ワーカーの最小空きメモリ(MB)。 / proc / meminfoへのアクセスが必要-デフォルトは0(無効)。'; $a->strings['Days between requery'] = '再クエリの間隔'; @@ -1456,24 +882,12 @@ $a->strings['Lifespan of unclaimed items'] = '請求されていない項目の $a->strings['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.'] = 'データベースのクリーンアップが有効になっている場合、これは、要求されていないリモート項目(主に中継からのコンテンツ)が削除されるまでの日数を定義します。デフォルト値は90日です。 0に設定されている場合、リモート項目の一般的なライフスパン値がデフォルトになります。'; $a->strings['Lifespan of raw conversation data'] = 'Raw会話データの寿命'; $a->strings['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.'] = '会話データは、ActivityPubおよびOStatusに使用されるほか、デバッグにも使用されます。 14日後に削除しても安全です。デフォルトは90日です。'; -$a->strings['Path to item cache'] = '項目キャッシュへのパス'; -$a->strings['The item caches buffers generated bbcode and external images.'] = '項目は、生成されたbbcodeと外部画像のバッファーをキャッシュします。'; -$a->strings['Cache duration in seconds'] = '秒単位のキャッシュ期間'; -$a->strings['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.'] = 'キャッシュファイルを保持する期間デフォルト値は86400秒(1日)です。項目キャッシュを無効にするには、値を-1に設定します。'; $a->strings['Maximum numbers of comments per post'] = '投稿あたりのコメントの最大数'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = '各投稿に表示されるコメントの数は?デフォルト値は100です。'; $a->strings['Temp path'] = '一時パス'; $a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Webサーバーがシステムの一時パスにアクセスできない制限されたシステムがある場合は、ここに別のパスを入力します。'; -$a->strings['Disable picture proxy'] = '画像プロキシを無効にする'; -$a->strings['The picture proxy increases performance and privacy. It shouldn\'t be used on systems with very low bandwidth.'] = '画像プロキシは、パフォーマンスとプライバシーを向上させます。帯域幅が非常に低いシステムでは使用しないでください。'; $a->strings['Only search in tags'] = 'タグでのみ検索'; $a->strings['On large systems the text search can slow down the system extremely.'] = '大規模なシステムでは、テキスト検索によりシステムの速度が著しく低下する可能性があります。'; -$a->strings['New base url'] = '新しいベースURL'; -$a->strings['Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users.'] = 'このサーバーのベースURLを変更します。すべてのユーザーのFriendicaおよびDiaspora *のすべてのコンタクトに再配置メッセージを送信します。'; -$a->strings['RINO Encryption'] = 'RINO暗号化'; -$a->strings['Encryption layer between nodes.'] = 'ノード間の暗号化レイヤー。'; -$a->strings['Disabled'] = '無効'; -$a->strings['Enabled'] = '有効化'; $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を有効にする'; @@ -1482,6 +896,7 @@ $a->strings['Direct relay transfer'] = '直接中継転送'; $a->strings['Enables the direct transfer to other servers without using the relay servers'] = '中継サーバーを使用せずに他のサーバーに直接転送できるようにします'; $a->strings['Relay scope'] = '中継スコープ'; $a->strings['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.'] = '"all "または"tags "にすることができます。 「すべて」は、すべての一般公開投稿を受信することを意味します。 「タグ」は、選択したタグのある投稿のみを受信することを意味します。'; +$a->strings['Disabled'] = '無効'; $a->strings['all'] = 'すべて'; $a->strings['tags'] = 'タグ'; $a->strings['Server tags'] = 'サーバータグ'; @@ -1489,6 +904,8 @@ $a->strings['Comma separated list of tags for the "tags" subscription.'] = '"tag $a->strings['Allow user tags'] = 'ユーザータグを許可する'; $a->strings['If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".'] = '有効にすると、保存された検索のタグが、"relay_server_tags "に加えて"tags "サブスクリプションに使用されます。'; $a->strings['Start Relocation'] = '再配置を開始'; +$a->strings['Invalid storage backend setting value.'] = '無効なストレージバックエンド設定値です。'; +$a->strings['Database (legacy)'] = 'データベース(レガシー)'; $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.
    '] = 'DBは引き続きMyISAMテーブルで実行されます。エンジンタイプをInnoDBに変更する必要があります。 Friendicaは今後InnoDBのみの機能を使用するため、これを変更する必要があります。テーブルエンジンの変換に役立つガイドについては、こちらをご覧ください。 Friendicaインストールの php bin/console.php dbstructure toinnodb コマンドを使用して自動変換することもできます。
    '; $a->strings['There is a new version of Friendica available for download. Your current version is %1$s, upstream version is %2$s'] = 'ダウンロード可能なFriendicaの新しいバージョンがあります。現在のバージョンは%1$s 、アップストリームバージョンは%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.'] = 'データベースの更新に失敗しました。コマンドラインから「php bin/console.php dbstructure update」を実行し、表示される可能性のあるエラーを確認してください。'; @@ -1498,22 +915,11 @@ $a->strings['The last worker execution was on %s UTC. This is older than one hou $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.'] = 'Friendicaの設定はconfig/local.config.phpに保存されるようになりました。config/local-sample.config.phpをコピーし、設定を .htconfig.php から移動してください。移行のヘルプについては、 Configヘルプページをご覧ください。'; $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.'] = 'Friendicaの設定はconfig/local.config.phpに保存されるようになりました。config/ local-sample.config.phpをコピーして、設定を config / local.ini.php から移動してください。移行のヘルプについては、 Configヘルプページをご覧ください。'; $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.'] = 'システムで %s に到達できません。これは、サーバー間の通信を妨げる重大な構成の問題です。ヘルプについては、インストールページをご覧ください。'; -$a->strings['The logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'ログファイル \' %s \' は使用できません。ログ機能が使用できません。(エラー: \' %s \' )'; -$a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'デバッグログファイル \' %s \' は使用できません。ログ機能が使用できません。(エラー: \' %s \' )'; $a->strings['Friendica\'s system.basepath was updated from \'%s\' to \'%s\'. Please remove the system.basepath from your db to avoid differences.'] = 'Friendicaのsystem.basepathは \'%s\' から \'%s\' に更新されました。差異を避けるために、データベースからsystem.basepathを削除してください。'; $a->strings['Friendica\'s current system.basepath \'%s\' is wrong and the config file \'%s\' isn\'t used.'] = 'Friendicaの現在のsystem.basepath \'%s\' は間違っています。構成ファイル \'%s\'は使用されていません。'; $a->strings['Friendica\'s current system.basepath \'%s\' is not equal to the config file \'%s\'. Please fix your configuration.'] = 'Friendicaの現在のsystem.basepath \'%s\'は、構成ファイル \'%s\'と等しくありません。設定を修正してください。'; -$a->strings['Normal Account'] = '通常アカウント'; -$a->strings['Automatic Follower Account'] = '自動フォロワーアカウント'; -$a->strings['Public Forum Account'] = '公開フォーラムアカウント'; -$a->strings['Automatic Friend Account'] = '自動友達アカウント'; -$a->strings['Blog Account'] = 'ブログアカウント'; -$a->strings['Private Forum Account'] = 'プライベートフォーラムアカウント'; $a->strings['Message queues'] = 'メッセージキュー'; $a->strings['Server Settings'] = 'サーバー設定'; -$a->strings['Summary'] = '概要'; -$a->strings['Registered users'] = '登録ユーザー'; -$a->strings['Pending registrations'] = '保留中の登録'; $a->strings['Version'] = 'バージョン'; $a->strings['Active addons'] = 'アクティブなアドオン'; $a->strings['Theme %s disabled.'] = 'テーマ%sを無効にしました。'; @@ -1532,52 +938,11 @@ $a->strings['Display Privacy Statement'] = 'プライバシーに関する声明 $a->strings['Privacy Statement Preview'] = 'プライバシーに関する声明のプレビュー'; $a->strings['The Terms of Service'] = '利用規約'; $a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = 'ここにノードの利用規約を入力します。 BBCodeを使用できます。セクションのヘッダーは[h2]以下である必要があります。'; -$a->strings['%s user blocked'] = [ - 0 => '%sユーザーがブロックされました', -]; -$a->strings['You can\'t remove yourself'] = '自分を削除することはできません'; -$a->strings['%s user deleted'] = [ - 0 => '%sユーザーが削除されました', -]; -$a->strings['User "%s" deleted'] = 'ユーザー"%s"が削除されました'; -$a->strings['User "%s" blocked'] = 'ユーザー"%s"がブロックされました'; -$a->strings['Register date'] = '登録日'; -$a->strings['Last login'] = '前回のログイン'; -$a->strings['User blocked'] = 'ユーザーがブロックされました'; -$a->strings['Site admin'] = 'サイト管理者'; -$a->strings['Account expired'] = 'アカウントの有効期限が切れました'; -$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = '選択したユーザーは削除されます! - -これらのユーザーがこのサイトに投稿したものはすべて完全に削除されます! - -よろしいですか?'; -$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'ユーザー{0}は削除されます! - -このユーザーがこのサイトに投稿したものはすべて完全に削除されます! - -よろしいですか?'; -$a->strings['%s user unblocked'] = [ - 0 => '%sユーザーのブロックを解除しました', -]; -$a->strings['User "%s" unblocked'] = 'ユーザー"%s"のブロックを解除しました'; -$a->strings['New User'] = '新しいユーザー'; -$a->strings['Add User'] = 'ユーザーを追加する'; -$a->strings['Name of the new user.'] = '新しいユーザーの名前。'; -$a->strings['Nickname'] = 'ニックネーム'; -$a->strings['Nickname of the new user.'] = '新しいユーザーのニックネーム。'; -$a->strings['Email address of the new user.'] = '新しいユーザーのメールアドレス。'; -$a->strings['Permanent deletion'] = '永久削除'; -$a->strings['Users'] = 'ユーザー'; -$a->strings['User waiting for permanent deletion'] = '永久削除を待っているユーザー'; -$a->strings['Account approved.'] = 'アカウントが承認されました。'; -$a->strings['Request date'] = '依頼日'; -$a->strings['No registrations.'] = '登録なし。'; -$a->strings['Note from the user'] = 'ユーザーからのメモ'; -$a->strings['Deny'] = '拒否する'; $a->strings['Contact not found'] = 'コンタクトが見つかりません'; $a->strings['No installed applications.'] = 'アプリケーションがインストールされていません。'; $a->strings['Applications'] = 'アプリケーション'; $a->strings['Item was not found.'] = '項目が見つかりませんでした。'; +$a->strings['Please login to continue.'] = 'この先に進むにはログインしてください。'; $a->strings['Overview'] = '概要'; $a->strings['Configuration'] = '構成'; $a->strings['Additional features'] = '追加機能'; @@ -1585,9 +950,6 @@ $a->strings['Database'] = 'データベース'; $a->strings['DB updates'] = 'DBの更新'; $a->strings['Inspect Deferred Workers'] = '非同期実行ワーカーの検査'; $a->strings['Inspect worker Queue'] = 'ワーカーキューの検査'; -$a->strings['Tools'] = 'ツール'; -$a->strings['Contact Blocklist'] = 'コンタクトブロックリスト'; -$a->strings['Server Blocklist'] = 'サーバーブロックリスト'; $a->strings['Diagnostics'] = '診断'; $a->strings['PHP Info'] = 'PHP情報'; $a->strings['probe address'] = 'プローブアドレス'; @@ -1595,35 +957,126 @@ $a->strings['check webfinger'] = 'webfingerで診断'; $a->strings['Babel'] = 'Babel'; $a->strings['Addon Features'] = 'アドオン機能'; $a->strings['User registrations waiting for confirmation'] = '確認待ちのユーザー登録'; +$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ + 0 => '一日の最大投稿数 %d 件を超えたため、投稿できませんでした。', +]; +$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ + 0 => '一週間の最大投稿数 %d 件を超えたため、投稿できませんでした。', +]; +$a->strings['Users'] = 'ユーザー'; +$a->strings['Tools'] = 'ツール'; +$a->strings['Contact Blocklist'] = 'コンタクトブロックリスト'; +$a->strings['Server Blocklist'] = 'サーバーブロックリスト'; +$a->strings['Delete Item'] = '項目を削除'; +$a->strings['Item Source'] = '項目ソース'; $a->strings['Profile Details'] = 'プロフィールの詳細'; $a->strings['Only You Can See This'] = 'これしか見えない'; $a->strings['Tips for New Members'] = '新会員のためのヒント'; $a->strings['People Search - %s'] = '人を検索- %s'; -$a->strings['Forum Search - %s'] = 'フォーラム検索- %s'; +$a->strings['No matches'] = '一致する項目がありません'; $a->strings['Account'] = 'アカウント'; $a->strings['Two-factor authentication'] = '二要素認証'; $a->strings['Display'] = '表示'; +$a->strings['Social Networks'] = 'ソーシャルネットワーク'; $a->strings['Manage Accounts'] = 'アカウントの管理'; $a->strings['Connected apps'] = '接続されたアプリ'; $a->strings['Export personal data'] = '個人データのエクスポート'; $a->strings['Remove account'] = 'アカウントを削除'; $a->strings['This page is missing a url parameter.'] = 'このページにはurlパラメーターがありません。'; $a->strings['The post was created'] = '投稿が作成されました'; +$a->strings['Failed to remove event'] = 'イベントを削除できませんでした'; +$a->strings['Event can not end before it has started.'] = 'イベントは開始する前に終了できません。'; +$a->strings['Event title and start time are required.'] = 'イベントのタイトルと開始時間が必要です。'; +$a->strings['Starting date and Title are required.'] = '開始日とタイトルが必要です。'; +$a->strings['Event Starts:'] = 'イベント開始:'; +$a->strings['Required'] = '必須'; +$a->strings['Finish date/time is not known or not relevant'] = '終了日時が不明であるか、関連性がない'; +$a->strings['Event Finishes:'] = 'イベント終了:'; +$a->strings['Share this event'] = 'このイベントを共有する'; +$a->strings['Basic'] = 'ベーシック'; +$a->strings['This calendar format is not supported'] = 'このカレンダー形式はサポートされていません'; +$a->strings['No exportable data found'] = 'エクスポート可能なデータが見つかりません'; +$a->strings['calendar'] = 'カレンダー'; +$a->strings['Events'] = 'イベント'; +$a->strings['View'] = '表示する'; +$a->strings['Create New Event'] = '新しいイベントを作成'; +$a->strings['list'] = 'リスト'; +$a->strings['Contact not found.'] = 'コンタクトが見つかりません。'; +$a->strings['Invalid contact.'] = '無効なコンタクト。'; +$a->strings['Contact is deleted.'] = 'コンタクトが削除されます。'; +$a->strings['Bad request.'] = '要求の形式が正しくありません。'; +$a->strings['Filter'] = 'フィルタ'; +$a->strings['Members'] = '会員'; +$a->strings['Click on a contact to add or remove.'] = 'コンタクトをクリックして追加・削除'; $a->strings['%d contact edited.'] = [ 0 => '%dコンタクトを編集しました。', ]; -$a->strings['Could not access contact record.'] = 'コンタクトレコードにアクセスできませんでした。'; -$a->strings['You can\'t block yourself'] = '自分をブロックすることはできません'; -$a->strings['Contact has been blocked'] = 'コンタクトがブロックされました'; +$a->strings['Show all contacts'] = 'すべてのコンタクトを表示'; +$a->strings['Pending'] = '保留'; +$a->strings['Only show pending contacts'] = '保留中のコンタクトのみを表示'; +$a->strings['Blocked'] = 'ブロックされました'; +$a->strings['Only show blocked contacts'] = 'ブロックされたコンタクトのみを表示'; +$a->strings['Ignored'] = '無視された'; +$a->strings['Only show ignored contacts'] = '無視されたコンタクトのみを表示'; +$a->strings['Archived'] = 'アーカイブ済み'; +$a->strings['Only show archived contacts'] = 'アーカイブされたコンタクトのみを表示'; +$a->strings['Hidden'] = '非表示'; +$a->strings['Only show hidden contacts'] = '非表示のコンタクトのみを表示'; +$a->strings['Search your contacts'] = 'コンタクトを検索する'; +$a->strings['Results for: %s'] = '結果: %s'; +$a->strings['Update'] = '更新'; +$a->strings['Unblock'] = 'ブロック解除'; +$a->strings['Unignore'] = '無視しない'; +$a->strings['Batch Actions'] = 'バッチアクション'; +$a->strings['Conversations started by this contact'] = 'このコンタクトが開始した会話'; +$a->strings['Posts and Comments'] = '投稿とコメント'; +$a->strings['Advanced Contact Settings'] = '高度なコンタクト設定'; +$a->strings['Mutual Friendship'] = '相互フォロー'; +$a->strings['is a fan of yours'] = 'あなたのファンです'; +$a->strings['you are a fan of'] = 'あなたはファンです'; +$a->strings['Pending outgoing contact request'] = '保留中の送信済みコンタクトリクエスト'; +$a->strings['Pending incoming contact request'] = '保留中の受信済みコンタクトリクエスト'; +$a->strings['Visit %s\'s profile [%s]'] = '%sのプロフィール[ %s ]を開く'; +$a->strings['Contact update failed.'] = 'コンタクトの更新に失敗しました。'; +$a->strings['Return to contact editor'] = 'コンタクトエディターに戻る'; +$a->strings['Name'] = '名'; +$a->strings['Account Nickname'] = 'アカウントのニックネーム'; +$a->strings['Account URL'] = 'アカウントURL'; +$a->strings['Poll/Feed URL'] = 'ポーリング/フィードURL'; +$a->strings['New photo from this URL'] = 'このURLからの新しい写真'; +$a->strings['Follower (%s)'] = [ + 0 => 'フォロワー( %s )', +]; +$a->strings['Following (%s)'] = [ + 0 => 'フォロー中( %s )', +]; +$a->strings['Mutual friend (%s)'] = [ + 0 => '相互の友人( %s )', +]; +$a->strings['Contact (%s)'] = [ + 0 => 'コンタクト( %s )', +]; +$a->strings['Access denied.'] = 'アクセスが拒否されました。'; +$a->strings['Submit Request'] = 'リクエストを送る'; +$a->strings['You already added this contact.'] = 'このコンタクトは既に追加されています。'; +$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['Please answer the following:'] = '以下に答えてください。'; +$a->strings['Your Identity Address:'] = 'あなたのIdentityアドレス:'; +$a->strings['Profile URL'] = 'プロフィールURL'; +$a->strings['Tags:'] = 'タグ:'; +$a->strings['%s knows you'] = '%sはあなたを知っています'; +$a->strings['Add a personal note:'] = '個人メモを追加します。'; +$a->strings['The contact could not be added.'] = 'コンタクトを追加できませんでした。'; +$a->strings['Invalid request.'] = '無効なリクエストです。'; +$a->strings['No keywords to match. Please add keywords to your profile.'] = '合致するキーワードが有りません。あなたのプロフィールにキーワードを追加してください。'; +$a->strings['Profile Match'] = '一致するプロフィール'; +$a->strings['Failed to update contact record.'] = 'コンタクトレコードを更新できませんでした。'; $a->strings['Contact has been unblocked'] = 'コンタクトのブロックが解除されました'; -$a->strings['You can\'t ignore yourself'] = '自分を無視することはできません'; -$a->strings['Contact has been ignored'] = 'コンタクトは無視されました'; +$a->strings['Contact has been blocked'] = 'コンタクトがブロックされました'; $a->strings['Contact has been unignored'] = 'コンタクトは無視されていません'; -$a->strings['Contact has been archived'] = 'コンタクトがアーカイブされました'; -$a->strings['Contact has been unarchived'] = 'コンタクトのアーカイブを解除しました'; -$a->strings['Drop contact'] = 'コンタクトを削除'; -$a->strings['Do you really want to delete this contact?'] = 'このコンタクトを本当に削除しますか?'; -$a->strings['Contact has been removed.'] = 'コンタクトは削除されました。'; +$a->strings['Contact has been ignored'] = 'コンタクトは無視されました'; $a->strings['You are mutual friends with %s'] = 'あなたは%sと共通の友達です'; $a->strings['You are sharing with %s'] = '%sと共有しています'; $a->strings['%s is sharing with you'] = '%sはあなたと共有しています'; @@ -1640,112 +1093,49 @@ $a->strings['Fetch information'] = '情報を取得する'; $a->strings['Fetch keywords'] = 'キーワードを取得する'; $a->strings['Fetch information and keywords'] = '情報とキーワードを取得する'; $a->strings['No mirroring'] = 'ミラーリングなし'; -$a->strings['Mirror as forwarded posting'] = '転送された投稿としてミラー'; $a->strings['Mirror as my own posting'] = '自分の投稿としてミラー'; $a->strings['Contact Information / Notes'] = 'コンタクト/メモ'; $a->strings['Contact Settings'] = 'コンタクト設定'; $a->strings['Contact'] = 'コンタクト'; $a->strings['Their personal note'] = '彼らの個人的なメモ'; $a->strings['Edit contact notes'] = 'コンタクトメモを編集する'; -$a->strings['Visit %s\'s profile [%s]'] = '%sのプロフィール[ %s ]を開く'; $a->strings['Block/Unblock contact'] = 'コンタクトのブロック/ブロック解除'; $a->strings['Ignore contact'] = 'コンタクトを無視'; $a->strings['View conversations'] = '会話を見る'; $a->strings['Last update:'] = '最後の更新:'; $a->strings['Update public posts'] = '一般公開の投稿を更新'; $a->strings['Update now'] = '今すぐ更新'; -$a->strings['Unignore'] = '無視しない'; +$a->strings['Awaiting connection acknowledge'] = '接続確認応答待ち'; $a->strings['Currently blocked'] = '現在ブロックされています'; $a->strings['Currently ignored'] = '現在無視されます'; $a->strings['Currently archived'] = '現在アーカイブ済み'; -$a->strings['Awaiting connection acknowledge'] = '接続確認応答待ち'; $a->strings['Hide this contact from others'] = 'このコンタクトを他の人から隠す'; $a->strings['Replies/likes to your public posts may still be visible'] = '一般公開の投稿への返信・いいねは、引き続き表示される場合があります'; $a->strings['Notification for new posts'] = '新しい投稿の通知'; $a->strings['Send a notification of every new post of this contact'] = 'このコンタクトの新しい投稿ごとに通知を送信する'; $a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = '「情報とキーワードの取得」が選択されている場合、ハッシュタグに変換しないキーワードのカンマ区切りリスト'; $a->strings['Actions'] = '操作'; +$a->strings['Status'] = '状態'; $a->strings['Mirror postings from this contact'] = 'このコンタクトからの投稿をミラーリングする'; $a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'このコンタクトをremote_selfとしてマークすると、friendicaがこのコンタクトから新しいエントリを再投稿します。'; -$a->strings['Show all contacts'] = 'すべてのコンタクトを表示'; -$a->strings['Only show pending contacts'] = '保留中のコンタクトのみを表示'; -$a->strings['Only show blocked contacts'] = 'ブロックされたコンタクトのみを表示'; -$a->strings['Ignored'] = '無視された'; -$a->strings['Only show ignored contacts'] = '無視されたコンタクトのみを表示'; -$a->strings['Archived'] = 'アーカイブ済み'; -$a->strings['Only show archived contacts'] = 'アーカイブされたコンタクトのみを表示'; -$a->strings['Hidden'] = '非表示'; -$a->strings['Only show hidden contacts'] = '非表示のコンタクトのみを表示'; -$a->strings['Organize your contact groups'] = 'コンタクトグループを整理する'; -$a->strings['Search your contacts'] = 'コンタクトを検索する'; -$a->strings['Results for: %s'] = '結果: %s'; -$a->strings['Archive'] = 'アーカイブ'; -$a->strings['Unarchive'] = 'アーカイブ解除'; -$a->strings['Batch Actions'] = 'バッチアクション'; -$a->strings['Conversations started by this contact'] = 'このコンタクトが開始した会話'; -$a->strings['Posts and Comments'] = '投稿とコメント'; -$a->strings['Advanced Contact Settings'] = '高度なコンタクト設定'; -$a->strings['Mutual Friendship'] = '相互フォロー'; -$a->strings['is a fan of yours'] = 'あなたのファンです'; -$a->strings['you are a fan of'] = 'あなたはファンです'; -$a->strings['Pending outgoing contact request'] = '保留中の送信済みコンタクトリクエスト'; -$a->strings['Pending incoming contact request'] = '保留中の受信済みコンタクトリクエスト'; $a->strings['Refetch contact data'] = 'コンタクトデータを再取得する'; $a->strings['Toggle Blocked status'] = 'ブロック状態の切り替え'; $a->strings['Toggle Ignored status'] = '無視ステータスの切り替え'; -$a->strings['Toggle Archive status'] = 'アーカイブステータスの切り替え'; -$a->strings['Delete contact'] = 'コンタクトを削除'; -$a->strings['Contact update failed.'] = 'コンタクトの更新に失敗しました。'; -$a->strings['WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working.'] = '警告:これは非常に高度です。誤った情報を入力すると、このコンタクトとのコミュニケーションが機能しなくなる場合があります。'; -$a->strings['Please use your browser \'Back\' button now if you are uncertain what to do on this page.'] = 'このページで何をすべきかわからない場合は、ブラウザの "戻る" ボタンを *今すぐ*クリックしてください。'; -$a->strings['Return to contact editor'] = 'コンタクトエディターに戻る'; -$a->strings['Account Nickname'] = 'アカウントのニックネーム'; -$a->strings['@Tagname - overrides Name/Nickname'] = '@Tagname - 名前/ニックネームをオーバーライドします'; -$a->strings['Account URL'] = 'アカウントURL'; -$a->strings['Account URL Alias'] = 'アカウントURLエイリアス'; -$a->strings['Friend Request URL'] = 'フレンドリクエストURL'; -$a->strings['Friend Confirm URL'] = '友人確認URL'; -$a->strings['Notification Endpoint URL'] = '通知エンドポイントURL'; -$a->strings['Poll/Feed URL'] = 'ポーリング/フィードURL'; -$a->strings['New photo from this URL'] = 'このURLからの新しい写真'; -$a->strings['Invalid contact.'] = '無効なコンタクト。'; -$a->strings['Follower (%s)'] = [ - 0 => 'フォロワー( %s )', -]; -$a->strings['Following (%s)'] = [ - 0 => 'フォロー中( %s )', -]; -$a->strings['Mutual friend (%s)'] = [ - 0 => '相互の友人( %s )', -]; -$a->strings['Contact (%s)'] = [ - 0 => 'コンタクト( %s )', -]; -$a->strings['You must be logged in to use this module.'] = 'このモジュールを使用するにはログインする必要があります'; -$a->strings['Poke/Prod'] = '突く/製品'; -$a->strings['poke, prod or do other things to somebody'] = '誰かに突く、突く、または他のことをする'; -$a->strings['Choose what you wish to do to recipient'] = '受信者にしたいことを選択してください'; -$a->strings['Make this post private'] = 'この投稿を非公開にします'; -$a->strings['Local Community'] = 'ローカル コミュニティ'; -$a->strings['Posts from local users on this server'] = 'このサーバー上のローカルユーザーからの投稿'; -$a->strings['Global Community'] = 'グローバルコミュニティ'; -$a->strings['Posts from users of the whole federated network'] = 'フェデレーションネットワーク全体のユーザーからの投稿'; +$a->strings['Bad Request.'] = '要求の形式が正しくありません。'; +$a->strings['Yes'] = 'はい'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = '利用可能な提案はありません。新しいサイトの場合は、24時間後にもう一度お試しください。'; +$a->strings['You aren\'t following this contact.'] = 'あなたはこのコンタクトをフォローしていません'; +$a->strings['Unfollowing is currently not supported by your network.'] = '現在、フォロー解除はあなたのネットワークではサポートされていません'; +$a->strings['Disconnect/Unfollow'] = '接続・フォローを解除'; $a->strings['No results.'] = '結果がありません。'; $a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'このコミュニティストリームには、このノードが受信したすべての一般公開投稿が表示されます。このノードのユーザーの意見を反映していない場合があります。'; $a->strings['Community option not available.'] = 'コミュニティオプションは利用できません。'; $a->strings['Not available.'] = '利用不可。'; -$a->strings['No such group'] = 'そのようなグループはありません'; -$a->strings['Group: %s'] = 'グループ: %s'; -$a->strings['Latest Activity'] = '最近の操作'; -$a->strings['Sort by latest activity'] = '最終更新順に並び替え'; -$a->strings['Latest Posts'] = '最新の投稿'; -$a->strings['Sort by post received date'] = '投稿を受信した順に並び替え'; -$a->strings['Personal'] = 'パーソナル'; -$a->strings['Posts that mention or involve you'] = 'あなたに言及または関与している投稿'; -$a->strings['Starred'] = 'スター付き'; -$a->strings['Favourite Posts'] = 'お気に入りの投稿'; $a->strings['Credits'] = 'クレジット'; $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!'] = 'Friendicaはコミュニティプロジェクトであり、多くの人々の助けがなければ不可能です。以下は、Friendicaのコードまたは翻訳に貢献した人のリストです。皆さん、ありがとうございました!'; +$a->strings['Error'] = [ + 0 => 'エラー', +]; $a->strings['Source input'] = 'ソース入力'; $a->strings['BBCode::toPlaintext'] = 'BBCode :: toPlaintext'; $a->strings['BBCode::convert (raw HTML)'] = 'BBCode :: convert(生のHTML)'; @@ -1801,49 +1191,25 @@ $a->strings['Installed addons/apps:'] = 'インストールされたアドオン $a->strings['No installed addons/apps'] = 'アドオン/アプリがインストールされていません'; $a->strings['Read about the Terms of Service of this node.'] = 'このノードの利用規約について読んでください。'; $a->strings['On this server the following remote servers are blocked.'] = 'このサーバーでは、次のリモートサーバーがブロックされています。'; +$a->strings['Reason for the block'] = 'ブロックの理由'; $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.'] = 'これは、Webロケーション%s実行されているFriendicaバージョン%sです。データベースのバージョンは%s 、更新後のバージョンは%sです。'; $a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Friendicaプロジェクトの詳細については、 Friendi.ca をご覧ください。'; $a->strings['Bug reports and issues: please visit'] = 'バグレポートと問題:こちらをご覧ください'; $a->strings['the bugtracker at github'] = 'githubのバグトラッカー'; $a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = '提案、ファンレターなどを "info " at "friendi - dot - ca"でお待ちしております。'; -$a->strings['Could not create group.'] = 'グループを作成できませんでした。'; -$a->strings['Group not found.'] = 'グループが見つかりません。'; -$a->strings['Group name was not changed.'] = 'グループ名は変更されませんでした。'; -$a->strings['Unknown group.'] = '不明なグループ。'; -$a->strings['Contact is deleted.'] = 'コンタクトが削除されます。'; -$a->strings['Unable to add the contact to the group.'] = 'グループにコンタクトを追加できません。'; -$a->strings['Contact successfully added to group.'] = 'グループにコンタクトを追加しました。'; -$a->strings['Unable to remove the contact from the group.'] = 'グループからコンタクトを削除できません。'; -$a->strings['Contact successfully removed from group.'] = 'グループからコンタクトを削除しました。'; -$a->strings['Unknown group command.'] = '不明なグループコマンド。'; -$a->strings['Bad request.'] = '要求の形式が正しくありません。'; -$a->strings['Save Group'] = 'グループを保存'; -$a->strings['Filter'] = 'フィルタ'; -$a->strings['Create a group of contacts/friends.'] = 'コンタクト/友人のグループを作成します。'; -$a->strings['Unable to remove group.'] = 'グループを削除できません。'; -$a->strings['Delete Group'] = 'グループを削除'; -$a->strings['Edit Group Name'] = 'グループ名を編集'; -$a->strings['Members'] = '会員'; -$a->strings['Group is empty'] = 'グループは空です'; -$a->strings['Remove contact from group'] = 'グループからコンタクトを削除'; -$a->strings['Click on a contact to add or remove.'] = 'コンタクトをクリックして追加・削除'; -$a->strings['Add contact to group'] = 'グループにコンタクトを追加'; +$a->strings['No profile'] = 'プロフィールなし'; $a->strings['Method Not Allowed.'] = 'そのメソッドは許可されていません。'; $a->strings['Help:'] = 'ヘルプ:'; $a->strings['Welcome to %s'] = '%sへようこそ'; -$a->strings['No profile'] = 'プロフィールなし'; $a->strings['Friendica Communications Server - Setup'] = 'Friendica Communications Server-セットアップ'; $a->strings['System check'] = 'システムチェック'; $a->strings['Requirement not satisfied'] = '要件を満たしていない'; $a->strings['Optional requirement not satisfied'] = 'オプションの要件を満たしていない'; +$a->strings['Next'] = '次'; $a->strings['Check again'] = '再び確かめる'; $a->strings['Base settings'] = '基本設定'; -$a->strings['Host name'] = 'ホスト名'; -$a->strings['Overwrite this field in case the determinated hostname isn\'t right, otherweise leave it as is.'] = '決定されたホスト名が正しくない場合、このフィールドを上書きします。そうでない場合はそのままにします。'; $a->strings['Base path to installation'] = 'インストールへの基本パス'; $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.'] = 'システムがインストールへの正しいパスを検出できない場合は、ここに正しいパスを入力します。この設定は、制限されたシステムとWebルートへのシンボリックリンクを使用している場合にのみ設定する必要があります。'; -$a->strings['Sub path of the URL'] = 'URLのサブパス'; -$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.'] = 'サブパスの決定が正しくない場合はこのフィールドを上書きし、そうでない場合はそのままにしておきます。このフィールドを空白のままにすると、サブパスなしでベースURLにインストールされます。'; $a->strings['Database connection'] = 'データベース接続'; $a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Friendicaをインストールするには、データベースへの接続方法を知る必要があります。'; $a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'これらの設定について質問がある場合は、ホスティングプロバイダーまたはサイト管理者にお問い合わせください。'; @@ -1893,13 +1259,113 @@ $a->strings['Visibility'] = '公開範囲'; $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['The feed for this item is unavailable.'] = 'この項目のフィードは利用できません。'; $a->strings['System down for maintenance'] = 'メンテナンスのためのシステムダウン'; $a->strings['A Decentralized Social Network'] = '分権化されたソーシャルネットワーク'; +$a->strings['Files'] = 'ファイル'; +$a->strings['Upload'] = 'アップロードする'; +$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'すいません、サーバのPHP設定で許可されたサイズよりも大きいファイルをアップロードしている可能性があります。'; +$a->strings['Or - did you try to upload an empty file?'] = 'または、空のファイルをアップロードしようとしていませんか?'; +$a->strings['File exceeds size limit of %s'] = 'ファイルサイズ上限 %s を超えています。'; +$a->strings['File upload failed.'] = 'アップロードが失敗しました。'; +$a->strings['Unable to process image.'] = '画像を処理できません。'; +$a->strings['Image upload failed.'] = '画像アップロードに失敗しました。'; +$a->strings['Normal Account Page'] = '通常のアカウントページ'; +$a->strings['Soapbox Page'] = 'Soapboxページ'; +$a->strings['Automatic Friend Page'] = '自動友達ページ'; +$a->strings['Personal Page'] = '個人ページ'; +$a->strings['Organisation Page'] = '組織ページ'; +$a->strings['News Page'] = 'ニュースページ'; +$a->strings['Relay'] = '中継'; +$a->strings['%s contact unblocked'] = [ + 0 => '%s はコンタクトのブロックを解除しました', +]; +$a->strings['Remote Contact Blocklist'] = 'リモートコンタクトブロックリスト'; +$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'このページを使用すると、リモートコンタクトからのメッセージがあなたのノードに届かないようにできます。'; +$a->strings['Block Remote Contact'] = 'リモートコンタクトをブロック'; +$a->strings['select all'] = 'すべて選択'; +$a->strings['select none'] = 'どれも選択しない'; +$a->strings['No remote contact is blocked from this node.'] = 'このノードからのリモートコンタクトはブロックされていません。'; +$a->strings['Blocked Remote Contacts'] = 'ブロックされたリモートコンタクト'; +$a->strings['Block New Remote Contact'] = '新しいリモートコンタクトをブロック'; +$a->strings['Photo'] = '写真'; +$a->strings['Reason'] = '理由'; +$a->strings['%s total blocked contact'] = [ + 0 => '%s 件のブロック済みコンタクト', +]; +$a->strings['URL of the remote contact to block.'] = 'ブロックするリモートコンタクトのURL。'; +$a->strings['Block Reason'] = 'ブロックの理由'; +$a->strings['Server Domain Pattern'] = 'サーバードメインパターン'; +$a->strings['Block reason'] = 'ブロック理由'; +$a->strings['Blocked server domain pattern'] = 'ブロックされたサーバードメインパターン'; +$a->strings['Delete server domain pattern'] = 'サーバードメインパターンの削除'; +$a->strings['Check to delete this entry from the blocklist'] = 'ブロックリストからこのエントリを削除する場合にチェックします'; +$a->strings['Server Domain Pattern Blocklist'] = 'サーバードメインパターンブロックリスト'; +$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.'] = 'ブロックされたサーバードメインパターンのリストは、 /friendica ページで公開され、ユーザーやコミュニケーションの問題を調査している人々が理由を簡単に見つけることができます。'; +$a->strings['Save changes to the blocklist'] = '変更をブロックリストに保存する'; +$a->strings['Current Entries in the Blocklist'] = 'ブロックリストの現在のエントリ'; +$a->strings['Item marked for deletion.'] = '削除対象としてマークされた項目。'; +$a->strings['Delete this Item'] = 'この項目を削除'; +$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.'] = 'このページでは、ノードから項目を削除できます。項目がトップレベルの投稿である場合、スレッド全体が削除されます。'; +$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.'] = '項目のGUIDを知る必要があります。たとえば、表示URLを調べることで見つけることができます。たとえば http://example.com/display/123456 の最後の部分がGUIDであり、ここでは123456です。'; +$a->strings['GUID'] = 'GUID'; +$a->strings['The GUID of the item you want to delete.'] = '削除する項目のGUID。'; +$a->strings['Type'] = 'タイプ'; +$a->strings['Item not found'] = '項目が見つかりません'; +$a->strings['Item Guid'] = '項目GUID'; +$a->strings['Normal Account'] = '通常アカウント'; +$a->strings['Automatic Follower Account'] = '自動フォロワーアカウント'; +$a->strings['Automatic Friend Account'] = '自動友達アカウント'; +$a->strings['Blog Account'] = 'ブログアカウント'; +$a->strings['Registered users'] = '登録ユーザー'; +$a->strings['Pending registrations'] = '保留中の登録'; +$a->strings['%s user blocked'] = [ + 0 => '%sユーザーがブロックされました', +]; +$a->strings['You can\'t remove yourself'] = '自分を削除することはできません'; +$a->strings['%s user deleted'] = [ + 0 => '%sユーザーが削除されました', +]; +$a->strings['User "%s" deleted'] = 'ユーザー"%s"が削除されました'; +$a->strings['User "%s" blocked'] = 'ユーザー"%s"がブロックされました'; +$a->strings['Register date'] = '登録日'; +$a->strings['Last login'] = '前回のログイン'; +$a->strings['User blocked'] = 'ユーザーがブロックされました'; +$a->strings['Site admin'] = 'サイト管理者'; +$a->strings['Account expired'] = 'アカウントの有効期限が切れました'; +$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = '選択したユーザーは削除されます! + +これらのユーザーがこのサイトに投稿したものはすべて完全に削除されます! + +よろしいですか?'; +$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'ユーザー{0}は削除されます! + +このユーザーがこのサイトに投稿したものはすべて完全に削除されます! + +よろしいですか?'; +$a->strings['%s user unblocked'] = [ + 0 => '%sユーザーのブロックを解除しました', +]; +$a->strings['User "%s" unblocked'] = 'ユーザー"%s"のブロックを解除しました'; +$a->strings['New User'] = '新しいユーザー'; +$a->strings['Add User'] = 'ユーザーを追加する'; +$a->strings['Name of the new user.'] = '新しいユーザーの名前。'; +$a->strings['Nickname'] = 'ニックネーム'; +$a->strings['Nickname of the new user.'] = '新しいユーザーのニックネーム。'; +$a->strings['Email address of the new user.'] = '新しいユーザーのメールアドレス。'; +$a->strings['Permanent deletion'] = '永久削除'; +$a->strings['User waiting for permanent deletion'] = '永久削除を待っているユーザー'; +$a->strings['Account approved.'] = 'アカウントが承認されました。'; +$a->strings['Request date'] = '依頼日'; +$a->strings['No registrations.'] = '登録なし。'; +$a->strings['Note from the user'] = 'ユーザーからのメモ'; +$a->strings['Deny'] = '拒否する'; $a->strings['Show Ignored Requests'] = '無視されたリクエストを表示'; $a->strings['Hide Ignored Requests'] = '無視されたリクエストを隠す'; $a->strings['Notification type:'] = '通知の種類:'; $a->strings['Suggested by:'] = 'によって提案されました:'; $a->strings['Claims to be known to you: '] = 'あなたに知られているという主張:'; +$a->strings['No'] = 'いいえ'; $a->strings['Shall your connection be bidirectional or not?'] = 'つながりを相互フォローにしてもよいですか?'; $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 を友達として受け入れた場合、%s はあなたの投稿を購読できます。また、あなたのニュースフィードにこのアカウントの投稿が表示されます。'; $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を購読者として受け入れると、このアカウントはあなたの投稿を購読できますが、このアカウントからの投稿はあなたのニュースフィードに表示されません。'; @@ -1913,13 +1379,44 @@ $a->strings['System Notifications'] = 'システム通知'; $a->strings['Personal Notifications'] = '個人的な通知'; $a->strings['Home Notifications'] = 'ホーム通知'; $a->strings['Show unread'] = '未読を表示'; -$a->strings['Show all'] = 'すべて表示する'; +$a->strings['{0} requested registration'] = '{0}は登録をリクエストしました'; +$a->strings['Authorize application connection'] = 'アプリからの接続を承認します'; +$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'このアプリケーションによる、あなたの投稿・コンタクトの読み取りや、新しい投稿の作成を許可しますか?'; +$a->strings['Resubscribing to OStatus contacts'] = 'Ostatusコンタクトをもう一度購読します'; +$a->strings['Keep this window open until done.'] = 'ウィンドウを閉じずにお待ちください…'; +$a->strings['No contact provided.'] = 'コンタクトは提供されていません。'; +$a->strings['Couldn\'t fetch information for contact.'] = 'コンタクトの情報を取得できませんでした。'; +$a->strings['Couldn\'t fetch friends for contact.'] = 'コンタクトの友達関係を取得できませんでした。'; +$a->strings['Done'] = '完了'; +$a->strings['success'] = '成功'; +$a->strings['failed'] = '失敗'; +$a->strings['ignored'] = '無視'; $a->strings['Model not found'] = 'モジュールが見つかりません'; $a->strings['Remote privacy information not available.'] = 'リモートプライバシー情報は利用できません。'; $a->strings['Visible to:'] = '表示先:'; $a->strings['The Photo with id %s is not available.'] = 'ID%sの写真は利用できません'; $a->strings['Invalid photo with id %s.'] = 'ID %s の写真が無効です。'; +$a->strings['Edit post'] = '投稿を編集'; +$a->strings['web link'] = 'ウェブリンク'; +$a->strings['Insert video link'] = 'ビデオリンクを挿入'; +$a->strings['video link'] = 'ビデオリンク'; +$a->strings['Insert audio link'] = 'オーディオリンクを挿入'; +$a->strings['audio link'] = 'オーディオリンク'; +$a->strings['Remove Item Tag'] = 'タグの削除'; +$a->strings['Select a tag to remove: '] = '削除するタグを選択:'; +$a->strings['Remove'] = '削除'; $a->strings['No contacts.'] = 'コンタクトはありません。'; +$a->strings['%s\'s timeline'] = '%sのタイムライン'; +$a->strings['%s\'s posts'] = '%sの投稿'; +$a->strings['%s\'s comments'] = '%sのコメント'; +$a->strings['Image exceeds size limit of %s'] = '画像サイズ上限 %s を超えています。'; +$a->strings['Image upload didn\'t complete, please try again'] = '画像のアップロードが完了しませんでした。もう一度お試しください'; +$a->strings['Image file is missing'] = '画像ファイルがありません'; +$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'サーバーは現在、新しいファイルのアップロードを受け入れられません。管理者に連絡してください'; +$a->strings['Image file is empty.'] = '画像ファイルが空です。'; +$a->strings['View Album'] = 'アルバムを見る'; +$a->strings['Profile not found.'] = 'プロフィールが見つかりません。'; +$a->strings['Full Name:'] = 'フルネーム:'; $a->strings['Member since:'] = '以来のメンバー:'; $a->strings['j F, Y'] = 'j F, Y'; $a->strings['j F'] = 'j F'; @@ -1928,11 +1425,17 @@ $a->strings['Age: '] = '年齢:'; $a->strings['%d year old'] = [ 0 => '%d歳', ]; -$a->strings['Forums:'] = 'フォーラム:'; -$a->strings['%s\'s timeline'] = '%sのタイムライン'; -$a->strings['%s\'s posts'] = '%sの投稿'; -$a->strings['%s\'s comments'] = '%sのコメント'; +$a->strings['Description:'] = '説明:'; +$a->strings['Profile unavailable.'] = 'プロフィールを利用できません。'; +$a->strings['Invalid locator'] = '無効なロケーター'; +$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'あなたのネットワークではリモート購読ができません。あなたのシステム上で直接購読してください。'; +$a->strings['Friend/Connection Request'] = '友達/接続リクエスト'; +$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.'] = 'まだ\'自由なソーシャルウェブ\'のメンバーでない場合は、このリンクをクリックして、Friendicaの公開サイトを見つけて、今すぐ参加してください。'; +$a->strings['Unable to check your home location.'] = 'あなたのホームロケーションを確認できません。'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = '一日のウォールメッセージ上限 %s 通を超えました。投稿できません。'; +$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = '%s からの返信を受け取りたい場合は、サイトのプライバシー設定で「不明な送信者からのプライベートメール」を許可しているか確認してください。'; $a->strings['Only parent users can create additional accounts.'] = '追加アカウントを作成できるのは親ユーザのみです。'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'このサイトは、1日あたりに許可されているアカウント登録数の上限を超えています。 明日再度お試しください。'; $a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking "Register".'] = '(オプションで)OpenIDを提供し、「登録」をクリックして、OpenIDを介してこのフォームに入力できます。'; $a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'OpenIDに慣れていない場合は、そのフィールドを空白のままにして、残りの項目を入力してください。'; $a->strings['Your OpenID (optional): '] = 'OpenID(オプション):'; @@ -1944,9 +1447,12 @@ $a->strings['Your invitation code: '] = '招待コード:'; $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['New Password:'] = '新しいパスワード:'; $a->strings['Leave empty for an auto generated password.'] = '自動生成されたパスワードの場合は空のままにします。'; +$a->strings['Confirm:'] = '確認:'; $a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be "nickname@%s".'] = 'プロフィールのニックネームを選択します。これはテキスト文字で始まる必要があります。このサイトのプロフィールアドレスは" nickname@%s "になります。'; $a->strings['Choose a nickname: '] = 'ニックネームを選択:'; +$a->strings['Import'] = 'インポート'; $a->strings['Import your profile to this friendica instance'] = 'このfriendicaインスタンスにプロフィールをインポートします'; $a->strings['Note: This node explicitly contains adult content'] = '注:このノードには、露骨なアダルトコンテンツが含まれています'; $a->strings['Parent Password:'] = '親パスワード:'; @@ -1962,6 +1468,7 @@ $a->strings['Registration successful.'] = '登録に成功。'; $a->strings['Your registration can not be processed.'] = '登録を処理できません。'; $a->strings['You have to leave a request note for the admin.'] = '管理者へリクエストする内容を書く必要があります。'; $a->strings['Your registration is pending approval by the site owner.'] = '登録はサイト所有者による承認待ちです。'; +$a->strings['You must be logged in to use this module.'] = 'このモジュールを使用するにはログインする必要があります'; $a->strings['Only logged in users are permitted to perform a search.'] = 'ログインしたユーザーのみが検索を実行できます。'; $a->strings['Only one search per minute is permitted for not logged in users.'] = 'ログインしていないユーザーには、1分間に1つの検索のみが許可されます。'; $a->strings['Items tagged with: %s'] = 'タグ付けされた項目: %s'; @@ -1981,6 +1488,10 @@ $a->strings['Logged out.'] = 'ログアウトしました。'; $a->strings['OpenID protocol error. No ID returned'] = 'OpenID プロトコルエラー。返答にてIDが返されませんでした。'; $a->strings['Account not found. Please login to your existing account to add the OpenID to it.'] = 'アカウントが見つかりませんでした。 既存のアカウントにログインして、OpenIDを追加してください。'; $a->strings['Account not found. Please register a new account or login to your existing account to add the OpenID to it.'] = 'アカウントが見つかりませんでした。 OpenIDを追加するには、新しいアカウントを登録するか、既存のアカウントにログインしてください。'; +$a->strings['Passwords do not match.'] = 'パスワードが一致していません。'; +$a->strings['Password unchanged.'] = 'パスワードは変更されていません。'; +$a->strings['Current Password:'] = '現在のパスワード:'; +$a->strings['Your current password to confirm the changes'] = '変更を確認するための現在のパスワード'; $a->strings['Remaining recovery codes: %d'] = '残りの復旧コード: %d'; $a->strings['Invalid code, please retry.'] = '無効なコードです。再試行してください。'; $a->strings['Two-factor recovery'] = '二要素回復'; @@ -1990,8 +1501,126 @@ $a->strings['Please enter a recovery code'] = '復旧コードを入力してく $a->strings['Submit recovery code and complete login'] = '復旧コードを送信してログインを完了する'; $a->strings['

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

    '] = '

    デバイスで二要素認証アプリを開き、認証コードを取得して本人確認を行います。

    '; $a->strings['Please enter a code from your authentication app'] = '認証アプリからコードを入力してください'; -$a->strings['This is my two-factor authenticator app device'] = 'これは私の二要素認証アプリデバイスです'; $a->strings['Verify code and complete login'] = 'コードを確認してログインを完了する'; +$a->strings['Please use a shorter name.'] = '短い名前を使用してください。'; +$a->strings['Name too short.'] = '名前が短すぎます。'; +$a->strings['Wrong Password.'] = 'パスワードが間違っています。'; +$a->strings['Invalid email.'] = '無効なメール。'; +$a->strings['Cannot change to that email.'] = 'そのメールに変更できません。'; +$a->strings['Settings were not updated.'] = '設定が更新されませんでした。'; +$a->strings['Contact CSV file upload error'] = 'アップロードエラー:コンタクトCSVファイル'; +$a->strings['Importing Contacts done'] = 'コンタクトのインポートが完了しました'; +$a->strings['Relocate message has been send to your contacts'] = '再配置メッセージがコンタクトに送信されました'; +$a->strings['Unable to find your profile. Please contact your admin.'] = 'プロフィールが見つかりません。管理者に連絡してください。'; +$a->strings['Personal Page Subtypes'] = '個人ページのサブタイプ'; +$a->strings['Account for a personal profile.'] = '個人プロフィールを説明します。'; +$a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'コンタクトリクエストを「フォロワー」として自動的に承認します。組織に適したアカウントです。'; +$a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'コンタクトのリクエストを「フォロワー」として自動的に承認します。ニュース再配信に適したアカウントです。'; +$a->strings['Account for community discussions.'] = 'コミュニティディスカッションのアカウント。'; +$a->strings['Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'] = '"Friends "および"Followers "の手動承認を必要とする通常の個人プロフィールのアカウント。'; +$a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'コンタクトリクエストを「フォロワー」として自動的に承認します。一般公開プロフィールのアカウントです。'; +$a->strings['Automatically approves all contact requests.'] = 'すべてのコンタクトリクエストを自動的に承認します。'; +$a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'コンタクトのリクエストを「フレンド」として自動的に承認します。知名度のあるプロフィールに適したアカウントです。'; +$a->strings['Requires manual approval of contact requests.'] = 'コンタクトリクエストの手動承認が必要です。'; +$a->strings['OpenID:'] = 'OpenID:'; +$a->strings['(Optional) Allow this OpenID to login to this account.'] = '(オプション)このOpenIDがこのアカウントにログインできるようにします。'; +$a->strings['Publish your profile in your local site directory?'] = 'ローカルサイトディレクトリにプロフィールを公開しますか?'; +$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->strings['Your profile will also be published in the global friendica directories (e.g. %s).'] = 'あなたのプロフィールはグローバルなFriendicaディレクトリに公開されます(例: %s )。'; +$a->strings['Account Settings'] = 'アカウント設定'; +$a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'IDアドレスは \' %s \' または \' %s \'です。'; +$a->strings['Password Settings'] = 'パスワード設定'; +$a->strings['Leave password fields blank unless changing'] = '変更しない限り、パスワードフィールドは空白のままにしてください'; +$a->strings['Password:'] = 'パスワード:'; +$a->strings['Your current password to confirm the changes of the email address'] = '変更を確認するための電子メールアドレスの現在のパスワード'; +$a->strings['Delete OpenID URL'] = 'OpenID URLを削除'; +$a->strings['Basic Settings'] = '基本設定'; +$a->strings['Display name:'] = '表示名:'; +$a->strings['Email Address:'] = '電子メールアドレス:'; +$a->strings['Your Timezone:'] = 'あなたのタイムゾーン:'; +$a->strings['Your Language:'] = 'あなたの言語:'; +$a->strings['Set the language we use to show you friendica interface and to send you emails'] = 'friendicaインターフェイスを表示し、メールを送信するために使用する言語を設定します'; +$a->strings['Default Post Location:'] = 'デフォルトの投稿場所:'; +$a->strings['Use Browser Location:'] = 'ブラウザのロケーションを使用:'; +$a->strings['Security and Privacy Settings'] = 'セキュリティとプライバシーの設定'; +$a->strings['Maximum Friend Requests/Day:'] = '1日あたりの友達リクエスト上限:'; +$a->strings['(to prevent spam abuse)'] = '(スパムの悪用を防ぐため)'; +$a->strings['Allow your profile to be searchable globally?'] = '自分のプロフィールを世界中で検索できるようにしますか?'; +$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.'] = '他の人があなたを簡単に見つけてフォローできるようにしたい場合は、この設定を有効にしてください。あなたのプロフィールはリモートシステムで検索可能です。この設定は、Friendicaが検索エンジンにあなたのプロフィールをインデックス化するかどうかも決定します。'; +$a->strings['Hide your contact/friend list from viewers of your profile?'] = 'プロフィールの閲覧者からコンタクト/友人リストを非表示にしますか?'; +$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->strings['Make public posts unlisted'] = '公開投稿を非表示にする'; +$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->strings['Make all posted pictures accessible'] = '投稿した写真は全てアクセス可能にする'; +$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.'] = 'このオプションは、投稿したすべての写真をダイレクトリンクでアクセスできるようにします。これは、他の多くのネットワークが写真のパーミッションを処理できないという問題を回避するためのものです。ただし、公開していない写真はフォトアルバムでは一般に公開されません。'; +$a->strings['Allow friends to post to your profile page?'] = '友人があなたのプロフィールページに投稿することを許可しますか?'; +$a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'コンタクトは、プロフィールウォールに投稿を書くことができます。これらの投稿はコンタクトに配信されます'; +$a->strings['Allow friends to tag your posts?'] = '友達があなたの投稿にタグを付けることを許可しますか?'; +$a->strings['Your contacts can add additional tags to your posts.'] = 'コンタクトは、投稿にタグを追加できます。'; +$a->strings['Permit unknown people to send you private mail?'] = '知らない人にプライベートメールを送ることを許可しますか?'; +$a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Friendicaネットワークユーザーは、コンタクトリストにない場合でもプライベートメッセージを送信する場合があります。'; +$a->strings['Maximum private messages per day from unknown people:'] = '不明な人からの 1日あたりのプライベートメッセージ上限:'; +$a->strings['Default Post Permissions'] = '投稿の既定の権限'; +$a->strings['Expiration settings'] = '有効期限設定'; +$a->strings['Automatically expire posts after this many days:'] = 'この数日後に投稿を自動的に期限切れにします:'; +$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = '空の場合、投稿は期限切れになりません。期限切れの投稿は削除されます'; +$a->strings['Expire posts'] = '投稿の有効期限'; +$a->strings['When activated, posts and comments will be expired.'] = '有効にすると、投稿とコメントは期限切れになるでしょう。'; +$a->strings['Expire personal notes'] = '個人メモの有効期限'; +$a->strings['When activated, the personal notes on your profile page will be expired.'] = '有効にすると、プロフィールページ上の個人メモは期限切れになるでしょう。'; +$a->strings['Expire starred posts'] = 'スター付き投稿の有効期限'; +$a->strings['Starring posts keeps them from being expired. That behaviour is overwritten by this setting.'] = '投稿にスターを付けると、投稿が期限切れにならないようにします。動作はこの設定で上書きされます。'; +$a->strings['Only expire posts by others'] = '他のユーザーによる投稿のみを期限切れにする'; +$a->strings['When activated, your own posts never expire. Then the settings above are only valid for posts you received.'] = '有効にすると、自分の投稿は期限切れになりません。そうすると、上記の設定は自分が受け取った投稿に対してのみ有効となります。'; +$a->strings['Notification Settings'] = '通知設定'; +$a->strings['Send a notification email when:'] = '次の場合に通知メールを送信します。'; +$a->strings['You receive an introduction'] = '招待を受けます'; +$a->strings['Your introductions are confirmed'] = 'あなたの招待が確認されました'; +$a->strings['Someone writes on your profile wall'] = '誰かがあなたのプロフィールウォールに書き込みます'; +$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['Activate desktop notifications'] = 'デスクトップ通知を有効にする'; +$a->strings['Show desktop popup on new notifications'] = '新しい通知にデスクトップポップアップを表示する'; +$a->strings['Text-only notification emails'] = 'テキストのみの通知メール'; +$a->strings['Send text only notification emails, without the html part'] = 'HTML部分なしで、テキストのみの通知メールを送信します'; +$a->strings['Show detailled notifications'] = '詳細な通知を表示'; +$a->strings['Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.'] = 'デフォルトでは、通知は項目ごとに1つの通知にまとめられます。有効にすると、すべての通知が表示されます。'; +$a->strings['Show notifications of ignored contacts'] = '無視されたコンタクトの通知を表示'; +$a->strings['You don\'t see posts from ignored contacts. But you still see their comments. This setting controls if you want to still receive regular notifications that are caused by ignored contacts or not.'] = '無視されたコンタクトからの投稿は表示されません。しかし、相手のコメントは表示されます。この設定では、無視されたコンタクトからの通知を定期的に受け取るかどうかを設定します。'; +$a->strings['Advanced Account/Page Type Settings'] = 'アカウント/ページタイプの詳細設定'; +$a->strings['Change the behaviour of this account for special situations'] = '特別な状況でこのアカウントの動作を変更する'; +$a->strings['Import Contacts'] = 'コンタクトをインポートする'; +$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = '古いアカウントからエクスポートしたCSVファイルをアップロードします。これは最初の列に、フォローしているアカウントのハンドルを含みます。'; +$a->strings['Upload File'] = 'ファイルをアップロード'; +$a->strings['Relocate'] = '再配置'; +$a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'このプロフィールを別のサーバーから移動し、コンタクトの一部が更新を受信しない場合は、このボタンを押してみてください。'; +$a->strings['Resend relocate message to contacts'] = '再配置メッセージをコンタクトに再送信する'; +$a->strings['Addon Settings'] = 'アドオン設定'; +$a->strings['No Addon settings configured'] = 'アドオン設定は構成されていません'; +$a->strings['Failed to connect with email account using the settings provided.'] = '提供された設定を使用してメールアカウントに接続できませんでした。'; +$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora(Socialhome、Hubzilla)'; +$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; +$a->strings['Email access is disabled on this site.'] = 'このサイトではメールアクセスが無効になっています。'; +$a->strings['None'] = '無し'; +$a->strings['General Social Media Settings'] = '一般的なソーシャルメディア設定'; +$a->strings['Attach the link title'] = 'リンクの件名を添付します'; +$a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = '有効にすると、添付されたリンクのタイトルがDiasporaへの投稿のタイトルとして追加されます。 これは主に、フィードコンテンツを共有する「リモート セルフ」コンタクトで役立ちます。'; +$a->strings['Repair OStatus subscriptions'] = 'OStatusサブスクリプションを修復する'; +$a->strings['Email/Mailbox Setup'] = 'メール/メールボックスのセットアップ'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'このサービス(オプション)を使用してメールコンタクトと通信する場合は、メールボックスへの接続方法を指定してください。'; +$a->strings['Last successful email check:'] = '最後に成功したメールチェック:'; +$a->strings['IMAP server name:'] = 'IMAPサーバー名:'; +$a->strings['IMAP port:'] = 'IMAPポート:'; +$a->strings['Security:'] = 'セキュリティ:'; +$a->strings['Email login name:'] = 'メールのログイン名:'; +$a->strings['Email password:'] = 'メールのパスワード:'; +$a->strings['Reply-to address:'] = '返信先アドレス:'; +$a->strings['Send public posts to all email contacts:'] = 'すべてのメールコンタクトに一般公開投稿を送信します。'; +$a->strings['Action after import:'] = 'インポート後のアクション:'; +$a->strings['Move to folder'] = 'フォルダへ移動'; +$a->strings['Move to folder:'] = 'フォルダへ移動:'; $a->strings['Delegation successfully granted.'] = '委任が正常に許可されました。'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = '親ユーザーが見つからないか、利用できないか、パスワードが一致しません。'; $a->strings['Delegation successfully revoked.'] = '委任が正常に取り消されました。'; @@ -2016,7 +1645,6 @@ $a->strings['General Theme Settings'] = '一般的なテーマ設定'; $a->strings['Custom Theme Settings'] = 'カスタムテーマ設定'; $a->strings['Content Settings'] = 'コンテンツ設定'; $a->strings['Theme settings'] = 'テーマ設定'; -$a->strings['Calendar'] = 'カレンダー'; $a->strings['Display Theme:'] = 'ディスプレイテーマ:'; $a->strings['Mobile Theme:'] = 'モバイルテーマ:'; $a->strings['Number of items to display per page:'] = 'ページごとに表示する項目の数:'; @@ -2024,18 +1652,12 @@ $a->strings['Maximum of 100 items'] = '最大100項目'; $a->strings['Number of items to display per page when viewed from mobile device:'] = 'モバイルデバイスから表示したときにページごとに表示する項目の数:'; $a->strings['Update browser every xx seconds'] = 'xx秒ごとにブラウザーを更新する'; $a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = '10秒以上。 -1を入力して無効にします。'; -$a->strings['Automatic updates only at the top of the post stream pages'] = '投稿ストリームページの上部でのみ自動更新'; -$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.'] = '自動更新では、投稿ストリームページの最上部に新しい記事が追加されることがあります。これがページの最上部以外の場所で発生すると、スクロール位置に影響を与え、普通に読むことが妨げられることがあります。'; -$a->strings['Don\'t show emoticons'] = '絵文字を表示しない'; -$a->strings['Normally emoticons are replaced with matching symbols. This setting disables this behaviour.'] = '通常、絵文字は一致する記号に置き換えられます。この設定は、この動作を無効にします。'; $a->strings['Infinite scroll'] = '無限スクロール'; $a->strings['Automatic fetch new items when reaching the page end.'] = 'ページの最後に到達したとき、新規項目を自動取得する'; -$a->strings['Disable Smart Threading'] = 'スマートスレッドを無効にする'; -$a->strings['Disable the automatic suppression of extraneous thread indentation.'] = '外部スレッドのインデントについて、自動抑制を無効にします。'; -$a->strings['Hide the Dislike feature'] = '嫌い機能を隠す'; -$a->strings['Hides the Dislike button and dislike reactions on posts and comments.'] = '投稿とコメント上の嫌いボタンと嫌いの反応を隠す'; $a->strings['Beginning of week:'] = '週の始まり:'; -$a->strings['Profile Name is required.'] = 'プロフィール名が必要です。'; +$a->strings['Additional Features'] = '追加機能'; +$a->strings['Connected Apps'] = '接続されたアプリ'; +$a->strings['Remove authorization'] = '承認を削除'; $a->strings['(click to open/close)'] = '(クリックして開く・閉じる)'; $a->strings['Profile Actions'] = 'プロフィールアクション'; $a->strings['Edit Profile Details'] = 'プロフィールの詳細を編集'; @@ -2044,14 +1666,12 @@ $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:'] = '地域/州:'; $a->strings['Postal/Zip Code:'] = '郵便番号:'; $a->strings['Country:'] = '国:'; $a->strings['XMPP (Jabber) address:'] = 'XMPP(Jabber)アドレス:'; -$a->strings['The XMPP address will be propagated to your contacts so that they can follow you.'] = 'XMPPアドレスがコンタクトに伝達され、コンタクトがあなたをフォローできるようになります。'; $a->strings['Homepage URL:'] = 'ホームページのURL:'; $a->strings['Public Keywords:'] = '公開キーワード:'; $a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(友人を候補を提案するために使用ます。また他の人が見ることができます。)'; @@ -2066,6 +1686,13 @@ $a->strings['Upload Profile Picture'] = 'プロフィール画像をアップロ $a->strings['or'] = 'または'; $a->strings['skip this step'] = 'このステップを飛ばす'; $a->strings['select a photo from your photo albums'] = 'フォトアルバムから写真を選択する'; +$a->strings['[Friendica System Notify]'] = '[Friendica システム通知]'; +$a->strings['User deleted their account'] = 'このユーザはアカウントを削除しました。'; +$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Friendicaノードで、ユーザーがアカウントを削除しました。 それらのデータがバックアップから削除されていることを確認してください。'; +$a->strings['The user id is %d'] = 'ユーザIDは %d です'; +$a->strings['Remove My Account'] = '自分のアカウントを削除します'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'これにより、アカウントが完全に削除されます。 これが完了すると、回復できなくなります。'; +$a->strings['Please enter your password for verification:'] = '確認のため、あなたのパスワードを入力してください。'; $a->strings['Please enter your password to access this page.'] = 'このページにアクセスするには、パスワードを入力してください。'; $a->strings['App-specific password generation failed: The description is empty.'] = 'アプリ固有のパスワード生成に失敗しました:説明は空です。'; $a->strings['App-specific password generation failed: This description already exists.'] = 'アプリ固有のパスワード生成に失敗しました:この説明は既に存在します。'; @@ -2084,7 +1711,6 @@ $a->strings['Generate new app-specific password'] = '新しいアプリ固有の $a->strings['Friendiqa on my Fairphone 2...'] = 'フェアフォン2のFriendiqa ...'; $a->strings['Generate'] = '生成する'; $a->strings['Two-factor authentication successfully disabled.'] = '二要素認証が正常に無効になりました。'; -$a->strings['Wrong Password'] = '間違ったパスワード'; $a->strings['

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

    '] = '

    ログイン時にプロンプトが表示されたら、モバイルデバイスのアプリケーションを使用して二要素認証コードを取得します。

    '; $a->strings['Authenticator app'] = '認証アプリ'; $a->strings['Configured'] = '設定済み'; @@ -2149,23 +1775,29 @@ $a->strings['Export all'] = 'すべてエクスポート'; $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)'] = 'アカウント情報、コンタクト、すべてのアイテムをjsonとしてエクスポートします。非常に大きなファイルになる可能性があり、時間がかかる可能性があります。これを使用して、アカウントの完全バックアップを作成します(写真はエクスポートされません)'; $a->strings['Export Contacts to CSV'] = '連絡先をCSV形式でエクスポート'; $a->strings['Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon.'] = 'フォローしているアカウントのリストをCSVファイルとしてエクスポートします。 マストドンなどに対応します。'; -$a->strings['Bad Request'] = '要求の形式が正しくありません'; -$a->strings['Forbidden'] = '禁止されています'; -$a->strings['Not Found'] = '見つかりません'; -$a->strings['Service Unavailable'] = 'サービスは利用できません'; -$a->strings['The server cannot or will not process the request due to an apparent client error.'] = '明らかなクライアントエラーのため、サーバーは要求を処理できないか、処理しません。'; -$a->strings['Authentication is required and has failed or has not yet been provided.'] = '認証が必要であり、失敗したか、まだ提供されていません。'; -$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->strings['The requested resource could not be found but may be available in the future.'] = '要求されたリソースは見つかりませんでしたが、将来利用可能になる可能性があります。'; -$a->strings['An unexpected condition was encountered and no more specific message is suitable.'] = '予期しない状態が発生したため、適切な特定のメッセージはありません。'; -$a->strings['The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later.'] = 'サーバーは現在使用できません(メンテナンスのために過負荷になっているか、停止しているため)。後でもう一度やり直してください。'; $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->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.'] = 'このデータは通信に必要であり、通信パートナーのノードに渡されてそこに保存されます。ユーザーは、通信パートナーアカウントに送信される可能性のある追加のプライベートデータを入力できます。'; -$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.'] = 'ログインしたユーザーは、いつでもアカウント設定からアカウントデータをエクスポートできます。 ユーザーがアカウントを削除する場合は、 %1$s/removeme で削除できます。 アカウントの削除は取り消しできません。 データの削除は、通信パートナーのノードからも要求されます。'; $a->strings['Privacy Statement'] = 'プライバシーに関する声明'; +$a->strings['The requested item doesn\'t exist or has been deleted.'] = '要求された項目は存在しないか、削除されました。'; +$a->strings['User imports on closed servers can only be done by an administrator.'] = 'クローズドなサーバでのユーザーインポートは、管理者のみが実行できます。'; +$a->strings['Move account'] = 'アカウントの移動'; +$a->strings['You can import an account from another Friendica server.'] = '別のFriendicaサーバーからアカウントをインポートできます。'; +$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.'] = '古いサーバからアカウントをエクスポートして、このサーバにアップロードする必要があります。 アップロード後、このサーバが、すべてのコンタクト・元のアカウントを再作成します。 また、あなたがこのサーバに移転したことを友人にお知らせします。'; +$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'この機能はまだ実験的なものです。 OStatusネットワーク(GNU Social / Statusnet)またはDiasporaからのコンタクトはインポートできません。'; +$a->strings['Account file'] = 'アカウントファイル'; +$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'アカウントをエクスポートするには、「設定」->「個人データのエクスポート」に進み、「アカウントのエクスポート」を選択します'; +$a->strings['Error decoding account file'] = 'アカウントファイルのデコードエラー'; +$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'エラー!ファイルにバージョンデータがありません!これはFriendicaアカウントファイルではなさそうです。'; +$a->strings['User \'%s\' already exists on this server!'] = 'ユーザー \'%s\' はこのサーバーに既に存在します!'; +$a->strings['User creation error'] = 'ユーザ作成エラー'; +$a->strings['%d contact not imported'] = [ + 0 => '%dコンタクトはインポートされませんでした', +]; +$a->strings['User profile creation error'] = 'ユーザープロフィール作成エラー'; +$a->strings['Done. You can now login with your username and password'] = '完了しました。これでであなたのユーザー名とパスワードでログインできます。 '; $a->strings['Welcome to Friendica'] = 'Friendicaへようこそ'; $a->strings['New Member Checklist'] = '新しく参加した人のチェックリスト'; $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.'] = '私たちはあなたの経験を楽しいものにするためのいくつかのヒントとリンクを提供したいと思います。項目をクリックして、関連するページにアクセスします。このページへのリンクは、最初の登録後2週間、ホームページから表示され、その後静かに消えます。'; @@ -2189,21 +1821,64 @@ $a->strings['Go to Your Site\'s Directory'] = 'サイトのディレクトリに $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.'] = 'ディレクトリ ページでは、このネットワークまたは他のフェデレーションサイト内の他のユーザーを検索できます。プロフィールページで接続またはフォローリンクを探します。要求された場合、独自のIdentityアドレスを提供します。'; $a->strings['Finding New People'] = '新しい人を見つける'; $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.'] = 'コンタクトページのサイドパネルには、新しい友達を見つけるためのいくつかのツールがあります。関心ごとに人を照合し、名前または興味ごとに人を検索し、ネットワーク関係に基づいて提案を提供できます。新しいサイトでは、通常24時間以内に友人の提案が表示され始めます。'; -$a->strings['Group Your Contacts'] = 'コンタクトをグループ化する'; -$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.'] = '友達を作成したら、コンタクトページのサイドバーからプライベートな会話グループに整理し、ネットワークページで各グループとプライベートにやり取りできます。'; $a->strings['Why Aren\'t My Posts Public?'] = '投稿が一般に公開されないのはなぜですか?'; $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.'] = 'Friendicaはあなたのプライバシーを尊重します。デフォルトでは、投稿は友達として追加した人にのみ表示されます。詳細については、上記のリンクのヘルプセクションを参照してください。'; $a->strings['Getting Help'] = 'ヘルプを得る'; $a->strings['Go to the Help Section'] = 'ヘルプセクションに移動'; $a->strings['Our help pages may be consulted for detail on other program features and resources.'] = 'プログラムのその他の機能やリソースの詳細については、ヘルプページをご覧ください。'; +$a->strings['%s liked %s\'s post'] = '%sが%sの投稿を高く評価しました'; +$a->strings['%s disliked %s\'s post'] = '%sは%sの投稿を好きではないようです'; +$a->strings['%s is attending %s\'s event'] = '%sは%sのイベントに参加しています'; +$a->strings['%s is not attending %s\'s event'] = '%sは%sのイベントを欠席します'; +$a->strings['%s is now friends with %s'] = '%sは%sと友達になりました'; +$a->strings['%s commented on %s\'s post'] = '%sが%sの投稿にコメントしました'; +$a->strings['%s created a new post'] = '%sが新しい投稿を作成しました'; +$a->strings['Friend Suggestion'] = '友達の提案'; +$a->strings['Friend/Connect Request'] = 'フレンド/接続リクエスト'; +$a->strings['New Follower'] = '新しいフォロワー'; +$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s さんが %2$s に あなたにプライベートメッセージを送りました'; +$a->strings['a private message'] = 'プライベートメッセージ'; +$a->strings['%1$s sent you %2$s.'] = '%1$s があなたに %2$s を送りました'; +$a->strings['Please visit %s to view and/or reply to your private messages.'] = '%s を開いて、プライベートメッセージを確認・返信してください'; +$a->strings['%s commented on an item/conversation you have been following.'] = '%s さんが、あなたがフォローしている項目/会話にコメントしました'; +$a->strings['Please visit %s to view and/or reply to the conversation.'] = ' %s を開いて、コメントを確認・返信してください'; +$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s が %2$s に あなたのプロフィールウォールへ投稿しました'; +$a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s が [url=%2$s]あなたのウォール[/url] に投稿しました'; +$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = '\'%1$s\' から %2$s に 招待が来ています'; +$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = '[url=%1$s]招待[/url] が %2$s から来ています。'; +$a->strings['You may visit their profile at %s'] = '彼らのプロフィールを %s にて開けるかもしれません。'; +$a->strings['Please visit %s to approve or reject the introduction.'] = ' %s を開いて、招待を承諾・拒否してください。'; +$a->strings['%1$s is sharing with you at %2$s'] = '%1$s さんが %2$s にて あなたの投稿を共有しました'; +$a->strings['You have a new follower at %2$s : %1$s'] = '新しいフォロワーです %2$s : %1$s'; +$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = '\'%1$s\' より %2$s に 友達の候補を受け取りました'; +$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = '%3$s から %2$s への [url=%1$s]友達の候補[/url] を受け取りました。'; +$a->strings['Name:'] = '名前:'; +$a->strings['Photo:'] = '写真:'; +$a->strings['Please visit %s to approve or reject the suggestion.'] = '%s を開いて、候補を承諾・拒否してください。'; +$a->strings['%s Connection accepted'] = '%s つながりが承諾されました'; +$a->strings['\'%1$s\' has accepted your connection request at %2$s'] = '\'%1$s\' は %2$s に あなたからのつながりの申込みを承諾しました'; +$a->strings['%2$s has accepted your [url=%1$s]connection request[/url].'] = '%2$s は あなたからの [url=%1$s]つながりの申し込み[/url] を承諾しました。'; +$a->strings['You are now mutual friends and may exchange status updates, photos, and email without restriction.'] = 'あなたたちは友達になりました。ステータスの更新、写真、メールを制限なくやりとりできます。'; +$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'このつながりを変更する場合は %s を開いてください。'; +$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\' はあなたをファンとして受け入れました。プライベートメッセージやプロフィール インタラクションなど、一部のやりとりは制限されています。 有名人またはコミュニティページの場合、これらの設定は自動的に適用されます。'; +$a->strings['\'%1$s\' may choose to extend this into a two-way or more permissive relationship in the future.'] = '\'%1$s\' は後日、これを双方向・より寛容な関係へと拡張する場合があります。'; +$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'このつながりを変更する場合は %s を開いてください。'; +$a->strings['registration request'] = '登録リクエスト'; +$a->strings['You\'ve received a registration request from \'%1$s\' at %2$s'] = '\'%1$s\' より %2$s に 登録リクエストを受け取りました'; +$a->strings['You\'ve received a [url=%1$s]registration request[/url] from %2$s.'] = '[url=%1$s]登録リクエスト[/url] が %2$s から来ています。'; +$a->strings['Full Name: %s +Site Location: %s +Login Name: %s (%s)'] = 'フルネーム: %s +サイト: %s +ログイン名: %s (%s)'; +$a->strings['Please visit %s to approve or reject the request.'] = '%s を開いて、リクエストを承諾・拒否してください。'; $a->strings['This message was sent to you by %s, a member of the Friendica social network.'] = 'このメッセージは、Friendicaソーシャルネットワークのメンバーである%sから送信されました。'; $a->strings['You may visit them online at %s'] = 'あなたは%sでそれらをオンラインで訪れることができます'; $a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'これらのメッセージを受信したくない場合は、この投稿に返信して送信者に連絡してください。'; $a->strings['%s posted an update.'] = '%sが更新を投稿しました。'; -$a->strings['This entry was edited'] = 'このエントリは編集されました'; $a->strings['Private Message'] = '自分のみ'; +$a->strings['This entry was edited'] = 'このエントリは編集されました'; $a->strings['Edit'] = '編集'; -$a->strings['Pinned item'] = 'ピン留め項目'; $a->strings['Delete globally'] = 'グローバルに削除'; $a->strings['Remove locally'] = 'ローカルで削除'; $a->strings['Save to folder'] = 'フォルダーに保存'; @@ -2229,27 +1904,10 @@ $a->strings['%d comment'] = [ ]; $a->strings['Show more'] = 'もっと見せる'; $a->strings['Show fewer'] = '表示を減らす'; -$a->strings['Attachments:'] = '添付ファイル:'; $a->strings['%s is now following %s.'] = '%sは現在 %s をフォローしています。'; $a->strings['following'] = 'フォローしている'; $a->strings['%s stopped following %s.'] = '%s は %s のフォローを解除しました'; $a->strings['stopped following'] = 'フォローを解除しました'; -$a->strings['Hometown:'] = '出身地:'; -$a->strings['Sexual Preference:'] = '性的嗜好:'; -$a->strings['Political Views:'] = '政見:'; -$a->strings['Religious Views:'] = '宗教的見解:'; -$a->strings['Likes:'] = '好きなもの:'; -$a->strings['Dislikes:'] = '嫌いなもの:'; -$a->strings['Title/Description:'] = 'タイトル説明:'; -$a->strings['Musical interests'] = '音楽的興味'; -$a->strings['Books, literature'] = '本、文学'; -$a->strings['Television'] = 'テレビ'; -$a->strings['Film/dance/culture/entertainment'] = '映画/ダンス/文化/エンターテイメント'; -$a->strings['Hobbies/Interests'] = '趣味/興味'; -$a->strings['Love/romance'] = '愛/ロマンス'; -$a->strings['Work/employment'] = '仕事/雇用'; -$a->strings['School/education'] = '学校教育'; -$a->strings['Contact information and Social Networks'] = 'コンタクト情報とソーシャルネットワーク'; $a->strings['Login failed.'] = 'ログインに失敗しました。'; $a->strings['Login failed. Please check your credentials.'] = 'ログインに失敗しました。認証情報を確かめてください。'; $a->strings['Welcome %s'] = 'ようこそ%s'; diff --git a/view/lang/nl/messages.po b/view/lang/nl/messages.po index d9fb6a6d6..6ecf03a3b 100644 --- a/view/lang/nl/messages.po +++ b/view/lang/nl/messages.po @@ -1,5 +1,5 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: @@ -9,1440 +9,89 @@ # Gert Cauwenberg , 2013 # Gert Cauwenberg , 2013 # Jeroen De Meerleer , 2018-2019 -# jeroenpraat, 2012-2014 -# jeroenpraat, 2012 +# 0019cac9045ba5ad44f6e8f0d6edc0ee_372278a, 2012-2014 +# 0019cac9045ba5ad44f6e8f0d6edc0ee_372278a, 2012 # Karel , 2018 # Karel , 2015-2016,2018 # Pascal , 2018 # Pascal , 2018 -# Ralph , 2015 +# ralph van der honing , 2015 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-09-04 14:10+0200\n" -"PO-Revision-Date: 2020-09-05 00:18+0000\n" -"Last-Translator: Transifex Bot <>\n" -"Language-Team: Dutch (http://www.transifex.com/Friendica/friendica/language/nl/)\n" +"POT-Creation-Date: 2023-09-18 05:30+0000\n" +"PO-Revision-Date: 2011-05-05 10:19+0000\n" +"Last-Translator: Casper , 2019-2020\n" +"Language-Team: Dutch (http://app.transifex.com/Friendica/friendica/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: 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] "De dagelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard." -msgstr[1] "De dagelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard." - -#: 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] "De wekelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard." -msgstr[1] "De wekelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard." - -#: include/api.php:1155 -#, php-format -msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "De maandelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard." - -#: include/api.php:4452 mod/photos.php:105 mod/photos.php:196 -#: mod/photos.php:633 mod/photos.php:1053 mod/photos.php:1070 -#: mod/photos.php:1580 src/Model/User.php:999 src/Model/User.php:1007 -#: src/Model/User.php:1015 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 -msgid "Profile Photos" -msgstr "Profielfoto's" - -#: include/conversation.php:189 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s porde %2$s aan" - -#: include/conversation.php:221 src/Model/Item.php:3375 -msgid "event" -msgstr "gebeurtenis" - -#: include/conversation.php:224 include/conversation.php:233 mod/tagger.php:89 -msgid "status" -msgstr "status" - -#: include/conversation.php:229 mod/tagger.php:89 src/Model/Item.php:3377 -msgid "photo" -msgstr "foto" - -#: include/conversation.php:243 mod/tagger.php:122 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s labelde %3$s van %2$s met %4$s" - -#: include/conversation.php:562 mod/photos.php:1473 src/Object/Post.php:227 -msgid "Select" -msgstr "Kies" - -#: include/conversation.php:563 mod/photos.php:1474 mod/settings.php:560 -#: mod/settings.php:702 src/Module/Admin/Users.php:253 -#: src/Module/Contact.php:854 src/Module/Contact.php:1157 -msgid "Delete" -msgstr "Verwijder" - -#: include/conversation.php:597 src/Object/Post.php:442 -#: src/Object/Post.php:443 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Bekijk het profiel van %s @ %s" - -#: include/conversation.php:610 src/Object/Post.php:430 -msgid "Categories:" -msgstr "Categorieën:" - -#: include/conversation.php:611 src/Object/Post.php:431 -msgid "Filed under:" -msgstr "Bewaard onder:" - -#: include/conversation.php:618 src/Object/Post.php:456 -#, php-format -msgid "%s from %s" -msgstr "%s van %s" - -#: include/conversation.php:633 -msgid "View in context" -msgstr "In context bekijken" - -#: include/conversation.php:635 include/conversation.php:1191 -#: mod/editpost.php:104 mod/photos.php:1378 mod/wallmessage.php:155 -#: mod/message.php:235 mod/message.php:406 src/Module/Item/Compose.php:159 -#: src/Object/Post.php:488 -msgid "Please wait" -msgstr "Even geduld" - -#: include/conversation.php:699 -msgid "remove" -msgstr "verwijder" - -#: include/conversation.php:703 -msgid "Delete Selected Items" -msgstr "Geselecteerde items verwijderen" - -#: include/conversation.php:729 include/conversation.php:1057 -#: include/conversation.php:1100 -#, php-format -msgid "%s reshared this." -msgstr "%s heeft dit gedeeld" - -#: include/conversation.php:736 -#, php-format -msgid "%s commented on this." -msgstr "%s hebben hierop gereageerd." - -#: include/conversation.php:742 -msgid "Tagged" -msgstr "" - -#: include/conversation.php:899 view/theme/frio/theme.php:321 -msgid "Follow Thread" -msgstr "Gesprek volgen" - -#: include/conversation.php:900 src/Model/Contact.php:965 -msgid "View Status" -msgstr "Bekijk status" - -#: include/conversation.php:901 include/conversation.php:919 -#: src/Model/Contact.php:891 src/Model/Contact.php:957 -#: src/Model/Contact.php:966 src/Module/Settings/Profile/Index.php:240 -#: src/Module/Directory.php:166 -msgid "View Profile" -msgstr "Bekijk profiel" - -#: include/conversation.php:902 src/Model/Contact.php:967 -msgid "View Photos" -msgstr "Bekijk foto's" - -#: include/conversation.php:903 src/Model/Contact.php:958 -#: src/Model/Contact.php:968 -msgid "Network Posts" -msgstr "Netwerkberichten" - -#: include/conversation.php:904 src/Model/Contact.php:959 -#: src/Model/Contact.php:969 -msgid "View Contact" -msgstr "Bekijk contact" - -#: include/conversation.php:905 src/Model/Contact.php:971 -msgid "Send PM" -msgstr "Stuur een privébericht" - -#: include/conversation.php:906 src/Module/Admin/Blocklist/Contact.php:84 -#: src/Module/Admin/Users.php:254 src/Module/Contact.php:605 -#: src/Module/Contact.php:851 src/Module/Contact.php:1132 -msgid "Block" -msgstr "Blokkeren" - -#: include/conversation.php:907 src/Module/Notifications/Notification.php:59 -#: src/Module/Notifications/Introductions.php:110 -#: src/Module/Notifications/Introductions.php:185 src/Module/Contact.php:606 -#: src/Module/Contact.php:852 src/Module/Contact.php:1140 -msgid "Ignore" -msgstr "Negeren" - -#: include/conversation.php:911 src/Model/Contact.php:972 -msgid "Poke" -msgstr "Porren" - -#: include/conversation.php:916 mod/follow.php:163 -#: view/theme/vier/theme.php:171 src/Content/Widget.php:79 -#: src/Model/Contact.php:960 src/Model/Contact.php:973 -msgid "Connect/Follow" -msgstr "Verbind/Volg" - -#: include/conversation.php:1042 -#, php-format -msgid "%s likes this." -msgstr "%s vindt dit leuk." - -#: include/conversation.php:1045 -#, php-format -msgid "%s doesn't like this." -msgstr "%s vindt dit niet leuk." - -#: include/conversation.php:1048 -#, php-format -msgid "%s attends." -msgstr "%s neemt deel" - -#: include/conversation.php:1051 -#, php-format -msgid "%s doesn't attend." -msgstr "%s neemt niet deel" - -#: include/conversation.php:1054 -#, php-format -msgid "%s attends maybe." -msgstr "%s neemt misschien deel" - -#: include/conversation.php:1065 -msgid "and" -msgstr "en" - -#: include/conversation.php:1071 -#, php-format -msgid "and %d other people" -msgstr "en %d anderen" - -#: include/conversation.php:1079 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d mensen vinden dit leuk" - -#: include/conversation.php:1080 -#, php-format -msgid "%s like this." -msgstr "%s vinden dit leuk." - -#: include/conversation.php:1083 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d people vinden dit niet leuk" - -#: include/conversation.php:1084 -#, php-format -msgid "%s don't like this." -msgstr "%s vinden dit niet leuk." - -#: include/conversation.php:1087 -#, php-format -msgid "%2$d people attend" -msgstr "%2$d mensen nemen deel" - -#: include/conversation.php:1088 -#, php-format -msgid "%s attend." -msgstr "%s nemen deel." - -#: include/conversation.php:1091 -#, php-format -msgid "%2$d people don't attend" -msgstr "%2$d mensen nemen niet deel" - -#: include/conversation.php:1092 -#, php-format -msgid "%s don't attend." -msgstr "%s nemen niet deel." - -#: include/conversation.php:1095 -#, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d mensen nemen misschien deel" - -#: include/conversation.php:1096 -#, php-format -msgid "%s attend maybe." -msgstr "%s neemt misschien deel." - -#: include/conversation.php:1099 -#, php-format -msgid "%2$d people reshared this" -msgstr "%2$d mensen hebben dit gedeeld" - -#: include/conversation.php:1129 -msgid "Visible to everybody" -msgstr "Zichtbaar voor iedereen" - -#: include/conversation.php:1130 src/Module/Item/Compose.php:153 -#: src/Object/Post.php:959 -msgid "Please enter a image/video/audio/webpage URL:" -msgstr "Geef een afbeelding/video/audio/webpagina in:" - -#: include/conversation.php:1131 -msgid "Tag term:" -msgstr "Label:" - -#: include/conversation.php:1132 src/Module/Filer/SaveTag.php:65 -msgid "Save to Folder:" -msgstr "Bewaren in map:" - -#: include/conversation.php:1133 -msgid "Where are you right now?" -msgstr "Waar ben je nu?" - -#: include/conversation.php:1134 -msgid "Delete item(s)?" -msgstr "Item(s) verwijderen?" - -#: include/conversation.php:1166 -msgid "New Post" -msgstr "Nieuw bericht" - -#: include/conversation.php:1169 -msgid "Share" -msgstr "Delen" - -#: include/conversation.php:1170 mod/editpost.php:89 mod/photos.php:1397 -#: src/Module/Contact/Poke.php:155 src/Object/Post.php:950 -msgid "Loading..." -msgstr "Aan het laden..." - -#: include/conversation.php:1171 mod/editpost.php:90 mod/wallmessage.php:153 -#: mod/message.php:233 mod/message.php:403 -msgid "Upload photo" -msgstr "Foto uploaden" - -#: include/conversation.php:1172 mod/editpost.php:91 -msgid "upload photo" -msgstr "Foto uploaden" - -#: include/conversation.php:1173 mod/editpost.php:92 -msgid "Attach file" -msgstr "Bestand bijvoegen" - -#: include/conversation.php:1174 mod/editpost.php:93 -msgid "attach file" -msgstr "bestand bijvoegen" - -#: include/conversation.php:1175 src/Module/Item/Compose.php:145 -#: src/Object/Post.php:951 -msgid "Bold" -msgstr "Vet" - -#: include/conversation.php:1176 src/Module/Item/Compose.php:146 -#: src/Object/Post.php:952 -msgid "Italic" -msgstr "Cursief" - -#: include/conversation.php:1177 src/Module/Item/Compose.php:147 -#: src/Object/Post.php:953 -msgid "Underline" -msgstr "Onderstrepen" - -#: include/conversation.php:1178 src/Module/Item/Compose.php:148 -#: src/Object/Post.php:954 -msgid "Quote" -msgstr "Citeren" - -#: include/conversation.php:1179 src/Module/Item/Compose.php:149 -#: src/Object/Post.php:955 -msgid "Code" -msgstr "Broncode" - -#: include/conversation.php:1180 src/Module/Item/Compose.php:150 -#: src/Object/Post.php:956 -msgid "Image" -msgstr "Afbeelding" - -#: include/conversation.php:1181 src/Module/Item/Compose.php:151 -#: src/Object/Post.php:957 -msgid "Link" -msgstr "Link" - -#: include/conversation.php:1182 src/Module/Item/Compose.php:152 -#: src/Object/Post.php:958 -msgid "Link or Media" -msgstr "Link of media" - -#: include/conversation.php:1183 mod/editpost.php:100 -#: src/Module/Item/Compose.php:155 -msgid "Set your location" -msgstr "Stel je locatie in" - -#: include/conversation.php:1184 mod/editpost.php:101 -msgid "set location" -msgstr "Stel uw locatie in" - -#: include/conversation.php:1185 mod/editpost.php:102 -msgid "Clear browser location" -msgstr "Verwijder locatie uit uw webbrowser" - -#: include/conversation.php:1186 mod/editpost.php:103 -msgid "clear location" -msgstr "Verwijder locatie uit uw webbrowser" - -#: include/conversation.php:1188 mod/editpost.php:117 -#: src/Module/Item/Compose.php:160 -msgid "Set title" -msgstr "Titel plaatsen" - -#: include/conversation.php:1190 mod/editpost.php:119 -#: src/Module/Item/Compose.php:161 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (komma-gescheiden lijst)" - -#: include/conversation.php:1192 mod/editpost.php:105 -msgid "Permission settings" -msgstr "Instellingen van rechten" - -#: include/conversation.php:1193 mod/editpost.php:134 -msgid "permissions" -msgstr "rechten" - -#: include/conversation.php:1202 mod/editpost.php:114 -msgid "Public post" -msgstr "Openbare post" - -#: include/conversation.php:1206 mod/editpost.php:125 mod/events.php:570 -#: mod/photos.php:1396 mod/photos.php:1443 mod/photos.php:1506 -#: src/Module/Item/Compose.php:154 src/Object/Post.php:960 -msgid "Preview" -msgstr "Voorvertoning" - -#: include/conversation.php:1210 mod/dfrn_request.php:648 mod/editpost.php:128 -#: mod/fbrowser.php:105 mod/fbrowser.php:134 mod/follow.php:169 -#: mod/item.php:928 mod/photos.php:1047 mod/photos.php:1154 mod/tagrm.php:36 -#: mod/tagrm.php:126 mod/unfollow.php:137 mod/settings.php:500 -#: mod/settings.php:526 mod/message.php:165 src/Module/RemoteFollow.php:110 -#: src/Module/Contact.php:461 -msgid "Cancel" -msgstr "Annuleren" - -#: include/conversation.php:1215 -msgid "Post to Groups" -msgstr "Verzenden naar Groepen" - -#: include/conversation.php:1216 -msgid "Post to Contacts" -msgstr "Verzenden naar Contacten" - -#: include/conversation.php:1217 -msgid "Private post" -msgstr "Privé verzending" - -#: include/conversation.php:1222 mod/editpost.php:132 -#: src/Model/Profile.php:454 src/Module/Contact.php:336 -msgid "Message" -msgstr "Bericht" - -#: include/conversation.php:1223 mod/editpost.php:133 -msgid "Browser" -msgstr "Browser" - -#: include/conversation.php:1225 mod/editpost.php:136 -msgid "Open Compose page" -msgstr "Open de opstelpagina" - -#: include/enotify.php:50 -msgid "[Friendica:Notify]" -msgstr "" - -#: include/enotify.php:140 -#, php-format -msgid "%s New mail received at %s" -msgstr "%s Nieuw bericht ontvangen op %s" - -#: include/enotify.php:142 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s sent you a new private message at %2$s." - -#: include/enotify.php:143 -msgid "a private message" -msgstr "een prive bericht" - -#: include/enotify.php:143 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s stuurde jou %2$s." - -#: include/enotify.php:145 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden." - -#: include/enotify.php:189 -#, php-format -msgid "%1$s replied to you on %2$s's %3$s %4$s" -msgstr "%1$s reageerde op jou op %2$s's %3$s %4$s" - -#: include/enotify.php:191 -#, php-format -msgid "%1$s tagged you on %2$s's %3$s %4$s" -msgstr "%1$s heeft jou getagd op %2$s's %3$s %4$s" - -#: include/enotify.php:193 -#, php-format -msgid "%1$s commented on %2$s's %3$s %4$s" -msgstr "%1$s heeft een opmerking geplaatst op %2$s's %3$s %4$s" - -#: include/enotify.php:203 -#, php-format -msgid "%1$s replied to you on your %2$s %3$s" -msgstr "%1$s reageerde op jou op je %2$s %3$s" - -#: include/enotify.php:205 -#, php-format -msgid "%1$s tagged you on your %2$s %3$s" -msgstr "%1$s heeft je getagd op je %2$s %3$s" - -#: include/enotify.php:207 -#, php-format -msgid "%1$s commented on your %2$s %3$s" -msgstr "%1$s heeft een opmerking geplaatst op jou %2$s %3$s" - -#: include/enotify.php:214 -#, php-format -msgid "%1$s replied to you on their %2$s %3$s" -msgstr "%1$s reageerde op jou op hun %2$s %3$s" - -#: include/enotify.php:216 -#, php-format -msgid "%1$s tagged you on their %2$s %3$s" -msgstr "%1$s heeft je getagd op hun %2$s %3$s" - -#: include/enotify.php:218 -#, php-format -msgid "%1$s commented on their %2$s %3$s" -msgstr "%1$s heeft een opmering geschreven op hun %2$s %3$s" - -#: include/enotify.php:229 -#, php-format -msgid "%s %s tagged you" -msgstr "%s %s heeft jou getagged" - -#: include/enotify.php:231 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s heeft jou in %2$s genoemd" - -#: include/enotify.php:233 -#, php-format -msgid "%1$s Comment to conversation #%2$d by %3$s" -msgstr "%1$s Opmerking bij conversatie #%2$d door %3$s" - -#: include/enotify.php:235 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s gaf een reactie op een bericht/gesprek die jij volgt." - -#: include/enotify.php:240 include/enotify.php:255 include/enotify.php:280 -#: include/enotify.php:299 include/enotify.php:315 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Bezoek %s om het gesprek te bekijken en/of te beantwoorden." - -#: include/enotify.php:247 -#, php-format -msgid "%s %s posted to your profile wall" -msgstr "%s %s heeft op je profiel wall gepost" - -#: include/enotify.php:249 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$splaatste een bericht op je tijdlijn op %2$s" - -#: include/enotify.php:250 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s schreef op [url=%2$s]jouw tijdlijn[/url]" - -#: include/enotify.php:263 -#, php-format -msgid "%s %s shared a new post" -msgstr "%s %s deelde een nieuwe post" - -#: include/enotify.php:265 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s deelde een nieuw bericht op %2$s" - -#: include/enotify.php:266 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]deelde een bericht[/url]." - -#: include/enotify.php:271 -#, php-format -msgid "%s %s shared a post from %s" -msgstr "%s %s hebben een post gedeeld van %s" - -#: include/enotify.php:273 -#, php-format -msgid "%1$s shared a post from %2$s at %3$s" -msgstr "%1$s hebben een post gedeeld van %2$s op %3$s" - -#: include/enotify.php:274 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url] from %3$s." -msgstr "%1$s [url=%2$s]deelde een post[/url] van %3$s." - -#: include/enotify.php:287 -#, php-format -msgid "%1$s %2$s poked you" -msgstr "%1$s %2$s heeft je gepoked" - -#: include/enotify.php:289 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s heeft jou gepord op %2$s" - -#: include/enotify.php:290 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]porde jou[/url]" - -#: include/enotify.php:307 -#, php-format -msgid "%s %s tagged your post" -msgstr "%s %s heeft je post getagged" - -#: include/enotify.php:309 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s heeft jouw bericht gelabeld in %2$s" - -#: include/enotify.php:310 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s labelde [url=%2$s]jouw bericht[/url]" - -#: include/enotify.php:322 -#, php-format -msgid "%s Introduction received" -msgstr "%s Introductie ontvangen" - -#: include/enotify.php:324 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s" - -#: include/enotify.php:325 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s." - -#: include/enotify.php:330 include/enotify.php:376 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Je kunt hun profiel bezoeken op %s" - -#: include/enotify.php:332 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Bezoek %s om het verzoek goed of af te keuren." - -#: include/enotify.php:339 -#, php-format -msgid "%s A new person is sharing with you" -msgstr "%s Een nieuwe persoon deelt met je" - -#: include/enotify.php:341 include/enotify.php:342 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "%1$s deelt met jou in %2$s" - -#: include/enotify.php:349 -#, php-format -msgid "%s You have a new follower" -msgstr "%s Je hebt een nieuwe volger" - -#: include/enotify.php:351 include/enotify.php:352 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "Je hebt een nieuwe volger op %2$s: %1$s" - -#: include/enotify.php:365 -#, php-format -msgid "%s Friend suggestion received" -msgstr "%s Vriend suggestie ontvangen" - -#: include/enotify.php:367 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Je kreeg een vriendschapssuggestie van '%1$s' op %2$s" - -#: include/enotify.php:368 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Je kreeg een [url=%1$s]vriendschapssuggestie[/url] voor %2$s op %3$s." - -#: include/enotify.php:374 -msgid "Name:" -msgstr "Naam:" - -#: include/enotify.php:375 -msgid "Photo:" -msgstr "Foto: " - -#: include/enotify.php:378 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bezoek %s om de suggestie goed of af te keuren." - -#: include/enotify.php:386 include/enotify.php:401 -#, php-format -msgid "%s Connection accepted" -msgstr "%s Verbinding geaccepteerd" - -#: include/enotify.php:388 include/enotify.php:403 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "'%1$s' aanvaarde je contactaanvraag op %2$s" - -#: include/enotify.php:389 include/enotify.php:404 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "%2$saanvaardde jouw [url=%1$s]contactaanvraag[/url]." - -#: include/enotify.php:394 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and " -"email without restriction." -msgstr "Jullie zijn nu in contact met elkaar en kunnen statusberichten, foto's en email delen zonder beperkingen." - -#: include/enotify.php:396 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Bezoek alstublieft %s als je deze relatie wil wijzigen." - -#: include/enotify.php:409 -#, php-format -msgid "" -"'%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." -msgstr "'%1$s' koos om je te accepteren als fan, wat sommige communicatievormen beperkt - zoals privéberichten en sommige profielfuncties. Als dit een beroemdheid- of groepspagina is, werd dit automatisch toegepast." - -#: include/enotify.php:411 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future." -msgstr "'%1$s' kan er later voor kiezen om deze beperkingen aan te passen." - -#: include/enotify.php:413 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Bezoek %s wanneer je deze relatie wil wijzigen." - -#: include/enotify.php:423 mod/removeme.php:63 -msgid "[Friendica System Notify]" -msgstr "[Friendica systeem notificatie]" - -#: include/enotify.php:423 -msgid "registration request" -msgstr "registratie verzoek" - -#: include/enotify.php:425 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "Je kreeg een registratieaanvraag van '%1$s' op %2$s" - -#: include/enotify.php:426 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "Je kreeg een [url=%1$s]registratieaanvraag[/url] van %2$s." - -#: include/enotify.php:431 -#, php-format -msgid "" -"Full Name:\t%s\n" -"Site Location:\t%s\n" -"Login Name:\t%s (%s)" -msgstr "Volledige naam:\t%s\nAdres van de site:\t%s\nLoginnaam:\t%s (%s)" - -#: include/enotify.php:437 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Bezoek %s om de aanvraag goed of af te keuren." - -#: mod/removeme.php:63 -msgid "User deleted their account" -msgstr "Gebruiker verwijderde zijn of haar account" - -#: mod/removeme.php:64 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "Een gebruiker heeft zijn of haar account verwijderd op je Friendica node. Zorg er zeker voor dat zijn of haar data verwijderd is uit de backups." - -#: mod/removeme.php:65 -#, php-format -msgid "The user id is %d" -msgstr "De gebruikers id is %d" - -#: mod/removeme.php:99 mod/removeme.php:102 -msgid "Remove My Account" -msgstr "Verwijder mijn account" - -#: mod/removeme.php:100 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is." - -#: mod/removeme.php:101 -msgid "Please enter your password for verification:" -msgstr "Voer je wachtwoord in voor verificatie:" - -#: mod/api.php:50 mod/api.php:55 mod/dfrn_confirm.php:78 mod/editpost.php:38 -#: mod/events.php:228 mod/follow.php:76 mod/follow.php:152 mod/item.php:189 -#: mod/item.php:194 mod/item.php:973 mod/network.php:47 mod/notes.php:43 -#: mod/ostatus_subscribe.php:30 mod/photos.php:178 mod/photos.php:929 -#: mod/repair_ostatus.php:31 mod/suggest.php:34 mod/uimport.php:32 -#: mod/unfollow.php:37 mod/unfollow.php:91 mod/unfollow.php:123 -#: 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 mod/settings.php:47 -#: mod/settings.php:65 mod/settings.php:489 mod/message.php:70 -#: mod/message.php:113 src/Module/Profile/Common.php:57 -#: src/Module/Profile/Contacts.php:57 src/Module/Search/Directory.php:38 -#: 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/Settings/Display.php:42 src/Module/Settings/Display.php:116 -#: src/Module/Contact/Advanced.php:43 -#: src/Module/Notifications/Notification.php:47 -#: src/Module/Notifications/Notification.php:76 src/Module/Attach.php:56 -#: src/Module/BaseApi.php:59 src/Module/BaseApi.php:65 -#: src/Module/BaseNotifications.php:88 src/Module/Delegation.php:118 -#: src/Module/FriendSuggest.php:44 src/Module/Register.php:62 -#: src/Module/Register.php:75 src/Module/Register.php:195 -#: src/Module/Register.php:234 src/Module/FollowConfirm.php:16 -#: src/Module/Group.php:45 src/Module/Group.php:90 src/Module/Invite.php:40 -#: src/Module/Invite.php:128 src/Module/Contact.php:375 -msgid "Permission denied." -msgstr "Toegang geweigerd" - -#: mod/api.php:100 mod/api.php:122 -msgid "Authorize application connection" -msgstr "Verbinding met de applicatie goedkeuren" - -#: mod/api.php:101 -msgid "Return to your app and insert this Securty Code:" -msgstr "Keer terug naar jouw app en voeg deze beveiligingscode in:" - -#: mod/api.php:110 src/Module/BaseAdmin.php:73 -msgid "Please login to continue." -msgstr "Log in om verder te gaan." - -#: mod/api.php:124 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?" - -#: mod/api.php:125 mod/item.php:925 mod/message.php:162 -#: src/Module/Notifications/Introductions.php:119 src/Module/Register.php:115 -#: src/Module/Contact.php:458 -msgid "Yes" -msgstr "Ja" - -#: mod/api.php:126 src/Module/Notifications/Introductions.php:119 -#: src/Module/Register.php:116 -msgid "No" -msgstr "Nee" - -#: mod/cal.php:47 mod/cal.php:51 mod/follow.php:37 mod/redir.php:34 -#: mod/redir.php:203 src/Module/Debug/ItemBody.php:37 -#: src/Module/Diaspora/Receive.php:51 src/Module/Item/Ignore.php:41 -#: src/Module/Conversation/Community.php:145 -msgid "Access denied." -msgstr "Toegang geweigerd" - -#: mod/cal.php:74 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:54 -#: src/Module/Register.php:260 src/Module/HoverCard.php:53 -msgid "User not found." -msgstr "Gebruiker niet gevonden." - -#: mod/cal.php:142 mod/display.php:282 src/Module/Profile/Profile.php:94 -#: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:105 -#: src/Module/Update/Profile.php:55 -msgid "Access to this profile has been restricted." -msgstr "Toegang tot dit profiel is beperkt." - -#: mod/cal.php:273 mod/events.php:414 view/theme/frio/theme.php:229 -#: view/theme/frio/theme.php:233 src/Content/Nav.php:181 -#: src/Content/Nav.php:248 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:99 -msgid "Events" -msgstr "Gebeurtenissen" - -#: mod/cal.php:274 mod/events.php:415 -msgid "View" -msgstr "Beeld" - -#: mod/cal.php:275 mod/events.php:417 -msgid "Previous" -msgstr "Vorige" - -#: mod/cal.php:276 mod/events.php:418 src/Module/Install.php:192 -msgid "Next" -msgstr "Volgende" - -#: mod/cal.php:279 mod/events.php:423 src/Model/Event.php:445 -msgid "today" -msgstr "vandaag" - -#: mod/cal.php:280 mod/events.php:424 src/Util/Temporal.php:330 -#: src/Model/Event.php:446 -msgid "month" -msgstr "maand" - -#: mod/cal.php:281 mod/events.php:425 src/Util/Temporal.php:331 -#: src/Model/Event.php:447 -msgid "week" -msgstr "week" - -#: mod/cal.php:282 mod/events.php:426 src/Util/Temporal.php:332 -#: src/Model/Event.php:448 -msgid "day" -msgstr "dag" - -#: mod/cal.php:283 mod/events.php:427 -msgid "list" -msgstr "lijst" - -#: mod/cal.php:296 src/Model/User.php:561 src/Module/Admin/Users.php:112 -#: src/Module/Api/Twitter/ContactEndpoint.php:73 src/Console/User.php:152 -#: src/Console/User.php:250 src/Console/User.php:283 src/Console/User.php:309 -msgid "User not found" -msgstr "Gebruiker niet gevonden" - -#: mod/cal.php:305 -msgid "This calendar format is not supported" -msgstr "Dit kalender formaat is niet ondersteund" - -#: mod/cal.php:307 -msgid "No exportable data found" -msgstr "Geen exporteerbare data gevonden" - -#: mod/cal.php:324 -msgid "calendar" -msgstr "kalender" - -#: mod/dfrn_confirm.php:84 src/Module/Profile/Profile.php:82 -msgid "Profile not found." -msgstr "Profiel niet gevonden" - -#: mod/dfrn_confirm.php:139 mod/redir.php:56 mod/redir.php:157 -#: src/Module/Contact/Advanced.php:53 src/Module/Contact/Advanced.php:106 -#: src/Module/Contact/Contacts.php:33 src/Module/FriendSuggest.php:54 -#: src/Module/FriendSuggest.php:93 src/Module/Group.php:105 -msgid "Contact not found." -msgstr "Contact niet gevonden" - -#: mod/dfrn_confirm.php:140 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd." - -#: mod/dfrn_confirm.php:241 -msgid "Response from remote site was not understood." -msgstr "Antwoord van de website op afstand werd niet begrepen." - -#: mod/dfrn_confirm.php:248 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Onverwacht antwoord van website op afstand:" - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Bevestiging werd correct voltooid." - -#: mod/dfrn_confirm.php:275 -msgid "Temporary failure. Please wait and try again." -msgstr "Tijdelijke fout. Wacht even en probeer opnieuw." - -#: mod/dfrn_confirm.php:278 -msgid "Introduction failed or was revoked." -msgstr "Verzoek mislukt of herroepen." - -#: mod/dfrn_confirm.php:283 -msgid "Remote site reported: " -msgstr "Website op afstand berichtte: " - -#: mod/dfrn_confirm.php:388 -#, php-format -msgid "No user record found for '%s' " -msgstr "Geen gebruiker gevonden voor '%s'" - -#: mod/dfrn_confirm.php:398 -msgid "Our site encryption key is apparently messed up." -msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd." - -#: mod/dfrn_confirm.php:409 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons." - -#: mod/dfrn_confirm.php:425 -msgid "Contact record was not found for you on our site." -msgstr "We vonden op onze webstek geen contactrecord voor jou." - -#: mod/dfrn_confirm.php:439 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s." - -#: 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 "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken." - -#: mod/dfrn_confirm.php:466 -msgid "Unable to set your contact credentials on our system." -msgstr "Niet in staat om op dit systeem je contactreferenties in te stellen." - -#: mod/dfrn_confirm.php:522 -msgid "Unable to update your contact profile details on our system" -msgstr "Kan je contact profiel details op ons systeem niet aanpassen" - -#: mod/dfrn_confirm.php:552 mod/dfrn_request.php:569 -#: src/Model/Contact.php:2392 -msgid "[Name Withheld]" -msgstr "[Naam achtergehouden]" - -#: mod/dfrn_poll.php:135 mod/dfrn_poll.php:506 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s heet %2$s van harte welkom" - -#: mod/dfrn_request.php:113 -msgid "This introduction has already been accepted." -msgstr "Verzoek is al goedgekeurd" - -#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profiel is ongeldig of bevat geen informatie" - -#: mod/dfrn_request.php:135 mod/dfrn_request.php:373 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar." - -#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 -msgid "Warning: profile location has no profile photo." -msgstr "Waarschuwing: Profieladres heeft geen profielfoto." - -#: 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] "De %d vereiste parameter is niet op het gegeven adres gevonden" -msgstr[1] "De %d vereiste parameters zijn niet op het gegeven adres gevonden" - -#: mod/dfrn_request.php:180 -msgid "Introduction complete." -msgstr "Verzoek voltooid." - -#: mod/dfrn_request.php:216 -msgid "Unrecoverable protocol error." -msgstr "Onherstelbare protocolfout. " - -#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:54 -msgid "Profile unavailable." -msgstr "Profiel onbeschikbaar" - -#: mod/dfrn_request.php:264 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s heeft te veel verzoeken gehad vandaag." - -#: mod/dfrn_request.php:265 -msgid "Spam protection measures have been invoked." -msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden." - -#: mod/dfrn_request.php:266 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Wij adviseren vrienden om het over 24 uur nog een keer te proberen." - -#: mod/dfrn_request.php:290 src/Module/RemoteFollow.php:60 -msgid "Invalid locator" -msgstr "Ongeldige plaatsbepaler" - -#: mod/dfrn_request.php:326 -msgid "You have already introduced yourself here." -msgstr "Je hebt jezelf hier al voorgesteld." - -#: mod/dfrn_request.php:329 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Blijkbaar ben je al bevriend met %s." - -#: mod/dfrn_request.php:349 -msgid "Invalid profile URL." -msgstr "Ongeldig profiel adres." - -#: mod/dfrn_request.php:355 src/Model/Contact.php:2017 -msgid "Disallowed profile URL." -msgstr "Niet toegelaten profiel adres." - -#: mod/dfrn_request.php:361 src/Model/Contact.php:2022 -#: src/Module/Friendica.php:79 -msgid "Blocked domain" -msgstr "Domein geblokeerd" - -#: mod/dfrn_request.php:428 src/Module/Contact.php:154 -msgid "Failed to update contact record." -msgstr "Ik kon de contactgegevens niet aanpassen." - -#: mod/dfrn_request.php:448 -msgid "Your introduction has been sent." -msgstr "Je verzoek is verzonden." - -#: 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 "Remote inschrijving kan niet op jouw netwerk. Gelieve direct op je systeem in te schrijven." - -#: mod/dfrn_request.php:496 -msgid "Please login to confirm introduction." -msgstr "Log in om je verzoek te bevestigen." - -#: mod/dfrn_request.php:504 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Je huidige identiteit is niet de juiste. Log met dit profiel in." - -#: mod/dfrn_request.php:518 mod/dfrn_request.php:533 -msgid "Confirm" -msgstr "Bevestig" - -#: mod/dfrn_request.php:529 -msgid "Hide this contact" -msgstr "Verberg dit contact" - -#: mod/dfrn_request.php:531 -#, php-format -msgid "Welcome home %s." -msgstr "Welkom terug %s." - -#: mod/dfrn_request.php:532 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s." - -#: mod/dfrn_request.php:606 mod/display.php:179 mod/photos.php:843 -#: mod/videos.php:129 src/Module/Debug/WebFinger.php:38 -#: src/Module/Debug/Probe.php:39 src/Module/Search/Index.php:49 -#: src/Module/Search/Index.php:54 src/Module/Conversation/Community.php:139 -#: src/Module/Directory.php:49 -msgid "Public access denied." -msgstr "Niet vrij toegankelijk" - -#: mod/dfrn_request.php:642 src/Module/RemoteFollow.php:104 -msgid "Friend/Connection Request" -msgstr "Vriendschaps-/connectieverzoek" - -#: mod/dfrn_request.php:643 -#, 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 "Voer hier uw webvingeradres (gebruiker@domein.tld) ​​of profiel-URL in. Als dit niet wordt ondersteund door uw systeem (het werkt bijvoorbeeld niet met Diaspora), moet u zich rechtstreeks op uw systeem abonneren met %s" - -#: mod/dfrn_request.php:644 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 "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een publieke Friendica node te vinden en sluit je vandaag bij ons aan." - -#: mod/dfrn_request.php:645 src/Module/RemoteFollow.php:107 -msgid "Your Webfinger address or profile URL:" -msgstr "Uw Webfinger adres of profiel-URL:" - -#: mod/dfrn_request.php:646 mod/follow.php:164 src/Module/RemoteFollow.php:108 -msgid "Please answer the following:" -msgstr "Beantwoord het volgende:" - -#: mod/dfrn_request.php:647 mod/follow.php:95 mod/unfollow.php:136 -#: src/Module/RemoteFollow.php:109 -msgid "Submit Request" -msgstr "Aanvraag indienen" - -#: mod/dfrn_request.php:654 mod/follow.php:178 -#, php-format -msgid "%s knows you" -msgstr "%s kent je" - -#: mod/dfrn_request.php:655 mod/follow.php:179 -msgid "Add a personal note:" -msgstr "Voeg een persoonlijke opmerking toe:" - -#: mod/display.php:238 mod/display.php:318 -msgid "The requested item doesn't exist or has been deleted." -msgstr "Het gevraagde item bestaat niet of is verwijderd" - -#: mod/display.php:398 -msgid "The feed for this item is unavailable." -msgstr "De tijdlijn voor dit item is niet beschikbaar" - -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Item niet gevonden" - -#: mod/editpost.php:62 -msgid "Edit post" -msgstr "Bericht bewerken" - -#: mod/editpost.php:88 mod/notes.php:62 src/Content/Text/HTML.php:896 -#: src/Module/Filer/SaveTag.php:66 -msgid "Save" -msgstr "Bewaren" - -#: mod/editpost.php:94 mod/wallmessage.php:154 mod/message.php:234 -#: mod/message.php:404 -msgid "Insert web link" -msgstr "Voeg een webadres in" - -#: mod/editpost.php:95 -msgid "web link" -msgstr "webadres" - -#: mod/editpost.php:96 -msgid "Insert video link" -msgstr "Voeg video toe" - -#: mod/editpost.php:97 -msgid "video link" -msgstr "video adres" - -#: mod/editpost.php:98 -msgid "Insert audio link" -msgstr "Voeg audio adres toe" - -#: mod/editpost.php:99 -msgid "audio link" -msgstr "audio adres" - -#: mod/editpost.php:113 src/Core/ACL.php:291 -msgid "CC: email addresses" -msgstr "CC: e-mailadressen" - -#: mod/editpost.php:120 src/Core/ACL.php:292 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be" - -#: mod/events.php:135 mod/events.php:137 -msgid "Event can not end before it has started." -msgstr "Gebeurtenis kan niet eindigen voor het begin." - -#: mod/events.php:144 mod/events.php:146 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van de gebeurtenis zijn vereist." - -#: mod/events.php:416 -msgid "Create New Event" -msgstr "Maak een nieuwe gebeurtenis" - -#: mod/events.php:528 -msgid "Event details" -msgstr "Gebeurtenis details" - -#: mod/events.php:529 -msgid "Starting date and Title are required." -msgstr "Start datum en Titel zijn verplicht." - -#: mod/events.php:530 mod/events.php:535 -msgid "Event Starts:" -msgstr "Gebeurtenis begint:" - -#: mod/events.php:530 mod/events.php:562 -msgid "Required" -msgstr "Vereist" - -#: mod/events.php:543 mod/events.php:568 -msgid "Finish date/time is not known or not relevant" -msgstr "Einddatum/tijd is niet gekend of niet relevant" - -#: mod/events.php:545 mod/events.php:550 -msgid "Event Finishes:" -msgstr "Gebeurtenis eindigt:" - -#: mod/events.php:556 mod/events.php:569 -msgid "Adjust for viewer timezone" -msgstr "Pas aan aan de tijdzone van de gebruiker" - -#: mod/events.php:558 src/Module/Profile/Profile.php:172 -#: src/Module/Settings/Profile/Index.php:253 -msgid "Description:" -msgstr "Beschrijving:" - -#: mod/events.php:560 src/Model/Event.php:84 src/Model/Event.php:111 -#: src/Model/Event.php:454 src/Model/Event.php:948 src/Model/Profile.php:364 -#: src/Module/Profile/Profile.php:190 -#: src/Module/Notifications/Introductions.php:166 src/Module/Directory.php:156 -#: src/Module/Contact.php:626 -msgid "Location:" -msgstr "Plaats:" - -#: mod/events.php:562 mod/events.php:564 -msgid "Title:" -msgstr "Titel:" - -#: mod/events.php:565 mod/events.php:566 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" - -#: mod/events.php:572 mod/photos.php:958 mod/photos.php:1064 -#: mod/photos.php:1351 mod/photos.php:1395 mod/photos.php:1442 -#: mod/photos.php:1505 mod/message.php:236 mod/message.php:405 -#: view/theme/duepuntozero/config.php:69 view/theme/frio/config.php:160 -#: view/theme/quattro/config.php:71 view/theme/vier/config.php:119 -#: src/Module/Debug/Localtime.php:64 src/Module/Item/Compose.php:144 -#: src/Module/Profile/Profile.php:241 -#: src/Module/Settings/Profile/Index.php:237 -#: src/Module/Contact/Advanced.php:140 src/Module/Contact/Poke.php:156 -#: src/Module/Delegation.php:151 src/Module/FriendSuggest.php:129 -#: src/Module/Invite.php:175 src/Module/Install.php:230 -#: src/Module/Install.php:270 src/Module/Install.php:306 -#: src/Module/Contact.php:584 src/Object/Post.php:949 -msgid "Submit" -msgstr "Verstuur" - -#: mod/events.php:573 src/Module/Profile/Profile.php:242 -msgid "Basic" -msgstr "Basis" - -#: mod/events.php:574 src/Module/Admin/Site.php:594 -#: src/Module/Profile/Profile.php:243 src/Module/Contact.php:921 -msgid "Advanced" -msgstr "Geavanceerd" - -#: mod/events.php:575 mod/photos.php:976 mod/photos.php:1347 -msgid "Permissions" -msgstr "Rechten" - -#: mod/events.php:591 -msgid "Failed to remove event" -msgstr "Kon remote event niet verwijderen" - -#: mod/fbrowser.php:43 view/theme/frio/theme.php:227 src/Content/Nav.php:179 -#: src/Module/BaseProfile.php:68 -msgid "Photos" -msgstr "Foto's" - -#: mod/fbrowser.php:107 mod/fbrowser.php:136 -#: src/Module/Settings/Profile/Photo/Index.php:130 -msgid "Upload" -msgstr "Uploaden" - -#: mod/fbrowser.php:131 -msgid "Files" -msgstr "Bestanden" - -#: mod/follow.php:65 -msgid "The contact could not be added." -msgstr "Het contact kon niet toegevoegd worden." - -#: mod/follow.php:105 -msgid "You already added this contact." -msgstr "Je hebt deze kontakt al toegevoegd" - -#: mod/follow.php:121 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "Het type netwerk kon niet gedetecteerd worden. Contact kan niet toegevoegd worden." - -#: mod/follow.php:129 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Diaspora ondersteuning is niet geactiveerd. Contact kan niet toegevoegd worden." - -#: mod/follow.php:134 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatus ondersteuning is niet geactiveerd. Contact kan niet toegevoegd woren." - -#: mod/follow.php:165 mod/unfollow.php:134 -msgid "Your Identity Address:" -msgstr "Adres van je identiteit:" - -#: mod/follow.php:166 mod/unfollow.php:140 -#: src/Module/Admin/Blocklist/Contact.php:100 -#: src/Module/Notifications/Introductions.php:103 -#: src/Module/Notifications/Introductions.php:177 src/Module/Contact.php:622 -msgid "Profile URL" -msgstr "Profiel url" - -#: mod/follow.php:167 src/Module/Profile/Profile.php:202 -#: src/Module/Notifications/Introductions.php:170 src/Module/Contact.php:632 -msgid "Tags:" -msgstr "Labels:" - -#: mod/follow.php:188 mod/unfollow.php:150 src/Module/BaseProfile.php:63 -#: src/Module/Contact.php:899 -msgid "Status Messages and Posts" -msgstr "Berichten op jouw tijdlijn" - -#: mod/item.php:132 mod/item.php:136 +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 msgid "Unable to locate original post." msgstr "Ik kan de originele post niet meer vinden." -#: mod/item.php:336 mod/item.php:341 -msgid "Empty post discarded." -msgstr "Lege post weggegooid." - -#: mod/item.php:710 +#: mod/item.php:138 msgid "Post updated." msgstr "Post geupdate." -#: mod/item.php:727 mod/item.php:732 +#: mod/item.php:203 mod/item.php:207 msgid "Item wasn't stored." msgstr "Item is niet opgeslagen." -#: mod/item.php:743 +#: mod/item.php:217 msgid "Item couldn't be fetched." msgstr "Item kan niet worden opgehaald." -#: mod/item.php:891 src/Module/Admin/Themes/Details.php:70 -#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:46 -#: src/Module/Debug/ItemBody.php:59 +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "Lege post weggegooid." + +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 +#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Item niet gevonden." -#: mod/item.php:923 -msgid "Do you really want to delete this item?" -msgstr "Wil je echt dit item verwijderen?" +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:99 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:38 +#: src/Module/FriendSuggest.php:57 src/Module/Invite.php:42 +#: src/Module/Invite.php:131 src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Delegation.php:41 src/Module/Settings/Delegation.php:71 +#: src/Module/Settings/Display.php:73 src/Module/Settings/Display.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:111 +#: src/Module/Settings/RemoveMe.php:117 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Import.php:84 +#: src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "Toegang geweigerd" #: mod/lostpass.php:40 msgid "No valid account found." @@ -1510,7 +159,7 @@ msgid "" "your email for further instructions." msgstr "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies." -#: mod/lostpass.php:130 src/Module/Security/Login.php:144 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " msgstr "Bijnaam of e-mail:" @@ -1518,7 +167,7 @@ msgstr "Bijnaam of e-mail:" msgid "Reset" msgstr "Opnieuw" -#: mod/lostpass.php:146 src/Module/Security/Login.php:156 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 msgid "Password Reset" msgstr "Wachtwoord opnieuw instellen" @@ -1578,2657 +227,810 @@ msgstr "\n\t\t\tJe login details zijn de volgende:\n\n\t\t\tSite Locatie:\t%1$s\ msgid "Your password has been changed at %s" msgstr "Je wachtwoord is veranderd op %s" -#: mod/match.php:62 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "Geen overeenkomende zoekwoorden. Voeg zoekwoorden toe aan uw profiel." - -#: mod/match.php:105 src/Content/Pager.php:216 -msgid "first" -msgstr "eerste" - -#: mod/match.php:110 src/Content/Pager.php:276 -msgid "next" -msgstr "volgende" - -#: mod/match.php:120 src/Module/BaseSearch.php:117 -msgid "No matches" -msgstr "Geen resultaten" - -#: mod/match.php:125 -msgid "Profile Match" -msgstr "Profielmatch" - -#: mod/network.php:297 -msgid "No items found" -msgstr "Geen items gevonden" - -#: mod/network.php:528 -msgid "No such group" -msgstr "Zo'n groep bestaat niet" - -#: mod/network.php:536 -#, php-format -msgid "Group: %s" -msgstr "Groep: %s" - -#: mod/network.php:548 src/Module/Contact/Contacts.php:28 -msgid "Invalid contact." -msgstr "Ongeldig contact." - -#: mod/network.php:686 -msgid "Latest Activity" -msgstr "Laatste activiteit" - -#: mod/network.php:689 -msgid "Sort by latest activity" -msgstr "Sorteer naar laatste activiteit" - -#: mod/network.php:694 -msgid "Latest Posts" -msgstr "Laatste Berichten" - -#: mod/network.php:697 -msgid "Sort by post received date" -msgstr "Sorteren naar ontvangstdatum bericht" - -#: mod/network.php:704 src/Module/Settings/Profile/Index.php:242 -msgid "Personal" -msgstr "Persoonlijk" - -#: mod/network.php:707 -msgid "Posts that mention or involve you" -msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben" - -#: mod/network.php:713 -msgid "Starred" -msgstr "Met ster" - -#: mod/network.php:716 -msgid "Favourite Posts" -msgstr "Favoriete berichten" - -#: mod/notes.php:50 src/Module/BaseProfile.php:110 -msgid "Personal Notes" -msgstr "Persoonlijke Nota's" - -#: mod/ostatus_subscribe.php:35 -msgid "Subscribing to OStatus contacts" -msgstr "Inschrijven bij OStatus contacten" - -#: mod/ostatus_subscribe.php:45 -msgid "No contact provided." -msgstr "Geen contact opgegeven." - -#: mod/ostatus_subscribe.php:51 -msgid "Couldn't fetch information for contact." -msgstr "Kon de informatie voor het contact niet ophalen." - -#: mod/ostatus_subscribe.php:61 -msgid "Couldn't fetch friends for contact." -msgstr "Kon de vrienden van contact niet ophalen." - -#: mod/ostatus_subscribe.php:79 mod/repair_ostatus.php:65 -msgid "Done" -msgstr "Klaar" - -#: mod/ostatus_subscribe.php:93 -msgid "success" -msgstr "Succesvol" - -#: mod/ostatus_subscribe.php:95 -msgid "failed" -msgstr "Mislukt" - -#: mod/ostatus_subscribe.php:98 src/Object/Post.php:305 -msgid "ignored" -msgstr "Verboden" - -#: mod/ostatus_subscribe.php:103 mod/repair_ostatus.php:71 -msgid "Keep this window open until done." -msgstr "Houd dit scherm open tot het klaar is" - -#: mod/photos.php:127 src/Module/BaseProfile.php:71 -msgid "Photo Albums" -msgstr "Fotoalbums" - -#: mod/photos.php:128 mod/photos.php:1609 -msgid "Recent Photos" -msgstr "Recente foto's" - -#: mod/photos.php:130 mod/photos.php:1115 mod/photos.php:1611 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" - -#: mod/photos.php:148 src/Module/BaseSettings.php:37 -msgid "everybody" -msgstr "iedereen" - -#: mod/photos.php:185 -msgid "Contact information unavailable" -msgstr "Contactinformatie niet beschikbaar" - -#: mod/photos.php:207 -msgid "Album not found." -msgstr "Album niet gevonden" - -#: mod/photos.php:265 -msgid "Album successfully deleted" -msgstr "Album succesvol gedeeld" - -#: mod/photos.php:267 -msgid "Album was empty." -msgstr "Het album was leeg" - -#: mod/photos.php:299 -msgid "Failed to delete the photo." -msgstr "Foto verwijderen mislukt." - -#: mod/photos.php:583 -msgid "a photo" -msgstr "een foto" - -#: mod/photos.php:583 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s is gelabeld in %2$s door %3$s" - -#: mod/photos.php:678 mod/photos.php:681 mod/photos.php:708 -#: mod/wall_upload.php:174 src/Module/Settings/Profile/Photo/Index.php:61 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Beeld is groter dan de limiet ( %s )" - -#: mod/photos.php:684 -msgid "Image upload didn't complete, please try again" -msgstr "Opladen van het beeld is niet compleet, probeer het opnieuw" - -#: mod/photos.php:687 -msgid "Image file is missing" -msgstr "Beeld bestand ontbreekt" - -#: mod/photos.php:692 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "De server kan op dit moment geen nieuw bestand opladen, contacteer alsjeblieft je beheerder" - -#: mod/photos.php:716 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg." - -#: mod/photos.php:731 mod/wall_upload.php:188 -#: src/Module/Settings/Profile/Photo/Index.php:70 -msgid "Unable to process image." -msgstr "Niet in staat om de afbeelding te verwerken" - -#: mod/photos.php:760 mod/wall_upload.php:227 -#: src/Module/Settings/Profile/Photo/Index.php:97 -msgid "Image upload failed." -msgstr "Uploaden van afbeelding mislukt." - -#: mod/photos.php:848 -msgid "No photos selected" -msgstr "Geen foto's geselecteerd" - -#: mod/photos.php:914 mod/videos.php:182 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." - -#: mod/photos.php:968 -msgid "Upload Photos" -msgstr "Upload foto's" - -#: mod/photos.php:972 mod/photos.php:1060 -msgid "New album name: " -msgstr "Nieuwe albumnaam: " - -#: mod/photos.php:973 -msgid "or select existing album:" -msgstr "Of selecteer bestaand album:" - -#: mod/photos.php:974 -msgid "Do not show a status post for this upload" -msgstr "Toon geen bericht op je tijdlijn van deze upload" - -#: mod/photos.php:990 mod/photos.php:1355 -msgid "Show to Groups" -msgstr "Tonen aan groepen" - -#: mod/photos.php:991 mod/photos.php:1356 -msgid "Show to Contacts" -msgstr "Tonen aan contacten" - -#: mod/photos.php:1042 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?" - -#: mod/photos.php:1044 mod/photos.php:1065 -msgid "Delete Album" -msgstr "Verwijder album" - -#: mod/photos.php:1071 -msgid "Edit Album" -msgstr "Album wijzigen" - -#: mod/photos.php:1072 -msgid "Drop Album" -msgstr "Album verwijderen" - -#: mod/photos.php:1077 -msgid "Show Newest First" -msgstr "Toon niewste eerst" - -#: mod/photos.php:1079 -msgid "Show Oldest First" -msgstr "Toon oudste eerst" - -#: mod/photos.php:1100 mod/photos.php:1594 -msgid "View Photo" -msgstr "Bekijk foto" - -#: mod/photos.php:1137 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt." - -#: mod/photos.php:1139 -msgid "Photo not available" -msgstr "Foto is niet beschikbaar" - -#: mod/photos.php:1149 -msgid "Do you really want to delete this photo?" -msgstr "Wil je echt deze foto verwijderen?" - -#: mod/photos.php:1151 mod/photos.php:1352 -msgid "Delete Photo" -msgstr "Verwijder foto" - -#: mod/photos.php:1242 -msgid "View photo" -msgstr "Bekijk foto" - -#: mod/photos.php:1244 -msgid "Edit photo" -msgstr "Bewerk foto" - -#: mod/photos.php:1245 -msgid "Delete photo" -msgstr "Foto verwijderen" - -#: mod/photos.php:1246 -msgid "Use as profile photo" -msgstr "Gebruik als profielfoto" - -#: mod/photos.php:1253 -msgid "Private Photo" -msgstr "Privé foto" - -#: mod/photos.php:1259 -msgid "View Full Size" -msgstr "Bekijk in volledig formaat" - -#: mod/photos.php:1320 -msgid "Tags: " -msgstr "Labels: " - -#: mod/photos.php:1323 -msgid "[Select tags to remove]" -msgstr "[Selecteer tags om te verwijderen]" - -#: mod/photos.php:1338 -msgid "New album name" -msgstr "Nieuwe albumnaam" - -#: mod/photos.php:1339 -msgid "Caption" -msgstr "Onderschrift" - -#: mod/photos.php:1340 -msgid "Add a Tag" -msgstr "Een label toevoegen" - -#: mod/photos.php:1340 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping " - -#: mod/photos.php:1341 -msgid "Do not rotate" -msgstr "Niet roteren" - -#: mod/photos.php:1342 -msgid "Rotate CW (right)" -msgstr "Roteren met de klok mee (rechts)" - -#: mod/photos.php:1343 -msgid "Rotate CCW (left)" -msgstr "Roteren tegen de klok in (links)" - -#: mod/photos.php:1376 src/Object/Post.php:345 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" - -#: mod/photos.php:1377 src/Object/Post.php:346 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" - -#: mod/photos.php:1392 mod/photos.php:1439 mod/photos.php:1502 -#: src/Module/Item/Compose.php:142 src/Module/Contact.php:1063 -#: src/Object/Post.php:946 -msgid "This is you" -msgstr "Dit ben jij" - -#: mod/photos.php:1394 mod/photos.php:1441 mod/photos.php:1504 -#: src/Object/Post.php:482 src/Object/Post.php:948 -msgid "Comment" -msgstr "Reacties" - -#: mod/photos.php:1530 -msgid "Map" -msgstr "Kaart" - -#: mod/photos.php:1600 mod/videos.php:259 -msgid "View Album" -msgstr "Album bekijken" - -#: mod/ping.php:285 -msgid "{0} wants to be your friend" -msgstr "{0} wilt je vriend worden" - -#: mod/ping.php:301 -msgid "{0} requested registration" -msgstr "{0} vroeg om zich te registreren" - -#: mod/redir.php:50 mod/redir.php:130 -msgid "Bad Request." -msgstr "Verkeerde aanvraag." - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Opnieuw inschrijven bij OStatus contacten" - -#: mod/repair_ostatus.php:50 src/Module/Debug/ActivityPubConversion.php:130 -#: src/Module/Debug/Babel.php:269 src/Module/Security/TwoFactor/Verify.php:82 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Fout" -msgstr[1] "Fouten" - -#: mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen." - -#: mod/suggest.php:55 view/theme/vier/theme.php:174 src/Content/Widget.php:82 -msgid "Friend Suggestions" -msgstr "Vriendschapsvoorstellen" - -#: mod/tagrm.php:112 -msgid "Remove Item Tag" -msgstr "Verwijder label van item" - -#: mod/tagrm.php:114 -msgid "Select a tag to remove: " -msgstr "Selecteer een label om te verwijderen: " - -#: mod/tagrm.php:125 src/Module/Settings/Delegation.php:179 -msgid "Remove" -msgstr "Verwijderen" - -#: mod/uimport.php:45 -msgid "User imports on closed servers can only be done by an administrator." -msgstr "Importen van een gebruiker op een gesloten node kan enkel gedaan worden door een administrator" - -#: 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 "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw." - -#: mod/uimport.php:61 src/Module/Register.php:160 -msgid "Import" -msgstr "Importeren" - -#: mod/uimport.php:63 -msgid "Move account" -msgstr "Account verplaatsen" - -#: mod/uimport.php:64 -msgid "You can import an account from another Friendica server." -msgstr "Je kunt een account van een andere Friendica server importeren." - -#: mod/uimport.php:65 -msgid "" -"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." -msgstr "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent." - -#: mod/uimport.php:66 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "Dit feature is experimenteel. We kunnen contacten van het OStatus netwerk (GNU Social/Statusnet) of van Diaspora niet importeren." - -#: mod/uimport.php:67 -msgid "Account file" -msgstr "Account bestand" - -#: mod/uimport.php:67 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Om je account te exporteren, ga naar \"Instellingen->Exporteer je persoonlijke data\" en selecteer \"Exporteer account\"" - -#: mod/unfollow.php:51 mod/unfollow.php:106 -msgid "You aren't following this contact." -msgstr "Je volgt dit contact niet." - -#: mod/unfollow.php:61 mod/unfollow.php:112 -msgid "Unfollowing is currently not supported by your network." -msgstr "Ontvolgen is momenteel niet gesupporteerd door je netwerk." - -#: mod/unfollow.php:132 -msgid "Disconnect/Unfollow" -msgstr "Disconnecteer/stop met volgen" - -#: mod/videos.php:134 -msgid "No videos selected" -msgstr "Geen video's geselecteerd" - -#: mod/videos.php:252 src/Model/Item.php:3567 -msgid "View Video" -msgstr "Bekijk Video" - -#: mod/videos.php:267 -msgid "Recent Videos" -msgstr "Recente video's" - -#: mod/videos.php:269 -msgid "Upload New Videos" -msgstr "Nieuwe video's uploaden" - -#: 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 "Ongeldige aanvraag." - -#: mod/wall_attach.php:105 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Sorry, je op te laden bestand is groter dan deze PHP configuratie toelaat" - -#: mod/wall_attach.php:105 -msgid "Or - did you try to upload an empty file?" -msgstr "Of - probeerde je een lege file op te laden?" - -#: mod/wall_attach.php:116 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Bestand is groter dan de limiet ( %s )" - -#: mod/wall_attach.php:131 -msgid "File upload failed." -msgstr "Uploaden van bestand mislukt." - -#: mod/wall_upload.php:219 -msgid "Wall Photos" -msgstr "Tijdlijn foto's" - -#: mod/wallmessage.php:68 mod/wallmessage.php:129 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Maximum aantal dagelijkse tijdlijn boodschappen van %s overschreden. Kon boodschap niet plaatsen." - -#: mod/wallmessage.php:76 mod/message.php:84 -msgid "No recipient selected." -msgstr "Geen ontvanger geselecteerd." - -#: mod/wallmessage.php:79 -msgid "Unable to check your home location." -msgstr "Niet in staat om je tijdlijn-locatie vast te stellen" - -#: mod/wallmessage.php:82 mod/message.php:91 -msgid "Message could not be sent." -msgstr "Bericht kon niet verzonden worden." - -#: mod/wallmessage.php:85 mod/message.php:94 -msgid "Message collection failure." -msgstr "Fout bij het verzamelen van berichten." - -#: mod/wallmessage.php:103 mod/wallmessage.php:112 -msgid "No recipient." -msgstr "Geen ontvanger." - -#: mod/wallmessage.php:137 mod/message.php:215 mod/message.php:329 -msgid "Please enter a link URL:" -msgstr "Vul een internetadres/URL in:" - -#: mod/wallmessage.php:142 mod/message.php:224 -msgid "Send Private Message" -msgstr "Verstuur privébericht" - -#: 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 "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat." - -#: mod/wallmessage.php:144 mod/message.php:225 mod/message.php:395 -msgid "To:" -msgstr "Aan:" - -#: mod/wallmessage.php:145 mod/message.php:226 mod/message.php:396 -msgid "Subject:" -msgstr "Onderwerp:" - -#: mod/wallmessage.php:151 mod/message.php:230 mod/message.php:399 -#: src/Module/Invite.php:168 -msgid "Your message:" -msgstr "Jouw bericht:" - -#: mod/settings.php:90 -msgid "Missing some important data!" -msgstr "Een belangrijk gegeven ontbreekt!" - -#: mod/settings.php:92 mod/settings.php:525 src/Module/Contact.php:850 -msgid "Update" -msgstr "Wijzigen" - -#: mod/settings.php:200 -msgid "Failed to connect with email account using the settings provided." -msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen." - -#: mod/settings.php:229 -msgid "Contact CSV file upload error" -msgstr "" - -#: mod/settings.php:244 -msgid "Importing Contacts done" -msgstr "Importeren Contacten voltooid" - -#: mod/settings.php:255 -msgid "Relocate message has been send to your contacts" -msgstr "Verhuis boodschap is verzonden naar je contacten" - -#: mod/settings.php:267 -msgid "Passwords do not match." -msgstr "Wachtwoorden zijn niet gelijk" - -#: mod/settings.php:275 src/Console/User.php:166 -msgid "Password update failed. Please try again." -msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw." - -#: mod/settings.php:278 src/Console/User.php:169 -msgid "Password changed." -msgstr "Wachtwoord gewijzigd." - -#: mod/settings.php:281 -msgid "Password unchanged." -msgstr "Wachtwoord ongewijzigd" - -#: mod/settings.php:364 -msgid "Please use a shorter name." -msgstr "Gebruik een kortere naam." - -#: mod/settings.php:367 -msgid "Name too short." -msgstr "Naam is te kort." - -#: mod/settings.php:374 -msgid "Wrong Password." -msgstr "Verkeerd wachtwoord." - -#: mod/settings.php:379 -msgid "Invalid email." -msgstr "Ongeldig email adres." - -#: mod/settings.php:385 -msgid "Cannot change to that email." -msgstr "Kan niet naar dat email adres veranderen." - -#: mod/settings.php:422 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt." - -#: mod/settings.php:425 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep." - -#: mod/settings.php:442 -msgid "Settings were not updated." -msgstr "Wijziging instellingen is niet opgeslagen." - -#: mod/settings.php:498 mod/settings.php:524 mod/settings.php:558 -msgid "Add application" -msgstr "Toepassing toevoegen" - -#: mod/settings.php:499 mod/settings.php:606 mod/settings.php:704 -#: mod/settings.php:859 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Themes/Index.php:113 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Site.php:589 -#: src/Module/Admin/Tos.php:66 src/Module/Settings/Delegation.php:170 -#: src/Module/Settings/Display.php:185 -msgid "Save Settings" -msgstr "Instellingen opslaan" - -#: mod/settings.php:501 mod/settings.php:527 -#: src/Module/Admin/Blocklist/Contact.php:90 src/Module/Admin/Users.php:237 -#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 -#: src/Module/Admin/Users.php:278 src/Module/Contact/Advanced.php:150 -msgid "Name" -msgstr "Naam" - -#: mod/settings.php:502 mod/settings.php:528 -msgid "Consumer Key" -msgstr "Gebruikerssleutel" - -#: mod/settings.php:503 mod/settings.php:529 -msgid "Consumer Secret" -msgstr "Gebruikersgeheim" - -#: mod/settings.php:504 mod/settings.php:530 -msgid "Redirect" -msgstr "Doorverwijzing" - -#: mod/settings.php:505 mod/settings.php:531 -msgid "Icon url" -msgstr "URL pictogram" - -#: mod/settings.php:516 -msgid "You can't edit this application." -msgstr "Je kunt deze toepassing niet wijzigen." - -#: mod/settings.php:557 -msgid "Connected Apps" -msgstr "Verbonden applicaties" - -#: mod/settings.php:559 src/Object/Post.php:184 src/Object/Post.php:186 -msgid "Edit" -msgstr "Bewerken" - -#: mod/settings.php:561 -msgid "Client key starts with" -msgstr "Client sleutel begint met" - -#: mod/settings.php:562 -msgid "No name" -msgstr "Geen naam" - -#: mod/settings.php:563 -msgid "Remove authorization" -msgstr "Verwijder authorisatie" - -#: mod/settings.php:574 -msgid "No Addon settings configured" -msgstr "Geen Addon instellingen geconfigureerd" - -#: mod/settings.php:583 -msgid "Addon Settings" -msgstr "Addon instellingen" - -#: mod/settings.php:604 -msgid "Additional Features" -msgstr "Extra functies" - -#: mod/settings.php:629 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/settings.php:629 mod/settings.php:630 -msgid "enabled" -msgstr "ingeschakeld" - -#: mod/settings.php:629 mod/settings.php:630 -msgid "disabled" -msgstr "uitgeschakeld" - -#: mod/settings.php:629 mod/settings.php:630 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s" - -#: mod/settings.php:630 -msgid "OStatus (GNU Social)" -msgstr "" - -#: mod/settings.php:661 -msgid "Email access is disabled on this site." -msgstr "E-mailtoegang is op deze website uitgeschakeld." - -#: mod/settings.php:666 mod/settings.php:702 -msgid "None" -msgstr "Geen" - -#: mod/settings.php:672 src/Module/BaseSettings.php:80 -msgid "Social Networks" -msgstr "Sociale netwerken" - -#: mod/settings.php:677 -msgid "General Social Media Settings" -msgstr "Algemene Sociale Media Instellingen" - -#: mod/settings.php:678 -msgid "Accept only top level posts by contacts you follow" -msgstr "Enkel posts van het het hoogste niveau accepteren van contacten die je volgt." - -#: mod/settings.php:678 -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 " -"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." -msgstr "Het systeem doet auto-complete bij posts wanneer een nieuwe reactie aankomt. Dit heeft het neveneffect dat je posts kan ontvangen die zijn gestart door iemand die je niet volgt maar op werd gereageerd door iemand die je wel volgt. Deze instelling deactiveerd dit gedrag. Als je dit activeert zal je enkel posts ontvangen van mensen die je echt volgt." - -#: mod/settings.php:679 -msgid "Disable Content Warning" -msgstr "Deactiveer Content Waarschuwing" - -#: mod/settings.php:679 -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 " -"collapsing and sets the content warning as the post title. Doesn't affect " -"any other content filtering you eventually set up." -msgstr "Gebruikers op netwerken als Mastodon en Pleroma kunnen een content waarschuwing instellen die hun bericht standaard inklapt. Dit deactiveert het automatisch inklappen en toont de content waarschuwing als titel van het bericht. Dit beïnvloedt andere content filters die je mogelijk ingesteld hebt niet." - -#: mod/settings.php:680 -msgid "Disable intelligent shortening" -msgstr "Deactiveer intelligent afkorten" - -#: mod/settings.php:680 -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 "Normaal probeert het systeem de beste link te vinden om toe te voegen aan ingekorte berichten. Als deze optie geactiveerd is, dan zal elk ingekort bericht altijd verwijzen naar het originele friendica bericht." - -#: mod/settings.php:681 -msgid "Attach the link title" -msgstr "Voeg de linktitel toe" - -#: mod/settings.php:681 -msgid "" -"When activated, the title of the attached link will be added as a title on " -"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" -" share feed content." -msgstr "Indien geactiveerd, wordt de titel van de bijgevoegde link toegevoegd als titel op berichten op Diaspora. Dit is vooral handig bij contacten op afstand die zelf feed-inhoud delen." - -#: mod/settings.php:682 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Volg automatisch alle GNU Social (OStatus) volgers/vermelders" - -#: mod/settings.php:682 -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 "Als je een boodschap ontvangt van een voor jou onbekende OStatus gebruiker, dan beslist deze optie wat er moet gebeuren. Als de optie is geactiveerd, dan zal voor elke onbekende gebruiker een nieuw contact aangemaakt worden." - -#: mod/settings.php:683 -msgid "Default group for OStatus contacts" -msgstr "Standaard groep voor OStatus contacten" - -#: mod/settings.php:684 -msgid "Your legacy GNU Social account" -msgstr "Je verouderd GNU Social account" - -#: mod/settings.php:684 -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 "Als je hier je oude GNU Social/Statusnet account naam invoert (in het formaat gebruiker@domein.tld), dan zullen je contacten automatisch toegevoegd worden. Het veld zal nadien leeg gemaakt worden." - -#: mod/settings.php:687 -msgid "Repair OStatus subscriptions" -msgstr "Herstel OStatus inschrijvingen" - -#: mod/settings.php:691 -msgid "Email/Mailbox Setup" -msgstr "E-mail Instellen" - -#: mod/settings.php:692 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken." - -#: mod/settings.php:693 -msgid "Last successful email check:" -msgstr "Laatste succesvolle e-mail controle:" - -#: mod/settings.php:695 -msgid "IMAP server name:" -msgstr "IMAP server naam:" - -#: mod/settings.php:696 -msgid "IMAP port:" -msgstr "IMAP poort:" - -#: mod/settings.php:697 -msgid "Security:" -msgstr "Beveiliging:" - -#: mod/settings.php:698 -msgid "Email login name:" -msgstr "E-mail login naam:" - -#: mod/settings.php:699 -msgid "Email password:" -msgstr "E-mail wachtwoord:" - -#: mod/settings.php:700 -msgid "Reply-to address:" -msgstr "Antwoord adres:" - -#: mod/settings.php:701 -msgid "Send public posts to all email contacts:" -msgstr "Openbare posts naar alle e-mail contacten versturen:" - -#: mod/settings.php:702 -msgid "Action after import:" -msgstr "Actie na importeren:" - -#: mod/settings.php:702 src/Content/Nav.php:270 -msgid "Mark as seen" -msgstr "Als 'gelezen' markeren" - -#: mod/settings.php:702 -msgid "Move to folder" -msgstr "Naar map verplaatsen" - -#: mod/settings.php:703 -msgid "Move to folder:" -msgstr "Verplaatsen naar map:" - -#: mod/settings.php:717 -msgid "Unable to find your profile. Please contact your admin." -msgstr "Kan je profiel niet vinden. Contacteer alsjeblieft je beheerder." - -#: mod/settings.php:753 -msgid "Account Types" -msgstr "Account Types" - -#: mod/settings.php:754 -msgid "Personal Page Subtypes" -msgstr "Persoonlijke Pagina Subtypes" - -#: mod/settings.php:755 -msgid "Community Forum Subtypes" -msgstr "Groepsforum Subtypes" - -#: mod/settings.php:762 src/Module/Admin/Users.php:194 -msgid "Personal Page" -msgstr "Persoonlijke pagina" - -#: mod/settings.php:763 -msgid "Account for a personal profile." -msgstr "Account voor een persoonlijk profiel" - -#: mod/settings.php:766 src/Module/Admin/Users.php:195 -msgid "Organisation Page" -msgstr "Organisatie Pagina" - -#: mod/settings.php:767 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "Account voor een organisatie die automatisch contact aanvragen goedkeurt als \"Volgers\"." - -#: mod/settings.php:770 src/Module/Admin/Users.php:196 -msgid "News Page" -msgstr "Nieuws pagina" - -#: mod/settings.php:771 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "Account voor een nieuws reflector die automatisch contact aanvragen goedkeurt als \"Volgers\"." - -#: mod/settings.php:774 src/Module/Admin/Users.php:197 -msgid "Community Forum" -msgstr "Groepsforum" - -#: mod/settings.php:775 -msgid "Account for community discussions." -msgstr "Account voor groepsdiscussies." - -#: mod/settings.php:778 src/Module/Admin/Users.php:187 -msgid "Normal Account Page" -msgstr "Normale accountpagina" - -#: mod/settings.php:779 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "Account voor een normaal persoonlijk profiel dat manuele goedkeuring vereist van \"Vrienden\" en \"Volgers\"." - -#: mod/settings.php:782 src/Module/Admin/Users.php:188 -msgid "Soapbox Page" -msgstr "Zeepkist-pagina" - -#: mod/settings.php:783 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "Account voor een publiek profiel dat automatisch contact aanvragen goedkeurt als \"Volgers\"." - -#: mod/settings.php:786 src/Module/Admin/Users.php:189 -msgid "Public Forum" -msgstr "Publiek Forum" - -#: mod/settings.php:787 -msgid "Automatically approves all contact requests." -msgstr "Aanvaardt automatisch all contact aanvragen." - -#: mod/settings.php:790 src/Module/Admin/Users.php:190 -msgid "Automatic Friend Page" -msgstr "Automatisch Vriendschapspagina" - -#: mod/settings.php:791 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "Account voor een populair profiel dat automatisch contact aanvragen goedkeurt als \"Vrienden\"." - -#: mod/settings.php:794 -msgid "Private Forum [Experimental]" -msgstr "Privé-forum [experimenteel]" - -#: mod/settings.php:795 -msgid "Requires manual approval of contact requests." -msgstr "Vereist manuele goedkeuring van contact aanvragen." - -#: mod/settings.php:806 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:806 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account." - -#: mod/settings.php:814 -msgid "Publish your profile in your local site directory?" -msgstr "Uw profiel publiceren in uw lokale sitemap?" - -#: mod/settings.php:814 -#, php-format -msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "Je profiel zal gepubliceerd worden de lokale gids van deze node. Je profiel details kunnen publiek zichtbaar zijn afhankelijk van de systeem instellingen." - -#: mod/settings.php:820 -#, php-format -msgid "" -"Your profile will also be published in the global friendica directories " -"(e.g. %s)." -msgstr "Je profiel zal ook worden gepubliceerd in de globale Friendica directories (e.g. %s)." - -#: mod/settings.php:826 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "Je Identiteit adres is '%s' of '%s'." - -#: mod/settings.php:857 -msgid "Account Settings" -msgstr "Account Instellingen" - -#: mod/settings.php:865 -msgid "Password Settings" -msgstr "Wachtwoord Instellingen" - -#: mod/settings.php:866 src/Module/Register.php:149 -msgid "New Password:" -msgstr "Nieuw Wachtwoord:" - -#: mod/settings.php:866 -msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "Toegestane tekens zijn a-z, A-Z, 0-9 en speciale tekens behalve spatie, geaccentueerde tekens en dubbele punt." - -#: mod/settings.php:867 src/Module/Register.php:150 -msgid "Confirm:" -msgstr "Bevestig:" - -#: mod/settings.php:867 -msgid "Leave password fields blank unless changing" -msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen" - -#: mod/settings.php:868 -msgid "Current Password:" -msgstr "Huidig wachtwoord:" - -#: mod/settings.php:868 -msgid "Your current password to confirm the changes" -msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen" - -#: mod/settings.php:869 -msgid "Password:" -msgstr "Wachtwoord:" - -#: mod/settings.php:869 -msgid "Your current password to confirm the changes of the email address" -msgstr "Je huidige wachtwoord om de verandering in het email adres te bevestigen" - -#: mod/settings.php:872 -msgid "Delete OpenID URL" -msgstr "Verwijder OpenID URL" - -#: mod/settings.php:874 -msgid "Basic Settings" -msgstr "Basis Instellingen" - -#: mod/settings.php:875 src/Module/Profile/Profile.php:144 -msgid "Full Name:" -msgstr "Volledige Naam:" - -#: mod/settings.php:876 -msgid "Email Address:" -msgstr "E-mailadres:" - -#: mod/settings.php:877 -msgid "Your Timezone:" -msgstr "Je Tijdzone:" - -#: mod/settings.php:878 -msgid "Your Language:" -msgstr "Je taal:" - -#: mod/settings.php:878 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Configureer de taal van die we gebruiken als friendica interface en om je emails te sturen" - -#: mod/settings.php:879 -msgid "Default Post Location:" -msgstr "Standaard locatie:" - -#: mod/settings.php:880 -msgid "Use Browser Location:" -msgstr "Gebruik Webbrowser Locatie:" - -#: mod/settings.php:882 -msgid "Security and Privacy Settings" -msgstr "Instellingen voor Beveiliging en Privacy" - -#: mod/settings.php:884 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum aantal vriendschapsverzoeken per dag:" - -#: mod/settings.php:884 mod/settings.php:894 -msgid "(to prevent spam abuse)" -msgstr "(om spam misbruik te voorkomen)" - -#: mod/settings.php:886 -msgid "Allow your profile to be searchable globally?" -msgstr "Wilt u dat uw profiel globaal doorzoekbaar is?" - -#: mod/settings.php:886 -msgid "" -"Activate this setting if you want others to easily find and follow you. Your" -" profile will be searchable on remote systems. This setting also determines " -"whether Friendica will inform search engines that your profile should be " -"indexed or not." -msgstr "Activeer deze instelling als u wilt dat anderen u gemakkelijk kunnen vinden en volgen. Uw profiel is doorzoekbaar op externe systemen. Deze instelling bepaalt ook of Friendica zoekmachines zal informeren dat uw profiel moet worden geïndexeerd of niet." - -#: mod/settings.php:887 -msgid "Hide your contact/friend list from viewers of your profile?" -msgstr "Uw contact- / vriendenlijst verbergen voor hen die uw profiel bekijken?" - -#: mod/settings.php:887 -msgid "" -"A list of your contacts is displayed on your profile page. Activate this " -"option to disable the display of your contact list." -msgstr "Een lijst met uw contacten wordt weergegeven op uw profielpagina. Activeer deze optie om de weergave van uw contactenlijst uit te schakelen." - -#: mod/settings.php:888 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Je profiel details verbergen voor anonieme bezoekers?" - -#: mod/settings.php:888 -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 "Anonieme bezoekers zullen alleen je profiel foto zien, je naam en de bijnaam die je gebruikt op je profiel pagina. Je publieke berichten en reacties zullen nog altijd toegankelijk zijn via andere wegen." - -#: mod/settings.php:889 -msgid "Make public posts unlisted" -msgstr "Maak openbare berichten verborgen" - -#: mod/settings.php:889 -msgid "" -"Your public posts will not appear on the community pages or in search " -"results, nor be sent to relay servers. However they can still appear on " -"public feeds on remote servers." -msgstr "Je openbare berichten verschijnen niet op de communitypagina's of in de zoekresultaten en worden ook niet naar relayservers gestuurd. Ze kunnen echter nog steeds verschijnen op openbare feeds op externe servers." - -#: mod/settings.php:890 -msgid "Make all posted pictures accessible" -msgstr "Maak alle geplaatste foto's toegankelijk" - -#: mod/settings.php:890 -msgid "" -"This option makes every posted picture accessible via the direct link. This " -"is a workaround for the problem that most other networks can't handle " -"permissions on pictures. Non public pictures still won't be visible for the " -"public on your photo albums though." -msgstr "Deze optie maakt elke geplaatste foto toegankelijk via de directe link. Dit is een tijdelijke oplossing voor het probleem dat de meeste andere netwerken de rechten op afbeeldingen niet kunnen verwerken. Niet-openbare afbeeldingen zijn echter nog steeds niet zichtbaar voor het publiek in uw fotoalbums." - -#: mod/settings.php:891 -msgid "Allow friends to post to your profile page?" -msgstr "Vrienden toestaan om op jouw profielpagina te posten?" - -#: mod/settings.php:891 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "Je contacten kunnen berichten schrijven op je tijdslijn. Deze berichten zullen verspreid worden naar je contacten" - -#: mod/settings.php:892 -msgid "Allow friends to tag your posts?" -msgstr "Sta vrienden toe om jouw berichten te labelen?" - -#: mod/settings.php:892 -msgid "Your contacts can add additional tags to your posts." -msgstr "Je contacten kunnen tags toevoegen aan je berichten." - -#: mod/settings.php:893 -msgid "Permit unknown people to send you private mail?" -msgstr "Mogen onbekende personen jou privé berichten sturen?" - -#: mod/settings.php:893 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "Friendica netwerk gebruikers kunnen je privé boodschappen sturen zelfs als ze niet in je contact lijst staan." - -#: mod/settings.php:894 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" - -#: mod/settings.php:896 -msgid "Default Post Permissions" -msgstr "Standaard rechten voor nieuwe berichten" - -#: mod/settings.php:900 -msgid "Expiration settings" -msgstr "Vervalinstellingen" - -#: mod/settings.php:901 -msgid "Automatically expire posts after this many days:" -msgstr "Laat berichten automatisch vervallen na zo veel dagen:" - -#: mod/settings.php:901 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd." - -#: mod/settings.php:902 -msgid "Expire posts" -msgstr "Verlopen berichten" - -#: mod/settings.php:902 -msgid "When activated, posts and comments will be expired." -msgstr "Indien geactiveerd, zullen berichten en opmerkingen verlopen." - -#: mod/settings.php:903 -msgid "Expire personal notes" -msgstr "Verloop persoonlijke notities" - -#: mod/settings.php:903 -msgid "" -"When activated, the personal notes on your profile page will be expired." -msgstr "Indien geactiveerd, verlopen de persoonlijke notities op uw profielpagina." - -#: mod/settings.php:904 -msgid "Expire starred posts" -msgstr "Berichten met ster laten vervallen" - -#: mod/settings.php:904 -msgid "" -"Starring posts keeps them from being expired. That behaviour is overwritten " -"by this setting." -msgstr "Berichten met een ster verhinderen dat ze verlopen. Dat gedrag wordt door deze instelling overschreven." - -#: mod/settings.php:905 -msgid "Expire photos" -msgstr "Laat foto's verlopen" - -#: mod/settings.php:905 -msgid "When activated, photos will be expired." -msgstr "Wanneer geactiveerd, zullen foto's verlopen." - -#: mod/settings.php:906 -msgid "Only expire posts by others" -msgstr "Laat alleen berichten van anderen verlopen" - -#: mod/settings.php:906 -msgid "" -"When activated, your own posts never expire. Then the settings above are " -"only valid for posts you received." -msgstr "Indien geactiveerd, vervallen je eigen berichten nooit. Dan zijn bovenstaande instellingen alleen geldig voor berichten die je hebt ontvangen." - -#: mod/settings.php:909 -msgid "Notification Settings" -msgstr "Notificatie Instellingen" - -#: mod/settings.php:910 -msgid "Send a notification email when:" -msgstr "Stuur een notificatie e-mail wanneer:" - -#: mod/settings.php:911 -msgid "You receive an introduction" -msgstr "Je ontvangt een vriendschaps- of connectieverzoek" - -#: mod/settings.php:912 -msgid "Your introductions are confirmed" -msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd" - -#: mod/settings.php:913 -msgid "Someone writes on your profile wall" -msgstr "Iemand iets op je tijdlijn schrijft" - -#: mod/settings.php:914 -msgid "Someone writes a followup comment" -msgstr "Iemand een reactie schrijft" - -#: mod/settings.php:915 -msgid "You receive a private message" -msgstr "Je een privé-bericht ontvangt" - -#: mod/settings.php:916 -msgid "You receive a friend suggestion" -msgstr "Je een suggestie voor een vriendschap ontvangt" - -#: mod/settings.php:917 -msgid "You are tagged in a post" -msgstr "Je expliciet in een bericht bent genoemd" - -#: mod/settings.php:918 -msgid "You are poked/prodded/etc. in a post" -msgstr "Je in een bericht bent aangestoten/gepord/etc." - -#: mod/settings.php:920 -msgid "Activate desktop notifications" -msgstr "Activeer desktop notificaties" - -#: mod/settings.php:920 -msgid "Show desktop popup on new notifications" -msgstr "Toon desktop pop-up bij nieuwe notificaties" - -#: mod/settings.php:922 -msgid "Text-only notification emails" -msgstr "Alleen-tekst notificatie emails" - -#: mod/settings.php:924 -msgid "Send text only notification emails, without the html part" -msgstr "Stuur alleen-tekst notificatie emails, zonder het html gedeelte" - -#: mod/settings.php:926 -msgid "Show detailled notifications" -msgstr "Toon gedetailleerde notificaties" - -#: mod/settings.php:928 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "Standaard worden notificaties samengevoegd in een enkele notificatie per item. Als je deze parameter activeert wordt elke notificatie getoond." - -#: mod/settings.php:930 -msgid "Advanced Account/Page Type Settings" -msgstr "Geavanceerde Account/Pagina Type Instellingen" - -#: mod/settings.php:931 -msgid "Change the behaviour of this account for special situations" -msgstr "Pas het gedrag van dit account aan voor speciale situaties" - -#: mod/settings.php:934 -msgid "Import Contacts" -msgstr "Importeer contacten" - -#: mod/settings.php:935 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "Upload een CSV-bestand met de handle van uw gevolgde gebruikers in de eerste kolom die u uit de oude gebruiker hebt geëxporteerd." - -#: mod/settings.php:936 -msgid "Upload File" -msgstr "Upload bestand" - -#: mod/settings.php:938 -msgid "Relocate" -msgstr "Verhuis" - -#: mod/settings.php:939 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "Als je je profiel van een andere server hebt verhuisd, en er zijn contacten die geen updates van je ontvangen, probeer dan eens deze knop." - -#: mod/settings.php:940 -msgid "Resend relocate message to contacts" -msgstr "Stuur verhuis boodschap naar contacten" - -#: mod/message.php:47 mod/message.php:128 src/Content/Nav.php:276 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 msgid "New Message" msgstr "Nieuw Bericht" -#: mod/message.php:88 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 +msgid "No recipient selected." +msgstr "Geen ontvanger geselecteerd." + +#: mod/message.php:87 msgid "Unable to locate contact information." msgstr "Ik kan geen contact informatie vinden." -#: mod/message.php:122 src/Module/Notifications/Notification.php:56 -#: src/Module/Notifications/Introductions.php:111 -#: src/Module/Notifications/Introductions.php:149 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 +msgid "Message could not be sent." +msgstr "Bericht kon niet verzonden worden." + +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 +msgid "Message collection failure." +msgstr "Fout bij het verzamelen van berichten." + +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 msgid "Discard" msgstr "Verwerpen" -#: mod/message.php:135 view/theme/frio/theme.php:234 src/Content/Nav.php:273 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" msgstr "Privéberichten" -#: mod/message.php:160 -msgid "Do you really want to delete this message?" -msgstr "Wil je echt dit bericht verwijderen?" - -#: mod/message.php:178 +#: mod/message.php:148 msgid "Conversation not found." msgstr "Gesprek niet gevonden." -#: mod/message.php:183 +#: mod/message.php:153 msgid "Message was not deleted." msgstr "Bericht was niet gewist." -#: mod/message.php:201 +#: mod/message.php:168 msgid "Conversation was not removed." msgstr "Conversatie was niet verwijderd." -#: mod/message.php:264 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 +msgid "Please enter a link URL:" +msgstr "Vul een internetadres/URL in:" + +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 +msgid "Send Private Message" +msgstr "Verstuur privébericht" + +#: mod/message.php:191 mod/message.php:346 +msgid "To:" +msgstr "Aan:" + +#: mod/message.php:192 mod/message.php:347 +msgid "Subject:" +msgstr "Onderwerp:" + +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 +msgid "Your message:" +msgstr "Jouw bericht:" + +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "Foto uploaden" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "Voeg een webadres in" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:578 +msgid "Please wait" +msgstr "Even geduld" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:145 +#: src/Module/Install.php:234 src/Module/Install.php:274 +#: src/Module/Install.php:309 src/Module/Invite.php:178 +#: src/Module/Item/Compose.php:189 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Object/Post.php:1095 +#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171 +#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Verstuur" + +#: mod/message.php:223 msgid "No messages." msgstr "Geen berichten." -#: mod/message.php:321 +#: mod/message.php:279 msgid "Message not available." msgstr "Bericht niet beschikbaar." -#: mod/message.php:371 +#: mod/message.php:323 msgid "Delete message" msgstr "Verwijder bericht" -#: mod/message.php:373 mod/message.php:500 +#: mod/message.php:325 mod/message.php:456 msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:i A" -#: mod/message.php:388 mod/message.php:497 +#: mod/message.php:340 mod/message.php:453 msgid "Delete conversation" msgstr "Verwijder gesprek" -#: mod/message.php:390 +#: mod/message.php:342 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender." -#: mod/message.php:394 +#: mod/message.php:345 msgid "Send Reply" msgstr "Verstuur Antwoord" -#: mod/message.php:476 +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "Onbekende afzender - %s" -#: mod/message.php:478 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "Jij en %s" -#: mod/message.php:480 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "%s en jij" -#: mod/message.php:503 +#: mod/message.php:459 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d bericht" msgstr[1] "%d berichten" -#: view/theme/duepuntozero/config.php:52 -msgid "default" -msgstr "standaard" +#: mod/notes.php:52 src/Module/BaseProfile.php:108 +msgid "Personal Notes" +msgstr "Persoonlijke Nota's" -#: view/theme/duepuntozero/config.php:53 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:54 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:55 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:56 -msgid "darkzero" -msgstr "darkzero" - -#: 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:70 view/theme/frio/config.php:161 -#: view/theme/quattro/config.php:72 view/theme/vier/config.php:120 -#: src/Module/Settings/Display.php:189 -msgid "Theme settings" -msgstr "Thema-instellingen" - -#: view/theme/duepuntozero/config.php:71 -msgid "Variations" -msgstr "Variaties" - -#: view/theme/frio/php/Image.php:40 -msgid "Top Banner" -msgstr "Banner Bovenaan" - -#: 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 "Pas het beeld aan aan de breedte van het scherm en toon achtergrondkleur onder lange pagina's" - -#: view/theme/frio/php/Image.php:41 -msgid "Full screen" -msgstr "Volledig scherm" - -#: view/theme/frio/php/Image.php:41 -msgid "" -"Resize image to fill entire screen, clipping either the right or the bottom." -msgstr "Pas het beeld aan om het hele scherm te vullen, met ofwel de rechter- of de onderkant afgeknipt." - -#: view/theme/frio/php/Image.php:42 -msgid "Single row mosaic" -msgstr "Enkele rij mozaïek" - -#: view/theme/frio/php/Image.php:42 -msgid "" -"Resize image to repeat it on a single row, either vertical or horizontal." -msgstr "Pas het beeld aan zodat het herhaald wordt op een enkele rij, ofwel vertikaal ofwel horizontaal" - -#: view/theme/frio/php/Image.php:43 -msgid "Mosaic" -msgstr "Mozaïek" - -#: view/theme/frio/php/Image.php:43 -msgid "Repeat image to fill the screen." -msgstr "Herhaal beeld om het scherm te vullen." - -#: view/theme/frio/php/standard.php:38 view/theme/frio/php/default.php:81 -msgid "Skip to main content" -msgstr "Ga naar hoofdinhoud" - -#: view/theme/frio/config.php:142 -msgid "Light (Accented)" +#: mod/notes.php:56 +msgid "Personal notes are visible only by yourself." msgstr "" -#: view/theme/frio/config.php:143 -msgid "Dark (Accented)" -msgstr "" - -#: view/theme/frio/config.php:144 -msgid "Black (Accented)" -msgstr "" - -#: view/theme/frio/config.php:156 -msgid "Note" -msgstr "Nota" - -#: view/theme/frio/config.php:156 -msgid "Check image permissions if all users are allowed to see the image" -msgstr "Controleer of alle gebruikers permissie hebben om het beeld te zien " - -#: view/theme/frio/config.php:162 -msgid "Custom" -msgstr "Aangepast" - -#: view/theme/frio/config.php:163 -msgid "Legacy" -msgstr "" - -#: view/theme/frio/config.php:164 -msgid "Accented" -msgstr "" - -#: view/theme/frio/config.php:165 -msgid "Select color scheme" -msgstr "Selecteer kleurschema" - -#: view/theme/frio/config.php:166 -msgid "Select scheme accent" -msgstr "" - -#: view/theme/frio/config.php:166 -msgid "Blue" -msgstr "" - -#: view/theme/frio/config.php:166 -msgid "Red" -msgstr "" - -#: view/theme/frio/config.php:166 -msgid "Purple" -msgstr "" - -#: view/theme/frio/config.php:166 -msgid "Green" -msgstr "" - -#: view/theme/frio/config.php:166 -msgid "Pink" -msgstr "" - -#: view/theme/frio/config.php:167 -msgid "Copy or paste schemestring" -msgstr "Kopieer of plak schemastring" - -#: view/theme/frio/config.php:167 -msgid "" -"You can copy this string to share your theme with others. Pasting here " -"applies the schemestring" -msgstr "Je kan deze string kopiëren om uw je kleurenschema met anderen te delen. Een schemastring plakken past deze toe." - -#: view/theme/frio/config.php:168 -msgid "Navigation bar background color" -msgstr "Navigatie balk achtergrondkleur" - -#: view/theme/frio/config.php:169 -msgid "Navigation bar icon color " -msgstr "Navigatie balk icoon kleur" - -#: view/theme/frio/config.php:170 -msgid "Link color" -msgstr "Link kleur" - -#: view/theme/frio/config.php:171 -msgid "Set the background color" -msgstr "Stel de achtergrondkleur in" - -#: view/theme/frio/config.php:172 -msgid "Content background opacity" -msgstr "Content achtergrond opaciteit" - -#: view/theme/frio/config.php:173 -msgid "Set the background image" -msgstr "Stel het achtergrondbeeld in" - -#: view/theme/frio/config.php:174 -msgid "Background image style" -msgstr "Achtergrond beeld stijl" - -#: view/theme/frio/config.php:179 -msgid "Login page background image" -msgstr "Achtergrondafbeelding aanmeldpagina" - -#: view/theme/frio/config.php:183 -msgid "Login page background color" -msgstr "Achtergrondkleur aanmeldpagina" - -#: view/theme/frio/config.php:183 -msgid "Leave background image and color empty for theme defaults" -msgstr "Laat de achtergrondafbeelding en kleur leeg om de standaard van het thema te gebruiken" - -#: view/theme/frio/theme.php:207 -msgid "Guest" -msgstr "Gast" - -#: view/theme/frio/theme.php:210 -msgid "Visitor" -msgstr "Bezoeker" - -#: view/theme/frio/theme.php:225 src/Content/Nav.php:177 -#: src/Module/Settings/TwoFactor/Index.php:107 src/Module/BaseProfile.php:60 -#: src/Module/Contact.php:635 src/Module/Contact.php:888 -msgid "Status" -msgstr "Tijdlijn" - -#: view/theme/frio/theme.php:225 src/Content/Nav.php:177 -#: src/Content/Nav.php:263 -msgid "Your posts and conversations" -msgstr "Jouw berichten en gesprekken" - -#: view/theme/frio/theme.php:226 src/Content/Nav.php:178 -#: src/Module/Profile/Profile.php:236 src/Module/BaseProfile.php:52 -#: src/Module/BaseSettings.php:57 src/Module/Welcome.php:57 -#: src/Module/Contact.php:637 src/Module/Contact.php:904 -msgid "Profile" -msgstr "Profiel" - -#: view/theme/frio/theme.php:226 src/Content/Nav.php:178 -msgid "Your profile page" -msgstr "Jouw profiel pagina" - -#: view/theme/frio/theme.php:227 src/Content/Nav.php:179 -msgid "Your photos" -msgstr "Jouw foto's" - -#: view/theme/frio/theme.php:228 src/Content/Nav.php:180 -#: src/Module/BaseProfile.php:76 src/Module/BaseProfile.php:79 -msgid "Videos" -msgstr "Video's" - -#: view/theme/frio/theme.php:228 src/Content/Nav.php:180 -msgid "Your videos" -msgstr "Je video's" - -#: view/theme/frio/theme.php:229 src/Content/Nav.php:181 -msgid "Your events" -msgstr "Jouw gebeurtenissen" - -#: view/theme/frio/theme.php:232 src/Content/Nav.php:261 -msgid "Network" -msgstr "Netwerk" - -#: view/theme/frio/theme.php:232 src/Content/Nav.php:261 -msgid "Conversations from your friends" -msgstr "Gesprekken van je vrienden" - -#: view/theme/frio/theme.php:233 src/Content/Nav.php:248 -#: src/Module/BaseProfile.php:91 src/Module/BaseProfile.php:102 -msgid "Events and Calendar" -msgstr "Gebeurtenissen en kalender" - -#: view/theme/frio/theme.php:234 src/Content/Nav.php:273 -msgid "Private mail" -msgstr "Privéberichten" - -#: view/theme/frio/theme.php:235 src/Content/Nav.php:282 -#: src/Module/Admin/Addons/Details.php:119 -#: src/Module/Admin/Themes/Details.php:124 src/Module/BaseSettings.php:124 -#: src/Module/Welcome.php:52 -msgid "Settings" -msgstr "Instellingen" - -#: view/theme/frio/theme.php:235 src/Content/Nav.php:282 -msgid "Account settings" -msgstr "Account instellingen" - -#: view/theme/frio/theme.php:236 src/Content/Text/HTML.php:913 -#: src/Content/Nav.php:225 src/Content/Nav.php:284 -#: src/Module/BaseProfile.php:121 src/Module/BaseProfile.php:124 -#: src/Module/Contact.php:823 src/Module/Contact.php:911 -msgid "Contacts" -msgstr "Contacten" - -#: view/theme/frio/theme.php:236 src/Content/Nav.php:284 -msgid "Manage/edit friends and contacts" -msgstr "Beheer/Wijzig vrienden en contacten" - -#: view/theme/quattro/config.php:73 -msgid "Alignment" -msgstr "Uitlijning" - -#: view/theme/quattro/config.php:73 -msgid "Left" -msgstr "Links" - -#: view/theme/quattro/config.php:73 -msgid "Center" -msgstr "Gecentreerd" - -#: view/theme/quattro/config.php:74 -msgid "Color scheme" -msgstr "Kleurschema" - -#: view/theme/quattro/config.php:75 -msgid "Posts font size" -msgstr "Lettergrootte berichten" - -#: view/theme/quattro/config.php:76 -msgid "Textareas font size" -msgstr "Lettergrootte tekstgebieden" - -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" -msgstr "Kommagescheiden lijst van de helper forums" - -#: view/theme/vier/config.php:115 -msgid "don't show" -msgstr "niet tonen" - -#: view/theme/vier/config.php:115 -msgid "show" -msgstr "tonen" - -#: view/theme/vier/config.php:121 -msgid "Set style" -msgstr "Stijl instellen" - -#: view/theme/vier/config.php:122 -msgid "Community Pages" -msgstr "Forum/groepspagina's" - -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:124 -msgid "Community Profiles" -msgstr "Forum/groepsprofielen" - -#: view/theme/vier/config.php:124 -msgid "Help or @NewHere ?" -msgstr "Help of @NewHere ?" - -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:337 -msgid "Connect Services" -msgstr "Diensten verbinden" - -#: view/theme/vier/config.php:126 -msgid "Find Friends" -msgstr "Zoek vrienden" - -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:151 -msgid "Last users" -msgstr "Laatste gebruikers" - -#: view/theme/vier/theme.php:169 src/Content/Widget.php:77 -msgid "Find People" -msgstr "Zoek mensen" - -#: view/theme/vier/theme.php:170 src/Content/Widget.php:78 -msgid "Enter name or interest" -msgstr "Vul naam of interesse in" - -#: view/theme/vier/theme.php:172 src/Content/Widget.php:80 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Voorbeelden: Jan Peeters, Vissen" - -#: view/theme/vier/theme.php:173 src/Content/Widget.php:81 -#: src/Module/Directory.php:105 src/Module/Contact.php:844 -msgid "Find" -msgstr "Zoek" - -#: view/theme/vier/theme.php:175 src/Content/Widget.php:83 -msgid "Similar Interests" -msgstr "Dezelfde interesses" - -#: view/theme/vier/theme.php:176 src/Content/Widget.php:84 -msgid "Random Profile" -msgstr "Willekeurig Profiel" - -#: view/theme/vier/theme.php:177 src/Content/Widget.php:85 -msgid "Invite Friends" -msgstr "Vrienden uitnodigen" - -#: view/theme/vier/theme.php:178 src/Content/Widget.php:86 -#: src/Module/Directory.php:97 -msgid "Global Directory" -msgstr "Globale gids" - -#: view/theme/vier/theme.php:180 src/Content/Widget.php:88 -msgid "Local Directory" -msgstr "Lokale gids" - -#: view/theme/vier/theme.php:220 src/Content/Text/HTML.php:917 -#: src/Content/ForumManager.php:144 src/Content/Nav.php:229 -msgid "Forums" -msgstr "Forums" - -#: view/theme/vier/theme.php:222 src/Content/ForumManager.php:146 -msgid "External link to forum" -msgstr "Externe link naar het forum" - -#: view/theme/vier/theme.php:225 src/Content/ForumManager.php:149 -#: src/Content/Widget.php:428 src/Content/Widget.php:523 -msgid "show more" -msgstr "toon meer" - -#: view/theme/vier/theme.php:252 -msgid "Quick Start" -msgstr "Snelstart" - -#: view/theme/vier/theme.php:258 src/Content/Nav.php:212 -#: src/Module/Settings/TwoFactor/AppSpecific.php:115 -#: src/Module/Settings/TwoFactor/Index.php:106 -#: src/Module/Settings/TwoFactor/Recovery.php:93 -#: src/Module/Settings/TwoFactor/Verify.php:132 src/Module/Help.php:69 -msgid "Help" -msgstr "Help" - -#: src/Core/L10n.php:371 src/Model/Event.php:413 -#: src/Module/Settings/Display.php:174 -msgid "Monday" -msgstr "Maandag" - -#: src/Core/L10n.php:371 src/Model/Event.php:414 -msgid "Tuesday" -msgstr "Dinsdag" - -#: src/Core/L10n.php:371 src/Model/Event.php:415 -msgid "Wednesday" -msgstr "Woensdag" - -#: src/Core/L10n.php:371 src/Model/Event.php:416 -msgid "Thursday" -msgstr "Donderdag" - -#: src/Core/L10n.php:371 src/Model/Event.php:417 -msgid "Friday" -msgstr "Vrijdag" - -#: src/Core/L10n.php:371 src/Model/Event.php:418 -msgid "Saturday" -msgstr "Zaterdag" - -#: src/Core/L10n.php:371 src/Model/Event.php:412 -#: src/Module/Settings/Display.php:174 -msgid "Sunday" -msgstr "Zondag" - -#: src/Core/L10n.php:375 src/Model/Event.php:433 -msgid "January" -msgstr "Januari" - -#: src/Core/L10n.php:375 src/Model/Event.php:434 -msgid "February" -msgstr "Februari" - -#: src/Core/L10n.php:375 src/Model/Event.php:435 -msgid "March" -msgstr "Maart" - -#: src/Core/L10n.php:375 src/Model/Event.php:436 -msgid "April" -msgstr "April" - -#: src/Core/L10n.php:375 src/Core/L10n.php:395 src/Model/Event.php:424 -msgid "May" -msgstr "Mei" - -#: src/Core/L10n.php:375 src/Model/Event.php:437 -msgid "June" -msgstr "Juni" - -#: src/Core/L10n.php:375 src/Model/Event.php:438 -msgid "July" -msgstr "Juli" - -#: src/Core/L10n.php:375 src/Model/Event.php:439 -msgid "August" -msgstr "Augustus" - -#: src/Core/L10n.php:375 src/Model/Event.php:440 -msgid "September" -msgstr "September" - -#: src/Core/L10n.php:375 src/Model/Event.php:441 -msgid "October" -msgstr "Oktober" - -#: src/Core/L10n.php:375 src/Model/Event.php:442 -msgid "November" -msgstr "November" - -#: src/Core/L10n.php:375 src/Model/Event.php:443 -msgid "December" -msgstr "December" - -#: src/Core/L10n.php:391 src/Model/Event.php:405 -msgid "Mon" -msgstr "Maa" - -#: src/Core/L10n.php:391 src/Model/Event.php:406 -msgid "Tue" -msgstr "Din" - -#: src/Core/L10n.php:391 src/Model/Event.php:407 -msgid "Wed" -msgstr "Woe" - -#: src/Core/L10n.php:391 src/Model/Event.php:408 -msgid "Thu" -msgstr "Don" - -#: src/Core/L10n.php:391 src/Model/Event.php:409 -msgid "Fri" -msgstr "Vrij" - -#: src/Core/L10n.php:391 src/Model/Event.php:410 -msgid "Sat" -msgstr "Zat" - -#: src/Core/L10n.php:391 src/Model/Event.php:404 -msgid "Sun" -msgstr "Zon" - -#: src/Core/L10n.php:395 src/Model/Event.php:420 -msgid "Jan" -msgstr "Jan" - -#: src/Core/L10n.php:395 src/Model/Event.php:421 -msgid "Feb" -msgstr "Feb" - -#: src/Core/L10n.php:395 src/Model/Event.php:422 -msgid "Mar" -msgstr "Maa" - -#: src/Core/L10n.php:395 src/Model/Event.php:423 -msgid "Apr" -msgstr "Apr" - -#: src/Core/L10n.php:395 src/Model/Event.php:425 -msgid "Jun" -msgstr "Jun" - -#: src/Core/L10n.php:395 src/Model/Event.php:426 -msgid "Jul" -msgstr "Jul" - -#: src/Core/L10n.php:395 src/Model/Event.php:427 -msgid "Aug" -msgstr "Aug" - -#: src/Core/L10n.php:395 -msgid "Sep" -msgstr "Sep" - -#: src/Core/L10n.php:395 src/Model/Event.php:429 -msgid "Oct" -msgstr "Okt" - -#: src/Core/L10n.php:395 src/Model/Event.php:430 -msgid "Nov" -msgstr "Nov" - -#: src/Core/L10n.php:395 src/Model/Event.php:431 -msgid "Dec" -msgstr "Dec" - -#: src/Core/L10n.php:414 -msgid "poke" -msgstr "por" - -#: src/Core/L10n.php:414 -msgid "poked" -msgstr "porde" - -#: src/Core/L10n.php:415 -msgid "ping" -msgstr "ping" - -#: src/Core/L10n.php:415 -msgid "pinged" -msgstr "gepingd" - -#: src/Core/L10n.php:416 -msgid "prod" -msgstr "porren" - -#: src/Core/L10n.php:416 -msgid "prodded" -msgstr "gepord" - -#: src/Core/L10n.php:417 -msgid "slap" -msgstr "slaan" - -#: src/Core/L10n.php:417 -msgid "slapped" -msgstr "geslagen" - -#: src/Core/L10n.php:418 -msgid "finger" -msgstr "finger" - -#: src/Core/L10n.php:418 -msgid "fingered" -msgstr "gerfingerd" - -#: src/Core/L10n.php:419 -msgid "rebuff" -msgstr "afpoeieren" - -#: src/Core/L10n.php:419 -msgid "rebuffed" -msgstr "afgepoeierd" - -#: src/Core/Renderer.php:91 src/Core/Renderer.php:120 -#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 -#: src/Render/FriendicaSmartyEngine.php:56 -msgid "" -"Friendica can't display this page at the moment, please contact the " -"administrator." -msgstr "Friendica kan deze pagina momenteel niet weergeven, neem contact op met de beheerder." - -#: src/Core/Renderer.php:143 -msgid "template engine cannot be registered without a name." -msgstr "" - -#: src/Core/Renderer.php:177 -msgid "template engine is not registered!" -msgstr "" - -#: src/Core/UserImport.php:126 -msgid "Error decoding account file" -msgstr "Fout bij decoderen van het account bestand" - -#: src/Core/UserImport.php:132 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Fout! Geen versie data in het bestand! Is dit wel een Friendica account bestand?" - -#: src/Core/UserImport.php:140 +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 +msgid "Save" +msgstr "Bewaren" + +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "Gebruiker niet gevonden." + +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 +msgid "Photo Albums" +msgstr "Fotoalbums" + +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 +msgid "Recent Photos" +msgstr "Recente foto's" + +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" + +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 +msgid "everybody" +msgstr "iedereen" + +#: mod/photos.php:159 +msgid "Contact information unavailable" +msgstr "Contactinformatie niet beschikbaar" + +#: mod/photos.php:188 +msgid "Album not found." +msgstr "Album niet gevonden" + +#: mod/photos.php:244 +msgid "Album successfully deleted" +msgstr "Album succesvol gedeeld" + +#: mod/photos.php:246 +msgid "Album was empty." +msgstr "Het album was leeg" + +#: mod/photos.php:277 +msgid "Failed to delete the photo." +msgstr "Foto verwijderen mislukt." + +#: mod/photos.php:545 +msgid "a photo" +msgstr "een foto" + +#: mod/photos.php:545 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "Gebruiker '%s' bestaat al op deze server!" +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s is gelabeld in %2$s door %3$s" -#: src/Core/UserImport.php:176 -msgid "User creation error" -msgstr "Fout bij het aanmaken van de gebruiker" +#: mod/photos.php:582 src/Module/Conversation/Community.php:159 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Niet vrij toegankelijk" -#: src/Core/UserImport.php:221 +#: mod/photos.php:587 +msgid "No photos selected" +msgstr "Geen foto's geselecteerd" + +#: mod/photos.php:721 #, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contact werd niet geïmporteerd" -msgstr[1] "%d contacten werden niet geïmporteerd" - -#: src/Core/UserImport.php:274 -msgid "User profile creation error" -msgstr "Fout bij het aanmaken van het gebruikersprofiel" - -#: src/Core/UserImport.php:330 -msgid "Done. You can now login with your username and password" -msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord" - -#: 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 "Het databaseconfiguratiebestand \"config/local.config.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver. " - -#: src/Core/Installer.php:198 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql." - -#: src/Core/Installer.php:199 src/Module/Install.php:191 -msgid "Please see the file \"doc/INSTALL.md\"." +msgid "The maximum accepted image size is %s" msgstr "" -#: src/Core/Installer.php:260 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver." +#: mod/photos.php:728 +msgid "Upload Photos" +msgstr "Upload foto's" -#: src/Core/Installer.php:261 +#: mod/photos.php:732 mod/photos.php:820 +msgid "New album name: " +msgstr "Nieuwe albumnaam: " + +#: mod/photos.php:733 +msgid "or select existing album:" +msgstr "Of selecteer bestaand album:" + +#: mod/photos.php:734 +msgid "Do not show a status post for this upload" +msgstr "Toon geen bericht op je tijdlijn van deze upload" + +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "Rechten" + +#: mod/photos.php:801 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?" + +#: mod/photos.php:802 mod/photos.php:825 +msgid "Delete Album" +msgstr "Verwijder album" + +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Annuleren" + +#: mod/photos.php:829 +msgid "Edit Album" +msgstr "Album wijzigen" + +#: mod/photos.php:830 +msgid "Drop Album" +msgstr "Album verwijderen" + +#: mod/photos.php:834 +msgid "Show Newest First" +msgstr "Toon niewste eerst" + +#: mod/photos.php:836 +msgid "Show Oldest First" +msgstr "Toon oudste eerst" + +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +msgid "View Photo" +msgstr "Bekijk foto" + +#: mod/photos.php:889 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt." + +#: mod/photos.php:891 +msgid "Photo not available" +msgstr "Foto is niet beschikbaar" + +#: mod/photos.php:901 +msgid "Do you really want to delete this photo?" +msgstr "Wil je echt deze foto verwijderen?" + +#: mod/photos.php:902 mod/photos.php:1102 +msgid "Delete Photo" +msgstr "Verwijder foto" + +#: mod/photos.php:1000 +msgid "View photo" +msgstr "Bekijk foto" + +#: mod/photos.php:1002 +msgid "Edit photo" +msgstr "Bewerk foto" + +#: mod/photos.php:1003 +msgid "Delete photo" +msgstr "Foto verwijderen" + +#: mod/photos.php:1004 +msgid "Use as profile photo" +msgstr "Gebruik als profielfoto" + +#: mod/photos.php:1011 +msgid "Private Photo" +msgstr "Privé foto" + +#: mod/photos.php:1017 +msgid "View Full Size" +msgstr "Bekijk in volledig formaat" + +#: mod/photos.php:1070 +msgid "Tags: " +msgstr "Labels: " + +#: mod/photos.php:1073 +msgid "[Select tags to remove]" +msgstr "[Selecteer tags om te verwijderen]" + +#: mod/photos.php:1088 +msgid "New album name" +msgstr "Nieuwe albumnaam" + +#: mod/photos.php:1089 +msgid "Caption" +msgstr "Onderschrift" + +#: mod/photos.php:1090 +msgid "Add a Tag" +msgstr "Een label toevoegen" + +#: mod/photos.php:1090 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'" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping " + +#: mod/photos.php:1091 +msgid "Do not rotate" +msgstr "Niet roteren" + +#: mod/photos.php:1092 +msgid "Rotate CW (right)" +msgstr "Roteren met de klok mee (rechts)" + +#: mod/photos.php:1093 +msgid "Rotate CCW (left)" +msgstr "Roteren tegen de klok in (links)" + +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1092 +msgid "This is you" +msgstr "Dit ben jij" + +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:572 +#: src/Object/Post.php:1094 +msgid "Comment" +msgstr "Reacties" + +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1108 +msgid "Preview" +msgstr "Voorvertoning" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1096 +msgid "Loading..." +msgstr "Aan het laden..." + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:260 +msgid "Select" +msgstr "Kies" + +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 +msgid "Delete" +msgstr "Verwijder" + +#: mod/photos.php:1298 src/Object/Post.php:408 +msgid "Like" msgstr "" -#: src/Core/Installer.php:266 -msgid "PHP executable path" -msgstr "PATH van het PHP commando" +#: mod/photos.php:1299 src/Object/Post.php:408 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" -#: src/Core/Installer.php:266 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Vul het volledige pad in naar het php programma. Je kunt dit leeg laten om de installatie verder te zetten." - -#: src/Core/Installer.php:271 -msgid "Command line PHP" -msgstr "PHP-opdrachtregel" - -#: src/Core/Installer.php:280 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "PHP uitvoerbaar bestand is niet de php cli binary (zou kunnen de cgi-fgci versie zijn)" - -#: src/Core/Installer.php:281 -msgid "Found PHP version: " -msgstr "Gevonden PHP versie:" - -#: src/Core/Installer.php:283 -msgid "PHP cli binary" -msgstr "PHP cli binary" - -#: src/Core/Installer.php:296 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd." - -#: src/Core/Installer.php:297 -msgid "This is required for message delivery to work." -msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken." - -#: 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 "Fout: de \"openssl_pkey_new\" functie op dit systeem kan geen encryptie sleutels genereren" - -#: src/Core/Installer.php:335 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait." - -#: src/Core/Installer.php:338 -msgid "Generate encryption keys" -msgstr "Genereer encryptie sleutels" - -#: src/Core/Installer.php:390 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd." - -#: src/Core/Installer.php:395 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" - -#: src/Core/Installer.php:401 -msgid "Error: PDO or MySQLi PHP module required but not installed." -msgstr "Fout: PDO of MySQLi PHP module vereist maar niet geïnstalleerd." - -#: src/Core/Installer.php:406 -msgid "Error: The MySQL driver for PDO is not installed." -msgstr "Fout: de MySQL driver voor PDO is niet geïnstalleerd." - -#: src/Core/Installer.php:410 -msgid "PDO or MySQLi PHP module" -msgstr "PDO of MySQLi PHP module" - -#: src/Core/Installer.php:418 -msgid "Error, XML PHP module required but not installed." -msgstr "Fout: XML PHP module vereist maar niet geinstalleerd." - -#: src/Core/Installer.php:422 -msgid "XML PHP module" -msgstr "XML PHP module" - -#: src/Core/Installer.php:425 -msgid "libCurl PHP module" -msgstr "libCurl PHP module" - -#: src/Core/Installer.php:426 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd." - -#: src/Core/Installer.php:432 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP module" - -#: src/Core/Installer.php:433 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd." - -#: src/Core/Installer.php:439 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP module" - -#: src/Core/Installer.php:440 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd." - -#: src/Core/Installer.php:446 -msgid "mb_string PHP module" -msgstr "mb_string PHP module" - -#: src/Core/Installer.php:447 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd." - -#: src/Core/Installer.php:453 -msgid "iconv PHP module" -msgstr "iconv PHP module" - -#: src/Core/Installer.php:454 -msgid "Error: iconv PHP module required but not installed." -msgstr "Fout: iconv PHP module vereist maar niet geïnstalleerd." - -#: src/Core/Installer.php:460 -msgid "POSIX PHP module" -msgstr "POSIX PHP module" - -#: src/Core/Installer.php:461 -msgid "Error: POSIX PHP module required but not installed." -msgstr "Fout: POSIX PHP module vereist maar niet geïnstalleerd." - -#: src/Core/Installer.php:467 -msgid "JSON PHP module" +#: mod/photos.php:1300 src/Object/Post.php:409 +msgid "Dislike" msgstr "" -#: src/Core/Installer.php:468 -msgid "Error: JSON PHP module required but not installed." +#: mod/photos.php:1302 src/Object/Post.php:409 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" + +#: mod/photos.php:1324 +msgid "Map" +msgstr "Kaart" + +#: src/App.php:473 +msgid "No system theme config value set." +msgstr "Geen systeem thema configuratie ingesteld." + +#: src/App.php:580 +msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/Core/Installer.php:474 -msgid "File Information PHP module" +#: src/App/Page.php:248 +msgid "Delete this item?" +msgstr "Dit item verwijderen?" + +#: src/App/Page.php:249 +msgid "" +"Block this author? They won't be able to follow you nor see your public " +"posts, and you won't be able to see their posts and their notifications." msgstr "" -#: src/Core/Installer.php:475 -msgid "Error: File Information PHP module required but not installed." +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." msgstr "" -#: src/Core/Installer.php:498 +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 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 "Het installatieprogramma moet een bestand \"local.config.php\" in de \"config\" map van je webserver aanmaken, maar kan dit niet doen. " +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "" -#: src/Core/Installer.php:499 +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "" + +#: src/App/Page.php:265 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 "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel." +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "" -#: src/Core/Installer.php:500 +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "" + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "" + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "" + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "" + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "" + +#: src/App/Page.php:351 +msgid "toggle mobile" +msgstr "mobiel thema omwisselen" + +#: src/App/Router.php:309 +#, php-format +msgid "Method not allowed for this module. Allowed method(s): %s" +msgstr "" + +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +msgid "Page not found." +msgstr "Pagina niet gevonden" + +#: src/App/Router.php:323 +msgid "You must be logged in to use addons. " +msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. " + +#: src/BaseModule.php:401 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 "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand local.config.php in Friendica \"config\" map. " +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "De beveiligingstoken van het formulier was foutief. Dit gebeurde waarschijnlijk omdat het formulier te lang (> 3 uur) is blijven open staan voor het werd verstuurd." -#: src/Core/Installer.php:501 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies." +#: src/BaseModule.php:428 +msgid "All contacts" +msgstr "Alle contacten" -#: src/Core/Installer.php:504 -msgid "config/local.config.php is writable" -msgstr "config/local.config.php is schrijfbaar " - -#: src/Core/Installer.php:524 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen." - -#: src/Core/Installer.php:525 -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 "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie." - -#: src/Core/Installer.php:526 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map." - -#: src/Core/Installer.php:527 -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 "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten." - -#: src/Core/Installer.php:530 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 is schrijfbaar" - -#: src/Core/Installer.php:559 -msgid "" -"Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist" -" to .htaccess." -msgstr "Url rewrite in .htaccess werkt niet. Heb je .htaccess-dist gekopieerd naar .htaccess?" - -#: src/Core/Installer.php:561 -msgid "Error message from Curl when fetching" -msgstr "Fout boodschap van Curl bij ophalen" - -#: src/Core/Installer.php:566 -msgid "Url rewrite is working" -msgstr "Url rewrite werkt correct" - -#: src/Core/Installer.php:595 -msgid "ImageMagick PHP extension is not installed" -msgstr "ImageMagick PHP extensie is niet geïnstalleerd" - -#: src/Core/Installer.php:597 -msgid "ImageMagick PHP extension is installed" -msgstr "ImageMagick PHP extensie is geïnstalleerd" - -#: src/Core/Installer.php:599 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick ondersteunt GIF" - -#: src/Core/Installer.php:621 -msgid "Database already in use." -msgstr "Database al in gebruik." - -#: src/Core/Installer.php:626 -msgid "Could not connect to database." -msgstr "Kon geen toegang krijgen tot de database." - -#: src/Core/ACL.php:132 -msgid "Yourself" -msgstr "Jezelf" - -#: src/Core/ACL.php:161 src/Content/Widget.php:241 -#: src/Module/PermissionTooltip.php:76 src/Module/PermissionTooltip.php:98 -#: src/Module/Contact.php:820 src/BaseModule.php:184 +#: src/BaseModule.php:433 src/Content/Conversation/Factory/Timeline.php:62 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 msgid "Followers" msgstr "Volgers" -#: src/Core/ACL.php:168 src/Module/PermissionTooltip.php:82 -#: src/Module/PermissionTooltip.php:104 -msgid "Mutuals" -msgstr "Gemeenschappelijk" +#: src/BaseModule.php:438 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 +msgid "Following" +msgstr "Volgend" -#: src/Core/ACL.php:258 -msgid "Post to Email" -msgstr "Verzenden per e-mail" +#: src/BaseModule.php:443 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 +msgid "Mutual friends" +msgstr "Gemeenschappelijke vrienden" -#: src/Core/ACL.php:285 -msgid "Public" -msgstr "Openbaar" +#: src/BaseModule.php:451 +msgid "Common" +msgstr "Algemeen" -#: src/Core/ACL.php:286 -msgid "" -"This content will be shown to all your followers and can be seen in the " -"community pages and by anyone with its link." -msgstr "Deze inhoud wordt aan al uw volgers getoond en is te zien op de communitypagina's en door iedereen met de link." - -#: src/Core/ACL.php:287 -msgid "Limited/Private" -msgstr "Beperkt/Privé" - -#: src/Core/ACL.php:288 -msgid "" -"This content will be shown only to the people in the first box, to the " -"exception of the people mentioned in the second box. It won't appear " -"anywhere public." -msgstr "Deze inhoud wordt alleen getoond aan de mensen in het eerste vak, met uitzondering van de mensen die in het tweede vak worden genoemd. Het wordt nergens openbaar weergegeven." - -#: src/Core/ACL.php:289 -msgid "Show to:" -msgstr "Toon aan:" - -#: src/Core/ACL.php:290 -msgid "Except to:" -msgstr "Behalve aan:" - -#: src/Core/ACL.php:293 -msgid "Connectors" -msgstr "Connectors" - -#: src/Core/Update.php:219 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Wijziging %s mislukt. Lees de error logbestanden." - -#: src/Core/Update.php:286 -#, 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\tDe Friendica ontwikkelaars hebben recent update %svrijgegeven,\n \t\t\t\tmaar wanneer ik deze probeerde te installeren ging het verschrikkelijk fout.\n \t\t\t\tDit moet snel opgelost worden en ik kan het niet alleen. Contacteer alstublieft\n \t\t\t\teen Friendica ontwikkelaar als je mij zelf niet kan helpen. Mijn database kan ongeldig zijn." - -#: src/Core/Update.php:292 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "De foutboodschap is\n[pre]%s[/pre]" - -#: src/Core/Update.php:296 src/Core/Update.php:332 -msgid "[Friendica Notify] Database update" +#: src/Console/Addon.php:175 src/Console/Addon.php:199 +msgid "Addon not found" msgstr "" -#: src/Core/Update.php:326 -#, php-format -msgid "" -"\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n\t\t\t\t\tDe Friendica database is succesvol geupdatet van %s naar %s" - -#: src/Util/EMailer/MailBuilder.php:212 -msgid "Friendica Notification" -msgstr "Friendica Notificatie" - -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 -#, php-format -msgid "%1$s, %2$s Administrator" -msgstr "%1$s, %2$s Beheerder" - -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 -#, php-format -msgid "%s Administrator" -msgstr "%s Beheerder" - -#: 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 "bedankt" - -#: src/Util/Temporal.php:93 src/Util/Temporal.php:95 -#: src/Module/Settings/Profile/Index.php:245 -msgid "Miscellaneous" -msgstr "Diversen" - -#: src/Util/Temporal.php:163 src/Module/Profile/Profile.php:164 -msgid "Birthday:" -msgstr "Verjaardag:" - -#: src/Util/Temporal.php:165 src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:260 -msgid "Age: " -msgstr "Leeftijd:" - -#: 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 jaar oud" -msgstr[1] "%d jaar oud" - -#: src/Util/Temporal.php:167 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-DD of MM-DD" - -#: src/Util/Temporal.php:314 -msgid "never" -msgstr "nooit" - -#: src/Util/Temporal.php:321 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" - -#: src/Util/Temporal.php:329 -msgid "year" -msgstr "jaar" - -#: src/Util/Temporal.php:329 -msgid "years" -msgstr "jaren" - -#: src/Util/Temporal.php:330 -msgid "months" -msgstr "maanden" - -#: src/Util/Temporal.php:331 -msgid "weeks" -msgstr "weken" - -#: src/Util/Temporal.php:332 -msgid "days" -msgstr "dagen" - -#: src/Util/Temporal.php:333 -msgid "hour" -msgstr "uur" - -#: src/Util/Temporal.php:333 -msgid "hours" -msgstr "uren" - -#: src/Util/Temporal.php:334 -msgid "minute" -msgstr "minuut" - -#: src/Util/Temporal.php:334 -msgid "minutes" -msgstr "minuten" - -#: src/Util/Temporal.php:335 -msgid "second" -msgstr "seconde" - -#: src/Util/Temporal.php:335 -msgid "seconds" -msgstr "seconden" - -#: src/Util/Temporal.php:345 -#, php-format -msgid "in %1$d %2$s" -msgstr "in %1$d%2$s" - -#: src/Util/Temporal.php:348 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" - -#: src/Content/Text/BBCode.php:946 src/Content/Text/BBCode.php:1605 -#: src/Content/Text/BBCode.php:1606 -msgid "Image/photo" -msgstr "Afbeelding/foto" - -#: src/Content/Text/BBCode.php:1046 -#, php-format -msgid "%2$s %3$s" +#: src/Console/Addon.php:179 +msgid "Addon already enabled" msgstr "" -#: src/Content/Text/BBCode.php:1071 src/Model/Item.php:3635 -#: src/Model/Item.php:3641 -msgid "link to source" -msgstr "Verwijzing naar bron" +#: src/Console/Addon.php:203 +msgid "Addon already disabled" +msgstr "" -#: src/Content/Text/BBCode.php:1523 src/Content/Text/HTML.php:954 -msgid "Click to open/close" -msgstr "klik om te openen/sluiten" - -#: src/Content/Text/BBCode.php:1554 -msgid "$1 wrote:" -msgstr "$1 schreef:" - -#: src/Content/Text/BBCode.php:1608 src/Content/Text/BBCode.php:1609 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" - -#: src/Content/Text/BBCode.php:1831 -msgid "Invalid source protocol" -msgstr "Ongeldig bron protocol" - -#: src/Content/Text/BBCode.php:1846 -msgid "Invalid link protocol" -msgstr "Ongeldig verbinding protocol" - -#: src/Content/Text/HTML.php:802 -msgid "Loading more entries..." -msgstr "Meer berichten aan het laden..." - -#: src/Content/Text/HTML.php:803 -msgid "The end" -msgstr "Het einde" - -#: src/Content/Text/HTML.php:896 src/Model/Profile.php:448 -#: src/Module/Contact.php:332 -msgid "Follow" -msgstr "Volg" - -#: src/Content/Text/HTML.php:902 src/Content/Nav.php:220 -#: src/Module/Search/Index.php:98 -msgid "Search" -msgstr "Zoeken" - -#: src/Content/Text/HTML.php:904 src/Content/Nav.php:96 -msgid "@name, !forum, #tags, content" -msgstr "@naam, !forum, #labels, inhoud" - -#: src/Content/Text/HTML.php:911 src/Content/Nav.php:223 -msgid "Full Text" -msgstr "Volledige tekst" - -#: src/Content/Text/HTML.php:912 src/Content/Widget/TagCloud.php:68 -#: src/Content/Nav.php:224 -msgid "Tags" -msgstr "Labels" - -#: src/Content/Widget/CalendarExport.php:63 -msgid "Export" -msgstr "Exporteer" - -#: src/Content/Widget/CalendarExport.php:64 -msgid "Export calendar as ical" -msgstr "Exporteer kalender als ical" - -#: src/Content/Widget/CalendarExport.php:65 -msgid "Export calendar as csv" -msgstr "Exporteer kalender als csv" - -#: src/Content/Widget/ContactBlock.php:72 -msgid "No contacts" -msgstr "Geen contacten" - -#: src/Content/Widget/ContactBlock.php:104 +#: src/Console/ArchiveContact.php:106 #, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contact" -msgstr[1] "%d contacten" +msgid "Could not find any unarchived contact entry for this URL (%s)" +msgstr "Kon geen niet-gearchiveerde contacten vinden voor deze URL (%s)" -#: src/Content/Widget/ContactBlock.php:123 -msgid "View Contacts" -msgstr "Bekijk contacten" +#: src/Console/ArchiveContact.php:109 +msgid "The contact entries have been archived" +msgstr "The contacten zijn gearchiveerd" -#: src/Content/Widget/SavedSearches.php:47 -msgid "Remove term" -msgstr "Verwijder zoekterm" - -#: src/Content/Widget/SavedSearches.php:60 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" - -#: src/Content/Widget/TrendingTags.php:51 +#: src/Console/GlobalCommunityBlock.php:96 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format -msgid "Trending Tags (last %d hour)" -msgid_plural "Trending Tags (last %d hours)" -msgstr[0] "Populaire Tags (laatste %d uur)" -msgstr[1] "Populaire Tags (laatste %d uur)" +msgid "Could not find any contact entry for this URL (%s)" +msgstr "Kon geen contact vinden op deze URL (%s)" -#: src/Content/Widget/TrendingTags.php:52 -msgid "More Trending Tags" -msgstr "Meer Populaire Tags" +#: src/Console/GlobalCommunityBlock.php:101 +#: src/Module/Moderation/Blocklist/Contact.php:82 +msgid "The contact has been blocked from the node" +msgstr "Het contact is geblokkeerd van deze node" + +#: src/Console/MergeContacts.php:75 +#, php-format +msgid "%d %s, %d duplicates." +msgstr "" + +#: src/Console/MergeContacts.php:78 +#, php-format +msgid "uri-id is empty for contact %s." +msgstr "" + +#: src/Console/MergeContacts.php:91 +#, php-format +msgid "No valid first contact found for uri-id %d." +msgstr "" + +#: src/Console/MergeContacts.php:102 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:106 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:142 +#, php-format +msgid "Deletion of id %d failed" +msgstr "" + +#: src/Console/MergeContacts.php:144 +#, php-format +msgid "Deletion of id %d was successful" +msgstr "" + +#: src/Console/MergeContacts.php:150 +#, php-format +msgid "Updating \"%s\" in \"%s\" from %d to %d" +msgstr "" + +#: src/Console/MergeContacts.php:152 +msgid " - found" +msgstr "" + +#: src/Console/MergeContacts.php:159 +msgid " - failed" +msgstr "" + +#: src/Console/MergeContacts.php:161 +msgid " - success" +msgstr "" + +#: src/Console/MergeContacts.php:165 +msgid " - deleted" +msgstr "" + +#: src/Console/MergeContacts.php:168 +msgid " - done" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:91 +msgid "The avatar cache needs to be enabled to use this command." +msgstr "" + +#: src/Console/MoveToAvatarCache.php:109 +#, php-format +msgid "no resource in photo %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:137 +#, php-format +msgid "no photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:146 +#, php-format +msgid "no image data for photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:155 +#, php-format +msgid "invalid image for id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:168 +#, php-format +msgid "Quit on invalid photo %s" +msgstr "" + +#: src/Console/PostUpdate.php:87 +#, php-format +msgid "Post update version number has been set to %s." +msgstr "Bericht update versie is ingesteld op %s" + +#: src/Console/PostUpdate.php:95 +msgid "Check for pending update actions." +msgstr "Controleren op uitgestelde update acties." + +#: src/Console/PostUpdate.php:97 +msgid "Done." +msgstr "Gedaan" + +#: src/Console/PostUpdate.php:99 +msgid "Execute pending post updates." +msgstr "uitgestelde bericht update acties uitvoeren" + +#: src/Console/PostUpdate.php:105 +msgid "All pending post updates are done." +msgstr "Alle uitgestelde bericht update acties zijn uitgevoerd" + +#: src/Console/User.php:158 src/Console/User.php:245 +msgid "Enter user nickname: " +msgstr "Geef een bijnaam in:" + +#: src/Console/User.php:182 src/Model/User.php:711 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "Gebruiker niet gevonden" + +#: src/Console/User.php:202 +msgid "Enter new password: " +msgstr "Geef nieuw wachtwoord:" + +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 +msgid "Password update failed. Please try again." +msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw." + +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 +msgid "Password changed." +msgstr "Wachtwoord gewijzigd." + +#: src/Console/User.php:237 +msgid "Enter user name: " +msgstr "Geef gebruikersnaam in:" + +#: src/Console/User.php:253 +msgid "Enter user email address: " +msgstr "Geef een gebruiker email adres in:" + +#: src/Console/User.php:261 +msgid "Enter a language (optional): " +msgstr "Geef uw taalkeuze in (optioneel):" + +#: src/Console/User.php:286 +msgid "User is not pending." +msgstr "Gebruiker is niet in behandeling." + +#: src/Console/User.php:318 +msgid "User has already been marked for deletion." +msgstr "De gebruiker is reeds gemarkeerd voor verwijdering." + +#: src/Console/User.php:323 +#, php-format +msgid "Type \"yes\" to delete %s" +msgstr "Type \"Ja\" om te wissen %s" + +#: src/Console/User.php:325 +msgid "Deletion aborted." +msgstr "Verwijdering afgebroken." + +#: src/Console/User.php:450 +msgid "Enter category: " +msgstr "" + +#: src/Console/User.php:460 +msgid "Enter key: " +msgstr "" + +#: src/Console/User.php:494 +msgid "Enter value: " +msgstr "" #: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 msgid "newer" @@ -4238,113 +1040,603 @@ msgstr "nieuwere berichten" msgid "older" msgstr "oudere berichten" -#: src/Content/Pager.php:221 -msgid "prev" -msgstr "vorige" - -#: src/Content/Pager.php:281 -msgid "last" -msgstr "laatste" - -#: src/Content/ContactSelector.php:48 +#: src/Content/ContactSelector.php:51 msgid "Frequently" msgstr "Frequent" -#: src/Content/ContactSelector.php:49 +#: src/Content/ContactSelector.php:52 msgid "Hourly" msgstr "Ieder uur" -#: src/Content/ContactSelector.php:50 +#: src/Content/ContactSelector.php:53 msgid "Twice daily" msgstr "Twee maal daags" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:54 msgid "Daily" msgstr "Dagelijks" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:55 msgid "Weekly" msgstr "Wekelijks" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:56 msgid "Monthly" msgstr "Maandelijks" -#: src/Content/ContactSelector.php:99 +#: src/Content/ContactSelector.php:126 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:100 +#: src/Content/ContactSelector.php:127 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:101 +#: src/Content/ContactSelector.php:128 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:102 src/Module/Admin/Users.php:237 -#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 -#: src/Module/Admin/Users.php:280 +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 msgid "Email" msgstr "E-mail" -#: src/Content/ContactSelector.php:103 src/Module/Debug/Babel.php:282 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:104 +#: src/Content/ContactSelector.php:131 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:105 +#: src/Content/ContactSelector.php:132 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:106 +#: src/Content/ContactSelector.php:133 msgid "XMPP/IM" msgstr "XMPP/Chat" -#: src/Content/ContactSelector.php:107 +#: src/Content/ContactSelector.php:134 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:108 +#: src/Content/ContactSelector.php:135 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:109 +#: src/Content/ContactSelector.php:136 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:110 +#: src/Content/ContactSelector.php:137 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:111 +#: src/Content/ContactSelector.php:138 msgid "Discourse" msgstr "Toespraak" -#: src/Content/ContactSelector.php:112 +#: src/Content/ContactSelector.php:139 msgid "Diaspora Connector" msgstr "Diaspora Connector" -#: src/Content/ContactSelector.php:113 +#: src/Content/ContactSelector.php:140 msgid "GNU Social Connector" msgstr "GNU Social Connector" -#: src/Content/ContactSelector.php:114 +#: src/Content/ContactSelector.php:141 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:115 +#: src/Content/ContactSelector.php:142 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:149 +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "" + +#: src/Content/ContactSelector.php:180 #, php-format msgid "%s (via %s)" msgstr "" +#: src/Content/Conversation.php:226 +msgid "and" +msgstr "en" + +#: src/Content/Conversation.php:229 +#, php-format +msgid "and %d other people" +msgstr "en %d anderen" + +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:239 +#, php-format +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:241 +#, php-format +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:243 +#, php-format +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:245 +#, php-format +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:274 +#, php-format +msgid " likes this" +msgid_plural " like this" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:277 +#, php-format +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:280 +#, php-format +msgid " attends" +msgid_plural " attend" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:283 +#, php-format +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:286 +#, php-format +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:289 +#, php-format +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:336 +msgid "Visible to everybody" +msgstr "Zichtbaar voor iedereen" + +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1107 +msgid "Please enter a image/video/audio/webpage URL:" +msgstr "Geef een afbeelding/video/audio/webpagina in:" + +#: src/Content/Conversation.php:338 +msgid "Tag term:" +msgstr "Label:" + +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 +msgid "Save to Folder:" +msgstr "Bewaren in map:" + +#: src/Content/Conversation.php:340 +msgid "Where are you right now?" +msgstr "Waar ben je nu?" + +#: src/Content/Conversation.php:341 +msgid "Delete item(s)?" +msgstr "Item(s) verwijderen?" + +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 +msgid "Created at" +msgstr "" + +#: src/Content/Conversation.php:363 +msgid "New Post" +msgstr "Nieuw bericht" + +#: src/Content/Conversation.php:366 +msgid "Share" +msgstr "Delen" + +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "Foto uploaden" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Bestand bijvoegen" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "bestand bijvoegen" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1097 +msgid "Bold" +msgstr "Vet" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1098 +msgid "Italic" +msgstr "Cursief" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1099 +msgid "Underline" +msgstr "Onderstrepen" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1101 +msgid "Quote" +msgstr "Citeren" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1102 +msgid "Add emojis" +msgstr "" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1100 +msgid "Content Warning" +msgstr "" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1103 +msgid "Code" +msgstr "Broncode" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1104 +msgid "Image" +msgstr "Afbeelding" + +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1105 +msgid "Link" +msgstr "Link" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1106 +msgid "Link or Media" +msgstr "Link of media" + +#: src/Content/Conversation.php:382 +msgid "Video" +msgstr "" + +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "Stel je locatie in" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "Stel uw locatie in" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "Verwijder locatie uit uw webbrowser" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "Verwijder locatie uit uw webbrowser" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Titel plaatsen" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (komma-gescheiden lijst)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 +msgid "Scheduled at" +msgstr "" + +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Instellingen van rechten" + +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Openbare post" + +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:120 +#: src/Model/Profile.php:467 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "Bericht" + +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Browser" + +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "Open de opstelpagina" + +#: src/Content/Conversation.php:595 +msgid "remove" +msgstr "verwijder" + +#: src/Content/Conversation.php:599 +msgid "Delete Selected Items" +msgstr "Geselecteerde items verwijderen" + +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 +#, php-format +msgid "You had been addressed (%s)." +msgstr "" + +#: src/Content/Conversation.php:769 +#, php-format +msgid "You are following %s." +msgstr "" + +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "" + +#: src/Content/Conversation.php:776 +msgid "You subscribed to one or more tags in this post." +msgstr "" + +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "%s heeft dit gedeeld" + +#: src/Content/Conversation.php:798 +msgid "Reshared" +msgstr "" + +#: src/Content/Conversation.php:798 +#, php-format +msgid "Reshared by %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:801 +#, php-format +msgid "%s is participating in this thread." +msgstr "" + +#: src/Content/Conversation.php:804 +msgid "Stored for general reasons" +msgstr "" + +#: src/Content/Conversation.php:807 +msgid "Global post" +msgstr "" + +#: src/Content/Conversation.php:810 +msgid "Sent via an relay server" +msgstr "" + +#: src/Content/Conversation.php:810 +#, php-format +msgid "Sent via the relay server %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:813 +msgid "Fetched" +msgstr "" + +#: src/Content/Conversation.php:813 +#, php-format +msgid "Fetched because of %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:816 +msgid "Stored because of a child post to complete this thread." +msgstr "" + +#: src/Content/Conversation.php:819 +msgid "Local delivery" +msgstr "" + +#: src/Content/Conversation.php:822 +msgid "Stored because of your activity (like, comment, star, ...)" +msgstr "" + +#: src/Content/Conversation.php:825 +msgid "Distributed" +msgstr "" + +#: src/Content/Conversation.php:828 +msgid "Pushed to us" +msgstr "" + +#: src/Content/Conversation.php:1492 src/Object/Post.php:247 +msgid "Pinned item" +msgstr "" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:521 +#: src/Object/Post.php:522 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Bekijk het profiel van %s @ %s" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:509 +msgid "Categories:" +msgstr "Categorieën:" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:510 +msgid "Filed under:" +msgstr "Bewaard onder:" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:535 +#, php-format +msgid "%s from %s" +msgstr "%s van %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "In context bekijken" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "For you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "What's Hot" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "Posts with a lot of interactions" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:61 +#, php-format +msgid "Posts in %s" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:62 +msgid "Posts from your followers that you don't follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Sharers of sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Posts with images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Posts with audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Posts with videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Local Community" +msgstr "Lokale Groep" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Posts from local users on this server" +msgstr "Berichten van lokale gebruikers op deze server" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Global Community" +msgstr "Globale gemeenschap" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Posts from users of the whole federated network" +msgstr "Berichten van gebruikers van het hele gefedereerde netwerk" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Latest Activity" +msgstr "Laatste activiteit" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Sort by latest activity" +msgstr "Sorteer naar laatste activiteit" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Latest Posts" +msgstr "Laatste Berichten" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Sort by post received date" +msgstr "Sorteren naar ontvangstdatum bericht" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Latest Creation" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Sort by post creation date" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:106 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "Persoonlijk" + +#: src/Content/Conversation/Factory/Timeline.php:106 +msgid "Posts that mention or involve you" +msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben" + +#: src/Content/Conversation/Factory/Timeline.php:107 src/Object/Post.php:380 +msgid "Starred" +msgstr "Met ster" + +#: src/Content/Conversation/Factory/Timeline.php:107 +msgid "Favourite Posts" +msgstr "Favoriete berichten" + #: src/Content/Feature.php:96 msgid "General Features" msgstr "Algemene functies" @@ -4374,13 +1666,13 @@ msgid "Post Composition Features" msgstr "Functies voor het opstellen van berichten" #: src/Content/Feature.php:105 -msgid "Auto-mention Forums" -msgstr "Auto-vermelding Forums" +msgid "Auto-mention Groups" +msgstr "" #: src/Content/Feature.php:105 msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Voeg toe/verwijder vermelding wanneer een forum pagina geselecteerd/gedeselecteerd wordt in het ACL venster." +"Add/remove mention when a group page is selected/deselected in ACL window." +msgstr "" #: src/Content/Feature.php:106 msgid "Explicit Mentions" @@ -4392,298 +1684,1431 @@ msgid "" "mentioned in replies." msgstr "Voeg expliciete vermeldingen toe aan het opmerkingenvak voor handmatige controle over wie in antwoorden wordt vermeld." -#: src/Content/Feature.php:111 +#: src/Content/Feature.php:107 +msgid "Add an abstract from ActivityPub content warnings" +msgstr "" + +#: src/Content/Feature.php:107 +msgid "" +"Add an abstract when commenting on ActivityPub posts with a content warning." +" Abstracts are displayed as content warning on systems like Mastodon or " +"Pleroma." +msgstr "" + +#: src/Content/Feature.php:112 msgid "Post/Comment Tools" msgstr "Bericht-/reactiehulpmiddelen" -#: src/Content/Feature.php:112 +#: src/Content/Feature.php:113 msgid "Post Categories" msgstr "Categorieën berichten" -#: src/Content/Feature.php:112 +#: src/Content/Feature.php:113 msgid "Add categories to your posts" msgstr "Voeg categorieën toe aan je berichten" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:118 msgid "Advanced Profile Settings" msgstr "Geavanceerde Profiel Instellingen" -#: src/Content/Feature.php:118 -msgid "List Forums" -msgstr "Lijst Fora op" - -#: src/Content/Feature.php:118 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Toon bezoekers de publieke groepsfora in de Geavanceerde Profiel Pagina" +#: src/Content/Feature.php:119 +msgid "List Groups" +msgstr "" #: src/Content/Feature.php:119 +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "" + +#: src/Content/Feature.php:120 msgid "Tag Cloud" msgstr "Tag Wolk" -#: src/Content/Feature.php:119 +#: src/Content/Feature.php:120 msgid "Provide a personal tag cloud on your profile page" msgstr "Voorzie een persoonlijk tag wolk op je profiel pagina" -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:121 msgid "Display Membership Date" msgstr "Toon Lidmaatschap Datum" -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:121 msgid "Display membership date in profile" msgstr "Toon lidmaatschap datum in profiel" -#: src/Content/Nav.php:90 +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "" + +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "" + +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "" + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1273 +msgid "Groups" +msgstr "" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 +msgid "show less" +msgstr "" + +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 +msgid "show more" +msgstr "toon meer" + +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "" + +#: src/Content/Item.php:331 src/Model/Item.php:3003 +msgid "event" +msgstr "gebeurtenis" + +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "status" + +#: src/Content/Item.php:340 src/Model/Item.php:3005 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "foto" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s labelde %3$s van %2$s met %4$s" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 +msgid "Follow Thread" +msgstr "Gesprek volgen" + +#: src/Content/Item.php:429 src/Model/Contact.php:1227 +msgid "View Status" +msgstr "Bekijk status" + +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1219 +#: src/Model/Contact.php:1228 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 +msgid "View Profile" +msgstr "Bekijk profiel" + +#: src/Content/Item.php:431 src/Model/Contact.php:1229 +msgid "View Photos" +msgstr "Bekijk foto's" + +#: src/Content/Item.php:432 src/Model/Contact.php:1220 +#: src/Model/Contact.php:1230 +msgid "Network Posts" +msgstr "Netwerkberichten" + +#: src/Content/Item.php:433 src/Model/Contact.php:1221 +#: src/Model/Contact.php:1231 +msgid "View Contact" +msgstr "Bekijk contact" + +#: src/Content/Item.php:434 src/Model/Contact.php:1232 +msgid "Send PM" +msgstr "Stuur een privébericht" + +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 +msgid "Block" +msgstr "Blokkeren" + +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 +msgid "Ignore" +msgstr "Negeren" + +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "" + +#: src/Content/Item.php:438 src/Object/Post.php:288 +#, php-format +msgid "Ignore %s server" +msgstr "" + +#: src/Content/Item.php:442 src/Object/Post.php:490 +msgid "Languages" +msgstr "" + +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1222 src/Model/Contact.php:1233 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Verbind/Volg" + +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "" + +#: src/Content/Nav.php:121 msgid "Nothing new here" msgstr "Niets nieuw hier" -#: src/Content/Nav.php:94 src/Module/Special/HTTPException.php:72 +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 msgid "Go back" msgstr "Ga terug" -#: src/Content/Nav.php:95 +#: src/Content/Nav.php:126 msgid "Clear notifications" msgstr "Notificaties verwijderen" -#: src/Content/Nav.php:169 src/Module/Security/Login.php:141 +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" +msgstr "" + +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 msgid "Logout" msgstr "Uitloggen" -#: src/Content/Nav.php:169 +#: src/Content/Nav.php:222 msgid "End this session" msgstr "Deze sessie beëindigen" -#: src/Content/Nav.php:171 src/Module/Security/Login.php:142 -#: src/Module/Bookmarklet.php:46 +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 msgid "Login" msgstr "Login" -#: src/Content/Nav.php:171 +#: src/Content/Nav.php:224 msgid "Sign in" msgstr "Inloggen" -#: src/Content/Nav.php:182 +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "" + +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "" + +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +msgid "Profile" +msgstr "Profiel" + +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +msgid "Your profile page" +msgstr "Jouw profiel pagina" + +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Foto's" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +msgid "Your photos" +msgstr "Jouw foto's" + +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 +msgid "Media" +msgstr "" + +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +msgid "Your postings with media" +msgstr "" + +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "Kalender" + +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "" + +#: src/Content/Nav.php:234 msgid "Personal notes" msgstr "Persoonlijke nota's" -#: src/Content/Nav.php:182 +#: src/Content/Nav.php:234 msgid "Your personal notes" msgstr "Je persoonlijke nota's" -#: src/Content/Nav.php:202 src/Content/Nav.php:263 +#: src/Content/Nav.php:251 src/Content/Nav.php:308 msgid "Home" msgstr "Tijdlijn" -#: src/Content/Nav.php:202 +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 msgid "Home Page" msgstr "Jouw tijdlijn" -#: src/Content/Nav.php:206 src/Module/Security/Login.php:102 -#: src/Module/Register.php:155 +#: src/Content/Nav.php:255 src/Module/Register.php:168 +#: src/Module/Security/Login.php:124 msgid "Register" msgstr "Registreer" -#: src/Content/Nav.php:206 +#: src/Content/Nav.php:255 msgid "Create an account" msgstr "Maak een accoount" -#: src/Content/Nav.php:212 +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 +msgid "Help" +msgstr "Help" + +#: src/Content/Nav.php:261 msgid "Help and documentation" msgstr "Hulp en documentatie" -#: src/Content/Nav.php:216 +#: src/Content/Nav.php:265 msgid "Apps" msgstr "Apps" -#: src/Content/Nav.php:216 +#: src/Content/Nav.php:265 msgid "Addon applications, utilities, games" msgstr "Extra toepassingen, hulpmiddelen of spelletjes" -#: src/Content/Nav.php:220 +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 +msgid "Search" +msgstr "Zoeken" + +#: src/Content/Nav.php:269 msgid "Search site content" msgstr "Doorzoek de inhoud van de website" -#: src/Content/Nav.php:244 +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 +msgid "Full Text" +msgstr "Volledige tekst" + +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 +#: src/Content/Widget/TagCloud.php:68 +msgid "Tags" +msgstr "Labels" + +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 +msgid "Contacts" +msgstr "Contacten" + +#: src/Content/Nav.php:289 msgid "Community" msgstr "Website" -#: src/Content/Nav.php:244 +#: src/Content/Nav.php:289 msgid "Conversations on this and other servers" msgstr "Gesprekken op deze en andere servers" -#: src/Content/Nav.php:251 +#: src/Content/Nav.php:296 msgid "Directory" msgstr "Gids" -#: src/Content/Nav.php:251 +#: src/Content/Nav.php:296 msgid "People directory" msgstr "Personengids" -#: src/Content/Nav.php:253 src/Module/BaseAdmin.php:92 +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 msgid "Information" msgstr "Informatie" -#: src/Content/Nav.php:253 +#: src/Content/Nav.php:298 msgid "Information about this friendica instance" msgstr "informatie over deze friendica server" -#: src/Content/Nav.php:256 src/Module/Admin/Tos.php:59 -#: src/Module/Register.php:163 src/Module/Tos.php:84 -#: src/Module/BaseAdmin.php:102 +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 msgid "Terms of Service" msgstr "Gebruiksvoorwaarden" -#: src/Content/Nav.php:256 +#: src/Content/Nav.php:301 msgid "Terms of Service of this Friendica instance" msgstr "Gebruiksvoorwaarden op deze Friendica server" -#: src/Content/Nav.php:267 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +msgid "Network" +msgstr "Netwerk" + +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +msgid "Conversations from your friends" +msgstr "Gesprekken van je vrienden" + +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "Jouw berichten en gesprekken" + +#: src/Content/Nav.php:312 msgid "Introductions" msgstr "Verzoeken" -#: src/Content/Nav.php:267 +#: src/Content/Nav.php:312 msgid "Friend Requests" msgstr "Vriendschapsverzoeken" -#: src/Content/Nav.php:268 src/Module/Notifications/Introductions.php:52 -#: src/Module/BaseNotifications.php:139 +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 msgid "Notifications" msgstr "Notificaties" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:314 msgid "See all notifications" msgstr "Toon alle notificaties" -#: src/Content/Nav.php:270 -msgid "Mark all system notifications seen" -msgstr "Alle systeemnotificaties als gelezen markeren" +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Als 'gelezen' markeren" -#: src/Content/Nav.php:274 +#: src/Content/Nav.php:315 +msgid "Mark all system notifications as seen" +msgstr "" + +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +msgid "Private mail" +msgstr "Privéberichten" + +#: src/Content/Nav.php:319 msgid "Inbox" msgstr "Inbox" -#: src/Content/Nav.php:275 +#: src/Content/Nav.php:320 msgid "Outbox" msgstr "Verzonden berichten" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:324 msgid "Accounts" msgstr "Gebruikers" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:324 msgid "Manage other pages" msgstr "Andere pagina's beheren" -#: src/Content/Nav.php:289 src/Module/BaseAdmin.php:132 +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:175 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +msgid "Settings" +msgstr "Instellingen" + +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +msgid "Account settings" +msgstr "Account instellingen" + +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +msgid "Manage/edit friends and contacts" +msgstr "Beheer/Wijzig vrienden en contacten" + +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 msgid "Admin" msgstr "Beheer" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:334 msgid "Site setup and configuration" msgstr "Website opzetten en configureren" -#: src/Content/Nav.php:292 +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "" + +#: src/Content/Nav.php:338 msgid "Navigation" msgstr "Navigatie" -#: src/Content/Nav.php:292 +#: src/Content/Nav.php:338 msgid "Site map" msgstr "Sitemap" -#: src/Content/OEmbed.php:266 +#: src/Content/OEmbed.php:316 msgid "Embedding disabled" msgstr "Inbedden uitgeschakeld" -#: src/Content/OEmbed.php:388 +#: src/Content/OEmbed.php:440 msgid "Embedded content" msgstr "Ingebedde inhoud" -#: src/Content/Widget.php:52 +#: src/Content/Pager.php:216 +msgid "first" +msgstr "eerste" + +#: src/Content/Pager.php:221 +msgid "prev" +msgstr "vorige" + +#: src/Content/Pager.php:276 +msgid "next" +msgstr "volgende" + +#: src/Content/Pager.php:281 +msgid "last" +msgstr "laatste" + +#: src/Content/Text/BBCode.php:696 src/Content/Text/BBCode.php:1636 +#: src/Content/Text/BBCode.php:1637 +msgid "Image/photo" +msgstr "Afbeelding/foto" + +#: src/Content/Text/BBCode.php:914 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: src/Content/Text/BBCode.php:939 src/Model/Item.php:3745 +#: src/Model/Item.php:3751 src/Model/Item.php:3752 +msgid "Link to source" +msgstr "" + +#: src/Content/Text/BBCode.php:1543 src/Content/Text/HTML.php:904 +msgid "Click to open/close" +msgstr "klik om te openen/sluiten" + +#: src/Content/Text/BBCode.php:1576 +msgid "$1 wrote:" +msgstr "$1 schreef:" + +#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" + +#: src/Content/Text/BBCode.php:1901 +msgid "Invalid source protocol" +msgstr "Ongeldig bron protocol" + +#: src/Content/Text/BBCode.php:1920 +msgid "Invalid link protocol" +msgstr "Ongeldig verbinding protocol" + +#: src/Content/Text/HTML.php:782 +msgid "Loading more entries..." +msgstr "Meer berichten aan het laden..." + +#: src/Content/Text/HTML.php:783 +msgid "The end" +msgstr "Het einde" + +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:116 +#: src/Model/Profile.php:461 src/Module/Contact/Profile.php:471 +msgid "Follow" +msgstr "Volg" + +#: src/Content/Widget.php:51 msgid "Add New Contact" msgstr "Nieuw Contact toevoegen" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:52 msgid "Enter address or web location" msgstr "Voeg een webadres of -locatie in:" -#: src/Content/Widget.php:54 +#: src/Content/Widget.php:53 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara" -#: src/Content/Widget.php:56 +#: src/Content/Widget.php:55 msgid "Connect" msgstr "Verbinden" -#: src/Content/Widget.php:71 +#: src/Content/Widget.php:72 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d uitnodiging beschikbaar" msgstr[1] "%d uitnodigingen beschikbaar" -#: src/Content/Widget.php:217 src/Model/Group.php:528 -#: src/Module/Welcome.php:76 src/Module/Contact.php:807 -msgid "Groups" -msgstr "Groepen" +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +msgid "Find People" +msgstr "Zoek mensen" -#: src/Content/Widget.php:219 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +msgid "Enter name or interest" +msgstr "Vul naam of interesse in" + +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Voorbeelden: Jan Peeters, Vissen" + +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 +msgid "Find" +msgstr "Zoek" + +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "Vriendschapsvoorstellen" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +msgid "Similar Interests" +msgstr "Dezelfde interesses" + +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +msgid "Random Profile" +msgstr "Willekeurig Profiel" + +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +msgid "Invite Friends" +msgstr "Vrienden uitnodigen" + +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 +msgid "Global Directory" +msgstr "Globale gids" + +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +msgid "Local Directory" +msgstr "Lokale gids" + +#: src/Content/Widget.php:215 src/Model/Circle.php:600 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "" + +#: src/Content/Widget.php:217 msgid "Everyone" msgstr "Iedereen" -#: src/Content/Widget.php:242 src/Module/Contact.php:821 -#: src/BaseModule.php:189 -msgid "Following" -msgstr "Volgend" +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "" -#: src/Content/Widget.php:243 src/Module/Contact.php:822 -#: src/BaseModule.php:194 -msgid "Mutual friends" -msgstr "Gemeenschappelijke vrienden" - -#: src/Content/Widget.php:248 +#: src/Content/Widget.php:247 msgid "Relationships" msgstr "Relaties" -#: src/Content/Widget.php:250 src/Module/Group.php:292 -#: src/Module/Contact.php:759 +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 msgid "All Contacts" msgstr "Alle Contacten" -#: src/Content/Widget.php:289 +#: src/Content/Widget.php:288 msgid "Protocols" msgstr "Protocollen" -#: src/Content/Widget.php:291 +#: src/Content/Widget.php:290 msgid "All Protocols" msgstr "Alle protocollen" -#: src/Content/Widget.php:328 +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "Bewaarde Mappen" -#: src/Content/Widget.php:330 src/Content/Widget.php:369 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "Alles" -#: src/Content/Widget.php:367 +#: src/Content/Widget.php:349 msgid "Categories" msgstr "Categorieën" -#: src/Content/Widget.php:424 +#: src/Content/Widget.php:406 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d gedeeld contact" msgstr[1] "%d gedeelde contacten" -#: src/Content/Widget.php:517 +#: src/Content/Widget.php:506 msgid "Archives" msgstr "Archieven" -#: src/Database/DBStructure.php:69 +#: src/Content/Widget.php:514 +msgid "On this date" +msgstr "" + +#: src/Content/Widget.php:534 +msgid "Persons" +msgstr "" + +#: src/Content/Widget.php:535 +msgid "Organisations" +msgstr "" + +#: src/Content/Widget.php:536 src/Model/Contact.php:1698 +msgid "News" +msgstr "Nieuws" + +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 +msgid "Account Types" +msgstr "Account Types" + +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 +msgid "All" +msgstr "" + +#: src/Content/Widget.php:573 src/Module/Settings/Display.php:266 +msgid "Channels" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:56 +msgid "Export" +msgstr "Exporteer" + +#: src/Content/Widget/CalendarExport.php:57 +msgid "Export calendar as ical" +msgstr "Exporteer kalender als ical" + +#: src/Content/Widget/CalendarExport.php:58 +msgid "Export calendar as csv" +msgstr "Exporteer kalender als csv" + +#: src/Content/Widget/ContactBlock.php:79 +msgid "No contacts" +msgstr "Geen contacten" + +#: src/Content/Widget/ContactBlock.php:110 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contact" +msgstr[1] "%d contacten" + +#: src/Content/Widget/ContactBlock.php:127 +msgid "View Contacts" +msgstr "Bekijk contacten" + +#: src/Content/Widget/SavedSearches.php:47 +msgid "Remove term" +msgstr "Verwijder zoekterm" + +#: src/Content/Widget/SavedSearches.php:60 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" + +#: src/Content/Widget/TrendingTags.php:52 +#, php-format +msgid "Trending Tags (last %d hour)" +msgid_plural "Trending Tags (last %d hours)" +msgstr[0] "Populaire Tags (laatste %d uur)" +msgstr[1] "Populaire Tags (laatste %d uur)" + +#: src/Content/Widget/TrendingTags.php:53 +msgid "More Trending Tags" +msgstr "Meer Populaire Tags" + +#: src/Content/Widget/VCard.php:109 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 +msgid "XMPP:" +msgstr "XMPP:" + +#: src/Content/Widget/VCard.php:110 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 +msgid "Matrix:" +msgstr "" + +#: src/Content/Widget/VCard.php:111 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Plaats:" + +#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:474 +#: src/Module/Notifications/Introductions.php:201 +msgid "Network:" +msgstr "Netwerk:" + +#: src/Content/Widget/VCard.php:118 src/Model/Contact.php:1223 +#: src/Model/Contact.php:1234 src/Model/Profile.php:463 +#: src/Module/Contact/Profile.php:463 +msgid "Unfollow" +msgstr "Stop volgen" + +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +msgid "Yourself" +msgstr "Jezelf" + +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 +msgid "Mutuals" +msgstr "Gemeenschappelijk" + +#: src/Core/ACL.php:294 +msgid "Post to Email" +msgstr "Verzenden per e-mail" + +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 +msgid "Public" +msgstr "Openbaar" + +#: src/Core/ACL.php:322 +msgid "" +"This content will be shown to all your followers and can be seen in the " +"community pages and by anyone with its link." +msgstr "Deze inhoud wordt aan al uw volgers getoond en is te zien op de communitypagina's en door iedereen met de link." + +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 +msgid "Limited/Private" +msgstr "Beperkt/Privé" + +#: src/Core/ACL.php:324 +msgid "" +"This content will be shown only to the people in the first box, to the " +"exception of the people mentioned in the second box. It won't appear " +"anywhere public." +msgstr "Deze inhoud wordt alleen getoond aan de mensen in het eerste vak, met uitzondering van de mensen die in het tweede vak worden genoemd. Het wordt nergens openbaar weergegeven." + +#: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." +msgstr "" + +#: src/Core/ACL.php:325 +msgid "Show to:" +msgstr "Toon aan:" + +#: src/Core/ACL.php:326 +msgid "Except to:" +msgstr "Behalve aan:" + +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "CC: e-mailadressen" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be" + +#: src/Core/ACL.php:329 +msgid "Connectors" +msgstr "Connectors" + +#: src/Core/Installer.php:180 +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 "Het databaseconfiguratiebestand \"config/local.config.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver. " + +#: src/Core/Installer.php:197 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql." + +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 +msgid "Please see the file \"doc/INSTALL.md\"." +msgstr "" + +#: src/Core/Installer.php:259 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver." + +#: src/Core/Installer.php:260 +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 "" + +#: src/Core/Installer.php:265 +msgid "PHP executable path" +msgstr "PATH van het PHP commando" + +#: src/Core/Installer.php:265 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Vul het volledige pad in naar het php programma. Je kunt dit leeg laten om de installatie verder te zetten." + +#: src/Core/Installer.php:270 +msgid "Command line PHP" +msgstr "PHP-opdrachtregel" + +#: src/Core/Installer.php:279 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "PHP uitvoerbaar bestand is niet de php cli binary (zou kunnen de cgi-fgci versie zijn)" + +#: src/Core/Installer.php:280 +msgid "Found PHP version: " +msgstr "Gevonden PHP versie:" + +#: src/Core/Installer.php:282 +msgid "PHP cli binary" +msgstr "PHP cli binary" + +#: src/Core/Installer.php:295 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd." + +#: src/Core/Installer.php:296 +msgid "This is required for message delivery to work." +msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken." + +#: src/Core/Installer.php:301 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: src/Core/Installer.php:333 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Fout: de \"openssl_pkey_new\" functie op dit systeem kan geen encryptie sleutels genereren" + +#: src/Core/Installer.php:334 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait." + +#: src/Core/Installer.php:337 +msgid "Generate encryption keys" +msgstr "Genereer encryptie sleutels" + +#: src/Core/Installer.php:389 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd." + +#: src/Core/Installer.php:394 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" + +#: src/Core/Installer.php:400 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "Fout: PDO of MySQLi PHP module vereist maar niet geïnstalleerd." + +#: src/Core/Installer.php:405 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "Fout: de MySQL driver voor PDO is niet geïnstalleerd." + +#: src/Core/Installer.php:409 +msgid "PDO or MySQLi PHP module" +msgstr "PDO of MySQLi PHP module" + +#: src/Core/Installer.php:417 +msgid "Error, XML PHP module required but not installed." +msgstr "Fout: XML PHP module vereist maar niet geinstalleerd." + +#: src/Core/Installer.php:421 +msgid "XML PHP module" +msgstr "XML PHP module" + +#: src/Core/Installer.php:424 +msgid "libCurl PHP module" +msgstr "libCurl PHP module" + +#: src/Core/Installer.php:425 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd." + +#: src/Core/Installer.php:431 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP module" + +#: src/Core/Installer.php:432 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd." + +#: src/Core/Installer.php:438 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP module" + +#: src/Core/Installer.php:439 +msgid "Error: openssl PHP module required but not installed." +msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd." + +#: src/Core/Installer.php:445 +msgid "mb_string PHP module" +msgstr "mb_string PHP module" + +#: src/Core/Installer.php:446 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd." + +#: src/Core/Installer.php:452 +msgid "iconv PHP module" +msgstr "iconv PHP module" + +#: src/Core/Installer.php:453 +msgid "Error: iconv PHP module required but not installed." +msgstr "Fout: iconv PHP module vereist maar niet geïnstalleerd." + +#: src/Core/Installer.php:459 +msgid "POSIX PHP module" +msgstr "POSIX PHP module" + +#: src/Core/Installer.php:460 +msgid "Error: POSIX PHP module required but not installed." +msgstr "Fout: POSIX PHP module vereist maar niet geïnstalleerd." + +#: src/Core/Installer.php:466 +msgid "Program execution functions" +msgstr "" + +#: src/Core/Installer.php:467 +msgid "" +"Error: Program execution functions (proc_open) required but not enabled." +msgstr "" + +#: src/Core/Installer.php:473 +msgid "JSON PHP module" +msgstr "" + +#: src/Core/Installer.php:474 +msgid "Error: JSON PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:480 +msgid "File Information PHP module" +msgstr "" + +#: src/Core/Installer.php:481 +msgid "Error: File Information PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:487 +msgid "GNU Multiple Precision PHP module" +msgstr "" + +#: src/Core/Installer.php:488 +msgid "Error: GNU Multiple Precision PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:511 +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 "Het installatieprogramma moet een bestand \"local.config.php\" in de \"config\" map van je webserver aanmaken, maar kan dit niet doen. " + +#: src/Core/Installer.php:512 +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 "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel." + +#: src/Core/Installer.php:513 +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 "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand local.config.php in Friendica \"config\" map. " + +#: src/Core/Installer.php:514 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"doc/INSTALL.md\" for instructions." +msgstr "" + +#: src/Core/Installer.php:517 +msgid "config/local.config.php is writable" +msgstr "config/local.config.php is schrijfbaar " + +#: src/Core/Installer.php:537 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen." + +#: src/Core/Installer.php:538 +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 "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie." + +#: src/Core/Installer.php:539 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map." + +#: src/Core/Installer.php:540 +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 "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten." + +#: src/Core/Installer.php:543 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 is schrijfbaar" + +#: src/Core/Installer.php:571 +msgid "" +"Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" +"dist to .htaccess." +msgstr "" + +#: src/Core/Installer.php:572 +msgid "" +"In some circumstances (like running inside containers), you can skip this " +"error." +msgstr "" + +#: src/Core/Installer.php:574 +msgid "Error message from Curl when fetching" +msgstr "Fout boodschap van Curl bij ophalen" + +#: src/Core/Installer.php:580 +msgid "Url rewrite is working" +msgstr "Url rewrite werkt correct" + +#: src/Core/Installer.php:609 +msgid "" +"The detection of TLS to secure the communication between the browser and the" +" new Friendica server failed." +msgstr "" + +#: src/Core/Installer.php:610 +msgid "" +"It is highly encouraged to use Friendica only over a secure connection as " +"sensitive information like passwords will be transmitted." +msgstr "" + +#: src/Core/Installer.php:611 +msgid "Please ensure that the connection to the server is secure." +msgstr "" + +#: src/Core/Installer.php:612 +msgid "No TLS detected" +msgstr "" + +#: src/Core/Installer.php:614 +msgid "TLS detected" +msgstr "" + +#: src/Core/Installer.php:641 +msgid "ImageMagick PHP extension is not installed" +msgstr "ImageMagick PHP extensie is niet geïnstalleerd" + +#: src/Core/Installer.php:643 +msgid "ImageMagick PHP extension is installed" +msgstr "ImageMagick PHP extensie is geïnstalleerd" + +#: src/Core/Installer.php:645 +msgid "ImageMagick supports GIF" +msgstr "ImageMagick ondersteunt GIF" + +#: src/Core/Installer.php:667 +msgid "Database already in use." +msgstr "Database al in gebruik." + +#: src/Core/Installer.php:672 +msgid "Could not connect to database." +msgstr "Kon geen toegang krijgen tot de database." + +#: src/Core/L10n.php:476 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:235 +msgid "Monday" +msgstr "Maandag" + +#: src/Core/L10n.php:476 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:236 +msgid "Tuesday" +msgstr "Dinsdag" + +#: src/Core/L10n.php:476 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:237 +msgid "Wednesday" +msgstr "Woensdag" + +#: src/Core/L10n.php:476 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:238 +msgid "Thursday" +msgstr "Donderdag" + +#: src/Core/L10n.php:476 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:239 +msgid "Friday" +msgstr "Vrijdag" + +#: src/Core/L10n.php:476 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:240 +msgid "Saturday" +msgstr "Zaterdag" + +#: src/Core/L10n.php:476 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:234 +msgid "Sunday" +msgstr "Zondag" + +#: src/Core/L10n.php:480 src/Model/Event.php:450 +msgid "January" +msgstr "Januari" + +#: src/Core/L10n.php:480 src/Model/Event.php:451 +msgid "February" +msgstr "Februari" + +#: src/Core/L10n.php:480 src/Model/Event.php:452 +msgid "March" +msgstr "Maart" + +#: src/Core/L10n.php:480 src/Model/Event.php:453 +msgid "April" +msgstr "April" + +#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441 +msgid "May" +msgstr "Mei" + +#: src/Core/L10n.php:480 src/Model/Event.php:454 +msgid "June" +msgstr "Juni" + +#: src/Core/L10n.php:480 src/Model/Event.php:455 +msgid "July" +msgstr "Juli" + +#: src/Core/L10n.php:480 src/Model/Event.php:456 +msgid "August" +msgstr "Augustus" + +#: src/Core/L10n.php:480 src/Model/Event.php:457 +msgid "September" +msgstr "September" + +#: src/Core/L10n.php:480 src/Model/Event.php:458 +msgid "October" +msgstr "Oktober" + +#: src/Core/L10n.php:480 src/Model/Event.php:459 +msgid "November" +msgstr "November" + +#: src/Core/L10n.php:480 src/Model/Event.php:460 +msgid "December" +msgstr "December" + +#: src/Core/L10n.php:495 src/Model/Event.php:422 +msgid "Mon" +msgstr "Maa" + +#: src/Core/L10n.php:495 src/Model/Event.php:423 +msgid "Tue" +msgstr "Din" + +#: src/Core/L10n.php:495 src/Model/Event.php:424 +msgid "Wed" +msgstr "Woe" + +#: src/Core/L10n.php:495 src/Model/Event.php:425 +msgid "Thu" +msgstr "Don" + +#: src/Core/L10n.php:495 src/Model/Event.php:426 +msgid "Fri" +msgstr "Vrij" + +#: src/Core/L10n.php:495 src/Model/Event.php:427 +msgid "Sat" +msgstr "Zat" + +#: src/Core/L10n.php:495 src/Model/Event.php:421 +msgid "Sun" +msgstr "Zon" + +#: src/Core/L10n.php:499 src/Model/Event.php:437 +msgid "Jan" +msgstr "Jan" + +#: src/Core/L10n.php:499 src/Model/Event.php:438 +msgid "Feb" +msgstr "Feb" + +#: src/Core/L10n.php:499 src/Model/Event.php:439 +msgid "Mar" +msgstr "Maa" + +#: src/Core/L10n.php:499 src/Model/Event.php:440 +msgid "Apr" +msgstr "Apr" + +#: src/Core/L10n.php:499 src/Model/Event.php:442 +msgid "Jun" +msgstr "Jun" + +#: src/Core/L10n.php:499 src/Model/Event.php:443 +msgid "Jul" +msgstr "Jul" + +#: src/Core/L10n.php:499 src/Model/Event.php:444 +msgid "Aug" +msgstr "Aug" + +#: src/Core/L10n.php:499 +msgid "Sep" +msgstr "Sep" + +#: src/Core/L10n.php:499 src/Model/Event.php:446 +msgid "Oct" +msgstr "Okt" + +#: src/Core/L10n.php:499 src/Model/Event.php:447 +msgid "Nov" +msgstr "Nov" + +#: src/Core/L10n.php:499 src/Model/Event.php:448 +msgid "Dec" +msgstr "Dec" + +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Core/Renderer.php:89 src/Core/Renderer.php:118 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 +msgid "" +"Friendica can't display this page at the moment, please contact the " +"administrator." +msgstr "Friendica kan deze pagina momenteel niet weergeven, neem contact op met de beheerder." + +#: src/Core/Renderer.php:143 +msgid "template engine cannot be registered without a name." +msgstr "" + +#: src/Core/Renderer.php:177 +msgid "template engine is not registered!" +msgstr "" + +#: src/Core/Storage/Type/FilesystemConfig.php:78 +msgid "Storage base path" +msgstr "" + +#: src/Core/Storage/Type/FilesystemConfig.php:80 +msgid "" +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "" + +#: src/Core/Storage/Type/FilesystemConfig.php:93 +msgid "Enter a valid existing folder" +msgstr "Geef een geldige bestaande folder in" + +#: src/Core/Update.php:80 +#, php-format +msgid "" +"Updates from version %s are not supported. Please update at least to version" +" 2021.01 and wait until the postupdate finished version 1383." +msgstr "" + +#: src/Core/Update.php:91 +#, php-format +msgid "" +"Updates from postupdate version %s are not supported. Please update at least" +" to version 2021.01 and wait until the postupdate finished version 1383." +msgstr "" + +#: src/Core/Update.php:183 +#, php-format +msgid "%s: executing pre update %d" +msgstr "" + +#: src/Core/Update.php:225 +#, php-format +msgid "%s: executing post update %d" +msgstr "" + +#: src/Core/Update.php:299 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Wijziging %s mislukt. Lees de error logbestanden." + +#: src/Core/Update.php:339 +#, 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\tDe Friendica ontwikkelaars hebben recent update %svrijgegeven,\n \t\t\t\tmaar wanneer ik deze probeerde te installeren ging het verschrikkelijk fout.\n \t\t\t\tDit moet snel opgelost worden en ik kan het niet alleen. Contacteer alstublieft\n \t\t\t\teen Friendica ontwikkelaar als je mij zelf niet kan helpen. Mijn database kan ongeldig zijn." + +#: src/Core/Update.php:345 +#, php-format +msgid "The error message is\\n[pre]%s[/pre]" +msgstr "" + +#: src/Core/Update.php:349 src/Core/Update.php:377 +msgid "[Friendica Notify] Database update" +msgstr "" + +#: src/Core/Update.php:371 +#, php-format +msgid "" +"\n" +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "" + +#: src/Database/DBStructure.php:57 +#, php-format +msgid "The database version had been set to %s." +msgstr "" + +#: src/Database/DBStructure.php:82 +#, 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:95 +msgid "No unused tables found." +msgstr "" + +#: src/Database/DBStructure.php:100 +msgid "" +"These tables are not used for friendica and will be deleted when you execute" +" \"dbstructure drop -e\":" +msgstr "" + +#: src/Database/DBStructure.php:137 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Database/DBStructure.php:93 +#: src/Database/DBStructure.php:161 #, php-format msgid "" "\n" @@ -4691,387 +3116,641 @@ msgid "" "%s\n" msgstr "\nFout %d is opgetreden tijdens database update:\n%s\n" -#: src/Database/DBStructure.php:96 +#: src/Database/DBStructure.php:164 msgid "Errors encountered performing database changes: " msgstr "Fouten opgetreden tijdens database aanpassingen:" -#: src/Database/DBStructure.php:296 +#: src/Database/DBStructure.php:232 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:300 +#: src/Database/DBStructure.php:236 #, php-format msgid "%s: Database update" msgstr "%s: Database update" -#: src/Database/DBStructure.php:600 +#: src/Database/DBStructure.php:493 #, php-format msgid "%s: updating %s table." msgstr "%s: tabel %s aan het updaten." -#: src/Database/Database.php:661 src/Database/Database.php:764 -#, php-format -msgid "Database error %d \"%s\" at \"%s\"" +#: src/Factory/Api/Mastodon/Error.php:55 +msgid "Record not found" msgstr "" -#: src/Model/Storage/Database.php:74 -#, php-format -msgid "Database storage failed to update %s" -msgstr "Database opslag faalde om %s te vernieuwen" - -#: src/Model/Storage/Database.php:82 -msgid "Database storage failed to insert data" -msgstr "Database opslag mislukt om gegevens in te voegen" - -#: src/Model/Storage/Filesystem.php:100 -#, php-format -msgid "Filesystem storage failed to create \"%s\". Check you write permissions." +#: src/Factory/Api/Mastodon/Error.php:65 +msgid "Unprocessable Entity" msgstr "" -#: src/Model/Storage/Filesystem.php:148 -#, php-format +#: src/Factory/Api/Mastodon/Error.php:75 +msgid "Unauthorized" +msgstr "Onbevoegd" + +#: src/Factory/Api/Mastodon/Error.php:84 msgid "" -"Filesystem storage failed to save data to \"%s\". Check your write " -"permissions" +"Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Model/Storage/Filesystem.php:176 -msgid "Storage base path" +#: src/Factory/Api/Mastodon/Error.php:94 +msgid "Internal Server Error" msgstr "" -#: src/Model/Storage/Filesystem.php:178 +#: src/LegacyModule.php:63 +#, php-format +msgid "Legacy module file not found: %s" +msgstr "Legacy module bestand niet gevonden: %s" + +#: src/Model/Circle.php:106 msgid "" -"Folder where uploaded files are saved. For maximum security, This should be " -"a path outside web server folder tree" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." msgstr "" -#: src/Model/Storage/Filesystem.php:191 -msgid "Enter a valid existing folder" -msgstr "Geef een geldige bestaande folder in" +#: src/Model/Circle.php:543 +msgid "Everybody" +msgstr "Iedereen" -#: src/Model/Event.php:50 src/Model/Event.php:862 -#: src/Module/Debug/Localtime.php:36 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" +#: src/Model/Circle.php:562 +msgid "edit" +msgstr "verander" -#: src/Model/Event.php:77 src/Model/Event.php:94 src/Model/Event.php:452 -#: src/Model/Event.php:930 +#: src/Model/Circle.php:599 +msgid "add" +msgstr "toevoegen" + +#: src/Model/Circle.php:604 +msgid "Edit circle" +msgstr "" + +#: src/Model/Circle.php:605 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "" + +#: src/Model/Circle.php:607 +msgid "Create a new circle" +msgstr "" + +#: src/Model/Circle.php:608 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "" + +#: src/Model/Circle.php:609 +msgid "Edit circles" +msgstr "" + +#: src/Model/Contact.php:1240 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 +msgid "Approve" +msgstr "Goedkeuren" + +#: src/Model/Contact.php:1694 +msgid "Organisation" +msgstr "Organisatie" + +#: src/Model/Contact.php:1702 +msgid "Group" +msgstr "" + +#: src/Model/Contact.php:3005 +msgid "Disallowed profile URL." +msgstr "Niet toegelaten profiel adres." + +#: src/Model/Contact.php:3010 src/Module/Friendica.php:101 +msgid "Blocked domain" +msgstr "Domein geblokeerd" + +#: src/Model/Contact.php:3015 +msgid "Connect URL missing." +msgstr "Connectie URL ontbreekt." + +#: src/Model/Contact.php:3024 +msgid "" +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "Het contact kon niet toegevoegd worden. Gelieve de relevante netwerk gegevens na te kijken in Instellingen -> Sociale Netwerken." + +#: src/Model/Contact.php:3042 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "" + +#: src/Model/Contact.php:3059 +msgid "The profile address specified does not provide adequate information." +msgstr "Het opgegeven profiel adres bevat geen adequate informatie." + +#: src/Model/Contact.php:3061 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt." + +#: src/Model/Contact.php:3064 +msgid "An author or name was not found." +msgstr "Er werd geen auteur of naam gevonden." + +#: src/Model/Contact.php:3067 +msgid "No browser URL could be matched to this address." +msgstr "Er kan geen browser URL gematcht worden met dit adres." + +#: src/Model/Contact.php:3070 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact." + +#: src/Model/Contact.php:3071 +msgid "Use mailto: in front of address to force email check." +msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen." + +#: src/Model/Contact.php:3077 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Het opgegeven profiel adres behoort tot een netwerk dat gedeactiveerd is op deze site." + +#: src/Model/Contact.php:3082 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profiel met restricties. Deze peresoon zal geen directe/persoonlijke notificaties van jou kunnen ontvangen." + +#: src/Model/Contact.php:3148 +msgid "Unable to retrieve contact information." +msgstr "Het was niet mogelijk informatie over dit contact op te halen." + +#: src/Model/Event.php:54 +msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" +msgstr "" + +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 msgid "Starts:" msgstr "Begint:" -#: src/Model/Event.php:80 src/Model/Event.php:100 src/Model/Event.php:453 -#: src/Model/Event.php:934 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 msgid "Finishes:" msgstr "Eindigt:" -#: src/Model/Event.php:402 +#: src/Model/Event.php:419 msgid "all-day" msgstr "de hele dag" -#: src/Model/Event.php:428 +#: src/Model/Event.php:445 msgid "Sept" msgstr "Sep" -#: src/Model/Event.php:450 +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "vandaag" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:245 src/Util/Temporal.php:353 +msgid "month" +msgstr "maand" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:246 src/Util/Temporal.php:354 +msgid "week" +msgstr "week" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:247 src/Util/Temporal.php:355 +msgid "day" +msgstr "dag" + +#: src/Model/Event.php:467 msgid "No events to display" msgstr "Geen gebeurtenissen te tonen" -#: src/Model/Event.php:578 +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "Toegang tot dit profiel is beperkt." + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "" + +#: src/Model/Event.php:637 msgid "l, F j" msgstr "l j F" -#: src/Model/Event.php:609 +#: src/Model/Event.php:664 msgid "Edit event" msgstr "Gebeurtenis bewerken" -#: src/Model/Event.php:610 +#: src/Model/Event.php:665 msgid "Duplicate event" msgstr "Duplicate gebeurtenis" -#: src/Model/Event.php:611 +#: src/Model/Event.php:666 msgid "Delete event" msgstr "Verwijder gebeurtenis" -#: src/Model/Event.php:863 +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: src/Model/Event.php:897 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:864 +#: src/Model/Event.php:898 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:949 src/Model/Event.php:951 +#: src/Model/Event.php:964 src/Model/Event.php:966 msgid "Show map" msgstr "Toon kaart" -#: src/Model/Event.php:950 +#: src/Model/Event.php:965 msgid "Hide map" msgstr "Verberg kaart" -#: src/Model/Event.php:1042 +#: src/Model/Event.php:1058 #, php-format msgid "%s's birthday" msgstr "%s's verjaardag" -#: src/Model/Event.php:1043 +#: src/Model/Event.php:1059 #, php-format msgid "Happy Birthday %s" msgstr "Gefeliciteerd %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 "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. " +#: src/Model/Item.php:2062 +#, php-format +msgid "Detected languages in this post:\\n%s" +msgstr "" -#: src/Model/Group.php:451 -msgid "Default privacy group for new contacts" -msgstr "Standaard privacy groep voor nieuwe contacten" +#: src/Model/Item.php:3007 +msgid "activity" +msgstr "activiteit" -#: src/Model/Group.php:483 -msgid "Everybody" -msgstr "Iedereen" +#: src/Model/Item.php:3009 +msgid "comment" +msgstr "" -#: src/Model/Group.php:502 -msgid "edit" -msgstr "verander" +#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123 +msgid "post" +msgstr "bericht" -#: src/Model/Group.php:527 -msgid "add" -msgstr "toevoegen" +#: src/Model/Item.php:3182 +#, php-format +msgid "%s is blocked" +msgstr "" -#: src/Model/Group.php:532 -msgid "Edit group" -msgstr "Verander groep" +#: src/Model/Item.php:3184 +#, php-format +msgid "%s is ignored" +msgstr "" -#: src/Model/Group.php:533 src/Module/Group.php:193 -msgid "Contacts not in any group" -msgstr "Contacten bestaan in geen enkele groep" +#: src/Model/Item.php:3186 +#, php-format +msgid "Content from %s is collapsed" +msgstr "" -#: src/Model/Group.php:535 -msgid "Create a new group" -msgstr "Maak nieuwe groep" +#: src/Model/Item.php:3190 +#, php-format +msgid "Content warning: %s" +msgstr "Waarschuwing inhoud: %s" -#: src/Model/Group.php:536 src/Module/Group.php:178 src/Module/Group.php:201 -#: src/Module/Group.php:276 -msgid "Group Name: " -msgstr "Groepsnaam:" +#: src/Model/Item.php:3652 +msgid "bytes" +msgstr "bytes" -#: src/Model/Group.php:537 -msgid "Edit groups" -msgstr "Bewerk groepen" +#: src/Model/Item.php:3683 +#, php-format +msgid "%2$s (%3$d%%, %1$d vote)" +msgid_plural "%2$s (%3$d%%, %1$d votes)" +msgstr[0] "" +msgstr[1] "" -#: src/Model/Mail.php:128 src/Model/Mail.php:263 +#: src/Model/Item.php:3685 +#, php-format +msgid "%2$s (%1$d vote)" +msgid_plural "%2$s (%1$d votes)" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3690 +#, php-format +msgid "%d voter. Poll end: %s" +msgid_plural "%d voters. Poll end: %s" +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3692 +#, php-format +msgid "%d voter." +msgid_plural "%d voters." +msgstr[0] "" +msgstr[1] "" + +#: src/Model/Item.php:3694 +#, php-format +msgid "Poll end: %s" +msgstr "" + +#: src/Model/Item.php:3728 src/Model/Item.php:3729 +msgid "View on separate page" +msgstr "Bekijk op aparte pagina" + +#: src/Model/Mail.php:137 src/Model/Mail.php:266 msgid "[no subject]" msgstr "[geen onderwerp]" -#: src/Model/Profile.php:346 src/Module/Profile/Profile.php:250 -#: src/Module/Profile/Profile.php:252 +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Tijdlijn foto's" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 msgid "Edit profile" msgstr "Bewerk profiel" -#: src/Model/Profile.php:348 +#: src/Model/Profile.php:361 msgid "Change profile photo" msgstr "Profiel foto wijzigen" -#: src/Model/Profile.php:367 src/Module/Profile/Profile.php:180 -#: src/Module/Directory.php:161 +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 msgid "Homepage:" msgstr "Website:" -#: src/Model/Profile.php:368 src/Module/Notifications/Introductions.php:168 -#: src/Module/Contact.php:630 +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "Over:" -#: src/Model/Profile.php:369 src/Module/Profile/Profile.php:176 -#: src/Module/Contact.php:628 -msgid "XMPP:" -msgstr "XMPP:" - -#: src/Model/Profile.php:450 src/Module/Contact.php:334 -msgid "Unfollow" -msgstr "Stop volgen" - -#: src/Model/Profile.php:452 +#: src/Model/Profile.php:465 msgid "Atom feed" msgstr "Atom feed" -#: src/Model/Profile.php:460 src/Module/Notifications/Introductions.php:180 -#: src/Module/Contact.php:330 -msgid "Network:" -msgstr "Netwerk:" +#: src/Model/Profile.php:472 +msgid "This website has been verified to belong to the same person." +msgstr "" -#: src/Model/Profile.php:490 src/Model/Profile.php:587 -msgid "g A l F d" -msgstr "G l j F" - -#: src/Model/Profile.php:491 +#: src/Model/Profile.php:509 msgid "F d" msgstr "d F" -#: src/Model/Profile.php:553 src/Model/Profile.php:638 +#: src/Model/Profile.php:573 src/Model/Profile.php:662 msgid "[today]" msgstr "[vandaag]" -#: src/Model/Profile.php:563 +#: src/Model/Profile.php:582 msgid "Birthday Reminders" msgstr "Verjaardagsherinneringen" -#: src/Model/Profile.php:564 +#: src/Model/Profile.php:583 msgid "Birthdays this week:" msgstr "Verjaardagen deze week:" -#: src/Model/Profile.php:625 +#: src/Model/Profile.php:611 +msgid "g A l F d" +msgstr "G l j F" + +#: src/Model/Profile.php:649 msgid "[No description]" msgstr "[Geen omschrijving]" -#: src/Model/Profile.php:651 +#: src/Model/Profile.php:675 msgid "Event Reminders" msgstr "Gebeurtenisherinneringen" -#: src/Model/Profile.php:652 +#: src/Model/Profile.php:676 msgid "Upcoming events the next 7 days:" msgstr "Evenementen de komende 7 dagen:" -#: src/Model/Profile.php:827 +#: src/Model/Profile.php:873 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s verwelkomt %2$s" -#: src/Model/User.php:141 src/Model/User.php:885 +#: src/Model/Profile.php:1013 +msgid "Hometown:" +msgstr "Woonplaats:" + +#: src/Model/Profile.php:1014 +msgid "Marital Status:" +msgstr "" + +#: src/Model/Profile.php:1015 +msgid "With:" +msgstr "Met:" + +#: src/Model/Profile.php:1016 +msgid "Since:" +msgstr "Sinds:" + +#: src/Model/Profile.php:1017 +msgid "Sexual Preference:" +msgstr "Seksuele Voorkeur:" + +#: src/Model/Profile.php:1018 +msgid "Political Views:" +msgstr "Politieke standpunten:" + +#: src/Model/Profile.php:1019 +msgid "Religious Views:" +msgstr "Geloof:" + +#: src/Model/Profile.php:1020 +msgid "Likes:" +msgstr "Houdt van:" + +#: src/Model/Profile.php:1021 +msgid "Dislikes:" +msgstr "Houdt niet van:" + +#: src/Model/Profile.php:1022 +msgid "Title/Description:" +msgstr "Titel/Beschrijving:" + +#: src/Model/Profile.php:1023 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 +msgid "Summary" +msgstr "Samenvatting" + +#: src/Model/Profile.php:1024 +msgid "Musical interests" +msgstr "Muzikale interesses" + +#: src/Model/Profile.php:1025 +msgid "Books, literature" +msgstr "Boeken, literatuur" + +#: src/Model/Profile.php:1026 +msgid "Television" +msgstr "Televisie" + +#: src/Model/Profile.php:1027 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/cultuur/ontspanning" + +#: src/Model/Profile.php:1028 +msgid "Hobbies/Interests" +msgstr "Hobby's/Interesses" + +#: src/Model/Profile.php:1029 +msgid "Love/romance" +msgstr "Liefde/romance" + +#: src/Model/Profile.php:1030 +msgid "Work/employment" +msgstr "Werk" + +#: src/Model/Profile.php:1031 +msgid "School/education" +msgstr "School/opleiding" + +#: src/Model/Profile.php:1032 +msgid "Contact information and Social Networks" +msgstr "Contactinformatie en sociale netwerken" + +#: src/Model/User.php:227 src/Model/User.php:1186 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt." -#: src/Model/User.php:503 +#: src/Model/User.php:620 src/Model/User.php:653 msgid "Login failed" msgstr "Login mislukt" -#: src/Model/User.php:535 +#: src/Model/User.php:685 msgid "Not enough information to authenticate" msgstr "Niet genoeg informatie om te authentificeren" -#: src/Model/User.php:630 +#: src/Model/User.php:806 msgid "Password can't be empty" msgstr "Wachtwoord mag niet leeg zijn" -#: src/Model/User.php:649 +#: src/Model/User.php:848 msgid "Empty passwords are not allowed." msgstr "Lege wachtwoorden zijn niet toegestaan" -#: src/Model/User.php:653 +#: src/Model/User.php:852 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "The nieuwe wachtwoord is gecompromitteerd in een publieke data dump, kies alsjeblieft een ander." -#: src/Model/User.php:659 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "Het wachtwoord mag geen geaccentueerde letters, spaties of dubbele punten bevatten (:)" +#: src/Model/User.php:856 +msgid "The password length is limited to 72 characters." +msgstr "" -#: src/Model/User.php:765 +#: src/Model/User.php:860 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "" + +#: src/Model/User.php:1069 msgid "Passwords do not match. Password unchanged." msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd." -#: src/Model/User.php:772 +#: src/Model/User.php:1076 msgid "An invitation is required." msgstr "Een uitnodiging is vereist." -#: src/Model/User.php:776 +#: src/Model/User.php:1080 msgid "Invitation could not be verified." msgstr "Uitnodiging kon niet geverifieerd worden." -#: src/Model/User.php:784 +#: src/Model/User.php:1088 msgid "Invalid OpenID url" msgstr "Ongeldige OpenID url" -#: src/Model/User.php:797 src/App/Authentication.php:224 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Er is een probleem opgetreden bij het inloggen met het opgegeven OpenID. Kijk alsjeblieft de spelling van deze ID na." -#: src/Model/User.php:797 src/App/Authentication.php:224 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "De foutboodschap was:" -#: src/Model/User.php:803 +#: src/Model/User.php:1107 msgid "Please enter the required information." msgstr "Vul de vereiste informatie in." -#: src/Model/User.php:817 +#: src/Model/User.php:1121 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "system.username_min_length (%s) en system.username_max_length (%s) sluiten elkaar uit. Waarden worden omgedraaid." -#: src/Model/User.php:824 +#: src/Model/User.php:1128 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." msgstr[0] "Gebruikersnaam moet minimaal %s tekens bevatten." msgstr[1] "Gebruikersnaam moet minimaal %s tekens bevatten" -#: src/Model/User.php:828 +#: src/Model/User.php:1132 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." msgstr[0] "Gebruikersnaam mag maximaal %s tekens bevatten." msgstr[1] "Gebruikersnaam mag maximaal %s tekens bevatten." -#: src/Model/User.php:836 +#: src/Model/User.php:1140 msgid "That doesn't appear to be your full (First Last) name." msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn." -#: src/Model/User.php:841 +#: src/Model/User.php:1145 msgid "Your email domain is not among those allowed on this site." msgstr "Je e-maildomein is op deze website niet toegestaan." -#: src/Model/User.php:845 +#: src/Model/User.php:1149 msgid "Not a valid email address." msgstr "Geen geldig e-mailadres." -#: src/Model/User.php:848 +#: src/Model/User.php:1152 msgid "The nickname was blocked from registration by the nodes admin." msgstr "De bijnaam werd geblokkeerd voor registratie door de node admin" -#: src/Model/User.php:852 src/Model/User.php:860 +#: src/Model/User.php:1156 src/Model/User.php:1162 msgid "Cannot use that email." msgstr "Ik kan die e-mail niet gebruiken." -#: src/Model/User.php:867 +#: src/Model/User.php:1168 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Je bijnaam mag alleen a-z, 0-9 of _ bevatten." -#: src/Model/User.php:875 src/Model/User.php:932 +#: src/Model/User.php:1176 src/Model/User.php:1233 msgid "Nickname is already registered. Please choose another." msgstr "Bijnaam is al geregistreerd. Kies een andere." -#: src/Model/User.php:919 src/Model/User.php:923 +#: src/Model/User.php:1220 src/Model/User.php:1224 msgid "An error occurred during registration. Please try again." msgstr "Er is een fout opgetreden tijdens de registratie. Probeer opnieuw." -#: src/Model/User.php:946 +#: src/Model/User.php:1247 msgid "An error occurred creating your default profile. Please try again." msgstr "Er is een fout opgetreden bij het aanmaken van je standaard profiel. Probeer opnieuw." -#: src/Model/User.php:953 +#: src/Model/User.php:1254 msgid "An error occurred creating your self contact. Please try again." msgstr "Er is een fout opgetreden bij het aanmaken van je self contact. Probeer opnieuw." -#: src/Model/User.php:958 +#: src/Model/User.php:1259 msgid "Friends" msgstr "Vrienden" -#: src/Model/User.php:962 +#: src/Model/User.php:1263 msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "Er is een fout opgetreden bij het aanmaken van je standaard contact groep. Probeer opnieuw." +"An error occurred creating your default contact circle. Please try again." +msgstr "" -#: src/Model/User.php:1150 +#: src/Model/User.php:1307 +msgid "Profile Photos" +msgstr "Profielfoto's" + +#: src/Model/User.php:1487 #, php-format msgid "" "\n" @@ -5079,7 +3758,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\tBeste %1$s,\n\t\t\tde administrator van %2$s heeft een gebruiker voor je aangemaakt." -#: src/Model/User.php:1153 +#: src/Model/User.php:1490 #, php-format msgid "" "\n" @@ -5106,17 +3785,17 @@ msgid "" "\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" +"\t\tIf you ever want to delete your account, you can do so at %1$s/settings/removeme\n" "\n" "\t\tThank you and welcome to %4$s." -msgstr "\n\t\tDe logingegevens zijn als volgt:\n\n\t\tSite Locatie:\t%1$s\n\t\tLogin Naam:\t\t%2$s\n\t\tWachtwoord:\t\t%3$s\n\n\t\tJe kunt je wachtwoord wijzigen vanuit je gebruikers \"Instellingen\" pagina\n\t\tnadat je bent ingelogd.\n\n\t\tGelieve even de tijd te nemen om de andere gebruikersinstellingen te controleren op die pagina.\n\n\t\tAls je wilt kun je ook wat basisinformatie aan je standaard profiel toevoegen\n\t\t(op de \"Profielen\" pagina) zodat ander mensen je makkelijk kunnen vinden.\n\n\t\tWe bevelen je aan om je volledige naam in te vullen, een profielfoto en\n\t\tenkele profiel \"sleutelwoorden\" toe te voegen (zeer zinvol om nieuwe vrienden te maken) - en\n\t\tmisschien aangeven in welk land je woont; als je niet specifieker dan dat wenst te zijn.\n\n\t\tWe respecteren volledig je recht op privésfeer en geen van deze items zijn noodzakelijk.\n\t\tAls je hier nieuw bent en nog niemand kent, dan kunnen zij\n\t\tje helpen om enkele nieuwe en interessante vrienden te maken.\n\n\t\tAls je ooit je gebruiker wenst te verwijderen, dan kan je dat doen op %1$s/removeme\n\n\t\tBedankt en welkom bij %4$s." +msgstr "" -#: src/Model/User.php:1186 src/Model/User.php:1293 +#: src/Model/User.php:1523 src/Model/User.php:1630 #, php-format msgid "Registration details for %s" msgstr "Registratie details voor %s" -#: src/Model/User.php:1206 +#: src/Model/User.php:1543 #, php-format msgid "" "\n" @@ -5131,12 +3810,12 @@ msgid "" "\t\t" msgstr "\n\t\t\tHallo %1$s,\n\t\t\t\tBedankt voor uw registratie op %2$s. Uw account wacht op dit moment op bevestiging door de administrator.\n\n\t\t\tUw login details zijn:\n\n\t\t\tSite locatie:\t%3$s\n\t\t\tGebruikersnaam:\t\t%4$s\n\t\t\tWachtwoord:\t\t%5$s\n\t\t" -#: src/Model/User.php:1225 +#: src/Model/User.php:1562 #, php-format msgid "Registration at %s" msgstr "Registratie bij %s" -#: src/Model/User.php:1249 +#: src/Model/User.php:1586 #, php-format msgid "" "\n" @@ -5145,7 +3824,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\tBeste %1$s,\n\t\t\t\tBedankt voor je inschrijving op %2$s. Je gebruiker is aangemaakt.\n\t\t\t" -#: src/Model/User.php:1257 +#: src/Model/User.php:1594 #, php-format msgid "" "\n" @@ -5172,230 +3851,65 @@ msgid "" "\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" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." -msgstr "\n\t\t\tDe login details zijn de volgende:\n\n\t\t\tSite Locatie:\t%3$s\n\t\t\tLogin Naam:\t\t%1$s\n\t\t\tWachtwoord:\t\t%5$s\n\n\t\t\tJe kunt je wachtwoord in de \"Instellingen\" pagina veranderen nadat je bent ingelogd.\n\n\t\t\tNeem een ogenblik de tijd om je andere instellingen na te kijken op die pagina.\n\n\t\t\tJe kunt ook wat basis informatie toevoegen aan je standaard profiel\n\t\t\t(in de \"Profielen\" pagina) zodat anderen je gemakkelijk kunnen vinden.\n\n\t\t\tWe raden aan je volledige naam in te vullen, een profiel foto toe te voegen,\n\t\t\tenkele profiel \"sleutelwoorden\" (zeer handig om nieuwe vrienden te leren kennen) - en\n\t\t\tmisschien in welk land je woont; als je niet meer details wil geven.\n\t\t\tWe respecteren je privacy volledig, en geen van deze velden zijn verplicht.\n\t\t\tAls je nieuw bent en niemand kent, dan kunnen zij je misschien\n\t\t\thelpen om enkele nieuwe en interessante vrienden te leren kennen.\n\n\t\t\tAls je ooit je account wil verwijderen, dan kan je dat via %3$s/removeme\n\n\t\t\tBedankt en welkom bij %2$s." - -#: src/Model/Contact.php:961 src/Model/Contact.php:974 -msgid "UnFollow" -msgstr "Ontvolgen" - -#: src/Model/Contact.php:970 -msgid "Drop Contact" -msgstr "Verwijder contact" - -#: src/Model/Contact.php:980 src/Module/Admin/Users.php:251 -#: src/Module/Notifications/Introductions.php:107 -#: src/Module/Notifications/Introductions.php:183 -msgid "Approve" -msgstr "Goedkeuren" - -#: src/Model/Contact.php:1367 -msgid "Organisation" -msgstr "Organisatie" - -#: src/Model/Contact.php:1371 -msgid "News" -msgstr "Nieuws" - -#: src/Model/Contact.php:1375 -msgid "Forum" -msgstr "Forum" - -#: src/Model/Contact.php:2027 -msgid "Connect URL missing." -msgstr "Connectie URL ontbreekt." - -#: src/Model/Contact.php:2036 -msgid "" -"The contact could not be added. Please check the relevant network " -"credentials in your Settings -> Social Networks page." -msgstr "Het contact kon niet toegevoegd worden. Gelieve de relevante netwerk gegevens na te kijken in Instellingen -> Sociale Netwerken." - -#: src/Model/Contact.php:2077 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken." - -#: src/Model/Contact.php:2078 src/Model/Contact.php:2091 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt." - -#: src/Model/Contact.php:2089 -msgid "The profile address specified does not provide adequate information." -msgstr "Het opgegeven profiel adres bevat geen adequate informatie." - -#: src/Model/Contact.php:2094 -msgid "An author or name was not found." -msgstr "Er werd geen auteur of naam gevonden." - -#: src/Model/Contact.php:2097 -msgid "No browser URL could be matched to this address." -msgstr "Er kan geen browser URL gematcht worden met dit adres." - -#: src/Model/Contact.php:2100 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact." - -#: src/Model/Contact.php:2101 -msgid "Use mailto: in front of address to force email check." -msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen." - -#: src/Model/Contact.php:2107 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Het opgegeven profiel adres behoort tot een netwerk dat gedeactiveerd is op deze site." - -#: src/Model/Contact.php:2112 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Profiel met restricties. Deze peresoon zal geen directe/persoonlijke notificaties van jou kunnen ontvangen." - -#: src/Model/Contact.php:2171 -msgid "Unable to retrieve contact information." -msgstr "Het was niet mogelijk informatie over dit contact op te halen." - -#: src/Model/Item.php:3379 -msgid "activity" -msgstr "activiteit" - -#: src/Model/Item.php:3381 src/Object/Post.php:540 -msgid "comment" -msgid_plural "comments" -msgstr[0] "reactie" -msgstr[1] "reacties" - -#: src/Model/Item.php:3384 -msgid "post" -msgstr "bericht" - -#: src/Model/Item.php:3507 -#, php-format -msgid "Content warning: %s" -msgstr "Waarschuwing inhoud: %s" - -#: src/Model/Item.php:3584 -msgid "bytes" -msgstr "bytes" - -#: src/Model/Item.php:3629 -msgid "View on separate page" -msgstr "Bekijk op aparte pagina" - -#: src/Model/Item.php:3630 -msgid "view on separate page" -msgstr "bekijk op aparte pagina" - -#: src/Protocol/Diaspora.php:3516 -msgid "Attachments:" -msgstr "Bijlagen:" - -#: src/Protocol/Feed.php:892 src/Protocol/OStatus.php:1269 -#: src/Module/Profile/Profile.php:320 src/Module/Profile/Profile.php:323 -#: src/Module/Profile/Status.php:61 src/Module/Profile/Status.php:64 -#, php-format -msgid "%s's timeline" -msgstr "Tijdslijn van %s" - -#: src/Protocol/Feed.php:896 src/Protocol/OStatus.php:1273 -#: src/Module/Profile/Profile.php:321 src/Module/Profile/Status.php:62 -#, php-format -msgid "%s's posts" -msgstr "Berichten van %s" - -#: src/Protocol/Feed.php:899 src/Protocol/OStatus.php:1276 -#: src/Module/Profile/Profile.php:322 src/Module/Profile/Status.php:63 -#, php-format -msgid "%s's comments" -msgstr "reactie van %s" - -#: src/Protocol/OStatus.php:1777 -#, php-format -msgid "%s is now following %s." -msgstr "%s volgt nu %s." - -#: src/Protocol/OStatus.php:1778 -msgid "following" -msgstr "volgend" - -#: src/Protocol/OStatus.php:1781 -#, php-format -msgid "%s stopped following %s." -msgstr "%s stopte %s te volgen." - -#: src/Protocol/OStatus.php:1782 -msgid "stopped following" -msgstr "is gestopt met volgen" - -#: src/Render/FriendicaSmartyEngine.php:52 -msgid "The folder view/smarty3/ must be writable by webserver." msgstr "" -#: src/Worker/Delivery.php:556 -msgid "(no subject)" -msgstr "(geen onderwerp)" - -#: src/Module/Admin/Addons/Details.php:70 +#: src/Module/Admin/Addons/Details.php:65 msgid "Addon not found." msgstr "Addon niet gevonden." -#: src/Module/Admin/Addons/Details.php:81 src/Module/Admin/Addons/Index.php:49 +#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 #, php-format msgid "Addon %s disabled." msgstr "Addon %s gedeactiveerd" -#: src/Module/Admin/Addons/Details.php:84 src/Module/Admin/Addons/Index.php:51 +#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 #, php-format msgid "Addon %s enabled." msgstr "Addon %s geactiveerd" -#: src/Module/Admin/Addons/Details.php:93 -#: src/Module/Admin/Themes/Details.php:77 +#: src/Module/Admin/Addons/Details.php:88 +#: src/Module/Admin/Themes/Details.php:46 msgid "Disable" msgstr "Uitschakelen" -#: src/Module/Admin/Addons/Details.php:96 -#: src/Module/Admin/Themes/Details.php:80 +#: src/Module/Admin/Addons/Details.php:91 +#: src/Module/Admin/Themes/Details.php:49 msgid "Enable" msgstr "Inschakelen" -#: src/Module/Admin/Addons/Details.php:116 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:78 -#: src/Module/Admin/Blocklist/Server.php:88 -#: src/Module/Admin/Item/Delete.php:65 src/Module/Admin/Logs/View.php:64 -#: src/Module/Admin/Logs/Settings.php:78 -#: src/Module/Admin/Themes/Details.php:121 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Queue.php:75 -#: src/Module/Admin/Federation.php:140 src/Module/Admin/Site.php:587 -#: src/Module/Admin/Summary.php:230 src/Module/Admin/Tos.php:58 -#: src/Module/Admin/Users.php:242 +#: src/Module/Admin/Addons/Details.php:111 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 +#: src/Module/Admin/Themes/Details.php:90 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 msgid "Administration" msgstr "Beheer" -#: src/Module/Admin/Addons/Details.php:117 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseSettings.php:87 -#: src/Module/BaseAdmin.php:99 +#: src/Module/Admin/Addons/Details.php:112 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:132 msgid "Addons" msgstr "Addons" -#: src/Module/Admin/Addons/Details.php:118 -#: src/Module/Admin/Themes/Details.php:123 +#: src/Module/Admin/Addons/Details.php:113 +#: src/Module/Admin/Themes/Details.php:92 msgid "Toggle" msgstr "Schakelaar" -#: src/Module/Admin/Addons/Details.php:126 -#: src/Module/Admin/Themes/Details.php:132 +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 msgid "Author: " msgstr "Auteur:" -#: src/Module/Admin/Addons/Details.php:127 -#: src/Module/Admin/Themes/Details.php:133 +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 msgid "Maintainer: " msgstr "Onderhoud:" @@ -5408,11 +3922,22 @@ msgstr "" msgid "Addon %s failed to install." msgstr "Installatie Addon %s is mislukt." +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Instellingen opslaan" + #: src/Module/Admin/Addons/Index.php:70 msgid "Reload active addons" msgstr "Herlaad actieve addons" -#: src/Module/Admin/Addons/Index.php:75 +#: src/Module/Admin/Addons/Index.php:74 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -5420,279 +3945,209 @@ msgid "" " the open addon registry at %2$s" msgstr "Er zijn op je node momenteel geen addons beschikbaar. Je kan de officiële addon repository vinden op %1$s en je kan mogelijks nog andere interessante addons vinden in de open addon registry op %2$s" -#: src/Module/Admin/Blocklist/Contact.php:47 -#: src/Console/GlobalCommunityBlock.php:101 -msgid "The contact has been blocked from the node" -msgstr "Het contact is geblokkeerd van deze node" +#: src/Module/Admin/DBSync.php:51 +msgid "Update has been marked successful" +msgstr "Wijziging succesvol gemarkeerd " -#: src/Module/Admin/Blocklist/Contact.php:49 -#: src/Console/GlobalCommunityBlock.php:96 +#: src/Module/Admin/DBSync.php:59 #, php-format -msgid "Could not find any contact entry for this URL (%s)" -msgstr "Kon geen contact vinden op deze URL (%s)" +msgid "Database structure update %s was successfully applied." +msgstr "Database structuur update %s werd met succes toegepast." -#: src/Module/Admin/Blocklist/Contact.php:57 +#: src/Module/Admin/DBSync.php:61 #, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s contact is niet langer geblokkeerd" -msgstr[1] "%s contacten zijn niet langer geblokkeerd" +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Uitvoering van de database structuur update %s is mislukt met fout: %s" -#: src/Module/Admin/Blocklist/Contact.php:79 -msgid "Remote Contact Blocklist" -msgstr "Remote Contact Blokkeerlijst" - -#: 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 "De pagina laat je toe om te vermijden dat boodschappen van een remote contact je node bereiken." - -#: src/Module/Admin/Blocklist/Contact.php:81 -msgid "Block Remote Contact" -msgstr "Blokkeer Remote Contact" - -#: src/Module/Admin/Blocklist/Contact.php:82 src/Module/Admin/Users.php:245 -msgid "select all" -msgstr "Alles selecteren" - -#: src/Module/Admin/Blocklist/Contact.php:83 -msgid "select none" -msgstr "selecteer geen" - -#: src/Module/Admin/Blocklist/Contact.php:85 src/Module/Admin/Users.php:256 -#: src/Module/Contact.php:605 src/Module/Contact.php:851 -#: src/Module/Contact.php:1132 -msgid "Unblock" -msgstr "Blokkering opheffen" - -#: src/Module/Admin/Blocklist/Contact.php:86 -msgid "No remote contact is blocked from this node." -msgstr "Geen enkel remote contact is geblokkeerd van deze node." - -#: src/Module/Admin/Blocklist/Contact.php:88 -msgid "Blocked Remote Contacts" -msgstr "Geblokkeerde Remote Contacts" - -#: src/Module/Admin/Blocklist/Contact.php:89 -msgid "Block New Remote Contact" -msgstr "Blokkeer Nieuwe Remote Contacten" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Photo" -msgstr "Foto" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Reason" -msgstr "Reden" - -#: src/Module/Admin/Blocklist/Contact.php:98 +#: src/Module/Admin/DBSync.php:76 #, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "%s geblokkeerde contacten in totaal" -msgstr[1] "%s geblokkeerde contacten in totaal" +msgid "Executing %s failed with error: %s" +msgstr "Uitvoering van %s mislukt met fout: %s" -#: src/Module/Admin/Blocklist/Contact.php:100 -msgid "URL of the remote contact to block." -msgstr "URL van de remote contact die je wil blokkeren." +#: src/Module/Admin/DBSync.php:78 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Wijziging %s geslaagd." -#: src/Module/Admin/Blocklist/Contact.php:101 -msgid "Block Reason" -msgstr "Reden voor blokkeren" +#: src/Module/Admin/DBSync.php:81 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is." -#: src/Module/Admin/Blocklist/Server.php:49 -msgid "Server domain pattern added to blocklist." -msgstr "" +#: src/Module/Admin/DBSync.php:84 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "Er was geen bijkomende update functie %s die moest opgeroepen worden." -#: src/Module/Admin/Blocklist/Server.php:79 -#: src/Module/Admin/Blocklist/Server.php:104 -msgid "Blocked server domain pattern" -msgstr "" +#: src/Module/Admin/DBSync.php:105 +msgid "No failed updates." +msgstr "Geen mislukte wijzigingen" -#: src/Module/Admin/Blocklist/Server.php:80 -#: src/Module/Admin/Blocklist/Server.php:105 src/Module/Friendica.php:80 -msgid "Reason for the block" -msgstr "Reden van de blokkering" +#: src/Module/Admin/DBSync.php:106 +msgid "Check database structure" +msgstr "Controleer de database structuur" -#: src/Module/Admin/Blocklist/Server.php:81 -msgid "Delete server domain pattern" -msgstr "" +#: src/Module/Admin/DBSync.php:110 +msgid "Failed Updates" +msgstr "Mislukte wijzigingen" -#: src/Module/Admin/Blocklist/Server.php:81 -msgid "Check to delete this entry from the blocklist" -msgstr "Vink aan om dit item van de blokkeerlijst te verwijderen" - -#: src/Module/Admin/Blocklist/Server.php:89 -msgid "Server Domain Pattern Blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:90 +#: src/Module/Admin/DBSync.php:111 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 "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven." -#: src/Module/Admin/Blocklist/Server.php:91 +#: src/Module/Admin/DBSync.php:112 +msgid "Mark success (if update was manually applied)" +msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)" + +#: src/Module/Admin/DBSync.php:113 +msgid "Attempt to execute this update step automatically" +msgstr "Probeer deze stap automatisch uit te voeren" + +#: src/Module/Admin/Features.php:76 +#, php-format +msgid "Lock feature %s" +msgstr "Fixeer feature %s " + +#: src/Module/Admin/Features.php:84 +msgid "Manage Additional Features" +msgstr "Beheer Bijkomende Features" + +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 +msgid "Other" +msgstr "Anders" + +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 +msgid "unknown" +msgstr "onbekend" + +#: src/Module/Admin/Federation.php:187 +#, php-format +msgid "%2$s total system" +msgid_plural "%2$s total systems" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:188 +#, php-format +msgid "%2$s active user last month" +msgid_plural "%2$s active users last month" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:189 +#, php-format +msgid "%2$s active user last six months" +msgid_plural "%2$s active users last six months" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:190 +#, php-format +msgid "%2$s registered user" +msgid_plural "%2$s registered users" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:191 +#, php-format +msgid "%2$s locally created post or comment" +msgid_plural "%2$s locally created posts and comments" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:194 +#, php-format +msgid "%2$s post per user" +msgid_plural "%2$s posts per user" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:199 +#, php-format +msgid "%2$s user per system" +msgid_plural "%2$s users per system" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:209 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 "" +"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 "Deze pagina toont je statistieken van het gekende deel van het gefedereerde sociale netwerk waarvan je Friendica node deel uitmaakt. Deze statistieken zijn niet volledig maar reflecteren het deel van het network dat jouw node kent." -#: 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 "" +#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87 +msgid "Federation Statistics" +msgstr "Federatie Statistieken" -#: src/Module/Admin/Blocklist/Server.php:98 -msgid "Add new entry to block list" -msgstr "Voeg nieuw item toe aan de blokkeerlijst" - -#: src/Module/Admin/Blocklist/Server.php:99 -msgid "Server Domain Pattern" -msgstr "" - -#: 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 "" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "Block reason" -msgstr "Reden voor blokkering" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "The reason why you blocked this server domain pattern." -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "Add Entry" -msgstr "Voeg Item toe" - -#: src/Module/Admin/Blocklist/Server.php:102 -msgid "Save changes to the blocklist" -msgstr "Sla veranderingen in de blokkeerlijst op" - -#: src/Module/Admin/Blocklist/Server.php:103 -msgid "Current Entries in the Blocklist" -msgstr "Huidige Items in de blokkeerlijst" - -#: src/Module/Admin/Blocklist/Server.php:106 -msgid "Delete entry from blocklist" -msgstr "Verwijder item uit de blokkeerlijst" - -#: src/Module/Admin/Blocklist/Server.php:109 -msgid "Delete entry from blocklist?" -msgstr "Item verwijderen uit de blokkeerlijst?" - -#: src/Module/Admin/Item/Delete.php:54 -msgid "Item marked for deletion." -msgstr "Item gemarkeerd om te verwijderen." - -#: src/Module/Admin/Item/Delete.php:66 src/Module/BaseAdmin.php:112 -msgid "Delete Item" -msgstr "Verwijder Item" - -#: src/Module/Admin/Item/Delete.php:67 -msgid "Delete this Item" -msgstr "Verwijder dit Item" - -#: 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 "Op deze pagina kan je een item van je node verwijderen. Als het item een bericht is op het eerste niveau, dan zal de hele gesprek verwijderd worden." - -#: 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 "Je moet de GUID van het item kennen. Je kan het terugvinden bvb. door te kijken naar de getoonde URL. Het laatste deel van http://example.com/display/123456 is de GUID, hier 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 "De GUID van het item dat je wil verwijderen." - -#: src/Module/Admin/Item/Source.php:57 -msgid "Item Guid" -msgstr "Item identificatie" - -#: src/Module/Admin/Logs/View.php:40 +#: src/Module/Admin/Federation.php:219 #, 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 "Fout bij het openen van log file %1$s .\\r\\n
    Kijk na of bestand %1$s bestaat en mag gelezen worden." +"Currently this node is aware of %2$s node (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgid_plural "" +"Currently this node is aware of %2$s nodes (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgstr[0] "" +msgstr[1] "" -#: 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 "Kon log file %1$s niet openen.\\r\\n
    Kijk na of bestand %1$s mag gelezen worden." - -#: src/Module/Admin/Logs/View.php:65 src/Module/BaseAdmin.php:116 -msgid "View Logs" -msgstr "Bekijk Logs" - -#: src/Module/Admin/Logs/Settings.php:45 +#: src/Module/Admin/Logs/Settings.php:47 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "" -#: src/Module/Admin/Logs/Settings.php:70 +#: src/Module/Admin/Logs/Settings.php:77 msgid "PHP log currently enabled." msgstr "PHP log momenteel geactiveerd" -#: src/Module/Admin/Logs/Settings.php:72 +#: src/Module/Admin/Logs/Settings.php:79 msgid "PHP log currently disabled." msgstr "PHP log momenteel gedeactiveerd" -#: src/Module/Admin/Logs/Settings.php:79 src/Module/BaseAdmin.php:114 -#: src/Module/BaseAdmin.php:115 +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 msgid "Logs" msgstr "Logs" -#: src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:88 msgid "Clear" msgstr "Wis" -#: src/Module/Admin/Logs/Settings.php:85 +#: src/Module/Admin/Logs/Settings.php:91 msgid "Enable Debugging" msgstr "Activeer Debugging" -#: src/Module/Admin/Logs/Settings.php:86 +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:92 msgid "Log file" msgstr "Logbestand" -#: src/Module/Admin/Logs/Settings.php:86 +#: src/Module/Admin/Logs/Settings.php:92 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "De webserver moet hier kunnen schrijven. Relatief t.o.v. de hoogste folder binnen je Friendica-installatie." -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:93 msgid "Log level" msgstr "Log niveau" -#: src/Module/Admin/Logs/Settings.php:89 +#: src/Module/Admin/Logs/Settings.php:95 msgid "PHP logging" msgstr "PHP logging" -#: src/Module/Admin/Logs/Settings.php:90 +#: src/Module/Admin/Logs/Settings.php:96 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 " @@ -5701,31 +4156,1286 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "Om logging van PHP fouten en waarschuwingen te activeren, kan je het volgende toevoegen aan het begin van je index.php bestand van je installatie. De naam van het bestand die ingesteld is in de 'error_log' lijn is relatief tegenover de friendica top-level folder en de server moet erin kunnen schrijven. De optie '1' voor 'log_errors' en 'display_errors' activeert deze opties, configureer '0' om ze te deactiveren. " -#: src/Module/Admin/Themes/Details.php:88 src/Module/Admin/Themes/Index.php:65 +#: src/Module/Admin/Logs/View.php:70 +#, php-format +msgid "" +"Error trying to open %1$s log file.
    Check to see if " +"file %1$s exist and is readable." +msgstr "" + +#: src/Module/Admin/Logs/View.php:79 +#, php-format +msgid "" +"Couldn't open %1$s log file.
    Check to see if file %1$s " +"is readable." +msgstr "" + +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 +msgid "View Logs" +msgstr "Bekijk Logs" + +#: src/Module/Admin/Logs/View.php:87 +msgid "Search in logs" +msgstr "" + +#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Notifications/Notifications.php:140 +msgid "Show all" +msgstr "Toon alles" + +#: src/Module/Admin/Logs/View.php:89 +msgid "Date" +msgstr "" + +#: src/Module/Admin/Logs/View.php:90 +msgid "Level" +msgstr "" + +#: src/Module/Admin/Logs/View.php:91 +msgid "Context" +msgstr "" + +#: src/Module/Admin/Logs/View.php:93 +msgid "ALL" +msgstr "" + +#: src/Module/Admin/Logs/View.php:94 +msgid "View details" +msgstr "" + +#: src/Module/Admin/Logs/View.php:95 +msgid "Click to view details" +msgstr "" + +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Gebeurtenis details" + +#: src/Module/Admin/Logs/View.php:97 +msgid "Data" +msgstr "" + +#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Debug/ActivityPubConversion.php:57 +msgid "Source" +msgstr "" + +#: src/Module/Admin/Logs/View.php:99 +msgid "File" +msgstr "" + +#: src/Module/Admin/Logs/View.php:100 +msgid "Line" +msgstr "" + +#: src/Module/Admin/Logs/View.php:101 +msgid "Function" +msgstr "" + +#: src/Module/Admin/Logs/View.php:102 +msgid "UID" +msgstr "" + +#: src/Module/Admin/Logs/View.php:103 +msgid "Process ID" +msgstr "" + +#: src/Module/Admin/Logs/View.php:104 +msgid "Close" +msgstr "" + +#: src/Module/Admin/Queue.php:50 +msgid "Inspect Deferred Worker Queue" +msgstr "Inspecteer wachtrij van uitgestelde workers" + +#: 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 "Deze pagine geeft alle uitgestelde workertaken. Dit zijn taken die niet onmiddelijk konden worden uitgevoerd" + +#: src/Module/Admin/Queue.php:54 +msgid "Inspect Worker Queue" +msgstr "Taakwachtrij inspecteren" + +#: 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 "Deze pagina toont alle taken in de wachtrij. Deze taken worden behandeld door de geplande taak die je hebt ingesteld tijdens installatie." + +#: src/Module/Admin/Queue.php:75 +msgid "ID" +msgstr "ID" + +#: src/Module/Admin/Queue.php:76 +msgid "Command" +msgstr "" + +#: src/Module/Admin/Queue.php:77 +msgid "Job Parameters" +msgstr "Taak parameters" + +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "Aangemaakt" + +#: src/Module/Admin/Queue.php:79 +msgid "Priority" +msgstr "Prioriteit" + +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" +msgstr "" + +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:178 +msgid "No special theme for mobile devices" +msgstr "Geen speciaal thema voor mobiele apparaten" + +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Experimenteel)" + +#: src/Module/Admin/Site.php:342 +msgid "No community page" +msgstr "Geen groepspagina" + +#: src/Module/Admin/Site.php:343 +msgid "No community page for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:344 +msgid "Public postings from users of this site" +msgstr "Publieke berichten van gebruikers van deze site" + +#: src/Module/Admin/Site.php:345 +msgid "Public postings from the federated network" +msgstr "Publieke berichten van het gefedereerde netwerk" + +#: src/Module/Admin/Site.php:346 +msgid "Public postings from local users and the federated network" +msgstr "Publieke berichten van lokale gebruikers en van het gefedereerde netwerk" + +#: src/Module/Admin/Site.php:352 +msgid "Multi user instance" +msgstr "Server voor meerdere gebruikers" + +#: src/Module/Admin/Site.php:375 +msgid "Closed" +msgstr "Gesloten" + +#: src/Module/Admin/Site.php:376 +msgid "Requires approval" +msgstr "Toestemming vereist" + +#: src/Module/Admin/Site.php:377 +msgid "Open" +msgstr "Open" + +#: src/Module/Admin/Site.php:381 +msgid "Don't check" +msgstr "Geen rekening mee houden" + +#: src/Module/Admin/Site.php:382 +msgid "check the stable version" +msgstr "Neem de stabiele versie in rekening" + +#: src/Module/Admin/Site.php:383 +msgid "check the development version" +msgstr "Neem de ontwikkel versie in rekening" + +#: src/Module/Admin/Site.php:387 +msgid "none" +msgstr "geen" + +#: src/Module/Admin/Site.php:388 +msgid "Local contacts" +msgstr "" + +#: src/Module/Admin/Site.php:389 +msgid "Interactors" +msgstr "" + +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 +msgid "Site" +msgstr "Website" + +#: src/Module/Admin/Site.php:400 +msgid "General Information" +msgstr "" + +#: src/Module/Admin/Site.php:402 +msgid "Republish users to directory" +msgstr "Opnieuw de gebruikers naar de gids publiceren" + +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 +msgid "Registration" +msgstr "Registratie" + +#: src/Module/Admin/Site.php:404 +msgid "File upload" +msgstr "Uploaden bestand" + +#: src/Module/Admin/Site.php:405 +msgid "Policies" +msgstr "Beleid" + +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "Geavanceerd" + +#: src/Module/Admin/Site.php:407 +msgid "Auto Discovered Contact Directory" +msgstr "Automatisch Achterhaalde Contact Gids" + +#: src/Module/Admin/Site.php:408 +msgid "Performance" +msgstr "Performantie" + +#: src/Module/Admin/Site.php:409 +msgid "Worker" +msgstr "Worker" + +#: src/Module/Admin/Site.php:410 +msgid "Message Relay" +msgstr "Boodschap Relais" + +#: src/Module/Admin/Site.php:411 +msgid "" +"Use the command \"console relay\" in the command line to add or remove " +"relays." +msgstr "" + +#: src/Module/Admin/Site.php:412 +msgid "The system is not subscribed to any relays at the moment." +msgstr "" + +#: src/Module/Admin/Site.php:413 +msgid "The system is currently subscribed to the following relays:" +msgstr "" + +#: src/Module/Admin/Site.php:415 +msgid "Relocate Node" +msgstr "" + +#: src/Module/Admin/Site.php:416 +msgid "" +"Relocating your node enables you to change the DNS domain of this node and " +"keep all the existing users and posts. This process takes a while and can " +"only be started from the relocate console command like this:" +msgstr "" + +#: src/Module/Admin/Site.php:417 +msgid "(Friendica directory)# bin/console relocate https://newdomain.com" +msgstr "" + +#: src/Module/Admin/Site.php:420 +msgid "Site name" +msgstr "Site naam" + +#: src/Module/Admin/Site.php:421 +msgid "Sender Email" +msgstr "Verzender Email" + +#: src/Module/Admin/Site.php:421 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "Het email adres als afzender van notificatie emails." + +#: src/Module/Admin/Site.php:422 +msgid "Name of the system actor" +msgstr "" + +#: src/Module/Admin/Site.php:422 +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:423 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: src/Module/Admin/Site.php:424 +msgid "Email Banner/Logo" +msgstr "" + +#: src/Module/Admin/Site.php:425 +msgid "Shortcut icon" +msgstr "Snelkoppeling icoon" + +#: src/Module/Admin/Site.php:425 +msgid "Link to an icon that will be used for browsers." +msgstr "Link naar een icoon dat zal gebruikt worden voor browsers." + +#: src/Module/Admin/Site.php:426 +msgid "Touch icon" +msgstr "Pictogram voor smartphones" + +#: src/Module/Admin/Site.php:426 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Link naar een icoon dat zal gebruikt worden voor tablets en mobiele telefoons." + +#: src/Module/Admin/Site.php:427 +msgid "Additional Info" +msgstr "Bijkomende Info" + +#: src/Module/Admin/Site.php:427 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/servers." +msgstr "Voor publieke servers: je kan bijkomende informatie hier toevoegen die zal opgelijst zijn op %s/servers." + +#: src/Module/Admin/Site.php:428 +msgid "System language" +msgstr "Systeemtaal" + +#: src/Module/Admin/Site.php:429 +msgid "System theme" +msgstr "Systeem thema" + +#: src/Module/Admin/Site.php:429 +#, php-format +msgid "" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "" + +#: src/Module/Admin/Site.php:430 +msgid "Mobile system theme" +msgstr "Mobiel systeem thema" + +#: src/Module/Admin/Site.php:430 +msgid "Theme for mobile devices" +msgstr "Thema voor mobiele apparaten" + +#: src/Module/Admin/Site.php:431 +msgid "Force SSL" +msgstr "Dwing SSL af" + +#: src/Module/Admin/Site.php:431 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Forceer alle Niet-SSL aanvragen naar SSL - Pas op: dit kan op sommige systeem resulteren in oneindige lussen." + +#: src/Module/Admin/Site.php:432 +msgid "Show help entry from navigation menu" +msgstr "" + +#: src/Module/Admin/Site.php:432 +msgid "" +"Displays the menu entry for the Help pages from the navigation menu. It is " +"always accessible by calling /help directly." +msgstr "" + +#: src/Module/Admin/Site.php:433 +msgid "Single user instance" +msgstr "Server voor één gebruiker" + +#: src/Module/Admin/Site.php:433 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker." + +#: src/Module/Admin/Site.php:435 +msgid "Maximum image size" +msgstr "Maximum afbeeldingsgrootte" + +#: src/Module/Admin/Site.php:435 +#, php-format +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "" + +#: src/Module/Admin/Site.php:439 +msgid "Maximum image length" +msgstr "Maximum afbeeldingslengte" + +#: src/Module/Admin/Site.php:439 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen." + +#: src/Module/Admin/Site.php:440 +msgid "JPEG image quality" +msgstr "JPEG afbeeldingskwaliteit" + +#: src/Module/Admin/Site.php:440 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit." + +#: src/Module/Admin/Site.php:442 +msgid "Register policy" +msgstr "Registratiebeleid" + +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "" + +#: src/Module/Admin/Site.php:444 +msgid "Maximum Daily Registrations" +msgstr "Maximum aantal registraties per dag" + +#: src/Module/Admin/Site.php:444 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect." + +#: src/Module/Admin/Site.php:445 +msgid "Register text" +msgstr "Registratietekst" + +#: src/Module/Admin/Site.php:445 +msgid "" +"Will be displayed prominently on the registration page. You can use BBCode " +"here." +msgstr "Zal prominent op de registratie pagina getoond worden. Je kan hierin BBCode gebruiken." + +#: src/Module/Admin/Site.php:446 +msgid "Forbidden Nicknames" +msgstr "Verboden bijnamen" + +#: src/Module/Admin/Site.php:446 +msgid "" +"Comma separated list of nicknames that are forbidden from registration. " +"Preset is a list of role names according RFC 2142." +msgstr "Kommagescheiden lijst van bijnamen die verboden zijn voor registratie. De lijst uit RFC2142 is op voorhand ingesteld." + +#: src/Module/Admin/Site.php:447 +msgid "Accounts abandoned after x days" +msgstr "Verlaten accounts na x dagen" + +#: src/Module/Admin/Site.php:447 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet." + +#: src/Module/Admin/Site.php:448 +msgid "Allowed friend domains" +msgstr "Toegelaten vriend domeinen" + +#: src/Module/Admin/Site.php:448 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten." + +#: src/Module/Admin/Site.php:449 +msgid "Allowed email domains" +msgstr "Toegelaten e-mail domeinen" + +#: src/Module/Admin/Site.php:449 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan." + +#: src/Module/Admin/Site.php:450 +msgid "No OEmbed rich content" +msgstr "Geen OEmbed richt content" + +#: src/Module/Admin/Site.php:450 +msgid "" +"Don't show the rich content (e.g. embedded PDF), except from the domains " +"listed below." +msgstr "Toon geen rich content (bvb. embedded PDF), behalve van domeinen hieronder opgelijst." + +#: src/Module/Admin/Site.php:451 +msgid "Trusted third-party domains" +msgstr "" + +#: src/Module/Admin/Site.php:451 +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:452 +msgid "Block public" +msgstr "Openbare toegang blokkeren" + +#: src/Module/Admin/Site.php:452 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers." + +#: src/Module/Admin/Site.php:453 +msgid "Force publish" +msgstr "Dwing publiceren af" + +#: src/Module/Admin/Site.php:453 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden." + +#: src/Module/Admin/Site.php:453 +msgid "Enabling this may violate privacy laws like the GDPR" +msgstr "Dit activeren zou privacy wetten zoals GDPR (AVG) kunnen overtreden" + +#: src/Module/Admin/Site.php:454 +msgid "Global directory URL" +msgstr "Algemene gids URL" + +#: src/Module/Admin/Site.php:454 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "URL naar de globale gids. Als dit niet geconfigureerd is, dan zal de globale gids volledig onbeschikbaar zijn voor de applicatie." + +#: src/Module/Admin/Site.php:455 +msgid "Private posts by default for new users" +msgstr "Privéberichten als standaard voor nieuwe gebruikers" + +#: src/Module/Admin/Site.php:455 +msgid "" +"Set default post permissions for all new members to the default privacy " +"circle rather than public." +msgstr "" + +#: src/Module/Admin/Site.php:456 +msgid "Don't include post content in email notifications" +msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties" + +#: src/Module/Admin/Site.php:456 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "De inhoud van berichten/commentaar/privéberichten/enzovoort niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy." + +#: src/Module/Admin/Site.php:457 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Publieke toegang ontzeggen tot addons die opgelijst zijn in het applicatie menu." + +#: src/Module/Admin/Site.php:457 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Dit vakje aanvinken zal de lijst van addons in het applicatie menu beperken tot alleen leden." + +#: src/Module/Admin/Site.php:458 +msgid "Don't embed private images in posts" +msgstr "Privé beelden in berichten niet inwerken" + +#: src/Module/Admin/Site.php:458 +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 "Vervang lokaal gehoste privé foto's in berichten niet door een ingewerkte kopie van het beeld. Dit betekent dat contacten die berichten krijgen met privé foto's zullen moeten authentificeren en elk beeld apart laden, wat een tijdje kan duren." + +#: src/Module/Admin/Site.php:459 +msgid "Explicit Content" +msgstr "Expliciete inhoud" + +#: src/Module/Admin/Site.php:459 +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 "Vink dit aan om aan te duiden dat deze node veel expliciet materiaal verspreid en niet bedoeld is voor minderjarigen. Deze info zal gepubliceert worden bij de node-info en kan vb. gebruikt worden voor een filter in de globale lijst. Dit word ook getoont naar de gebruiker op de registratie pagina." + +#: src/Module/Admin/Site.php:460 +msgid "Proxify external content" +msgstr "" + +#: src/Module/Admin/Site.php:460 +msgid "" +"Route external content via the proxy functionality. This is used for example" +" for some OEmbed accesses and in some other rare cases." +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "Cache contact avatars" +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "" +"Locally store the avatar pictures of the contacts. This uses a lot of " +"storage space but it increases the performance." +msgstr "" + +#: src/Module/Admin/Site.php:462 +msgid "Allow Users to set remote_self" +msgstr "Sta Gebruikers toe om remote_self te configureren" + +#: src/Module/Admin/Site.php:462 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "Als je dit aanvinkt, dan mag elke gebruiker elke contact als remote_self aanduiden in de 'herstel contact' dialoog. Deze vlag aanzetten voor een contact zorgt ervoor dat elke bericht van dit contact gespiegeld wordt in de gebruiker zijn of haar stroom. " + +#: src/Module/Admin/Site.php:463 +msgid "Enable multiple registrations" +msgstr "" + +#: src/Module/Admin/Site.php:463 +msgid "Enable users to register additional accounts for use as pages." +msgstr "" + +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID" +msgstr "" + +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID support for registration and logins." +msgstr "" + +#: src/Module/Admin/Site.php:465 +msgid "Enable Fullname check" +msgstr "" + +#: src/Module/Admin/Site.php:465 +msgid "" +"Enable check to only allow users to register with a space between the first " +"name and the last name in their full name." +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "" + +#: src/Module/Admin/Site.php:467 +msgid "Community pages for visitors" +msgstr "Groepspagina voor bezoekers" + +#: src/Module/Admin/Site.php:467 +msgid "" +"Which community pages should be available for visitors. Local users always " +"see both pages." +msgstr "Welke groepspagina's moeten beschikbaar zijn voor bezoekers. Lokale gebruikers zien altijd beide pagina's." + +#: src/Module/Admin/Site.php:468 +msgid "Posts per user on community page" +msgstr "Berichten per gebruiker op de groepspagina" + +#: src/Module/Admin/Site.php:468 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"\"Global Community\")" +msgstr "" + +#: src/Module/Admin/Site.php:470 +msgid "Enable Mail support" +msgstr "" + +#: src/Module/Admin/Site.php:470 +msgid "" +"Enable built-in mail support to poll IMAP folders and to reply via mail." +msgstr "" + +#: src/Module/Admin/Site.php:471 +msgid "" +"Mail support can't be enabled because the PHP IMAP module is not installed." +msgstr "" + +#: src/Module/Admin/Site.php:472 +msgid "Enable OStatus support" +msgstr "" + +#: src/Module/Admin/Site.php:472 +msgid "" +"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public." +msgstr "" + +#: src/Module/Admin/Site.php:474 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "Diaspora ondersteuning is niet mogelijk omdat Friendica in een sub folder geïnstalleerd is." + +#: src/Module/Admin/Site.php:475 +msgid "Enable Diaspora support" +msgstr "Diaspora ondersteuning activeren" + +#: src/Module/Admin/Site.php:475 +msgid "" +"Enable built-in Diaspora network compatibility for communicating with " +"diaspora servers." +msgstr "" + +#: src/Module/Admin/Site.php:476 +msgid "Verify SSL" +msgstr "Controleer SSL" + +#: src/Module/Admin/Site.php:476 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken." + +#: src/Module/Admin/Site.php:477 +msgid "Proxy user" +msgstr "Proxy-gebruiker" + +#: src/Module/Admin/Site.php:477 +msgid "User name for the proxy server." +msgstr "" + +#: src/Module/Admin/Site.php:478 +msgid "Proxy URL" +msgstr "Proxy-URL" + +#: src/Module/Admin/Site.php:478 +msgid "" +"If you want to use a proxy server that Friendica should use to connect to " +"the network, put the URL of the proxy here." +msgstr "" + +#: src/Module/Admin/Site.php:479 +msgid "Network timeout" +msgstr "Netwerk timeout" + +#: src/Module/Admin/Site.php:479 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)." + +#: src/Module/Admin/Site.php:480 +msgid "Maximum Load Average" +msgstr "Maximum gemiddelde belasting" + +#: src/Module/Admin/Site.php:480 +#, php-format +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default %d." +msgstr "" + +#: src/Module/Admin/Site.php:481 +msgid "Minimal Memory" +msgstr "Minimaal Geheugen" + +#: src/Module/Admin/Site.php:481 +msgid "" +"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "Minimum vrij geheugen in MB voor de worker. Toegang nodig tot /proc/meminfo - standaard waarde 0 (gedeactiveerd)." + +#: src/Module/Admin/Site.php:482 +msgid "Periodically optimize tables" +msgstr "" + +#: src/Module/Admin/Site.php:482 +msgid "Periodically optimize tables like the cache and the workerqueue" +msgstr "" + +#: src/Module/Admin/Site.php:484 +msgid "Discover followers/followings from contacts" +msgstr "" + +#: src/Module/Admin/Site.php:484 +msgid "" +"If enabled, contacts are checked for their followers and following contacts." +msgstr "" + +#: src/Module/Admin/Site.php:485 +msgid "None - deactivated" +msgstr "" + +#: src/Module/Admin/Site.php:486 +msgid "" +"Local contacts - contacts of our local contacts are discovered for their " +"followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:487 +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:489 +msgid "Synchronize the contacts with the directory server" +msgstr "" + +#: src/Module/Admin/Site.php:489 +msgid "" +"if enabled, the system will check periodically for new contacts on the " +"defined directory server." +msgstr "" + +#: src/Module/Admin/Site.php:491 +msgid "Days between requery" +msgstr "Dagen tussen herbevraging" + +#: src/Module/Admin/Site.php:491 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "Aantal dagen waarna de server opnieuw bevraagd wordt naar zijn contacten." + +#: src/Module/Admin/Site.php:492 +msgid "Discover contacts from other servers" +msgstr "Ontdek contacten van andere servers" + +#: src/Module/Admin/Site.php:492 +msgid "" +"Periodically query other servers for contacts. The system queries Friendica," +" Mastodon and Hubzilla servers." +msgstr "" + +#: src/Module/Admin/Site.php:493 +msgid "Search the local directory" +msgstr "Doorzoek de lokale gids" + +#: src/Module/Admin/Site.php:493 +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 "Doorzoek de lokale gids in plaats van de globale gids. Bij lokale doorzoeking wordt elke opzoeking in de globale gids op de achtergrond uitgevoerd. Dit verbetert de zoekresultaten wanneer de zoekopdracht herhaald wordt." + +#: src/Module/Admin/Site.php:495 +msgid "Publish server information" +msgstr "Publiceer server informatie" + +#: src/Module/Admin/Site.php:495 +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 "" + +#: src/Module/Admin/Site.php:497 +msgid "Check upstream version" +msgstr "Controleer upstream versie" + +#: src/Module/Admin/Site.php:497 +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 "Activeer het controleren op nieuwe versies van Friendica bij github. Als er een nieuwe versie is, dan word je geïnformeerd in the administratie paneel." + +#: src/Module/Admin/Site.php:498 +msgid "Suppress Tags" +msgstr "Onderdruk Tags" + +#: src/Module/Admin/Site.php:498 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Onderdruk het tonen van een lijst van hastags op het einde van het bericht." + +#: src/Module/Admin/Site.php:499 +msgid "Clean database" +msgstr "Database opruimen" + +#: src/Module/Admin/Site.php:499 +msgid "" +"Remove old remote items, orphaned database records and old content from some" +" other helper tables." +msgstr "Verwijder oude remote items, database weesrecords en oude content van andere helper tabellen." + +#: src/Module/Admin/Site.php:500 +msgid "Lifespan of remote items" +msgstr "Levensduur van remote items" + +#: src/Module/Admin/Site.php:500 +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 "Als de database opruiming is geactiveerd, dan definieert dit na hoeveel dagen remote items verwijderd zullen worden. Eigen items, en gemarkeerde of opgeslagen items worden altijd behouden. 0 deactiveert dit gedrag." + +#: src/Module/Admin/Site.php:501 +msgid "Lifespan of unclaimed items" +msgstr "Levensduur van niet geclaimde items" + +#: src/Module/Admin/Site.php:501 +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 "Als de database opruiming geactiveerd is, dan definieert dit na hoeveel dagen ongeclaimde remote items (meestal content van een relais) zal verwijderd worden. Standaard waarde is 90 dagen. Als de waarde 0 is, dan is de waarde gelijk aan de algemene levensduur van remote items." + +#: src/Module/Admin/Site.php:502 +msgid "Lifespan of raw conversation data" +msgstr "Levenstijd van ruwe gespreksdata" + +#: src/Module/Admin/Site.php:502 +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 "De gespreksdata word gebruikt voor ActivityPub, OStatus en voor debugging doeleinden. Het is veilig om dit na 14 dagen te verwijderen. Standaard staat dit op 90 dagen." + +#: src/Module/Admin/Site.php:503 +msgid "Maximum numbers of comments per post" +msgstr "Maximum aantal reacties per bericht" + +#: src/Module/Admin/Site.php:503 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Hoeveel reacties moeten getoond worden per bericht? Standaard waarde is 100." + +#: src/Module/Admin/Site.php:504 +msgid "Maximum numbers of comments per post on the display page" +msgstr "" + +#: src/Module/Admin/Site.php:504 +msgid "" +"How many comments should be shown on the single view for each post? Default " +"value is 1000." +msgstr "" + +#: src/Module/Admin/Site.php:505 +msgid "Temp path" +msgstr "Tijdelijk pad" + +#: src/Module/Admin/Site.php:505 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Als je een systeem met restricties hebt waarbij de webserver geen toegang heeft tot het systeem pad, geef hier dan een ander pad in. " + +#: src/Module/Admin/Site.php:506 +msgid "Only search in tags" +msgstr "Zoek alleen in tags" + +#: src/Module/Admin/Site.php:506 +msgid "On large systems the text search can slow down the system extremely." +msgstr "Het opzoeken van tekst kan grote systemen extreem vertragen." + +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "" + +#: src/Module/Admin/Site.php:507 +msgid "" +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "" + +#: src/Module/Admin/Site.php:509 +msgid "Maximum number of parallel workers" +msgstr "Maximum aantal parallelle workers" + +#: src/Module/Admin/Site.php:509 +#, php-format +msgid "" +"On shared hosters set this to %d. On larger systems, values of %d are great." +" Default value is %d." +msgstr "Op gedeelde hosts zet dit op %d. Op grotere systemen, waarden als %d zijn goed. standaard waarde is %d" + +#: src/Module/Admin/Site.php:510 +msgid "Enable fastlane" +msgstr "Activeer fastlane" + +#: src/Module/Admin/Site.php:510 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "Als deze parameter geactiveerd is, dan start het fastlane mechanisme een bijkomende worker als processen met hogere prioriteit geblokkeerd worden door processen met een lagere prioriteit." + +#: src/Module/Admin/Site.php:512 +msgid "Direct relay transfer" +msgstr "Directe relais transfer" + +#: src/Module/Admin/Site.php:512 +msgid "" +"Enables the direct transfer to other servers without using the relay servers" +msgstr "Activeert directe relais transfer naar andere servers zonder gebruik van relais servers" + +#: src/Module/Admin/Site.php:513 +msgid "Relay scope" +msgstr "Scope van de relais" + +#: src/Module/Admin/Site.php:513 +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:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Disabled" +msgstr "Uitgeschakeld" + +#: src/Module/Admin/Site.php:513 +msgid "all" +msgstr "alle" + +#: src/Module/Admin/Site.php:513 +msgid "tags" +msgstr "tags" + +#: src/Module/Admin/Site.php:514 +msgid "Server tags" +msgstr "Server tags" + +#: src/Module/Admin/Site.php:514 +msgid "Comma separated list of tags for the \"tags\" subscription." +msgstr "" + +#: src/Module/Admin/Site.php:515 +msgid "Deny Server tags" +msgstr "" + +#: src/Module/Admin/Site.php:515 +msgid "Comma separated list of tags that are rejected." +msgstr "" + +#: src/Module/Admin/Site.php:516 +msgid "Allow user tags" +msgstr "Sta gebruiker tags toe." + +#: src/Module/Admin/Site.php:516 +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:519 +msgid "Start Relocation" +msgstr "Start verhuis" + +#: src/Module/Admin/Storage.php:46 +#, php-format +msgid "Storage backend, %s is invalid." +msgstr "" + +#: src/Module/Admin/Storage.php:73 +#, php-format +msgid "Storage backend %s error: %s" +msgstr "" + +#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +msgid "Invalid storage backend setting value." +msgstr "" + +#: src/Module/Admin/Storage.php:139 +msgid "Current Storage Backend" +msgstr "" + +#: src/Module/Admin/Storage.php:140 +msgid "Storage Configuration" +msgstr "" + +#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +msgid "Storage" +msgstr "" + +#: src/Module/Admin/Storage.php:143 +msgid "Save & Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:144 +msgid "Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:145 +msgid "Save & Reload" +msgstr "" + +#: src/Module/Admin/Storage.php:146 +msgid "This backend doesn't have custom settings" +msgstr "" + +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "" + +#: src/Module/Admin/Storage.php:150 +msgid "Database (legacy)" +msgstr "" + +#: src/Module/Admin/Summary.php:55 +#, php-format +msgid "Template engine (%s) error: %s" +msgstr "" + +#: src/Module/Admin/Summary.php:59 +#, 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 "Je DB opereert nog met MyISAM tabellen. Best is van engine te veranderen naar InnoDB. Aangezien Friendica in de toekomst gebruik zal maken van InnoDB features, zou je dit best aanpassen! Zie hier voor een gids die je kan helpen om de tabel engines te converteren. Je kan ook het commandophp bin/console.php dbstructure toinnodb van je Friendica installatie gebruiken voor een automatische conversie.
    " + +#: src/Module/Admin/Summary.php:64 +#, php-format +msgid "" +"Your DB still runs with InnoDB tables in the Antelope file format. You " +"should change the file format to Barracuda. Friendica is using features that" +" are not provided by the Antelope format. See here for a " +"guide that may be helpful converting the table engines. You may also use the" +" command php bin/console.php dbstructure toinnodb of your Friendica" +" installation for an automatic conversion.
    " +msgstr "" + +#: src/Module/Admin/Summary.php:74 +#, php-format +msgid "" +"Your table_definition_cache is too low (%d). This can lead to the database " +"error \"Prepared statement needs to be re-prepared\". Please set it at least" +" to %d. See here for more information.
    " +msgstr "" + +#: src/Module/Admin/Summary.php:85 +#, php-format +msgid "" +"There is a new version of Friendica available for download. Your current " +"version is %1$s, upstream version is %2$s" +msgstr "Er is een nieuwe versie van Friendica beschikbaar om te downloaden. Je huidige versie is %1$s, upstream versie is %2$s" + +#: src/Module/Admin/Summary.php:94 +msgid "" +"The database update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "Database update is mislukt. Gelieve \"php bin/console.php dbstructure update\" vanaf de command line uit te voeren en de foutmeldingen die zouden kunnen verschijnen na te kijken." + +#: src/Module/Admin/Summary.php:98 +msgid "" +"The last update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear. (Some of the errors are possibly inside the logfile.)" +msgstr "" + +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "" + +#: src/Module/Admin/Summary.php:107 +msgid "The worker was never executed. Please check your database structure!" +msgstr "De worker werd nooit uitgevoerd. Best je database structuur eens nakijken!" + +#: src/Module/Admin/Summary.php:109 +#, php-format +msgid "" +"The last worker execution was on %s UTC. This is older than one hour. Please" +" check your crontab settings." +msgstr "De laatste worker uitvoering was op %s UTC. Dit is langer dan 1 uur geleden. Best je crontab instellingen nakijken." + +#: src/Module/Admin/Summary.php:114 +#, 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 "Het configuratiebestand bevind zich nu in config/local.config.php. Kopieer het bestand config/local-sample.config.php en verplaats je configuratie uit .htconfig.php. Ga naar deconfiguratie help pagina voor hulp bij transitie." + +#: src/Module/Admin/Summary.php:118 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +"config/local.ini.php. See the Config help " +"page for help with the transition." +msgstr "" + +#: src/Module/Admin/Summary.php:124 +#, 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 "%s is niet bereikbaar. Dit is een belangrijk communicatieprobleem waardoor server-naar-server communicatie niet mogelijk is. Lees de the installatie pagina voor hulp." + +#: src/Module/Admin/Summary.php:148 +#, php-format +msgid "" +"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" +" system.basepath from your db to avoid differences." +msgstr "" + +#: src/Module/Admin/Summary.php:156 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is wrong and the config file '%s' " +"isn't used." +msgstr "" + +#: src/Module/Admin/Summary.php:164 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is not equal to the config file " +"'%s'. Please fix your configuration." +msgstr "" + +#: src/Module/Admin/Summary.php:175 +msgid "Message queues" +msgstr "Bericht-wachtrijen" + +#: src/Module/Admin/Summary.php:181 +msgid "Server Settings" +msgstr "Server instellingen." + +#: src/Module/Admin/Summary.php:199 +msgid "Version" +msgstr "Versie" + +#: src/Module/Admin/Summary.php:203 +msgid "Active addons" +msgstr "Actieve addons" + +#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 #, php-format msgid "Theme %s disabled." msgstr "Thema %s uitgeschakeld." -#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:67 +#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 #, php-format msgid "Theme %s successfully enabled." msgstr "Thema %s succesvol ingeschakeld." -#: src/Module/Admin/Themes/Details.php:92 src/Module/Admin/Themes/Index.php:69 +#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 #, php-format msgid "Theme %s failed to install." msgstr "Thema %s installatie mislukt." -#: src/Module/Admin/Themes/Details.php:114 +#: src/Module/Admin/Themes/Details.php:83 msgid "Screenshot" msgstr "Schermafdruk" -#: src/Module/Admin/Themes/Details.php:122 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:100 +#: src/Module/Admin/Themes/Details.php:91 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 msgid "Themes" msgstr "Thema's" -#: src/Module/Admin/Themes/Embed.php:84 +#: src/Module/Admin/Themes/Embed.php:80 msgid "Unknown theme." msgstr "Onbekend thema." @@ -5737,1510 +5447,1529 @@ msgstr "" msgid "Reload active themes" msgstr "Herlaad actieve thema's" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:118 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "Geen thema's gevonden op het systeem. Ze zouden zich moeten bevinden in %1$s" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:119 msgid "[Experimental]" msgstr "[Experimenteel]" -#: src/Module/Admin/Themes/Index.php:121 +#: src/Module/Admin/Themes/Index.php:120 msgid "[Unsupported]" msgstr "[Niet ondersteund]" -#: src/Module/Admin/Queue.php:53 -msgid "Inspect Deferred Worker Queue" -msgstr "Inspecteer wachtrij van uitgestelde workers" - -#: src/Module/Admin/Queue.php:54 -msgid "" -"This page lists the deferred worker jobs. This are jobs that couldn't be " -"executed at the first time." -msgstr "Deze pagine geeft alle uitgestelde workertaken. Dit zijn taken die niet onmiddelijk konden worden uitgevoerd" - -#: src/Module/Admin/Queue.php:57 -msgid "Inspect Worker Queue" -msgstr "Taakwachtrij inspecteren" - -#: src/Module/Admin/Queue.php:58 -msgid "" -"This page lists the currently queued worker jobs. These jobs are handled by " -"the worker cronjob you've set up during install." -msgstr "Deze pagina toont alle taken in de wachtrij. Deze taken worden behandeld door de geplande taak die je hebt ingesteld tijdens installatie." - -#: src/Module/Admin/Queue.php:78 -msgid "ID" -msgstr "ID" - -#: src/Module/Admin/Queue.php:79 -msgid "Job Parameters" -msgstr "Taak parameters" - -#: src/Module/Admin/Queue.php:80 -msgid "Created" -msgstr "Aangemaakt" - -#: src/Module/Admin/Queue.php:81 -msgid "Priority" -msgstr "Prioriteit" - -#: src/Module/Admin/DBSync.php:50 -msgid "Update has been marked successful" -msgstr "Wijziging succesvol gemarkeerd " - -#: src/Module/Admin/DBSync.php:60 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Database structuur update %s werd met succes toegepast." - -#: src/Module/Admin/DBSync.php:64 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "Uitvoering van de database structuur update %s is mislukt met fout: %s" - -#: src/Module/Admin/DBSync.php:81 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Uitvoering van %s mislukt met fout: %s" - -#: src/Module/Admin/DBSync.php:83 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Wijziging %s geslaagd." - -#: src/Module/Admin/DBSync.php:86 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is." - -#: src/Module/Admin/DBSync.php:89 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "Er was geen bijkomende update functie %s die moest opgeroepen worden." - -#: src/Module/Admin/DBSync.php:110 -msgid "No failed updates." -msgstr "Geen mislukte wijzigingen" - -#: src/Module/Admin/DBSync.php:111 -msgid "Check database structure" -msgstr "Controleer de database structuur" - -#: src/Module/Admin/DBSync.php:116 -msgid "Failed Updates" -msgstr "Mislukte wijzigingen" - -#: src/Module/Admin/DBSync.php:117 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven." - -#: src/Module/Admin/DBSync.php:118 -msgid "Mark success (if update was manually applied)" -msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)" - -#: src/Module/Admin/DBSync.php:119 -msgid "Attempt to execute this update step automatically" -msgstr "Probeer deze stap automatisch uit te voeren" - -#: src/Module/Admin/Features.php:76 -#, php-format -msgid "Lock feature %s" -msgstr "Fixeer feature %s " - -#: src/Module/Admin/Features.php:85 -msgid "Manage Additional Features" -msgstr "Beheer Bijkomende Features" - -#: src/Module/Admin/Federation.php:53 -msgid "Other" -msgstr "Anders" - -#: src/Module/Admin/Federation.php:107 src/Module/Admin/Federation.php:266 -msgid "unknown" -msgstr "onbekend" - -#: src/Module/Admin/Federation.php:135 -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 "Deze pagina toont je statistieken van het gekende deel van het gefedereerde sociale netwerk waarvan je Friendica node deel uitmaakt. Deze statistieken zijn niet volledig maar reflecteren het deel van het network dat jouw node kent." - -#: src/Module/Admin/Federation.php:141 src/Module/BaseAdmin.php:94 -msgid "Federation Statistics" -msgstr "Federatie Statistieken" - -#: src/Module/Admin/Federation.php:145 -#, php-format -msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " -"following platforms:" -msgstr "Op dit moment kent deze node %d nodes met %d geregistreerde gebruikers op basis van de volgende patformen:" - -#: src/Module/Admin/Site.php:69 -msgid "Can not parse base url. Must have at least ://" -msgstr "Kan de basis url niet verwerken. Moet minstens zijn ://" - -#: src/Module/Admin/Site.php:123 -msgid "Relocation started. Could take a while to complete." -msgstr "" - -#: src/Module/Admin/Site.php:250 -msgid "Invalid storage backend setting value." -msgstr "" - -#: src/Module/Admin/Site.php:451 src/Module/Settings/Display.php:132 -msgid "No special theme for mobile devices" -msgstr "Geen speciaal thema voor mobiele apparaten" - -#: src/Module/Admin/Site.php:468 src/Module/Settings/Display.php:142 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Experimenteel)" - -#: src/Module/Admin/Site.php:480 -msgid "No community page for local users" -msgstr "Geen groepspagina voor lokale gebruikers" - -#: src/Module/Admin/Site.php:481 -msgid "No community page" -msgstr "Geen groepspagina" - -#: src/Module/Admin/Site.php:482 -msgid "Public postings from users of this site" -msgstr "Publieke berichten van gebruikers van deze site" - -#: src/Module/Admin/Site.php:483 -msgid "Public postings from the federated network" -msgstr "Publieke berichten van het gefedereerde netwerk" - -#: src/Module/Admin/Site.php:484 -msgid "Public postings from local users and the federated network" -msgstr "Publieke berichten van lokale gebruikers en van het gefedereerde netwerk" - -#: src/Module/Admin/Site.php:490 -msgid "Multi user instance" -msgstr "Server voor meerdere gebruikers" - -#: src/Module/Admin/Site.php:518 -msgid "Closed" -msgstr "Gesloten" - -#: src/Module/Admin/Site.php:519 -msgid "Requires approval" -msgstr "Toestemming vereist" - -#: src/Module/Admin/Site.php:520 -msgid "Open" -msgstr "Open" - -#: src/Module/Admin/Site.php:524 src/Module/Install.php:200 -msgid "No SSL policy, links will track page SSL state" -msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen" - -#: src/Module/Admin/Site.php:525 src/Module/Install.php:201 -msgid "Force all links to use SSL" -msgstr "Verplicht alle links om SSL te gebruiken" - -#: src/Module/Admin/Site.php:526 src/Module/Install.php:202 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)" - -#: src/Module/Admin/Site.php:530 -msgid "Don't check" -msgstr "Geen rekening mee houden" - -#: src/Module/Admin/Site.php:531 -msgid "check the stable version" -msgstr "Neem de stabiele versie in rekening" - -#: src/Module/Admin/Site.php:532 -msgid "check the development version" -msgstr "Neem de ontwikkel versie in rekening" - -#: src/Module/Admin/Site.php:536 -msgid "none" -msgstr "geen" - -#: src/Module/Admin/Site.php:537 -msgid "Local contacts" -msgstr "" - -#: src/Module/Admin/Site.php:538 -msgid "Interactors" -msgstr "" - -#: src/Module/Admin/Site.php:557 -msgid "Database (legacy)" -msgstr "" - -#: src/Module/Admin/Site.php:588 src/Module/BaseAdmin.php:97 -msgid "Site" -msgstr "Website" - -#: src/Module/Admin/Site.php:590 -msgid "Republish users to directory" -msgstr "Opnieuw de gebruikers naar de gids publiceren" - -#: src/Module/Admin/Site.php:591 src/Module/Register.php:139 -msgid "Registration" -msgstr "Registratie" - -#: src/Module/Admin/Site.php:592 -msgid "File upload" -msgstr "Uploaden bestand" - -#: src/Module/Admin/Site.php:593 -msgid "Policies" -msgstr "Beleid" - -#: src/Module/Admin/Site.php:595 -msgid "Auto Discovered Contact Directory" -msgstr "Automatisch Achterhaalde Contact Gids" - -#: src/Module/Admin/Site.php:596 -msgid "Performance" -msgstr "Performantie" - -#: src/Module/Admin/Site.php:597 -msgid "Worker" -msgstr "Worker" - -#: src/Module/Admin/Site.php:598 -msgid "Message Relay" -msgstr "Boodschap Relais" - -#: src/Module/Admin/Site.php:599 -msgid "Relocate Instance" -msgstr "Verhuis node" - -#: src/Module/Admin/Site.php:600 -msgid "" -"Warning! Advanced function. Could make this server " -"unreachable." -msgstr "" - -#: src/Module/Admin/Site.php:604 -msgid "Site name" -msgstr "Site naam" - -#: src/Module/Admin/Site.php:605 -msgid "Sender Email" -msgstr "Verzender Email" - -#: src/Module/Admin/Site.php:605 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "Het email adres als afzender van notificatie emails." - -#: src/Module/Admin/Site.php:606 -msgid "Name of the system actor" -msgstr "" - -#: src/Module/Admin/Site.php:606 -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:607 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: src/Module/Admin/Site.php:608 -msgid "Email Banner/Logo" -msgstr "" - -#: src/Module/Admin/Site.php:609 -msgid "Shortcut icon" -msgstr "Snelkoppeling icoon" - -#: src/Module/Admin/Site.php:609 -msgid "Link to an icon that will be used for browsers." -msgstr "Link naar een icoon dat zal gebruikt worden voor browsers." - -#: src/Module/Admin/Site.php:610 -msgid "Touch icon" -msgstr "Pictogram voor smartphones" - -#: src/Module/Admin/Site.php:610 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "Link naar een icoon dat zal gebruikt worden voor tablets en mobiele telefoons." - -#: src/Module/Admin/Site.php:611 -msgid "Additional Info" -msgstr "Bijkomende Info" - -#: src/Module/Admin/Site.php:611 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/servers." -msgstr "Voor publieke servers: je kan bijkomende informatie hier toevoegen die zal opgelijst zijn op %s/servers." - -#: src/Module/Admin/Site.php:612 -msgid "System language" -msgstr "Systeemtaal" - -#: src/Module/Admin/Site.php:613 -msgid "System theme" -msgstr "Systeem thema" - -#: src/Module/Admin/Site.php:613 -msgid "" -"Default system theme - may be over-ridden by user profiles - Change default theme settings" -msgstr "" - -#: src/Module/Admin/Site.php:614 -msgid "Mobile system theme" -msgstr "Mobiel systeem thema" - -#: src/Module/Admin/Site.php:614 -msgid "Theme for mobile devices" -msgstr "Thema voor mobiele apparaten" - -#: src/Module/Admin/Site.php:615 src/Module/Install.php:210 -msgid "SSL link policy" -msgstr "Beleid SSL-links" - -#: src/Module/Admin/Site.php:615 src/Module/Install.php:212 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken" - -#: src/Module/Admin/Site.php:616 -msgid "Force SSL" -msgstr "Dwing SSL af" - -#: src/Module/Admin/Site.php:616 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "Forceer alle Niet-SSL aanvragen naar SSL - Pas op: dit kan op sommige systeem resulteren in oneindige lussen." - -#: src/Module/Admin/Site.php:617 -msgid "Hide help entry from navigation menu" -msgstr "Verberg de 'help' uit het navigatiemenu" - -#: src/Module/Admin/Site.php:617 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven." - -#: src/Module/Admin/Site.php:618 -msgid "Single user instance" -msgstr "Server voor één gebruiker" - -#: src/Module/Admin/Site.php:618 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker." - -#: src/Module/Admin/Site.php:620 -msgid "File storage backend" -msgstr "" - -#: src/Module/Admin/Site.php:620 -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 "" - -#: src/Module/Admin/Site.php:622 -msgid "Maximum image size" -msgstr "Maximum afbeeldingsgrootte" - -#: src/Module/Admin/Site.php:622 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking." - -#: src/Module/Admin/Site.php:623 -msgid "Maximum image length" -msgstr "Maximum afbeeldingslengte" - -#: src/Module/Admin/Site.php:623 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen." - -#: src/Module/Admin/Site.php:624 -msgid "JPEG image quality" -msgstr "JPEG afbeeldingskwaliteit" - -#: src/Module/Admin/Site.php:624 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit." - -#: src/Module/Admin/Site.php:626 -msgid "Register policy" -msgstr "Registratiebeleid" - -#: src/Module/Admin/Site.php:627 -msgid "Maximum Daily Registrations" -msgstr "Maximum aantal registraties per dag" - -#: src/Module/Admin/Site.php:627 -msgid "" -"If registration is permitted above, this sets the maximum number of new user" -" registrations to accept per day. If register is set to closed, this " -"setting has no effect." -msgstr "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect." - -#: src/Module/Admin/Site.php:628 -msgid "Register text" -msgstr "Registratietekst" - -#: src/Module/Admin/Site.php:628 -msgid "" -"Will be displayed prominently on the registration page. You can use BBCode " -"here." -msgstr "Zal prominent op de registratie pagina getoond worden. Je kan hierin BBCode gebruiken." - -#: src/Module/Admin/Site.php:629 -msgid "Forbidden Nicknames" -msgstr "Verboden bijnamen" - -#: src/Module/Admin/Site.php:629 -msgid "" -"Comma separated list of nicknames that are forbidden from registration. " -"Preset is a list of role names according RFC 2142." -msgstr "Kommagescheiden lijst van bijnamen die verboden zijn voor registratie. De lijst uit RFC2142 is op voorhand ingesteld." - -#: src/Module/Admin/Site.php:630 -msgid "Accounts abandoned after x days" -msgstr "Verlaten accounts na x dagen" - -#: src/Module/Admin/Site.php:630 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet." - -#: src/Module/Admin/Site.php:631 -msgid "Allowed friend domains" -msgstr "Toegelaten vriend domeinen" - -#: src/Module/Admin/Site.php:631 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten." - -#: src/Module/Admin/Site.php:632 -msgid "Allowed email domains" -msgstr "Toegelaten e-mail domeinen" - -#: src/Module/Admin/Site.php:632 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan." - -#: src/Module/Admin/Site.php:633 -msgid "No OEmbed rich content" -msgstr "Geen OEmbed richt content" - -#: src/Module/Admin/Site.php:633 -msgid "" -"Don't show the rich content (e.g. embedded PDF), except from the domains " -"listed below." -msgstr "Toon geen rich content (bvb. embedded PDF), behalve van domeinen hieronder opgelijst." - -#: src/Module/Admin/Site.php:634 -msgid "Allowed OEmbed domains" -msgstr "Sta OEmbed domeinen toe" - -#: src/Module/Admin/Site.php:634 -msgid "" -"Comma separated list of domains which oembed content is allowed to be " -"displayed. Wildcards are accepted." -msgstr "Met komma's gescheiden lijst van domeinen waarvoor oembed content mag getoond worden. Wildcards zijn toegelaten." - -#: src/Module/Admin/Site.php:635 -msgid "Block public" -msgstr "Openbare toegang blokkeren" - -#: src/Module/Admin/Site.php:635 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers." - -#: src/Module/Admin/Site.php:636 -msgid "Force publish" -msgstr "Dwing publiceren af" - -#: src/Module/Admin/Site.php:636 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden." - -#: src/Module/Admin/Site.php:636 -msgid "Enabling this may violate privacy laws like the GDPR" -msgstr "Dit activeren zou privacy wetten zoals GDPR (AVG) kunnen overtreden" - -#: src/Module/Admin/Site.php:637 -msgid "Global directory URL" -msgstr "Algemene gids URL" - -#: src/Module/Admin/Site.php:637 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "URL naar de globale gids. Als dit niet geconfigureerd is, dan zal de globale gids volledig onbeschikbaar zijn voor de applicatie." - -#: src/Module/Admin/Site.php:638 -msgid "Private posts by default for new users" -msgstr "Privéberichten als standaard voor nieuwe gebruikers" - -#: src/Module/Admin/Site.php:638 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar." - -#: src/Module/Admin/Site.php:639 -msgid "Don't include post content in email notifications" -msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties" - -#: src/Module/Admin/Site.php:639 -msgid "" -"Don't include the content of a post/comment/private message/etc. in the " -"email notifications that are sent out from this site, as a privacy measure." -msgstr "De inhoud van berichten/commentaar/privéberichten/enzovoort niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy." - -#: src/Module/Admin/Site.php:640 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Publieke toegang ontzeggen tot addons die opgelijst zijn in het applicatie menu." - -#: src/Module/Admin/Site.php:640 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Dit vakje aanvinken zal de lijst van addons in het applicatie menu beperken tot alleen leden." - -#: src/Module/Admin/Site.php:641 -msgid "Don't embed private images in posts" -msgstr "Privé beelden in berichten niet inwerken" - -#: src/Module/Admin/Site.php:641 -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 "Vervang lokaal gehoste privé foto's in berichten niet door een ingewerkte kopie van het beeld. Dit betekent dat contacten die berichten krijgen met privé foto's zullen moeten authentificeren en elk beeld apart laden, wat een tijdje kan duren." - -#: src/Module/Admin/Site.php:642 -msgid "Explicit Content" -msgstr "Expliciete inhoud" - -#: src/Module/Admin/Site.php:642 -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 "Vink dit aan om aan te duiden dat deze node veel expliciet materiaal verspreid en niet bedoeld is voor minderjarigen. Deze info zal gepubliceert worden bij de node-info en kan vb. gebruikt worden voor een filter in de globale lijst. Dit word ook getoont naar de gebruiker op de registratie pagina." - -#: src/Module/Admin/Site.php:643 -msgid "Allow Users to set remote_self" -msgstr "Sta Gebruikers toe om remote_self te configureren" - -#: src/Module/Admin/Site.php:643 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." -msgstr "Als je dit aanvinkt, dan mag elke gebruiker elke contact als remote_self aanduiden in de 'herstel contact' dialoog. Deze vlag aanzetten voor een contact zorgt ervoor dat elke bericht van dit contact gespiegeld wordt in de gebruiker zijn of haar stroom. " - -#: src/Module/Admin/Site.php:644 -msgid "Block multiple registrations" -msgstr "Blokkeer meerdere registraties" - -#: src/Module/Admin/Site.php:644 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken." - -#: src/Module/Admin/Site.php:645 -msgid "Disable OpenID" -msgstr "Schakel OpenID uit" - -#: src/Module/Admin/Site.php:645 -msgid "Disable OpenID support for registration and logins." -msgstr "Schakel OpenID-ondersteuning uit voor registratie en logins." - -#: src/Module/Admin/Site.php:646 -msgid "No Fullname check" -msgstr "Geen Volledige-Naamscontrole" - -#: src/Module/Admin/Site.php:646 -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:647 -msgid "Community pages for visitors" -msgstr "Groepspagina voor bezoekers" - -#: src/Module/Admin/Site.php:647 -msgid "" -"Which community pages should be available for visitors. Local users always " -"see both pages." -msgstr "Welke groepspagina's moeten beschikbaar zijn voor bezoekers. Lokale gebruikers zien altijd beide pagina's." - -#: src/Module/Admin/Site.php:648 -msgid "Posts per user on community page" -msgstr "Berichten per gebruiker op de groepspagina" - -#: src/Module/Admin/Site.php:648 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"\"Global Community\")" -msgstr "" - -#: src/Module/Admin/Site.php:649 -msgid "Disable OStatus support" -msgstr "" - -#: src/Module/Admin/Site.php:649 -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:650 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "OStatus ondersteuning kan alleen geactiveerd worden als de gespreksstroom geactiveerd is." - -#: src/Module/Admin/Site.php:652 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "Diaspora ondersteuning is niet mogelijk omdat Friendica in een sub folder geïnstalleerd is." - -#: src/Module/Admin/Site.php:653 -msgid "Enable Diaspora support" -msgstr "Diaspora ondersteuning activeren" - -#: src/Module/Admin/Site.php:653 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk." - -#: src/Module/Admin/Site.php:654 -msgid "Only allow Friendica contacts" -msgstr "Laat alleen Friendica contacten toe" - -#: src/Module/Admin/Site.php:654 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld." - -#: src/Module/Admin/Site.php:655 -msgid "Verify SSL" -msgstr "Controleer SSL" - -#: src/Module/Admin/Site.php:655 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you" -" cannot connect (at all) to self-signed SSL sites." -msgstr "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken." - -#: src/Module/Admin/Site.php:656 -msgid "Proxy user" -msgstr "Proxy-gebruiker" - -#: src/Module/Admin/Site.php:657 -msgid "Proxy URL" -msgstr "Proxy-URL" - -#: src/Module/Admin/Site.php:658 -msgid "Network timeout" -msgstr "Netwerk timeout" - -#: src/Module/Admin/Site.php:658 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)." - -#: src/Module/Admin/Site.php:659 -msgid "Maximum Load Average" -msgstr "Maximum gemiddelde belasting" - -#: src/Module/Admin/Site.php:659 -#, php-format -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default %d." -msgstr "" - -#: src/Module/Admin/Site.php:660 -msgid "Maximum Load Average (Frontend)" -msgstr "Maximum Gemiddelde Belasting (Frontend)" - -#: src/Module/Admin/Site.php:660 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Maximum systeem belasting wanneer de frontend ermee ophoudt - standaard waarde 50." - -#: src/Module/Admin/Site.php:661 -msgid "Minimal Memory" -msgstr "Minimaal Geheugen" - -#: src/Module/Admin/Site.php:661 -msgid "" -"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " -"default 0 (deactivated)." -msgstr "Minimum vrij geheugen in MB voor de worker. Toegang nodig tot /proc/meminfo - standaard waarde 0 (gedeactiveerd)." - -#: src/Module/Admin/Site.php:662 -msgid "Periodically optimize tables" -msgstr "" - -#: src/Module/Admin/Site.php:662 -msgid "Periodically optimize tables like the cache and the workerqueue" -msgstr "" - -#: src/Module/Admin/Site.php:664 -msgid "Discover followers/followings from contacts" -msgstr "" - -#: src/Module/Admin/Site.php:664 -msgid "" -"If enabled, contacts are checked for their followers and following contacts." -msgstr "" - -#: src/Module/Admin/Site.php:665 -msgid "None - deactivated" -msgstr "" - -#: src/Module/Admin/Site.php:666 -msgid "" -"Local contacts - contacts of our local contacts are discovered for their " -"followers/followings." -msgstr "" - -#: src/Module/Admin/Site.php:667 -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:669 -msgid "Synchronize the contacts with the directory server" -msgstr "" - -#: src/Module/Admin/Site.php:669 -msgid "" -"if enabled, the system will check periodically for new contacts on the " -"defined directory server." -msgstr "" - -#: src/Module/Admin/Site.php:671 -msgid "Days between requery" -msgstr "Dagen tussen herbevraging" - -#: src/Module/Admin/Site.php:671 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "Aantal dagen waarna de server opnieuw bevraagd wordt naar zijn contacten." - -#: src/Module/Admin/Site.php:672 -msgid "Discover contacts from other servers" -msgstr "Ontdek contacten van andere servers" - -#: src/Module/Admin/Site.php:672 -msgid "" -"Periodically query other servers for contacts. The system queries Friendica," -" Mastodon and Hubzilla servers." -msgstr "" - -#: src/Module/Admin/Site.php:673 -msgid "Search the local directory" -msgstr "Doorzoek de lokale gids" - -#: src/Module/Admin/Site.php:673 -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 "Doorzoek de lokale gids in plaats van de globale gids. Bij lokale doorzoeking wordt elke opzoeking in de globale gids op de achtergrond uitgevoerd. Dit verbetert de zoekresultaten wanneer de zoekopdracht herhaald wordt." - -#: src/Module/Admin/Site.php:675 -msgid "Publish server information" -msgstr "Publiceer server informatie" - -#: src/Module/Admin/Site.php:675 -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 "" - -#: src/Module/Admin/Site.php:677 -msgid "Check upstream version" -msgstr "Controleer upstream versie" - -#: src/Module/Admin/Site.php:677 -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 "Activeer het controleren op nieuwe versies van Friendica bij github. Als er een nieuwe versie is, dan word je geïnformeerd in the administratie paneel." - -#: src/Module/Admin/Site.php:678 -msgid "Suppress Tags" -msgstr "Onderdruk Tags" - -#: src/Module/Admin/Site.php:678 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Onderdruk het tonen van een lijst van hastags op het einde van het bericht." - -#: src/Module/Admin/Site.php:679 -msgid "Clean database" -msgstr "Database opruimen" - -#: src/Module/Admin/Site.php:679 -msgid "" -"Remove old remote items, orphaned database records and old content from some" -" other helper tables." -msgstr "Verwijder oude remote items, database weesrecords en oude content van andere helper tabellen." - -#: src/Module/Admin/Site.php:680 -msgid "Lifespan of remote items" -msgstr "Levensduur van remote items" - -#: src/Module/Admin/Site.php:680 -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 "Als de database opruiming is geactiveerd, dan definieert dit na hoeveel dagen remote items verwijderd zullen worden. Eigen items, en gemarkeerde of opgeslagen items worden altijd behouden. 0 deactiveert dit gedrag." - -#: src/Module/Admin/Site.php:681 -msgid "Lifespan of unclaimed items" -msgstr "Levensduur van niet geclaimde items" - -#: src/Module/Admin/Site.php:681 -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 "Als de database opruiming geactiveerd is, dan definieert dit na hoeveel dagen ongeclaimde remote items (meestal content van een relais) zal verwijderd worden. Standaard waarde is 90 dagen. Als de waarde 0 is, dan is de waarde gelijk aan de algemene levensduur van remote items." - -#: src/Module/Admin/Site.php:682 -msgid "Lifespan of raw conversation data" -msgstr "Levenstijd van ruwe gespreksdata" - -#: src/Module/Admin/Site.php:682 -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 "De gespreksdata word gebruikt voor ActivityPub, OStatus en voor debugging doeleinden. Het is veilig om dit na 14 dagen te verwijderen. Standaard staat dit op 90 dagen." - -#: src/Module/Admin/Site.php:683 -msgid "Path to item cache" -msgstr "Pad naar cache voor items" - -#: src/Module/Admin/Site.php:683 -msgid "The item caches buffers generated bbcode and external images." -msgstr "Item caches bufferen gegenereerde bbcodes en externe beelden." - -#: src/Module/Admin/Site.php:684 -msgid "Cache duration in seconds" -msgstr "Cache tijdsduur in seconden" - -#: src/Module/Admin/Site.php:684 -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 "Hoe lang moeten de cache bestanden bijgehouden worden? Standaard waarde is 86400 seconden (een dag). Zet de waarde op -1 om de item cache te deactiveren." - -#: src/Module/Admin/Site.php:685 -msgid "Maximum numbers of comments per post" -msgstr "Maximum aantal reacties per bericht" - -#: src/Module/Admin/Site.php:685 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Hoeveel reacties moeten getoond worden per bericht? Standaard waarde is 100." - -#: src/Module/Admin/Site.php:686 -msgid "Maximum numbers of comments per post on the display page" -msgstr "" - -#: src/Module/Admin/Site.php:686 -msgid "" -"How many comments should be shown on the single view for each post? Default " -"value is 1000." -msgstr "" - -#: src/Module/Admin/Site.php:687 -msgid "Temp path" -msgstr "Tijdelijk pad" - -#: src/Module/Admin/Site.php:687 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "Als je een systeem met restricties hebt waarbij de webserver geen toegang heeft tot het systeem pad, geef hier dan een ander pad in. " - -#: src/Module/Admin/Site.php:688 -msgid "Disable picture proxy" -msgstr "Schakel beeld proxy uit" - -#: src/Module/Admin/Site.php:688 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwidth." -msgstr "De beeld proxy verhoogt de performantie en privacy. Gebruik dit niet op systemen met erg lage bandbreedte." - -#: src/Module/Admin/Site.php:689 -msgid "Only search in tags" -msgstr "Zoek alleen in tags" - -#: src/Module/Admin/Site.php:689 -msgid "On large systems the text search can slow down the system extremely." -msgstr "Het opzoeken van tekst kan grote systemen extreem vertragen." - -#: src/Module/Admin/Site.php:691 -msgid "New base url" -msgstr "Nieuwe basis url" - -#: src/Module/Admin/Site.php:691 -msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." -msgstr "Verander de basis url voor deze server. Stuurt een verhuis boodschap naar all Friendica en Diaspora* contacten." - -#: src/Module/Admin/Site.php:693 -msgid "RINO Encryption" -msgstr "RINO encryptie" - -#: src/Module/Admin/Site.php:693 -msgid "Encryption layer between nodes." -msgstr "Encryptie laag tussen nodes." - -#: src/Module/Admin/Site.php:693 src/Module/Admin/Site.php:703 -#: src/Module/Settings/TwoFactor/Index.php:113 src/Module/Contact.php:556 -msgid "Disabled" -msgstr "Uitgeschakeld" - -#: src/Module/Admin/Site.php:693 -msgid "Enabled" -msgstr "Geactiveerd" - -#: src/Module/Admin/Site.php:695 -msgid "Maximum number of parallel workers" -msgstr "Maximum aantal parallelle workers" - -#: src/Module/Admin/Site.php:695 -#, php-format -msgid "" -"On shared hosters set this to %d. On larger systems, values of %d are great." -" Default value is %d." -msgstr "Op gedeelde hosts zet dit op %d. Op grotere systemen, waarden als %d zijn goed. standaard waarde is %d" - -#: src/Module/Admin/Site.php:696 -msgid "Don't use \"proc_open\" with the worker" -msgstr "" - -#: src/Module/Admin/Site.php:696 -msgid "" -"Enable this if your system doesn't allow the use of \"proc_open\". This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of worker calls in your crontab." -msgstr "" - -#: src/Module/Admin/Site.php:697 -msgid "Enable fastlane" -msgstr "Activeer fastlane" - -#: src/Module/Admin/Site.php:697 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes" -" with higher priority are blocked by processes of lower priority." -msgstr "Als deze parameter geactiveerd is, dan start het fastlane mechanisme een bijkomende worker als processen met hogere prioriteit geblokkeerd worden door processen met een lagere prioriteit." - -#: src/Module/Admin/Site.php:698 -msgid "Enable frontend worker" -msgstr "Activeer frontend worker" - -#: src/Module/Admin/Site.php:698 -#, php-format -msgid "" -"When enabled the Worker process is triggered when backend access is " -"performed (e.g. messages being delivered). On smaller sites you might want " -"to call %s/worker on a regular basis via an external cron job. You should " -"only enable this option if you cannot utilize cron/scheduled jobs on your " -"server." -msgstr "" - -#: src/Module/Admin/Site.php:700 -msgid "Subscribe to relay" -msgstr "Schrijf in op relais" - -#: src/Module/Admin/Site.php:700 -msgid "" -"Enables the receiving of public posts from the relay. They will be included " -"in the search, subscribed tags and on the global community page." -msgstr "Activeert het ontvangen van publieke berichten vanwege de relais. Ze zullen inbegrepen zijn in de zoekresultaten, tags waarop je ingeschreven bent en op de globale groepspagina." - -#: src/Module/Admin/Site.php:701 -msgid "Relay server" -msgstr "Relais server" - -#: src/Module/Admin/Site.php:701 -msgid "" -"Address of the relay server where public posts should be send to. For " -"example https://relay.diasp.org" -msgstr "Adres van de relais server waar publieke berichten naartoe moeten gezonden worden. Bijvoorbeeld https://relay.diasp.org" - -#: src/Module/Admin/Site.php:702 -msgid "Direct relay transfer" -msgstr "Directe relais transfer" - -#: src/Module/Admin/Site.php:702 -msgid "" -"Enables the direct transfer to other servers without using the relay servers" -msgstr "Activeert directe relais transfer naar andere servers zonder gebruik van relais servers" - -#: src/Module/Admin/Site.php:703 -msgid "Relay scope" -msgstr "Scope van de relais" - -#: src/Module/Admin/Site.php:703 -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:703 -msgid "all" -msgstr "alle" - -#: src/Module/Admin/Site.php:703 -msgid "tags" -msgstr "tags" - -#: src/Module/Admin/Site.php:704 -msgid "Server tags" -msgstr "Server tags" - -#: src/Module/Admin/Site.php:704 -msgid "Comma separated list of tags for the \"tags\" subscription." -msgstr "" - -#: src/Module/Admin/Site.php:705 -msgid "Allow user tags" -msgstr "Sta gebruiker tags toe." - -#: src/Module/Admin/Site.php:705 -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:708 -msgid "Start Relocation" -msgstr "Start verhuis" - -#: src/Module/Admin/Summary.php:53 -#, php-format -msgid "Template engine (%s) error: %s" -msgstr "" - -#: 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 "Je DB opereert nog met MyISAM tabellen. Best is van engine te veranderen naar InnoDB. Aangezien Friendica in de toekomst gebruik zal maken van InnoDB features, zou je dit best aanpassen! Zie hier voor een gids die je kan helpen om de tabel engines te converteren. Je kan ook het commandophp bin/console.php dbstructure toinnodb van je Friendica installatie gebruiken voor een automatische conversie.
    " - -#: src/Module/Admin/Summary.php: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 "" - -#: src/Module/Admin/Summary.php:71 -#, 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 (or -1 for autosizing). See here for more " -"information.
    " -msgstr "" - -#: src/Module/Admin/Summary.php:80 -#, php-format -msgid "" -"There is a new version of Friendica available for download. Your current " -"version is %1$s, upstream version is %2$s" -msgstr "Er is een nieuwe versie van Friendica beschikbaar om te downloaden. Je huidige versie is %1$s, upstream versie is %2$s" - -#: src/Module/Admin/Summary.php:89 -msgid "" -"The database update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear." -msgstr "Database update is mislukt. Gelieve \"php bin/console.php dbstructure update\" vanaf de command line uit te voeren en de foutmeldingen die zouden kunnen verschijnen na te kijken." - -#: src/Module/Admin/Summary.php:93 -msgid "" -"The last update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear. (Some of the errors are possibly inside the logfile.)" -msgstr "" - -#: src/Module/Admin/Summary.php:98 -msgid "The worker was never executed. Please check your database structure!" -msgstr "De worker werd nooit uitgevoerd. Best je database structuur eens nakijken!" - -#: src/Module/Admin/Summary.php:100 -#, php-format -msgid "" -"The last worker execution was on %s UTC. This is older than one hour. Please" -" check your crontab settings." -msgstr "De laatste worker uitvoering was op %s UTC. Dit is langer dan 1 uur geleden. Best je crontab instellingen nakijken." - -#: src/Module/Admin/Summary.php:105 -#, 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 "Het configuratiebestand bevind zich nu in config/local.config.php. Kopieer het bestand config/local-sample.config.php en verplaats je configuratie uit .htconfig.php. Ga naar deconfiguratie help pagina voor hulp bij transitie." - -#: src/Module/Admin/Summary.php:109 -#, php-format -msgid "" -"Friendica's configuration now is stored in config/local.config.php, please " -"copy config/local-sample.config.php and move your config from " -"config/local.ini.php. See the Config help " -"page for help with the transition." -msgstr "" - -#: src/Module/Admin/Summary.php:115 -#, 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 "%s is niet bereikbaar. Dit is een belangrijk communicatieprobleem waardoor server-naar-server communicatie niet mogelijk is. Lees de the installatie pagina voor hulp." - -#: src/Module/Admin/Summary.php:133 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:147 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:163 -#, php-format -msgid "" -"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" -" system.basepath from your db to avoid differences." -msgstr "" - -#: src/Module/Admin/Summary.php:171 -#, php-format -msgid "" -"Friendica's current system.basepath '%s' is wrong and the config file '%s' " -"isn't used." -msgstr "" - -#: src/Module/Admin/Summary.php:179 -#, php-format -msgid "" -"Friendica's current system.basepath '%s' is not equal to the config file " -"'%s'. Please fix your configuration." -msgstr "" - -#: src/Module/Admin/Summary.php:186 -msgid "Normal Account" -msgstr "Normaal account" - -#: src/Module/Admin/Summary.php:187 -msgid "Automatic Follower Account" -msgstr "Automatische Volger Account" - -#: src/Module/Admin/Summary.php:188 -msgid "Public Forum Account" -msgstr "Publiek Forum account" - -#: src/Module/Admin/Summary.php:189 -msgid "Automatic Friend Account" -msgstr "Automatisch Vriendschapsaccount" - -#: src/Module/Admin/Summary.php:190 -msgid "Blog Account" -msgstr "Blog Account" - -#: src/Module/Admin/Summary.php:191 -msgid "Private Forum Account" -msgstr "Privé Forum Account" - -#: src/Module/Admin/Summary.php:211 -msgid "Message queues" -msgstr "Bericht-wachtrijen" - -#: src/Module/Admin/Summary.php:217 -msgid "Server Settings" -msgstr "Server instellingen." - -#: src/Module/Admin/Summary.php:231 src/Repository/ProfileField.php:285 -msgid "Summary" -msgstr "Samenvatting" - -#: src/Module/Admin/Summary.php:233 -msgid "Registered users" -msgstr "Geregistreerde gebruikers" - -#: src/Module/Admin/Summary.php:235 -msgid "Pending registrations" -msgstr "Registraties die in de wacht staan" - -#: src/Module/Admin/Summary.php:236 -msgid "Version" -msgstr "Versie" - -#: src/Module/Admin/Summary.php:240 -msgid "Active addons" -msgstr "Actieve addons" - -#: src/Module/Admin/Tos.php:60 +#: src/Module/Admin/Tos.php:79 msgid "Display Terms of Service" msgstr "Toon Gebruiksvoorwaarden" -#: src/Module/Admin/Tos.php:60 +#: src/Module/Admin/Tos.php:79 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 "Activeer de Gebruiksvoorwaarden pagina. Als deze geactiveerd is, dan zal er een link naar de voorwaarden toegevoegd worden aan het registratie formulier en de algemene informatie pagina." -#: src/Module/Admin/Tos.php:61 +#: src/Module/Admin/Tos.php:80 msgid "Display Privacy Statement" msgstr "Toon Privacy Verklaring" -#: src/Module/Admin/Tos.php:61 +#: src/Module/Admin/Tos.php:80 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." +"according e.g. to EU-GDPR." msgstr "" -#: src/Module/Admin/Tos.php:62 +#: src/Module/Admin/Tos.php:81 msgid "Privacy Statement Preview" msgstr "Privacy Verklaring Voorbeeldweergave" -#: src/Module/Admin/Tos.php:64 +#: src/Module/Admin/Tos.php:83 msgid "The Terms of Service" msgstr "De Gebruiksvoorwaarden" -#: src/Module/Admin/Tos.php:64 +#: src/Module/Admin/Tos.php:83 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "Geef hier de Gebruiksvoorwaarden van je node op. Je kan BBCode gebruiken. Sectie headers moeten [h2] zijn of lager." -#: src/Module/Admin/Users.php:61 -#, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users.php:68 -#, php-format -msgid "%s user unblocked" -msgid_plural "%s users unblocked" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users.php:76 src/Module/Admin/Users.php:126 -msgid "You can't remove yourself" -msgstr "Je kan jezelf niet verwijderen" - -#: src/Module/Admin/Users.php:80 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s gebruiker verwijderd" -msgstr[1] "%s gebruikers verwijderd" - -#: src/Module/Admin/Users.php:87 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users.php:94 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users.php:124 -#, php-format -msgid "User \"%s\" deleted" +#: src/Module/Admin/Tos.php:84 +msgid "The rules" msgstr "" -#: src/Module/Admin/Users.php:132 +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." +msgstr "" + +#: src/Module/Api/ApiResponse.php:279 #, php-format -msgid "User \"%s\" blocked" +msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Admin/Users.php:137 +#: src/Module/Api/Mastodon/Apps.php:73 +msgid "Missing parameters" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:51 +msgid "Only starting posts can be bookmarked" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +msgid "Only starting posts can be muted" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Reblog.php:56 #, php-format -msgid "User \"%s\" unblocked" +msgid "Posts from %s can't be shared" msgstr "" -#: src/Module/Admin/Users.php:142 -msgid "Account approved." -msgstr "Account goedgekeurd." - -#: src/Module/Admin/Users.php:147 -msgid "Registration revoked" +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +msgid "Only starting posts can be unbookmarked" msgstr "" -#: src/Module/Admin/Users.php:191 -msgid "Private Forum" -msgstr "Privé Forum" - -#: src/Module/Admin/Users.php:198 -msgid "Relay" +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +msgid "Only starting posts can be unmuted" msgstr "" -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Register date" -msgstr "Registratiedatum" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Last login" -msgstr "Laatste login" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Last public item" +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:62 +#, php-format +msgid "Posts from %s can't be unshared" msgstr "" -#: src/Module/Admin/Users.php:237 -msgid "Type" -msgstr "Type" +#: src/Module/Api/Twitter/ContactEndpoint.php:66 +msgid "Contact not found" +msgstr "Contact niet gevonden" + +#: src/Module/Apps.php:62 +msgid "No installed applications." +msgstr "Geen toepassingen geïnstalleerd" + +#: src/Module/Apps.php:67 +msgid "Applications" +msgstr "Toepassingen" + +#: src/Module/Attach.php:49 src/Module/Attach.php:61 +msgid "Item was not found." +msgstr "Item niet gevonden" + +#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +msgid "Please login to continue." +msgstr "Log in om verder te gaan." + +#: src/Module/BaseAdmin.php:63 +msgid "You don't have access to administration pages." +msgstr "" + +#: src/Module/BaseAdmin.php:67 +msgid "" +"Submanaged account can't access the administration pages. Please log back in" +" as the main account." +msgstr "" + +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +msgid "Overview" +msgstr "Overzicht" + +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +msgid "Configuration" +msgstr "Configuratie" + +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +msgid "Additional features" +msgstr "Extra functies" + +#: src/Module/BaseAdmin.php:97 +msgid "Database" +msgstr "Database" -#: src/Module/Admin/Users.php:243 src/Module/Admin/Users.php:260 #: src/Module/BaseAdmin.php:98 +msgid "DB updates" +msgstr "DB aanpassingen" + +#: src/Module/BaseAdmin.php:99 +msgid "Inspect Deferred Workers" +msgstr "Inspecteer uitgestelde workers" + +#: src/Module/BaseAdmin.php:100 +msgid "Inspect worker Queue" +msgstr "Taakwachtrij inspecteren" + +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +msgid "Diagnostics" +msgstr "Diagnostiek" + +#: src/Module/BaseAdmin.php:107 +msgid "PHP Info" +msgstr "PHP Info" + +#: src/Module/BaseAdmin.php:108 +msgid "probe address" +msgstr "probe adres" + +#: src/Module/BaseAdmin.php:109 +msgid "check webfinger" +msgstr "check webfinger" + +#: src/Module/BaseAdmin.php:110 +msgid "Babel" +msgstr "" + +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 +msgid "ActivityPub Conversion" +msgstr "" + +#: src/Module/BaseAdmin.php:120 +msgid "Addon Features" +msgstr "Addon Features" + +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +msgid "User registrations waiting for confirmation" +msgstr "Gebruikersregistraties wachten op bevestiging" + +#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467 +#: src/Module/BaseApi.php:483 +msgid "Too Many Requests" +msgstr "" + +#: src/Module/BaseApi.php:452 +#, php-format +msgid "Daily posting limit of %d post reached. The post was rejected." +msgid_plural "Daily posting limit of %d posts reached. The post was rejected." +msgstr[0] "De dagelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard." +msgstr[1] "De dagelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard." + +#: src/Module/BaseApi.php:468 +#, 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] "De wekelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard." +msgstr[1] "De wekelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard." + +#: src/Module/BaseApi.php:484 +#, php-format +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Monthly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "" + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "" + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 msgid "Users" msgstr "Gebruiker" -#: src/Module/Admin/Users.php:244 -msgid "Add User" -msgstr "Gebruiker toevoegen" +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "Hulpmiddelen" -#: src/Module/Admin/Users.php:246 -msgid "User registrations waiting for confirm" -msgstr "Gebruikersregistraties wachten op een bevestiging" +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "Contact Blokkeerlijst" -#: src/Module/Admin/Users.php:247 -msgid "User waiting for permanent deletion" -msgstr "Gebruiker wacht op permanente verwijdering" +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "Server Blokkeerlijst" -#: src/Module/Admin/Users.php:248 -msgid "Request date" -msgstr "Registratiedatum" +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "Verwijder Item" -#: src/Module/Admin/Users.php:249 -msgid "No registrations." -msgstr "Geen registraties." - -#: src/Module/Admin/Users.php:250 -msgid "Note from the user" -msgstr "Nota van de gebruiker" - -#: src/Module/Admin/Users.php:252 -msgid "Deny" -msgstr "Weiger" - -#: src/Module/Admin/Users.php:255 -msgid "User blocked" -msgstr "Gebruiker geblokeerd" - -#: src/Module/Admin/Users.php:257 -msgid "Site admin" -msgstr "Sitebeheerder" - -#: src/Module/Admin/Users.php:258 -msgid "Account expired" -msgstr "Account verlopen" - -#: src/Module/Admin/Users.php:261 -msgid "New User" -msgstr "Nieuwe gebruiker" - -#: src/Module/Admin/Users.php:262 -msgid "Permanent deletion" +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" msgstr "" -#: src/Module/Admin/Users.php:267 +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 +msgid "Profile Details" +msgstr "Profieldetails" + +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "" + +#: src/Module/BaseProfile.php:111 +msgid "Only You Can See This" +msgstr "Alleen jij kunt dit zien" + +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +msgid "Scheduled Posts" +msgstr "" + +#: src/Module/BaseProfile.php:119 +msgid "Posts that are scheduled for publishing" +msgstr "" + +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +msgid "Tips for New Members" +msgstr "Tips voor nieuwe leden" + +#: src/Module/BaseSearch.php:71 +#, php-format +msgid "People Search - %s" +msgstr "Mensen Zoeken - %s" + +#: src/Module/BaseSearch.php:75 +#, php-format +msgid "Group Search - %s" +msgstr "" + +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "Geen resultaten" + +#: src/Module/BaseSearch.php:147 +#, php-format msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "" +msgstr[1] "" -#: src/Module/Admin/Users.php:268 +#: src/Module/BaseSettings.php:78 +msgid "Account" +msgstr "Account" + +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 +msgid "Two-factor authentication" +msgstr "2-factor authenticatie" + +#: src/Module/BaseSettings.php:118 +msgid "Display" +msgstr "Weergave" + +#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "Sociale netwerken" + +#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172 +msgid "Manage Accounts" +msgstr "Beheer Gebruikers" + +#: src/Module/BaseSettings.php:146 +msgid "Connected apps" +msgstr "Verbonden applicaties" + +#: src/Module/BaseSettings.php:153 +msgid "Remote servers" +msgstr "" + +#: src/Module/BaseSettings.php:160 src/Module/Settings/UserExport.php:98 +msgid "Export personal data" +msgstr "Persoonlijke gegevens exporteren" + +#: src/Module/BaseSettings.php:167 +msgid "Remove account" +msgstr "Account verwijderen" + +#: src/Module/Bookmarklet.php:54 +msgid "This page is missing a url parameter." +msgstr "Deze pagina mist een url-parameter." + +#: src/Module/Bookmarklet.php:66 +msgid "The post was created" +msgstr "Het bericht is aangemaakt" + +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "" + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "Kon remote event niet verwijderen" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "Gebeurtenis kan niet eindigen voor het begin." + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van de gebeurtenis zijn vereist." + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "Start datum en Titel zijn verplicht." + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "Gebeurtenis begint:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Vereist" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "Einddatum/tijd is niet gekend of niet relevant" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "Gebeurtenis eindigt:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "Basis" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "Dit kalender formaat is niet ondersteund" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "Geen exporteerbare data gevonden" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "kalender" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Gebeurtenissen" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "Beeld" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Maak een nieuwe gebeurtenis" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:248 +msgid "list" +msgstr "lijst" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "" + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "" + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "" + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "" + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "Contact niet gevonden" + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "Ongeldig contact." + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "Contact is verwijderd." + +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "" + +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "" + +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "" + +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "" + +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "Verkeerde aanvraag." + +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "" + +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "filter" + +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "" + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "" + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "Leden" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "Klik op een contact om het toe te voegen of te verwijderen." + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "" + +#: src/Module/Contact.php:97 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "%d contact bewerkt." +msgstr[1] "%d contacten bewerkt." + +#: src/Module/Contact.php:348 +msgid "Show all contacts" +msgstr "Toon alle contacten" + +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "In behandeling" + +#: src/Module/Contact.php:356 +msgid "Only show pending contacts" +msgstr "Toon alleen contacten in behandeling" + +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Geblokkeerd" + +#: src/Module/Contact.php:364 +msgid "Only show blocked contacts" +msgstr "Toon alleen geblokkeerde contacten" + +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:368 +msgid "Ignored" +msgstr "Genegeerd" + +#: src/Module/Contact.php:372 +msgid "Only show ignored contacts" +msgstr "Toon alleen genegeerde contacten" + +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 +msgid "Archived" +msgstr "Gearchiveerd" + +#: src/Module/Contact.php:388 +msgid "Only show archived contacts" +msgstr "Toon alleen gearchiveerde contacten" + +#: src/Module/Contact.php:393 src/Module/Contact.php:438 +msgid "Hidden" +msgstr "Verborgen" + +#: src/Module/Contact.php:396 +msgid "Only show hidden contacts" +msgstr "Toon alleen verborgen contacten" + +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "" + +#: src/Module/Contact.php:459 +msgid "Search your contacts" +msgstr "Doorzoek je contacten" + +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 +#, php-format +msgid "Results for: %s" +msgstr "Resultaten voor: %s" + +#: src/Module/Contact.php:467 +msgid "Update" +msgstr "Wijzigen" + +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Blokkering opheffen" + +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 +msgid "Unignore" +msgstr "Negeer niet meer" + +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "" + +#: src/Module/Contact.php:472 +msgid "Batch Actions" +msgstr "Bulk Acties" + +#: src/Module/Contact.php:515 +msgid "Conversations started by this contact" +msgstr "Gesprekken gestart door dit contact" + +#: src/Module/Contact.php:520 +msgid "Posts and Comments" +msgstr "Berichten en reacties" + +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "" + +#: src/Module/Contact.php:531 +msgid "Posts containing media objects" +msgstr "" + +#: src/Module/Contact.php:539 +msgid "View all known contacts" +msgstr "" + +#: src/Module/Contact.php:550 +msgid "Advanced Contact Settings" +msgstr "Geavanceerde instellingen voor contacten" + +#: src/Module/Contact.php:586 +msgid "Mutual Friendship" +msgstr "Wederzijdse vriendschap" + +#: src/Module/Contact.php:590 +msgid "is a fan of yours" +msgstr "Is een fan van jou" + +#: src/Module/Contact.php:594 +msgid "you are a fan of" +msgstr "Jij bent een fan van" + +#: src/Module/Contact.php:612 +msgid "Pending outgoing contact request" +msgstr "In afwachting van uitgaande contactaanvraag" + +#: src/Module/Contact.php:614 +msgid "Pending incoming contact request" +msgstr "In afwachting van inkomende contactaanvraag" + +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Bekijk het profiel van %s [%s]" + +#: src/Module/Contact/Advanced.php:99 +msgid "Contact update failed." +msgstr "Aanpassen van contact mislukt." + +#: src/Module/Contact/Advanced.php:130 +msgid "Return to contact editor" +msgstr "Ga terug naar contactbewerker" + +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Naam" + +#: src/Module/Contact/Advanced.php:135 +msgid "Account Nickname" +msgstr "Bijnaam account" + +#: src/Module/Contact/Advanced.php:136 +msgid "Account URL" +msgstr "URL account" + +#: src/Module/Contact/Advanced.php:137 +msgid "Poll/Feed URL" +msgstr "URL poll/feed" + +#: src/Module/Contact/Advanced.php:138 +msgid "New photo from this URL" +msgstr "Nieuwe foto van deze URL" + +#: src/Module/Contact/Contacts.php:89 +msgid "No known contacts." +msgstr "" + +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +msgid "No common contacts." +msgstr "" + +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#, php-format +msgid "Follower (%s)" +msgid_plural "Followers (%s)" +msgstr[0] "Volger (%s)" +msgstr[1] "Volgers (%s)" + +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#, php-format +msgid "Following (%s)" +msgid_plural "Following (%s)" +msgstr[0] "Volgend (%s)" +msgstr[1] "Volgend (%s)" + +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#, php-format +msgid "Mutual friend (%s)" +msgid_plural "Mutual friends (%s)" +msgstr[0] "Gemeenschappelijke vriend (%s)" +msgstr[1] "Gemeenschappelijke vrienden (%s)" + +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#, php-format +msgid "These contacts both follow and are followed by %s." +msgstr "" + +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#, php-format +msgid "Common contact (%s)" +msgid_plural "Common contacts (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#, php-format msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" +"Both %s and yourself have publicly interacted with these " +"contacts (follow, comment or likes on public posts)." +msgstr "" -#: src/Module/Admin/Users.php:278 -msgid "Name of the new user." -msgstr "Naam van nieuwe gebruiker" +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#, php-format +msgid "Contact (%s)" +msgid_plural "Contacts (%s)" +msgstr[0] "Contact (%s)" +msgstr[1] "Contacten (%s)" -#: src/Module/Admin/Users.php:279 -msgid "Nickname" -msgstr "Bijnaam" +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:165 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Toegang geweigerd" -#: src/Module/Admin/Users.php:279 -msgid "Nickname of the new user." -msgstr "Bijnaam van nieuwe gebruiker" +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Aanvraag indienen" -#: src/Module/Admin/Users.php:280 -msgid "Email address of the new user." -msgstr "E-mailadres van nieuwe gebruiker" +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "Je hebt deze kontakt al toegevoegd" + +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Het type netwerk kon niet gedetecteerd worden. Contact kan niet toegevoegd worden." + +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Diaspora ondersteuning is niet geactiveerd. Contact kan niet toegevoegd worden." + +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "OStatus ondersteuning is niet geactiveerd. Contact kan niet toegevoegd woren." + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Beantwoord het volgende:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "Adres van je identiteit:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "Profiel url" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Labels:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "%s kent je" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Voeg een persoonlijke opmerking toe:" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" +msgstr "" + +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "Het contact kon niet toegevoegd worden." + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "Ongeldige aanvraag." + +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "Geen overeenkomende zoekwoorden. Voeg zoekwoorden toe aan uw profiel." + +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "Profielmatch" + +#: src/Module/Contact/Profile.php:140 +msgid "Failed to update contact record." +msgstr "Ik kon de contactgegevens niet aanpassen." + +#: src/Module/Contact/Profile.php:190 +msgid "Contact has been unblocked" +msgstr "Contact is gedeblokkeerd" + +#: src/Module/Contact/Profile.php:194 +msgid "Contact has been blocked" +msgstr "Contact is geblokkeerd" + +#: src/Module/Contact/Profile.php:206 +msgid "Contact has been unignored" +msgstr "Contact wordt niet meer genegeerd" + +#: src/Module/Contact/Profile.php:210 +msgid "Contact has been ignored" +msgstr "Contact wordt genegeerd" + +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:254 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Je bent wederzijds bevriend met %s" + +#: src/Module/Contact/Profile.php:255 +#, php-format +msgid "You are sharing with %s" +msgstr "Je deelt met %s" + +#: src/Module/Contact/Profile.php:256 +#, php-format +msgid "%s is sharing with you" +msgstr "%s deelt met jou" + +#: src/Module/Contact/Profile.php:272 +msgid "Private communications are not available for this contact." +msgstr "Privécommunicatie met dit contact is niet beschikbaar." + +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "" + +#: src/Module/Contact/Profile.php:285 +msgid "Never" +msgstr "Nooit" + +#: src/Module/Contact/Profile.php:288 +msgid "(Update was not successful)" +msgstr "(Wijziging is niet geslaagd)" + +#: src/Module/Contact/Profile.php:288 +msgid "(Update was successful)" +msgstr "(Wijziging is geslaagd)" + +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 +msgid "Suggest friends" +msgstr "Stel vrienden voor" + +#: src/Module/Contact/Profile.php:294 +#, php-format +msgid "Network type: %s" +msgstr "Netwerk type: %s" + +#: src/Module/Contact/Profile.php:299 +msgid "Communications lost with this contact!" +msgstr "Communicatie met dit contact is verbroken!" + +#: src/Module/Contact/Profile.php:305 +msgid "Fetch further information for feeds" +msgstr "Haal meer informatie op van de feeds" + +#: src/Module/Contact/Profile.php:307 +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 "Haal informatie op zoals preview beelden, titel en teaser van het feed item. Je kan dit activeren als de feed niet veel tekst bevat. Sleutelwoorden worden opgepikt uit de meta header in het feed item en worden gepost als hash tags." + +#: src/Module/Contact/Profile.php:310 +msgid "Fetch information" +msgstr "Haal informatie op" + +#: src/Module/Contact/Profile.php:311 +msgid "Fetch keywords" +msgstr "Haal sleutelwoorden op" + +#: src/Module/Contact/Profile.php:312 +msgid "Fetch information and keywords" +msgstr "Haal informatie en sleutelwoorden op" + +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 +msgid "No mirroring" +msgstr "Geen mirroring" + +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 +msgid "Mirror as my own posting" +msgstr "Spiegel als mijn eigen bericht" + +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 +msgid "Native reshare" +msgstr "" + +#: src/Module/Contact/Profile.php:353 +msgid "Contact Information / Notes" +msgstr "Contactinformatie / aantekeningen" + +#: src/Module/Contact/Profile.php:354 +msgid "Contact Settings" +msgstr "Contact instellingen" + +#: src/Module/Contact/Profile.php:362 +msgid "Contact" +msgstr "Contact" + +#: src/Module/Contact/Profile.php:366 +msgid "Their personal note" +msgstr "Hun persoonlijke nota" + +#: src/Module/Contact/Profile.php:368 +msgid "Edit contact notes" +msgstr "Wijzig aantekeningen over dit contact" + +#: src/Module/Contact/Profile.php:372 +msgid "Block/Unblock contact" +msgstr "Blokkeer/deblokkeer contact" + +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 +msgid "Ignore contact" +msgstr "Negeer contact" + +#: src/Module/Contact/Profile.php:374 +msgid "View conversations" +msgstr "Toon gesprekken" + +#: src/Module/Contact/Profile.php:379 +msgid "Last update:" +msgstr "Laatste wijziging:" + +#: src/Module/Contact/Profile.php:381 +msgid "Update public posts" +msgstr "Openbare posts aanpassen" + +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 +msgid "Update now" +msgstr "Wijzig nu" + +#: src/Module/Contact/Profile.php:385 +msgid "Awaiting connection acknowledge" +msgstr "Wait op bevestiging van de connectie" + +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "Op dit moment geblokkeerd" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "Op dit moment genegeerd" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "Op dit moment gearchiveerd" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "" + +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 +msgid "Hide this contact from others" +msgstr "Verberg dit contact voor anderen" + +#: src/Module/Contact/Profile.php:394 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn" + +#: src/Module/Contact/Profile.php:395 +msgid "Notification for new posts" +msgstr "Meldingen voor nieuwe berichten" + +#: src/Module/Contact/Profile.php:395 +msgid "Send a notification of every new post of this contact" +msgstr "Stuur een notificatie voor elk bericht van dit contact" + +#: src/Module/Contact/Profile.php:397 +msgid "Keyword Deny List" +msgstr "" + +#: src/Module/Contact/Profile.php:397 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Door komma's gescheiden lijst van sleutelwoorden die niet in hashtags mogen omgezet worden, wanneer \"Haal informatie en sleutelwoorden op\" is geselecteerd" + +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:139 +msgid "Actions" +msgstr "Acties" + +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "Tijdlijn" + +#: src/Module/Contact/Profile.php:423 +msgid "Mirror postings from this contact" +msgstr "Berichten van dit contact spiegelen" + +#: src/Module/Contact/Profile.php:425 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Markeer dit contact als remote_self, hierdoor zal friendica nieuwe berichten van dit contact opnieuw posten." + +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" +msgstr "" + +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "" + +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "" + +#: src/Module/Contact/Profile.php:502 +msgid "Refetch contact data" +msgstr "Contact data opnieuw ophalen" + +#: src/Module/Contact/Profile.php:513 +msgid "Toggle Blocked status" +msgstr "Schakel geblokkeerde status" + +#: src/Module/Contact/Profile.php:521 +msgid "Toggle Ignored status" +msgstr "Schakel negeerstatus" + +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" +msgstr "" + +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 +msgid "Revoke Follow" +msgstr "" + +#: src/Module/Contact/Profile.php:538 +msgid "Revoke the follow from this contact" +msgstr "" + +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "Verkeerde aanvraag." + +#: src/Module/Contact/Revoke.php:63 +msgid "Unknown contact." +msgstr "" + +#: src/Module/Contact/Revoke.php:77 +msgid "Contact is being deleted." +msgstr "" + +#: src/Module/Contact/Revoke.php:91 +msgid "Follow was successfully revoked." +msgstr "" + +#: src/Module/Contact/Revoke.php:107 +msgid "" +"Do you really want to revoke this contact's follow? This cannot be undone " +"and they will have to manually follow you back again." +msgstr "" + +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "Yes" +msgstr "Ja" + +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen." + +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "Je volgt dit contact niet." + +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "Ontvolgen is momenteel niet gesupporteerd door je netwerk." + +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "Disconnecteer/stop met volgen" + +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "" + +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "" + +#: src/Module/Conversation/Channel.php:121 +#: src/Module/Conversation/Community.php:125 src/Module/Search/Index.php:152 +#: src/Module/Search/Index.php:194 +msgid "No results." +msgstr "Geen resultaten." + +#: src/Module/Conversation/Channel.php:159 +msgid "Channel not available." +msgstr "" + +#: src/Module/Conversation/Community.php:91 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "Deze groepsstroom toont alle publieke berichten die deze node ontvangen heeft. Ze kunnen mogelijks niet de mening van de gebruikers van deze node weerspiegelen." + +#: src/Module/Conversation/Community.php:179 +msgid "Community option not available." +msgstr "Groepsoptie niet beschikbaar" + +#: src/Module/Conversation/Community.php:195 +msgid "Not available." +msgstr "Niet beschikbaar" + +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "" + +#: src/Module/Conversation/Network.php:222 +#, php-format +msgid "Circle: %s" +msgstr "" + +#: src/Module/Conversation/Network.php:317 +msgid "Network feed not available." +msgstr "" + +#: src/Module/Conversation/Timeline.php:158 +msgid "Own Contacts" +msgstr "" + +#: src/Module/Conversation/Timeline.php:162 +msgid "Include" +msgstr "" + +#: src/Module/Conversation/Timeline.php:163 +msgid "Hide" +msgstr "" + +#: src/Module/Credits.php:44 +msgid "Credits" +msgstr "Credits" + +#: 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 "Friendica is een gemeenschapsproject dat niet mogelijk zou zijn zonder de hulp van vele mensen. Hier is een lijst van alle mensen die aan de code of vertalingen van Friendica hebben meegewerkt. Allen van harte bedankt!" + +#: src/Module/Debug/ActivityPubConversion.php:53 +msgid "Formatted" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:65 +msgid "Activity" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:117 +msgid "Object data" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:124 +msgid "Result Item" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Fout" +msgstr[1] "Fouten" + +#: src/Module/Debug/ActivityPubConversion.php:138 +msgid "Source activity" +msgstr "" + +#: src/Module/Debug/Babel.php:51 +msgid "Source input" +msgstr "Bron input" + +#: 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 (raw HTML)" + +#: src/Module/Debug/Babel.php:68 +msgid "BBCode::convert (hex)" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: src/Module/Debug/Babel.php:119 +msgid "Item Tags" +msgstr "" + +#: src/Module/Debug/Babel.php:125 +msgid "PageInfo::appendToBody" +msgstr "" + +#: src/Module/Debug/Babel.php:130 +msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:134 +msgid "PageInfo::appendToBody => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:141 +msgid "Source input (Diaspora format)" +msgstr "Bron ingave (Diaspora formaat):" + +#: src/Module/Debug/Babel.php:150 +msgid "Source input (Markdown)" +msgstr "" + +#: src/Module/Debug/Babel.php:156 +msgid "Markdown::convert (raw HTML)" +msgstr "Markdown::convert (Ruwe 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 "Onverwerkte HTML input" + +#: src/Module/Debug/Babel.php:179 +msgid "HTML Input" +msgstr "HTML Input" + +#: src/Module/Debug/Babel.php:186 +msgid "HTML Purified (raw)" +msgstr "" + +#: src/Module/Debug/Babel.php:191 +msgid "HTML Purified (hex)" +msgstr "" + +#: src/Module/Debug/Babel.php:196 +msgid "HTML Purified" +msgstr "" + +#: 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 (Ruwe HTML)" + +#: src/Module/Debug/Babel.php:219 +msgid "HTML::toBBCode => BBCode::toPlaintext" +msgstr "" + +#: 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 "" + +#: src/Module/Debug/Babel.php:255 +msgid "Decoded post" +msgstr "" + +#: src/Module/Debug/Babel.php:276 +msgid "Post array before expand entities" +msgstr "" + +#: src/Module/Debug/Babel.php:283 +msgid "Post converted" +msgstr "" + +#: src/Module/Debug/Babel.php:288 +msgid "Converted body" +msgstr "" + +#: src/Module/Debug/Babel.php:294 +msgid "Twitter addon is absent from the addon/ folder." +msgstr "" + +#: src/Module/Debug/Babel.php:304 +msgid "Babel Diagnostic" +msgstr "" + +#: src/Module/Debug/Babel.php:305 +msgid "Source text" +msgstr "Brontekst" + +#: 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 "" + +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:177 +msgid "You must be logged in to use this module" +msgstr "Je moet ingelogd zijn om deze module te gebruiken" + +#: src/Module/Debug/Feed.php:77 +msgid "Source URL" +msgstr "Bron URL" #: src/Module/Debug/Localtime.php:49 msgid "Time Conversion" @@ -7271,561 +7000,3831 @@ msgstr "Omgerekende lokale tijd: %s" msgid "Please select your timezone:" msgstr "Selecteer je tijdzone:" -#: src/Module/Debug/WebFinger.php:37 src/Module/Debug/Probe.php:38 +#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 msgid "Only logged in users are permitted to perform a probing." msgstr "Alleen ingelogde gebruikers hebben toelating om aan probing te doen." -#: src/Module/Debug/ActivityPubConversion.php:58 -msgid "Formatted" +#: src/Module/Debug/Probe.php:52 +msgid "Probe Diagnostic" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:62 -msgid "Source" +#: src/Module/Debug/Probe.php:53 +msgid "Output" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:70 -msgid "Activity" -msgstr "" - -#: src/Module/Debug/ActivityPubConversion.php:118 -msgid "Object data" -msgstr "" - -#: src/Module/Debug/ActivityPubConversion.php:125 -msgid "Result Item" -msgstr "" - -#: src/Module/Debug/ActivityPubConversion.php:138 -msgid "Source activity" -msgstr "" - -#: src/Module/Debug/Babel.php:54 -msgid "Source input" -msgstr "Bron input" - -#: src/Module/Debug/Babel.php:60 -msgid "BBCode::toPlaintext" -msgstr "BBCode::toPlaintext" - -#: src/Module/Debug/Babel.php:66 -msgid "BBCode::convert (raw HTML)" -msgstr "BBCode::convert (raw HTML)" - -#: src/Module/Debug/Babel.php:71 -msgid "BBCode::convert" -msgstr "BBCode::convert" - -#: src/Module/Debug/Babel.php:77 -msgid "BBCode::convert => HTML::toBBCode" -msgstr "BBCode::convert => HTML::toBBCode" - -#: src/Module/Debug/Babel.php:83 -msgid "BBCode::toMarkdown" -msgstr "BBCode::toMarkdown" - -#: src/Module/Debug/Babel.php:89 -msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" -msgstr "" - -#: src/Module/Debug/Babel.php:93 -msgid "BBCode::toMarkdown => Markdown::convert" -msgstr "BBCode::toMarkdown => Markdown::convert" - -#: src/Module/Debug/Babel.php:99 -msgid "BBCode::toMarkdown => Markdown::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::toBBCode" - -#: src/Module/Debug/Babel.php:105 -msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" - -#: src/Module/Debug/Babel.php:113 -msgid "Item Body" -msgstr "" - -#: src/Module/Debug/Babel.php:117 -msgid "Item Tags" -msgstr "" - -#: src/Module/Debug/Babel.php:123 -msgid "PageInfo::appendToBody" -msgstr "" - -#: src/Module/Debug/Babel.php:128 -msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" -msgstr "" - -#: src/Module/Debug/Babel.php:132 -msgid "PageInfo::appendToBody => BBCode::convert" -msgstr "" - -#: src/Module/Debug/Babel.php:139 -msgid "Source input (Diaspora format)" -msgstr "Bron ingave (Diaspora formaat):" - -#: src/Module/Debug/Babel.php:148 -msgid "Source input (Markdown)" -msgstr "" - -#: src/Module/Debug/Babel.php:154 -msgid "Markdown::convert (raw HTML)" -msgstr "Markdown::convert (Ruwe HTML)" - -#: src/Module/Debug/Babel.php:159 -msgid "Markdown::convert" -msgstr "Markdown::convert" - -#: src/Module/Debug/Babel.php:165 -msgid "Markdown::toBBCode" -msgstr "Markdown::toBBCode" - -#: src/Module/Debug/Babel.php:172 -msgid "Raw HTML input" -msgstr "Onverwerkte HTML input" - -#: src/Module/Debug/Babel.php:177 -msgid "HTML Input" -msgstr "HTML Input" - -#: src/Module/Debug/Babel.php:183 -msgid "HTML::toBBCode" -msgstr "HTML::toBBCode" - -#: src/Module/Debug/Babel.php:189 -msgid "HTML::toBBCode => BBCode::convert" -msgstr "HTML::toBBCode => BBCode::convert" - -#: src/Module/Debug/Babel.php:194 -msgid "HTML::toBBCode => BBCode::convert (raw HTML)" -msgstr "HTML::toBBCode => BBCode::convert (Ruwe HTML)" - -#: src/Module/Debug/Babel.php:200 -msgid "HTML::toBBCode => BBCode::toPlaintext" -msgstr "" - -#: src/Module/Debug/Babel.php:206 -msgid "HTML::toMarkdown" -msgstr "HTML::toMarkdown" - -#: src/Module/Debug/Babel.php:212 -msgid "HTML::toPlaintext" -msgstr "HTML::toPlaintext" - -#: src/Module/Debug/Babel.php:218 -msgid "HTML::toPlaintext (compact)" -msgstr "" - -#: src/Module/Debug/Babel.php:228 -msgid "Decoded post" -msgstr "" - -#: src/Module/Debug/Babel.php:252 -msgid "Post array before expand entities" -msgstr "" - -#: src/Module/Debug/Babel.php:259 -msgid "Post converted" -msgstr "" - -#: src/Module/Debug/Babel.php:264 -msgid "Converted body" -msgstr "" - -#: src/Module/Debug/Babel.php:270 -msgid "Twitter addon is absent from the addon/ folder." -msgstr "" - -#: src/Module/Debug/Babel.php:280 -msgid "Source text" -msgstr "Brontekst" - -#: src/Module/Debug/Babel.php:281 -msgid "BBCode" -msgstr "BBCode" - -#: src/Module/Debug/Babel.php:283 -msgid "Markdown" -msgstr "Markdown" - -#: src/Module/Debug/Babel.php:284 -msgid "HTML" -msgstr "HTML" - -#: src/Module/Debug/Babel.php:286 -msgid "Twitter Source" -msgstr "" - -#: src/Module/Debug/Feed.php:38 src/Module/Filer/SaveTag.php:38 -#: src/Module/Settings/Profile/Index.php:158 -msgid "You must be logged in to use this module" -msgstr "Je moet ingelogd zijn om deze module te gebruiken" - -#: src/Module/Debug/Feed.php:63 -msgid "Source URL" -msgstr "Bron URL" - -#: src/Module/Debug/Probe.php:54 +#: src/Module/Debug/Probe.php:56 msgid "Lookup address" msgstr "Opzoekadres" -#: src/Module/Filer/RemoveTag.php:63 -msgid "Item was not removed" +#: src/Module/Debug/WebFinger.php:50 +msgid "Webfinger Diagnostic" msgstr "" -#: src/Module/Filer/RemoveTag.php:66 +#: src/Module/Debug/WebFinger.php:52 +msgid "Lookup address:" +msgstr "" + +#: src/Module/Delegation.php:110 +#, php-format +msgid "You are now logged in as %s" +msgstr "" + +#: src/Module/Delegation.php:142 +msgid "Switch between your accounts" +msgstr "" + +#: src/Module/Delegation.php:143 +msgid "Manage your accounts" +msgstr "" + +#: src/Module/Delegation.php:144 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen." + +#: src/Module/Delegation.php:145 +msgid "Select an identity to manage: " +msgstr "Selecteer een identiteit om te beheren:" + +#: src/Module/Directory.php:74 +msgid "No entries (some entries may be hidden)." +msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)." + +#: src/Module/Directory.php:90 +msgid "Find on this site" +msgstr "Op deze website zoeken" + +#: src/Module/Directory.php:92 +msgid "Results for:" +msgstr "Resultaten voor:" + +#: src/Module/Directory.php:94 +msgid "Site Directory" +msgstr "Websitegids" + +#: src/Module/Filer/RemoveTag.php:105 msgid "Item was not deleted" msgstr "" -#: src/Module/Filer/SaveTag.php:65 +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "" + +#: src/Module/Filer/SaveTag.php:73 msgid "- select -" msgstr "- Kies -" -#: src/Module/Item/Compose.php:46 +#: src/Module/FriendSuggest.php:82 +msgid "Suggested contact not found." +msgstr "Voorgesteld contact werd niet gevonden" + +#: src/Module/FriendSuggest.php:100 +msgid "Friend suggestion sent." +msgstr "Vriendschapsvoorstel verzonden." + +#: src/Module/FriendSuggest.php:137 +msgid "Suggest Friends" +msgstr "Stel vrienden voor" + +#: src/Module/FriendSuggest.php:140 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Stel een vriend voor aan %s" + +#: src/Module/Friendica.php:82 +msgid "Installed addons/apps:" +msgstr "Geïnstalleerde addons/applicaties:" + +#: src/Module/Friendica.php:87 +msgid "No installed addons/apps" +msgstr "Geen geïnstalleerde addons/applicaties" + +#: src/Module/Friendica.php:92 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "Lees de Gebruiksvoorwaarden van deze node na." + +#: src/Module/Friendica.php:99 +msgid "On this server the following remote servers are blocked." +msgstr "De volgende remote servers zijn geblokkeerd." + +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +msgid "Reason for the block" +msgstr "Reden van de blokkering" + +#: src/Module/Friendica.php:104 +msgid "Download this list in CSV format" +msgstr "" + +#: src/Module/Friendica.php:118 +#, 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 "Dit is Friendica, versie %s en draait op op locatie %s. De databaseversie is %s, en de bericht update versie is %s." + +#: src/Module/Friendica.php:123 +msgid "" +"Please visit Friendi.ca to learn more " +"about the Friendica project." +msgstr "Ga naar Friendi.ca om meer te vernemen over het Friendica project." + +#: src/Module/Friendica.php:124 +msgid "Bug reports and issues: please visit" +msgstr "Bug rapporten en problemen: bezoek" + +#: src/Module/Friendica.php:124 +msgid "the bugtracker at github" +msgstr "de github bugtracker" + +#: src/Module/Friendica.php:125 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +msgstr "Suggesties, appreciatie, enz. - aub stuur een email naar \"info\" at \"friendi - dot - ca" + +#: src/Module/HCard.php:45 +msgid "No profile" +msgstr "Geen profiel" + +#: src/Module/HTTPException/MethodNotAllowed.php:31 +msgid "Method Not Allowed." +msgstr "Methode niet toegestaan." + +#: src/Module/Help.php:60 +msgid "Help:" +msgstr "Help:" + +#: src/Module/Home.php:63 +#, php-format +msgid "Welcome to %s" +msgstr "Welkom op %s" + +#: src/Module/Install.php:189 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica Communicatie Server - Setup" + +#: src/Module/Install.php:200 +msgid "System check" +msgstr "Systeemcontrole" + +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 +msgid "Requirement not satisfied" +msgstr "" + +#: src/Module/Install.php:203 +msgid "Optional requirement not satisfied" +msgstr "" + +#: src/Module/Install.php:204 +msgid "OK" +msgstr "" + +#: src/Module/Install.php:208 +msgid "Next" +msgstr "Volgende" + +#: src/Module/Install.php:209 +msgid "Check again" +msgstr "Controleer opnieuw" + +#: src/Module/Install.php:222 +msgid "Base settings" +msgstr "Basisinstellingen" + +#: src/Module/Install.php:224 +msgid "Base path to installation" +msgstr "Basispad voor installatie" + +#: src/Module/Install.php:226 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "Als het systeem het correcte pad naar je installatie niet kan detecteren, geef hier dan het correcte pad in. Deze instelling zou alleen geconfigureerd moeten worden als je een systeem met restricties hebt en symbolische links naar je webroot." + +#: src/Module/Install.php:229 +msgid "The Friendica system URL" +msgstr "" + +#: src/Module/Install.php:231 +msgid "" +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." +msgstr "" + +#: src/Module/Install.php:242 +msgid "Database connection" +msgstr "Verbinding met database" + +#: src/Module/Install.php:243 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken." + +#: src/Module/Install.php:244 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. " + +#: src/Module/Install.php:245 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat." + +#: src/Module/Install.php:252 +msgid "Database Server Name" +msgstr "Servernaam database" + +#: src/Module/Install.php:257 +msgid "Database Login Name" +msgstr "Gebruikersnaam database" + +#: src/Module/Install.php:263 +msgid "Database Login Password" +msgstr "Wachtwoord database" + +#: src/Module/Install.php:265 +msgid "For security reasons the password must not be empty" +msgstr "Om veiligheidsreden mag het wachtwoord niet leeg zijn" + +#: src/Module/Install.php:268 +msgid "Database Name" +msgstr "Naam database" + +#: src/Module/Install.php:272 src/Module/Install.php:300 +msgid "Please select a default timezone for your website" +msgstr "Selecteer een standaard tijdzone voor je website" + +#: src/Module/Install.php:287 +msgid "Site settings" +msgstr "Website-instellingen" + +#: src/Module/Install.php:295 +msgid "Site administrator email address" +msgstr "E-mailadres van de websitebeheerder" + +#: src/Module/Install.php:297 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken." + +#: src/Module/Install.php:304 +msgid "System Language:" +msgstr "Systeem taal:" + +#: src/Module/Install.php:306 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "Stel de standaard taal in voor je Friendica installatie interface en emails." + +#: src/Module/Install.php:318 +msgid "Your Friendica site database has been installed." +msgstr "De database van je Friendica-website is geïnstalleerd." + +#: src/Module/Install.php:328 +msgid "Installation finished" +msgstr "Installaitie beëindigd" + +#: src/Module/Install.php:348 +msgid "

    What next

    " +msgstr "

    Wat nu

    " + +#: src/Module/Install.php:349 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"worker." +msgstr "BELANGRIJK: Je zal [manueel] een geplande taak moeten opzetten voor de worker." + +#: src/Module/Install.php:352 +#, 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 "Go naar je nieuwe Friendica node registratie pagina en registeer als nieuwe gebruiker. Vergeet niet hetzelfde email adres te gebruiken als wat je opgegeven hebt als administrator email. Dit zal je toelaten om het site administratie paneel te openen." + +#: src/Module/Invite.php:57 +msgid "Total invitation limit exceeded." +msgstr "Totale uitnodigingslimiet overschreden." + +#: src/Module/Invite.php:82 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Geen geldig e-mailadres." + +#: src/Module/Invite.php:108 +msgid "Please join us on Friendica" +msgstr "Kom bij ons op Friendica" + +#: src/Module/Invite.php:117 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website." + +#: src/Module/Invite.php:121 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Aflevering van bericht mislukt." + +#: src/Module/Invite.php:125 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d bericht verzonden." +msgstr[1] "%d berichten verzonden." + +#: src/Module/Invite.php:143 +msgid "You have no more invitations available" +msgstr "Je kunt geen uitnodigingen meer sturen" + +#: src/Module/Invite.php:150 +#, 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 "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken." + +#: src/Module/Invite.php:152 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website." + +#: src/Module/Invite.php:153 +#, 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 "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten." + +#: src/Module/Invite.php:157 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen." + +#: src/Module/Invite.php:160 +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks." +msgstr "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken." + +#: src/Module/Invite.php:159 +#, php-format +msgid "To accept this invitation, please visit and register at %s." +msgstr "Om deze uitnodiging te accepteren, ga naar en registreer op %s." + +#: src/Module/Invite.php:167 +msgid "Send invitations" +msgstr "Verstuur uitnodigingen" + +#: src/Module/Invite.php:168 +msgid "Enter email addresses, one per line:" +msgstr "Vul e-mailadressen in, één per lijn:" + +#: src/Module/Invite.php:172 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen." + +#: src/Module/Invite.php:174 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Je zult deze uitnodigingscode moeten invullen: $invite_code" + +#: src/Module/Invite.php:174 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:" + +#: src/Module/Invite.php:176 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendi.ca" +msgstr "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendi.ca/ bezoeken" + +#: src/Module/Item/Compose.php:85 msgid "Please enter a post body." msgstr "Voer een berichttekst in." -#: src/Module/Item/Compose.php:59 +#: src/Module/Item/Compose.php:98 msgid "This feature is only available with the frio theme." msgstr "Deze functie is alleen beschikbaar met het frio-thema." -#: src/Module/Item/Compose.php:86 +#: src/Module/Item/Compose.php:122 msgid "Compose new personal note" msgstr "Stel een nieuwe persoonlijke notitie op" -#: src/Module/Item/Compose.php:95 +#: src/Module/Item/Compose.php:131 msgid "Compose new post" msgstr "Nieuw bericht opstellen" -#: src/Module/Item/Compose.php:135 +#: src/Module/Item/Compose.php:187 msgid "Visibility" msgstr "Zichtbaarheid" -#: src/Module/Item/Compose.php:156 +#: src/Module/Item/Compose.php:203 msgid "Clear the location" msgstr "Wis de locatie" -#: src/Module/Item/Compose.php:157 +#: src/Module/Item/Compose.php:204 msgid "Location services are unavailable on your device" msgstr "Locatiediensten zijn niet beschikbaar op uw apparaat" -#: src/Module/Item/Compose.php:158 +#: src/Module/Item/Compose.php:205 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "Locatiediensten zijn uitgeschakeld. Controleer de toestemmingen van de website op uw apparaat" -#: src/Module/Profile/Common.php:87 src/Module/Contact/Contacts.php:92 +#: src/Module/Item/Compose.php:211 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "" + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "De tijdlijn voor dit item is niet beschikbaar" + +#: src/Module/Item/Follow.php:51 +msgid "Unable to follow this item." +msgstr "" + +#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +msgid "System down for maintenance" +msgstr "Systeem onbeschikbaar wegens onderhoud" + +#: 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 "" + +#: src/Module/Manifest.php:40 +msgid "A Decentralized Social Network" +msgstr "Een gedecentraliseerd sociaal netwerk" + +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Bestanden" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload" +msgstr "Uploaden" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Sorry, je op te laden bestand is groter dan deze PHP configuratie toelaat" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "Of - probeerde je een lege file op te laden?" + +#: src/Module/Media/Attachment/Upload.php:104 #, php-format -msgid "Common contact (%s)" -msgid_plural "Common contacts (%s)" +msgid "File exceeds size limit of %s" +msgstr "Bestand is groter dan de limiet ( %s )" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "Uploaden van bestand mislukt." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:68 +msgid "Unable to process image." +msgstr "Niet in staat om de afbeelding te verwerken" + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:95 +msgid "Image upload failed." +msgstr "Uploaden van afbeelding mislukt." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "Normale accountpagina" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "Zeepkist-pagina" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "Automatisch Vriendschapspagina" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "Persoonlijke pagina" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "Organisatie Pagina" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "Nieuws pagina" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s contact is niet langer geblokkeerd" +msgstr[1] "%s contacten zijn niet langer geblokkeerd" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "Remote Contact Blokkeerlijst" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "De pagina laat je toe om te vermijden dat boodschappen van een remote contact je node bereiken." + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "Blokkeer Remote Contact" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "Alles selecteren" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "selecteer geen" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "Geen enkel remote contact is geblokkeerd van deze node." + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "Geblokkeerde Remote Contacts" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "Blokkeer Nieuwe Remote Contacten" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "Foto" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "Reden" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "%s geblokkeerde contacten in totaal" +msgstr[1] "%s geblokkeerde contacten in totaal" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "URL van de remote contact die je wil blokkeren." + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "Reden voor blokkeren" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." msgstr[0] "" msgstr[1] "" -#: src/Module/Profile/Common.php:89 src/Module/Contact/Contacts.php:94 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "Reden voor blokkering" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +msgid "Blocked server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "Vink aan om dit item van de blokkeerlijst te verwijderen" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "Sla veranderingen in de blokkeerlijst op" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "Huidige Items in de blokkeerlijst" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "Item gemarkeerd om te verwijderen." + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "Verwijder dit Item" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "Op deze pagina kan je een item van je node verwijderen. Als het item een bericht is op het eerste niveau, dan zal de hele gesprek verwijderd worden." + +#: src/Module/Moderation/Item/Delete.php:65 +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 "Je moet de GUID van het item kennen. Je kan het terugvinden bvb. door te kijken naar de getoonde URL. Het laatste deel van http://example.com/display/123456 is de GUID, hier 123456." + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "De GUID van het item dat je wil verwijderen." + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "Type" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Item niet gevonden" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "Item identificatie" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "" + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "" + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Normaal account" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "Automatische Volger Account" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Automatisch Vriendschapsaccount" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Blog Account" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Geregistreerde gebruikers" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Registraties die in de wacht staan" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "Je kan jezelf niet verwijderen" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s gebruiker verwijderd" +msgstr[1] "%s gebruikers verwijderd" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Registratiedatum" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "Laatste login" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "Gebruiker geblokeerd" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "Sitebeheerder" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "Account verlopen" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "Nieuwe gebruiker" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "Gebruiker toevoegen" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "Naam van nieuwe gebruiker" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "Bijnaam" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "Bijnaam van nieuwe gebruiker" + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "E-mailadres van nieuwe gebruiker" + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "Gebruiker wacht op permanente verwijdering" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Account goedgekeurd." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Registratiedatum" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "Geen registraties." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "Nota van de gebruiker" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Weiger" + +#: src/Module/Notifications/Introductions.php:99 +msgid "Show Ignored Requests" +msgstr "Toon genegeerde verzoeken" + +#: src/Module/Notifications/Introductions.php:99 +msgid "Hide Ignored Requests" +msgstr "Verberg genegeerde verzoeken" + +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 +msgid "Notification type:" +msgstr "Notificatiesoort:" + +#: src/Module/Notifications/Introductions.php:118 +msgid "Suggested by:" +msgstr "Voorgesteld door:" + +#: src/Module/Notifications/Introductions.php:143 +msgid "Claims to be known to you: " +msgstr "Denkt dat je hem of haar kent:" + +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "No" +msgstr "Nee" + +#: src/Module/Notifications/Introductions.php:152 +msgid "Shall your connection be bidirectional or not?" +msgstr "Zal je connectie bidirectioneel zijn of niet?" + +#: src/Module/Notifications/Introductions.php:153 #, php-format msgid "" -"Both %s and yourself have publicly interacted with these " -"contacts (follow, comment or likes on public posts)." +"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 als vriend accepteren laat %s toe om in te schrijven op je berichten, en je zal ook updates ontvangen van hen in je nieuws feed." + +#: src/Module/Notifications/Introductions.php:154 +#, 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 als volger accepteren laat hen toe om in te schrijven op je berichten, maar je zal geen updates ontvangen van hen in je nieuws feed." + +#: src/Module/Notifications/Introductions.php:156 +msgid "Friend" +msgstr "Vriend" + +#: src/Module/Notifications/Introductions.php:157 +msgid "Subscriber" +msgstr "Volger" + +#: src/Module/Notifications/Introductions.php:216 +msgid "No introductions." +msgstr "Geen vriendschaps- of connectieverzoeken." + +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 +#, php-format +msgid "No more %s notifications." +msgstr "Geen %s notificaties meer." + +#: src/Module/Notifications/Notification.php:135 +msgid "You must be logged in to show this page." +msgstr "Je moet ingelogd zijn om deze pagina te tonen." + +#: src/Module/Notifications/Notifications.php:66 +msgid "Network Notifications" +msgstr "Netwerknotificaties" + +#: src/Module/Notifications/Notifications.php:72 +msgid "System Notifications" +msgstr "Systeemnotificaties" + +#: src/Module/Notifications/Notifications.php:78 +msgid "Personal Notifications" +msgstr "Persoonlijke notificaties" + +#: src/Module/Notifications/Notifications.php:84 +msgid "Home Notifications" +msgstr "Tijdlijn-notificaties" + +#: src/Module/Notifications/Notifications.php:140 +msgid "Show unread" +msgstr "Toon ongelezen" + +#: src/Module/Notifications/Ping.php:246 +msgid "{0} requested registration" +msgstr "{0} vroeg om zich te registreren" + +#: src/Module/Notifications/Ping.php:255 +#, php-format +msgid "{0} and %d others requested registration" msgstr "" -#: src/Module/Profile/Common.php:99 src/Module/Contact/Contacts.php:64 -msgid "No common contacts." +#: src/Module/OAuth/Acknowledge.php:51 +msgid "Authorize application connection" +msgstr "Verbinding met de applicatie goedkeuren" + +#: src/Module/OAuth/Acknowledge.php:53 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?" + +#: src/Module/OAuth/Authorize.php:54 +msgid "Unsupported or missing response type" msgstr "" -#: src/Module/Profile/Contacts.php:96 src/Module/Contact/Contacts.php:76 -#, php-format -msgid "Follower (%s)" -msgid_plural "Followers (%s)" -msgstr[0] "Volger (%s)" -msgstr[1] "Volgers (%s)" - -#: src/Module/Profile/Contacts.php:99 src/Module/Contact/Contacts.php:80 -#, php-format -msgid "Following (%s)" -msgid_plural "Following (%s)" -msgstr[0] "Volgend (%s)" -msgstr[1] "Volgend (%s)" - -#: src/Module/Profile/Contacts.php:102 src/Module/Contact/Contacts.php:84 -#, php-format -msgid "Mutual friend (%s)" -msgid_plural "Mutual friends (%s)" -msgstr[0] "Gemeenschappelijke vriend (%s)" -msgstr[1] "Gemeenschappelijke vrienden (%s)" - -#: src/Module/Profile/Contacts.php:104 src/Module/Contact/Contacts.php:86 -#, php-format -msgid "These contacts both follow and are followed by %s." +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +msgid "Incomplete request data" msgstr "" -#: src/Module/Profile/Contacts.php:110 src/Module/Contact/Contacts.php:100 +#: src/Module/OAuth/Authorize.php:106 #, php-format -msgid "Contact (%s)" -msgid_plural "Contacts (%s)" -msgstr[0] "Contact (%s)" -msgstr[1] "Contacten (%s)" +msgid "" +"Please copy the following authentication code into your application and " +"close this window: %s" +msgstr "" -#: src/Module/Profile/Contacts.php:120 +#: src/Module/OAuth/Token.php:83 +msgid "Invalid data or unknown client" +msgstr "" + +#: src/Module/OAuth/Token.php:108 +msgid "Unsupported or missing grant type" +msgstr "" + +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "Opnieuw inschrijven bij OStatus contacten" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "Houd dit scherm open tot het klaar is" + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "Geen contact opgegeven." + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "Kon de informatie voor het contact niet ophalen." + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "Kon de vrienden van contact niet ophalen." + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Klaar" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "Succesvol" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "Mislukt" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "Verboden" + +#: src/Module/PermissionTooltip.php:49 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "" + +#: src/Module/PermissionTooltip.php:79 +msgid "Model not found" +msgstr "" + +#: src/Module/PermissionTooltip.php:94 +msgid "Unlisted" +msgstr "" + +#: src/Module/PermissionTooltip.php:112 +msgid "Remote privacy information not available." +msgstr "Privacyinformatie op afstand niet beschikbaar." + +#: src/Module/PermissionTooltip.php:121 +msgid "Visible to:" +msgstr "Zichtbaar voor:" + +#: src/Module/PermissionTooltip.php:204 +#, php-format +msgid "Collection (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:208 +#, php-format +msgid "Followers (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:227 +#, php-format +msgid "%d more" +msgstr "" + +#: src/Module/PermissionTooltip.php:231 +#, php-format +msgid "To: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:234 +#, php-format +msgid "CC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:237 +#, php-format +msgid "BCC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "" + +#: src/Module/Photo.php:130 +msgid "The Photo is not available." +msgstr "" + +#: src/Module/Photo.php:155 +#, php-format +msgid "The Photo with id %s is not available." +msgstr "De foto met id %s is niet beschikbaar" + +#: src/Module/Photo.php:192 +#, php-format +msgid "Invalid external resource with url %s." +msgstr "" + +#: src/Module/Photo.php:194 +#, php-format +msgid "Invalid photo with id %s." +msgstr "Ongeldige foto met ID %s" + +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "" + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Bericht bewerken" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "webadres" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Voeg video toe" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "video adres" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Voeg audio adres toe" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "audio adres" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Verwijder label van item" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Selecteer een label om te verwijderen: " + +#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Verwijderen" + +#: src/Module/Profile/Contacts.php:159 msgid "No contacts." msgstr "Geen contacten." -#: src/Module/Profile/Profile.php:135 +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "Tijdslijn van %s" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "Berichten van %s" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "reactie van %s" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:59 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Beeld is groter dan de limiet ( %s )" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "Opladen van het beeld is niet compleet, probeer het opnieuw" + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "Beeld bestand ontbreekt" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "De server kan op dit moment geen nieuw bestand opladen, contacteer alsjeblieft je beheerder" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "Album bekijken" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +msgid "Profile not found." +msgstr "Profiel niet gevonden" + +#: src/Module/Profile/Profile.php:158 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "" -#: src/Module/Profile/Profile.php:149 +#: src/Module/Profile/Profile.php:167 +msgid "Full Name:" +msgstr "Volledige Naam:" + +#: src/Module/Profile/Profile.php:172 msgid "Member since:" msgstr "Lid sinds:" -#: src/Module/Profile/Profile.php:155 +#: src/Module/Profile/Profile.php:178 msgid "j F, Y" msgstr "F j Y" -#: src/Module/Profile/Profile.php:156 +#: src/Module/Profile/Profile.php:179 msgid "j F" msgstr "F j" -#: src/Module/Profile/Profile.php:229 -msgid "Forums:" -msgstr "Fora:" +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 +msgid "Birthday:" +msgstr "Verjaardag:" -#: src/Module/Profile/Profile.php:240 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +msgid "Age: " +msgstr "Leeftijd:" + +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#, php-format +msgid "%d year old" +msgid_plural "%d years old" +msgstr[0] "%d jaar oud" +msgstr[1] "%d jaar oud" + +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "Beschrijving:" + +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "" + +#: src/Module/Profile/Profile.php:273 msgid "View profile as:" msgstr "Bekijk profiel als:" -#: src/Module/Profile/Profile.php:257 +#: src/Module/Profile/Profile.php:290 msgid "View as" msgstr "" -#: src/Module/Search/Acl.php:55 src/Module/Contact/Poke.php:127 +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "Profiel onbeschikbaar" + +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "Ongeldige plaatsbepaler" + +#: src/Module/Profile/RemoteFollow.php:95 +msgid "The provided profile link doesn't seem to be valid" +msgstr "De verstrekte profiellink lijkt niet geldig te zijn" + +#: src/Module/Profile/RemoteFollow.php:100 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "Remote inschrijving kan niet op jouw netwerk. Gelieve direct op je systeem in te schrijven." + +#: src/Module/Profile/RemoteFollow.php:128 +msgid "Friend/Connection Request" +msgstr "Vriendschaps-/connectieverzoek" + +#: src/Module/Profile/RemoteFollow.php:129 +#, 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 "Geef hier je Webfinger adres (gebruiker@domain.tld) of profiel URL. Als dit niet wordt ondersteund door je systeem, dan dien je in te schrijven op %s of %s direct op je systeem." + +#: src/Module/Profile/RemoteFollow.php:130 +#, 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 "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een publieke Friendica node te vinden en sluit je vandaag bij ons aan." + +#: src/Module/Profile/RemoteFollow.php:131 +msgid "Your Webfinger address or profile URL:" +msgstr "Uw Webfinger adres of profiel-URL:" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "" + +#: src/Module/Profile/Schedule.php:83 +msgid "Scheduled" +msgstr "" + +#: src/Module/Profile/Schedule.php:84 +msgid "Content" +msgstr "" + +#: src/Module/Profile/Schedule.php:85 +msgid "Remove post" +msgstr "" + +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "" + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Niet in staat om je tijdlijn-locatie vast te stellen" + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "" + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Maximum aantal dagelijkse tijdlijn boodschappen van %s overschreden. Kon boodschap niet plaatsen." + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat." + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "" + +#: src/Module/Register.php:84 +msgid "Only parent users can create additional accounts." +msgstr "Alleen bovenliggende gebruikers kunnen extra gebruikers maken." + +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw." + +#: src/Module/Register.php:116 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." +msgstr "U kunt (optioneel) dit formulier invullen via OpenID door uw OpenID in te vullen en op 'Registreren' te klikken." + +#: src/Module/Register.php:117 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in." + +#: src/Module/Register.php:118 +msgid "Your OpenID (optional): " +msgstr "Je OpenID (optioneel):" + +#: src/Module/Register.php:127 +msgid "Include your profile in member directory?" +msgstr "Je profiel in de ledengids opnemen?" + +#: src/Module/Register.php:148 +msgid "Note for the admin" +msgstr "Nota voor de beheerder" + +#: src/Module/Register.php:148 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Laat een boodschap na voor de beheerder, waarom je bij deze node wil komen" + +#: src/Module/Register.php:149 +msgid "Membership on this site is by invitation only." +msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging." + +#: src/Module/Register.php:150 +msgid "Your invitation code: " +msgstr "Je uitnodigingscode:" + +#: src/Module/Register.php:158 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Je volledige naam (bvb. Jan Smit, echt of echt lijkend):" + +#: src/Module/Register.php:159 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "Je Email Adres: (Initiële informatie zal hier naartoe gezonden worden, dus dit moet een bestaand adres zijn.)" + +#: src/Module/Register.php:160 +msgid "Please repeat your e-mail address:" +msgstr "Herhaal uw e-mailadres:" + +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 +msgid "New Password:" +msgstr "Nieuw Wachtwoord:" + +#: src/Module/Register.php:162 +msgid "Leave empty for an auto generated password." +msgstr "Laat leeg voor een automatisch gegenereerd wachtwoord." + +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 +msgid "Confirm:" +msgstr "Bevestig:" + +#: src/Module/Register.php:164 +#, 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 "Kies een profiel bijnaam. Deze dient te beginnen met een letter. Uw profiel adres op deze site zal dan \"bijnaam@%s\" zijn." + +#: src/Module/Register.php:165 +msgid "Choose a nickname: " +msgstr "Kies een bijnaam:" + +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Importeren" + +#: src/Module/Register.php:174 +msgid "Import your profile to this friendica instance" +msgstr "Importeer je profiel op deze friendica server" + +#: src/Module/Register.php:181 +msgid "Note: This node explicitly contains adult content" +msgstr "Waarschuwing: Deze node heeft inhoud enkel bedoeld voor volwassenen." + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "Parent Password:" +msgstr "Ouderlijk wachtwoord:" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "Geef alstublieft het wachtwoord van het ouderlijke account om je verzoek te legitimeren." + +#: src/Module/Register.php:212 +msgid "Password doesn't match." +msgstr "Wachtwoorden komen niet overeen." + +#: src/Module/Register.php:218 +msgid "Please enter your password." +msgstr "Voer uw wachtwoord in." + +#: src/Module/Register.php:260 +msgid "You have entered too much information." +msgstr "U heeft te veel informatie ingevoerd." + +#: src/Module/Register.php:283 +msgid "Please enter the identical mail address in the second field." +msgstr "Voer in het tweede veld het identieke mailadres in." + +#: src/Module/Register.php:310 +msgid "The additional account was created." +msgstr "De toegevoegde gebruiker is aangemaakt." + +#: src/Module/Register.php:335 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies." + +#: src/Module/Register.php:342 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "Kon email niet verzenden. Hier zijn je account details:
    login: %s
    wachtwoord: %s

    Je kan je wachtwoord aanpassen nadat je ingelogd bent." + +#: src/Module/Register.php:348 +msgid "Registration successful." +msgstr "Registratie succes." + +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 +msgid "Your registration can not be processed." +msgstr "Je registratie kan niet verwerkt worden." + +#: src/Module/Register.php:363 +msgid "You have to leave a request note for the admin." +msgstr "U dient een verzoekmelding achter te laten voor de beheerder." + +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "" + +#: src/Module/Register.php:395 +msgid "Your registration is pending approval by the site owner." +msgstr "Jouw registratie wacht op goedkeuring van de beheerder." + +#: src/Module/Search/Acl.php:73 msgid "You must be logged in to use this module." msgstr "Je moet ingelogd zijn om deze module te gebruiken." -#: src/Module/Search/Index.php:53 +#: src/Module/Search/Index.php:69 msgid "Only logged in users are permitted to perform a search." msgstr "Alleen ingelogde gebruikers mogen een zoekopdracht starten." -#: src/Module/Search/Index.php:75 +#: src/Module/Search/Index.php:89 msgid "Only one search per minute is permitted for not logged in users." msgstr "Niet ingelogde gebruikers mogen slechts 1 opzoeking doen per minuut" -#: src/Module/Search/Index.php:179 src/Module/Conversation/Community.php:84 -msgid "No results." -msgstr "Geen resultaten." - -#: src/Module/Search/Index.php:184 +#: src/Module/Search/Index.php:205 #, php-format msgid "Items tagged with: %s" msgstr "Items getagd met: %s" -#: src/Module/Search/Index.php:186 src/Module/Contact.php:843 -#, php-format -msgid "Results for: %s" -msgstr "Resultaten voor: %s" - -#: src/Module/Search/Saved.php:45 +#: src/Module/Search/Saved.php:59 msgid "Search term was not saved." msgstr "" -#: src/Module/Search/Saved.php:48 +#: src/Module/Search/Saved.php:62 msgid "Search term already saved." msgstr "Zoekterm is al opgeslagen." -#: src/Module/Search/Saved.php:54 +#: src/Module/Search/Saved.php:68 msgid "Search term was not removed." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:52 -#: src/Module/Settings/TwoFactor/Recovery.php:50 -#: src/Module/Settings/TwoFactor/Verify.php:56 +#: src/Module/Security/Login.php:123 +msgid "Create a New Account" +msgstr "Nieuwe account aanmaken" + +#: src/Module/Security/Login.php:142 +msgid "Your OpenID: " +msgstr "Uw OpenID" + +#: src/Module/Security/Login.php:145 +msgid "" +"Please enter your username and password to add the OpenID to your existing " +"account." +msgstr "Voer uw gebruikersnaam en wachtwoord in om de OpenID toe te voegen aan uw bestaande gebruiker." + +#: src/Module/Security/Login.php:147 +msgid "Or login using OpenID: " +msgstr "Of log in met OpenID:" + +#: src/Module/Security/Login.php:161 +msgid "Password: " +msgstr "Wachtwoord:" + +#: src/Module/Security/Login.php:162 +msgid "Remember me" +msgstr "Onthoud mij" + +#: src/Module/Security/Login.php:171 +msgid "Forgot your password?" +msgstr "Wachtwoord vergeten?" + +#: src/Module/Security/Login.php:174 +msgid "Website Terms of Service" +msgstr "Gebruikersvoorwaarden website" + +#: src/Module/Security/Login.php:175 +msgid "terms of service" +msgstr "servicevoorwaarden" + +#: src/Module/Security/Login.php:177 +msgid "Website Privacy Policy" +msgstr "Privacybeleid website" + +#: src/Module/Security/Login.php:178 +msgid "privacy policy" +msgstr "privacybeleid" + +#: src/Module/Security/Logout.php:84 +#: src/Module/Security/TwoFactor/SignOut.php:78 +#: src/Module/Security/TwoFactor/SignOut.php:86 +#: src/Module/Security/TwoFactor/SignOut.php:108 +#: src/Module/Security/TwoFactor/SignOut.php:115 +msgid "Logged out." +msgstr "Uitgelogd." + +#: src/Module/Security/OpenID.php:54 +msgid "OpenID protocol error. No ID returned" +msgstr "OpenID-protocolfout. Geen ID terug ontvangen" + +#: src/Module/Security/OpenID.php:90 +msgid "" +"Account not found. Please login to your existing account to add the OpenID " +"to it." +msgstr "Account niet gevonden. Meld je aan met je bestaande account om de OpenID toe te voegen." + +#: src/Module/Security/OpenID.php:92 +msgid "" +"Account not found. Please register a new account or login to your existing " +"account to add the OpenID to it." +msgstr "Account niet gevonden. Maak een nieuwe account aan of meld je aan met je bestaande account om de OpenID toe te voegen." + +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 +msgid "Passwords do not match." +msgstr "Wachtwoorden zijn niet gelijk" + +#: src/Module/Security/PasswordTooLong.php:64 +msgid "Password does not need changing." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 +msgid "Password unchanged." +msgstr "Wachtwoord ongewijzigd" + +#: src/Module/Security/PasswordTooLong.php:91 +msgid "Password Too Long" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:92 +msgid "" +"Since version 2022.09, we've realized that any password longer than 72 " +"characters is truncated during hashing. To prevent any confusion about this " +"behavior, please update your password to be fewer or equal to 72 characters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:93 +msgid "Update Password" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Current Password:" +msgstr "Huidig wachtwoord:" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Your current password to confirm the changes" +msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces and accentuated letters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 +msgid "Password length is limited to 72 characters." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:74 +#, php-format +msgid "Remaining recovery codes: %d" +msgstr "Resterende herstelcodes: %d" + +#: src/Module/Security/TwoFactor/Recovery.php:80 +#: src/Module/Security/TwoFactor/Verify.php:77 +#: src/Module/Settings/TwoFactor/Verify.php:95 +msgid "Invalid code, please retry." +msgstr "Ongeldige code, probeer het opnieuw." + +#: src/Module/Security/TwoFactor/Recovery.php:99 +msgid "Two-factor recovery" +msgstr "Twee-factorenherstel" + +#: src/Module/Security/TwoFactor/Recovery.php:100 +msgid "" +"

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

    " +msgstr "

    U kunt een van uw eenmalige herstelcodes invoeren als u de toegang tot uw mobiele apparaat bent kwijtgeraakt.

    " + +#: src/Module/Security/TwoFactor/Recovery.php:101 +#, php-format +msgid "Don’t have your phone? Enter a two-factor recovery code" +msgstr "Heb je je telefoon niet? Geef een twee-factor herstelcodecode in" + +#: src/Module/Security/TwoFactor/Recovery.php:102 +msgid "Please enter a recovery code" +msgstr "Voer een herstelcode in" + +#: src/Module/Security/TwoFactor/Recovery.php:103 +msgid "Submit recovery code and complete login" +msgstr "Voer de herstelcode in en voltooi de login" + +#: src/Module/Security/TwoFactor/SignOut.php:122 +msgid "Sign out of this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:123 +msgid "" +"

    If you trust this browser, you will not be asked for verification code " +"the next time you sign in.

    " +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:124 +msgid "Sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:126 +msgid "Trust and sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:96 +msgid "Couldn't save browser to Cookie." +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:141 +msgid "Trust this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:142 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:143 +msgid "Not now" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:144 +msgid "Don't trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:145 +msgid "Trust" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:97 +msgid "" +"

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

    " +msgstr "

    Open de tweefactorauthenticatie-app op uw apparaat om een ​​authenticatiecode te krijgen en uw identiteit te verifiëren.

    " + +#: src/Module/Security/TwoFactor/Verify.php:100 +#, php-format +msgid "" +"If you do not have access to your authentication code you can use a two-factor recovery code." +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Please enter a code from your authentication app" +msgstr "Voer een code in van uw authenticatie-app" + +#: src/Module/Security/TwoFactor/Verify.php:102 +msgid "Verify code and complete login" +msgstr "Controleer de code en voltooi de login" + +#: src/Module/Settings/Account.php:96 +msgid "Please use a shorter name." +msgstr "Gebruik een kortere naam." + +#: src/Module/Settings/Account.php:99 +msgid "Name too short." +msgstr "Naam is te kort." + +#: src/Module/Settings/Account.php:108 +msgid "Wrong Password." +msgstr "Verkeerd wachtwoord." + +#: src/Module/Settings/Account.php:113 +msgid "Invalid email." +msgstr "Ongeldig email adres." + +#: src/Module/Settings/Account.php:117 +msgid "Cannot change to that email." +msgstr "Kan niet naar dat email adres veranderen." + +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 +msgid "Settings were not updated." +msgstr "Wijziging instellingen is niet opgeslagen." + +#: src/Module/Settings/Account.php:364 +msgid "Contact CSV file upload error" +msgstr "" + +#: src/Module/Settings/Account.php:383 +msgid "Importing Contacts done" +msgstr "Importeren Contacten voltooid" + +#: src/Module/Settings/Account.php:396 +msgid "Relocate message has been send to your contacts" +msgstr "Verhuis boodschap is verzonden naar je contacten" + +#: src/Module/Settings/Account.php:413 +msgid "Unable to find your profile. Please contact your admin." +msgstr "Kan je profiel niet vinden. Contacteer alsjeblieft je beheerder." + +#: src/Module/Settings/Account.php:455 +msgid "Personal Page Subtypes" +msgstr "Persoonlijke Pagina Subtypes" + +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" +msgstr "" + +#: src/Module/Settings/Account.php:466 +msgid "Account for a personal profile." +msgstr "Account voor een persoonlijk profiel" + +#: src/Module/Settings/Account.php:473 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "Account voor een organisatie die automatisch contact aanvragen goedkeurt als \"Volgers\"." + +#: src/Module/Settings/Account.php:480 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "Account voor een nieuws reflector die automatisch contact aanvragen goedkeurt als \"Volgers\"." + +#: src/Module/Settings/Account.php:487 +msgid "Account for community discussions." +msgstr "Account voor groepsdiscussies." + +#: src/Module/Settings/Account.php:494 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "Account voor een normaal persoonlijk profiel dat manuele goedkeuring vereist van \"Vrienden\" en \"Volgers\"." + +#: src/Module/Settings/Account.php:501 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "Account voor een publiek profiel dat automatisch contact aanvragen goedkeurt als \"Volgers\"." + +#: src/Module/Settings/Account.php:508 +msgid "Automatically approves all contact requests." +msgstr "Aanvaardt automatisch all contact aanvragen." + +#: src/Module/Settings/Account.php:515 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "Account voor een populair profiel dat automatisch contact aanvragen goedkeurt als \"Vrienden\"." + +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "" + +#: src/Module/Settings/Account.php:522 +msgid "Requires manual approval of contact requests." +msgstr "Vereist manuele goedkeuring van contact aanvragen." + +#: src/Module/Settings/Account.php:531 +msgid "OpenID:" +msgstr "OpenID:" + +#: src/Module/Settings/Account.php:531 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account." + +#: src/Module/Settings/Account.php:539 +msgid "Publish your profile in your local site directory?" +msgstr "Uw profiel publiceren in uw lokale sitemap?" + +#: src/Module/Settings/Account.php:539 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "Je profiel zal gepubliceerd worden de lokale gids van deze node. Je profiel details kunnen publiek zichtbaar zijn afhankelijk van de systeem instellingen." + +#: src/Module/Settings/Account.php:545 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "Je profiel zal ook worden gepubliceerd in de globale Friendica directories (e.g. %s)." + +#: src/Module/Settings/Account.php:558 +msgid "Account Settings" +msgstr "Account Instellingen" + +#: src/Module/Settings/Account.php:559 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "Je Identiteit adres is '%s' of '%s'." + +#: src/Module/Settings/Account.php:566 +msgid "Password Settings" +msgstr "Wachtwoord Instellingen" + +#: src/Module/Settings/Account.php:568 +msgid "Leave password fields blank unless changing" +msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen" + +#: src/Module/Settings/Account.php:570 +msgid "Password:" +msgstr "Wachtwoord:" + +#: src/Module/Settings/Account.php:570 +msgid "Your current password to confirm the changes of the email address" +msgstr "Je huidige wachtwoord om de verandering in het email adres te bevestigen" + +#: src/Module/Settings/Account.php:573 +msgid "Delete OpenID URL" +msgstr "Verwijder OpenID URL" + +#: src/Module/Settings/Account.php:575 +msgid "Basic Settings" +msgstr "Basis Instellingen" + +#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "Weergave naam:" + +#: src/Module/Settings/Account.php:577 +msgid "Email Address:" +msgstr "E-mailadres:" + +#: src/Module/Settings/Account.php:578 +msgid "Your Timezone:" +msgstr "Je Tijdzone:" + +#: src/Module/Settings/Account.php:579 +msgid "Your Language:" +msgstr "Je taal:" + +#: src/Module/Settings/Account.php:579 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Configureer de taal van die we gebruiken als friendica interface en om je emails te sturen" + +#: src/Module/Settings/Account.php:580 +msgid "Default Post Location:" +msgstr "Standaard locatie:" + +#: src/Module/Settings/Account.php:581 +msgid "Use Browser Location:" +msgstr "Gebruik Webbrowser Locatie:" + +#: src/Module/Settings/Account.php:583 +msgid "Security and Privacy Settings" +msgstr "Instellingen voor Beveiliging en Privacy" + +#: src/Module/Settings/Account.php:585 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum aantal vriendschapsverzoeken per dag:" + +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 +msgid "(to prevent spam abuse)" +msgstr "(om spam misbruik te voorkomen)" + +#: src/Module/Settings/Account.php:587 +msgid "Allow your profile to be searchable globally?" +msgstr "Wilt u dat uw profiel globaal doorzoekbaar is?" + +#: src/Module/Settings/Account.php:587 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "Activeer deze instelling als u wilt dat anderen u gemakkelijk kunnen vinden en volgen. Uw profiel is doorzoekbaar op externe systemen. Deze instelling bepaalt ook of Friendica zoekmachines zal informeren dat uw profiel moet worden geïndexeerd of niet." + +#: src/Module/Settings/Account.php:588 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "Uw contact- / vriendenlijst verbergen voor hen die uw profiel bekijken?" + +#: src/Module/Settings/Account.php:588 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "Een lijst met uw contacten wordt weergegeven op uw profielpagina. Activeer deze optie om de weergave van uw contactenlijst uit te schakelen." + +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "" +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "" + +#: src/Module/Settings/Account.php:590 +msgid "Make public posts unlisted" +msgstr "Maak openbare berichten verborgen" + +#: src/Module/Settings/Account.php:590 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "Je openbare berichten verschijnen niet op de communitypagina's of in de zoekresultaten en worden ook niet naar relayservers gestuurd. Ze kunnen echter nog steeds verschijnen op openbare feeds op externe servers." + +#: src/Module/Settings/Account.php:591 +msgid "Make all posted pictures accessible" +msgstr "Maak alle geplaatste foto's toegankelijk" + +#: src/Module/Settings/Account.php:591 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "Deze optie maakt elke geplaatste foto toegankelijk via de directe link. Dit is een tijdelijke oplossing voor het probleem dat de meeste andere netwerken de rechten op afbeeldingen niet kunnen verwerken. Niet-openbare afbeeldingen zijn echter nog steeds niet zichtbaar voor het publiek in uw fotoalbums." + +#: src/Module/Settings/Account.php:592 +msgid "Allow friends to post to your profile page?" +msgstr "Vrienden toestaan om op jouw profielpagina te posten?" + +#: src/Module/Settings/Account.php:592 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "Je contacten kunnen berichten schrijven op je tijdslijn. Deze berichten zullen verspreid worden naar je contacten" + +#: src/Module/Settings/Account.php:593 +msgid "Allow friends to tag your posts?" +msgstr "Sta vrienden toe om jouw berichten te labelen?" + +#: src/Module/Settings/Account.php:593 +msgid "Your contacts can add additional tags to your posts." +msgstr "Je contacten kunnen tags toevoegen aan je berichten." + +#: src/Module/Settings/Account.php:594 +msgid "Permit unknown people to send you private mail?" +msgstr "Mogen onbekende personen jou privé berichten sturen?" + +#: src/Module/Settings/Account.php:594 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "Friendica netwerk gebruikers kunnen je privé boodschappen sturen zelfs als ze niet in je contact lijst staan." + +#: src/Module/Settings/Account.php:595 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" + +#: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "" + +#: src/Module/Settings/Account.php:598 +msgid "Default Post Permissions" +msgstr "Standaard rechten voor nieuwe berichten" + +#: src/Module/Settings/Account.php:602 +msgid "Expiration settings" +msgstr "Vervalinstellingen" + +#: src/Module/Settings/Account.php:603 +msgid "Automatically expire posts after this many days:" +msgstr "Laat berichten automatisch vervallen na zo veel dagen:" + +#: src/Module/Settings/Account.php:603 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd." + +#: src/Module/Settings/Account.php:604 +msgid "Expire posts" +msgstr "Verlopen berichten" + +#: src/Module/Settings/Account.php:604 +msgid "When activated, posts and comments will be expired." +msgstr "Indien geactiveerd, zullen berichten en opmerkingen verlopen." + +#: src/Module/Settings/Account.php:605 +msgid "Expire personal notes" +msgstr "Verloop persoonlijke notities" + +#: src/Module/Settings/Account.php:605 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "Indien geactiveerd, verlopen de persoonlijke notities op uw profielpagina." + +#: src/Module/Settings/Account.php:606 +msgid "Expire starred posts" +msgstr "Berichten met ster laten vervallen" + +#: src/Module/Settings/Account.php:606 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "Berichten met een ster verhinderen dat ze verlopen. Dat gedrag wordt door deze instelling overschreven." + +#: src/Module/Settings/Account.php:607 +msgid "Only expire posts by others" +msgstr "Laat alleen berichten van anderen verlopen" + +#: src/Module/Settings/Account.php:607 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "Indien geactiveerd, vervallen je eigen berichten nooit. Dan zijn bovenstaande instellingen alleen geldig voor berichten die je hebt ontvangen." + +#: src/Module/Settings/Account.php:610 +msgid "Notification Settings" +msgstr "Notificatie Instellingen" + +#: src/Module/Settings/Account.php:611 +msgid "Send a notification email when:" +msgstr "Stuur een notificatie e-mail wanneer:" + +#: src/Module/Settings/Account.php:612 +msgid "You receive an introduction" +msgstr "Je ontvangt een vriendschaps- of connectieverzoek" + +#: src/Module/Settings/Account.php:613 +msgid "Your introductions are confirmed" +msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd" + +#: src/Module/Settings/Account.php:614 +msgid "Someone writes on your profile wall" +msgstr "Iemand iets op je tijdlijn schrijft" + +#: src/Module/Settings/Account.php:615 +msgid "Someone writes a followup comment" +msgstr "Iemand een reactie schrijft" + +#: src/Module/Settings/Account.php:616 +msgid "You receive a private message" +msgstr "Je een privé-bericht ontvangt" + +#: src/Module/Settings/Account.php:617 +msgid "You receive a friend suggestion" +msgstr "Je een suggestie voor een vriendschap ontvangt" + +#: src/Module/Settings/Account.php:618 +msgid "You are tagged in a post" +msgstr "Je expliciet in een bericht bent genoemd" + +#: src/Module/Settings/Account.php:620 +msgid "Create a desktop notification when:" +msgstr "" + +#: src/Module/Settings/Account.php:621 +msgid "Someone tagged you" +msgstr "" + +#: src/Module/Settings/Account.php:622 +msgid "Someone directly commented on your post" +msgstr "" + +#: src/Module/Settings/Account.php:623 +msgid "Someone liked your content" +msgstr "" + +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +msgid "Can only be enabled, when the direct comment notification is enabled." +msgstr "" + +#: src/Module/Settings/Account.php:624 +msgid "Someone shared your content" +msgstr "" + +#: src/Module/Settings/Account.php:625 +msgid "Someone commented in your thread" +msgstr "" + +#: src/Module/Settings/Account.php:626 +msgid "Someone commented in a thread where you commented" +msgstr "" + +#: src/Module/Settings/Account.php:627 +msgid "Someone commented in a thread where you interacted" +msgstr "" + +#: src/Module/Settings/Account.php:629 +msgid "Activate desktop notifications" +msgstr "Activeer desktop notificaties" + +#: src/Module/Settings/Account.php:629 +msgid "Show desktop popup on new notifications" +msgstr "Toon desktop pop-up bij nieuwe notificaties" + +#: src/Module/Settings/Account.php:633 +msgid "Text-only notification emails" +msgstr "Alleen-tekst notificatie emails" + +#: src/Module/Settings/Account.php:635 +msgid "Send text only notification emails, without the html part" +msgstr "Stuur alleen-tekst notificatie emails, zonder het html gedeelte" + +#: src/Module/Settings/Account.php:639 +msgid "Show detailled notifications" +msgstr "Toon gedetailleerde notificaties" + +#: src/Module/Settings/Account.php:641 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "Standaard worden notificaties samengevoegd in een enkele notificatie per item. Als je deze parameter activeert wordt elke notificatie getoond." + +#: src/Module/Settings/Account.php:645 +msgid "Show notifications of ignored contacts" +msgstr "" + +#: src/Module/Settings/Account.php:647 +msgid "" +"You don't see posts from ignored contacts. But you still see their comments." +" This setting controls if you want to still receive regular notifications " +"that are caused by ignored contacts or not." +msgstr "" + +#: src/Module/Settings/Account.php:650 +msgid "Advanced Account/Page Type Settings" +msgstr "Geavanceerde Account/Pagina Type Instellingen" + +#: src/Module/Settings/Account.php:651 +msgid "Change the behaviour of this account for special situations" +msgstr "Pas het gedrag van dit account aan voor speciale situaties" + +#: src/Module/Settings/Account.php:654 +msgid "Import Contacts" +msgstr "Importeer contacten" + +#: src/Module/Settings/Account.php:655 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "Upload een CSV-bestand met de handle van uw gevolgde gebruikers in de eerste kolom die u uit de oude gebruiker hebt geëxporteerd." + +#: src/Module/Settings/Account.php:656 +msgid "Upload File" +msgstr "Upload bestand" + +#: src/Module/Settings/Account.php:659 +msgid "Relocate" +msgstr "Verhuis" + +#: src/Module/Settings/Account.php:660 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "Als je je profiel van een andere server hebt verhuisd, en er zijn contacten die geen updates van je ontvangen, probeer dan eens deze knop." + +#: src/Module/Settings/Account.php:661 +msgid "Resend relocate message to contacts" +msgstr "Stuur verhuis boodschap naar contacten" + +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "Addon instellingen" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "Geen Addon instellingen geconfigureerd" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen." + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "E-mailtoegang is op deze website uitgeschakeld." + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "Geen" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "Algemene Sociale Media Instellingen" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "" + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "Voeg de linktitel toe" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "Indien geactiveerd, wordt de titel van de bijgevoegde link toegevoegd als titel op berichten op Diaspora. Dit is vooral handig bij contacten op afstand die zelf feed-inhoud delen." + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "Herstel OStatus inschrijvingen" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "E-mail Instellen" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken." + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "Laatste succesvolle e-mail controle:" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "IMAP server naam:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "IMAP poort:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "Beveiliging:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "E-mail login naam:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "E-mail wachtwoord:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "Antwoord adres:" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "Openbare posts naar alle e-mail contacten versturen:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "Actie na importeren:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "Naar map verplaatsen" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "Verplaatsen naar map:" + +#: src/Module/Settings/Delegation.php:54 +msgid "Delegation successfully granted." +msgstr "Delegatie met succes verleend." + +#: src/Module/Settings/Delegation.php:56 +msgid "Parent user not found, unavailable or password doesn't match." +msgstr "Brongebruiker niet gevonden, niet beschikbaar of wachtwoord komt niet overeen." + +#: src/Module/Settings/Delegation.php:60 +msgid "Delegation successfully revoked." +msgstr "Delegatie is ingetrokken." + +#: src/Module/Settings/Delegation.php:82 +#: src/Module/Settings/Delegation.php:104 +msgid "" +"Delegated administrators can view but not change delegation permissions." +msgstr "Gedelegeerde beheerders kunnen delegatierechten bekijken, maar niet wijzigen." + +#: src/Module/Settings/Delegation.php:96 +msgid "Delegate user not found." +msgstr "Gemachtigde gebruiker niet gevonden." + +#: src/Module/Settings/Delegation.php:144 +msgid "No parent user" +msgstr "Ouderlijke gebruiker ontbreekt" + +#: src/Module/Settings/Delegation.php:155 +#: src/Module/Settings/Delegation.php:166 +msgid "Parent User" +msgstr "Ouderlijke gebruiker" + +#: src/Module/Settings/Delegation.php:163 +msgid "Additional Accounts" +msgstr "Toegevoegde gebruikers" + +#: src/Module/Settings/Delegation.php:164 +msgid "" +"Register additional accounts that are automatically connected to your " +"existing account so you can manage them from this account." +msgstr "Registreer extra gebruikers die automatisch zijn verbonden met uw bestaande gebruiker, zodat u ze vanuit deze gebruiker kunt beheren." + +#: src/Module/Settings/Delegation.php:165 +msgid "Register an additional account" +msgstr "Registreer een toegevoegde gebruiker" + +#: src/Module/Settings/Delegation.php:169 +msgid "" +"Parent users have total control about this account, including the account " +"settings. Please double check whom you give this access." +msgstr "Ouderlijke gebruikers hebben totale controle over dit account, de account instellingen inbegrepen. Dubbel check dus alstublieft aan wie je deze toegang geeft." + +#: src/Module/Settings/Delegation.php:173 +msgid "Delegates" +msgstr "Gemachtigden" + +#: src/Module/Settings/Delegation.php:175 +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 "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwt." + +#: src/Module/Settings/Delegation.php:176 +msgid "Existing Page Delegates" +msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed" + +#: src/Module/Settings/Delegation.php:178 +msgid "Potential Delegates" +msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed " + +#: src/Module/Settings/Delegation.php:181 +msgid "Add" +msgstr "Toevoegen" + +#: src/Module/Settings/Delegation.php:182 +msgid "No entries." +msgstr "Geen gegevens." + +#: src/Module/Settings/Display.php:146 +msgid "The theme you chose isn't available." +msgstr "Het thema dat je koos is niet beschikbaar" + +#: src/Module/Settings/Display.php:186 +#, php-format +msgid "%s - (Unsupported)" +msgstr "%s - (Niet ondersteund)" + +#: src/Module/Settings/Display.php:221 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:222 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:223 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:224 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:259 +msgid "Display Settings" +msgstr "Scherminstellingen" + +#: src/Module/Settings/Display.php:261 +msgid "General Theme Settings" +msgstr "Algemene Thema Instellingen" + +#: src/Module/Settings/Display.php:262 +msgid "Custom Theme Settings" +msgstr "Speciale Thema Instellingen" + +#: src/Module/Settings/Display.php:263 +msgid "Content Settings" +msgstr "Content Instellingen" + +#: src/Module/Settings/Display.php:264 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 +msgid "Theme settings" +msgstr "Thema-instellingen" + +#: src/Module/Settings/Display.php:265 +msgid "Timelines" +msgstr "" + +#: src/Module/Settings/Display.php:272 +msgid "Display Theme:" +msgstr "Schermthema:" + +#: src/Module/Settings/Display.php:273 +msgid "Mobile Theme:" +msgstr "Mobiel thema:" + +#: src/Module/Settings/Display.php:276 +msgid "Number of items to display per page:" +msgstr "Aantal items te tonen per pagina:" + +#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277 +msgid "Maximum of 100 items" +msgstr "Maximum 100 items" + +#: src/Module/Settings/Display.php:277 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:" + +#: src/Module/Settings/Display.php:278 +msgid "Update browser every xx seconds" +msgstr "Browser elke xx seconden verversen" + +#: src/Module/Settings/Display.php:278 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Minimum 10 seconden. Geef -1 op om te deactiveren." + +#: src/Module/Settings/Display.php:279 +msgid "Display emoticons" +msgstr "" + +#: src/Module/Settings/Display.php:279 +msgid "When enabled, emoticons are replaced with matching symbols." +msgstr "" + +#: src/Module/Settings/Display.php:280 +msgid "Infinite scroll" +msgstr "Oneindig scrollen" + +#: src/Module/Settings/Display.php:280 +msgid "Automatic fetch new items when reaching the page end." +msgstr "" + +#: src/Module/Settings/Display.php:281 +msgid "Enable Smart Threading" +msgstr "" + +#: src/Module/Settings/Display.php:281 +msgid "Enable the automatic suppression of extraneous thread indentation." +msgstr "" + +#: src/Module/Settings/Display.php:282 +msgid "Display the Dislike feature" +msgstr "" + +#: src/Module/Settings/Display.php:282 +msgid "" +"Display the Dislike button and dislike reactions on posts and comments." +msgstr "" + +#: src/Module/Settings/Display.php:283 +msgid "Display the resharer" +msgstr "" + +#: src/Module/Settings/Display.php:283 +msgid "Display the first resharer as icon and text on a reshared item." +msgstr "" + +#: src/Module/Settings/Display.php:284 +msgid "Stay local" +msgstr "" + +#: src/Module/Settings/Display.php:284 +msgid "Don't go to a remote system when following a contact link." +msgstr "" + +#: src/Module/Settings/Display.php:285 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:285 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Timelines for the network page:" +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Select all the timelines that you want to see on your network page." +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Channel languages:" +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Select all languages that you want to see in your channels." +msgstr "" + +#: src/Module/Settings/Display.php:290 +msgid "Beginning of week:" +msgstr "Begin van de week:" + +#: src/Module/Settings/Display.php:291 +msgid "Default calendar view:" +msgstr "" + +#: src/Module/Settings/Display.php:300 src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:312 +#, php-format +msgid "%s: %s" +msgstr "" + +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "Extra functies" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Verbonden applicaties" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "Verwijder authorisatie" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:167 +msgid "Profile couldn't be updated." +msgstr "Profiel kan niet worden bijgewerkt." + +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 +msgid "Label:" +msgstr "Label:" + +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 +msgid "Value:" +msgstr "Waarde:" + +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 +msgid "Field Permissions" +msgstr "Veldrechten" + +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" + +#: src/Module/Settings/Profile/Index.php:224 +msgid "Add a new profile field" +msgstr "Voeg nieuw profielveld toe" + +#: src/Module/Settings/Profile/Index.php:247 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:249 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:255 +msgid "Profile Actions" +msgstr "Profiel Acties" + +#: src/Module/Settings/Profile/Index.php:256 +msgid "Edit Profile Details" +msgstr "Profieldetails bewerken" + +#: src/Module/Settings/Profile/Index.php:258 +msgid "Change Profile Photo" +msgstr "Profielfoto wijzigen" + +#: src/Module/Settings/Profile/Index.php:261 +msgid "Profile picture" +msgstr "Profiel foto" + +#: src/Module/Settings/Profile/Index.php:262 +msgid "Location" +msgstr "Plaats" + +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 +msgid "Miscellaneous" +msgstr "Diversen" + +#: src/Module/Settings/Profile/Index.php:264 +msgid "Custom Profile Fields" +msgstr "Aangepaste profielvelden" + +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +msgid "Upload Profile Photo" +msgstr "Profielfoto uploaden" + +#: src/Module/Settings/Profile/Index.php:266 +#, 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 circles.

    " +msgstr "" + +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "Postadres:" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "Gemeente/Stad:" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "Regio/Staat:" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "Postcode:" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "Land:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "XMPP (Jabber) adres:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "Adres tijdlijn:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "Publieke Sleutelwoorden:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "Privé Sleutelwoorden:" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)" + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 +#: src/Module/Settings/Profile/Photo/Index.php:101 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Verkleining van de afbeelding [%s] mislukt." + +#: src/Module/Settings/Profile/Photo/Crop.php:150 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen." + +#: src/Module/Settings/Profile/Photo/Crop.php:155 +msgid "Unable to process image" +msgstr "Ik kan de afbeelding niet verwerken" + +#: src/Module/Settings/Profile/Photo/Crop.php:174 +msgid "Photo not found." +msgstr "Foto niet gevonden." + +#: src/Module/Settings/Profile/Photo/Crop.php:196 +msgid "Profile picture successfully updated." +msgstr "Profielfoto geüpdatet." + +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 +msgid "Crop Image" +msgstr "Afbeelding bijsnijden" + +#: src/Module/Settings/Profile/Photo/Crop.php:223 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat." + +#: src/Module/Settings/Profile/Photo/Crop.php:225 +msgid "Use Image As Is" +msgstr "Gebruik afbeelding zoals deze is" + +#: src/Module/Settings/Profile/Photo/Index.php:45 +msgid "Missing uploaded image." +msgstr "Ontbrekende geüploade afbeelding." + +#: src/Module/Settings/Profile/Photo/Index.php:124 +msgid "Profile Picture Settings" +msgstr "Profiel afbeelding instellingen" + +#: src/Module/Settings/Profile/Photo/Index.php:125 +msgid "Current Profile Picture" +msgstr "Huidige profielafbeelding" + +#: src/Module/Settings/Profile/Photo/Index.php:126 +msgid "Upload Profile Picture" +msgstr "Upload profiel afbeelding" + +#: src/Module/Settings/Profile/Photo/Index.php:127 +msgid "Upload Picture:" +msgstr "Upload afbeelding" + +#: src/Module/Settings/Profile/Photo/Index.php:132 +msgid "or" +msgstr "of" + +#: src/Module/Settings/Profile/Photo/Index.php:134 +msgid "skip this step" +msgstr "Deze stap overslaan" + +#: src/Module/Settings/Profile/Photo/Index.php:136 +msgid "select a photo from your photo albums" +msgstr "Kies een foto uit je fotoalbums" + +#: src/Module/Settings/RemoveMe.php:94 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[Friendica systeem notificatie]" + +#: src/Module/Settings/RemoveMe.php:94 +msgid "User deleted their account" +msgstr "Gebruiker verwijderde zijn of haar account" + +#: src/Module/Settings/RemoveMe.php:95 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "Een gebruiker heeft zijn of haar account verwijderd op je Friendica node. Zorg er zeker voor dat zijn of haar data verwijderd is uit de backups." + +#: src/Module/Settings/RemoveMe.php:96 +#, php-format +msgid "The user id is %d" +msgstr "De gebruikers id is %d" + +#: src/Module/Settings/RemoveMe.php:108 +msgid "Your user account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:128 +msgid "Remove My Account" +msgstr "Verwijder mijn account" + +#: src/Module/Settings/RemoveMe.php:129 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is." + +#: src/Module/Settings/RemoveMe.php:131 +msgid "Please enter your password for verification:" +msgstr "Voer je wachtwoord in voor verificatie:" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "" + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 msgid "Please enter your password to access this page." msgstr "Voer uw wachtwoord in om deze pagina te openen." -#: src/Module/Settings/TwoFactor/AppSpecific.php:70 +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 msgid "App-specific password generation failed: The description is empty." msgstr "App-specifiek wachtwoord genereren mislukt: de beschrijving is leeg." -#: src/Module/Settings/TwoFactor/AppSpecific.php:73 +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 msgid "" "App-specific password generation failed: This description already exists." msgstr "App-specifieke wachtwoordgeneratie mislukt: deze beschrijving bestaat al." -#: src/Module/Settings/TwoFactor/AppSpecific.php:77 +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 msgid "New app-specific password generated." msgstr "Nieuw app-specifiek wachtwoord gegenereerd." -#: src/Module/Settings/TwoFactor/AppSpecific.php:83 +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 msgid "App-specific passwords successfully revoked." msgstr "App-specifieke wachtwoorden succesvol ingetrokken." -#: src/Module/Settings/TwoFactor/AppSpecific.php:93 +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 msgid "App-specific password successfully revoked." msgstr "App-specifiek wachtwoord succesvol ingetrokken." -#: src/Module/Settings/TwoFactor/AppSpecific.php:114 +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 msgid "Two-factor app-specific passwords" msgstr "Twee-factor app-specifieke wachtwoorden" -#: src/Module/Settings/TwoFactor/AppSpecific.php:116 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 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 "

    App-specifieke wachtwoorden zijn willekeurig gegenereerde wachtwoorden die in plaats daarvan uw normale wachtwoord worden gebruikt om uw account te verifiëren bij applicaties van derden die geen tweefactorauthenticatie ondersteunen.

    " -#: src/Module/Settings/TwoFactor/AppSpecific.php:117 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Zorg ervoor dat u nu uw nieuwe app-specifieke wachtwoord kopieert. U zult het niet meer kunnen zien!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:120 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 msgid "Description" msgstr "Omschrijving" -#: src/Module/Settings/TwoFactor/AppSpecific.php:121 +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 msgid "Last Used" msgstr "Laatst gebruikt" -#: src/Module/Settings/TwoFactor/AppSpecific.php:122 +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 msgid "Revoke" msgstr "Intrekken" -#: src/Module/Settings/TwoFactor/AppSpecific.php:123 +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Revoke All" msgstr "Alles intrekken" -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "Wanneer u een nieuw app-specifiek wachtwoord genereert, moet u dit meteen gebruiken, het wordt u een keer getoond nadat u het hebt gegenereerd." -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 msgid "Generate new app-specific password" msgstr "Genereer een nieuw app-specifiek wachtwoord" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 msgid "Generate" msgstr "Genereer" -#: src/Module/Settings/TwoFactor/Index.php:67 +#: src/Module/Settings/TwoFactor/Index.php:68 msgid "Two-factor authentication successfully disabled." msgstr "Twee-factor-authenticatie succesvol uitgeschakeld." -#: src/Module/Settings/TwoFactor/Index.php:88 -msgid "Wrong Password" -msgstr "Verkeerd wachtwoord" - -#: src/Module/Settings/TwoFactor/Index.php:105 -#: src/Module/Security/TwoFactor/Verify.php:80 src/Module/BaseSettings.php:50 -msgid "Two-factor authentication" -msgstr "2-factor authenticatie" - -#: src/Module/Settings/TwoFactor/Index.php:108 +#: src/Module/Settings/TwoFactor/Index.php:120 msgid "" "

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

    " msgstr "

    Gebruik een applicatie op een mobiel apparaat om tweefactorauthenticatiecodes te krijgen wanneer daarom wordt gevraagd bij het inloggen.

    " -#: src/Module/Settings/TwoFactor/Index.php:112 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Authenticator app" msgstr "Authenticatie-app" -#: src/Module/Settings/TwoFactor/Index.php:113 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Configured" msgstr "Geconfigureerd" -#: src/Module/Settings/TwoFactor/Index.php:113 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Not Configured" msgstr "Niet geconfigureerd" -#: src/Module/Settings/TwoFactor/Index.php:114 +#: src/Module/Settings/TwoFactor/Index.php:126 msgid "

    You haven't finished configuring your authenticator app.

    " msgstr "

    U bent nog niet klaar met het configureren van uw authenticator-app.

    " -#: src/Module/Settings/TwoFactor/Index.php:115 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "

    Your authenticator app is correctly configured.

    " msgstr "

    Uw authenticator-app is correct geconfigureerd.

    " -#: src/Module/Settings/TwoFactor/Index.php:117 +#: src/Module/Settings/TwoFactor/Index.php:129 msgid "Recovery codes" msgstr "Herstelcodes" -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Index.php:130 msgid "Remaining valid codes" msgstr "Resterende geldige codes" -#: src/Module/Settings/TwoFactor/Index.php:120 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "" "

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

    " msgstr "

    Deze codes voor eenmalig gebruik kunnen een authenticator-app-code vervangen als u er geen toegang toe heeft.

    " -#: src/Module/Settings/TwoFactor/Index.php:122 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "App-specific passwords" msgstr "App-specifieke wachtwoorden" -#: src/Module/Settings/TwoFactor/Index.php:123 +#: src/Module/Settings/TwoFactor/Index.php:135 msgid "Generated app-specific passwords" msgstr "App-specifieke wachtwoorden gegenereerd" -#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "" "

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

    " msgstr "

    Met deze willekeurig gegenereerde wachtwoorden kunt u verifiëren bij apps die geen tweefactorauthenticatie ondersteunen.

    " -#: src/Module/Settings/TwoFactor/Index.php:127 src/Module/Contact.php:633 -msgid "Actions" -msgstr "Acties" - -#: src/Module/Settings/TwoFactor/Index.php:128 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "Current password:" msgstr "Huidig wachtwoord:" -#: src/Module/Settings/TwoFactor/Index.php:128 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "U moet uw huidige wachtwoord opgeven om de instellingen voor tweefactorauthenticatie te wijzigen." -#: src/Module/Settings/TwoFactor/Index.php:129 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "Enable two-factor authentication" msgstr "Schakel tweefactorauthenticatie in" -#: src/Module/Settings/TwoFactor/Index.php:130 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Disable two-factor authentication" msgstr "Schakel tweefactorauthenticatie uit" -#: src/Module/Settings/TwoFactor/Index.php:131 +#: src/Module/Settings/TwoFactor/Index.php:143 msgid "Show recovery codes" msgstr "Toon herstelcodes" -#: src/Module/Settings/TwoFactor/Index.php:132 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "Manage app-specific passwords" msgstr "Beheer app-specifieke wachtwoorden" -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:145 +msgid "Manage trusted browsers" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Finish app configuration" msgstr "Voltooi de app-configuratie" -#: src/Module/Settings/TwoFactor/Recovery.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:80 msgid "New recovery codes successfully generated." msgstr "Nieuwe herstelcodes zijn succesvol gegenereerd." -#: src/Module/Settings/TwoFactor/Recovery.php:92 +#: src/Module/Settings/TwoFactor/Recovery.php:106 msgid "Two-factor recovery codes" msgstr "Twee-factor herstelcodes" -#: src/Module/Settings/TwoFactor/Recovery.php:94 +#: src/Module/Settings/TwoFactor/Recovery.php:108 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 " @@ -7834,31 +10833,68 @@ msgid "" "account.

    " msgstr "

    Herstelcodes kunnen worden gebruikt om je gebruiker te benaderen in het geval dat je geen toegang meer hebt tot je apparaat en je geen twee-factor autentificatie codes kunt ontvangen.

    Bewaar deze op een veilige plek! Als je je apparaat verliest en je hebt geen toegang tot de herstelcodes dan heb je geen toegang meer tot je gebruiker.

    " -#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Recovery.php:110 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Wanneer u nieuwe herstelcodes genereert, moet u de nieuwe codes kopiëren. Uw oude codes werken niet meer." -#: src/Module/Settings/TwoFactor/Recovery.php:97 +#: src/Module/Settings/TwoFactor/Recovery.php:111 msgid "Generate new recovery codes" msgstr "Genereer nieuwe herstelcodes" -#: src/Module/Settings/TwoFactor/Recovery.php:99 +#: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "Next: Verification" msgstr "Volgende: verificatie" -#: src/Module/Settings/TwoFactor/Verify.php:78 +#: src/Module/Settings/TwoFactor/Trusted.php:84 +msgid "Trusted browsers successfully removed." +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:94 +msgid "Trusted browser successfully removed." +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:136 +msgid "Two-factor Trusted Browsers" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:137 +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 "" + +#: src/Module/Settings/TwoFactor/Trusted.php:138 +msgid "Device" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:139 +msgid "OS" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:141 +msgid "Trusted" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:142 +msgid "Created At" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:143 +msgid "Last Use" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:145 +msgid "Remove All" +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:91 msgid "Two-factor authentication successfully activated." msgstr "Twee-factor-authenticatie succesvol geactiveerd." -#: src/Module/Settings/TwoFactor/Verify.php:82 -#: src/Module/Security/TwoFactor/Recovery.php:64 -#: src/Module/Security/TwoFactor/Verify.php:61 -msgid "Invalid code, please retry." -msgstr "Ongeldige code, probeer het opnieuw." - -#: src/Module/Settings/TwoFactor/Verify.php:111 +#: src/Module/Settings/TwoFactor/Verify.php:125 #, php-format msgid "" "

    Or you can submit the authentication settings manually:

    \n" @@ -7878,1098 +10914,105 @@ msgid "" "" msgstr "

    Of je kan de autentificatie instellingen handmatig versturen:

    \n
    \n\t
    Uitgever
    \n\t
    %s
    \n\t
    Gebruikersnaam
    \n\t
    %s
    \n\t
    Geheime sleutel
    \n\t
    %s
    \n\t
    Type
    \n\t
    Time-based
    \n\t
    Aantal tekens
    \n\t
    6
    \n\t
    Hashing algorithm
    \n\t
    SHA-1
    \n
    " -#: src/Module/Settings/TwoFactor/Verify.php:131 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Two-factor code verification" msgstr "Tweeledige codeverificatie" -#: src/Module/Settings/TwoFactor/Verify.php:133 +#: src/Module/Settings/TwoFactor/Verify.php:147 msgid "" "

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

    " msgstr "

    Scan deze QR-code met uw authenticator-app en verzend de opgegeven code.

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

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

    %s

    " msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:141 -#: src/Module/Security/TwoFactor/Verify.php:85 -msgid "Please enter a code from your authentication app" -msgstr "Voer een code in van uw authenticatie-app" - -#: src/Module/Settings/TwoFactor/Verify.php:142 +#: src/Module/Settings/TwoFactor/Verify.php:156 msgid "Verify code and enable two-factor authentication" msgstr "Controleer de code en schakel tweefactorauthenticatie in" -#: 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 "Verkleining van de afbeelding [%s] mislukt." - -#: 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 "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen." - -#: src/Module/Settings/Profile/Photo/Crop.php:147 -msgid "Unable to process image" -msgstr "Ik kan de afbeelding niet verwerken" - -#: src/Module/Settings/Profile/Photo/Crop.php:166 -msgid "Photo not found." -msgstr "Foto niet gevonden." - -#: src/Module/Settings/Profile/Photo/Crop.php:190 -msgid "Profile picture successfully updated." -msgstr "Profielfoto geüpdatet." - -#: src/Module/Settings/Profile/Photo/Crop.php:213 -#: src/Module/Settings/Profile/Photo/Crop.php:217 -msgid "Crop Image" -msgstr "Afbeelding bijsnijden" - -#: src/Module/Settings/Profile/Photo/Crop.php:214 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat." - -#: src/Module/Settings/Profile/Photo/Crop.php:216 -msgid "Use Image As Is" -msgstr "Gebruik afbeelding zoals deze is" - -#: src/Module/Settings/Profile/Photo/Index.php:47 -msgid "Missing uploaded image." -msgstr "Ontbrekende geüploade afbeelding." - -#: src/Module/Settings/Profile/Photo/Index.php:126 -msgid "Profile Picture Settings" -msgstr "Profiel afbeelding instellingen" - -#: src/Module/Settings/Profile/Photo/Index.php:127 -msgid "Current Profile Picture" -msgstr "Huidige profielafbeelding" - -#: src/Module/Settings/Profile/Photo/Index.php:128 -msgid "Upload Profile Picture" -msgstr "Upload profiel afbeelding" - -#: src/Module/Settings/Profile/Photo/Index.php:129 -msgid "Upload Picture:" -msgstr "Upload afbeelding" - -#: src/Module/Settings/Profile/Photo/Index.php:134 -msgid "or" -msgstr "of" - -#: src/Module/Settings/Profile/Photo/Index.php:136 -msgid "skip this step" -msgstr "Deze stap overslaan" - -#: src/Module/Settings/Profile/Photo/Index.php:138 -msgid "select a photo from your photo albums" -msgstr "Kies een foto uit je fotoalbums" - -#: src/Module/Settings/Profile/Index.php:85 -msgid "Profile Name is required." -msgstr "Profielnaam is vereist." - -#: src/Module/Settings/Profile/Index.php:137 -msgid "Profile couldn't be updated." -msgstr "Profiel kan niet worden bijgewerkt." - -#: src/Module/Settings/Profile/Index.php:187 -#: src/Module/Settings/Profile/Index.php:207 -msgid "Label:" -msgstr "Label:" - -#: src/Module/Settings/Profile/Index.php:188 -#: src/Module/Settings/Profile/Index.php:208 -msgid "Value:" -msgstr "Waarde:" - -#: src/Module/Settings/Profile/Index.php:198 -#: src/Module/Settings/Profile/Index.php:218 -msgid "Field Permissions" -msgstr "Veldrechten" - -#: src/Module/Settings/Profile/Index.php:199 -#: src/Module/Settings/Profile/Index.php:219 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" - -#: src/Module/Settings/Profile/Index.php:205 -msgid "Add a new profile field" -msgstr "Voeg nieuw profielveld toe" - -#: src/Module/Settings/Profile/Index.php:235 -msgid "Profile Actions" -msgstr "Profiel Acties" - -#: src/Module/Settings/Profile/Index.php:236 -msgid "Edit Profile Details" -msgstr "Profieldetails bewerken" - -#: src/Module/Settings/Profile/Index.php:238 -msgid "Change Profile Photo" -msgstr "Profielfoto wijzigen" - -#: src/Module/Settings/Profile/Index.php:243 -msgid "Profile picture" -msgstr "Profiel foto" - -#: src/Module/Settings/Profile/Index.php:244 -msgid "Location" -msgstr "Plaats" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "Custom Profile Fields" -msgstr "Aangepaste profielvelden" - -#: src/Module/Settings/Profile/Index.php:248 src/Module/Welcome.php:58 -msgid "Upload Profile Photo" -msgstr "Profielfoto uploaden" - -#: src/Module/Settings/Profile/Index.php:252 -msgid "Display name:" -msgstr "Weergave naam:" - -#: src/Module/Settings/Profile/Index.php:255 -msgid "Street Address:" -msgstr "Postadres:" - -#: src/Module/Settings/Profile/Index.php:256 -msgid "Locality/City:" -msgstr "Gemeente/Stad:" - -#: src/Module/Settings/Profile/Index.php:257 -msgid "Region/State:" -msgstr "Regio/Staat:" - -#: src/Module/Settings/Profile/Index.php:258 -msgid "Postal/Zip Code:" -msgstr "Postcode:" - -#: src/Module/Settings/Profile/Index.php:259 -msgid "Country:" -msgstr "Land:" - -#: src/Module/Settings/Profile/Index.php:261 -msgid "XMPP (Jabber) address:" -msgstr "XMPP (Jabber) adres:" - -#: src/Module/Settings/Profile/Index.php:261 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." -msgstr "Het XMPP adres zal doorgegeven worden aan je contacten zodat zij je kunnen volgen." - -#: src/Module/Settings/Profile/Index.php:262 -msgid "Homepage URL:" -msgstr "Adres tijdlijn:" - -#: src/Module/Settings/Profile/Index.php:263 -msgid "Public Keywords:" -msgstr "Publieke Sleutelwoorden:" - -#: src/Module/Settings/Profile/Index.php:263 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)" - -#: src/Module/Settings/Profile/Index.php:264 -msgid "Private Keywords:" -msgstr "Privé Sleutelwoorden:" - -#: src/Module/Settings/Profile/Index.php:264 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)" - -#: 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 "

    Aangepaste velden verschijnen op je profielpagina.

    \n\t\t\t\t

    Je kunt BBCodes in de veldwaarden gebruiken.

    \n\t\t\t\t

    Sorteer opnieuw door de veldtitel te slepen.

    \n\t\t\t\t

    Maak het labelveld leeg om een ​​aangepast veld te verwijderen.

    \n\t\t\t\t

    Niet-openbare velden zijn alleen zichtbaar voor de geselecteerde Friendica-contacten of de Friendica-contacten in de geselecteerde groepen.

    " - -#: src/Module/Settings/Delegation.php:53 -msgid "Delegation successfully granted." -msgstr "Delegatie met succes verleend." - -#: src/Module/Settings/Delegation.php:55 -msgid "Parent user not found, unavailable or password doesn't match." -msgstr "Brongebruiker niet gevonden, niet beschikbaar of wachtwoord komt niet overeen." - -#: src/Module/Settings/Delegation.php:59 -msgid "Delegation successfully revoked." -msgstr "Delegatie is ingetrokken." - -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 -msgid "" -"Delegated administrators can view but not change delegation permissions." -msgstr "Gedelegeerde beheerders kunnen delegatierechten bekijken, maar niet wijzigen." - -#: src/Module/Settings/Delegation.php:95 -msgid "Delegate user not found." -msgstr "Gemachtigde gebruiker niet gevonden." - -#: src/Module/Settings/Delegation.php:143 -msgid "No parent user" -msgstr "Ouderlijke gebruiker ontbreekt" - -#: src/Module/Settings/Delegation.php:154 -#: src/Module/Settings/Delegation.php:165 -msgid "Parent User" -msgstr "Ouderlijke gebruiker" - -#: src/Module/Settings/Delegation.php:155 src/Module/Register.php:170 -msgid "Parent Password:" -msgstr "Ouderlijk wachtwoord:" - -#: src/Module/Settings/Delegation.php:155 src/Module/Register.php:170 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "Geef alstublieft het wachtwoord van het ouderlijke account om je verzoek te legitimeren." - -#: src/Module/Settings/Delegation.php:162 -msgid "Additional Accounts" -msgstr "Toegevoegde gebruikers" - -#: 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 "Registreer extra gebruikers die automatisch zijn verbonden met uw bestaande gebruiker, zodat u ze vanuit deze gebruiker kunt beheren." - -#: src/Module/Settings/Delegation.php:164 -msgid "Register an additional account" -msgstr "Registreer een toegevoegde gebruiker" - -#: 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 "Ouderlijke gebruikers hebben totale controle over dit account, de account instellingen inbegrepen. Dubbel check dus alstublieft aan wie je deze toegang geeft." - -#: src/Module/Settings/Delegation.php:171 src/Module/BaseSettings.php:94 -msgid "Manage Accounts" -msgstr "Beheer Gebruikers" - -#: src/Module/Settings/Delegation.php:172 -msgid "Delegates" -msgstr "Gemachtigden" - -#: 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 "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwt." - -#: src/Module/Settings/Delegation.php:175 -msgid "Existing Page Delegates" -msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed" - -#: src/Module/Settings/Delegation.php:177 -msgid "Potential Delegates" -msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed " - -#: src/Module/Settings/Delegation.php:180 -msgid "Add" -msgstr "Toevoegen" - -#: src/Module/Settings/Delegation.php:181 -msgid "No entries." -msgstr "Geen gegevens." - -#: src/Module/Settings/Display.php:103 -msgid "The theme you chose isn't available." -msgstr "Het thema dat je koos is niet beschikbaar" - -#: src/Module/Settings/Display.php:140 -#, php-format -msgid "%s - (Unsupported)" -msgstr "%s - (Niet ondersteund)" - -#: src/Module/Settings/Display.php:184 -msgid "Display Settings" -msgstr "Scherminstellingen" - -#: src/Module/Settings/Display.php:186 -msgid "General Theme Settings" -msgstr "Algemene Thema Instellingen" - -#: src/Module/Settings/Display.php:187 -msgid "Custom Theme Settings" -msgstr "Speciale Thema Instellingen" - -#: src/Module/Settings/Display.php:188 -msgid "Content Settings" -msgstr "Content Instellingen" - -#: src/Module/Settings/Display.php:190 -msgid "Calendar" -msgstr "Kalender" - -#: src/Module/Settings/Display.php:196 -msgid "Display Theme:" -msgstr "Schermthema:" - -#: src/Module/Settings/Display.php:197 -msgid "Mobile Theme:" -msgstr "Mobiel thema:" - -#: src/Module/Settings/Display.php:200 -msgid "Number of items to display per page:" -msgstr "Aantal items te tonen per pagina:" - -#: src/Module/Settings/Display.php:200 src/Module/Settings/Display.php:201 -msgid "Maximum of 100 items" -msgstr "Maximum 100 items" - -#: src/Module/Settings/Display.php:201 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:" - -#: src/Module/Settings/Display.php:202 -msgid "Update browser every xx seconds" -msgstr "Browser elke xx seconden verversen" - -#: src/Module/Settings/Display.php:202 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "Minimum 10 seconden. Geef -1 op om te deactiveren." - -#: src/Module/Settings/Display.php:203 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "" - -#: src/Module/Settings/Display.php:203 -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 "" - -#: src/Module/Settings/Display.php:204 -msgid "Don't show emoticons" -msgstr "Emoticons niet tonen" - -#: src/Module/Settings/Display.php:204 -msgid "" -"Normally emoticons are replaced with matching symbols. This setting disables" -" this behaviour." -msgstr "" - -#: src/Module/Settings/Display.php:205 -msgid "Infinite scroll" -msgstr "Oneindig scrollen" - -#: src/Module/Settings/Display.php:205 -msgid "Automatic fetch new items when reaching the page end." -msgstr "" - -#: src/Module/Settings/Display.php:206 -msgid "Disable Smart Threading" -msgstr "" - -#: src/Module/Settings/Display.php:206 -msgid "Disable the automatic suppression of extraneous thread indentation." -msgstr "Schakel de automatische onderdrukking van vreemd inspringen uit." - -#: src/Module/Settings/Display.php:207 -msgid "Hide the Dislike feature" -msgstr "Verberg de Afkeeroptie" - -#: src/Module/Settings/Display.php:207 -msgid "Hides the Dislike button and dislike reactions on posts and comments." -msgstr "Verbergt de knop Niet Leuk en Niet Leuke Reacties op berichten en opmerkingen." - -#: src/Module/Settings/Display.php:208 -msgid "Display the resharer" -msgstr "" - -#: src/Module/Settings/Display.php:208 -msgid "Display the first resharer as icon and text on a reshared item." -msgstr "" - -#: src/Module/Settings/Display.php:210 -msgid "Beginning of week:" -msgstr "Begin van de week:" - -#: src/Module/Settings/UserExport.php:57 +#: src/Module/Settings/UserExport.php:90 msgid "Export account" msgstr "Account exporteren" -#: src/Module/Settings/UserExport.php:57 +#: src/Module/Settings/UserExport.php:90 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 "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server." -#: src/Module/Settings/UserExport.php:58 +#: src/Module/Settings/UserExport.php:91 msgid "Export all" msgstr "Alles exporteren" -#: src/Module/Settings/UserExport.php:58 +#: src/Module/Settings/UserExport.php:91 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 "Exporteer uw gebruikersgegevens, contacten en al uw items als json. Kan een heel groot bestand zijn en kan veel tijd in beslag nemen. Gebruik dit om een ​​volledige back-up van uw account te maken (foto's worden niet geëxporteerd)" -#: src/Module/Settings/UserExport.php:59 +#: src/Module/Settings/UserExport.php:92 msgid "Export Contacts to CSV" msgstr "Export Contacten naar CSV" -#: src/Module/Settings/UserExport.php:59 +#: src/Module/Settings/UserExport.php:92 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Exporteer de lijst met de gebruikers die u volgt als CSV-bestand. Compatibel met b.v. Mastodont." -#: src/Module/Settings/UserExport.php:65 src/Module/BaseSettings.php:108 -msgid "Export personal data" -msgstr "Persoonlijke gegevens exporteren" - -#: src/Module/Special/HTTPException.php:49 -msgid "Bad Request" -msgstr "Bad Request" - -#: src/Module/Special/HTTPException.php:50 -msgid "Unauthorized" -msgstr "Onbevoegd" - -#: src/Module/Special/HTTPException.php:51 -msgid "Forbidden" -msgstr "Niet toegestaan" - -#: src/Module/Special/HTTPException.php:52 -msgid "Not Found" -msgstr "Niet gevonden" - -#: src/Module/Special/HTTPException.php:53 -msgid "Internal Server Error" +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/HTTPException.php:54 -msgid "Service Unavailable" +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/HTTPException.php:61 +#: src/Module/Special/DisplayNotFound.php:37 msgid "" -"The server cannot or will not process the request due to an apparent client " -"error." +"This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/HTTPException.php:62 +#: src/Module/Special/DisplayNotFound.php:38 msgid "" -"Authentication is required and has failed or has not yet been provided." +"You have ignored or blocked the top-level author or the author of the shared" +" post." msgstr "" -#: src/Module/Special/HTTPException.php:63 +#: src/Module/Special/DisplayNotFound.php:39 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." +"You have ignored the top-level author's server or the shared post author's " +"server." msgstr "" -#: src/Module/Special/HTTPException.php:64 -msgid "" -"The requested resource could not be found but may be available in the " -"future." +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/HTTPException.php:65 -msgid "" -"An unexpected condition was encountered and no more specific message is " -"suitable." +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: 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 "De server is momenteel niet beschikbaar (omdat deze overbelast is of niet beschikbaar is door onderhoud). Probeer het later opnieuw." - -#: src/Module/Contact/Advanced.php:94 -msgid "Contact update failed." -msgstr "Aanpassen van contact mislukt." - -#: src/Module/Contact/Advanced.php:111 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "WAARSCHUWING: Dit is zeer geavanceerd en als je verkeerde informatie invult, zal je mogelijk niet meer kunnen communiceren met deze contactpersoon." - -#: src/Module/Contact/Advanced.php:112 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen." - -#: src/Module/Contact/Advanced.php:123 src/Module/Contact/Advanced.php:125 -msgid "No mirroring" -msgstr "Geen mirroring" - -#: src/Module/Contact/Advanced.php:123 -msgid "Mirror as forwarded posting" -msgstr "Spiegel als geforward bericht" - -#: src/Module/Contact/Advanced.php:123 src/Module/Contact/Advanced.php:125 -msgid "Mirror as my own posting" -msgstr "Spiegel als mijn eigen bericht" - -#: src/Module/Contact/Advanced.php:136 -msgid "Return to contact editor" -msgstr "Ga terug naar contactbewerker" - -#: src/Module/Contact/Advanced.php:138 src/Module/Contact.php:1123 -msgid "Refetch contact data" -msgstr "Contact data opnieuw ophalen" - -#: src/Module/Contact/Advanced.php:141 -msgid "Remote Self" -msgstr "Mijn identiteit elders" - -#: src/Module/Contact/Advanced.php:144 -msgid "Mirror postings from this contact" -msgstr "Berichten van dit contact spiegelen" - -#: src/Module/Contact/Advanced.php:146 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Markeer dit contact als remote_self, hierdoor zal friendica nieuwe berichten van dit contact opnieuw posten." - -#: src/Module/Contact/Advanced.php:151 -msgid "Account Nickname" -msgstr "Bijnaam account" - -#: src/Module/Contact/Advanced.php:152 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam" - -#: src/Module/Contact/Advanced.php:153 -msgid "Account URL" -msgstr "URL account" - -#: src/Module/Contact/Advanced.php:154 -msgid "Account URL Alias" -msgstr "Account URL Alias" - -#: src/Module/Contact/Advanced.php:155 -msgid "Friend Request URL" -msgstr "URL vriendschapsverzoek" - -#: src/Module/Contact/Advanced.php:156 -msgid "Friend Confirm URL" -msgstr "URL vriendschapsbevestiging" - -#: src/Module/Contact/Advanced.php:157 -msgid "Notification Endpoint URL" -msgstr "Notificatie Endpoint URL" - -#: src/Module/Contact/Advanced.php:158 -msgid "Poll/Feed URL" -msgstr "URL poll/feed" - -#: src/Module/Contact/Advanced.php:159 -msgid "New photo from this URL" -msgstr "Nieuwe foto van deze URL" - -#: src/Module/Contact/Contacts.php:46 -msgid "No known contacts." +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" msgstr "" -#: src/Module/Contact/Poke.php:114 -msgid "Error while sending poke, please retry." +#: src/Module/Special/HTTPException.php:78 +msgid "Stack trace:" msgstr "" -#: src/Module/Contact/Poke.php:150 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" - -#: src/Module/Contact/Poke.php:151 -msgid "poke, prod or do other things to somebody" -msgstr "aanstoten, porren of andere dingen met iemand doen" - -#: src/Module/Contact/Poke.php:153 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" - -#: src/Module/Contact/Poke.php:154 -msgid "Make this post private" -msgstr "Dit bericht privé maken" - -#: src/Module/HTTPException/MethodNotAllowed.php:32 -msgid "Method Not Allowed." -msgstr "Methode niet toegestaan." - -#: src/Module/HTTPException/PageNotFound.php:32 src/App/Router.php:226 -msgid "Page not found." -msgstr "Pagina niet gevonden" - -#: src/Module/Api/Twitter/ContactEndpoint.php:65 src/Module/Contact.php:390 -msgid "Contact not found" -msgstr "Contact niet gevonden" - -#: src/Module/Api/Twitter/ContactEndpoint.php:135 -msgid "Profile not found" -msgstr "" - -#: src/Module/Security/TwoFactor/Recovery.php:60 +#: src/Module/Special/HTTPException.php:83 #, php-format -msgid "Remaining recovery codes: %d" -msgstr "Resterende herstelcodes: %d" +msgid "Exception thrown in %s:%d" +msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:83 -msgid "Two-factor recovery" -msgstr "Twee-factorenherstel" - -#: 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 "

    U kunt een van uw eenmalige herstelcodes invoeren als u de toegang tot uw mobiele apparaat bent kwijtgeraakt.

    " - -#: src/Module/Security/TwoFactor/Recovery.php:85 -#: src/Module/Security/TwoFactor/Verify.php:84 -#, php-format -msgid "Don’t have your phone? Enter a two-factor recovery code" -msgstr "Heb je je telefoon niet? Geef een twee-factor herstelcodecode in" - -#: src/Module/Security/TwoFactor/Recovery.php:86 -msgid "Please enter a recovery code" -msgstr "Voer een herstelcode in" - -#: src/Module/Security/TwoFactor/Recovery.php:87 -msgid "Submit recovery code and complete login" -msgstr "Voer de herstelcode in en voltooi de login" - -#: src/Module/Security/TwoFactor/Verify.php:81 -msgid "" -"

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

    " -msgstr "

    Open de tweefactorauthenticatie-app op uw apparaat om een ​​authenticatiecode te krijgen en uw identiteit te verifiëren.

    " - -#: src/Module/Security/TwoFactor/Verify.php:86 -msgid "Verify code and complete login" -msgstr "Controleer de code en voltooi de login" - -#: src/Module/Security/Login.php:101 -msgid "Create a New Account" -msgstr "Nieuwe account aanmaken" - -#: src/Module/Security/Login.php:126 -msgid "Your OpenID: " -msgstr "Uw OpenID" - -#: src/Module/Security/Login.php:129 -msgid "" -"Please enter your username and password to add the OpenID to your existing " -"account." -msgstr "Voer uw gebruikersnaam en wachtwoord in om de OpenID toe te voegen aan uw bestaande gebruiker." - -#: src/Module/Security/Login.php:131 -msgid "Or login using OpenID: " -msgstr "Of log in met OpenID:" - -#: src/Module/Security/Login.php:145 -msgid "Password: " -msgstr "Wachtwoord:" - -#: src/Module/Security/Login.php:146 -msgid "Remember me" -msgstr "Onthoud mij" - -#: src/Module/Security/Login.php:155 -msgid "Forgot your password?" -msgstr "Wachtwoord vergeten?" - -#: src/Module/Security/Login.php:158 -msgid "Website Terms of Service" -msgstr "Gebruikersvoorwaarden website" - -#: src/Module/Security/Login.php:159 -msgid "terms of service" -msgstr "servicevoorwaarden" - -#: src/Module/Security/Login.php:161 -msgid "Website Privacy Policy" -msgstr "Privacybeleid website" - -#: src/Module/Security/Login.php:162 -msgid "privacy policy" -msgstr "privacybeleid" - -#: src/Module/Security/Logout.php:53 -msgid "Logged out." -msgstr "Uitgelogd." - -#: src/Module/Security/OpenID.php:54 -msgid "OpenID protocol error. No ID returned" -msgstr "OpenID-protocolfout. Geen ID terug ontvangen" - -#: src/Module/Security/OpenID.php:92 -msgid "" -"Account not found. Please login to your existing account to add the OpenID " -"to it." -msgstr "Account niet gevonden. Meld je aan met je bestaande account om de OpenID toe te voegen." - -#: src/Module/Security/OpenID.php:94 -msgid "" -"Account not found. Please register a new account or login to your existing " -"account to add the OpenID to it." -msgstr "Account niet gevonden. Maak een nieuwe account aan of meld je aan met je bestaande account om de OpenID toe te voegen." - -#: src/Module/Notifications/Notification.php:103 -msgid "You must be logged in to show this page." -msgstr "Je moet ingelogd zijn om deze pagina te tonen." - -#: src/Module/Notifications/Notifications.php:50 -msgid "Network Notifications" -msgstr "Netwerknotificaties" - -#: src/Module/Notifications/Notifications.php:58 -msgid "System Notifications" -msgstr "Systeemnotificaties" - -#: src/Module/Notifications/Notifications.php:66 -msgid "Personal Notifications" -msgstr "Persoonlijke notificaties" - -#: src/Module/Notifications/Notifications.php:74 -msgid "Home Notifications" -msgstr "Tijdlijn-notificaties" - -#: src/Module/Notifications/Notifications.php:133 -#: src/Module/Notifications/Introductions.php:195 -#, php-format -msgid "No more %s notifications." -msgstr "Geen %s notificaties meer." - -#: src/Module/Notifications/Notifications.php:138 -msgid "Show unread" -msgstr "Toon ongelezen" - -#: src/Module/Notifications/Notifications.php:138 -msgid "Show all" -msgstr "Toon alles" - -#: src/Module/Notifications/Introductions.php:76 -msgid "Show Ignored Requests" -msgstr "Toon genegeerde verzoeken" - -#: src/Module/Notifications/Introductions.php:76 -msgid "Hide Ignored Requests" -msgstr "Verberg genegeerde verzoeken" - -#: src/Module/Notifications/Introductions.php:90 -#: src/Module/Notifications/Introductions.php:157 -msgid "Notification type:" -msgstr "Notificatiesoort:" - -#: src/Module/Notifications/Introductions.php:93 -msgid "Suggested by:" -msgstr "Voorgesteld door:" - -#: src/Module/Notifications/Introductions.php:105 -#: src/Module/Notifications/Introductions.php:171 src/Module/Contact.php:614 -msgid "Hide this contact from others" -msgstr "Verberg dit contact voor anderen" - -#: src/Module/Notifications/Introductions.php:118 -msgid "Claims to be known to you: " -msgstr "Denkt dat je hem of haar kent:" - -#: src/Module/Notifications/Introductions.php:125 -msgid "Shall your connection be bidirectional or not?" -msgstr "Zal je connectie bidirectioneel zijn of niet?" - -#: src/Module/Notifications/Introductions.php:126 -#, 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 als vriend accepteren laat %s toe om in te schrijven op je berichten, en je zal ook updates ontvangen van hen in je nieuws feed." - -#: src/Module/Notifications/Introductions.php:127 -#, 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 als volger accepteren laat hen toe om in te schrijven op je berichten, maar je zal geen updates ontvangen van hen in je nieuws feed." - -#: src/Module/Notifications/Introductions.php:129 -msgid "Friend" -msgstr "Vriend" - -#: src/Module/Notifications/Introductions.php:130 -msgid "Subscriber" -msgstr "Volger" - -#: src/Module/Notifications/Introductions.php:194 -msgid "No introductions." -msgstr "Geen vriendschaps- of connectieverzoeken." - -#: src/Module/Attach.php:50 src/Module/Attach.php:62 -msgid "Item was not found." -msgstr "Item niet gevonden" - -#: src/Module/BaseProfile.php:55 src/Module/Contact.php:907 -msgid "Profile Details" -msgstr "Profieldetails" - -#: src/Module/BaseProfile.php:113 -msgid "Only You Can See This" -msgstr "Alleen jij kunt dit zien" - -#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 -msgid "Tips for New Members" -msgstr "Tips voor nieuwe leden" - -#: src/Module/BaseSettings.php:43 -msgid "Account" -msgstr "Account" - -#: src/Module/BaseSettings.php:65 src/Module/BaseAdmin.php:101 -msgid "Additional features" -msgstr "Extra functies" - -#: src/Module/BaseSettings.php:73 -msgid "Display" -msgstr "Weergave" - -#: src/Module/BaseSettings.php:101 -msgid "Connected apps" -msgstr "Verbonden applicaties" - -#: src/Module/BaseSettings.php:115 -msgid "Remove account" -msgstr "Account verwijderen" - -#: src/Module/Conversation/Community.php:56 -msgid "Local Community" -msgstr "Lokale Groep" - -#: src/Module/Conversation/Community.php:59 -msgid "Posts from local users on this server" -msgstr "Berichten van lokale gebruikers op deze server" - -#: src/Module/Conversation/Community.php:67 -msgid "Global Community" -msgstr "Globale gemeenschap" - -#: src/Module/Conversation/Community.php:70 -msgid "Posts from users of the whole federated network" -msgstr "Berichten van gebruikers van het hele gefedereerde netwerk" - -#: src/Module/Conversation/Community.php:125 -msgid "" -"This community stream shows all public posts received by this node. They may" -" not reflect the opinions of this node’s users." -msgstr "Deze groepsstroom toont alle publieke berichten die deze node ontvangen heeft. Ze kunnen mogelijks niet de mening van de gebruikers van deze node weerspiegelen." - -#: src/Module/Conversation/Community.php:178 -msgid "Community option not available." -msgstr "Groepsoptie niet beschikbaar" - -#: src/Module/Conversation/Community.php:194 -msgid "Not available." -msgstr "Niet beschikbaar" - -#: src/Module/Credits.php:44 -msgid "Credits" -msgstr "Credits" - -#: 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 "Friendica is een gemeenschapsproject dat niet mogelijk zou zijn zonder de hulp van vele mensen. Hier is een lijst van alle mensen die aan de code of vertalingen van Friendica hebben meegewerkt. Allen van harte bedankt!" - -#: src/Module/Delegation.php:147 -msgid "Manage Identities and/or Pages" -msgstr "Beheer Identiteiten en/of Pagina's" - -#: src/Module/Delegation.php:148 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen." - -#: src/Module/Delegation.php:149 -msgid "Select an identity to manage: " -msgstr "Selecteer een identiteit om te beheren:" - -#: src/Module/FriendSuggest.php:65 -msgid "Suggested contact not found." -msgstr "Voorgesteld contact werd niet gevonden" - -#: src/Module/FriendSuggest.php:84 -msgid "Friend suggestion sent." -msgstr "Vriendschapsvoorstel verzonden." - -#: src/Module/FriendSuggest.php:121 -msgid "Suggest Friends" -msgstr "Stel vrienden voor" - -#: src/Module/FriendSuggest.php:124 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Stel een vriend voor aan %s" - -#: src/Module/Help.php:62 -msgid "Help:" -msgstr "Help:" - -#: src/Module/Home.php:54 -#, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" - -#: src/Module/Maintenance.php:46 -msgid "System down for maintenance" -msgstr "Systeem onbeschikbaar wegens onderhoud" - -#: src/Module/Manifest.php:42 -msgid "A Decentralized Social Network" -msgstr "Een gedecentraliseerd sociaal netwerk" - -#: src/Module/Register.php:69 -msgid "Only parent users can create additional accounts." -msgstr "Alleen bovenliggende gebruikers kunnen extra gebruikers maken." - -#: src/Module/Register.php:101 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking \"Register\"." -msgstr "U kunt (optioneel) dit formulier invullen via OpenID door uw OpenID in te vullen en op 'Registreren' te klikken." - -#: src/Module/Register.php:102 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in." - -#: src/Module/Register.php:103 -msgid "Your OpenID (optional): " -msgstr "Je OpenID (optioneel):" - -#: src/Module/Register.php:112 -msgid "Include your profile in member directory?" -msgstr "Je profiel in de ledengids opnemen?" - -#: src/Module/Register.php:135 -msgid "Note for the admin" -msgstr "Nota voor de beheerder" - -#: src/Module/Register.php:135 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "Laat een boodschap na voor de beheerder, waarom je bij deze node wil komen" - -#: src/Module/Register.php:136 -msgid "Membership on this site is by invitation only." -msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging." - -#: src/Module/Register.php:137 -msgid "Your invitation code: " -msgstr "Je uitnodigingscode:" - -#: src/Module/Register.php:145 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "Je volledige naam (bvb. Jan Smit, echt of echt lijkend):" - -#: src/Module/Register.php:146 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "Je Email Adres: (Initiële informatie zal hier naartoe gezonden worden, dus dit moet een bestaand adres zijn.)" - -#: src/Module/Register.php:147 -msgid "Please repeat your e-mail address:" -msgstr "Herhaal uw e-mailadres:" - -#: src/Module/Register.php:149 -msgid "Leave empty for an auto generated password." -msgstr "Laat leeg voor een automatisch gegenereerd wachtwoord." - -#: 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 "Kies een profiel bijnaam. Deze dient te beginnen met een letter. Uw profiel adres op deze site zal dan \"bijnaam@%s\" zijn." - -#: src/Module/Register.php:152 -msgid "Choose a nickname: " -msgstr "Kies een bijnaam:" - -#: src/Module/Register.php:161 -msgid "Import your profile to this friendica instance" -msgstr "Importeer je profiel op deze friendica server" - -#: src/Module/Register.php:168 -msgid "Note: This node explicitly contains adult content" -msgstr "Waarschuwing: Deze node heeft inhoud enkel bedoeld voor volwassenen." - -#: src/Module/Register.php:201 -msgid "Password doesn't match." -msgstr "Wachtwoorden komen niet overeen." - -#: src/Module/Register.php:207 -msgid "Please enter your password." -msgstr "Voer uw wachtwoord in." - -#: src/Module/Register.php:249 -msgid "You have entered too much information." -msgstr "U heeft te veel informatie ingevoerd." - -#: src/Module/Register.php:273 -msgid "Please enter the identical mail address in the second field." -msgstr "Voer in het tweede veld het identieke mailadres in." - -#: src/Module/Register.php:300 -msgid "The additional account was created." -msgstr "De toegevoegde gebruiker is aangemaakt." - -#: src/Module/Register.php:325 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies." - -#: src/Module/Register.php:329 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
    login: %s
    " -"password: %s

    You can change your password after login." -msgstr "Kon email niet verzenden. Hier zijn je account details:
    login: %s
    wachtwoord: %s

    Je kan je wachtwoord aanpassen nadat je ingelogd bent." - -#: src/Module/Register.php:335 -msgid "Registration successful." -msgstr "Registratie succes." - -#: src/Module/Register.php:340 src/Module/Register.php:347 -msgid "Your registration can not be processed." -msgstr "Je registratie kan niet verwerkt worden." - -#: src/Module/Register.php:346 -msgid "You have to leave a request note for the admin." -msgstr "U dient een verzoekmelding achter te laten voor de beheerder." - -#: src/Module/Register.php:394 -msgid "Your registration is pending approval by the site owner." -msgstr "Jouw registratie wacht op goedkeuring van de beheerder." - -#: src/Module/Tos.php:46 src/Module/Tos.php:88 +#: src/Module/Tos.php:58 src/Module/Tos.php:107 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" @@ -8982,424 +11025,106 @@ msgid "" "settings, it is not necessary for communication." msgstr "Op het moment van de registratie, en om communicatie mogelijk te maken tussen de gebruikersaccount en zijn of haar contacten, moet de gebruiker een weergave naam opgeven, een gebruikersnaam (bijnaam) en een werkend email adres. De namen zullen toegankelijk zijn op de profiel pagina van het account voor elke bezoeker van de pagina, zelfs als andere profiel details niet getoond worden. Het email adres zal enkel gebruikt worden om de gebruiker notificaties te sturen over interacties, maar zal niet zichtbaar getoond worden. Het oplijsten van een account in de gids van de node van de gebruiker of in de globale gids is optioneel en kan beheerd worden in de gebruikersinstellingen, dit is niet nodig voor communicatie." -#: src/Module/Tos.php:47 src/Module/Tos.php:89 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 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 "Deze data is vereist voor communicatie en wordt doorgegeven aan de nodes van de communicatie partners en wordt daar opgeslagen. Gebruikers kunnen bijkomende privé data opgeven die mag doorgegeven worden aan de accounts van de communicatie partners." -#: src/Module/Tos.php:48 src/Module/Tos.php:90 +#: src/Module/Tos.php:60 src/Module/Tos.php:109 #, 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 "Op elk gewenst moment kan een aangemelde gebruiker zijn gebruikersgegevens uitvoeren vanaf de gebruikersinstellingen. Als de gebruiker zichzelf wenst te verwijderen, dan kan dat op %1$s/removeme. De verwijdering van de gebruiker is niet ongedaan te maken. Verwijdering van de gegevens zal tevens worden aangevraagd bij de nodes van de communicatiepartners." +"href=\"%1$s/settings/removeme\">%1$s/settings/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 "" -#: src/Module/Tos.php:51 src/Module/Tos.php:87 +#: src/Module/Tos.php:63 src/Module/Tos.php:106 msgid "Privacy Statement" msgstr "Privacy Verklaring" -#: src/Module/Apps.php:47 -msgid "No installed applications." -msgstr "Geen toepassingen geïnstalleerd" - -#: src/Module/Apps.php:52 -msgid "Applications" -msgstr "Toepassingen" - -#: src/Module/BaseAdmin.php:79 -msgid "" -"Submanaged account can't access the administation pages. Please log back in " -"as the main account." +#: src/Module/Tos.php:103 +msgid "Rules" msgstr "" -#: src/Module/BaseAdmin.php:93 -msgid "Overview" -msgstr "Overzicht" - -#: src/Module/BaseAdmin.php:96 -msgid "Configuration" -msgstr "Configuratie" - -#: src/Module/BaseAdmin.php:104 -msgid "Database" -msgstr "Database" - -#: src/Module/BaseAdmin.php:105 -msgid "DB updates" -msgstr "DB aanpassingen" - -#: src/Module/BaseAdmin.php:106 -msgid "Inspect Deferred Workers" -msgstr "Inspecteer uitgestelde workers" - -#: src/Module/BaseAdmin.php:107 -msgid "Inspect worker Queue" -msgstr "Taakwachtrij inspecteren" - -#: src/Module/BaseAdmin.php:109 -msgid "Tools" -msgstr "Hulpmiddelen" - -#: src/Module/BaseAdmin.php:110 -msgid "Contact Blocklist" -msgstr "Contact Blokkeerlijst" - -#: src/Module/BaseAdmin.php:111 -msgid "Server Blocklist" -msgstr "Server Blokkeerlijst" - -#: src/Module/BaseAdmin.php:118 -msgid "Diagnostics" -msgstr "Diagnostiek" - -#: src/Module/BaseAdmin.php:119 -msgid "PHP Info" -msgstr "PHP Info" - -#: src/Module/BaseAdmin.php:120 -msgid "probe address" -msgstr "probe adres" - -#: src/Module/BaseAdmin.php:121 -msgid "check webfinger" -msgstr "check webfinger" - -#: src/Module/BaseAdmin.php:122 -msgid "Item Source" +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/BaseAdmin.php:123 -msgid "Babel" -msgstr "" +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "Het gevraagde item bestaat niet of is verwijderd" -#: src/Module/BaseAdmin.php:124 -msgid "ActivityPub Conversion" -msgstr "" +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "Importen van een gebruiker op een gesloten node kan enkel gedaan worden door een administrator" -#: src/Module/BaseAdmin.php:133 -msgid "Addon Features" -msgstr "Addon Features" +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "Account verplaatsen" -#: src/Module/BaseAdmin.php:134 -msgid "User registrations waiting for confirmation" -msgstr "Gebruikersregistraties wachten op bevestiging" +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "Je kunt een account van een andere Friendica server importeren." -#: src/Module/BaseSearch.php:69 -#, php-format -msgid "People Search - %s" -msgstr "Mensen Zoeken - %s" - -#: src/Module/BaseSearch.php:79 -#, php-format -msgid "Forum Search - %s" -msgstr "Forum doorzoeken - %s" - -#: src/Module/Bookmarklet.php:56 -msgid "This page is missing a url parameter." -msgstr "Deze pagina mist een url-parameter." - -#: src/Module/Bookmarklet.php:78 -msgid "The post was created" -msgstr "Het bericht is aangemaakt" - -#: src/Module/Directory.php:77 -msgid "No entries (some entries may be hidden)." -msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)." - -#: src/Module/Directory.php:99 -msgid "Find on this site" -msgstr "Op deze website zoeken" - -#: src/Module/Directory.php:101 -msgid "Results for:" -msgstr "Resultaten voor:" - -#: src/Module/Directory.php:103 -msgid "Site Directory" -msgstr "Websitegids" - -#: src/Module/Friendica.php:60 -msgid "Installed addons/apps:" -msgstr "Geïnstalleerde addons/applicaties:" - -#: src/Module/Friendica.php:65 -msgid "No installed addons/apps" -msgstr "Geen geïnstalleerde addons/applicaties" - -#: src/Module/Friendica.php:70 -#, php-format -msgid "Read about the Terms of Service of this node." -msgstr "Lees de Gebruiksvoorwaarden van deze node na." - -#: src/Module/Friendica.php:77 -msgid "On this server the following remote servers are blocked." -msgstr "De volgende remote servers zijn geblokkeerd." - -#: src/Module/Friendica.php:95 -#, php-format +#: src/Module/User/Import.php:121 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 "Dit is Friendica, versie %s en draait op op locatie %s. De databaseversie is %s, en de bericht update versie is %s." +"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." +msgstr "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent." -#: src/Module/Friendica.php:100 +#: src/Module/User/Import.php:122 msgid "" -"Please visit Friendi.ca to learn more " -"about the Friendica project." -msgstr "Ga naar Friendi.ca om meer te vernemen over het Friendica project." +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "Dit feature is experimenteel. We kunnen contacten van het OStatus netwerk (GNU Social/Statusnet) of van Diaspora niet importeren." -#: src/Module/Friendica.php:101 -msgid "Bug reports and issues: please visit" -msgstr "Bug rapporten en problemen: bezoek" +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "Account bestand" -#: src/Module/Friendica.php:101 -msgid "the bugtracker at github" -msgstr "de github bugtracker" - -#: src/Module/Friendica.php:102 -msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -msgstr "Suggesties, appreciatie, enz. - aub stuur een email naar \"info\" at \"friendi - dot - ca" - -#: src/Module/Group.php:61 -msgid "Could not create group." -msgstr "Kon de groep niet aanmaken." - -#: src/Module/Group.php:72 src/Module/Group.php:214 src/Module/Group.php:238 -msgid "Group not found." -msgstr "Groep niet gevonden." - -#: src/Module/Group.php:78 -msgid "Group name was not changed." -msgstr "" - -#: src/Module/Group.php:100 -msgid "Unknown group." -msgstr "Onbekende groep." - -#: src/Module/Group.php:109 -msgid "Contact is deleted." -msgstr "Contact is verwijderd." - -#: src/Module/Group.php:115 -msgid "Unable to add the contact to the group." -msgstr "Kan het contact niet aan de groep toevoegen." - -#: src/Module/Group.php:118 -msgid "Contact successfully added to group." -msgstr "Contact succesvol aan de groep toegevoegd." - -#: src/Module/Group.php:122 -msgid "Unable to remove the contact from the group." -msgstr "Kan het contact niet uit de groep verwijderen." - -#: src/Module/Group.php:125 -msgid "Contact successfully removed from group." -msgstr "Contact succesvol verwijderd uit groep." - -#: src/Module/Group.php:128 -msgid "Unknown group command." -msgstr "Onbekende groepsopdracht." - -#: src/Module/Group.php:131 -msgid "Bad request." -msgstr "Verkeerde aanvraag." - -#: src/Module/Group.php:170 -msgid "Save Group" -msgstr "Bewaar groep" - -#: src/Module/Group.php:171 -msgid "Filter" -msgstr "filter" - -#: src/Module/Group.php:177 -msgid "Create a group of contacts/friends." -msgstr "Maak een groep contacten/vrienden aan." - -#: src/Module/Group.php:219 -msgid "Unable to remove group." -msgstr "Niet in staat om groep te verwijderen." - -#: src/Module/Group.php:270 -msgid "Delete Group" -msgstr "Verwijder Groep" - -#: src/Module/Group.php:280 -msgid "Edit Group Name" -msgstr "Bewerk Groep Naam" - -#: src/Module/Group.php:290 -msgid "Members" -msgstr "Leden" - -#: src/Module/Group.php:293 -msgid "Group is empty" -msgstr "De groep is leeg" - -#: src/Module/Group.php:306 -msgid "Remove contact from group" -msgstr "Verwijder contact uit de groep" - -#: src/Module/Group.php:326 -msgid "Click on a contact to add or remove." -msgstr "Klik op een contact om het toe te voegen of te verwijderen." - -#: src/Module/Group.php:340 -msgid "Add contact to group" -msgstr "Voeg contact toe aan de groep" - -#: src/Module/HoverCard.php:47 -msgid "No profile" -msgstr "Geen profiel" - -#: src/Module/Invite.php:55 -msgid "Total invitation limit exceeded." -msgstr "Totale uitnodigingslimiet overschreden." - -#: src/Module/Invite.php:78 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Geen geldig e-mailadres." - -#: src/Module/Invite.php:105 -msgid "Please join us on Friendica" -msgstr "Kom bij ons op Friendica" - -#: src/Module/Invite.php:114 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website." - -#: src/Module/Invite.php:118 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Aflevering van bericht mislukt." - -#: src/Module/Invite.php:122 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d bericht verzonden." -msgstr[1] "%d berichten verzonden." - -#: src/Module/Invite.php:140 -msgid "You have no more invitations available" -msgstr "Je kunt geen uitnodigingen meer sturen" - -#: src/Module/Invite.php:147 -#, php-format +#: src/Module/User/Import.php:123 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 "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken." +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Om je account te exporteren, ga naar \"Instellingen->Exporteer je persoonlijke data\" en selecteer \"Exporteer account\"" -#: src/Module/Invite.php:149 +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "Fout bij decoderen van het account bestand" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Fout! Geen versie data in het bestand! Is dit wel een Friendica account bestand?" + +#: src/Module/User/Import.php:230 #, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website." +msgid "User '%s' already exists on this server!" +msgstr "Gebruiker '%s' bestaat al op deze server!" -#: src/Module/Invite.php:150 +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "Fout bij het aanmaken van de gebruiker" + +#: src/Module/User/Import.php:316 #, 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 "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten." +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contact werd niet geïmporteerd" +msgstr[1] "%d contacten werden niet geïmporteerd" -#: src/Module/Invite.php:154 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen." +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "Fout bij het aanmaken van het gebruikersprofiel" -#: 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 "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken." - -#: src/Module/Invite.php:156 -#, php-format -msgid "To accept this invitation, please visit and register at %s." -msgstr "Om deze uitnodiging te accepteren, ga naar en registreer op %s." - -#: src/Module/Invite.php:164 -msgid "Send invitations" -msgstr "Verstuur uitnodigingen" - -#: src/Module/Invite.php:165 -msgid "Enter email addresses, one per line:" -msgstr "Vul e-mailadressen in, één per lijn:" - -#: 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 "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen." - -#: src/Module/Invite.php:171 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Je zult deze uitnodigingscode moeten invullen: $invite_code" - -#: src/Module/Invite.php:171 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:" - -#: src/Module/Invite.php:173 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendi.ca" -msgstr "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendi.ca/ bezoeken" - -#: src/Module/PermissionTooltip.php:24 -#, php-format -msgid "Wrong type \"%s\", expected one of: %s" -msgstr "" - -#: src/Module/PermissionTooltip.php:37 -msgid "Model not found" -msgstr "" - -#: src/Module/PermissionTooltip.php:59 -msgid "Remote privacy information not available." -msgstr "Privacyinformatie op afstand niet beschikbaar." - -#: src/Module/PermissionTooltip.php:70 -msgid "Visible to:" -msgstr "Zichtbaar voor:" - -#: src/Module/Photo.php:87 -#, php-format -msgid "The Photo with id %s is not available." -msgstr "De foto met id %s is niet beschikbaar" - -#: src/Module/Photo.php:102 -#, php-format -msgid "Invalid photo with id %s." -msgstr "Ongeldige foto met ID %s" - -#: src/Module/RemoteFollow.php:67 -msgid "The provided profile link doesn't seem to be valid" -msgstr "De verstrekte profiellink lijkt niet geldig te zijn" - -#: 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 "Geef hier je Webfinger adres (gebruiker@domain.tld) of profiel URL. Als dit niet wordt ondersteund door je systeem, dan dien je in te schrijven op %s of %s direct op je systeem." +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord" #: src/Module/Welcome.php:44 msgid "Welcome to Friendica" @@ -9531,15 +11256,15 @@ msgid "" msgstr "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden." #: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "Groepeer je contacten" +msgid "Add Your Contacts To Circle" +msgstr "" #: 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 "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen gespreksgroepen indelen vanuit de zijbalk van je 'Contacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. " +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "" #: src/Module/Welcome.php:80 msgid "Why Aren't My Posts Public?" @@ -9566,945 +11291,1157 @@ msgid "" " features and resources." msgstr "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma." -#: src/Module/Install.php:177 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica Communicatie Server - Setup" - -#: src/Module/Install.php:188 -msgid "System check" -msgstr "Systeemcontrole" - -#: src/Module/Install.php:193 -msgid "Check again" -msgstr "Controleer opnieuw" - -#: src/Module/Install.php:208 -msgid "Base settings" -msgstr "Basisinstellingen" - -#: src/Module/Install.php:215 -msgid "Host name" -msgstr "Host naam" - -#: src/Module/Install.php:217 -msgid "" -"Overwrite this field in case the determinated hostname isn't right, " -"otherweise leave it as is." -msgstr "Overschrijf dit veld voor het geval de bepaalde hostnaam niet juist is, laat het anders zoals het is." - -#: src/Module/Install.php:220 -msgid "Base path to installation" -msgstr "Basispad voor installatie" - -#: src/Module/Install.php:222 -msgid "" -"If the system cannot detect the correct path to your installation, enter the" -" correct path here. This setting should only be set if you are using a " -"restricted system and symbolic links to your webroot." -msgstr "Als het systeem het correcte pad naar je installatie niet kan detecteren, geef hier dan het correcte pad in. Deze instelling zou alleen geconfigureerd moeten worden als je een systeem met restricties hebt en symbolische links naar je webroot." - -#: src/Module/Install.php:225 -msgid "Sub path of the URL" -msgstr "Subpad van de URL" - -#: src/Module/Install.php:227 -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 "Overschrijf dit veld voor het geval de bepaling van het subpad niet juist is, laat het anders zoals het is. Als u dit veld leeg laat, betekent dit dat de installatie zich op de basis-URL bevindt zonder subpad." - -#: src/Module/Install.php:238 -msgid "Database connection" -msgstr "Verbinding met database" - -#: src/Module/Install.php:239 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken." - -#: src/Module/Install.php:240 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. " - -#: src/Module/Install.php:241 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat." - -#: src/Module/Install.php:248 -msgid "Database Server Name" -msgstr "Servernaam database" - -#: src/Module/Install.php:253 -msgid "Database Login Name" -msgstr "Gebruikersnaam database" - -#: src/Module/Install.php:259 -msgid "Database Login Password" -msgstr "Wachtwoord database" - -#: src/Module/Install.php:261 -msgid "For security reasons the password must not be empty" -msgstr "Om veiligheidsreden mag het wachtwoord niet leeg zijn" - -#: src/Module/Install.php:264 -msgid "Database Name" -msgstr "Naam database" - -#: src/Module/Install.php:268 src/Module/Install.php:297 -msgid "Please select a default timezone for your website" -msgstr "Selecteer een standaard tijdzone voor je website" - -#: src/Module/Install.php:282 -msgid "Site settings" -msgstr "Website-instellingen" - -#: src/Module/Install.php:292 -msgid "Site administrator email address" -msgstr "E-mailadres van de websitebeheerder" - -#: src/Module/Install.php:294 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken." - -#: src/Module/Install.php:301 -msgid "System Language:" -msgstr "Systeem taal:" - -#: src/Module/Install.php:303 -msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." -msgstr "Stel de standaard taal in voor je Friendica installatie interface en emails." - -#: src/Module/Install.php:315 -msgid "Your Friendica site database has been installed." -msgstr "De database van je Friendica-website is geïnstalleerd." - -#: src/Module/Install.php:323 -msgid "Installation finished" -msgstr "Installaitie beëindigd" - -#: src/Module/Install.php:343 -msgid "

    What next

    " -msgstr "

    Wat nu

    " - -#: src/Module/Install.php:344 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"worker." -msgstr "BELANGRIJK: Je zal [manueel] een geplande taak moeten opzetten voor de worker." - -#: src/Module/Install.php:345 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Zie het bestand \"INSTALL.txt\"." - -#: src/Module/Install.php:347 -#, 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 "Go naar je nieuwe Friendica node registratie pagina en registeer als nieuwe gebruiker. Vergeet niet hetzelfde email adres te gebruiken als wat je opgegeven hebt als administrator email. Dit zal je toelaten om het site administratie paneel te openen." - -#: src/Module/Contact.php:94 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "%d contact bewerkt." -msgstr[1] "%d contacten bewerkt." - -#: src/Module/Contact.php:121 -msgid "Could not access contact record." -msgstr "Kon geen toegang krijgen tot de contactgegevens" - -#: src/Module/Contact.php:409 -msgid "Contact has been blocked" -msgstr "Contact is geblokkeerd" - -#: src/Module/Contact.php:409 -msgid "Contact has been unblocked" -msgstr "Contact is gedeblokkeerd" - -#: src/Module/Contact.php:419 -msgid "Contact has been ignored" -msgstr "Contact wordt genegeerd" - -#: src/Module/Contact.php:419 -msgid "Contact has been unignored" -msgstr "Contact wordt niet meer genegeerd" - -#: src/Module/Contact.php:429 -msgid "Contact has been archived" -msgstr "Contact is gearchiveerd" - -#: src/Module/Contact.php:429 -msgid "Contact has been unarchived" -msgstr "Contact is niet meer gearchiveerd" - -#: src/Module/Contact.php:453 -msgid "Drop contact" -msgstr "Contact vergeten" - -#: src/Module/Contact.php:456 src/Module/Contact.php:847 -msgid "Do you really want to delete this contact?" -msgstr "Wil je echt dit contact verwijderen?" - -#: src/Module/Contact.php:470 -msgid "Contact has been removed." -msgstr "Contact is verwijderd." - -#: src/Module/Contact.php:498 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Je bent wederzijds bevriend met %s" - -#: src/Module/Contact.php:502 -#, php-format -msgid "You are sharing with %s" -msgstr "Je deelt met %s" - -#: src/Module/Contact.php:506 -#, php-format -msgid "%s is sharing with you" -msgstr "%s deelt met jou" - -#: src/Module/Contact.php:530 -msgid "Private communications are not available for this contact." -msgstr "Privécommunicatie met dit contact is niet beschikbaar." - -#: src/Module/Contact.php:532 -msgid "Never" -msgstr "Nooit" - -#: src/Module/Contact.php:535 -msgid "(Update was successful)" -msgstr "(Wijziging is geslaagd)" - -#: src/Module/Contact.php:535 -msgid "(Update was not successful)" -msgstr "(Wijziging is niet geslaagd)" - -#: src/Module/Contact.php:537 src/Module/Contact.php:1103 -msgid "Suggest friends" -msgstr "Stel vrienden voor" - -#: src/Module/Contact.php:541 -#, php-format -msgid "Network type: %s" -msgstr "Netwerk type: %s" - -#: src/Module/Contact.php:546 -msgid "Communications lost with this contact!" -msgstr "Communicatie met dit contact is verbroken!" - -#: src/Module/Contact.php:552 -msgid "Fetch further information for feeds" -msgstr "Haal meer informatie op van de feeds" - -#: src/Module/Contact.php:554 -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 "Haal informatie op zoals preview beelden, titel en teaser van het feed item. Je kan dit activeren als de feed niet veel tekst bevat. Sleutelwoorden worden opgepikt uit de meta header in het feed item en worden gepost als hash tags." - -#: src/Module/Contact.php:557 -msgid "Fetch information" -msgstr "Haal informatie op" - -#: src/Module/Contact.php:558 -msgid "Fetch keywords" -msgstr "Haal sleutelwoorden op" - -#: src/Module/Contact.php:559 -msgid "Fetch information and keywords" -msgstr "Haal informatie en sleutelwoorden op" - -#: src/Module/Contact.php:573 -msgid "Contact Information / Notes" -msgstr "Contactinformatie / aantekeningen" - -#: src/Module/Contact.php:574 -msgid "Contact Settings" -msgstr "Contact instellingen" - -#: src/Module/Contact.php:582 -msgid "Contact" -msgstr "Contact" - -#: src/Module/Contact.php:586 -msgid "Their personal note" -msgstr "Hun persoonlijke nota" - -#: src/Module/Contact.php:588 -msgid "Edit contact notes" -msgstr "Wijzig aantekeningen over dit contact" - -#: src/Module/Contact.php:591 src/Module/Contact.php:1071 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Bekijk het profiel van %s [%s]" - -#: src/Module/Contact.php:592 -msgid "Block/Unblock contact" -msgstr "Blokkeer/deblokkeer contact" - -#: src/Module/Contact.php:593 -msgid "Ignore contact" -msgstr "Negeer contact" - -#: src/Module/Contact.php:594 -msgid "View conversations" -msgstr "Toon gesprekken" - -#: src/Module/Contact.php:599 -msgid "Last update:" -msgstr "Laatste wijziging:" - -#: src/Module/Contact.php:601 -msgid "Update public posts" -msgstr "Openbare posts aanpassen" - -#: src/Module/Contact.php:603 src/Module/Contact.php:1113 -msgid "Update now" -msgstr "Wijzig nu" - -#: src/Module/Contact.php:606 src/Module/Contact.php:852 -#: src/Module/Contact.php:1140 -msgid "Unignore" -msgstr "Negeer niet meer" - -#: src/Module/Contact.php:610 -msgid "Currently blocked" -msgstr "Op dit moment geblokkeerd" - -#: src/Module/Contact.php:611 -msgid "Currently ignored" -msgstr "Op dit moment genegeerd" - -#: src/Module/Contact.php:612 -msgid "Currently archived" -msgstr "Op dit moment gearchiveerd" - -#: src/Module/Contact.php:613 -msgid "Awaiting connection acknowledge" -msgstr "Wait op bevestiging van de connectie" - -#: src/Module/Contact.php:614 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn" - -#: src/Module/Contact.php:615 -msgid "Notification for new posts" -msgstr "Meldingen voor nieuwe berichten" - -#: src/Module/Contact.php:615 -msgid "Send a notification of every new post of this contact" -msgstr "Stuur een notificatie voor elk bericht van dit contact" - -#: src/Module/Contact.php:617 -msgid "Keyword Deny List" +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +msgid "{0} wants to follow you" msgstr "" -#: src/Module/Contact.php:617 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Door komma's gescheiden lijst van sleutelwoorden die niet in hashtags mogen omgezet worden, wanneer \"Haal informatie en sleutelwoorden op\" is geselecteerd" - -#: src/Module/Contact.php:762 -msgid "Show all contacts" -msgstr "Toon alle contacten" - -#: src/Module/Contact.php:767 src/Module/Contact.php:827 -msgid "Pending" -msgstr "In behandeling" - -#: src/Module/Contact.php:770 -msgid "Only show pending contacts" -msgstr "Toon alleen contacten in behandeling" - -#: src/Module/Contact.php:775 src/Module/Contact.php:828 -msgid "Blocked" -msgstr "Geblokkeerd" - -#: src/Module/Contact.php:778 -msgid "Only show blocked contacts" -msgstr "Toon alleen geblokkeerde contacten" - -#: src/Module/Contact.php:783 src/Module/Contact.php:830 -msgid "Ignored" -msgstr "Genegeerd" - -#: src/Module/Contact.php:786 -msgid "Only show ignored contacts" -msgstr "Toon alleen genegeerde contacten" - -#: src/Module/Contact.php:791 src/Module/Contact.php:831 -msgid "Archived" -msgstr "Gearchiveerd" - -#: src/Module/Contact.php:794 -msgid "Only show archived contacts" -msgstr "Toon alleen gearchiveerde contacten" - -#: src/Module/Contact.php:799 src/Module/Contact.php:829 -msgid "Hidden" -msgstr "Verborgen" - -#: src/Module/Contact.php:802 -msgid "Only show hidden contacts" -msgstr "Toon alleen verborgen contacten" - -#: src/Module/Contact.php:810 -msgid "Organize your contact groups" -msgstr "Organiseer je contact groepen" - -#: src/Module/Contact.php:842 -msgid "Search your contacts" -msgstr "Doorzoek je contacten" - -#: src/Module/Contact.php:853 src/Module/Contact.php:1149 -msgid "Archive" -msgstr "Archiveer" - -#: src/Module/Contact.php:853 src/Module/Contact.php:1149 -msgid "Unarchive" -msgstr "Archiveer niet meer" - -#: src/Module/Contact.php:856 -msgid "Batch Actions" -msgstr "Bulk Acties" - -#: src/Module/Contact.php:891 -msgid "Conversations started by this contact" -msgstr "Gesprekken gestart door dit contact" - -#: src/Module/Contact.php:896 -msgid "Posts and Comments" -msgstr "Berichten en reacties" - -#: src/Module/Contact.php:914 -msgid "View all known contacts" +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +msgid "{0} has started following you" msgstr "" -#: src/Module/Contact.php:924 -msgid "Advanced Contact Settings" -msgstr "Geavanceerde instellingen voor contacten" +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#, php-format +msgid "%s liked %s's post" +msgstr "%s vond het bericht van %s leuk" -#: src/Module/Contact.php:1030 -msgid "Mutual Friendship" -msgstr "Wederzijdse vriendschap" +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s vond het bericht van %s niet leuk" -#: src/Module/Contact.php:1034 -msgid "is a fan of yours" -msgstr "Is een fan van jou" +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#, php-format +msgid "%s is attending %s's event" +msgstr "%s woont het event van %s bij" -#: src/Module/Contact.php:1038 -msgid "you are a fan of" -msgstr "Jij bent een fan van" +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#, php-format +msgid "%s is not attending %s's event" +msgstr "%s woont het event van %s niet bij" -#: src/Module/Contact.php:1056 -msgid "Pending outgoing contact request" -msgstr "In afwachting van uitgaande contactaanvraag" +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#, php-format +msgid "%s may attending %s's event" +msgstr "%s kan aanwezig zijn op %s's gebeurtenis" -#: src/Module/Contact.php:1058 -msgid "Pending incoming contact request" -msgstr "In afwachting van inkomende contactaanvraag" +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s is nu bevriend met %s" -#: src/Module/Contact.php:1134 -msgid "Toggle Blocked status" -msgstr "Schakel geblokkeerde status" +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s gaf een reactie op het bericht van %s" -#: src/Module/Contact.php:1142 -msgid "Toggle Ignored status" -msgstr "Schakel negeerstatus" +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#, php-format +msgid "%s created a new post" +msgstr "%s schreef een nieuw bericht" -#: src/Module/Contact.php:1151 -msgid "Toggle Archive status" -msgstr "Schakel archiveringsstatus" +#: src/Navigation/Notifications/Factory/Introduction.php:133 +msgid "Friend Suggestion" +msgstr "Vriendschapsvoorstel" -#: src/Module/Contact.php:1159 -msgid "Delete contact" -msgstr "Verwijder contact" +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "Friend/Connect Request" +msgstr "Vriendschapsverzoek" -#: src/Object/EMail/ItemCCEMail.php:39 +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "New Follower" +msgstr "Nieuwe Volger" + +#: src/Navigation/Notifications/Factory/Notification.php:134 +#, php-format +msgid "%1$s wants to follow you" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:136 +#, php-format +msgid "%1$s has started following you" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:208 +#, php-format +msgid "%1$s liked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:211 +#, php-format +msgid "%1$s liked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:218 +#, php-format +msgid "%1$s disliked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:221 +#, php-format +msgid "%1$s disliked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:228 +#, php-format +msgid "%1$s shared your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 +#, php-format +msgid "%1$s shared your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:235 +#: src/Navigation/Notifications/Factory/Notification.php:305 +#, php-format +msgid "%1$s shared the post %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:237 +#: src/Navigation/Notifications/Factory/Notification.php:307 +#, php-format +msgid "%1$s shared a post from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:239 +#: src/Navigation/Notifications/Factory/Notification.php:309 +#, php-format +msgid "%1$s shared the post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:311 +#, php-format +msgid "%1$s shared a post" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:249 +#, php-format +msgid "%1$s wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:256 +#, php-format +msgid "%1$s does not want to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:263 +#, php-format +msgid "%1$s maybe wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:270 +#, php-format +msgid "%1$s tagged you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:274 +#, php-format +msgid "%1$s replied to you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:278 +#, php-format +msgid "%1$s commented in your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:282 +#, php-format +msgid "%1$s commented on your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:289 +#, php-format +msgid "%1$s commented in their thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:291 +#, php-format +msgid "%1$s commented in their thread" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:293 +#, php-format +msgid "%1$s commented in the thread %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:295 +#, php-format +msgid "%1$s commented in the thread from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:300 +#, php-format +msgid "%1$s commented on your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 +msgid "[Friendica:Notify]" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:293 +#, php-format +msgid "%s New mail received at %s" +msgstr "%s Nieuw bericht ontvangen op %s" + +#: src/Navigation/Notifications/Repository/Notify.php:295 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s sent you a new private message at %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:296 +msgid "a private message" +msgstr "een prive bericht" + +#: src/Navigation/Notifications/Repository/Notify.php:296 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s stuurde jou %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:298 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden." + +#: src/Navigation/Notifications/Repository/Notify.php:328 +#, php-format +msgid "%1$s commented on %2$s's %3$s %4$s" +msgstr "%1$s heeft een opmerking geplaatst op %2$s's %3$s %4$s" + +#: src/Navigation/Notifications/Repository/Notify.php:333 +#, php-format +msgid "%1$s commented on your %2$s %3$s" +msgstr "%1$s heeft een opmerking geplaatst op jou %2$s %3$s" + +#: src/Navigation/Notifications/Repository/Notify.php:337 +#, php-format +msgid "%1$s commented on their %2$s %3$s" +msgstr "%1$s heeft een opmering geschreven op hun %2$s %3$s" + +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 +#, php-format +msgid "%1$s Comment to conversation #%2$d by %3$s" +msgstr "%1$s Opmerking bij conversatie #%2$d door %3$s" + +#: src/Navigation/Notifications/Repository/Notify.php:343 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s gaf een reactie op een bericht/gesprek die jij volgt." + +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Bezoek %s om het gesprek te bekijken en/of te beantwoorden." + +#: src/Navigation/Notifications/Repository/Notify.php:354 +#, php-format +msgid "%s %s posted to your profile wall" +msgstr "%s %s heeft op je profiel wall gepost" + +#: src/Navigation/Notifications/Repository/Notify.php:356 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$splaatste een bericht op je tijdlijn op %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:357 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s schreef op [url=%2$s]jouw tijdlijn[/url]" + +#: src/Navigation/Notifications/Repository/Notify.php:370 +#, php-format +msgid "%s Introduction received" +msgstr "%s Introductie ontvangen" + +#: src/Navigation/Notifications/Repository/Notify.php:372 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:373 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Je kunt hun profiel bezoeken op %s" + +#: src/Navigation/Notifications/Repository/Notify.php:380 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Bezoek %s om het verzoek goed of af te keuren." + +#: src/Navigation/Notifications/Repository/Notify.php:387 +#, php-format +msgid "%s A new person is sharing with you" +msgstr "%s Een nieuwe persoon deelt met je" + +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s deelt met jou in %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:397 +#, php-format +msgid "%s You have a new follower" +msgstr "%s Je hebt een nieuwe volger" + +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "Je hebt een nieuwe volger op %2$s: %1$s" + +#: src/Navigation/Notifications/Repository/Notify.php:413 +#, php-format +msgid "%s Friend suggestion received" +msgstr "%s Vriend suggestie ontvangen" + +#: src/Navigation/Notifications/Repository/Notify.php:415 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Je kreeg een vriendschapssuggestie van '%1$s' op %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:416 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Je kreeg een [url=%1$s]vriendschapssuggestie[/url] voor %2$s op %3$s." + +#: src/Navigation/Notifications/Repository/Notify.php:422 +msgid "Name:" +msgstr "Naam:" + +#: src/Navigation/Notifications/Repository/Notify.php:423 +msgid "Photo:" +msgstr "Foto: " + +#: src/Navigation/Notifications/Repository/Notify.php:426 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bezoek %s om de suggestie goed of af te keuren." + +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 +#, php-format +msgid "%s Connection accepted" +msgstr "%s Verbinding geaccepteerd" + +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "'%1$s' aanvaarde je contactaanvraag op %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$saanvaardde jouw [url=%1$s]contactaanvraag[/url]." + +#: src/Navigation/Notifications/Repository/Notify.php:442 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "Jullie zijn nu in contact met elkaar en kunnen statusberichten, foto's en email delen zonder beperkingen." + +#: src/Navigation/Notifications/Repository/Notify.php:444 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Bezoek alstublieft %s als je deze relatie wil wijzigen." + +#: src/Navigation/Notifications/Repository/Notify.php:457 +#, php-format +msgid "" +"'%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." +msgstr "'%1$s' koos om je te accepteren als fan, wat sommige communicatievormen beperkt - zoals privéberichten en sommige profielfuncties. Als dit een beroemdheid- of groepspagina is, werd dit automatisch toegepast." + +#: src/Navigation/Notifications/Repository/Notify.php:459 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future." +msgstr "'%1$s' kan er later voor kiezen om deze beperkingen aan te passen." + +#: src/Navigation/Notifications/Repository/Notify.php:461 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Bezoek %s wanneer je deze relatie wil wijzigen." + +#: src/Navigation/Notifications/Repository/Notify.php:471 +msgid "registration request" +msgstr "registratie verzoek" + +#: src/Navigation/Notifications/Repository/Notify.php:473 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "Je kreeg een registratieaanvraag van '%1$s' op %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:474 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "Je kreeg een [url=%1$s]registratieaanvraag[/url] van %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 +#, php-format +msgid "" +"Full Name:\t%s\n" +"Site Location:\t%s\n" +"Login Name:\t%s (%s)" +msgstr "Volledige naam:\t%s\nAdres van de site:\t%s\nLoginnaam:\t%s (%s)" + +#: src/Navigation/Notifications/Repository/Notify.php:485 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Bezoek %s om de aanvraag goed of af te keuren." + +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:780 +#, php-format +msgid "%s %s tagged you" +msgstr "%s %s heeft jou getagged" + +#: src/Navigation/Notifications/Repository/Notify.php:783 +#, php-format +msgid "%s %s shared a new post" +msgstr "%s %s deelde een nieuwe post" + +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "" + +#: src/Object/EMail/ItemCCEMail.php:42 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk." -#: src/Object/EMail/ItemCCEMail.php:41 +#: src/Object/EMail/ItemCCEMail.php:44 #, php-format msgid "You may visit them online at %s" msgstr "Je kunt ze online bezoeken op %s" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:45 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen." -#: src/Object/EMail/ItemCCEMail.php:46 +#: src/Object/EMail/ItemCCEMail.php:49 #, php-format msgid "%s posted an update." msgstr "%s heeft een wijziging geplaatst." -#: src/Object/Post.php:147 -msgid "This entry was edited" -msgstr "Deze entry werd bewerkt" - -#: src/Object/Post.php:174 +#: src/Object/Post.php:138 msgid "Private Message" msgstr "Privébericht" -#: src/Object/Post.php:213 -msgid "pinned item" +#: src/Object/Post.php:142 +msgid "Public Message" msgstr "" -#: src/Object/Post.php:218 -msgid "Delete locally" -msgstr "Verwijder lokaal" +#: src/Object/Post.php:146 +msgid "Unlisted Message" +msgstr "" -#: src/Object/Post.php:221 +#: src/Object/Post.php:181 +msgid "This entry was edited" +msgstr "Deze entry werd bewerkt" + +#: src/Object/Post.php:209 +msgid "Connector Message" +msgstr "" + +#: src/Object/Post.php:225 src/Object/Post.php:227 +msgid "Edit" +msgstr "Bewerken" + +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Verwijder globaal" -#: src/Object/Post.php:221 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Verwijder lokaal" -#: src/Object/Post.php:235 -msgid "save to folder" -msgstr "Bewaren in map" +#: src/Object/Post.php:268 +#, php-format +msgid "Block %s" +msgstr "" -#: src/Object/Post.php:270 +#: src/Object/Post.php:273 +#, php-format +msgid "Ignore %s" +msgstr "" + +#: src/Object/Post.php:278 +#, php-format +msgid "Collapse %s" +msgstr "" + +#: src/Object/Post.php:282 +msgid "Report post" +msgstr "" + +#: src/Object/Post.php:293 +msgid "Save to folder" +msgstr "" + +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Ik zal er zijn" -#: src/Object/Post.php:270 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Ik zal er niet zijn" -#: src/Object/Post.php:270 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Ik ga misschien" -#: src/Object/Post.php:300 -msgid "ignore thread" -msgstr "Negeer gesprek" - -#: src/Object/Post.php:301 -msgid "unignore thread" -msgstr "Stop met gesprek te negeren" - -#: src/Object/Post.php:302 -msgid "toggle ignore status" -msgstr "verwissel negeer status" - -#: src/Object/Post.php:314 -msgid "pin" +#: src/Object/Post.php:363 +msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:315 -msgid "unpin" +#: src/Object/Post.php:364 +msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:316 -msgid "toggle pin status" +#: src/Object/Post.php:365 +msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:319 -msgid "pinned" +#: src/Object/Post.php:375 +msgid "Add star" msgstr "" -#: src/Object/Post.php:326 -msgid "add star" -msgstr "ster toevoegen" +#: src/Object/Post.php:376 +msgid "Remove star" +msgstr "" -#: src/Object/Post.php:327 -msgid "remove star" -msgstr "ster verwijderen" +#: src/Object/Post.php:377 +msgid "Toggle star status" +msgstr "" -#: src/Object/Post.php:328 -msgid "toggle star status" -msgstr "ster toevoegen of verwijderen" +#: src/Object/Post.php:388 +msgid "Pin" +msgstr "" -#: src/Object/Post.php:331 -msgid "starred" -msgstr "met ster" +#: src/Object/Post.php:389 +msgid "Unpin" +msgstr "" -#: src/Object/Post.php:335 -msgid "add tag" -msgstr "label toevoegen" +#: src/Object/Post.php:390 +msgid "Toggle pin status" +msgstr "" -#: src/Object/Post.php:345 -msgid "like" -msgstr "leuk" +#: src/Object/Post.php:393 +msgid "Pinned" +msgstr "" -#: src/Object/Post.php:346 -msgid "dislike" -msgstr "niet leuk" +#: src/Object/Post.php:398 +msgid "Add tag" +msgstr "" -#: src/Object/Post.php:348 -msgid "Share this" -msgstr "Delen" +#: src/Object/Post.php:411 +msgid "Quote share this" +msgstr "" -#: src/Object/Post.php:348 -msgid "share" -msgstr "Delen" +#: src/Object/Post.php:411 +msgid "Quote Share" +msgstr "" -#: src/Object/Post.php:400 +#: src/Object/Post.php:414 +msgid "Reshare this" +msgstr "" + +#: src/Object/Post.php:414 +msgid "Reshare" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Cancel your Reshare" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Unshare" +msgstr "" + +#: src/Object/Post.php:466 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:405 +#: src/Object/Post.php:472 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:405 -msgid "remote comment" +#: src/Object/Post.php:472 +msgid "Remote comment" msgstr "" -#: src/Object/Post.php:417 -msgid "Pushed" +#: src/Object/Post.php:494 +msgid "Share via ..." msgstr "" -#: src/Object/Post.php:417 -msgid "Pulled" +#: src/Object/Post.php:494 +msgid "Share via external services" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:523 msgid "to" msgstr "aan" -#: src/Object/Post.php:445 +#: src/Object/Post.php:524 msgid "via" msgstr "via" -#: src/Object/Post.php:446 +#: src/Object/Post.php:525 msgid "Wall-to-Wall" msgstr "wall-to-wall" -#: src/Object/Post.php:447 +#: src/Object/Post.php:526 msgid "via Wall-To-Wall:" msgstr "via wall-to-wall" -#: src/Object/Post.php:483 +#: src/Object/Post.php:573 #, php-format msgid "Reply to %s" msgstr "Antwoord aan %s" -#: src/Object/Post.php:486 +#: src/Object/Post.php:576 msgid "More" msgstr "Meer" -#: src/Object/Post.php:503 +#: src/Object/Post.php:595 msgid "Notifier task is pending" msgstr "Meldingstaak is in behandeling" -#: src/Object/Post.php:504 +#: src/Object/Post.php:596 msgid "Delivery to remote servers is pending" msgstr "Levering aan externe servers is in behandeling" -#: src/Object/Post.php:505 +#: src/Object/Post.php:597 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:598 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:507 +#: src/Object/Post.php:599 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:527 +#: src/Object/Post.php:619 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d reactie" msgstr[1] "%d reacties" -#: src/Object/Post.php:528 +#: src/Object/Post.php:620 msgid "Show more" msgstr "Toon meer" -#: src/Object/Post.php:529 +#: src/Object/Post.php:621 msgid "Show fewer" msgstr "Toon minder" -#: src/App/Authentication.php:210 src/App/Authentication.php:262 +#: src/Object/Post.php:657 +#, php-format +msgid "Reshared by: %s" +msgstr "" + +#: src/Object/Post.php:662 +#, php-format +msgid "Viewed by: %s" +msgstr "" + +#: src/Object/Post.php:667 +#, php-format +msgid "Liked by: %s" +msgstr "" + +#: src/Object/Post.php:672 +#, php-format +msgid "Disliked by: %s" +msgstr "" + +#: src/Object/Post.php:677 +#, php-format +msgid "Attended by: %s" +msgstr "" + +#: src/Object/Post.php:682 +#, php-format +msgid "Maybe attended by: %s" +msgstr "" + +#: src/Object/Post.php:687 +#, php-format +msgid "Not attended by: %s" +msgstr "" + +#: src/Object/Post.php:692 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "" + +#: src/Protocol/OStatus.php:1390 +#, php-format +msgid "%s is now following %s." +msgstr "%s volgt nu %s." + +#: src/Protocol/OStatus.php:1391 +msgid "following" +msgstr "volgend" + +#: src/Protocol/OStatus.php:1394 +#, php-format +msgid "%s stopped following %s." +msgstr "%s stopte %s te volgen." + +#: src/Protocol/OStatus.php:1395 +msgid "stopped following" +msgstr "is gestopt met volgen" + +#: src/Render/FriendicaSmartyEngine.php:56 +#, php-format +msgid "The folder %s must be writable by webserver." +msgstr "" + +#: src/Security/Authentication.php:227 msgid "Login failed." msgstr "Login mislukt." -#: src/App/Authentication.php:273 +#: src/Security/Authentication.php:272 msgid "Login failed. Please check your credentials." msgstr "Aanmelden mislukt. Controleer uw inloggegevens." -#: src/App/Authentication.php:389 +#: src/Security/Authentication.php:391 #, php-format msgid "Welcome %s" msgstr "Welkom %s" -#: src/App/Authentication.php:390 +#: src/Security/Authentication.php:392 msgid "Please upload a profile photo." msgstr "Upload een profielfoto." -#: src/App/Module.php:240 -msgid "You must be logged in to use addons. " -msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. " - -#: src/App/Page.php:249 -msgid "Delete this item?" -msgstr "Dit item verwijderen?" - -#: src/App/Page.php:297 -msgid "toggle mobile" -msgstr "mobiel thema omwisselen" - -#: src/App/Router.php:224 -#, php-format -msgid "Method not allowed for this module. Allowed method(s): %s" +#: src/Util/EMailer/MailBuilder.php:260 +msgid "Friendica Notification" msgstr "" -#: src/Factory/Notification/Introduction.php:128 -msgid "Friend Suggestion" -msgstr "Vriendschapsvoorstel" - -#: src/Factory/Notification/Introduction.php:158 -msgid "Friend/Connect Request" -msgstr "Vriendschapsverzoek" - -#: src/Factory/Notification/Introduction.php:158 -msgid "New Follower" -msgstr "Nieuwe Volger" - -#: src/Factory/Notification/Notification.php:103 +#: src/Util/EMailer/NotifyMailBuilder.php:78 +#: src/Util/EMailer/SystemMailBuilder.php:54 #, php-format -msgid "%s created a new post" -msgstr "%s schreef een nieuw bericht" - -#: src/Factory/Notification/Notification.php:104 -#: src/Factory/Notification/Notification.php:366 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s gaf een reactie op het bericht van %s" - -#: src/Factory/Notification/Notification.php:130 -#, php-format -msgid "%s liked %s's post" -msgstr "%s vond het bericht van %s leuk" - -#: src/Factory/Notification/Notification.php:141 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s vond het bericht van %s niet leuk" - -#: src/Factory/Notification/Notification.php:152 -#, php-format -msgid "%s is attending %s's event" -msgstr "%s woont het event van %s bij" - -#: src/Factory/Notification/Notification.php:163 -#, php-format -msgid "%s is not attending %s's event" -msgstr "%s woont het event van %s niet bij" - -#: src/Factory/Notification/Notification.php:174 -#, php-format -msgid "%s may attending %s's event" -msgstr "%s kan aanwezig zijn op %s's gebeurtenis" - -#: src/Factory/Notification/Notification.php:201 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s is nu bevriend met %s" - -#: src/Console/ArchiveContact.php:105 -#, php-format -msgid "Could not find any unarchived contact entry for this URL (%s)" -msgstr "Kon geen niet-gearchiveerde contacten vinden voor deze URL (%s)" - -#: src/Console/ArchiveContact.php:108 -msgid "The contact entries have been archived" -msgstr "The contacten zijn gearchiveerd" - -#: src/Console/PostUpdate.php:87 -#, php-format -msgid "Post update version number has been set to %s." -msgstr "Bericht update versie is ingesteld op %s" - -#: src/Console/PostUpdate.php:95 -msgid "Check for pending update actions." -msgstr "Controleren op uitgestelde update acties." - -#: src/Console/PostUpdate.php:97 -msgid "Done." -msgstr "Gedaan" - -#: src/Console/PostUpdate.php:99 -msgid "Execute pending post updates." -msgstr "uitgestelde bericht update acties uitvoeren" - -#: src/Console/PostUpdate.php:105 -msgid "All pending post updates are done." -msgstr "Alle uitgestelde bericht update acties zijn uitgevoerd" - -#: src/Console/User.php:158 -msgid "Enter new password: " -msgstr "Geef nieuw wachtwoord:" - -#: src/Console/User.php:193 -msgid "Enter user name: " -msgstr "Geef gebruikersnaam in:" - -#: 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 "Geef een bijnaam in:" - -#: src/Console/User.php:209 -msgid "Enter user email address: " -msgstr "Geef een gebruiker email adres in:" - -#: src/Console/User.php:217 -msgid "Enter a language (optional): " -msgstr "Geef uw taalkeuze in (optioneel):" - -#: src/Console/User.php:255 -msgid "User is not pending." -msgstr "Gebruiker is niet in behandeling." - -#: src/Console/User.php:313 -msgid "User has already been marked for deletion." -msgstr "De gebruiker is reeds gemarkeerd voor verwijdering." - -#: src/Console/User.php:318 -#, php-format -msgid "Type \"yes\" to delete %s" -msgstr "Type \"Ja\" om te wissen %s" - -#: src/Console/User.php:320 -msgid "Deletion aborted." -msgstr "Verwijdering afgebroken." - -#: src/Repository/ProfileField.php:275 -msgid "Hometown:" -msgstr "Woonplaats:" - -#: src/Repository/ProfileField.php:276 -msgid "Marital Status:" +msgid "%1$s, %2$s Administrator" msgstr "" -#: src/Repository/ProfileField.php:277 -msgid "With:" -msgstr "Met:" - -#: src/Repository/ProfileField.php:278 -msgid "Since:" -msgstr "Sinds:" - -#: src/Repository/ProfileField.php:279 -msgid "Sexual Preference:" -msgstr "Seksuele Voorkeur:" - -#: src/Repository/ProfileField.php:280 -msgid "Political Views:" -msgstr "Politieke standpunten:" - -#: src/Repository/ProfileField.php:281 -msgid "Religious Views:" -msgstr "Geloof:" - -#: src/Repository/ProfileField.php:282 -msgid "Likes:" -msgstr "Houdt van:" - -#: src/Repository/ProfileField.php:283 -msgid "Dislikes:" -msgstr "Houdt niet van:" - -#: src/Repository/ProfileField.php:284 -msgid "Title/Description:" -msgstr "Titel/Beschrijving:" - -#: src/Repository/ProfileField.php:286 -msgid "Musical interests" -msgstr "Muzikale interesses" - -#: src/Repository/ProfileField.php:287 -msgid "Books, literature" -msgstr "Boeken, literatuur" - -#: src/Repository/ProfileField.php:288 -msgid "Television" -msgstr "Televisie" - -#: src/Repository/ProfileField.php:289 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/cultuur/ontspanning" - -#: src/Repository/ProfileField.php:290 -msgid "Hobbies/Interests" -msgstr "Hobby's/Interesses" - -#: src/Repository/ProfileField.php:291 -msgid "Love/romance" -msgstr "Liefde/romance" - -#: src/Repository/ProfileField.php:292 -msgid "Work/employment" -msgstr "Werk" - -#: src/Repository/ProfileField.php:293 -msgid "School/education" -msgstr "School/opleiding" - -#: src/Repository/ProfileField.php:294 -msgid "Contact information and Social Networks" -msgstr "Contactinformatie en sociale netwerken" - -#: src/LegacyModule.php:49 +#: src/Util/EMailer/NotifyMailBuilder.php:80 +#: src/Util/EMailer/SystemMailBuilder.php:56 #, php-format -msgid "Legacy module file not found: %s" -msgstr "Legacy module bestand niet gevonden: %s" +msgid "%s Administrator" +msgstr "" -#: src/App.php:310 -msgid "No system theme config value set." -msgstr "Geen systeem thema configuratie ingesteld." +#: 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 "" -#: src/BaseModule.php:150 +#: src/Util/Temporal.php:172 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: src/Util/Temporal.php:280 +#, php-format +msgid "Time zone: %s Change in Settings" +msgstr "" + +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +msgid "never" +msgstr "" + +#: src/Util/Temporal.php:343 +msgid "less than a second ago" +msgstr "" + +#: src/Util/Temporal.php:352 +msgid "year" +msgstr "" + +#: src/Util/Temporal.php:352 +msgid "years" +msgstr "" + +#: src/Util/Temporal.php:353 +msgid "months" +msgstr "" + +#: src/Util/Temporal.php:354 +msgid "weeks" +msgstr "" + +#: src/Util/Temporal.php:355 +msgid "days" +msgstr "" + +#: src/Util/Temporal.php:356 +msgid "hour" +msgstr "" + +#: src/Util/Temporal.php:356 +msgid "hours" +msgstr "" + +#: src/Util/Temporal.php:357 +msgid "minute" +msgstr "" + +#: src/Util/Temporal.php:357 +msgid "minutes" +msgstr "" + +#: src/Util/Temporal.php:358 +msgid "second" +msgstr "" + +#: src/Util/Temporal.php:358 +msgid "seconds" +msgstr "" + +#: src/Util/Temporal.php:367 +#, php-format +msgid "in %1$d %2$s" +msgstr "" + +#: src/Util/Temporal.php:370 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: src/Worker/PushSubscription.php:110 +msgid "Notification from Friendica" +msgstr "" + +#: src/Worker/PushSubscription.php:111 +msgid "Empty Post" +msgstr "" + +#: view/theme/duepuntozero/config.php:68 +msgid "default" +msgstr "" + +#: view/theme/duepuntozero/config.php:69 +msgid "greenzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:70 +msgid "purplezero" +msgstr "" + +#: view/theme/duepuntozero/config.php:71 +msgid "easterbunny" +msgstr "" + +#: view/theme/duepuntozero/config.php:72 +msgid "darkzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:73 +msgid "comix" +msgstr "" + +#: view/theme/duepuntozero/config.php:74 +msgid "slackr" +msgstr "" + +#: view/theme/duepuntozero/config.php:87 +msgid "Variations" +msgstr "" + +#: view/theme/frio/config.php:153 +msgid "Light (Accented)" +msgstr "" + +#: view/theme/frio/config.php:154 +msgid "Dark (Accented)" +msgstr "" + +#: view/theme/frio/config.php:155 +msgid "Black (Accented)" +msgstr "" + +#: view/theme/frio/config.php:167 +msgid "Note" +msgstr "" + +#: view/theme/frio/config.php:167 +msgid "Check image permissions if all users are allowed to see the image" +msgstr "" + +#: view/theme/frio/config.php:173 +msgid "Custom" +msgstr "" + +#: view/theme/frio/config.php:174 +msgid "Legacy" +msgstr "" + +#: view/theme/frio/config.php:175 +msgid "Accented" +msgstr "" + +#: view/theme/frio/config.php:176 +msgid "Select color scheme" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Select scheme accent" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Blue" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Red" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Purple" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Green" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Pink" +msgstr "" + +#: view/theme/frio/config.php:178 +msgid "Copy or paste schemestring" +msgstr "" + +#: view/theme/frio/config.php:178 msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "De beveiligingstoken van het formulier was foutief. Dit gebeurde waarschijnlijk omdat het formulier te lang (> 3 uur) is blijven open staan voor het werd verstuurd." +"You can copy this string to share your theme with others. Pasting here " +"applies the schemestring" +msgstr "" -#: src/BaseModule.php:179 -msgid "All contacts" -msgstr "Alle contacten" +#: view/theme/frio/config.php:179 +msgid "Navigation bar background color" +msgstr "" -#: src/BaseModule.php:202 -msgid "Common" -msgstr "Algemeen" +#: view/theme/frio/config.php:180 +msgid "Navigation bar icon color " +msgstr "" -#: update.php:196 -#, php-format -msgid "%s: Updating author-id and owner-id in item and thread table. " -msgstr "%s: author-id en owner-id in item en gesprekstabel aan het updaten." +#: view/theme/frio/config.php:181 +msgid "Link color" +msgstr "" -#: update.php:251 -#, php-format -msgid "%s: Updating post-type." -msgstr "%s: bericht-type bewerken" +#: view/theme/frio/config.php:182 +msgid "Set the background color" +msgstr "" + +#: view/theme/frio/config.php:183 +msgid "Content background opacity" +msgstr "" + +#: view/theme/frio/config.php:184 +msgid "Set the background image" +msgstr "" + +#: view/theme/frio/config.php:185 +msgid "Background image style" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "" + +#: view/theme/frio/config.php:192 +msgid "Login page background image" +msgstr "" + +#: view/theme/frio/config.php:196 +msgid "Login page background color" +msgstr "" + +#: view/theme/frio/config.php:196 +msgid "Leave background image and color empty for theme defaults" +msgstr "" + +#: view/theme/frio/php/Image.php:39 +msgid "Top Banner" +msgstr "" + +#: view/theme/frio/php/Image.php:39 +msgid "" +"Resize image to the width of the screen and show background color below on " +"long pages." +msgstr "" + +#: view/theme/frio/php/Image.php:40 +msgid "Full screen" +msgstr "" + +#: view/theme/frio/php/Image.php:40 +msgid "" +"Resize image to fill entire screen, clipping either the right or the bottom." +msgstr "" + +#: view/theme/frio/php/Image.php:41 +msgid "Single row mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:41 +msgid "" +"Resize image to repeat it on a single row, either vertical or horizontal." +msgstr "" + +#: view/theme/frio/php/Image.php:42 +msgid "Mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:42 +msgid "Repeat image to fill the screen." +msgstr "" + +#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +msgid "Skip to main content" +msgstr "" + +#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +msgid "Back to top" +msgstr "" + +#: view/theme/frio/theme.php:211 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:214 +msgid "Visitor" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Alignment" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Left" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Center" +msgstr "" + +#: view/theme/quattro/config.php:90 +msgid "Color scheme" +msgstr "" + +#: view/theme/quattro/config.php:91 +msgid "Posts font size" +msgstr "" + +#: view/theme/quattro/config.php:92 +msgid "Textareas font size" +msgstr "" + +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" +msgstr "" + +#: view/theme/vier/config.php:131 +msgid "don't show" +msgstr "" + +#: view/theme/vier/config.php:131 +msgid "show" +msgstr "" + +#: view/theme/vier/config.php:137 +msgid "Set style" +msgstr "" + +#: view/theme/vier/config.php:138 +msgid "Community Pages" +msgstr "" + +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +msgid "Community Profiles" +msgstr "" + +#: view/theme/vier/config.php:140 +msgid "Help or @NewHere ?" +msgstr "" + +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +msgid "Connect Services" +msgstr "" + +#: view/theme/vier/config.php:142 +msgid "Find Friends" +msgstr "" + +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +msgid "Last users" +msgstr "" + +#: view/theme/vier/theme.php:234 +msgid "Quick Start" +msgstr "" diff --git a/view/lang/nl/strings.php b/view/lang/nl/strings.php index d029e26b2..7b8fbff65 100644 --- a/view/lang/nl/strings.php +++ b/view/lang/nl/strings.php @@ -5,304 +5,13 @@ function string_plural_select_nl($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'De dagelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard.', - 1 => 'De dagelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard.', -]; -$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'De wekelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard.', - 1 => 'De wekelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard.', -]; -$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = 'De maandelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard.'; -$a->strings['Profile Photos'] = 'Profielfoto\'s'; -$a->strings['%1$s poked %2$s'] = '%1$s porde %2$s aan'; -$a->strings['event'] = 'gebeurtenis'; -$a->strings['status'] = 'status'; -$a->strings['photo'] = 'foto'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s labelde %3$s van %2$s met %4$s'; -$a->strings['Select'] = 'Kies'; -$a->strings['Delete'] = 'Verwijder'; -$a->strings['View %s\'s profile @ %s'] = 'Bekijk het profiel van %s @ %s'; -$a->strings['Categories:'] = 'Categorieën:'; -$a->strings['Filed under:'] = 'Bewaard onder:'; -$a->strings['%s from %s'] = '%s van %s'; -$a->strings['View in context'] = 'In context bekijken'; -$a->strings['Please wait'] = 'Even geduld'; -$a->strings['remove'] = 'verwijder'; -$a->strings['Delete Selected Items'] = 'Geselecteerde items verwijderen'; -$a->strings['%s reshared this.'] = '%s heeft dit gedeeld'; -$a->strings['%s commented on this.'] = '%s hebben hierop gereageerd.'; -$a->strings['Follow Thread'] = 'Gesprek volgen'; -$a->strings['View Status'] = 'Bekijk status'; -$a->strings['View Profile'] = 'Bekijk profiel'; -$a->strings['View Photos'] = 'Bekijk foto\'s'; -$a->strings['Network Posts'] = 'Netwerkberichten'; -$a->strings['View Contact'] = 'Bekijk contact'; -$a->strings['Send PM'] = 'Stuur een privébericht'; -$a->strings['Block'] = 'Blokkeren'; -$a->strings['Ignore'] = 'Negeren'; -$a->strings['Poke'] = 'Porren'; -$a->strings['Connect/Follow'] = 'Verbind/Volg'; -$a->strings['%s likes this.'] = '%s vindt dit leuk.'; -$a->strings['%s doesn\'t like this.'] = '%s vindt dit niet leuk.'; -$a->strings['%s attends.'] = '%s neemt deel'; -$a->strings['%s doesn\'t attend.'] = '%s neemt niet deel'; -$a->strings['%s attends maybe.'] = '%s neemt misschien deel'; -$a->strings['and'] = 'en'; -$a->strings['and %d other people'] = 'en %d anderen'; -$a->strings['%2$d people like this'] = '%2$d mensen vinden dit leuk'; -$a->strings['%s like this.'] = '%s vinden dit leuk.'; -$a->strings['%2$d people don\'t like this'] = '%2$d people vinden dit niet leuk'; -$a->strings['%s don\'t like this.'] = '%s vinden dit niet leuk.'; -$a->strings['%2$d people attend'] = '%2$d mensen nemen deel'; -$a->strings['%s attend.'] = '%s nemen deel.'; -$a->strings['%2$d people don\'t attend'] = '%2$d mensen nemen niet deel'; -$a->strings['%s don\'t attend.'] = '%s nemen niet deel.'; -$a->strings['%2$d people attend maybe'] = '%2$d mensen nemen misschien deel'; -$a->strings['%s attend maybe.'] = '%s neemt misschien deel.'; -$a->strings['%2$d people reshared this'] = '%2$d mensen hebben dit gedeeld'; -$a->strings['Visible to everybody'] = 'Zichtbaar voor iedereen'; -$a->strings['Please enter a image/video/audio/webpage URL:'] = 'Geef een afbeelding/video/audio/webpagina in:'; -$a->strings['Tag term:'] = 'Label:'; -$a->strings['Save to Folder:'] = 'Bewaren in map:'; -$a->strings['Where are you right now?'] = 'Waar ben je nu?'; -$a->strings['Delete item(s)?'] = 'Item(s) verwijderen?'; -$a->strings['New Post'] = 'Nieuw bericht'; -$a->strings['Share'] = 'Delen'; -$a->strings['Loading...'] = 'Aan het laden...'; -$a->strings['Upload photo'] = 'Foto uploaden'; -$a->strings['upload photo'] = 'Foto uploaden'; -$a->strings['Attach file'] = 'Bestand bijvoegen'; -$a->strings['attach file'] = 'bestand bijvoegen'; -$a->strings['Bold'] = 'Vet'; -$a->strings['Italic'] = 'Cursief'; -$a->strings['Underline'] = 'Onderstrepen'; -$a->strings['Quote'] = 'Citeren'; -$a->strings['Code'] = 'Broncode'; -$a->strings['Image'] = 'Afbeelding'; -$a->strings['Link'] = 'Link'; -$a->strings['Link or Media'] = 'Link of media'; -$a->strings['Set your location'] = 'Stel je locatie in'; -$a->strings['set location'] = 'Stel uw locatie in'; -$a->strings['Clear browser location'] = 'Verwijder locatie uit uw webbrowser'; -$a->strings['clear location'] = 'Verwijder locatie uit uw webbrowser'; -$a->strings['Set title'] = 'Titel plaatsen'; -$a->strings['Categories (comma-separated list)'] = 'Categorieën (komma-gescheiden lijst)'; -$a->strings['Permission settings'] = 'Instellingen van rechten'; -$a->strings['permissions'] = 'rechten'; -$a->strings['Public post'] = 'Openbare post'; -$a->strings['Preview'] = 'Voorvertoning'; -$a->strings['Cancel'] = 'Annuleren'; -$a->strings['Post to Groups'] = 'Verzenden naar Groepen'; -$a->strings['Post to Contacts'] = 'Verzenden naar Contacten'; -$a->strings['Private post'] = 'Privé verzending'; -$a->strings['Message'] = 'Bericht'; -$a->strings['Browser'] = 'Browser'; -$a->strings['Open Compose page'] = 'Open de opstelpagina'; -$a->strings['%s New mail received at %s'] = '%s Nieuw bericht ontvangen op %s'; -$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s sent you a new private message at %2$s.'; -$a->strings['a private message'] = 'een prive bericht'; -$a->strings['%1$s sent you %2$s.'] = '%1$s stuurde jou %2$s.'; -$a->strings['Please visit %s to view and/or reply to your private messages.'] = 'Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden.'; -$a->strings['%1$s replied to you on %2$s\'s %3$s %4$s'] = '%1$s reageerde op jou op %2$s\'s %3$s %4$s'; -$a->strings['%1$s tagged you on %2$s\'s %3$s %4$s'] = '%1$s heeft jou getagd op %2$s\'s %3$s %4$s'; -$a->strings['%1$s commented on %2$s\'s %3$s %4$s'] = '%1$s heeft een opmerking geplaatst op %2$s\'s %3$s %4$s'; -$a->strings['%1$s replied to you on your %2$s %3$s'] = '%1$s reageerde op jou op je %2$s %3$s'; -$a->strings['%1$s tagged you on your %2$s %3$s'] = '%1$s heeft je getagd op je %2$s %3$s'; -$a->strings['%1$s commented on your %2$s %3$s'] = '%1$s heeft een opmerking geplaatst op jou %2$s %3$s'; -$a->strings['%1$s replied to you on their %2$s %3$s'] = '%1$s reageerde op jou op hun %2$s %3$s'; -$a->strings['%1$s tagged you on their %2$s %3$s'] = '%1$s heeft je getagd op hun %2$s %3$s'; -$a->strings['%1$s commented on their %2$s %3$s'] = '%1$s heeft een opmering geschreven op hun %2$s %3$s'; -$a->strings['%s %s tagged you'] = '%s %s heeft jou getagged'; -$a->strings['%1$s tagged you at %2$s'] = '%1$s heeft jou in %2$s genoemd'; -$a->strings['%1$s Comment to conversation #%2$d by %3$s'] = '%1$s Opmerking bij conversatie #%2$d door %3$s'; -$a->strings['%s commented on an item/conversation you have been following.'] = '%s gaf een reactie op een bericht/gesprek die jij volgt.'; -$a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Bezoek %s om het gesprek te bekijken en/of te beantwoorden.'; -$a->strings['%s %s posted to your profile wall'] = '%s %s heeft op je profiel wall gepost'; -$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$splaatste een bericht op je tijdlijn op %2$s'; -$a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s schreef op [url=%2$s]jouw tijdlijn[/url]'; -$a->strings['%s %s shared a new post'] = '%s %s deelde een nieuwe post'; -$a->strings['%1$s shared a new post at %2$s'] = '%1$s deelde een nieuw bericht op %2$s'; -$a->strings['%1$s [url=%2$s]shared a post[/url].'] = '%1$s [url=%2$s]deelde een bericht[/url].'; -$a->strings['%s %s shared a post from %s'] = '%s %s hebben een post gedeeld van %s'; -$a->strings['%1$s shared a post from %2$s at %3$s'] = '%1$s hebben een post gedeeld van %2$s op %3$s'; -$a->strings['%1$s [url=%2$s]shared a post[/url] from %3$s.'] = '%1$s [url=%2$s]deelde een post[/url] van %3$s.'; -$a->strings['%1$s %2$s poked you'] = '%1$s %2$s heeft je gepoked'; -$a->strings['%1$s poked you at %2$s'] = '%1$s heeft jou gepord op %2$s'; -$a->strings['%1$s [url=%2$s]poked you[/url].'] = '%1$s [url=%2$s]porde jou[/url]'; -$a->strings['%s %s tagged your post'] = '%s %s heeft je post getagged'; -$a->strings['%1$s tagged your post at %2$s'] = '%1$s heeft jouw bericht gelabeld in %2$s'; -$a->strings['%1$s tagged [url=%2$s]your post[/url]'] = '%1$s labelde [url=%2$s]jouw bericht[/url]'; -$a->strings['%s Introduction received'] = '%s Introductie ontvangen'; -$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Je hebt een vriendschaps- of connectieverzoek ontvangen van \'%1$s\' om %2$s'; -$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s.'; -$a->strings['You may visit their profile at %s'] = 'Je kunt hun profiel bezoeken op %s'; -$a->strings['Please visit %s to approve or reject the introduction.'] = 'Bezoek %s om het verzoek goed of af te keuren.'; -$a->strings['%s A new person is sharing with you'] = '%s Een nieuwe persoon deelt met je'; -$a->strings['%1$s is sharing with you at %2$s'] = '%1$s deelt met jou in %2$s'; -$a->strings['%s You have a new follower'] = '%s Je hebt een nieuwe volger'; -$a->strings['You have a new follower at %2$s : %1$s'] = 'Je hebt een nieuwe volger op %2$s: %1$s'; -$a->strings['%s Friend suggestion received'] = '%s Vriend suggestie ontvangen'; -$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = 'Je kreeg een vriendschapssuggestie van \'%1$s\' op %2$s'; -$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = 'Je kreeg een [url=%1$s]vriendschapssuggestie[/url] voor %2$s op %3$s.'; -$a->strings['Name:'] = 'Naam:'; -$a->strings['Photo:'] = 'Foto: '; -$a->strings['Please visit %s to approve or reject the suggestion.'] = 'Bezoek %s om de suggestie goed of af te keuren.'; -$a->strings['%s Connection accepted'] = '%s Verbinding geaccepteerd'; -$a->strings['\'%1$s\' has accepted your connection request at %2$s'] = '\'%1$s\' aanvaarde je contactaanvraag op %2$s'; -$a->strings['%2$s has accepted your [url=%1$s]connection request[/url].'] = '%2$saanvaardde jouw [url=%1$s]contactaanvraag[/url].'; -$a->strings['You are now mutual friends and may exchange status updates, photos, and email without restriction.'] = 'Jullie zijn nu in contact met elkaar en kunnen statusberichten, foto\'s en email delen zonder beperkingen.'; -$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'Bezoek alstublieft %s als je deze relatie wil wijzigen.'; -$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\' koos om je te accepteren als fan, wat sommige communicatievormen beperkt - zoals privéberichten en sommige profielfuncties. Als dit een beroemdheid- of groepspagina is, werd dit automatisch toegepast.'; -$a->strings['\'%1$s\' may choose to extend this into a two-way or more permissive relationship in the future.'] = '\'%1$s\' kan er later voor kiezen om deze beperkingen aan te passen.'; -$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'Bezoek %s wanneer je deze relatie wil wijzigen.'; -$a->strings['[Friendica System Notify]'] = '[Friendica systeem notificatie]'; -$a->strings['registration request'] = 'registratie verzoek'; -$a->strings['You\'ve received a registration request from \'%1$s\' at %2$s'] = 'Je kreeg een registratieaanvraag van \'%1$s\' op %2$s'; -$a->strings['You\'ve received a [url=%1$s]registration request[/url] from %2$s.'] = 'Je kreeg een [url=%1$s]registratieaanvraag[/url] van %2$s.'; -$a->strings['Full Name: %s -Site Location: %s -Login Name: %s (%s)'] = 'Volledige naam: %s -Adres van de site: %s -Loginnaam: %s (%s)'; -$a->strings['Please visit %s to approve or reject the request.'] = 'Bezoek %s om de aanvraag goed of af te keuren.'; -$a->strings['User deleted their account'] = 'Gebruiker verwijderde zijn of haar account'; -$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Een gebruiker heeft zijn of haar account verwijderd op je Friendica node. Zorg er zeker voor dat zijn of haar data verwijderd is uit de backups.'; -$a->strings['The user id is %d'] = 'De gebruikers id is %d'; -$a->strings['Remove My Account'] = 'Verwijder mijn account'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is.'; -$a->strings['Please enter your password for verification:'] = 'Voer je wachtwoord in voor verificatie:'; -$a->strings['Permission denied.'] = 'Toegang geweigerd'; -$a->strings['Authorize application connection'] = 'Verbinding met de applicatie goedkeuren'; -$a->strings['Return to your app and insert this Securty Code:'] = 'Keer terug naar jouw app en voeg deze beveiligingscode in:'; -$a->strings['Please login to continue.'] = 'Log in om verder te gaan.'; -$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?'; -$a->strings['Yes'] = 'Ja'; -$a->strings['No'] = 'Nee'; -$a->strings['Access denied.'] = 'Toegang geweigerd'; -$a->strings['User not found.'] = 'Gebruiker niet gevonden.'; -$a->strings['Access to this profile has been restricted.'] = 'Toegang tot dit profiel is beperkt.'; -$a->strings['Events'] = 'Gebeurtenissen'; -$a->strings['View'] = 'Beeld'; -$a->strings['Previous'] = 'Vorige'; -$a->strings['Next'] = 'Volgende'; -$a->strings['today'] = 'vandaag'; -$a->strings['month'] = 'maand'; -$a->strings['week'] = 'week'; -$a->strings['day'] = 'dag'; -$a->strings['list'] = 'lijst'; -$a->strings['User not found'] = 'Gebruiker niet gevonden'; -$a->strings['This calendar format is not supported'] = 'Dit kalender formaat is niet ondersteund'; -$a->strings['No exportable data found'] = 'Geen exporteerbare data gevonden'; -$a->strings['calendar'] = 'kalender'; -$a->strings['Profile not found.'] = 'Profiel niet gevonden'; -$a->strings['Contact not found.'] = 'Contact niet gevonden'; -$a->strings['This may occasionally happen if contact was requested by both persons and it has already been approved.'] = 'Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd.'; -$a->strings['Response from remote site was not understood.'] = 'Antwoord van de website op afstand werd niet begrepen.'; -$a->strings['Unexpected response from remote site: '] = 'Onverwacht antwoord van website op afstand:'; -$a->strings['Confirmation completed successfully.'] = 'Bevestiging werd correct voltooid.'; -$a->strings['Temporary failure. Please wait and try again.'] = 'Tijdelijke fout. Wacht even en probeer opnieuw.'; -$a->strings['Introduction failed or was revoked.'] = 'Verzoek mislukt of herroepen.'; -$a->strings['Remote site reported: '] = 'Website op afstand berichtte: '; -$a->strings['No user record found for \'%s\' '] = 'Geen gebruiker gevonden voor \'%s\''; -$a->strings['Our site encryption key is apparently messed up.'] = 'De encryptie-sleutel van onze webstek is blijkbaar beschadigd.'; -$a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons.'; -$a->strings['Contact record was not found for you on our site.'] = 'We vonden op onze webstek geen contactrecord voor jou.'; -$a->strings['Site public key not available in contact record for URL %s.'] = 'Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s.'; -$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken.'; -$a->strings['Unable to set your contact credentials on our system.'] = 'Niet in staat om op dit systeem je contactreferenties in te stellen.'; -$a->strings['Unable to update your contact profile details on our system'] = 'Kan je contact profiel details op ons systeem niet aanpassen'; -$a->strings['[Name Withheld]'] = '[Naam achtergehouden]'; -$a->strings['%1$s welcomes %2$s'] = '%1$s heet %2$s van harte welkom'; -$a->strings['This introduction has already been accepted.'] = 'Verzoek is al goedgekeurd'; -$a->strings['Profile location is not valid or does not contain profile information.'] = 'Profiel is ongeldig of bevat geen informatie'; -$a->strings['Warning: profile location has no identifiable owner name.'] = 'Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar.'; -$a->strings['Warning: profile location has no profile photo.'] = 'Waarschuwing: Profieladres heeft geen profielfoto.'; -$a->strings['%d required parameter was not found at the given location'] = [ - 0 => 'De %d vereiste parameter is niet op het gegeven adres gevonden', - 1 => 'De %d vereiste parameters zijn niet op het gegeven adres gevonden', -]; -$a->strings['Introduction complete.'] = 'Verzoek voltooid.'; -$a->strings['Unrecoverable protocol error.'] = 'Onherstelbare protocolfout. '; -$a->strings['Profile unavailable.'] = 'Profiel onbeschikbaar'; -$a->strings['%s has received too many connection requests today.'] = '%s heeft te veel verzoeken gehad vandaag.'; -$a->strings['Spam protection measures have been invoked.'] = 'Beveiligingsmaatregelen tegen spam zijn in werking getreden.'; -$a->strings['Friends are advised to please try again in 24 hours.'] = 'Wij adviseren vrienden om het over 24 uur nog een keer te proberen.'; -$a->strings['Invalid locator'] = 'Ongeldige plaatsbepaler'; -$a->strings['You have already introduced yourself here.'] = 'Je hebt jezelf hier al voorgesteld.'; -$a->strings['Apparently you are already friends with %s.'] = 'Blijkbaar ben je al bevriend met %s.'; -$a->strings['Invalid profile URL.'] = 'Ongeldig profiel adres.'; -$a->strings['Disallowed profile URL.'] = 'Niet toegelaten profiel adres.'; -$a->strings['Blocked domain'] = 'Domein geblokeerd'; -$a->strings['Failed to update contact record.'] = 'Ik kon de contactgegevens niet aanpassen.'; -$a->strings['Your introduction has been sent.'] = 'Je verzoek is verzonden.'; -$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'Remote inschrijving kan niet op jouw netwerk. Gelieve direct op je systeem in te schrijven.'; -$a->strings['Please login to confirm introduction.'] = 'Log in om je verzoek te bevestigen.'; -$a->strings['Incorrect identity currently logged in. Please login to this profile.'] = 'Je huidige identiteit is niet de juiste. Log met dit profiel in.'; -$a->strings['Confirm'] = 'Bevestig'; -$a->strings['Hide this contact'] = 'Verberg dit contact'; -$a->strings['Welcome home %s.'] = 'Welkom terug %s.'; -$a->strings['Please confirm your introduction/connection request to %s.'] = 'Bevestig je vriendschaps-/connectieverzoek voor %s.'; -$a->strings['Public access denied.'] = 'Niet vrij toegankelijk'; -$a->strings['Friend/Connection Request'] = 'Vriendschaps-/connectieverzoek'; -$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'] = 'Voer hier uw webvingeradres (gebruiker@domein.tld) ​​of profiel-URL in. Als dit niet wordt ondersteund door uw systeem (het werkt bijvoorbeeld niet met Diaspora), moet u zich rechtstreeks op uw systeem abonneren met %s'; -$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.'] = 'Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een publieke Friendica node te vinden en sluit je vandaag bij ons aan.'; -$a->strings['Your Webfinger address or profile URL:'] = 'Uw Webfinger adres of profiel-URL:'; -$a->strings['Please answer the following:'] = 'Beantwoord het volgende:'; -$a->strings['Submit Request'] = 'Aanvraag indienen'; -$a->strings['%s knows you'] = '%s kent je'; -$a->strings['Add a personal note:'] = 'Voeg een persoonlijke opmerking toe:'; -$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'Het gevraagde item bestaat niet of is verwijderd'; -$a->strings['The feed for this item is unavailable.'] = 'De tijdlijn voor dit item is niet beschikbaar'; -$a->strings['Item not found'] = 'Item niet gevonden'; -$a->strings['Edit post'] = 'Bericht bewerken'; -$a->strings['Save'] = 'Bewaren'; -$a->strings['Insert web link'] = 'Voeg een webadres in'; -$a->strings['web link'] = 'webadres'; -$a->strings['Insert video link'] = 'Voeg video toe'; -$a->strings['video link'] = 'video adres'; -$a->strings['Insert audio link'] = 'Voeg audio adres toe'; -$a->strings['audio link'] = 'audio adres'; -$a->strings['CC: email addresses'] = 'CC: e-mailadressen'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be'; -$a->strings['Event can not end before it has started.'] = 'Gebeurtenis kan niet eindigen voor het begin.'; -$a->strings['Event title and start time are required.'] = 'Titel en begintijd van de gebeurtenis zijn vereist.'; -$a->strings['Create New Event'] = 'Maak een nieuwe gebeurtenis'; -$a->strings['Event details'] = 'Gebeurtenis details'; -$a->strings['Starting date and Title are required.'] = 'Start datum en Titel zijn verplicht.'; -$a->strings['Event Starts:'] = 'Gebeurtenis begint:'; -$a->strings['Required'] = 'Vereist'; -$a->strings['Finish date/time is not known or not relevant'] = 'Einddatum/tijd is niet gekend of niet relevant'; -$a->strings['Event Finishes:'] = 'Gebeurtenis eindigt:'; -$a->strings['Adjust for viewer timezone'] = 'Pas aan aan de tijdzone van de gebruiker'; -$a->strings['Description:'] = 'Beschrijving:'; -$a->strings['Location:'] = 'Plaats:'; -$a->strings['Title:'] = 'Titel:'; -$a->strings['Share this event'] = 'Deel deze gebeurtenis'; -$a->strings['Submit'] = 'Verstuur'; -$a->strings['Basic'] = 'Basis'; -$a->strings['Advanced'] = 'Geavanceerd'; -$a->strings['Permissions'] = 'Rechten'; -$a->strings['Failed to remove event'] = 'Kon remote event niet verwijderen'; -$a->strings['Photos'] = 'Foto\'s'; -$a->strings['Upload'] = 'Uploaden'; -$a->strings['Files'] = 'Bestanden'; -$a->strings['The contact could not be added.'] = 'Het contact kon niet toegevoegd worden.'; -$a->strings['You already added this contact.'] = 'Je hebt deze kontakt al toegevoegd'; -$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Het type netwerk kon niet gedetecteerd worden. Contact kan niet toegevoegd worden.'; -$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Diaspora ondersteuning is niet geactiveerd. Contact kan niet toegevoegd worden.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus ondersteuning is niet geactiveerd. Contact kan niet toegevoegd woren.'; -$a->strings['Your Identity Address:'] = 'Adres van je identiteit:'; -$a->strings['Profile URL'] = 'Profiel url'; -$a->strings['Tags:'] = 'Labels:'; -$a->strings['Status Messages and Posts'] = 'Berichten op jouw tijdlijn'; $a->strings['Unable to locate original post.'] = 'Ik kan de originele post niet meer vinden.'; -$a->strings['Empty post discarded.'] = 'Lege post weggegooid.'; $a->strings['Post updated.'] = 'Post geupdate.'; $a->strings['Item wasn\'t stored.'] = 'Item is niet opgeslagen.'; $a->strings['Item couldn\'t be fetched.'] = 'Item kan niet worden opgehaald.'; +$a->strings['Empty post discarded.'] = 'Lege post weggegooid.'; $a->strings['Item not found.'] = 'Item niet gevonden.'; -$a->strings['Do you really want to delete this item?'] = 'Wil je echt dit item verwijderen?'; +$a->strings['Permission denied.'] = 'Toegang geweigerd'; $a->strings['No valid account found.'] = 'Geen geldige account gevonden.'; $a->strings['Password reset request issued. Check your email.'] = 'Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na.'; $a->strings[' @@ -391,33 +100,42 @@ $a->strings[' Je kan dit wachtwoord in het account instellingen aanpassen nadat je ingelogd bent. '; $a->strings['Your password has been changed at %s'] = 'Je wachtwoord is veranderd op %s'; -$a->strings['No keywords to match. Please add keywords to your profile.'] = 'Geen overeenkomende zoekwoorden. Voeg zoekwoorden toe aan uw profiel.'; -$a->strings['first'] = 'eerste'; -$a->strings['next'] = 'volgende'; -$a->strings['No matches'] = 'Geen resultaten'; -$a->strings['Profile Match'] = 'Profielmatch'; -$a->strings['No items found'] = 'Geen items gevonden'; -$a->strings['No such group'] = 'Zo\'n groep bestaat niet'; -$a->strings['Group: %s'] = 'Groep: %s'; -$a->strings['Invalid contact.'] = 'Ongeldig contact.'; -$a->strings['Latest Activity'] = 'Laatste activiteit'; -$a->strings['Sort by latest activity'] = 'Sorteer naar laatste activiteit'; -$a->strings['Latest Posts'] = 'Laatste Berichten'; -$a->strings['Sort by post received date'] = 'Sorteren naar ontvangstdatum bericht'; -$a->strings['Personal'] = 'Persoonlijk'; -$a->strings['Posts that mention or involve you'] = 'Alleen berichten die jou vermelden of op jou betrekking hebben'; -$a->strings['Starred'] = 'Met ster'; -$a->strings['Favourite Posts'] = 'Favoriete berichten'; +$a->strings['New Message'] = 'Nieuw Bericht'; +$a->strings['No recipient selected.'] = 'Geen ontvanger geselecteerd.'; +$a->strings['Unable to locate contact information.'] = 'Ik kan geen contact informatie vinden.'; +$a->strings['Message could not be sent.'] = 'Bericht kon niet verzonden worden.'; +$a->strings['Message collection failure.'] = 'Fout bij het verzamelen van berichten.'; +$a->strings['Discard'] = 'Verwerpen'; +$a->strings['Messages'] = 'Privéberichten'; +$a->strings['Conversation not found.'] = 'Gesprek niet gevonden.'; +$a->strings['Message was not deleted.'] = 'Bericht was niet gewist.'; +$a->strings['Conversation was not removed.'] = 'Conversatie was niet verwijderd.'; +$a->strings['Please enter a link URL:'] = 'Vul een internetadres/URL in:'; +$a->strings['Send Private Message'] = 'Verstuur privébericht'; +$a->strings['To:'] = 'Aan:'; +$a->strings['Subject:'] = 'Onderwerp:'; +$a->strings['Your message:'] = 'Jouw bericht:'; +$a->strings['Upload photo'] = 'Foto uploaden'; +$a->strings['Insert web link'] = 'Voeg een webadres in'; +$a->strings['Please wait'] = 'Even geduld'; +$a->strings['Submit'] = 'Verstuur'; +$a->strings['No messages.'] = 'Geen berichten.'; +$a->strings['Message not available.'] = 'Bericht niet beschikbaar.'; +$a->strings['Delete message'] = 'Verwijder bericht'; +$a->strings['D, d M Y - g:i A'] = 'D, d M Y - g:i A'; +$a->strings['Delete conversation'] = 'Verwijder gesprek'; +$a->strings['No secure communications available. You may be able to respond from the sender\'s profile page.'] = 'Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender.'; +$a->strings['Send Reply'] = 'Verstuur Antwoord'; +$a->strings['Unknown sender - %s'] = 'Onbekende afzender - %s'; +$a->strings['You and %s'] = 'Jij en %s'; +$a->strings['%s and You'] = '%s en jij'; +$a->strings['%d message'] = [ + 0 => '%d bericht', + 1 => '%d berichten', +]; $a->strings['Personal Notes'] = 'Persoonlijke Nota\'s'; -$a->strings['Subscribing to OStatus contacts'] = 'Inschrijven bij OStatus contacten'; -$a->strings['No contact provided.'] = 'Geen contact opgegeven.'; -$a->strings['Couldn\'t fetch information for contact.'] = 'Kon de informatie voor het contact niet ophalen.'; -$a->strings['Couldn\'t fetch friends for contact.'] = 'Kon de vrienden van contact niet ophalen.'; -$a->strings['Done'] = 'Klaar'; -$a->strings['success'] = 'Succesvol'; -$a->strings['failed'] = 'Mislukt'; -$a->strings['ignored'] = 'Verboden'; -$a->strings['Keep this window open until done.'] = 'Houd dit scherm open tot het klaar is'; +$a->strings['Save'] = 'Bewaren'; +$a->strings['User not found.'] = 'Gebruiker niet gevonden.'; $a->strings['Photo Albums'] = 'Fotoalbums'; $a->strings['Recent Photos'] = 'Recente foto\'s'; $a->strings['Upload New Photos'] = 'Nieuwe foto\'s uploaden'; @@ -429,23 +147,16 @@ $a->strings['Album was empty.'] = 'Het album was leeg'; $a->strings['Failed to delete the photo.'] = 'Foto verwijderen mislukt.'; $a->strings['a photo'] = 'een foto'; $a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s is gelabeld in %2$s door %3$s'; -$a->strings['Image exceeds size limit of %s'] = 'Beeld is groter dan de limiet ( %s )'; -$a->strings['Image upload didn\'t complete, please try again'] = 'Opladen van het beeld is niet compleet, probeer het opnieuw'; -$a->strings['Image file is missing'] = 'Beeld bestand ontbreekt'; -$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'De server kan op dit moment geen nieuw bestand opladen, contacteer alsjeblieft je beheerder'; -$a->strings['Image file is empty.'] = 'Afbeeldingsbestand is leeg.'; -$a->strings['Unable to process image.'] = 'Niet in staat om de afbeelding te verwerken'; -$a->strings['Image upload failed.'] = 'Uploaden van afbeelding mislukt.'; +$a->strings['Public access denied.'] = 'Niet vrij toegankelijk'; $a->strings['No photos selected'] = 'Geen foto\'s geselecteerd'; -$a->strings['Access to this item is restricted.'] = 'Toegang tot dit item is beperkt.'; $a->strings['Upload Photos'] = 'Upload foto\'s'; $a->strings['New album name: '] = 'Nieuwe albumnaam: '; $a->strings['or select existing album:'] = 'Of selecteer bestaand album:'; $a->strings['Do not show a status post for this upload'] = 'Toon geen bericht op je tijdlijn van deze upload'; -$a->strings['Show to Groups'] = 'Tonen aan groepen'; -$a->strings['Show to Contacts'] = 'Tonen aan contacten'; +$a->strings['Permissions'] = 'Rechten'; $a->strings['Do you really want to delete this photo album and all its photos?'] = 'Wil je echt dit fotoalbum en alle foto\'s erin verwijderen?'; $a->strings['Delete Album'] = 'Verwijder album'; +$a->strings['Cancel'] = 'Annuleren'; $a->strings['Edit Album'] = 'Album wijzigen'; $a->strings['Drop Album'] = 'Album verwijderen'; $a->strings['Show Newest First'] = 'Toon niewste eerst'; @@ -470,397 +181,290 @@ $a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #cam $a->strings['Do not rotate'] = 'Niet roteren'; $a->strings['Rotate CW (right)'] = 'Roteren met de klok mee (rechts)'; $a->strings['Rotate CCW (left)'] = 'Roteren tegen de klok in (links)'; -$a->strings['I like this (toggle)'] = 'Vind ik leuk'; -$a->strings['I don\'t like this (toggle)'] = 'Vind ik niet leuk'; $a->strings['This is you'] = 'Dit ben jij'; $a->strings['Comment'] = 'Reacties'; +$a->strings['Preview'] = 'Voorvertoning'; +$a->strings['Loading...'] = 'Aan het laden...'; +$a->strings['Select'] = 'Kies'; +$a->strings['Delete'] = 'Verwijder'; +$a->strings['I like this (toggle)'] = 'Vind ik leuk'; +$a->strings['I don\'t like this (toggle)'] = 'Vind ik niet leuk'; $a->strings['Map'] = 'Kaart'; -$a->strings['View Album'] = 'Album bekijken'; -$a->strings['{0} wants to be your friend'] = '{0} wilt je vriend worden'; -$a->strings['{0} requested registration'] = '{0} vroeg om zich te registreren'; -$a->strings['Bad Request.'] = 'Verkeerde aanvraag.'; -$a->strings['Resubscribing to OStatus contacts'] = 'Opnieuw inschrijven bij OStatus contacten'; -$a->strings['Error'] = [ - 0 => 'Fout', - 1 => 'Fouten', -]; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen.'; -$a->strings['Friend Suggestions'] = 'Vriendschapsvoorstellen'; -$a->strings['Remove Item Tag'] = 'Verwijder label van item'; -$a->strings['Select a tag to remove: '] = 'Selecteer een label om te verwijderen: '; -$a->strings['Remove'] = 'Verwijderen'; -$a->strings['User imports on closed servers can only be done by an administrator.'] = 'Importen van een gebruiker op een gesloten node kan enkel gedaan worden door een administrator'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw.'; -$a->strings['Import'] = 'Importeren'; -$a->strings['Move account'] = 'Account verplaatsen'; -$a->strings['You can import an account from another Friendica server.'] = 'Je kunt een account van een andere Friendica server importeren.'; -$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.'] = 'Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent.'; -$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Dit feature is experimenteel. We kunnen contacten van het OStatus netwerk (GNU Social/Statusnet) of van Diaspora niet importeren.'; -$a->strings['Account file'] = 'Account bestand'; -$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Om je account te exporteren, ga naar "Instellingen->Exporteer je persoonlijke data" en selecteer "Exporteer account"'; -$a->strings['You aren\'t following this contact.'] = 'Je volgt dit contact niet.'; -$a->strings['Unfollowing is currently not supported by your network.'] = 'Ontvolgen is momenteel niet gesupporteerd door je netwerk.'; -$a->strings['Disconnect/Unfollow'] = 'Disconnecteer/stop met volgen'; -$a->strings['No videos selected'] = 'Geen video\'s geselecteerd'; -$a->strings['View Video'] = 'Bekijk Video'; -$a->strings['Recent Videos'] = 'Recente video\'s'; -$a->strings['Upload New Videos'] = 'Nieuwe video\'s uploaden'; -$a->strings['Invalid request.'] = 'Ongeldige aanvraag.'; -$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Sorry, je op te laden bestand is groter dan deze PHP configuratie toelaat'; -$a->strings['Or - did you try to upload an empty file?'] = 'Of - probeerde je een lege file op te laden?'; -$a->strings['File exceeds size limit of %s'] = 'Bestand is groter dan de limiet ( %s )'; -$a->strings['File upload failed.'] = 'Uploaden van bestand mislukt.'; -$a->strings['Wall Photos'] = 'Tijdlijn foto\'s'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Maximum aantal dagelijkse tijdlijn boodschappen van %s overschreden. Kon boodschap niet plaatsen.'; -$a->strings['No recipient selected.'] = 'Geen ontvanger geselecteerd.'; -$a->strings['Unable to check your home location.'] = 'Niet in staat om je tijdlijn-locatie vast te stellen'; -$a->strings['Message could not be sent.'] = 'Bericht kon niet verzonden worden.'; -$a->strings['Message collection failure.'] = 'Fout bij het verzamelen van berichten.'; -$a->strings['No recipient.'] = 'Geen ontvanger.'; -$a->strings['Please enter a link URL:'] = 'Vul een internetadres/URL in:'; -$a->strings['Send Private Message'] = 'Verstuur privébericht'; -$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat.'; -$a->strings['To:'] = 'Aan:'; -$a->strings['Subject:'] = 'Onderwerp:'; -$a->strings['Your message:'] = 'Jouw bericht:'; -$a->strings['Missing some important data!'] = 'Een belangrijk gegeven ontbreekt!'; -$a->strings['Update'] = 'Wijzigen'; -$a->strings['Failed to connect with email account using the settings provided.'] = 'Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen.'; -$a->strings['Importing Contacts done'] = 'Importeren Contacten voltooid'; -$a->strings['Relocate message has been send to your contacts'] = 'Verhuis boodschap is verzonden naar je contacten'; -$a->strings['Passwords do not match.'] = 'Wachtwoorden zijn niet gelijk'; +$a->strings['No system theme config value set.'] = 'Geen systeem thema configuratie ingesteld.'; +$a->strings['Delete this item?'] = 'Dit item verwijderen?'; +$a->strings['toggle mobile'] = 'mobiel thema omwisselen'; +$a->strings['Page not found.'] = 'Pagina niet gevonden'; +$a->strings['You must be logged in to use addons. '] = 'Je moet ingelogd zijn om deze addons te kunnen gebruiken. '; +$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.'] = 'De beveiligingstoken van het formulier was foutief. Dit gebeurde waarschijnlijk omdat het formulier te lang (> 3 uur) is blijven open staan voor het werd verstuurd.'; +$a->strings['All contacts'] = 'Alle contacten'; +$a->strings['Followers'] = 'Volgers'; +$a->strings['Following'] = 'Volgend'; +$a->strings['Mutual friends'] = 'Gemeenschappelijke vrienden'; +$a->strings['Common'] = 'Algemeen'; +$a->strings['Could not find any unarchived contact entry for this URL (%s)'] = 'Kon geen niet-gearchiveerde contacten vinden voor deze URL (%s)'; +$a->strings['The contact entries have been archived'] = 'The contacten zijn gearchiveerd'; +$a->strings['Could not find any contact entry for this URL (%s)'] = 'Kon geen contact vinden op deze URL (%s)'; +$a->strings['The contact has been blocked from the node'] = 'Het contact is geblokkeerd van deze node'; +$a->strings['Post update version number has been set to %s.'] = 'Bericht update versie is ingesteld op %s'; +$a->strings['Check for pending update actions.'] = 'Controleren op uitgestelde update acties.'; +$a->strings['Done.'] = 'Gedaan'; +$a->strings['Execute pending post updates.'] = 'uitgestelde bericht update acties uitvoeren'; +$a->strings['All pending post updates are done.'] = 'Alle uitgestelde bericht update acties zijn uitgevoerd'; +$a->strings['Enter user nickname: '] = 'Geef een bijnaam in:'; +$a->strings['User not found'] = 'Gebruiker niet gevonden'; +$a->strings['Enter new password: '] = 'Geef nieuw wachtwoord:'; $a->strings['Password update failed. Please try again.'] = 'Wachtwoord-)wijziging mislukt. Probeer opnieuw.'; $a->strings['Password changed.'] = 'Wachtwoord gewijzigd.'; -$a->strings['Password unchanged.'] = 'Wachtwoord ongewijzigd'; -$a->strings['Please use a shorter name.'] = 'Gebruik een kortere naam.'; -$a->strings['Name too short.'] = 'Naam is te kort.'; -$a->strings['Wrong Password.'] = 'Verkeerd wachtwoord.'; -$a->strings['Invalid email.'] = 'Ongeldig email adres.'; -$a->strings['Cannot change to that email.'] = 'Kan niet naar dat email adres veranderen.'; -$a->strings['Private forum has no privacy permissions. Using default privacy group.'] = 'Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt.'; -$a->strings['Private forum has no privacy permissions and no default privacy group.'] = 'Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep.'; -$a->strings['Settings were not updated.'] = 'Wijziging instellingen is niet opgeslagen.'; -$a->strings['Add application'] = 'Toepassing toevoegen'; -$a->strings['Save Settings'] = 'Instellingen opslaan'; -$a->strings['Name'] = 'Naam'; -$a->strings['Consumer Key'] = 'Gebruikerssleutel'; -$a->strings['Consumer Secret'] = 'Gebruikersgeheim'; -$a->strings['Redirect'] = 'Doorverwijzing'; -$a->strings['Icon url'] = 'URL pictogram'; -$a->strings['You can\'t edit this application.'] = 'Je kunt deze toepassing niet wijzigen.'; -$a->strings['Connected Apps'] = 'Verbonden applicaties'; -$a->strings['Edit'] = 'Bewerken'; -$a->strings['Client key starts with'] = 'Client sleutel begint met'; -$a->strings['No name'] = 'Geen naam'; -$a->strings['Remove authorization'] = 'Verwijder authorisatie'; -$a->strings['No Addon settings configured'] = 'Geen Addon instellingen geconfigureerd'; -$a->strings['Addon Settings'] = 'Addon instellingen'; -$a->strings['Additional Features'] = 'Extra functies'; -$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings['enabled'] = 'ingeschakeld'; -$a->strings['disabled'] = 'uitgeschakeld'; -$a->strings['Built-in support for %s connectivity is %s'] = 'Ingebouwde ondersteuning voor connectiviteit met %s is %s'; -$a->strings['Email access is disabled on this site.'] = 'E-mailtoegang is op deze website uitgeschakeld.'; -$a->strings['None'] = 'Geen'; -$a->strings['Social Networks'] = 'Sociale netwerken'; -$a->strings['General Social Media Settings'] = 'Algemene Sociale Media Instellingen'; -$a->strings['Accept only top level posts by contacts you follow'] = 'Enkel posts van het het hoogste niveau accepteren van contacten die je volgt.'; -$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.'] = 'Het systeem doet auto-complete bij posts wanneer een nieuwe reactie aankomt. Dit heeft het neveneffect dat je posts kan ontvangen die zijn gestart door iemand die je niet volgt maar op werd gereageerd door iemand die je wel volgt. Deze instelling deactiveerd dit gedrag. Als je dit activeert zal je enkel posts ontvangen van mensen die je echt volgt.'; -$a->strings['Disable Content Warning'] = 'Deactiveer Content Waarschuwing'; -$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.'] = 'Gebruikers op netwerken als Mastodon en Pleroma kunnen een content waarschuwing instellen die hun bericht standaard inklapt. Dit deactiveert het automatisch inklappen en toont de content waarschuwing als titel van het bericht. Dit beïnvloedt andere content filters die je mogelijk ingesteld hebt niet.'; -$a->strings['Disable intelligent shortening'] = 'Deactiveer intelligent afkorten'; -$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.'] = 'Normaal probeert het systeem de beste link te vinden om toe te voegen aan ingekorte berichten. Als deze optie geactiveerd is, dan zal elk ingekort bericht altijd verwijzen naar het originele friendica bericht.'; -$a->strings['Attach the link title'] = 'Voeg de linktitel toe'; -$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.'] = 'Indien geactiveerd, wordt de titel van de bijgevoegde link toegevoegd als titel op berichten op Diaspora. Dit is vooral handig bij contacten op afstand die zelf feed-inhoud delen.'; -$a->strings['Automatically follow any GNU Social (OStatus) followers/mentioners'] = 'Volg automatisch alle GNU Social (OStatus) volgers/vermelders'; -$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.'] = 'Als je een boodschap ontvangt van een voor jou onbekende OStatus gebruiker, dan beslist deze optie wat er moet gebeuren. Als de optie is geactiveerd, dan zal voor elke onbekende gebruiker een nieuw contact aangemaakt worden.'; -$a->strings['Default group for OStatus contacts'] = 'Standaard groep voor OStatus contacten'; -$a->strings['Your legacy GNU Social account'] = 'Je verouderd GNU Social account'; -$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.'] = 'Als je hier je oude GNU Social/Statusnet account naam invoert (in het formaat gebruiker@domein.tld), dan zullen je contacten automatisch toegevoegd worden. Het veld zal nadien leeg gemaakt worden.'; -$a->strings['Repair OStatus subscriptions'] = 'Herstel OStatus inschrijvingen'; -$a->strings['Email/Mailbox Setup'] = 'E-mail Instellen'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken.'; -$a->strings['Last successful email check:'] = 'Laatste succesvolle e-mail controle:'; -$a->strings['IMAP server name:'] = 'IMAP server naam:'; -$a->strings['IMAP port:'] = 'IMAP poort:'; -$a->strings['Security:'] = 'Beveiliging:'; -$a->strings['Email login name:'] = 'E-mail login naam:'; -$a->strings['Email password:'] = 'E-mail wachtwoord:'; -$a->strings['Reply-to address:'] = 'Antwoord adres:'; -$a->strings['Send public posts to all email contacts:'] = 'Openbare posts naar alle e-mail contacten versturen:'; -$a->strings['Action after import:'] = 'Actie na importeren:'; -$a->strings['Mark as seen'] = 'Als \'gelezen\' markeren'; -$a->strings['Move to folder'] = 'Naar map verplaatsen'; -$a->strings['Move to folder:'] = 'Verplaatsen naar map:'; -$a->strings['Unable to find your profile. Please contact your admin.'] = 'Kan je profiel niet vinden. Contacteer alsjeblieft je beheerder.'; -$a->strings['Account Types'] = 'Account Types'; -$a->strings['Personal Page Subtypes'] = 'Persoonlijke Pagina Subtypes'; -$a->strings['Community Forum Subtypes'] = 'Groepsforum Subtypes'; -$a->strings['Personal Page'] = 'Persoonlijke pagina'; -$a->strings['Account for a personal profile.'] = 'Account voor een persoonlijk profiel'; -$a->strings['Organisation Page'] = 'Organisatie Pagina'; -$a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'Account voor een organisatie die automatisch contact aanvragen goedkeurt als "Volgers".'; -$a->strings['News Page'] = 'Nieuws pagina'; -$a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'Account voor een nieuws reflector die automatisch contact aanvragen goedkeurt als "Volgers".'; -$a->strings['Community Forum'] = 'Groepsforum'; -$a->strings['Account for community discussions.'] = 'Account voor groepsdiscussies.'; -$a->strings['Normal Account Page'] = 'Normale accountpagina'; -$a->strings['Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'] = 'Account voor een normaal persoonlijk profiel dat manuele goedkeuring vereist van "Vrienden" en "Volgers".'; -$a->strings['Soapbox Page'] = 'Zeepkist-pagina'; -$a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'Account voor een publiek profiel dat automatisch contact aanvragen goedkeurt als "Volgers".'; -$a->strings['Public Forum'] = 'Publiek Forum'; -$a->strings['Automatically approves all contact requests.'] = 'Aanvaardt automatisch all contact aanvragen.'; -$a->strings['Automatic Friend Page'] = 'Automatisch Vriendschapspagina'; -$a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'Account voor een populair profiel dat automatisch contact aanvragen goedkeurt als "Vrienden".'; -$a->strings['Private Forum [Experimental]'] = 'Privé-forum [experimenteel]'; -$a->strings['Requires manual approval of contact requests.'] = 'Vereist manuele goedkeuring van contact aanvragen.'; -$a->strings['OpenID:'] = 'OpenID:'; -$a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Optioneel) Laat dit OpenID toe om in te loggen op deze account.'; -$a->strings['Publish your profile in your local site directory?'] = 'Uw profiel publiceren in uw lokale sitemap?'; -$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.'] = 'Je profiel zal gepubliceerd worden de lokale gids van deze node. Je profiel details kunnen publiek zichtbaar zijn afhankelijk van de systeem instellingen.'; -$a->strings['Your profile will also be published in the global friendica directories (e.g. %s).'] = 'Je profiel zal ook worden gepubliceerd in de globale Friendica directories (e.g. %s).'; -$a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'Je Identiteit adres is \'%s\' of \'%s\'.'; -$a->strings['Account Settings'] = 'Account Instellingen'; -$a->strings['Password Settings'] = 'Wachtwoord Instellingen'; -$a->strings['New Password:'] = 'Nieuw Wachtwoord:'; -$a->strings['Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).'] = 'Toegestane tekens zijn a-z, A-Z, 0-9 en speciale tekens behalve spatie, geaccentueerde tekens en dubbele punt.'; -$a->strings['Confirm:'] = 'Bevestig:'; -$a->strings['Leave password fields blank unless changing'] = 'Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen'; -$a->strings['Current Password:'] = 'Huidig wachtwoord:'; -$a->strings['Your current password to confirm the changes'] = 'Je huidig wachtwoord om de wijzigingen te bevestigen'; -$a->strings['Password:'] = 'Wachtwoord:'; -$a->strings['Your current password to confirm the changes of the email address'] = 'Je huidige wachtwoord om de verandering in het email adres te bevestigen'; -$a->strings['Delete OpenID URL'] = 'Verwijder OpenID URL'; -$a->strings['Basic Settings'] = 'Basis Instellingen'; -$a->strings['Full Name:'] = 'Volledige Naam:'; -$a->strings['Email Address:'] = 'E-mailadres:'; -$a->strings['Your Timezone:'] = 'Je Tijdzone:'; -$a->strings['Your Language:'] = 'Je taal:'; -$a->strings['Set the language we use to show you friendica interface and to send you emails'] = 'Configureer de taal van die we gebruiken als friendica interface en om je emails te sturen'; -$a->strings['Default Post Location:'] = 'Standaard locatie:'; -$a->strings['Use Browser Location:'] = 'Gebruik Webbrowser Locatie:'; -$a->strings['Security and Privacy Settings'] = 'Instellingen voor Beveiliging en Privacy'; -$a->strings['Maximum Friend Requests/Day:'] = 'Maximum aantal vriendschapsverzoeken per dag:'; -$a->strings['(to prevent spam abuse)'] = '(om spam misbruik te voorkomen)'; -$a->strings['Allow your profile to be searchable globally?'] = 'Wilt u dat uw profiel globaal doorzoekbaar is?'; -$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.'] = 'Activeer deze instelling als u wilt dat anderen u gemakkelijk kunnen vinden en volgen. Uw profiel is doorzoekbaar op externe systemen. Deze instelling bepaalt ook of Friendica zoekmachines zal informeren dat uw profiel moet worden geïndexeerd of niet.'; -$a->strings['Hide your contact/friend list from viewers of your profile?'] = 'Uw contact- / vriendenlijst verbergen voor hen die uw profiel bekijken?'; -$a->strings['A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list.'] = 'Een lijst met uw contacten wordt weergegeven op uw profielpagina. Activeer deze optie om de weergave van uw contactenlijst uit te schakelen.'; -$a->strings['Hide your profile details from anonymous viewers?'] = 'Je profiel details verbergen voor anonieme bezoekers?'; -$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.'] = 'Anonieme bezoekers zullen alleen je profiel foto zien, je naam en de bijnaam die je gebruikt op je profiel pagina. Je publieke berichten en reacties zullen nog altijd toegankelijk zijn via andere wegen.'; -$a->strings['Make public posts unlisted'] = 'Maak openbare berichten verborgen'; -$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.'] = 'Je openbare berichten verschijnen niet op de communitypagina\'s of in de zoekresultaten en worden ook niet naar relayservers gestuurd. Ze kunnen echter nog steeds verschijnen op openbare feeds op externe servers.'; -$a->strings['Make all posted pictures accessible'] = 'Maak alle geplaatste foto\'s toegankelijk'; -$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.'] = 'Deze optie maakt elke geplaatste foto toegankelijk via de directe link. Dit is een tijdelijke oplossing voor het probleem dat de meeste andere netwerken de rechten op afbeeldingen niet kunnen verwerken. Niet-openbare afbeeldingen zijn echter nog steeds niet zichtbaar voor het publiek in uw fotoalbums.'; -$a->strings['Allow friends to post to your profile page?'] = 'Vrienden toestaan om op jouw profielpagina te posten?'; -$a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'Je contacten kunnen berichten schrijven op je tijdslijn. Deze berichten zullen verspreid worden naar je contacten'; -$a->strings['Allow friends to tag your posts?'] = 'Sta vrienden toe om jouw berichten te labelen?'; -$a->strings['Your contacts can add additional tags to your posts.'] = 'Je contacten kunnen tags toevoegen aan je berichten.'; -$a->strings['Permit unknown people to send you private mail?'] = 'Mogen onbekende personen jou privé berichten sturen?'; -$a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Friendica netwerk gebruikers kunnen je privé boodschappen sturen zelfs als ze niet in je contact lijst staan.'; -$a->strings['Maximum private messages per day from unknown people:'] = 'Maximum aantal privé-berichten per dag van onbekende personen:'; -$a->strings['Default Post Permissions'] = 'Standaard rechten voor nieuwe berichten'; -$a->strings['Expiration settings'] = 'Vervalinstellingen'; -$a->strings['Automatically expire posts after this many days:'] = 'Laat berichten automatisch vervallen na zo veel dagen:'; -$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd.'; -$a->strings['Expire posts'] = 'Verlopen berichten'; -$a->strings['When activated, posts and comments will be expired.'] = 'Indien geactiveerd, zullen berichten en opmerkingen verlopen.'; -$a->strings['Expire personal notes'] = 'Verloop persoonlijke notities'; -$a->strings['When activated, the personal notes on your profile page will be expired.'] = 'Indien geactiveerd, verlopen de persoonlijke notities op uw profielpagina.'; -$a->strings['Expire starred posts'] = 'Berichten met ster laten vervallen'; -$a->strings['Starring posts keeps them from being expired. That behaviour is overwritten by this setting.'] = 'Berichten met een ster verhinderen dat ze verlopen. Dat gedrag wordt door deze instelling overschreven.'; -$a->strings['Expire photos'] = 'Laat foto\'s verlopen'; -$a->strings['When activated, photos will be expired.'] = 'Wanneer geactiveerd, zullen foto\'s verlopen.'; -$a->strings['Only expire posts by others'] = 'Laat alleen berichten van anderen verlopen'; -$a->strings['When activated, your own posts never expire. Then the settings above are only valid for posts you received.'] = 'Indien geactiveerd, vervallen je eigen berichten nooit. Dan zijn bovenstaande instellingen alleen geldig voor berichten die je hebt ontvangen.'; -$a->strings['Notification Settings'] = 'Notificatie Instellingen'; -$a->strings['Send a notification email when:'] = 'Stuur een notificatie e-mail wanneer:'; -$a->strings['You receive an introduction'] = 'Je ontvangt een vriendschaps- of connectieverzoek'; -$a->strings['Your introductions are confirmed'] = 'Jouw vriendschaps- of connectieverzoeken zijn bevestigd'; -$a->strings['Someone writes on your profile wall'] = 'Iemand iets op je tijdlijn schrijft'; -$a->strings['Someone writes a followup comment'] = 'Iemand een reactie schrijft'; -$a->strings['You receive a private message'] = 'Je een privé-bericht ontvangt'; -$a->strings['You receive a friend suggestion'] = 'Je een suggestie voor een vriendschap ontvangt'; -$a->strings['You are tagged in a post'] = 'Je expliciet in een bericht bent genoemd'; -$a->strings['You are poked/prodded/etc. in a post'] = 'Je in een bericht bent aangestoten/gepord/etc.'; -$a->strings['Activate desktop notifications'] = 'Activeer desktop notificaties'; -$a->strings['Show desktop popup on new notifications'] = 'Toon desktop pop-up bij nieuwe notificaties'; -$a->strings['Text-only notification emails'] = 'Alleen-tekst notificatie emails'; -$a->strings['Send text only notification emails, without the html part'] = 'Stuur alleen-tekst notificatie emails, zonder het html gedeelte'; -$a->strings['Show detailled notifications'] = 'Toon gedetailleerde notificaties'; -$a->strings['Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.'] = 'Standaard worden notificaties samengevoegd in een enkele notificatie per item. Als je deze parameter activeert wordt elke notificatie getoond.'; -$a->strings['Advanced Account/Page Type Settings'] = 'Geavanceerde Account/Pagina Type Instellingen'; -$a->strings['Change the behaviour of this account for special situations'] = 'Pas het gedrag van dit account aan voor speciale situaties'; -$a->strings['Import Contacts'] = 'Importeer contacten'; -$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Upload een CSV-bestand met de handle van uw gevolgde gebruikers in de eerste kolom die u uit de oude gebruiker hebt geëxporteerd.'; -$a->strings['Upload File'] = 'Upload bestand'; -$a->strings['Relocate'] = 'Verhuis'; -$a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Als je je profiel van een andere server hebt verhuisd, en er zijn contacten die geen updates van je ontvangen, probeer dan eens deze knop.'; -$a->strings['Resend relocate message to contacts'] = 'Stuur verhuis boodschap naar contacten'; -$a->strings['New Message'] = 'Nieuw Bericht'; -$a->strings['Unable to locate contact information.'] = 'Ik kan geen contact informatie vinden.'; -$a->strings['Discard'] = 'Verwerpen'; -$a->strings['Messages'] = 'Privéberichten'; -$a->strings['Do you really want to delete this message?'] = 'Wil je echt dit bericht verwijderen?'; -$a->strings['Conversation not found.'] = 'Gesprek niet gevonden.'; -$a->strings['Message was not deleted.'] = 'Bericht was niet gewist.'; -$a->strings['Conversation was not removed.'] = 'Conversatie was niet verwijderd.'; -$a->strings['No messages.'] = 'Geen berichten.'; -$a->strings['Message not available.'] = 'Bericht niet beschikbaar.'; -$a->strings['Delete message'] = 'Verwijder bericht'; -$a->strings['D, d M Y - g:i A'] = 'D, d M Y - g:i A'; -$a->strings['Delete conversation'] = 'Verwijder gesprek'; -$a->strings['No secure communications available. You may be able to respond from the sender\'s profile page.'] = 'Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender.'; -$a->strings['Send Reply'] = 'Verstuur Antwoord'; -$a->strings['Unknown sender - %s'] = 'Onbekende afzender - %s'; -$a->strings['You and %s'] = 'Jij en %s'; -$a->strings['%s and You'] = '%s en jij'; -$a->strings['%d message'] = [ - 0 => '%d bericht', - 1 => '%d berichten', -]; -$a->strings['default'] = 'standaard'; -$a->strings['greenzero'] = 'greenzero'; -$a->strings['purplezero'] = 'purplezero'; -$a->strings['easterbunny'] = 'easterbunny'; -$a->strings['darkzero'] = 'darkzero'; -$a->strings['comix'] = 'comix'; -$a->strings['slackr'] = 'slackr'; -$a->strings['Theme settings'] = 'Thema-instellingen'; -$a->strings['Variations'] = 'Variaties'; -$a->strings['Top Banner'] = 'Banner Bovenaan'; -$a->strings['Resize image to the width of the screen and show background color below on long pages.'] = 'Pas het beeld aan aan de breedte van het scherm en toon achtergrondkleur onder lange pagina\'s'; -$a->strings['Full screen'] = 'Volledig scherm'; -$a->strings['Resize image to fill entire screen, clipping either the right or the bottom.'] = 'Pas het beeld aan om het hele scherm te vullen, met ofwel de rechter- of de onderkant afgeknipt.'; -$a->strings['Single row mosaic'] = 'Enkele rij mozaïek'; -$a->strings['Resize image to repeat it on a single row, either vertical or horizontal.'] = 'Pas het beeld aan zodat het herhaald wordt op een enkele rij, ofwel vertikaal ofwel horizontaal'; -$a->strings['Mosaic'] = 'Mozaïek'; -$a->strings['Repeat image to fill the screen.'] = 'Herhaal beeld om het scherm te vullen.'; -$a->strings['Skip to main content'] = 'Ga naar hoofdinhoud'; -$a->strings['Note'] = 'Nota'; -$a->strings['Check image permissions if all users are allowed to see the image'] = 'Controleer of alle gebruikers permissie hebben om het beeld te zien '; -$a->strings['Custom'] = 'Aangepast'; -$a->strings['Select color scheme'] = 'Selecteer kleurschema'; -$a->strings['Copy or paste schemestring'] = 'Kopieer of plak schemastring'; -$a->strings['You can copy this string to share your theme with others. Pasting here applies the schemestring'] = 'Je kan deze string kopiëren om uw je kleurenschema met anderen te delen. Een schemastring plakken past deze toe.'; -$a->strings['Navigation bar background color'] = 'Navigatie balk achtergrondkleur'; -$a->strings['Navigation bar icon color '] = 'Navigatie balk icoon kleur'; -$a->strings['Link color'] = 'Link kleur'; -$a->strings['Set the background color'] = 'Stel de achtergrondkleur in'; -$a->strings['Content background opacity'] = 'Content achtergrond opaciteit'; -$a->strings['Set the background image'] = 'Stel het achtergrondbeeld in'; -$a->strings['Background image style'] = 'Achtergrond beeld stijl'; -$a->strings['Login page background image'] = 'Achtergrondafbeelding aanmeldpagina'; -$a->strings['Login page background color'] = 'Achtergrondkleur aanmeldpagina'; -$a->strings['Leave background image and color empty for theme defaults'] = 'Laat de achtergrondafbeelding en kleur leeg om de standaard van het thema te gebruiken'; -$a->strings['Guest'] = 'Gast'; -$a->strings['Visitor'] = 'Bezoeker'; -$a->strings['Status'] = 'Tijdlijn'; -$a->strings['Your posts and conversations'] = 'Jouw berichten en gesprekken'; +$a->strings['Enter user name: '] = 'Geef gebruikersnaam in:'; +$a->strings['Enter user email address: '] = 'Geef een gebruiker email adres in:'; +$a->strings['Enter a language (optional): '] = 'Geef uw taalkeuze in (optioneel):'; +$a->strings['User is not pending.'] = 'Gebruiker is niet in behandeling.'; +$a->strings['User has already been marked for deletion.'] = 'De gebruiker is reeds gemarkeerd voor verwijdering.'; +$a->strings['Type "yes" to delete %s'] = 'Type "Ja" om te wissen %s'; +$a->strings['Deletion aborted.'] = 'Verwijdering afgebroken.'; +$a->strings['newer'] = 'nieuwere berichten'; +$a->strings['older'] = 'oudere berichten'; +$a->strings['Frequently'] = 'Frequent'; +$a->strings['Hourly'] = 'Ieder uur'; +$a->strings['Twice daily'] = 'Twee maal daags'; +$a->strings['Daily'] = 'Dagelijks'; +$a->strings['Weekly'] = 'Wekelijks'; +$a->strings['Monthly'] = 'Maandelijks'; +$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/Chat'; +$a->strings['MySpace'] = 'MySpace'; +$a->strings['Google+'] = 'Google+'; +$a->strings['pump.io'] = 'pump.io'; +$a->strings['Twitter'] = 'Twitter'; +$a->strings['Discourse'] = 'Toespraak'; +$a->strings['Diaspora Connector'] = 'Diaspora Connector'; +$a->strings['GNU Social Connector'] = 'GNU Social Connector'; +$a->strings['ActivityPub'] = 'ActivityPub'; +$a->strings['pnut'] = 'pnut'; +$a->strings['and'] = 'en'; +$a->strings['and %d other people'] = 'en %d anderen'; +$a->strings['Visible to everybody'] = 'Zichtbaar voor iedereen'; +$a->strings['Please enter a image/video/audio/webpage URL:'] = 'Geef een afbeelding/video/audio/webpagina in:'; +$a->strings['Tag term:'] = 'Label:'; +$a->strings['Save to Folder:'] = 'Bewaren in map:'; +$a->strings['Where are you right now?'] = 'Waar ben je nu?'; +$a->strings['Delete item(s)?'] = 'Item(s) verwijderen?'; +$a->strings['New Post'] = 'Nieuw bericht'; +$a->strings['Share'] = 'Delen'; +$a->strings['upload photo'] = 'Foto uploaden'; +$a->strings['Attach file'] = 'Bestand bijvoegen'; +$a->strings['attach file'] = 'bestand bijvoegen'; +$a->strings['Bold'] = 'Vet'; +$a->strings['Italic'] = 'Cursief'; +$a->strings['Underline'] = 'Onderstrepen'; +$a->strings['Quote'] = 'Citeren'; +$a->strings['Code'] = 'Broncode'; +$a->strings['Image'] = 'Afbeelding'; +$a->strings['Link'] = 'Link'; +$a->strings['Link or Media'] = 'Link of media'; +$a->strings['Set your location'] = 'Stel je locatie in'; +$a->strings['set location'] = 'Stel uw locatie in'; +$a->strings['Clear browser location'] = 'Verwijder locatie uit uw webbrowser'; +$a->strings['clear location'] = 'Verwijder locatie uit uw webbrowser'; +$a->strings['Set title'] = 'Titel plaatsen'; +$a->strings['Categories (comma-separated list)'] = 'Categorieën (komma-gescheiden lijst)'; +$a->strings['Permission settings'] = 'Instellingen van rechten'; +$a->strings['Public post'] = 'Openbare post'; +$a->strings['Message'] = 'Bericht'; +$a->strings['Browser'] = 'Browser'; +$a->strings['Open Compose page'] = 'Open de opstelpagina'; +$a->strings['remove'] = 'verwijder'; +$a->strings['Delete Selected Items'] = 'Geselecteerde items verwijderen'; +$a->strings['%s reshared this.'] = '%s heeft dit gedeeld'; +$a->strings['View %s\'s profile @ %s'] = 'Bekijk het profiel van %s @ %s'; +$a->strings['Categories:'] = 'Categorieën:'; +$a->strings['Filed under:'] = 'Bewaard onder:'; +$a->strings['%s from %s'] = '%s van %s'; +$a->strings['View in context'] = 'In context bekijken'; +$a->strings['Local Community'] = 'Lokale Groep'; +$a->strings['Posts from local users on this server'] = 'Berichten van lokale gebruikers op deze server'; +$a->strings['Global Community'] = 'Globale gemeenschap'; +$a->strings['Posts from users of the whole federated network'] = 'Berichten van gebruikers van het hele gefedereerde netwerk'; +$a->strings['Latest Activity'] = 'Laatste activiteit'; +$a->strings['Sort by latest activity'] = 'Sorteer naar laatste activiteit'; +$a->strings['Latest Posts'] = 'Laatste Berichten'; +$a->strings['Sort by post received date'] = 'Sorteren naar ontvangstdatum bericht'; +$a->strings['Personal'] = 'Persoonlijk'; +$a->strings['Posts that mention or involve you'] = 'Alleen berichten die jou vermelden of op jou betrekking hebben'; +$a->strings['Starred'] = 'Met ster'; +$a->strings['Favourite Posts'] = 'Favoriete berichten'; +$a->strings['General Features'] = 'Algemene functies'; +$a->strings['Photo Location'] = 'Foto Locatie'; +$a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'Foto metadata wordt normaal verwijderd. Dit extraheert de locatie (indien aanwezig) vooraleer de metadata te verwijderen en verbindt die met een kaart.'; +$a->strings['Trending Tags'] = 'Populaire Tags'; +$a->strings['Show a community page widget with a list of the most popular tags in recent public posts.'] = 'Toon een widget voor communitypagina met een lijst van de populairste tags in recente openbare berichten.'; +$a->strings['Post Composition Features'] = 'Functies voor het opstellen van berichten'; +$a->strings['Explicit Mentions'] = 'Expliciete vermeldingen'; +$a->strings['Add explicit mentions to comment box for manual control over who gets mentioned in replies.'] = 'Voeg expliciete vermeldingen toe aan het opmerkingenvak voor handmatige controle over wie in antwoorden wordt vermeld.'; +$a->strings['Post/Comment Tools'] = 'Bericht-/reactiehulpmiddelen'; +$a->strings['Post Categories'] = 'Categorieën berichten'; +$a->strings['Add categories to your posts'] = 'Voeg categorieën toe aan je berichten'; +$a->strings['Advanced Profile Settings'] = 'Geavanceerde Profiel Instellingen'; +$a->strings['Tag Cloud'] = 'Tag Wolk'; +$a->strings['Provide a personal tag cloud on your profile page'] = 'Voorzie een persoonlijk tag wolk op je profiel pagina'; +$a->strings['Display Membership Date'] = 'Toon Lidmaatschap Datum'; +$a->strings['Display membership date in profile'] = 'Toon lidmaatschap datum in profiel'; +$a->strings['show more'] = 'toon meer'; +$a->strings['event'] = 'gebeurtenis'; +$a->strings['status'] = 'status'; +$a->strings['photo'] = 'foto'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s labelde %3$s van %2$s met %4$s'; +$a->strings['Follow Thread'] = 'Gesprek volgen'; +$a->strings['View Status'] = 'Bekijk status'; +$a->strings['View Profile'] = 'Bekijk profiel'; +$a->strings['View Photos'] = 'Bekijk foto\'s'; +$a->strings['Network Posts'] = 'Netwerkberichten'; +$a->strings['View Contact'] = 'Bekijk contact'; +$a->strings['Send PM'] = 'Stuur een privébericht'; +$a->strings['Block'] = 'Blokkeren'; +$a->strings['Ignore'] = 'Negeren'; +$a->strings['Connect/Follow'] = 'Verbind/Volg'; +$a->strings['Nothing new here'] = 'Niets nieuw hier'; +$a->strings['Go back'] = 'Ga terug'; +$a->strings['Clear notifications'] = 'Notificaties verwijderen'; +$a->strings['Logout'] = 'Uitloggen'; +$a->strings['End this session'] = 'Deze sessie beëindigen'; +$a->strings['Login'] = 'Login'; +$a->strings['Sign in'] = 'Inloggen'; $a->strings['Profile'] = 'Profiel'; $a->strings['Your profile page'] = 'Jouw profiel pagina'; +$a->strings['Photos'] = 'Foto\'s'; $a->strings['Your photos'] = 'Jouw foto\'s'; -$a->strings['Videos'] = 'Video\'s'; -$a->strings['Your videos'] = 'Je video\'s'; -$a->strings['Your events'] = 'Jouw gebeurtenissen'; +$a->strings['Calendar'] = 'Kalender'; +$a->strings['Personal notes'] = 'Persoonlijke nota\'s'; +$a->strings['Your personal notes'] = 'Je persoonlijke nota\'s'; +$a->strings['Home'] = 'Tijdlijn'; +$a->strings['Home Page'] = 'Jouw tijdlijn'; +$a->strings['Register'] = 'Registreer'; +$a->strings['Create an account'] = 'Maak een accoount'; +$a->strings['Help'] = 'Help'; +$a->strings['Help and documentation'] = 'Hulp en documentatie'; +$a->strings['Apps'] = 'Apps'; +$a->strings['Addon applications, utilities, games'] = 'Extra toepassingen, hulpmiddelen of spelletjes'; +$a->strings['Search'] = 'Zoeken'; +$a->strings['Search site content'] = 'Doorzoek de inhoud van de website'; +$a->strings['Full Text'] = 'Volledige tekst'; +$a->strings['Tags'] = 'Labels'; +$a->strings['Contacts'] = 'Contacten'; +$a->strings['Community'] = 'Website'; +$a->strings['Conversations on this and other servers'] = 'Gesprekken op deze en andere servers'; +$a->strings['Directory'] = 'Gids'; +$a->strings['People directory'] = 'Personengids'; +$a->strings['Information'] = 'Informatie'; +$a->strings['Information about this friendica instance'] = 'informatie over deze friendica server'; +$a->strings['Terms of Service'] = 'Gebruiksvoorwaarden'; +$a->strings['Terms of Service of this Friendica instance'] = 'Gebruiksvoorwaarden op deze Friendica server'; $a->strings['Network'] = 'Netwerk'; $a->strings['Conversations from your friends'] = 'Gesprekken van je vrienden'; -$a->strings['Events and Calendar'] = 'Gebeurtenissen en kalender'; +$a->strings['Your posts and conversations'] = 'Jouw berichten en gesprekken'; +$a->strings['Introductions'] = 'Verzoeken'; +$a->strings['Friend Requests'] = 'Vriendschapsverzoeken'; +$a->strings['Notifications'] = 'Notificaties'; +$a->strings['See all notifications'] = 'Toon alle notificaties'; +$a->strings['Mark as seen'] = 'Als \'gelezen\' markeren'; $a->strings['Private mail'] = 'Privéberichten'; +$a->strings['Inbox'] = 'Inbox'; +$a->strings['Outbox'] = 'Verzonden berichten'; +$a->strings['Accounts'] = 'Gebruikers'; +$a->strings['Manage other pages'] = 'Andere pagina\'s beheren'; $a->strings['Settings'] = 'Instellingen'; $a->strings['Account settings'] = 'Account instellingen'; -$a->strings['Contacts'] = 'Contacten'; $a->strings['Manage/edit friends and contacts'] = 'Beheer/Wijzig vrienden en contacten'; -$a->strings['Alignment'] = 'Uitlijning'; -$a->strings['Left'] = 'Links'; -$a->strings['Center'] = 'Gecentreerd'; -$a->strings['Color scheme'] = 'Kleurschema'; -$a->strings['Posts font size'] = 'Lettergrootte berichten'; -$a->strings['Textareas font size'] = 'Lettergrootte tekstgebieden'; -$a->strings['Comma separated list of helper forums'] = 'Kommagescheiden lijst van de helper forums'; -$a->strings['don\'t show'] = 'niet tonen'; -$a->strings['show'] = 'tonen'; -$a->strings['Set style'] = 'Stijl instellen'; -$a->strings['Community Pages'] = 'Forum/groepspagina\'s'; -$a->strings['Community Profiles'] = 'Forum/groepsprofielen'; -$a->strings['Help or @NewHere ?'] = 'Help of @NewHere ?'; -$a->strings['Connect Services'] = 'Diensten verbinden'; -$a->strings['Find Friends'] = 'Zoek vrienden'; -$a->strings['Last users'] = 'Laatste gebruikers'; +$a->strings['Admin'] = 'Beheer'; +$a->strings['Site setup and configuration'] = 'Website opzetten en configureren'; +$a->strings['Navigation'] = 'Navigatie'; +$a->strings['Site map'] = 'Sitemap'; +$a->strings['Embedding disabled'] = 'Inbedden uitgeschakeld'; +$a->strings['Embedded content'] = 'Ingebedde inhoud'; +$a->strings['first'] = 'eerste'; +$a->strings['prev'] = 'vorige'; +$a->strings['next'] = 'volgende'; +$a->strings['last'] = 'laatste'; +$a->strings['Image/photo'] = 'Afbeelding/foto'; +$a->strings['Click to open/close'] = 'klik om te openen/sluiten'; +$a->strings['$1 wrote:'] = '$1 schreef:'; +$a->strings['Encrypted content'] = 'Versleutelde inhoud'; +$a->strings['Invalid source protocol'] = 'Ongeldig bron protocol'; +$a->strings['Invalid link protocol'] = 'Ongeldig verbinding protocol'; +$a->strings['Loading more entries...'] = 'Meer berichten aan het laden...'; +$a->strings['The end'] = 'Het einde'; +$a->strings['Follow'] = 'Volg'; +$a->strings['Add New Contact'] = 'Nieuw Contact toevoegen'; +$a->strings['Enter address or web location'] = 'Voeg een webadres of -locatie in:'; +$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara'; +$a->strings['Connect'] = 'Verbinden'; +$a->strings['%d invitation available'] = [ + 0 => '%d uitnodiging beschikbaar', + 1 => '%d uitnodigingen beschikbaar', +]; $a->strings['Find People'] = 'Zoek mensen'; $a->strings['Enter name or interest'] = 'Vul naam of interesse in'; $a->strings['Examples: Robert Morgenstein, Fishing'] = 'Voorbeelden: Jan Peeters, Vissen'; $a->strings['Find'] = 'Zoek'; +$a->strings['Friend Suggestions'] = 'Vriendschapsvoorstellen'; $a->strings['Similar Interests'] = 'Dezelfde interesses'; $a->strings['Random Profile'] = 'Willekeurig Profiel'; $a->strings['Invite Friends'] = 'Vrienden uitnodigen'; $a->strings['Global Directory'] = 'Globale gids'; $a->strings['Local Directory'] = 'Lokale gids'; -$a->strings['Forums'] = 'Forums'; -$a->strings['External link to forum'] = 'Externe link naar het forum'; -$a->strings['show more'] = 'toon meer'; -$a->strings['Quick Start'] = 'Snelstart'; -$a->strings['Help'] = 'Help'; -$a->strings['Monday'] = 'Maandag'; -$a->strings['Tuesday'] = 'Dinsdag'; -$a->strings['Wednesday'] = 'Woensdag'; -$a->strings['Thursday'] = 'Donderdag'; -$a->strings['Friday'] = 'Vrijdag'; -$a->strings['Saturday'] = 'Zaterdag'; -$a->strings['Sunday'] = 'Zondag'; -$a->strings['January'] = 'Januari'; -$a->strings['February'] = 'Februari'; -$a->strings['March'] = 'Maart'; -$a->strings['April'] = 'April'; -$a->strings['May'] = 'Mei'; -$a->strings['June'] = 'Juni'; -$a->strings['July'] = 'Juli'; -$a->strings['August'] = 'Augustus'; -$a->strings['September'] = 'September'; -$a->strings['October'] = 'Oktober'; -$a->strings['November'] = 'November'; -$a->strings['December'] = 'December'; -$a->strings['Mon'] = 'Maa'; -$a->strings['Tue'] = 'Din'; -$a->strings['Wed'] = 'Woe'; -$a->strings['Thu'] = 'Don'; -$a->strings['Fri'] = 'Vrij'; -$a->strings['Sat'] = 'Zat'; -$a->strings['Sun'] = 'Zon'; -$a->strings['Jan'] = 'Jan'; -$a->strings['Feb'] = 'Feb'; -$a->strings['Mar'] = 'Maa'; -$a->strings['Apr'] = 'Apr'; -$a->strings['Jun'] = 'Jun'; -$a->strings['Jul'] = 'Jul'; -$a->strings['Aug'] = 'Aug'; -$a->strings['Sep'] = 'Sep'; -$a->strings['Oct'] = 'Okt'; -$a->strings['Nov'] = 'Nov'; -$a->strings['Dec'] = 'Dec'; -$a->strings['poke'] = 'por'; -$a->strings['poked'] = 'porde'; -$a->strings['ping'] = 'ping'; -$a->strings['pinged'] = 'gepingd'; -$a->strings['prod'] = 'porren'; -$a->strings['prodded'] = 'gepord'; -$a->strings['slap'] = 'slaan'; -$a->strings['slapped'] = 'geslagen'; -$a->strings['finger'] = 'finger'; -$a->strings['fingered'] = 'gerfingerd'; -$a->strings['rebuff'] = 'afpoeieren'; -$a->strings['rebuffed'] = 'afgepoeierd'; -$a->strings['Friendica can\'t display this page at the moment, please contact the administrator.'] = 'Friendica kan deze pagina momenteel niet weergeven, neem contact op met de beheerder.'; -$a->strings['Error decoding account file'] = 'Fout bij decoderen van het account bestand'; -$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Fout! Geen versie data in het bestand! Is dit wel een Friendica account bestand?'; -$a->strings['User \'%s\' already exists on this server!'] = 'Gebruiker \'%s\' bestaat al op deze server!'; -$a->strings['User creation error'] = 'Fout bij het aanmaken van de gebruiker'; -$a->strings['%d contact not imported'] = [ - 0 => '%d contact werd niet geïmporteerd', - 1 => '%d contacten werden niet geïmporteerd', +$a->strings['Everyone'] = 'Iedereen'; +$a->strings['Relationships'] = 'Relaties'; +$a->strings['All Contacts'] = 'Alle Contacten'; +$a->strings['Protocols'] = 'Protocollen'; +$a->strings['All Protocols'] = 'Alle protocollen'; +$a->strings['Saved Folders'] = 'Bewaarde Mappen'; +$a->strings['Everything'] = 'Alles'; +$a->strings['Categories'] = 'Categorieën'; +$a->strings['%d contact in common'] = [ + 0 => '%d gedeeld contact', + 1 => '%d gedeelde contacten', ]; -$a->strings['User profile creation error'] = 'Fout bij het aanmaken van het gebruikersprofiel'; -$a->strings['Done. You can now login with your username and password'] = 'Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord'; +$a->strings['Archives'] = 'Archieven'; +$a->strings['News'] = 'Nieuws'; +$a->strings['Account Types'] = 'Account Types'; +$a->strings['Export'] = 'Exporteer'; +$a->strings['Export calendar as ical'] = 'Exporteer kalender als ical'; +$a->strings['Export calendar as csv'] = 'Exporteer kalender als csv'; +$a->strings['No contacts'] = 'Geen contacten'; +$a->strings['%d Contact'] = [ + 0 => '%d contact', + 1 => '%d contacten', +]; +$a->strings['View Contacts'] = 'Bekijk contacten'; +$a->strings['Remove term'] = 'Verwijder zoekterm'; +$a->strings['Saved Searches'] = 'Opgeslagen zoekopdrachten'; +$a->strings['Trending Tags (last %d hour)'] = [ + 0 => 'Populaire Tags (laatste %d uur)', + 1 => 'Populaire Tags (laatste %d uur)', +]; +$a->strings['More Trending Tags'] = 'Meer Populaire Tags'; +$a->strings['XMPP:'] = 'XMPP:'; +$a->strings['Location:'] = 'Plaats:'; +$a->strings['Network:'] = 'Netwerk:'; +$a->strings['Unfollow'] = 'Stop volgen'; +$a->strings['Yourself'] = 'Jezelf'; +$a->strings['Mutuals'] = 'Gemeenschappelijk'; +$a->strings['Post to Email'] = 'Verzenden per e-mail'; +$a->strings['Public'] = 'Openbaar'; +$a->strings['This content will be shown to all your followers and can be seen in the community pages and by anyone with its link.'] = 'Deze inhoud wordt aan al uw volgers getoond en is te zien op de communitypagina\'s en door iedereen met de link.'; +$a->strings['Limited/Private'] = 'Beperkt/Privé'; +$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.'] = 'Deze inhoud wordt alleen getoond aan de mensen in het eerste vak, met uitzondering van de mensen die in het tweede vak worden genoemd. Het wordt nergens openbaar weergegeven.'; +$a->strings['Show to:'] = 'Toon aan:'; +$a->strings['Except to:'] = 'Behalve aan:'; +$a->strings['CC: email addresses'] = 'CC: e-mailadressen'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be'; +$a->strings['Connectors'] = 'Connectors'; $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.'] = 'Het databaseconfiguratiebestand "config/local.config.php" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver. '; $a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Het kan nodig zijn om het bestand "database.sql" manueel te importeren met phpmyadmin of mysql.'; $a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Kan geen command-line-versie van PHP vinden in het PATH van de webserver.'; @@ -898,14 +502,12 @@ $a->strings['Error: POSIX PHP module required but not installed.'] = 'Fout: POSI $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.'] = 'Het installatieprogramma moet een bestand "local.config.php" in de "config" map van je webserver aanmaken, maar kan dit niet doen. '; $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.'] = 'Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel.'; $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.'] = 'Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand local.config.php in Friendica "config" map. '; -$a->strings['You can alternatively skip this procedure and perform a manual installation. Please see the file "INSTALL.txt" for instructions.'] = 'Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand "INSTALL.txt" voor instructies.'; $a->strings['config/local.config.php is writable'] = 'config/local.config.php is schrijfbaar '; $a->strings['Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.'] = 'Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina\'s weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen.'; $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.'] = 'Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie.'; $a->strings['Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder.'] = 'Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map.'; $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.'] = 'Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten.'; $a->strings['view/smarty3 is writable'] = 'view/smarty3 is schrijfbaar'; -$a->strings['Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist to .htaccess.'] = 'Url rewrite in .htaccess werkt niet. Heb je .htaccess-dist gekopieerd naar .htaccess?'; $a->strings['Error message from Curl when fetching'] = 'Fout boodschap van Curl bij ophalen'; $a->strings['Url rewrite is working'] = 'Url rewrite werkt correct'; $a->strings['ImageMagick PHP extension is not installed'] = 'ImageMagick PHP extensie is niet geïnstalleerd'; @@ -913,17 +515,45 @@ $a->strings['ImageMagick PHP extension is installed'] = 'ImageMagick PHP extensi $a->strings['ImageMagick supports GIF'] = 'ImageMagick ondersteunt GIF'; $a->strings['Database already in use.'] = 'Database al in gebruik.'; $a->strings['Could not connect to database.'] = 'Kon geen toegang krijgen tot de database.'; -$a->strings['Yourself'] = 'Jezelf'; -$a->strings['Followers'] = 'Volgers'; -$a->strings['Mutuals'] = 'Gemeenschappelijk'; -$a->strings['Post to Email'] = 'Verzenden per e-mail'; -$a->strings['Public'] = 'Openbaar'; -$a->strings['This content will be shown to all your followers and can be seen in the community pages and by anyone with its link.'] = 'Deze inhoud wordt aan al uw volgers getoond en is te zien op de communitypagina\'s en door iedereen met de link.'; -$a->strings['Limited/Private'] = 'Beperkt/Privé'; -$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.'] = 'Deze inhoud wordt alleen getoond aan de mensen in het eerste vak, met uitzondering van de mensen die in het tweede vak worden genoemd. Het wordt nergens openbaar weergegeven.'; -$a->strings['Show to:'] = 'Toon aan:'; -$a->strings['Except to:'] = 'Behalve aan:'; -$a->strings['Connectors'] = 'Connectors'; +$a->strings['Monday'] = 'Maandag'; +$a->strings['Tuesday'] = 'Dinsdag'; +$a->strings['Wednesday'] = 'Woensdag'; +$a->strings['Thursday'] = 'Donderdag'; +$a->strings['Friday'] = 'Vrijdag'; +$a->strings['Saturday'] = 'Zaterdag'; +$a->strings['Sunday'] = 'Zondag'; +$a->strings['January'] = 'Januari'; +$a->strings['February'] = 'Februari'; +$a->strings['March'] = 'Maart'; +$a->strings['April'] = 'April'; +$a->strings['May'] = 'Mei'; +$a->strings['June'] = 'Juni'; +$a->strings['July'] = 'Juli'; +$a->strings['August'] = 'Augustus'; +$a->strings['September'] = 'September'; +$a->strings['October'] = 'Oktober'; +$a->strings['November'] = 'November'; +$a->strings['December'] = 'December'; +$a->strings['Mon'] = 'Maa'; +$a->strings['Tue'] = 'Din'; +$a->strings['Wed'] = 'Woe'; +$a->strings['Thu'] = 'Don'; +$a->strings['Fri'] = 'Vrij'; +$a->strings['Sat'] = 'Zat'; +$a->strings['Sun'] = 'Zon'; +$a->strings['Jan'] = 'Jan'; +$a->strings['Feb'] = 'Feb'; +$a->strings['Mar'] = 'Maa'; +$a->strings['Apr'] = 'Apr'; +$a->strings['Jun'] = 'Jun'; +$a->strings['Jul'] = 'Jul'; +$a->strings['Aug'] = 'Aug'; +$a->strings['Sep'] = 'Sep'; +$a->strings['Oct'] = 'Okt'; +$a->strings['Nov'] = 'Nov'; +$a->strings['Dec'] = 'Dec'; +$a->strings['Friendica can\'t display this page at the moment, please contact the administrator.'] = 'Friendica kan deze pagina momenteel niet weergeven, neem contact op met de beheerder.'; +$a->strings['Enter a valid existing folder'] = 'Geef een geldige bestaande folder in'; $a->strings['Update %s failed. See error logs.'] = 'Wijziging %s mislukt. Lees de error logbestanden.'; $a->strings[' The friendica developers released update %s recently, @@ -934,180 +564,6 @@ $a->strings[' maar wanneer ik deze probeerde te installeren ging het verschrikkelijk fout. Dit moet snel opgelost worden en ik kan het niet alleen. Contacteer alstublieft een Friendica ontwikkelaar als je mij zelf niet kan helpen. Mijn database kan ongeldig zijn.'; -$a->strings['The error message is -[pre]%s[/pre]'] = 'De foutboodschap is -[pre]%s[/pre]'; -$a->strings[' - The friendica database was successfully updated from %s to %s.'] = ' - De Friendica database is succesvol geupdatet van %s naar %s'; -$a->strings['Friendica Notification'] = 'Friendica Notificatie'; -$a->strings['%1$s, %2$s Administrator'] = '%1$s, %2$s Beheerder'; -$a->strings['%s Administrator'] = '%s Beheerder'; -$a->strings['thanks'] = 'bedankt'; -$a->strings['Miscellaneous'] = 'Diversen'; -$a->strings['Birthday:'] = 'Verjaardag:'; -$a->strings['Age: '] = 'Leeftijd:'; -$a->strings['%d year old'] = [ - 0 => '%d jaar oud', - 1 => '%d jaar oud', -]; -$a->strings['YYYY-MM-DD or MM-DD'] = 'JJJJ-MM-DD of MM-DD'; -$a->strings['never'] = 'nooit'; -$a->strings['less than a second ago'] = 'minder dan een seconde geleden'; -$a->strings['year'] = 'jaar'; -$a->strings['years'] = 'jaren'; -$a->strings['months'] = 'maanden'; -$a->strings['weeks'] = 'weken'; -$a->strings['days'] = 'dagen'; -$a->strings['hour'] = 'uur'; -$a->strings['hours'] = 'uren'; -$a->strings['minute'] = 'minuut'; -$a->strings['minutes'] = 'minuten'; -$a->strings['second'] = 'seconde'; -$a->strings['seconds'] = 'seconden'; -$a->strings['in %1$d %2$s'] = 'in %1$d%2$s'; -$a->strings['%1$d %2$s ago'] = '%1$d %2$s geleden'; -$a->strings['Image/photo'] = 'Afbeelding/foto'; -$a->strings['link to source'] = 'Verwijzing naar bron'; -$a->strings['Click to open/close'] = 'klik om te openen/sluiten'; -$a->strings['$1 wrote:'] = '$1 schreef:'; -$a->strings['Encrypted content'] = 'Versleutelde inhoud'; -$a->strings['Invalid source protocol'] = 'Ongeldig bron protocol'; -$a->strings['Invalid link protocol'] = 'Ongeldig verbinding protocol'; -$a->strings['Loading more entries...'] = 'Meer berichten aan het laden...'; -$a->strings['The end'] = 'Het einde'; -$a->strings['Follow'] = 'Volg'; -$a->strings['Search'] = 'Zoeken'; -$a->strings['@name, !forum, #tags, content'] = '@naam, !forum, #labels, inhoud'; -$a->strings['Full Text'] = 'Volledige tekst'; -$a->strings['Tags'] = 'Labels'; -$a->strings['Export'] = 'Exporteer'; -$a->strings['Export calendar as ical'] = 'Exporteer kalender als ical'; -$a->strings['Export calendar as csv'] = 'Exporteer kalender als csv'; -$a->strings['No contacts'] = 'Geen contacten'; -$a->strings['%d Contact'] = [ - 0 => '%d contact', - 1 => '%d contacten', -]; -$a->strings['View Contacts'] = 'Bekijk contacten'; -$a->strings['Remove term'] = 'Verwijder zoekterm'; -$a->strings['Saved Searches'] = 'Opgeslagen zoekopdrachten'; -$a->strings['Trending Tags (last %d hour)'] = [ - 0 => 'Populaire Tags (laatste %d uur)', - 1 => 'Populaire Tags (laatste %d uur)', -]; -$a->strings['More Trending Tags'] = 'Meer Populaire Tags'; -$a->strings['newer'] = 'nieuwere berichten'; -$a->strings['older'] = 'oudere berichten'; -$a->strings['prev'] = 'vorige'; -$a->strings['last'] = 'laatste'; -$a->strings['Frequently'] = 'Frequent'; -$a->strings['Hourly'] = 'Ieder uur'; -$a->strings['Twice daily'] = 'Twee maal daags'; -$a->strings['Daily'] = 'Dagelijks'; -$a->strings['Weekly'] = 'Wekelijks'; -$a->strings['Monthly'] = 'Maandelijks'; -$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/Chat'; -$a->strings['MySpace'] = 'MySpace'; -$a->strings['Google+'] = 'Google+'; -$a->strings['pump.io'] = 'pump.io'; -$a->strings['Twitter'] = 'Twitter'; -$a->strings['Discourse'] = 'Toespraak'; -$a->strings['Diaspora Connector'] = 'Diaspora Connector'; -$a->strings['GNU Social Connector'] = 'GNU Social Connector'; -$a->strings['ActivityPub'] = 'ActivityPub'; -$a->strings['pnut'] = 'pnut'; -$a->strings['General Features'] = 'Algemene functies'; -$a->strings['Photo Location'] = 'Foto Locatie'; -$a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'Foto metadata wordt normaal verwijderd. Dit extraheert de locatie (indien aanwezig) vooraleer de metadata te verwijderen en verbindt die met een kaart.'; -$a->strings['Trending Tags'] = 'Populaire Tags'; -$a->strings['Show a community page widget with a list of the most popular tags in recent public posts.'] = 'Toon een widget voor communitypagina met een lijst van de populairste tags in recente openbare berichten.'; -$a->strings['Post Composition Features'] = 'Functies voor het opstellen van berichten'; -$a->strings['Auto-mention Forums'] = 'Auto-vermelding Forums'; -$a->strings['Add/remove mention when a forum page is selected/deselected in ACL window.'] = 'Voeg toe/verwijder vermelding wanneer een forum pagina geselecteerd/gedeselecteerd wordt in het ACL venster.'; -$a->strings['Explicit Mentions'] = 'Expliciete vermeldingen'; -$a->strings['Add explicit mentions to comment box for manual control over who gets mentioned in replies.'] = 'Voeg expliciete vermeldingen toe aan het opmerkingenvak voor handmatige controle over wie in antwoorden wordt vermeld.'; -$a->strings['Post/Comment Tools'] = 'Bericht-/reactiehulpmiddelen'; -$a->strings['Post Categories'] = 'Categorieën berichten'; -$a->strings['Add categories to your posts'] = 'Voeg categorieën toe aan je berichten'; -$a->strings['Advanced Profile Settings'] = 'Geavanceerde Profiel Instellingen'; -$a->strings['List Forums'] = 'Lijst Fora op'; -$a->strings['Show visitors public community forums at the Advanced Profile Page'] = 'Toon bezoekers de publieke groepsfora in de Geavanceerde Profiel Pagina'; -$a->strings['Tag Cloud'] = 'Tag Wolk'; -$a->strings['Provide a personal tag cloud on your profile page'] = 'Voorzie een persoonlijk tag wolk op je profiel pagina'; -$a->strings['Display Membership Date'] = 'Toon Lidmaatschap Datum'; -$a->strings['Display membership date in profile'] = 'Toon lidmaatschap datum in profiel'; -$a->strings['Nothing new here'] = 'Niets nieuw hier'; -$a->strings['Go back'] = 'Ga terug'; -$a->strings['Clear notifications'] = 'Notificaties verwijderen'; -$a->strings['Logout'] = 'Uitloggen'; -$a->strings['End this session'] = 'Deze sessie beëindigen'; -$a->strings['Login'] = 'Login'; -$a->strings['Sign in'] = 'Inloggen'; -$a->strings['Personal notes'] = 'Persoonlijke nota\'s'; -$a->strings['Your personal notes'] = 'Je persoonlijke nota\'s'; -$a->strings['Home'] = 'Tijdlijn'; -$a->strings['Home Page'] = 'Jouw tijdlijn'; -$a->strings['Register'] = 'Registreer'; -$a->strings['Create an account'] = 'Maak een accoount'; -$a->strings['Help and documentation'] = 'Hulp en documentatie'; -$a->strings['Apps'] = 'Apps'; -$a->strings['Addon applications, utilities, games'] = 'Extra toepassingen, hulpmiddelen of spelletjes'; -$a->strings['Search site content'] = 'Doorzoek de inhoud van de website'; -$a->strings['Community'] = 'Website'; -$a->strings['Conversations on this and other servers'] = 'Gesprekken op deze en andere servers'; -$a->strings['Directory'] = 'Gids'; -$a->strings['People directory'] = 'Personengids'; -$a->strings['Information'] = 'Informatie'; -$a->strings['Information about this friendica instance'] = 'informatie over deze friendica server'; -$a->strings['Terms of Service'] = 'Gebruiksvoorwaarden'; -$a->strings['Terms of Service of this Friendica instance'] = 'Gebruiksvoorwaarden op deze Friendica server'; -$a->strings['Introductions'] = 'Verzoeken'; -$a->strings['Friend Requests'] = 'Vriendschapsverzoeken'; -$a->strings['Notifications'] = 'Notificaties'; -$a->strings['See all notifications'] = 'Toon alle notificaties'; -$a->strings['Mark all system notifications seen'] = 'Alle systeemnotificaties als gelezen markeren'; -$a->strings['Inbox'] = 'Inbox'; -$a->strings['Outbox'] = 'Verzonden berichten'; -$a->strings['Accounts'] = 'Gebruikers'; -$a->strings['Manage other pages'] = 'Andere pagina\'s beheren'; -$a->strings['Admin'] = 'Beheer'; -$a->strings['Site setup and configuration'] = 'Website opzetten en configureren'; -$a->strings['Navigation'] = 'Navigatie'; -$a->strings['Site map'] = 'Sitemap'; -$a->strings['Embedding disabled'] = 'Inbedden uitgeschakeld'; -$a->strings['Embedded content'] = 'Ingebedde inhoud'; -$a->strings['Add New Contact'] = 'Nieuw Contact toevoegen'; -$a->strings['Enter address or web location'] = 'Voeg een webadres of -locatie in:'; -$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara'; -$a->strings['Connect'] = 'Verbinden'; -$a->strings['%d invitation available'] = [ - 0 => '%d uitnodiging beschikbaar', - 1 => '%d uitnodigingen beschikbaar', -]; -$a->strings['Groups'] = 'Groepen'; -$a->strings['Everyone'] = 'Iedereen'; -$a->strings['Following'] = 'Volgend'; -$a->strings['Mutual friends'] = 'Gemeenschappelijke vrienden'; -$a->strings['Relationships'] = 'Relaties'; -$a->strings['All Contacts'] = 'Alle Contacten'; -$a->strings['Protocols'] = 'Protocollen'; -$a->strings['All Protocols'] = 'Alle protocollen'; -$a->strings['Saved Folders'] = 'Bewaarde Mappen'; -$a->strings['Everything'] = 'Alles'; -$a->strings['Categories'] = 'Categorieën'; -$a->strings['%d contact in common'] = [ - 0 => '%d gedeeld contact', - 1 => '%d gedeelde contacten', -]; -$a->strings['Archives'] = 'Archieven'; $a->strings[' Error %d occurred during database update: %s @@ -1118,60 +574,93 @@ Fout %d is opgetreden tijdens database update: $a->strings['Errors encountered performing database changes: '] = 'Fouten opgetreden tijdens database aanpassingen:'; $a->strings['%s: Database update'] = '%s: Database update'; $a->strings['%s: updating %s table.'] = '%s: tabel %s aan het updaten.'; -$a->strings['Database storage failed to update %s'] = 'Database opslag faalde om %s te vernieuwen'; -$a->strings['Database storage failed to insert data'] = 'Database opslag mislukt om gegevens in te voegen'; -$a->strings['Enter a valid existing folder'] = 'Geef een geldige bestaande folder in'; -$a->strings['l F d, Y \@ g:i A'] = 'l F d, Y \@ g:i A'; +$a->strings['Unauthorized'] = 'Onbevoegd'; +$a->strings['Legacy module file not found: %s'] = 'Legacy module bestand niet gevonden: %s'; +$a->strings['Everybody'] = 'Iedereen'; +$a->strings['edit'] = 'verander'; +$a->strings['add'] = 'toevoegen'; +$a->strings['Approve'] = 'Goedkeuren'; +$a->strings['Organisation'] = 'Organisatie'; +$a->strings['Disallowed profile URL.'] = 'Niet toegelaten profiel adres.'; +$a->strings['Blocked domain'] = 'Domein geblokeerd'; +$a->strings['Connect URL missing.'] = 'Connectie URL ontbreekt.'; +$a->strings['The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.'] = 'Het contact kon niet toegevoegd worden. Gelieve de relevante netwerk gegevens na te kijken in Instellingen -> Sociale Netwerken.'; +$a->strings['The profile address specified does not provide adequate information.'] = 'Het opgegeven profiel adres bevat geen adequate informatie.'; +$a->strings['No compatible communication protocols or feeds were discovered.'] = 'Er werden geen compatibele communicatieprotocols of feeds ontdekt.'; +$a->strings['An author or name was not found.'] = 'Er werd geen auteur of naam gevonden.'; +$a->strings['No browser URL could be matched to this address.'] = 'Er kan geen browser URL gematcht worden met dit adres.'; +$a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact.'; +$a->strings['Use mailto: in front of address to force email check.'] = 'Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen.'; +$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Het opgegeven profiel adres behoort tot een netwerk dat gedeactiveerd is op deze site.'; +$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Profiel met restricties. Deze peresoon zal geen directe/persoonlijke notificaties van jou kunnen ontvangen.'; +$a->strings['Unable to retrieve contact information.'] = 'Het was niet mogelijk informatie over dit contact op te halen.'; $a->strings['Starts:'] = 'Begint:'; $a->strings['Finishes:'] = 'Eindigt:'; $a->strings['all-day'] = 'de hele dag'; $a->strings['Sept'] = 'Sep'; +$a->strings['today'] = 'vandaag'; +$a->strings['month'] = 'maand'; +$a->strings['week'] = 'week'; +$a->strings['day'] = 'dag'; $a->strings['No events to display'] = 'Geen gebeurtenissen te tonen'; +$a->strings['Access to this profile has been restricted.'] = 'Toegang tot dit profiel is beperkt.'; $a->strings['l, F j'] = 'l j F'; $a->strings['Edit event'] = 'Gebeurtenis bewerken'; $a->strings['Duplicate event'] = 'Duplicate gebeurtenis'; $a->strings['Delete event'] = 'Verwijder gebeurtenis'; +$a->strings['l F d, Y \@ g:i A'] = 'l F d, Y \@ g:i A'; $a->strings['D g:i A'] = 'D g:i A'; $a->strings['g:i A'] = 'g:i A'; $a->strings['Show map'] = 'Toon kaart'; $a->strings['Hide map'] = 'Verberg kaart'; $a->strings['%s\'s birthday'] = '%s\'s verjaardag'; $a->strings['Happy Birthday %s'] = 'Gefeliciteerd %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.'] = 'Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. '; -$a->strings['Default privacy group for new contacts'] = 'Standaard privacy groep voor nieuwe contacten'; -$a->strings['Everybody'] = 'Iedereen'; -$a->strings['edit'] = 'verander'; -$a->strings['add'] = 'toevoegen'; -$a->strings['Edit group'] = 'Verander groep'; -$a->strings['Contacts not in any group'] = 'Contacten bestaan in geen enkele groep'; -$a->strings['Create a new group'] = 'Maak nieuwe groep'; -$a->strings['Group Name: '] = 'Groepsnaam:'; -$a->strings['Edit groups'] = 'Bewerk groepen'; +$a->strings['activity'] = 'activiteit'; +$a->strings['post'] = 'bericht'; +$a->strings['Content warning: %s'] = 'Waarschuwing inhoud: %s'; +$a->strings['bytes'] = 'bytes'; +$a->strings['View on separate page'] = 'Bekijk op aparte pagina'; $a->strings['[no subject]'] = '[geen onderwerp]'; +$a->strings['Wall Photos'] = 'Tijdlijn foto\'s'; $a->strings['Edit profile'] = 'Bewerk profiel'; $a->strings['Change profile photo'] = 'Profiel foto wijzigen'; $a->strings['Homepage:'] = 'Website:'; $a->strings['About:'] = 'Over:'; -$a->strings['XMPP:'] = 'XMPP:'; -$a->strings['Unfollow'] = 'Stop volgen'; $a->strings['Atom feed'] = 'Atom feed'; -$a->strings['Network:'] = 'Netwerk:'; -$a->strings['g A l F d'] = 'G l j F'; $a->strings['F d'] = 'd F'; $a->strings['[today]'] = '[vandaag]'; $a->strings['Birthday Reminders'] = 'Verjaardagsherinneringen'; $a->strings['Birthdays this week:'] = 'Verjaardagen deze week:'; +$a->strings['g A l F d'] = 'G l j F'; $a->strings['[No description]'] = '[Geen omschrijving]'; $a->strings['Event Reminders'] = 'Gebeurtenisherinneringen'; $a->strings['Upcoming events the next 7 days:'] = 'Evenementen de komende 7 dagen:'; $a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s verwelkomt %2$s'; +$a->strings['Hometown:'] = 'Woonplaats:'; +$a->strings['With:'] = 'Met:'; +$a->strings['Since:'] = 'Sinds:'; +$a->strings['Sexual Preference:'] = 'Seksuele Voorkeur:'; +$a->strings['Political Views:'] = 'Politieke standpunten:'; +$a->strings['Religious Views:'] = 'Geloof:'; +$a->strings['Likes:'] = 'Houdt van:'; +$a->strings['Dislikes:'] = 'Houdt niet van:'; +$a->strings['Title/Description:'] = 'Titel/Beschrijving:'; +$a->strings['Summary'] = 'Samenvatting'; +$a->strings['Musical interests'] = 'Muzikale interesses'; +$a->strings['Books, literature'] = 'Boeken, literatuur'; +$a->strings['Television'] = 'Televisie'; +$a->strings['Film/dance/culture/entertainment'] = 'Film/dans/cultuur/ontspanning'; +$a->strings['Hobbies/Interests'] = 'Hobby\'s/Interesses'; +$a->strings['Love/romance'] = 'Liefde/romance'; +$a->strings['Work/employment'] = 'Werk'; +$a->strings['School/education'] = 'School/opleiding'; +$a->strings['Contact information and Social Networks'] = 'Contactinformatie en sociale netwerken'; $a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt.'; $a->strings['Login failed'] = 'Login mislukt'; $a->strings['Not enough information to authenticate'] = 'Niet genoeg informatie om te authentificeren'; $a->strings['Password can\'t be empty'] = 'Wachtwoord mag niet leeg zijn'; $a->strings['Empty passwords are not allowed.'] = 'Lege wachtwoorden zijn niet toegestaan'; $a->strings['The new password has been exposed in a public data dump, please choose another.'] = 'The nieuwe wachtwoord is gecompromitteerd in een publieke data dump, kies alsjeblieft een ander.'; -$a->strings['The password can\'t contain accentuated letters, white spaces or colons (:)'] = 'Het wachtwoord mag geen geaccentueerde letters, spaties of dubbele punten bevatten (:)'; $a->strings['Passwords do not match. Password unchanged.'] = 'Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd.'; $a->strings['An invitation is required.'] = 'Een uitnodiging is vereist.'; $a->strings['Invitation could not be verified.'] = 'Uitnodiging kon niet geverifieerd worden.'; @@ -1199,64 +688,12 @@ $a->strings['An error occurred during registration. Please try again.'] = 'Er is $a->strings['An error occurred creating your default profile. Please try again.'] = 'Er is een fout opgetreden bij het aanmaken van je standaard profiel. Probeer opnieuw.'; $a->strings['An error occurred creating your self contact. Please try again.'] = 'Er is een fout opgetreden bij het aanmaken van je self contact. Probeer opnieuw.'; $a->strings['Friends'] = 'Vrienden'; -$a->strings['An error occurred creating your default contact group. Please try again.'] = 'Er is een fout opgetreden bij het aanmaken van je standaard contact groep. Probeer opnieuw.'; +$a->strings['Profile Photos'] = 'Profielfoto\'s'; $a->strings[' Dear %1$s, the administrator of %2$s has set up an account for you.'] = ' Beste %1$s, de administrator van %2$s heeft een gebruiker voor je aangemaakt.'; -$a->strings[' - The login details are as follows: - - Site Location: %1$s - Login Name: %2$s - Password: %3$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %1$s/removeme - - Thank you and welcome to %4$s.'] = ' - De logingegevens zijn als volgt: - - Site Locatie: %1$s - Login Naam: %2$s - Wachtwoord: %3$s - - Je kunt je wachtwoord wijzigen vanuit je gebruikers "Instellingen" pagina - nadat je bent ingelogd. - - Gelieve even de tijd te nemen om de andere gebruikersinstellingen te controleren op die pagina. - - Als je wilt kun je ook wat basisinformatie aan je standaard profiel toevoegen - (op de "Profielen" pagina) zodat ander mensen je makkelijk kunnen vinden. - - We bevelen je aan om je volledige naam in te vullen, een profielfoto en - enkele profiel "sleutelwoorden" toe te voegen (zeer zinvol om nieuwe vrienden te maken) - en - misschien aangeven in welk land je woont; als je niet specifieker dan dat wenst te zijn. - - We respecteren volledig je recht op privésfeer en geen van deze items zijn noodzakelijk. - Als je hier nieuw bent en nog niemand kent, dan kunnen zij - je helpen om enkele nieuwe en interessante vrienden te maken. - - Als je ooit je gebruiker wenst te verwijderen, dan kan je dat doen op %1$s/removeme - - Bedankt en welkom bij %4$s.'; $a->strings['Registration details for %s'] = 'Registratie details voor %s'; $a->strings[' Dear %1$s, @@ -1285,93 +722,6 @@ $a->strings[' Beste %1$s, Bedankt voor je inschrijving op %2$s. Je gebruiker is aangemaakt. '; -$a->strings[' - The login details are as follows: - - Site Location: %3$s - Login Name: %1$s - Password: %5$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %3$s/removeme - - Thank you and welcome to %2$s.'] = ' - De login details zijn de volgende: - - Site Locatie: %3$s - Login Naam: %1$s - Wachtwoord: %5$s - - Je kunt je wachtwoord in de "Instellingen" pagina veranderen nadat je bent ingelogd. - - Neem een ogenblik de tijd om je andere instellingen na te kijken op die pagina. - - Je kunt ook wat basis informatie toevoegen aan je standaard profiel - (in de "Profielen" pagina) zodat anderen je gemakkelijk kunnen vinden. - - We raden aan je volledige naam in te vullen, een profiel foto toe te voegen, - enkele profiel "sleutelwoorden" (zeer handig om nieuwe vrienden te leren kennen) - en - misschien in welk land je woont; als je niet meer details wil geven. - We respecteren je privacy volledig, en geen van deze velden zijn verplicht. - Als je nieuw bent en niemand kent, dan kunnen zij je misschien - helpen om enkele nieuwe en interessante vrienden te leren kennen. - - Als je ooit je account wil verwijderen, dan kan je dat via %3$s/removeme - - Bedankt en welkom bij %2$s.'; -$a->strings['UnFollow'] = 'Ontvolgen'; -$a->strings['Drop Contact'] = 'Verwijder contact'; -$a->strings['Approve'] = 'Goedkeuren'; -$a->strings['Organisation'] = 'Organisatie'; -$a->strings['News'] = 'Nieuws'; -$a->strings['Forum'] = 'Forum'; -$a->strings['Connect URL missing.'] = 'Connectie URL ontbreekt.'; -$a->strings['The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.'] = 'Het contact kon niet toegevoegd worden. Gelieve de relevante netwerk gegevens na te kijken in Instellingen -> Sociale Netwerken.'; -$a->strings['This site is not configured to allow communications with other networks.'] = 'Deze website is niet geconfigureerd voor communicatie met andere netwerken.'; -$a->strings['No compatible communication protocols or feeds were discovered.'] = 'Er werden geen compatibele communicatieprotocols of feeds ontdekt.'; -$a->strings['The profile address specified does not provide adequate information.'] = 'Het opgegeven profiel adres bevat geen adequate informatie.'; -$a->strings['An author or name was not found.'] = 'Er werd geen auteur of naam gevonden.'; -$a->strings['No browser URL could be matched to this address.'] = 'Er kan geen browser URL gematcht worden met dit adres.'; -$a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact.'; -$a->strings['Use mailto: in front of address to force email check.'] = 'Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Het opgegeven profiel adres behoort tot een netwerk dat gedeactiveerd is op deze site.'; -$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Profiel met restricties. Deze peresoon zal geen directe/persoonlijke notificaties van jou kunnen ontvangen.'; -$a->strings['Unable to retrieve contact information.'] = 'Het was niet mogelijk informatie over dit contact op te halen.'; -$a->strings['activity'] = 'activiteit'; -$a->strings['comment'] = [ - 0 => 'reactie', - 1 => 'reacties', -]; -$a->strings['post'] = 'bericht'; -$a->strings['Content warning: %s'] = 'Waarschuwing inhoud: %s'; -$a->strings['bytes'] = 'bytes'; -$a->strings['View on separate page'] = 'Bekijk op aparte pagina'; -$a->strings['view on separate page'] = 'bekijk op aparte pagina'; -$a->strings['Attachments:'] = 'Bijlagen:'; -$a->strings['%s\'s timeline'] = 'Tijdslijn van %s'; -$a->strings['%s\'s posts'] = 'Berichten van %s'; -$a->strings['%s\'s comments'] = 'reactie van %s'; -$a->strings['%s is now following %s.'] = '%s volgt nu %s.'; -$a->strings['following'] = 'volgend'; -$a->strings['%s stopped following %s.'] = '%s stopte %s te volgen.'; -$a->strings['stopped following'] = 'is gestopt met volgen'; -$a->strings['(no subject)'] = '(geen onderwerp)'; $a->strings['Addon not found.'] = 'Addon niet gevonden.'; $a->strings['Addon %s disabled.'] = 'Addon %s gedeactiveerd'; $a->strings['Addon %s enabled.'] = 'Addon %s geactiveerd'; @@ -1383,79 +733,9 @@ $a->strings['Toggle'] = 'Schakelaar'; $a->strings['Author: '] = 'Auteur:'; $a->strings['Maintainer: '] = 'Onderhoud:'; $a->strings['Addon %s failed to install.'] = 'Installatie Addon %s is mislukt.'; +$a->strings['Save Settings'] = 'Instellingen opslaan'; $a->strings['Reload active addons'] = 'Herlaad actieve addons'; $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'] = 'Er zijn op je node momenteel geen addons beschikbaar. Je kan de officiële addon repository vinden op %1$s en je kan mogelijks nog andere interessante addons vinden in de open addon registry op %2$s'; -$a->strings['The contact has been blocked from the node'] = 'Het contact is geblokkeerd van deze node'; -$a->strings['Could not find any contact entry for this URL (%s)'] = 'Kon geen contact vinden op deze URL (%s)'; -$a->strings['%s contact unblocked'] = [ - 0 => '%s contact is niet langer geblokkeerd', - 1 => '%s contacten zijn niet langer geblokkeerd', -]; -$a->strings['Remote Contact Blocklist'] = 'Remote Contact Blokkeerlijst'; -$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'De pagina laat je toe om te vermijden dat boodschappen van een remote contact je node bereiken.'; -$a->strings['Block Remote Contact'] = 'Blokkeer Remote Contact'; -$a->strings['select all'] = 'Alles selecteren'; -$a->strings['select none'] = 'selecteer geen'; -$a->strings['Unblock'] = 'Blokkering opheffen'; -$a->strings['No remote contact is blocked from this node.'] = 'Geen enkel remote contact is geblokkeerd van deze node.'; -$a->strings['Blocked Remote Contacts'] = 'Geblokkeerde Remote Contacts'; -$a->strings['Block New Remote Contact'] = 'Blokkeer Nieuwe Remote Contacten'; -$a->strings['Photo'] = 'Foto'; -$a->strings['Reason'] = 'Reden'; -$a->strings['%s total blocked contact'] = [ - 0 => '%s geblokkeerde contacten in totaal', - 1 => '%s geblokkeerde contacten in totaal', -]; -$a->strings['URL of the remote contact to block.'] = 'URL van de remote contact die je wil blokkeren.'; -$a->strings['Block Reason'] = 'Reden voor blokkeren'; -$a->strings['Reason for the block'] = 'Reden van de blokkering'; -$a->strings['Check to delete this entry from the blocklist'] = 'Vink aan om dit item van de blokkeerlijst te verwijderen'; -$a->strings['Add new entry to block list'] = 'Voeg nieuw item toe aan de blokkeerlijst'; -$a->strings['Block reason'] = 'Reden voor blokkering'; -$a->strings['Add Entry'] = 'Voeg Item toe'; -$a->strings['Save changes to the blocklist'] = 'Sla veranderingen in de blokkeerlijst op'; -$a->strings['Current Entries in the Blocklist'] = 'Huidige Items in de blokkeerlijst'; -$a->strings['Delete entry from blocklist'] = 'Verwijder item uit de blokkeerlijst'; -$a->strings['Delete entry from blocklist?'] = 'Item verwijderen uit de blokkeerlijst?'; -$a->strings['Item marked for deletion.'] = 'Item gemarkeerd om te verwijderen.'; -$a->strings['Delete Item'] = 'Verwijder Item'; -$a->strings['Delete this Item'] = 'Verwijder dit Item'; -$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.'] = 'Op deze pagina kan je een item van je node verwijderen. Als het item een bericht is op het eerste niveau, dan zal de hele gesprek verwijderd worden.'; -$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.'] = 'Je moet de GUID van het item kennen. Je kan het terugvinden bvb. door te kijken naar de getoonde URL. Het laatste deel van http://example.com/display/123456 is de GUID, hier 123456.'; -$a->strings['GUID'] = 'GUID'; -$a->strings['The GUID of the item you want to delete.'] = 'De GUID van het item dat je wil verwijderen.'; -$a->strings['Item Guid'] = 'Item identificatie'; -$a->strings['Error trying to open %1$s log file.\r\n
    Check to see if file %1$s exist and is readable.'] = 'Fout bij het openen van log file %1$s .\r\n
    Kijk na of bestand %1$s bestaat en mag gelezen worden.'; -$a->strings['Couldn\'t open %1$s log file.\r\n
    Check to see if file %1$s is readable.'] = 'Kon log file %1$s niet openen.\r\n
    Kijk na of bestand %1$s mag gelezen worden.'; -$a->strings['View Logs'] = 'Bekijk Logs'; -$a->strings['PHP log currently enabled.'] = 'PHP log momenteel geactiveerd'; -$a->strings['PHP log currently disabled.'] = 'PHP log momenteel gedeactiveerd'; -$a->strings['Logs'] = 'Logs'; -$a->strings['Clear'] = 'Wis'; -$a->strings['Enable Debugging'] = 'Activeer Debugging'; -$a->strings['Log file'] = 'Logbestand'; -$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'De webserver moet hier kunnen schrijven. Relatief t.o.v. de hoogste folder binnen je Friendica-installatie.'; -$a->strings['Log level'] = 'Log niveau'; -$a->strings['PHP logging'] = 'PHP logging'; -$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.'] = 'Om logging van PHP fouten en waarschuwingen te activeren, kan je het volgende toevoegen aan het begin van je index.php bestand van je installatie. De naam van het bestand die ingesteld is in de \'error_log\' lijn is relatief tegenover de friendica top-level folder en de server moet erin kunnen schrijven. De optie \'1\' voor \'log_errors\' en \'display_errors\' activeert deze opties, configureer \'0\' om ze te deactiveren. '; -$a->strings['Theme %s disabled.'] = 'Thema %s uitgeschakeld.'; -$a->strings['Theme %s successfully enabled.'] = 'Thema %s succesvol ingeschakeld.'; -$a->strings['Theme %s failed to install.'] = 'Thema %s installatie mislukt.'; -$a->strings['Screenshot'] = 'Schermafdruk'; -$a->strings['Themes'] = 'Thema\'s'; -$a->strings['Unknown theme.'] = 'Onbekend thema.'; -$a->strings['Reload active themes'] = 'Herlaad actieve thema\'s'; -$a->strings['No themes found on the system. They should be placed in %1$s'] = 'Geen thema\'s gevonden op het systeem. Ze zouden zich moeten bevinden in %1$s'; -$a->strings['[Experimental]'] = '[Experimenteel]'; -$a->strings['[Unsupported]'] = '[Niet ondersteund]'; -$a->strings['Inspect Deferred Worker Queue'] = 'Inspecteer wachtrij van uitgestelde workers'; -$a->strings['This page lists the deferred worker jobs. This are jobs that couldn\'t be executed at the first time.'] = 'Deze pagine geeft alle uitgestelde workertaken. Dit zijn taken die niet onmiddelijk konden worden uitgevoerd'; -$a->strings['Inspect Worker Queue'] = 'Taakwachtrij inspecteren'; -$a->strings['This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you\'ve set up during install.'] = 'Deze pagina toont alle taken in de wachtrij. Deze taken worden behandeld door de geplande taak die je hebt ingesteld tijdens installatie.'; -$a->strings['ID'] = 'ID'; -$a->strings['Job Parameters'] = 'Taak parameters'; -$a->strings['Created'] = 'Aangemaakt'; -$a->strings['Priority'] = 'Prioriteit'; $a->strings['Update has been marked successful'] = 'Wijziging succesvol gemarkeerd '; $a->strings['Database structure update %s was successfully applied.'] = 'Database structuur update %s werd met succes toegepast.'; $a->strings['Executing of database structure update %s failed with error: %s'] = 'Uitvoering van de database structuur update %s is mislukt met fout: %s'; @@ -1475,11 +755,29 @@ $a->strings['Other'] = 'Anders'; $a->strings['unknown'] = 'onbekend'; $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.'] = 'Deze pagina toont je statistieken van het gekende deel van het gefedereerde sociale netwerk waarvan je Friendica node deel uitmaakt. Deze statistieken zijn niet volledig maar reflecteren het deel van het network dat jouw node kent.'; $a->strings['Federation Statistics'] = 'Federatie Statistieken'; -$a->strings['Currently this node is aware of %d nodes with %d registered users from the following platforms:'] = 'Op dit moment kent deze node %d nodes met %d geregistreerde gebruikers op basis van de volgende patformen:'; -$a->strings['Can not parse base url. Must have at least ://'] = 'Kan de basis url niet verwerken. Moet minstens zijn ://'; +$a->strings['PHP log currently enabled.'] = 'PHP log momenteel geactiveerd'; +$a->strings['PHP log currently disabled.'] = 'PHP log momenteel gedeactiveerd'; +$a->strings['Logs'] = 'Logs'; +$a->strings['Clear'] = 'Wis'; +$a->strings['Enable Debugging'] = 'Activeer Debugging'; +$a->strings['Log file'] = 'Logbestand'; +$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'De webserver moet hier kunnen schrijven. Relatief t.o.v. de hoogste folder binnen je Friendica-installatie.'; +$a->strings['Log level'] = 'Log niveau'; +$a->strings['PHP logging'] = 'PHP logging'; +$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.'] = 'Om logging van PHP fouten en waarschuwingen te activeren, kan je het volgende toevoegen aan het begin van je index.php bestand van je installatie. De naam van het bestand die ingesteld is in de \'error_log\' lijn is relatief tegenover de friendica top-level folder en de server moet erin kunnen schrijven. De optie \'1\' voor \'log_errors\' en \'display_errors\' activeert deze opties, configureer \'0\' om ze te deactiveren. '; +$a->strings['View Logs'] = 'Bekijk Logs'; +$a->strings['Show all'] = 'Toon alles'; +$a->strings['Event details'] = 'Gebeurtenis details'; +$a->strings['Inspect Deferred Worker Queue'] = 'Inspecteer wachtrij van uitgestelde workers'; +$a->strings['This page lists the deferred worker jobs. This are jobs that couldn\'t be executed at the first time.'] = 'Deze pagine geeft alle uitgestelde workertaken. Dit zijn taken die niet onmiddelijk konden worden uitgevoerd'; +$a->strings['Inspect Worker Queue'] = 'Taakwachtrij inspecteren'; +$a->strings['This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you\'ve set up during install.'] = 'Deze pagina toont alle taken in de wachtrij. Deze taken worden behandeld door de geplande taak die je hebt ingesteld tijdens installatie.'; +$a->strings['ID'] = 'ID'; +$a->strings['Job Parameters'] = 'Taak parameters'; +$a->strings['Created'] = 'Aangemaakt'; +$a->strings['Priority'] = 'Prioriteit'; $a->strings['No special theme for mobile devices'] = 'Geen speciaal thema voor mobiele apparaten'; $a->strings['%s - (Experimental)'] = '%s - (Experimenteel)'; -$a->strings['No community page for local users'] = 'Geen groepspagina voor lokale gebruikers'; $a->strings['No community page'] = 'Geen groepspagina'; $a->strings['Public postings from users of this site'] = 'Publieke berichten van gebruikers van deze site'; $a->strings['Public postings from the federated network'] = 'Publieke berichten van het gefedereerde netwerk'; @@ -1488,9 +786,6 @@ $a->strings['Multi user instance'] = 'Server voor meerdere gebruikers'; $a->strings['Closed'] = 'Gesloten'; $a->strings['Requires approval'] = 'Toestemming vereist'; $a->strings['Open'] = 'Open'; -$a->strings['No SSL policy, links will track page SSL state'] = 'Geen SSL beleid, links zullen SSL status van pagina volgen'; -$a->strings['Force all links to use SSL'] = 'Verplicht alle links om SSL te gebruiken'; -$a->strings['Self-signed certificate, use SSL for local links only (discouraged)'] = 'Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)'; $a->strings['Don\'t check'] = 'Geen rekening mee houden'; $a->strings['check the stable version'] = 'Neem de stabiele versie in rekening'; $a->strings['check the development version'] = 'Neem de ontwikkel versie in rekening'; @@ -1500,11 +795,11 @@ $a->strings['Republish users to directory'] = 'Opnieuw de gebruikers naar de gid $a->strings['Registration'] = 'Registratie'; $a->strings['File upload'] = 'Uploaden bestand'; $a->strings['Policies'] = 'Beleid'; +$a->strings['Advanced'] = 'Geavanceerd'; $a->strings['Auto Discovered Contact Directory'] = 'Automatisch Achterhaalde Contact Gids'; $a->strings['Performance'] = 'Performantie'; $a->strings['Worker'] = 'Worker'; $a->strings['Message Relay'] = 'Boodschap Relais'; -$a->strings['Relocate Instance'] = 'Verhuis node'; $a->strings['Site name'] = 'Site naam'; $a->strings['Sender Email'] = 'Verzender Email'; $a->strings['The email address your server shall use to send notification emails from.'] = 'Het email adres als afzender van notificatie emails.'; @@ -1519,16 +814,11 @@ $a->strings['System language'] = 'Systeemtaal'; $a->strings['System theme'] = 'Systeem thema'; $a->strings['Mobile system theme'] = 'Mobiel systeem thema'; $a->strings['Theme for mobile devices'] = 'Thema voor mobiele apparaten'; -$a->strings['SSL link policy'] = 'Beleid SSL-links'; -$a->strings['Determines whether generated links should be forced to use SSL'] = 'Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken'; $a->strings['Force SSL'] = 'Dwing SSL af'; $a->strings['Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'] = 'Forceer alle Niet-SSL aanvragen naar SSL - Pas op: dit kan op sommige systeem resulteren in oneindige lussen.'; -$a->strings['Hide help entry from navigation menu'] = 'Verberg de \'help\' uit het navigatiemenu'; -$a->strings['Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly.'] = 'Verbergt het menu-item voor de Help pagina\'s uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven.'; $a->strings['Single user instance'] = 'Server voor één gebruiker'; $a->strings['Make this instance multi-user or single-user for the named user'] = 'Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker.'; $a->strings['Maximum image size'] = 'Maximum afbeeldingsgrootte'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking.'; $a->strings['Maximum image length'] = 'Maximum afbeeldingslengte'; $a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen.'; $a->strings['JPEG image quality'] = 'JPEG afbeeldingskwaliteit'; @@ -1549,8 +839,6 @@ $a->strings['Comma separated list of domains which are allowed in email addresse Leeg laten om alle domeinen toe te staan.'; $a->strings['No OEmbed rich content'] = 'Geen OEmbed richt content'; $a->strings['Don\'t show the rich content (e.g. embedded PDF), except from the domains listed below.'] = 'Toon geen rich content (bvb. embedded PDF), behalve van domeinen hieronder opgelijst.'; -$a->strings['Allowed OEmbed domains'] = 'Sta OEmbed domeinen toe'; -$a->strings['Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted.'] = 'Met komma\'s gescheiden lijst van domeinen waarvoor oembed content mag getoond worden. Wildcards zijn toegelaten.'; $a->strings['Block public'] = 'Openbare toegang blokkeren'; $a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Kruis dit aan om alle openbare persoonlijke pagina\'s alleen toegankelijk te maken voor ingelogde gebruikers.'; $a->strings['Force publish'] = 'Dwing publiceren af'; @@ -1559,7 +847,6 @@ $a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Dit activ $a->strings['Global directory URL'] = 'Algemene gids URL'; $a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'URL naar de globale gids. Als dit niet geconfigureerd is, dan zal de globale gids volledig onbeschikbaar zijn voor de applicatie.'; $a->strings['Private posts by default for new users'] = 'Privéberichten als standaard voor nieuwe gebruikers'; -$a->strings['Set default post permissions for all new members to the default privacy group rather than public.'] = 'Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar.'; $a->strings['Don\'t include post content in email notifications'] = 'De inhoud van het bericht niet insluiten bij e-mailnotificaties'; $a->strings['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.'] = 'De inhoud van berichten/commentaar/privéberichten/enzovoort niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy.'; $a->strings['Disallow public access to addons listed in the apps menu.'] = 'Publieke toegang ontzeggen tot addons die opgelijst zijn in het applicatie menu.'; @@ -1570,20 +857,11 @@ $a->strings['Explicit Content'] = 'Expliciete inhoud'; $a->strings['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.'] = 'Vink dit aan om aan te duiden dat deze node veel expliciet materiaal verspreid en niet bedoeld is voor minderjarigen. Deze info zal gepubliceert worden bij de node-info en kan vb. gebruikt worden voor een filter in de globale lijst. Dit word ook getoont naar de gebruiker op de registratie pagina.'; $a->strings['Allow Users to set remote_self'] = 'Sta Gebruikers toe om remote_self te configureren'; $a->strings['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.'] = 'Als je dit aanvinkt, dan mag elke gebruiker elke contact als remote_self aanduiden in de \'herstel contact\' dialoog. Deze vlag aanzetten voor een contact zorgt ervoor dat elke bericht van dit contact gespiegeld wordt in de gebruiker zijn of haar stroom. '; -$a->strings['Block multiple registrations'] = 'Blokkeer meerdere registraties'; -$a->strings['Disallow users to register additional accounts for use as pages.'] = 'Laat niet toe dat gebruikers meerdere accounts aanmaken.'; -$a->strings['Disable OpenID'] = 'Schakel OpenID uit'; -$a->strings['Disable OpenID support for registration and logins.'] = 'Schakel OpenID-ondersteuning uit voor registratie en logins.'; -$a->strings['No Fullname check'] = 'Geen Volledige-Naamscontrole'; $a->strings['Community pages for visitors'] = 'Groepspagina voor bezoekers'; $a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = 'Welke groepspagina\'s moeten beschikbaar zijn voor bezoekers. Lokale gebruikers zien altijd beide pagina\'s.'; $a->strings['Posts per user on community page'] = 'Berichten per gebruiker op de groepspagina'; -$a->strings['OStatus support can only be enabled if threading is enabled.'] = 'OStatus ondersteuning kan alleen geactiveerd worden als de gespreksstroom geactiveerd is.'; $a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Diaspora ondersteuning is niet mogelijk omdat Friendica in een sub folder geïnstalleerd is.'; $a->strings['Enable Diaspora support'] = 'Diaspora ondersteuning activeren'; -$a->strings['Provide built-in Diaspora network compatibility.'] = 'Bied ingebouwde ondersteuning voor het Diaspora netwerk.'; -$a->strings['Only allow Friendica contacts'] = 'Laat alleen Friendica contacten toe'; -$a->strings['All contacts must use Friendica protocols. All other built-in communication protocols disabled.'] = 'Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld.'; $a->strings['Verify SSL'] = 'Controleer SSL'; $a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = 'Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken.'; $a->strings['Proxy user'] = 'Proxy-gebruiker'; @@ -1591,8 +869,6 @@ $a->strings['Proxy URL'] = 'Proxy-URL'; $a->strings['Network timeout'] = 'Netwerk timeout'; $a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen).'; $a->strings['Maximum Load Average'] = 'Maximum gemiddelde belasting'; -$a->strings['Maximum Load Average (Frontend)'] = 'Maximum Gemiddelde Belasting (Frontend)'; -$a->strings['Maximum system load before the frontend quits service - default 50.'] = 'Maximum systeem belasting wanneer de frontend ermee ophoudt - standaard waarde 50.'; $a->strings['Minimal Memory'] = 'Minimaal Geheugen'; $a->strings['Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).'] = 'Minimum vrij geheugen in MB voor de worker. Toegang nodig tot /proc/meminfo - standaard waarde 0 (gedeactiveerd).'; $a->strings['Days between requery'] = 'Dagen tussen herbevraging'; @@ -1613,36 +889,20 @@ $a->strings['Lifespan of unclaimed items'] = 'Levensduur van niet geclaimde item $a->strings['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.'] = 'Als de database opruiming geactiveerd is, dan definieert dit na hoeveel dagen ongeclaimde remote items (meestal content van een relais) zal verwijderd worden. Standaard waarde is 90 dagen. Als de waarde 0 is, dan is de waarde gelijk aan de algemene levensduur van remote items.'; $a->strings['Lifespan of raw conversation data'] = 'Levenstijd van ruwe gespreksdata'; $a->strings['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.'] = 'De gespreksdata word gebruikt voor ActivityPub, OStatus en voor debugging doeleinden. Het is veilig om dit na 14 dagen te verwijderen. Standaard staat dit op 90 dagen.'; -$a->strings['Path to item cache'] = 'Pad naar cache voor items'; -$a->strings['The item caches buffers generated bbcode and external images.'] = 'Item caches bufferen gegenereerde bbcodes en externe beelden.'; -$a->strings['Cache duration in seconds'] = 'Cache tijdsduur in seconden'; -$a->strings['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.'] = 'Hoe lang moeten de cache bestanden bijgehouden worden? Standaard waarde is 86400 seconden (een dag). Zet de waarde op -1 om de item cache te deactiveren.'; $a->strings['Maximum numbers of comments per post'] = 'Maximum aantal reacties per bericht'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Hoeveel reacties moeten getoond worden per bericht? Standaard waarde is 100.'; $a->strings['Temp path'] = 'Tijdelijk pad'; $a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Als je een systeem met restricties hebt waarbij de webserver geen toegang heeft tot het systeem pad, geef hier dan een ander pad in. '; -$a->strings['Disable picture proxy'] = 'Schakel beeld proxy uit'; -$a->strings['The picture proxy increases performance and privacy. It shouldn\'t be used on systems with very low bandwidth.'] = 'De beeld proxy verhoogt de performantie en privacy. Gebruik dit niet op systemen met erg lage bandbreedte.'; $a->strings['Only search in tags'] = 'Zoek alleen in tags'; $a->strings['On large systems the text search can slow down the system extremely.'] = 'Het opzoeken van tekst kan grote systemen extreem vertragen.'; -$a->strings['New base url'] = 'Nieuwe basis url'; -$a->strings['Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users.'] = 'Verander de basis url voor deze server. Stuurt een verhuis boodschap naar all Friendica en Diaspora* contacten.'; -$a->strings['RINO Encryption'] = 'RINO encryptie'; -$a->strings['Encryption layer between nodes.'] = 'Encryptie laag tussen nodes.'; -$a->strings['Disabled'] = 'Uitgeschakeld'; -$a->strings['Enabled'] = 'Geactiveerd'; $a->strings['Maximum number of parallel workers'] = 'Maximum aantal parallelle workers'; $a->strings['On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d.'] = 'Op gedeelde hosts zet dit op %d. Op grotere systemen, waarden als %d zijn goed. standaard waarde is %d'; $a->strings['Enable fastlane'] = 'Activeer fastlane'; $a->strings['When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.'] = 'Als deze parameter geactiveerd is, dan start het fastlane mechanisme een bijkomende worker als processen met hogere prioriteit geblokkeerd worden door processen met een lagere prioriteit.'; -$a->strings['Enable frontend worker'] = 'Activeer frontend worker'; -$a->strings['Subscribe to relay'] = 'Schrijf in op relais'; -$a->strings['Enables the receiving of public posts from the relay. They will be included in the search, subscribed tags and on the global community page.'] = 'Activeert het ontvangen van publieke berichten vanwege de relais. Ze zullen inbegrepen zijn in de zoekresultaten, tags waarop je ingeschreven bent en op de globale groepspagina.'; -$a->strings['Relay server'] = 'Relais server'; -$a->strings['Address of the relay server where public posts should be send to. For example https://relay.diasp.org'] = 'Adres van de relais server waar publieke berichten naartoe moeten gezonden worden. Bijvoorbeeld https://relay.diasp.org'; $a->strings['Direct relay transfer'] = 'Directe relais transfer'; $a->strings['Enables the direct transfer to other servers without using the relay servers'] = 'Activeert directe relais transfer naar andere servers zonder gebruik van relais servers'; $a->strings['Relay scope'] = 'Scope van de relais'; +$a->strings['Disabled'] = 'Uitgeschakeld'; $a->strings['all'] = 'alle'; $a->strings['tags'] = 'tags'; $a->strings['Server tags'] = 'Server tags'; @@ -1655,60 +915,230 @@ $a->strings['The worker was never executed. Please check your database structure $a->strings['The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings.'] = 'De laatste worker uitvoering was op %s UTC. Dit is langer dan 1 uur geleden. Best je crontab instellingen nakijken.'; $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.'] = 'Het configuratiebestand bevind zich nu in config/local.config.php. Kopieer het bestand config/local-sample.config.php en verplaats je configuratie uit .htconfig.php. Ga naar deconfiguratie help pagina voor hulp bij transitie.'; $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.'] = '%s is niet bereikbaar. Dit is een belangrijk communicatieprobleem waardoor server-naar-server communicatie niet mogelijk is. Lees de the installatie pagina voor hulp.'; -$a->strings['Normal Account'] = 'Normaal account'; -$a->strings['Automatic Follower Account'] = 'Automatische Volger Account'; -$a->strings['Public Forum Account'] = 'Publiek Forum account'; -$a->strings['Automatic Friend Account'] = 'Automatisch Vriendschapsaccount'; -$a->strings['Blog Account'] = 'Blog Account'; -$a->strings['Private Forum Account'] = 'Privé Forum Account'; $a->strings['Message queues'] = 'Bericht-wachtrijen'; $a->strings['Server Settings'] = 'Server instellingen.'; -$a->strings['Summary'] = 'Samenvatting'; -$a->strings['Registered users'] = 'Geregistreerde gebruikers'; -$a->strings['Pending registrations'] = 'Registraties die in de wacht staan'; $a->strings['Version'] = 'Versie'; $a->strings['Active addons'] = 'Actieve addons'; +$a->strings['Theme %s disabled.'] = 'Thema %s uitgeschakeld.'; +$a->strings['Theme %s successfully enabled.'] = 'Thema %s succesvol ingeschakeld.'; +$a->strings['Theme %s failed to install.'] = 'Thema %s installatie mislukt.'; +$a->strings['Screenshot'] = 'Schermafdruk'; +$a->strings['Themes'] = 'Thema\'s'; +$a->strings['Unknown theme.'] = 'Onbekend thema.'; +$a->strings['Reload active themes'] = 'Herlaad actieve thema\'s'; +$a->strings['No themes found on the system. They should be placed in %1$s'] = 'Geen thema\'s gevonden op het systeem. Ze zouden zich moeten bevinden in %1$s'; +$a->strings['[Experimental]'] = '[Experimenteel]'; +$a->strings['[Unsupported]'] = '[Niet ondersteund]'; $a->strings['Display Terms of Service'] = 'Toon Gebruiksvoorwaarden'; $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.'] = 'Activeer de Gebruiksvoorwaarden pagina. Als deze geactiveerd is, dan zal er een link naar de voorwaarden toegevoegd worden aan het registratie formulier en de algemene informatie pagina.'; $a->strings['Display Privacy Statement'] = 'Toon Privacy Verklaring'; $a->strings['Privacy Statement Preview'] = 'Privacy Verklaring Voorbeeldweergave'; $a->strings['The Terms of Service'] = 'De Gebruiksvoorwaarden'; $a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = 'Geef hier de Gebruiksvoorwaarden van je node op. Je kan BBCode gebruiken. Sectie headers moeten [h2] zijn of lager.'; -$a->strings['You can\'t remove yourself'] = 'Je kan jezelf niet verwijderen'; -$a->strings['%s user deleted'] = [ - 0 => '%s gebruiker verwijderd', - 1 => '%s gebruikers verwijderd', +$a->strings['Contact not found'] = 'Contact niet gevonden'; +$a->strings['No installed applications.'] = 'Geen toepassingen geïnstalleerd'; +$a->strings['Applications'] = 'Toepassingen'; +$a->strings['Item was not found.'] = 'Item niet gevonden'; +$a->strings['Please login to continue.'] = 'Log in om verder te gaan.'; +$a->strings['Overview'] = 'Overzicht'; +$a->strings['Configuration'] = 'Configuratie'; +$a->strings['Additional features'] = 'Extra functies'; +$a->strings['Database'] = 'Database'; +$a->strings['DB updates'] = 'DB aanpassingen'; +$a->strings['Inspect Deferred Workers'] = 'Inspecteer uitgestelde workers'; +$a->strings['Inspect worker Queue'] = 'Taakwachtrij inspecteren'; +$a->strings['Diagnostics'] = 'Diagnostiek'; +$a->strings['PHP Info'] = 'PHP Info'; +$a->strings['probe address'] = 'probe adres'; +$a->strings['check webfinger'] = 'check webfinger'; +$a->strings['Addon Features'] = 'Addon Features'; +$a->strings['User registrations waiting for confirmation'] = 'Gebruikersregistraties wachten op bevestiging'; +$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'De dagelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard.', + 1 => 'De dagelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard.', +]; +$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'De wekelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard.', + 1 => 'De wekelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard.', ]; -$a->strings['Account approved.'] = 'Account goedgekeurd.'; -$a->strings['Private Forum'] = 'Privé Forum'; -$a->strings['Register date'] = 'Registratiedatum'; -$a->strings['Last login'] = 'Laatste login'; -$a->strings['Type'] = 'Type'; $a->strings['Users'] = 'Gebruiker'; -$a->strings['Add User'] = 'Gebruiker toevoegen'; -$a->strings['User registrations waiting for confirm'] = 'Gebruikersregistraties wachten op een bevestiging'; -$a->strings['User waiting for permanent deletion'] = 'Gebruiker wacht op permanente verwijdering'; -$a->strings['Request date'] = 'Registratiedatum'; -$a->strings['No registrations.'] = 'Geen registraties.'; -$a->strings['Note from the user'] = 'Nota van de gebruiker'; -$a->strings['Deny'] = 'Weiger'; -$a->strings['User blocked'] = 'Gebruiker geblokeerd'; -$a->strings['Site admin'] = 'Sitebeheerder'; -$a->strings['Account expired'] = 'Account verlopen'; -$a->strings['New User'] = 'Nieuwe gebruiker'; -$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Geselecteerde gebruikers zullen verwijderd worden!\n\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\n\nBen je zeker?'; -$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'De gebruiker {0} zal verwijderd worden!\n\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\n\nBen je zeker?'; -$a->strings['Name of the new user.'] = 'Naam van nieuwe gebruiker'; -$a->strings['Nickname'] = 'Bijnaam'; -$a->strings['Nickname of the new user.'] = 'Bijnaam van nieuwe gebruiker'; -$a->strings['Email address of the new user.'] = 'E-mailadres van nieuwe gebruiker'; -$a->strings['Time Conversion'] = 'Tijdsconversie'; -$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones.'; -$a->strings['UTC time: %s'] = 'UTC tijd: %s'; -$a->strings['Current timezone: %s'] = 'Huidige Tijdzone: %s'; -$a->strings['Converted localtime: %s'] = 'Omgerekende lokale tijd: %s'; -$a->strings['Please select your timezone:'] = 'Selecteer je tijdzone:'; -$a->strings['Only logged in users are permitted to perform a probing.'] = 'Alleen ingelogde gebruikers hebben toelating om aan probing te doen.'; +$a->strings['Tools'] = 'Hulpmiddelen'; +$a->strings['Contact Blocklist'] = 'Contact Blokkeerlijst'; +$a->strings['Server Blocklist'] = 'Server Blokkeerlijst'; +$a->strings['Delete Item'] = 'Verwijder Item'; +$a->strings['Profile Details'] = 'Profieldetails'; +$a->strings['Only You Can See This'] = 'Alleen jij kunt dit zien'; +$a->strings['Tips for New Members'] = 'Tips voor nieuwe leden'; +$a->strings['People Search - %s'] = 'Mensen Zoeken - %s'; +$a->strings['No matches'] = 'Geen resultaten'; +$a->strings['Account'] = 'Account'; +$a->strings['Two-factor authentication'] = '2-factor authenticatie'; +$a->strings['Display'] = 'Weergave'; +$a->strings['Social Networks'] = 'Sociale netwerken'; +$a->strings['Manage Accounts'] = 'Beheer Gebruikers'; +$a->strings['Connected apps'] = 'Verbonden applicaties'; +$a->strings['Export personal data'] = 'Persoonlijke gegevens exporteren'; +$a->strings['Remove account'] = 'Account verwijderen'; +$a->strings['This page is missing a url parameter.'] = 'Deze pagina mist een url-parameter.'; +$a->strings['The post was created'] = 'Het bericht is aangemaakt'; +$a->strings['Failed to remove event'] = 'Kon remote event niet verwijderen'; +$a->strings['Event can not end before it has started.'] = 'Gebeurtenis kan niet eindigen voor het begin.'; +$a->strings['Event title and start time are required.'] = 'Titel en begintijd van de gebeurtenis zijn vereist.'; +$a->strings['Starting date and Title are required.'] = 'Start datum en Titel zijn verplicht.'; +$a->strings['Event Starts:'] = 'Gebeurtenis begint:'; +$a->strings['Required'] = 'Vereist'; +$a->strings['Finish date/time is not known or not relevant'] = 'Einddatum/tijd is niet gekend of niet relevant'; +$a->strings['Event Finishes:'] = 'Gebeurtenis eindigt:'; +$a->strings['Share this event'] = 'Deel deze gebeurtenis'; +$a->strings['Basic'] = 'Basis'; +$a->strings['This calendar format is not supported'] = 'Dit kalender formaat is niet ondersteund'; +$a->strings['No exportable data found'] = 'Geen exporteerbare data gevonden'; +$a->strings['calendar'] = 'kalender'; +$a->strings['Events'] = 'Gebeurtenissen'; +$a->strings['View'] = 'Beeld'; +$a->strings['Create New Event'] = 'Maak een nieuwe gebeurtenis'; +$a->strings['list'] = 'lijst'; +$a->strings['Contact not found.'] = 'Contact niet gevonden'; +$a->strings['Invalid contact.'] = 'Ongeldig contact.'; +$a->strings['Contact is deleted.'] = 'Contact is verwijderd.'; +$a->strings['Bad request.'] = 'Verkeerde aanvraag.'; +$a->strings['Filter'] = 'filter'; +$a->strings['Members'] = 'Leden'; +$a->strings['Click on a contact to add or remove.'] = 'Klik op een contact om het toe te voegen of te verwijderen.'; +$a->strings['%d contact edited.'] = [ + 0 => '%d contact bewerkt.', + 1 => '%d contacten bewerkt.', +]; +$a->strings['Show all contacts'] = 'Toon alle contacten'; +$a->strings['Pending'] = 'In behandeling'; +$a->strings['Only show pending contacts'] = 'Toon alleen contacten in behandeling'; +$a->strings['Blocked'] = 'Geblokkeerd'; +$a->strings['Only show blocked contacts'] = 'Toon alleen geblokkeerde contacten'; +$a->strings['Ignored'] = 'Genegeerd'; +$a->strings['Only show ignored contacts'] = 'Toon alleen genegeerde contacten'; +$a->strings['Archived'] = 'Gearchiveerd'; +$a->strings['Only show archived contacts'] = 'Toon alleen gearchiveerde contacten'; +$a->strings['Hidden'] = 'Verborgen'; +$a->strings['Only show hidden contacts'] = 'Toon alleen verborgen contacten'; +$a->strings['Search your contacts'] = 'Doorzoek je contacten'; +$a->strings['Results for: %s'] = 'Resultaten voor: %s'; +$a->strings['Update'] = 'Wijzigen'; +$a->strings['Unblock'] = 'Blokkering opheffen'; +$a->strings['Unignore'] = 'Negeer niet meer'; +$a->strings['Batch Actions'] = 'Bulk Acties'; +$a->strings['Conversations started by this contact'] = 'Gesprekken gestart door dit contact'; +$a->strings['Posts and Comments'] = 'Berichten en reacties'; +$a->strings['Advanced Contact Settings'] = 'Geavanceerde instellingen voor contacten'; +$a->strings['Mutual Friendship'] = 'Wederzijdse vriendschap'; +$a->strings['is a fan of yours'] = 'Is een fan van jou'; +$a->strings['you are a fan of'] = 'Jij bent een fan van'; +$a->strings['Pending outgoing contact request'] = 'In afwachting van uitgaande contactaanvraag'; +$a->strings['Pending incoming contact request'] = 'In afwachting van inkomende contactaanvraag'; +$a->strings['Visit %s\'s profile [%s]'] = 'Bekijk het profiel van %s [%s]'; +$a->strings['Contact update failed.'] = 'Aanpassen van contact mislukt.'; +$a->strings['Return to contact editor'] = 'Ga terug naar contactbewerker'; +$a->strings['Name'] = 'Naam'; +$a->strings['Account Nickname'] = 'Bijnaam account'; +$a->strings['Account URL'] = 'URL account'; +$a->strings['Poll/Feed URL'] = 'URL poll/feed'; +$a->strings['New photo from this URL'] = 'Nieuwe foto van deze URL'; +$a->strings['Follower (%s)'] = [ + 0 => 'Volger (%s)', + 1 => 'Volgers (%s)', +]; +$a->strings['Following (%s)'] = [ + 0 => 'Volgend (%s)', + 1 => 'Volgend (%s)', +]; +$a->strings['Mutual friend (%s)'] = [ + 0 => 'Gemeenschappelijke vriend (%s)', + 1 => 'Gemeenschappelijke vrienden (%s)', +]; +$a->strings['Contact (%s)'] = [ + 0 => 'Contact (%s)', + 1 => 'Contacten (%s)', +]; +$a->strings['Access denied.'] = 'Toegang geweigerd'; +$a->strings['Submit Request'] = 'Aanvraag indienen'; +$a->strings['You already added this contact.'] = 'Je hebt deze kontakt al toegevoegd'; +$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Het type netwerk kon niet gedetecteerd worden. Contact kan niet toegevoegd worden.'; +$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Diaspora ondersteuning is niet geactiveerd. Contact kan niet toegevoegd worden.'; +$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus ondersteuning is niet geactiveerd. Contact kan niet toegevoegd woren.'; +$a->strings['Please answer the following:'] = 'Beantwoord het volgende:'; +$a->strings['Your Identity Address:'] = 'Adres van je identiteit:'; +$a->strings['Profile URL'] = 'Profiel url'; +$a->strings['Tags:'] = 'Labels:'; +$a->strings['%s knows you'] = '%s kent je'; +$a->strings['Add a personal note:'] = 'Voeg een persoonlijke opmerking toe:'; +$a->strings['The contact could not be added.'] = 'Het contact kon niet toegevoegd worden.'; +$a->strings['Invalid request.'] = 'Ongeldige aanvraag.'; +$a->strings['No keywords to match. Please add keywords to your profile.'] = 'Geen overeenkomende zoekwoorden. Voeg zoekwoorden toe aan uw profiel.'; +$a->strings['Profile Match'] = 'Profielmatch'; +$a->strings['Failed to update contact record.'] = 'Ik kon de contactgegevens niet aanpassen.'; +$a->strings['Contact has been unblocked'] = 'Contact is gedeblokkeerd'; +$a->strings['Contact has been blocked'] = 'Contact is geblokkeerd'; +$a->strings['Contact has been unignored'] = 'Contact wordt niet meer genegeerd'; +$a->strings['Contact has been ignored'] = 'Contact wordt genegeerd'; +$a->strings['You are mutual friends with %s'] = 'Je bent wederzijds bevriend met %s'; +$a->strings['You are sharing with %s'] = 'Je deelt met %s'; +$a->strings['%s is sharing with you'] = '%s deelt met jou'; +$a->strings['Private communications are not available for this contact.'] = 'Privécommunicatie met dit contact is niet beschikbaar.'; +$a->strings['Never'] = 'Nooit'; +$a->strings['(Update was not successful)'] = '(Wijziging is niet geslaagd)'; +$a->strings['(Update was successful)'] = '(Wijziging is geslaagd)'; +$a->strings['Suggest friends'] = 'Stel vrienden voor'; +$a->strings['Network type: %s'] = 'Netwerk type: %s'; +$a->strings['Communications lost with this contact!'] = 'Communicatie met dit contact is verbroken!'; +$a->strings['Fetch further information for feeds'] = 'Haal meer informatie op van de feeds'; +$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.'] = 'Haal informatie op zoals preview beelden, titel en teaser van het feed item. Je kan dit activeren als de feed niet veel tekst bevat. Sleutelwoorden worden opgepikt uit de meta header in het feed item en worden gepost als hash tags.'; +$a->strings['Fetch information'] = 'Haal informatie op'; +$a->strings['Fetch keywords'] = 'Haal sleutelwoorden op'; +$a->strings['Fetch information and keywords'] = 'Haal informatie en sleutelwoorden op'; +$a->strings['No mirroring'] = 'Geen mirroring'; +$a->strings['Mirror as my own posting'] = 'Spiegel als mijn eigen bericht'; +$a->strings['Contact Information / Notes'] = 'Contactinformatie / aantekeningen'; +$a->strings['Contact Settings'] = 'Contact instellingen'; +$a->strings['Contact'] = 'Contact'; +$a->strings['Their personal note'] = 'Hun persoonlijke nota'; +$a->strings['Edit contact notes'] = 'Wijzig aantekeningen over dit contact'; +$a->strings['Block/Unblock contact'] = 'Blokkeer/deblokkeer contact'; +$a->strings['Ignore contact'] = 'Negeer contact'; +$a->strings['View conversations'] = 'Toon gesprekken'; +$a->strings['Last update:'] = 'Laatste wijziging:'; +$a->strings['Update public posts'] = 'Openbare posts aanpassen'; +$a->strings['Update now'] = 'Wijzig nu'; +$a->strings['Awaiting connection acknowledge'] = 'Wait op bevestiging van de connectie'; +$a->strings['Currently blocked'] = 'Op dit moment geblokkeerd'; +$a->strings['Currently ignored'] = 'Op dit moment genegeerd'; +$a->strings['Currently archived'] = 'Op dit moment gearchiveerd'; +$a->strings['Hide this contact from others'] = 'Verberg dit contact voor anderen'; +$a->strings['Replies/likes to your public posts may still be visible'] = 'Antwoorden of \'vind ik leuk\'s op je openbare posts kunnen nog zichtbaar zijn'; +$a->strings['Notification for new posts'] = 'Meldingen voor nieuwe berichten'; +$a->strings['Send a notification of every new post of this contact'] = 'Stuur een notificatie voor elk bericht van dit contact'; +$a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Door komma\'s gescheiden lijst van sleutelwoorden die niet in hashtags mogen omgezet worden, wanneer "Haal informatie en sleutelwoorden op" is geselecteerd'; +$a->strings['Actions'] = 'Acties'; +$a->strings['Status'] = 'Tijdlijn'; +$a->strings['Mirror postings from this contact'] = 'Berichten van dit contact spiegelen'; +$a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'Markeer dit contact als remote_self, hierdoor zal friendica nieuwe berichten van dit contact opnieuw posten.'; +$a->strings['Refetch contact data'] = 'Contact data opnieuw ophalen'; +$a->strings['Toggle Blocked status'] = 'Schakel geblokkeerde status'; +$a->strings['Toggle Ignored status'] = 'Schakel negeerstatus'; +$a->strings['Bad Request.'] = 'Verkeerde aanvraag.'; +$a->strings['Yes'] = 'Ja'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen.'; +$a->strings['You aren\'t following this contact.'] = 'Je volgt dit contact niet.'; +$a->strings['Unfollowing is currently not supported by your network.'] = 'Ontvolgen is momenteel niet gesupporteerd door je netwerk.'; +$a->strings['Disconnect/Unfollow'] = 'Disconnecteer/stop met volgen'; +$a->strings['No results.'] = 'Geen resultaten.'; +$a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'Deze groepsstroom toont alle publieke berichten die deze node ontvangen heeft. Ze kunnen mogelijks niet de mening van de gebruikers van deze node weerspiegelen.'; +$a->strings['Community option not available.'] = 'Groepsoptie niet beschikbaar'; +$a->strings['Not available.'] = 'Niet beschikbaar'; +$a->strings['Credits'] = 'Credits'; +$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!'] = 'Friendica is een gemeenschapsproject dat niet mogelijk zou zijn zonder de hulp van vele mensen. Hier is een lijst van alle mensen die aan de code of vertalingen van Friendica hebben meegewerkt. Allen van harte bedankt!'; +$a->strings['Error'] = [ + 0 => 'Fout', + 1 => 'Fouten', +]; $a->strings['Source input'] = 'Bron input'; $a->strings['BBCode::toPlaintext'] = 'BBCode::toPlaintext'; $a->strings['BBCode::convert (raw HTML)'] = 'BBCode::convert (raw HTML)'; @@ -1735,8 +1165,88 @@ $a->strings['Markdown'] = 'Markdown'; $a->strings['HTML'] = 'HTML'; $a->strings['You must be logged in to use this module'] = 'Je moet ingelogd zijn om deze module te gebruiken'; $a->strings['Source URL'] = 'Bron URL'; +$a->strings['Time Conversion'] = 'Tijdsconversie'; +$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones.'; +$a->strings['UTC time: %s'] = 'UTC tijd: %s'; +$a->strings['Current timezone: %s'] = 'Huidige Tijdzone: %s'; +$a->strings['Converted localtime: %s'] = 'Omgerekende lokale tijd: %s'; +$a->strings['Please select your timezone:'] = 'Selecteer je tijdzone:'; +$a->strings['Only logged in users are permitted to perform a probing.'] = 'Alleen ingelogde gebruikers hebben toelating om aan probing te doen.'; $a->strings['Lookup address'] = 'Opzoekadres'; +$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Wissel tussen verschillende identiteiten of forum/groeppagina\'s die jouw accountdetails delen of waar je "beheerdersrechten" hebt gekregen.'; +$a->strings['Select an identity to manage: '] = 'Selecteer een identiteit om te beheren:'; +$a->strings['No entries (some entries may be hidden).'] = 'Geen gegevens (sommige gegevens kunnen verborgen zijn).'; +$a->strings['Find on this site'] = 'Op deze website zoeken'; +$a->strings['Results for:'] = 'Resultaten voor:'; +$a->strings['Site Directory'] = 'Websitegids'; $a->strings['- select -'] = '- Kies -'; +$a->strings['Suggested contact not found.'] = 'Voorgesteld contact werd niet gevonden'; +$a->strings['Friend suggestion sent.'] = 'Vriendschapsvoorstel verzonden.'; +$a->strings['Suggest Friends'] = 'Stel vrienden voor'; +$a->strings['Suggest a friend for %s'] = 'Stel een vriend voor aan %s'; +$a->strings['Installed addons/apps:'] = 'Geïnstalleerde addons/applicaties:'; +$a->strings['No installed addons/apps'] = 'Geen geïnstalleerde addons/applicaties'; +$a->strings['Read about the Terms of Service of this node.'] = 'Lees de Gebruiksvoorwaarden van deze node na.'; +$a->strings['On this server the following remote servers are blocked.'] = 'De volgende remote servers zijn geblokkeerd.'; +$a->strings['Reason for the block'] = 'Reden van de blokkering'; +$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.'] = 'Dit is Friendica, versie %s en draait op op locatie %s. De databaseversie is %s, en de bericht update versie is %s.'; +$a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Ga naar Friendi.ca om meer te vernemen over het Friendica project.'; +$a->strings['Bug reports and issues: please visit'] = 'Bug rapporten en problemen: bezoek'; +$a->strings['the bugtracker at github'] = 'de github bugtracker'; +$a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = 'Suggesties, appreciatie, enz. - aub stuur een email naar "info" at "friendi - dot - ca'; +$a->strings['No profile'] = 'Geen profiel'; +$a->strings['Method Not Allowed.'] = 'Methode niet toegestaan.'; +$a->strings['Help:'] = 'Help:'; +$a->strings['Welcome to %s'] = 'Welkom op %s'; +$a->strings['Friendica Communications Server - Setup'] = 'Friendica Communicatie Server - Setup'; +$a->strings['System check'] = 'Systeemcontrole'; +$a->strings['Next'] = 'Volgende'; +$a->strings['Check again'] = 'Controleer opnieuw'; +$a->strings['Base settings'] = 'Basisinstellingen'; +$a->strings['Base path to installation'] = 'Basispad voor installatie'; +$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.'] = 'Als het systeem het correcte pad naar je installatie niet kan detecteren, geef hier dan het correcte pad in. Deze instelling zou alleen geconfigureerd moeten worden als je een systeem met restricties hebt en symbolische links naar je webroot.'; +$a->strings['Database connection'] = 'Verbinding met database'; +$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken.'; +$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. '; +$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat.'; +$a->strings['Database Server Name'] = 'Servernaam database'; +$a->strings['Database Login Name'] = 'Gebruikersnaam database'; +$a->strings['Database Login Password'] = 'Wachtwoord database'; +$a->strings['For security reasons the password must not be empty'] = 'Om veiligheidsreden mag het wachtwoord niet leeg zijn'; +$a->strings['Database Name'] = 'Naam database'; +$a->strings['Please select a default timezone for your website'] = 'Selecteer een standaard tijdzone voor je website'; +$a->strings['Site settings'] = 'Website-instellingen'; +$a->strings['Site administrator email address'] = 'E-mailadres van de websitebeheerder'; +$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken.'; +$a->strings['System Language:'] = 'Systeem taal:'; +$a->strings['Set the default language for your Friendica installation interface and to send emails.'] = 'Stel de standaard taal in voor je Friendica installatie interface en emails.'; +$a->strings['Your Friendica site database has been installed.'] = 'De database van je Friendica-website is geïnstalleerd.'; +$a->strings['Installation finished'] = 'Installaitie beëindigd'; +$a->strings['

    What next

    '] = '

    Wat nu

    '; +$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the worker.'] = 'BELANGRIJK: Je zal [manueel] een geplande taak moeten opzetten voor de worker.'; +$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.'] = 'Go naar je nieuwe Friendica node registratie pagina en registeer als nieuwe gebruiker. Vergeet niet hetzelfde email adres te gebruiken als wat je opgegeven hebt als administrator email. Dit zal je toelaten om het site administratie paneel te openen.'; +$a->strings['Total invitation limit exceeded.'] = 'Totale uitnodigingslimiet overschreden.'; +$a->strings['%s : Not a valid email address.'] = '%s: Geen geldig e-mailadres.'; +$a->strings['Please join us on Friendica'] = 'Kom bij ons op Friendica'; +$a->strings['Invitation limit exceeded. Please contact your site administrator.'] = 'Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website.'; +$a->strings['%s : Message delivery failed.'] = '%s : Aflevering van bericht mislukt.'; +$a->strings['%d message sent.'] = [ + 0 => '%d bericht verzonden.', + 1 => '%d berichten verzonden.', +]; +$a->strings['You have no more invitations available'] = 'Je kunt geen uitnodigingen meer sturen'; +$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.'] = 'Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken.'; +$a->strings['To accept this invitation, please visit and register at %s or any other public Friendica website.'] = 'Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website.'; +$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.'] = 'Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten.'; +$a->strings['Our apologies. This system is not currently configured to connect with other public sites or invite members.'] = 'Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen.'; +$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.'] = 'Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken.'; +$a->strings['To accept this invitation, please visit and register at %s.'] = 'Om deze uitnodiging te accepteren, ga naar en registreer op %s.'; +$a->strings['Send invitations'] = 'Verstuur uitnodigingen'; +$a->strings['Enter email addresses, one per line:'] = 'Vul e-mailadressen in, één per lijn:'; +$a->strings['You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.'] = 'Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen.'; +$a->strings['You will need to supply this invitation code: $invite_code'] = 'Je zult deze uitnodigingscode moeten invullen: $invite_code'; +$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:'; +$a->strings['For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca'] = 'Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendi.ca/ bezoeken'; $a->strings['Please enter a post body.'] = 'Voer een berichttekst in.'; $a->strings['This feature is only available with the frio theme.'] = 'Deze functie is alleen beschikbaar met het frio-thema.'; $a->strings['Compose new personal note'] = 'Stel een nieuwe persoonlijke notitie op'; @@ -1745,35 +1255,431 @@ $a->strings['Visibility'] = 'Zichtbaarheid'; $a->strings['Clear the location'] = 'Wis de locatie'; $a->strings['Location services are unavailable on your device'] = 'Locatiediensten zijn niet beschikbaar op uw apparaat'; $a->strings['Location services are disabled. Please check the website\'s permissions on your device'] = 'Locatiediensten zijn uitgeschakeld. Controleer de toestemmingen van de website op uw apparaat'; -$a->strings['Follower (%s)'] = [ - 0 => 'Volger (%s)', - 1 => 'Volgers (%s)', +$a->strings['The feed for this item is unavailable.'] = 'De tijdlijn voor dit item is niet beschikbaar'; +$a->strings['System down for maintenance'] = 'Systeem onbeschikbaar wegens onderhoud'; +$a->strings['A Decentralized Social Network'] = 'Een gedecentraliseerd sociaal netwerk'; +$a->strings['Files'] = 'Bestanden'; +$a->strings['Upload'] = 'Uploaden'; +$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Sorry, je op te laden bestand is groter dan deze PHP configuratie toelaat'; +$a->strings['Or - did you try to upload an empty file?'] = 'Of - probeerde je een lege file op te laden?'; +$a->strings['File exceeds size limit of %s'] = 'Bestand is groter dan de limiet ( %s )'; +$a->strings['File upload failed.'] = 'Uploaden van bestand mislukt.'; +$a->strings['Unable to process image.'] = 'Niet in staat om de afbeelding te verwerken'; +$a->strings['Image upload failed.'] = 'Uploaden van afbeelding mislukt.'; +$a->strings['Normal Account Page'] = 'Normale accountpagina'; +$a->strings['Soapbox Page'] = 'Zeepkist-pagina'; +$a->strings['Automatic Friend Page'] = 'Automatisch Vriendschapspagina'; +$a->strings['Personal Page'] = 'Persoonlijke pagina'; +$a->strings['Organisation Page'] = 'Organisatie Pagina'; +$a->strings['News Page'] = 'Nieuws pagina'; +$a->strings['%s contact unblocked'] = [ + 0 => '%s contact is niet langer geblokkeerd', + 1 => '%s contacten zijn niet langer geblokkeerd', ]; -$a->strings['Following (%s)'] = [ - 0 => 'Volgend (%s)', - 1 => 'Volgend (%s)', +$a->strings['Remote Contact Blocklist'] = 'Remote Contact Blokkeerlijst'; +$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'De pagina laat je toe om te vermijden dat boodschappen van een remote contact je node bereiken.'; +$a->strings['Block Remote Contact'] = 'Blokkeer Remote Contact'; +$a->strings['select all'] = 'Alles selecteren'; +$a->strings['select none'] = 'selecteer geen'; +$a->strings['No remote contact is blocked from this node.'] = 'Geen enkel remote contact is geblokkeerd van deze node.'; +$a->strings['Blocked Remote Contacts'] = 'Geblokkeerde Remote Contacts'; +$a->strings['Block New Remote Contact'] = 'Blokkeer Nieuwe Remote Contacten'; +$a->strings['Photo'] = 'Foto'; +$a->strings['Reason'] = 'Reden'; +$a->strings['%s total blocked contact'] = [ + 0 => '%s geblokkeerde contacten in totaal', + 1 => '%s geblokkeerde contacten in totaal', ]; -$a->strings['Mutual friend (%s)'] = [ - 0 => 'Gemeenschappelijke vriend (%s)', - 1 => 'Gemeenschappelijke vrienden (%s)', -]; -$a->strings['Contact (%s)'] = [ - 0 => 'Contact (%s)', - 1 => 'Contacten (%s)', +$a->strings['URL of the remote contact to block.'] = 'URL van de remote contact die je wil blokkeren.'; +$a->strings['Block Reason'] = 'Reden voor blokkeren'; +$a->strings['Block reason'] = 'Reden voor blokkering'; +$a->strings['Check to delete this entry from the blocklist'] = 'Vink aan om dit item van de blokkeerlijst te verwijderen'; +$a->strings['Save changes to the blocklist'] = 'Sla veranderingen in de blokkeerlijst op'; +$a->strings['Current Entries in the Blocklist'] = 'Huidige Items in de blokkeerlijst'; +$a->strings['Item marked for deletion.'] = 'Item gemarkeerd om te verwijderen.'; +$a->strings['Delete this Item'] = 'Verwijder dit Item'; +$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.'] = 'Op deze pagina kan je een item van je node verwijderen. Als het item een bericht is op het eerste niveau, dan zal de hele gesprek verwijderd worden.'; +$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.'] = 'Je moet de GUID van het item kennen. Je kan het terugvinden bvb. door te kijken naar de getoonde URL. Het laatste deel van http://example.com/display/123456 is de GUID, hier 123456.'; +$a->strings['GUID'] = 'GUID'; +$a->strings['The GUID of the item you want to delete.'] = 'De GUID van het item dat je wil verwijderen.'; +$a->strings['Type'] = 'Type'; +$a->strings['Item not found'] = 'Item niet gevonden'; +$a->strings['Item Guid'] = 'Item identificatie'; +$a->strings['Normal Account'] = 'Normaal account'; +$a->strings['Automatic Follower Account'] = 'Automatische Volger Account'; +$a->strings['Automatic Friend Account'] = 'Automatisch Vriendschapsaccount'; +$a->strings['Blog Account'] = 'Blog Account'; +$a->strings['Registered users'] = 'Geregistreerde gebruikers'; +$a->strings['Pending registrations'] = 'Registraties die in de wacht staan'; +$a->strings['You can\'t remove yourself'] = 'Je kan jezelf niet verwijderen'; +$a->strings['%s user deleted'] = [ + 0 => '%s gebruiker verwijderd', + 1 => '%s gebruikers verwijderd', ]; +$a->strings['Register date'] = 'Registratiedatum'; +$a->strings['Last login'] = 'Laatste login'; +$a->strings['User blocked'] = 'Gebruiker geblokeerd'; +$a->strings['Site admin'] = 'Sitebeheerder'; +$a->strings['Account expired'] = 'Account verlopen'; +$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Geselecteerde gebruikers zullen verwijderd worden!\n\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\n\nBen je zeker?'; +$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'De gebruiker {0} zal verwijderd worden!\n\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\n\nBen je zeker?'; +$a->strings['New User'] = 'Nieuwe gebruiker'; +$a->strings['Add User'] = 'Gebruiker toevoegen'; +$a->strings['Name of the new user.'] = 'Naam van nieuwe gebruiker'; +$a->strings['Nickname'] = 'Bijnaam'; +$a->strings['Nickname of the new user.'] = 'Bijnaam van nieuwe gebruiker'; +$a->strings['Email address of the new user.'] = 'E-mailadres van nieuwe gebruiker'; +$a->strings['User waiting for permanent deletion'] = 'Gebruiker wacht op permanente verwijdering'; +$a->strings['Account approved.'] = 'Account goedgekeurd.'; +$a->strings['Request date'] = 'Registratiedatum'; +$a->strings['No registrations.'] = 'Geen registraties.'; +$a->strings['Note from the user'] = 'Nota van de gebruiker'; +$a->strings['Deny'] = 'Weiger'; +$a->strings['Show Ignored Requests'] = 'Toon genegeerde verzoeken'; +$a->strings['Hide Ignored Requests'] = 'Verberg genegeerde verzoeken'; +$a->strings['Notification type:'] = 'Notificatiesoort:'; +$a->strings['Suggested by:'] = 'Voorgesteld door:'; +$a->strings['Claims to be known to you: '] = 'Denkt dat je hem of haar kent:'; +$a->strings['No'] = 'Nee'; +$a->strings['Shall your connection be bidirectional or not?'] = 'Zal je connectie bidirectioneel zijn of niet?'; +$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 als vriend accepteren laat %s toe om in te schrijven op je berichten, en je zal ook updates ontvangen van hen in je nieuws feed.'; +$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 als volger accepteren laat hen toe om in te schrijven op je berichten, maar je zal geen updates ontvangen van hen in je nieuws feed.'; +$a->strings['Friend'] = 'Vriend'; +$a->strings['Subscriber'] = 'Volger'; +$a->strings['No introductions.'] = 'Geen vriendschaps- of connectieverzoeken.'; +$a->strings['No more %s notifications.'] = 'Geen %s notificaties meer.'; +$a->strings['You must be logged in to show this page.'] = 'Je moet ingelogd zijn om deze pagina te tonen.'; +$a->strings['Network Notifications'] = 'Netwerknotificaties'; +$a->strings['System Notifications'] = 'Systeemnotificaties'; +$a->strings['Personal Notifications'] = 'Persoonlijke notificaties'; +$a->strings['Home Notifications'] = 'Tijdlijn-notificaties'; +$a->strings['Show unread'] = 'Toon ongelezen'; +$a->strings['{0} requested registration'] = '{0} vroeg om zich te registreren'; +$a->strings['Authorize application connection'] = 'Verbinding met de applicatie goedkeuren'; +$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?'; +$a->strings['Resubscribing to OStatus contacts'] = 'Opnieuw inschrijven bij OStatus contacten'; +$a->strings['Keep this window open until done.'] = 'Houd dit scherm open tot het klaar is'; +$a->strings['No contact provided.'] = 'Geen contact opgegeven.'; +$a->strings['Couldn\'t fetch information for contact.'] = 'Kon de informatie voor het contact niet ophalen.'; +$a->strings['Couldn\'t fetch friends for contact.'] = 'Kon de vrienden van contact niet ophalen.'; +$a->strings['Done'] = 'Klaar'; +$a->strings['success'] = 'Succesvol'; +$a->strings['failed'] = 'Mislukt'; +$a->strings['ignored'] = 'Verboden'; +$a->strings['Remote privacy information not available.'] = 'Privacyinformatie op afstand niet beschikbaar.'; +$a->strings['Visible to:'] = 'Zichtbaar voor:'; +$a->strings['The Photo with id %s is not available.'] = 'De foto met id %s is niet beschikbaar'; +$a->strings['Invalid photo with id %s.'] = 'Ongeldige foto met ID %s'; +$a->strings['Edit post'] = 'Bericht bewerken'; +$a->strings['web link'] = 'webadres'; +$a->strings['Insert video link'] = 'Voeg video toe'; +$a->strings['video link'] = 'video adres'; +$a->strings['Insert audio link'] = 'Voeg audio adres toe'; +$a->strings['audio link'] = 'audio adres'; +$a->strings['Remove Item Tag'] = 'Verwijder label van item'; +$a->strings['Select a tag to remove: '] = 'Selecteer een label om te verwijderen: '; +$a->strings['Remove'] = 'Verwijderen'; $a->strings['No contacts.'] = 'Geen contacten.'; +$a->strings['%s\'s timeline'] = 'Tijdslijn van %s'; +$a->strings['%s\'s posts'] = 'Berichten van %s'; +$a->strings['%s\'s comments'] = 'reactie van %s'; +$a->strings['Image exceeds size limit of %s'] = 'Beeld is groter dan de limiet ( %s )'; +$a->strings['Image upload didn\'t complete, please try again'] = 'Opladen van het beeld is niet compleet, probeer het opnieuw'; +$a->strings['Image file is missing'] = 'Beeld bestand ontbreekt'; +$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'De server kan op dit moment geen nieuw bestand opladen, contacteer alsjeblieft je beheerder'; +$a->strings['Image file is empty.'] = 'Afbeeldingsbestand is leeg.'; +$a->strings['View Album'] = 'Album bekijken'; +$a->strings['Profile not found.'] = 'Profiel niet gevonden'; +$a->strings['Full Name:'] = 'Volledige Naam:'; $a->strings['Member since:'] = 'Lid sinds:'; $a->strings['j F, Y'] = 'F j Y'; $a->strings['j F'] = 'F j'; -$a->strings['Forums:'] = 'Fora:'; +$a->strings['Birthday:'] = 'Verjaardag:'; +$a->strings['Age: '] = 'Leeftijd:'; +$a->strings['%d year old'] = [ + 0 => '%d jaar oud', + 1 => '%d jaar oud', +]; +$a->strings['Description:'] = 'Beschrijving:'; $a->strings['View profile as:'] = 'Bekijk profiel als:'; +$a->strings['Profile unavailable.'] = 'Profiel onbeschikbaar'; +$a->strings['Invalid locator'] = 'Ongeldige plaatsbepaler'; +$a->strings['The provided profile link doesn\'t seem to be valid'] = 'De verstrekte profiellink lijkt niet geldig te zijn'; +$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'Remote inschrijving kan niet op jouw netwerk. Gelieve direct op je systeem in te schrijven.'; +$a->strings['Friend/Connection Request'] = 'Vriendschaps-/connectieverzoek'; +$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.'] = 'Geef hier je Webfinger adres (gebruiker@domain.tld) of profiel URL. Als dit niet wordt ondersteund door je systeem, dan dien je in te schrijven op %s of %s direct op je systeem.'; +$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.'] = 'Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een publieke Friendica node te vinden en sluit je vandaag bij ons aan.'; +$a->strings['Your Webfinger address or profile URL:'] = 'Uw Webfinger adres of profiel-URL:'; +$a->strings['Unable to check your home location.'] = 'Niet in staat om je tijdlijn-locatie vast te stellen'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Maximum aantal dagelijkse tijdlijn boodschappen van %s overschreden. Kon boodschap niet plaatsen.'; +$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat.'; +$a->strings['Only parent users can create additional accounts.'] = 'Alleen bovenliggende gebruikers kunnen extra gebruikers maken.'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw.'; +$a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking "Register".'] = 'U kunt (optioneel) dit formulier invullen via OpenID door uw OpenID in te vullen en op \'Registreren\' te klikken.'; +$a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in.'; +$a->strings['Your OpenID (optional): '] = 'Je OpenID (optioneel):'; +$a->strings['Include your profile in member directory?'] = 'Je profiel in de ledengids opnemen?'; +$a->strings['Note for the admin'] = 'Nota voor de beheerder'; +$a->strings['Leave a message for the admin, why you want to join this node'] = 'Laat een boodschap na voor de beheerder, waarom je bij deze node wil komen'; +$a->strings['Membership on this site is by invitation only.'] = 'Lidmaatschap van deze website is uitsluitend op uitnodiging.'; +$a->strings['Your invitation code: '] = 'Je uitnodigingscode:'; +$a->strings['Your Full Name (e.g. Joe Smith, real or real-looking): '] = 'Je volledige naam (bvb. Jan Smit, echt of echt lijkend):'; +$a->strings['Your Email Address: (Initial information will be send there, so this has to be an existing address.)'] = 'Je Email Adres: (Initiële informatie zal hier naartoe gezonden worden, dus dit moet een bestaand adres zijn.)'; +$a->strings['Please repeat your e-mail address:'] = 'Herhaal uw e-mailadres:'; +$a->strings['New Password:'] = 'Nieuw Wachtwoord:'; +$a->strings['Leave empty for an auto generated password.'] = 'Laat leeg voor een automatisch gegenereerd wachtwoord.'; +$a->strings['Confirm:'] = 'Bevestig:'; +$a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be "nickname@%s".'] = 'Kies een profiel bijnaam. Deze dient te beginnen met een letter. Uw profiel adres op deze site zal dan "bijnaam@%s" zijn.'; +$a->strings['Choose a nickname: '] = 'Kies een bijnaam:'; +$a->strings['Import'] = 'Importeren'; +$a->strings['Import your profile to this friendica instance'] = 'Importeer je profiel op deze friendica server'; +$a->strings['Note: This node explicitly contains adult content'] = 'Waarschuwing: Deze node heeft inhoud enkel bedoeld voor volwassenen.'; +$a->strings['Parent Password:'] = 'Ouderlijk wachtwoord:'; +$a->strings['Please enter the password of the parent account to legitimize your request.'] = 'Geef alstublieft het wachtwoord van het ouderlijke account om je verzoek te legitimeren.'; +$a->strings['Password doesn\'t match.'] = 'Wachtwoorden komen niet overeen.'; +$a->strings['Please enter your password.'] = 'Voer uw wachtwoord in.'; +$a->strings['You have entered too much information.'] = 'U heeft te veel informatie ingevoerd.'; +$a->strings['Please enter the identical mail address in the second field.'] = 'Voer in het tweede veld het identieke mailadres in.'; +$a->strings['The additional account was created.'] = 'De toegevoegde gebruiker is aangemaakt.'; +$a->strings['Registration successful. Please check your email for further instructions.'] = 'Registratie geslaagd. Kijk je e-mail na voor verdere instructies.'; +$a->strings['Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login.'] = 'Kon email niet verzenden. Hier zijn je account details:
    login: %s
    wachtwoord: %s

    Je kan je wachtwoord aanpassen nadat je ingelogd bent.'; +$a->strings['Registration successful.'] = 'Registratie succes.'; +$a->strings['Your registration can not be processed.'] = 'Je registratie kan niet verwerkt worden.'; +$a->strings['You have to leave a request note for the admin.'] = 'U dient een verzoekmelding achter te laten voor de beheerder.'; +$a->strings['Your registration is pending approval by the site owner.'] = 'Jouw registratie wacht op goedkeuring van de beheerder.'; $a->strings['You must be logged in to use this module.'] = 'Je moet ingelogd zijn om deze module te gebruiken.'; $a->strings['Only logged in users are permitted to perform a search.'] = 'Alleen ingelogde gebruikers mogen een zoekopdracht starten.'; $a->strings['Only one search per minute is permitted for not logged in users.'] = 'Niet ingelogde gebruikers mogen slechts 1 opzoeking doen per minuut'; -$a->strings['No results.'] = 'Geen resultaten.'; $a->strings['Items tagged with: %s'] = 'Items getagd met: %s'; -$a->strings['Results for: %s'] = 'Resultaten voor: %s'; $a->strings['Search term already saved.'] = 'Zoekterm is al opgeslagen.'; +$a->strings['Create a New Account'] = 'Nieuwe account aanmaken'; +$a->strings['Your OpenID: '] = 'Uw OpenID'; +$a->strings['Please enter your username and password to add the OpenID to your existing account.'] = 'Voer uw gebruikersnaam en wachtwoord in om de OpenID toe te voegen aan uw bestaande gebruiker.'; +$a->strings['Or login using OpenID: '] = 'Of log in met OpenID:'; +$a->strings['Password: '] = 'Wachtwoord:'; +$a->strings['Remember me'] = 'Onthoud mij'; +$a->strings['Forgot your password?'] = 'Wachtwoord vergeten?'; +$a->strings['Website Terms of Service'] = 'Gebruikersvoorwaarden website'; +$a->strings['terms of service'] = 'servicevoorwaarden'; +$a->strings['Website Privacy Policy'] = 'Privacybeleid website'; +$a->strings['privacy policy'] = 'privacybeleid'; +$a->strings['Logged out.'] = 'Uitgelogd.'; +$a->strings['OpenID protocol error. No ID returned'] = 'OpenID-protocolfout. Geen ID terug ontvangen'; +$a->strings['Account not found. Please login to your existing account to add the OpenID to it.'] = 'Account niet gevonden. Meld je aan met je bestaande account om de OpenID toe te voegen.'; +$a->strings['Account not found. Please register a new account or login to your existing account to add the OpenID to it.'] = 'Account niet gevonden. Maak een nieuwe account aan of meld je aan met je bestaande account om de OpenID toe te voegen.'; +$a->strings['Passwords do not match.'] = 'Wachtwoorden zijn niet gelijk'; +$a->strings['Password unchanged.'] = 'Wachtwoord ongewijzigd'; +$a->strings['Current Password:'] = 'Huidig wachtwoord:'; +$a->strings['Your current password to confirm the changes'] = 'Je huidig wachtwoord om de wijzigingen te bevestigen'; +$a->strings['Remaining recovery codes: %d'] = 'Resterende herstelcodes: %d'; +$a->strings['Invalid code, please retry.'] = 'Ongeldige code, probeer het opnieuw.'; +$a->strings['Two-factor recovery'] = 'Twee-factorenherstel'; +$a->strings['

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

    '] = '

    U kunt een van uw eenmalige herstelcodes invoeren als u de toegang tot uw mobiele apparaat bent kwijtgeraakt.

    '; +$a->strings['Don’t have your phone? Enter a two-factor recovery code'] = 'Heb je je telefoon niet? Geef een twee-factor herstelcodecode in'; +$a->strings['Please enter a recovery code'] = 'Voer een herstelcode in'; +$a->strings['Submit recovery code and complete login'] = 'Voer de herstelcode in en voltooi de login'; +$a->strings['

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

    '] = '

    Open de tweefactorauthenticatie-app op uw apparaat om een ​​authenticatiecode te krijgen en uw identiteit te verifiëren.

    '; +$a->strings['Please enter a code from your authentication app'] = 'Voer een code in van uw authenticatie-app'; +$a->strings['Verify code and complete login'] = 'Controleer de code en voltooi de login'; +$a->strings['Please use a shorter name.'] = 'Gebruik een kortere naam.'; +$a->strings['Name too short.'] = 'Naam is te kort.'; +$a->strings['Wrong Password.'] = 'Verkeerd wachtwoord.'; +$a->strings['Invalid email.'] = 'Ongeldig email adres.'; +$a->strings['Cannot change to that email.'] = 'Kan niet naar dat email adres veranderen.'; +$a->strings['Settings were not updated.'] = 'Wijziging instellingen is niet opgeslagen.'; +$a->strings['Importing Contacts done'] = 'Importeren Contacten voltooid'; +$a->strings['Relocate message has been send to your contacts'] = 'Verhuis boodschap is verzonden naar je contacten'; +$a->strings['Unable to find your profile. Please contact your admin.'] = 'Kan je profiel niet vinden. Contacteer alsjeblieft je beheerder.'; +$a->strings['Personal Page Subtypes'] = 'Persoonlijke Pagina Subtypes'; +$a->strings['Account for a personal profile.'] = 'Account voor een persoonlijk profiel'; +$a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'Account voor een organisatie die automatisch contact aanvragen goedkeurt als "Volgers".'; +$a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'Account voor een nieuws reflector die automatisch contact aanvragen goedkeurt als "Volgers".'; +$a->strings['Account for community discussions.'] = 'Account voor groepsdiscussies.'; +$a->strings['Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'] = 'Account voor een normaal persoonlijk profiel dat manuele goedkeuring vereist van "Vrienden" en "Volgers".'; +$a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'Account voor een publiek profiel dat automatisch contact aanvragen goedkeurt als "Volgers".'; +$a->strings['Automatically approves all contact requests.'] = 'Aanvaardt automatisch all contact aanvragen.'; +$a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'Account voor een populair profiel dat automatisch contact aanvragen goedkeurt als "Vrienden".'; +$a->strings['Requires manual approval of contact requests.'] = 'Vereist manuele goedkeuring van contact aanvragen.'; +$a->strings['OpenID:'] = 'OpenID:'; +$a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Optioneel) Laat dit OpenID toe om in te loggen op deze account.'; +$a->strings['Publish your profile in your local site directory?'] = 'Uw profiel publiceren in uw lokale sitemap?'; +$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.'] = 'Je profiel zal gepubliceerd worden de lokale gids van deze node. Je profiel details kunnen publiek zichtbaar zijn afhankelijk van de systeem instellingen.'; +$a->strings['Your profile will also be published in the global friendica directories (e.g. %s).'] = 'Je profiel zal ook worden gepubliceerd in de globale Friendica directories (e.g. %s).'; +$a->strings['Account Settings'] = 'Account Instellingen'; +$a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'Je Identiteit adres is \'%s\' of \'%s\'.'; +$a->strings['Password Settings'] = 'Wachtwoord Instellingen'; +$a->strings['Leave password fields blank unless changing'] = 'Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen'; +$a->strings['Password:'] = 'Wachtwoord:'; +$a->strings['Your current password to confirm the changes of the email address'] = 'Je huidige wachtwoord om de verandering in het email adres te bevestigen'; +$a->strings['Delete OpenID URL'] = 'Verwijder OpenID URL'; +$a->strings['Basic Settings'] = 'Basis Instellingen'; +$a->strings['Display name:'] = 'Weergave naam:'; +$a->strings['Email Address:'] = 'E-mailadres:'; +$a->strings['Your Timezone:'] = 'Je Tijdzone:'; +$a->strings['Your Language:'] = 'Je taal:'; +$a->strings['Set the language we use to show you friendica interface and to send you emails'] = 'Configureer de taal van die we gebruiken als friendica interface en om je emails te sturen'; +$a->strings['Default Post Location:'] = 'Standaard locatie:'; +$a->strings['Use Browser Location:'] = 'Gebruik Webbrowser Locatie:'; +$a->strings['Security and Privacy Settings'] = 'Instellingen voor Beveiliging en Privacy'; +$a->strings['Maximum Friend Requests/Day:'] = 'Maximum aantal vriendschapsverzoeken per dag:'; +$a->strings['(to prevent spam abuse)'] = '(om spam misbruik te voorkomen)'; +$a->strings['Allow your profile to be searchable globally?'] = 'Wilt u dat uw profiel globaal doorzoekbaar is?'; +$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.'] = 'Activeer deze instelling als u wilt dat anderen u gemakkelijk kunnen vinden en volgen. Uw profiel is doorzoekbaar op externe systemen. Deze instelling bepaalt ook of Friendica zoekmachines zal informeren dat uw profiel moet worden geïndexeerd of niet.'; +$a->strings['Hide your contact/friend list from viewers of your profile?'] = 'Uw contact- / vriendenlijst verbergen voor hen die uw profiel bekijken?'; +$a->strings['A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list.'] = 'Een lijst met uw contacten wordt weergegeven op uw profielpagina. Activeer deze optie om de weergave van uw contactenlijst uit te schakelen.'; +$a->strings['Make public posts unlisted'] = 'Maak openbare berichten verborgen'; +$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.'] = 'Je openbare berichten verschijnen niet op de communitypagina\'s of in de zoekresultaten en worden ook niet naar relayservers gestuurd. Ze kunnen echter nog steeds verschijnen op openbare feeds op externe servers.'; +$a->strings['Make all posted pictures accessible'] = 'Maak alle geplaatste foto\'s toegankelijk'; +$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.'] = 'Deze optie maakt elke geplaatste foto toegankelijk via de directe link. Dit is een tijdelijke oplossing voor het probleem dat de meeste andere netwerken de rechten op afbeeldingen niet kunnen verwerken. Niet-openbare afbeeldingen zijn echter nog steeds niet zichtbaar voor het publiek in uw fotoalbums.'; +$a->strings['Allow friends to post to your profile page?'] = 'Vrienden toestaan om op jouw profielpagina te posten?'; +$a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'Je contacten kunnen berichten schrijven op je tijdslijn. Deze berichten zullen verspreid worden naar je contacten'; +$a->strings['Allow friends to tag your posts?'] = 'Sta vrienden toe om jouw berichten te labelen?'; +$a->strings['Your contacts can add additional tags to your posts.'] = 'Je contacten kunnen tags toevoegen aan je berichten.'; +$a->strings['Permit unknown people to send you private mail?'] = 'Mogen onbekende personen jou privé berichten sturen?'; +$a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Friendica netwerk gebruikers kunnen je privé boodschappen sturen zelfs als ze niet in je contact lijst staan.'; +$a->strings['Maximum private messages per day from unknown people:'] = 'Maximum aantal privé-berichten per dag van onbekende personen:'; +$a->strings['Default Post Permissions'] = 'Standaard rechten voor nieuwe berichten'; +$a->strings['Expiration settings'] = 'Vervalinstellingen'; +$a->strings['Automatically expire posts after this many days:'] = 'Laat berichten automatisch vervallen na zo veel dagen:'; +$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd.'; +$a->strings['Expire posts'] = 'Verlopen berichten'; +$a->strings['When activated, posts and comments will be expired.'] = 'Indien geactiveerd, zullen berichten en opmerkingen verlopen.'; +$a->strings['Expire personal notes'] = 'Verloop persoonlijke notities'; +$a->strings['When activated, the personal notes on your profile page will be expired.'] = 'Indien geactiveerd, verlopen de persoonlijke notities op uw profielpagina.'; +$a->strings['Expire starred posts'] = 'Berichten met ster laten vervallen'; +$a->strings['Starring posts keeps them from being expired. That behaviour is overwritten by this setting.'] = 'Berichten met een ster verhinderen dat ze verlopen. Dat gedrag wordt door deze instelling overschreven.'; +$a->strings['Only expire posts by others'] = 'Laat alleen berichten van anderen verlopen'; +$a->strings['When activated, your own posts never expire. Then the settings above are only valid for posts you received.'] = 'Indien geactiveerd, vervallen je eigen berichten nooit. Dan zijn bovenstaande instellingen alleen geldig voor berichten die je hebt ontvangen.'; +$a->strings['Notification Settings'] = 'Notificatie Instellingen'; +$a->strings['Send a notification email when:'] = 'Stuur een notificatie e-mail wanneer:'; +$a->strings['You receive an introduction'] = 'Je ontvangt een vriendschaps- of connectieverzoek'; +$a->strings['Your introductions are confirmed'] = 'Jouw vriendschaps- of connectieverzoeken zijn bevestigd'; +$a->strings['Someone writes on your profile wall'] = 'Iemand iets op je tijdlijn schrijft'; +$a->strings['Someone writes a followup comment'] = 'Iemand een reactie schrijft'; +$a->strings['You receive a private message'] = 'Je een privé-bericht ontvangt'; +$a->strings['You receive a friend suggestion'] = 'Je een suggestie voor een vriendschap ontvangt'; +$a->strings['You are tagged in a post'] = 'Je expliciet in een bericht bent genoemd'; +$a->strings['Activate desktop notifications'] = 'Activeer desktop notificaties'; +$a->strings['Show desktop popup on new notifications'] = 'Toon desktop pop-up bij nieuwe notificaties'; +$a->strings['Text-only notification emails'] = 'Alleen-tekst notificatie emails'; +$a->strings['Send text only notification emails, without the html part'] = 'Stuur alleen-tekst notificatie emails, zonder het html gedeelte'; +$a->strings['Show detailled notifications'] = 'Toon gedetailleerde notificaties'; +$a->strings['Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.'] = 'Standaard worden notificaties samengevoegd in een enkele notificatie per item. Als je deze parameter activeert wordt elke notificatie getoond.'; +$a->strings['Advanced Account/Page Type Settings'] = 'Geavanceerde Account/Pagina Type Instellingen'; +$a->strings['Change the behaviour of this account for special situations'] = 'Pas het gedrag van dit account aan voor speciale situaties'; +$a->strings['Import Contacts'] = 'Importeer contacten'; +$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Upload een CSV-bestand met de handle van uw gevolgde gebruikers in de eerste kolom die u uit de oude gebruiker hebt geëxporteerd.'; +$a->strings['Upload File'] = 'Upload bestand'; +$a->strings['Relocate'] = 'Verhuis'; +$a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Als je je profiel van een andere server hebt verhuisd, en er zijn contacten die geen updates van je ontvangen, probeer dan eens deze knop.'; +$a->strings['Resend relocate message to contacts'] = 'Stuur verhuis boodschap naar contacten'; +$a->strings['Addon Settings'] = 'Addon instellingen'; +$a->strings['No Addon settings configured'] = 'Geen Addon instellingen geconfigureerd'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen.'; +$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; +$a->strings['Email access is disabled on this site.'] = 'E-mailtoegang is op deze website uitgeschakeld.'; +$a->strings['None'] = 'Geen'; +$a->strings['General Social Media Settings'] = 'Algemene Sociale Media Instellingen'; +$a->strings['Attach the link title'] = 'Voeg de linktitel toe'; +$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.'] = 'Indien geactiveerd, wordt de titel van de bijgevoegde link toegevoegd als titel op berichten op Diaspora. Dit is vooral handig bij contacten op afstand die zelf feed-inhoud delen.'; +$a->strings['Repair OStatus subscriptions'] = 'Herstel OStatus inschrijvingen'; +$a->strings['Email/Mailbox Setup'] = 'E-mail Instellen'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken.'; +$a->strings['Last successful email check:'] = 'Laatste succesvolle e-mail controle:'; +$a->strings['IMAP server name:'] = 'IMAP server naam:'; +$a->strings['IMAP port:'] = 'IMAP poort:'; +$a->strings['Security:'] = 'Beveiliging:'; +$a->strings['Email login name:'] = 'E-mail login naam:'; +$a->strings['Email password:'] = 'E-mail wachtwoord:'; +$a->strings['Reply-to address:'] = 'Antwoord adres:'; +$a->strings['Send public posts to all email contacts:'] = 'Openbare posts naar alle e-mail contacten versturen:'; +$a->strings['Action after import:'] = 'Actie na importeren:'; +$a->strings['Move to folder'] = 'Naar map verplaatsen'; +$a->strings['Move to folder:'] = 'Verplaatsen naar map:'; +$a->strings['Delegation successfully granted.'] = 'Delegatie met succes verleend.'; +$a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'Brongebruiker niet gevonden, niet beschikbaar of wachtwoord komt niet overeen.'; +$a->strings['Delegation successfully revoked.'] = 'Delegatie is ingetrokken.'; +$a->strings['Delegated administrators can view but not change delegation permissions.'] = 'Gedelegeerde beheerders kunnen delegatierechten bekijken, maar niet wijzigen.'; +$a->strings['Delegate user not found.'] = 'Gemachtigde gebruiker niet gevonden.'; +$a->strings['No parent user'] = 'Ouderlijke gebruiker ontbreekt'; +$a->strings['Parent User'] = 'Ouderlijke gebruiker'; +$a->strings['Additional Accounts'] = 'Toegevoegde gebruikers'; +$a->strings['Register additional accounts that are automatically connected to your existing account so you can manage them from this account.'] = 'Registreer extra gebruikers die automatisch zijn verbonden met uw bestaande gebruiker, zodat u ze vanuit deze gebruiker kunt beheren.'; +$a->strings['Register an additional account'] = 'Registreer een toegevoegde gebruiker'; +$a->strings['Parent users have total control about this account, including the account settings. Please double check whom you give this access.'] = 'Ouderlijke gebruikers hebben totale controle over dit account, de account instellingen inbegrepen. Dubbel check dus alstublieft aan wie je deze toegang geeft.'; +$a->strings['Delegates'] = 'Gemachtigden'; +$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.'] = 'Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwt.'; +$a->strings['Existing Page Delegates'] = 'Bestaande personen waaraan het paginabeheer is uitbesteed'; +$a->strings['Potential Delegates'] = 'Mogelijke personen waaraan het paginabeheer kan worden uitbesteed '; +$a->strings['Add'] = 'Toevoegen'; +$a->strings['No entries.'] = 'Geen gegevens.'; +$a->strings['The theme you chose isn\'t available.'] = 'Het thema dat je koos is niet beschikbaar'; +$a->strings['%s - (Unsupported)'] = '%s - (Niet ondersteund)'; +$a->strings['Display Settings'] = 'Scherminstellingen'; +$a->strings['General Theme Settings'] = 'Algemene Thema Instellingen'; +$a->strings['Custom Theme Settings'] = 'Speciale Thema Instellingen'; +$a->strings['Content Settings'] = 'Content Instellingen'; +$a->strings['Theme settings'] = 'Thema-instellingen'; +$a->strings['Display Theme:'] = 'Schermthema:'; +$a->strings['Mobile Theme:'] = 'Mobiel thema:'; +$a->strings['Number of items to display per page:'] = 'Aantal items te tonen per pagina:'; +$a->strings['Maximum of 100 items'] = 'Maximum 100 items'; +$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Aantal items per pagina als je een mobiel toestel gebruikt:'; +$a->strings['Update browser every xx seconds'] = 'Browser elke xx seconden verversen'; +$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Minimum 10 seconden. Geef -1 op om te deactiveren.'; +$a->strings['Infinite scroll'] = 'Oneindig scrollen'; +$a->strings['Beginning of week:'] = 'Begin van de week:'; +$a->strings['Additional Features'] = 'Extra functies'; +$a->strings['Connected Apps'] = 'Verbonden applicaties'; +$a->strings['Remove authorization'] = 'Verwijder authorisatie'; +$a->strings['Profile couldn\'t be updated.'] = 'Profiel kan niet worden bijgewerkt.'; +$a->strings['Label:'] = 'Label:'; +$a->strings['Value:'] = 'Waarde:'; +$a->strings['Field Permissions'] = 'Veldrechten'; +$a->strings['(click to open/close)'] = '(klik om te openen/sluiten)'; +$a->strings['Add a new profile field'] = 'Voeg nieuw profielveld toe'; +$a->strings['Profile Actions'] = 'Profiel Acties'; +$a->strings['Edit Profile Details'] = 'Profieldetails bewerken'; +$a->strings['Change Profile Photo'] = 'Profielfoto wijzigen'; +$a->strings['Profile picture'] = 'Profiel foto'; +$a->strings['Location'] = 'Plaats'; +$a->strings['Miscellaneous'] = 'Diversen'; +$a->strings['Custom Profile Fields'] = 'Aangepaste profielvelden'; +$a->strings['Upload Profile Photo'] = 'Profielfoto uploaden'; +$a->strings['Street Address:'] = 'Postadres:'; +$a->strings['Locality/City:'] = 'Gemeente/Stad:'; +$a->strings['Region/State:'] = 'Regio/Staat:'; +$a->strings['Postal/Zip Code:'] = 'Postcode:'; +$a->strings['Country:'] = 'Land:'; +$a->strings['XMPP (Jabber) address:'] = 'XMPP (Jabber) adres:'; +$a->strings['Homepage URL:'] = 'Adres tijdlijn:'; +$a->strings['Public Keywords:'] = 'Publieke Sleutelwoorden:'; +$a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)'; +$a->strings['Private Keywords:'] = 'Privé Sleutelwoorden:'; +$a->strings['(Used for searching profiles, never shown to others)'] = '(Gebruikt om profielen te zoeken, nooit aan anderen getoond)'; +$a->strings['Image size reduction [%s] failed.'] = 'Verkleining van de afbeelding [%s] mislukt.'; +$a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto\'s niet onmiddellijk verschijnen.'; +$a->strings['Unable to process image'] = 'Ik kan de afbeelding niet verwerken'; +$a->strings['Photo not found.'] = 'Foto niet gevonden.'; +$a->strings['Profile picture successfully updated.'] = 'Profielfoto geüpdatet.'; +$a->strings['Crop Image'] = 'Afbeelding bijsnijden'; +$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Pas het afsnijden van de afbeelding aan voor het beste resultaat.'; +$a->strings['Use Image As Is'] = 'Gebruik afbeelding zoals deze is'; +$a->strings['Missing uploaded image.'] = 'Ontbrekende geüploade afbeelding.'; +$a->strings['Profile Picture Settings'] = 'Profiel afbeelding instellingen'; +$a->strings['Current Profile Picture'] = 'Huidige profielafbeelding'; +$a->strings['Upload Profile Picture'] = 'Upload profiel afbeelding'; +$a->strings['Upload Picture:'] = 'Upload afbeelding'; +$a->strings['or'] = 'of'; +$a->strings['skip this step'] = 'Deze stap overslaan'; +$a->strings['select a photo from your photo albums'] = 'Kies een foto uit je fotoalbums'; +$a->strings['[Friendica System Notify]'] = '[Friendica systeem notificatie]'; +$a->strings['User deleted their account'] = 'Gebruiker verwijderde zijn of haar account'; +$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Een gebruiker heeft zijn of haar account verwijderd op je Friendica node. Zorg er zeker voor dat zijn of haar data verwijderd is uit de backups.'; +$a->strings['The user id is %d'] = 'De gebruikers id is %d'; +$a->strings['Remove My Account'] = 'Verwijder mijn account'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is.'; +$a->strings['Please enter your password for verification:'] = 'Voer je wachtwoord in voor verificatie:'; $a->strings['Please enter your password to access this page.'] = 'Voer uw wachtwoord in om deze pagina te openen.'; $a->strings['App-specific password generation failed: The description is empty.'] = 'App-specifiek wachtwoord genereren mislukt: de beschrijving is leeg.'; $a->strings['App-specific password generation failed: This description already exists.'] = 'App-specifieke wachtwoordgeneratie mislukt: deze beschrijving bestaat al.'; @@ -1791,8 +1697,6 @@ $a->strings['When you generate a new app-specific password, you must use it righ $a->strings['Generate new app-specific password'] = 'Genereer een nieuw app-specifiek wachtwoord'; $a->strings['Generate'] = 'Genereer'; $a->strings['Two-factor authentication successfully disabled.'] = 'Twee-factor-authenticatie succesvol uitgeschakeld.'; -$a->strings['Wrong Password'] = 'Verkeerd wachtwoord'; -$a->strings['Two-factor authentication'] = '2-factor authenticatie'; $a->strings['

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

    '] = '

    Gebruik een applicatie op een mobiel apparaat om tweefactorauthenticatiecodes te krijgen wanneer daarom wordt gevraagd bij het inloggen.

    '; $a->strings['Authenticator app'] = 'Authenticatie-app'; $a->strings['Configured'] = 'Geconfigureerd'; @@ -1805,7 +1709,6 @@ $a->strings['

    These one-use codes can replace an authenticator app code in cas $a->strings['App-specific passwords'] = 'App-specifieke wachtwoorden'; $a->strings['Generated app-specific passwords'] = 'App-specifieke wachtwoorden gegenereerd'; $a->strings['

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

    '] = '

    Met deze willekeurig gegenereerde wachtwoorden kunt u verifiëren bij apps die geen tweefactorauthenticatie ondersteunen.

    '; -$a->strings['Actions'] = 'Acties'; $a->strings['Current password:'] = 'Huidig wachtwoord:'; $a->strings['You need to provide your current password to change two-factor authentication settings.'] = 'U moet uw huidige wachtwoord opgeven om de instellingen voor tweefactorauthenticatie te wijzigen.'; $a->strings['Enable two-factor authentication'] = 'Schakel tweefactorauthenticatie in'; @@ -1820,7 +1723,6 @@ $a->strings['When you generate new recovery codes, you must copy the new codes. $a->strings['Generate new recovery codes'] = 'Genereer nieuwe herstelcodes'; $a->strings['Next: Verification'] = 'Volgende: verificatie'; $a->strings['Two-factor authentication successfully activated.'] = 'Twee-factor-authenticatie succesvol geactiveerd.'; -$a->strings['Invalid code, please retry.'] = 'Ongeldige code, probeer het opnieuw.'; $a->strings['

    Or you can submit the authentication settings manually:

    Issuer
    @@ -1852,327 +1754,34 @@ $a->strings['

    Or you can submit the authentication settings manually:

    '; $a->strings['Two-factor code verification'] = 'Tweeledige codeverificatie'; $a->strings['

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

    '] = '

    Scan deze QR-code met uw authenticator-app en verzend de opgegeven code.

    '; -$a->strings['Please enter a code from your authentication app'] = 'Voer een code in van uw authenticatie-app'; $a->strings['Verify code and enable two-factor authentication'] = 'Controleer de code en schakel tweefactorauthenticatie in'; -$a->strings['Image size reduction [%s] failed.'] = 'Verkleining van de afbeelding [%s] mislukt.'; -$a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto\'s niet onmiddellijk verschijnen.'; -$a->strings['Unable to process image'] = 'Ik kan de afbeelding niet verwerken'; -$a->strings['Photo not found.'] = 'Foto niet gevonden.'; -$a->strings['Profile picture successfully updated.'] = 'Profielfoto geüpdatet.'; -$a->strings['Crop Image'] = 'Afbeelding bijsnijden'; -$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Pas het afsnijden van de afbeelding aan voor het beste resultaat.'; -$a->strings['Use Image As Is'] = 'Gebruik afbeelding zoals deze is'; -$a->strings['Missing uploaded image.'] = 'Ontbrekende geüploade afbeelding.'; -$a->strings['Profile Picture Settings'] = 'Profiel afbeelding instellingen'; -$a->strings['Current Profile Picture'] = 'Huidige profielafbeelding'; -$a->strings['Upload Profile Picture'] = 'Upload profiel afbeelding'; -$a->strings['Upload Picture:'] = 'Upload afbeelding'; -$a->strings['or'] = 'of'; -$a->strings['skip this step'] = 'Deze stap overslaan'; -$a->strings['select a photo from your photo albums'] = 'Kies een foto uit je fotoalbums'; -$a->strings['Profile Name is required.'] = 'Profielnaam is vereist.'; -$a->strings['Profile couldn\'t be updated.'] = 'Profiel kan niet worden bijgewerkt.'; -$a->strings['Label:'] = 'Label:'; -$a->strings['Value:'] = 'Waarde:'; -$a->strings['Field Permissions'] = 'Veldrechten'; -$a->strings['(click to open/close)'] = '(klik om te openen/sluiten)'; -$a->strings['Add a new profile field'] = 'Voeg nieuw profielveld toe'; -$a->strings['Profile Actions'] = 'Profiel Acties'; -$a->strings['Edit Profile Details'] = 'Profieldetails bewerken'; -$a->strings['Change Profile Photo'] = 'Profielfoto wijzigen'; -$a->strings['Profile picture'] = 'Profiel foto'; -$a->strings['Location'] = 'Plaats'; -$a->strings['Custom Profile Fields'] = 'Aangepaste profielvelden'; -$a->strings['Upload Profile Photo'] = 'Profielfoto uploaden'; -$a->strings['Display name:'] = 'Weergave naam:'; -$a->strings['Street Address:'] = 'Postadres:'; -$a->strings['Locality/City:'] = 'Gemeente/Stad:'; -$a->strings['Region/State:'] = 'Regio/Staat:'; -$a->strings['Postal/Zip Code:'] = 'Postcode:'; -$a->strings['Country:'] = 'Land:'; -$a->strings['XMPP (Jabber) address:'] = 'XMPP (Jabber) adres:'; -$a->strings['The XMPP address will be propagated to your contacts so that they can follow you.'] = 'Het XMPP adres zal doorgegeven worden aan je contacten zodat zij je kunnen volgen.'; -$a->strings['Homepage URL:'] = 'Adres tijdlijn:'; -$a->strings['Public Keywords:'] = 'Publieke Sleutelwoorden:'; -$a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)'; -$a->strings['Private Keywords:'] = 'Privé Sleutelwoorden:'; -$a->strings['(Used for searching profiles, never shown to others)'] = '(Gebruikt om profielen te zoeken, nooit aan anderen getoond)'; -$a->strings['

    Custom fields appear on your profile page.

    -

    You can use BBCodes in the field values.

    -

    Reorder by dragging the field title.

    -

    Empty the label field to remove a custom field.

    -

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

    '] = '

    Aangepaste velden verschijnen op je profielpagina.

    -

    Je kunt BBCodes in de veldwaarden gebruiken.

    -

    Sorteer opnieuw door de veldtitel te slepen.

    -

    Maak het labelveld leeg om een ​​aangepast veld te verwijderen.

    -

    Niet-openbare velden zijn alleen zichtbaar voor de geselecteerde Friendica-contacten of de Friendica-contacten in de geselecteerde groepen.

    '; -$a->strings['Delegation successfully granted.'] = 'Delegatie met succes verleend.'; -$a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'Brongebruiker niet gevonden, niet beschikbaar of wachtwoord komt niet overeen.'; -$a->strings['Delegation successfully revoked.'] = 'Delegatie is ingetrokken.'; -$a->strings['Delegated administrators can view but not change delegation permissions.'] = 'Gedelegeerde beheerders kunnen delegatierechten bekijken, maar niet wijzigen.'; -$a->strings['Delegate user not found.'] = 'Gemachtigde gebruiker niet gevonden.'; -$a->strings['No parent user'] = 'Ouderlijke gebruiker ontbreekt'; -$a->strings['Parent User'] = 'Ouderlijke gebruiker'; -$a->strings['Parent Password:'] = 'Ouderlijk wachtwoord:'; -$a->strings['Please enter the password of the parent account to legitimize your request.'] = 'Geef alstublieft het wachtwoord van het ouderlijke account om je verzoek te legitimeren.'; -$a->strings['Additional Accounts'] = 'Toegevoegde gebruikers'; -$a->strings['Register additional accounts that are automatically connected to your existing account so you can manage them from this account.'] = 'Registreer extra gebruikers die automatisch zijn verbonden met uw bestaande gebruiker, zodat u ze vanuit deze gebruiker kunt beheren.'; -$a->strings['Register an additional account'] = 'Registreer een toegevoegde gebruiker'; -$a->strings['Parent users have total control about this account, including the account settings. Please double check whom you give this access.'] = 'Ouderlijke gebruikers hebben totale controle over dit account, de account instellingen inbegrepen. Dubbel check dus alstublieft aan wie je deze toegang geeft.'; -$a->strings['Manage Accounts'] = 'Beheer Gebruikers'; -$a->strings['Delegates'] = 'Gemachtigden'; -$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.'] = 'Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwt.'; -$a->strings['Existing Page Delegates'] = 'Bestaande personen waaraan het paginabeheer is uitbesteed'; -$a->strings['Potential Delegates'] = 'Mogelijke personen waaraan het paginabeheer kan worden uitbesteed '; -$a->strings['Add'] = 'Toevoegen'; -$a->strings['No entries.'] = 'Geen gegevens.'; -$a->strings['The theme you chose isn\'t available.'] = 'Het thema dat je koos is niet beschikbaar'; -$a->strings['%s - (Unsupported)'] = '%s - (Niet ondersteund)'; -$a->strings['Display Settings'] = 'Scherminstellingen'; -$a->strings['General Theme Settings'] = 'Algemene Thema Instellingen'; -$a->strings['Custom Theme Settings'] = 'Speciale Thema Instellingen'; -$a->strings['Content Settings'] = 'Content Instellingen'; -$a->strings['Calendar'] = 'Kalender'; -$a->strings['Display Theme:'] = 'Schermthema:'; -$a->strings['Mobile Theme:'] = 'Mobiel thema:'; -$a->strings['Number of items to display per page:'] = 'Aantal items te tonen per pagina:'; -$a->strings['Maximum of 100 items'] = 'Maximum 100 items'; -$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Aantal items per pagina als je een mobiel toestel gebruikt:'; -$a->strings['Update browser every xx seconds'] = 'Browser elke xx seconden verversen'; -$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Minimum 10 seconden. Geef -1 op om te deactiveren.'; -$a->strings['Don\'t show emoticons'] = 'Emoticons niet tonen'; -$a->strings['Infinite scroll'] = 'Oneindig scrollen'; -$a->strings['Disable the automatic suppression of extraneous thread indentation.'] = 'Schakel de automatische onderdrukking van vreemd inspringen uit.'; -$a->strings['Hide the Dislike feature'] = 'Verberg de Afkeeroptie'; -$a->strings['Hides the Dislike button and dislike reactions on posts and comments.'] = 'Verbergt de knop Niet Leuk en Niet Leuke Reacties op berichten en opmerkingen.'; -$a->strings['Beginning of week:'] = 'Begin van de week:'; $a->strings['Export account'] = 'Account exporteren'; $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.'] = 'Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server.'; $a->strings['Export all'] = 'Alles exporteren'; $a->strings['Export your account info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)'] = 'Exporteer uw gebruikersgegevens, contacten en al uw items als json. Kan een heel groot bestand zijn en kan veel tijd in beslag nemen. Gebruik dit om een ​​volledige back-up van uw account te maken (foto\'s worden niet geëxporteerd)'; $a->strings['Export Contacts to CSV'] = 'Export Contacten naar CSV'; $a->strings['Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon.'] = 'Exporteer de lijst met de gebruikers die u volgt als CSV-bestand. Compatibel met b.v. Mastodont.'; -$a->strings['Export personal data'] = 'Persoonlijke gegevens exporteren'; -$a->strings['Bad Request'] = 'Bad Request'; -$a->strings['Unauthorized'] = 'Onbevoegd'; -$a->strings['Forbidden'] = 'Niet toegestaan'; -$a->strings['Not Found'] = 'Niet gevonden'; -$a->strings['The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later.'] = 'De server is momenteel niet beschikbaar (omdat deze overbelast is of niet beschikbaar is door onderhoud). Probeer het later opnieuw.'; -$a->strings['Contact update failed.'] = 'Aanpassen van contact mislukt.'; -$a->strings['WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working.'] = 'WAARSCHUWING: Dit is zeer geavanceerd en als je verkeerde informatie invult, zal je mogelijk niet meer kunnen communiceren met deze contactpersoon.'; -$a->strings['Please use your browser \'Back\' button now if you are uncertain what to do on this page.'] = 'Gebruik nu de "terug"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen.'; -$a->strings['No mirroring'] = 'Geen mirroring'; -$a->strings['Mirror as forwarded posting'] = 'Spiegel als geforward bericht'; -$a->strings['Mirror as my own posting'] = 'Spiegel als mijn eigen bericht'; -$a->strings['Return to contact editor'] = 'Ga terug naar contactbewerker'; -$a->strings['Refetch contact data'] = 'Contact data opnieuw ophalen'; -$a->strings['Remote Self'] = 'Mijn identiteit elders'; -$a->strings['Mirror postings from this contact'] = 'Berichten van dit contact spiegelen'; -$a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'Markeer dit contact als remote_self, hierdoor zal friendica nieuwe berichten van dit contact opnieuw posten.'; -$a->strings['Account Nickname'] = 'Bijnaam account'; -$a->strings['@Tagname - overrides Name/Nickname'] = '@Labelnaam - krijgt voorrang op naam/bijnaam'; -$a->strings['Account URL'] = 'URL account'; -$a->strings['Account URL Alias'] = 'Account URL Alias'; -$a->strings['Friend Request URL'] = 'URL vriendschapsverzoek'; -$a->strings['Friend Confirm URL'] = 'URL vriendschapsbevestiging'; -$a->strings['Notification Endpoint URL'] = 'Notificatie Endpoint URL'; -$a->strings['Poll/Feed URL'] = 'URL poll/feed'; -$a->strings['New photo from this URL'] = 'Nieuwe foto van deze URL'; -$a->strings['Poke/Prod'] = 'Aanstoten/porren'; -$a->strings['poke, prod or do other things to somebody'] = 'aanstoten, porren of andere dingen met iemand doen'; -$a->strings['Choose what you wish to do to recipient'] = 'Kies wat je met de ontvanger wil doen'; -$a->strings['Make this post private'] = 'Dit bericht privé maken'; -$a->strings['Method Not Allowed.'] = 'Methode niet toegestaan.'; -$a->strings['Page not found.'] = 'Pagina niet gevonden'; -$a->strings['Contact not found'] = 'Contact niet gevonden'; -$a->strings['Remaining recovery codes: %d'] = 'Resterende herstelcodes: %d'; -$a->strings['Two-factor recovery'] = 'Twee-factorenherstel'; -$a->strings['

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

    '] = '

    U kunt een van uw eenmalige herstelcodes invoeren als u de toegang tot uw mobiele apparaat bent kwijtgeraakt.

    '; -$a->strings['Don’t have your phone? Enter a two-factor recovery code'] = 'Heb je je telefoon niet? Geef een twee-factor herstelcodecode in'; -$a->strings['Please enter a recovery code'] = 'Voer een herstelcode in'; -$a->strings['Submit recovery code and complete login'] = 'Voer de herstelcode in en voltooi de login'; -$a->strings['

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

    '] = '

    Open de tweefactorauthenticatie-app op uw apparaat om een ​​authenticatiecode te krijgen en uw identiteit te verifiëren.

    '; -$a->strings['Verify code and complete login'] = 'Controleer de code en voltooi de login'; -$a->strings['Create a New Account'] = 'Nieuwe account aanmaken'; -$a->strings['Your OpenID: '] = 'Uw OpenID'; -$a->strings['Please enter your username and password to add the OpenID to your existing account.'] = 'Voer uw gebruikersnaam en wachtwoord in om de OpenID toe te voegen aan uw bestaande gebruiker.'; -$a->strings['Or login using OpenID: '] = 'Of log in met OpenID:'; -$a->strings['Password: '] = 'Wachtwoord:'; -$a->strings['Remember me'] = 'Onthoud mij'; -$a->strings['Forgot your password?'] = 'Wachtwoord vergeten?'; -$a->strings['Website Terms of Service'] = 'Gebruikersvoorwaarden website'; -$a->strings['terms of service'] = 'servicevoorwaarden'; -$a->strings['Website Privacy Policy'] = 'Privacybeleid website'; -$a->strings['privacy policy'] = 'privacybeleid'; -$a->strings['Logged out.'] = 'Uitgelogd.'; -$a->strings['OpenID protocol error. No ID returned'] = 'OpenID-protocolfout. Geen ID terug ontvangen'; -$a->strings['Account not found. Please login to your existing account to add the OpenID to it.'] = 'Account niet gevonden. Meld je aan met je bestaande account om de OpenID toe te voegen.'; -$a->strings['Account not found. Please register a new account or login to your existing account to add the OpenID to it.'] = 'Account niet gevonden. Maak een nieuwe account aan of meld je aan met je bestaande account om de OpenID toe te voegen.'; -$a->strings['You must be logged in to show this page.'] = 'Je moet ingelogd zijn om deze pagina te tonen.'; -$a->strings['Network Notifications'] = 'Netwerknotificaties'; -$a->strings['System Notifications'] = 'Systeemnotificaties'; -$a->strings['Personal Notifications'] = 'Persoonlijke notificaties'; -$a->strings['Home Notifications'] = 'Tijdlijn-notificaties'; -$a->strings['No more %s notifications.'] = 'Geen %s notificaties meer.'; -$a->strings['Show unread'] = 'Toon ongelezen'; -$a->strings['Show all'] = 'Toon alles'; -$a->strings['Show Ignored Requests'] = 'Toon genegeerde verzoeken'; -$a->strings['Hide Ignored Requests'] = 'Verberg genegeerde verzoeken'; -$a->strings['Notification type:'] = 'Notificatiesoort:'; -$a->strings['Suggested by:'] = 'Voorgesteld door:'; -$a->strings['Hide this contact from others'] = 'Verberg dit contact voor anderen'; -$a->strings['Claims to be known to you: '] = 'Denkt dat je hem of haar kent:'; -$a->strings['Shall your connection be bidirectional or not?'] = 'Zal je connectie bidirectioneel zijn of niet?'; -$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 als vriend accepteren laat %s toe om in te schrijven op je berichten, en je zal ook updates ontvangen van hen in je nieuws feed.'; -$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 als volger accepteren laat hen toe om in te schrijven op je berichten, maar je zal geen updates ontvangen van hen in je nieuws feed.'; -$a->strings['Friend'] = 'Vriend'; -$a->strings['Subscriber'] = 'Volger'; -$a->strings['No introductions.'] = 'Geen vriendschaps- of connectieverzoeken.'; -$a->strings['Item was not found.'] = 'Item niet gevonden'; -$a->strings['Profile Details'] = 'Profieldetails'; -$a->strings['Only You Can See This'] = 'Alleen jij kunt dit zien'; -$a->strings['Tips for New Members'] = 'Tips voor nieuwe leden'; -$a->strings['Account'] = 'Account'; -$a->strings['Additional features'] = 'Extra functies'; -$a->strings['Display'] = 'Weergave'; -$a->strings['Connected apps'] = 'Verbonden applicaties'; -$a->strings['Remove account'] = 'Account verwijderen'; -$a->strings['Local Community'] = 'Lokale Groep'; -$a->strings['Posts from local users on this server'] = 'Berichten van lokale gebruikers op deze server'; -$a->strings['Global Community'] = 'Globale gemeenschap'; -$a->strings['Posts from users of the whole federated network'] = 'Berichten van gebruikers van het hele gefedereerde netwerk'; -$a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'Deze groepsstroom toont alle publieke berichten die deze node ontvangen heeft. Ze kunnen mogelijks niet de mening van de gebruikers van deze node weerspiegelen.'; -$a->strings['Community option not available.'] = 'Groepsoptie niet beschikbaar'; -$a->strings['Not available.'] = 'Niet beschikbaar'; -$a->strings['Credits'] = 'Credits'; -$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!'] = 'Friendica is een gemeenschapsproject dat niet mogelijk zou zijn zonder de hulp van vele mensen. Hier is een lijst van alle mensen die aan de code of vertalingen van Friendica hebben meegewerkt. Allen van harte bedankt!'; -$a->strings['Manage Identities and/or Pages'] = 'Beheer Identiteiten en/of Pagina\'s'; -$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Wissel tussen verschillende identiteiten of forum/groeppagina\'s die jouw accountdetails delen of waar je "beheerdersrechten" hebt gekregen.'; -$a->strings['Select an identity to manage: '] = 'Selecteer een identiteit om te beheren:'; -$a->strings['Suggested contact not found.'] = 'Voorgesteld contact werd niet gevonden'; -$a->strings['Friend suggestion sent.'] = 'Vriendschapsvoorstel verzonden.'; -$a->strings['Suggest Friends'] = 'Stel vrienden voor'; -$a->strings['Suggest a friend for %s'] = 'Stel een vriend voor aan %s'; -$a->strings['Help:'] = 'Help:'; -$a->strings['Welcome to %s'] = 'Welkom op %s'; -$a->strings['System down for maintenance'] = 'Systeem onbeschikbaar wegens onderhoud'; -$a->strings['A Decentralized Social Network'] = 'Een gedecentraliseerd sociaal netwerk'; -$a->strings['Only parent users can create additional accounts.'] = 'Alleen bovenliggende gebruikers kunnen extra gebruikers maken.'; -$a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking "Register".'] = 'U kunt (optioneel) dit formulier invullen via OpenID door uw OpenID in te vullen en op \'Registreren\' te klikken.'; -$a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in.'; -$a->strings['Your OpenID (optional): '] = 'Je OpenID (optioneel):'; -$a->strings['Include your profile in member directory?'] = 'Je profiel in de ledengids opnemen?'; -$a->strings['Note for the admin'] = 'Nota voor de beheerder'; -$a->strings['Leave a message for the admin, why you want to join this node'] = 'Laat een boodschap na voor de beheerder, waarom je bij deze node wil komen'; -$a->strings['Membership on this site is by invitation only.'] = 'Lidmaatschap van deze website is uitsluitend op uitnodiging.'; -$a->strings['Your invitation code: '] = 'Je uitnodigingscode:'; -$a->strings['Your Full Name (e.g. Joe Smith, real or real-looking): '] = 'Je volledige naam (bvb. Jan Smit, echt of echt lijkend):'; -$a->strings['Your Email Address: (Initial information will be send there, so this has to be an existing address.)'] = 'Je Email Adres: (Initiële informatie zal hier naartoe gezonden worden, dus dit moet een bestaand adres zijn.)'; -$a->strings['Please repeat your e-mail address:'] = 'Herhaal uw e-mailadres:'; -$a->strings['Leave empty for an auto generated password.'] = 'Laat leeg voor een automatisch gegenereerd wachtwoord.'; -$a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be "nickname@%s".'] = 'Kies een profiel bijnaam. Deze dient te beginnen met een letter. Uw profiel adres op deze site zal dan "bijnaam@%s" zijn.'; -$a->strings['Choose a nickname: '] = 'Kies een bijnaam:'; -$a->strings['Import your profile to this friendica instance'] = 'Importeer je profiel op deze friendica server'; -$a->strings['Note: This node explicitly contains adult content'] = 'Waarschuwing: Deze node heeft inhoud enkel bedoeld voor volwassenen.'; -$a->strings['Password doesn\'t match.'] = 'Wachtwoorden komen niet overeen.'; -$a->strings['Please enter your password.'] = 'Voer uw wachtwoord in.'; -$a->strings['You have entered too much information.'] = 'U heeft te veel informatie ingevoerd.'; -$a->strings['Please enter the identical mail address in the second field.'] = 'Voer in het tweede veld het identieke mailadres in.'; -$a->strings['The additional account was created.'] = 'De toegevoegde gebruiker is aangemaakt.'; -$a->strings['Registration successful. Please check your email for further instructions.'] = 'Registratie geslaagd. Kijk je e-mail na voor verdere instructies.'; -$a->strings['Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login.'] = 'Kon email niet verzenden. Hier zijn je account details:
    login: %s
    wachtwoord: %s

    Je kan je wachtwoord aanpassen nadat je ingelogd bent.'; -$a->strings['Registration successful.'] = 'Registratie succes.'; -$a->strings['Your registration can not be processed.'] = 'Je registratie kan niet verwerkt worden.'; -$a->strings['You have to leave a request note for the admin.'] = 'U dient een verzoekmelding achter te laten voor de beheerder.'; -$a->strings['Your registration is pending approval by the site owner.'] = 'Jouw registratie wacht op goedkeuring van de beheerder.'; $a->strings['At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node\'s user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication.'] = 'Op het moment van de registratie, en om communicatie mogelijk te maken tussen de gebruikersaccount en zijn of haar contacten, moet de gebruiker een weergave naam opgeven, een gebruikersnaam (bijnaam) en een werkend email adres. De namen zullen toegankelijk zijn op de profiel pagina van het account voor elke bezoeker van de pagina, zelfs als andere profiel details niet getoond worden. Het email adres zal enkel gebruikt worden om de gebruiker notificaties te sturen over interacties, maar zal niet zichtbaar getoond worden. Het oplijsten van een account in de gids van de node van de gebruiker of in de globale gids is optioneel en kan beheerd worden in de gebruikersinstellingen, dit is niet nodig voor communicatie.'; $a->strings['This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts.'] = 'Deze data is vereist voor communicatie en wordt doorgegeven aan de nodes van de communicatie partners en wordt daar opgeslagen. Gebruikers kunnen bijkomende privé data opgeven die mag doorgegeven worden aan de accounts van de communicatie partners.'; -$a->strings['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.'] = 'Op elk gewenst moment kan een aangemelde gebruiker zijn gebruikersgegevens uitvoeren vanaf de gebruikersinstellingen. Als de gebruiker zichzelf wenst te verwijderen, dan kan dat op %1$s/removeme. De verwijdering van de gebruiker is niet ongedaan te maken. Verwijdering van de gegevens zal tevens worden aangevraagd bij de nodes van de communicatiepartners.'; $a->strings['Privacy Statement'] = 'Privacy Verklaring'; -$a->strings['No installed applications.'] = 'Geen toepassingen geïnstalleerd'; -$a->strings['Applications'] = 'Toepassingen'; -$a->strings['Overview'] = 'Overzicht'; -$a->strings['Configuration'] = 'Configuratie'; -$a->strings['Database'] = 'Database'; -$a->strings['DB updates'] = 'DB aanpassingen'; -$a->strings['Inspect Deferred Workers'] = 'Inspecteer uitgestelde workers'; -$a->strings['Inspect worker Queue'] = 'Taakwachtrij inspecteren'; -$a->strings['Tools'] = 'Hulpmiddelen'; -$a->strings['Contact Blocklist'] = 'Contact Blokkeerlijst'; -$a->strings['Server Blocklist'] = 'Server Blokkeerlijst'; -$a->strings['Diagnostics'] = 'Diagnostiek'; -$a->strings['PHP Info'] = 'PHP Info'; -$a->strings['probe address'] = 'probe adres'; -$a->strings['check webfinger'] = 'check webfinger'; -$a->strings['Addon Features'] = 'Addon Features'; -$a->strings['User registrations waiting for confirmation'] = 'Gebruikersregistraties wachten op bevestiging'; -$a->strings['People Search - %s'] = 'Mensen Zoeken - %s'; -$a->strings['Forum Search - %s'] = 'Forum doorzoeken - %s'; -$a->strings['This page is missing a url parameter.'] = 'Deze pagina mist een url-parameter.'; -$a->strings['The post was created'] = 'Het bericht is aangemaakt'; -$a->strings['No entries (some entries may be hidden).'] = 'Geen gegevens (sommige gegevens kunnen verborgen zijn).'; -$a->strings['Find on this site'] = 'Op deze website zoeken'; -$a->strings['Results for:'] = 'Resultaten voor:'; -$a->strings['Site Directory'] = 'Websitegids'; -$a->strings['Installed addons/apps:'] = 'Geïnstalleerde addons/applicaties:'; -$a->strings['No installed addons/apps'] = 'Geen geïnstalleerde addons/applicaties'; -$a->strings['Read about the Terms of Service of this node.'] = 'Lees de Gebruiksvoorwaarden van deze node na.'; -$a->strings['On this server the following remote servers are blocked.'] = 'De volgende remote servers zijn geblokkeerd.'; -$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.'] = 'Dit is Friendica, versie %s en draait op op locatie %s. De databaseversie is %s, en de bericht update versie is %s.'; -$a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Ga naar Friendi.ca om meer te vernemen over het Friendica project.'; -$a->strings['Bug reports and issues: please visit'] = 'Bug rapporten en problemen: bezoek'; -$a->strings['the bugtracker at github'] = 'de github bugtracker'; -$a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = 'Suggesties, appreciatie, enz. - aub stuur een email naar "info" at "friendi - dot - ca'; -$a->strings['Could not create group.'] = 'Kon de groep niet aanmaken.'; -$a->strings['Group not found.'] = 'Groep niet gevonden.'; -$a->strings['Unknown group.'] = 'Onbekende groep.'; -$a->strings['Contact is deleted.'] = 'Contact is verwijderd.'; -$a->strings['Unable to add the contact to the group.'] = 'Kan het contact niet aan de groep toevoegen.'; -$a->strings['Contact successfully added to group.'] = 'Contact succesvol aan de groep toegevoegd.'; -$a->strings['Unable to remove the contact from the group.'] = 'Kan het contact niet uit de groep verwijderen.'; -$a->strings['Contact successfully removed from group.'] = 'Contact succesvol verwijderd uit groep.'; -$a->strings['Unknown group command.'] = 'Onbekende groepsopdracht.'; -$a->strings['Bad request.'] = 'Verkeerde aanvraag.'; -$a->strings['Save Group'] = 'Bewaar groep'; -$a->strings['Filter'] = 'filter'; -$a->strings['Create a group of contacts/friends.'] = 'Maak een groep contacten/vrienden aan.'; -$a->strings['Unable to remove group.'] = 'Niet in staat om groep te verwijderen.'; -$a->strings['Delete Group'] = 'Verwijder Groep'; -$a->strings['Edit Group Name'] = 'Bewerk Groep Naam'; -$a->strings['Members'] = 'Leden'; -$a->strings['Group is empty'] = 'De groep is leeg'; -$a->strings['Remove contact from group'] = 'Verwijder contact uit de groep'; -$a->strings['Click on a contact to add or remove.'] = 'Klik op een contact om het toe te voegen of te verwijderen.'; -$a->strings['Add contact to group'] = 'Voeg contact toe aan de groep'; -$a->strings['No profile'] = 'Geen profiel'; -$a->strings['Total invitation limit exceeded.'] = 'Totale uitnodigingslimiet overschreden.'; -$a->strings['%s : Not a valid email address.'] = '%s: Geen geldig e-mailadres.'; -$a->strings['Please join us on Friendica'] = 'Kom bij ons op Friendica'; -$a->strings['Invitation limit exceeded. Please contact your site administrator.'] = 'Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website.'; -$a->strings['%s : Message delivery failed.'] = '%s : Aflevering van bericht mislukt.'; -$a->strings['%d message sent.'] = [ - 0 => '%d bericht verzonden.', - 1 => '%d berichten verzonden.', +$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'Het gevraagde item bestaat niet of is verwijderd'; +$a->strings['User imports on closed servers can only be done by an administrator.'] = 'Importen van een gebruiker op een gesloten node kan enkel gedaan worden door een administrator'; +$a->strings['Move account'] = 'Account verplaatsen'; +$a->strings['You can import an account from another Friendica server.'] = 'Je kunt een account van een andere Friendica server importeren.'; +$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.'] = 'Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent.'; +$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Dit feature is experimenteel. We kunnen contacten van het OStatus netwerk (GNU Social/Statusnet) of van Diaspora niet importeren.'; +$a->strings['Account file'] = 'Account bestand'; +$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Om je account te exporteren, ga naar "Instellingen->Exporteer je persoonlijke data" en selecteer "Exporteer account"'; +$a->strings['Error decoding account file'] = 'Fout bij decoderen van het account bestand'; +$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Fout! Geen versie data in het bestand! Is dit wel een Friendica account bestand?'; +$a->strings['User \'%s\' already exists on this server!'] = 'Gebruiker \'%s\' bestaat al op deze server!'; +$a->strings['User creation error'] = 'Fout bij het aanmaken van de gebruiker'; +$a->strings['%d contact not imported'] = [ + 0 => '%d contact werd niet geïmporteerd', + 1 => '%d contacten werden niet geïmporteerd', ]; -$a->strings['You have no more invitations available'] = 'Je kunt geen uitnodigingen meer sturen'; -$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.'] = 'Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken.'; -$a->strings['To accept this invitation, please visit and register at %s or any other public Friendica website.'] = 'Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website.'; -$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.'] = 'Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten.'; -$a->strings['Our apologies. This system is not currently configured to connect with other public sites or invite members.'] = 'Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen.'; -$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.'] = 'Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken.'; -$a->strings['To accept this invitation, please visit and register at %s.'] = 'Om deze uitnodiging te accepteren, ga naar en registreer op %s.'; -$a->strings['Send invitations'] = 'Verstuur uitnodigingen'; -$a->strings['Enter email addresses, one per line:'] = 'Vul e-mailadressen in, één per lijn:'; -$a->strings['You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.'] = 'Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen.'; -$a->strings['You will need to supply this invitation code: $invite_code'] = 'Je zult deze uitnodigingscode moeten invullen: $invite_code'; -$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:'; -$a->strings['For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca'] = 'Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendi.ca/ bezoeken'; -$a->strings['Remote privacy information not available.'] = 'Privacyinformatie op afstand niet beschikbaar.'; -$a->strings['Visible to:'] = 'Zichtbaar voor:'; -$a->strings['The Photo with id %s is not available.'] = 'De foto met id %s is niet beschikbaar'; -$a->strings['Invalid photo with id %s.'] = 'Ongeldige foto met ID %s'; -$a->strings['The provided profile link doesn\'t seem to be valid'] = 'De verstrekte profiellink lijkt niet geldig te zijn'; -$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.'] = 'Geef hier je Webfinger adres (gebruiker@domain.tld) of profiel URL. Als dit niet wordt ondersteund door je systeem, dan dien je in te schrijven op %s of %s direct op je systeem.'; +$a->strings['User profile creation error'] = 'Fout bij het aanmaken van het gebruikersprofiel'; +$a->strings['Done. You can now login with your username and password'] = 'Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord'; $a->strings['Welcome to Friendica'] = 'Welkom bij Friendica'; $a->strings['New Member Checklist'] = 'Checklist voor nieuwe leden'; $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.'] = 'We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina\'s te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen.'; @@ -2196,147 +1805,82 @@ $a->strings['Go to Your Site\'s Directory'] = 'Ga naar de gids van je website'; $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.'] = 'In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord Connect of Follow op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd.'; $a->strings['Finding New People'] = 'Nieuwe mensen vinden'; $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.'] = 'Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden.'; -$a->strings['Group Your Contacts'] = 'Groepeer je contacten'; -$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.'] = 'Als je een aantal vrienden gemaakt hebt kun je ze in je eigen gespreksgroepen indelen vanuit de zijbalk van je \'Contacten\' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. '; $a->strings['Why Aren\'t My Posts Public?'] = 'Waarom zijn mijn berichten niet openbaar?'; $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.'] = 'Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie.'; $a->strings['Getting Help'] = 'Hulp krijgen'; $a->strings['Go to the Help Section'] = 'Ga naar de help'; $a->strings['Our help pages may be consulted for detail on other program features and resources.'] = 'Je kunt onze help pagina\'s raadplegen voor gedetailleerde informatie over andere functies van dit programma.'; -$a->strings['Friendica Communications Server - Setup'] = 'Friendica Communicatie Server - Setup'; -$a->strings['System check'] = 'Systeemcontrole'; -$a->strings['Check again'] = 'Controleer opnieuw'; -$a->strings['Base settings'] = 'Basisinstellingen'; -$a->strings['Host name'] = 'Host naam'; -$a->strings['Overwrite this field in case the determinated hostname isn\'t right, otherweise leave it as is.'] = 'Overschrijf dit veld voor het geval de bepaalde hostnaam niet juist is, laat het anders zoals het is.'; -$a->strings['Base path to installation'] = 'Basispad voor installatie'; -$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.'] = 'Als het systeem het correcte pad naar je installatie niet kan detecteren, geef hier dan het correcte pad in. Deze instelling zou alleen geconfigureerd moeten worden als je een systeem met restricties hebt en symbolische links naar je webroot.'; -$a->strings['Sub path of the URL'] = 'Subpad van de URL'; -$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.'] = 'Overschrijf dit veld voor het geval de bepaling van het subpad niet juist is, laat het anders zoals het is. Als u dit veld leeg laat, betekent dit dat de installatie zich op de basis-URL bevindt zonder subpad.'; -$a->strings['Database connection'] = 'Verbinding met database'; -$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken.'; -$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. '; -$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat.'; -$a->strings['Database Server Name'] = 'Servernaam database'; -$a->strings['Database Login Name'] = 'Gebruikersnaam database'; -$a->strings['Database Login Password'] = 'Wachtwoord database'; -$a->strings['For security reasons the password must not be empty'] = 'Om veiligheidsreden mag het wachtwoord niet leeg zijn'; -$a->strings['Database Name'] = 'Naam database'; -$a->strings['Please select a default timezone for your website'] = 'Selecteer een standaard tijdzone voor je website'; -$a->strings['Site settings'] = 'Website-instellingen'; -$a->strings['Site administrator email address'] = 'E-mailadres van de websitebeheerder'; -$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken.'; -$a->strings['System Language:'] = 'Systeem taal:'; -$a->strings['Set the default language for your Friendica installation interface and to send emails.'] = 'Stel de standaard taal in voor je Friendica installatie interface en emails.'; -$a->strings['Your Friendica site database has been installed.'] = 'De database van je Friendica-website is geïnstalleerd.'; -$a->strings['Installation finished'] = 'Installaitie beëindigd'; -$a->strings['

    What next

    '] = '

    Wat nu

    '; -$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the worker.'] = 'BELANGRIJK: Je zal [manueel] een geplande taak moeten opzetten voor de worker.'; -$a->strings['Please see the file "INSTALL.txt".'] = 'Zie het bestand "INSTALL.txt".'; -$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.'] = 'Go naar je nieuwe Friendica node registratie pagina en registeer als nieuwe gebruiker. Vergeet niet hetzelfde email adres te gebruiken als wat je opgegeven hebt als administrator email. Dit zal je toelaten om het site administratie paneel te openen.'; -$a->strings['%d contact edited.'] = [ - 0 => '%d contact bewerkt.', - 1 => '%d contacten bewerkt.', -]; -$a->strings['Could not access contact record.'] = 'Kon geen toegang krijgen tot de contactgegevens'; -$a->strings['Contact has been blocked'] = 'Contact is geblokkeerd'; -$a->strings['Contact has been unblocked'] = 'Contact is gedeblokkeerd'; -$a->strings['Contact has been ignored'] = 'Contact wordt genegeerd'; -$a->strings['Contact has been unignored'] = 'Contact wordt niet meer genegeerd'; -$a->strings['Contact has been archived'] = 'Contact is gearchiveerd'; -$a->strings['Contact has been unarchived'] = 'Contact is niet meer gearchiveerd'; -$a->strings['Drop contact'] = 'Contact vergeten'; -$a->strings['Do you really want to delete this contact?'] = 'Wil je echt dit contact verwijderen?'; -$a->strings['Contact has been removed.'] = 'Contact is verwijderd.'; -$a->strings['You are mutual friends with %s'] = 'Je bent wederzijds bevriend met %s'; -$a->strings['You are sharing with %s'] = 'Je deelt met %s'; -$a->strings['%s is sharing with you'] = '%s deelt met jou'; -$a->strings['Private communications are not available for this contact.'] = 'Privécommunicatie met dit contact is niet beschikbaar.'; -$a->strings['Never'] = 'Nooit'; -$a->strings['(Update was successful)'] = '(Wijziging is geslaagd)'; -$a->strings['(Update was not successful)'] = '(Wijziging is niet geslaagd)'; -$a->strings['Suggest friends'] = 'Stel vrienden voor'; -$a->strings['Network type: %s'] = 'Netwerk type: %s'; -$a->strings['Communications lost with this contact!'] = 'Communicatie met dit contact is verbroken!'; -$a->strings['Fetch further information for feeds'] = 'Haal meer informatie op van de feeds'; -$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.'] = 'Haal informatie op zoals preview beelden, titel en teaser van het feed item. Je kan dit activeren als de feed niet veel tekst bevat. Sleutelwoorden worden opgepikt uit de meta header in het feed item en worden gepost als hash tags.'; -$a->strings['Fetch information'] = 'Haal informatie op'; -$a->strings['Fetch keywords'] = 'Haal sleutelwoorden op'; -$a->strings['Fetch information and keywords'] = 'Haal informatie en sleutelwoorden op'; -$a->strings['Contact Information / Notes'] = 'Contactinformatie / aantekeningen'; -$a->strings['Contact Settings'] = 'Contact instellingen'; -$a->strings['Contact'] = 'Contact'; -$a->strings['Their personal note'] = 'Hun persoonlijke nota'; -$a->strings['Edit contact notes'] = 'Wijzig aantekeningen over dit contact'; -$a->strings['Visit %s\'s profile [%s]'] = 'Bekijk het profiel van %s [%s]'; -$a->strings['Block/Unblock contact'] = 'Blokkeer/deblokkeer contact'; -$a->strings['Ignore contact'] = 'Negeer contact'; -$a->strings['View conversations'] = 'Toon gesprekken'; -$a->strings['Last update:'] = 'Laatste wijziging:'; -$a->strings['Update public posts'] = 'Openbare posts aanpassen'; -$a->strings['Update now'] = 'Wijzig nu'; -$a->strings['Unignore'] = 'Negeer niet meer'; -$a->strings['Currently blocked'] = 'Op dit moment geblokkeerd'; -$a->strings['Currently ignored'] = 'Op dit moment genegeerd'; -$a->strings['Currently archived'] = 'Op dit moment gearchiveerd'; -$a->strings['Awaiting connection acknowledge'] = 'Wait op bevestiging van de connectie'; -$a->strings['Replies/likes to your public posts may still be visible'] = 'Antwoorden of \'vind ik leuk\'s op je openbare posts kunnen nog zichtbaar zijn'; -$a->strings['Notification for new posts'] = 'Meldingen voor nieuwe berichten'; -$a->strings['Send a notification of every new post of this contact'] = 'Stuur een notificatie voor elk bericht van dit contact'; -$a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Door komma\'s gescheiden lijst van sleutelwoorden die niet in hashtags mogen omgezet worden, wanneer "Haal informatie en sleutelwoorden op" is geselecteerd'; -$a->strings['Show all contacts'] = 'Toon alle contacten'; -$a->strings['Pending'] = 'In behandeling'; -$a->strings['Only show pending contacts'] = 'Toon alleen contacten in behandeling'; -$a->strings['Blocked'] = 'Geblokkeerd'; -$a->strings['Only show blocked contacts'] = 'Toon alleen geblokkeerde contacten'; -$a->strings['Ignored'] = 'Genegeerd'; -$a->strings['Only show ignored contacts'] = 'Toon alleen genegeerde contacten'; -$a->strings['Archived'] = 'Gearchiveerd'; -$a->strings['Only show archived contacts'] = 'Toon alleen gearchiveerde contacten'; -$a->strings['Hidden'] = 'Verborgen'; -$a->strings['Only show hidden contacts'] = 'Toon alleen verborgen contacten'; -$a->strings['Organize your contact groups'] = 'Organiseer je contact groepen'; -$a->strings['Search your contacts'] = 'Doorzoek je contacten'; -$a->strings['Archive'] = 'Archiveer'; -$a->strings['Unarchive'] = 'Archiveer niet meer'; -$a->strings['Batch Actions'] = 'Bulk Acties'; -$a->strings['Conversations started by this contact'] = 'Gesprekken gestart door dit contact'; -$a->strings['Posts and Comments'] = 'Berichten en reacties'; -$a->strings['Advanced Contact Settings'] = 'Geavanceerde instellingen voor contacten'; -$a->strings['Mutual Friendship'] = 'Wederzijdse vriendschap'; -$a->strings['is a fan of yours'] = 'Is een fan van jou'; -$a->strings['you are a fan of'] = 'Jij bent een fan van'; -$a->strings['Pending outgoing contact request'] = 'In afwachting van uitgaande contactaanvraag'; -$a->strings['Pending incoming contact request'] = 'In afwachting van inkomende contactaanvraag'; -$a->strings['Toggle Blocked status'] = 'Schakel geblokkeerde status'; -$a->strings['Toggle Ignored status'] = 'Schakel negeerstatus'; -$a->strings['Toggle Archive status'] = 'Schakel archiveringsstatus'; -$a->strings['Delete contact'] = 'Verwijder contact'; +$a->strings['%s liked %s\'s post'] = '%s vond het bericht van %s leuk'; +$a->strings['%s disliked %s\'s post'] = '%s vond het bericht van %s niet leuk'; +$a->strings['%s is attending %s\'s event'] = '%s woont het event van %s bij'; +$a->strings['%s is not attending %s\'s event'] = '%s woont het event van %s niet bij'; +$a->strings['%s may attending %s\'s event'] = '%s kan aanwezig zijn op %s\'s gebeurtenis'; +$a->strings['%s is now friends with %s'] = '%s is nu bevriend met %s'; +$a->strings['%s commented on %s\'s post'] = '%s gaf een reactie op het bericht van %s'; +$a->strings['%s created a new post'] = '%s schreef een nieuw bericht'; +$a->strings['Friend Suggestion'] = 'Vriendschapsvoorstel'; +$a->strings['Friend/Connect Request'] = 'Vriendschapsverzoek'; +$a->strings['New Follower'] = 'Nieuwe Volger'; +$a->strings['%s New mail received at %s'] = '%s Nieuw bericht ontvangen op %s'; +$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s sent you a new private message at %2$s.'; +$a->strings['a private message'] = 'een prive bericht'; +$a->strings['%1$s sent you %2$s.'] = '%1$s stuurde jou %2$s.'; +$a->strings['Please visit %s to view and/or reply to your private messages.'] = 'Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden.'; +$a->strings['%1$s commented on %2$s\'s %3$s %4$s'] = '%1$s heeft een opmerking geplaatst op %2$s\'s %3$s %4$s'; +$a->strings['%1$s commented on your %2$s %3$s'] = '%1$s heeft een opmerking geplaatst op jou %2$s %3$s'; +$a->strings['%1$s commented on their %2$s %3$s'] = '%1$s heeft een opmering geschreven op hun %2$s %3$s'; +$a->strings['%1$s Comment to conversation #%2$d by %3$s'] = '%1$s Opmerking bij conversatie #%2$d door %3$s'; +$a->strings['%s commented on an item/conversation you have been following.'] = '%s gaf een reactie op een bericht/gesprek die jij volgt.'; +$a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Bezoek %s om het gesprek te bekijken en/of te beantwoorden.'; +$a->strings['%s %s posted to your profile wall'] = '%s %s heeft op je profiel wall gepost'; +$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$splaatste een bericht op je tijdlijn op %2$s'; +$a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s schreef op [url=%2$s]jouw tijdlijn[/url]'; +$a->strings['%s Introduction received'] = '%s Introductie ontvangen'; +$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Je hebt een vriendschaps- of connectieverzoek ontvangen van \'%1$s\' om %2$s'; +$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s.'; +$a->strings['You may visit their profile at %s'] = 'Je kunt hun profiel bezoeken op %s'; +$a->strings['Please visit %s to approve or reject the introduction.'] = 'Bezoek %s om het verzoek goed of af te keuren.'; +$a->strings['%s A new person is sharing with you'] = '%s Een nieuwe persoon deelt met je'; +$a->strings['%1$s is sharing with you at %2$s'] = '%1$s deelt met jou in %2$s'; +$a->strings['%s You have a new follower'] = '%s Je hebt een nieuwe volger'; +$a->strings['You have a new follower at %2$s : %1$s'] = 'Je hebt een nieuwe volger op %2$s: %1$s'; +$a->strings['%s Friend suggestion received'] = '%s Vriend suggestie ontvangen'; +$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = 'Je kreeg een vriendschapssuggestie van \'%1$s\' op %2$s'; +$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = 'Je kreeg een [url=%1$s]vriendschapssuggestie[/url] voor %2$s op %3$s.'; +$a->strings['Name:'] = 'Naam:'; +$a->strings['Photo:'] = 'Foto: '; +$a->strings['Please visit %s to approve or reject the suggestion.'] = 'Bezoek %s om de suggestie goed of af te keuren.'; +$a->strings['%s Connection accepted'] = '%s Verbinding geaccepteerd'; +$a->strings['\'%1$s\' has accepted your connection request at %2$s'] = '\'%1$s\' aanvaarde je contactaanvraag op %2$s'; +$a->strings['%2$s has accepted your [url=%1$s]connection request[/url].'] = '%2$saanvaardde jouw [url=%1$s]contactaanvraag[/url].'; +$a->strings['You are now mutual friends and may exchange status updates, photos, and email without restriction.'] = 'Jullie zijn nu in contact met elkaar en kunnen statusberichten, foto\'s en email delen zonder beperkingen.'; +$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'Bezoek alstublieft %s als je deze relatie wil wijzigen.'; +$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\' koos om je te accepteren als fan, wat sommige communicatievormen beperkt - zoals privéberichten en sommige profielfuncties. Als dit een beroemdheid- of groepspagina is, werd dit automatisch toegepast.'; +$a->strings['\'%1$s\' may choose to extend this into a two-way or more permissive relationship in the future.'] = '\'%1$s\' kan er later voor kiezen om deze beperkingen aan te passen.'; +$a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'Bezoek %s wanneer je deze relatie wil wijzigen.'; +$a->strings['registration request'] = 'registratie verzoek'; +$a->strings['You\'ve received a registration request from \'%1$s\' at %2$s'] = 'Je kreeg een registratieaanvraag van \'%1$s\' op %2$s'; +$a->strings['You\'ve received a [url=%1$s]registration request[/url] from %2$s.'] = 'Je kreeg een [url=%1$s]registratieaanvraag[/url] van %2$s.'; +$a->strings['Full Name: %s +Site Location: %s +Login Name: %s (%s)'] = 'Volledige naam: %s +Adres van de site: %s +Loginnaam: %s (%s)'; +$a->strings['Please visit %s to approve or reject the request.'] = 'Bezoek %s om de aanvraag goed of af te keuren.'; +$a->strings['%s %s tagged you'] = '%s %s heeft jou getagged'; +$a->strings['%s %s shared a new post'] = '%s %s deelde een nieuwe post'; $a->strings['This message was sent to you by %s, a member of the Friendica social network.'] = 'Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk.'; $a->strings['You may visit them online at %s'] = 'Je kunt ze online bezoeken op %s'; $a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen.'; $a->strings['%s posted an update.'] = '%s heeft een wijziging geplaatst.'; -$a->strings['This entry was edited'] = 'Deze entry werd bewerkt'; $a->strings['Private Message'] = 'Privébericht'; -$a->strings['Delete locally'] = 'Verwijder lokaal'; +$a->strings['This entry was edited'] = 'Deze entry werd bewerkt'; +$a->strings['Edit'] = 'Bewerken'; $a->strings['Delete globally'] = 'Verwijder globaal'; $a->strings['Remove locally'] = 'Verwijder lokaal'; -$a->strings['save to folder'] = 'Bewaren in map'; $a->strings['I will attend'] = 'Ik zal er zijn'; $a->strings['I will not attend'] = 'Ik zal er niet zijn'; $a->strings['I might attend'] = 'Ik ga misschien'; -$a->strings['ignore thread'] = 'Negeer gesprek'; -$a->strings['unignore thread'] = 'Stop met gesprek te negeren'; -$a->strings['toggle ignore status'] = 'verwissel negeer status'; -$a->strings['add star'] = 'ster toevoegen'; -$a->strings['remove star'] = 'ster verwijderen'; -$a->strings['toggle star status'] = 'ster toevoegen of verwijderen'; -$a->strings['starred'] = 'met ster'; -$a->strings['add tag'] = 'label toevoegen'; -$a->strings['like'] = 'leuk'; -$a->strings['dislike'] = 'niet leuk'; -$a->strings['Share this'] = 'Delen'; -$a->strings['share'] = 'Delen'; $a->strings['to'] = 'aan'; $a->strings['via'] = 'via'; $a->strings['Wall-to-Wall'] = 'wall-to-wall'; @@ -2351,62 +1895,11 @@ $a->strings['%d comment'] = [ ]; $a->strings['Show more'] = 'Toon meer'; $a->strings['Show fewer'] = 'Toon minder'; +$a->strings['%s is now following %s.'] = '%s volgt nu %s.'; +$a->strings['following'] = 'volgend'; +$a->strings['%s stopped following %s.'] = '%s stopte %s te volgen.'; +$a->strings['stopped following'] = 'is gestopt met volgen'; $a->strings['Login failed.'] = 'Login mislukt.'; $a->strings['Login failed. Please check your credentials.'] = 'Aanmelden mislukt. Controleer uw inloggegevens.'; $a->strings['Welcome %s'] = 'Welkom %s'; $a->strings['Please upload a profile photo.'] = 'Upload een profielfoto.'; -$a->strings['You must be logged in to use addons. '] = 'Je moet ingelogd zijn om deze addons te kunnen gebruiken. '; -$a->strings['Delete this item?'] = 'Dit item verwijderen?'; -$a->strings['toggle mobile'] = 'mobiel thema omwisselen'; -$a->strings['Friend Suggestion'] = 'Vriendschapsvoorstel'; -$a->strings['Friend/Connect Request'] = 'Vriendschapsverzoek'; -$a->strings['New Follower'] = 'Nieuwe Volger'; -$a->strings['%s created a new post'] = '%s schreef een nieuw bericht'; -$a->strings['%s commented on %s\'s post'] = '%s gaf een reactie op het bericht van %s'; -$a->strings['%s liked %s\'s post'] = '%s vond het bericht van %s leuk'; -$a->strings['%s disliked %s\'s post'] = '%s vond het bericht van %s niet leuk'; -$a->strings['%s is attending %s\'s event'] = '%s woont het event van %s bij'; -$a->strings['%s is not attending %s\'s event'] = '%s woont het event van %s niet bij'; -$a->strings['%s may attending %s\'s event'] = '%s kan aanwezig zijn op %s\'s gebeurtenis'; -$a->strings['%s is now friends with %s'] = '%s is nu bevriend met %s'; -$a->strings['Could not find any unarchived contact entry for this URL (%s)'] = 'Kon geen niet-gearchiveerde contacten vinden voor deze URL (%s)'; -$a->strings['The contact entries have been archived'] = 'The contacten zijn gearchiveerd'; -$a->strings['Post update version number has been set to %s.'] = 'Bericht update versie is ingesteld op %s'; -$a->strings['Check for pending update actions.'] = 'Controleren op uitgestelde update acties.'; -$a->strings['Done.'] = 'Gedaan'; -$a->strings['Execute pending post updates.'] = 'uitgestelde bericht update acties uitvoeren'; -$a->strings['All pending post updates are done.'] = 'Alle uitgestelde bericht update acties zijn uitgevoerd'; -$a->strings['Enter new password: '] = 'Geef nieuw wachtwoord:'; -$a->strings['Enter user name: '] = 'Geef gebruikersnaam in:'; -$a->strings['Enter user nickname: '] = 'Geef een bijnaam in:'; -$a->strings['Enter user email address: '] = 'Geef een gebruiker email adres in:'; -$a->strings['Enter a language (optional): '] = 'Geef uw taalkeuze in (optioneel):'; -$a->strings['User is not pending.'] = 'Gebruiker is niet in behandeling.'; -$a->strings['User has already been marked for deletion.'] = 'De gebruiker is reeds gemarkeerd voor verwijdering.'; -$a->strings['Type "yes" to delete %s'] = 'Type "Ja" om te wissen %s'; -$a->strings['Deletion aborted.'] = 'Verwijdering afgebroken.'; -$a->strings['Hometown:'] = 'Woonplaats:'; -$a->strings['With:'] = 'Met:'; -$a->strings['Since:'] = 'Sinds:'; -$a->strings['Sexual Preference:'] = 'Seksuele Voorkeur:'; -$a->strings['Political Views:'] = 'Politieke standpunten:'; -$a->strings['Religious Views:'] = 'Geloof:'; -$a->strings['Likes:'] = 'Houdt van:'; -$a->strings['Dislikes:'] = 'Houdt niet van:'; -$a->strings['Title/Description:'] = 'Titel/Beschrijving:'; -$a->strings['Musical interests'] = 'Muzikale interesses'; -$a->strings['Books, literature'] = 'Boeken, literatuur'; -$a->strings['Television'] = 'Televisie'; -$a->strings['Film/dance/culture/entertainment'] = 'Film/dans/cultuur/ontspanning'; -$a->strings['Hobbies/Interests'] = 'Hobby\'s/Interesses'; -$a->strings['Love/romance'] = 'Liefde/romance'; -$a->strings['Work/employment'] = 'Werk'; -$a->strings['School/education'] = 'School/opleiding'; -$a->strings['Contact information and Social Networks'] = 'Contactinformatie en sociale netwerken'; -$a->strings['Legacy module file not found: %s'] = 'Legacy module bestand niet gevonden: %s'; -$a->strings['No system theme config value set.'] = 'Geen systeem thema configuratie ingesteld.'; -$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.'] = 'De beveiligingstoken van het formulier was foutief. Dit gebeurde waarschijnlijk omdat het formulier te lang (> 3 uur) is blijven open staan voor het werd verstuurd.'; -$a->strings['All contacts'] = 'Alle contacten'; -$a->strings['Common'] = 'Algemeen'; -$a->strings['%s: Updating author-id and owner-id in item and thread table. '] = '%s: author-id en owner-id in item en gesprekstabel aan het updaten.'; -$a->strings['%s: Updating post-type.'] = '%s: bericht-type bewerken'; diff --git a/view/lang/pl/messages.po b/view/lang/pl/messages.po index 28a9b6073..8a2a01a7e 100644 --- a/view/lang/pl/messages.po +++ b/view/lang/pl/messages.po @@ -1,10 +1,11 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: # Adam Jurkiewicz , 2012 # Adam Jurkiewicz , 2012 +# Bartosz Małkowski, 2022 # julia.domagalska , 2013,2015 # julia.domagalska , 2012-2013 # Daria Początek , 2012 @@ -30,6 +31,7 @@ # Lea1995polish , 2012 # fb7a25122d618b2c5d9d1a868652cfb3_e3ca738 <285b7d7c0c39700827374527cc41dc07_136494>, 2013 # Mai Anh Nguyen , 2013 +# Makary , 2022 # Marcin Klessa , 2012 # marcin mikołajczak , 2018-2019 # Mariusz Pisz , 2013 @@ -57,537 +59,79 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-07-17 07:33+0000\n" +"POT-Creation-Date: 2023-09-18 05:30+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Piotr Strębski , 2022\n" -"Language-Team: Polish (http://www.transifex.com/Friendica/friendica/language/pl/)\n" +"Language-Team: Polish (http://app.transifex.com/Friendica/friendica/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:39 mod/redir.php:36 -#: mod/redir.php:177 src/Module/Conversation/Community.php:181 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: 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:43 -msgid "Access denied." -msgstr "Brak dostępu." - -#: mod/cal.php:63 mod/cal.php:80 mod/photos.php:69 mod/photos.php:140 -#: mod/photos.php:798 src/Model/Profile.php:232 src/Module/Feed.php:72 -#: src/Module/HCard.php:52 src/Module/Profile/Common.php:41 -#: src/Module/Profile/Common.php:52 src/Module/Profile/Contacts.php:40 -#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Media.php:38 -#: src/Module/Profile/Status.php:59 src/Module/Register.php:267 -#: src/Module/RemoteFollow.php:58 -msgid "User not found." -msgstr "Użytkownik nie znaleziony." - -#: mod/cal.php:122 mod/display.php:262 src/Module/Profile/Profile.php:94 -#: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:110 -#: src/Module/Update/Profile.php:56 -msgid "Access to this profile has been restricted." -msgstr "Dostęp do tego profilu został ograniczony." - -#: mod/cal.php:243 mod/events.php:374 src/Content/Nav.php:196 -#: src/Content/Nav.php:260 src/Module/BaseProfile.php:84 -#: src/Module/BaseProfile.php:95 view/theme/frio/theme.php:234 -#: view/theme/frio/theme.php:238 -msgid "Events" -msgstr "Wydarzenia" - -#: mod/cal.php:244 mod/events.php:375 -msgid "View" -msgstr "Widok" - -#: mod/cal.php:245 mod/events.php:377 -msgid "Previous" -msgstr "Poprzedni" - -#: mod/cal.php:246 mod/events.php:378 src/Module/Install.php:214 -msgid "Next" -msgstr "Następny" - -#: mod/cal.php:249 mod/events.php:383 src/Model/Event.php:456 -msgid "today" -msgstr "dzisiaj" - -#: mod/cal.php:250 mod/events.php:384 src/Model/Event.php:457 -#: src/Util/Temporal.php:334 -msgid "month" -msgstr "miesiąc" - -#: mod/cal.php:251 mod/events.php:385 src/Model/Event.php:458 -#: src/Util/Temporal.php:335 -msgid "week" -msgstr "tydzień" - -#: mod/cal.php:252 mod/events.php:386 src/Model/Event.php:459 -#: src/Util/Temporal.php:336 -msgid "day" -msgstr "dzień" - -#: mod/cal.php:253 mod/events.php:387 -msgid "list" -msgstr "lista" - -#: mod/cal.php:265 src/Console/User.php:182 src/Model/User.php:661 -#: 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:74 -msgid "User not found" -msgstr "Użytkownik nie znaleziony" - -#: mod/cal.php:274 -msgid "This calendar format is not supported" -msgstr "Ten format kalendarza nie jest obsługiwany" - -#: mod/cal.php:276 -msgid "No exportable data found" -msgstr "Nie znaleziono danych do eksportu" - -#: mod/cal.php:292 -msgid "calendar" -msgstr "kalendarz" - -#: mod/display.php:143 mod/photos.php:802 -#: src/Module/Conversation/Community.php:175 src/Module/Directory.php:49 -#: src/Module/Search/Index.php:65 -msgid "Public access denied." -msgstr "Publiczny dostęp zabroniony." - -#: mod/display.php:213 mod/display.php:287 -msgid "The requested item doesn't exist or has been deleted." -msgstr "Żądany element nie istnieje lub został usunięty." - -#: mod/display.php:367 -msgid "The feed for this item is unavailable." -msgstr "Kanał dla tego elementu jest niedostępny." - -#: mod/editpost.php:38 mod/events.php:217 mod/follow.php:56 mod/follow.php:130 -#: mod/item.php:181 mod/item.php:186 mod/item.php:880 mod/message.php:69 -#: mod/message.php:111 mod/notes.php:44 mod/ostatus_subscribe.php:33 -#: mod/photos.php:160 mod/photos.php:891 mod/repair_ostatus.php:31 -#: mod/settings.php:40 mod/settings.php:50 mod/settings.php:156 -#: mod/suggest.php:34 mod/uimport.php:33 mod/unfollow.php:35 -#: mod/unfollow.php:50 mod/unfollow.php:82 mod/wall_attach.php:67 -#: mod/wall_attach.php:69 mod/wall_upload.php:89 mod/wall_upload.php:91 -#: mod/wallmessage.php:37 mod/wallmessage.php:56 mod/wallmessage.php:90 -#: mod/wallmessage.php:110 src/Module/Attach.php:56 src/Module/BaseApi.php:93 -#: src/Module/BaseNotifications.php:97 src/Module/Contact/Advanced.php:60 -#: src/Module/Delegation.php:119 src/Module/FollowConfirm.php:38 -#: src/Module/FriendSuggest.php:56 src/Module/Group.php:42 -#: src/Module/Group.php:85 src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:75 -#: src/Module/Notifications/Notification.php:106 -#: src/Module/Profile/Common.php:56 src/Module/Profile/Contacts.php:56 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:77 src/Module/Register.php:90 -#: src/Module/Register.php:206 src/Module/Register.php:245 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:49 -#: src/Module/Settings/Account.php:409 src/Module/Settings/Delegation.php:42 -#: src/Module/Settings/Delegation.php:70 src/Module/Settings/Display.php:42 -#: src/Module/Settings/Display.php:120 -#: src/Module/Settings/Profile/Photo/Crop.php:166 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/UserExport.php:58 src/Module/Settings/UserExport.php:92 -#: src/Module/Settings/UserExport.php:196 -#: src/Module/Settings/UserExport.php:216 -#: src/Module/Settings/UserExport.php:281 -msgid "Permission denied." -msgstr "Brak uprawnień." - -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Nie znaleziono elementu" - -#: mod/editpost.php:64 -msgid "Edit post" -msgstr "Edytuj wpis" - -#: mod/editpost.php:91 mod/notes.php:56 src/Content/Text/HTML.php:882 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:73 -msgid "Save" -msgstr "Zapisz" - -#: mod/editpost.php:92 mod/photos.php:1338 src/Content/Conversation.php:338 -#: src/Module/Contact/Poke.php:176 src/Object/Post.php:993 -msgid "Loading..." -msgstr "Wczytywanie..." - -#: mod/editpost.php:93 mod/message.php:198 mod/message.php:355 -#: mod/wallmessage.php:140 src/Content/Conversation.php:339 -msgid "Upload photo" -msgstr "Wyślij zdjęcie" - -#: mod/editpost.php:94 src/Content/Conversation.php:340 -msgid "upload photo" -msgstr "wyślij zdjęcie" - -#: mod/editpost.php:95 src/Content/Conversation.php:341 -msgid "Attach file" -msgstr "Załącz plik" - -#: mod/editpost.php:96 src/Content/Conversation.php:342 -msgid "attach file" -msgstr "załącz plik" - -#: mod/editpost.php:97 mod/message.php:199 mod/message.php:356 -#: mod/wallmessage.php:141 -msgid "Insert web link" -msgstr "Wstaw link" - -#: mod/editpost.php:98 -msgid "web link" -msgstr "odnośnik sieciowy" - -#: mod/editpost.php:99 -msgid "Insert video link" -msgstr "Wstaw link do filmu" - -#: mod/editpost.php:100 -msgid "video link" -msgstr "link do filmu" - -#: mod/editpost.php:101 -msgid "Insert audio link" -msgstr "Wstaw link do audio" - -#: mod/editpost.php:102 -msgid "audio link" -msgstr "link do audio" - -#: mod/editpost.php:103 src/Content/Conversation.php:352 -#: src/Module/Item/Compose.php:173 -msgid "Set your location" -msgstr "Ustaw swoją lokalizację" - -#: mod/editpost.php:104 src/Content/Conversation.php:353 -msgid "set location" -msgstr "wybierz lokalizację" - -#: mod/editpost.php:105 src/Content/Conversation.php:354 -msgid "Clear browser location" -msgstr "Wyczyść lokalizację przeglądarki" - -#: mod/editpost.php:106 src/Content/Conversation.php:355 -msgid "clear location" -msgstr "wyczyść lokalizację" - -#: mod/editpost.php:107 mod/message.php:200 mod/message.php:358 -#: mod/photos.php:1489 mod/wallmessage.php:142 -#: src/Content/Conversation.php:368 src/Content/Conversation.php:713 -#: src/Module/Item/Compose.php:177 src/Object/Post.php:538 -msgid "Please wait" -msgstr "Proszę czekać" - -#: mod/editpost.php:108 src/Content/Conversation.php:369 -msgid "Permission settings" -msgstr "Ustawienia uprawnień" - -#: mod/editpost.php:116 src/Core/ACL.php:326 -msgid "CC: email addresses" -msgstr "DW: adresy e-mail" - -#: mod/editpost.php:117 src/Content/Conversation.php:379 -msgid "Public post" -msgstr "Publiczny wpis" - -#: mod/editpost.php:120 src/Content/Conversation.php:357 -#: src/Module/Item/Compose.php:178 -msgid "Set title" -msgstr "Podaj tytuł" - -#: mod/editpost.php:122 src/Content/Conversation.php:359 -#: src/Module/Item/Compose.php:179 -msgid "Categories (comma-separated list)" -msgstr "Kategorie (lista słów oddzielonych przecinkiem)" - -#: mod/editpost.php:123 src/Core/ACL.php:327 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Przykład: bob@example.com, mary@example.com" - -#: mod/editpost.php:128 mod/events.php:513 mod/photos.php:1337 -#: mod/photos.php:1393 mod/photos.php:1467 src/Content/Conversation.php:383 -#: src/Module/Item/Compose.php:172 src/Object/Post.php:1003 -msgid "Preview" -msgstr "Podgląd" - -#: mod/editpost.php:130 mod/fbrowser.php:118 mod/fbrowser.php:145 -#: mod/follow.php:144 mod/photos.php:1004 mod/photos.php:1105 mod/tagrm.php:35 -#: mod/tagrm.php:127 mod/unfollow.php:97 src/Content/Conversation.php:386 -#: src/Module/Contact/Revoke.php:108 src/Module/RemoteFollow.php:127 -#: src/Module/Security/TwoFactor/SignOut.php:125 -msgid "Cancel" -msgstr "Anuluj" - -#: mod/editpost.php:134 src/Content/Conversation.php:343 -#: src/Module/Item/Compose.php:163 src/Object/Post.php:994 -msgid "Bold" -msgstr "Pogrubienie" - -#: mod/editpost.php:135 src/Content/Conversation.php:344 -#: src/Module/Item/Compose.php:164 src/Object/Post.php:995 -msgid "Italic" -msgstr "Kursywa" - -#: mod/editpost.php:136 src/Content/Conversation.php:345 -#: src/Module/Item/Compose.php:165 src/Object/Post.php:996 -msgid "Underline" -msgstr "Podkreślenie" - -#: mod/editpost.php:137 src/Content/Conversation.php:346 -#: src/Module/Item/Compose.php:166 src/Object/Post.php:997 -msgid "Quote" -msgstr "Cytat" - -#: mod/editpost.php:138 src/Content/Conversation.php:347 -#: src/Module/Item/Compose.php:167 src/Object/Post.php:998 -msgid "Code" -msgstr "Kod" - -#: mod/editpost.php:139 src/Content/Conversation.php:349 -#: src/Module/Item/Compose.php:169 src/Object/Post.php:1000 -msgid "Link" -msgstr "Odnośnik" - -#: mod/editpost.php:140 src/Content/Conversation.php:350 -#: src/Module/Item/Compose.php:170 src/Object/Post.php:1001 -msgid "Link or Media" -msgstr "Odnośnik lub Media" - -#: mod/editpost.php:143 src/Content/Conversation.php:393 -#: src/Content/Widget/VCard.php:113 src/Model/Profile.php:463 -#: src/Module/Admin/Logs/View.php:93 -msgid "Message" -msgstr "Wiadomość" - -#: mod/editpost.php:144 src/Content/Conversation.php:394 -#: src/Module/Settings/TwoFactor/Trusted.php:138 -msgid "Browser" -msgstr "Przeglądarka" - -#: mod/editpost.php:145 mod/events.php:518 mod/photos.php:939 -#: mod/photos.php:1291 src/Content/Conversation.php:370 -msgid "Permissions" -msgstr "Uprawnienia" - -#: mod/editpost.php:147 src/Content/Conversation.php:396 -msgid "Open Compose page" -msgstr "Otwórz stronę Redagowanie" - -#: mod/events.php:124 mod/events.php:126 -msgid "Event can not end before it has started." -msgstr "Wydarzenie nie może się zakończyć przed jego rozpoczęciem." - -#: mod/events.php:132 mod/events.php:134 -msgid "Event title and start time are required." -msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia." - -#: mod/events.php:376 -msgid "Create New Event" -msgstr "Stwórz nowe wydarzenie" - -#: mod/events.php:474 src/Module/Admin/Logs/View.php:97 -msgid "Event details" -msgstr "Szczegóły wydarzenia" - -#: mod/events.php:475 -msgid "Starting date and Title are required." -msgstr "Data rozpoczęcia i tytuł są wymagane." - -#: mod/events.php:476 mod/events.php:481 -msgid "Event Starts:" -msgstr "Rozpoczęcie wydarzenia:" - -#: mod/events.php:476 mod/events.php:506 -#: src/Module/Admin/Blocklist/Server/Add.php:104 -#: src/Module/Admin/Blocklist/Server/Add.php:106 -#: src/Module/Admin/Blocklist/Server/Index.php:68 -#: src/Module/Admin/Blocklist/Server/Index.php:69 -#: src/Module/Admin/Blocklist/Server/Index.php:96 -#: src/Module/Admin/Item/Delete.php:69 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:207 src/Module/Install.php:240 -#: src/Module/Install.php:245 src/Module/Install.php:264 -#: src/Module/Install.php:275 src/Module/Install.php:280 -#: src/Module/Install.php:286 src/Module/Install.php:291 -#: src/Module/Install.php:305 src/Module/Install.php:320 -#: src/Module/Install.php:347 src/Module/Register.php:148 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Index.php:141 -#: src/Module/Settings/TwoFactor/Verify.php:154 -msgid "Required" -msgstr "Wymagany" - -#: mod/events.php:489 mod/events.php:512 -msgid "Finish date/time is not known or not relevant" -msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna" - -#: mod/events.php:491 mod/events.php:496 -msgid "Event Finishes:" -msgstr "Zakończenie wydarzenia:" - -#: mod/events.php:502 src/Module/Profile/Profile.php:172 -#: src/Module/Settings/Profile/Index.php:238 -msgid "Description:" -msgstr "Opis:" - -#: mod/events.php:504 src/Content/Widget/VCard.php:104 src/Model/Event.php:80 -#: src/Model/Event.php:107 src/Model/Event.php:465 src/Model/Event.php:915 -#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:369 -#: src/Module/Directory.php:148 src/Module/Notifications/Introductions.php:185 -#: src/Module/Profile/Profile.php:194 -msgid "Location:" -msgstr "Lokalizacja:" - -#: mod/events.php:506 mod/events.php:508 -msgid "Title:" -msgstr "Tytuł:" - -#: mod/events.php:509 mod/events.php:510 -msgid "Share this event" -msgstr "Udostępnij te wydarzenie" - -#: mod/events.php:515 mod/message.php:201 mod/message.php:357 -#: mod/photos.php:921 mod/photos.php:1025 mod/photos.php:1295 -#: mod/photos.php:1336 mod/photos.php:1392 mod/photos.php:1466 -#: src/Module/Admin/Item/Source.php:65 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Poke.php:177 src/Module/Contact/Profile.php:327 -#: src/Module/Debug/ActivityPubConversion.php:145 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/Delegation.php:148 src/Module/FriendSuggest.php:144 -#: src/Module/Install.php:252 src/Module/Install.php:294 -#: src/Module/Install.php:331 src/Module/Invite.php:178 -#: src/Module/Item/Compose.php:162 src/Module/Profile/Profile.php:247 -#: src/Module/Settings/Profile/Index.php:222 src/Object/Post.php:992 -#: 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 "Potwierdź" - -#: mod/events.php:516 src/Module/Profile/Profile.php:248 -msgid "Basic" -msgstr "Podstawowy" - -#: mod/events.php:517 src/Module/Admin/Site.php:441 src/Module/Contact.php:474 -#: src/Module/Profile/Profile.php:249 -msgid "Advanced" -msgstr "Zaawansowany" - -#: mod/events.php:534 -msgid "Failed to remove event" -msgstr "Nie udało się usunąć wydarzenia" - -#: mod/fbrowser.php:61 src/Content/Nav.php:194 src/Module/BaseProfile.php:64 -#: view/theme/frio/theme.php:232 -msgid "Photos" -msgstr "Zdjęcia" - -#: mod/fbrowser.php:120 mod/fbrowser.php:147 -#: src/Module/Settings/Profile/Photo/Index.php:129 -msgid "Upload" -msgstr "Wyślij" - -#: mod/fbrowser.php:142 -msgid "Files" -msgstr "Pliki" - -#: mod/follow.php:74 mod/unfollow.php:96 src/Module/RemoteFollow.php:126 -msgid "Submit Request" -msgstr "Wyślij zgłoszenie" - -#: mod/follow.php:84 -msgid "You already added this contact." -msgstr "Już dodałeś ten kontakt." - -#: mod/follow.php:100 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "Nie można wykryć typu sieci. Kontakt nie może zostać dodany." - -#: mod/follow.php:108 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Obsługa Diaspory nie jest włączona. Kontakt nie może zostać dodany." - -#: mod/follow.php:113 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany." - -#: mod/follow.php:138 src/Content/Item.php:459 src/Content/Widget.php:80 -#: src/Model/Contact.php:1104 src/Model/Contact.php:1116 -#: view/theme/vier/theme.php:181 -msgid "Connect/Follow" -msgstr "Połącz/Obserwuj" - -#: mod/follow.php:139 src/Module/RemoteFollow.php:125 -msgid "Please answer the following:" -msgstr "Proszę odpowiedzieć na następujące pytania:" - -#: mod/follow.php:140 mod/unfollow.php:94 -msgid "Your Identity Address:" -msgstr "Twój adres tożsamości:" - -#: mod/follow.php:141 mod/unfollow.php:100 -#: src/Module/Admin/Blocklist/Contact.php:116 -#: src/Module/Contact/Profile.php:365 -#: src/Module/Notifications/Introductions.php:127 -#: src/Module/Notifications/Introductions.php:196 -msgid "Profile URL" -msgstr "Adres URL profilu" - -#: mod/follow.php:142 src/Module/Contact/Profile.php:377 -#: src/Module/Notifications/Introductions.php:189 -#: src/Module/Profile/Profile.php:207 -msgid "Tags:" -msgstr "Znaczniki:" - -#: mod/follow.php:153 -#, php-format -msgid "%s knows you" -msgstr "%s zna cię" - -#: mod/follow.php:154 -msgid "Add a personal note:" -msgstr "Dodaj osobistą notkę:" - -#: mod/follow.php:163 mod/unfollow.php:109 src/Module/BaseProfile.php:59 -#: src/Module/Contact.php:444 -msgid "Status Messages and Posts" -msgstr "Stan wiadomości i wpisów" - -#: mod/follow.php:191 -msgid "The contact could not be added." -msgstr "Nie można dodać kontaktu." - -#: mod/item.php:131 mod/item.php:135 +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 msgid "Unable to locate original post." msgstr "Nie można zlokalizować oryginalnej wiadomości." -#: mod/item.php:337 mod/item.php:342 -msgid "Empty post discarded." -msgstr "Pusty wpis został odrzucony." - -#: mod/item.php:692 +#: mod/item.php:138 msgid "Post updated." msgstr "Wpis zaktualizowany." -#: mod/item.php:702 mod/item.php:707 +#: mod/item.php:203 mod/item.php:207 msgid "Item wasn't stored." msgstr "Element nie został zapisany. " -#: mod/item.php:718 +#: mod/item.php:217 msgid "Item couldn't be fetched." msgstr "Nie można pobrać elementu." -#: mod/item.php:858 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "Pusty wpis został odrzucony." + +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 -#: src/Module/Debug/ItemBody.php:57 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Element nie znaleziony." +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:99 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:38 +#: src/Module/FriendSuggest.php:57 src/Module/Invite.php:42 +#: src/Module/Invite.php:131 src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Delegation.php:41 src/Module/Settings/Delegation.php:71 +#: src/Module/Settings/Display.php:73 src/Module/Settings/Display.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:111 +#: src/Module/Settings/RemoveMe.php:117 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Import.php:84 +#: src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "Brak uprawnień." + #: mod/lostpass.php:40 msgid "No valid account found." msgstr "Nie znaleziono ważnego konta." @@ -654,7 +198,7 @@ msgid "" "your email for further instructions." msgstr "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji." -#: mod/lostpass.php:130 src/Module/Security/Login.php:147 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " msgstr "Pseudonim lub e-mail: " @@ -662,7 +206,7 @@ msgstr "Pseudonim lub e-mail: " msgid "Reset" msgstr "Zresetuj" -#: mod/lostpass.php:146 src/Module/Security/Login.php:159 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 msgid "Password Reset" msgstr "Zresetuj hasło" @@ -722,23 +266,11 @@ msgstr "\n\t\t\tDane logowania są następujące:\n\n\t\t\tLokalizacja witryny:\ msgid "Your password has been changed at %s" msgstr "Twoje hasło zostało zmienione na %s" -#: mod/match.php:62 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "Brak pasujących słów kluczowych. Dodaj słowa kluczowe do swojego profilu." - -#: mod/match.php:93 src/Module/BaseSearch.php:119 -msgid "No matches" -msgstr "Brak wyników" - -#: mod/match.php:98 -msgid "Profile Match" -msgstr "Dopasowanie profilu" - -#: mod/message.php:46 mod/message.php:126 src/Content/Nav.php:288 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 msgid "New Message" msgstr "Nowa wiadomość" -#: mod/message.php:83 mod/wallmessage.php:70 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 msgid "No recipient selected." msgstr "Nie wybrano odbiorcy." @@ -746,62 +278,102 @@ msgstr "Nie wybrano odbiorcy." msgid "Unable to locate contact information." msgstr "Nie można znaleźć informacji kontaktowych." -#: mod/message.php:90 mod/wallmessage.php:76 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 msgid "Message could not be sent." msgstr "Nie udało się wysłać wiadomości." -#: mod/message.php:93 mod/wallmessage.php:79 +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 msgid "Message collection failure." msgstr "Błąd zbierania komunikatów." -#: mod/message.php:120 src/Module/Notifications/Introductions.php:133 -#: src/Module/Notifications/Introductions.php:168 -#: src/Module/Notifications/Notification.php:84 +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 msgid "Discard" msgstr "Odrzuć" -#: mod/message.php:133 src/Content/Nav.php:285 view/theme/frio/theme.php:239 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" msgstr "Wiadomości" -#: mod/message.php:146 +#: mod/message.php:148 msgid "Conversation not found." msgstr "Nie znaleziono rozmowy." -#: mod/message.php:151 +#: mod/message.php:153 msgid "Message was not deleted." msgstr "Wiadomość nie została usunięta." -#: mod/message.php:166 +#: mod/message.php:168 msgid "Conversation was not removed." msgstr "Rozmowa nie została usunięta." -#: mod/message.php:180 mod/message.php:286 mod/wallmessage.php:124 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 msgid "Please enter a link URL:" msgstr "Proszę wpisać adres URL:" -#: mod/message.php:189 mod/wallmessage.php:129 +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 msgid "Send Private Message" msgstr "Wyślij prywatną wiadomość" -#: mod/message.php:190 mod/message.php:347 mod/wallmessage.php:131 +#: mod/message.php:191 mod/message.php:346 msgid "To:" msgstr "Do:" -#: mod/message.php:191 mod/message.php:348 mod/wallmessage.php:132 +#: mod/message.php:192 mod/message.php:347 msgid "Subject:" msgstr "Temat:" -#: mod/message.php:195 mod/message.php:351 mod/wallmessage.php:138 -#: src/Module/Invite.php:171 +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 msgid "Your message:" msgstr "Twoja wiadomość:" -#: mod/message.php:222 +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "Wyślij zdjęcie" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "Wstaw link" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:578 +msgid "Please wait" +msgstr "Proszę czekać" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:145 +#: src/Module/Install.php:234 src/Module/Install.php:274 +#: src/Module/Install.php:309 src/Module/Invite.php:178 +#: src/Module/Item/Compose.php:189 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Object/Post.php:1095 +#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171 +#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Potwierdź" + +#: mod/message.php:223 msgid "No messages." msgstr "Brak wiadomości." -#: mod/message.php:278 +#: mod/message.php:279 msgid "Message not available." msgstr "Wiadomość nie jest dostępna." @@ -809,11 +381,11 @@ msgstr "Wiadomość nie jest dostępna." msgid "Delete message" msgstr "Usuń wiadomość" -#: mod/message.php:325 mod/message.php:457 +#: mod/message.php:325 mod/message.php:456 msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:m A" -#: mod/message.php:340 mod/message.php:454 +#: mod/message.php:340 mod/message.php:453 msgid "Delete conversation" msgstr "Usuń rozmowę" @@ -823,26 +395,26 @@ msgid "" "respond from the sender's profile page." msgstr "Brak bezpiecznej komunikacji. Możesz odpowiedzieć na stronie profilu nadawcy." -#: mod/message.php:346 +#: mod/message.php:345 msgid "Send Reply" msgstr "Odpowiedz" -#: mod/message.php:428 +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "Nieznany nadawca - %s" -#: mod/message.php:430 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "Ty i %s" -#: mod/message.php:432 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "%s i ty" -#: mod/message.php:460 +#: mod/message.php:459 #, php-format msgid "%d message" msgid_plural "%d messages" @@ -851,817 +423,443 @@ msgstr[1] "%d wiadomości" msgstr[2] "%d wiadomości" msgstr[3] "%d wiadomości" -#: mod/notes.php:51 src/Module/BaseProfile.php:106 +#: mod/notes.php:52 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "Notatki" -#: mod/notes.php:55 +#: mod/notes.php:56 msgid "Personal notes are visible only by yourself." msgstr "Notatki osobiste są widziane tylko przez Ciebie." -#: mod/ostatus_subscribe.php:38 -msgid "Subscribing to contacts" -msgstr "Subskrybowanie kontaktów" +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 +msgid "Save" +msgstr "Zapisz" -#: mod/ostatus_subscribe.php:48 -msgid "No contact provided." -msgstr "Brak kontaktu." +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "Użytkownik nie znaleziony." -#: mod/ostatus_subscribe.php:54 -msgid "Couldn't fetch information for contact." -msgstr "Nie można pobrać informacji o kontakcie." - -#: mod/ostatus_subscribe.php:65 -msgid "Couldn't fetch friends for contact." -msgstr "Nie można pobrać znajomych do kontaktu." - -#: mod/ostatus_subscribe.php:71 mod/ostatus_subscribe.php:82 -msgid "Couldn't fetch following contacts." -msgstr "Nie udało się pobrać następujących kontaktów." - -#: mod/ostatus_subscribe.php:77 -msgid "Couldn't fetch remote profile." -msgstr "Nie można pobrać profilu zdalnego." - -#: mod/ostatus_subscribe.php:87 -msgid "Unsupported network" -msgstr "Sieć nieobsługiwana" - -#: mod/ostatus_subscribe.php:103 mod/repair_ostatus.php:51 -msgid "Done" -msgstr "Gotowe" - -#: mod/ostatus_subscribe.php:117 -msgid "success" -msgstr "powodzenie" - -#: mod/ostatus_subscribe.php:119 -msgid "failed" -msgstr "nie powiodło się" - -#: mod/ostatus_subscribe.php:122 -msgid "ignored" -msgstr "ignorowany(-a)" - -#: mod/ostatus_subscribe.php:127 mod/repair_ostatus.php:57 -msgid "Keep this window open until done." -msgstr "Pozostaw to okno otwarte, dopóki nie będzie gotowe." - -#: mod/photos.php:108 src/Module/BaseProfile.php:67 +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 msgid "Photo Albums" msgstr "Albumy zdjęć" -#: mod/photos.php:109 mod/photos.php:1584 +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 msgid "Recent Photos" msgstr "Ostatnio dodane zdjęcia" -#: mod/photos.php:111 mod/photos.php:1073 mod/photos.php:1586 +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 msgid "Upload New Photos" msgstr "Wyślij nowe zdjęcie" -#: mod/photos.php:129 src/Module/BaseSettings.php:35 +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 msgid "everybody" msgstr "wszyscy" -#: mod/photos.php:167 +#: mod/photos.php:159 msgid "Contact information unavailable" msgstr "Informacje o kontakcie są niedostępne" -#: mod/photos.php:196 +#: mod/photos.php:188 msgid "Album not found." msgstr "Nie znaleziono albumu." -#: mod/photos.php:250 +#: mod/photos.php:244 msgid "Album successfully deleted" msgstr "Album został pomyślnie usunięty" -#: mod/photos.php:252 +#: mod/photos.php:246 msgid "Album was empty." msgstr "Album był pusty." -#: mod/photos.php:284 +#: mod/photos.php:277 msgid "Failed to delete the photo." msgstr "Błąd usunięcia zdjęcia." -#: mod/photos.php:553 +#: mod/photos.php:545 msgid "a photo" msgstr "zdjęcie" -#: mod/photos.php:553 +#: mod/photos.php:545 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$szostał oznaczony znacznikiem %2$s przez %3$s" -#: mod/photos.php:636 mod/photos.php:639 mod/photos.php:666 -#: mod/wall_upload.php:201 src/Module/Settings/Profile/Photo/Index.php:60 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Obraz przekracza limit rozmiaru wynoszący %s" +#: mod/photos.php:582 src/Module/Conversation/Community.php:159 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Odmowa dostępu publicznego." -#: mod/photos.php:642 -msgid "Image upload didn't complete, please try again" -msgstr "Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie" - -#: mod/photos.php:645 -msgid "Image file is missing" -msgstr "Brak pliku obrazu" - -#: mod/photos.php:650 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem" - -#: mod/photos.php:674 -msgid "Image file is empty." -msgstr "Plik obrazka jest pusty." - -#: mod/photos.php:689 mod/wall_upload.php:163 -#: src/Module/Settings/Profile/Photo/Index.php:69 -msgid "Unable to process image." -msgstr "Przetwarzanie obrazu nie powiodło się." - -#: mod/photos.php:715 mod/wall_upload.php:226 -#: src/Module/Settings/Profile/Photo/Index.php:96 -msgid "Image upload failed." -msgstr "Przesyłanie obrazu nie powiodło się." - -#: mod/photos.php:807 +#: mod/photos.php:587 msgid "No photos selected" msgstr "Nie zaznaczono zdjęć" -#: mod/photos.php:876 -msgid "Access to this item is restricted." -msgstr "Dostęp do tego obiektu jest ograniczony." +#: mod/photos.php:721 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "" -#: mod/photos.php:931 +#: mod/photos.php:728 msgid "Upload Photos" msgstr "Prześlij zdjęcia" -#: mod/photos.php:935 mod/photos.php:1021 +#: mod/photos.php:732 mod/photos.php:820 msgid "New album name: " msgstr "Nazwa nowego albumu: " -#: mod/photos.php:936 +#: mod/photos.php:733 msgid "or select existing album:" msgstr "lub wybierz istniejący album:" -#: mod/photos.php:937 +#: mod/photos.php:734 msgid "Do not show a status post for this upload" msgstr "Nie pokazuj stanu wpisów dla tego wysłania" -#: mod/photos.php:1002 +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "Uprawnienia" + +#: mod/photos.php:801 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?" -#: mod/photos.php:1003 mod/photos.php:1026 +#: mod/photos.php:802 mod/photos.php:825 msgid "Delete Album" msgstr "Usuń album" -#: mod/photos.php:1030 +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Anuluj" + +#: mod/photos.php:829 msgid "Edit Album" msgstr "Edytuj album" -#: mod/photos.php:1031 +#: mod/photos.php:830 msgid "Drop Album" msgstr "Upuść Album" -#: mod/photos.php:1035 +#: mod/photos.php:834 msgid "Show Newest First" msgstr "Pokaż najpierw najnowsze" -#: mod/photos.php:1037 +#: mod/photos.php:836 msgid "Show Oldest First" msgstr "Pokaż najpierw najstarsze" -#: mod/photos.php:1058 mod/photos.php:1569 +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 msgid "View Photo" msgstr "Zobacz zdjęcie" -#: mod/photos.php:1091 +#: mod/photos.php:889 msgid "Permission denied. Access to this item may be restricted." msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony." -#: mod/photos.php:1093 +#: mod/photos.php:891 msgid "Photo not available" msgstr "Zdjęcie niedostępne" -#: mod/photos.php:1103 +#: mod/photos.php:901 msgid "Do you really want to delete this photo?" msgstr "Czy na pewno chcesz usunąć to zdjęcie ?" -#: mod/photos.php:1104 mod/photos.php:1296 +#: mod/photos.php:902 mod/photos.php:1102 msgid "Delete Photo" msgstr "Usuń zdjęcie" -#: mod/photos.php:1196 +#: mod/photos.php:1000 msgid "View photo" msgstr "Zobacz zdjęcie" -#: mod/photos.php:1198 +#: mod/photos.php:1002 msgid "Edit photo" msgstr "Edytuj zdjęcie" -#: mod/photos.php:1199 +#: mod/photos.php:1003 msgid "Delete photo" msgstr "Usuń zdjęcie" -#: mod/photos.php:1200 +#: mod/photos.php:1004 msgid "Use as profile photo" msgstr "Ustaw jako zdjęcie profilowe" -#: mod/photos.php:1207 +#: mod/photos.php:1011 msgid "Private Photo" msgstr "Prywatne zdjęcie" -#: mod/photos.php:1213 +#: mod/photos.php:1017 msgid "View Full Size" msgstr "Zobacz w pełnym rozmiarze" -#: mod/photos.php:1264 +#: mod/photos.php:1070 msgid "Tags: " msgstr "Znaczniki: " -#: mod/photos.php:1267 +#: mod/photos.php:1073 msgid "[Select tags to remove]" msgstr "[Wybierz znaczniki do usunięcia]" -#: mod/photos.php:1282 +#: mod/photos.php:1088 msgid "New album name" msgstr "Nazwa nowego albumu" -#: mod/photos.php:1283 +#: mod/photos.php:1089 msgid "Caption" msgstr "Zawartość" -#: mod/photos.php:1284 +#: mod/photos.php:1090 msgid "Add a Tag" msgstr "Dodaj znacznik" -#: mod/photos.php:1284 +#: mod/photos.php:1090 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1285 +#: mod/photos.php:1091 msgid "Do not rotate" msgstr "Nie obracaj" -#: mod/photos.php:1286 +#: mod/photos.php:1092 msgid "Rotate CW (right)" msgstr "Obróć zgodnie z kierunkiem wskazówek zegara (w prawo)" -#: mod/photos.php:1287 +#: mod/photos.php:1093 msgid "Rotate CCW (left)" msgstr "Obróć w przeciwnym kierunku do ruchu wskazówek zegara (w lewo)" -#: mod/photos.php:1333 mod/photos.php:1389 mod/photos.php:1463 -#: src/Module/Contact.php:544 src/Module/Item/Compose.php:160 -#: src/Object/Post.php:989 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1092 msgid "This is you" msgstr "To jesteś Ty" -#: mod/photos.php:1335 mod/photos.php:1391 mod/photos.php:1465 -#: src/Object/Post.php:532 src/Object/Post.php:991 +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:572 +#: src/Object/Post.php:1094 msgid "Comment" msgstr "Komentarz" -#: mod/photos.php:1424 src/Content/Conversation.php:629 -#: src/Object/Post.php:256 +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1108 +msgid "Preview" +msgstr "Podgląd" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1096 +msgid "Loading..." +msgstr "Wczytywanie..." + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:260 msgid "Select" msgstr "Wybierz" -#: mod/photos.php:1425 mod/settings.php:350 src/Content/Conversation.php:630 -#: src/Module/Admin/Users/Active.php:139 -#: src/Module/Admin/Users/Blocked.php:140 src/Module/Admin/Users/Index.php:153 +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 msgid "Delete" msgstr "Usuń" -#: mod/photos.php:1486 src/Object/Post.php:379 +#: mod/photos.php:1298 src/Object/Post.php:408 msgid "Like" msgstr "Lubię" -#: mod/photos.php:1487 src/Object/Post.php:379 +#: mod/photos.php:1299 src/Object/Post.php:408 msgid "I like this (toggle)" msgstr "Lubię to (zmień)" -#: mod/photos.php:1488 src/Object/Post.php:380 +#: mod/photos.php:1300 src/Object/Post.php:409 msgid "Dislike" msgstr "Nie lubię" -#: mod/photos.php:1490 src/Object/Post.php:380 +#: mod/photos.php:1302 src/Object/Post.php:409 msgid "I don't like this (toggle)" msgstr "Nie lubię tego (zmień)" -#: mod/photos.php:1512 +#: mod/photos.php:1324 msgid "Map" msgstr "Mapa" -#: mod/photos.php:1575 -msgid "View Album" -msgstr "Zobacz album" - -#: mod/redir.php:51 mod/redir.php:104 -msgid "Bad Request." -msgstr "Błędne zapytanie." - -#: mod/redir.php:57 mod/redir.php:131 src/Module/Contact/Advanced.php:70 -#: src/Module/Contact/Advanced.php:109 src/Module/Contact/Contacts.php:55 -#: src/Module/Contact/Conversations.php:78 -#: src/Module/Contact/Conversations.php:83 -#: src/Module/Contact/Conversations.php:88 src/Module/Contact/Media.php:43 -#: src/Module/Contact/Posts.php:72 src/Module/Contact/Posts.php:77 -#: src/Module/Contact/Posts.php:82 src/Module/Contact/Profile.php:141 -#: src/Module/Contact/Profile.php:146 src/Module/Contact/Profile.php:151 -#: src/Module/FriendSuggest.php:70 src/Module/FriendSuggest.php:108 -#: src/Module/Group.php:99 src/Module/Group.php:108 -msgid "Contact not found." -msgstr "Nie znaleziono kontaktu." - -#: mod/removeme.php:65 src/Navigation/Notifications/Repository/Notify.php:483 -msgid "[Friendica System Notify]" -msgstr "[Powiadomienie Systemu Friendica]" - -#: mod/removeme.php:65 -msgid "User deleted their account" -msgstr "Użytkownik usunął swoje konto" - -#: mod/removeme.php:66 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych." - -#: mod/removeme.php:67 -#, php-format -msgid "The user id is %d" -msgstr "Identyfikatorem użytkownika jest %d" - -#: mod/removeme.php:101 mod/removeme.php:104 -msgid "Remove My Account" -msgstr "Usuń moje konto" - -#: mod/removeme.php:102 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć." - -#: mod/removeme.php:103 -msgid "Please enter your password for verification:" -msgstr "Wprowadź hasło w celu weryfikacji:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Ponowne subskrybowanie kontaktów OStatus" - -#: mod/repair_ostatus.php:46 src/Module/Debug/ActivityPubConversion.php:134 -#: src/Module/Debug/Babel.php:293 src/Module/Security/TwoFactor/Verify.php:98 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Błąd" -msgstr[1] "Błędów" -msgstr[2] "Błędy" -msgstr[3] "Błędów" - -#: mod/settings.php:122 -msgid "Failed to connect with email account using the settings provided." -msgstr "Połączenie z kontem email używając wybranych ustawień nie powiodło się." - -#: mod/settings.php:175 -msgid "Connected Apps" -msgstr "Powiązane aplikacje" - -#: mod/settings.php:176 src/Module/Admin/Blocklist/Contact.php:106 -#: 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 "Nazwa" - -#: mod/settings.php:177 src/Content/Nav.php:214 -msgid "Home Page" -msgstr "Strona startowa" - -#: mod/settings.php:178 src/Module/Admin/Queue.php:78 -msgid "Created" -msgstr "Utwórz" - -#: mod/settings.php:179 -msgid "Remove authorization" -msgstr "Odwołaj upoważnienie" - -#: mod/settings.php:205 mod/settings.php:237 mod/settings.php:268 -#: mod/settings.php:352 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81 -#: src/Module/Admin/Site.php:436 src/Module/Admin/Themes/Index.php:113 -#: src/Module/Admin/Tos.php:83 src/Module/Settings/Account.php:559 -#: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:193 -msgid "Save Settings" -msgstr "Zapisz ustawienia" - -#: mod/settings.php:213 -msgid "Addon Settings" -msgstr "Ustawienia dodatków" - -#: mod/settings.php:214 -msgid "No Addon settings configured" -msgstr "Brak skonfigurowanych ustawień dodatków" - -#: mod/settings.php:235 -msgid "Additional Features" -msgstr "Dodatkowe funkcje" - -#: mod/settings.php:273 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "enabled" -msgstr "włączone" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "disabled" -msgstr "wyłączone" - -#: mod/settings.php:273 mod/settings.php:274 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Wbudowane wsparcie dla połączenia z %s jest %s" - -#: mod/settings.php:274 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: mod/settings.php:300 -msgid "Email access is disabled on this site." -msgstr "Dostęp do e-maila jest wyłączony na tej stronie." - -#: mod/settings.php:305 mod/settings.php:350 -msgid "None" -msgstr "Brak" - -#: mod/settings.php:311 src/Module/BaseSettings.php:78 -msgid "Social Networks" -msgstr "Portale społecznościowe" - -#: mod/settings.php:316 -msgid "General Social Media Settings" -msgstr "Ogólne ustawienia mediów społecznościowych" - -#: mod/settings.php:319 -msgid "Followed content scope" -msgstr "Obserwowany zakres treści" - -#: mod/settings.php:321 -msgid "" -"By default, conversations in which your follows participated but didn't " -"start will be shown in your timeline. You can turn this behavior off, or " -"expand it to the conversations in which your follows liked a post." -msgstr "Domyślnie na Twojej osi czasu będą pokazywane wątki, w których uczestniczyli Twoi obserwowani, ale które nie zostały przez nich rozpoczęte. Możesz wyłączyć tę funkcję lub rozszerzyć ją na konwersacje, w których Twoi obserwujący polubili dany wpis." - -#: mod/settings.php:323 -msgid "Only conversations my follows started" -msgstr "Tylko rozmowy, które rozpoczęli moi obserwowani" - -#: mod/settings.php:324 -msgid "Conversations my follows started or commented on (default)" -msgstr "Rozmowy, które rozpoczęli moi obserwowani, lub które komentowali (domyślnie)" - -#: mod/settings.php:325 -msgid "Any conversation my follows interacted with, including likes" -msgstr "Wszelkie rozmowy, z którymi wchodziłem w interakcję, w tym polubienia" - -#: mod/settings.php:328 -msgid "Enable Content Warning" -msgstr "Włącz ostrzeżenia o treści" - -#: mod/settings.php:328 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect any other content filtering you eventually set up." -msgstr "Użytkownicy w sieciach takich jak Mastodon lub Pleroma mogą ustawić pole ostrzeżenia o treści, które domyślnie zwija ich posty. Umożliwia to automatyczne zwijanie zamiast ustawiania ostrzeżenia o treści jako tytułu wpisu. Nie wpływa na żadne inne skonfigurowane filtrowanie treści." - -#: mod/settings.php:329 -msgid "Enable intelligent shortening" -msgstr "Włącz inteligentne skracanie" - -#: mod/settings.php:329 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If disabled, every shortened post will always point to the original " -"friendica post." -msgstr "Zwykle system próbuje znaleźć najlepszy odnośnik do dodania do skróconych postów. Jeśli wyłączone, każdy skrócony wpis będzie zawsze wskazywał na oryginalny wpis friendica." - -#: mod/settings.php:330 -msgid "Enable simple text shortening" -msgstr "Włącz proste skracanie tekstu" - -#: mod/settings.php:330 -msgid "" -"Normally the system shortens posts at the next line feed. If this option is " -"enabled then the system will shorten the text at the maximum character " -"limit." -msgstr "Zwykle system skraca wpisy przy następnym wysunięciu wiersza. Jeśli ta opcja jest włączona, system skróci tekst do maksymalnego limitu znaków." - -#: mod/settings.php:331 -msgid "Attach the link title" -msgstr "Dołącz tytuł linku" - -#: mod/settings.php:331 -msgid "" -"When activated, the title of the attached link will be added as a title on " -"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" -" share feed content." -msgstr "Po aktywacji tytuł dołączonego linku zostanie dodany jako tytuł postów do Diaspory. Jest to szczególnie pomocne w przypadku kontaktów „zdalnych”, które udostępniają treść kanału." - -#: mod/settings.php:332 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "Twoje stare konto ActivityPub/GNU Social" - -#: mod/settings.php:332 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "Jeśli wprowadzisz tutaj swoją starą nazwę konta z systemu opartego na ActivityPub lub nazwę konta GNU Social/Statusnet (w formacie użytkownik@domena.tld), Twoje kontakty zostaną dodane automatycznie. Po zakończeniu pole zostanie opróżnione." - -#: mod/settings.php:335 -msgid "Repair OStatus subscriptions" -msgstr "Napraw subskrypcje OStatus" - -#: mod/settings.php:339 -msgid "Email/Mailbox Setup" -msgstr "Ustawienia emaila/skrzynki mailowej" - -#: mod/settings.php:340 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową." - -#: mod/settings.php:341 -msgid "Last successful email check:" -msgstr "Ostatni sprawdzony e-mail:" - -#: mod/settings.php:343 -msgid "IMAP server name:" -msgstr "Nazwa serwera IMAP:" - -#: mod/settings.php:344 -msgid "IMAP port:" -msgstr "Port IMAP:" - -#: mod/settings.php:345 -msgid "Security:" -msgstr "Bezpieczeństwo:" - -#: mod/settings.php:346 -msgid "Email login name:" -msgstr "Nazwa logowania e-mail:" - -#: mod/settings.php:347 -msgid "Email password:" -msgstr "Hasło e-mail:" - -#: mod/settings.php:348 -msgid "Reply-to address:" -msgstr "Adres zwrotny:" - -#: mod/settings.php:349 -msgid "Send public posts to all email contacts:" -msgstr "Wyślij publiczny wpis do wszystkich kontaktów e-mail:" - -#: mod/settings.php:350 -msgid "Action after import:" -msgstr "Akcja po zaimportowaniu:" - -#: mod/settings.php:350 src/Content/Nav.php:282 -msgid "Mark as seen" -msgstr "Oznacz jako przeczytane" - -#: mod/settings.php:350 -msgid "Move to folder" -msgstr "Przenieś do katalogu" - -#: mod/settings.php:351 -msgid "Move to folder:" -msgstr "Przenieś do katalogu:" - -#: mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Brak dostępnych sugestii. Jeśli jest to nowa witryna, spróbuj ponownie za 24 godziny." - -#: mod/suggest.php:55 src/Content/Widget.php:83 view/theme/vier/theme.php:184 -msgid "Friend Suggestions" -msgstr "Osoby, które możesz znać" - -#: mod/tagger.php:78 src/Content/Item.php:354 src/Model/Item.php:2727 -msgid "photo" -msgstr "zdjęcie" - -#: mod/tagger.php:78 src/Content/Item.php:348 src/Content/Item.php:358 -msgid "status" -msgstr "stan" - -#: mod/tagger.php:111 src/Content/Item.php:368 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s" - -#: mod/tagrm.php:113 -msgid "Remove Item Tag" -msgstr "Usuń pozycję znacznika" - -#: mod/tagrm.php:115 -msgid "Select a tag to remove: " -msgstr "Wybierz znacznik do usunięcia: " - -#: mod/tagrm.php:126 src/Module/Settings/Delegation.php:179 -#: src/Module/Settings/TwoFactor/Trusted.php:142 -msgid "Remove" -msgstr "Usuń" - -#: mod/uimport.php:46 -msgid "User imports on closed servers can only be done by an administrator." -msgstr "Import użytkowników na zamkniętych serwerach może być wykonywany tylko przez administratora." - -#: mod/uimport.php:55 src/Module/Register.php:99 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro." - -#: mod/uimport.php:62 src/Module/Register.php:173 -msgid "Import" -msgstr "Import" - -#: mod/uimport.php:64 -msgid "Move account" -msgstr "Przenieś konto" - -#: mod/uimport.php:65 -msgid "You can import an account from another Friendica server." -msgstr "Możesz zaimportować konto z innego serwera Friendica." - -#: mod/uimport.php:66 -msgid "" -"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." -msgstr "Musisz wyeksportować konto ze starego serwera i przesłać je tutaj. Odtworzymy twoje stare konto tutaj ze wszystkimi twoimi kontaktami. Postaramy się również poinformować twoich znajomych, że się tutaj przeniosłeś." - -#: mod/uimport.php:67 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "Ta funkcja jest eksperymentalna. Nie możemy importować kontaktów z sieci OStatus (GNU Social/Statusnet) lub z Diaspory" - -#: mod/uimport.php:68 -msgid "Account file" -msgstr "Pliki konta" - -#: mod/uimport.php:68 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Aby eksportować konto, wejdź w \"Ustawienia->Eksport danych osobistych\" i wybierz \"Eksportuj konto\"" - -#: mod/unfollow.php:65 mod/unfollow.php:134 -msgid "You aren't following this contact." -msgstr "Nie obserwujesz tego kontaktu." - -#: mod/unfollow.php:71 -msgid "Unfollowing is currently not supported by your network." -msgstr "Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć." - -#: mod/unfollow.php:92 -msgid "Disconnect/Unfollow" -msgstr "Rozłącz/Nie obserwuj" - -#: mod/unfollow.php:143 -msgid "Contact was successfully unfollowed" -msgstr "Kontakt pomyślnie przestał być obserwowany" - -#: mod/unfollow.php:146 -msgid "Unable to unfollow this contact, please contact your administrator" -msgstr "Nie można przestać obserwować tego kontaktu, skontaktuj się z administratorem" - -#: mod/wall_attach.php:40 mod/wall_attach.php:46 mod/wall_attach.php:75 -#: mod/wall_upload.php:54 mod/wall_upload.php:63 mod/wall_upload.php:97 -#: mod/wall_upload.php:148 mod/wall_upload.php:150 -msgid "Invalid request." -msgstr "Nieprawidłowe żądanie." - -#: mod/wall_attach.php:93 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Przepraszam, Twój przesyłany plik jest większy niż pozwala konfiguracja PHP" - -#: mod/wall_attach.php:93 -msgid "Or - did you try to upload an empty file?" -msgstr "Lub - czy próbowałeś przesłać pusty plik?" - -#: mod/wall_attach.php:104 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Plik przekracza limit rozmiaru wynoszący %s" - -#: mod/wall_attach.php:119 -msgid "File upload failed." -msgstr "Przesyłanie pliku nie powiodło się." - -#: mod/wall_upload.php:218 src/Model/Photo.php:1087 -msgid "Wall Photos" -msgstr "Tablica zdjęć" - -#: mod/wallmessage.php:62 mod/wallmessage.php:116 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Dzienny limit wiadomości na tablicy %s został przekroczony. Wiadomość została odrzucona." - -#: mod/wallmessage.php:73 -msgid "Unable to check your home location." -msgstr "Nie można sprawdzić twojej lokalizacji." - -#: mod/wallmessage.php:97 mod/wallmessage.php:104 -msgid "No recipient." -msgstr "Brak odbiorcy." - -#: mod/wallmessage.php:130 -#, 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 "Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców." - #: src/App.php:473 msgid "No system theme config value set." msgstr "Nie ustawiono wartości konfiguracyjnej zestawu tematycznego." -#: src/App.php:594 +#: src/App.php:580 msgid "Apologies but the website is unavailable at the moment." msgstr "Przepraszamy, ale strona jest w tej chwili niedostępna." -#: src/App/Page.php:276 +#: src/App/Page.php:248 msgid "Delete this item?" msgstr "Usunąć ten element?" -#: src/App/Page.php:277 +#: src/App/Page.php:249 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "Zablokować tego autora? Nie będą mogli Cię obserwować ani widzieć Twoich publicznych wpisów, a Ty nie będziesz widzieć ich wpisów i powiadomień." -#: src/App/Page.php:347 +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "" + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "" + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "" + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "" + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "" + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "" + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "" + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "" + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "" + +#: src/App/Page.php:351 msgid "toggle mobile" msgstr "przełącz na mobilny" -#: src/App/Router.php:282 +#: src/App/Router.php:309 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Metoda niedozwolona dla tego modułu. Dozwolona metoda(y): %s" -#: src/App/Router.php:284 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 msgid "Page not found." msgstr "Strona nie znaleziona." -#: src/App/Router.php:312 +#: src/App/Router.php:323 msgid "You must be logged in to use addons. " msgstr "Musisz być zalogowany(-a), aby korzystać z dodatków. " -#: src/BaseModule.php:392 +#: src/BaseModule.php:401 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 "Znacznik zabezpieczeń formularza nie był poprawny. Prawdopodobnie stało się tak, ponieważ formularz został otwarty zbyt długo (> 3 godziny) przed jego przesłaniem." -#: src/BaseModule.php:419 +#: src/BaseModule.php:428 msgid "All contacts" msgstr "Wszystkie kontakty" -#: src/BaseModule.php:424 src/Content/Widget.php:235 src/Core/ACL.php:194 -#: src/Module/Contact.php:367 src/Module/PermissionTooltip.php:122 -#: src/Module/PermissionTooltip.php:144 +#: src/BaseModule.php:433 src/Content/Conversation/Factory/Timeline.php:62 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 msgid "Followers" msgstr "Zwolenników" -#: src/BaseModule.php:429 src/Content/Widget.php:236 -#: src/Module/Contact.php:368 +#: src/BaseModule.php:438 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 msgid "Following" msgstr "Kolejny" -#: src/BaseModule.php:434 src/Content/Widget.php:237 -#: src/Module/Contact.php:369 +#: src/BaseModule.php:443 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 msgid "Mutual friends" msgstr "Wspólni znajomi" -#: src/BaseModule.php:442 +#: src/BaseModule.php:451 msgid "Common" msgstr "Wspólne" @@ -1687,73 +885,73 @@ msgid "The contact entries have been archived" msgstr "Wpisy kontaktów zostały zarchiwizowane" #: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Nie można znaleźć żadnego kontaktu dla tego adresu URL (%s)" #: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:66 +#: src/Module/Moderation/Blocklist/Contact.php:82 msgid "The contact has been blocked from the node" msgstr "Kontakt został zablokowany w węźle" -#: src/Console/MergeContacts.php:74 +#: src/Console/MergeContacts.php:75 #, php-format msgid "%d %s, %d duplicates." msgstr "%d %s, %d duplikaty." -#: src/Console/MergeContacts.php:77 +#: src/Console/MergeContacts.php:78 #, php-format msgid "uri-id is empty for contact %s." msgstr "uri-id jest pusty dla kontaktu%s." -#: src/Console/MergeContacts.php:90 +#: src/Console/MergeContacts.php:91 #, php-format -msgid "No valid first countact found for uri-id %d." -msgstr "Nie znaleziono prawidłowego pierwszego kontaktu dla identyfikatora uri-id %d." +msgid "No valid first contact found for uri-id %d." +msgstr "" -#: src/Console/MergeContacts.php:101 +#: src/Console/MergeContacts.php:102 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "Odnaleziono nieprawidłowy duplikat dla identyfikatora uri %d w %d (url: %s != %s)." -#: src/Console/MergeContacts.php:105 +#: src/Console/MergeContacts.php:106 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "Odnaleziono nieprawidłowy duplikat dla identyfikatora uri %d w %d (nurl: %s != %s)." -#: src/Console/MergeContacts.php:141 +#: src/Console/MergeContacts.php:142 #, php-format msgid "Deletion of id %d failed" msgstr "Nie udało się usunąć identyfikatora %d" -#: src/Console/MergeContacts.php:143 +#: src/Console/MergeContacts.php:144 #, php-format msgid "Deletion of id %d was successful" msgstr "Usunięcie identyfikatora %d powiodło się" -#: src/Console/MergeContacts.php:149 +#: src/Console/MergeContacts.php:150 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "Aktualizowanie \"%s\" w \"%s\" z %d do %d" -#: src/Console/MergeContacts.php:151 +#: src/Console/MergeContacts.php:152 msgid " - found" msgstr "- znaleziono" -#: src/Console/MergeContacts.php:158 +#: src/Console/MergeContacts.php:159 msgid " - failed" msgstr " - błąd" -#: src/Console/MergeContacts.php:160 +#: src/Console/MergeContacts.php:161 msgid " - success" msgstr " - powodzenie" -#: src/Console/MergeContacts.php:164 +#: src/Console/MergeContacts.php:165 msgid " - deleted" msgstr " - usunięto" -#: src/Console/MergeContacts.php:167 +#: src/Console/MergeContacts.php:168 msgid " - done" msgstr " - zrobiono" @@ -1811,15 +1009,26 @@ msgstr "Wszystkie oczekujące aktualizacje wpisów są gotowe." msgid "Enter user nickname: " msgstr "Wpisz nazwę użytkownika:" +#: src/Console/User.php:182 src/Model/User.php:711 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "Użytkownik nie znaleziony" + #: src/Console/User.php:202 msgid "Enter new password: " msgstr "Wprowadź nowe hasło: " -#: src/Console/User.php:210 src/Module/Settings/Account.php:74 +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 msgid "Password update failed. Please try again." msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie." -#: src/Console/User.php:213 src/Module/Settings/Account.php:77 +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 msgid "Password changed." msgstr "Hasło zostało zmienione." @@ -1908,10 +1117,14 @@ msgstr "OStatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 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 +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 msgid "Email" msgstr "E-mail" @@ -1967,246 +1180,528 @@ msgstr "ActivityPub" msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:178 +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "" + +#: src/Content/ContactSelector.php:180 #, php-format msgid "%s (via %s)" msgstr "%s (przez %s)" -#: src/Content/Conversation.php:207 -#, php-format -msgid "%s likes this." -msgstr "%s lubi to." - -#: src/Content/Conversation.php:210 -#, php-format -msgid "%s doesn't like this." -msgstr "%s nie lubi tego." - -#: src/Content/Conversation.php:213 -#, php-format -msgid "%s attends." -msgstr "%s uczestniczy." - -#: src/Content/Conversation.php:216 -#, php-format -msgid "%s doesn't attend." -msgstr "%s nie uczestniczy." - -#: src/Content/Conversation.php:219 -#, php-format -msgid "%s attends maybe." -msgstr "%s może bierze udział." - -#: src/Content/Conversation.php:222 src/Content/Conversation.php:260 -#: src/Content/Conversation.php:873 -#, php-format -msgid "%s reshared this." -msgstr "%sudostępnił to. " - -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:226 msgid "and" msgstr "i" -#: src/Content/Conversation.php:231 +#: src/Content/Conversation.php:229 #, php-format msgid "and %d other people" msgstr "i %d inni ludzie" +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: src/Content/Conversation.php:239 #, php-format -msgid "%2$d people like this" -msgstr "%2$d ludzi lubi to" +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Content/Conversation.php:240 +#: src/Content/Conversation.php:241 #, php-format -msgid "%s like this." -msgstr "%s lubię to." +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: src/Content/Conversation.php:243 #, php-format -msgid "%2$d people don't like this" -msgstr "%2$d ludzi nie lubi tego" +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Content/Conversation.php:244 +#: src/Content/Conversation.php:245 #, php-format -msgid "%s don't like this." -msgstr "%s nie lubię tego." +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Content/Conversation.php:247 +#: src/Content/Conversation.php:274 #, php-format -msgid "%2$d people attend" -msgstr "%2$dosoby uczestniczą" +msgid " likes this" +msgid_plural " like this" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Content/Conversation.php:248 +#: src/Content/Conversation.php:277 #, php-format -msgid "%s attend." -msgstr "%s uczestniczy." +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Content/Conversation.php:251 +#: src/Content/Conversation.php:280 #, php-format -msgid "%2$d people don't attend" -msgstr "%2$dludzie nie uczestniczą" +msgid " attends" +msgid_plural " attend" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Content/Conversation.php:252 +#: src/Content/Conversation.php:283 #, php-format -msgid "%s don't attend." -msgstr "%s nie uczestniczy." +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Content/Conversation.php:255 +#: src/Content/Conversation.php:286 #, php-format -msgid "%2$d people attend maybe" -msgstr "Możliwe, że %2$d osoby będą uczestniczyć" +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Content/Conversation.php:256 +#: src/Content/Conversation.php:289 #, php-format -msgid "%s attend maybe." -msgstr "%sbyć może uczestniczyć." +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Content/Conversation.php:259 -#, php-format -msgid "%2$d people reshared this" -msgstr "%2$d użytkowników udostępniło to dalej" - -#: src/Content/Conversation.php:307 +#: src/Content/Conversation.php:336 msgid "Visible to everybody" msgstr "Widoczne dla wszystkich" -#: src/Content/Conversation.php:308 src/Module/Item/Compose.php:171 -#: src/Object/Post.php:1002 +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1107 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Wprowadź adres URL obrazu/wideo/audio/strony:" -#: src/Content/Conversation.php:309 +#: src/Content/Conversation.php:338 msgid "Tag term:" msgstr "Termin tagu:" -#: src/Content/Conversation.php:310 src/Module/Filer/SaveTag.php:72 +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 msgid "Save to Folder:" msgstr "Zapisz w katalogu:" -#: src/Content/Conversation.php:311 +#: src/Content/Conversation.php:340 msgid "Where are you right now?" msgstr "Gdzie teraz jesteś?" -#: src/Content/Conversation.php:312 +#: src/Content/Conversation.php:341 msgid "Delete item(s)?" msgstr "Usunąć pozycję (pozycje)?" -#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:143 +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 msgid "Created at" msgstr "Utworzono" -#: src/Content/Conversation.php:334 +#: src/Content/Conversation.php:363 msgid "New Post" msgstr "Nowy wpis" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:366 msgid "Share" msgstr "Podziel się" -#: src/Content/Conversation.php:348 src/Module/Item/Compose.php:168 -#: src/Object/Post.php:999 +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "wyślij zdjęcie" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Załącz plik" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "załącz plik" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1097 +msgid "Bold" +msgstr "Pogrubienie" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1098 +msgid "Italic" +msgstr "Kursywa" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1099 +msgid "Underline" +msgstr "Podkreślenie" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1101 +msgid "Quote" +msgstr "Cytat" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1102 +msgid "Add emojis" +msgstr "" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1100 +msgid "Content Warning" +msgstr "" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1103 +msgid "Code" +msgstr "Kod" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1104 msgid "Image" msgstr "Obraz" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1105 +msgid "Link" +msgstr "Odnośnik" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1106 +msgid "Link or Media" +msgstr "Odnośnik lub Media" + +#: src/Content/Conversation.php:382 msgid "Video" msgstr "Filmy" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:184 +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "Ustaw swoją lokalizację" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "wybierz lokalizację" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "Wyczyść lokalizację przeglądarki" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "wyczyść lokalizację" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Podaj tytuł" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Kategorie (lista słów oddzielonych przecinkiem)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 msgid "Scheduled at" msgstr "Zaplanowane na" -#: src/Content/Conversation.php:657 src/Object/Post.php:244 -msgid "Pinned item" -msgstr "Przypięty element" +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Ustawienia uprawnień" -#: src/Content/Conversation.php:673 src/Object/Post.php:486 -#: src/Object/Post.php:487 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Pokaż profil %s @ %s" +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Wpis publiczny" -#: src/Content/Conversation.php:686 src/Object/Post.php:474 -msgid "Categories:" -msgstr "Kategorie:" +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:120 +#: src/Model/Profile.php:467 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "Wiadomość" -#: src/Content/Conversation.php:687 src/Object/Post.php:475 -msgid "Filed under:" -msgstr "Umieszczono w:" +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Przeglądarka" -#: src/Content/Conversation.php:695 src/Object/Post.php:500 -#, php-format -msgid "%s from %s" -msgstr "%s od %s" +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "Otwórz stronę Redagowanie" -#: src/Content/Conversation.php:711 -msgid "View in context" -msgstr "Zobacz w kontekście" - -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:595 msgid "remove" msgstr "usuń" -#: src/Content/Conversation.php:780 +#: src/Content/Conversation.php:599 msgid "Delete Selected Items" msgstr "Usuń zaznaczone elementy" -#: src/Content/Conversation.php:845 src/Content/Conversation.php:848 -#: src/Content/Conversation.php:851 src/Content/Conversation.php:854 +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 #, php-format msgid "You had been addressed (%s)." msgstr "Zostałeś zaadresowany (%s)." -#: src/Content/Conversation.php:857 +#: src/Content/Conversation.php:769 #, php-format msgid "You are following %s." msgstr "Zacząłeś obserwować %s." -#: src/Content/Conversation.php:860 -msgid "Tagged" -msgstr "Oznaczone" +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "" -#: src/Content/Conversation.php:875 +#: src/Content/Conversation.php:776 +msgid "You subscribed to one or more tags in this post." +msgstr "Zasubskrybowałeś jeden lub więcej znaczników w tym wpisie." + +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "%sudostępnił to. " + +#: src/Content/Conversation.php:798 msgid "Reshared" msgstr "Udostępnione" -#: src/Content/Conversation.php:875 +#: src/Content/Conversation.php:798 #, php-format msgid "Reshared by %s <%s>" msgstr "Udostępnione przez %s <%s>" -#: src/Content/Conversation.php:878 +#: src/Content/Conversation.php:801 #, php-format msgid "%s is participating in this thread." msgstr "%s bierze udział w tym wątku." -#: src/Content/Conversation.php:881 -msgid "Stored" -msgstr "Przechowywane" +#: src/Content/Conversation.php:804 +msgid "Stored for general reasons" +msgstr "Przechowywane z powodów ogólnych" -#: src/Content/Conversation.php:884 -msgid "Global" -msgstr "Globalne" +#: src/Content/Conversation.php:807 +msgid "Global post" +msgstr "Wpis globalny" -#: src/Content/Conversation.php:887 -msgid "Relayed" -msgstr "Przekazany" +#: src/Content/Conversation.php:810 +msgid "Sent via an relay server" +msgstr "Wysłane przez serwer przekazujący" -#: src/Content/Conversation.php:887 +#: src/Content/Conversation.php:810 #, php-format -msgid "Relayed by %s <%s>" -msgstr "Przekazany przez %s <%s>" +msgid "Sent via the relay server %s <%s>" +msgstr "" -#: src/Content/Conversation.php:890 +#: src/Content/Conversation.php:813 msgid "Fetched" msgstr "Pobrane" -#: src/Content/Conversation.php:890 +#: src/Content/Conversation.php:813 #, php-format msgid "Fetched because of %s <%s>" msgstr "Pobrano ponieważ %s <%s>" +#: src/Content/Conversation.php:816 +msgid "Stored because of a child post to complete this thread." +msgstr "Zapisano z powodu wpisu podrzędnego, który miał zakończyć ten wątek." + +#: src/Content/Conversation.php:819 +msgid "Local delivery" +msgstr "Dostarczone lokalnie" + +#: src/Content/Conversation.php:822 +msgid "Stored because of your activity (like, comment, star, ...)" +msgstr "Przechowywane z powodu Twojej aktywności (polubienie, komentarz, gwiazdka, ...)" + +#: src/Content/Conversation.php:825 +msgid "Distributed" +msgstr "Rozpowszechniane" + +#: src/Content/Conversation.php:828 +msgid "Pushed to us" +msgstr "" + +#: src/Content/Conversation.php:1492 src/Object/Post.php:247 +msgid "Pinned item" +msgstr "Przypięty element" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:521 +#: src/Object/Post.php:522 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Pokaż profil %s @ %s" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:509 +msgid "Categories:" +msgstr "Kategorie:" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:510 +msgid "Filed under:" +msgstr "Umieszczono w:" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:535 +#, php-format +msgid "%s from %s" +msgstr "%s od %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "Zobacz w kontekście" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "For you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "What's Hot" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "Posts with a lot of interactions" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:61 +#, php-format +msgid "Posts in %s" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:62 +msgid "Posts from your followers that you don't follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Sharers of sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Posts with images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Posts with audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Posts with videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Local Community" +msgstr "Lokalna społeczność" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Posts from local users on this server" +msgstr "Wpisy od lokalnych użytkowników na tym serwerze" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Global Community" +msgstr "Globalna społeczność" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Posts from users of the whole federated network" +msgstr "Wpisy od użytkowników całej sieci stowarzyszonej" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Latest Activity" +msgstr "Ostatnia Aktywność" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Sort by latest activity" +msgstr "Sortuj wg. ostatniej aktywności" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Latest Posts" +msgstr "Najnowsze wpisy" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Sort by post received date" +msgstr "Sortuj wg. daty otrzymania wpisu" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Latest Creation" +msgstr "Najnowsze utworzenia" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Sort by post creation date" +msgstr "Sortuj wg. daty utworzenia wpisu" + +#: src/Content/Conversation/Factory/Timeline.php:106 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "Osobiste" + +#: src/Content/Conversation/Factory/Timeline.php:106 +msgid "Posts that mention or involve you" +msgstr "Wpisy, które wspominają lub angażują Ciebie" + +#: src/Content/Conversation/Factory/Timeline.php:107 src/Object/Post.php:380 +msgid "Starred" +msgstr "Ulubione" + +#: src/Content/Conversation/Factory/Timeline.php:107 +msgid "Favourite Posts" +msgstr "Ulubione wpisy" + #: src/Content/Feature.php:96 msgid "General Features" msgstr "Funkcje ogólne" @@ -2236,13 +1731,13 @@ msgid "Post Composition Features" msgstr "Ustawienia funkcji postów" #: src/Content/Feature.php:105 -msgid "Auto-mention Forums" -msgstr "Automatyczne wymienianie forów" +msgid "Auto-mention Groups" +msgstr "" #: src/Content/Feature.php:105 msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Dodaj/usuń wzmiankę, gdy strona forum zostanie wybrana/cofnięta w oknie ACL." +"Add/remove mention when a group page is selected/deselected in ACL window." +msgstr "" #: src/Content/Feature.php:106 msgid "Explicit Mentions" @@ -2282,12 +1777,12 @@ msgid "Advanced Profile Settings" msgstr "Zaawansowane ustawienia profilu" #: src/Content/Feature.php:119 -msgid "List Forums" -msgstr "Lista forów" +msgid "List Groups" +msgstr "" #: src/Content/Feature.php:119 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Wyświetla publiczne fora społeczności na stronie profilu zaawansowanego" +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "" #: src/Content/Feature.php:120 msgid "Tag Cloud" @@ -2305,351 +1800,433 @@ msgstr "Wyświetl datę członkostwa" msgid "Display membership date in profile" msgstr "Wyświetla datę członkostwa w profilu" -#: src/Content/ForumManager.php:151 src/Content/Nav.php:241 -#: src/Content/Text/HTML.php:903 src/Content/Widget.php:524 -msgid "Forums" -msgstr "Fora" +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "Zaawansowane ustawienia kalendarza" -#: src/Content/ForumManager.php:153 -msgid "External link to forum" -msgstr "Zewnętrzny link do forum" +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "Zezwól na anonimowy dostęp do swojego kalendarza" -#: src/Content/ForumManager.php:156 src/Content/Widget.php:503 +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "Pozwala anonimowym odwiedzającym przeglądać Twój kalendarz i wydarzenia publiczne. Kontaktowe wydarzenia urodzinowe są prywatne dla Ciebie." + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1273 +msgid "Groups" +msgstr "" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 msgid "show less" msgstr "pokaż mniej" -#: src/Content/ForumManager.php:157 src/Content/Widget.php:405 -#: src/Content/Widget.php:504 +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 msgid "show more" msgstr "pokaż więcej" -#: src/Content/Item.php:306 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s zaczepił Cię %2$s" +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "" -#: src/Content/Item.php:345 src/Model/Item.php:2725 +#: src/Content/Item.php:331 src/Model/Item.php:3003 msgid "event" msgstr "wydarzenie" -#: src/Content/Item.php:438 view/theme/frio/theme.php:260 +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "stan" + +#: src/Content/Item.php:340 src/Model/Item.php:3005 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "zdjęcie" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 msgid "Follow Thread" msgstr "Śledź wątek" -#: src/Content/Item.php:439 src/Model/Contact.php:1109 +#: src/Content/Item.php:429 src/Model/Contact.php:1227 msgid "View Status" msgstr "Zobacz status" -#: src/Content/Item.php:440 src/Content/Item.php:462 -#: src/Model/Contact.php:1043 src/Model/Contact.php:1101 -#: src/Model/Contact.php:1110 src/Module/Directory.php:158 -#: src/Module/Settings/Profile/Index.php:225 +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1219 +#: src/Model/Contact.php:1228 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Zobacz profil" -#: src/Content/Item.php:441 src/Model/Contact.php:1111 +#: src/Content/Item.php:431 src/Model/Contact.php:1229 msgid "View Photos" msgstr "Zobacz zdjęcia" -#: src/Content/Item.php:442 src/Model/Contact.php:1102 -#: src/Model/Contact.php:1112 +#: src/Content/Item.php:432 src/Model/Contact.php:1220 +#: src/Model/Contact.php:1230 msgid "Network Posts" msgstr "Wiadomości sieciowe" -#: src/Content/Item.php:443 src/Model/Contact.php:1103 -#: src/Model/Contact.php:1113 +#: src/Content/Item.php:433 src/Model/Contact.php:1221 +#: src/Model/Contact.php:1231 msgid "View Contact" msgstr "Pokaż kontakt" -#: src/Content/Item.php:444 src/Model/Contact.php:1114 +#: src/Content/Item.php:434 src/Model/Contact.php:1232 msgid "Send PM" msgstr "Wyślij prywatną wiadomość" -#: src/Content/Item.php:445 src/Module/Admin/Blocklist/Contact.php:100 -#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 -#: src/Module/Contact.php:398 src/Module/Contact/Profile.php:348 -#: src/Module/Contact/Profile.php:449 +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 msgid "Block" msgstr "Zablokuj" -#: src/Content/Item.php:446 src/Module/Contact.php:399 -#: src/Module/Contact/Profile.php:349 src/Module/Contact/Profile.php:457 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 -#: src/Module/Notifications/Notification.php:88 +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 msgid "Ignore" msgstr "Ignoruj" -#: src/Content/Item.php:450 src/Object/Post.php:455 +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "" + +#: src/Content/Item.php:438 src/Object/Post.php:288 +#, php-format +msgid "Ignore %s server" +msgstr "" + +#: src/Content/Item.php:442 src/Object/Post.php:490 msgid "Languages" msgstr "Języki" -#: src/Content/Item.php:454 src/Model/Contact.php:1115 -msgid "Poke" -msgstr "Zaczepka" +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1222 src/Model/Contact.php:1233 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Połącz/Obserwuj" -#: src/Content/Nav.php:90 +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "" + +#: src/Content/Nav.php:121 msgid "Nothing new here" msgstr "Brak nowych zdarzeń" -#: src/Content/Nav.php:94 src/Module/Special/HTTPException.php:50 +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 msgid "Go back" msgstr "Wróć" -#: src/Content/Nav.php:95 +#: src/Content/Nav.php:126 msgid "Clear notifications" msgstr "Wyczyść powiadomienia" -#: src/Content/Nav.php:96 src/Content/Text/HTML.php:890 -msgid "@name, !forum, #tags, content" -msgstr "@imię, !forum, #znaczniki, treść" +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" +msgstr "" -#: src/Content/Nav.php:185 src/Module/Security/Login.php:144 +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 msgid "Logout" msgstr "Wyloguj" -#: src/Content/Nav.php:185 +#: src/Content/Nav.php:222 msgid "End this session" msgstr "Zakończ sesję" -#: src/Content/Nav.php:187 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:145 +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 msgid "Login" msgstr "Zaloguj się" -#: src/Content/Nav.php:187 +#: src/Content/Nav.php:224 msgid "Sign in" msgstr "Zaloguj się" -#: src/Content/Nav.php:192 src/Module/BaseProfile.php:56 -#: src/Module/Contact.php:433 src/Module/Contact/Profile.php:380 -#: src/Module/Settings/TwoFactor/Index.php:120 view/theme/frio/theme.php:230 -msgid "Status" -msgstr "Stan" +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "" -#: src/Content/Nav.php:192 src/Content/Nav.php:275 -#: view/theme/frio/theme.php:230 -msgid "Your posts and conversations" -msgstr "Twoje wpisy i rozmowy" +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "" -#: src/Content/Nav.php:193 src/Module/BaseProfile.php:48 -#: src/Module/BaseSettings.php:55 src/Module/Contact.php:457 -#: src/Module/Contact/Profile.php:382 src/Module/Profile/Profile.php:241 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:231 +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 msgid "Profile" msgstr "Profil" -#: src/Content/Nav.php:193 view/theme/frio/theme.php:231 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 msgid "Your profile page" msgstr "Twoja strona profilu" -#: src/Content/Nav.php:194 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Zdjęcia" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 msgid "Your photos" msgstr "Twoje zdjęcia" -#: src/Content/Nav.php:195 src/Module/BaseProfile.php:72 -#: src/Module/BaseProfile.php:75 src/Module/Contact.php:449 -#: view/theme/frio/theme.php:233 +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 msgid "Media" msgstr "Media" -#: src/Content/Nav.php:195 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 msgid "Your postings with media" msgstr "Twoje wpisy z mediami" -#: src/Content/Nav.php:196 view/theme/frio/theme.php:234 -msgid "Your events" -msgstr "Twoje wydarzenia" +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "Kalendarz" -#: src/Content/Nav.php:197 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "Twój kalendarz" + +#: src/Content/Nav.php:234 msgid "Personal notes" msgstr "Osobiste notatki" -#: src/Content/Nav.php:197 +#: src/Content/Nav.php:234 msgid "Your personal notes" msgstr "Twoje osobiste notatki" -#: src/Content/Nav.php:214 src/Content/Nav.php:275 +#: src/Content/Nav.php:251 src/Content/Nav.php:308 msgid "Home" msgstr "Strona domowa" -#: src/Content/Nav.php:218 src/Module/Register.php:168 -#: src/Module/Security/Login.php:105 +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "Strona startowa" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 +#: src/Module/Security/Login.php:124 msgid "Register" msgstr "Zarejestruj" -#: src/Content/Nav.php:218 +#: src/Content/Nav.php:255 msgid "Create an account" msgstr "Załóż konto" -#: src/Content/Nav.php:224 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 -#: src/Module/Settings/TwoFactor/Index.php:119 -#: src/Module/Settings/TwoFactor/Recovery.php:105 -#: src/Module/Settings/TwoFactor/Verify.php:145 view/theme/vier/theme.php:226 +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 msgid "Help" msgstr "Pomoc" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:261 msgid "Help and documentation" msgstr "Pomoc i dokumentacja" -#: src/Content/Nav.php:228 +#: src/Content/Nav.php:265 msgid "Apps" msgstr "Aplikacje" -#: src/Content/Nav.php:228 +#: src/Content/Nav.php:265 msgid "Addon applications, utilities, games" msgstr "Wtyczki, aplikacje, narzędzia, gry" -#: src/Content/Nav.php:232 src/Content/Text/HTML.php:888 -#: src/Module/Admin/Logs/View.php:87 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 msgid "Search" msgstr "Szukaj" -#: src/Content/Nav.php:232 +#: src/Content/Nav.php:269 msgid "Search site content" msgstr "Przeszukaj zawartość strony" -#: src/Content/Nav.php:235 src/Content/Text/HTML.php:897 +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 msgid "Full Text" msgstr "Pełny tekst" -#: src/Content/Nav.php:236 src/Content/Text/HTML.php:898 +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 #: src/Content/Widget/TagCloud.php:68 msgid "Tags" msgstr "Znaczniki" -#: src/Content/Nav.php:237 src/Content/Nav.php:296 -#: src/Content/Text/HTML.php:899 src/Module/BaseProfile.php:125 -#: src/Module/BaseProfile.php:128 src/Module/Contact.php:370 -#: src/Module/Contact.php:464 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 msgid "Contacts" msgstr "Kontakty" -#: src/Content/Nav.php:256 +#: src/Content/Nav.php:289 msgid "Community" msgstr "Społeczność" -#: src/Content/Nav.php:256 +#: src/Content/Nav.php:289 msgid "Conversations on this and other servers" msgstr "Rozmowy na tym i innych serwerach" -#: src/Content/Nav.php:260 src/Module/BaseProfile.php:87 -#: src/Module/BaseProfile.php:98 view/theme/frio/theme.php:238 -msgid "Events and Calendar" -msgstr "Wydarzenia i kalendarz" - -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:296 msgid "Directory" msgstr "Katalog" -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:296 msgid "People directory" msgstr "Katalog osób" -#: src/Content/Nav.php:265 src/Module/BaseAdmin.php:88 +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 msgid "Information" msgstr "Informacje" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:298 msgid "Information about this friendica instance" msgstr "Informacje o tej instancji friendica" -#: src/Content/Nav.php:268 src/Module/Admin/Tos.php:76 -#: src/Module/BaseAdmin.php:99 src/Module/Register.php:176 -#: src/Module/Tos.php:87 +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 msgid "Terms of Service" msgstr "Warunki usługi" -#: src/Content/Nav.php:268 +#: src/Content/Nav.php:301 msgid "Terms of Service of this Friendica instance" msgstr "Warunki świadczenia usług tej instancji Friendica" -#: src/Content/Nav.php:273 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Network" msgstr "Sieć" -#: src/Content/Nav.php:273 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Conversations from your friends" msgstr "Rozmowy Twoich przyjaciół" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "Twoje wpisy i rozmowy" + +#: src/Content/Nav.php:312 msgid "Introductions" msgstr "Zapoznanie" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:312 msgid "Friend Requests" msgstr "Prośba o przyjęcie do grona znajomych" -#: src/Content/Nav.php:280 src/Module/BaseNotifications.php:148 -#: src/Module/Notifications/Introductions.php:73 +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 msgid "Notifications" msgstr "Powiadomienia" -#: src/Content/Nav.php:281 +#: src/Content/Nav.php:314 msgid "See all notifications" msgstr "Zobacz wszystkie powiadomienia" -#: src/Content/Nav.php:282 +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Oznacz jako przeczytane" + +#: src/Content/Nav.php:315 msgid "Mark all system notifications as seen" msgstr "Oznacz wszystkie powiadomienia systemowe jako przeczytane" -#: src/Content/Nav.php:285 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Private mail" msgstr "Prywatne maile" -#: src/Content/Nav.php:286 +#: src/Content/Nav.php:319 msgid "Inbox" msgstr "Odebrane" -#: src/Content/Nav.php:287 +#: src/Content/Nav.php:320 msgid "Outbox" msgstr "Wysłane" -#: src/Content/Nav.php:291 +#: src/Content/Nav.php:324 msgid "Accounts" msgstr "Konta" -#: src/Content/Nav.php:291 +#: src/Content/Nav.php:324 msgid "Manage other pages" msgstr "Zarządzaj innymi stronami" -#: src/Content/Nav.php:294 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:122 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:240 +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:175 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 msgid "Settings" msgstr "Ustawienia" -#: src/Content/Nav.php:294 view/theme/frio/theme.php:240 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 msgid "Account settings" msgstr "Ustawienia konta" -#: src/Content/Nav.php:296 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 msgid "Manage/edit friends and contacts" msgstr "Zarządzaj listą przyjaciół i kontaktami" -#: src/Content/Nav.php:301 src/Module/BaseAdmin.php:129 +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 msgid "Admin" msgstr "Administrator" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:334 msgid "Site setup and configuration" msgstr "Konfiguracja i ustawienia strony" -#: src/Content/Nav.php:304 +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "Moderacja" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "Moderacja treści i użytkowników" + +#: src/Content/Nav.php:338 msgid "Navigation" msgstr "Nawigacja" -#: src/Content/Nav.php:304 +#: src/Content/Nav.php:338 msgid "Site map" msgstr "Mapa strony" -#: src/Content/OEmbed.php:317 +#: src/Content/OEmbed.php:316 msgid "Embedding disabled" msgstr "Osadzanie wyłączone" -#: src/Content/OEmbed.php:441 +#: src/Content/OEmbed.php:440 msgid "Embedded content" msgstr "Osadzona zawartość" @@ -2669,51 +2246,51 @@ msgstr "następny" msgid "last" msgstr "ostatni" -#: src/Content/Text/BBCode.php:998 src/Content/Text/BBCode.php:1833 -#: src/Content/Text/BBCode.php:1834 +#: src/Content/Text/BBCode.php:696 src/Content/Text/BBCode.php:1636 +#: src/Content/Text/BBCode.php:1637 msgid "Image/photo" msgstr "Obrazek/zdjęcie" -#: src/Content/Text/BBCode.php:1188 +#: src/Content/Text/BBCode.php:914 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1213 src/Model/Item.php:3300 -#: src/Model/Item.php:3306 src/Model/Item.php:3307 +#: src/Content/Text/BBCode.php:939 src/Model/Item.php:3745 +#: src/Model/Item.php:3751 src/Model/Item.php:3752 msgid "Link to source" msgstr "Odnośnik do źródła" -#: src/Content/Text/BBCode.php:1751 src/Content/Text/HTML.php:940 +#: src/Content/Text/BBCode.php:1543 src/Content/Text/HTML.php:904 msgid "Click to open/close" msgstr "Kliknij aby otworzyć/zamknąć" -#: src/Content/Text/BBCode.php:1782 +#: src/Content/Text/BBCode.php:1576 msgid "$1 wrote:" msgstr "$1 napisał:" -#: src/Content/Text/BBCode.php:1838 src/Content/Text/BBCode.php:1839 +#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642 msgid "Encrypted content" msgstr "Szyfrowana treść" -#: src/Content/Text/BBCode.php:2057 +#: src/Content/Text/BBCode.php:1901 msgid "Invalid source protocol" msgstr "Nieprawidłowy protokół źródłowy" -#: src/Content/Text/BBCode.php:2072 +#: src/Content/Text/BBCode.php:1920 msgid "Invalid link protocol" msgstr "Niepoprawny link protokołu" -#: src/Content/Text/HTML.php:805 +#: src/Content/Text/HTML.php:782 msgid "Loading more entries..." msgstr "Wczytywanie kolejnych wpisów..." -#: src/Content/Text/HTML.php:806 +#: src/Content/Text/HTML.php:783 msgid "The end" msgstr "Koniec" -#: src/Content/Text/HTML.php:882 src/Content/Widget/VCard.php:109 -#: src/Model/Profile.php:457 +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:116 +#: src/Model/Profile.php:461 src/Module/Contact/Profile.php:471 msgid "Follow" msgstr "Śledź" @@ -2742,83 +2319,92 @@ msgstr[1] "%d zaproszeń dostępnych" msgstr[2] "%d zaproszenia dostępne" msgstr[3] "%d zaproszenia dostępne" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:179 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 msgid "Find People" msgstr "Znajdź ludzi" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:180 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 msgid "Enter name or interest" msgstr "Wpisz nazwę lub zainteresowanie" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:182 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Przykład: Jan Kowalski, Wędkarstwo" -#: src/Content/Widget.php:82 src/Module/Contact.php:391 -#: src/Module/Directory.php:97 view/theme/vier/theme.php:183 +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 msgid "Find" msgstr "Znajdź" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:185 +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "Osoby, które możesz znać" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 msgid "Similar Interests" msgstr "Podobne zainteresowania" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:186 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 msgid "Random Profile" msgstr "Domyślny profil" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:187 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 msgid "Invite Friends" msgstr "Zaproś znajomych" -#: src/Content/Widget.php:87 src/Module/Directory.php:89 -#: view/theme/vier/theme.php:188 +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 msgid "Global Directory" msgstr "Katalog globalny" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:190 +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 msgid "Local Directory" msgstr "Katalog lokalny" -#: src/Content/Widget.php:211 src/Model/Group.php:583 -#: src/Module/Contact.php:354 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "Grupy" +#: src/Content/Widget.php:215 src/Model/Circle.php:600 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "" -#: src/Content/Widget.php:213 +#: src/Content/Widget.php:217 msgid "Everyone" msgstr "Wszyscy" -#: src/Content/Widget.php:242 +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "" + +#: src/Content/Widget.php:247 msgid "Relationships" msgstr "Relacje" -#: src/Content/Widget.php:244 src/Module/Contact.php:306 -#: src/Module/Group.php:293 +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 msgid "All Contacts" msgstr "Wszystkie kontakty" -#: src/Content/Widget.php:283 +#: src/Content/Widget.php:288 msgid "Protocols" msgstr "Protokoły" -#: src/Content/Widget.php:285 +#: src/Content/Widget.php:290 msgid "All Protocols" msgstr "Wszystkie protokoły" -#: src/Content/Widget.php:313 +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "Zapisane katalogi" -#: src/Content/Widget.php:315 src/Content/Widget.php:346 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "Wszystko" -#: src/Content/Widget.php:344 +#: src/Content/Widget.php:349 msgid "Categories" msgstr "Kategorie" -#: src/Content/Widget.php:401 +#: src/Content/Widget.php:406 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2827,39 +2413,47 @@ msgstr[1] "%d wspólne kontakty" msgstr[2] "%d wspólnych kontaktów" msgstr[3] "%d wspólnych kontaktów" -#: src/Content/Widget.php:497 +#: src/Content/Widget.php:506 msgid "Archives" msgstr "Archiwa" -#: src/Content/Widget.php:521 +#: src/Content/Widget.php:514 +msgid "On this date" +msgstr "" + +#: src/Content/Widget.php:534 msgid "Persons" msgstr "Osoby" -#: src/Content/Widget.php:522 +#: src/Content/Widget.php:535 msgid "Organisations" msgstr "Organizacje" -#: src/Content/Widget.php:523 src/Model/Contact.php:1537 +#: src/Content/Widget.php:536 src/Model/Contact.php:1698 msgid "News" msgstr "Aktualności" -#: src/Content/Widget.php:527 src/Module/Settings/Account.php:455 +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 msgid "Account Types" msgstr "Rodzaje kont" -#: src/Content/Widget.php:528 src/Module/Admin/BaseUsers.php:51 +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "Wszyscy" -#: src/Content/Widget/CalendarExport.php:54 +#: src/Content/Widget.php:573 src/Module/Settings/Display.php:266 +msgid "Channels" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:56 msgid "Export" msgstr "Eksport" -#: src/Content/Widget/CalendarExport.php:55 +#: src/Content/Widget/CalendarExport.php:57 msgid "Export calendar as ical" msgstr "Wyeksportuj kalendarz jako ical" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:58 msgid "Export calendar as csv" msgstr "Eksportuj kalendarz jako csv" @@ -2867,7 +2461,7 @@ msgstr "Eksportuj kalendarz jako csv" msgid "No contacts" msgstr "Brak kontaktów" -#: src/Content/Widget/ContactBlock.php:108 +#: src/Content/Widget/ContactBlock.php:110 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -2876,7 +2470,7 @@ msgstr[1] "%d kontaktów" msgstr[2] "%d kontakty" msgstr[3] "%d Kontakty" -#: src/Content/Widget/ContactBlock.php:125 +#: src/Content/Widget/ContactBlock.php:127 msgid "View Contacts" msgstr "Widok kontaktów" @@ -2888,7 +2482,7 @@ msgstr "Usuń wpis" msgid "Saved Searches" msgstr "Zapisywanie wyszukiwania" -#: src/Content/Widget/TrendingTags.php:51 +#: src/Content/Widget/TrendingTags.php:52 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" @@ -2897,58 +2491,68 @@ msgstr[1] "Popularne znaczniki (ostatnie %d godziny)" msgstr[2] "Popularne znaczniki (ostatnie %d godzin)" msgstr[3] "Popularne znaczniki (ostatnie %d godzin)" -#: src/Content/Widget/TrendingTags.php:52 +#: src/Content/Widget/TrendingTags.php:53 msgid "More Trending Tags" msgstr "Więcej popularnych znaczników" -#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:376 -#: src/Module/Contact/Profile.php:371 src/Module/Profile/Profile.php:176 +#: src/Content/Widget/VCard.php:109 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:103 src/Model/Profile.php:377 -#: src/Module/Contact/Profile.php:373 src/Module/Profile/Profile.php:180 +#: src/Content/Widget/VCard.php:110 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:469 -#: src/Module/Notifications/Introductions.php:199 +#: src/Content/Widget/VCard.php:111 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Lokalizacja:" + +#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:474 +#: src/Module/Notifications/Introductions.php:201 msgid "Network:" msgstr "Sieć:" -#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:459 +#: src/Content/Widget/VCard.php:118 src/Model/Contact.php:1223 +#: src/Model/Contact.php:1234 src/Model/Profile.php:463 +#: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Przestań obserwować" -#: src/Core/ACL.php:165 src/Module/Profile/Profile.php:242 +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 msgid "Yourself" msgstr "Siebie" -#: src/Core/ACL.php:201 src/Module/PermissionTooltip.php:128 -#: src/Module/PermissionTooltip.php:150 +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 msgid "Mutuals" msgstr "Wzajemne" -#: src/Core/ACL.php:293 +#: src/Core/ACL.php:294 msgid "Post to Email" msgstr "Prześlij e-mailem" -#: src/Core/ACL.php:320 src/Module/PermissionTooltip.php:85 -#: src/Module/PermissionTooltip.php:197 +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 msgid "Public" msgstr "Publiczny" -#: src/Core/ACL.php:321 +#: src/Core/ACL.php:322 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "Ta treść zostanie wyświetlona wszystkim Twoim obserwatorom i będzie widoczna na stronach społeczności oraz przez każdego z jej linkiem." -#: src/Core/ACL.php:322 src/Module/PermissionTooltip.php:93 +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 msgid "Limited/Private" msgstr "Ograniczony/Prywatny" -#: src/Core/ACL.php:323 +#: src/Core/ACL.php:324 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 " @@ -2956,40 +2560,54 @@ msgid "" msgstr "Ta zawartość będzie wyświetlana tylko osobom w pierwszym polu, z wyjątkiem osób wymienionych w drugim polu. Nie pojawi się nigdzie publicznie." #: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." +msgstr "" + +#: src/Core/ACL.php:325 msgid "Show to:" msgstr "Pokaż na:" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:326 msgid "Except to:" msgstr "Z wyjątkiem:" -#: src/Core/ACL.php:328 +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "DW: adresy e-mail" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Przykład: bob@example.com, mary@example.com" + +#: src/Core/ACL.php:329 msgid "Connectors" msgstr "Wtyczki" -#: src/Core/Installer.php:183 +#: src/Core/Installer.php:180 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 "Plik konfiguracyjny bazy danych \"config/local.config.php\" nie mógł zostać zapisany. Proszę użyć załączonego tekstu, aby utworzyć plik konfiguracyjny w katalogu głównym serwera." -#: src/Core/Installer.php:200 +#: src/Core/Installer.php:197 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql." -#: src/Core/Installer.php:201 src/Module/Install.php:213 -#: src/Module/Install.php:372 +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "Proszę zobaczyć plik \"doc/INSTALL.md\"." -#: src/Core/Installer.php:262 +#: src/Core/Installer.php:259 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Nie można znaleźć PHP dla wiersza poleceń w PATH serwera." -#: src/Core/Installer.php:263 +#: src/Core/Installer.php:260 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 "Jeśli nie masz zainstalowanej na serwerze wersji PHP działającej w wierszu poleceń, nie będziesz w stanie uruchomić przetwarzania w tle. Zobacz „Ustawienie workera”." -#: src/Core/Installer.php:268 +#: src/Core/Installer.php:265 msgid "PHP executable path" msgstr "Ścieżka wykonywalna PHP" -#: src/Core/Installer.php:268 +#: src/Core/Installer.php:265 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Wprowadź pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole puste, aby kontynuować instalację." -#: src/Core/Installer.php:273 +#: src/Core/Installer.php:270 msgid "Command line PHP" msgstr "Wiersz poleceń PHP" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:279 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "Plik wykonywalny PHP nie jest php cli binarny (może być wersją cgi-fgci)" -#: src/Core/Installer.php:283 +#: src/Core/Installer.php:280 msgid "Found PHP version: " msgstr "Znaleziona wersja PHP: " -#: src/Core/Installer.php:285 +#: src/Core/Installer.php:282 msgid "PHP cli binary" msgstr "PHP cli binarny" -#: src/Core/Installer.php:298 +#: src/Core/Installer.php:295 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\"." -#: src/Core/Installer.php:299 +#: src/Core/Installer.php:296 msgid "This is required for message delivery to work." msgstr "Jest wymagane, aby dostarczanie wiadomości działało." -#: src/Core/Installer.php:304 +#: src/Core/Installer.php:301 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:336 +#: src/Core/Installer.php:333 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie wygenerować kluczy szyfrujących" -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:334 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:340 +#: src/Core/Installer.php:337 msgid "Generate encryption keys" msgstr "Generuj klucz kodowania" -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:389 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany." -#: src/Core/Installer.php:397 +#: src/Core/Installer.php:394 msgid "Apache mod_rewrite module" msgstr "Moduł Apache mod_rewrite" -#: src/Core/Installer.php:403 +#: src/Core/Installer.php:400 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Błąd: Wymagany moduł PDO lub MySQLi PHP, ale nie zainstalowany." -#: src/Core/Installer.php:408 +#: src/Core/Installer.php:405 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Błąd: Sterownik MySQL dla PDO nie jest zainstalowany." -#: src/Core/Installer.php:412 +#: src/Core/Installer.php:409 msgid "PDO or MySQLi PHP module" msgstr "Moduł PDO lub MySQLi PHP" -#: src/Core/Installer.php:420 +#: src/Core/Installer.php:417 msgid "Error, XML PHP module required but not installed." msgstr "Błąd, wymagany moduł XML PHP, ale nie zainstalowany." -#: src/Core/Installer.php:424 +#: src/Core/Installer.php:421 msgid "XML PHP module" msgstr "Moduł XML PHP" -#: src/Core/Installer.php:427 +#: src/Core/Installer.php:424 msgid "libCurl PHP module" msgstr "Moduł PHP libCurl" -#: src/Core/Installer.php:428 +#: src/Core/Installer.php:425 msgid "Error: libCURL PHP module required but not installed." msgstr "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany." -#: src/Core/Installer.php:434 +#: src/Core/Installer.php:431 msgid "GD graphics PHP module" msgstr "Moduł PHP-GD" -#: src/Core/Installer.php:435 +#: src/Core/Installer.php:432 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany." -#: src/Core/Installer.php:441 +#: src/Core/Installer.php:438 msgid "OpenSSL PHP module" msgstr "Moduł PHP OpenSSL" -#: src/Core/Installer.php:442 +#: src/Core/Installer.php:439 msgid "Error: openssl PHP module required but not installed." msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany." -#: src/Core/Installer.php:448 +#: src/Core/Installer.php:445 msgid "mb_string PHP module" msgstr "Moduł PHP mb_string" -#: src/Core/Installer.php:449 +#: src/Core/Installer.php:446 msgid "Error: mb_string PHP module required but not installed." msgstr "Błąd: moduł PHP mb_string jest wymagany ,ale nie jest zainstalowany." -#: src/Core/Installer.php:455 +#: src/Core/Installer.php:452 msgid "iconv PHP module" msgstr "Moduł PHP iconv" -#: src/Core/Installer.php:456 +#: src/Core/Installer.php:453 msgid "Error: iconv PHP module required but not installed." msgstr "Błąd: wymagany moduł PHP iconv, ale nie zainstalowany." -#: src/Core/Installer.php:462 +#: src/Core/Installer.php:459 msgid "POSIX PHP module" msgstr "Moduł POSIX PHP" -#: src/Core/Installer.php:463 +#: src/Core/Installer.php:460 msgid "Error: POSIX PHP module required but not installed." msgstr "Błąd: wymagany moduł POSIX PHP, ale nie zainstalowany." -#: src/Core/Installer.php:469 +#: src/Core/Installer.php:466 msgid "Program execution functions" msgstr "Funkcje wykonywania programu" -#: src/Core/Installer.php:470 +#: src/Core/Installer.php:467 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "Błąd: Funkcje wykonywania programu (proc_open) są wymagane, ale nie są włączone." -#: src/Core/Installer.php:476 +#: src/Core/Installer.php:473 msgid "JSON PHP module" msgstr "Moduł PHP JSON" -#: src/Core/Installer.php:477 +#: src/Core/Installer.php:474 msgid "Error: JSON PHP module required but not installed." msgstr "Błąd: wymagany jest moduł JSON PHP, ale nie jest zainstalowany." -#: src/Core/Installer.php:483 +#: src/Core/Installer.php:480 msgid "File Information PHP module" msgstr "Informacje o pliku Moduł PHP" -#: src/Core/Installer.php:484 +#: src/Core/Installer.php:481 msgid "Error: File Information PHP module required but not installed." msgstr "Błąd: wymagane informacje o pliku Moduł PHP, ale nie jest zainstalowany." -#: src/Core/Installer.php:490 +#: src/Core/Installer.php:487 msgid "GNU Multiple Precision PHP module" msgstr "" -#: src/Core/Installer.php:491 +#: src/Core/Installer.php:488 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:514 +#: src/Core/Installer.php:511 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 "Instalator internetowy musi mieć możliwość utworzenia pliku o nazwie \"local.config.php\" w katalogu \"config\" serwera WWW i nie może tego zrobić." -#: src/Core/Installer.php:515 +#: src/Core/Installer.php:512 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 "Jest to najczęściej ustawienie uprawnień, ponieważ serwer sieciowy może nie być w stanie zapisywać plików w katalogu - nawet jeśli Ty możesz." -#: src/Core/Installer.php:516 +#: src/Core/Installer.php:513 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 "Pod koniec tej procedury otrzymasz tekst do zapisania w pliku o nazwie local.config.php w katalogu \"config\" Friendica." -#: src/Core/Installer.php:517 +#: src/Core/Installer.php:514 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "Alternatywnie można pominąć tę procedurę i przeprowadzić instalację ręczną. Proszę zobaczyć plik \"doc/INSTALL.md\" z instrukcjami." -#: src/Core/Installer.php:520 +#: src/Core/Installer.php:517 msgid "config/local.config.php is writable" msgstr "config/local.config.php jest zapisywalny" -#: src/Core/Installer.php:540 +#: src/Core/Installer.php:537 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica używa silnika szablonów Smarty3 do renderowania swoich widoków. Smarty3 kompiluje szablony do PHP, aby przyspieszyć renderowanie." -#: src/Core/Installer.php:541 +#: src/Core/Installer.php:538 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 "Aby przechowywać te skompilowane szablony, serwer WWW musi mieć dostęp do zapisu do katalogu view/smarty3/ w katalogu najwyższego poziomu Friendica." -#: src/Core/Installer.php:542 +#: src/Core/Installer.php:539 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Upewnij się, że użytkownik, na którym działa serwer WWW (np. www-data), ma prawo do zapisu do tego katalogu." -#: src/Core/Installer.php:543 +#: src/Core/Installer.php:540 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 "Uwaga: jako środek bezpieczeństwa, powinieneś dać serwerowi dostęp do zapisu view/smarty3/ jedynie - nie do plików szablonów (.tpl), które zawiera." -#: src/Core/Installer.php:546 +#: src/Core/Installer.php:543 msgid "view/smarty3 is writable" msgstr "view/smarty3 jest zapisywalny" -#: src/Core/Installer.php:574 +#: src/Core/Installer.php:571 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "Adres URL zapisany w .htaccess wydaje się nie działać. Upewnij się, że skopiowano .htaccess-dist do .htaccess." -#: src/Core/Installer.php:575 +#: src/Core/Installer.php:572 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "W niektórych okolicznościach (np. uruchamianie wewnątrz kontenerów) możesz pominąć ten błąd." -#: src/Core/Installer.php:577 +#: src/Core/Installer.php:574 msgid "Error message from Curl when fetching" msgstr "Komunikat o błędzie z Curl podczas pobierania" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:580 msgid "Url rewrite is working" msgstr "Działający adres URL" -#: src/Core/Installer.php:612 +#: src/Core/Installer.php:609 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "Wykrycie TLS w celu zabezpieczenia komunikacji między przeglądarką a nowym serwerem Friendica nie powiodło się." -#: src/Core/Installer.php:613 +#: src/Core/Installer.php:610 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "Zachęcamy do korzystania z Friendica tylko przez bezpieczne połączenie, ponieważ przesyłane będą poufne informacje, takie jak hasła." -#: src/Core/Installer.php:614 +#: src/Core/Installer.php:611 msgid "Please ensure that the connection to the server is secure." msgstr "Upewnij się, że połączenie z serwerem jest bezpieczne." -#: src/Core/Installer.php:615 +#: src/Core/Installer.php:612 msgid "No TLS detected" msgstr "Nie wykryto TLS" -#: src/Core/Installer.php:617 +#: src/Core/Installer.php:614 msgid "TLS detected" msgstr "Wykryto TLS" -#: src/Core/Installer.php:644 +#: src/Core/Installer.php:641 msgid "ImageMagick PHP extension is not installed" msgstr "Rozszerzenie PHP ImageMagick nie jest zainstalowane" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:643 msgid "ImageMagick PHP extension is installed" msgstr "Rozszerzenie PHP ImageMagick jest zainstalowane" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:645 msgid "ImageMagick supports GIF" msgstr "ImageMagick obsługuje GIF" -#: src/Core/Installer.php:670 +#: src/Core/Installer.php:667 msgid "Database already in use." msgstr "Baza danych jest już w użyciu." -#: src/Core/Installer.php:675 +#: src/Core/Installer.php:672 msgid "Could not connect to database." msgstr "Nie można połączyć się z bazą danych." -#: src/Core/L10n.php:399 src/Model/Event.php:424 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:476 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:235 msgid "Monday" msgstr "Poniedziałek" -#: src/Core/L10n.php:399 src/Model/Event.php:425 +#: src/Core/L10n.php:476 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:236 msgid "Tuesday" msgstr "Wtorek" -#: src/Core/L10n.php:399 src/Model/Event.php:426 +#: src/Core/L10n.php:476 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:237 msgid "Wednesday" msgstr "Środa" -#: src/Core/L10n.php:399 src/Model/Event.php:427 +#: src/Core/L10n.php:476 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:238 msgid "Thursday" msgstr "Czwartek" -#: src/Core/L10n.php:399 src/Model/Event.php:428 +#: src/Core/L10n.php:476 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:239 msgid "Friday" msgstr "Piątek" -#: src/Core/L10n.php:399 src/Model/Event.php:429 +#: src/Core/L10n.php:476 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:240 msgid "Saturday" msgstr "Sobota" -#: src/Core/L10n.php:399 src/Model/Event.php:423 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:476 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:234 msgid "Sunday" msgstr "Niedziela" -#: src/Core/L10n.php:403 src/Model/Event.php:444 +#: src/Core/L10n.php:480 src/Model/Event.php:450 msgid "January" msgstr "Styczeń" -#: src/Core/L10n.php:403 src/Model/Event.php:445 +#: src/Core/L10n.php:480 src/Model/Event.php:451 msgid "February" msgstr "Luty" -#: src/Core/L10n.php:403 src/Model/Event.php:446 +#: src/Core/L10n.php:480 src/Model/Event.php:452 msgid "March" msgstr "Marzec" -#: src/Core/L10n.php:403 src/Model/Event.php:447 +#: src/Core/L10n.php:480 src/Model/Event.php:453 msgid "April" msgstr "Kwiecień" -#: src/Core/L10n.php:403 src/Core/L10n.php:422 src/Model/Event.php:435 +#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441 msgid "May" msgstr "Maj" -#: src/Core/L10n.php:403 src/Model/Event.php:448 +#: src/Core/L10n.php:480 src/Model/Event.php:454 msgid "June" msgstr "Czerwiec" -#: src/Core/L10n.php:403 src/Model/Event.php:449 +#: src/Core/L10n.php:480 src/Model/Event.php:455 msgid "July" msgstr "Lipiec" -#: src/Core/L10n.php:403 src/Model/Event.php:450 +#: src/Core/L10n.php:480 src/Model/Event.php:456 msgid "August" msgstr "Sierpień" -#: src/Core/L10n.php:403 src/Model/Event.php:451 +#: src/Core/L10n.php:480 src/Model/Event.php:457 msgid "September" msgstr "Wrzesień" -#: src/Core/L10n.php:403 src/Model/Event.php:452 +#: src/Core/L10n.php:480 src/Model/Event.php:458 msgid "October" msgstr "Październik" -#: src/Core/L10n.php:403 src/Model/Event.php:453 +#: src/Core/L10n.php:480 src/Model/Event.php:459 msgid "November" msgstr "Listopad" -#: src/Core/L10n.php:403 src/Model/Event.php:454 +#: src/Core/L10n.php:480 src/Model/Event.php:460 msgid "December" msgstr "Grudzień" -#: src/Core/L10n.php:418 src/Model/Event.php:416 +#: src/Core/L10n.php:495 src/Model/Event.php:422 msgid "Mon" msgstr "Pon" -#: src/Core/L10n.php:418 src/Model/Event.php:417 +#: src/Core/L10n.php:495 src/Model/Event.php:423 msgid "Tue" msgstr "Wt" -#: src/Core/L10n.php:418 src/Model/Event.php:418 +#: src/Core/L10n.php:495 src/Model/Event.php:424 msgid "Wed" msgstr "Śr" -#: src/Core/L10n.php:418 src/Model/Event.php:419 +#: src/Core/L10n.php:495 src/Model/Event.php:425 msgid "Thu" msgstr "Czw" -#: src/Core/L10n.php:418 src/Model/Event.php:420 +#: src/Core/L10n.php:495 src/Model/Event.php:426 msgid "Fri" msgstr "Pt" -#: src/Core/L10n.php:418 src/Model/Event.php:421 +#: src/Core/L10n.php:495 src/Model/Event.php:427 msgid "Sat" msgstr "Sob" -#: src/Core/L10n.php:418 src/Model/Event.php:415 +#: src/Core/L10n.php:495 src/Model/Event.php:421 msgid "Sun" msgstr "Niedz" -#: src/Core/L10n.php:422 src/Model/Event.php:431 +#: src/Core/L10n.php:499 src/Model/Event.php:437 msgid "Jan" msgstr "Sty" -#: src/Core/L10n.php:422 src/Model/Event.php:432 +#: src/Core/L10n.php:499 src/Model/Event.php:438 msgid "Feb" msgstr "Lut" -#: src/Core/L10n.php:422 src/Model/Event.php:433 +#: src/Core/L10n.php:499 src/Model/Event.php:439 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:422 src/Model/Event.php:434 +#: src/Core/L10n.php:499 src/Model/Event.php:440 msgid "Apr" msgstr "Kwi" -#: src/Core/L10n.php:422 src/Model/Event.php:436 +#: src/Core/L10n.php:499 src/Model/Event.php:442 msgid "Jun" msgstr "Cze" -#: src/Core/L10n.php:422 src/Model/Event.php:437 +#: src/Core/L10n.php:499 src/Model/Event.php:443 msgid "Jul" msgstr "Lip" -#: src/Core/L10n.php:422 src/Model/Event.php:438 +#: src/Core/L10n.php:499 src/Model/Event.php:444 msgid "Aug" msgstr "Sie" -#: src/Core/L10n.php:422 +#: src/Core/L10n.php:499 msgid "Sep" msgstr "Wrz" -#: src/Core/L10n.php:422 src/Model/Event.php:440 +#: src/Core/L10n.php:499 src/Model/Event.php:446 msgid "Oct" msgstr "Paź" -#: src/Core/L10n.php:422 src/Model/Event.php:441 +#: src/Core/L10n.php:499 src/Model/Event.php:447 msgid "Nov" msgstr "Lis" -#: src/Core/L10n.php:422 src/Model/Event.php:442 +#: src/Core/L10n.php:499 src/Model/Event.php:448 msgid "Dec" msgstr "Gru" -#: src/Core/L10n.php:441 -msgid "poke" -msgstr "zaczep" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "Plik dziennika „%s” nie nadaje się do użytku. Brak możliwości logowania (błąd: '%s')" -#: src/Core/L10n.php:441 -msgid "poked" -msgstr "zaczepił Cię" - -#: src/Core/L10n.php:442 -msgid "ping" -msgstr "ping" - -#: src/Core/L10n.php:442 -msgid "pinged" -msgstr "napięcia" - -#: src/Core/L10n.php:443 -msgid "prod" -msgstr "zaczep" - -#: src/Core/L10n.php:443 -msgid "prodded" -msgstr "zaczepiać" - -#: src/Core/L10n.php:444 -msgid "slap" -msgstr "klask" - -#: src/Core/L10n.php:444 -msgid "slapped" -msgstr "spoliczkowany" - -#: src/Core/L10n.php:445 -msgid "finger" -msgstr "wskaż" - -#: src/Core/L10n.php:445 -msgid "fingered" -msgstr "dotknięty" - -#: src/Core/L10n.php:446 -msgid "rebuff" -msgstr "odrzuć" - -#: src/Core/L10n.php:446 -msgid "rebuffed" -msgstr "odrzucony" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "Plik dziennika debugowania „%s” nie nadaje się do użytku. Brak możliwości logowania (błąd: '%s')" #: src/Core/Renderer.php:89 src/Core/Renderer.php:118 -#: src/Core/Renderer.php:145 src/Core/Renderer.php:179 -#: src/Render/FriendicaSmartyEngine.php:69 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "Friendica nie może obecnie wyświetlić tej strony, skontaktuj się z administratorem." -#: src/Core/Renderer.php:141 +#: src/Core/Renderer.php:143 msgid "template engine cannot be registered without a name." msgstr "silnik szablonów nie może być zarejestrowany bez nazwy." -#: src/Core/Renderer.php:175 +#: src/Core/Renderer.php:177 msgid "template engine is not registered!" msgstr "silnik szablonów nie jest zarejestrowany!" @@ -3514,36 +3100,36 @@ msgstr "Katalog, w którym zapisywane są przesłane pliki. Dla maksymalnego bez msgid "Enter a valid existing folder" msgstr "Wprowadź poprawny istniejący katalog" -#: src/Core/Update.php:67 +#: src/Core/Update.php:80 #, 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 "Aktualizacje z wersji %s nie są obsługiwane. Zaktualizuj co najmniej do wersji 2021.01 i poczekaj, aż po aktualizacji zakończy się wersja 1383." -#: src/Core/Update.php:78 +#: src/Core/Update.php:91 #, 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 "Aktualizacje z wersji postupdate %s nie są obsługiwane. Zaktualizuj co najmniej do wersji 2021.01 i poczekaj, aż po aktualizacji zakończy się wersja 1383." -#: src/Core/Update.php:153 +#: src/Core/Update.php:183 #, php-format msgid "%s: executing pre update %d" msgstr "%s: wykonywanie wstępnej aktualizacji %d" -#: src/Core/Update.php:191 +#: src/Core/Update.php:225 #, php-format msgid "%s: executing post update %d" msgstr "%s: wykonywanie czynności poaktualizacyjnych %d" -#: src/Core/Update.php:261 +#: src/Core/Update.php:299 #, php-format msgid "Update %s failed. See error logs." msgstr "Aktualizacja %s nie powiodła się. Zobacz dziennik błędów." -#: src/Core/Update.php:315 +#: src/Core/Update.php:339 #, php-format msgid "" "\n" @@ -3553,83 +3139,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\tDeweloperzy friendica wydali niedawno aktualizację %s,\n\t\t\t\tale podczas próby instalacji, coś poszło nie tak.\n\t\t\t\tZostanie to naprawione wkrótce i nie mogę tego zrobić sam. Proszę skontaktować się z \n\t\t\t\tprogramistami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być nieprawidłowa." -#: src/Core/Update.php:321 +#: src/Core/Update.php:345 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "Komunikat o błędzie:\\n[pre]%s[/pre]" -#: src/Core/Update.php:325 src/Core/Update.php:367 +#: src/Core/Update.php:349 src/Core/Update.php:377 msgid "[Friendica Notify] Database update" msgstr "[Powiadomienie Friendica] Aktualizacja bazy danych" -#: src/Core/Update.php:361 +#: src/Core/Update.php:371 #, php-format msgid "" "\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n\t\t\t\t\tBaza danych Friendica została pomyślnie zaktualizowana z %s do %s." - -#: src/Core/UserImport.php:126 -msgid "Error decoding account file" -msgstr "Błąd podczas odczytu pliku konta" - -#: src/Core/UserImport.php:132 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Błąd! Brak danych wersji w pliku! To nie jest plik konta Friendica?" - -#: src/Core/UserImport.php:140 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "Użytkownik '%s' już istnieje na tym serwerze!" - -#: src/Core/UserImport.php:176 -msgid "User creation error" -msgstr "Błąd tworzenia użytkownika" - -#: src/Core/UserImport.php:221 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "Nie zaimportowano %d kontaktu" -msgstr[1] "Nie zaimportowano %d kontaktów" -msgstr[2] "Nie zaimportowano %d kontaktów" -msgstr[3] "%d kontakty nie zostały zaimportowane " - -#: src/Core/UserImport.php:274 -msgid "User profile creation error" -msgstr "Błąd tworzenia profilu użytkownika" - -#: src/Core/UserImport.php:327 -msgid "Done. You can now login with your username and password" -msgstr "Gotowe. Możesz teraz zalogować się z użyciem nazwy użytkownika i hasła" +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "" #: src/Database/DBStructure.php:57 #, php-format msgid "The database version had been set to %s." msgstr "Wersja bazy danych została ustawiona na %s." -#: src/Database/DBStructure.php:70 +#: src/Database/DBStructure.php:82 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "Aktualizacja po aktualizacji jest w wersji %d, musi nastąpić %d, aby bezpiecznie usunąć tabele." -#: src/Database/DBStructure.php:83 +#: src/Database/DBStructure.php:95 msgid "No unused tables found." msgstr "Nie odnaleziono nieużywanych tabel" -#: src/Database/DBStructure.php:88 +#: src/Database/DBStructure.php:100 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "Te tabele nie są używane we friendice i zostaną usunięte po wykonaniu \"dbstructure drop -e\":" -#: src/Database/DBStructure.php:126 +#: src/Database/DBStructure.php:137 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "Brak tabel w MyISAM lub InnoDB z formatem pliku Antelope." -#: src/Database/DBStructure.php:150 +#: src/Database/DBStructure.php:161 #, php-format msgid "" "\n" @@ -3637,20 +3189,20 @@ msgid "" "%s\n" msgstr "\nWystąpił błąd %d podczas aktualizacji bazy danych:\n%s\n" -#: src/Database/DBStructure.php:153 +#: src/Database/DBStructure.php:164 msgid "Errors encountered performing database changes: " msgstr "Błędy napotkane podczas dokonywania zmian w bazie danych: " -#: src/Database/DBStructure.php:219 +#: src/Database/DBStructure.php:232 msgid "Another database update is currently running." msgstr "Trwa inna aktualizacja bazy danych." -#: src/Database/DBStructure.php:223 +#: src/Database/DBStructure.php:236 #, php-format msgid "%s: Database update" msgstr "%s: Aktualizacja bazy danych" -#: src/Database/DBStructure.php:479 +#: src/Database/DBStructure.php:493 #, php-format msgid "%s: updating %s table." msgstr "%s: aktualizowanie %s tabeli." @@ -3667,12 +3219,12 @@ msgstr "Podmiot nieprzetwarzalny" msgid "Unauthorized" msgstr "Nieautoryzowane" -#: src/Factory/Api/Mastodon/Error.php:85 +#: src/Factory/Api/Mastodon/Error.php:84 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "Token nie jest autoryzowany z prawidłowym użytkownikiem lub nie ma wymaganego zakresu" -#: src/Factory/Api/Mastodon/Error.php:95 +#: src/Factory/Api/Mastodon/Error.php:94 msgid "Internal Server Error" msgstr "Wewnętrzny błąd serwera" @@ -3681,261 +3233,322 @@ msgstr "Wewnętrzny błąd serwera" msgid "Legacy module file not found: %s" msgstr "Nie znaleziono pliku modułu: %s" -#: src/Model/Contact.php:1105 src/Model/Contact.php:1117 -msgid "UnFollow" -msgstr "Przestań obserwować" +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." +msgstr "" -#: src/Model/Contact.php:1123 src/Module/Admin/Users/Pending.php:107 -#: src/Module/Notifications/Introductions.php:130 -#: src/Module/Notifications/Introductions.php:202 +#: src/Model/Circle.php:543 +msgid "Everybody" +msgstr "Wszyscy" + +#: src/Model/Circle.php:562 +msgid "edit" +msgstr "edytuj" + +#: src/Model/Circle.php:599 +msgid "add" +msgstr "dodaj" + +#: src/Model/Circle.php:604 +msgid "Edit circle" +msgstr "" + +#: src/Model/Circle.php:605 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "" + +#: src/Model/Circle.php:607 +msgid "Create a new circle" +msgstr "" + +#: src/Model/Circle.php:608 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "" + +#: src/Model/Circle.php:609 +msgid "Edit circles" +msgstr "" + +#: src/Model/Contact.php:1240 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Zatwierdź" -#: src/Model/Contact.php:1533 +#: src/Model/Contact.php:1694 msgid "Organisation" msgstr "Organizacja" -#: src/Model/Contact.php:1541 -msgid "Forum" -msgstr "Forum" +#: src/Model/Contact.php:1702 +msgid "Group" +msgstr "" -#: src/Model/Contact.php:2630 +#: src/Model/Contact.php:3005 msgid "Disallowed profile URL." msgstr "Nie dozwolony adres URL profilu." -#: src/Model/Contact.php:2635 src/Module/Friendica.php:81 +#: src/Model/Contact.php:3010 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Zablokowana domena" -#: src/Model/Contact.php:2640 +#: src/Model/Contact.php:3015 msgid "Connect URL missing." msgstr "Brak adresu URL połączenia." -#: src/Model/Contact.php:2649 +#: src/Model/Contact.php:3024 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Nie można dodać kontaktu. Sprawdź odpowiednie poświadczenia sieciowe na stronie Ustawienia -> Sieci społecznościowe." -#: src/Model/Contact.php:2691 +#: src/Model/Contact.php:3042 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "" + +#: src/Model/Contact.php:3059 msgid "The profile address specified does not provide adequate information." msgstr "Dany adres profilu nie dostarcza odpowiednich informacji." -#: src/Model/Contact.php:2693 +#: src/Model/Contact.php:3061 msgid "No compatible communication protocols or feeds were discovered." msgstr "Nie znaleziono żadnych kompatybilnych protokołów komunikacyjnych ani źródeł." -#: src/Model/Contact.php:2696 +#: src/Model/Contact.php:3064 msgid "An author or name was not found." msgstr "Autor lub nazwa nie zostało znalezione." -#: src/Model/Contact.php:2699 +#: src/Model/Contact.php:3067 msgid "No browser URL could be matched to this address." msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu" -#: src/Model/Contact.php:2702 +#: src/Model/Contact.php:3070 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail." -#: src/Model/Contact.php:2703 +#: src/Model/Contact.php:3071 msgid "Use mailto: in front of address to force email check." msgstr "Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail." -#: src/Model/Contact.php:2709 +#: src/Model/Contact.php:3077 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "Określony adres profilu należy do sieci, która została wyłączona na tej stronie." -#: src/Model/Contact.php:2714 +#: src/Model/Contact.php:3082 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie." -#: src/Model/Contact.php:2773 +#: src/Model/Contact.php:3148 msgid "Unable to retrieve contact information." msgstr "Nie można otrzymać informacji kontaktowych" -#: src/Model/Event.php:52 +#: src/Model/Event.php:54 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:73 src/Model/Event.php:90 src/Model/Event.php:463 -#: src/Model/Event.php:897 +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 msgid "Starts:" msgstr "Rozpoczęcie:" -#: src/Model/Event.php:76 src/Model/Event.php:96 src/Model/Event.php:464 -#: src/Model/Event.php:901 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 msgid "Finishes:" msgstr "Zakończenie:" -#: src/Model/Event.php:413 +#: src/Model/Event.php:419 msgid "all-day" msgstr "cały dzień" -#: src/Model/Event.php:439 +#: src/Model/Event.php:445 msgid "Sept" msgstr "Wrz" -#: src/Model/Event.php:461 +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "dzisiaj" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:245 src/Util/Temporal.php:353 +msgid "month" +msgstr "miesiąc" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:246 src/Util/Temporal.php:354 +msgid "week" +msgstr "tydzień" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:247 src/Util/Temporal.php:355 +msgid "day" +msgstr "dzień" + +#: src/Model/Event.php:467 msgid "No events to display" msgstr "Brak wydarzeń do wyświetlenia" -#: src/Model/Event.php:577 +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "Dostęp do tego profilu został ograniczony." + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "Nie znaleziono wydarzenia." + +#: src/Model/Event.php:637 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:608 +#: src/Model/Event.php:664 msgid "Edit event" msgstr "Edytuj wydarzenie" -#: src/Model/Event.php:609 +#: src/Model/Event.php:665 msgid "Duplicate event" msgstr "Zduplikowane zdarzenie" -#: src/Model/Event.php:610 +#: src/Model/Event.php:666 msgid "Delete event" msgstr "Usuń wydarzenie" -#: src/Model/Event.php:853 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:854 +#: src/Model/Event.php:897 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:855 +#: src/Model/Event.php:898 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:916 src/Model/Event.php:918 +#: src/Model/Event.php:964 src/Model/Event.php:966 msgid "Show map" msgstr "Pokaż mapę" -#: src/Model/Event.php:917 +#: src/Model/Event.php:965 msgid "Hide map" msgstr "Ukryj mapę" -#: src/Model/Event.php:1010 +#: src/Model/Event.php:1058 #, php-format msgid "%s's birthday" msgstr "Urodziny %s" -#: src/Model/Event.php:1011 +#: src/Model/Event.php:1059 #, php-format msgid "Happy Birthday %s" msgstr "Wszystkiego najlepszego %s" -#: src/Model/Group.php:105 -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 "Skasowana grupa o tej nazwie została przywrócona. Istniejące uprawnienia do pozycji mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie jest to zamierzone, utwórz inną grupę o innej nazwie." - -#: src/Model/Group.php:499 -msgid "Default privacy group for new contacts" -msgstr "Domyślne ustawienia prywatności dla nowych kontaktów" - -#: src/Model/Group.php:531 -msgid "Everybody" -msgstr "Wszyscy" - -#: src/Model/Group.php:550 -msgid "edit" -msgstr "edytuj" - -#: src/Model/Group.php:582 -msgid "add" -msgstr "dodaj" - -#: src/Model/Group.php:587 -msgid "Edit group" -msgstr "Edytuj grupy" - -#: src/Model/Group.php:588 src/Module/Group.php:194 -msgid "Contacts not in any group" -msgstr "Kontakt nie jest w żadnej grupie" - -#: src/Model/Group.php:590 -msgid "Create a new group" -msgstr "Stwórz nową grupę" - -#: src/Model/Group.php:591 src/Module/Group.php:179 src/Module/Group.php:202 -#: src/Module/Group.php:277 -msgid "Group Name: " -msgstr "Nazwa grupy: " - -#: src/Model/Group.php:592 -msgid "Edit groups" -msgstr "Edytuj grupy" - -#: src/Model/Item.php:1823 +#: src/Model/Item.php:2062 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Wykryte języki w tym wpisie:\\n%s" -#: src/Model/Item.php:2729 +#: src/Model/Item.php:3007 msgid "activity" msgstr "aktywność" -#: src/Model/Item.php:2731 +#: src/Model/Item.php:3009 msgid "comment" msgstr "komentarz" -#: src/Model/Item.php:2734 +#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "wpis" -#: src/Model/Item.php:2850 +#: src/Model/Item.php:3182 +#, php-format +msgid "%s is blocked" +msgstr "" + +#: src/Model/Item.php:3184 +#, php-format +msgid "%s is ignored" +msgstr "" + +#: src/Model/Item.php:3186 +#, php-format +msgid "Content from %s is collapsed" +msgstr "" + +#: src/Model/Item.php:3190 #, php-format msgid "Content warning: %s" msgstr "Ostrzeżenie o treści: %s" -#: src/Model/Item.php:3209 +#: src/Model/Item.php:3652 msgid "bytes" msgstr "bajty" -#: src/Model/Item.php:3243 +#: src/Model/Item.php:3683 #, php-format -msgid "%s (%d%s, %d votes)" -msgstr "%s (%d%s, %d głosów)" +msgid "%2$s (%3$d%%, %1$d vote)" +msgid_plural "%2$s (%3$d%%, %1$d votes)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Model/Item.php:3245 +#: src/Model/Item.php:3685 #, php-format -msgid "%s (%d votes)" -msgstr "%s (%d głosów)" +msgid "%2$s (%1$d vote)" +msgid_plural "%2$s (%1$d votes)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Model/Item.php:3250 +#: src/Model/Item.php:3690 #, php-format -msgid "%d voters. Poll end: %s" -msgstr "%d głosujących. Zakończenie głosowania: %s" +msgid "%d voter. Poll end: %s" +msgid_plural "%d voters. Poll end: %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Model/Item.php:3252 +#: src/Model/Item.php:3692 #, php-format -msgid "%d voters." -msgstr "%d głosujących." +msgid "%d voter." +msgid_plural "%d voters." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3694 #, php-format msgid "Poll end: %s" msgstr "Koniec ankiety: %s" -#: src/Model/Item.php:3288 src/Model/Item.php:3289 +#: src/Model/Item.php:3728 src/Model/Item.php:3729 msgid "View on separate page" msgstr "Zobacz na oddzielnej stronie" -#: src/Model/Mail.php:137 src/Model/Mail.php:265 +#: src/Model/Mail.php:137 src/Model/Mail.php:266 msgid "[no subject]" msgstr "[bez tematu]" -#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:256 -#: src/Module/Profile/Profile.php:258 +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Tablica zdjęć" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 msgid "Edit profile" msgstr "Edytuj profil" @@ -3943,206 +3556,215 @@ msgstr "Edytuj profil" msgid "Change profile photo" msgstr "Zmień zdjęcie profilowe" -#: src/Model/Profile.php:374 src/Module/Directory.php:153 -#: src/Module/Profile/Profile.php:184 +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 msgid "Homepage:" msgstr "Strona główna:" -#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:375 -#: src/Module/Notifications/Introductions.php:187 +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "O:" -#: src/Model/Profile.php:461 +#: src/Model/Profile.php:465 msgid "Atom feed" msgstr "Kanał Atom" -#: src/Model/Profile.php:505 +#: src/Model/Profile.php:472 +msgid "This website has been verified to belong to the same person." +msgstr "Zweryfikowano, że ta witryna należy do tej samej osoby." + +#: src/Model/Profile.php:509 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:569 src/Model/Profile.php:653 +#: src/Model/Profile.php:573 src/Model/Profile.php:662 msgid "[today]" msgstr "[dziś]" -#: src/Model/Profile.php:578 +#: src/Model/Profile.php:582 msgid "Birthday Reminders" msgstr "Przypomnienia o urodzinach" -#: src/Model/Profile.php:579 +#: src/Model/Profile.php:583 msgid "Birthdays this week:" msgstr "Urodziny w tym tygodniu:" -#: src/Model/Profile.php:602 +#: src/Model/Profile.php:611 msgid "g A l F d" msgstr "g A I F d" -#: src/Model/Profile.php:640 +#: src/Model/Profile.php:649 msgid "[No description]" msgstr "[Brak opisu]" -#: src/Model/Profile.php:666 +#: src/Model/Profile.php:675 msgid "Event Reminders" msgstr "Przypominacze wydarzeń" -#: src/Model/Profile.php:667 +#: src/Model/Profile.php:676 msgid "Upcoming events the next 7 days:" msgstr "Nadchodzące wydarzenia w ciągu następnych 7 dni:" -#: src/Model/Profile.php:855 +#: src/Model/Profile.php:873 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s wita %2$s" -#: src/Model/Profile.php:981 +#: src/Model/Profile.php:1013 msgid "Hometown:" msgstr "Miasto rodzinne:" -#: src/Model/Profile.php:982 +#: src/Model/Profile.php:1014 msgid "Marital Status:" msgstr "Stan cywilny:" -#: src/Model/Profile.php:983 +#: src/Model/Profile.php:1015 msgid "With:" msgstr "Z:" -#: src/Model/Profile.php:984 +#: src/Model/Profile.php:1016 msgid "Since:" msgstr "Od:" -#: src/Model/Profile.php:985 +#: src/Model/Profile.php:1017 msgid "Sexual Preference:" msgstr "Preferencje seksualne:" -#: src/Model/Profile.php:986 +#: src/Model/Profile.php:1018 msgid "Political Views:" msgstr "Poglądy polityczne:" -#: src/Model/Profile.php:987 +#: src/Model/Profile.php:1019 msgid "Religious Views:" msgstr "Poglądy religijne:" -#: src/Model/Profile.php:988 +#: src/Model/Profile.php:1020 msgid "Likes:" msgstr "Lubię to:" -#: src/Model/Profile.php:989 +#: src/Model/Profile.php:1021 msgid "Dislikes:" msgstr "Nie lubię tego:" -#: src/Model/Profile.php:990 +#: src/Model/Profile.php:1022 msgid "Title/Description:" msgstr "Tytuł/Opis:" -#: src/Model/Profile.php:991 src/Module/Admin/Summary.php:234 +#: src/Model/Profile.php:1023 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 msgid "Summary" msgstr "Podsumowanie" -#: src/Model/Profile.php:992 +#: src/Model/Profile.php:1024 msgid "Musical interests" msgstr "Muzyka" -#: src/Model/Profile.php:993 +#: src/Model/Profile.php:1025 msgid "Books, literature" msgstr "Literatura" -#: src/Model/Profile.php:994 +#: src/Model/Profile.php:1026 msgid "Television" msgstr "Telewizja" -#: src/Model/Profile.php:995 +#: src/Model/Profile.php:1027 msgid "Film/dance/culture/entertainment" msgstr "Film/taniec/kultura/rozrywka" -#: src/Model/Profile.php:996 +#: src/Model/Profile.php:1028 msgid "Hobbies/Interests" msgstr "Zainteresowania" -#: src/Model/Profile.php:997 +#: src/Model/Profile.php:1029 msgid "Love/romance" msgstr "Miłość/romans" -#: src/Model/Profile.php:998 +#: src/Model/Profile.php:1030 msgid "Work/employment" msgstr "Praca/zatrudnienie" -#: src/Model/Profile.php:999 +#: src/Model/Profile.php:1031 msgid "School/education" msgstr "Szkoła/edukacja" -#: src/Model/Profile.php:1000 +#: src/Model/Profile.php:1032 msgid "Contact information and Social Networks" msgstr "Dane kontaktowe i Sieci społecznościowe" -#: src/Model/User.php:212 src/Model/User.php:1058 +#: src/Model/User.php:227 src/Model/User.php:1186 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń." -#: src/Model/User.php:570 src/Model/User.php:603 +#: src/Model/User.php:620 src/Model/User.php:653 msgid "Login failed" msgstr "Logowanie nieudane" -#: src/Model/User.php:635 +#: src/Model/User.php:685 msgid "Not enough information to authenticate" msgstr "Za mało informacji do uwierzytelnienia" -#: src/Model/User.php:730 +#: src/Model/User.php:806 msgid "Password can't be empty" msgstr "Hasło nie może być puste" -#: src/Model/User.php:749 +#: src/Model/User.php:848 msgid "Empty passwords are not allowed." msgstr "Puste hasła są niedozwolone." -#: src/Model/User.php:753 +#: src/Model/User.php:852 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Nowe hasło zostało ujawnione w publicznym zrzucie danych, wybierz inne." -#: src/Model/User.php:759 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "Hasło nie może zawierać podkreślonych liter, białych spacji ani dwukropków (:)" +#: src/Model/User.php:856 +msgid "The password length is limited to 72 characters." +msgstr "Długość hasła jest ograniczona do 72 znaków." -#: src/Model/User.php:938 +#: src/Model/User.php:860 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "" + +#: src/Model/User.php:1069 msgid "Passwords do not match. Password unchanged." msgstr "Hasła nie pasują do siebie. Hasło niezmienione." -#: src/Model/User.php:945 +#: src/Model/User.php:1076 msgid "An invitation is required." msgstr "Wymagane zaproszenie." -#: src/Model/User.php:949 +#: src/Model/User.php:1080 msgid "Invitation could not be verified." msgstr "Zaproszenie niezweryfikowane." -#: src/Model/User.php:957 +#: src/Model/User.php:1088 msgid "Invalid OpenID url" msgstr "Nieprawidłowy adres url OpenID" -#: src/Model/User.php:970 src/Security/Authentication.php:240 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Napotkaliśmy problem podczas logowania z podanym przez nas identyfikatorem OpenID. Sprawdź poprawną pisownię identyfikatora." -#: src/Model/User.php:970 src/Security/Authentication.php:240 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "Komunikat o błędzie:" -#: src/Model/User.php:976 +#: src/Model/User.php:1107 msgid "Please enter the required information." msgstr "Wprowadź wymagane informacje." -#: src/Model/User.php:990 +#: src/Model/User.php:1121 #, 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) i system.username_max_length (%s) wykluczają się nawzajem, zamieniając wartości." -#: src/Model/User.php:997 +#: src/Model/User.php:1128 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." @@ -4151,7 +3773,7 @@ msgstr[1] "Nazwa użytkownika powinna wynosić co najmniej %s znaków." msgstr[2] "Nazwa użytkownika powinna wynosić co najmniej %s znaków." msgstr[3] "Nazwa użytkownika powinna wynosić co najmniej %s znaków." -#: src/Model/User.php:1001 +#: src/Model/User.php:1132 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." @@ -4160,60 +3782,60 @@ msgstr[1] "Nazwa użytkownika nie może mieć więcej niż %s znaków." msgstr[2] "Nazwa użytkownika nie może mieć więcej niż %s znaków." msgstr[3] "Nazwa użytkownika nie może mieć więcej niż %s znaków." -#: src/Model/User.php:1009 +#: src/Model/User.php:1140 msgid "That doesn't appear to be your full (First Last) name." msgstr "Wydaje mi się, że to nie jest twoje pełne imię (pierwsze imię) i nazwisko." -#: src/Model/User.php:1014 +#: src/Model/User.php:1145 msgid "Your email domain is not among those allowed on this site." msgstr "Twoja domena internetowa nie jest obsługiwana na tej stronie." -#: src/Model/User.php:1018 +#: src/Model/User.php:1149 msgid "Not a valid email address." msgstr "Niepoprawny adres e-mail." -#: src/Model/User.php:1021 +#: src/Model/User.php:1152 msgid "The nickname was blocked from registration by the nodes admin." msgstr "Pseudonim został zablokowany przed rejestracją przez administratora węzłów." -#: src/Model/User.php:1025 src/Model/User.php:1033 +#: src/Model/User.php:1156 src/Model/User.php:1162 msgid "Cannot use that email." msgstr "Nie można użyć tego e-maila." -#: src/Model/User.php:1040 +#: src/Model/User.php:1168 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Twój pseudonim może zawierać tylko a-z, 0-9 i _." -#: src/Model/User.php:1048 src/Model/User.php:1105 +#: src/Model/User.php:1176 src/Model/User.php:1233 msgid "Nickname is already registered. Please choose another." msgstr "Ten login jest zajęty. Wybierz inny." -#: src/Model/User.php:1092 src/Model/User.php:1096 +#: src/Model/User.php:1220 src/Model/User.php:1224 msgid "An error occurred during registration. Please try again." msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie." -#: src/Model/User.php:1119 +#: src/Model/User.php:1247 msgid "An error occurred creating your default profile. Please try again." msgstr "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie." -#: src/Model/User.php:1126 +#: src/Model/User.php:1254 msgid "An error occurred creating your self contact. Please try again." msgstr "Wystąpił błąd podczas tworzenia własnego kontaktu. Proszę spróbuj ponownie." -#: src/Model/User.php:1131 +#: src/Model/User.php:1259 msgid "Friends" msgstr "Przyjaciele" -#: src/Model/User.php:1135 +#: src/Model/User.php:1263 msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "Wystąpił błąd podczas tworzenia domyślnej grupy kontaktów. Proszę spróbuj ponownie." +"An error occurred creating your default contact circle. Please try again." +msgstr "" -#: src/Model/User.php:1174 +#: src/Model/User.php:1307 msgid "Profile Photos" msgstr "Zdjęcie profilowe" -#: src/Model/User.php:1367 +#: src/Model/User.php:1487 #, php-format msgid "" "\n" @@ -4221,7 +3843,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\tSzanowna/y %1$s,\n\t\t\tadministrator of %2$s założył dla Ciebie konto." -#: src/Model/User.php:1370 +#: src/Model/User.php:1490 #, php-format msgid "" "\n" @@ -4248,17 +3870,17 @@ msgid "" "\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" +"\t\tIf you ever want to delete your account, you can do so at %1$s/settings/removeme\n" "\n" "\t\tThank you and welcome to %4$s." -msgstr "\n\t\tDane logowania są następuje:\n\n\t\tPołożenie witryny:\t%1$s\n\t\tNazwa użytkownika\t\t:%2$s\n\t\tHasło:\t\t%3$s\n\n\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\".\n\n\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\tMożesz również chcieć dodać podstawowe informacje do swojego domyślnego profilu\n\t\t(na stronie \"Profile\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\tdodanie pewnych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) \n\t\ti być może miejsca, gdzie mieszkasz; jeśli nie chcesz podawać więcej szczegółów.\n\n\t\tW pełni szanujemy Twoje prawo do prywatności i żadna z tych danych nie jest konieczna.\n\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, mogą one Ci pomóc,\n\t\tw pozyskaniu nowych i interesujących przyjaciół.\n\n\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić na stronie %1$s/removeme\n\n\t\tDziękujemy i zapraszamy do%4$s." +msgstr "" -#: src/Model/User.php:1403 src/Model/User.php:1510 +#: src/Model/User.php:1523 src/Model/User.php:1630 #, php-format msgid "Registration details for %s" msgstr "Szczegóły rejestracji dla %s" -#: src/Model/User.php:1423 +#: src/Model/User.php:1543 #, php-format msgid "" "\n" @@ -4273,12 +3895,12 @@ msgid "" "\t\t" msgstr "\n\t\t\tSzanowny Użytkowniku %1$s,\n\t\t\t\tDziękujemy za rejestrację na stronie %2$s. Twoje konto czeka na zatwierdzenie przez administratora.\n\n\t\t\tTwoje dane do logowania są następujące:\n\n\t\t\tLokalizacja witryny:\t%3$s\n\t\t\tNazwa użytkownika:\t\t%4$s\n\t\t\tHasło:\t\t%5$s\n\t\t" -#: src/Model/User.php:1442 +#: src/Model/User.php:1562 #, php-format msgid "Registration at %s" msgstr "Rejestracja w %s" -#: src/Model/User.php:1466 +#: src/Model/User.php:1586 #, php-format msgid "" "\n" @@ -4287,7 +3909,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\tSzanowna/y %1$s,\n\t\t\t\tDziękujemy za rejestrację w %2$s. Twoje konto zostało utworzone.\n\t\t\t" -#: src/Model/User.php:1474 +#: src/Model/User.php:1594 #, php-format msgid "" "\n" @@ -4314,10 +3936,10 @@ msgid "" "\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" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." -msgstr "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%3$s\n\t\t\tNazwa użytkownika:\t\t%1$s\n\t\t\tHasło:\t\t%5$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\".\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil użytkownika\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) \n\t\t\ti być może gdzie mieszkasz; jeśli nie chcesz podać więcej szczegów.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół.\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić na stronie %3$s/removeme\n\n\t\t\tDziękujemy i Zapraszamy do %2$s." +msgstr "" #: src/Module/Admin/Addons/Details.php:65 msgid "Addon not found." @@ -4344,26 +3966,20 @@ msgid "Enable" msgstr "Zezwól" #: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:94 -#: src/Module/Admin/Blocklist/Server/Add.php:89 -#: src/Module/Admin/Blocklist/Server/Index.php:78 -#: src/Module/Admin/Federation.php:196 src/Module/Admin/Item/Delete.php:64 -#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:84 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:433 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:233 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:75 -#: 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 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 msgid "Administration" msgstr "Administracja" #: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:96 -#: src/Module/BaseSettings.php:85 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:132 msgid "Addons" msgstr "Dodatki" @@ -4372,13 +3988,13 @@ msgstr "Dodatki" msgid "Toggle" msgstr "Włącz" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 msgid "Author: " msgstr "Autor: " -#: src/Module/Admin/Addons/Details.php:122 -#: src/Module/Admin/Themes/Details.php:102 +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 msgid "Maintainer: " msgstr "Opiekun: " @@ -4391,11 +4007,22 @@ msgstr "Dodatki zostały ponownie wczytane" msgid "Addon %s failed to install." msgstr "Instalacja dodatku %s nie powiodła się." +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Zapisz ustawienia" + #: src/Module/Admin/Addons/Index.php:70 msgid "Reload active addons" msgstr "Wczytaj ponownie aktywne dodatki" -#: src/Module/Admin/Addons/Index.php:75 +#: src/Module/Admin/Addons/Index.php:74 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4403,337 +4030,6 @@ msgid "" " the open addon registry at %2$s" msgstr "W twoim węźle nie ma obecnie żadnych dodatków. Możesz znaleźć oficjalne repozytorium dodatków na %1$s i możesz znaleźć inne interesujące dodatki w otwartym rejestrze dodatków na %2$s" -#: src/Module/Admin/BaseUsers.php:54 -msgid "List of all users" -msgstr "Lista wszystkich użytkowników" - -#: src/Module/Admin/BaseUsers.php:59 -msgid "Active" -msgstr "Aktywne" - -#: src/Module/Admin/BaseUsers.php:62 -msgid "List of active accounts" -msgstr "Lista aktywnych kont" - -#: src/Module/Admin/BaseUsers.php:67 src/Module/Contact.php:314 -#: src/Module/Contact.php:374 -msgid "Pending" -msgstr "Oczekujące" - -#: src/Module/Admin/BaseUsers.php:70 -msgid "List of pending registrations" -msgstr "Lista oczekujących rejestracji" - -#: src/Module/Admin/BaseUsers.php:75 src/Module/Contact.php:322 -#: src/Module/Contact.php:375 -msgid "Blocked" -msgstr "Zablokowane" - -#: src/Module/Admin/BaseUsers.php:78 -msgid "List of blocked users" -msgstr "Lista zablokowanych użytkowników" - -#: src/Module/Admin/BaseUsers.php:83 -msgid "Deleted" -msgstr "Usunięte" - -#: src/Module/Admin/BaseUsers.php:86 -msgid "List of pending user deletions" -msgstr "Lista oczekujących na usunięcie użytkowników" - -#: src/Module/Admin/BaseUsers.php:100 src/Module/Settings/Account.php:493 -msgid "Normal Account Page" -msgstr "Normalna strona konta" - -#: src/Module/Admin/BaseUsers.php:101 src/Module/Settings/Account.php:500 -msgid "Soapbox Page" -msgstr "Strona Soapbox" - -#: src/Module/Admin/BaseUsers.php:102 src/Module/Settings/Account.php:507 -msgid "Public Forum" -msgstr "Forum publiczne" - -#: src/Module/Admin/BaseUsers.php:103 src/Module/Settings/Account.php:514 -msgid "Automatic Friend Page" -msgstr "Automatyczna strona znajomego" - -#: src/Module/Admin/BaseUsers.php:104 -msgid "Private Forum" -msgstr "Prywatne forum" - -#: src/Module/Admin/BaseUsers.php:107 src/Module/Settings/Account.php:465 -msgid "Personal Page" -msgstr "Strona osobista" - -#: src/Module/Admin/BaseUsers.php:108 src/Module/Settings/Account.php:472 -msgid "Organisation Page" -msgstr "Strona Organizacji" - -#: src/Module/Admin/BaseUsers.php:109 src/Module/Settings/Account.php:479 -msgid "News Page" -msgstr "Strona Wiadomości" - -#: src/Module/Admin/BaseUsers.php:110 src/Module/Settings/Account.php:486 -msgid "Community Forum" -msgstr "Forum społecznościowe" - -#: src/Module/Admin/BaseUsers.php:111 -msgid "Relay" -msgstr "Przekaźnik" - -#: src/Module/Admin/Blocklist/Contact.php:54 -msgid "You can't block a local contact, please block the user instead" -msgstr "Nie możesz zablokować lokalnego kontaktu, zamiast tego zablokuj użytkownika" - -#: src/Module/Admin/Blocklist/Contact.php:73 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s kontakt odblokowany" -msgstr[1] "%s kontakty odblokowane" -msgstr[2] "%s kontaktów odblokowanych" -msgstr[3] "%s kontaktów odblokowanych" - -#: src/Module/Admin/Blocklist/Contact.php:95 -msgid "Remote Contact Blocklist" -msgstr "Lista zablokowanych kontaktów zdalnych" - -#: src/Module/Admin/Blocklist/Contact.php:96 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu zdalnego." - -#: src/Module/Admin/Blocklist/Contact.php:97 -msgid "Block Remote Contact" -msgstr "Zablokuj kontakt zdalny" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#: 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 "zaznacz wszystko" - -#: src/Module/Admin/Blocklist/Contact.php:99 -msgid "select none" -msgstr "wybierz brak" - -#: src/Module/Admin/Blocklist/Contact.php:101 -#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156 -#: src/Module/Contact.php:398 src/Module/Contact/Profile.php:348 -#: src/Module/Contact/Profile.php:449 -msgid "Unblock" -msgstr "Odblokuj" - -#: src/Module/Admin/Blocklist/Contact.php:102 -msgid "No remote contact is blocked from this node." -msgstr "Z tego węzła nie jest blokowany kontakt zdalny." - -#: src/Module/Admin/Blocklist/Contact.php:104 -msgid "Blocked Remote Contacts" -msgstr "Zablokowane kontakty zdalne" - -#: src/Module/Admin/Blocklist/Contact.php:105 -msgid "Block New Remote Contact" -msgstr "Zablokuj nowy kontakt zdalny" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Photo" -msgstr "Zdjęcie" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Reason" -msgstr "Powód" - -#: src/Module/Admin/Blocklist/Contact.php:114 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "łącznie %s zablokowany kontakt" -msgstr[1] "łącznie %s zablokowane kontakty" -msgstr[2] "łącznie %s zablokowanych kontaktów" -msgstr[3] "%s całkowicie zablokowane kontakty" - -#: src/Module/Admin/Blocklist/Contact.php:116 -msgid "URL of the remote contact to block." -msgstr "Adres URL kontaktu zdalnego do zablokowania." - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "Also purge contact" -msgstr "Wyczyść również kontakt" - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "" -"Removes all content related to this contact from the node. Keeps the contact" -" record. This action cannot be undone." -msgstr "Usuwa z węzła całą zawartość związaną z tym kontaktem. Zachowuje rejestr kontaktów. Tej czynności nie można cofnąć." - -#: src/Module/Admin/Blocklist/Contact.php:118 -msgid "Block Reason" -msgstr "Powód blokady" - -#: src/Module/Admin/Blocklist/Server/Add.php:55 -msgid "Server domain pattern added to the blocklist." -msgstr "Do listy zablokowanych dodano wzorzec domeny serwera." - -#: src/Module/Admin/Blocklist/Server/Add.php:63 -#, php-format -msgid "%s server scheduled to be purged." -msgid_plural "%s servers scheduled to be purged." -msgstr[0] "%s serwer zaplanowany do usunięcia." -msgstr[1] "%s serwery zaplanowane do usunięcia." -msgstr[2] "%s serwerów zaplanowanych do usunięcia." -msgstr[3] "%s serwerów zaplanowanych do usunięcia." - -#: src/Module/Admin/Blocklist/Server/Add.php:88 -msgid "← Return to the list" -msgstr "← Wróć do listy" - -#: src/Module/Admin/Blocklist/Server/Add.php:90 -msgid "Block A New Server Domain Pattern" -msgstr "Zablokuj nowy wzorzec domeny serwera" - -#: src/Module/Admin/Blocklist/Server/Add.php:91 -#: src/Module/Admin/Blocklist/Server/Index.php:82 -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" -"
    " -msgstr "

    Składnia wzorca domeny serwera to symbol wieloznaczny powłoki bez rozróżniania wielkości liter, zawierający następujące znaki specjalne:

    \n
      \n\t
    • *: Dowolna liczba znaków
    • \n\t
    • ?: Dowolny pojedynczy znak
    • \n
    " - -#: src/Module/Admin/Blocklist/Server/Add.php:96 -#: src/Module/Admin/Blocklist/Server/Index.php:88 -msgid "Check pattern" -msgstr "Sprawdź wzór" - -#: src/Module/Admin/Blocklist/Server/Add.php:97 -msgid "Matching known servers" -msgstr "Dopasowanie znanych serwerów" - -#: src/Module/Admin/Blocklist/Server/Add.php:98 -msgid "Server Name" -msgstr "Nazwa serwera" - -#: src/Module/Admin/Blocklist/Server/Add.php:99 -msgid "Server Domain" -msgstr "Domena serwera" - -#: src/Module/Admin/Blocklist/Server/Add.php:100 -msgid "Known Contacts" -msgstr "Znane kontakty" - -#: src/Module/Admin/Blocklist/Server/Add.php:101 -#, php-format -msgid "%d known server" -msgid_plural "%d known servers" -msgstr[0] "%d znany serwer" -msgstr[1] "%d znane serwery" -msgstr[2] "%d znanych serwerów" -msgstr[3] "%d znanych serwerów" - -#: src/Module/Admin/Blocklist/Server/Add.php:102 -msgid "Add pattern to the blocklist" -msgstr "Dodaj wzór do listy blokad" - -#: src/Module/Admin/Blocklist/Server/Add.php:104 -#: src/Module/Admin/Blocklist/Server/Index.php:96 -msgid "Server Domain Pattern" -msgstr "Wzorzec domeny serwera" - -#: src/Module/Admin/Blocklist/Server/Add.php:104 -#: src/Module/Admin/Blocklist/Server/Index.php:96 -msgid "" -"The domain pattern of the new server to add to the blocklist. Do not include" -" the protocol." -msgstr "Wzorzec domeny nowego serwera do dodania do listy blokad. Nie dołączaj protokołu." - -#: src/Module/Admin/Blocklist/Server/Add.php:105 -msgid "Purge server" -msgstr "Wyczyść serwer" - -#: src/Module/Admin/Blocklist/Server/Add.php:105 -msgid "" -"Also purges all the locally stored content authored by the known contacts " -"registered on that server. Keeps the contacts and the server records. This " -"action cannot be undone." -msgid_plural "" -"Also purges all the locally stored content authored by the known contacts " -"registered on these servers. Keeps the contacts and the servers records. " -"This action cannot be undone." -msgstr[0] "Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć." -msgstr[1] "Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć." -msgstr[2] "Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć." -msgstr[3] "Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć." - -#: src/Module/Admin/Blocklist/Server/Add.php:106 -msgid "Block reason" -msgstr "Powód zablokowania" - -#: src/Module/Admin/Blocklist/Server/Add.php:106 -msgid "" -"The reason why you blocked this server domain pattern. This reason will be " -"shown publicly in the server information page." -msgstr "Powód, dla którego zablokowałeś ten wzorzec domeny serwera. Powód ten zostanie pokazany publicznie na stronie informacyjnej serwera." - -#: src/Module/Admin/Blocklist/Server/Index.php:68 -#: src/Module/Admin/Blocklist/Server/Index.php:91 -msgid "Blocked server domain pattern" -msgstr "Zablokowany wzorzec domeny serwera" - -#: src/Module/Admin/Blocklist/Server/Index.php:69 -#: src/Module/Admin/Blocklist/Server/Index.php:92 src/Module/Friendica.php:82 -msgid "Reason for the block" -msgstr "Powód blokowania" - -#: src/Module/Admin/Blocklist/Server/Index.php:70 -msgid "Delete server domain pattern" -msgstr "Usuń wzorzec domeny serwera" - -#: src/Module/Admin/Blocklist/Server/Index.php:70 -msgid "Check to delete this entry from the blocklist" -msgstr "Zaznacz, aby usunąć ten wpis z listy bloków" - -#: src/Module/Admin/Blocklist/Server/Index.php:79 -msgid "Server Domain Pattern Blocklist" -msgstr "Lista bloków wzorców domen serwerów" - -#: src/Module/Admin/Blocklist/Server/Index.php:80 -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 "Ta strona może służyć do definiowania listy zablokowanych wzorców domen serwera z sieci stowarzyszonej, które nie mogą komunikować się z węzłem. Dla każdego wzorca domeny należy również podać powód, dla którego go blokujesz." - -#: src/Module/Admin/Blocklist/Server/Index.php:81 -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 "Lista zablokowanych wzorców domen serwera zostanie udostępniona publicznie na stronie /friendica, aby użytkownicy i osoby badające problemy z komunikacją mogły łatwo znaleźć przyczynę." - -#: src/Module/Admin/Blocklist/Server/Index.php:87 -msgid "Add new entry to the blocklist" -msgstr "Dodaj nowy wpis do listy zablokowanych" - -#: src/Module/Admin/Blocklist/Server/Index.php:89 -msgid "Save changes to the blocklist" -msgstr "Zapisz zmiany w liście zablokowanych" - -#: src/Module/Admin/Blocklist/Server/Index.php:90 -msgid "Current Entries in the Blocklist" -msgstr "Aktualne wpisy na liście zablokowanych" - -#: src/Module/Admin/Blocklist/Server/Index.php:93 -msgid "Delete entry from the blocklist" -msgstr "Usuń wpis z listy zablokowanych" - -#: src/Module/Admin/Blocklist/Server/Index.php:94 -msgid "Delete entry from the blocklist?" -msgstr "Usunąć wpis z listy zablokowanych?" - #: src/Module/Admin/DBSync.php:51 msgid "Update has been marked successful" msgstr "Aktualizacja została oznaczona jako udana" @@ -4768,28 +4064,28 @@ msgstr "Aktualizacja %s nie zwróciła statusu. Nieznane, jeśli się udało." msgid "There was no additional update function %s that needed to be called." msgstr "Nie było dodatkowej funkcji %s aktualizacji, która musiała zostać wywołana." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:105 msgid "No failed updates." msgstr "Brak błędów aktualizacji." -#: src/Module/Admin/DBSync.php:107 +#: src/Module/Admin/DBSync.php:106 msgid "Check database structure" msgstr "Sprawdź strukturę bazy danych" -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:110 msgid "Failed Updates" msgstr "Błąd aktualizacji" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:111 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Nie dotyczy to aktualizacji przed 1139, który nie zwrócił statusu." -#: src/Module/Admin/DBSync.php:114 +#: src/Module/Admin/DBSync.php:112 msgid "Mark success (if update was manually applied)" msgstr "Oznacz sukces (jeśli aktualizacja została ręcznie zastosowana)" -#: src/Module/Admin/DBSync.php:115 +#: src/Module/Admin/DBSync.php:113 msgid "Attempt to execute this update step automatically" msgstr "Spróbuj automatycznie wykonać ten krok aktualizacji" @@ -4798,200 +4094,161 @@ msgstr "Spróbuj automatycznie wykonać ten krok aktualizacji" msgid "Lock feature %s" msgstr "Funkcja blokady %s" -#: src/Module/Admin/Features.php:85 +#: src/Module/Admin/Features.php:84 msgid "Manage Additional Features" msgstr "Zarządzanie dodatkowymi funkcjami" -#: src/Module/Admin/Federation.php:65 +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 msgid "Other" msgstr "Inne" -#: src/Module/Admin/Federation.php:136 src/Module/Admin/Federation.php:385 +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 msgid "unknown" msgstr "nieznany" -#: src/Module/Admin/Federation.php:169 +#: src/Module/Admin/Federation.php:187 #, php-format -msgid "%s total systems" -msgstr "%s łącznie systemów" +msgid "%2$s total system" +msgid_plural "%2$s total systems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Module/Admin/Federation.php:170 +#: src/Module/Admin/Federation.php:188 #, php-format -msgid "%s active users last month" -msgstr "%s aktywnych użytkowników w ostatnim miesiącu" +msgid "%2$s active user last month" +msgid_plural "%2$s active users last month" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Module/Admin/Federation.php:171 +#: src/Module/Admin/Federation.php:189 #, php-format -msgid "%s active users last six months" -msgstr "%s aktywnych użytkowników za ostatnie 6 miesięcy" +msgid "%2$s active user last six months" +msgid_plural "%2$s active users last six months" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Module/Admin/Federation.php:172 +#: src/Module/Admin/Federation.php:190 #, php-format -msgid "%s registered users" -msgstr "%s zarejestrowanych użytkowników" - -#: src/Module/Admin/Federation.php:173 -#, php-format -msgid "%s locally created posts and comments" -msgstr "%s lokalnie utworzonych wpisów i komentarzy" - -#: src/Module/Admin/Federation.php:176 -#, php-format -msgid "%s posts per user" -msgstr "%s wpisy na użytkownika" - -#: src/Module/Admin/Federation.php:181 -#, php-format -msgid "%s users per system" -msgstr "%s użytkowników na system" +msgid "%2$s registered user" +msgid_plural "%2$s registered users" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: src/Module/Admin/Federation.php:191 +#, php-format +msgid "%2$s locally created post or comment" +msgid_plural "%2$s locally created posts and comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Admin/Federation.php:194 +#, php-format +msgid "%2$s post per user" +msgid_plural "%2$s posts per user" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Admin/Federation.php:199 +#, php-format +msgid "%2$s user per system" +msgid_plural "%2$s users per system" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Admin/Federation.php:209 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 "Ta strona zawiera kilka numerów do znanej części federacyjnej sieci społecznościowej, do której należy Twój węzeł Friendica. Liczby te nie są kompletne, ale odzwierciedlają tylko część sieci, o której wie twój węzeł." -#: src/Module/Admin/Federation.php:197 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "Statystyki Federacji" -#: src/Module/Admin/Federation.php:201 +#: src/Module/Admin/Federation.php:219 #, php-format msgid "" -"Currently this node is aware of %s nodes (%s active users last month, %s " -"active users last six months, %s registered users in total) from the " +"Currently this node is aware of %2$s node (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " "following platforms:" -msgstr "Obecnie ten węzeł jest świadomy %s węzłów (%s aktywnych użytkowników w zeszłym miesiącu, %s aktywnych użytkowników w ciągu ostatnich sześciu miesięcy, %s łącznie zarejestrowanych użytkowników) z następujących platform:" - -#: src/Module/Admin/Item/Delete.php:53 -msgid "Item marked for deletion." -msgstr "Przedmiot oznaczony do usunięcia." - -#: src/Module/Admin/Item/Delete.php:65 src/Module/BaseAdmin.php:109 -msgid "Delete Item" -msgstr "Usuń przedmiot" - -#: src/Module/Admin/Item/Delete.php:66 -msgid "Delete this Item" -msgstr "Usuń ten przedmiot" - -#: src/Module/Admin/Item/Delete.php:67 -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 "Na tej stronie możesz usunąć przedmiot ze swojego węzła. Jeśli element jest publikowaniem na najwyższym poziomie, cały wątek zostanie usunięty." - -#: src/Module/Admin/Item/Delete.php:68 -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 "Musisz znać identyfikator GUID tego przedmiotu. Możesz go znaleźć np. patrząc na wyświetlany adres URL. Ostatnia część http://example.com/display/123456 to GUID, tutaj 123456." - -#: src/Module/Admin/Item/Delete.php:69 -msgid "GUID" -msgstr "GUID" - -#: src/Module/Admin/Item/Delete.php:69 -msgid "The GUID of the item you want to delete." -msgstr "Identyfikator elementu GUID, który chcesz usunąć." - -#: src/Module/Admin/Item/Source.php:57 src/Module/BaseAdmin.php:119 -msgid "Item Source" -msgstr "Źródło elementu" - -#: src/Module/Admin/Item/Source.php:58 -msgid "Item Guid" -msgstr "Element Guid" - -#: src/Module/Admin/Item/Source.php:63 -msgid "Item Id" -msgstr "Identyfikator elementu" - -#: src/Module/Admin/Item/Source.php:64 -msgid "Item URI" -msgstr "Identyfikator URI elementu" - -#: src/Module/Admin/Item/Source.php:66 -msgid "Terms" -msgstr "Zasady" - -#: src/Module/Admin/Item/Source.php:67 -msgid "Tag" -msgstr "Znacznik" - -#: 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 "Typu" - -#: src/Module/Admin/Item/Source.php:69 -msgid "Term" -msgstr "Zasada" - -#: src/Module/Admin/Item/Source.php:70 -msgid "URL" -msgstr "URL" - -#: src/Module/Admin/Item/Source.php:71 -msgid "Mention" -msgstr "Wzmianka" - -#: src/Module/Admin/Item/Source.php:72 -msgid "Implicit Mention" -msgstr "Wzmianka niejawna" - -#: src/Module/Admin/Item/Source.php:73 src/Module/Admin/Logs/View.php:99 -#: src/Module/Debug/ActivityPubConversion.php:62 -msgid "Source" -msgstr "Źródło" +msgid_plural "" +"Currently this node is aware of %2$s nodes (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: src/Module/Admin/Logs/Settings.php:47 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "Plik dziennika '%s' nie jest zapisywalny. Brak możliwości logowania" -#: src/Module/Admin/Logs/Settings.php:71 +#: src/Module/Admin/Logs/Settings.php:77 msgid "PHP log currently enabled." msgstr "Dziennik PHP jest obecnie włączony." -#: src/Module/Admin/Logs/Settings.php:73 +#: src/Module/Admin/Logs/Settings.php:79 msgid "PHP log currently disabled." msgstr "Dziennik PHP jest obecnie wyłączony." -#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:111 -#: src/Module/BaseAdmin.php:112 +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 msgid "Logs" msgstr "Dzienniki" -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:88 msgid "Clear" msgstr "Wyczyść" -#: src/Module/Admin/Logs/Settings.php:86 +#: src/Module/Admin/Logs/Settings.php:91 msgid "Enable Debugging" msgstr "Włącz debugowanie" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:92 msgid "Log file" msgstr "Plik logów" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:92 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Musi być zapisywalny przez serwer sieciowy. W stosunku do katalogu najwyższego poziomu Friendica." -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:93 msgid "Log level" msgstr "Poziom logów" -#: src/Module/Admin/Logs/Settings.php:90 +#: src/Module/Admin/Logs/Settings.php:95 msgid "PHP logging" msgstr "Logowanie w PHP" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:96 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 " @@ -5014,68 +4271,77 @@ msgid "" "is readable." msgstr "Nie udało się otworzyć pliku dziennika %1$s. Sprawdź, czy plik %1$s jest odczytywalny." -#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:113 +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 msgid "View Logs" msgstr "Zobacz rejestry" -#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Admin/Logs/View.php:87 msgid "Search in logs" msgstr "Szukaj w dziennikach" -#: src/Module/Admin/Logs/View.php:89 -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Notifications/Notifications.php:140 msgid "Show all" msgstr "Pokaż wszystko" -#: src/Module/Admin/Logs/View.php:90 +#: src/Module/Admin/Logs/View.php:89 msgid "Date" msgstr "Data" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:90 msgid "Level" msgstr "Poziom" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:91 msgid "Context" msgstr "Kontekst" -#: src/Module/Admin/Logs/View.php:94 +#: src/Module/Admin/Logs/View.php:93 msgid "ALL" msgstr "WSZYSTKO" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:94 msgid "View details" msgstr "Zobacz szczegóły" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:95 msgid "Click to view details" msgstr "Kliknij, aby zobaczyć szczegóły" -#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Szczegóły wydarzenia" + +#: src/Module/Admin/Logs/View.php:97 msgid "Data" msgstr "Dane" -#: src/Module/Admin/Logs/View.php:100 +#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Debug/ActivityPubConversion.php:57 +msgid "Source" +msgstr "Źródło" + +#: src/Module/Admin/Logs/View.php:99 msgid "File" msgstr "Plik" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:100 msgid "Line" msgstr "Linia" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:101 msgid "Function" msgstr "Funkcja" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:102 msgid "UID" msgstr "UID" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:103 msgid "Process ID" msgstr "Identyfikator procesu" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:104 msgid "Close" msgstr "Zamknij" @@ -5111,463 +4377,472 @@ msgstr "Polecenie" msgid "Job Parameters" msgstr "Parametry zadania" +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "Utwórz" + #: src/Module/Admin/Queue.php:79 msgid "Priority" msgstr "Priorytet" -#: src/Module/Admin/Site.php:338 src/Module/Settings/Display.php:138 +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" +msgstr "" + +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:178 msgid "No special theme for mobile devices" msgstr "Brak specialnego motywu dla urządzeń mobilnych" -#: src/Module/Admin/Site.php:355 src/Module/Settings/Display.php:148 +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188 #, php-format msgid "%s - (Experimental)" msgstr "%s- (Eksperymentalne)" -#: src/Module/Admin/Site.php:367 -msgid "No community page for local users" -msgstr "Brak strony społeczności dla użytkowników lokalnych" - -#: src/Module/Admin/Site.php:368 +#: src/Module/Admin/Site.php:342 msgid "No community page" msgstr "Brak strony społeczności" -#: src/Module/Admin/Site.php:369 +#: src/Module/Admin/Site.php:343 +msgid "No community page for visitors" +msgstr "Brak strony społeczności dla odwiedzających" + +#: src/Module/Admin/Site.php:344 msgid "Public postings from users of this site" msgstr "Publikacje publiczne od użytkowników tej strony" -#: src/Module/Admin/Site.php:370 +#: src/Module/Admin/Site.php:345 msgid "Public postings from the federated network" msgstr "Publikacje wpisy ze sfederowanej sieci" -#: src/Module/Admin/Site.php:371 +#: src/Module/Admin/Site.php:346 msgid "Public postings from local users and the federated network" msgstr "Publikacje publiczne od użytkowników lokalnych i sieci federacyjnej" -#: src/Module/Admin/Site.php:377 +#: src/Module/Admin/Site.php:352 msgid "Multi user instance" msgstr "Tryb wielu użytkowników" -#: src/Module/Admin/Site.php:404 +#: src/Module/Admin/Site.php:375 msgid "Closed" msgstr "Zamknięte" -#: src/Module/Admin/Site.php:405 +#: src/Module/Admin/Site.php:376 msgid "Requires approval" msgstr "Wymaga zatwierdzenia" -#: src/Module/Admin/Site.php:406 +#: src/Module/Admin/Site.php:377 msgid "Open" msgstr "Otwarta" -#: src/Module/Admin/Site.php:410 src/Module/Install.php:222 -msgid "No SSL policy, links will track page SSL state" -msgstr "Brak SSL, linki będą śledzić stan SSL" - -#: src/Module/Admin/Site.php:411 src/Module/Install.php:223 -msgid "Force all links to use SSL" -msgstr "Wymuś używanie SSL na wszystkich odnośnikach" - -#: src/Module/Admin/Site.php:412 src/Module/Install.php:224 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certyfikat z podpisem własnym, używaj SSL tylko dla łączy lokalnych (odradzane)" - -#: src/Module/Admin/Site.php:416 +#: src/Module/Admin/Site.php:381 msgid "Don't check" msgstr "Nie sprawdzaj" -#: src/Module/Admin/Site.php:417 +#: src/Module/Admin/Site.php:382 msgid "check the stable version" msgstr "sprawdź wersję stabilną" -#: src/Module/Admin/Site.php:418 +#: src/Module/Admin/Site.php:383 msgid "check the development version" msgstr "sprawdź wersję rozwojową" -#: src/Module/Admin/Site.php:422 +#: src/Module/Admin/Site.php:387 msgid "none" msgstr "brak" -#: src/Module/Admin/Site.php:423 +#: src/Module/Admin/Site.php:388 msgid "Local contacts" msgstr "Kontakty lokalne" -#: src/Module/Admin/Site.php:424 +#: src/Module/Admin/Site.php:389 msgid "Interactors" msgstr "Interaktorzy" -#: src/Module/Admin/Site.php:434 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Strona" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:400 msgid "General Information" msgstr "Ogólne informacje" -#: src/Module/Admin/Site.php:437 +#: src/Module/Admin/Site.php:402 msgid "Republish users to directory" msgstr "Ponownie opublikuj użytkowników w katalogu" -#: src/Module/Admin/Site.php:438 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 msgid "Registration" msgstr "Rejestracja" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:404 msgid "File upload" msgstr "Przesyłanie plików" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:405 msgid "Policies" msgstr "Zasady" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "Zaawansowany" + +#: src/Module/Admin/Site.php:407 msgid "Auto Discovered Contact Directory" msgstr "Katalog kontaktów automatycznie odkrytych" -#: src/Module/Admin/Site.php:443 +#: src/Module/Admin/Site.php:408 msgid "Performance" msgstr "Ustawienia" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:409 msgid "Worker" msgstr "Worker" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:410 msgid "Message Relay" msgstr "Przekaźnik wiadomości" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:411 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "Użyj polecenia „console relay” w wierszu poleceń, aby dodać lub usunąć przekaźniki." -#: src/Module/Admin/Site.php:447 +#: src/Module/Admin/Site.php:412 msgid "The system is not subscribed to any relays at the moment." msgstr "System nie jest aktualnie objęty abonamentem na żadne przekaźniki." -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:413 msgid "The system is currently subscribed to the following relays:" msgstr "System jest obecnie objęty abonamentem na następujące przekaźniki:" -#: src/Module/Admin/Site.php:450 +#: src/Module/Admin/Site.php:415 msgid "Relocate Node" msgstr "Przenieś węzeł" -#: src/Module/Admin/Site.php:451 +#: src/Module/Admin/Site.php:416 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "Przeniesienie węzła umożliwia zmianę domeny DNS tego węzła i zachowanie wszystkich istniejących użytkowników i wpisów. Ten proces zajmuje trochę czasu i można go uruchomić tylko za pomocą konsolowego polecenia relokacji w następujący sposób:" -#: src/Module/Admin/Site.php:452 +#: src/Module/Admin/Site.php:417 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(Katalog Friendica)# bin/console relocate https://nowadomena.pl" -#: src/Module/Admin/Site.php:456 +#: src/Module/Admin/Site.php:420 msgid "Site name" msgstr "Nazwa strony" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:421 msgid "Sender Email" msgstr "E-mail nadawcy" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:421 msgid "" "The email address your server shall use to send notification emails from." msgstr "Adres e-mail używany przez Twój serwer do wysyłania e-maili z powiadomieniami." -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:422 msgid "Name of the system actor" msgstr "Imię i nazwisko aktora systemu" -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:422 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 "Nazwa wewnętrznego konta systemowego, które jest używane do wykonywania żądań ActivityPub. Musi to być nieużywana nazwa użytkownika. Jeśli jest ustawiona, nie można jej zmienić ponownie." -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:423 msgid "Banner/Logo" msgstr "Baner/Logo" -#: src/Module/Admin/Site.php:460 +#: src/Module/Admin/Site.php:424 msgid "Email Banner/Logo" msgstr "Baner/logo e-maila" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:425 msgid "Shortcut icon" msgstr "Ikona skrótu" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:425 msgid "Link to an icon that will be used for browsers." msgstr "Link do ikony, która będzie używana w przeglądarkach." -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:426 msgid "Touch icon" msgstr "Dołącz ikonę" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:426 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Link do ikony, która będzie używana w tabletach i telefonach komórkowych." -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:427 msgid "Additional Info" msgstr "Dodatkowe informacje" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:427 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "W przypadku serwerów publicznych: możesz tu dodać dodatkowe informacje, które będą wymienione na %s/servers." -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:428 msgid "System language" msgstr "Język systemu" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:429 msgid "System theme" msgstr "Motyw systemowy" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:429 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "Domyślny motyw systemu - może być nadpisywany przez profile użytkowników - Zmień domyślne ustawienia motywu" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:430 msgid "Mobile system theme" msgstr "Motyw systemu mobilnego" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:430 msgid "Theme for mobile devices" msgstr "Motyw na urządzenia mobilne" -#: src/Module/Admin/Site.php:467 src/Module/Install.php:232 -msgid "SSL link policy" -msgstr "Polityka odnośników SSL" - -#: src/Module/Admin/Site.php:467 src/Module/Install.php:234 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Określa, czy generowane odnośniki będą obowiązkowo używały SSL" - -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:431 msgid "Force SSL" msgstr "Wymuś SSL" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:431 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Wymuszaj wszystkie żądania SSL bez SSL - Uwaga: w niektórych systemach może to prowadzić do niekończących się pętli." -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:432 msgid "Show help entry from navigation menu" msgstr "Pokaż wpis pomocy z menu nawigacyjnego" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:432 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "Wyświetla pozycję menu dla stron pomocy z menu nawigacyjnego. Jest zawsze dostępna, odwołując się bezpośrednio do /help." -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:433 msgid "Single user instance" msgstr "Tryb pojedynczego użytkownika" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:433 msgid "Make this instance multi-user or single-user for the named user" msgstr "Ustawia tryb dla wielu użytkowników lub pojedynczego użytkownika dla nazwanego użytkownika" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:435 msgid "Maximum image size" msgstr "Maksymalny rozmiar zdjęcia" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:435 +#, php-format msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maksymalny rozmiar w bitach dla wczytywanego obrazu . Domyślnie jest to 0 , co oznacza bez limitu ." +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:439 msgid "Maximum image length" msgstr "Maksymalna długość obrazu" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:439 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Maksymalna długość w pikselach dłuższego boku przesyłanego obrazu. Wartością domyślną jest -1, co oznacza brak ograniczeń." -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:440 msgid "JPEG image quality" msgstr "Jakość obrazu JPEG" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:440 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Przesłane pliki JPEG zostaną zapisane w tym ustawieniu jakości [0-100]. Domyślna wartość to 100, która jest pełną jakością." -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:442 msgid "Register policy" msgstr "Zasady rejestracji" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "" + +#: src/Module/Admin/Site.php:444 msgid "Maximum Daily Registrations" msgstr "Maksymalna dzienna rejestracja" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:444 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 "Jeśli rejestracja powyżej jest dozwolona, to określa maksymalną liczbę nowych rejestracji użytkowników do zaakceptowania na dzień. Jeśli rejestracja jest ustawiona na \"Zamknięta\", to ustawienie to nie ma wpływu." -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:445 msgid "Register text" msgstr "Zarejestruj tekst" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:445 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Będą wyświetlane w widocznym miejscu na stronie rejestracji. Możesz użyć BBCode tutaj." -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:446 msgid "Forbidden Nicknames" msgstr "Zakazane pseudonimy" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:446 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "Lista oddzielonych przecinkami pseudonimów, których nie wolno rejestrować. Preset to lista nazw ról zgodnie z RFC 2142." -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:447 msgid "Accounts abandoned after x days" msgstr "Konta porzucone po x dni" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:447 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Nie będzie marnować zasobów systemu wypytując zewnętrzne strony o opuszczone konta. Ustaw 0 dla braku limitu czasu ." -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:448 msgid "Allowed friend domains" msgstr "Dozwolone domeny przyjaciół" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:448 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Rozdzielana przecinkami lista domen, które mogą nawiązywać przyjaźnie z tą witryną. Symbole wieloznaczne są akceptowane. Pozostaw puste by zezwolić każdej domenie na zaprzyjaźnienie." -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:449 msgid "Allowed email domains" msgstr "Dozwolone domeny e-mailowe" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:449 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 "Rozdzielana przecinkami lista domen dozwolonych w adresach e-mail do rejestracji na tej stronie. Symbole wieloznaczne są akceptowane. Opróżnij, aby zezwolić na dowolne domeny" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:450 msgid "No OEmbed rich content" msgstr "Brak treści multimedialnych ze znaczkiem HTML" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:450 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "Nie wyświetlaj zasobów treści (np. osadzonego pliku PDF), z wyjątkiem domen wymienionych poniżej." -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:451 msgid "Trusted third-party domains" msgstr "Zaufane domeny zewnętrzne" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:451 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 "Oddzielona przecinkami lista domen, z których treść może być osadzana we wpisach, tak jak w przypadku OEmbed. Dozwolone są również wszystkie subdomeny wymienionych domen." -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:452 msgid "Block public" msgstr "Blokuj publicznie" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:452 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Zaznacz, aby zablokować publiczny dostęp do wszystkich publicznych stron prywatnych w tej witrynie, chyba że jesteś zalogowany." -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:453 msgid "Force publish" msgstr "Wymuś publikację" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:453 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Zaznacz, aby wymusić umieszczenie wszystkich profili w tej witrynie w katalogu witryny." -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:453 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Włączenie tego może naruszyć prawa ochrony prywatności, takie jak GDPR" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:454 msgid "Global directory URL" msgstr "Globalny adres URL katalogu" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:454 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "Adres URL do katalogu globalnego. Jeśli nie zostanie to ustawione, katalog globalny jest całkowicie niedostępny dla aplikacji." -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:455 msgid "Private posts by default for new users" msgstr "Prywatne posty domyślnie dla nowych użytkowników" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:455 msgid "" "Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Ustaw domyślne uprawnienia do publikowania dla wszystkich nowych członków na domyślną grupę prywatności, a nie publiczną." +"circle rather than public." +msgstr "" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:456 msgid "Don't include post content in email notifications" msgstr "Nie wklejaj zawartości postu do powiadomienia o poczcie" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:456 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 "W celu ochrony prywatności, nie włączaj zawartości postu/komentarza/wiadomości prywatnej/etc. do powiadomień w wiadomościach mailowych wysyłanych z tej strony." -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:457 msgid "Disallow public access to addons listed in the apps menu." msgstr "Nie zezwalaj na publiczny dostęp do dodatkowych wtyczek wyszczególnionych w menu aplikacji." -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:457 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Zaznaczenie tego pola spowoduje ograniczenie dodatków wymienionych w menu aplikacji tylko dla członków." -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:458 msgid "Don't embed private images in posts" msgstr "Nie umieszczaj prywatnych zdjęć we wpisach" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:458 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 " @@ -5575,11 +4850,11 @@ msgid "" "while." msgstr "Nie zastępuj lokalnie hostowanych zdjęć prywatnych we wpisach za pomocą osadzonej kopii obrazu. Oznacza to, że osoby, które otrzymują posty zawierające prywatne zdjęcia, będą musiały uwierzytelnić i wczytać każdy obraz, co może trochę potrwać." -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:459 msgid "Explicit Content" msgstr "Treści dla dorosłych" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:459 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 " @@ -5588,257 +4863,267 @@ msgid "" "will be shown at the user registration page." msgstr "Ustaw to, aby ogłosić, że Twój węzeł jest używany głównie do jawnej treści, która może nie być odpowiednia dla nieletnich. Informacje te zostaną opublikowane w informacjach o węźle i mogą zostać wykorzystane, np. w katalogu globalnym, aby filtrować węzeł z list węzłów do przyłączenia. Dodatkowo notatka o tym zostanie pokazana na stronie rejestracji użytkownika." -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:460 msgid "Proxify external content" msgstr "Udostępniaj treści zewnętrzne" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:460 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "Kieruj zawartość zewnętrzną za pośrednictwem funkcji proxy. Jest to używane na przykład w przypadku niektórych dostępów OEmbed i w niektórych innych rzadkich przypadkach." -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:461 msgid "Cache contact avatars" msgstr "Buforuj awatary kontaktów" -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:461 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "Lokalnie przechowuj zdjęcia awatarów kontaktów. To zajmuje dużo miejsca, ale zwiększa wydajność." -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:462 msgid "Allow Users to set remote_self" msgstr "Zezwól użytkownikom na ustawienie remote_self" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:462 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 "Po sprawdzeniu tego każdy użytkownik może zaznaczyć każdy kontakt jako zdalny w oknie dialogowym kontaktu naprawczego. Ustawienie tej flagi na kontakcie powoduje dublowanie każdego wpisu tego kontaktu w strumieniu użytkowników." -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:463 msgid "Enable multiple registrations" msgstr "Włącz wiele rejestracji" -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:463 msgid "Enable users to register additional accounts for use as pages." msgstr "Zezwól użytkownikom na rejestrowanie dodatkowych kont do użytku jako strony." -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID" msgstr "Włącz OpenID" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID support for registration and logins." msgstr "Włącz obsługę OpenID dla rejestracji i logowania." -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:465 msgid "Enable Fullname check" msgstr "Włącz sprawdzanie pełnej nazwy" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:465 msgid "" "Enable check to only allow users to register with a space between the first " "name and the last name in their full name." msgstr "Włącz sprawdzenie, aby zezwolić użytkownikom tylko na rejestrację ze spacją między imieniem a nazwiskiem w ich pełnym imieniu." -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "Jeśli ta opcja jest włączona, a system jest ustawiony na otwartą rejestrację, wiadomość e-mail dla każdej nowej rejestracji jest wysyłana do administratorów." + +#: src/Module/Admin/Site.php:467 msgid "Community pages for visitors" msgstr "Strony społecznościowe dla odwiedzających" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:467 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Które strony społeczności powinny być dostępne dla odwiedzających. Lokalni użytkownicy zawsze widzą obie strony." -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:468 msgid "Posts per user on community page" msgstr "Lista wpisów użytkownika na stronie społeczności" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:468 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "\"Global Community\")" msgstr "Maksymalna liczba postów na użytkownika na stronie społeczności. (Nie dotyczy „Globalnej społeczności”)" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:470 msgid "Enable Mail support" msgstr "Włącz obsługę maili" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:470 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "Włącz wbudowaną obsługę poczty, aby odpytywać katalogi IMAP i odpowiadać pocztą." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:471 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "Nie można włączyć obsługi poczty, ponieważ moduł PHP IMAP nie jest zainstalowany." -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:472 msgid "Enable OStatus support" msgstr "Włącz obsługę OStatus" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:472 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "Włącz wbudowaną kompatybilność z OStatus (StatusNet, GNU Social itp.). Wszystkie komunikaty w OSstatus są publiczne." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:474 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Obsługa Diaspory nie może być włączona, ponieważ Friendica została zainstalowana w podkatalogu." -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:475 msgid "Enable Diaspora support" msgstr "Włączyć obsługę Diaspory" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:475 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "Włącz wbudowaną kompatybilność sieci Diaspora do komunikacji z serwerami diaspory." -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:476 msgid "Verify SSL" msgstr "Weryfikacja SSL" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:476 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 "Jeśli chcesz, możesz włączyć ścisłe sprawdzanie certyfikatu. Oznacza to, że nie możesz połączyć się (w ogóle) z własnoręcznie podpisanymi stronami SSL." -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:477 msgid "Proxy user" msgstr "Użytkownik proxy" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:477 msgid "User name for the proxy server." msgstr "Nazwa użytkownika serwera proxy." -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:478 msgid "Proxy URL" msgstr "URL pośrednika" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:478 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "Jeśli chcesz używać serwera proxy, którego Friendica powinna używać do łączenia się z siecią, umieść tutaj adres URL proxy." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:479 msgid "Network timeout" msgstr "Limit czasu sieci" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:479 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Wartość jest w sekundach. Ustaw na 0 dla nieograniczonej (niezalecane)." -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:480 msgid "Maximum Load Average" msgstr "Maksymalne obciążenie średnie" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:480 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "Maksymalne obciążenie systemu przed dostarczeniem i procesami odpytywania jest odroczone - domyślnie %d." -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:481 msgid "Minimal Memory" msgstr "Minimalna pamięć" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:481 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "Minimalna wolna pamięć w MB dla workera. Potrzebuje dostępu do /proc/ meminfo - domyślnie 0 (wyłączone)." -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables" msgstr "Okresowo optymalizuj tabele" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "Okresowo optymalizuj tabele, takie jak pamięć podręczna i kolejka workerów" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:484 msgid "Discover followers/followings from contacts" msgstr "Odkryj obserwujących/obserwowanych z kontaktów" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:484 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "Jeśli ta opcja jest włączona, kontakty są sprawdzane pod kątem ich obserwujących i śledzonych kontaktów." -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:485 msgid "None - deactivated" msgstr "Brak - dezaktywowany" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:486 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "Kontakty lokalne - kontakty naszych lokalnych kontaktów są wykrywane dla ich obserwujących/obserwujących." -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:487 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "Interaktorzy - kontakty naszych lokalnych kontaktów i kontakty, które wchodziły w interakcję z lokalnie widocznymi wpisami, są wykrywane dla ich obserwujących/obserwowanych." -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:489 msgid "Synchronize the contacts with the directory server" msgstr "Synchronizuj kontakty z serwerem katalogowym" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:489 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "jeśli ta opcja jest włączona, system będzie okresowo sprawdzać nowe kontakty na zdefiniowanym serwerze katalogowym." -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:491 msgid "Days between requery" msgstr "Dni między żądaniem" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:491 msgid "Number of days after which a server is requeried for his contacts." msgstr "Liczba dni, po upływie których serwer jest żądany dla swoich kontaktów." -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:492 msgid "Discover contacts from other servers" msgstr "Odkryj kontakty z innych serwerów" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:492 msgid "" "Periodically query other servers for contacts. The system queries Friendica," " Mastodon and Hubzilla servers." msgstr "Okresowo pytaj inne serwery o kontakty. System wysyła zapytania do serwerów Friendica, Mastodon i Hubzilla." -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:493 msgid "Search the local directory" msgstr "Wyszukaj w lokalnym katalogu" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:493 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 "Wyszukaj lokalny katalog zamiast katalogu globalnego. Podczas wyszukiwania lokalnie każde wyszukiwanie zostanie wykonane w katalogu globalnym w tle. Poprawia to wyniki wyszukiwania, gdy wyszukiwanie jest powtarzane." -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:495 msgid "Publish server information" msgstr "Publikuj informacje o serwerze" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:495 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 " @@ -5846,50 +5131,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "Jeśli ta opcja jest włączona, ogólne dane dotyczące serwera i użytkowania zostaną opublikowane. Dane zawierają nazwę i wersję serwera, liczbę użytkowników z profilami publicznymi, liczbę postów i aktywowane protokoły i złącza. Szczegółowe informacje można znaleźć na the-federation.info." -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:497 msgid "Check upstream version" msgstr "Sprawdź wersję powyżej" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:497 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 "Umożliwia sprawdzenie nowych wersji Friendica na github. Jeśli pojawi się nowa wersja, zostaniesz o tym poinformowany w panelu administracyjnym." -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:498 msgid "Suppress Tags" msgstr "Pomiń znaczniki" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:498 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Pomiń wyświetlenie listy hashtagów na końcu wpisu." -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:499 msgid "Clean database" msgstr "Wyczyść bazę danych" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:499 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Usuń stare zdalne pozycje, osierocone rekordy bazy danych i starą zawartość z innych tabel pomocników." -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:500 msgid "Lifespan of remote items" msgstr "Żywotność odległych przedmiotów" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:500 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 "Po włączeniu czyszczenia bazy danych określa dni, po których zdalne elementy zostaną usunięte. Własne przedmioty oraz oznaczone lub wypełnione pozycje są zawsze przechowywane. 0 wyłącza to zachowanie." -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:501 msgid "Lifespan of unclaimed items" msgstr "Żywotność nieodebranych przedmiotów" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:501 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5897,144 +5182,144 @@ msgid "" "items if set to 0." msgstr "Po włączeniu czyszczenia bazy danych określa się dni, po których usunięte zostaną nieodebrane zdalne elementy (głównie zawartość z przekaźnika). Wartość domyślna to 90 dni. Wartość domyślna dla ogólnej długości życia zdalnych pozycji, jeśli jest ustawiona na 0." -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:502 msgid "Lifespan of raw conversation data" msgstr "Trwałość nieprzetworzonych danych konwersacji" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:502 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 "Dane konwersacji są używane do ActivityPub i OStatus, a także do celów debugowania. Powinno być bezpieczne usunięcie go po 14 dniach, domyślnie jest to 90 dni." -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:503 msgid "Maximum numbers of comments per post" msgstr "Maksymalna liczba komentarzy na wpis" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:503 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Ile komentarzy powinno być wyświetlanych dla każdego wpisu? Domyślna wartość to 100." -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:504 msgid "Maximum numbers of comments per post on the display page" msgstr "Maksymalna liczba komentarzy na wpis na wyświetlanej stronie" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:504 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "Ile komentarzy powinno być wyświetlanych w pojedynczym widoku dla każdego wpisu? Wartość domyślna to 1000." -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:505 msgid "Temp path" msgstr "Ścieżka do temp" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:505 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Jeśli masz zastrzeżony system, w którym serwer internetowy nie może uzyskać dostępu do ścieżki temp systemu, wprowadź tutaj inną ścieżkę." -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:506 msgid "Only search in tags" msgstr "Szukaj tylko w znacznikach" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:506 msgid "On large systems the text search can slow down the system extremely." msgstr "W dużych systemach wyszukiwanie tekstu może wyjątkowo spowolnić system." -#: src/Module/Admin/Site.php:539 -msgid "Generate counts per contact group when calculating network count" -msgstr "Generuj liczniki na grupę kontaktów podczas obliczania liczby sieci" +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:507 msgid "" -"On systems with users that heavily use contact groups the query can be very " -"expensive." -msgstr "W systemach, w których użytkownicy intensywnie korzystają z grup kontaktów, zapytanie może być bardzo kosztowne." +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:509 msgid "Maximum number of parallel workers" msgstr "Maksymalna liczba równoległych workerów" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:509 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "Na udostępnionych usługach hostingowych ustaw tę opcję %d. W większych systemach wartości %dsą świetne . Wartość domyślna to %d." -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:510 msgid "Enable fastlane" msgstr "Włącz Fastlane" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:510 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "Po włączeniu, system Fastlane uruchamia dodatkowego workera, jeśli procesy o wyższym priorytecie są blokowane przez procesy o niższym priorytecie." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:512 msgid "Direct relay transfer" msgstr "Bezpośredni transfer przekaźników" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:512 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Umożliwia bezpośredni transfer do innych serwerów bez korzystania z serwerów przekazujących" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:513 msgid "Relay scope" msgstr "Zakres przekaźnika" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:513 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 "Mogą to być „wszystkie” lub „znaczniki”. „Wszystkie” oznacza, że ​​każdy publiczny wpis powinien zostać odebrany. „Znaczniki” oznaczają, że powinny być odbierane tylko wpisy z wybranymi znacznikami." -#: src/Module/Admin/Site.php:545 src/Module/Contact/Profile.php:273 -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Disabled" msgstr "Wyłączony" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:513 msgid "all" msgstr "wszystko" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:513 msgid "tags" msgstr "znaczniki" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:514 msgid "Server tags" msgstr "Znaczniki serwera" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:514 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Rozdzielana przecinkami lista tagów dla subskrypcji „tagi”." -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:515 msgid "Deny Server tags" msgstr "Odrzuć znaczniki serwera" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:515 msgid "Comma separated list of tags that are rejected." msgstr "Lista oddzielonych przecinkami znaczników, które zostały odrzucone." -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:516 msgid "Allow user tags" msgstr "Pozwól na znaczniki użytkowników" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:516 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "Jeśli ta opcja jest włączona, tagi z zapisanych wyszukiwań będą używane jako subskrypcja „tagów” jako uzupełnienie do \"relay_server_tags\"." -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:519 msgid "Start Relocation" msgstr "Rozpocznij przenoszenie" @@ -6060,7 +5345,7 @@ msgstr "Bieżące zaplecze pamięci przechowywania" msgid "Storage Configuration" msgstr "Konfiguracja przechowywania" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:94 +#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 msgid "Storage" msgstr "Przechowywanie" @@ -6080,16 +5365,22 @@ msgstr "Zapisz i wczytaj ponownie" msgid "This backend doesn't have custom settings" msgstr "Ten backend nie ma niestandardowych ustawień" -#: src/Module/Admin/Storage.php:149 +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "" + +#: src/Module/Admin/Storage.php:150 msgid "Database (legacy)" msgstr "Baza danych (legacy)" -#: src/Module/Admin/Summary.php:54 +#: src/Module/Admin/Summary.php:55 #, php-format msgid "Template engine (%s) error: %s" msgstr "Silnik szablonów (%s) błąd: %s" -#: src/Module/Admin/Summary.php:58 +#: src/Module/Admin/Summary.php:59 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -6100,7 +5391,7 @@ msgid "" " an automatic conversion.
    " msgstr "Twoja baza danych nadal używa tabel MyISAM. Powinieneś(-naś) zmienić typ silnika na InnoDB. Ponieważ Friendica będzie używać w przyszłości wyłącznie funkcji InnoDB, powinieneś(-naś) to zmienić! Zobacz tutaj przewodnik, który może być pomocny w konwersji silników tabel. Możesz także użyć polecenia php bin/console.php dbstructure toinnodb instalacji Friendica, aby dokonać automatycznej konwersji.
    " -#: src/Module/Admin/Summary.php:63 +#: src/Module/Admin/Summary.php:64 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -6111,7 +5402,7 @@ msgid "" " installation for an automatic conversion.
    " msgstr "Twoja baza danych nadal działa z tabelami InnoDB w formacie pliku Antelope. Powinieneś zmienić format pliku na Barracuda. Friendica korzysta z funkcji, których nie zapewnia format Antelope. Zobacz tutaj przewodnik, który może być pomocny w konwersji silników tabel. Możesz również użyć polecenia php bin/console.php dbstructure toinnodb Twojej instalacji Friendica do automatycznej konwersji.
    " -#: src/Module/Admin/Summary.php:73 +#: src/Module/Admin/Summary.php:74 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -6119,39 +5410,46 @@ msgid "" " to %d. See here for more information.
    " msgstr "Twoja pamięć podręczna w table_definition_cache jest zbyt niska (%d). Może to prowadzić do błędu bazy danych „Przygotowana instrukcja wymaga ponownego przygotowania”. Ustaw przynajmniej na %d. Zobacz tutaj, aby uzyskać więcej informacji.
    " -#: src/Module/Admin/Summary.php:83 +#: src/Module/Admin/Summary.php:85 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "Dostępna jest nowa wersja aplikacji Friendica. Twoja aktualna wersja to %1$s wyższa wersja to %2$s" -#: src/Module/Admin/Summary.php:92 +#: src/Module/Admin/Summary.php:94 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "Aktualizacja bazy danych nie powiodła się. Uruchom polecenie \"php bin/console.php dbstructure update\" z wiersza poleceń i sprawdź błędy, które mogą się pojawić." -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:98 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "Ostatnia aktualizacja nie powiodła się. Uruchom polecenie \"php bin/console.php dbstructure update\" z wiersza poleceń i spójrz na błędy, które mogą się pojawić. (Niektóre błędy są prawdopodobnie w pliku dziennika)." -#: src/Module/Admin/Summary.php:101 +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "" + +#: src/Module/Admin/Summary.php:107 msgid "The worker was never executed. Please check your database structure!" msgstr "Worker nigdy nie został wykonany. Sprawdź swoją strukturę bazy danych!" -#: src/Module/Admin/Summary.php:103 +#: src/Module/Admin/Summary.php:109 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "Ostatnie wykonanie workera było w %s UTC. To jest starsze niż jedna godzina. Sprawdź ustawienia crontab." -#: src/Module/Admin/Summary.php:108 +#: src/Module/Admin/Summary.php:114 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6160,7 +5458,7 @@ msgid "" "help with the transition." msgstr "Konfiguracja Friendiki jest teraz przechowywana w config/local.config.php, skopiuj config/local-sample.config.php i przenieś swoją konfigurację z .htconfig.php. Zobacz stronę pomocy Config, aby uzyskać pomoc dotyczącą przejścia." -#: src/Module/Admin/Summary.php:112 +#: src/Module/Admin/Summary.php:118 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6169,7 +5467,7 @@ msgid "" "page for help with the transition." msgstr "Konfiguracja Friendiki jest teraz przechowywana w config/local.config.php, skopiuj config/local-sample.config.php i przenieś konfigurację z config/local.ini.php. Zobacz stronę pomocy Config, aby uzyskać pomoc dotyczącą przejścia." -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:124 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -6177,83 +5475,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s nie jest osiągalny w twoim systemie. Jest to poważny problem z konfiguracją, który uniemożliwia komunikację między serwerami. Zobacz pomoc na stronie instalacji." -#: src/Module/Admin/Summary.php:136 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "Plik dziennika „%s” nie nadaje się do użytku. Brak możliwości logowania (błąd: '%s')" - -#: src/Module/Admin/Summary.php:150 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "Plik dziennika debugowania „%s” nie nadaje się do użytku. Brak możliwości logowania (błąd: '%s')" - -#: src/Module/Admin/Summary.php:166 +#: src/Module/Admin/Summary.php:148 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "System.basepath Friendiki został zaktualizowany z '%s' do '%s'. Usuń system.basepath z bazy danych, aby uniknąć różnic." -#: src/Module/Admin/Summary.php:174 +#: src/Module/Admin/Summary.php:156 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "Obecny system.basepath Friendiki '%s' jest nieprawidłowy i plik konfiguracyjny '%s' nie jest używany." -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:164 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "Obecny system.basepath Friendiki '%s' nie jest równy plikowi konfiguracyjnemu '%s'. Napraw konfigurację." -#: src/Module/Admin/Summary.php:189 -msgid "Normal Account" -msgstr "Konto normalne" - -#: src/Module/Admin/Summary.php:190 -msgid "Automatic Follower Account" -msgstr "Automatyczne konto obserwatora" - -#: src/Module/Admin/Summary.php:191 -msgid "Public Forum Account" -msgstr "Publiczne konto na forum" - -#: src/Module/Admin/Summary.php:192 -msgid "Automatic Friend Account" -msgstr "Automatyczny przyjaciel konta" - -#: src/Module/Admin/Summary.php:193 -msgid "Blog Account" -msgstr "Konto bloga" - -#: src/Module/Admin/Summary.php:194 -msgid "Private Forum Account" -msgstr "Prywatne konto na forum" - -#: src/Module/Admin/Summary.php:214 +#: src/Module/Admin/Summary.php:175 msgid "Message queues" msgstr "Wiadomości" -#: src/Module/Admin/Summary.php:220 +#: src/Module/Admin/Summary.php:181 msgid "Server Settings" msgstr "Ustawienia serwera" -#: src/Module/Admin/Summary.php:236 -msgid "Registered users" -msgstr "Zarejestrowani użytkownicy" - -#: src/Module/Admin/Summary.php:238 -msgid "Pending registrations" -msgstr "Oczekujące rejestracje" - -#: src/Module/Admin/Summary.php:239 +#: src/Module/Admin/Summary.php:199 msgid "Version" msgstr "Wersja" -#: src/Module/Admin/Summary.php:243 +#: src/Module/Admin/Summary.php:203 msgid "Active addons" msgstr "Aktywne dodatki" @@ -6277,7 +5532,7 @@ msgid "Screenshot" msgstr "Zrzut ekranu" #: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:97 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 msgid "Themes" msgstr "Wygląd" @@ -6293,34 +5548,34 @@ msgstr "Motywy zostały ponownie wczytane" msgid "Reload active themes" msgstr "Wczytaj ponownie aktywne motywy" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:118 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "Nie znaleziono motywów w systemie. Powinny zostać umieszczone %1$s" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:119 msgid "[Experimental]" msgstr "[Eksperymentalne]" -#: src/Module/Admin/Themes/Index.php:121 +#: src/Module/Admin/Themes/Index.php:120 msgid "[Unsupported]" msgstr "[Niewspieralne]" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 msgid "Display Terms of Service" msgstr "Wyświetl Warunki korzystania z usługi" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 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 "Włącz stronę Warunki świadczenia usług. Jeśli ta opcja jest włączona, link do warunków zostanie dodany do formularza rejestracyjnego i strony z informacjami ogólnymi." -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 msgid "Display Privacy Statement" msgstr "Wyświetl oświadczenie o prywatności" -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -6328,230 +5583,34 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "Pokaż informacje dotyczące potrzebnych informacji do obsługi węzła zgodnie z np. EU-RODO." -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:81 msgid "Privacy Statement Preview" msgstr "Podgląd oświadczenia o prywatności" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "The Terms of Service" msgstr "Warunki świadczenia usług" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "Wprowadź tutaj Warunki świadczenia usług dla swojego węzła. Możesz użyć BBCode. Nagłówki sekcji powinny być [h2] i poniżej." -#: src/Module/Admin/Users/Active.php:45 src/Module/Admin/Users/Index.php:45 +#: src/Module/Admin/Tos.php:84 +msgid "The rules" +msgstr "Zasady" + +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." +msgstr "Wprowadź tutaj swoje reguły systemowe. Każda linia reprezentuje jedną regułę." + +#: src/Module/Api/ApiResponse.php:279 #, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "%s użytkownik zablokowany" -msgstr[1] "%s użytkowników zablokowanych" -msgstr[2] "%s użytkowników zablokowanych" -msgstr[3] "%s użytkownicy zablokowani" +msgid "API endpoint %s %s is not implemented but might be in the future." +msgstr "" -#: 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 "Nie możesz usunąć siebie" - -#: 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] "usunięto %s użytkownika" -msgstr[1] "usunięto %s użytkowników" -msgstr[2] "usunięto %s użytkowników" -msgstr[3] "%s usuniętych użytkowników" - -#: src/Module/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 "Użytkownik \"%s\" usunięty" - -#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103 -#, php-format -msgid "User \"%s\" blocked" -msgstr "Użytkownik \"%s\" zablokowany" - -#: 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 "Data rejestracji" - -#: 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 "Ostatnie logowanie" - -#: 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 "Ostatni element publiczny" - -#: src/Module/Admin/Users/Active.php:137 -msgid "Active Accounts" -msgstr "Aktywne konta" - -#: 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 "Użytkownik zablokowany" - -#: 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 "Administracja stroną" - -#: 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 "Konto wygasło" - -#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161 -msgid "Create a new user" -msgstr "Utwórz nowego użytkownika" - -#: 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 "Zaznaczeni użytkownicy zostaną usunięci!\\n\\n Wszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\n Jesteś pewien?" - -#: src/Module/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 "Użytkownik {0} zostanie usunięty!\\n\\n Wszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\n Jesteś pewien?" - -#: 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 użytkownik odblokowany" -msgstr[1] "%s użytkowników odblokowanych" -msgstr[2] "%s użytkowników odblokowanych" -msgstr[3] "%s użytkowników odblokowanych" - -#: src/Module/Admin/Users/Blocked.php:96 src/Module/Admin/Users/Index.php:109 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "Użytkownik \"%s\" odblokowany" - -#: src/Module/Admin/Users/Blocked.php:138 -msgid "Blocked Users" -msgstr "Zablokowani użytkownicy" - -#: src/Module/Admin/Users/Create.php:62 -msgid "New User" -msgstr "Nowy użytkownik" - -#: src/Module/Admin/Users/Create.php:63 -msgid "Add User" -msgstr "Dodaj użytkownika" - -#: src/Module/Admin/Users/Create.php:71 -msgid "Name of the new user." -msgstr "Nazwa nowego użytkownika." - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname" -msgstr "Pseudonim" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname of the new user." -msgstr "Pseudonim nowego użytkownika." - -#: src/Module/Admin/Users/Create.php:73 -msgid "Email address of the new user." -msgstr "Adres email nowego użytkownika." - -#: src/Module/Admin/Users/Deleted.php:86 -msgid "Users awaiting permanent deletion" -msgstr "Użytkownicy oczekujący na trwałe usunięcie" - -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:162 -msgid "Permanent deletion" -msgstr "Trwałe usunięcie" - -#: src/Module/Admin/Users/Index.php:150 src/Module/Admin/Users/Index.php:160 -#: src/Module/BaseAdmin.php:95 -msgid "Users" -msgstr "Użytkownicy" - -#: src/Module/Admin/Users/Index.php:152 -msgid "User waiting for permanent deletion" -msgstr "Użytkownik czekający na trwałe usunięcie" - -#: src/Module/Admin/Users/Pending.php:48 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "%s użytkownik zatwierdzony" -msgstr[1] "%s użytkowników zatwierdzonych" -msgstr[2] "%s użytkowników zatwierdzonych" -msgstr[3] "%s użytkowników zatwierdzonych" - -#: src/Module/Admin/Users/Pending.php:55 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "%s rejestrację cofnięto" -msgstr[1] "%s rejestracje cofnięto" -msgstr[2] "%s rejestracji cofnięto" -msgstr[3] "%s rejestracji cofnięto " - -#: src/Module/Admin/Users/Pending.php:81 -msgid "Account approved." -msgstr "Konto zatwierdzone." - -#: src/Module/Admin/Users/Pending.php:87 -msgid "Registration revoked" -msgstr "Rejestracja odwołana" - -#: src/Module/Admin/Users/Pending.php:102 -msgid "User registrations awaiting review" -msgstr "Rejestracje użytkowników oczekujące na sprawdzenie" - -#: src/Module/Admin/Users/Pending.php:104 -msgid "Request date" -msgstr "Data prośby" - -#: src/Module/Admin/Users/Pending.php:105 -msgid "No registrations." -msgstr "Brak rejestracji." - -#: src/Module/Admin/Users/Pending.php:106 -msgid "Note from the user" -msgstr "Uwaga od użytkownika" - -#: src/Module/Admin/Users/Pending.php:108 -msgid "Deny" -msgstr "Odmów" - -#: src/Module/Api/ApiResponse.php:272 -#, php-format -msgid "API endpoint %s %s is not implemented" -msgstr "Punkt końcowy API %s %s nie jest zaimplementowany" - -#: src/Module/Api/ApiResponse.php:273 -msgid "" -"The API endpoint is currently not implemented but might be in the future." -msgstr "Punkt końcowy interfejsu API nie jest obecnie zaimplementowany, ale może zostać w przyszłości." - -#: src/Module/Api/Mastodon/Apps.php:63 +#: src/Module/Api/Mastodon/Apps.php:73 msgid "Missing parameters" msgstr "Brakuje parametrów" @@ -6559,11 +5618,11 @@ msgstr "Brakuje parametrów" msgid "Only starting posts can be bookmarked" msgstr "Tylko początkowe wpisy można dodawać do zakładek" -#: src/Module/Api/Mastodon/Statuses/Mute.php:50 +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 msgid "Only starting posts can be muted" msgstr "Można wyciszyć tylko początkowe wpisy" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:56 #, php-format msgid "Posts from %s can't be shared" msgstr "Wpisy od %s nie mogą być udostępniane" @@ -6572,11 +5631,11 @@ msgstr "Wpisy od %s nie mogą być udostępniane" msgid "Only starting posts can be unbookmarked" msgstr "Tylko początkowe wpisy można usunąć z zakładek" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:50 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 msgid "Only starting posts can be unmuted" msgstr "Wyłączać wyciszenie można tylko we wpisach początkowych" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:62 #, php-format msgid "Posts from %s can't be unshared" msgstr "Nie można cofnąć udostępniania wpisów %s" @@ -6585,110 +5644,99 @@ msgstr "Nie można cofnąć udostępniania wpisów %s" msgid "Contact not found" msgstr "Nie znaleziono kontaktu" -#: src/Module/Apps.php:54 +#: src/Module/Apps.php:62 msgid "No installed applications." msgstr "Brak zainstalowanych aplikacji." -#: src/Module/Apps.php:59 +#: src/Module/Apps.php:67 msgid "Applications" msgstr "Aplikacje" -#: src/Module/Attach.php:50 src/Module/Attach.php:62 +#: src/Module/Attach.php:49 src/Module/Attach.php:61 msgid "Item was not found." msgstr "Element nie znaleziony." -#: src/Module/BaseAdmin.php:57 src/Module/BaseAdmin.php:61 +#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 msgid "Please login to continue." msgstr "Zaloguj się aby kontynuować." -#: src/Module/BaseAdmin.php:66 +#: src/Module/BaseAdmin.php:63 msgid "You don't have access to administration pages." msgstr "Nie masz dostępu do stron administracyjnych." -#: src/Module/BaseAdmin.php:70 +#: src/Module/BaseAdmin.php:67 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "Konto zarządzane podrzędnie nie ma dostępu do stron administracyjnych. Zaloguj się ponownie poprzez konto główne." -#: src/Module/BaseAdmin.php:89 +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 msgid "Overview" msgstr "Przegląd" -#: src/Module/BaseAdmin.php:92 +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 msgid "Configuration" msgstr "Konfiguracja" -#: src/Module/BaseAdmin.php:98 src/Module/BaseSettings.php:63 +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 msgid "Additional features" msgstr "Dodatkowe funkcje" -#: src/Module/BaseAdmin.php:101 +#: src/Module/BaseAdmin.php:97 msgid "Database" msgstr "Baza danych" -#: src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:98 msgid "DB updates" msgstr "Aktualizacje bazy danych" -#: src/Module/BaseAdmin.php:103 +#: src/Module/BaseAdmin.php:99 msgid "Inspect Deferred Workers" msgstr "Sprawdź odroczonych workerów" -#: src/Module/BaseAdmin.php:104 +#: src/Module/BaseAdmin.php:100 msgid "Inspect worker Queue" msgstr "Sprawdź kolejkę workerów" -#: src/Module/BaseAdmin.php:106 -msgid "Tools" -msgstr "Narzędzia" - -#: src/Module/BaseAdmin.php:107 -msgid "Contact Blocklist" -msgstr "Lista zablokowanych kontaktów" - -#: src/Module/BaseAdmin.php:108 -msgid "Server Blocklist" -msgstr "Lista zablokowanych serwerów" - -#: src/Module/BaseAdmin.php:115 +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 msgid "Diagnostics" msgstr "Diagnostyka" -#: src/Module/BaseAdmin.php:116 +#: src/Module/BaseAdmin.php:107 msgid "PHP Info" msgstr "Informacje o PHP" -#: src/Module/BaseAdmin.php:117 +#: src/Module/BaseAdmin.php:108 msgid "probe address" msgstr "adres probe" -#: src/Module/BaseAdmin.php:118 +#: src/Module/BaseAdmin.php:109 msgid "check webfinger" msgstr "sprawdź webfinger" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:110 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:121 src/Module/Debug/ActivityPubConversion.php:142 +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 msgid "ActivityPub Conversion" msgstr "Konwersja ActivityPub" -#: src/Module/BaseAdmin.php:130 +#: src/Module/BaseAdmin.php:120 msgid "Addon Features" msgstr "Funkcje dodatkowe" -#: src/Module/BaseAdmin.php:131 +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 msgid "User registrations waiting for confirmation" msgstr "Rejestracje użytkowników czekające na potwierdzenie" -#: src/Module/BaseApi.php:241 src/Module/BaseApi.php:257 -#: src/Module/BaseApi.php:273 +#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467 +#: src/Module/BaseApi.php:483 msgid "Too Many Requests" msgstr "Zbyt dużo próśb" -#: src/Module/BaseApi.php:242 +#: src/Module/BaseApi.php:452 #, 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." @@ -6697,7 +5745,7 @@ msgstr[1] "Dzienny limit opublikowanych %d postów. Post został odrzucony." msgstr[2] "Dzienny limit opublikowanych %d postów. Post został odrzucony." msgstr[3] "Został osiągnięty dzienny limit %d wysyłania wpisów. Wpis został odrzucony." -#: src/Module/BaseApi.php:258 +#: src/Module/BaseApi.php:468 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6707,67 +5755,142 @@ msgstr[1] "Tygodniowy limit wysyłania %d postów. Post został odrzucony." msgstr[2] "Tygodniowy limit wysyłania %d postów. Post został odrzucony." msgstr[3] "Został osiągnięty tygodniowy limit %d wysyłania wpisów. Wpis został odrzucony." -#: src/Module/BaseApi.php:274 +#: src/Module/BaseApi.php:484 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "Został osiągnięty miesięczny limit %d wysyłania wpisów. Wpis został odrzucony." +msgid_plural "" +"Monthly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Module/BaseProfile.php:51 src/Module/Contact.php:460 +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "" + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "" + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Użytkownicy" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "Narzędzia" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "Lista zablokowanych kontaktów" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "Lista zablokowanych serwerów" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "Usuń przedmiot" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "Źródło elementu" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 msgid "Profile Details" msgstr "Szczegóły profilu" -#: src/Module/BaseProfile.php:109 +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "" + +#: src/Module/BaseProfile.php:111 msgid "Only You Can See This" msgstr "Tylko ty możesz to zobaczyć" -#: src/Module/BaseProfile.php:114 src/Module/Profile/Schedule.php:82 +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 msgid "Scheduled Posts" msgstr "Zaplanowane wpisy" -#: src/Module/BaseProfile.php:117 +#: src/Module/BaseProfile.php:119 msgid "Posts that are scheduled for publishing" msgstr "Wpisy zaplanowane do publikacji" -#: src/Module/BaseProfile.php:136 src/Module/BaseProfile.php:139 +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 msgid "Tips for New Members" msgstr "Wskazówki dla nowych użytkowników" -#: src/Module/BaseSearch.php:69 +#: src/Module/BaseSearch.php:71 #, php-format msgid "People Search - %s" msgstr "Szukaj osób - %s" -#: src/Module/BaseSearch.php:79 +#: src/Module/BaseSearch.php:75 #, php-format -msgid "Forum Search - %s" -msgstr "Przeszukiwanie forum - %s" +msgid "Group Search - %s" +msgstr "" -#: src/Module/BaseSettings.php:41 +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "Brak wyników" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/BaseSettings.php:78 msgid "Account" msgstr "Konto" -#: src/Module/BaseSettings.php:48 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 msgid "Two-factor authentication" msgstr "Uwierzytelnianie dwuskładnikowe" -#: src/Module/BaseSettings.php:71 +#: src/Module/BaseSettings.php:118 msgid "Display" msgstr "Wygląd" -#: src/Module/BaseSettings.php:92 src/Module/Settings/Delegation.php:171 +#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "Portale społecznościowe" + +#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172 msgid "Manage Accounts" msgstr "Zarządzanie kontami" -#: src/Module/BaseSettings.php:99 +#: src/Module/BaseSettings.php:146 msgid "Connected apps" msgstr "Powiązane aplikacje" -#: src/Module/BaseSettings.php:106 src/Module/Settings/UserExport.php:76 +#: src/Module/BaseSettings.php:153 +msgid "Remote servers" +msgstr "" + +#: src/Module/BaseSettings.php:160 src/Module/Settings/UserExport.php:98 msgid "Export personal data" msgstr "Eksportuj dane osobiste" -#: src/Module/BaseSettings.php:113 +#: src/Module/BaseSettings.php:167 msgid "Remove account" msgstr "Usuń konto" @@ -6779,7 +5902,222 @@ msgstr "Na tej stronie brakuje parametru url." msgid "The post was created" msgstr "Wpis został utworzony" -#: src/Module/Contact.php:88 +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "Nieprawidłowe żądanie" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "Brak identyfikatora wydarzenia." + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "Nie udało się usunąć wydarzenia" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "Wydarzenie nie może się zakończyć przed jego rozpoczęciem." + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia." + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "Data rozpoczęcia i tytuł są wymagane." + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "Rozpoczęcie wydarzenia:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Wymagany" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "Zakończenie wydarzenia:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Udostępnij te wydarzenie" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "Podstawowy" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "Ten format kalendarza nie jest obsługiwany" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "Nie znaleziono danych do eksportu" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "kalendarz" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Wydarzenia" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "Widok" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Stwórz nowe wydarzenie" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:248 +msgid "list" +msgstr "lista" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "" + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "" + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "" + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "" + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "Nie znaleziono kontaktu." + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "Nieprawidłowy kontakt." + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "Kontakt został usunięty." + +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "" + +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "" + +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "" + +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "" + +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "Błędne żądanie." + +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "" + +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "Filtr" + +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "" + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "" + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "Członkowie" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "Kliknij na kontakt w celu dodania lub usunięcia." + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "" + +#: src/Module/Contact.php:97 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." @@ -6788,110 +6126,142 @@ msgstr[1] "Zedytowano %d kontakty." msgstr[2] "Zedytowano %d kontaktów." msgstr[3] "%dedytuj kontakty." -#: src/Module/Contact.php:309 +#: src/Module/Contact.php:348 msgid "Show all contacts" msgstr "Pokaż wszystkie kontakty" -#: src/Module/Contact.php:317 +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "Oczekujące" + +#: src/Module/Contact.php:356 msgid "Only show pending contacts" msgstr "Pokaż tylko oczekujące kontakty" -#: src/Module/Contact.php:325 +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Zablokowane" + +#: src/Module/Contact.php:364 msgid "Only show blocked contacts" msgstr "Pokaż tylko zablokowane kontakty" -#: src/Module/Contact.php:330 src/Module/Contact.php:377 -#: src/Object/Post.php:339 +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:368 msgid "Ignored" msgstr "Ignorowane" -#: src/Module/Contact.php:333 +#: src/Module/Contact.php:372 msgid "Only show ignored contacts" msgstr "Pokaż tylko ignorowane kontakty" -#: src/Module/Contact.php:338 src/Module/Contact.php:378 +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 msgid "Archived" msgstr "Zarchiwizowane" -#: src/Module/Contact.php:341 +#: src/Module/Contact.php:388 msgid "Only show archived contacts" msgstr "Pokaż tylko zarchiwizowane kontakty" -#: src/Module/Contact.php:346 src/Module/Contact.php:376 +#: src/Module/Contact.php:393 src/Module/Contact.php:438 msgid "Hidden" msgstr "Ukryte" -#: src/Module/Contact.php:349 +#: src/Module/Contact.php:396 msgid "Only show hidden contacts" msgstr "Pokaż tylko ukryte kontakty" -#: src/Module/Contact.php:357 -msgid "Organize your contact groups" -msgstr "Uporządkuj swoje grupy kontaktów" +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "" -#: src/Module/Contact.php:389 +#: src/Module/Contact.php:459 msgid "Search your contacts" msgstr "Wyszukaj w kontaktach" -#: src/Module/Contact.php:390 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 #, php-format msgid "Results for: %s" msgstr "Wyniki dla: %s" -#: src/Module/Contact.php:397 +#: src/Module/Contact.php:467 msgid "Update" msgstr "Zaktualizuj" -#: src/Module/Contact.php:399 src/Module/Contact/Profile.php:349 -#: src/Module/Contact/Profile.php:457 +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Odblokuj" + +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 msgid "Unignore" msgstr "Odblokuj" -#: src/Module/Contact.php:401 +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "" + +#: src/Module/Contact.php:472 msgid "Batch Actions" msgstr "Akcje wsadowe" -#: src/Module/Contact.php:436 +#: src/Module/Contact.php:515 msgid "Conversations started by this contact" msgstr "Rozmowy rozpoczęły się od tego kontaktu" -#: src/Module/Contact.php:441 +#: src/Module/Contact.php:520 msgid "Posts and Comments" msgstr "Wpisy i komentarze" -#: src/Module/Contact.php:452 +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "" + +#: src/Module/Contact.php:531 msgid "Posts containing media objects" msgstr "Wpisy zawierające obiekty multimedialne" -#: src/Module/Contact.php:467 +#: src/Module/Contact.php:539 msgid "View all known contacts" msgstr "Zobacz wszystkie znane kontakty" -#: src/Module/Contact.php:477 +#: src/Module/Contact.php:550 msgid "Advanced Contact Settings" msgstr "Zaawansowane ustawienia kontaktów" -#: src/Module/Contact.php:511 +#: src/Module/Contact.php:586 msgid "Mutual Friendship" msgstr "Wzajemna przyjaźń" -#: src/Module/Contact.php:515 +#: src/Module/Contact.php:590 msgid "is a fan of yours" msgstr "jest twoim fanem" -#: src/Module/Contact.php:519 +#: src/Module/Contact.php:594 msgid "you are a fan of" msgstr "jesteś fanem" -#: src/Module/Contact.php:537 +#: src/Module/Contact.php:612 msgid "Pending outgoing contact request" msgstr "Oczekujące żądanie kontaktu wychodzącego" -#: src/Module/Contact.php:539 +#: src/Module/Contact.php:614 msgid "Pending incoming contact request" msgstr "Oczekujące żądanie kontaktu przychodzącego" -#: src/Module/Contact.php:552 src/Module/Contact/Profile.php:334 +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 #, php-format msgid "Visit %s's profile [%s]" msgstr "Obejrzyj %s's profil [%s]" @@ -6904,6 +6274,19 @@ msgstr "Nie udało się zaktualizować kontaktu." msgid "Return to contact editor" msgstr "Wróć do edytora kontaktów" +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Nazwa" + #: src/Module/Contact/Advanced.php:135 msgid "Account Nickname" msgstr "Nazwa konta" @@ -6920,20 +6303,15 @@ msgstr "Adres Ankiety/RSS" msgid "New photo from this URL" msgstr "Nowe zdjęcie z tego adresu URL" -#: src/Module/Contact/Contacts.php:50 src/Module/Conversation/Network.php:187 -#: src/Module/Group.php:103 -msgid "Invalid contact." -msgstr "Nieprawidłowy kontakt." - -#: src/Module/Contact/Contacts.php:73 +#: src/Module/Contact/Contacts.php:89 msgid "No known contacts." msgstr "Brak znanych kontaktów." -#: src/Module/Contact/Contacts.php:87 src/Module/Profile/Common.php:98 +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 msgid "No common contacts." msgstr "Brak wspólnych kontaktów." -#: src/Module/Contact/Contacts.php:99 src/Module/Profile/Contacts.php:96 +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" @@ -6942,7 +6320,7 @@ msgstr[1] "Obserwujących (%s)" msgstr[2] "Obserwujących (%s)" msgstr[3] "Obserwujących (%s)" -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Contacts.php:99 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" @@ -6951,7 +6329,7 @@ msgstr[1] "Obserwowanych (%s)" msgstr[2] "Obserwowanych (%s)" msgstr[3] "Obserwowanych (%s)" -#: src/Module/Contact/Contacts.php:107 src/Module/Profile/Contacts.php:102 +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" @@ -6960,12 +6338,12 @@ msgstr[1] "Wspólnych przyjaciół (%s)" msgstr[2] "Wspólnych przyjaciół (%s)" msgstr[3] "Wspólnych przyjaciół (%s)" -#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:104 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "Te kontakty zarówno śledzą, jak i są śledzone przez %s." -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Common.php:86 +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" @@ -6974,14 +6352,14 @@ msgstr[1] "Wspólne kontakty (%s)" msgstr[2] "Wspólnych kontaktów (%s)" msgstr[3] "Wspólnych kontaktów (%s)" -#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:88 +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "Zarówno %s, jak i Ty, nawiązaliście publiczną interakcję z tymi kontaktami (obserwujecie, komentujecie lub polubiliście publiczne wpisy)." -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:110 +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" @@ -6990,383 +6368,505 @@ msgstr[1] "Kontakty (%s)" msgstr[2] "Kontaktów (%s)" msgstr[3] "Kontaktów (%s)" -#: src/Module/Contact/Poke.php:135 -msgid "Error while sending poke, please retry." -msgstr "Błąd wysyłania zaczepki, spróbuj ponownie." +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:165 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Brak dostępu." -#: src/Module/Contact/Poke.php:148 src/Module/Search/Acl.php:55 -msgid "You must be logged in to use this module." -msgstr "Musisz być zalogowany, aby korzystać z tego modułu." +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Wyślij zgłoszenie" -#: src/Module/Contact/Poke.php:171 -msgid "Poke/Prod" -msgstr "Zaczepić" +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "Już dodałeś ten kontakt." -#: src/Module/Contact/Poke.php:172 -msgid "poke, prod or do other things to somebody" -msgstr "szturchać, zaczepić lub robić inne rzeczy" +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Nie można wykryć typu sieci. Kontakt nie może zostać dodany." -#: src/Module/Contact/Poke.php:174 -msgid "Choose what you wish to do to recipient" -msgstr "Wybierz, co chcesz zrobić" +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Obsługa Diaspory nie jest włączona. Kontakt nie może zostać dodany." -#: src/Module/Contact/Poke.php:175 -msgid "Make this post private" -msgstr "Ustaw ten wpis jako prywatny" +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany." -#: src/Module/Contact/Profile.php:127 +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Proszę odpowiedzieć na następujące pytania:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "Twój adres tożsamości:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "Adres URL profilu" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Znaczniki:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "%s zna cię" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Dodaj osobistą notkę:" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" +msgstr "" + +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "Nie można dodać kontaktu." + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "Nieprawidłowe żądanie." + +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "Brak pasujących słów kluczowych. Dodaj słowa kluczowe do swojego profilu." + +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "Dopasowanie profilu" + +#: src/Module/Contact/Profile.php:140 msgid "Failed to update contact record." msgstr "Aktualizacja rekordu kontaktu nie powiodła się." -#: src/Module/Contact/Profile.php:177 +#: src/Module/Contact/Profile.php:190 msgid "Contact has been unblocked" msgstr "Kontakt został odblokowany" -#: src/Module/Contact/Profile.php:181 +#: src/Module/Contact/Profile.php:194 msgid "Contact has been blocked" msgstr "Kontakt został zablokowany" -#: src/Module/Contact/Profile.php:193 +#: src/Module/Contact/Profile.php:206 msgid "Contact has been unignored" msgstr "Kontakt nie jest ignorowany" -#: src/Module/Contact/Profile.php:197 +#: src/Module/Contact/Profile.php:210 msgid "Contact has been ignored" msgstr "Kontakt jest ignorowany" -#: src/Module/Contact/Profile.php:229 +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:254 #, php-format msgid "You are mutual friends with %s" msgstr "Jesteś już znajomym z %s" -#: src/Module/Contact/Profile.php:230 +#: src/Module/Contact/Profile.php:255 #, php-format msgid "You are sharing with %s" msgstr "Współdzielisz z %s" -#: src/Module/Contact/Profile.php:231 +#: src/Module/Contact/Profile.php:256 #, php-format msgid "%s is sharing with you" msgstr "%s współdzieli z tobą" -#: src/Module/Contact/Profile.php:247 +#: src/Module/Contact/Profile.php:272 msgid "Private communications are not available for this contact." msgstr "Nie można nawiązać prywatnej rozmowy z tym kontaktem." -#: src/Module/Contact/Profile.php:249 +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "" + +#: src/Module/Contact/Profile.php:285 msgid "Never" msgstr "Nigdy" -#: src/Module/Contact/Profile.php:252 +#: src/Module/Contact/Profile.php:288 msgid "(Update was not successful)" msgstr "(Aktualizacja nie powiodła się)" -#: src/Module/Contact/Profile.php:252 +#: src/Module/Contact/Profile.php:288 msgid "(Update was successful)" msgstr "(Aktualizacja przebiegła pomyślnie)" -#: src/Module/Contact/Profile.php:254 src/Module/Contact/Profile.php:420 +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 msgid "Suggest friends" msgstr "Osoby, które możesz znać" -#: src/Module/Contact/Profile.php:258 +#: src/Module/Contact/Profile.php:294 #, php-format msgid "Network type: %s" msgstr "Typ sieci: %s" -#: src/Module/Contact/Profile.php:263 +#: src/Module/Contact/Profile.php:299 msgid "Communications lost with this contact!" msgstr "Utracono komunikację z tym kontaktem!" -#: src/Module/Contact/Profile.php:269 +#: src/Module/Contact/Profile.php:305 msgid "Fetch further information for feeds" msgstr "Pobierz dalsze informacje dla kanałów" -#: src/Module/Contact/Profile.php:271 +#: src/Module/Contact/Profile.php:307 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 "Pobieranie informacji, takich jak zdjęcia podglądu, tytuł i zwiastun z elementu kanału. Możesz to aktywować, jeśli plik danych nie zawiera dużo tekstu. Słowa kluczowe są pobierane z nagłówka meta w elemencie kanału i są publikowane jako znaczniki haszowania." -#: src/Module/Contact/Profile.php:274 +#: src/Module/Contact/Profile.php:310 msgid "Fetch information" msgstr "Pobierz informacje" -#: src/Module/Contact/Profile.php:275 +#: src/Module/Contact/Profile.php:311 msgid "Fetch keywords" msgstr "Pobierz słowa kluczowe" -#: src/Module/Contact/Profile.php:276 +#: src/Module/Contact/Profile.php:312 msgid "Fetch information and keywords" msgstr "Pobierz informacje i słowa kluczowe" -#: src/Module/Contact/Profile.php:286 src/Module/Contact/Profile.php:292 -#: src/Module/Contact/Profile.php:297 src/Module/Contact/Profile.php:303 +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 msgid "No mirroring" msgstr "Bez dublowania" -#: src/Module/Contact/Profile.php:287 -msgid "Mirror as forwarded posting" -msgstr "Przesłany lustrzany post" - -#: src/Module/Contact/Profile.php:288 src/Module/Contact/Profile.php:298 -#: src/Module/Contact/Profile.php:304 +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 msgid "Mirror as my own posting" msgstr "Lustro mojego własnego komentarza" -#: src/Module/Contact/Profile.php:293 src/Module/Contact/Profile.php:299 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 msgid "Native reshare" msgstr "Udostępnianie natywne" -#: src/Module/Contact/Profile.php:316 +#: src/Module/Contact/Profile.php:353 msgid "Contact Information / Notes" msgstr "Informacje kontaktowe/Notatki" -#: src/Module/Contact/Profile.php:317 +#: src/Module/Contact/Profile.php:354 msgid "Contact Settings" msgstr "Ustawienia kontaktów" -#: src/Module/Contact/Profile.php:325 +#: src/Module/Contact/Profile.php:362 msgid "Contact" msgstr "Kontakt" -#: src/Module/Contact/Profile.php:329 +#: src/Module/Contact/Profile.php:366 msgid "Their personal note" msgstr "Ich osobista uwaga" -#: src/Module/Contact/Profile.php:331 +#: src/Module/Contact/Profile.php:368 msgid "Edit contact notes" msgstr "Edytuj notatki kontaktu" -#: src/Module/Contact/Profile.php:335 +#: src/Module/Contact/Profile.php:372 msgid "Block/Unblock contact" msgstr "Zablokuj/odblokuj kontakt" -#: src/Module/Contact/Profile.php:336 +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 msgid "Ignore contact" msgstr "Ignoruj kontakt" -#: src/Module/Contact/Profile.php:337 +#: src/Module/Contact/Profile.php:374 msgid "View conversations" msgstr "Wyświetl rozmowy" -#: src/Module/Contact/Profile.php:342 +#: src/Module/Contact/Profile.php:379 msgid "Last update:" msgstr "Ostatnia aktualizacja:" -#: src/Module/Contact/Profile.php:344 +#: src/Module/Contact/Profile.php:381 msgid "Update public posts" msgstr "Zaktualizuj publiczne wpisy" -#: src/Module/Contact/Profile.php:346 src/Module/Contact/Profile.php:430 +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 msgid "Update now" msgstr "Aktualizuj teraz" -#: src/Module/Contact/Profile.php:353 -msgid "Currently blocked" -msgstr "Obecnie zablokowany" - -#: src/Module/Contact/Profile.php:354 -msgid "Currently ignored" -msgstr "Obecnie zignorowany" - -#: src/Module/Contact/Profile.php:355 -msgid "Currently archived" -msgstr "Obecnie zarchiwizowany" - -#: src/Module/Contact/Profile.php:356 +#: src/Module/Contact/Profile.php:385 msgid "Awaiting connection acknowledge" msgstr "Oczekiwanie na potwierdzenie połączenia" -#: src/Module/Contact/Profile.php:357 -#: src/Module/Notifications/Introductions.php:190 +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "Obecnie zablokowany" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "Obecnie zignorowany" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "Obecnie zarchiwizowany" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "" + +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 msgid "Hide this contact from others" msgstr "Ukryj ten kontakt przed innymi" -#: src/Module/Contact/Profile.php:357 +#: src/Module/Contact/Profile.php:394 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Odpowiedzi/kliknięcia \"lubię to\" do Twoich publicznych wpisów nadal mogą być widoczne" -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:395 msgid "Notification for new posts" msgstr "Powiadomienie o nowych wpisach" -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:395 msgid "Send a notification of every new post of this contact" msgstr "Wyślij powiadomienie o każdym nowym poście tego kontaktu" -#: src/Module/Contact/Profile.php:360 +#: src/Module/Contact/Profile.php:397 msgid "Keyword Deny List" msgstr "Lista odrzuconych słów kluczowych" -#: src/Module/Contact/Profile.php:360 +#: src/Module/Contact/Profile.php:397 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Rozdzielana przecinkami lista słów kluczowych, które nie powinny zostać przekonwertowane na hashtagi, gdy wybrana jest opcja 'Pobierz informacje i słowa kluczowe'" -#: src/Module/Contact/Profile.php:378 -#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "Actions" msgstr "Akcja" -#: src/Module/Contact/Profile.php:386 +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "Stan" + +#: src/Module/Contact/Profile.php:423 msgid "Mirror postings from this contact" msgstr "Publikacje lustrzane od tego kontaktu" -#: src/Module/Contact/Profile.php:388 +#: src/Module/Contact/Profile.php:425 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "Oznacz ten kontakt jako remote_self, spowoduje to, że friendica odeśle nowe wpisy z tego kontaktu." -#: src/Module/Contact/Profile.php:440 +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" +msgstr "" + +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "" + +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "" + +#: src/Module/Contact/Profile.php:502 msgid "Refetch contact data" msgstr "Pobierz ponownie dane kontaktowe" -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:513 msgid "Toggle Blocked status" msgstr "Przełącz stan na Zablokowany" -#: src/Module/Contact/Profile.php:459 +#: src/Module/Contact/Profile.php:521 msgid "Toggle Ignored status" msgstr "Przełącz stan na Ignorowany" -#: src/Module/Contact/Profile.php:466 src/Module/Contact/Revoke.php:105 +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" +msgstr "" + +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 msgid "Revoke Follow" msgstr "Anuluj obserwowanie" -#: src/Module/Contact/Profile.php:468 +#: src/Module/Contact/Profile.php:538 msgid "Revoke the follow from this contact" msgstr "Anuluj obserwację przez ten kontakt" -#: src/Module/Contact/Revoke.php:62 +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "Błędne zapytanie." + +#: src/Module/Contact/Revoke.php:63 msgid "Unknown contact." msgstr "Nieznany kontakt." -#: src/Module/Contact/Revoke.php:72 src/Module/Group.php:112 -msgid "Contact is deleted." -msgstr "Kontakt został usunięty." - -#: src/Module/Contact/Revoke.php:76 +#: src/Module/Contact/Revoke.php:77 msgid "Contact is being deleted." msgstr "Kontakt jest usuwany." -#: src/Module/Contact/Revoke.php:90 +#: src/Module/Contact/Revoke.php:91 msgid "Follow was successfully revoked." msgstr "Obserwacja została pomyślnie anulowana." -#: src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Revoke.php:107 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "Czy na pewno chcesz cofnąć obserwowanie przez ten kontakt? Nie można tego cofnąć i przy chęci przywrócenia obserwacji będzie trzeba zrobić to ponownie ręcznie." -#: src/Module/Contact/Revoke.php:107 -#: src/Module/Notifications/Introductions.php:142 -#: src/Module/OAuth/Acknowledge.php:53 src/Module/Register.php:130 -#: src/Module/Settings/TwoFactor/Trusted.php:124 +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "Yes" msgstr "Tak" -#: src/Module/Conversation/Community.php:68 -msgid "Local Community" -msgstr "Lokalna społeczność" +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Brak dostępnych sugestii. Jeśli jest to nowa witryna, spróbuj ponownie za 24 godziny." -#: src/Module/Conversation/Community.php:71 -msgid "Posts from local users on this server" -msgstr "Wpisy od lokalnych użytkowników na tym serwerze" +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "Nie obserwujesz tego kontaktu." -#: src/Module/Conversation/Community.php:79 -msgid "Global Community" -msgstr "Globalna społeczność" +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć." -#: src/Module/Conversation/Community.php:82 -msgid "Posts from users of the whole federated network" -msgstr "Wpisy od użytkowników całej sieci stowarzyszonej" +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "Rozłącz/Nie obserwuj" -#: src/Module/Conversation/Community.php:115 -msgid "Own Contacts" -msgstr "Własne kontakty" +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "Kontakt pomyślnie przestał być obserwowany" -#: src/Module/Conversation/Community.php:119 -msgid "Include" -msgstr "Zawiera" +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "Nie można przestać obserwować tego kontaktu, skontaktuj się z administratorem" -#: src/Module/Conversation/Community.php:120 -msgid "Hide" -msgstr "Ukryj" - -#: src/Module/Conversation/Community.php:137 src/Module/Search/Index.php:152 +#: src/Module/Conversation/Channel.php:121 +#: src/Module/Conversation/Community.php:125 src/Module/Search/Index.php:152 #: src/Module/Search/Index.php:194 msgid "No results." msgstr "Brak wyników." -#: src/Module/Conversation/Community.php:162 +#: src/Module/Conversation/Channel.php:159 +msgid "Channel not available." +msgstr "" + +#: src/Module/Conversation/Community.php:91 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "Ten strumień społeczności pokazuje wszystkie publiczne posty otrzymane przez ten węzeł. Mogą nie odzwierciedlać opinii użytkowników tego węzła." -#: src/Module/Conversation/Community.php:199 +#: src/Module/Conversation/Community.php:179 msgid "Community option not available." msgstr "Opcja wspólnotowa jest niedostępna." -#: src/Module/Conversation/Community.php:215 +#: src/Module/Conversation/Community.php:195 msgid "Not available." msgstr "Niedostępne." -#: src/Module/Conversation/Network.php:173 -msgid "No such group" -msgstr "Nie ma takiej grupy" +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "" -#: src/Module/Conversation/Network.php:177 +#: src/Module/Conversation/Network.php:222 #, php-format -msgid "Group: %s" -msgstr "Grupa: %s" +msgid "Circle: %s" +msgstr "" -#: src/Module/Conversation/Network.php:255 -msgid "Latest Activity" -msgstr "Ostatnia Aktywność" +#: src/Module/Conversation/Network.php:317 +msgid "Network feed not available." +msgstr "" -#: src/Module/Conversation/Network.php:258 -msgid "Sort by latest activity" -msgstr "Sortuj wg. ostatniej aktywności" +#: src/Module/Conversation/Timeline.php:158 +msgid "Own Contacts" +msgstr "Własne kontakty" -#: src/Module/Conversation/Network.php:263 -msgid "Latest Posts" -msgstr "Najnowsze wpisy" +#: src/Module/Conversation/Timeline.php:162 +msgid "Include" +msgstr "Zawiera" -#: src/Module/Conversation/Network.php:266 -msgid "Sort by post received date" -msgstr "Sortuj wg. daty otrzymania wpisu" - -#: src/Module/Conversation/Network.php:271 -msgid "Latest Creation" -msgstr "Najnowsze utworzenia" - -#: src/Module/Conversation/Network.php:274 -msgid "Sort by post creation date" -msgstr "Sortuj wg. daty utworzenia wpisu" - -#: src/Module/Conversation/Network.php:279 -#: src/Module/Settings/Profile/Index.php:227 -msgid "Personal" -msgstr "Osobiste" - -#: src/Module/Conversation/Network.php:282 -msgid "Posts that mention or involve you" -msgstr "Wpisy, które wspominają lub angażują Ciebie" - -#: src/Module/Conversation/Network.php:287 src/Object/Post.php:351 -msgid "Starred" -msgstr "Ulubione" - -#: src/Module/Conversation/Network.php:290 -msgid "Favourite Posts" -msgstr "Ulubione wpisy" +#: src/Module/Conversation/Timeline.php:163 +msgid "Hide" +msgstr "Ukryj" #: src/Module/Credits.php:44 msgid "Credits" @@ -7379,23 +6879,33 @@ msgid "" "code or the translation of Friendica. Thank you all!" msgstr "Friendica to projekt społecznościowy, który nie byłby możliwy bez pomocy wielu osób. Oto lista osób, które przyczyniły się do tworzenia kodu lub tłumaczenia Friendica. Dziękuję wam wszystkim!" -#: src/Module/Debug/ActivityPubConversion.php:58 +#: src/Module/Debug/ActivityPubConversion.php:53 msgid "Formatted" msgstr "Sformatowany" -#: src/Module/Debug/ActivityPubConversion.php:70 +#: src/Module/Debug/ActivityPubConversion.php:65 msgid "Activity" msgstr "Aktywność" -#: src/Module/Debug/ActivityPubConversion.php:122 +#: src/Module/Debug/ActivityPubConversion.php:117 msgid "Object data" msgstr "Dane obiektu" -#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/ActivityPubConversion.php:124 msgid "Result Item" msgstr "Pozycja wynikowa" -#: src/Module/Debug/ActivityPubConversion.php:143 +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Błąd" +msgstr[1] "Błędów" +msgstr[2] "Błędy" +msgstr[3] "Błędów" + +#: src/Module/Debug/ActivityPubConversion.php:138 msgid "Source activity" msgstr "Aktywność źródła" @@ -7575,12 +7085,12 @@ msgstr "HTML" msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Źródło Twitter / URL Tweeta (wymaga klucza API)" -#: src/Module/Debug/Feed.php:51 src/Module/Filer/SaveTag.php:46 -#: src/Module/Settings/Profile/Index.php:141 +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:177 msgid "You must be logged in to use this module" msgstr "Musisz być zalogowany, aby korzystać z tego modułu" -#: src/Module/Debug/Feed.php:76 +#: src/Module/Debug/Feed.php:77 msgid "Source URL" msgstr "Źródłowy adres URL" @@ -7637,201 +7147,131 @@ msgstr "Diagnostyka Webfinger" msgid "Lookup address:" msgstr "Wyszukaj adres:" -#: src/Module/Delegation.php:111 +#: src/Module/Delegation.php:110 #, php-format msgid "You are now logged in as %s" msgstr "Jesteś teraz zalogowany jako %s" -#: src/Module/Delegation.php:143 +#: src/Module/Delegation.php:142 msgid "Switch between your accounts" msgstr "Przełącz się pomiędzy kontami" -#: src/Module/Delegation.php:144 +#: src/Module/Delegation.php:143 msgid "Manage your accounts" msgstr "Zarządzaj swoimi kontami" -#: src/Module/Delegation.php:145 +#: src/Module/Delegation.php:144 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Przełącz między różnymi tożsamościami lub stronami społeczność/grupy, które udostępniają dane Twojego konta lub które otrzymałeś uprawnienia \"zarządzaj\"" -#: src/Module/Delegation.php:146 +#: src/Module/Delegation.php:145 msgid "Select an identity to manage: " msgstr "Wybierz tożsamość do zarządzania: " -#: src/Module/Directory.php:75 +#: src/Module/Directory.php:74 msgid "No entries (some entries may be hidden)." msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)." -#: src/Module/Directory.php:91 +#: src/Module/Directory.php:90 msgid "Find on this site" msgstr "Znajdź na tej stronie" -#: src/Module/Directory.php:93 +#: src/Module/Directory.php:92 msgid "Results for:" msgstr "Wyniki dla:" -#: src/Module/Directory.php:95 +#: src/Module/Directory.php:94 msgid "Site Directory" msgstr "Katalog Witryny" -#: src/Module/Filer/RemoveTag.php:68 -msgid "Item was not removed" -msgstr "Element nie został usunięty" - -#: src/Module/Filer/RemoveTag.php:71 +#: src/Module/Filer/RemoveTag.php:105 msgid "Item was not deleted" msgstr "Element nie został skasowany" -#: src/Module/Filer/SaveTag.php:72 +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "Element nie został usunięty" + +#: src/Module/Filer/SaveTag.php:73 msgid "- select -" msgstr "- wybierz -" -#: src/Module/FriendSuggest.php:81 +#: src/Module/FriendSuggest.php:82 msgid "Suggested contact not found." msgstr "Nie znaleziono sugerowanego kontaktu." -#: src/Module/FriendSuggest.php:99 +#: src/Module/FriendSuggest.php:100 msgid "Friend suggestion sent." msgstr "Wysłana propozycja dodania do znajomych." -#: src/Module/FriendSuggest.php:136 +#: src/Module/FriendSuggest.php:137 msgid "Suggest Friends" msgstr "Zaproponuj znajomych" -#: src/Module/FriendSuggest.php:139 +#: src/Module/FriendSuggest.php:140 #, php-format msgid "Suggest a friend for %s" msgstr "Zaproponuj znajomych dla %s" -#: src/Module/Friendica.php:62 +#: src/Module/Friendica.php:82 msgid "Installed addons/apps:" msgstr "Zainstalowane dodatki/aplikacje:" -#: src/Module/Friendica.php:67 +#: src/Module/Friendica.php:87 msgid "No installed addons/apps" msgstr "Brak zainstalowanych dodatków/aplikacji" -#: src/Module/Friendica.php:72 +#: src/Module/Friendica.php:92 #, php-format msgid "Read about the Terms of Service of this node." msgstr "Przeczytaj o Warunkach świadczenia usług tego węzła." -#: src/Module/Friendica.php:79 +#: src/Module/Friendica.php:99 msgid "On this server the following remote servers are blocked." msgstr "Na tym serwerze następujące serwery zdalne są blokowane." -#: src/Module/Friendica.php:97 +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +msgid "Reason for the block" +msgstr "Powód blokowania" + +#: src/Module/Friendica.php:104 +msgid "Download this list in CSV format" +msgstr "" + +#: src/Module/Friendica.php:118 #, 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 "To jest wersja Friendica, %s która działa w lokalizacji internetowej %s. Wersja bazy danych to %s wersja po aktualizacji %s." -#: src/Module/Friendica.php:102 +#: src/Module/Friendica.php:123 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "Odwiedź stronę Friendi.ca aby dowiedzieć się więcej o projekcie Friendica." -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:124 msgid "Bug reports and issues: please visit" msgstr "Raporty o błędach i problemy: odwiedź stronę" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:124 msgid "the bugtracker at github" msgstr "śledzenie błędów na github" -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:125 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "Propozycje, pochwały itd. – napisz e-mail do „info” małpa „friendi” - kropka - „ca”" -#: src/Module/Group.php:58 -msgid "Could not create group." -msgstr "Nie można utworzyć grupy." - -#: src/Module/Group.php:69 src/Module/Group.php:215 src/Module/Group.php:239 -msgid "Group not found." -msgstr "Nie znaleziono grupy." - -#: src/Module/Group.php:75 -msgid "Group name was not changed." -msgstr "Nazwa grupy nie została zmieniona." - -#: src/Module/Group.php:93 -msgid "Unknown group." -msgstr "Nieznana grupa." - -#: src/Module/Group.php:118 -msgid "Unable to add the contact to the group." -msgstr "Nie można dodać kontaktu do grupy." - -#: src/Module/Group.php:121 -msgid "Contact successfully added to group." -msgstr "Kontakt został pomyślnie dodany do grupy." - -#: src/Module/Group.php:125 -msgid "Unable to remove the contact from the group." -msgstr "Nie można usunąć kontaktu z grupy." - -#: src/Module/Group.php:128 -msgid "Contact successfully removed from group." -msgstr "Kontakt został pomyślnie usunięty z grupy." - -#: src/Module/Group.php:132 -msgid "Bad request." -msgstr "Błędne żądanie." - -#: src/Module/Group.php:171 -msgid "Save Group" -msgstr "Zapisz grupę" - -#: src/Module/Group.php:172 -msgid "Filter" -msgstr "Filtr" - -#: src/Module/Group.php:178 -msgid "Create a group of contacts/friends." -msgstr "Stwórz grupę znajomych." - -#: src/Module/Group.php:220 -msgid "Unable to remove group." -msgstr "Nie można usunąć grupy." - -#: src/Module/Group.php:271 -msgid "Delete Group" -msgstr "Usuń grupę" - -#: src/Module/Group.php:281 -msgid "Edit Group Name" -msgstr "Edytuj nazwę grupy" - -#: src/Module/Group.php:291 -msgid "Members" -msgstr "Członkowie" - -#: src/Module/Group.php:294 -msgid "Group is empty" -msgstr "Grupa jest pusta" - -#: src/Module/Group.php:307 -msgid "Remove contact from group" -msgstr "Usuń kontakt z grupy" - -#: src/Module/Group.php:328 -msgid "Click on a contact to add or remove." -msgstr "Kliknij na kontakt w celu dodania lub usunięcia." - -#: src/Module/Group.php:342 -msgid "Add contact to group" -msgstr "Dodaj kontakt do grupy" - -#: src/Module/HCard.php:46 +#: src/Module/HCard.php:45 msgid "No profile" msgstr "Brak profilu" -#: src/Module/HTTPException/MethodNotAllowed.php:32 +#: src/Module/HTTPException/MethodNotAllowed.php:31 msgid "Method Not Allowed." msgstr "Metoda nie akceptowana." @@ -7839,161 +7279,154 @@ msgstr "Metoda nie akceptowana." msgid "Help:" msgstr "Pomoc:" -#: src/Module/Home.php:54 +#: src/Module/Home.php:63 #, php-format msgid "Welcome to %s" msgstr "Witamy w %s" -#: src/Module/Install.php:195 +#: src/Module/Install.php:189 msgid "Friendica Communications Server - Setup" msgstr "Friendica Communications Server - Instalator" -#: src/Module/Install.php:206 +#: src/Module/Install.php:200 msgid "System check" msgstr "Sprawdzanie systemu" -#: src/Module/Install.php:208 src/Module/Install.php:265 -#: src/Module/Install.php:348 +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 msgid "Requirement not satisfied" msgstr "Wymaganie niespełnione" -#: src/Module/Install.php:209 +#: src/Module/Install.php:203 msgid "Optional requirement not satisfied" msgstr "Opcjonalne wymagania niespełnione" -#: src/Module/Install.php:210 +#: src/Module/Install.php:204 msgid "OK" msgstr "OK" -#: src/Module/Install.php:215 +#: src/Module/Install.php:208 +msgid "Next" +msgstr "Następny" + +#: src/Module/Install.php:209 msgid "Check again" msgstr "Sprawdź ponownie" -#: src/Module/Install.php:230 +#: src/Module/Install.php:222 msgid "Base settings" msgstr "Ustawienia bazy" -#: src/Module/Install.php:237 -msgid "Host name" -msgstr "Nazwa hosta" - -#: src/Module/Install.php:239 -msgid "" -"Overwrite this field in case the determinated hostname isn't right, " -"otherweise leave it as is." -msgstr "Nadpisz to pole w przypadku, gdy określona nazwa hosta nie jest prawidłowa, a pozostałe pozostaw to bez zmian." - -#: src/Module/Install.php:242 +#: src/Module/Install.php:224 msgid "Base path to installation" msgstr "Podstawowa ścieżka do instalacji" -#: src/Module/Install.php:244 +#: src/Module/Install.php:226 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 "Jeśli system nie może wykryć poprawnej ścieżki do instalacji, wprowadź tutaj poprawną ścieżkę. To ustawienie powinno być ustawione tylko wtedy, gdy używasz ograniczonego systemu i dowiązań symbolicznych do twojego webroota." -#: src/Module/Install.php:247 -msgid "Sub path of the URL" -msgstr "Ścieżka podrzędna adresu URL" +#: src/Module/Install.php:229 +msgid "The Friendica system URL" +msgstr "" -#: src/Module/Install.php:249 +#: src/Module/Install.php:231 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 "Nadpisz to pole w przypadku, gdy określenie ścieżki podrzędnej nie jest prawidłowe, w przeciwnym razie pozostaw je bez zmian. Pozostawienie tego pola pustego oznacza, że ​​instalacja odbywa się pod podstawowym adresem URL bez podścieżki." +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." +msgstr "" -#: src/Module/Install.php:260 +#: src/Module/Install.php:242 msgid "Database connection" msgstr "Połączenie z bazą danych" -#: src/Module/Install.php:261 +#: src/Module/Install.php:243 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych." -#: src/Module/Install.php:262 +#: src/Module/Install.php:244 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ." -#: src/Module/Install.php:263 +#: src/Module/Install.php:245 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją." -#: src/Module/Install.php:272 +#: src/Module/Install.php:252 msgid "Database Server Name" msgstr "Nazwa serwera bazy danych" -#: src/Module/Install.php:277 +#: src/Module/Install.php:257 msgid "Database Login Name" msgstr "Nazwa użytkownika bazy danych" -#: src/Module/Install.php:283 +#: src/Module/Install.php:263 msgid "Database Login Password" msgstr "Hasło logowania do bazy danych" -#: src/Module/Install.php:285 +#: src/Module/Install.php:265 msgid "For security reasons the password must not be empty" msgstr "Ze względów bezpieczeństwa hasło nie może być puste" -#: src/Module/Install.php:288 +#: src/Module/Install.php:268 msgid "Database Name" msgstr "Nazwa bazy danych" -#: src/Module/Install.php:292 src/Module/Install.php:322 +#: src/Module/Install.php:272 src/Module/Install.php:300 msgid "Please select a default timezone for your website" msgstr "Proszę wybrać domyślną strefę czasową dla swojej strony" -#: src/Module/Install.php:307 +#: src/Module/Install.php:287 msgid "Site settings" msgstr "Ustawienia strony" -#: src/Module/Install.php:317 +#: src/Module/Install.php:295 msgid "Site administrator email address" msgstr "Adres e-mail administratora strony" -#: src/Module/Install.php:319 +#: src/Module/Install.php:297 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Adres e-mail konta musi pasować do tego, aby móc korzystać z panelu administracyjnego." -#: src/Module/Install.php:326 +#: src/Module/Install.php:304 msgid "System Language:" msgstr "Język systemu:" -#: src/Module/Install.php:328 +#: src/Module/Install.php:306 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "Ustaw domyślny język dla interfejsu instalacyjnego Friendica i wysyłaj e-maile." -#: src/Module/Install.php:340 +#: src/Module/Install.php:318 msgid "Your Friendica site database has been installed." msgstr "Twoja baza danych witryny Friendica została zainstalowana." -#: src/Module/Install.php:350 +#: src/Module/Install.php:328 msgid "Installation finished" msgstr "Instalacja zakończona" -#: src/Module/Install.php:370 +#: src/Module/Install.php:348 msgid "

    What next

    " msgstr "

    Co dalej

    " -#: src/Module/Install.php:371 +#: src/Module/Install.php:349 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "WAŻNE: Będziesz musiał [ręcznie] ustawić zaplanowane zadanie dla workera." -#: src/Module/Install.php:374 +#: src/Module/Install.php:352 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -8107,41 +7540,51 @@ msgid "" "important, please visit http://friendi.ca" msgstr "Aby uzyskać więcej informacji na temat projektu Friendica i dlaczego uważamy, że jest to ważne, odwiedź http://friendi.ca" -#: src/Module/Item/Compose.php:50 +#: src/Module/Item/Compose.php:85 msgid "Please enter a post body." msgstr "Podaj treść wpisu." -#: src/Module/Item/Compose.php:63 +#: src/Module/Item/Compose.php:98 msgid "This feature is only available with the frio theme." msgstr "Ta funkcja jest dostępna tylko z motywem Frio." -#: src/Module/Item/Compose.php:90 +#: src/Module/Item/Compose.php:122 msgid "Compose new personal note" msgstr "Utwórz nową notatkę osobistą" -#: src/Module/Item/Compose.php:99 +#: src/Module/Item/Compose.php:131 msgid "Compose new post" msgstr "Utwórz nowy wpis" -#: src/Module/Item/Compose.php:153 +#: src/Module/Item/Compose.php:187 msgid "Visibility" msgstr "Widoczność" -#: src/Module/Item/Compose.php:174 +#: src/Module/Item/Compose.php:203 msgid "Clear the location" msgstr "Wyczyść lokalizację" -#: src/Module/Item/Compose.php:175 +#: src/Module/Item/Compose.php:204 msgid "Location services are unavailable on your device" msgstr "Usługi lokalizacyjne są niedostępne na twoim urządzeniu" -#: src/Module/Item/Compose.php:176 +#: src/Module/Item/Compose.php:205 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "Usługi lokalizacyjne są wyłączone. Sprawdź uprawnienia strony internetowej na swoim urządzeniu" -#: src/Module/Item/Follow.php:52 +#: src/Module/Item/Compose.php:211 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "" + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "Kanał dla tego elementu jest niedostępny." + +#: src/Module/Item/Follow.php:51 msgid "Unable to follow this item." msgstr "Nie można obserwować tego elementu." @@ -8160,107 +7603,1118 @@ msgstr "Ten węzeł Friendica jest obecnie w trybie konserwacji, przełączanej msgid "A Decentralized Social Network" msgstr "Zdecentralizowana sieć społecznościowa" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Pliki" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload" +msgstr "Wyślij" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Przepraszam, Twój przesyłany plik jest większy niż pozwala konfiguracja PHP" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "Lub - czy próbowałeś przesłać pusty plik?" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Plik przekracza limit rozmiaru wynoszący %s" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "Przesyłanie pliku nie powiodło się." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:68 +msgid "Unable to process image." +msgstr "Przetwarzanie obrazu nie powiodło się." + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:95 +msgid "Image upload failed." +msgstr "Przesyłanie obrazu nie powiodło się." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "Lista wszystkich użytkowników" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "Aktywne" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "Lista aktywnych kont" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "Lista oczekujących rejestracji" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "Lista zablokowanych użytkowników" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "Usunięte" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "Lista oczekujących na usunięcie użytkowników" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "Normalna strona konta" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "Strona Soapbox" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "Automatyczna strona znajomego" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "Strona osobista" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "Strona Organizacji" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "Strona Wiadomości" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "Przekaźnik" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "Nie możesz zablokować lokalnego kontaktu, zamiast tego zablokuj użytkownika" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s kontakt odblokowany" +msgstr[1] "%s kontakty odblokowane" +msgstr[2] "%s kontaktów odblokowanych" +msgstr[3] "%s kontaktów odblokowanych" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "Lista zablokowanych kontaktów zdalnych" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu zdalnego." + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "Zablokuj kontakt zdalny" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "zaznacz wszystko" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "wybierz brak" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "Z tego węzła nie jest blokowany kontakt zdalny." + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "Zablokowane kontakty zdalne" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "Zablokuj nowy kontakt zdalny" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "Zdjęcie" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "Powód" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "łącznie %s zablokowany kontakt" +msgstr[1] "łącznie %s zablokowane kontakty" +msgstr[2] "łącznie %s zablokowanych kontaktów" +msgstr[3] "%s całkowicie zablokowane kontakty" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "Adres URL kontaktu zdalnego do zablokowania." + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "Wyczyść również kontakt" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "Usuwa z węzła całą zawartość związaną z tym kontaktem. Zachowuje rejestr kontaktów. Tej czynności nie można cofnąć." + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "Powód blokady" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "Do listy zablokowanych dodano wzorzec domeny serwera." + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "%s serwer zaplanowany do usunięcia." +msgstr[1] "%s serwery zaplanowane do usunięcia." +msgstr[2] "%s serwerów zaplanowanych do usunięcia." +msgstr[3] "%s serwerów zaplanowanych do usunięcia." + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "← Wróć do listy" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "Zablokuj nowy wzorzec domeny serwera" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "

    Składnia wzorca domeny serwera to symbol wieloznaczny powłoki bez rozróżniania wielkości liter, zawierający następujące znaki specjalne:

    \n
      \n\t
    • *: Dowolna liczba znaków
    • \n\t
    • ?: Dowolny pojedynczy znak
    • \n
    " + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "Sprawdź wzór" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "Dopasowanie znanych serwerów" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "Nazwa serwera" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "Domena serwera" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "Znane kontakty" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "%d znany serwer" +msgstr[1] "%d znane serwery" +msgstr[2] "%d znanych serwerów" +msgstr[3] "%d znanych serwerów" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "Dodaj wzór do listy blokad" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "Wzorzec domeny serwera" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "Wzorzec domeny nowego serwera do dodania do listy blokad. Nie dołączaj protokołu." + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "Wyczyść serwer" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć." +msgstr[1] "Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć." +msgstr[2] "Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć." +msgstr[3] "Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć." + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "Powód zablokowania" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "Powód, dla którego zablokowałeś ten wzorzec domeny serwera. Powód ten zostanie pokazany publicznie na stronie informacyjnej serwera." + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +msgid "Blocked server domain pattern" +msgstr "Zablokowany wzorzec domeny serwera" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "Usuń wzorzec domeny serwera" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "Zaznacz, aby usunąć ten wpis z listy bloków" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "Lista bloków wzorców domen serwerów" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +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 "Ta strona może służyć do definiowania listy zablokowanych wzorców domen serwera z sieci stowarzyszonej, które nie mogą komunikować się z węzłem. Dla każdego wzorca domeny należy również podać powód, dla którego go blokujesz." + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +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 "Lista zablokowanych wzorców domen serwera zostanie udostępniona publicznie na stronie /friendica, aby użytkownicy i osoby badające problemy z komunikacją mogły łatwo znaleźć przyczynę." + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "Dodaj nowy wpis do listy zablokowanych" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "Zapisz zmiany w liście zablokowanych" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "Aktualne wpisy na liście zablokowanych" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "Usuń wpis z listy zablokowanych" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "Usunąć wpis z listy zablokowanych?" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "Przedmiot oznaczony do usunięcia." + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "Usuń ten przedmiot" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "Na tej stronie możesz usunąć przedmiot ze swojego węzła. Jeśli element jest publikowaniem na najwyższym poziomie, cały wątek zostanie usunięty." + +#: src/Module/Moderation/Item/Delete.php:65 +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 "Musisz znać identyfikator GUID tego przedmiotu. Możesz go znaleźć np. patrząc na wyświetlany adres URL. Ostatnia część http://example.com/display/123456 to GUID, tutaj 123456." + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "Identyfikator elementu GUID, który chcesz usunąć." + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "Identyfikator elementu" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "Identyfikator URI elementu" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "Zasady" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "Znacznik" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "Typu" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "Zasada" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "URL" + +#: src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "Wzmianka" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "Wzmianka niejawna" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Nie znaleziono elementu" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "Element Guid" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "" + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "" + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Konto normalne" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "Automatyczne konto obserwatora" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Automatyczny przyjaciel konta" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Konto bloga" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Zarejestrowani użytkownicy" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Oczekujące rejestracje" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "%s użytkownik zablokowany" +msgstr[1] "%s użytkowników zablokowanych" +msgstr[2] "%s użytkowników zablokowanych" +msgstr[3] "%s użytkownicy zablokowani" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "Nie możesz usunąć siebie" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "usunięto %s użytkownika" +msgstr[1] "usunięto %s użytkowników" +msgstr[2] "usunięto %s użytkowników" +msgstr[3] "%s usuniętych użytkowników" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "Użytkownik \"%s\" usunięty" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "Użytkownik \"%s\" zablokowany" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Data rejestracji" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "Ostatnie logowanie" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "Ostatni element publiczny" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "Aktywne konta" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "Użytkownik zablokowany" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "Administracja stroną" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "Konto wygasło" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "Utwórz nowego użytkownika" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Zaznaczeni użytkownicy zostaną usunięci!\\n\\n Wszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\n Jesteś pewien?" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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 "Użytkownik {0} zostanie usunięty!\\n\\n Wszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\n Jesteś pewien?" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "%s użytkownik odblokowany" +msgstr[1] "%s użytkowników odblokowanych" +msgstr[2] "%s użytkowników odblokowanych" +msgstr[3] "%s użytkowników odblokowanych" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "Użytkownik \"%s\" odblokowany" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "Zablokowani użytkownicy" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "Nowy użytkownik" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "Dodaj użytkownika" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "Nazwa nowego użytkownika." + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "Pseudonim" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "Pseudonim nowego użytkownika." + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "Adres email nowego użytkownika." + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "Użytkownicy oczekujący na trwałe usunięcie" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "Trwałe usunięcie" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "Użytkownik czekający na trwałe usunięcie" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "%s użytkownik zatwierdzony" +msgstr[1] "%s użytkowników zatwierdzonych" +msgstr[2] "%s użytkowników zatwierdzonych" +msgstr[3] "%s użytkowników zatwierdzonych" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "%s rejestrację cofnięto" +msgstr[1] "%s rejestracje cofnięto" +msgstr[2] "%s rejestracji cofnięto" +msgstr[3] "%s rejestracji cofnięto " + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Konto zatwierdzone." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "Rejestracja odwołana" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "Rejestracje użytkowników oczekujące na sprawdzenie" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Data prośby" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "Brak rejestracji." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "Uwaga od użytkownika" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Odmów" + +#: src/Module/Notifications/Introductions.php:99 msgid "Show Ignored Requests" msgstr "Pokaż ignorowane żądania" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Notifications/Introductions.php:99 msgid "Hide Ignored Requests" msgstr "Ukryj zignorowane prośby" -#: src/Module/Notifications/Introductions.php:113 -#: src/Module/Notifications/Introductions.php:176 +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 msgid "Notification type:" msgstr "Typ powiadomienia:" -#: src/Module/Notifications/Introductions.php:116 +#: src/Module/Notifications/Introductions.php:118 msgid "Suggested by:" msgstr "Sugerowany przez:" -#: src/Module/Notifications/Introductions.php:141 +#: src/Module/Notifications/Introductions.php:143 msgid "Claims to be known to you: " msgstr "Twierdzi, że go/ją znasz: " -#: src/Module/Notifications/Introductions.php:142 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:124 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "No" msgstr "Nie" -#: src/Module/Notifications/Introductions.php:150 +#: src/Module/Notifications/Introductions.php:152 msgid "Shall your connection be bidirectional or not?" msgstr "Czy twoje połączenie ma być dwukierunkowe, czy nie?" -#: src/Module/Notifications/Introductions.php:151 +#: src/Module/Notifications/Introductions.php:153 #, 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 "Przyjmowanie %s jako znajomego pozwala %s zasubskrybować twoje posty, a także otrzymywać od nich aktualizacje w swoim kanale wiadomości." -#: src/Module/Notifications/Introductions.php:152 +#: src/Module/Notifications/Introductions.php:154 #, 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 "Zaakceptowanie %s jako subskrybenta umożliwia im subskrybowanie Twoich postów, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości." -#: src/Module/Notifications/Introductions.php:154 +#: src/Module/Notifications/Introductions.php:156 msgid "Friend" msgstr "Znajomy" -#: src/Module/Notifications/Introductions.php:155 +#: src/Module/Notifications/Introductions.php:157 msgid "Subscriber" msgstr "Subskrybent" -#: src/Module/Notifications/Introductions.php:214 +#: src/Module/Notifications/Introductions.php:216 msgid "No introductions." msgstr "Brak dostępu." -#: src/Module/Notifications/Introductions.php:215 -#: src/Module/Notifications/Notifications.php:134 +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 #, php-format msgid "No more %s notifications." msgstr "Brak kolejnych %s powiadomień." -#: src/Module/Notifications/Notification.php:134 +#: src/Module/Notifications/Notification.php:135 msgid "You must be logged in to show this page." msgstr "Musisz być zalogowany, aby zobaczyć tę stronę." -#: src/Module/Notifications/Notifications.php:65 +#: src/Module/Notifications/Notifications.php:66 msgid "Network Notifications" msgstr "Powiadomienia sieciowe" -#: src/Module/Notifications/Notifications.php:71 +#: src/Module/Notifications/Notifications.php:72 msgid "System Notifications" msgstr "Powiadomienia systemowe" -#: src/Module/Notifications/Notifications.php:77 +#: src/Module/Notifications/Notifications.php:78 msgid "Personal Notifications" msgstr "Prywatne powiadomienia" -#: src/Module/Notifications/Notifications.php:83 +#: src/Module/Notifications/Notifications.php:84 msgid "Home Notifications" msgstr "Powiadomienia domowe" -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Notifications/Notifications.php:140 msgid "Show unread" msgstr "Pokaż nieprzeczytane" -#: src/Module/Notifications/Ping.php:222 +#: src/Module/Notifications/Ping.php:246 msgid "{0} requested registration" msgstr "{0} wymagana rejestracja" -#: src/Module/Notifications/Ping.php:233 +#: src/Module/Notifications/Ping.php:255 #, php-format msgid "{0} and %d others requested registration" msgstr "{0} i %d innych poprosili o rejestrację" -#: src/Module/OAuth/Acknowledge.php:50 +#: src/Module/OAuth/Acknowledge.php:51 msgid "Authorize application connection" msgstr "Autoryzacja połączenia aplikacji" -#: src/Module/OAuth/Acknowledge.php:52 +#: src/Module/OAuth/Acknowledge.php:53 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" @@ -8270,7 +8724,7 @@ msgstr "Czy chcesz zezwolić tej aplikacji na dostęp do swoich postów i kontak msgid "Unsupported or missing response type" msgstr "Nieobsługiwany lub brakujący typ odpowiedzi" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:72 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 msgid "Incomplete request data" msgstr "Niekompletne dane żądania" @@ -8281,122 +8735,286 @@ msgid "" "close this window: %s" msgstr "Skopiuj następujący kod uwierzytelniający do swojej aplikacji i zamknij to okno: %s" -#: src/Module/OAuth/Token.php:96 +#: src/Module/OAuth/Token.php:83 +msgid "Invalid data or unknown client" +msgstr "" + +#: src/Module/OAuth/Token.php:108 msgid "Unsupported or missing grant type" msgstr "Nieobsługiwany lub brakujący typ dotacji" +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "Ponowne subskrybowanie kontaktów OStatus" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "Pozostaw to okno otwarte, dopóki nie będzie gotowe." + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "✔ Gotowe" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "Subskrybowanie kontaktów" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "Brak kontaktu." + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "Nie można pobrać informacji o kontakcie." + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "Nie można pobrać znajomych do kontaktu." + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "Nie udało się pobrać następujących kontaktów." + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "Nie można pobrać profilu zdalnego." + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "Sieć nieobsługiwana" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Gotowe" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "powodzenie" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "nie powiodło się" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "ignorowany(-a)" + #: src/Module/PermissionTooltip.php:49 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "Nieprawidłowy typ „%s”, oczekiwano jednego z:%s" -#: src/Module/PermissionTooltip.php:66 +#: src/Module/PermissionTooltip.php:79 msgid "Model not found" msgstr "Nie znaleziono modelu" -#: src/Module/PermissionTooltip.php:89 +#: src/Module/PermissionTooltip.php:94 msgid "Unlisted" msgstr "Niekatalogowany" -#: src/Module/PermissionTooltip.php:107 +#: src/Module/PermissionTooltip.php:112 msgid "Remote privacy information not available." msgstr "Nie są dostępne zdalne informacje o prywatności." -#: src/Module/PermissionTooltip.php:116 +#: src/Module/PermissionTooltip.php:121 msgid "Visible to:" msgstr "Widoczne dla:" -#: src/Module/PermissionTooltip.php:200 +#: src/Module/PermissionTooltip.php:204 #, php-format msgid "Collection (%s)" msgstr "Kolekcja (%s)" -#: src/Module/PermissionTooltip.php:204 +#: src/Module/PermissionTooltip.php:208 #, php-format msgid "Followers (%s)" msgstr "Obserwujący (%s)" -#: src/Module/PermissionTooltip.php:223 +#: src/Module/PermissionTooltip.php:227 #, php-format msgid "%d more" msgstr "%d więcej" -#: src/Module/PermissionTooltip.php:227 +#: src/Module/PermissionTooltip.php:231 #, php-format msgid "To: %s
    " msgstr "Do: %s
    " -#: src/Module/PermissionTooltip.php:230 +#: src/Module/PermissionTooltip.php:234 #, php-format msgid "CC: %s
    " msgstr "DW: %s
    " -#: src/Module/PermissionTooltip.php:233 +#: src/Module/PermissionTooltip.php:237 #, php-format msgid "BCC: %s
    " msgstr "UDW: %s
    " -#: src/Module/Photo.php:128 +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "" + +#: src/Module/Photo.php:130 msgid "The Photo is not available." msgstr "Zdjęcie jest niedostępne." -#: src/Module/Photo.php:141 +#: src/Module/Photo.php:155 #, php-format msgid "The Photo with id %s is not available." msgstr "Zdjęcie z identyfikatorem %s nie jest dostępne." -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:192 #, php-format msgid "Invalid external resource with url %s." msgstr "Nieprawidłowy zasób zewnętrzny z adresem URL %s." -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:194 #, php-format msgid "Invalid photo with id %s." msgstr "Nieprawidłowe zdjęcie z identyfikatorem %s." -#: src/Module/Profile/Contacts.php:120 +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "Nie znaleziono wpisu." + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Edytuj wpis" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "link" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Wstaw link do filmu" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "link do filmu" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Wstaw link do audio" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "link do audio" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Usuń pozycję znacznika" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Wybierz znacznik do usunięcia: " + +#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Usuń" + +#: src/Module/Profile/Contacts.php:159 msgid "No contacts." msgstr "Brak kontaktów." -#: src/Module/Profile/Profile.php:82 +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "oś czasu %s" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "wpisy %s" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "komentarze %s" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:59 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Obraz przekracza limit rozmiaru wynoszący %s" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie" + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "Brak pliku obrazu" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "Plik obrazka jest pusty." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "Zobacz album" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 msgid "Profile not found." msgstr "Nie znaleziono profilu." -#: src/Module/Profile/Profile.php:135 +#: src/Module/Profile/Profile.php:158 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "Obecnie przeglądasz swój profil jako %s Anuluj" -#: src/Module/Profile/Profile.php:144 src/Module/Settings/Account.php:575 +#: src/Module/Profile/Profile.php:167 msgid "Full Name:" msgstr "Imię i nazwisko:" -#: src/Module/Profile/Profile.php:149 +#: src/Module/Profile/Profile.php:172 msgid "Member since:" msgstr "Członek od:" -#: src/Module/Profile/Profile.php:155 +#: src/Module/Profile/Profile.php:178 msgid "j F, Y" msgstr "d M, R" -#: src/Module/Profile/Profile.php:156 +#: src/Module/Profile/Profile.php:179 msgid "j F" msgstr "d M" -#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 msgid "Birthday:" msgstr "Urodziny:" -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 msgid "Age: " msgstr "Wiek: " -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 #, php-format msgid "%d year old" msgid_plural "%d years old" @@ -8405,53 +9023,132 @@ msgstr[1] "%d lata" msgstr[2] "%d lat" msgstr[3] "%d lat" -#: src/Module/Profile/Profile.php:234 -msgid "Forums:" -msgstr "Fora:" +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "Opis:" -#: src/Module/Profile/Profile.php:246 +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "" + +#: src/Module/Profile/Profile.php:273 msgid "View profile as:" msgstr "Wyświetl profil jako:" -#: src/Module/Profile/Profile.php:263 +#: src/Module/Profile/Profile.php:290 msgid "View as" msgstr "Zobacz jako" -#: src/Module/Profile/Profile.php:326 src/Module/Profile/Profile.php:329 -#: src/Module/Profile/Status.php:66 src/Module/Profile/Status.php:69 -#: src/Protocol/Feed.php:1018 src/Protocol/OStatus.php:1276 -#, php-format -msgid "%s's timeline" -msgstr "oś czasu %s" +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "Profil niedostępny." -#: src/Module/Profile/Profile.php:327 src/Module/Profile/Status.php:67 -#: src/Protocol/Feed.php:1022 src/Protocol/OStatus.php:1281 -#, php-format -msgid "%s's posts" -msgstr "wpisy %s" +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "Nieprawidłowy lokalizator" -#: src/Module/Profile/Profile.php:328 src/Module/Profile/Status.php:68 -#: src/Protocol/Feed.php:1025 src/Protocol/OStatus.php:1285 -#, php-format -msgid "%s's comments" -msgstr "komentarze %s" +#: src/Module/Profile/RemoteFollow.php:95 +msgid "The provided profile link doesn't seem to be valid" +msgstr "Podany link profilu wydaje się być nieprawidłowy" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/RemoteFollow.php:100 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie." + +#: src/Module/Profile/RemoteFollow.php:128 +msgid "Friend/Connection Request" +msgstr "Przyjaciel/Prośba o połączenie" + +#: src/Module/Profile/RemoteFollow.php:129 +#, 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 "Wpisz tutaj swój adres Webfinger (user@domain.tld) lub adres URL profilu. Jeśli nie jest to obsługiwane przez system, musisz subskrybować %s lub %s bezpośrednio w systemie." + +#: src/Module/Profile/RemoteFollow.php:130 +#, 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 "Jeśli nie jesteś jeszcze członkiem darmowej sieci społecznościowej, kliknij ten odnośnik, aby znaleźć publiczny węzeł Friendica i dołącz do nas już dziś." + +#: src/Module/Profile/RemoteFollow.php:131 +msgid "Your Webfinger address or profile URL:" +msgstr "Twój adres lub adres URL profilu Webfinger:" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "Ograniczony profil" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "" + +#: src/Module/Profile/Schedule.php:83 msgid "Scheduled" msgstr "Zaplanowane" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:84 msgid "Content" msgstr "Zawartość" -#: src/Module/Profile/Schedule.php:86 +#: src/Module/Profile/Schedule.php:85 msgid "Remove post" msgstr "Usuń wpis" +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "" + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Nie można sprawdzić twojej lokalizacji." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "Nie znaleziono odbiorcy." + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Dzienny limit wiadomości na tablicy %s został przekroczony. Wiadomość została odrzucona." + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców." + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "Do" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "Temat" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "Twoja wiadomość" + #: src/Module/Register.php:84 msgid "Only parent users can create additional accounts." msgstr "Tylko użytkownicy nadrzędni mogą tworzyć dodatkowe konta." +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro." + #: src/Module/Register.php:116 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " @@ -8502,7 +9199,8 @@ msgstr "Twój adres e-mail: (Informacje początkowe zostaną wysłane tam, więc msgid "Please repeat your e-mail address:" msgstr "Powtórz swój adres e-mail:" -#: src/Module/Register.php:162 src/Module/Settings/Account.php:566 +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 msgid "New Password:" msgstr "Nowe hasło:" @@ -8510,7 +9208,8 @@ msgstr "Nowe hasło:" msgid "Leave empty for an auto generated password." msgstr "Pozostaw puste dla wygenerowanego automatycznie hasła." -#: src/Module/Register.php:163 src/Module/Settings/Account.php:567 +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 msgid "Confirm:" msgstr "Potwierdź:" @@ -8525,6 +9224,10 @@ msgstr "Wybierz pseudonim profilu. Musi zaczynać się od znaku tekstowego. Twó msgid "Choose a nickname: " msgstr "Wybierz pseudonim: " +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Import" + #: src/Module/Register.php:174 msgid "Import your profile to this friendica instance" msgstr "Zaimportuj swój profil do tej instancji friendica" @@ -8533,11 +9236,11 @@ msgstr "Zaimportuj swój profil do tej instancji friendica" msgid "Note: This node explicitly contains adult content" msgstr "Uwaga: Ten węzeł jawnie zawiera treści dla dorosłych" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:155 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 msgid "Parent Password:" msgstr "Hasło nadrzędne:" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:155 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "Wprowadź hasło konta nadrzędnego, aby legalizować swoje żądanie." @@ -8567,69 +9270,37 @@ msgid "" "Registration successful. Please check your email for further instructions." msgstr "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila." -#: src/Module/Register.php:339 +#: src/Module/Register.php:342 #, php-format msgid "" "Failed to send email message. Here your accout details:
    login: %s
    " "password: %s

    You can change your password after login." msgstr "Nie udało się wysłać wiadomości e-mail. Tutaj szczegóły twojego konta:
    login: %s
    hasło: %s

    Możesz zmienić swoje hasło po zalogowaniu." -#: src/Module/Register.php:345 +#: src/Module/Register.php:348 msgid "Registration successful." msgstr "Rejestracja udana." -#: src/Module/Register.php:350 src/Module/Register.php:357 +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 msgid "Your registration can not be processed." msgstr "Nie można przetworzyć Twojej rejestracji." -#: src/Module/Register.php:356 +#: src/Module/Register.php:363 msgid "You have to leave a request note for the admin." msgstr "Musisz zostawić notatkę z prośbą do administratora." -#: src/Module/Register.php:402 +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "Wystąpił błąd wewnętrzny." + +#: src/Module/Register.php:395 msgid "Your registration is pending approval by the site owner." msgstr "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny." -#: src/Module/RemoteFollow.php:71 -msgid "Profile unavailable." -msgstr "Profil niedostępny." - -#: src/Module/RemoteFollow.php:77 -msgid "Invalid locator" -msgstr "Nieprawidłowy lokalizator" - -#: src/Module/RemoteFollow.php:84 -msgid "The provided profile link doesn't seem to be valid" -msgstr "Podany link profilu wydaje się być nieprawidłowy" - -#: src/Module/RemoteFollow.php:89 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie." - -#: src/Module/RemoteFollow.php:121 -msgid "Friend/Connection Request" -msgstr "Przyjaciel/Prośba o połączenie" - -#: src/Module/RemoteFollow.php:122 -#, 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 "Wpisz tutaj swój adres Webfinger (user@domain.tld) lub adres URL profilu. Jeśli nie jest to obsługiwane przez system, musisz subskrybować %s lub %s bezpośrednio w systemie." - -#: src/Module/RemoteFollow.php:123 -#, 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 "Jeśli nie jesteś jeszcze członkiem darmowej sieci społecznościowej, kliknij ten odnośnik, aby znaleźć publiczny węzeł Friendica i dołącz do nas już dziś." - -#: src/Module/RemoteFollow.php:124 -msgid "Your Webfinger address or profile URL:" -msgstr "Twój adres lub adres URL profilu Webfinger:" +#: src/Module/Search/Acl.php:73 +msgid "You must be logged in to use this module." +msgstr "Musisz być zalogowany, aby korzystać z tego modułu." #: src/Module/Search/Index.php:69 msgid "Only logged in users are permitted to perform a search." @@ -8644,65 +9315,65 @@ msgstr "Dla niezalogowanych użytkowników dozwolone jest tylko jedno wyszukiwan msgid "Items tagged with: %s" msgstr "Elementy oznaczone znacznikiem: %s" -#: src/Module/Search/Saved.php:58 +#: src/Module/Search/Saved.php:59 msgid "Search term was not saved." msgstr "Wyszukiwane hasło nie zostało zapisane." -#: src/Module/Search/Saved.php:61 +#: src/Module/Search/Saved.php:62 msgid "Search term already saved." msgstr "Wyszukiwane hasło jest już zapisane." -#: src/Module/Search/Saved.php:67 +#: src/Module/Search/Saved.php:68 msgid "Search term was not removed." msgstr "Wyszukiwane hasło nie zostało usunięte." -#: src/Module/Security/Login.php:104 +#: src/Module/Security/Login.php:123 msgid "Create a New Account" msgstr "Załóż nowe konto" -#: src/Module/Security/Login.php:129 +#: src/Module/Security/Login.php:142 msgid "Your OpenID: " msgstr "Twój OpenID: " -#: src/Module/Security/Login.php:132 +#: src/Module/Security/Login.php:145 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "Wprowadź nazwę użytkownika i hasło, aby dodać OpenID do istniejącego konta." -#: src/Module/Security/Login.php:134 +#: src/Module/Security/Login.php:147 msgid "Or login using OpenID: " msgstr "Lub zaloguj się za pośrednictwem OpenID: " -#: src/Module/Security/Login.php:148 +#: src/Module/Security/Login.php:161 msgid "Password: " msgstr "Hasło: " -#: src/Module/Security/Login.php:149 +#: src/Module/Security/Login.php:162 msgid "Remember me" msgstr "Zapamiętaj mnie" -#: src/Module/Security/Login.php:158 +#: src/Module/Security/Login.php:171 msgid "Forgot your password?" msgstr "Zapomniałeś swojego hasła?" -#: src/Module/Security/Login.php:161 +#: src/Module/Security/Login.php:174 msgid "Website Terms of Service" msgstr "Warunki korzystania z witryny" -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:175 msgid "terms of service" msgstr "warunki użytkowania" -#: src/Module/Security/Login.php:164 +#: src/Module/Security/Login.php:177 msgid "Website Privacy Policy" msgstr "Polityka Prywatności Witryny" -#: src/Module/Security/Login.php:165 +#: src/Module/Security/Login.php:178 msgid "privacy policy" msgstr "polityka prywatności" -#: src/Module/Security/Logout.php:83 +#: src/Module/Security/Logout.php:84 #: src/Module/Security/TwoFactor/SignOut.php:78 #: src/Module/Security/TwoFactor/SignOut.php:86 #: src/Module/Security/TwoFactor/SignOut.php:108 @@ -8714,49 +9385,100 @@ msgstr "Wylogowano." msgid "OpenID protocol error. No ID returned" msgstr "Błąd protokołu OpenID. Nie zwrócono identyfikatora" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:90 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "Konto nie znalezione. Zaloguj się do swojego istniejącego konta, aby dodać do niego OpenID." -#: src/Module/Security/OpenID.php:94 +#: src/Module/Security/OpenID.php:92 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "Konto nie znalezione. Zarejestruj nowe konto lub zaloguj się na istniejące konto, aby dodać do niego OpenID." -#: src/Module/Security/TwoFactor/Recovery.php:73 +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 +msgid "Passwords do not match." +msgstr "Hasła nie pasują do siebie." + +#: src/Module/Security/PasswordTooLong.php:64 +msgid "Password does not need changing." +msgstr "Hasło nie wymaga zmiany." + +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 +msgid "Password unchanged." +msgstr "Hasło niezmienione." + +#: src/Module/Security/PasswordTooLong.php:91 +msgid "Password Too Long" +msgstr "Hasło za długie" + +#: src/Module/Security/PasswordTooLong.php:92 +msgid "" +"Since version 2022.09, we've realized that any password longer than 72 " +"characters is truncated during hashing. To prevent any confusion about this " +"behavior, please update your password to be fewer or equal to 72 characters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:93 +msgid "Update Password" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Current Password:" +msgstr "Aktualne hasło:" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Your current password to confirm the changes" +msgstr "Wpisz aktualne hasło, aby potwierdzić zmiany" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces and accentuated letters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 +msgid "Password length is limited to 72 characters." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:74 #, php-format msgid "Remaining recovery codes: %d" msgstr "Pozostałe kody odzyskiwania: %d" -#: src/Module/Security/TwoFactor/Recovery.php:77 +#: src/Module/Security/TwoFactor/Recovery.php:80 #: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:95 msgid "Invalid code, please retry." msgstr "Nieprawidłowy kod, spróbuj ponownie." -#: src/Module/Security/TwoFactor/Recovery.php:96 +#: src/Module/Security/TwoFactor/Recovery.php:99 msgid "Two-factor recovery" msgstr "Odzyskiwanie dwuczynnikowe" -#: src/Module/Security/TwoFactor/Recovery.php:97 +#: src/Module/Security/TwoFactor/Recovery.php:100 msgid "" "

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

    " msgstr "

    Możesz wprowadzić jeden ze swoich jednorazowych kodów odzyskiwania w przypadku utraty dostępu do urządzenia mobilnego.

    " -#: src/Module/Security/TwoFactor/Recovery.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:101 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Nie masz telefonu? Wprowadzić dwuetapowy kod przywracania " -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:102 msgid "Please enter a recovery code" msgstr "Wprowadź kod odzyskiwania" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:103 msgid "Submit recovery code and complete login" msgstr "Prześlij kod odzyskiwania i pełne logowanie" @@ -8778,31 +9500,31 @@ msgstr "Wyloguj" msgid "Trust and sign out" msgstr "Zaufaj i wyloguj" -#: src/Module/Security/TwoFactor/Trust.php:95 +#: src/Module/Security/TwoFactor/Trust.php:96 msgid "Couldn't save browser to Cookie." msgstr "Nie można zapisać informacji o przeglądarce do ciasteczek." -#: src/Module/Security/TwoFactor/Trust.php:139 +#: src/Module/Security/TwoFactor/Trust.php:141 msgid "Trust this browser?" msgstr "Ufać tej przeglądarce?" -#: src/Module/Security/TwoFactor/Trust.php:140 +#: src/Module/Security/TwoFactor/Trust.php:142 msgid "" "

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

    " msgstr "

    Jeśli zdecydujesz się zaufać tej przeglądarce, przy następnym logowaniu nie zostaniesz poproszony o podanie kodu weryfikacyjnego.

    " -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:143 msgid "Not now" msgstr "Nie teraz" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:144 msgid "Don't trust" msgstr "Nie ufaj" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:145 msgid "Trust" -msgstr "Truj" +msgstr "Ufaj" #: src/Module/Security/TwoFactor/Verify.php:97 msgid "" @@ -8818,7 +9540,7 @@ msgid "" msgstr "Jeśli nie masz dostępu do swojego kodu uwierzytelniającego, możesz użyć dwuskładnikowego kodu odzyskiwania." #: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:154 +#: src/Module/Settings/TwoFactor/Verify.php:155 msgid "Please enter a code from your authentication app" msgstr "Wprowadź kod z aplikacji uwierzytelniającej" @@ -8826,127 +9548,119 @@ msgstr "Wprowadź kod z aplikacji uwierzytelniającej" msgid "Verify code and complete login" msgstr "Zweryfikuj kod i zakończ logowanie" -#: src/Module/Settings/Account.php:66 -msgid "Passwords do not match." -msgstr "Hasła nie pasują do siebie." - -#: src/Module/Settings/Account.php:80 -msgid "Password unchanged." -msgstr "Hasło niezmienione." - -#: src/Module/Settings/Account.php:95 +#: src/Module/Settings/Account.php:96 msgid "Please use a shorter name." msgstr "Użyj krótszej nazwy." -#: src/Module/Settings/Account.php:98 +#: src/Module/Settings/Account.php:99 msgid "Name too short." msgstr "Nazwa jest za krótka. " -#: src/Module/Settings/Account.php:107 +#: src/Module/Settings/Account.php:108 msgid "Wrong Password." msgstr "Nieprawidłowe hasło." -#: src/Module/Settings/Account.php:112 +#: src/Module/Settings/Account.php:113 msgid "Invalid email." msgstr "Niepoprawny e-mail." -#: src/Module/Settings/Account.php:118 +#: src/Module/Settings/Account.php:117 msgid "Cannot change to that email." msgstr "Nie można zmienić tego e-maila." -#: src/Module/Settings/Account.php:148 src/Module/Settings/Account.php:200 -#: src/Module/Settings/Account.php:220 src/Module/Settings/Account.php:304 -#: src/Module/Settings/Account.php:353 +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 msgid "Settings were not updated." msgstr "Ustawienia nie zostały zaktualizowane." -#: src/Module/Settings/Account.php:365 +#: src/Module/Settings/Account.php:364 msgid "Contact CSV file upload error" msgstr "Kontakt z plikiem CSV błąd przekazywania plików" -#: src/Module/Settings/Account.php:384 +#: src/Module/Settings/Account.php:383 msgid "Importing Contacts done" msgstr "Importowanie kontaktów zakończone" -#: src/Module/Settings/Account.php:397 +#: src/Module/Settings/Account.php:396 msgid "Relocate message has been send to your contacts" msgstr "Przeniesienie wiadomości zostało wysłane do Twoich kontaktów" -#: src/Module/Settings/Account.php:414 +#: src/Module/Settings/Account.php:413 msgid "Unable to find your profile. Please contact your admin." msgstr "Nie można znaleźć Twojego profilu. Skontaktuj się z administratorem." -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:455 msgid "Personal Page Subtypes" msgstr "Podtypy osobistych stron" -#: src/Module/Settings/Account.php:457 -msgid "Community Forum Subtypes" -msgstr "Podtypy społeczności forum" +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" +msgstr "" -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:466 msgid "Account for a personal profile." msgstr "Konto dla profilu osobistego." -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:473 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Konto dla organizacji, która automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:480 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Konto dla reflektora wiadomości, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." -#: src/Module/Settings/Account.php:488 +#: src/Module/Settings/Account.php:487 msgid "Account for community discussions." msgstr "Konto do dyskusji w społeczności." -#: src/Module/Settings/Account.php:495 +#: src/Module/Settings/Account.php:494 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Konto dla zwykłego profilu osobistego, który wymaga ręcznej zgody \"Przyjaciół\" i \"Obserwatorów\"." -#: src/Module/Settings/Account.php:502 +#: src/Module/Settings/Account.php:501 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Konto dla profilu publicznego, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." -#: src/Module/Settings/Account.php:509 +#: src/Module/Settings/Account.php:508 msgid "Automatically approves all contact requests." msgstr "Automatycznie zatwierdza wszystkie prośby o kontakt." -#: src/Module/Settings/Account.php:516 +#: src/Module/Settings/Account.php:515 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Konto popularnego profilu, które automatycznie zatwierdza prośby o kontakt jako \"Przyjaciele\"." -#: src/Module/Settings/Account.php:521 -msgid "Private Forum [Experimental]" -msgstr "Prywatne Forum [Eksperymentalne]" +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:522 msgid "Requires manual approval of contact requests." msgstr "Wymaga ręcznego zatwierdzania żądań kontaktów." -#: src/Module/Settings/Account.php:532 +#: src/Module/Settings/Account.php:531 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:532 +#: src/Module/Settings/Account.php:531 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opcjonalnie) Pozwól zalogować się na to konto przy pomocy OpenID." -#: src/Module/Settings/Account.php:540 +#: src/Module/Settings/Account.php:539 msgid "Publish your profile in your local site directory?" msgstr "Czy opublikować twój profil w katalogu lokalnej witryny?" -#: src/Module/Settings/Account.php:540 +#: src/Module/Settings/Account.php:539 #, php-format msgid "" "Your profile will be published in this node's local " @@ -8954,103 +9668,94 @@ msgid "" " system settings." msgstr "Twój profil zostanie opublikowany w lokalnym katalogu tego węzła. Dane Twojego profilu mogą być publicznie widoczne w zależności od ustawień systemu." -#: src/Module/Settings/Account.php:546 +#: src/Module/Settings/Account.php:545 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Twój profil zostanie również opublikowany w globalnych katalogach Friendica (np. %s)." -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:558 msgid "Account Settings" msgstr "Ustawienia konta" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:559 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Twój adres tożsamości to '%s' lub '%s'." -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:566 msgid "Password Settings" msgstr "Ustawienia hasła" -#: src/Module/Settings/Account.php:566 -msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "Dozwolone znaki to a-z, A-Z, 0-9 i znaki specjalne, z wyjątkiem białych znaków, podkreślonych liter i dwukropka (:)." - -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:568 msgid "Leave password fields blank unless changing" msgstr "Pozostaw pole hasła puste, jeżeli nie chcesz go zmienić." -#: src/Module/Settings/Account.php:568 -msgid "Current Password:" -msgstr "Aktualne hasło:" - -#: src/Module/Settings/Account.php:568 -msgid "Your current password to confirm the changes" -msgstr "Wpisz aktualne hasło, aby potwierdzić zmiany" - -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:570 msgid "Password:" msgstr "Hasło:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:570 msgid "Your current password to confirm the changes of the email address" msgstr "Twoje obecne hasło, aby potwierdzić zmiany adresu e-mail" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:573 msgid "Delete OpenID URL" msgstr "Usuń adres URL OpenID" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:575 msgid "Basic Settings" msgstr "Ustawienia podstawowe" #: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "Nazwa wyświetlana:" + +#: src/Module/Settings/Account.php:577 msgid "Email Address:" msgstr "Adres email:" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:578 msgid "Your Timezone:" msgstr "Twoja strefa czasowa:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:579 msgid "Your Language:" msgstr "Twój język:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:579 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Wybierz język, ktory bedzie używany do wyświetlania użytkownika friendica i wysłania Ci e-maili" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:580 msgid "Default Post Location:" msgstr "Domyślna lokalizacja wpisów:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:581 msgid "Use Browser Location:" msgstr "Używaj lokalizacji przeglądarki:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:583 msgid "Security and Privacy Settings" msgstr "Ustawienia bezpieczeństwa i prywatności" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:585 msgid "Maximum Friend Requests/Day:" msgstr "Maksymalna dzienna liczba zaproszeń do grona przyjaciół:" -#: src/Module/Settings/Account.php:584 src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 msgid "(to prevent spam abuse)" msgstr "(aby zapobiec spamowaniu)" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:587 msgid "Allow your profile to be searchable globally?" msgstr "Czy Twój profil ma być dostępny do wyszukiwania na całym świecie?" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:587 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 " @@ -9058,43 +9763,43 @@ msgid "" "indexed or not." msgstr "Aktywuj to ustawienie, jeśli chcesz, aby inni mogli Cię łatwo znaleźć i śledzić. Twój profil będzie można przeszukiwać na zdalnych systemach. To ustawienie określa również, czy Friendica poinformuje wyszukiwarki, że Twój profil powinien być indeksowany, czy nie." -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:588 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Ukryć listę kontaktów/znajomych przed osobami przeglądającymi Twój profil?" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:588 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "Lista kontaktów jest wyświetlana na stronie profilu. Aktywuj tę opcję, aby wyłączyć wyświetlanie listy kontaktów." -#: src/Module/Settings/Account.php:588 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Ukryć dane Twojego profilu przed anonimowymi widzami?" - -#: src/Module/Settings/Account.php:588 -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 "Anonimowi użytkownicy zobaczą tylko Twoje zdjęcie profilowe, swoją wyświetlaną nazwę i pseudonim, którego używasz na stronie profilu. Twoje publiczne posty i odpowiedzi będą nadal dostępne w inny sposób." +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "" #: src/Module/Settings/Account.php:589 +msgid "" +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "" + +#: src/Module/Settings/Account.php:590 msgid "Make public posts unlisted" msgstr "Ustaw publiczne wpisy jako niepubliczne" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:590 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "Twoje publiczne posty nie będą wyświetlane na stronach społeczności ani w wynikach wyszukiwania ani nie będą wysyłane do serwerów przekazywania. Jednak nadal mogą one pojawiać się w publicznych kanałach na serwerach zdalnych." -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:591 msgid "Make all posted pictures accessible" msgstr "Udostępnij wszystkie opublikowane zdjęcia" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:591 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 " @@ -9102,833 +9807,1177 @@ msgid "" "public on your photo albums though." msgstr "Ta opcja powoduje, że każde opublikowane zdjęcie jest dostępne poprzez bezpośredni link. Jest to obejście problemu polegającego na tym, że większość innych sieci nie może obsłużyć uprawnień do zdjęć. Jednak zdjęcia niepubliczne nadal nie będą widoczne publicznie w Twoich albumach." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:592 msgid "Allow friends to post to your profile page?" msgstr "Zezwalać znajomym na publikowanie postów na stronie Twojego profilu?" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:592 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Twoi znajomi mogą pisać posty na stronie Twojego profilu. Posty zostaną przesłane do Twoich kontaktów." -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:593 msgid "Allow friends to tag your posts?" msgstr "Zezwolić na oznaczanie Twoich postów przez znajomych?" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:593 msgid "Your contacts can add additional tags to your posts." msgstr "Twoje kontakty mogą dodawać do tagów dodatkowe posty." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:594 msgid "Permit unknown people to send you private mail?" msgstr "Zezwolić nieznanym osobom na wysyłanie prywatnych wiadomości?" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:594 msgid "" "Friendica network users may send you private messages even if they are not " "in your contact list." msgstr "Użytkownicy sieci w serwisie Friendica mogą wysyłać prywatne wiadomości, nawet jeśli nie znajdują się one na liście kontaktów." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:595 msgid "Maximum private messages per day from unknown people:" msgstr "Maksymalna liczba prywatnych wiadomości dziennie od nieznanych osób:" #: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "" + +#: src/Module/Settings/Account.php:598 msgid "Default Post Permissions" msgstr "Domyślne prawa dostępu wiadomości" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:602 msgid "Expiration settings" msgstr "Ustawienia ważności" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:603 msgid "Automatically expire posts after this many days:" msgstr "Posty wygasną automatycznie po następującej liczbie dni:" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:603 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte." -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:604 msgid "Expire posts" msgstr "Ważność wpisów" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:604 msgid "When activated, posts and comments will be expired." msgstr "Po aktywacji posty i komentarze wygasną." -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:605 msgid "Expire personal notes" msgstr "Ważność osobistych notatek" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:605 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Po aktywacji osobiste notatki na stronie profilu wygasną." -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:606 msgid "Expire starred posts" msgstr "Wygasaj wpisy oznaczone gwiazdką" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:606 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Oznaczanie postów gwiazdką powoduje, że wygasają. To zachowanie jest zastępowane przez to ustawienie." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:607 msgid "Only expire posts by others" msgstr "Wygasają tylko wpisy innych osób" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:607 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Po aktywacji Twoje posty nigdy nie wygasają. Zatem powyższe ustawienia obowiązują tylko dla otrzymanych postów." -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:610 msgid "Notification Settings" msgstr "Ustawienia powiadomień" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:611 msgid "Send a notification email when:" msgstr "Wysyłaj powiadmonienia na email, kiedy:" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:612 msgid "You receive an introduction" msgstr "Otrzymałeś zaproszenie" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:613 msgid "Your introductions are confirmed" msgstr "Twoje zaproszenie jest potwierdzone" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:614 msgid "Someone writes on your profile wall" msgstr "Ktoś pisze na Twojej tablicy profilu" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:615 msgid "Someone writes a followup comment" msgstr "Ktoś pisze komentarz nawiązujący." -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:616 msgid "You receive a private message" msgstr "Otrzymałeś prywatną wiadomość" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:617 msgid "You receive a friend suggestion" msgstr "Otrzymałeś propozycję od znajomych" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:618 msgid "You are tagged in a post" msgstr "Jesteś oznaczony znacznikiem we wpisie" -#: src/Module/Settings/Account.php:617 -msgid "You are poked/prodded/etc. in a post" -msgstr "Jesteś zaczepiony/zaczepiona/itp. w poście" - -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:620 msgid "Create a desktop notification when:" msgstr "Utwórz powiadomienia na pulpicie gdy:" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:621 msgid "Someone tagged you" msgstr "Ktoś Cię oznaczył" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:622 msgid "Someone directly commented on your post" msgstr "Ktoś bezpośrednio skomentował Twój wpis" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:623 msgid "Someone liked your content" msgstr "Ktoś polubił Twoje treści" -#: src/Module/Settings/Account.php:622 src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Można włączyć tylko wtedy, gdy włączone jest bezpośrednie powiadomienie o komentarzach." -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:624 msgid "Someone shared your content" msgstr "Ktoś udostępnił Twoje treści" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:625 msgid "Someone commented in your thread" msgstr "Ktoś skomentował w Twoim wątku" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:626 msgid "Someone commented in a thread where you commented" msgstr "Ktoś skomentował w wątku, w którym Ty skomentowałeś" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:627 msgid "Someone commented in a thread where you interacted" msgstr "Ktoś skomentował w wątku, w którym wchodziłeś w interakcję" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:629 msgid "Activate desktop notifications" msgstr "Aktywuj powiadomienia na pulpicie" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:629 msgid "Show desktop popup on new notifications" msgstr "Pokazuj wyskakujące okienko gdy otrzymasz powiadomienie" -#: src/Module/Settings/Account.php:632 +#: src/Module/Settings/Account.php:633 msgid "Text-only notification emails" msgstr "E-maile z powiadomieniami tekstowymi" -#: src/Module/Settings/Account.php:634 +#: src/Module/Settings/Account.php:635 msgid "Send text only notification emails, without the html part" msgstr "Wysyłaj tylko e-maile z powiadomieniami tekstowymi, bez części html" -#: src/Module/Settings/Account.php:638 +#: src/Module/Settings/Account.php:639 msgid "Show detailled notifications" msgstr "Pokazuj szczegółowe powiadomienia" -#: src/Module/Settings/Account.php:640 +#: src/Module/Settings/Account.php:641 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Domyślne powiadomienia są skondensowane z jednym powiadomieniem dla każdego przedmiotu. Po włączeniu wyświetlane jest każde powiadomienie." -#: src/Module/Settings/Account.php:644 +#: src/Module/Settings/Account.php:645 msgid "Show notifications of ignored contacts" msgstr "Pokaż powiadomienia o zignorowanych kontaktach" -#: src/Module/Settings/Account.php:646 +#: src/Module/Settings/Account.php:647 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "Nie widzisz wpisów od ignorowanych kontaktów. Ale nadal widzisz ich komentarze. To ustawienie określa, czy chcesz nadal otrzymywać regularne powiadomienia, które są powodowane przez ignorowane kontakty, czy nie." -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:650 msgid "Advanced Account/Page Type Settings" msgstr "Zaawansowane ustawienia konta/rodzaju strony" -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:651 msgid "Change the behaviour of this account for special situations" msgstr "Zmień zachowanie tego konta w sytuacjach specjalnych" -#: src/Module/Settings/Account.php:653 +#: src/Module/Settings/Account.php:654 msgid "Import Contacts" msgstr "Import kontaktów" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:655 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Prześlij plik CSV zawierający obsługę obserwowanych kont w pierwszej kolumnie wyeksportowanej ze starego konta." -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:656 msgid "Upload File" msgstr "Prześlij plik" -#: src/Module/Settings/Account.php:658 +#: src/Module/Settings/Account.php:659 msgid "Relocate" msgstr "Przeniesienie" -#: src/Module/Settings/Account.php:659 +#: src/Module/Settings/Account.php:660 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Jeśli ten profil został przeniesiony z innego serwera, a niektóre z Twoich kontaktów nie otrzymają aktualizacji, spróbuj nacisnąć ten przycisk." -#: src/Module/Settings/Account.php:660 +#: src/Module/Settings/Account.php:661 msgid "Resend relocate message to contacts" msgstr "Wyślij ponownie przenieść wiadomości do kontaktów" -#: src/Module/Settings/Delegation.php:53 +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "Ustawienia dodatków" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "Brak skonfigurowanych ustawień dodatków" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "Połączenie z kontem email używając wybranych ustawień nie powiodło się." + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "OStatus (GNU Social)" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "Dostęp do e-maila jest wyłączony na tej stronie." + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "Brak" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "Ogólne ustawienia mediów społecznościowych" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "Obserwowany zakres treści" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "Domyślnie na Twojej osi czasu będą pokazywane wątki, w których uczestniczyli Twoi obserwowani, ale które nie zostały przez nich rozpoczęte. Możesz wyłączyć tę funkcję lub rozszerzyć ją na konwersacje, w których Twoi obserwujący polubili dany wpis." + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "Tylko rozmowy, które rozpoczęli moi obserwowani" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "Rozmowy, które rozpoczęli moi obserwowani, lub które komentowali (domyślnie)" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "Wszelkie rozmowy, z którymi wchodziłem w interakcję, w tym polubienia" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "Włącz ostrzeżenia o treści" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "Użytkownicy w sieciach takich jak Mastodon lub Pleroma mogą ustawić pole ostrzeżenia o treści, które domyślnie zwija ich posty. Umożliwia to automatyczne zwijanie zamiast ustawiania ostrzeżenia o treści jako tytułu wpisu. Nie wpływa na żadne inne skonfigurowane filtrowanie treści." + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "Włącz inteligentne skracanie" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "Zwykle system próbuje znaleźć najlepszy odnośnik do dodania do skróconych postów. Jeśli wyłączone, każdy skrócony wpis będzie zawsze wskazywał na oryginalny wpis friendica." + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "Włącz proste skracanie tekstu" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "Zwykle system skraca wpisy przy następnym wysunięciu wiersza. Jeśli ta opcja jest włączona, system skróci tekst do maksymalnego limitu znaków." + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "Dołącz tytuł linku" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "Po aktywacji tytuł dołączonego linku zostanie dodany jako tytuł postów do Diaspory. Jest to szczególnie pomocne w przypadku kontaktów „zdalnych”, które udostępniają treść kanału." + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "Twoje stare konto ActivityPub/GNU Social" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "Jeśli wprowadzisz tutaj swoją starą nazwę konta z systemu opartego na ActivityPub lub nazwę konta GNU Social/Statusnet (w formacie użytkownik@domena.tld), Twoje kontakty zostaną dodane automatycznie. Po zakończeniu pole zostanie opróżnione." + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "Napraw subskrypcje OStatus" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "Ustawienia emaila/skrzynki mailowej" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową." + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "Ostatni sprawdzony e-mail:" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "Nazwa serwera IMAP:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "Port IMAP:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "Bezpieczeństwo:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "Nazwa logowania e-mail:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "Hasło e-mail:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "Adres zwrotny:" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "Wyślij publiczny wpis do wszystkich kontaktów e-mail:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "Akcja po zaimportowaniu:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "Przenieś do katalogu" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "Przenieś do katalogu:" + +#: src/Module/Settings/Delegation.php:54 msgid "Delegation successfully granted." msgstr "Delegacja została pomyślnie przyznana." -#: src/Module/Settings/Delegation.php:55 +#: src/Module/Settings/Delegation.php:56 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Nie znaleziono użytkownika nadrzędnego, jest on niedostępny lub hasło nie pasuje." -#: src/Module/Settings/Delegation.php:59 +#: src/Module/Settings/Delegation.php:60 msgid "Delegation successfully revoked." msgstr "Delegacja została pomyślnie odwołana." -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 +#: src/Module/Settings/Delegation.php:82 +#: src/Module/Settings/Delegation.php:104 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Delegowani administratorzy mogą przeglądać uprawnienia do delegowania, ale nie mogą ich zmieniać." -#: src/Module/Settings/Delegation.php:95 +#: src/Module/Settings/Delegation.php:96 msgid "Delegate user not found." msgstr "Nie znaleziono delegowanego użytkownika." -#: src/Module/Settings/Delegation.php:143 +#: src/Module/Settings/Delegation.php:144 msgid "No parent user" msgstr "Brak nadrzędnego użytkownika" -#: src/Module/Settings/Delegation.php:154 -#: src/Module/Settings/Delegation.php:165 +#: src/Module/Settings/Delegation.php:155 +#: src/Module/Settings/Delegation.php:166 msgid "Parent User" msgstr "Użytkownik nadrzędny" -#: src/Module/Settings/Delegation.php:162 +#: src/Module/Settings/Delegation.php:163 msgid "Additional Accounts" msgstr "Dodatkowe konta" -#: src/Module/Settings/Delegation.php:163 +#: src/Module/Settings/Delegation.php:164 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Zarejestruj dodatkowe konta, które są automatycznie połączone z istniejącym kontem, aby móc nimi zarządzać z tego konta." -#: src/Module/Settings/Delegation.php:164 +#: src/Module/Settings/Delegation.php:165 msgid "Register an additional account" msgstr "Zarejestruj dodatkowe konto" -#: src/Module/Settings/Delegation.php:168 +#: src/Module/Settings/Delegation.php:169 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Użytkownicy nadrzędni mają pełną kontrolę nad tym kontem, w tym także ustawienia konta. Sprawdź dokładnie, komu przyznasz ten dostęp." -#: src/Module/Settings/Delegation.php:172 +#: src/Module/Settings/Delegation.php:173 msgid "Delegates" msgstr "Oddeleguj" -#: src/Module/Settings/Delegation.php:174 +#: src/Module/Settings/Delegation.php:175 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 "Delegaci mogą zarządzać wszystkimi aspektami tego konta/strony, z wyjątkiem podstawowych ustawień konta. Nie przekazuj swojego konta osobistego nikomu, komu nie ufasz całkowicie." -#: src/Module/Settings/Delegation.php:175 +#: src/Module/Settings/Delegation.php:176 msgid "Existing Page Delegates" msgstr "Obecni delegaci stron" -#: src/Module/Settings/Delegation.php:177 +#: src/Module/Settings/Delegation.php:178 msgid "Potential Delegates" msgstr "Potencjalni delegaci" -#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:181 msgid "Add" msgstr "Dodaj" -#: src/Module/Settings/Delegation.php:181 +#: src/Module/Settings/Delegation.php:182 msgid "No entries." msgstr "Brak wpisów." -#: src/Module/Settings/Display.php:107 +#: src/Module/Settings/Display.php:146 msgid "The theme you chose isn't available." msgstr "Wybrany motyw jest niedostępny." -#: src/Module/Settings/Display.php:146 +#: src/Module/Settings/Display.php:186 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Nieobsługiwane)" -#: src/Module/Settings/Display.php:192 +#: src/Module/Settings/Display.php:221 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:222 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:223 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:224 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:259 msgid "Display Settings" msgstr "Ustawienia wyglądu" -#: src/Module/Settings/Display.php:194 +#: src/Module/Settings/Display.php:261 msgid "General Theme Settings" msgstr "Ogólne ustawienia motywu" -#: src/Module/Settings/Display.php:195 +#: src/Module/Settings/Display.php:262 msgid "Custom Theme Settings" msgstr "Niestandardowe ustawienia motywów" -#: src/Module/Settings/Display.php:196 +#: src/Module/Settings/Display.php:263 msgid "Content Settings" msgstr "Ustawienia zawartości" -#: src/Module/Settings/Display.php:197 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:161 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 +#: src/Module/Settings/Display.php:264 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Ustawienia motywu" -#: src/Module/Settings/Display.php:198 -msgid "Calendar" -msgstr "Kalendarz" +#: src/Module/Settings/Display.php:265 +msgid "Timelines" +msgstr "" -#: src/Module/Settings/Display.php:204 +#: src/Module/Settings/Display.php:272 msgid "Display Theme:" msgstr "Wyświetl motyw:" -#: src/Module/Settings/Display.php:205 +#: src/Module/Settings/Display.php:273 msgid "Mobile Theme:" msgstr "Motyw dla urządzeń mobilnych:" -#: src/Module/Settings/Display.php:208 +#: src/Module/Settings/Display.php:276 msgid "Number of items to display per page:" msgstr "Liczba elementów do wyświetlenia na stronie:" -#: src/Module/Settings/Display.php:208 src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277 msgid "Maximum of 100 items" msgstr "Maksymalnie 100 elementów" -#: src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:277 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Liczba elementów do wyświetlenia na stronie podczas przeglądania z urządzenia mobilnego:" -#: src/Module/Settings/Display.php:210 +#: src/Module/Settings/Display.php:278 msgid "Update browser every xx seconds" msgstr "Odświeżaj stronę co xx sekund" -#: src/Module/Settings/Display.php:210 +#: src/Module/Settings/Display.php:278 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimum 10 sekund. Wprowadź -1, aby go wyłączyć." -#: src/Module/Settings/Display.php:211 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "Automatyczne aktualizacje tylko w górnej części stron strumienia postu" - -#: src/Module/Settings/Display.php:211 -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 "Automatyczna aktualizacja może dodawać nowe wpisy na górze stron strumienia wpisów, co może wpływać na pozycję przewijania i zakłócać normalne czytanie, jeśli dzieje się ono w innym miejscu na górze strony." - -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:279 msgid "Display emoticons" msgstr "Wyświetl emotikony" -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:279 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "Po włączeniu emotikony są zastępowane pasującymi symbolami." -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:280 msgid "Infinite scroll" msgstr "Nieskończone przewijanie" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:280 msgid "Automatic fetch new items when reaching the page end." msgstr "Automatyczne pobieranie nowych elementów po osiągnięciu końca strony." -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:281 msgid "Enable Smart Threading" msgstr "Włącz inteligentne wątkowanie" -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:281 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "Włącz automatyczne tłumienie obcych wcięć wątku." -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:282 msgid "Display the Dislike feature" msgstr "Wyświetl funkcję \"Nie lubię\"" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:282 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "Wyświetlaj przycisk \"Nie lubię\" i reakcje na wpisy i komentarze." -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:283 msgid "Display the resharer" msgstr "Wyświetl udostępniającego" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:283 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Wyświetlaj pierwszego udostępniającego jako ikonę i tekst na elemencie udostępnianym dalej." -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:284 msgid "Stay local" msgstr "Pozostań lokalny" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:284 msgid "Don't go to a remote system when following a contact link." msgstr "Nie przechodź do zdalnego systemu podczas korzystania z łącza kontaktowego." -#: src/Module/Settings/Display.php:219 +#: src/Module/Settings/Display.php:285 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:285 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Timelines for the network page:" +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Select all the timelines that you want to see on your network page." +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Channel languages:" +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Select all languages that you want to see in your channels." +msgstr "" + +#: src/Module/Settings/Display.php:290 msgid "Beginning of week:" msgstr "Początek tygodnia:" -#: src/Module/Settings/Profile/Index.php:83 -msgid "Profile Name is required." -msgstr "Nazwa profilu jest wymagana." +#: src/Module/Settings/Display.php:291 +msgid "Default calendar view:" +msgstr "" -#: src/Module/Settings/Profile/Index.php:131 +#: src/Module/Settings/Display.php:300 src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:312 +#, php-format +msgid "%s: %s" +msgstr "" + +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "Dodatkowe funkcje" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Powiązane aplikacje" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "Odwołaj upoważnienie" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:167 msgid "Profile couldn't be updated." msgstr "Profil nie mógł zostać zaktualizowany." -#: src/Module/Settings/Profile/Index.php:172 -#: src/Module/Settings/Profile/Index.php:192 +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 msgid "Label:" msgstr "Etykieta:" -#: src/Module/Settings/Profile/Index.php:173 -#: src/Module/Settings/Profile/Index.php:193 +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 msgid "Value:" msgstr "Wartość:" -#: src/Module/Settings/Profile/Index.php:183 -#: src/Module/Settings/Profile/Index.php:203 +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 msgid "Field Permissions" msgstr "Uprawnienia pola" -#: src/Module/Settings/Profile/Index.php:184 -#: src/Module/Settings/Profile/Index.php:204 +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 msgid "(click to open/close)" msgstr "(kliknij by otworzyć/zamknąć)" -#: src/Module/Settings/Profile/Index.php:190 +#: src/Module/Settings/Profile/Index.php:224 msgid "Add a new profile field" msgstr "Dodaj nowe pole profilu" -#: src/Module/Settings/Profile/Index.php:220 +#: src/Module/Settings/Profile/Index.php:247 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:249 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:255 msgid "Profile Actions" msgstr "Akcje profilowe" -#: src/Module/Settings/Profile/Index.php:221 +#: src/Module/Settings/Profile/Index.php:256 msgid "Edit Profile Details" msgstr "Edytuj informacje o profilu" -#: src/Module/Settings/Profile/Index.php:223 +#: src/Module/Settings/Profile/Index.php:258 msgid "Change Profile Photo" msgstr "Zmień zdjęcie profilowe" -#: src/Module/Settings/Profile/Index.php:228 +#: src/Module/Settings/Profile/Index.php:261 msgid "Profile picture" msgstr "Zdjęcie profilowe" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:262 msgid "Location" msgstr "Lokalizacja" -#: src/Module/Settings/Profile/Index.php:230 src/Util/Temporal.php:93 -#: src/Util/Temporal.php:95 +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 msgid "Miscellaneous" msgstr "Różne" -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:264 msgid "Custom Profile Fields" msgstr "Niestandardowe pola profilu" -#: src/Module/Settings/Profile/Index.php:233 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 msgid "Upload Profile Photo" msgstr "Wyślij zdjęcie profilowe" -#: src/Module/Settings/Profile/Index.php:237 -msgid "Display name:" -msgstr "Nazwa wyświetlana:" - -#: src/Module/Settings/Profile/Index.php:240 -msgid "Street Address:" -msgstr "Ulica:" - -#: src/Module/Settings/Profile/Index.php:241 -msgid "Locality/City:" -msgstr "Miasto:" - -#: src/Module/Settings/Profile/Index.php:242 -msgid "Region/State:" -msgstr "Województwo/Stan:" - -#: src/Module/Settings/Profile/Index.php:243 -msgid "Postal/Zip Code:" -msgstr "Kod pocztowy:" - -#: src/Module/Settings/Profile/Index.php:244 -msgid "Country:" -msgstr "Kraj:" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "XMPP (Jabber) address:" -msgstr "Adres XMPP (Jabber):" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "" -"The XMPP address will be published so that people can follow you there." -msgstr "Adres XMPP zostanie opublikowany, aby ludzie mogli Cię tam śledzić." - -#: src/Module/Settings/Profile/Index.php:247 -msgid "Matrix (Element) address:" -msgstr "Adres Matrix (Element):" - -#: src/Module/Settings/Profile/Index.php:247 -msgid "" -"The Matrix address will be published so that people can follow you there." -msgstr "Adres Matrix zostanie opublikowany, aby ludzie mogli Cię tam śledzić." - -#: src/Module/Settings/Profile/Index.php:248 -msgid "Homepage URL:" -msgstr "Adres URL strony domowej:" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "Public Keywords:" -msgstr "Publiczne słowa kluczowe:" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "Private Keywords:" -msgstr "Prywatne słowa kluczowe:" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Używany do wyszukiwania profili, niepokazywany innym)" - -#: src/Module/Settings/Profile/Index.php:251 +#: src/Module/Settings/Profile/Index.php:266 #, 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 "

    Pola niestandardowe pojawiają się na stronie Twojego profilu.

    \n\t\t\t\t

    Możesz użyć BBCodes w wartościach pól.

    \n\t\t\t\t

    Zmieniaj kolejność, przeciągając tytuł pola.

    \n\t\t\t\t

    Opróżnij pole etykiety, aby usunąć pole niestandardowe.

    \n\t\t\t\t

    Pola niepubliczne mogą być widoczne tylko dla wybranych kontaktów Friendica lub kontaktów Friendica w wybranych grupach.

    " +"\t\t\t\t

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

    " +msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:108 -#: src/Module/Settings/Profile/Photo/Crop.php:126 -#: src/Module/Settings/Profile/Photo/Crop.php:144 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "Ulica:" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "Miasto:" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "Województwo/Stan:" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "Kod pocztowy:" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "Kraj:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "Adres XMPP (Jabber):" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "Adres XMPP zostanie opublikowany, aby ludzie mogli Cię tam śledzić." + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "Adres Matrix (Element):" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "Adres Matrix zostanie opublikowany, aby ludzie mogli Cię tam śledzić." + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "Adres URL strony domowej:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "Publiczne słowa kluczowe:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "Prywatne słowa kluczowe:" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Używany do wyszukiwania profili, niepokazywany innym)" + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 +#: src/Module/Settings/Profile/Photo/Index.php:101 #, php-format msgid "Image size reduction [%s] failed." msgstr "Redukcja rozmiaru obrazka [%s] nie powiodła się." -#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Crop.php:150 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Ponownie załaduj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie nie pojawi się natychmiast." -#: src/Module/Settings/Profile/Photo/Crop.php:156 +#: src/Module/Settings/Profile/Photo/Crop.php:155 msgid "Unable to process image" msgstr "Nie udało się przetworzyć obrazu" -#: src/Module/Settings/Profile/Photo/Crop.php:175 +#: src/Module/Settings/Profile/Photo/Crop.php:174 msgid "Photo not found." msgstr "Nie znaleziono zdjęcia." -#: src/Module/Settings/Profile/Photo/Crop.php:197 +#: src/Module/Settings/Profile/Photo/Crop.php:196 msgid "Profile picture successfully updated." msgstr "Zdjęcie profilowe zostało pomyślnie zaktualizowane." -#: src/Module/Settings/Profile/Photo/Crop.php:223 -#: src/Module/Settings/Profile/Photo/Crop.php:227 +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 msgid "Crop Image" msgstr "Przytnij zdjęcie" -#: src/Module/Settings/Profile/Photo/Crop.php:224 +#: src/Module/Settings/Profile/Photo/Crop.php:223 msgid "Please adjust the image cropping for optimum viewing." msgstr "Dostosuj kadrowanie obrazu, aby uzyskać optymalny obraz." -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:225 msgid "Use Image As Is" msgstr "Użyj obrazu takim, jaki jest" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:45 msgid "Missing uploaded image." msgstr " Brak przesłanego obrazu." -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Profile Picture Settings" msgstr "Ustawienia zdjęcia profilowego" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Current Profile Picture" msgstr "Bieżące zdjęcie profilowe" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Profile Picture" msgstr "Prześlij zdjęcie profilowe" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload Picture:" msgstr "Załaduj zdjęcie:" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:132 msgid "or" msgstr "lub" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:134 msgid "skip this step" msgstr "pomiń ten krok" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:136 msgid "select a photo from your photo albums" msgstr "wybierz zdjęcie z twojego albumu" -#: src/Module/Settings/TwoFactor/AppSpecific.php:64 -#: src/Module/Settings/TwoFactor/Recovery.php:62 -#: src/Module/Settings/TwoFactor/Trusted.php:65 -#: src/Module/Settings/TwoFactor/Verify.php:68 +#: src/Module/Settings/RemoveMe.php:94 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[Powiadomienie Systemu Friendica]" + +#: src/Module/Settings/RemoveMe.php:94 +msgid "User deleted their account" +msgstr "Użytkownik usunął swoje konto" + +#: src/Module/Settings/RemoveMe.php:95 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych." + +#: src/Module/Settings/RemoveMe.php:96 +#, php-format +msgid "The user id is %d" +msgstr "Identyfikatorem użytkownika jest %d" + +#: src/Module/Settings/RemoveMe.php:108 +msgid "Your user account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:128 +msgid "Remove My Account" +msgstr "Usuń moje konto" + +#: src/Module/Settings/RemoveMe.php:129 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć." + +#: src/Module/Settings/RemoveMe.php:131 +msgid "Please enter your password for verification:" +msgstr "Wprowadź hasło w celu weryfikacji:" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "" + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 msgid "Please enter your password to access this page." msgstr "Wprowadź hasło, aby uzyskać dostęp do tej strony." -#: src/Module/Settings/TwoFactor/AppSpecific.php:82 +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 msgid "App-specific password generation failed: The description is empty." msgstr "Generowanie hasła aplikacji nie powiodło się: Opis jest pusty." -#: src/Module/Settings/TwoFactor/AppSpecific.php:85 +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 msgid "" "App-specific password generation failed: This description already exists." msgstr "Generowanie hasła aplikacji nie powiodło się: Opis ten już istnieje." -#: src/Module/Settings/TwoFactor/AppSpecific.php:89 +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 msgid "New app-specific password generated." msgstr "Nowe hasło specyficzne dla aplikacji." -#: src/Module/Settings/TwoFactor/AppSpecific.php:95 +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 msgid "App-specific passwords successfully revoked." msgstr "Hasła specyficzne dla aplikacji zostały pomyślnie cofnięte." -#: src/Module/Settings/TwoFactor/AppSpecific.php:105 +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 msgid "App-specific password successfully revoked." msgstr "Hasło specyficzne dla aplikacji zostało pomyślnie odwołane." -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 msgid "Two-factor app-specific passwords" msgstr "Dwuskładnikowe hasła aplikacji" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 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 "

    Hasła aplikacji to losowo generowane hasła używane zamiast zwykłego hasła do uwierzytelniania konta w aplikacjach innych firm, które nie obsługują uwierzytelniania dwuskładnikowego.

    " -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Pamiętaj, aby teraz skopiować nowe hasło aplikacji. Nie będziesz mógł go zobaczyć ponownie!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 msgid "Description" msgstr "Opis" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 msgid "Last Used" msgstr "Ostatnio używane" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 msgid "Revoke" msgstr "Unieważnij" -#: src/Module/Settings/TwoFactor/AppSpecific.php:135 +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Revoke All" msgstr "Unieważnij wszyskie" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 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 "Gdy generujesz nowe hasło aplikacji, musisz go od razu użyć. Zostanie ono wyświetlone raz po wygenerowaniu." -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 msgid "Generate new app-specific password" msgstr "Wygeneruj nowe hasło specyficzne dla aplikacji" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa na moim Fairphone 2..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:141 +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 msgid "Generate" msgstr "Utwórz" -#: src/Module/Settings/TwoFactor/Index.php:69 +#: src/Module/Settings/TwoFactor/Index.php:68 msgid "Two-factor authentication successfully disabled." msgstr "Autoryzacja dwuskładnikowa została pomyślnie wyłączona." -#: src/Module/Settings/TwoFactor/Index.php:121 +#: src/Module/Settings/TwoFactor/Index.php:120 msgid "" "

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

    " msgstr "

    Użyj aplikacji na urządzeniu mobilnym, aby uzyskać dwuskładnikowe kody uwierzytelniające po wyświetleniu monitu o zalogowanie.

    " -#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Authenticator app" msgstr "Aplikacja Authenticator" -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Configured" msgstr "Skonfigurowane" -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Not Configured" msgstr "Nie skonfigurowane" -#: src/Module/Settings/TwoFactor/Index.php:127 +#: src/Module/Settings/TwoFactor/Index.php:126 msgid "

    You haven't finished configuring your authenticator app.

    " msgstr "

    Nie zakończyłeś konfigurowania aplikacji uwierzytelniającej.

    " -#: src/Module/Settings/TwoFactor/Index.php:128 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "

    Your authenticator app is correctly configured.

    " msgstr "

    Twoja aplikacja uwierzytelniająca jest poprawnie skonfigurowana.

    " -#: src/Module/Settings/TwoFactor/Index.php:130 +#: src/Module/Settings/TwoFactor/Index.php:129 msgid "Recovery codes" msgstr "Kody odzyskiwania" -#: src/Module/Settings/TwoFactor/Index.php:131 +#: src/Module/Settings/TwoFactor/Index.php:130 msgid "Remaining valid codes" msgstr "Pozostałe ważne kody" -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "" "

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

    " msgstr "

    Te jednorazowe kody mogą zastąpić kod aplikacji uwierzytelniającej w przypadku utraty dostępu do niej.

    " -#: src/Module/Settings/TwoFactor/Index.php:135 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "App-specific passwords" msgstr "Hasła specyficzne dla aplikacji" -#: src/Module/Settings/TwoFactor/Index.php:136 +#: src/Module/Settings/TwoFactor/Index.php:135 msgid "Generated app-specific passwords" msgstr "Wygenerowane hasła specyficzne dla aplikacji" -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "" "

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

    " msgstr "

    Losowo generowane hasła umożliwiają uwierzytelnianie w aplikacjach nie obsługujących uwierzytelniania dwuskładnikowego.

    " -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "Current password:" msgstr "Aktualne hasło:" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "Musisz podać swoje aktualne hasło, aby zmienić ustawienia uwierzytelniania dwuskładnikowego." -#: src/Module/Settings/TwoFactor/Index.php:142 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "Enable two-factor authentication" msgstr "Włącz uwierzytelnianie dwuskładnikowe" -#: src/Module/Settings/TwoFactor/Index.php:143 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Disable two-factor authentication" msgstr "Wyłącz uwierzytelnianie dwuskładnikowe" -#: src/Module/Settings/TwoFactor/Index.php:144 +#: src/Module/Settings/TwoFactor/Index.php:143 msgid "Show recovery codes" msgstr "Pokaż kody odzyskiwania" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "Manage app-specific passwords" msgstr "Zarządzaj hasłami specyficznymi dla aplikacji" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:145 msgid "Manage trusted browsers" msgstr "Zarządzaj zaufanymi przeglądarkami" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Finish app configuration" msgstr "Zakończ konfigurację aplikacji" -#: src/Module/Settings/TwoFactor/Recovery.php:78 +#: src/Module/Settings/TwoFactor/Recovery.php:80 msgid "New recovery codes successfully generated." msgstr "Wygenerowano nowe kody odzyskiwania." -#: src/Module/Settings/TwoFactor/Recovery.php:104 +#: src/Module/Settings/TwoFactor/Recovery.php:106 msgid "Two-factor recovery codes" msgstr "Dwuskładnikowe kody odzyskiwania" -#: src/Module/Settings/TwoFactor/Recovery.php:106 +#: src/Module/Settings/TwoFactor/Recovery.php:108 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 " @@ -9937,68 +10986,68 @@ msgid "" "account.

    " msgstr "

    Kody odzyskiwania mogą służyć do uzyskiwania dostępu do konta w przypadku utraty dostępu do urządzenia i braku możliwości otrzymania kodów uwierzytelniania dwuskładnikowego.

    Umieść je w bezpiecznym miejscu! Jeśli zgubisz urządzenie i nie będziesz mieć kodów odzyskiwania, utracisz dostęp do swojego konta.

    " -#: src/Module/Settings/TwoFactor/Recovery.php:108 +#: src/Module/Settings/TwoFactor/Recovery.php:110 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Kiedy generujesz nowe kody odzyskiwania, musisz skopiować nowe kody. Twoje stare kody nie będą już działać." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:111 msgid "Generate new recovery codes" msgstr "Wygeneruj nowe kody odzyskiwania" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "Next: Verification" msgstr "Następny: Weryfikacja" -#: src/Module/Settings/TwoFactor/Trusted.php:82 +#: src/Module/Settings/TwoFactor/Trusted.php:84 msgid "Trusted browsers successfully removed." msgstr "Zaufane przeglądarki zostały pomyślnie usunięte." -#: src/Module/Settings/TwoFactor/Trusted.php:92 +#: src/Module/Settings/TwoFactor/Trusted.php:94 msgid "Trusted browser successfully removed." msgstr "Zaufana przeglądarka została pomyślnie usunięta." -#: src/Module/Settings/TwoFactor/Trusted.php:134 +#: src/Module/Settings/TwoFactor/Trusted.php:136 msgid "Two-factor Trusted Browsers" msgstr "Zaufane przeglądarki dwuskładnikowe" -#: src/Module/Settings/TwoFactor/Trusted.php:135 +#: src/Module/Settings/TwoFactor/Trusted.php:137 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 "Zaufane przeglądarki to indywidualne przeglądarki, które zostały wybrane, aby pominąć uwierzytelnianie dwuskładnikowe celem uzyskania dostępu do Friendica. Korzystaj z tej funkcji oszczędnie, ponieważ może ona negować korzyści płynące z uwierzytelniania dwuskładnikowego." -#: src/Module/Settings/TwoFactor/Trusted.php:136 +#: src/Module/Settings/TwoFactor/Trusted.php:138 msgid "Device" msgstr "Urządzenie" -#: src/Module/Settings/TwoFactor/Trusted.php:137 +#: src/Module/Settings/TwoFactor/Trusted.php:139 msgid "OS" msgstr "System operacyjny" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:141 msgid "Trusted" msgstr "Zaufane" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:142 msgid "Created At" msgstr "Utworzono" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:143 msgid "Last Use" msgstr "Ostatnie użycie" -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Module/Settings/TwoFactor/Trusted.php:145 msgid "Remove All" msgstr "Usuń wszystkie" -#: src/Module/Settings/TwoFactor/Verify.php:90 +#: src/Module/Settings/TwoFactor/Verify.php:91 msgid "Two-factor authentication successfully activated." msgstr "Uwierzytelnienie dwuskładnikowe zostało pomyślnie aktywowane." -#: src/Module/Settings/TwoFactor/Verify.php:124 +#: src/Module/Settings/TwoFactor/Verify.php:125 #, php-format msgid "" "

    Or you can submit the authentication settings manually:

    \n" @@ -10018,68 +11067,105 @@ msgid "" "" msgstr "

    Możesz przesłać ustawienia uwierzytelniania ręcznie:

    \n
    \n\t
    Wystawc
    \n\t
    %s
    \n\t
    Nazwa konta
    \n\t
    %s
    \n\t
    Sekretny klucz
    \n\t
    %s
    \n\t
    Typ
    \n\t
    Oparte na czasie
    \n\t
    Liczba cyfr
    \n\t
    6
    \n\t
    Hashing algorytmu
    \n\t
    SHA-1
    \n
    " -#: src/Module/Settings/TwoFactor/Verify.php:144 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Two-factor code verification" msgstr "Weryfikacja kodu dwuskładnikowego" -#: src/Module/Settings/TwoFactor/Verify.php:146 +#: src/Module/Settings/TwoFactor/Verify.php:147 msgid "" "

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

    " msgstr "

    Zeskanuj kod QR za pomocą aplikacji uwierzytelniającej i prześlij podany kod.

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

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

    %s

    " msgstr "

    Możesz też otworzyć następujący adres URL w urządzeniu mobilnym:

    %s

    " -#: src/Module/Settings/TwoFactor/Verify.php:155 +#: src/Module/Settings/TwoFactor/Verify.php:156 msgid "Verify code and enable two-factor authentication" msgstr "Sprawdź kod i włącz uwierzytelnianie dwuskładnikowe" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 msgid "Export account" msgstr "Eksportuj konto" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 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 "Eksportuj informacje o swoim koncie i kontaktach. Użyj tego do utworzenia kopii zapasowej konta i/lub przeniesienia go na inny serwer." -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:91 msgid "Export all" msgstr "Eksportuj wszystko" -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:91 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 "Wyeksportuj informacje o swoim koncie, kontakty i wszystkie swoje elementy jako json. Może to być bardzo duży plik i może zająć dużo czasu. Użyj tego, aby wykonać pełną kopię zapasową swojego konta (zdjęcia nie są eksportowane)." -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:92 msgid "Export Contacts to CSV" msgstr "Eksportuj kontakty do CSV" -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:92 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Wyeksportuj listę kont, które obserwujesz, jako plik CSV. Kompatybilny np. Mastodont." -#: src/Module/Special/HTTPException.php:51 +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:37 +msgid "" +"This node has blocked the top-level author or the author of the shared post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:38 +msgid "" +"You have ignored or blocked the top-level author or the author of the shared" +" post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:39 +msgid "" +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "" + +#: src/Module/Special/HTTPException.php:78 msgid "Stack trace:" msgstr "Ślad stosu:" -#: src/Module/Special/HTTPException.php:55 +#: src/Module/Special/HTTPException.php:83 #, php-format msgid "Exception thrown in %s:%d" msgstr "Zgłoszono wyjątek %s:%d" -#: src/Module/Tos.php:57 src/Module/Tos.php:91 +#: src/Module/Tos.php:58 src/Module/Tos.php:107 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" @@ -10092,28 +11178,109 @@ msgid "" "settings, it is not necessary for communication." msgstr "W momencie rejestracji oraz w celu zapewnienia komunikacji między kontem użytkownika, a jego kontaktami, użytkownik musi podać nazwę wyświetlaną (pseudonim), nazwę użytkownika (przydomek) i działający adres e-mail. Nazwy będą dostępne na stronie profilu konta dla każdego odwiedzającego stronę, nawet jeśli inne szczegóły profilu nie zostaną wyświetlone. Adres e-mail będzie używany tylko do wysyłania powiadomień użytkownika o interakcjach, ale nie będzie wyświetlany w widoczny sposób. Lista kont w katalogu użytkownika węzła lub globalnym katalogu użytkownika jest opcjonalna i może być kontrolowana w ustawieniach użytkownika, nie jest konieczna do komunikacji." -#: src/Module/Tos.php:58 src/Module/Tos.php:92 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 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 "Te dane są wymagane do komunikacji i są przekazywane do węzłów partnerów komunikacyjnych i są tam przechowywane. Użytkownicy mogą wprowadzać dodatkowe prywatne dane, które mogą być przesyłane na konta partnerów komunikacyjnych." -#: src/Module/Tos.php:59 src/Module/Tos.php:93 +#: src/Module/Tos.php:60 src/Module/Tos.php:109 #, 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 "W dowolnym momencie zalogowany użytkownik może wyeksportować dane swojego konta z ustawień konta. Jeśli użytkownik chce usunąć swoje konto, może to zrobić w %1$s/removeme. Usunięcie konta będzie trwałe. Usunięcia danych zażądają również węzły partnerów komunikacyjnych." +"href=\"%1$s/settings/removeme\">%1$s/settings/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 "" -#: src/Module/Tos.php:62 src/Module/Tos.php:90 +#: src/Module/Tos.php:63 src/Module/Tos.php:106 msgid "Privacy Statement" msgstr "Oświadczenie o prywatności" +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "" + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "Żądany element nie istnieje lub został usunięty." + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "Import użytkowników na zamkniętych serwerach może być wykonywany tylko przez administratora." + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "Przenieś konto" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "Możesz zaimportować konto z innego serwera Friendica." + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "Musisz wyeksportować konto ze starego serwera i przesłać je tutaj. Odtworzymy twoje stare konto tutaj ze wszystkimi twoimi kontaktami. Postaramy się również poinformować twoich znajomych, że się tutaj przeniosłeś." + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "Ta funkcja jest eksperymentalna. Nie możemy importować kontaktów z sieci OStatus (GNU Social/Statusnet) lub z Diaspory" + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "Pliki konta" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Aby eksportować konto, wejdź w \"Ustawienia->Eksport danych osobistych\" i wybierz \"Eksportuj konto\"" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "Błąd podczas odczytu pliku konta" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Błąd! Brak danych wersji w pliku! To nie jest plik konta Friendica?" + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Użytkownik '%s' już istnieje na tym serwerze!" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "Błąd tworzenia użytkownika" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "Nie zaimportowano %d kontaktu" +msgstr[1] "Nie zaimportowano %d kontaktów" +msgstr[2] "Nie zaimportowano %d kontaktów" +msgstr[3] "%d kontakty nie zostały zaimportowane " + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "Błąd tworzenia profilu użytkownika" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "Gotowe. Możesz teraz zalogować się z użyciem nazwy użytkownika i hasła" + #: src/Module/Welcome.php:44 msgid "Welcome to Friendica" msgstr "Witamy na Friendica" @@ -10244,15 +11411,15 @@ msgid "" msgstr "Na bocznym panelu strony Kontaktów znajduje się kilka narzędzi do znajdowania nowych przyjaciół. Możemy dopasować osoby według zainteresowań, wyszukiwać osoby według nazwisk i zainteresowań oraz dostarczać sugestie oparte na relacjach sieciowych. Na zupełnie nowej stronie sugestie znajomych zwykle zaczynają być wypełniane w ciągu 24 godzin" #: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "Grupy kontaktów" +msgid "Add Your Contacts To Circle" +msgstr "" #: 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 "Gdy zaprzyjaźnisz się z przyjaciółmi, uporządkuj je w prywatne grupy konwersacji na pasku bocznym na stronie Kontakty, a następnie możesz wchodzić w interakcje z każdą grupą prywatnie na stronie Sieć." +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "" #: src/Module/Welcome.php:80 msgid "Why Aren't My Posts Public?" @@ -10279,51 +11446,51 @@ msgid "" " features and resources." msgstr "Na naszych stronach pomocy można znaleźć szczegółowe informacje na temat innych funkcji programu i zasobów." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:134 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 msgid "{0} wants to follow you" msgstr "{0} chce Cię obserwować" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:136 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 msgid "{0} has started following you" msgstr "{0} zaczął Cię obserwować" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:91 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 #, php-format msgid "%s liked %s's post" msgstr "%s polubił wpis %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:103 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 #, php-format msgid "%s disliked %s's post" msgstr "%s nie lubi wpisów %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:115 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 #, php-format msgid "%s is attending %s's event" msgstr "%s uczestniczy w wydarzeniu %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:127 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 #, php-format msgid "%s is not attending %s's event" msgstr "%s nie uczestniczy w wydarzeniu %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:139 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 #, php-format msgid "%s may attending %s's event" msgstr "%s może uczestniczyć w wydarzeniu %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:169 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 #, php-format msgid "%s is now friends with %s" msgstr "%s jest teraz znajomym %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:336 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:374 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 #, php-format msgid "%s commented on %s's post" msgstr "%s skomentował wpis %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:373 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 #, php-format msgid "%s created a new post" msgstr "%s dodał nowy wpis" @@ -10350,320 +11517,305 @@ msgstr "%1$s chce Cię obserwować" msgid "%1$s has started following you" msgstr "%1$s zaczął Cię obserwować" -#: src/Navigation/Notifications/Factory/Notification.php:207 +#: src/Navigation/Notifications/Factory/Notification.php:208 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "%1$s polubił Twój komentarz o %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:210 +#: src/Navigation/Notifications/Factory/Notification.php:211 #, php-format msgid "%1$s liked your post %2$s" msgstr "%1$s polubił Twój wpis %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:218 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "%1$s nie lubi Twojego komentarza o %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:220 +#: src/Navigation/Notifications/Factory/Notification.php:221 #, php-format msgid "%1$s disliked your post %2$s" msgstr "%1$s nie lubi Twojego wpisu %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:228 #, php-format msgid "%1$s shared your comment %2$s" msgstr "%1$s udostępnił Twój komentarz %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:230 +#: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 #, php-format msgid "%1$s shared your post %2$s" msgstr "%1$s udostępnił Twój wpis %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:234 -#: src/Navigation/Notifications/Factory/Notification.php:304 +#: src/Navigation/Notifications/Factory/Notification.php:235 +#: src/Navigation/Notifications/Factory/Notification.php:305 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "%1$s udostępnił wpis %2$s z %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:236 -#: src/Navigation/Notifications/Factory/Notification.php:306 +#: src/Navigation/Notifications/Factory/Notification.php:237 +#: src/Navigation/Notifications/Factory/Notification.php:307 #, php-format msgid "%1$s shared a post from %3$s" msgstr "%1$s udostępnił wpis z %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:238 -#: src/Navigation/Notifications/Factory/Notification.php:308 +#: src/Navigation/Notifications/Factory/Notification.php:239 +#: src/Navigation/Notifications/Factory/Notification.php:309 #, php-format msgid "%1$s shared the post %2$s" msgstr "%1$s udostępnił wpis %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:240 -#: src/Navigation/Notifications/Factory/Notification.php:310 +#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:311 #, php-format msgid "%1$s shared a post" msgstr "%1$s udostępnił wpis" -#: src/Navigation/Notifications/Factory/Notification.php:248 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "%1$s chce uczestniczyć w Twoim wydarzeniu %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:255 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "%1$s nie chce uczestniczyć w Twoim wydarzeniu %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:262 +#: src/Navigation/Notifications/Factory/Notification.php:263 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "%1$s może chcieć wziąć udział w Twoim wydarzeniu %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:269 +#: src/Navigation/Notifications/Factory/Notification.php:270 #, php-format msgid "%1$s tagged you on %2$s" msgstr "%1$s oznaczył Cię na %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:273 +#: src/Navigation/Notifications/Factory/Notification.php:274 #, php-format msgid "%1$s replied to you on %2$s" msgstr "%1$s odpowiedział Ci na %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:277 +#: src/Navigation/Notifications/Factory/Notification.php:278 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "%1$s skomentował w Twoim wątku %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:281 +#: src/Navigation/Notifications/Factory/Notification.php:282 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "%1$s skomentował Twój komentarz %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:288 +#: src/Navigation/Notifications/Factory/Notification.php:289 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "%1$s skomentował w swoim wątku %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:290 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s commented in their thread" msgstr "%1$s skomentował w swoim wątku" -#: src/Navigation/Notifications/Factory/Notification.php:292 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "%1$s skomentował w wątku %2$s od %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:294 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "%1$s skomentował w wątku od %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:299 +#: src/Navigation/Notifications/Factory/Notification.php:300 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "%1$s skomentował Twój wątek %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:222 -#: src/Navigation/Notifications/Repository/Notify.php:736 +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 msgid "[Friendica:Notify]" msgstr "[Friendica: Powiadomienie]" -#: src/Navigation/Notifications/Repository/Notify.php:286 +#: src/Navigation/Notifications/Repository/Notify.php:293 #, php-format msgid "%s New mail received at %s" msgstr "%s Nowa poczta otrzymana o %s" -#: src/Navigation/Notifications/Repository/Notify.php:288 +#: src/Navigation/Notifications/Repository/Notify.php:295 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s wysłał(-a) ci nową prywatną wiadomość na %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:289 +#: src/Navigation/Notifications/Repository/Notify.php:296 msgid "a private message" msgstr "prywatna wiadomość" -#: src/Navigation/Notifications/Repository/Notify.php:289 +#: src/Navigation/Notifications/Repository/Notify.php:296 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s wysłał(-a) ci %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:291 +#: src/Navigation/Notifications/Repository/Notify.php:298 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Odwiedź %s, aby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości." -#: src/Navigation/Notifications/Repository/Notify.php:321 +#: src/Navigation/Notifications/Repository/Notify.php:328 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s skomentował %2$s's %3$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:326 +#: src/Navigation/Notifications/Repository/Notify.php:333 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s skomentował Twój %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:330 +#: src/Navigation/Notifications/Repository/Notify.php:337 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s skomentował swój %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:334 -#: src/Navigation/Notifications/Repository/Notify.php:770 +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Komentarz do rozmowy #%2$d autor %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:336 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s skomentował(-a) rozmowę którą śledzisz." -#: src/Navigation/Notifications/Repository/Notify.php:340 -#: src/Navigation/Notifications/Repository/Notify.php:355 -#: src/Navigation/Notifications/Repository/Notify.php:374 -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Odwiedź %s, aby zobaczyć i/lub odpowiedzieć na rozmowę." -#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:354 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s opublikował na Twojej tablicy profilu" -#: src/Navigation/Notifications/Repository/Notify.php:349 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s opublikował(-a) wpis na Twojej tablicy o %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:350 +#: src/Navigation/Notifications/Repository/Notify.php:357 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s opublikował(-a) na [url=%2$s]Twojej tablicy[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:362 -#, php-format -msgid "%1$s %2$s poked you" -msgstr "%1$s %2$s zaczepił Cię" - -#: src/Navigation/Notifications/Repository/Notify.php:364 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s zaczepił Cię %2$s" - -#: src/Navigation/Notifications/Repository/Notify.php:365 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s[url=%2$s] zaczepił Cię[/url]." - -#: src/Navigation/Notifications/Repository/Notify.php:382 +#: src/Navigation/Notifications/Repository/Notify.php:370 #, php-format msgid "%s Introduction received" msgstr "%s Otrzymano wprowadzenie" -#: src/Navigation/Notifications/Repository/Notify.php:384 +#: src/Navigation/Notifications/Repository/Notify.php:372 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Otrzymałeś wstęp od '%1$s' z %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Zostałeś [url=%1$s] przyjęty [/ url] z %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:390 -#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 #, php-format msgid "You may visit their profile at %s" msgstr "Możesz odwiedzić ich profil na stronie %s" -#: src/Navigation/Notifications/Repository/Notify.php:392 +#: src/Navigation/Notifications/Repository/Notify.php:380 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie." -#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:387 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Nowa osoba udostępnia Ci coś" -#: src/Navigation/Notifications/Repository/Notify.php:401 -#: src/Navigation/Notifications/Repository/Notify.php:402 +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s dzieli się z tobą w %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:409 +#: src/Navigation/Notifications/Repository/Notify.php:397 #, php-format msgid "%s You have a new follower" msgstr "%s Masz nowego obserwującego" -#: src/Navigation/Notifications/Repository/Notify.php:411 -#: src/Navigation/Notifications/Repository/Notify.php:412 +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Masz nowego obserwatora na %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:425 +#: src/Navigation/Notifications/Repository/Notify.php:413 #, php-format msgid "%s Friend suggestion received" msgstr "%s Otrzymano sugestię znajomego" -#: src/Navigation/Notifications/Repository/Notify.php:427 +#: src/Navigation/Notifications/Repository/Notify.php:415 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Otrzymałeś od znajomego sugestię '%1$s' na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:428 +#: src/Navigation/Notifications/Repository/Notify.php:416 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Otrzymałeś [url=%1$s] sugestię znajomego [/url] dla %2$s od %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:422 msgid "Name:" msgstr "Imię:" -#: src/Navigation/Notifications/Repository/Notify.php:435 +#: src/Navigation/Notifications/Repository/Notify.php:423 msgid "Photo:" msgstr "Zdjęcie:" -#: src/Navigation/Notifications/Repository/Notify.php:438 +#: src/Navigation/Notifications/Repository/Notify.php:426 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Odwiedź stronę %s, aby zatwierdzić lub odrzucić sugestię." -#: src/Navigation/Notifications/Repository/Notify.php:446 -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 #, php-format msgid "%s Connection accepted" msgstr "%s Połączenie zaakceptowane" -#: src/Navigation/Notifications/Repository/Notify.php:448 -#: src/Navigation/Notifications/Repository/Notify.php:463 +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' zaakceptował Twoją prośbę o połączenie na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:449 -#: src/Navigation/Notifications/Repository/Notify.php:464 +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s zaakceptował twoją [url=%1$s] prośbę o połączenie [/url]." -#: src/Navigation/Notifications/Repository/Notify.php:454 +#: src/Navigation/Notifications/Repository/Notify.php:442 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Jesteście teraz przyjaciółmi i możesz wymieniać aktualizacje stanu, zdjęcia i e-maile bez ograniczeń." -#: src/Navigation/Notifications/Repository/Notify.php:456 +#: src/Navigation/Notifications/Repository/Notify.php:444 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Odwiedź stronę %s jeśli chcesz wprowadzić zmiany w tym związku." -#: src/Navigation/Notifications/Repository/Notify.php:469 +#: src/Navigation/Notifications/Repository/Notify.php:457 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -10672,33 +11824,34 @@ msgid "" "automatically." msgstr "'%1$s' zdecydował się zaakceptować Cię jako fana, który ogranicza niektóre formy komunikacji - takie jak prywatne wiadomości i niektóre interakcje w profilu. Jeśli jest to strona celebrytów lub społeczności, ustawienia te zostały zastosowane automatycznie." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' możesz zdecydować o przedłużeniu tego w dwukierunkową lub bardziej ścisłą relację w przyszłości. " -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:461 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Odwiedź stronę %s, jeśli chcesz wprowadzić zmiany w tej relacji." -#: src/Navigation/Notifications/Repository/Notify.php:483 +#: src/Navigation/Notifications/Repository/Notify.php:471 msgid "registration request" msgstr "prośba o rejestrację" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:473 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Otrzymałeś wniosek rejestracyjny od '%1$s' na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:486 +#: src/Navigation/Notifications/Repository/Notify.php:474 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Otrzymałeś [url=%1$s] żądanie rejestracji [/url] od %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:491 +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 #, php-format msgid "" "Full Name:\t%s\n" @@ -10706,21 +11859,50 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Imię i nazwisko:\t%s\nLokalizacja witryny:\t%s\nNazwa użytkownika:\t%s(%s)" -#: src/Navigation/Notifications/Repository/Notify.php:497 +#: src/Navigation/Notifications/Repository/Notify.php:485 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Odwiedź stronę %s, aby zatwierdzić lub odrzucić wniosek." -#: src/Navigation/Notifications/Repository/Notify.php:764 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:780 #, php-format msgid "%s %s tagged you" msgstr "%s %s oznaczył Cię" -#: src/Navigation/Notifications/Repository/Notify.php:767 +#: src/Navigation/Notifications/Repository/Notify.php:783 #, php-format msgid "%s %s shared a new post" msgstr "%s %s udostępnił nowy wpis" +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "" + #: src/Object/EMail/ItemCCEMail.php:42 #, php-format msgid "" @@ -10744,194 +11926,208 @@ msgstr "Jeśli nie chcesz otrzymywać tych wiadomości kontaktuj się z nadawcą msgid "%s posted an update." msgstr "%s zaktualizował wpis." -#: src/Object/Post.php:136 +#: src/Object/Post.php:138 msgid "Private Message" msgstr "Wiadomość prywatna" -#: src/Object/Post.php:140 +#: src/Object/Post.php:142 msgid "Public Message" msgstr "Wiadomość publiczna" -#: src/Object/Post.php:144 +#: src/Object/Post.php:146 msgid "Unlisted Message" msgstr "Wiadomość niepubliczna" -#: src/Object/Post.php:179 +#: src/Object/Post.php:181 msgid "This entry was edited" msgstr "Ten wpis został zedytowany" -#: src/Object/Post.php:207 +#: src/Object/Post.php:209 msgid "Connector Message" msgstr "Komunikat łącznika" -#: src/Object/Post.php:222 src/Object/Post.php:224 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Edytuj" -#: src/Object/Post.php:248 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Usuń globalnie" -#: src/Object/Post.php:248 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Usuń lokalnie" -#: src/Object/Post.php:264 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "Zablokuj %s" -#: src/Object/Post.php:269 +#: src/Object/Post.php:273 +#, php-format +msgid "Ignore %s" +msgstr "" + +#: src/Object/Post.php:278 +#, php-format +msgid "Collapse %s" +msgstr "" + +#: src/Object/Post.php:282 +msgid "Report post" +msgstr "" + +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "Zapisz w katalogu" -#: src/Object/Post.php:304 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Będę uczestniczyć" -#: src/Object/Post.php:304 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Nie będę uczestniczyć" -#: src/Object/Post.php:304 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Mogę wziąć udział" -#: src/Object/Post.php:334 +#: src/Object/Post.php:363 msgid "Ignore thread" msgstr "Zignoruj ​​wątek" -#: src/Object/Post.php:335 +#: src/Object/Post.php:364 msgid "Unignore thread" msgstr "Przestań ignorować ​​wątek" -#: src/Object/Post.php:336 +#: src/Object/Post.php:365 msgid "Toggle ignore status" msgstr "Przełącz stan ignorowania" -#: src/Object/Post.php:346 +#: src/Object/Post.php:375 msgid "Add star" msgstr "Dodaj gwiazdkę" -#: src/Object/Post.php:347 +#: src/Object/Post.php:376 msgid "Remove star" msgstr "Usuń gwiazdkę" -#: src/Object/Post.php:348 +#: src/Object/Post.php:377 msgid "Toggle star status" msgstr "Przełącz stan gwiazdy" -#: src/Object/Post.php:359 +#: src/Object/Post.php:388 msgid "Pin" msgstr "Przypnij" -#: src/Object/Post.php:360 +#: src/Object/Post.php:389 msgid "Unpin" msgstr "Odepnij" -#: src/Object/Post.php:361 +#: src/Object/Post.php:390 msgid "Toggle pin status" msgstr "Przełącz stan podpięcia" -#: src/Object/Post.php:364 +#: src/Object/Post.php:393 msgid "Pinned" msgstr "Przypięty" -#: src/Object/Post.php:369 +#: src/Object/Post.php:398 msgid "Add tag" msgstr "Dodaj znacznik" -#: src/Object/Post.php:382 +#: src/Object/Post.php:411 msgid "Quote share this" msgstr "Cytuj udostępnij to" -#: src/Object/Post.php:382 +#: src/Object/Post.php:411 msgid "Quote Share" msgstr "Udostępnienie cytatu" -#: src/Object/Post.php:385 +#: src/Object/Post.php:414 msgid "Reshare this" msgstr "Udostępnij to dalej" -#: src/Object/Post.php:385 +#: src/Object/Post.php:414 msgid "Reshare" msgstr "Udostępnij dalej" -#: src/Object/Post.php:386 +#: src/Object/Post.php:415 msgid "Cancel your Reshare" msgstr "Anuluj swoje dalsze udostępnianie" -#: src/Object/Post.php:386 +#: src/Object/Post.php:415 msgid "Unshare" msgstr "Przestań udostępniać" -#: src/Object/Post.php:433 +#: src/Object/Post.php:466 #, php-format msgid "%s (Received %s)" msgstr "%s (Otrzymano %s)" -#: src/Object/Post.php:438 +#: src/Object/Post.php:472 msgid "Comment this item on your system" msgstr "Skomentuj ten element w swoim systemie" -#: src/Object/Post.php:438 +#: src/Object/Post.php:472 msgid "Remote comment" msgstr "Zdalny komentarz" -#: src/Object/Post.php:459 +#: src/Object/Post.php:494 msgid "Share via ..." msgstr "Udostępnij poprzez..." -#: src/Object/Post.php:459 +#: src/Object/Post.php:494 msgid "Share via external services" msgstr "Udostępnij za pośrednictwem usług zewnętrznych" -#: src/Object/Post.php:488 +#: src/Object/Post.php:523 msgid "to" msgstr "do" -#: src/Object/Post.php:489 +#: src/Object/Post.php:524 msgid "via" msgstr "przez" -#: src/Object/Post.php:490 +#: src/Object/Post.php:525 msgid "Wall-to-Wall" msgstr "Tablica-w-Tablicę" -#: src/Object/Post.php:491 +#: src/Object/Post.php:526 msgid "via Wall-To-Wall:" msgstr "przez Tablica-w-Tablicę:" -#: src/Object/Post.php:533 +#: src/Object/Post.php:573 #, php-format msgid "Reply to %s" msgstr "Odpowiedź %s" -#: src/Object/Post.php:536 +#: src/Object/Post.php:576 msgid "More" msgstr "Więcej" -#: src/Object/Post.php:554 +#: src/Object/Post.php:595 msgid "Notifier task is pending" msgstr "Zadanie Notifier jest w toku" -#: src/Object/Post.php:555 +#: src/Object/Post.php:596 msgid "Delivery to remote servers is pending" msgstr "Trwa przesyłanie do serwerów zdalnych" -#: src/Object/Post.php:556 +#: src/Object/Post.php:597 msgid "Delivery to remote servers is underway" msgstr "Trwa dostawa do serwerów zdalnych" -#: src/Object/Post.php:557 +#: src/Object/Post.php:598 msgid "Delivery to remote servers is mostly done" msgstr "Dostawa do zdalnych serwerów jest w większości wykonywana" -#: src/Object/Post.php:558 +#: src/Object/Post.php:599 msgid "Delivery to remote servers is done" msgstr "Trwa dostarczanie do zdalnych serwerów" -#: src/Object/Post.php:578 +#: src/Object/Post.php:619 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -10940,54 +12136,99 @@ msgstr[1] "%d komentarze" msgstr[2] "%d komentarzy" msgstr[3] "%d komentarzy" -#: src/Object/Post.php:579 +#: src/Object/Post.php:620 msgid "Show more" msgstr "Pokaż więcej" -#: src/Object/Post.php:580 +#: src/Object/Post.php:621 msgid "Show fewer" msgstr "Pokaż mniej" -#: src/Protocol/OStatus.php:1705 +#: src/Object/Post.php:657 +#, php-format +msgid "Reshared by: %s" +msgstr "" + +#: src/Object/Post.php:662 +#, php-format +msgid "Viewed by: %s" +msgstr "" + +#: src/Object/Post.php:667 +#, php-format +msgid "Liked by: %s" +msgstr "" + +#: src/Object/Post.php:672 +#, php-format +msgid "Disliked by: %s" +msgstr "" + +#: src/Object/Post.php:677 +#, php-format +msgid "Attended by: %s" +msgstr "" + +#: src/Object/Post.php:682 +#, php-format +msgid "Maybe attended by: %s" +msgstr "" + +#: src/Object/Post.php:687 +#, php-format +msgid "Not attended by: %s" +msgstr "" + +#: src/Object/Post.php:692 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "(bez tematu)" + +#: src/Protocol/OStatus.php:1390 #, php-format msgid "%s is now following %s." msgstr "%s zaczął(-ęła) obserwować %s." -#: src/Protocol/OStatus.php:1706 +#: src/Protocol/OStatus.php:1391 msgid "following" msgstr "następujący" -#: src/Protocol/OStatus.php:1709 +#: src/Protocol/OStatus.php:1394 #, php-format msgid "%s stopped following %s." msgstr "%s przestał(a) obserwować %s." -#: src/Protocol/OStatus.php:1710 +#: src/Protocol/OStatus.php:1395 msgid "stopped following" msgstr "przestał śledzić" -#: src/Render/FriendicaSmartyEngine.php:65 -msgid "The folder view/smarty3/ must be writable by webserver." -msgstr "Katalog view/smarty3/ musi być zapisywalny przez serwer WWW." +#: src/Render/FriendicaSmartyEngine.php:56 +#, php-format +msgid "The folder %s must be writable by webserver." +msgstr "" -#: src/Security/Authentication.php:226 +#: src/Security/Authentication.php:227 msgid "Login failed." msgstr "Logowanie nieudane." -#: src/Security/Authentication.php:267 +#: src/Security/Authentication.php:272 msgid "Login failed. Please check your credentials." msgstr "Logowanie nie powiodło się. Sprawdź swoje dane uwierzytelniające." -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:391 #, php-format msgid "Welcome %s" msgstr "Witaj %s" -#: src/Security/Authentication.php:375 +#: src/Security/Authentication.php:392 msgid "Please upload a profile photo." msgstr "Proszę dodać zdjęcie profilowe." -#: src/Util/EMailer/MailBuilder.php:259 +#: src/Util/EMailer/MailBuilder.php:260 msgid "Friendica Notification" msgstr "Powiadomienia Friendica" @@ -11010,228 +12251,235 @@ msgstr "%s Administrator" msgid "thanks" msgstr "dziękuję" -#: src/Util/Temporal.php:167 +#: src/Util/Temporal.php:172 msgid "YYYY-MM-DD or MM-DD" msgstr "RRRR-MM-DD lub MM-DD" -#: src/Util/Temporal.php:275 +#: src/Util/Temporal.php:280 #, php-format msgid "Time zone: %s Change in Settings" msgstr "Strefa czasowa: %s Zmień w ustawieniach" -#: src/Util/Temporal.php:318 +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 msgid "never" msgstr "nigdy" -#: src/Util/Temporal.php:325 +#: src/Util/Temporal.php:343 msgid "less than a second ago" msgstr "mniej niż sekundę temu" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:352 msgid "year" msgstr "rok" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:352 msgid "years" msgstr "lata" -#: src/Util/Temporal.php:334 +#: src/Util/Temporal.php:353 msgid "months" msgstr "miesiące" -#: src/Util/Temporal.php:335 +#: src/Util/Temporal.php:354 msgid "weeks" msgstr "tygodnie" -#: src/Util/Temporal.php:336 +#: src/Util/Temporal.php:355 msgid "days" msgstr "dni" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:356 msgid "hour" msgstr "godzina" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:356 msgid "hours" msgstr "godziny" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:357 msgid "minute" msgstr "minuta" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:357 msgid "minutes" msgstr "minut" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:358 msgid "second" msgstr "sekunda" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:358 msgid "seconds" msgstr "sekundy" -#: src/Util/Temporal.php:349 +#: src/Util/Temporal.php:367 #, php-format msgid "in %1$d %2$s" msgstr "w %1$d %2$s" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:370 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s temu" -#: src/Worker/Delivery.php:525 -msgid "(no subject)" -msgstr "(bez tematu)" - -#: src/Worker/PushSubscription.php:112 +#: src/Worker/PushSubscription.php:110 msgid "Notification from Friendica" msgstr "Powiadomienia z Friendica" -#: src/Worker/PushSubscription.php:113 +#: src/Worker/PushSubscription.php:111 msgid "Empty Post" msgstr "Pusty wpis" -#: view/theme/duepuntozero/config.php:52 +#: view/theme/duepuntozero/config.php:68 msgid "default" msgstr "standardowe" -#: view/theme/duepuntozero/config.php:53 +#: view/theme/duepuntozero/config.php:69 msgid "greenzero" msgstr "zielone zero" -#: view/theme/duepuntozero/config.php:54 +#: view/theme/duepuntozero/config.php:70 msgid "purplezero" msgstr "fioletowe zero" -#: view/theme/duepuntozero/config.php:55 +#: view/theme/duepuntozero/config.php:71 msgid "easterbunny" msgstr "zajączek wielkanocny" -#: view/theme/duepuntozero/config.php:56 +#: view/theme/duepuntozero/config.php:72 msgid "darkzero" msgstr "ciemne zero" -#: view/theme/duepuntozero/config.php:57 +#: view/theme/duepuntozero/config.php:73 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:58 +#: view/theme/duepuntozero/config.php:74 msgid "slackr" msgstr "luźny" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:87 msgid "Variations" msgstr "Wariacje" -#: view/theme/frio/config.php:142 +#: view/theme/frio/config.php:153 msgid "Light (Accented)" msgstr "Jasny (akcentowany)" -#: view/theme/frio/config.php:143 +#: view/theme/frio/config.php:154 msgid "Dark (Accented)" msgstr "Ciemny (akcentowany)" -#: view/theme/frio/config.php:144 +#: view/theme/frio/config.php:155 msgid "Black (Accented)" msgstr "Czarny (z akcentem)" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Note" msgstr "Uwaga" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Check image permissions if all users are allowed to see the image" msgstr "Sprawdź uprawnienia do obrazu, jeśli wszyscy użytkownicy mogą oglądać obraz" -#: view/theme/frio/config.php:162 +#: view/theme/frio/config.php:173 msgid "Custom" msgstr "Własne" -#: view/theme/frio/config.php:163 +#: view/theme/frio/config.php:174 msgid "Legacy" msgstr "Przestarzałe" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:175 msgid "Accented" msgstr "Akcentowany" -#: view/theme/frio/config.php:165 +#: view/theme/frio/config.php:176 msgid "Select color scheme" msgstr "Wybierz schemat kolorów" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Select scheme accent" msgstr "Wybierz akcent schematu" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Blue" msgstr "Niebieski" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Red" msgstr "Czerwony" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Purple" msgstr "Purpurowy" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Green" msgstr "Zielony" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Pink" msgstr "Różowy" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "Copy or paste schemestring" msgstr "Skopiuj lub wklej ciąg schematu" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Możesz skopiować ten ciąg, aby podzielić się swoim motywem z innymi. Wklejanie tutaj stosuje schemat" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:179 msgid "Navigation bar background color" msgstr "Kolor tła paska nawigacyjnego" -#: view/theme/frio/config.php:169 +#: view/theme/frio/config.php:180 msgid "Navigation bar icon color " msgstr "Kolor ikon na pasku nawigacyjnym " -#: view/theme/frio/config.php:170 +#: view/theme/frio/config.php:181 msgid "Link color" msgstr "Kolor odnośników" -#: view/theme/frio/config.php:171 +#: view/theme/frio/config.php:182 msgid "Set the background color" msgstr "Ustaw kolor tła" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:183 msgid "Content background opacity" msgstr "Nieprzezroczystość tła treści" -#: view/theme/frio/config.php:173 +#: view/theme/frio/config.php:184 msgid "Set the background image" msgstr "Ustaw obraz tła" -#: view/theme/frio/config.php:174 +#: view/theme/frio/config.php:185 msgid "Background image style" msgstr "Styl obrazu tła" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "" + +#: view/theme/frio/config.php:192 msgid "Login page background image" msgstr "Obraz tła strony logowania" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Login page background color" msgstr "Kolor tła strony logowania" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Leave background image and color empty for theme defaults" msgstr "Pozostaw pusty obraz tła i kolor dla domyślnych ustawień motywu" @@ -11279,78 +12527,78 @@ msgstr "Przejdź do głównej zawartości" msgid "Back to top" msgstr "Powrót do góry" -#: view/theme/frio/theme.php:212 +#: view/theme/frio/theme.php:211 msgid "Guest" msgstr "Gość" -#: view/theme/frio/theme.php:215 +#: view/theme/frio/theme.php:214 msgid "Visitor" msgstr "Odwiedzający" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Alignment" msgstr "Wyrównanie" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Left" msgstr "Do lewej" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Center" msgstr "Do środka" -#: view/theme/quattro/config.php:74 +#: view/theme/quattro/config.php:90 msgid "Color scheme" msgstr "Schemat kolorów" -#: view/theme/quattro/config.php:75 +#: view/theme/quattro/config.php:91 msgid "Posts font size" msgstr "Rozmiar czcionki wpisów" -#: view/theme/quattro/config.php:76 +#: view/theme/quattro/config.php:92 msgid "Textareas font size" msgstr "Rozmiar czcionki obszarów tekstowych" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" -msgstr "Lista oddzielonych przecinkami forów pomocniczych" +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" +msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "don't show" msgstr "nie pokazuj" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "show" msgstr "pokazuj" -#: view/theme/vier/config.php:121 +#: view/theme/vier/config.php:137 msgid "Set style" msgstr "Ustaw styl" -#: view/theme/vier/config.php:122 +#: view/theme/vier/config.php:138 msgid "Community Pages" msgstr "Strony społeczności" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:134 +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 msgid "Community Profiles" msgstr "Profile społeczności" -#: view/theme/vier/config.php:124 +#: view/theme/vier/config.php:140 msgid "Help or @NewHere ?" msgstr "Pomóż lub @NowyTutaj ?" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:305 +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 msgid "Connect Services" msgstr "Połączone serwisy" -#: view/theme/vier/config.php:126 +#: view/theme/vier/config.php:142 msgid "Find Friends" msgstr "Znajdź znajomych" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:161 +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 msgid "Last users" msgstr "Ostatni użytkownicy" -#: view/theme/vier/theme.php:220 +#: view/theme/vier/theme.php:234 msgid "Quick Start" msgstr "Szybki start" diff --git a/view/lang/pl/strings.php b/view/lang/pl/strings.php index e98f638c1..e0c3e3828 100644 --- a/view/lang/pl/strings.php +++ b/view/lang/pl/strings.php @@ -5,104 +5,13 @@ function string_plural_select_pl($n){ $n = intval($n); if ($n==1) { return 0; } else if (($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14)) { return 1; } else if ($n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14)) { return 2; } else { return 3; } }} -$a->strings['Access denied.'] = 'Brak dostępu.'; -$a->strings['User not found.'] = 'Użytkownik nie znaleziony.'; -$a->strings['Access to this profile has been restricted.'] = 'Dostęp do tego profilu został ograniczony.'; -$a->strings['Events'] = 'Wydarzenia'; -$a->strings['View'] = 'Widok'; -$a->strings['Previous'] = 'Poprzedni'; -$a->strings['Next'] = 'Następny'; -$a->strings['today'] = 'dzisiaj'; -$a->strings['month'] = 'miesiąc'; -$a->strings['week'] = 'tydzień'; -$a->strings['day'] = 'dzień'; -$a->strings['list'] = 'lista'; -$a->strings['User not found'] = 'Użytkownik nie znaleziony'; -$a->strings['This calendar format is not supported'] = 'Ten format kalendarza nie jest obsługiwany'; -$a->strings['No exportable data found'] = 'Nie znaleziono danych do eksportu'; -$a->strings['calendar'] = 'kalendarz'; -$a->strings['Public access denied.'] = 'Publiczny dostęp zabroniony.'; -$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'Żądany element nie istnieje lub został usunięty.'; -$a->strings['The feed for this item is unavailable.'] = 'Kanał dla tego elementu jest niedostępny.'; -$a->strings['Permission denied.'] = 'Brak uprawnień.'; -$a->strings['Item not found'] = 'Nie znaleziono elementu'; -$a->strings['Edit post'] = 'Edytuj wpis'; -$a->strings['Save'] = 'Zapisz'; -$a->strings['Loading...'] = 'Wczytywanie...'; -$a->strings['Upload photo'] = 'Wyślij zdjęcie'; -$a->strings['upload photo'] = 'wyślij zdjęcie'; -$a->strings['Attach file'] = 'Załącz plik'; -$a->strings['attach file'] = 'załącz plik'; -$a->strings['Insert web link'] = 'Wstaw link'; -$a->strings['web link'] = 'odnośnik sieciowy'; -$a->strings['Insert video link'] = 'Wstaw link do filmu'; -$a->strings['video link'] = 'link do filmu'; -$a->strings['Insert audio link'] = 'Wstaw link do audio'; -$a->strings['audio link'] = 'link do audio'; -$a->strings['Set your location'] = 'Ustaw swoją lokalizację'; -$a->strings['set location'] = 'wybierz lokalizację'; -$a->strings['Clear browser location'] = 'Wyczyść lokalizację przeglądarki'; -$a->strings['clear location'] = 'wyczyść lokalizację'; -$a->strings['Please wait'] = 'Proszę czekać'; -$a->strings['Permission settings'] = 'Ustawienia uprawnień'; -$a->strings['CC: email addresses'] = 'DW: adresy e-mail'; -$a->strings['Public post'] = 'Publiczny wpis'; -$a->strings['Set title'] = 'Podaj tytuł'; -$a->strings['Categories (comma-separated list)'] = 'Kategorie (lista słów oddzielonych przecinkiem)'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Przykład: bob@example.com, mary@example.com'; -$a->strings['Preview'] = 'Podgląd'; -$a->strings['Cancel'] = 'Anuluj'; -$a->strings['Bold'] = 'Pogrubienie'; -$a->strings['Italic'] = 'Kursywa'; -$a->strings['Underline'] = 'Podkreślenie'; -$a->strings['Quote'] = 'Cytat'; -$a->strings['Code'] = 'Kod'; -$a->strings['Link'] = 'Odnośnik'; -$a->strings['Link or Media'] = 'Odnośnik lub Media'; -$a->strings['Message'] = 'Wiadomość'; -$a->strings['Browser'] = 'Przeglądarka'; -$a->strings['Permissions'] = 'Uprawnienia'; -$a->strings['Open Compose page'] = 'Otwórz stronę Redagowanie'; -$a->strings['Event can not end before it has started.'] = 'Wydarzenie nie może się zakończyć przed jego rozpoczęciem.'; -$a->strings['Event title and start time are required.'] = 'Wymagany tytuł wydarzenia i czas rozpoczęcia.'; -$a->strings['Create New Event'] = 'Stwórz nowe wydarzenie'; -$a->strings['Event details'] = 'Szczegóły wydarzenia'; -$a->strings['Starting date and Title are required.'] = 'Data rozpoczęcia i tytuł są wymagane.'; -$a->strings['Event Starts:'] = 'Rozpoczęcie wydarzenia:'; -$a->strings['Required'] = 'Wymagany'; -$a->strings['Finish date/time is not known or not relevant'] = 'Data/czas zakończenia nie jest znana lub jest nieistotna'; -$a->strings['Event Finishes:'] = 'Zakończenie wydarzenia:'; -$a->strings['Description:'] = 'Opis:'; -$a->strings['Location:'] = 'Lokalizacja:'; -$a->strings['Title:'] = 'Tytuł:'; -$a->strings['Share this event'] = 'Udostępnij te wydarzenie'; -$a->strings['Submit'] = 'Potwierdź'; -$a->strings['Basic'] = 'Podstawowy'; -$a->strings['Advanced'] = 'Zaawansowany'; -$a->strings['Failed to remove event'] = 'Nie udało się usunąć wydarzenia'; -$a->strings['Photos'] = 'Zdjęcia'; -$a->strings['Upload'] = 'Wyślij'; -$a->strings['Files'] = 'Pliki'; -$a->strings['Submit Request'] = 'Wyślij zgłoszenie'; -$a->strings['You already added this contact.'] = 'Już dodałeś ten kontakt.'; -$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Nie można wykryć typu sieci. Kontakt nie może zostać dodany.'; -$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Obsługa Diaspory nie jest włączona. Kontakt nie może zostać dodany.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany.'; -$a->strings['Connect/Follow'] = 'Połącz/Obserwuj'; -$a->strings['Please answer the following:'] = 'Proszę odpowiedzieć na następujące pytania:'; -$a->strings['Your Identity Address:'] = 'Twój adres tożsamości:'; -$a->strings['Profile URL'] = 'Adres URL profilu'; -$a->strings['Tags:'] = 'Znaczniki:'; -$a->strings['%s knows you'] = '%s zna cię'; -$a->strings['Add a personal note:'] = 'Dodaj osobistą notkę:'; -$a->strings['Status Messages and Posts'] = 'Stan wiadomości i wpisów'; -$a->strings['The contact could not be added.'] = 'Nie można dodać kontaktu.'; $a->strings['Unable to locate original post.'] = 'Nie można zlokalizować oryginalnej wiadomości.'; -$a->strings['Empty post discarded.'] = 'Pusty wpis został odrzucony.'; $a->strings['Post updated.'] = 'Wpis zaktualizowany.'; $a->strings['Item wasn\'t stored.'] = 'Element nie został zapisany. '; $a->strings['Item couldn\'t be fetched.'] = 'Nie można pobrać elementu.'; +$a->strings['Empty post discarded.'] = 'Pusty wpis został odrzucony.'; $a->strings['Item not found.'] = 'Element nie znaleziony.'; +$a->strings['Permission denied.'] = 'Brak uprawnień.'; $a->strings['No valid account found.'] = 'Nie znaleziono ważnego konta.'; $a->strings['Password reset request issued. Check your email.'] = 'Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój e-mail.'; $a->strings[' @@ -192,9 +101,6 @@ $a->strings[' Możesz zmienić hasło na stronie ustawień konta po zalogowaniu. '; $a->strings['Your password has been changed at %s'] = 'Twoje hasło zostało zmienione na %s'; -$a->strings['No keywords to match. Please add keywords to your profile.'] = 'Brak pasujących słów kluczowych. Dodaj słowa kluczowe do swojego profilu.'; -$a->strings['No matches'] = 'Brak wyników'; -$a->strings['Profile Match'] = 'Dopasowanie profilu'; $a->strings['New Message'] = 'Nowa wiadomość'; $a->strings['No recipient selected.'] = 'Nie wybrano odbiorcy.'; $a->strings['Unable to locate contact information.'] = 'Nie można znaleźć informacji kontaktowych.'; @@ -210,6 +116,10 @@ $a->strings['Send Private Message'] = 'Wyślij prywatną wiadomość'; $a->strings['To:'] = 'Do:'; $a->strings['Subject:'] = 'Temat:'; $a->strings['Your message:'] = 'Twoja wiadomość:'; +$a->strings['Upload photo'] = 'Wyślij zdjęcie'; +$a->strings['Insert web link'] = 'Wstaw link'; +$a->strings['Please wait'] = 'Proszę czekać'; +$a->strings['Submit'] = 'Potwierdź'; $a->strings['No messages.'] = 'Brak wiadomości.'; $a->strings['Message not available.'] = 'Wiadomość nie jest dostępna.'; $a->strings['Delete message'] = 'Usuń wiadomość'; @@ -228,18 +138,8 @@ $a->strings['%d message'] = [ ]; $a->strings['Personal Notes'] = 'Notatki'; $a->strings['Personal notes are visible only by yourself.'] = 'Notatki osobiste są widziane tylko przez Ciebie.'; -$a->strings['Subscribing to contacts'] = 'Subskrybowanie kontaktów'; -$a->strings['No contact provided.'] = 'Brak kontaktu.'; -$a->strings['Couldn\'t fetch information for contact.'] = 'Nie można pobrać informacji o kontakcie.'; -$a->strings['Couldn\'t fetch friends for contact.'] = 'Nie można pobrać znajomych do kontaktu.'; -$a->strings['Couldn\'t fetch following contacts.'] = 'Nie udało się pobrać następujących kontaktów.'; -$a->strings['Couldn\'t fetch remote profile.'] = 'Nie można pobrać profilu zdalnego.'; -$a->strings['Unsupported network'] = 'Sieć nieobsługiwana'; -$a->strings['Done'] = 'Gotowe'; -$a->strings['success'] = 'powodzenie'; -$a->strings['failed'] = 'nie powiodło się'; -$a->strings['ignored'] = 'ignorowany(-a)'; -$a->strings['Keep this window open until done.'] = 'Pozostaw to okno otwarte, dopóki nie będzie gotowe.'; +$a->strings['Save'] = 'Zapisz'; +$a->strings['User not found.'] = 'Użytkownik nie znaleziony.'; $a->strings['Photo Albums'] = 'Albumy zdjęć'; $a->strings['Recent Photos'] = 'Ostatnio dodane zdjęcia'; $a->strings['Upload New Photos'] = 'Wyślij nowe zdjęcie'; @@ -251,21 +151,16 @@ $a->strings['Album was empty.'] = 'Album był pusty.'; $a->strings['Failed to delete the photo.'] = 'Błąd usunięcia zdjęcia.'; $a->strings['a photo'] = 'zdjęcie'; $a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$szostał oznaczony znacznikiem %2$s przez %3$s'; -$a->strings['Image exceeds size limit of %s'] = 'Obraz przekracza limit rozmiaru wynoszący %s'; -$a->strings['Image upload didn\'t complete, please try again'] = 'Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie'; -$a->strings['Image file is missing'] = 'Brak pliku obrazu'; -$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem'; -$a->strings['Image file is empty.'] = 'Plik obrazka jest pusty.'; -$a->strings['Unable to process image.'] = 'Przetwarzanie obrazu nie powiodło się.'; -$a->strings['Image upload failed.'] = 'Przesyłanie obrazu nie powiodło się.'; +$a->strings['Public access denied.'] = 'Odmowa dostępu publicznego.'; $a->strings['No photos selected'] = 'Nie zaznaczono zdjęć'; -$a->strings['Access to this item is restricted.'] = 'Dostęp do tego obiektu jest ograniczony.'; $a->strings['Upload Photos'] = 'Prześlij zdjęcia'; $a->strings['New album name: '] = 'Nazwa nowego albumu: '; $a->strings['or select existing album:'] = 'lub wybierz istniejący album:'; $a->strings['Do not show a status post for this upload'] = 'Nie pokazuj stanu wpisów dla tego wysłania'; +$a->strings['Permissions'] = 'Uprawnienia'; $a->strings['Do you really want to delete this photo album and all its photos?'] = 'Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?'; $a->strings['Delete Album'] = 'Usuń album'; +$a->strings['Cancel'] = 'Anuluj'; $a->strings['Edit Album'] = 'Edytuj album'; $a->strings['Drop Album'] = 'Upuść Album'; $a->strings['Show Newest First'] = 'Pokaż najpierw najnowsze'; @@ -292,6 +187,8 @@ $a->strings['Rotate CW (right)'] = 'Obróć zgodnie z kierunkiem wskazówek zega $a->strings['Rotate CCW (left)'] = 'Obróć w przeciwnym kierunku do ruchu wskazówek zegara (w lewo)'; $a->strings['This is you'] = 'To jesteś Ty'; $a->strings['Comment'] = 'Komentarz'; +$a->strings['Preview'] = 'Podgląd'; +$a->strings['Loading...'] = 'Wczytywanie...'; $a->strings['Select'] = 'Wybierz'; $a->strings['Delete'] = 'Usuń'; $a->strings['Like'] = 'Lubię'; @@ -299,104 +196,6 @@ $a->strings['I like this (toggle)'] = 'Lubię to (zmień)'; $a->strings['Dislike'] = 'Nie lubię'; $a->strings['I don\'t like this (toggle)'] = 'Nie lubię tego (zmień)'; $a->strings['Map'] = 'Mapa'; -$a->strings['View Album'] = 'Zobacz album'; -$a->strings['Bad Request.'] = 'Błędne zapytanie.'; -$a->strings['Contact not found.'] = 'Nie znaleziono kontaktu.'; -$a->strings['[Friendica System Notify]'] = '[Powiadomienie Systemu Friendica]'; -$a->strings['User deleted their account'] = 'Użytkownik usunął swoje konto'; -$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych.'; -$a->strings['The user id is %d'] = 'Identyfikatorem użytkownika jest %d'; -$a->strings['Remove My Account'] = 'Usuń moje konto'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć.'; -$a->strings['Please enter your password for verification:'] = 'Wprowadź hasło w celu weryfikacji:'; -$a->strings['Resubscribing to OStatus contacts'] = 'Ponowne subskrybowanie kontaktów OStatus'; -$a->strings['Error'] = [ - 0 => 'Błąd', - 1 => 'Błędów', - 2 => 'Błędy', - 3 => 'Błędów', -]; -$a->strings['Failed to connect with email account using the settings provided.'] = 'Połączenie z kontem email używając wybranych ustawień nie powiodło się.'; -$a->strings['Connected Apps'] = 'Powiązane aplikacje'; -$a->strings['Name'] = 'Nazwa'; -$a->strings['Home Page'] = 'Strona startowa'; -$a->strings['Created'] = 'Utwórz'; -$a->strings['Remove authorization'] = 'Odwołaj upoważnienie'; -$a->strings['Save Settings'] = 'Zapisz ustawienia'; -$a->strings['Addon Settings'] = 'Ustawienia dodatków'; -$a->strings['No Addon settings configured'] = 'Brak skonfigurowanych ustawień dodatków'; -$a->strings['Additional Features'] = 'Dodatkowe funkcje'; -$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings['enabled'] = 'włączone'; -$a->strings['disabled'] = 'wyłączone'; -$a->strings['Built-in support for %s connectivity is %s'] = 'Wbudowane wsparcie dla połączenia z %s jest %s'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; -$a->strings['Email access is disabled on this site.'] = 'Dostęp do e-maila jest wyłączony na tej stronie.'; -$a->strings['None'] = 'Brak'; -$a->strings['Social Networks'] = 'Portale społecznościowe'; -$a->strings['General Social Media Settings'] = 'Ogólne ustawienia mediów społecznościowych'; -$a->strings['Followed content scope'] = 'Obserwowany zakres treści'; -$a->strings['By default, conversations in which your follows participated but didn\'t start will be shown in your timeline. You can turn this behavior off, or expand it to the conversations in which your follows liked a post.'] = 'Domyślnie na Twojej osi czasu będą pokazywane wątki, w których uczestniczyli Twoi obserwowani, ale które nie zostały przez nich rozpoczęte. Możesz wyłączyć tę funkcję lub rozszerzyć ją na konwersacje, w których Twoi obserwujący polubili dany wpis.'; -$a->strings['Only conversations my follows started'] = 'Tylko rozmowy, które rozpoczęli moi obserwowani'; -$a->strings['Conversations my follows started or commented on (default)'] = 'Rozmowy, które rozpoczęli moi obserwowani, lub które komentowali (domyślnie)'; -$a->strings['Any conversation my follows interacted with, including likes'] = 'Wszelkie rozmowy, z którymi wchodziłem w interakcję, w tym polubienia'; -$a->strings['Enable Content Warning'] = 'Włącz ostrzeżenia o treści'; -$a->strings['Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.'] = 'Użytkownicy w sieciach takich jak Mastodon lub Pleroma mogą ustawić pole ostrzeżenia o treści, które domyślnie zwija ich posty. Umożliwia to automatyczne zwijanie zamiast ustawiania ostrzeżenia o treści jako tytułu wpisu. Nie wpływa na żadne inne skonfigurowane filtrowanie treści.'; -$a->strings['Enable intelligent shortening'] = 'Włącz inteligentne skracanie'; -$a->strings['Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.'] = 'Zwykle system próbuje znaleźć najlepszy odnośnik do dodania do skróconych postów. Jeśli wyłączone, każdy skrócony wpis będzie zawsze wskazywał na oryginalny wpis friendica.'; -$a->strings['Enable simple text shortening'] = 'Włącz proste skracanie tekstu'; -$a->strings['Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'] = 'Zwykle system skraca wpisy przy następnym wysunięciu wiersza. Jeśli ta opcja jest włączona, system skróci tekst do maksymalnego limitu znaków.'; -$a->strings['Attach the link title'] = 'Dołącz tytuł linku'; -$a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'Po aktywacji tytuł dołączonego linku zostanie dodany jako tytuł postów do Diaspory. Jest to szczególnie pomocne w przypadku kontaktów „zdalnych”, które udostępniają treść kanału.'; -$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Twoje stare konto ActivityPub/GNU Social'; -$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Jeśli wprowadzisz tutaj swoją starą nazwę konta z systemu opartego na ActivityPub lub nazwę konta GNU Social/Statusnet (w formacie użytkownik@domena.tld), Twoje kontakty zostaną dodane automatycznie. Po zakończeniu pole zostanie opróżnione.'; -$a->strings['Repair OStatus subscriptions'] = 'Napraw subskrypcje OStatus'; -$a->strings['Email/Mailbox Setup'] = 'Ustawienia emaila/skrzynki mailowej'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową.'; -$a->strings['Last successful email check:'] = 'Ostatni sprawdzony e-mail:'; -$a->strings['IMAP server name:'] = 'Nazwa serwera IMAP:'; -$a->strings['IMAP port:'] = 'Port IMAP:'; -$a->strings['Security:'] = 'Bezpieczeństwo:'; -$a->strings['Email login name:'] = 'Nazwa logowania e-mail:'; -$a->strings['Email password:'] = 'Hasło e-mail:'; -$a->strings['Reply-to address:'] = 'Adres zwrotny:'; -$a->strings['Send public posts to all email contacts:'] = 'Wyślij publiczny wpis do wszystkich kontaktów e-mail:'; -$a->strings['Action after import:'] = 'Akcja po zaimportowaniu:'; -$a->strings['Mark as seen'] = 'Oznacz jako przeczytane'; -$a->strings['Move to folder'] = 'Przenieś do katalogu'; -$a->strings['Move to folder:'] = 'Przenieś do katalogu:'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Brak dostępnych sugestii. Jeśli jest to nowa witryna, spróbuj ponownie za 24 godziny.'; -$a->strings['Friend Suggestions'] = 'Osoby, które możesz znać'; -$a->strings['photo'] = 'zdjęcie'; -$a->strings['status'] = 'stan'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s zaznaczył %2$s\'go %3$s przy użyciu %4$s'; -$a->strings['Remove Item Tag'] = 'Usuń pozycję znacznika'; -$a->strings['Select a tag to remove: '] = 'Wybierz znacznik do usunięcia: '; -$a->strings['Remove'] = 'Usuń'; -$a->strings['User imports on closed servers can only be done by an administrator.'] = 'Import użytkowników na zamkniętych serwerach może być wykonywany tylko przez administratora.'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro.'; -$a->strings['Import'] = 'Import'; -$a->strings['Move account'] = 'Przenieś konto'; -$a->strings['You can import an account from another Friendica server.'] = 'Możesz zaimportować konto z innego serwera Friendica.'; -$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.'] = 'Musisz wyeksportować konto ze starego serwera i przesłać je tutaj. Odtworzymy twoje stare konto tutaj ze wszystkimi twoimi kontaktami. Postaramy się również poinformować twoich znajomych, że się tutaj przeniosłeś.'; -$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Ta funkcja jest eksperymentalna. Nie możemy importować kontaktów z sieci OStatus (GNU Social/Statusnet) lub z Diaspory'; -$a->strings['Account file'] = 'Pliki konta'; -$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Aby eksportować konto, wejdź w "Ustawienia->Eksport danych osobistych" i wybierz "Eksportuj konto"'; -$a->strings['You aren\'t following this contact.'] = 'Nie obserwujesz tego kontaktu.'; -$a->strings['Unfollowing is currently not supported by your network.'] = 'Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć.'; -$a->strings['Disconnect/Unfollow'] = 'Rozłącz/Nie obserwuj'; -$a->strings['Contact was successfully unfollowed'] = 'Kontakt pomyślnie przestał być obserwowany'; -$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Nie można przestać obserwować tego kontaktu, skontaktuj się z administratorem'; -$a->strings['Invalid request.'] = 'Nieprawidłowe żądanie.'; -$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Przepraszam, Twój przesyłany plik jest większy niż pozwala konfiguracja PHP'; -$a->strings['Or - did you try to upload an empty file?'] = 'Lub - czy próbowałeś przesłać pusty plik?'; -$a->strings['File exceeds size limit of %s'] = 'Plik przekracza limit rozmiaru wynoszący %s'; -$a->strings['File upload failed.'] = 'Przesyłanie pliku nie powiodło się.'; -$a->strings['Wall Photos'] = 'Tablica zdjęć'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Dzienny limit wiadomości na tablicy %s został przekroczony. Wiadomość została odrzucona.'; -$a->strings['Unable to check your home location.'] = 'Nie można sprawdzić twojej lokalizacji.'; -$a->strings['No recipient.'] = 'Brak odbiorcy.'; -$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców.'; $a->strings['No system theme config value set.'] = 'Nie ustawiono wartości konfiguracyjnej zestawu tematycznego.'; $a->strings['Apologies but the website is unavailable at the moment.'] = 'Przepraszamy, ale strona jest w tej chwili niedostępna.'; $a->strings['Delete this item?'] = 'Usunąć ten element?'; @@ -420,7 +219,6 @@ $a->strings['Could not find any contact entry for this URL (%s)'] = 'Nie można $a->strings['The contact has been blocked from the node'] = 'Kontakt został zablokowany w węźle'; $a->strings['%d %s, %d duplicates.'] = '%d %s, %d duplikaty.'; $a->strings['uri-id is empty for contact %s.'] = 'uri-id jest pusty dla kontaktu%s.'; -$a->strings['No valid first countact found for uri-id %d.'] = 'Nie znaleziono prawidłowego pierwszego kontaktu dla identyfikatora uri-id %d.'; $a->strings['Wrong duplicate found for uri-id %d in %d (url: %s != %s).'] = 'Odnaleziono nieprawidłowy duplikat dla identyfikatora uri %d w %d (url: %s != %s).'; $a->strings['Wrong duplicate found for uri-id %d in %d (nurl: %s != %s).'] = 'Odnaleziono nieprawidłowy duplikat dla identyfikatora uri %d w %d (nurl: %s != %s).'; $a->strings['Deletion of id %d failed'] = 'Nie udało się usunąć identyfikatora %d'; @@ -443,6 +241,7 @@ $a->strings['Done.'] = 'Gotowe.'; $a->strings['Execute pending post updates.'] = 'Wykonaj oczekujące aktualizacje wpisów.'; $a->strings['All pending post updates are done.'] = 'Wszystkie oczekujące aktualizacje wpisów są gotowe.'; $a->strings['Enter user nickname: '] = 'Wpisz nazwę użytkownika:'; +$a->strings['User not found'] = 'Użytkownik nie znaleziony'; $a->strings['Enter new password: '] = 'Wprowadź nowe hasło: '; $a->strings['Password update failed. Please try again.'] = 'Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie.'; $a->strings['Password changed.'] = 'Hasło zostało zmienione.'; @@ -482,25 +281,8 @@ $a->strings['GNU Social Connector'] = 'Łącze GNU Social'; $a->strings['ActivityPub'] = 'ActivityPub'; $a->strings['pnut'] = 'pnut'; $a->strings['%s (via %s)'] = '%s (przez %s)'; -$a->strings['%s likes this.'] = '%s lubi to.'; -$a->strings['%s doesn\'t like this.'] = '%s nie lubi tego.'; -$a->strings['%s attends.'] = '%s uczestniczy.'; -$a->strings['%s doesn\'t attend.'] = '%s nie uczestniczy.'; -$a->strings['%s attends maybe.'] = '%s może bierze udział.'; -$a->strings['%s reshared this.'] = '%sudostępnił to. '; $a->strings['and'] = 'i'; $a->strings['and %d other people'] = 'i %d inni ludzie'; -$a->strings['%2$d people like this'] = '%2$d ludzi lubi to'; -$a->strings['%s like this.'] = '%s lubię to.'; -$a->strings['%2$d people don\'t like this'] = '%2$d ludzi nie lubi tego'; -$a->strings['%s don\'t like this.'] = '%s nie lubię tego.'; -$a->strings['%2$d people attend'] = '%2$dosoby uczestniczą'; -$a->strings['%s attend.'] = '%s uczestniczy.'; -$a->strings['%2$d people don\'t attend'] = '%2$dludzie nie uczestniczą'; -$a->strings['%s don\'t attend.'] = '%s nie uczestniczy.'; -$a->strings['%2$d people attend maybe'] = 'Możliwe, że %2$d osoby będą uczestniczyć'; -$a->strings['%s attend maybe.'] = '%sbyć może uczestniczyć.'; -$a->strings['%2$d people reshared this'] = '%2$d użytkowników udostępniło to dalej'; $a->strings['Visible to everybody'] = 'Widoczne dla wszystkich'; $a->strings['Please enter a image/video/audio/webpage URL:'] = 'Wprowadź adres URL obrazu/wideo/audio/strony:'; $a->strings['Tag term:'] = 'Termin tagu:'; @@ -510,37 +292,74 @@ $a->strings['Delete item(s)?'] = 'Usunąć pozycję (pozycje)?'; $a->strings['Created at'] = 'Utworzono'; $a->strings['New Post'] = 'Nowy wpis'; $a->strings['Share'] = 'Podziel się'; +$a->strings['upload photo'] = 'wyślij zdjęcie'; +$a->strings['Attach file'] = 'Załącz plik'; +$a->strings['attach file'] = 'załącz plik'; +$a->strings['Bold'] = 'Pogrubienie'; +$a->strings['Italic'] = 'Kursywa'; +$a->strings['Underline'] = 'Podkreślenie'; +$a->strings['Quote'] = 'Cytat'; +$a->strings['Code'] = 'Kod'; $a->strings['Image'] = 'Obraz'; +$a->strings['Link'] = 'Odnośnik'; +$a->strings['Link or Media'] = 'Odnośnik lub Media'; $a->strings['Video'] = 'Filmy'; +$a->strings['Set your location'] = 'Ustaw swoją lokalizację'; +$a->strings['set location'] = 'wybierz lokalizację'; +$a->strings['Clear browser location'] = 'Wyczyść lokalizację przeglądarki'; +$a->strings['clear location'] = 'wyczyść lokalizację'; +$a->strings['Set title'] = 'Podaj tytuł'; +$a->strings['Categories (comma-separated list)'] = 'Kategorie (lista słów oddzielonych przecinkiem)'; $a->strings['Scheduled at'] = 'Zaplanowane na'; +$a->strings['Permission settings'] = 'Ustawienia uprawnień'; +$a->strings['Public post'] = 'Wpis publiczny'; +$a->strings['Message'] = 'Wiadomość'; +$a->strings['Browser'] = 'Przeglądarka'; +$a->strings['Open Compose page'] = 'Otwórz stronę Redagowanie'; +$a->strings['remove'] = 'usuń'; +$a->strings['Delete Selected Items'] = 'Usuń zaznaczone elementy'; +$a->strings['You had been addressed (%s).'] = 'Zostałeś zaadresowany (%s).'; +$a->strings['You are following %s.'] = 'Zacząłeś obserwować %s.'; +$a->strings['You subscribed to one or more tags in this post.'] = 'Zasubskrybowałeś jeden lub więcej znaczników w tym wpisie.'; +$a->strings['%s reshared this.'] = '%sudostępnił to. '; +$a->strings['Reshared'] = 'Udostępnione'; +$a->strings['Reshared by %s <%s>'] = 'Udostępnione przez %s <%s>'; +$a->strings['%s is participating in this thread.'] = '%s bierze udział w tym wątku.'; +$a->strings['Stored for general reasons'] = 'Przechowywane z powodów ogólnych'; +$a->strings['Global post'] = 'Wpis globalny'; +$a->strings['Sent via an relay server'] = 'Wysłane przez serwer przekazujący'; +$a->strings['Fetched'] = 'Pobrane'; +$a->strings['Fetched because of %s <%s>'] = 'Pobrano ponieważ %s <%s>'; +$a->strings['Stored because of a child post to complete this thread.'] = 'Zapisano z powodu wpisu podrzędnego, który miał zakończyć ten wątek.'; +$a->strings['Local delivery'] = 'Dostarczone lokalnie'; +$a->strings['Stored because of your activity (like, comment, star, ...)'] = 'Przechowywane z powodu Twojej aktywności (polubienie, komentarz, gwiazdka, ...)'; +$a->strings['Distributed'] = 'Rozpowszechniane'; $a->strings['Pinned item'] = 'Przypięty element'; $a->strings['View %s\'s profile @ %s'] = 'Pokaż profil %s @ %s'; $a->strings['Categories:'] = 'Kategorie:'; $a->strings['Filed under:'] = 'Umieszczono w:'; $a->strings['%s from %s'] = '%s od %s'; $a->strings['View in context'] = 'Zobacz w kontekście'; -$a->strings['remove'] = 'usuń'; -$a->strings['Delete Selected Items'] = 'Usuń zaznaczone elementy'; -$a->strings['You had been addressed (%s).'] = 'Zostałeś zaadresowany (%s).'; -$a->strings['You are following %s.'] = 'Zacząłeś obserwować %s.'; -$a->strings['Tagged'] = 'Oznaczone'; -$a->strings['Reshared'] = 'Udostępnione'; -$a->strings['Reshared by %s <%s>'] = 'Udostępnione przez %s <%s>'; -$a->strings['%s is participating in this thread.'] = '%s bierze udział w tym wątku.'; -$a->strings['Stored'] = 'Przechowywane'; -$a->strings['Global'] = 'Globalne'; -$a->strings['Relayed'] = 'Przekazany'; -$a->strings['Relayed by %s <%s>'] = 'Przekazany przez %s <%s>'; -$a->strings['Fetched'] = 'Pobrane'; -$a->strings['Fetched because of %s <%s>'] = 'Pobrano ponieważ %s <%s>'; +$a->strings['Local Community'] = 'Lokalna społeczność'; +$a->strings['Posts from local users on this server'] = 'Wpisy od lokalnych użytkowników na tym serwerze'; +$a->strings['Global Community'] = 'Globalna społeczność'; +$a->strings['Posts from users of the whole federated network'] = 'Wpisy od użytkowników całej sieci stowarzyszonej'; +$a->strings['Latest Activity'] = 'Ostatnia Aktywność'; +$a->strings['Sort by latest activity'] = 'Sortuj wg. ostatniej aktywności'; +$a->strings['Latest Posts'] = 'Najnowsze wpisy'; +$a->strings['Sort by post received date'] = 'Sortuj wg. daty otrzymania wpisu'; +$a->strings['Latest Creation'] = 'Najnowsze utworzenia'; +$a->strings['Sort by post creation date'] = 'Sortuj wg. daty utworzenia wpisu'; +$a->strings['Personal'] = 'Osobiste'; +$a->strings['Posts that mention or involve you'] = 'Wpisy, które wspominają lub angażują Ciebie'; +$a->strings['Starred'] = 'Ulubione'; +$a->strings['Favourite Posts'] = 'Ulubione wpisy'; $a->strings['General Features'] = 'Funkcje ogólne'; $a->strings['Photo Location'] = 'Lokalizacja zdjęcia'; $a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'Metadane zdjęć są zwykle usuwane. Wyodrębnia to położenie (jeśli jest obecne) przed usunięciem metadanych i łączy je z mapą.'; $a->strings['Trending Tags'] = 'Popularne znaczniki'; $a->strings['Show a community page widget with a list of the most popular tags in recent public posts.'] = 'Pokaż widżet strony społeczności z listą najpopularniejszych tagów w ostatnich postach publicznych.'; $a->strings['Post Composition Features'] = 'Ustawienia funkcji postów'; -$a->strings['Auto-mention Forums'] = 'Automatyczne wymienianie forów'; -$a->strings['Add/remove mention when a forum page is selected/deselected in ACL window.'] = 'Dodaj/usuń wzmiankę, gdy strona forum zostanie wybrana/cofnięta w oknie ACL.'; $a->strings['Explicit Mentions'] = 'Wyraźne wzmianki'; $a->strings['Add explicit mentions to comment box for manual control over who gets mentioned in replies.'] = 'Dodaj wyraźne wzmianki do pola komentarza, aby ręcznie kontrolować, kto zostanie wymieniony w odpowiedziach.'; $a->strings['Add an abstract from ActivityPub content warnings'] = 'Dodaj streszczenie z ostrzeżeń dotyczących treści w ActivityPub'; @@ -549,18 +368,19 @@ $a->strings['Post/Comment Tools'] = 'Narzędzia post/komentarz'; $a->strings['Post Categories'] = 'Kategorie wpisów'; $a->strings['Add categories to your posts'] = 'Umożliwia dodawanie kategorii do Twoich wpisów'; $a->strings['Advanced Profile Settings'] = 'Zaawansowane ustawienia profilu'; -$a->strings['List Forums'] = 'Lista forów'; -$a->strings['Show visitors public community forums at the Advanced Profile Page'] = 'Wyświetla publiczne fora społeczności na stronie profilu zaawansowanego'; $a->strings['Tag Cloud'] = 'Chmura znaczników'; $a->strings['Provide a personal tag cloud on your profile page'] = 'Podaj osobistą chmurę tagów na stronie profilu'; $a->strings['Display Membership Date'] = 'Wyświetl datę członkostwa'; $a->strings['Display membership date in profile'] = 'Wyświetla datę członkostwa w profilu'; -$a->strings['Forums'] = 'Fora'; -$a->strings['External link to forum'] = 'Zewnętrzny link do forum'; +$a->strings['Advanced Calendar Settings'] = 'Zaawansowane ustawienia kalendarza'; +$a->strings['Allow anonymous access to your calendar'] = 'Zezwól na anonimowy dostęp do swojego kalendarza'; +$a->strings['Allows anonymous visitors to consult your calendar and your public events. Contact birthday events are private to you.'] = 'Pozwala anonimowym odwiedzającym przeglądać Twój kalendarz i wydarzenia publiczne. Kontaktowe wydarzenia urodzinowe są prywatne dla Ciebie.'; $a->strings['show less'] = 'pokaż mniej'; $a->strings['show more'] = 'pokaż więcej'; -$a->strings['%1$s poked %2$s'] = '%1$s zaczepił Cię %2$s'; $a->strings['event'] = 'wydarzenie'; +$a->strings['status'] = 'stan'; +$a->strings['photo'] = 'zdjęcie'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s zaznaczył %2$s\'go %3$s przy użyciu %4$s'; $a->strings['Follow Thread'] = 'Śledź wątek'; $a->strings['View Status'] = 'Zobacz status'; $a->strings['View Profile'] = 'Zobacz profil'; @@ -571,26 +391,26 @@ $a->strings['Send PM'] = 'Wyślij prywatną wiadomość'; $a->strings['Block'] = 'Zablokuj'; $a->strings['Ignore'] = 'Ignoruj'; $a->strings['Languages'] = 'Języki'; -$a->strings['Poke'] = 'Zaczepka'; +$a->strings['Connect/Follow'] = 'Połącz/Obserwuj'; $a->strings['Nothing new here'] = 'Brak nowych zdarzeń'; $a->strings['Go back'] = 'Wróć'; $a->strings['Clear notifications'] = 'Wyczyść powiadomienia'; -$a->strings['@name, !forum, #tags, content'] = '@imię, !forum, #znaczniki, treść'; $a->strings['Logout'] = 'Wyloguj'; $a->strings['End this session'] = 'Zakończ sesję'; $a->strings['Login'] = 'Zaloguj się'; $a->strings['Sign in'] = 'Zaloguj się'; -$a->strings['Status'] = 'Stan'; -$a->strings['Your posts and conversations'] = 'Twoje wpisy i rozmowy'; $a->strings['Profile'] = 'Profil'; $a->strings['Your profile page'] = 'Twoja strona profilu'; +$a->strings['Photos'] = 'Zdjęcia'; $a->strings['Your photos'] = 'Twoje zdjęcia'; $a->strings['Media'] = 'Media'; $a->strings['Your postings with media'] = 'Twoje wpisy z mediami'; -$a->strings['Your events'] = 'Twoje wydarzenia'; +$a->strings['Calendar'] = 'Kalendarz'; +$a->strings['Your calendar'] = 'Twój kalendarz'; $a->strings['Personal notes'] = 'Osobiste notatki'; $a->strings['Your personal notes'] = 'Twoje osobiste notatki'; $a->strings['Home'] = 'Strona domowa'; +$a->strings['Home Page'] = 'Strona startowa'; $a->strings['Register'] = 'Zarejestruj'; $a->strings['Create an account'] = 'Załóż konto'; $a->strings['Help'] = 'Pomoc'; @@ -604,7 +424,6 @@ $a->strings['Tags'] = 'Znaczniki'; $a->strings['Contacts'] = 'Kontakty'; $a->strings['Community'] = 'Społeczność'; $a->strings['Conversations on this and other servers'] = 'Rozmowy na tym i innych serwerach'; -$a->strings['Events and Calendar'] = 'Wydarzenia i kalendarz'; $a->strings['Directory'] = 'Katalog'; $a->strings['People directory'] = 'Katalog osób'; $a->strings['Information'] = 'Informacje'; @@ -613,10 +432,12 @@ $a->strings['Terms of Service'] = 'Warunki usługi'; $a->strings['Terms of Service of this Friendica instance'] = 'Warunki świadczenia usług tej instancji Friendica'; $a->strings['Network'] = 'Sieć'; $a->strings['Conversations from your friends'] = 'Rozmowy Twoich przyjaciół'; +$a->strings['Your posts and conversations'] = 'Twoje wpisy i rozmowy'; $a->strings['Introductions'] = 'Zapoznanie'; $a->strings['Friend Requests'] = 'Prośba o przyjęcie do grona znajomych'; $a->strings['Notifications'] = 'Powiadomienia'; $a->strings['See all notifications'] = 'Zobacz wszystkie powiadomienia'; +$a->strings['Mark as seen'] = 'Oznacz jako przeczytane'; $a->strings['Mark all system notifications as seen'] = 'Oznacz wszystkie powiadomienia systemowe jako przeczytane'; $a->strings['Private mail'] = 'Prywatne maile'; $a->strings['Inbox'] = 'Odebrane'; @@ -628,6 +449,8 @@ $a->strings['Account settings'] = 'Ustawienia konta'; $a->strings['Manage/edit friends and contacts'] = 'Zarządzaj listą przyjaciół i kontaktami'; $a->strings['Admin'] = 'Administrator'; $a->strings['Site setup and configuration'] = 'Konfiguracja i ustawienia strony'; +$a->strings['Moderation'] = 'Moderacja'; +$a->strings['Content and user moderation'] = 'Moderacja treści i użytkowników'; $a->strings['Navigation'] = 'Nawigacja'; $a->strings['Site map'] = 'Mapa strony'; $a->strings['Embedding disabled'] = 'Osadzanie wyłączone'; @@ -661,12 +484,12 @@ $a->strings['Find People'] = 'Znajdź ludzi'; $a->strings['Enter name or interest'] = 'Wpisz nazwę lub zainteresowanie'; $a->strings['Examples: Robert Morgenstein, Fishing'] = 'Przykład: Jan Kowalski, Wędkarstwo'; $a->strings['Find'] = 'Znajdź'; +$a->strings['Friend Suggestions'] = 'Osoby, które możesz znać'; $a->strings['Similar Interests'] = 'Podobne zainteresowania'; $a->strings['Random Profile'] = 'Domyślny profil'; $a->strings['Invite Friends'] = 'Zaproś znajomych'; $a->strings['Global Directory'] = 'Katalog globalny'; $a->strings['Local Directory'] = 'Katalog lokalny'; -$a->strings['Groups'] = 'Grupy'; $a->strings['Everyone'] = 'Wszyscy'; $a->strings['Relationships'] = 'Relacje'; $a->strings['All Contacts'] = 'Wszystkie kontakty'; @@ -709,6 +532,7 @@ $a->strings['Trending Tags (last %d hour)'] = [ $a->strings['More Trending Tags'] = 'Więcej popularnych znaczników'; $a->strings['XMPP:'] = 'XMPP:'; $a->strings['Matrix:'] = 'Matrix:'; +$a->strings['Location:'] = 'Lokalizacja:'; $a->strings['Network:'] = 'Sieć:'; $a->strings['Unfollow'] = 'Przestań obserwować'; $a->strings['Yourself'] = 'Siebie'; @@ -720,6 +544,8 @@ $a->strings['Limited/Private'] = 'Ograniczony/Prywatny'; $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.'] = 'Ta zawartość będzie wyświetlana tylko osobom w pierwszym polu, z wyjątkiem osób wymienionych w drugim polu. Nie pojawi się nigdzie publicznie.'; $a->strings['Show to:'] = 'Pokaż na:'; $a->strings['Except to:'] = 'Z wyjątkiem:'; +$a->strings['CC: email addresses'] = 'DW: adresy e-mail'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Przykład: bob@example.com, mary@example.com'; $a->strings['Connectors'] = 'Wtyczki'; $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.'] = 'Plik konfiguracyjny bazy danych "config/local.config.php" nie mógł zostać zapisany. Proszę użyć załączonego tekstu, aby utworzyć plik konfiguracyjny w katalogu głównym serwera.'; $a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Może być konieczne zaimportowanie pliku "database.sql" ręcznie, używając phpmyadmin lub mysql.'; @@ -824,18 +650,8 @@ $a->strings['Sep'] = 'Wrz'; $a->strings['Oct'] = 'Paź'; $a->strings['Nov'] = 'Lis'; $a->strings['Dec'] = 'Gru'; -$a->strings['poke'] = 'zaczep'; -$a->strings['poked'] = 'zaczepił Cię'; -$a->strings['ping'] = 'ping'; -$a->strings['pinged'] = 'napięcia'; -$a->strings['prod'] = 'zaczep'; -$a->strings['prodded'] = 'zaczepiać'; -$a->strings['slap'] = 'klask'; -$a->strings['slapped'] = 'spoliczkowany'; -$a->strings['finger'] = 'wskaż'; -$a->strings['fingered'] = 'dotknięty'; -$a->strings['rebuff'] = 'odrzuć'; -$a->strings['rebuffed'] = 'odrzucony'; +$a->strings['The logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Plik dziennika „%s” nie nadaje się do użytku. Brak możliwości logowania (błąd: \'%s\')'; +$a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Plik dziennika debugowania „%s” nie nadaje się do użytku. Brak możliwości logowania (błąd: \'%s\')'; $a->strings['Friendica can\'t display this page at the moment, please contact the administrator.'] = 'Friendica nie może obecnie wyświetlić tej strony, skontaktuj się z administratorem.'; $a->strings['template engine cannot be registered without a name.'] = 'silnik szablonów nie może być zarejestrowany bez nazwy.'; $a->strings['template engine is not registered!'] = 'silnik szablonów nie jest zarejestrowany!'; @@ -858,21 +674,6 @@ $a->strings[' programistami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być nieprawidłowa.'; $a->strings['The error message is\n[pre]%s[/pre]'] = 'Komunikat o błędzie:\n[pre]%s[/pre]'; $a->strings['[Friendica Notify] Database update'] = '[Powiadomienie Friendica] Aktualizacja bazy danych'; -$a->strings[' - The friendica database was successfully updated from %s to %s.'] = ' - Baza danych Friendica została pomyślnie zaktualizowana z %s do %s.'; -$a->strings['Error decoding account file'] = 'Błąd podczas odczytu pliku konta'; -$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Błąd! Brak danych wersji w pliku! To nie jest plik konta Friendica?'; -$a->strings['User \'%s\' already exists on this server!'] = 'Użytkownik \'%s\' już istnieje na tym serwerze!'; -$a->strings['User creation error'] = 'Błąd tworzenia użytkownika'; -$a->strings['%d contact not imported'] = [ - 0 => 'Nie zaimportowano %d kontaktu', - 1 => 'Nie zaimportowano %d kontaktów', - 2 => 'Nie zaimportowano %d kontaktów', - 3 => '%d kontakty nie zostały zaimportowane ', -]; -$a->strings['User profile creation error'] = 'Błąd tworzenia profilu użytkownika'; -$a->strings['Done. You can now login with your username and password'] = 'Gotowe. Możesz teraz zalogować się z użyciem nazwy użytkownika i hasła'; $a->strings['The database version had been set to %s.'] = 'Wersja bazy danych została ustawiona na %s.'; $a->strings['The post update is at version %d, it has to be at %d to safely drop the tables.'] = 'Aktualizacja po aktualizacji jest w wersji %d, musi nastąpić %d, aby bezpiecznie usunąć tabele.'; $a->strings['No unused tables found.'] = 'Nie odnaleziono nieużywanych tabel'; @@ -895,10 +696,11 @@ $a->strings['Unauthorized'] = 'Nieautoryzowane'; $a->strings['Token is not authorized with a valid user or is missing a required scope'] = 'Token nie jest autoryzowany z prawidłowym użytkownikiem lub nie ma wymaganego zakresu'; $a->strings['Internal Server Error'] = 'Wewnętrzny błąd serwera'; $a->strings['Legacy module file not found: %s'] = 'Nie znaleziono pliku modułu: %s'; -$a->strings['UnFollow'] = 'Przestań obserwować'; +$a->strings['Everybody'] = 'Wszyscy'; +$a->strings['edit'] = 'edytuj'; +$a->strings['add'] = 'dodaj'; $a->strings['Approve'] = 'Zatwierdź'; $a->strings['Organisation'] = 'Organizacja'; -$a->strings['Forum'] = 'Forum'; $a->strings['Disallowed profile URL.'] = 'Nie dozwolony adres URL profilu.'; $a->strings['Blocked domain'] = 'Zablokowana domena'; $a->strings['Connect URL missing.'] = 'Brak adresu URL połączenia.'; @@ -916,7 +718,13 @@ $a->strings['Starts:'] = 'Rozpoczęcie:'; $a->strings['Finishes:'] = 'Zakończenie:'; $a->strings['all-day'] = 'cały dzień'; $a->strings['Sept'] = 'Wrz'; +$a->strings['today'] = 'dzisiaj'; +$a->strings['month'] = 'miesiąc'; +$a->strings['week'] = 'tydzień'; +$a->strings['day'] = 'dzień'; $a->strings['No events to display'] = 'Brak wydarzeń do wyświetlenia'; +$a->strings['Access to this profile has been restricted.'] = 'Dostęp do tego profilu został ograniczony.'; +$a->strings['Event not found.'] = 'Nie znaleziono wydarzenia.'; $a->strings['l, F j'] = 'l, F j'; $a->strings['Edit event'] = 'Edytuj wydarzenie'; $a->strings['Duplicate event'] = 'Zduplikowane zdarzenie'; @@ -928,34 +736,22 @@ $a->strings['Show map'] = 'Pokaż mapę'; $a->strings['Hide map'] = 'Ukryj mapę'; $a->strings['%s\'s birthday'] = 'Urodziny %s'; $a->strings['Happy Birthday %s'] = 'Wszystkiego najlepszego %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.'] = 'Skasowana grupa o tej nazwie została przywrócona. Istniejące uprawnienia do pozycji mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie jest to zamierzone, utwórz inną grupę o innej nazwie.'; -$a->strings['Default privacy group for new contacts'] = 'Domyślne ustawienia prywatności dla nowych kontaktów'; -$a->strings['Everybody'] = 'Wszyscy'; -$a->strings['edit'] = 'edytuj'; -$a->strings['add'] = 'dodaj'; -$a->strings['Edit group'] = 'Edytuj grupy'; -$a->strings['Contacts not in any group'] = 'Kontakt nie jest w żadnej grupie'; -$a->strings['Create a new group'] = 'Stwórz nową grupę'; -$a->strings['Group Name: '] = 'Nazwa grupy: '; -$a->strings['Edit groups'] = 'Edytuj grupy'; $a->strings['Detected languages in this post:\n%s'] = 'Wykryte języki w tym wpisie:\n%s'; $a->strings['activity'] = 'aktywność'; $a->strings['comment'] = 'komentarz'; $a->strings['post'] = 'wpis'; $a->strings['Content warning: %s'] = 'Ostrzeżenie o treści: %s'; $a->strings['bytes'] = 'bajty'; -$a->strings['%s (%d%s, %d votes)'] = '%s (%d%s, %d głosów)'; -$a->strings['%s (%d votes)'] = '%s (%d głosów)'; -$a->strings['%d voters. Poll end: %s'] = '%d głosujących. Zakończenie głosowania: %s'; -$a->strings['%d voters.'] = '%d głosujących.'; $a->strings['Poll end: %s'] = 'Koniec ankiety: %s'; $a->strings['View on separate page'] = 'Zobacz na oddzielnej stronie'; $a->strings['[no subject]'] = '[bez tematu]'; +$a->strings['Wall Photos'] = 'Tablica zdjęć'; $a->strings['Edit profile'] = 'Edytuj profil'; $a->strings['Change profile photo'] = 'Zmień zdjęcie profilowe'; $a->strings['Homepage:'] = 'Strona główna:'; $a->strings['About:'] = 'O:'; $a->strings['Atom feed'] = 'Kanał Atom'; +$a->strings['This website has been verified to belong to the same person.'] = 'Zweryfikowano, że ta witryna należy do tej samej osoby.'; $a->strings['F d'] = 'F d'; $a->strings['[today]'] = '[dziś]'; $a->strings['Birthday Reminders'] = 'Przypomnienia o urodzinach'; @@ -991,7 +787,7 @@ $a->strings['Not enough information to authenticate'] = 'Za mało informacji do $a->strings['Password can\'t be empty'] = 'Hasło nie może być puste'; $a->strings['Empty passwords are not allowed.'] = 'Puste hasła są niedozwolone.'; $a->strings['The new password has been exposed in a public data dump, please choose another.'] = 'Nowe hasło zostało ujawnione w publicznym zrzucie danych, wybierz inne.'; -$a->strings['The password can\'t contain accentuated letters, white spaces or colons (:)'] = 'Hasło nie może zawierać podkreślonych liter, białych spacji ani dwukropków (:)'; +$a->strings['The password length is limited to 72 characters.'] = 'Długość hasła jest ograniczona do 72 znaków.'; $a->strings['Passwords do not match. Password unchanged.'] = 'Hasła nie pasują do siebie. Hasło niezmienione.'; $a->strings['An invitation is required.'] = 'Wymagane zaproszenie.'; $a->strings['Invitation could not be verified.'] = 'Zaproszenie niezweryfikowane.'; @@ -1023,64 +819,12 @@ $a->strings['An error occurred during registration. Please try again.'] = 'Wyst $a->strings['An error occurred creating your default profile. Please try again.'] = 'Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie.'; $a->strings['An error occurred creating your self contact. Please try again.'] = 'Wystąpił błąd podczas tworzenia własnego kontaktu. Proszę spróbuj ponownie.'; $a->strings['Friends'] = 'Przyjaciele'; -$a->strings['An error occurred creating your default contact group. Please try again.'] = 'Wystąpił błąd podczas tworzenia domyślnej grupy kontaktów. Proszę spróbuj ponownie.'; $a->strings['Profile Photos'] = 'Zdjęcie profilowe'; $a->strings[' Dear %1$s, the administrator of %2$s has set up an account for you.'] = ' Szanowna/y %1$s, administrator of %2$s założył dla Ciebie konto.'; -$a->strings[' - The login details are as follows: - - Site Location: %1$s - Login Name: %2$s - Password: %3$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %1$s/removeme - - Thank you and welcome to %4$s.'] = ' - Dane logowania są następuje: - - Położenie witryny: %1$s - Nazwa użytkownika :%2$s - Hasło: %3$s - - Po zalogowaniu możesz zmienić hasło do swojego konta na stronie "Ustawienia". - - Proszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie. - - Możesz również chcieć dodać podstawowe informacje do swojego domyślnego profilu - (na stronie "Profile"), aby inne osoby mogły łatwo Cię znaleźć. - - Zalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego, - dodanie pewnych "słów kluczowych" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) - i być może miejsca, gdzie mieszkasz; jeśli nie chcesz podawać więcej szczegółów. - - W pełni szanujemy Twoje prawo do prywatności i żadna z tych danych nie jest konieczna. - Jeśli jesteś nowy i nie znasz tutaj nikogo, mogą one Ci pomóc, - w pozyskaniu nowych i interesujących przyjaciół. - - Jeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić na stronie %1$s/removeme - - Dziękujemy i zapraszamy do%4$s.'; $a->strings['Registration details for %s'] = 'Szczegóły rejestracji dla %s'; $a->strings[' Dear %1$s, @@ -1109,55 +853,6 @@ $a->strings[' Szanowna/y %1$s, Dziękujemy za rejestrację w %2$s. Twoje konto zostało utworzone. '; -$a->strings[' - The login details are as follows: - - Site Location: %3$s - Login Name: %1$s - Password: %5$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %3$s/removeme - - Thank you and welcome to %2$s.'] = ' - Dane logowania są następuje: - Lokalizacja witryny: %3$s - Nazwa użytkownika: %1$s - Hasło: %5$s - - Po zalogowaniu możesz zmienić hasło do swojego konta na stronie "Ustawienia". - Proszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie. - - Możesz również dodać podstawowe informacje do swojego domyślnego profilu - (na stronie "Profil użytkownika"), aby inne osoby mogły łatwo Cię znaleźć. - - Zalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego, - dodanie niektórych "słów kluczowych" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) - i być może gdzie mieszkasz; jeśli nie chcesz podać więcej szczegów. - - W pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny. - Jeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc - możesz zdobyć nowych interesujących przyjaciół. - - Jeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić na stronie %3$s/removeme - - Dziękujemy i Zapraszamy do %2$s.'; $a->strings['Addon not found.'] = 'Nie znaleziono dodatku.'; $a->strings['Addon %s disabled.'] = 'Dodatek %s wyłączony.'; $a->strings['Addon %s enabled.'] = 'Dodatek %s włączony.'; @@ -1170,108 +865,9 @@ $a->strings['Author: '] = 'Autor: '; $a->strings['Maintainer: '] = 'Opiekun: '; $a->strings['Addons reloaded'] = 'Dodatki zostały ponownie wczytane'; $a->strings['Addon %s failed to install.'] = 'Instalacja dodatku %s nie powiodła się.'; +$a->strings['Save Settings'] = 'Zapisz ustawienia'; $a->strings['Reload active addons'] = 'Wczytaj ponownie aktywne dodatki'; $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'] = 'W twoim węźle nie ma obecnie żadnych dodatków. Możesz znaleźć oficjalne repozytorium dodatków na %1$s i możesz znaleźć inne interesujące dodatki w otwartym rejestrze dodatków na %2$s'; -$a->strings['List of all users'] = 'Lista wszystkich użytkowników'; -$a->strings['Active'] = 'Aktywne'; -$a->strings['List of active accounts'] = 'Lista aktywnych kont'; -$a->strings['Pending'] = 'Oczekujące'; -$a->strings['List of pending registrations'] = 'Lista oczekujących rejestracji'; -$a->strings['Blocked'] = 'Zablokowane'; -$a->strings['List of blocked users'] = 'Lista zablokowanych użytkowników'; -$a->strings['Deleted'] = 'Usunięte'; -$a->strings['List of pending user deletions'] = 'Lista oczekujących na usunięcie użytkowników'; -$a->strings['Normal Account Page'] = 'Normalna strona konta'; -$a->strings['Soapbox Page'] = 'Strona Soapbox'; -$a->strings['Public Forum'] = 'Forum publiczne'; -$a->strings['Automatic Friend Page'] = 'Automatyczna strona znajomego'; -$a->strings['Private Forum'] = 'Prywatne forum'; -$a->strings['Personal Page'] = 'Strona osobista'; -$a->strings['Organisation Page'] = 'Strona Organizacji'; -$a->strings['News Page'] = 'Strona Wiadomości'; -$a->strings['Community Forum'] = 'Forum społecznościowe'; -$a->strings['Relay'] = 'Przekaźnik'; -$a->strings['You can\'t block a local contact, please block the user instead'] = 'Nie możesz zablokować lokalnego kontaktu, zamiast tego zablokuj użytkownika'; -$a->strings['%s contact unblocked'] = [ - 0 => '%s kontakt odblokowany', - 1 => '%s kontakty odblokowane', - 2 => '%s kontaktów odblokowanych', - 3 => '%s kontaktów odblokowanych', -]; -$a->strings['Remote Contact Blocklist'] = 'Lista zablokowanych kontaktów zdalnych'; -$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu zdalnego.'; -$a->strings['Block Remote Contact'] = 'Zablokuj kontakt zdalny'; -$a->strings['select all'] = 'zaznacz wszystko'; -$a->strings['select none'] = 'wybierz brak'; -$a->strings['Unblock'] = 'Odblokuj'; -$a->strings['No remote contact is blocked from this node.'] = 'Z tego węzła nie jest blokowany kontakt zdalny.'; -$a->strings['Blocked Remote Contacts'] = 'Zablokowane kontakty zdalne'; -$a->strings['Block New Remote Contact'] = 'Zablokuj nowy kontakt zdalny'; -$a->strings['Photo'] = 'Zdjęcie'; -$a->strings['Reason'] = 'Powód'; -$a->strings['%s total blocked contact'] = [ - 0 => 'łącznie %s zablokowany kontakt', - 1 => 'łącznie %s zablokowane kontakty', - 2 => 'łącznie %s zablokowanych kontaktów', - 3 => '%s całkowicie zablokowane kontakty', -]; -$a->strings['URL of the remote contact to block.'] = 'Adres URL kontaktu zdalnego do zablokowania.'; -$a->strings['Also purge contact'] = 'Wyczyść również kontakt'; -$a->strings['Removes all content related to this contact from the node. Keeps the contact record. This action cannot be undone.'] = 'Usuwa z węzła całą zawartość związaną z tym kontaktem. Zachowuje rejestr kontaktów. Tej czynności nie można cofnąć.'; -$a->strings['Block Reason'] = 'Powód blokady'; -$a->strings['Server domain pattern added to the blocklist.'] = 'Do listy zablokowanych dodano wzorzec domeny serwera.'; -$a->strings['%s server scheduled to be purged.'] = [ - 0 => '%s serwer zaplanowany do usunięcia.', - 1 => '%s serwery zaplanowane do usunięcia.', - 2 => '%s serwerów zaplanowanych do usunięcia.', - 3 => '%s serwerów zaplanowanych do usunięcia.', -]; -$a->strings['← Return to the list'] = '← Wróć do listy'; -$a->strings['Block A New Server Domain Pattern'] = 'Zablokuj nowy wzorzec domeny serwera'; -$a->strings['

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

    -
      -
    • *: Any number of characters
    • -
    • ?: Any single character
    • -
    '] = '

    Składnia wzorca domeny serwera to symbol wieloznaczny powłoki bez rozróżniania wielkości liter, zawierający następujące znaki specjalne:

    -
      -
    • *: Dowolna liczba znaków
    • -
    • ?: Dowolny pojedynczy znak
    • -
    '; -$a->strings['Check pattern'] = 'Sprawdź wzór'; -$a->strings['Matching known servers'] = 'Dopasowanie znanych serwerów'; -$a->strings['Server Name'] = 'Nazwa serwera'; -$a->strings['Server Domain'] = 'Domena serwera'; -$a->strings['Known Contacts'] = 'Znane kontakty'; -$a->strings['%d known server'] = [ - 0 => '%d znany serwer', - 1 => '%d znane serwery', - 2 => '%d znanych serwerów', - 3 => '%d znanych serwerów', -]; -$a->strings['Add pattern to the blocklist'] = 'Dodaj wzór do listy blokad'; -$a->strings['Server Domain Pattern'] = 'Wzorzec domeny serwera'; -$a->strings['The domain pattern of the new server to add to the blocklist. Do not include the protocol.'] = 'Wzorzec domeny nowego serwera do dodania do listy blokad. Nie dołączaj protokołu.'; -$a->strings['Purge server'] = 'Wyczyść serwer'; -$a->strings['Also purges all the locally stored content authored by the known contacts registered on that server. Keeps the contacts and the server records. This action cannot be undone.'] = [ - 0 => 'Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć.', - 1 => 'Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć.', - 2 => 'Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć.', - 3 => 'Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć.', -]; -$a->strings['Block reason'] = 'Powód zablokowania'; -$a->strings['The reason why you blocked this server domain pattern. This reason will be shown publicly in the server information page.'] = 'Powód, dla którego zablokowałeś ten wzorzec domeny serwera. Powód ten zostanie pokazany publicznie na stronie informacyjnej serwera.'; -$a->strings['Blocked server domain pattern'] = 'Zablokowany wzorzec domeny serwera'; -$a->strings['Reason for the block'] = 'Powód blokowania'; -$a->strings['Delete server domain pattern'] = 'Usuń wzorzec domeny serwera'; -$a->strings['Check to delete this entry from the blocklist'] = 'Zaznacz, aby usunąć ten wpis z listy bloków'; -$a->strings['Server Domain Pattern Blocklist'] = 'Lista bloków wzorców domen serwerów'; -$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.'] = 'Ta strona może służyć do definiowania listy zablokowanych wzorców domen serwera z sieci stowarzyszonej, które nie mogą komunikować się z węzłem. Dla każdego wzorca domeny należy również podać powód, dla którego go blokujesz.'; -$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.'] = 'Lista zablokowanych wzorców domen serwera zostanie udostępniona publicznie na stronie /friendica, aby użytkownicy i osoby badające problemy z komunikacją mogły łatwo znaleźć przyczynę.'; -$a->strings['Add new entry to the blocklist'] = 'Dodaj nowy wpis do listy zablokowanych'; -$a->strings['Save changes to the blocklist'] = 'Zapisz zmiany w liście zablokowanych'; -$a->strings['Current Entries in the Blocklist'] = 'Aktualne wpisy na liście zablokowanych'; -$a->strings['Delete entry from the blocklist'] = 'Usuń wpis z listy zablokowanych'; -$a->strings['Delete entry from the blocklist?'] = 'Usunąć wpis z listy zablokowanych?'; $a->strings['Update has been marked successful'] = 'Aktualizacja została oznaczona jako udana'; $a->strings['Database structure update %s was successfully applied.'] = 'Pomyślnie zastosowano aktualizację %s struktury bazy danych.'; $a->strings['Executing of database structure update %s failed with error: %s'] = 'Wykonanie aktualizacji %s struktury bazy danych nie powiodło się z powodu błędu:%s'; @@ -1289,35 +885,8 @@ $a->strings['Lock feature %s'] = 'Funkcja blokady %s'; $a->strings['Manage Additional Features'] = 'Zarządzanie dodatkowymi funkcjami'; $a->strings['Other'] = 'Inne'; $a->strings['unknown'] = 'nieznany'; -$a->strings['%s total systems'] = '%s łącznie systemów'; -$a->strings['%s active users last month'] = '%s aktywnych użytkowników w ostatnim miesiącu'; -$a->strings['%s active users last six months'] = '%s aktywnych użytkowników za ostatnie 6 miesięcy'; -$a->strings['%s registered users'] = '%s zarejestrowanych użytkowników'; -$a->strings['%s locally created posts and comments'] = '%s lokalnie utworzonych wpisów i komentarzy'; -$a->strings['%s posts per user'] = '%s wpisy na użytkownika'; -$a->strings['%s users per system'] = '%s użytkowników na system'; $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.'] = 'Ta strona zawiera kilka numerów do znanej części federacyjnej sieci społecznościowej, do której należy Twój węzeł Friendica. Liczby te nie są kompletne, ale odzwierciedlają tylko część sieci, o której wie twój węzeł.'; $a->strings['Federation Statistics'] = 'Statystyki Federacji'; -$a->strings['Currently this node is aware of %s nodes (%s active users last month, %s active users last six months, %s registered users in total) from the following platforms:'] = 'Obecnie ten węzeł jest świadomy %s węzłów (%s aktywnych użytkowników w zeszłym miesiącu, %s aktywnych użytkowników w ciągu ostatnich sześciu miesięcy, %s łącznie zarejestrowanych użytkowników) z następujących platform:'; -$a->strings['Item marked for deletion.'] = 'Przedmiot oznaczony do usunięcia.'; -$a->strings['Delete Item'] = 'Usuń przedmiot'; -$a->strings['Delete this Item'] = 'Usuń ten przedmiot'; -$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.'] = 'Na tej stronie możesz usunąć przedmiot ze swojego węzła. Jeśli element jest publikowaniem na najwyższym poziomie, cały wątek zostanie usunięty.'; -$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.'] = 'Musisz znać identyfikator GUID tego przedmiotu. Możesz go znaleźć np. patrząc na wyświetlany adres URL. Ostatnia część http://example.com/display/123456 to GUID, tutaj 123456.'; -$a->strings['GUID'] = 'GUID'; -$a->strings['The GUID of the item you want to delete.'] = 'Identyfikator elementu GUID, który chcesz usunąć.'; -$a->strings['Item Source'] = 'Źródło elementu'; -$a->strings['Item Guid'] = 'Element Guid'; -$a->strings['Item Id'] = 'Identyfikator elementu'; -$a->strings['Item URI'] = 'Identyfikator URI elementu'; -$a->strings['Terms'] = 'Zasady'; -$a->strings['Tag'] = 'Znacznik'; -$a->strings['Type'] = 'Typu'; -$a->strings['Term'] = 'Zasada'; -$a->strings['URL'] = 'URL'; -$a->strings['Mention'] = 'Wzmianka'; -$a->strings['Implicit Mention'] = 'Wzmianka niejawna'; -$a->strings['Source'] = 'Źródło'; $a->strings['The logfile \'%s\' is not writable. No logging possible'] = 'Plik dziennika \'%s\' nie jest zapisywalny. Brak możliwości logowania'; $a->strings['PHP log currently enabled.'] = 'Dziennik PHP jest obecnie włączony.'; $a->strings['PHP log currently disabled.'] = 'Dziennik PHP jest obecnie wyłączony.'; @@ -1340,7 +909,9 @@ $a->strings['Context'] = 'Kontekst'; $a->strings['ALL'] = 'WSZYSTKO'; $a->strings['View details'] = 'Zobacz szczegóły'; $a->strings['Click to view details'] = 'Kliknij, aby zobaczyć szczegóły'; +$a->strings['Event details'] = 'Szczegóły wydarzenia'; $a->strings['Data'] = 'Dane'; +$a->strings['Source'] = 'Źródło'; $a->strings['File'] = 'Plik'; $a->strings['Line'] = 'Linia'; $a->strings['Function'] = 'Funkcja'; @@ -1354,11 +925,12 @@ $a->strings['This page lists the currently queued worker jobs. These jobs are ha $a->strings['ID'] = 'ID'; $a->strings['Command'] = 'Polecenie'; $a->strings['Job Parameters'] = 'Parametry zadania'; +$a->strings['Created'] = 'Utwórz'; $a->strings['Priority'] = 'Priorytet'; $a->strings['No special theme for mobile devices'] = 'Brak specialnego motywu dla urządzeń mobilnych'; $a->strings['%s - (Experimental)'] = '%s- (Eksperymentalne)'; -$a->strings['No community page for local users'] = 'Brak strony społeczności dla użytkowników lokalnych'; $a->strings['No community page'] = 'Brak strony społeczności'; +$a->strings['No community page for visitors'] = 'Brak strony społeczności dla odwiedzających'; $a->strings['Public postings from users of this site'] = 'Publikacje publiczne od użytkowników tej strony'; $a->strings['Public postings from the federated network'] = 'Publikacje wpisy ze sfederowanej sieci'; $a->strings['Public postings from local users and the federated network'] = 'Publikacje publiczne od użytkowników lokalnych i sieci federacyjnej'; @@ -1366,9 +938,6 @@ $a->strings['Multi user instance'] = 'Tryb wielu użytkowników'; $a->strings['Closed'] = 'Zamknięte'; $a->strings['Requires approval'] = 'Wymaga zatwierdzenia'; $a->strings['Open'] = 'Otwarta'; -$a->strings['No SSL policy, links will track page SSL state'] = 'Brak SSL, linki będą śledzić stan SSL'; -$a->strings['Force all links to use SSL'] = 'Wymuś używanie SSL na wszystkich odnośnikach'; -$a->strings['Self-signed certificate, use SSL for local links only (discouraged)'] = 'Certyfikat z podpisem własnym, używaj SSL tylko dla łączy lokalnych (odradzane)'; $a->strings['Don\'t check'] = 'Nie sprawdzaj'; $a->strings['check the stable version'] = 'sprawdź wersję stabilną'; $a->strings['check the development version'] = 'sprawdź wersję rozwojową'; @@ -1381,6 +950,7 @@ $a->strings['Republish users to directory'] = 'Ponownie opublikuj użytkowników $a->strings['Registration'] = 'Rejestracja'; $a->strings['File upload'] = 'Przesyłanie plików'; $a->strings['Policies'] = 'Zasady'; +$a->strings['Advanced'] = 'Zaawansowany'; $a->strings['Auto Discovered Contact Directory'] = 'Katalog kontaktów automatycznie odkrytych'; $a->strings['Performance'] = 'Ustawienia'; $a->strings['Worker'] = 'Worker'; @@ -1409,8 +979,6 @@ $a->strings['System theme'] = 'Motyw systemowy'; $a->strings['Default system theme - may be over-ridden by user profiles - Change default theme settings'] = 'Domyślny motyw systemu - może być nadpisywany przez profile użytkowników - Zmień domyślne ustawienia motywu'; $a->strings['Mobile system theme'] = 'Motyw systemu mobilnego'; $a->strings['Theme for mobile devices'] = 'Motyw na urządzenia mobilne'; -$a->strings['SSL link policy'] = 'Polityka odnośników SSL'; -$a->strings['Determines whether generated links should be forced to use SSL'] = 'Określa, czy generowane odnośniki będą obowiązkowo używały SSL'; $a->strings['Force SSL'] = 'Wymuś SSL'; $a->strings['Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'] = 'Wymuszaj wszystkie żądania SSL bez SSL - Uwaga: w niektórych systemach może to prowadzić do niekończących się pętli.'; $a->strings['Show help entry from navigation menu'] = 'Pokaż wpis pomocy z menu nawigacyjnego'; @@ -1418,7 +986,6 @@ $a->strings['Displays the menu entry for the Help pages from the navigation menu $a->strings['Single user instance'] = 'Tryb pojedynczego użytkownika'; $a->strings['Make this instance multi-user or single-user for the named user'] = 'Ustawia tryb dla wielu użytkowników lub pojedynczego użytkownika dla nazwanego użytkownika'; $a->strings['Maximum image size'] = 'Maksymalny rozmiar zdjęcia'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'Maksymalny rozmiar w bitach dla wczytywanego obrazu . Domyślnie jest to 0 , co oznacza bez limitu .'; $a->strings['Maximum image length'] = 'Maksymalna długość obrazu'; $a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Maksymalna długość w pikselach dłuższego boku przesyłanego obrazu. Wartością domyślną jest -1, co oznacza brak ograniczeń.'; $a->strings['JPEG image quality'] = 'Jakość obrazu JPEG'; @@ -1448,7 +1015,6 @@ $a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Włączen $a->strings['Global directory URL'] = 'Globalny adres URL katalogu'; $a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'Adres URL do katalogu globalnego. Jeśli nie zostanie to ustawione, katalog globalny jest całkowicie niedostępny dla aplikacji.'; $a->strings['Private posts by default for new users'] = 'Prywatne posty domyślnie dla nowych użytkowników'; -$a->strings['Set default post permissions for all new members to the default privacy group rather than public.'] = 'Ustaw domyślne uprawnienia do publikowania dla wszystkich nowych członków na domyślną grupę prywatności, a nie publiczną.'; $a->strings['Don\'t include post content in email notifications'] = 'Nie wklejaj zawartości postu do powiadomienia o poczcie'; $a->strings['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.'] = 'W celu ochrony prywatności, nie włączaj zawartości postu/komentarza/wiadomości prywatnej/etc. do powiadomień w wiadomościach mailowych wysyłanych z tej strony.'; $a->strings['Disallow public access to addons listed in the apps menu.'] = 'Nie zezwalaj na publiczny dostęp do dodatkowych wtyczek wyszczególnionych w menu aplikacji.'; @@ -1469,6 +1035,7 @@ $a->strings['Enable OpenID'] = 'Włącz OpenID'; $a->strings['Enable OpenID support for registration and logins.'] = 'Włącz obsługę OpenID dla rejestracji i logowania.'; $a->strings['Enable Fullname check'] = 'Włącz sprawdzanie pełnej nazwy'; $a->strings['Enable check to only allow users to register with a space between the first name and the last name in their full name.'] = 'Włącz sprawdzenie, aby zezwolić użytkownikom tylko na rejestrację ze spacją między imieniem a nazwiskiem w ich pełnym imieniu.'; +$a->strings['If enabled and the system is set to an open registration, an email for each new registration is sent to the administrators.'] = 'Jeśli ta opcja jest włączona, a system jest ustawiony na otwartą rejestrację, wiadomość e-mail dla każdej nowej rejestracji jest wysyłana do administratorów.'; $a->strings['Community pages for visitors'] = 'Strony społecznościowe dla odwiedzających'; $a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = 'Które strony społeczności powinny być dostępne dla odwiedzających. Lokalni użytkownicy zawsze widzą obie strony.'; $a->strings['Posts per user on community page'] = 'Lista wpisów użytkownika na stronie społeczności'; @@ -1530,8 +1097,6 @@ $a->strings['Temp path'] = 'Ścieżka do temp'; $a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Jeśli masz zastrzeżony system, w którym serwer internetowy nie może uzyskać dostępu do ścieżki temp systemu, wprowadź tutaj inną ścieżkę.'; $a->strings['Only search in tags'] = 'Szukaj tylko w znacznikach'; $a->strings['On large systems the text search can slow down the system extremely.'] = 'W dużych systemach wyszukiwanie tekstu może wyjątkowo spowolnić system.'; -$a->strings['Generate counts per contact group when calculating network count'] = 'Generuj liczniki na grupę kontaktów podczas obliczania liczby sieci'; -$a->strings['On systems with users that heavily use contact groups the query can be very expensive.'] = 'W systemach, w których użytkownicy intensywnie korzystają z grup kontaktów, zapytanie może być bardzo kosztowne.'; $a->strings['Maximum number of parallel workers'] = 'Maksymalna liczba równoległych workerów'; $a->strings['On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d.'] = 'Na udostępnionych usługach hostingowych ustaw tę opcję %d. W większych systemach wartości %dsą świetne . Wartość domyślna to %d.'; $a->strings['Enable fastlane'] = 'Włącz Fastlane'; @@ -1573,21 +1138,11 @@ $a->strings['The last worker execution was on %s UTC. This is older than one hou $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.'] = 'Konfiguracja Friendiki jest teraz przechowywana w config/local.config.php, skopiuj config/local-sample.config.php i przenieś swoją konfigurację z .htconfig.php. Zobacz stronę pomocy Config, aby uzyskać pomoc dotyczącą przejścia.'; $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.'] = 'Konfiguracja Friendiki jest teraz przechowywana w config/local.config.php, skopiuj config/local-sample.config.php i przenieś konfigurację z config/local.ini.php. Zobacz stronę pomocy Config, aby uzyskać pomoc dotyczącą przejścia.'; $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.'] = '%s nie jest osiągalny w twoim systemie. Jest to poważny problem z konfiguracją, który uniemożliwia komunikację między serwerami. Zobacz pomoc na stronie instalacji.'; -$a->strings['The logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Plik dziennika „%s” nie nadaje się do użytku. Brak możliwości logowania (błąd: \'%s\')'; -$a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: \'%s\')'] = 'Plik dziennika debugowania „%s” nie nadaje się do użytku. Brak możliwości logowania (błąd: \'%s\')'; $a->strings['Friendica\'s system.basepath was updated from \'%s\' to \'%s\'. Please remove the system.basepath from your db to avoid differences.'] = 'System.basepath Friendiki został zaktualizowany z \'%s\' do \'%s\'. Usuń system.basepath z bazy danych, aby uniknąć różnic.'; $a->strings['Friendica\'s current system.basepath \'%s\' is wrong and the config file \'%s\' isn\'t used.'] = 'Obecny system.basepath Friendiki \'%s\' jest nieprawidłowy i plik konfiguracyjny \'%s\' nie jest używany.'; $a->strings['Friendica\'s current system.basepath \'%s\' is not equal to the config file \'%s\'. Please fix your configuration.'] = 'Obecny system.basepath Friendiki \'%s\' nie jest równy plikowi konfiguracyjnemu \'%s\'. Napraw konfigurację.'; -$a->strings['Normal Account'] = 'Konto normalne'; -$a->strings['Automatic Follower Account'] = 'Automatyczne konto obserwatora'; -$a->strings['Public Forum Account'] = 'Publiczne konto na forum'; -$a->strings['Automatic Friend Account'] = 'Automatyczny przyjaciel konta'; -$a->strings['Blog Account'] = 'Konto bloga'; -$a->strings['Private Forum Account'] = 'Prywatne konto na forum'; $a->strings['Message queues'] = 'Wiadomości'; $a->strings['Server Settings'] = 'Ustawienia serwera'; -$a->strings['Registered users'] = 'Zarejestrowani użytkownicy'; -$a->strings['Pending registrations'] = 'Oczekujące rejestracje'; $a->strings['Version'] = 'Wersja'; $a->strings['Active addons'] = 'Aktywne dodatki'; $a->strings['Theme %s disabled.'] = 'Motyw %s wyłączony.'; @@ -1608,70 +1163,8 @@ $a->strings['Show some informations regarding the needed information to operate $a->strings['Privacy Statement Preview'] = 'Podgląd oświadczenia o prywatności'; $a->strings['The Terms of Service'] = 'Warunki świadczenia usług'; $a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = 'Wprowadź tutaj Warunki świadczenia usług dla swojego węzła. Możesz użyć BBCode. Nagłówki sekcji powinny być [h2] i poniżej.'; -$a->strings['%s user blocked'] = [ - 0 => '%s użytkownik zablokowany', - 1 => '%s użytkowników zablokowanych', - 2 => '%s użytkowników zablokowanych', - 3 => '%s użytkownicy zablokowani', -]; -$a->strings['You can\'t remove yourself'] = 'Nie możesz usunąć siebie'; -$a->strings['%s user deleted'] = [ - 0 => 'usunięto %s użytkownika', - 1 => 'usunięto %s użytkowników', - 2 => 'usunięto %s użytkowników', - 3 => '%s usuniętych użytkowników', -]; -$a->strings['User "%s" deleted'] = 'Użytkownik "%s" usunięty'; -$a->strings['User "%s" blocked'] = 'Użytkownik "%s" zablokowany'; -$a->strings['Register date'] = 'Data rejestracji'; -$a->strings['Last login'] = 'Ostatnie logowanie'; -$a->strings['Last public item'] = 'Ostatni element publiczny'; -$a->strings['Active Accounts'] = 'Aktywne konta'; -$a->strings['User blocked'] = 'Użytkownik zablokowany'; -$a->strings['Site admin'] = 'Administracja stroną'; -$a->strings['Account expired'] = 'Konto wygasło'; -$a->strings['Create a new user'] = 'Utwórz nowego użytkownika'; -$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Zaznaczeni użytkownicy zostaną usunięci!\n\n Wszystko co zamieścili na tej stronie będzie trwale skasowane!\n\n Jesteś pewien?'; -$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Użytkownik {0} zostanie usunięty!\n\n Wszystko co zamieścił na tej stronie będzie trwale skasowane!\n\n Jesteś pewien?'; -$a->strings['%s user unblocked'] = [ - 0 => '%s użytkownik odblokowany', - 1 => '%s użytkowników odblokowanych', - 2 => '%s użytkowników odblokowanych', - 3 => '%s użytkowników odblokowanych', -]; -$a->strings['User "%s" unblocked'] = 'Użytkownik "%s" odblokowany'; -$a->strings['Blocked Users'] = 'Zablokowani użytkownicy'; -$a->strings['New User'] = 'Nowy użytkownik'; -$a->strings['Add User'] = 'Dodaj użytkownika'; -$a->strings['Name of the new user.'] = 'Nazwa nowego użytkownika.'; -$a->strings['Nickname'] = 'Pseudonim'; -$a->strings['Nickname of the new user.'] = 'Pseudonim nowego użytkownika.'; -$a->strings['Email address of the new user.'] = 'Adres email nowego użytkownika.'; -$a->strings['Users awaiting permanent deletion'] = 'Użytkownicy oczekujący na trwałe usunięcie'; -$a->strings['Permanent deletion'] = 'Trwałe usunięcie'; -$a->strings['Users'] = 'Użytkownicy'; -$a->strings['User waiting for permanent deletion'] = 'Użytkownik czekający na trwałe usunięcie'; -$a->strings['%s user approved'] = [ - 0 => '%s użytkownik zatwierdzony', - 1 => '%s użytkowników zatwierdzonych', - 2 => '%s użytkowników zatwierdzonych', - 3 => '%s użytkowników zatwierdzonych', -]; -$a->strings['%s registration revoked'] = [ - 0 => '%s rejestrację cofnięto', - 1 => '%s rejestracje cofnięto', - 2 => '%s rejestracji cofnięto', - 3 => '%s rejestracji cofnięto ', -]; -$a->strings['Account approved.'] = 'Konto zatwierdzone.'; -$a->strings['Registration revoked'] = 'Rejestracja odwołana'; -$a->strings['User registrations awaiting review'] = 'Rejestracje użytkowników oczekujące na sprawdzenie'; -$a->strings['Request date'] = 'Data prośby'; -$a->strings['No registrations.'] = 'Brak rejestracji.'; -$a->strings['Note from the user'] = 'Uwaga od użytkownika'; -$a->strings['Deny'] = 'Odmów'; -$a->strings['API endpoint %s %s is not implemented'] = 'Punkt końcowy API %s %s nie jest zaimplementowany'; -$a->strings['The API endpoint is currently not implemented but might be in the future.'] = 'Punkt końcowy interfejsu API nie jest obecnie zaimplementowany, ale może zostać w przyszłości.'; +$a->strings['The rules'] = 'Zasady'; +$a->strings['Enter your system rules here. Each line represents one rule.'] = 'Wprowadź tutaj swoje reguły systemowe. Każda linia reprezentuje jedną regułę.'; $a->strings['Missing parameters'] = 'Brakuje parametrów'; $a->strings['Only starting posts can be bookmarked'] = 'Tylko początkowe wpisy można dodawać do zakładek'; $a->strings['Only starting posts can be muted'] = 'Można wyciszyć tylko początkowe wpisy'; @@ -1693,9 +1186,6 @@ $a->strings['Database'] = 'Baza danych'; $a->strings['DB updates'] = 'Aktualizacje bazy danych'; $a->strings['Inspect Deferred Workers'] = 'Sprawdź odroczonych workerów'; $a->strings['Inspect worker Queue'] = 'Sprawdź kolejkę workerów'; -$a->strings['Tools'] = 'Narzędzia'; -$a->strings['Contact Blocklist'] = 'Lista zablokowanych kontaktów'; -$a->strings['Server Blocklist'] = 'Lista zablokowanych serwerów'; $a->strings['Diagnostics'] = 'Diagnostyka'; $a->strings['PHP Info'] = 'Informacje o PHP'; $a->strings['probe address'] = 'adres probe'; @@ -1717,23 +1207,55 @@ $a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = 2 => 'Tygodniowy limit wysyłania %d postów. Post został odrzucony.', 3 => 'Został osiągnięty tygodniowy limit %d wysyłania wpisów. Wpis został odrzucony.', ]; -$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = 'Został osiągnięty miesięczny limit %d wysyłania wpisów. Wpis został odrzucony.'; +$a->strings['Users'] = 'Użytkownicy'; +$a->strings['Tools'] = 'Narzędzia'; +$a->strings['Contact Blocklist'] = 'Lista zablokowanych kontaktów'; +$a->strings['Server Blocklist'] = 'Lista zablokowanych serwerów'; +$a->strings['Delete Item'] = 'Usuń przedmiot'; +$a->strings['Item Source'] = 'Źródło elementu'; $a->strings['Profile Details'] = 'Szczegóły profilu'; $a->strings['Only You Can See This'] = 'Tylko ty możesz to zobaczyć'; $a->strings['Scheduled Posts'] = 'Zaplanowane wpisy'; $a->strings['Posts that are scheduled for publishing'] = 'Wpisy zaplanowane do publikacji'; $a->strings['Tips for New Members'] = 'Wskazówki dla nowych użytkowników'; $a->strings['People Search - %s'] = 'Szukaj osób - %s'; -$a->strings['Forum Search - %s'] = 'Przeszukiwanie forum - %s'; +$a->strings['No matches'] = 'Brak wyników'; $a->strings['Account'] = 'Konto'; $a->strings['Two-factor authentication'] = 'Uwierzytelnianie dwuskładnikowe'; $a->strings['Display'] = 'Wygląd'; +$a->strings['Social Networks'] = 'Portale społecznościowe'; $a->strings['Manage Accounts'] = 'Zarządzanie kontami'; $a->strings['Connected apps'] = 'Powiązane aplikacje'; $a->strings['Export personal data'] = 'Eksportuj dane osobiste'; $a->strings['Remove account'] = 'Usuń konto'; $a->strings['This page is missing a url parameter.'] = 'Na tej stronie brakuje parametru url.'; $a->strings['The post was created'] = 'Wpis został utworzony'; +$a->strings['Invalid Request'] = 'Nieprawidłowe żądanie'; +$a->strings['Event id is missing.'] = 'Brak identyfikatora wydarzenia.'; +$a->strings['Failed to remove event'] = 'Nie udało się usunąć wydarzenia'; +$a->strings['Event can not end before it has started.'] = 'Wydarzenie nie może się zakończyć przed jego rozpoczęciem.'; +$a->strings['Event title and start time are required.'] = 'Wymagany tytuł wydarzenia i czas rozpoczęcia.'; +$a->strings['Starting date and Title are required.'] = 'Data rozpoczęcia i tytuł są wymagane.'; +$a->strings['Event Starts:'] = 'Rozpoczęcie wydarzenia:'; +$a->strings['Required'] = 'Wymagany'; +$a->strings['Finish date/time is not known or not relevant'] = 'Data/czas zakończenia nie jest znana lub jest nieistotna'; +$a->strings['Event Finishes:'] = 'Zakończenie wydarzenia:'; +$a->strings['Share this event'] = 'Udostępnij te wydarzenie'; +$a->strings['Basic'] = 'Podstawowy'; +$a->strings['This calendar format is not supported'] = 'Ten format kalendarza nie jest obsługiwany'; +$a->strings['No exportable data found'] = 'Nie znaleziono danych do eksportu'; +$a->strings['calendar'] = 'kalendarz'; +$a->strings['Events'] = 'Wydarzenia'; +$a->strings['View'] = 'Widok'; +$a->strings['Create New Event'] = 'Stwórz nowe wydarzenie'; +$a->strings['list'] = 'lista'; +$a->strings['Contact not found.'] = 'Nie znaleziono kontaktu.'; +$a->strings['Invalid contact.'] = 'Nieprawidłowy kontakt.'; +$a->strings['Contact is deleted.'] = 'Kontakt został usunięty.'; +$a->strings['Bad request.'] = 'Błędne żądanie.'; +$a->strings['Filter'] = 'Filtr'; +$a->strings['Members'] = 'Członkowie'; +$a->strings['Click on a contact to add or remove.'] = 'Kliknij na kontakt w celu dodania lub usunięcia.'; $a->strings['%d contact edited.'] = [ 0 => 'Zedytowano %d kontakt.', 1 => 'Zedytowano %d kontakty.', @@ -1741,7 +1263,9 @@ $a->strings['%d contact edited.'] = [ 3 => '%dedytuj kontakty.', ]; $a->strings['Show all contacts'] = 'Pokaż wszystkie kontakty'; +$a->strings['Pending'] = 'Oczekujące'; $a->strings['Only show pending contacts'] = 'Pokaż tylko oczekujące kontakty'; +$a->strings['Blocked'] = 'Zablokowane'; $a->strings['Only show blocked contacts'] = 'Pokaż tylko zablokowane kontakty'; $a->strings['Ignored'] = 'Ignorowane'; $a->strings['Only show ignored contacts'] = 'Pokaż tylko ignorowane kontakty'; @@ -1749,10 +1273,10 @@ $a->strings['Archived'] = 'Zarchiwizowane'; $a->strings['Only show archived contacts'] = 'Pokaż tylko zarchiwizowane kontakty'; $a->strings['Hidden'] = 'Ukryte'; $a->strings['Only show hidden contacts'] = 'Pokaż tylko ukryte kontakty'; -$a->strings['Organize your contact groups'] = 'Uporządkuj swoje grupy kontaktów'; $a->strings['Search your contacts'] = 'Wyszukaj w kontaktach'; $a->strings['Results for: %s'] = 'Wyniki dla: %s'; $a->strings['Update'] = 'Zaktualizuj'; +$a->strings['Unblock'] = 'Odblokuj'; $a->strings['Unignore'] = 'Odblokuj'; $a->strings['Batch Actions'] = 'Akcje wsadowe'; $a->strings['Conversations started by this contact'] = 'Rozmowy rozpoczęły się od tego kontaktu'; @@ -1768,11 +1292,11 @@ $a->strings['Pending incoming contact request'] = 'Oczekujące żądanie kontakt $a->strings['Visit %s\'s profile [%s]'] = 'Obejrzyj %s\'s profil [%s]'; $a->strings['Contact update failed.'] = 'Nie udało się zaktualizować kontaktu.'; $a->strings['Return to contact editor'] = 'Wróć do edytora kontaktów'; +$a->strings['Name'] = 'Nazwa'; $a->strings['Account Nickname'] = 'Nazwa konta'; $a->strings['Account URL'] = 'Adres URL konta'; $a->strings['Poll/Feed URL'] = 'Adres Ankiety/RSS'; $a->strings['New photo from this URL'] = 'Nowe zdjęcie z tego adresu URL'; -$a->strings['Invalid contact.'] = 'Nieprawidłowy kontakt.'; $a->strings['No known contacts.'] = 'Brak znanych kontaktów.'; $a->strings['No common contacts.'] = 'Brak wspólnych kontaktów.'; $a->strings['Follower (%s)'] = [ @@ -1807,12 +1331,22 @@ $a->strings['Contact (%s)'] = [ 2 => 'Kontaktów (%s)', 3 => 'Kontaktów (%s)', ]; -$a->strings['Error while sending poke, please retry.'] = 'Błąd wysyłania zaczepki, spróbuj ponownie.'; -$a->strings['You must be logged in to use this module.'] = 'Musisz być zalogowany, aby korzystać z tego modułu.'; -$a->strings['Poke/Prod'] = 'Zaczepić'; -$a->strings['poke, prod or do other things to somebody'] = 'szturchać, zaczepić lub robić inne rzeczy'; -$a->strings['Choose what you wish to do to recipient'] = 'Wybierz, co chcesz zrobić'; -$a->strings['Make this post private'] = 'Ustaw ten wpis jako prywatny'; +$a->strings['Access denied.'] = 'Brak dostępu.'; +$a->strings['Submit Request'] = 'Wyślij zgłoszenie'; +$a->strings['You already added this contact.'] = 'Już dodałeś ten kontakt.'; +$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Nie można wykryć typu sieci. Kontakt nie może zostać dodany.'; +$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Obsługa Diaspory nie jest włączona. Kontakt nie może zostać dodany.'; +$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany.'; +$a->strings['Please answer the following:'] = 'Proszę odpowiedzieć na następujące pytania:'; +$a->strings['Your Identity Address:'] = 'Twój adres tożsamości:'; +$a->strings['Profile URL'] = 'Adres URL profilu'; +$a->strings['Tags:'] = 'Znaczniki:'; +$a->strings['%s knows you'] = '%s zna cię'; +$a->strings['Add a personal note:'] = 'Dodaj osobistą notkę:'; +$a->strings['The contact could not be added.'] = 'Nie można dodać kontaktu.'; +$a->strings['Invalid request.'] = 'Nieprawidłowe żądanie.'; +$a->strings['No keywords to match. Please add keywords to your profile.'] = 'Brak pasujących słów kluczowych. Dodaj słowa kluczowe do swojego profilu.'; +$a->strings['Profile Match'] = 'Dopasowanie profilu'; $a->strings['Failed to update contact record.'] = 'Aktualizacja rekordu kontaktu nie powiodła się.'; $a->strings['Contact has been unblocked'] = 'Kontakt został odblokowany'; $a->strings['Contact has been blocked'] = 'Kontakt został zablokowany'; @@ -1834,7 +1368,6 @@ $a->strings['Fetch information'] = 'Pobierz informacje'; $a->strings['Fetch keywords'] = 'Pobierz słowa kluczowe'; $a->strings['Fetch information and keywords'] = 'Pobierz informacje i słowa kluczowe'; $a->strings['No mirroring'] = 'Bez dublowania'; -$a->strings['Mirror as forwarded posting'] = 'Przesłany lustrzany post'; $a->strings['Mirror as my own posting'] = 'Lustro mojego własnego komentarza'; $a->strings['Native reshare'] = 'Udostępnianie natywne'; $a->strings['Contact Information / Notes'] = 'Informacje kontaktowe/Notatki'; @@ -1848,10 +1381,10 @@ $a->strings['View conversations'] = 'Wyświetl rozmowy'; $a->strings['Last update:'] = 'Ostatnia aktualizacja:'; $a->strings['Update public posts'] = 'Zaktualizuj publiczne wpisy'; $a->strings['Update now'] = 'Aktualizuj teraz'; +$a->strings['Awaiting connection acknowledge'] = 'Oczekiwanie na potwierdzenie połączenia'; $a->strings['Currently blocked'] = 'Obecnie zablokowany'; $a->strings['Currently ignored'] = 'Obecnie zignorowany'; $a->strings['Currently archived'] = 'Obecnie zarchiwizowany'; -$a->strings['Awaiting connection acknowledge'] = 'Oczekiwanie na potwierdzenie połączenia'; $a->strings['Hide this contact from others'] = 'Ukryj ten kontakt przed innymi'; $a->strings['Replies/likes to your public posts may still be visible'] = 'Odpowiedzi/kliknięcia "lubię to" do Twoich publicznych wpisów nadal mogą być widoczne'; $a->strings['Notification for new posts'] = 'Powiadomienie o nowych wpisach'; @@ -1859,6 +1392,7 @@ $a->strings['Send a notification of every new post of this contact'] = 'Wyślij $a->strings['Keyword Deny List'] = 'Lista odrzuconych słów kluczowych'; $a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Rozdzielana przecinkami lista słów kluczowych, które nie powinny zostać przekonwertowane na hashtagi, gdy wybrana jest opcja \'Pobierz informacje i słowa kluczowe\''; $a->strings['Actions'] = 'Akcja'; +$a->strings['Status'] = 'Stan'; $a->strings['Mirror postings from this contact'] = 'Publikacje lustrzane od tego kontaktu'; $a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'Oznacz ten kontakt jako remote_self, spowoduje to, że friendica odeśle nowe wpisy z tego kontaktu.'; $a->strings['Refetch contact data'] = 'Pobierz ponownie dane kontaktowe'; @@ -1866,41 +1400,37 @@ $a->strings['Toggle Blocked status'] = 'Przełącz stan na Zablokowany'; $a->strings['Toggle Ignored status'] = 'Przełącz stan na Ignorowany'; $a->strings['Revoke Follow'] = 'Anuluj obserwowanie'; $a->strings['Revoke the follow from this contact'] = 'Anuluj obserwację przez ten kontakt'; +$a->strings['Bad Request.'] = 'Błędne zapytanie.'; $a->strings['Unknown contact.'] = 'Nieznany kontakt.'; -$a->strings['Contact is deleted.'] = 'Kontakt został usunięty.'; $a->strings['Contact is being deleted.'] = 'Kontakt jest usuwany.'; $a->strings['Follow was successfully revoked.'] = 'Obserwacja została pomyślnie anulowana.'; $a->strings['Do you really want to revoke this contact\'s follow? This cannot be undone and they will have to manually follow you back again.'] = 'Czy na pewno chcesz cofnąć obserwowanie przez ten kontakt? Nie można tego cofnąć i przy chęci przywrócenia obserwacji będzie trzeba zrobić to ponownie ręcznie.'; $a->strings['Yes'] = 'Tak'; -$a->strings['Local Community'] = 'Lokalna społeczność'; -$a->strings['Posts from local users on this server'] = 'Wpisy od lokalnych użytkowników na tym serwerze'; -$a->strings['Global Community'] = 'Globalna społeczność'; -$a->strings['Posts from users of the whole federated network'] = 'Wpisy od użytkowników całej sieci stowarzyszonej'; -$a->strings['Own Contacts'] = 'Własne kontakty'; -$a->strings['Include'] = 'Zawiera'; -$a->strings['Hide'] = 'Ukryj'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Brak dostępnych sugestii. Jeśli jest to nowa witryna, spróbuj ponownie za 24 godziny.'; +$a->strings['You aren\'t following this contact.'] = 'Nie obserwujesz tego kontaktu.'; +$a->strings['Unfollowing is currently not supported by your network.'] = 'Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć.'; +$a->strings['Disconnect/Unfollow'] = 'Rozłącz/Nie obserwuj'; +$a->strings['Contact was successfully unfollowed'] = 'Kontakt pomyślnie przestał być obserwowany'; +$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Nie można przestać obserwować tego kontaktu, skontaktuj się z administratorem'; $a->strings['No results.'] = 'Brak wyników.'; $a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'Ten strumień społeczności pokazuje wszystkie publiczne posty otrzymane przez ten węzeł. Mogą nie odzwierciedlać opinii użytkowników tego węzła.'; $a->strings['Community option not available.'] = 'Opcja wspólnotowa jest niedostępna.'; $a->strings['Not available.'] = 'Niedostępne.'; -$a->strings['No such group'] = 'Nie ma takiej grupy'; -$a->strings['Group: %s'] = 'Grupa: %s'; -$a->strings['Latest Activity'] = 'Ostatnia Aktywność'; -$a->strings['Sort by latest activity'] = 'Sortuj wg. ostatniej aktywności'; -$a->strings['Latest Posts'] = 'Najnowsze wpisy'; -$a->strings['Sort by post received date'] = 'Sortuj wg. daty otrzymania wpisu'; -$a->strings['Latest Creation'] = 'Najnowsze utworzenia'; -$a->strings['Sort by post creation date'] = 'Sortuj wg. daty utworzenia wpisu'; -$a->strings['Personal'] = 'Osobiste'; -$a->strings['Posts that mention or involve you'] = 'Wpisy, które wspominają lub angażują Ciebie'; -$a->strings['Starred'] = 'Ulubione'; -$a->strings['Favourite Posts'] = 'Ulubione wpisy'; +$a->strings['Own Contacts'] = 'Własne kontakty'; +$a->strings['Include'] = 'Zawiera'; +$a->strings['Hide'] = 'Ukryj'; $a->strings['Credits'] = 'Zaufany'; $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!'] = 'Friendica to projekt społecznościowy, który nie byłby możliwy bez pomocy wielu osób. Oto lista osób, które przyczyniły się do tworzenia kodu lub tłumaczenia Friendica. Dziękuję wam wszystkim!'; $a->strings['Formatted'] = 'Sformatowany'; $a->strings['Activity'] = 'Aktywność'; $a->strings['Object data'] = 'Dane obiektu'; $a->strings['Result Item'] = 'Pozycja wynikowa'; +$a->strings['Error'] = [ + 0 => 'Błąd', + 1 => 'Błędów', + 2 => 'Błędy', + 3 => 'Błędów', +]; $a->strings['Source activity'] = 'Aktywność źródła'; $a->strings['Source input'] = 'Źródło wejściowe'; $a->strings['BBCode::toPlaintext'] = 'BBCode::na prosty tekst'; @@ -1960,8 +1490,8 @@ $a->strings['No entries (some entries may be hidden).'] = 'Brak odwiedzin (niekt $a->strings['Find on this site'] = 'Znajdź na tej stronie'; $a->strings['Results for:'] = 'Wyniki dla:'; $a->strings['Site Directory'] = 'Katalog Witryny'; -$a->strings['Item was not removed'] = 'Element nie został usunięty'; $a->strings['Item was not deleted'] = 'Element nie został skasowany'; +$a->strings['Item was not removed'] = 'Element nie został usunięty'; $a->strings['- select -'] = '- wybierz -'; $a->strings['Suggested contact not found.'] = 'Nie znaleziono sugerowanego kontaktu.'; $a->strings['Friend suggestion sent.'] = 'Wysłana propozycja dodania do znajomych.'; @@ -1971,31 +1501,12 @@ $a->strings['Installed addons/apps:'] = 'Zainstalowane dodatki/aplikacje:'; $a->strings['No installed addons/apps'] = 'Brak zainstalowanych dodatków/aplikacji'; $a->strings['Read about the Terms of Service of this node.'] = 'Przeczytaj o Warunkach świadczenia usług tego węzła.'; $a->strings['On this server the following remote servers are blocked.'] = 'Na tym serwerze następujące serwery zdalne są blokowane.'; +$a->strings['Reason for the block'] = 'Powód blokowania'; $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.'] = 'To jest wersja Friendica, %s która działa w lokalizacji internetowej %s. Wersja bazy danych to %s wersja po aktualizacji %s.'; $a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Odwiedź stronę Friendi.ca aby dowiedzieć się więcej o projekcie Friendica.'; $a->strings['Bug reports and issues: please visit'] = 'Raporty o błędach i problemy: odwiedź stronę'; $a->strings['the bugtracker at github'] = 'śledzenie błędów na github'; $a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = 'Propozycje, pochwały itd. – napisz e-mail do „info” małpa „friendi” - kropka - „ca”'; -$a->strings['Could not create group.'] = 'Nie można utworzyć grupy.'; -$a->strings['Group not found.'] = 'Nie znaleziono grupy.'; -$a->strings['Group name was not changed.'] = 'Nazwa grupy nie została zmieniona.'; -$a->strings['Unknown group.'] = 'Nieznana grupa.'; -$a->strings['Unable to add the contact to the group.'] = 'Nie można dodać kontaktu do grupy.'; -$a->strings['Contact successfully added to group.'] = 'Kontakt został pomyślnie dodany do grupy.'; -$a->strings['Unable to remove the contact from the group.'] = 'Nie można usunąć kontaktu z grupy.'; -$a->strings['Contact successfully removed from group.'] = 'Kontakt został pomyślnie usunięty z grupy.'; -$a->strings['Bad request.'] = 'Błędne żądanie.'; -$a->strings['Save Group'] = 'Zapisz grupę'; -$a->strings['Filter'] = 'Filtr'; -$a->strings['Create a group of contacts/friends.'] = 'Stwórz grupę znajomych.'; -$a->strings['Unable to remove group.'] = 'Nie można usunąć grupy.'; -$a->strings['Delete Group'] = 'Usuń grupę'; -$a->strings['Edit Group Name'] = 'Edytuj nazwę grupy'; -$a->strings['Members'] = 'Członkowie'; -$a->strings['Group is empty'] = 'Grupa jest pusta'; -$a->strings['Remove contact from group'] = 'Usuń kontakt z grupy'; -$a->strings['Click on a contact to add or remove.'] = 'Kliknij na kontakt w celu dodania lub usunięcia.'; -$a->strings['Add contact to group'] = 'Dodaj kontakt do grupy'; $a->strings['No profile'] = 'Brak profilu'; $a->strings['Method Not Allowed.'] = 'Metoda nie akceptowana.'; $a->strings['Help:'] = 'Pomoc:'; @@ -2005,14 +1516,11 @@ $a->strings['System check'] = 'Sprawdzanie systemu'; $a->strings['Requirement not satisfied'] = 'Wymaganie niespełnione'; $a->strings['Optional requirement not satisfied'] = 'Opcjonalne wymagania niespełnione'; $a->strings['OK'] = 'OK'; +$a->strings['Next'] = 'Następny'; $a->strings['Check again'] = 'Sprawdź ponownie'; $a->strings['Base settings'] = 'Ustawienia bazy'; -$a->strings['Host name'] = 'Nazwa hosta'; -$a->strings['Overwrite this field in case the determinated hostname isn\'t right, otherweise leave it as is.'] = 'Nadpisz to pole w przypadku, gdy określona nazwa hosta nie jest prawidłowa, a pozostałe pozostaw to bez zmian.'; $a->strings['Base path to installation'] = 'Podstawowa ścieżka do instalacji'; $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.'] = 'Jeśli system nie może wykryć poprawnej ścieżki do instalacji, wprowadź tutaj poprawną ścieżkę. To ustawienie powinno być ustawione tylko wtedy, gdy używasz ograniczonego systemu i dowiązań symbolicznych do twojego webroota.'; -$a->strings['Sub path of the URL'] = 'Ścieżka podrzędna adresu URL'; -$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.'] = 'Nadpisz to pole w przypadku, gdy określenie ścieżki podrzędnej nie jest prawidłowe, w przeciwnym razie pozostaw je bez zmian. Pozostawienie tego pola pustego oznacza, że ​​instalacja odbywa się pod podstawowym adresem URL bez podścieżki.'; $a->strings['Database connection'] = 'Połączenie z bazą danych'; $a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych.'; $a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień .'; @@ -2065,10 +1573,196 @@ $a->strings['Visibility'] = 'Widoczność'; $a->strings['Clear the location'] = 'Wyczyść lokalizację'; $a->strings['Location services are unavailable on your device'] = 'Usługi lokalizacyjne są niedostępne na twoim urządzeniu'; $a->strings['Location services are disabled. Please check the website\'s permissions on your device'] = 'Usługi lokalizacyjne są wyłączone. Sprawdź uprawnienia strony internetowej na swoim urządzeniu'; +$a->strings['The feed for this item is unavailable.'] = 'Kanał dla tego elementu jest niedostępny.'; $a->strings['Unable to follow this item.'] = 'Nie można obserwować tego elementu.'; $a->strings['System down for maintenance'] = 'System wyłączony w celu konserwacji'; $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.'] = 'Ten węzeł Friendica jest obecnie w trybie konserwacji, przełączanej automatycznie, ponieważ jest aktualizowany samodzielnie lub ręcznie przez administratora węzła. Ten stan powinien być tymczasowy, proszę wrócić za kilka minut.'; $a->strings['A Decentralized Social Network'] = 'Zdecentralizowana sieć społecznościowa'; +$a->strings['Files'] = 'Pliki'; +$a->strings['Upload'] = 'Wyślij'; +$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Przepraszam, Twój przesyłany plik jest większy niż pozwala konfiguracja PHP'; +$a->strings['Or - did you try to upload an empty file?'] = 'Lub - czy próbowałeś przesłać pusty plik?'; +$a->strings['File exceeds size limit of %s'] = 'Plik przekracza limit rozmiaru wynoszący %s'; +$a->strings['File upload failed.'] = 'Przesyłanie pliku nie powiodło się.'; +$a->strings['Unable to process image.'] = 'Przetwarzanie obrazu nie powiodło się.'; +$a->strings['Image upload failed.'] = 'Przesyłanie obrazu nie powiodło się.'; +$a->strings['List of all users'] = 'Lista wszystkich użytkowników'; +$a->strings['Active'] = 'Aktywne'; +$a->strings['List of active accounts'] = 'Lista aktywnych kont'; +$a->strings['List of pending registrations'] = 'Lista oczekujących rejestracji'; +$a->strings['List of blocked users'] = 'Lista zablokowanych użytkowników'; +$a->strings['Deleted'] = 'Usunięte'; +$a->strings['List of pending user deletions'] = 'Lista oczekujących na usunięcie użytkowników'; +$a->strings['Normal Account Page'] = 'Normalna strona konta'; +$a->strings['Soapbox Page'] = 'Strona Soapbox'; +$a->strings['Automatic Friend Page'] = 'Automatyczna strona znajomego'; +$a->strings['Personal Page'] = 'Strona osobista'; +$a->strings['Organisation Page'] = 'Strona Organizacji'; +$a->strings['News Page'] = 'Strona Wiadomości'; +$a->strings['Relay'] = 'Przekaźnik'; +$a->strings['You can\'t block a local contact, please block the user instead'] = 'Nie możesz zablokować lokalnego kontaktu, zamiast tego zablokuj użytkownika'; +$a->strings['%s contact unblocked'] = [ + 0 => '%s kontakt odblokowany', + 1 => '%s kontakty odblokowane', + 2 => '%s kontaktów odblokowanych', + 3 => '%s kontaktów odblokowanych', +]; +$a->strings['Remote Contact Blocklist'] = 'Lista zablokowanych kontaktów zdalnych'; +$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu zdalnego.'; +$a->strings['Block Remote Contact'] = 'Zablokuj kontakt zdalny'; +$a->strings['select all'] = 'zaznacz wszystko'; +$a->strings['select none'] = 'wybierz brak'; +$a->strings['No remote contact is blocked from this node.'] = 'Z tego węzła nie jest blokowany kontakt zdalny.'; +$a->strings['Blocked Remote Contacts'] = 'Zablokowane kontakty zdalne'; +$a->strings['Block New Remote Contact'] = 'Zablokuj nowy kontakt zdalny'; +$a->strings['Photo'] = 'Zdjęcie'; +$a->strings['Reason'] = 'Powód'; +$a->strings['%s total blocked contact'] = [ + 0 => 'łącznie %s zablokowany kontakt', + 1 => 'łącznie %s zablokowane kontakty', + 2 => 'łącznie %s zablokowanych kontaktów', + 3 => '%s całkowicie zablokowane kontakty', +]; +$a->strings['URL of the remote contact to block.'] = 'Adres URL kontaktu zdalnego do zablokowania.'; +$a->strings['Also purge contact'] = 'Wyczyść również kontakt'; +$a->strings['Removes all content related to this contact from the node. Keeps the contact record. This action cannot be undone.'] = 'Usuwa z węzła całą zawartość związaną z tym kontaktem. Zachowuje rejestr kontaktów. Tej czynności nie można cofnąć.'; +$a->strings['Block Reason'] = 'Powód blokady'; +$a->strings['Server domain pattern added to the blocklist.'] = 'Do listy zablokowanych dodano wzorzec domeny serwera.'; +$a->strings['%s server scheduled to be purged.'] = [ + 0 => '%s serwer zaplanowany do usunięcia.', + 1 => '%s serwery zaplanowane do usunięcia.', + 2 => '%s serwerów zaplanowanych do usunięcia.', + 3 => '%s serwerów zaplanowanych do usunięcia.', +]; +$a->strings['← Return to the list'] = '← Wróć do listy'; +$a->strings['Block A New Server Domain Pattern'] = 'Zablokuj nowy wzorzec domeny serwera'; +$a->strings['

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

    +
      +
    • *: Any number of characters
    • +
    • ?: Any single character
    • +
    '] = '

    Składnia wzorca domeny serwera to symbol wieloznaczny powłoki bez rozróżniania wielkości liter, zawierający następujące znaki specjalne:

    +
      +
    • *: Dowolna liczba znaków
    • +
    • ?: Dowolny pojedynczy znak
    • +
    '; +$a->strings['Check pattern'] = 'Sprawdź wzór'; +$a->strings['Matching known servers'] = 'Dopasowanie znanych serwerów'; +$a->strings['Server Name'] = 'Nazwa serwera'; +$a->strings['Server Domain'] = 'Domena serwera'; +$a->strings['Known Contacts'] = 'Znane kontakty'; +$a->strings['%d known server'] = [ + 0 => '%d znany serwer', + 1 => '%d znane serwery', + 2 => '%d znanych serwerów', + 3 => '%d znanych serwerów', +]; +$a->strings['Add pattern to the blocklist'] = 'Dodaj wzór do listy blokad'; +$a->strings['Server Domain Pattern'] = 'Wzorzec domeny serwera'; +$a->strings['The domain pattern of the new server to add to the blocklist. Do not include the protocol.'] = 'Wzorzec domeny nowego serwera do dodania do listy blokad. Nie dołączaj protokołu.'; +$a->strings['Purge server'] = 'Wyczyść serwer'; +$a->strings['Also purges all the locally stored content authored by the known contacts registered on that server. Keeps the contacts and the server records. This action cannot be undone.'] = [ + 0 => 'Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć.', + 1 => 'Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć.', + 2 => 'Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć.', + 3 => 'Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć.', +]; +$a->strings['Block reason'] = 'Powód zablokowania'; +$a->strings['The reason why you blocked this server domain pattern. This reason will be shown publicly in the server information page.'] = 'Powód, dla którego zablokowałeś ten wzorzec domeny serwera. Powód ten zostanie pokazany publicznie na stronie informacyjnej serwera.'; +$a->strings['Blocked server domain pattern'] = 'Zablokowany wzorzec domeny serwera'; +$a->strings['Delete server domain pattern'] = 'Usuń wzorzec domeny serwera'; +$a->strings['Check to delete this entry from the blocklist'] = 'Zaznacz, aby usunąć ten wpis z listy bloków'; +$a->strings['Server Domain Pattern Blocklist'] = 'Lista bloków wzorców domen serwerów'; +$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.'] = 'Ta strona może służyć do definiowania listy zablokowanych wzorców domen serwera z sieci stowarzyszonej, które nie mogą komunikować się z węzłem. Dla każdego wzorca domeny należy również podać powód, dla którego go blokujesz.'; +$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.'] = 'Lista zablokowanych wzorców domen serwera zostanie udostępniona publicznie na stronie /friendica, aby użytkownicy i osoby badające problemy z komunikacją mogły łatwo znaleźć przyczynę.'; +$a->strings['Add new entry to the blocklist'] = 'Dodaj nowy wpis do listy zablokowanych'; +$a->strings['Save changes to the blocklist'] = 'Zapisz zmiany w liście zablokowanych'; +$a->strings['Current Entries in the Blocklist'] = 'Aktualne wpisy na liście zablokowanych'; +$a->strings['Delete entry from the blocklist'] = 'Usuń wpis z listy zablokowanych'; +$a->strings['Delete entry from the blocklist?'] = 'Usunąć wpis z listy zablokowanych?'; +$a->strings['Item marked for deletion.'] = 'Przedmiot oznaczony do usunięcia.'; +$a->strings['Delete this Item'] = 'Usuń ten przedmiot'; +$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.'] = 'Na tej stronie możesz usunąć przedmiot ze swojego węzła. Jeśli element jest publikowaniem na najwyższym poziomie, cały wątek zostanie usunięty.'; +$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.'] = 'Musisz znać identyfikator GUID tego przedmiotu. Możesz go znaleźć np. patrząc na wyświetlany adres URL. Ostatnia część http://example.com/display/123456 to GUID, tutaj 123456.'; +$a->strings['GUID'] = 'GUID'; +$a->strings['The GUID of the item you want to delete.'] = 'Identyfikator elementu GUID, który chcesz usunąć.'; +$a->strings['Item Id'] = 'Identyfikator elementu'; +$a->strings['Item URI'] = 'Identyfikator URI elementu'; +$a->strings['Terms'] = 'Zasady'; +$a->strings['Tag'] = 'Znacznik'; +$a->strings['Type'] = 'Typu'; +$a->strings['Term'] = 'Zasada'; +$a->strings['URL'] = 'URL'; +$a->strings['Mention'] = 'Wzmianka'; +$a->strings['Implicit Mention'] = 'Wzmianka niejawna'; +$a->strings['Item not found'] = 'Nie znaleziono elementu'; +$a->strings['Item Guid'] = 'Element Guid'; +$a->strings['Normal Account'] = 'Konto normalne'; +$a->strings['Automatic Follower Account'] = 'Automatyczne konto obserwatora'; +$a->strings['Automatic Friend Account'] = 'Automatyczny przyjaciel konta'; +$a->strings['Blog Account'] = 'Konto bloga'; +$a->strings['Registered users'] = 'Zarejestrowani użytkownicy'; +$a->strings['Pending registrations'] = 'Oczekujące rejestracje'; +$a->strings['%s user blocked'] = [ + 0 => '%s użytkownik zablokowany', + 1 => '%s użytkowników zablokowanych', + 2 => '%s użytkowników zablokowanych', + 3 => '%s użytkownicy zablokowani', +]; +$a->strings['You can\'t remove yourself'] = 'Nie możesz usunąć siebie'; +$a->strings['%s user deleted'] = [ + 0 => 'usunięto %s użytkownika', + 1 => 'usunięto %s użytkowników', + 2 => 'usunięto %s użytkowników', + 3 => '%s usuniętych użytkowników', +]; +$a->strings['User "%s" deleted'] = 'Użytkownik "%s" usunięty'; +$a->strings['User "%s" blocked'] = 'Użytkownik "%s" zablokowany'; +$a->strings['Register date'] = 'Data rejestracji'; +$a->strings['Last login'] = 'Ostatnie logowanie'; +$a->strings['Last public item'] = 'Ostatni element publiczny'; +$a->strings['Active Accounts'] = 'Aktywne konta'; +$a->strings['User blocked'] = 'Użytkownik zablokowany'; +$a->strings['Site admin'] = 'Administracja stroną'; +$a->strings['Account expired'] = 'Konto wygasło'; +$a->strings['Create a new user'] = 'Utwórz nowego użytkownika'; +$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Zaznaczeni użytkownicy zostaną usunięci!\n\n Wszystko co zamieścili na tej stronie będzie trwale skasowane!\n\n Jesteś pewien?'; +$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Użytkownik {0} zostanie usunięty!\n\n Wszystko co zamieścił na tej stronie będzie trwale skasowane!\n\n Jesteś pewien?'; +$a->strings['%s user unblocked'] = [ + 0 => '%s użytkownik odblokowany', + 1 => '%s użytkowników odblokowanych', + 2 => '%s użytkowników odblokowanych', + 3 => '%s użytkowników odblokowanych', +]; +$a->strings['User "%s" unblocked'] = 'Użytkownik "%s" odblokowany'; +$a->strings['Blocked Users'] = 'Zablokowani użytkownicy'; +$a->strings['New User'] = 'Nowy użytkownik'; +$a->strings['Add User'] = 'Dodaj użytkownika'; +$a->strings['Name of the new user.'] = 'Nazwa nowego użytkownika.'; +$a->strings['Nickname'] = 'Pseudonim'; +$a->strings['Nickname of the new user.'] = 'Pseudonim nowego użytkownika.'; +$a->strings['Email address of the new user.'] = 'Adres email nowego użytkownika.'; +$a->strings['Users awaiting permanent deletion'] = 'Użytkownicy oczekujący na trwałe usunięcie'; +$a->strings['Permanent deletion'] = 'Trwałe usunięcie'; +$a->strings['User waiting for permanent deletion'] = 'Użytkownik czekający na trwałe usunięcie'; +$a->strings['%s user approved'] = [ + 0 => '%s użytkownik zatwierdzony', + 1 => '%s użytkowników zatwierdzonych', + 2 => '%s użytkowników zatwierdzonych', + 3 => '%s użytkowników zatwierdzonych', +]; +$a->strings['%s registration revoked'] = [ + 0 => '%s rejestrację cofnięto', + 1 => '%s rejestracje cofnięto', + 2 => '%s rejestracji cofnięto', + 3 => '%s rejestracji cofnięto ', +]; +$a->strings['Account approved.'] = 'Konto zatwierdzone.'; +$a->strings['Registration revoked'] = 'Rejestracja odwołana'; +$a->strings['User registrations awaiting review'] = 'Rejestracje użytkowników oczekujące na sprawdzenie'; +$a->strings['Request date'] = 'Data prośby'; +$a->strings['No registrations.'] = 'Brak rejestracji.'; +$a->strings['Note from the user'] = 'Uwaga od użytkownika'; +$a->strings['Deny'] = 'Odmów'; $a->strings['Show Ignored Requests'] = 'Pokaż ignorowane żądania'; $a->strings['Hide Ignored Requests'] = 'Ukryj zignorowane prośby'; $a->strings['Notification type:'] = 'Typ powiadomienia:'; @@ -2096,6 +1790,20 @@ $a->strings['Unsupported or missing response type'] = 'Nieobsługiwany lub braku $a->strings['Incomplete request data'] = 'Niekompletne dane żądania'; $a->strings['Please copy the following authentication code into your application and close this window: %s'] = 'Skopiuj następujący kod uwierzytelniający do swojej aplikacji i zamknij to okno: %s'; $a->strings['Unsupported or missing grant type'] = 'Nieobsługiwany lub brakujący typ dotacji'; +$a->strings['Resubscribing to OStatus contacts'] = 'Ponowne subskrybowanie kontaktów OStatus'; +$a->strings['Keep this window open until done.'] = 'Pozostaw to okno otwarte, dopóki nie będzie gotowe.'; +$a->strings['✔ Done'] = '✔ Gotowe'; +$a->strings['Subscribing to contacts'] = 'Subskrybowanie kontaktów'; +$a->strings['No contact provided.'] = 'Brak kontaktu.'; +$a->strings['Couldn\'t fetch information for contact.'] = 'Nie można pobrać informacji o kontakcie.'; +$a->strings['Couldn\'t fetch friends for contact.'] = 'Nie można pobrać znajomych do kontaktu.'; +$a->strings['Couldn\'t fetch following contacts.'] = 'Nie udało się pobrać następujących kontaktów.'; +$a->strings['Couldn\'t fetch remote profile.'] = 'Nie można pobrać profilu zdalnego.'; +$a->strings['Unsupported network'] = 'Sieć nieobsługiwana'; +$a->strings['Done'] = 'Gotowe'; +$a->strings['success'] = 'powodzenie'; +$a->strings['failed'] = 'nie powiodło się'; +$a->strings['ignored'] = 'ignorowany(-a)'; $a->strings['Wrong type "%s", expected one of: %s'] = 'Nieprawidłowy typ „%s”, oczekiwano jednego z:%s'; $a->strings['Model not found'] = 'Nie znaleziono modelu'; $a->strings['Unlisted'] = 'Niekatalogowany'; @@ -2111,7 +1819,26 @@ $a->strings['The Photo is not available.'] = 'Zdjęcie jest niedostępne.'; $a->strings['The Photo with id %s is not available.'] = 'Zdjęcie z identyfikatorem %s nie jest dostępne.'; $a->strings['Invalid external resource with url %s.'] = 'Nieprawidłowy zasób zewnętrzny z adresem URL %s.'; $a->strings['Invalid photo with id %s.'] = 'Nieprawidłowe zdjęcie z identyfikatorem %s.'; +$a->strings['Post not found.'] = 'Nie znaleziono wpisu.'; +$a->strings['Edit post'] = 'Edytuj wpis'; +$a->strings['web link'] = 'link'; +$a->strings['Insert video link'] = 'Wstaw link do filmu'; +$a->strings['video link'] = 'link do filmu'; +$a->strings['Insert audio link'] = 'Wstaw link do audio'; +$a->strings['audio link'] = 'link do audio'; +$a->strings['Remove Item Tag'] = 'Usuń pozycję znacznika'; +$a->strings['Select a tag to remove: '] = 'Wybierz znacznik do usunięcia: '; +$a->strings['Remove'] = 'Usuń'; $a->strings['No contacts.'] = 'Brak kontaktów.'; +$a->strings['%s\'s timeline'] = 'oś czasu %s'; +$a->strings['%s\'s posts'] = 'wpisy %s'; +$a->strings['%s\'s comments'] = 'komentarze %s'; +$a->strings['Image exceeds size limit of %s'] = 'Obraz przekracza limit rozmiaru wynoszący %s'; +$a->strings['Image upload didn\'t complete, please try again'] = 'Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie'; +$a->strings['Image file is missing'] = 'Brak pliku obrazu'; +$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem'; +$a->strings['Image file is empty.'] = 'Plik obrazka jest pusty.'; +$a->strings['View Album'] = 'Zobacz album'; $a->strings['Profile not found.'] = 'Nie znaleziono profilu.'; $a->strings['You\'re currently viewing your profile as %s Cancel'] = 'Obecnie przeglądasz swój profil jako %s Anuluj'; $a->strings['Full Name:'] = 'Imię i nazwisko:'; @@ -2126,16 +1853,30 @@ $a->strings['%d year old'] = [ 2 => '%d lat', 3 => '%d lat', ]; -$a->strings['Forums:'] = 'Fora:'; +$a->strings['Description:'] = 'Opis:'; $a->strings['View profile as:'] = 'Wyświetl profil jako:'; $a->strings['View as'] = 'Zobacz jako'; -$a->strings['%s\'s timeline'] = 'oś czasu %s'; -$a->strings['%s\'s posts'] = 'wpisy %s'; -$a->strings['%s\'s comments'] = 'komentarze %s'; +$a->strings['Profile unavailable.'] = 'Profil niedostępny.'; +$a->strings['Invalid locator'] = 'Nieprawidłowy lokalizator'; +$a->strings['The provided profile link doesn\'t seem to be valid'] = 'Podany link profilu wydaje się być nieprawidłowy'; +$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie.'; +$a->strings['Friend/Connection Request'] = 'Przyjaciel/Prośba o połączenie'; +$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.'] = 'Wpisz tutaj swój adres Webfinger (user@domain.tld) lub adres URL profilu. Jeśli nie jest to obsługiwane przez system, musisz subskrybować %s lub %s bezpośrednio w systemie.'; +$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.'] = 'Jeśli nie jesteś jeszcze członkiem darmowej sieci społecznościowej, kliknij ten odnośnik, aby znaleźć publiczny węzeł Friendica i dołącz do nas już dziś.'; +$a->strings['Your Webfinger address or profile URL:'] = 'Twój adres lub adres URL profilu Webfinger:'; +$a->strings['Restricted profile'] = 'Ograniczony profil'; $a->strings['Scheduled'] = 'Zaplanowane'; $a->strings['Content'] = 'Zawartość'; $a->strings['Remove post'] = 'Usuń wpis'; +$a->strings['Unable to check your home location.'] = 'Nie można sprawdzić twojej lokalizacji.'; +$a->strings['Recipient not found.'] = 'Nie znaleziono odbiorcy.'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Dzienny limit wiadomości na tablicy %s został przekroczony. Wiadomość została odrzucona.'; +$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców.'; +$a->strings['To'] = 'Do'; +$a->strings['Subject'] = 'Temat'; +$a->strings['Your message'] = 'Twoja wiadomość'; $a->strings['Only parent users can create additional accounts.'] = 'Tylko użytkownicy nadrzędni mogą tworzyć dodatkowe konta.'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro.'; $a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking "Register".'] = 'Możesz (opcjonalnie) wypełnić ten formularz za pośrednictwem OpenID, podając swój OpenID i klikając "Register".'; $a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów.'; $a->strings['Your OpenID (optional): '] = 'Twój OpenID (opcjonalnie): '; @@ -2152,6 +1893,7 @@ $a->strings['Leave empty for an auto generated password.'] = 'Pozostaw puste dla $a->strings['Confirm:'] = 'Potwierdź:'; $a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be "nickname@%s".'] = 'Wybierz pseudonim profilu. Musi zaczynać się od znaku tekstowego. Twój adres profilu na tej stronie to "nickname@%s".'; $a->strings['Choose a nickname: '] = 'Wybierz pseudonim: '; +$a->strings['Import'] = 'Import'; $a->strings['Import your profile to this friendica instance'] = 'Zaimportuj swój profil do tej instancji friendica'; $a->strings['Note: This node explicitly contains adult content'] = 'Uwaga: Ten węzeł jawnie zawiera treści dla dorosłych'; $a->strings['Parent Password:'] = 'Hasło nadrzędne:'; @@ -2166,15 +1908,9 @@ $a->strings['Failed to send email message. Here your accout details:
    login: $a->strings['Registration successful.'] = 'Rejestracja udana.'; $a->strings['Your registration can not be processed.'] = 'Nie można przetworzyć Twojej rejestracji.'; $a->strings['You have to leave a request note for the admin.'] = 'Musisz zostawić notatkę z prośbą do administratora.'; +$a->strings['An internal error occured.'] = 'Wystąpił błąd wewnętrzny.'; $a->strings['Your registration is pending approval by the site owner.'] = 'Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny.'; -$a->strings['Profile unavailable.'] = 'Profil niedostępny.'; -$a->strings['Invalid locator'] = 'Nieprawidłowy lokalizator'; -$a->strings['The provided profile link doesn\'t seem to be valid'] = 'Podany link profilu wydaje się być nieprawidłowy'; -$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie.'; -$a->strings['Friend/Connection Request'] = 'Przyjaciel/Prośba o połączenie'; -$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.'] = 'Wpisz tutaj swój adres Webfinger (user@domain.tld) lub adres URL profilu. Jeśli nie jest to obsługiwane przez system, musisz subskrybować %s lub %s bezpośrednio w systemie.'; -$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.'] = 'Jeśli nie jesteś jeszcze członkiem darmowej sieci społecznościowej, kliknij ten odnośnik, aby znaleźć publiczny węzeł Friendica i dołącz do nas już dziś.'; -$a->strings['Your Webfinger address or profile URL:'] = 'Twój adres lub adres URL profilu Webfinger:'; +$a->strings['You must be logged in to use this module.'] = 'Musisz być zalogowany, aby korzystać z tego modułu.'; $a->strings['Only logged in users are permitted to perform a search.'] = 'Tylko zalogowani użytkownicy mogą wyszukiwać.'; $a->strings['Only one search per minute is permitted for not logged in users.'] = 'Dla niezalogowanych użytkowników dozwolone jest tylko jedno wyszukiwanie na minutę.'; $a->strings['Items tagged with: %s'] = 'Elementy oznaczone znacznikiem: %s'; @@ -2196,6 +1932,12 @@ $a->strings['Logged out.'] = 'Wylogowano.'; $a->strings['OpenID protocol error. No ID returned'] = 'Błąd protokołu OpenID. Nie zwrócono identyfikatora'; $a->strings['Account not found. Please login to your existing account to add the OpenID to it.'] = 'Konto nie znalezione. Zaloguj się do swojego istniejącego konta, aby dodać do niego OpenID.'; $a->strings['Account not found. Please register a new account or login to your existing account to add the OpenID to it.'] = 'Konto nie znalezione. Zarejestruj nowe konto lub zaloguj się na istniejące konto, aby dodać do niego OpenID.'; +$a->strings['Passwords do not match.'] = 'Hasła nie pasują do siebie.'; +$a->strings['Password does not need changing.'] = 'Hasło nie wymaga zmiany.'; +$a->strings['Password unchanged.'] = 'Hasło niezmienione.'; +$a->strings['Password Too Long'] = 'Hasło za długie'; +$a->strings['Current Password:'] = 'Aktualne hasło:'; +$a->strings['Your current password to confirm the changes'] = 'Wpisz aktualne hasło, aby potwierdzić zmiany'; $a->strings['Remaining recovery codes: %d'] = 'Pozostałe kody odzyskiwania: %d'; $a->strings['Invalid code, please retry.'] = 'Nieprawidłowy kod, spróbuj ponownie.'; $a->strings['Two-factor recovery'] = 'Odzyskiwanie dwuczynnikowe'; @@ -2212,13 +1954,11 @@ $a->strings['Trust this browser?'] = 'Ufać tej przeglądarce?'; $a->strings['

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

    '] = '

    Jeśli zdecydujesz się zaufać tej przeglądarce, przy następnym logowaniu nie zostaniesz poproszony o podanie kodu weryfikacyjnego.

    '; $a->strings['Not now'] = 'Nie teraz'; $a->strings['Don\'t trust'] = 'Nie ufaj'; -$a->strings['Trust'] = 'Truj'; +$a->strings['Trust'] = 'Ufaj'; $a->strings['

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

    '] = '

    Otwórz aplikację uwierzytelniania dwuskładnikowego na swoim urządzeniu, aby uzyskać kod uwierzytelniający i zweryfikować swoją tożsamość.

    '; $a->strings['If you do not have access to your authentication code you can use a two-factor recovery code.'] = 'Jeśli nie masz dostępu do swojego kodu uwierzytelniającego, możesz użyć dwuskładnikowego kodu odzyskiwania.'; $a->strings['Please enter a code from your authentication app'] = 'Wprowadź kod z aplikacji uwierzytelniającej'; $a->strings['Verify code and complete login'] = 'Zweryfikuj kod i zakończ logowanie'; -$a->strings['Passwords do not match.'] = 'Hasła nie pasują do siebie.'; -$a->strings['Password unchanged.'] = 'Hasło niezmienione.'; $a->strings['Please use a shorter name.'] = 'Użyj krótszej nazwy.'; $a->strings['Name too short.'] = 'Nazwa jest za krótka. '; $a->strings['Wrong Password.'] = 'Nieprawidłowe hasło.'; @@ -2230,7 +1970,6 @@ $a->strings['Importing Contacts done'] = 'Importowanie kontaktów zakończone'; $a->strings['Relocate message has been send to your contacts'] = 'Przeniesienie wiadomości zostało wysłane do Twoich kontaktów'; $a->strings['Unable to find your profile. Please contact your admin.'] = 'Nie można znaleźć Twojego profilu. Skontaktuj się z administratorem.'; $a->strings['Personal Page Subtypes'] = 'Podtypy osobistych stron'; -$a->strings['Community Forum Subtypes'] = 'Podtypy społeczności forum'; $a->strings['Account for a personal profile.'] = 'Konto dla profilu osobistego.'; $a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'Konto dla organizacji, która automatycznie zatwierdza prośby o kontakt jako "Obserwatorzy".'; $a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'Konto dla reflektora wiadomości, który automatycznie zatwierdza prośby o kontakt jako "Obserwatorzy".'; @@ -2239,7 +1978,6 @@ $a->strings['Account for a regular personal profile that requires manual approva $a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'Konto dla profilu publicznego, który automatycznie zatwierdza prośby o kontakt jako "Obserwatorzy".'; $a->strings['Automatically approves all contact requests.'] = 'Automatycznie zatwierdza wszystkie prośby o kontakt.'; $a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'Konto popularnego profilu, które automatycznie zatwierdza prośby o kontakt jako "Przyjaciele".'; -$a->strings['Private Forum [Experimental]'] = 'Prywatne Forum [Eksperymentalne]'; $a->strings['Requires manual approval of contact requests.'] = 'Wymaga ręcznego zatwierdzania żądań kontaktów.'; $a->strings['OpenID:'] = 'OpenID:'; $a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Opcjonalnie) Pozwól zalogować się na to konto przy pomocy OpenID.'; @@ -2249,14 +1987,12 @@ $a->strings['Your profile will also be published in the global friendica directo $a->strings['Account Settings'] = 'Ustawienia konta'; $a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'Twój adres tożsamości to \'%s\' lub \'%s\'.'; $a->strings['Password Settings'] = 'Ustawienia hasła'; -$a->strings['Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).'] = 'Dozwolone znaki to a-z, A-Z, 0-9 i znaki specjalne, z wyjątkiem białych znaków, podkreślonych liter i dwukropka (:).'; $a->strings['Leave password fields blank unless changing'] = 'Pozostaw pole hasła puste, jeżeli nie chcesz go zmienić.'; -$a->strings['Current Password:'] = 'Aktualne hasło:'; -$a->strings['Your current password to confirm the changes'] = 'Wpisz aktualne hasło, aby potwierdzić zmiany'; $a->strings['Password:'] = 'Hasło:'; $a->strings['Your current password to confirm the changes of the email address'] = 'Twoje obecne hasło, aby potwierdzić zmiany adresu e-mail'; $a->strings['Delete OpenID URL'] = 'Usuń adres URL OpenID'; $a->strings['Basic Settings'] = 'Ustawienia podstawowe'; +$a->strings['Display name:'] = 'Nazwa wyświetlana:'; $a->strings['Email Address:'] = 'Adres email:'; $a->strings['Your Timezone:'] = 'Twoja strefa czasowa:'; $a->strings['Your Language:'] = 'Twój język:'; @@ -2270,8 +2006,6 @@ $a->strings['Allow your profile to be searchable globally?'] = 'Czy Twój profil $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.'] = 'Aktywuj to ustawienie, jeśli chcesz, aby inni mogli Cię łatwo znaleźć i śledzić. Twój profil będzie można przeszukiwać na zdalnych systemach. To ustawienie określa również, czy Friendica poinformuje wyszukiwarki, że Twój profil powinien być indeksowany, czy nie.'; $a->strings['Hide your contact/friend list from viewers of your profile?'] = 'Ukryć listę kontaktów/znajomych przed osobami przeglądającymi Twój profil?'; $a->strings['A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list.'] = 'Lista kontaktów jest wyświetlana na stronie profilu. Aktywuj tę opcję, aby wyłączyć wyświetlanie listy kontaktów.'; -$a->strings['Hide your profile details from anonymous viewers?'] = 'Ukryć dane Twojego profilu przed anonimowymi widzami?'; -$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.'] = 'Anonimowi użytkownicy zobaczą tylko Twoje zdjęcie profilowe, swoją wyświetlaną nazwę i pseudonim, którego używasz na stronie profilu. Twoje publiczne posty i odpowiedzi będą nadal dostępne w inny sposób.'; $a->strings['Make public posts unlisted'] = 'Ustaw publiczne wpisy jako niepubliczne'; $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.'] = 'Twoje publiczne posty nie będą wyświetlane na stronach społeczności ani w wynikach wyszukiwania ani nie będą wysyłane do serwerów przekazywania. Jednak nadal mogą one pojawiać się w publicznych kanałach na serwerach zdalnych.'; $a->strings['Make all posted pictures accessible'] = 'Udostępnij wszystkie opublikowane zdjęcia'; @@ -2304,7 +2038,6 @@ $a->strings['Someone writes a followup comment'] = 'Ktoś pisze komentarz nawią $a->strings['You receive a private message'] = 'Otrzymałeś prywatną wiadomość'; $a->strings['You receive a friend suggestion'] = 'Otrzymałeś propozycję od znajomych'; $a->strings['You are tagged in a post'] = 'Jesteś oznaczony znacznikiem we wpisie'; -$a->strings['You are poked/prodded/etc. in a post'] = 'Jesteś zaczepiony/zaczepiona/itp. w poście'; $a->strings['Create a desktop notification when:'] = 'Utwórz powiadomienia na pulpicie gdy:'; $a->strings['Someone tagged you'] = 'Ktoś Cię oznaczył'; $a->strings['Someone directly commented on your post'] = 'Ktoś bezpośrednio skomentował Twój wpis'; @@ -2330,6 +2063,43 @@ $a->strings['Upload File'] = 'Prześlij plik'; $a->strings['Relocate'] = 'Przeniesienie'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Jeśli ten profil został przeniesiony z innego serwera, a niektóre z Twoich kontaktów nie otrzymają aktualizacji, spróbuj nacisnąć ten przycisk.'; $a->strings['Resend relocate message to contacts'] = 'Wyślij ponownie przenieść wiadomości do kontaktów'; +$a->strings['Addon Settings'] = 'Ustawienia dodatków'; +$a->strings['No Addon settings configured'] = 'Brak skonfigurowanych ustawień dodatków'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'Połączenie z kontem email używając wybranych ustawień nie powiodło się.'; +$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; +$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; +$a->strings['Email access is disabled on this site.'] = 'Dostęp do e-maila jest wyłączony na tej stronie.'; +$a->strings['None'] = 'Brak'; +$a->strings['General Social Media Settings'] = 'Ogólne ustawienia mediów społecznościowych'; +$a->strings['Followed content scope'] = 'Obserwowany zakres treści'; +$a->strings['By default, conversations in which your follows participated but didn\'t start will be shown in your timeline. You can turn this behavior off, or expand it to the conversations in which your follows liked a post.'] = 'Domyślnie na Twojej osi czasu będą pokazywane wątki, w których uczestniczyli Twoi obserwowani, ale które nie zostały przez nich rozpoczęte. Możesz wyłączyć tę funkcję lub rozszerzyć ją na konwersacje, w których Twoi obserwujący polubili dany wpis.'; +$a->strings['Only conversations my follows started'] = 'Tylko rozmowy, które rozpoczęli moi obserwowani'; +$a->strings['Conversations my follows started or commented on (default)'] = 'Rozmowy, które rozpoczęli moi obserwowani, lub które komentowali (domyślnie)'; +$a->strings['Any conversation my follows interacted with, including likes'] = 'Wszelkie rozmowy, z którymi wchodziłem w interakcję, w tym polubienia'; +$a->strings['Enable Content Warning'] = 'Włącz ostrzeżenia o treści'; +$a->strings['Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.'] = 'Użytkownicy w sieciach takich jak Mastodon lub Pleroma mogą ustawić pole ostrzeżenia o treści, które domyślnie zwija ich posty. Umożliwia to automatyczne zwijanie zamiast ustawiania ostrzeżenia o treści jako tytułu wpisu. Nie wpływa na żadne inne skonfigurowane filtrowanie treści.'; +$a->strings['Enable intelligent shortening'] = 'Włącz inteligentne skracanie'; +$a->strings['Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.'] = 'Zwykle system próbuje znaleźć najlepszy odnośnik do dodania do skróconych postów. Jeśli wyłączone, każdy skrócony wpis będzie zawsze wskazywał na oryginalny wpis friendica.'; +$a->strings['Enable simple text shortening'] = 'Włącz proste skracanie tekstu'; +$a->strings['Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'] = 'Zwykle system skraca wpisy przy następnym wysunięciu wiersza. Jeśli ta opcja jest włączona, system skróci tekst do maksymalnego limitu znaków.'; +$a->strings['Attach the link title'] = 'Dołącz tytuł linku'; +$a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'Po aktywacji tytuł dołączonego linku zostanie dodany jako tytuł postów do Diaspory. Jest to szczególnie pomocne w przypadku kontaktów „zdalnych”, które udostępniają treść kanału.'; +$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Twoje stare konto ActivityPub/GNU Social'; +$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Jeśli wprowadzisz tutaj swoją starą nazwę konta z systemu opartego na ActivityPub lub nazwę konta GNU Social/Statusnet (w formacie użytkownik@domena.tld), Twoje kontakty zostaną dodane automatycznie. Po zakończeniu pole zostanie opróżnione.'; +$a->strings['Repair OStatus subscriptions'] = 'Napraw subskrypcje OStatus'; +$a->strings['Email/Mailbox Setup'] = 'Ustawienia emaila/skrzynki mailowej'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową.'; +$a->strings['Last successful email check:'] = 'Ostatni sprawdzony e-mail:'; +$a->strings['IMAP server name:'] = 'Nazwa serwera IMAP:'; +$a->strings['IMAP port:'] = 'Port IMAP:'; +$a->strings['Security:'] = 'Bezpieczeństwo:'; +$a->strings['Email login name:'] = 'Nazwa logowania e-mail:'; +$a->strings['Email password:'] = 'Hasło e-mail:'; +$a->strings['Reply-to address:'] = 'Adres zwrotny:'; +$a->strings['Send public posts to all email contacts:'] = 'Wyślij publiczny wpis do wszystkich kontaktów e-mail:'; +$a->strings['Action after import:'] = 'Akcja po zaimportowaniu:'; +$a->strings['Move to folder'] = 'Przenieś do katalogu'; +$a->strings['Move to folder:'] = 'Przenieś do katalogu:'; $a->strings['Delegation successfully granted.'] = 'Delegacja została pomyślnie przyznana.'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'Nie znaleziono użytkownika nadrzędnego, jest on niedostępny lub hasło nie pasuje.'; $a->strings['Delegation successfully revoked.'] = 'Delegacja została pomyślnie odwołana.'; @@ -2354,7 +2124,6 @@ $a->strings['General Theme Settings'] = 'Ogólne ustawienia motywu'; $a->strings['Custom Theme Settings'] = 'Niestandardowe ustawienia motywów'; $a->strings['Content Settings'] = 'Ustawienia zawartości'; $a->strings['Theme settings'] = 'Ustawienia motywu'; -$a->strings['Calendar'] = 'Kalendarz'; $a->strings['Display Theme:'] = 'Wyświetl motyw:'; $a->strings['Mobile Theme:'] = 'Motyw dla urządzeń mobilnych:'; $a->strings['Number of items to display per page:'] = 'Liczba elementów do wyświetlenia na stronie:'; @@ -2362,8 +2131,6 @@ $a->strings['Maximum of 100 items'] = 'Maksymalnie 100 elementów'; $a->strings['Number of items to display per page when viewed from mobile device:'] = 'Liczba elementów do wyświetlenia na stronie podczas przeglądania z urządzenia mobilnego:'; $a->strings['Update browser every xx seconds'] = 'Odświeżaj stronę co xx sekund'; $a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Minimum 10 sekund. Wprowadź -1, aby go wyłączyć.'; -$a->strings['Automatic updates only at the top of the post stream pages'] = 'Automatyczne aktualizacje tylko w górnej części stron strumienia postu'; -$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.'] = 'Automatyczna aktualizacja może dodawać nowe wpisy na górze stron strumienia wpisów, co może wpływać na pozycję przewijania i zakłócać normalne czytanie, jeśli dzieje się ono w innym miejscu na górze strony.'; $a->strings['Display emoticons'] = 'Wyświetl emotikony'; $a->strings['When enabled, emoticons are replaced with matching symbols.'] = 'Po włączeniu emotikony są zastępowane pasującymi symbolami.'; $a->strings['Infinite scroll'] = 'Nieskończone przewijanie'; @@ -2377,7 +2144,9 @@ $a->strings['Display the first resharer as icon and text on a reshared item.'] = $a->strings['Stay local'] = 'Pozostań lokalny'; $a->strings['Don\'t go to a remote system when following a contact link.'] = 'Nie przechodź do zdalnego systemu podczas korzystania z łącza kontaktowego.'; $a->strings['Beginning of week:'] = 'Początek tygodnia:'; -$a->strings['Profile Name is required.'] = 'Nazwa profilu jest wymagana.'; +$a->strings['Additional Features'] = 'Dodatkowe funkcje'; +$a->strings['Connected Apps'] = 'Powiązane aplikacje'; +$a->strings['Remove authorization'] = 'Odwołaj upoważnienie'; $a->strings['Profile couldn\'t be updated.'] = 'Profil nie mógł zostać zaktualizowany.'; $a->strings['Label:'] = 'Etykieta:'; $a->strings['Value:'] = 'Wartość:'; @@ -2392,7 +2161,6 @@ $a->strings['Location'] = 'Lokalizacja'; $a->strings['Miscellaneous'] = 'Różne'; $a->strings['Custom Profile Fields'] = 'Niestandardowe pola profilu'; $a->strings['Upload Profile Photo'] = 'Wyślij zdjęcie profilowe'; -$a->strings['Display name:'] = 'Nazwa wyświetlana:'; $a->strings['Street Address:'] = 'Ulica:'; $a->strings['Locality/City:'] = 'Miasto:'; $a->strings['Region/State:'] = 'Województwo/Stan:'; @@ -2407,15 +2175,6 @@ $a->strings['Public Keywords:'] = 'Publiczne słowa kluczowe:'; $a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)'; $a->strings['Private Keywords:'] = 'Prywatne słowa kluczowe:'; $a->strings['(Used for searching profiles, never shown to others)'] = '(Używany do wyszukiwania profili, niepokazywany innym)'; -$a->strings['

    Custom fields appear on your profile page.

    -

    You can use BBCodes in the field values.

    -

    Reorder by dragging the field title.

    -

    Empty the label field to remove a custom field.

    -

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

    '] = '

    Pola niestandardowe pojawiają się na stronie Twojego profilu.

    -

    Możesz użyć BBCodes w wartościach pól.

    -

    Zmieniaj kolejność, przeciągając tytuł pola.

    -

    Opróżnij pole etykiety, aby usunąć pole niestandardowe.

    -

    Pola niepubliczne mogą być widoczne tylko dla wybranych kontaktów Friendica lub kontaktów Friendica w wybranych grupach.

    '; $a->strings['Image size reduction [%s] failed.'] = 'Redukcja rozmiaru obrazka [%s] nie powiodła się.'; $a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Ponownie załaduj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie nie pojawi się natychmiast.'; $a->strings['Unable to process image'] = 'Nie udało się przetworzyć obrazu'; @@ -2432,6 +2191,13 @@ $a->strings['Upload Picture:'] = 'Załaduj zdjęcie:'; $a->strings['or'] = 'lub'; $a->strings['skip this step'] = 'pomiń ten krok'; $a->strings['select a photo from your photo albums'] = 'wybierz zdjęcie z twojego albumu'; +$a->strings['[Friendica System Notify]'] = '[Powiadomienie Systemu Friendica]'; +$a->strings['User deleted their account'] = 'Użytkownik usunął swoje konto'; +$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych.'; +$a->strings['The user id is %d'] = 'Identyfikatorem użytkownika jest %d'; +$a->strings['Remove My Account'] = 'Usuń moje konto'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć.'; +$a->strings['Please enter your password for verification:'] = 'Wprowadź hasło w celu weryfikacji:'; $a->strings['Please enter your password to access this page.'] = 'Wprowadź hasło, aby uzyskać dostęp do tej strony.'; $a->strings['App-specific password generation failed: The description is empty.'] = 'Generowanie hasła aplikacji nie powiodło się: Opis jest pusty.'; $a->strings['App-specific password generation failed: This description already exists.'] = 'Generowanie hasła aplikacji nie powiodło się: Opis ten już istnieje.'; @@ -2530,8 +2296,27 @@ $a->strings['Stack trace:'] = 'Ślad stosu:'; $a->strings['Exception thrown in %s:%d'] = 'Zgłoszono wyjątek %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.'] = 'W momencie rejestracji oraz w celu zapewnienia komunikacji między kontem użytkownika, a jego kontaktami, użytkownik musi podać nazwę wyświetlaną (pseudonim), nazwę użytkownika (przydomek) i działający adres e-mail. Nazwy będą dostępne na stronie profilu konta dla każdego odwiedzającego stronę, nawet jeśli inne szczegóły profilu nie zostaną wyświetlone. Adres e-mail będzie używany tylko do wysyłania powiadomień użytkownika o interakcjach, ale nie będzie wyświetlany w widoczny sposób. Lista kont w katalogu użytkownika węzła lub globalnym katalogu użytkownika jest opcjonalna i może być kontrolowana w ustawieniach użytkownika, nie jest konieczna do komunikacji.'; $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.'] = 'Te dane są wymagane do komunikacji i są przekazywane do węzłów partnerów komunikacyjnych i są tam przechowywane. Użytkownicy mogą wprowadzać dodatkowe prywatne dane, które mogą być przesyłane na konta partnerów komunikacyjnych.'; -$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.'] = 'W dowolnym momencie zalogowany użytkownik może wyeksportować dane swojego konta z ustawień konta. Jeśli użytkownik chce usunąć swoje konto, może to zrobić w %1$s/removeme. Usunięcie konta będzie trwałe. Usunięcia danych zażądają również węzły partnerów komunikacyjnych.'; $a->strings['Privacy Statement'] = 'Oświadczenie o prywatności'; +$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'Żądany element nie istnieje lub został usunięty.'; +$a->strings['User imports on closed servers can only be done by an administrator.'] = 'Import użytkowników na zamkniętych serwerach może być wykonywany tylko przez administratora.'; +$a->strings['Move account'] = 'Przenieś konto'; +$a->strings['You can import an account from another Friendica server.'] = 'Możesz zaimportować konto z innego serwera Friendica.'; +$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.'] = 'Musisz wyeksportować konto ze starego serwera i przesłać je tutaj. Odtworzymy twoje stare konto tutaj ze wszystkimi twoimi kontaktami. Postaramy się również poinformować twoich znajomych, że się tutaj przeniosłeś.'; +$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Ta funkcja jest eksperymentalna. Nie możemy importować kontaktów z sieci OStatus (GNU Social/Statusnet) lub z Diaspory'; +$a->strings['Account file'] = 'Pliki konta'; +$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Aby eksportować konto, wejdź w "Ustawienia->Eksport danych osobistych" i wybierz "Eksportuj konto"'; +$a->strings['Error decoding account file'] = 'Błąd podczas odczytu pliku konta'; +$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Błąd! Brak danych wersji w pliku! To nie jest plik konta Friendica?'; +$a->strings['User \'%s\' already exists on this server!'] = 'Użytkownik \'%s\' już istnieje na tym serwerze!'; +$a->strings['User creation error'] = 'Błąd tworzenia użytkownika'; +$a->strings['%d contact not imported'] = [ + 0 => 'Nie zaimportowano %d kontaktu', + 1 => 'Nie zaimportowano %d kontaktów', + 2 => 'Nie zaimportowano %d kontaktów', + 3 => '%d kontakty nie zostały zaimportowane ', +]; +$a->strings['User profile creation error'] = 'Błąd tworzenia profilu użytkownika'; +$a->strings['Done. You can now login with your username and password'] = 'Gotowe. Możesz teraz zalogować się z użyciem nazwy użytkownika i hasła'; $a->strings['Welcome to Friendica'] = 'Witamy na Friendica'; $a->strings['New Member Checklist'] = 'Lista nowych członków'; $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.'] = 'Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie.'; @@ -2555,8 +2340,6 @@ $a->strings['Go to Your Site\'s Directory'] = 'Idż do twojej strony'; $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.'] = 'Strona Katalog umożliwia znalezienie innych osób w tej sieci lub innych witrynach stowarzyszonych. Poszukaj łącza Połącz lub Śledź na stronie profilu. Jeśli chcesz, podaj swój własny adres tożsamości.'; $a->strings['Finding New People'] = 'Znajdowanie nowych osób'; $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.'] = 'Na bocznym panelu strony Kontaktów znajduje się kilka narzędzi do znajdowania nowych przyjaciół. Możemy dopasować osoby według zainteresowań, wyszukiwać osoby według nazwisk i zainteresowań oraz dostarczać sugestie oparte na relacjach sieciowych. Na zupełnie nowej stronie sugestie znajomych zwykle zaczynają być wypełniane w ciągu 24 godzin'; -$a->strings['Group Your Contacts'] = 'Grupy kontaktów'; -$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.'] = 'Gdy zaprzyjaźnisz się z przyjaciółmi, uporządkuj je w prywatne grupy konwersacji na pasku bocznym na stronie Kontakty, a następnie możesz wchodzić w interakcje z każdą grupą prywatnie na stronie Sieć.'; $a->strings['Why Aren\'t My Posts Public?'] = 'Dlaczego moje wpisy nie są publiczne?'; $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.'] = 'Friendica szanuje Twoją prywatność. Domyślnie Twoje wpisy będą wyświetlane tylko osobom, które dodałeś jako znajomi. Aby uzyskać więcej informacji, zobacz sekcję pomocy na powyższym łączu.'; $a->strings['Getting Help'] = 'Otrzymaj pomoc'; @@ -2614,9 +2397,6 @@ $a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Odwi $a->strings['%s %s posted to your profile wall'] = '%s %s opublikował na Twojej tablicy profilu'; $a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s opublikował(-a) wpis na Twojej tablicy o %2$s'; $a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s opublikował(-a) na [url=%2$s]Twojej tablicy[/url]'; -$a->strings['%1$s %2$s poked you'] = '%1$s %2$s zaczepił Cię'; -$a->strings['%1$s poked you at %2$s'] = '%1$s zaczepił Cię %2$s'; -$a->strings['%1$s [url=%2$s]poked you[/url].'] = '%1$s[url=%2$s] zaczepił Cię[/url].'; $a->strings['%s Introduction received'] = '%s Otrzymano wprowadzenie'; $a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Otrzymałeś wstęp od \'%1$s\' z %2$s'; $a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Zostałeś [url=%1$s] przyjęty [/ url] z %2$s.'; @@ -2709,11 +2489,11 @@ $a->strings['%d comment'] = [ ]; $a->strings['Show more'] = 'Pokaż więcej'; $a->strings['Show fewer'] = 'Pokaż mniej'; +$a->strings['(no subject)'] = '(bez tematu)'; $a->strings['%s is now following %s.'] = '%s zaczął(-ęła) obserwować %s.'; $a->strings['following'] = 'następujący'; $a->strings['%s stopped following %s.'] = '%s przestał(a) obserwować %s.'; $a->strings['stopped following'] = 'przestał śledzić'; -$a->strings['The folder view/smarty3/ must be writable by webserver.'] = 'Katalog view/smarty3/ musi być zapisywalny przez serwer WWW.'; $a->strings['Login failed.'] = 'Logowanie nieudane.'; $a->strings['Login failed. Please check your credentials.'] = 'Logowanie nie powiodło się. Sprawdź swoje dane uwierzytelniające.'; $a->strings['Welcome %s'] = 'Witaj %s'; @@ -2739,7 +2519,6 @@ $a->strings['second'] = 'sekunda'; $a->strings['seconds'] = 'sekundy'; $a->strings['in %1$d %2$s'] = 'w %1$d %2$s'; $a->strings['%1$d %2$s ago'] = '%1$d %2$s temu'; -$a->strings['(no subject)'] = '(bez tematu)'; $a->strings['Notification from Friendica'] = 'Powiadomienia z Friendica'; $a->strings['Empty Post'] = 'Pusty wpis'; $a->strings['default'] = 'standardowe'; @@ -2795,7 +2574,6 @@ $a->strings['Center'] = 'Do środka'; $a->strings['Color scheme'] = 'Schemat kolorów'; $a->strings['Posts font size'] = 'Rozmiar czcionki wpisów'; $a->strings['Textareas font size'] = 'Rozmiar czcionki obszarów tekstowych'; -$a->strings['Comma separated list of helper forums'] = 'Lista oddzielonych przecinkami forów pomocniczych'; $a->strings['don\'t show'] = 'nie pokazuj'; $a->strings['show'] = 'pokazuj'; $a->strings['Set style'] = 'Ustaw styl'; diff --git a/view/lang/ro/messages.po b/view/lang/ro/messages.po index d9c586727..7745154fd 100644 --- a/view/lang/ro/messages.po +++ b/view/lang/ro/messages.po @@ -1,1154 +1,100 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: # Arian - Cazare Muncitori , 2014 +# ktlinux, 2023 # Doru DEACONU , 2013 # Doru DEACONU , 2013-2015 +# ktlinux, 2023 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-09 08:57+0100\n" -"PO-Revision-Date: 2015-03-05 16:37+0000\n" -"Last-Translator: Doru DEACONU \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/friendica/language/ro_RO/)\n" +"POT-Creation-Date: 2023-10-15 13:49+0000\n" +"PO-Revision-Date: 2011-05-05 10:19+0000\n" +"Last-Translator: ktlinux, 2023\n" +"Language-Team: Romanian (Romania) (http://app.transifex.com/Friendica/friendica/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ../../mod/contacts.php:108 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "%d contact editat." -msgstr[1] "%d contacte editate." -msgstr[2] "%d de contacte editate." - -#: ../../mod/contacts.php:139 ../../mod/contacts.php:272 -msgid "Could not access contact record." -msgstr "Nu se poate accesa registrul contactului." - -#: ../../mod/contacts.php:153 -msgid "Could not locate selected profile." -msgstr "Nu se poate localiza profilul selectat." - -#: ../../mod/contacts.php:186 -msgid "Contact updated." -msgstr "Contact actualizat." - -#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Actualizarea datelor de contact a eşuat." - -#: ../../mod/contacts.php:254 ../../mod/manage.php:96 -#: ../../mod/display.php:499 ../../mod/profile_photo.php:19 -#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180 -#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9 -#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19 -#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78 -#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:24 -#: ../../mod/notifications.php:66 ../../mod/message.php:38 -#: ../../mod/message.php:174 ../../mod/crepair.php:119 -#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9 -#: ../../mod/events.php:140 ../../mod/install.php:151 -#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 -#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 -#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102 -#: ../../mod/settings.php:596 ../../mod/settings.php:601 -#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114 -#: ../../mod/suggest.php:58 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:618 ../../mod/editpost.php:10 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135 -#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134 -#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23 -#: ../../mod/attach.php:33 ../../include/items.php:4712 ../../index.php:369 -msgid "Permission denied." -msgstr "Permisiune refuzată." - -#: ../../mod/contacts.php:287 -msgid "Contact has been blocked" -msgstr "Contactul a fost blocat" - -#: ../../mod/contacts.php:287 -msgid "Contact has been unblocked" -msgstr "Contactul a fost deblocat" - -#: ../../mod/contacts.php:298 -msgid "Contact has been ignored" -msgstr "Contactul a fost ignorat" - -#: ../../mod/contacts.php:298 -msgid "Contact has been unignored" -msgstr "Contactul a fost neignorat" - -#: ../../mod/contacts.php:310 -msgid "Contact has been archived" -msgstr "Contactul a fost arhivat" - -#: ../../mod/contacts.php:310 -msgid "Contact has been unarchived" -msgstr "Contactul a fost dezarhivat" - -#: ../../mod/contacts.php:335 ../../mod/contacts.php:711 -msgid "Do you really want to delete this contact?" -msgstr "Sigur doriți să ștergeți acest contact?" - -#: ../../mod/contacts.php:337 ../../mod/message.php:209 -#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 -#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 -#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 -#: ../../mod/register.php:233 ../../mod/suggest.php:29 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 ../../mod/api.php:105 -#: ../../include/items.php:4557 -msgid "Yes" -msgstr "Da" - -#: ../../mod/contacts.php:340 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 -#: ../../mod/message.php:212 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615 -#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844 -#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 -#: ../../include/conversation.php:1129 ../../include/items.php:4560 -msgid "Cancel" -msgstr "Anulează" - -#: ../../mod/contacts.php:352 -msgid "Contact has been removed." -msgstr "Contactul a fost înlăturat." - -#: ../../mod/contacts.php:390 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Sunteţi prieten comun cu %s" - -#: ../../mod/contacts.php:394 -#, php-format -msgid "You are sharing with %s" -msgstr "Împărtășiți cu %s" - -#: ../../mod/contacts.php:399 -#, php-format -msgid "%s is sharing with you" -msgstr "%s împărtăşeşte cu dvs." - -#: ../../mod/contacts.php:416 -msgid "Private communications are not available for this contact." -msgstr "Comunicaţiile private nu sunt disponibile pentru acest contact." - -#: ../../mod/contacts.php:419 ../../mod/admin.php:569 -msgid "Never" -msgstr "Niciodată" - -#: ../../mod/contacts.php:423 -msgid "(Update was successful)" -msgstr "(Actualizare a reuşit)" - -#: ../../mod/contacts.php:423 -msgid "(Update was not successful)" -msgstr "(Actualizare nu a reuşit)" - -#: ../../mod/contacts.php:425 -msgid "Suggest friends" -msgstr "Sugeraţi prieteni" - -#: ../../mod/contacts.php:429 -#, php-format -msgid "Network type: %s" -msgstr "Tipul rețelei: %s" - -#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contact în comun" -msgstr[1] "%d contacte în comun" -msgstr[2] "%d de contacte în comun" - -#: ../../mod/contacts.php:437 -msgid "View all contacts" -msgstr "Vezi toate contactele" - -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1009 -msgid "Unblock" -msgstr "Deblochează" - -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1008 -msgid "Block" -msgstr "Blochează" - -#: ../../mod/contacts.php:445 -msgid "Toggle Blocked status" -msgstr "Comutare status Blocat" - -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 -msgid "Unignore" -msgstr "Anulare ignorare" - -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 ../../mod/notifications.php:51 -#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 -msgid "Ignore" -msgstr "Ignoră" - -#: ../../mod/contacts.php:451 -msgid "Toggle Ignored status" -msgstr "Comutaţi status Ignorat" - -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Unarchive" -msgstr "Dezarhivează" - -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Archive" -msgstr "Arhivează" - -#: ../../mod/contacts.php:458 -msgid "Toggle Archive status" -msgstr "Comutaţi status Arhivat" - -#: ../../mod/contacts.php:461 -msgid "Repair" -msgstr "Repară" - -#: ../../mod/contacts.php:464 -msgid "Advanced Contact Settings" -msgstr "Configurări Avansate Contacte" - -#: ../../mod/contacts.php:470 -msgid "Communications lost with this contact!" -msgstr "S-a pierdut conexiunea cu acest contact!" - -#: ../../mod/contacts.php:473 -msgid "Contact Editor" -msgstr "Editor Contact" - -#: ../../mod/contacts.php:475 ../../mod/manage.php:110 -#: ../../mod/fsuggest.php:107 ../../mod/message.php:335 -#: ../../mod/message.php:564 ../../mod/crepair.php:186 -#: ../../mod/events.php:478 ../../mod/content.php:710 -#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137 -#: ../../mod/profiles.php:686 ../../mod/localtime.php:45 -#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084 -#: ../../mod/photos.php:1203 ../../mod/photos.php:1514 -#: ../../mod/photos.php:1565 ../../mod/photos.php:1609 -#: ../../mod/photos.php:1697 ../../object/Item.php:678 -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 -#: ../../view/theme/diabook/config.php:148 -#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53 -#: ../../view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Trimite" - -#: ../../mod/contacts.php:476 -msgid "Profile Visibility" -msgstr "Vizibilitate Profil" - -#: ../../mod/contacts.php:477 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Vă rugăm să alegeţi profilul pe care doriţi să îl afişaţi pentru %s când acesta vă vizitează profuilul în mod securizat." - -#: ../../mod/contacts.php:478 -msgid "Contact Information / Notes" -msgstr "Informaţii de Contact / Note" - -#: ../../mod/contacts.php:479 -msgid "Edit contact notes" -msgstr "Editare note de contact" - -#: ../../mod/contacts.php:484 ../../mod/contacts.php:679 -#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Vizitați profilul %s [%s]" - -#: ../../mod/contacts.php:485 -msgid "Block/Unblock contact" -msgstr "Blocare/Deblocare contact" - -#: ../../mod/contacts.php:486 -msgid "Ignore contact" -msgstr "Ignorare contact" - -#: ../../mod/contacts.php:487 -msgid "Repair URL settings" -msgstr "Remediere configurări URL" - -#: ../../mod/contacts.php:488 -msgid "View conversations" -msgstr "Vizualizaţi conversaţii" - -#: ../../mod/contacts.php:490 -msgid "Delete contact" -msgstr "Şterge contact" - -#: ../../mod/contacts.php:494 -msgid "Last update:" -msgstr "Ultima actualizare:" - -#: ../../mod/contacts.php:496 -msgid "Update public posts" -msgstr "Actualizare postări publice" - -#: ../../mod/contacts.php:498 ../../mod/admin.php:1503 -msgid "Update now" -msgstr "Actualizează acum" - -#: ../../mod/contacts.php:505 -msgid "Currently blocked" -msgstr "Blocat în prezent" - -#: ../../mod/contacts.php:506 -msgid "Currently ignored" -msgstr "Ignorat în prezent" - -#: ../../mod/contacts.php:507 -msgid "Currently archived" -msgstr "Arhivat în prezent" - -#: ../../mod/contacts.php:508 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 -msgid "Hide this contact from others" -msgstr "Ascunde acest contact pentru alţii" - -#: ../../mod/contacts.php:508 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Răspunsurile/aprecierile pentru postările dvs. publice ar putea fi încă vizibile" - -#: ../../mod/contacts.php:509 -msgid "Notification for new posts" -msgstr "Notificare de postări noi" - -#: ../../mod/contacts.php:509 -msgid "Send a notification of every new post of this contact" -msgstr "Trimiteți o notificare despre fiecare postare nouă a acestui contact" - -#: ../../mod/contacts.php:510 -msgid "Fetch further information for feeds" -msgstr "Preluare informaţii suplimentare pentru fluxuri" - -#: ../../mod/contacts.php:511 -msgid "Disabled" -msgstr "Dezactivat" - -#: ../../mod/contacts.php:511 -msgid "Fetch information" -msgstr "" - -#: ../../mod/contacts.php:511 -msgid "Fetch information and keywords" -msgstr "" - -#: ../../mod/contacts.php:513 -msgid "Blacklisted keywords" -msgstr "" - -#: ../../mod/contacts.php:513 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: ../../mod/contacts.php:564 -msgid "Suggestions" -msgstr "Sugestii" - -#: ../../mod/contacts.php:567 -msgid "Suggest potential friends" -msgstr "Sugeraţi prieteni potențiali" - -#: ../../mod/contacts.php:570 ../../mod/group.php:194 -msgid "All Contacts" -msgstr "Toate Contactele" - -#: ../../mod/contacts.php:573 -msgid "Show all contacts" -msgstr "Afişează toate contactele" - -#: ../../mod/contacts.php:576 -msgid "Unblocked" -msgstr "Deblocat" - -#: ../../mod/contacts.php:579 -msgid "Only show unblocked contacts" -msgstr "Se afişează numai contactele deblocate" - -#: ../../mod/contacts.php:583 -msgid "Blocked" -msgstr "Blocat" - -#: ../../mod/contacts.php:586 -msgid "Only show blocked contacts" -msgstr "Se afişează numai contactele blocate" - -#: ../../mod/contacts.php:590 -msgid "Ignored" -msgstr "Ignorat" - -#: ../../mod/contacts.php:593 -msgid "Only show ignored contacts" -msgstr "Se afişează numai contactele ignorate" - -#: ../../mod/contacts.php:597 -msgid "Archived" -msgstr "Arhivat" - -#: ../../mod/contacts.php:600 -msgid "Only show archived contacts" -msgstr "Se afişează numai contactele arhivate" - -#: ../../mod/contacts.php:604 -msgid "Hidden" -msgstr "Ascuns" - -#: ../../mod/contacts.php:607 -msgid "Only show hidden contacts" -msgstr "Se afişează numai contactele ascunse" - -#: ../../mod/contacts.php:655 -msgid "Mutual Friendship" -msgstr "Prietenie Reciprocă" - -#: ../../mod/contacts.php:659 -msgid "is a fan of yours" -msgstr "este fanul dvs." - -#: ../../mod/contacts.php:663 -msgid "you are a fan of" -msgstr "sunteţi un fan al" - -#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Editează contact" - -#: ../../mod/contacts.php:702 ../../include/nav.php:177 -#: ../../view/theme/diabook/theme.php:125 -msgid "Contacts" -msgstr "Contacte" - -#: ../../mod/contacts.php:706 -msgid "Search your contacts" -msgstr "Căutare contacte" - -#: ../../mod/contacts.php:707 ../../mod/directory.php:61 -msgid "Finding: " -msgstr "Găsire:" - -#: ../../mod/contacts.php:708 ../../mod/directory.php:63 -#: ../../include/contact_widgets.php:34 -msgid "Find" -msgstr "Căutare" - -#: ../../mod/contacts.php:713 ../../mod/settings.php:132 -#: ../../mod/settings.php:640 -msgid "Update" -msgstr "Actualizare" - -#: ../../mod/contacts.php:717 ../../mod/group.php:171 ../../mod/admin.php:1007 -#: ../../mod/content.php:438 ../../mod/content.php:741 -#: ../../mod/settings.php:677 ../../mod/photos.php:1654 -#: ../../object/Item.php:130 ../../include/conversation.php:614 -msgid "Delete" -msgstr "Şterge" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Niciun profil" - -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Administrare Identităţii şi/sau Pagini" - -#: ../../mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Comutați între diferitele identităţi sau pagini de comunitate/grup, care împărtășesc detaliile contului dvs. sau pentru care v-au fost acordate drepturi de \"gestionare \"" - -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Selectaţi o identitate de gestionat:" - -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Postat cu succes." - -#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368 -msgid "Permission denied" -msgstr "Permisiune refuzată" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Identificator profil, invalid." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Editor Vizibilitate Profil" - -#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2119 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Profil" - -#: ../../mod/profperm.php:105 ../../mod/group.php:224 -msgid "Click on a contact to add or remove." -msgstr "Apăsați pe un contact pentru a-l adăuga sau elimina." - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Vizibil Pentru" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Toate Contactele (cu acces profil securizat)" - -#: ../../mod/display.php:82 ../../mod/display.php:284 -#: ../../mod/display.php:503 ../../mod/viewsrc.php:15 ../../mod/admin.php:169 -#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/notice.php:15 -#: ../../include/items.php:4516 -msgid "Item not found." -msgstr "Element negăsit." - -#: ../../mod/display.php:212 ../../mod/videos.php:115 -#: ../../mod/viewcontacts.php:19 ../../mod/community.php:18 -#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89 -#: ../../mod/directory.php:33 ../../mod/photos.php:920 -msgid "Public access denied." -msgstr "Acces public refuzat." - -#: ../../mod/display.php:332 ../../mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Accesul la acest profil a fost restricţionat." - -#: ../../mod/display.php:496 -msgid "Item has been removed." -msgstr "Elementul a fost eliminat." - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Bun Venit la Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Lista de Verificare Membrii Noi" - -#: ../../mod/newmember.php:12 -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 "Dorim să vă oferim câteva sfaturi şi legături pentru a vă ajuta să aveți o experienţă cât mai plăcută. Apăsați pe orice element pentru a vizita pagina relevantă. O legătură către această pagină va fi vizibilă de pe pagina principală, pentru două săptămâni după înregistrarea dvs. iniţială, iar apoi va dispare în tăcere." - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Noțiuni de Bază" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Ghidul de Prezentare Friendica" - -#: ../../mod/newmember.php:18 -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 "Pe pagina dvs. de Pornire Rapidă - veți găsi o scurtă introducere pentru profilul dvs. şi pentru filele de reţea, veți face câteva conexiuni noi, şi veți găsi câteva grupuri la care să vă alăturați." - -#: ../../mod/newmember.php:22 ../../mod/admin.php:1104 -#: ../../mod/admin.php:1325 ../../mod/settings.php:85 -#: ../../include/nav.php:172 ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 -msgid "Settings" -msgstr "Setări" - -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Mergeți la Configurări" - -#: ../../mod/newmember.php:26 -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 "Din pagina dvs. de Configurări - schimbaţi-vă parola iniţială. De asemenea creați o notă pentru Adresa dvs. de Identificare. Aceasta arată exact ca o adresă de email - şi va fi utilă la stabilirea de prietenii pe rețeaua socială web gratuită." - -#: ../../mod/newmember.php:28 -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 "Revizuiți celelalte configurări, în special configurările de confidenţialitate. O listă de directoare nepublicate este ca și cum ați avea un număr de telefon necatalogat. În general, ar trebui probabil să vă publicați lista - cu excepţia cazului în care toți prietenii şi potenţialii prieteni, știu exact cum să vă găsească." - -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -#: ../../mod/profiles.php:699 -msgid "Upload Profile Photo" -msgstr "Încărcare Fotografie Profil" - -#: ../../mod/newmember.php:36 -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 "Încărcaţi o fotografie de profil, dacă nu aţi făcut-o deja.Studiile au arătat că, pentru persoanele cu fotografiile lor reale, există de zece ori mai multe şanse să-și facă prieteni, decât cei care nu folosesc fotografii reale." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Editare Profil" - -#: ../../mod/newmember.php:38 -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 "Editaţi-vă profilul Implicit după bunul plac. Revizuiți configurările pentru a ascunde lista dvs. de prieteni și pentru ascunderea profilului dvs., de vizitatorii necunoscuți." - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Cuvinte-Cheie Profil" - -#: ../../mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Stabiliți câteva cuvinte-cheie publice pentru profilul dvs. implicit, cuvinte ce descriu cel mai bine interesele dvs. Vom putea astfel găsi alte persoane cu interese similare și vă vom sugera prietenia lor." - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Conectare" - -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: ../../mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "Autorizați Conectorul Facebook dacă dețineți în prezent un cont pe Facebook, şi vom importa (opțional) toți prietenii și toate conversațiile de pe Facebook." - -#: ../../mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "Dacă aceasta este propriul dvs. server, instalarea suplimentului Facebook, vă poate uşura tranziţia la reţeaua socială web gratuită." - -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Importare Email-uri" - -#: ../../mod/newmember.php:56 -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 "Introduceţi informațiile dvs. de acces la email adresa de email, în pagina dvs. de Configurări Conector, dacă doriți să importați și să interacționați cu prietenii sau cu listele de email din Căsuța dvs. de Mesaje Primite." - -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Dute la pagina ta Contacte " - -#: ../../mod/newmember.php:58 -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 "Pagina dvs. de Contact este poarta dvs. de acces către administrarea prieteniilor şi pentru conectarea cu prietenii din alte rețele. În general, introduceți adresa lor sau URL-ul către site, folosind dialogul Adăugare Contact Nou." - -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Mergeţi la Directorul Site-ului" - -#: ../../mod/newmember.php:60 -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 "Pagina Directorului vă permite să găsiţi alte persoane în această reţea sau în alte site-uri asociate. Căutaţi o legătură de Conectare sau Urmărire pe pagina lor de profil. Oferiți propria dvs. Adresă de Identitate dacă se solicită." - -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Găsire Persoane Noi" - -#: ../../mod/newmember.php:62 -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 "Pe panoul lateral al paginii Contacte sunt câteva unelte utile pentru a găsi noi prieteni. Putem asocia persoanele după interese, căuta persoane după nume sau interes, şi vă putem oferi sugestii bazate pe relaţiile din reţea. Pe un site nou-nouț, sugestiile de prietenie vor începe în mod normal să fie populate în termen de 24 de ore." - -#: ../../mod/newmember.php:66 ../../include/group.php:270 -msgid "Groups" -msgstr "Groupuri" - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Grupați-vă Contactele" - -#: ../../mod/newmember.php:70 -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 "Odată ce v-aţi făcut unele prietenii, organizaţi-le în grupuri de conversaţii private din bara laterală a paginii dvs. de Contact şi apoi puteţi interacționa, privat cu fiecare grup pe pagina dumneavoastră de Reţea." - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "De ce nu sunt Postările Mele Publice?" - -#: ../../mod/newmember.php:73 -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 "Friendica vă respectă confidenţialitatea. Implicit, postările dvs. vor fi afişate numai persoanelor pe care le-ați adăugat ca și prieteni. Pentru mai multe informaţii, consultaţi secţiunea de asistenţă din legătura de mai sus." - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Obţinerea de Ajutor" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Navigați la Secțiunea Ajutor" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Paginile noastre de ajutor pot fi consultate pentru detalii, prin alte funcții şi resurse de program." - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Eroare de protocol OpenID. Nici-un ID returnat." - -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Contul nu a fost găsit iar înregistrările OpenID nu sunt permise pe acest site." - -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 -msgid "Login failed." -msgstr "Eşec la conectare" - -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Imaginea a fost încărcată, dar decuparea imaginii a eşuat." - -#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81 -#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204 -#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305 -#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 -#: ../../mod/photos.php:1210 ../../include/user.php:335 -#: ../../include/user.php:342 ../../include/user.php:349 -#: ../../view/theme/diabook/theme.php:500 -msgid "Profile Photos" -msgstr "Poze profil" - -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 -#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Reducerea dimensiunea imaginii [%s] a eşuat." - -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Apăsați pe Shift și pe Reîncărcare Pagină sau ştergeţi memoria cache a browser-ului, dacă noua fotografie nu se afişează imediat." - -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Nu s-a putut procesa imaginea." - -#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Dimensiunea imaginii depăşeşte limita de %d" - -#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144 -#: ../../mod/photos.php:807 -msgid "Unable to process image." -msgstr "Nu s-a putut procesa imaginea." - -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Încărcare Fișier:" - -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Selectați un profil:" - -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Încărcare" - -#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062 -msgid "or" -msgstr "sau" - -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "omiteți acest pas" - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "selectaţi o fotografie din albumele dvs. foto" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Decupare Imagine" - -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Vă rugăm să ajustaţi decuparea imaginii pentru o vizualizare optimă." - -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Editare Realizată" - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Imaginea a fost încărcată cu succes" - -#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172 -#: ../../mod/photos.php:834 -msgid "Image upload failed." -msgstr "Încărcarea imaginii a eşuat." - -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1968 ../../include/diaspora.php:2087 -#: ../../view/theme/diabook/theme.php:471 -msgid "photo" -msgstr "photo" - -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 -#: ../../mod/like.php:319 ../../include/conversation.php:121 -#: ../../include/conversation.php:130 ../../include/conversation.php:249 -#: ../../include/conversation.php:258 ../../include/diaspora.php:2087 -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 -msgid "status" -msgstr "status" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s urmărește %3$s postată %2$s" - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Etichetă eliminată" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Eliminați Eticheta Elementului" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Selectați o etichetă de eliminat:" - -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 -msgid "Remove" -msgstr "Eliminare" - -#: ../../mod/filer.php:30 ../../include/conversation.php:1006 -#: ../../include/conversation.php:1024 -msgid "Save to Folder:" -msgstr "Salvare în Dosar:" - -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- selectare -" - -#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63 -#: ../../include/text.php:956 -msgid "Save" -msgstr "Salvare" - -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Contact addăugat" - -#: ../../mod/item.php:113 +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 msgid "Unable to locate original post." msgstr "Nu se poate localiza postarea originală." -#: ../../mod/item.php:345 +#: mod/item.php:138 +msgid "Post updated." +msgstr "Postare actualizată" + +#: mod/item.php:203 mod/item.php:207 +msgid "Item wasn't stored." +msgstr "" + +#: mod/item.php:217 +msgid "Item couldn't be fetched." +msgstr "Elementul nu a putut fi adus" + +#: mod/item.php:255 mod/item.php:259 msgid "Empty post discarded." msgstr "Postarea goală a fost eliminată." -#: ../../mod/item.php:484 ../../mod/wall_upload.php:169 -#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 -#: ../../include/Photo.php:916 ../../include/Photo.php:931 -#: ../../include/Photo.php:938 ../../include/Photo.php:960 -#: ../../include/message.php:144 -msgid "Wall Photos" -msgstr "Fotografii de Perete" +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 +#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 +msgid "Item not found." +msgstr "Element negăsit." -#: ../../mod/item.php:938 -msgid "System error. Post not saved." -msgstr "Eroare de sistem. Articolul nu a fost salvat." +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 +#: src/Module/Invite.php:42 src/Module/Invite.php:131 +#: src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Channels.php:56 src/Module/Settings/Channels.php:114 +#: src/Module/Settings/Delegation.php:90 src/Module/Settings/Display.php:90 +#: src/Module/Settings/Display.php:193 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:112 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/User/Import.php:84 src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "Permisiune refuzată." -#: ../../mod/item.php:964 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Acest mesaj v-a fost trimis de către %s, un membru al rețelei sociale Friendica." - -#: ../../mod/item.php:966 -#, php-format -msgid "You may visit them online at %s" -msgstr "Îi puteți vizita profilul online la %s" - -#: ../../mod/item.php:967 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Vă rugăm să contactați expeditorul răspunzând la această postare, dacă nu doriţi să primiţi aceste mesaje." - -#: ../../mod/item.php:971 -#, php-format -msgid "%s posted an update." -msgstr "%s a postat o actualizare." - -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Grupul a fost creat." - -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Grupul nu se poate crea." - -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Grupul nu a fost găsit." - -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Numele grupului a fost schimbat." - -#: ../../mod/group.php:87 -msgid "Save Group" -msgstr "Salvare Grup" - -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Creaţi un grup de contacte/prieteni." - -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Nume Grup:" - -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Grupul a fost eliminat." - -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Nu se poate elimina grupul." - -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Editor Grup" - -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Membri" - -#: ../../mod/apps.php:7 ../../index.php:212 -msgid "You must be logged in to use addons. " -msgstr "Tu trebuie să vă autentificați pentru a folosi suplimentele." - -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Aplicații" - -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Nu există aplicații instalate." - -#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18 -#: ../../mod/profiles.php:133 ../../mod/profiles.php:179 -#: ../../mod/profiles.php:630 -msgid "Profile not found." -msgstr "Profil negăsit." - -#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133 -msgid "Contact not found." -msgstr "Contact negăsit." - -#: ../../mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Aceasta se poate întâmpla ocazional dacă contactul a fost solicitat de către ambele persoane şi acesta a fost deja aprobat." - -#: ../../mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Răspunsul de la adresa de la distanţă, nu a fost înțeles." - -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Răspuns neaşteptat de la site-ul de la distanţă:" - -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Confirmare încheiată cu succes." - -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Site-ul de la distanţă a raportat:" - -#: ../../mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Eroare Temporară. Vă rugăm să aşteptaţi şi încercaţi din nou." - -#: ../../mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Introducerea a eşuat sau a fost revocată." - -#: ../../mod/dfrn_confirm.php:429 -msgid "Unable to set contact photo." -msgstr "Imposibil de stabilit fotografia de contact." - -#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172 -#: ../../include/diaspora.php:620 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s este acum prieten cu %2$s" - -#: ../../mod/dfrn_confirm.php:571 -#, php-format -msgid "No user record found for '%s' " -msgstr "Nici-o înregistrare de utilizator găsită pentru '%s'" - -#: ../../mod/dfrn_confirm.php:581 -msgid "Our site encryption key is apparently messed up." -msgstr "Se pare că, cheia de criptare a site-ului nostru s-a încurcat." - -#: ../../mod/dfrn_confirm.php:592 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "A fost furnizată o adresă URL goală, sau adresa URL nu poate fi decriptată de noi." - -#: ../../mod/dfrn_confirm.php:613 -msgid "Contact record was not found for you on our site." -msgstr "Registrul contactului nu a fost găsit pe site-ul nostru." - -#: ../../mod/dfrn_confirm.php:627 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Cheia publică a site-ului nu este disponibilă în registrul contactului pentru URL-ul %s." - -#: ../../mod/dfrn_confirm.php:647 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "ID-ul furnizat de către sistemul dumneavoastră este un duplicat pe sistemul nostru. Ar trebui să funcţioneze dacă încercaţi din nou." - -#: ../../mod/dfrn_confirm.php:658 -msgid "Unable to set your contact credentials on our system." -msgstr "Imposibil de configurat datele dvs. de autentificare, pe sistemul nostru." - -#: ../../mod/dfrn_confirm.php:725 -msgid "Unable to update your contact profile details on our system" -msgstr "Imposibil de actualizat detaliile de profil ale contactului dvs., pe sistemul nostru." - -#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717 -#: ../../include/items.php:4008 -msgid "[Name Withheld]" -msgstr "[Nume Reţinut]" - -#: ../../mod/dfrn_confirm.php:797 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s s-a alăturat lui %2$s" - -#: ../../mod/profile.php:21 ../../boot.php:1458 -msgid "Requested profile is not available." -msgstr "Profilul solicitat nu este disponibil." - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Sfaturi pentru Membrii Noi" - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Nici-un clip video selectat" - -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 -msgid "Access to this item is restricted." -msgstr "Accesul la acest element este restricționat." - -#: ../../mod/videos.php:301 ../../include/text.php:1405 -msgid "View Video" -msgstr "Vizualizați Clipul Video" - -#: ../../mod/videos.php:308 ../../mod/photos.php:1808 -msgid "View Album" -msgstr "Vezi Album" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Clipuri video recente" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Încărcaţi Clipuri Video Noi" - -#: ../../mod/tagger.php:95 ../../include/conversation.php:266 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s a etichetat %3$s de la %2$s cu %4$s" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Sugestia de prietenie a fost trimisă." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Sugeraţi Prieteni" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Sugeraţi un prieten pentru %s" - -#: ../../mod/lostpass.php:19 +#: mod/lostpass.php:40 msgid "No valid account found." msgstr "Nici-un cont valid găsit." -#: ../../mod/lostpass.php:35 +#: mod/lostpass.php:52 msgid "Password reset request issued. Check your email." msgstr "Solicitarea de Resetare Parolă a fost emisă. Verificați-vă emailul." -#: ../../mod/lostpass.php:42 +#: mod/lostpass.php:58 #, php-format msgid "" "\n" @@ -1158,17 +104,17 @@ msgid "" "\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.\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 "" +msgstr "\n\t\tStimate %1$s,\n\t\t\tA fost primită recent o solicitare către \"%2$s\" pentru a vă schimba parola\n\t\tcontului. Pentru a confirma aceasta, vă rugăm să accesați link-ul de verificare\n\t\tde mai jos sau să-l copiați în bara de adrese a browser-ului dumneavoastră.\n\n\t\tDacă NU ați efectuat această solicitare, vă rugăm să NU urmați link-ul\n\t\ttrimis mai sus și să ignorați și/sau să ștergeți acest email, cererea urmând să expire în curând.\n\n\t\tParola dumneavoastră nu va fi schimbată decât dacă putem verifica faptul că dumneavoastră\n\t\tați solicitat acest lucru." -#: ../../mod/lostpass.php:53 +#: mod/lostpass.php:69 #, php-format msgid "" "\n" -"\t\tFollow this link to verify your identity:\n" +"\t\tFollow this link soon to verify your identity:\n" "\n" "\t\t%1$s\n" "\n" @@ -1181,494 +127,249 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "" -#: ../../mod/lostpass.php:72 +#: mod/lostpass.php:84 #, php-format msgid "Password reset requested at %s" msgstr "Solicitarea de resetare a parolei a fost făcută la %s" -#: ../../mod/lostpass.php:92 +#: mod/lostpass.php:100 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Solicitarea nu se poate verifica. (Este posibil să fi solicitat-o anterior.) Resetarea parolei a eșuat." -#: ../../mod/lostpass.php:109 ../../boot.php:1280 -msgid "Password Reset" -msgstr "Resetare Parolă" +#: mod/lostpass.php:113 +msgid "Request has expired, please make a new one." +msgstr "Solicitarea a expirat, vă rugăm să efectuați o nouă solicitare" -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Parola a fost resetată conform solicitării." - -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Noua dvs. parolă este" - -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Salvați sau copiați noua dvs. parolă - şi apoi" - -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "click aici pentru logare" - -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Parola poate fi schimbată din pagina de Configurări după autentificarea cu succes." - -#: ../../mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "" - -#: ../../mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "" - -#: ../../mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Parola dumneavoastră a fost schimbată la %s" - -#: ../../mod/lostpass.php:159 +#: mod/lostpass.php:128 msgid "Forgot your Password?" msgstr "Ați uitat Parola?" -#: ../../mod/lostpass.php:160 +#: mod/lostpass.php:129 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Introduceţi adresa dumneavoastră de email şi trimiteți-o pentru a vă reseta parola. Apoi verificaţi-vă emailul pentru instrucţiuni suplimentare." -#: ../../mod/lostpass.php:161 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " msgstr "Pseudonim sau Email:" -#: ../../mod/lostpass.php:162 +#: mod/lostpass.php:131 msgid "Reset" -msgstr "Reset" +msgstr "Resetare" -#: ../../mod/like.php:166 ../../include/conversation.php:137 -#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 +msgid "Password Reset" +msgstr "Resetare Parolă" + +#: mod/lostpass.php:147 +msgid "Your password has been reset as requested." +msgstr "Parola a fost resetată conform solicitării." + +#: mod/lostpass.php:148 +msgid "Your new password is" +msgstr "Noua dvs. parolă este" + +#: mod/lostpass.php:149 +msgid "Save or copy your new password - and then" +msgstr "Salvați sau copiați noua dvs. parolă - şi apoi" + +#: mod/lostpass.php:150 +msgid "click here to login" +msgstr "click aici pentru logare" + +#: mod/lostpass.php:151 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Parola poate fi schimbată din pagina de Configurări după autentificarea cu succes." + +#: mod/lostpass.php:155 +msgid "Your password has been reset." +msgstr "Parola dumneavoastră a fost schimbată." + +#: mod/lostpass.php:158 #, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s apreciază %3$s lui %2$s" +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 "" -#: ../../mod/like.php:168 ../../include/conversation.php:140 +#: mod/lostpass.php:164 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s nu apreciază %3$s lui %2$s" +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\tDetaliile dumneavoastră de login sunt următoarele:\n\n\t\t\tLocația site-ului:\t%1$s\n\t\t\tNume login:\t%2$s\n\t\t\tParolă:\t%3$s\n\n\t\t\tVă puteți schimba această parolă din pagina de setări a contului dumneavoastră, după logare.\n\t\t" -#: ../../mod/ping.php:240 -msgid "{0} wants to be your friend" -msgstr "{0} doreşte să vă fie prieten" - -#: ../../mod/ping.php:245 -msgid "{0} sent you a message" -msgstr "{0} v-a trimis un mesaj" - -#: ../../mod/ping.php:250 -msgid "{0} requested registration" -msgstr "{0} a solicitat înregistrarea" - -#: ../../mod/ping.php:256 +#: mod/lostpass.php:176 #, php-format -msgid "{0} commented %s's post" -msgstr "{0} a comentat la articolul postat de %s" +msgid "Your password has been changed at %s" +msgstr "Parola dumneavoastră a fost schimbată la %s" -#: ../../mod/ping.php:261 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} a apreciat articolul postat de %s" - -#: ../../mod/ping.php:266 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} nu a apreciat articolul postat de %s" - -#: ../../mod/ping.php:271 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} este acum prieten cu %s" - -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} a postat" - -#: ../../mod/ping.php:281 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} a etichetat articolul postat de %s cu #%s" - -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} v-a menţionat într-o postare" - -#: ../../mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Nici-un contact." - -#: ../../mod/viewcontacts.php:78 ../../include/text.php:876 -msgid "View Contacts" -msgstr "Vezi Contacte" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Datele de identificare solicitate, sunt invalide." - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Renunțați" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "System" - -#: ../../mod/notifications.php:83 ../../include/nav.php:145 -msgid "Network" -msgstr "Reţea" - -#: ../../mod/notifications.php:88 ../../mod/network.php:371 -msgid "Personal" -msgstr "Personal" - -#: ../../mod/notifications.php:93 ../../include/nav.php:105 -#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "Home" - -#: ../../mod/notifications.php:98 ../../include/nav.php:154 -msgid "Introductions" -msgstr "Introduceri" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Afişare Solicitări Ignorate" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Ascundere Solicitări Ignorate" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Tip Notificări:" - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Sugestie Prietenie" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "sugerat de către %s" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "Publicaţi prietenului o nouă activitate" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "dacă i posibil" - -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 -#: ../../mod/admin.php:1005 -msgid "Approve" -msgstr "Aprobă" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Pretinde că vă cunoaște:" - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "da" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "nu" - -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Aprobă ca:" - -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Prieten" - -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "Distribuitor" - -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Fan/Admirator" - -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Prieten/Solicitare de Conectare" - -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "Susţinător Nou" - -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "Fără prezentări." - -#: ../../mod/notifications.php:220 ../../include/nav.php:155 -msgid "Notifications" -msgstr "Notificări" - -#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s liked %s's post" -msgstr "%s a apreciat ceea a publicat %s" - -#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 -#: ../../mod/notifications.php:488 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s a nu a apreciat ceea a publicat %s" - -#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:503 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s este acum prieten cu %s" - -#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 -#, php-format -msgid "%s created a new post" -msgstr "%s a creat o nouă postare" - -#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 -#: ../../mod/notifications.php:513 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s a comentat la articolul postat de %s" - -#: ../../mod/notifications.php:306 -msgid "No more network notifications." -msgstr "Nu mai există notificări de reţea." - -#: ../../mod/notifications.php:310 -msgid "Network Notifications" -msgstr "Notificări de Reţea" - -#: ../../mod/notifications.php:336 ../../mod/notify.php:75 -msgid "No more system notifications." -msgstr "Nu mai există notificări de sistem." - -#: ../../mod/notifications.php:340 ../../mod/notify.php:79 -msgid "System Notifications" -msgstr "Notificări de Sistem" - -#: ../../mod/notifications.php:435 -msgid "No more personal notifications." -msgstr "Nici o notificare personală" - -#: ../../mod/notifications.php:439 -msgid "Personal Notifications" -msgstr "Notificări personale" - -#: ../../mod/notifications.php:520 -msgid "No more home notifications." -msgstr "Nu mai există notificări de origine." - -#: ../../mod/notifications.php:524 -msgid "Home Notifications" -msgstr "Notificări de Origine" - -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Text (bbcode) sursă:" - -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Text (Diaspora) sursă pentru a-l converti în BBcode:" - -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Intrare Sursă:" - -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (raw HTML): " - -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " - -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Intrare Sursă (Format Diaspora):" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" -msgstr "Nimic nou aici" - -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" -msgstr "Ştergeţi notificările" - -#: ../../mod/message.php:9 ../../include/nav.php:164 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 msgid "New Message" msgstr "Mesaj nou" -#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 msgid "No recipient selected." -msgstr "Nici-o adresă selectată." +msgstr "Niciun destinatar selectat." -#: ../../mod/message.php:67 +#: mod/message.php:87 msgid "Unable to locate contact information." msgstr "Nu se pot localiza informaţiile de contact." -#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 msgid "Message could not be sent." msgstr "Mesajul nu a putut fi trimis." -#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 msgid "Message collection failure." msgstr "Eșec de colectare mesaj." -#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Mesaj trimis." +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 +msgid "Discard" +msgstr "Renunțați" -#: ../../mod/message.php:182 ../../include/nav.php:161 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" msgstr "Mesage" -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Chiar doriţi să ştergeţi acest mesaj ?" +#: mod/message.php:148 +msgid "Conversation not found." +msgstr "Conversație negăsită." -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Mesaj şters" +#: mod/message.php:153 +msgid "Message was not deleted." +msgstr "Mesajul nu a fost șters." -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Conversaşie inlăturată." +#: mod/message.php:168 +msgid "Conversation was not removed." +msgstr "Conversația nu a fost ștearsă." -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 msgid "Please enter a link URL:" msgstr "Introduceţi un link URL:" -#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 msgid "Send Private Message" msgstr "Trimite mesaj privat" -#: ../../mod/message.php:320 ../../mod/message.php:553 -#: ../../mod/wallmessage.php:144 +#: mod/message.php:191 mod/message.php:346 msgid "To:" msgstr "Către: " -#: ../../mod/message.php:325 ../../mod/message.php:555 -#: ../../mod/wallmessage.php:145 +#: mod/message.php:192 mod/message.php:347 msgid "Subject:" msgstr "Subiect:" -#: ../../mod/message.php:329 ../../mod/message.php:558 -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 msgid "Your message:" msgstr "Mesajul dvs :" -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 -#: ../../include/conversation.php:1091 +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 msgid "Upload photo" msgstr "Încarcă foto" -#: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 -#: ../../include/conversation.php:1095 +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 msgid "Insert web link" msgstr "Inserează link web" -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/content.php:499 ../../mod/content.php:883 -#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124 -#: ../../mod/photos.php:1545 ../../object/Item.php:364 -#: ../../include/conversation.php:692 ../../include/conversation.php:1109 +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:587 msgid "Please wait" msgstr "Aşteptaţi vă rog" -#: ../../mod/message.php:371 +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 +#: src/Module/Install.php:274 src/Module/Install.php:309 +#: src/Module/Invite.php:178 src/Module/Item/Compose.php:189 +#: src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 +#: src/Object/Post.php:1106 view/theme/duepuntozero/config.php:85 +#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Trimite" + +#: mod/message.php:223 msgid "No messages." msgstr "Nici-un mesaj." -#: ../../mod/message.php:378 +#: mod/message.php:279 +msgid "Message not available." +msgstr "Mesaj nedisponibil" + +#: mod/message.php:323 +msgid "Delete message" +msgstr "Şterge mesaj" + +#: mod/message.php:325 mod/message.php:456 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:340 mod/message.php:453 +msgid "Delete conversation" +msgstr "Ștergeți conversaţia" + +#: mod/message.php:342 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Nicio comunicare securizată disponibilă. Veți putea răspunde din pagina de profil a expeditorului." + +#: mod/message.php:345 +msgid "Send Reply" +msgstr "Răspunde" + +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "Expeditor necunoscut - %s" -#: ../../mod/message.php:381 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "Tu şi %s" -#: ../../mod/message.php:384 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "%s şi dvs" -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Ștergeți conversaţia" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/message.php:411 +#: mod/message.php:459 #, php-format msgid "%d message" msgid_plural "%d messages" @@ -1676,4080 +377,1887 @@ msgstr[0] "%d mesaj" msgstr[1] "%d mesaje" msgstr[2] "%d mesaje" -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Mesaj nedisponibil" - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Şterge mesaj" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Nici-o comunicaţie securizată disponibilă. Veți putea răspunde din pagina de profil a expeditorului." - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Răspunde" - -#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 -#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41 -#: ../../mod/update_network.php:25 -msgid "[Embedded content - reload page to view]" -msgstr "[Conţinut încastrat - reîncărcaţi pagina pentru a vizualiza]" - -#: ../../mod/crepair.php:106 -msgid "Contact settings applied." -msgstr "Configurările Contactului au fost aplicate." - -#: ../../mod/crepair.php:108 -msgid "Contact update failed." -msgstr "Actualizarea Contactului a eșuat." - -#: ../../mod/crepair.php:139 -msgid "Repair Contact Settings" -msgstr "Remediere Configurări Contact" - -#: ../../mod/crepair.php:141 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "AVERTISMENT: Această acțiune este foarte avansată şi dacă introduceţi informaţii incorecte, comunicaţiile cu acest contact se poate opri." - -#: ../../mod/crepair.php:142 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Vă rugăm să utilizaţi acum butonul 'Înapoi' din browser, dacă nu sunteţi sigur ce sa faceți pe această pagină." - -#: ../../mod/crepair.php:148 -msgid "Return to contact editor" -msgstr "Reveniţi la editorul de contact" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "No mirroring" -msgstr "" - -#: ../../mod/crepair.php:159 -msgid "Mirror as forwarded posting" -msgstr "" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "Mirror as my own posting" -msgstr "" - -#: ../../mod/crepair.php:165 ../../mod/admin.php:1003 ../../mod/admin.php:1015 -#: ../../mod/admin.php:1016 ../../mod/admin.php:1029 -#: ../../mod/settings.php:616 ../../mod/settings.php:642 -msgid "Name" -msgstr "Nume" - -#: ../../mod/crepair.php:166 -msgid "Account Nickname" -msgstr "Pseudonim Cont" - -#: ../../mod/crepair.php:167 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Nume_etichetă - suprascrie Numele/Pseudonimul" - -#: ../../mod/crepair.php:168 -msgid "Account URL" -msgstr "URL Cont" - -#: ../../mod/crepair.php:169 -msgid "Friend Request URL" -msgstr "URL Solicitare Prietenie" - -#: ../../mod/crepair.php:170 -msgid "Friend Confirm URL" -msgstr "URL Confirmare Prietenie" - -#: ../../mod/crepair.php:171 -msgid "Notification Endpoint URL" -msgstr "Punct final URL Notificare" - -#: ../../mod/crepair.php:172 -msgid "Poll/Feed URL" -msgstr "URL Sondaj/Flux" - -#: ../../mod/crepair.php:173 -msgid "New photo from this URL" -msgstr "Fotografie Nouă de la acest URL" - -#: ../../mod/crepair.php:174 -msgid "Remote Self" -msgstr "Auto la Distanţă" - -#: ../../mod/crepair.php:176 -msgid "Mirror postings from this contact" -msgstr "Postări în oglindă de la acest contact" - -#: ../../mod/crepair.php:176 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Marcaţi acest contact ca remote_self, aceasta va determina friendica să reposteze noile articole ale acestui contact." - -#: ../../mod/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92 -msgid "Login" -msgstr "Login" - -#: ../../mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "" - -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Accesul interzis." - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Căutare Persoane" - -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Nici-o potrivire" - -#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78 -#: ../../view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Poze" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Fişiere" - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contactele care nu sunt membre ale unui grup" - -#: ../../mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Configurările temei au fost actualizate." - -#: ../../mod/admin.php:104 ../../mod/admin.php:619 -msgid "Site" -msgstr "Site" - -#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013 -msgid "Users" -msgstr "Utilizatori" - -#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155 -#: ../../mod/settings.php:57 -msgid "Plugins" -msgstr "Pluginuri" - -#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 -msgid "Themes" -msgstr "Teme" - -#: ../../mod/admin.php:108 -msgid "DB updates" -msgstr "Actualizări Bază de Date" - -#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444 -msgid "Logs" -msgstr "Jurnale" - -#: ../../mod/admin.php:124 -msgid "probe address" -msgstr "" - -#: ../../mod/admin.php:125 -msgid "check webfinger" -msgstr "" - -#: ../../mod/admin.php:130 ../../include/nav.php:184 -msgid "Admin" -msgstr "Admin" - -#: ../../mod/admin.php:131 -msgid "Plugin Features" -msgstr "Caracteristici Modul" - -#: ../../mod/admin.php:133 -msgid "diagnostics" -msgstr "diacgnostice" - -#: ../../mod/admin.php:134 -msgid "User registrations waiting for confirmation" -msgstr "Înregistrări de utilizatori, aşteaptă confirmarea" - -#: ../../mod/admin.php:193 ../../mod/admin.php:952 -msgid "Normal Account" -msgstr "Cont normal" - -#: ../../mod/admin.php:194 ../../mod/admin.php:953 -msgid "Soapbox Account" -msgstr "Cont Soapbox" - -#: ../../mod/admin.php:195 ../../mod/admin.php:954 -msgid "Community/Celebrity Account" -msgstr "Cont Comunitate/Celebritate" - -#: ../../mod/admin.php:196 ../../mod/admin.php:955 -msgid "Automatic Friend Account" -msgstr "Cont Prieten Automat" - -#: ../../mod/admin.php:197 -msgid "Blog Account" -msgstr "Cont Blog" - -#: ../../mod/admin.php:198 -msgid "Private Forum" -msgstr "Forum Privat" - -#: ../../mod/admin.php:217 -msgid "Message queues" -msgstr "Șiruri de mesaje" - -#: ../../mod/admin.php:222 ../../mod/admin.php:618 ../../mod/admin.php:997 -#: ../../mod/admin.php:1101 ../../mod/admin.php:1154 ../../mod/admin.php:1322 -#: ../../mod/admin.php:1356 ../../mod/admin.php:1443 -msgid "Administration" -msgstr "Administrare" - -#: ../../mod/admin.php:223 -msgid "Summary" -msgstr "Sumar" - -#: ../../mod/admin.php:225 -msgid "Registered users" -msgstr "Utilizatori înregistraţi" - -#: ../../mod/admin.php:227 -msgid "Pending registrations" -msgstr "Administrare" - -#: ../../mod/admin.php:228 -msgid "Version" -msgstr "Versiune" - -#: ../../mod/admin.php:232 -msgid "Active plugins" -msgstr "Module active" - -#: ../../mod/admin.php:255 -msgid "Can not parse base url. Must have at least ://" -msgstr "Nu se poate analiza URL-ul de bază. Trebuie să aibă minim ://" - -#: ../../mod/admin.php:516 -msgid "Site settings updated." -msgstr "Configurările site-ului au fost actualizate." - -#: ../../mod/admin.php:545 ../../mod/settings.php:828 -msgid "No special theme for mobile devices" -msgstr "Nici-o temă specială pentru dispozitive mobile" - -#: ../../mod/admin.php:562 -msgid "No community page" -msgstr "" - -#: ../../mod/admin.php:563 -msgid "Public postings from users of this site" -msgstr "" - -#: ../../mod/admin.php:564 -msgid "Global community page" -msgstr "" - -#: ../../mod/admin.php:570 -msgid "At post arrival" -msgstr "La sosirea publicaţiei" - -#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frecvent" - -#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Din oră în oră" - -#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "De două ori pe zi" - -#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Zilnic" - -#: ../../mod/admin.php:579 -msgid "Multi user instance" -msgstr "Instanţă utilizatori multipli" - -#: ../../mod/admin.php:602 -msgid "Closed" -msgstr "Inchis" - -#: ../../mod/admin.php:603 -msgid "Requires approval" -msgstr "Necesită aprobarea" - -#: ../../mod/admin.php:604 -msgid "Open" -msgstr "Deschide" - -#: ../../mod/admin.php:608 -msgid "No SSL policy, links will track page SSL state" -msgstr "Nici-o politică SSL, legăturile vor urmări starea paginii SSL" - -#: ../../mod/admin.php:609 -msgid "Force all links to use SSL" -msgstr "Forţează toate legăturile să utilizeze SSL" - -#: ../../mod/admin.php:610 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certificat auto/semnat, folosește SSL numai pentru legăturile locate (nerecomandat)" - -#: ../../mod/admin.php:620 ../../mod/admin.php:1156 ../../mod/admin.php:1358 -#: ../../mod/admin.php:1445 ../../mod/settings.php:614 -#: ../../mod/settings.php:724 ../../mod/settings.php:798 -#: ../../mod/settings.php:880 ../../mod/settings.php:1113 -msgid "Save Settings" -msgstr "Salvare Configurări" - -#: ../../mod/admin.php:621 ../../mod/register.php:255 -msgid "Registration" -msgstr "Registratură" - -#: ../../mod/admin.php:622 -msgid "File upload" -msgstr "Fişier incărcat" - -#: ../../mod/admin.php:623 -msgid "Policies" -msgstr "Politici" - -#: ../../mod/admin.php:624 -msgid "Advanced" -msgstr "Avansat" - -#: ../../mod/admin.php:625 -msgid "Performance" -msgstr "Performanţă" - -#: ../../mod/admin.php:626 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Reaşezaţi - AVERTIZARE: funcţie avansată. Ar putea face acest server inaccesibil." - -#: ../../mod/admin.php:629 -msgid "Site name" -msgstr "Nume site" - -#: ../../mod/admin.php:630 -msgid "Host name" -msgstr "Nume host" - -#: ../../mod/admin.php:631 -msgid "Sender Email" -msgstr "" - -#: ../../mod/admin.php:632 -msgid "Banner/Logo" -msgstr "Baner/Logo" - -#: ../../mod/admin.php:633 -msgid "Shortcut icon" -msgstr "" - -#: ../../mod/admin.php:634 -msgid "Touch icon" -msgstr "" - -#: ../../mod/admin.php:635 -msgid "Additional Info" -msgstr "Informaţii suplimentare" - -#: ../../mod/admin.php:635 -msgid "" -"For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." -msgstr "Pentru serverele publice: puteţi să adăugaţi aici informaţiile suplimentare ce vor fi afişate pe dir.friendica.com/siteinfo." - -#: ../../mod/admin.php:636 -msgid "System language" -msgstr "Limbă System l" - -#: ../../mod/admin.php:637 -msgid "System theme" -msgstr "Temă System " - -#: ../../mod/admin.php:637 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema implicită a sistemului - se poate supraregla prin profilele de utilizator - modificați configurările temei" - -#: ../../mod/admin.php:638 -msgid "Mobile system theme" -msgstr "Temă sisteme mobile" - -#: ../../mod/admin.php:638 -msgid "Theme for mobile devices" -msgstr "Temă pentru dispozitivele mobile" - -#: ../../mod/admin.php:639 -msgid "SSL link policy" -msgstr "Politivi link SSL " - -#: ../../mod/admin.php:639 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determină dacă legăturile generate ar trebui forţate să utilizeze SSL" - -#: ../../mod/admin.php:640 -msgid "Force SSL" -msgstr "" - -#: ../../mod/admin.php:640 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "" - -#: ../../mod/admin.php:641 -msgid "Old style 'Share'" -msgstr "Stilul vechi de 'Distribuiţi'" - -#: ../../mod/admin.php:641 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Dezactivează elementul bbcode 'distribuiţi' pentru elementele repetitive." - -#: ../../mod/admin.php:642 -msgid "Hide help entry from navigation menu" -msgstr "Ascunde elementele de ajutor, din meniul de navigare" - -#: ../../mod/admin.php:642 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Ascunde intrările de meniu pentru paginile de Ajutor, din meniul de navigare. Îl puteţi accesa în continuare direct, apelând /ajutor." - -#: ../../mod/admin.php:643 -msgid "Single user instance" -msgstr "Instanţă cu un singur utilizator" - -#: ../../mod/admin.php:643 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Stabiliți această instanţă ca utilizator-multipli sau utilizator/unic, pentru utilizatorul respectiv" - -#: ../../mod/admin.php:644 -msgid "Maximum image size" -msgstr "Maxim mărime imagine" - -#: ../../mod/admin.php:644 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Dimensiunea maximă în octeţi, a imaginii încărcate. Implicit este 0, ceea ce înseamnă fără limite." - -#: ../../mod/admin.php:645 -msgid "Maximum image length" -msgstr "Dimensiunea maximă a imaginii" - -#: ../../mod/admin.php:645 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Dimensiunea maximă în pixeli a celei mai lungi laturi a imaginii încărcate. Implicit este -1, ceea ce înseamnă fără limite." - -#: ../../mod/admin.php:646 -msgid "JPEG image quality" -msgstr "Calitate imagine JPEG " - -#: ../../mod/admin.php:646 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Imaginile JPEG încărcate vor fi salvate cu această calitate stabilită [0-100]. Implicit este 100, ceea ce înseamnă calitate completă." - -#: ../../mod/admin.php:648 -msgid "Register policy" -msgstr "Politici inregistrare " - -#: ../../mod/admin.php:649 -msgid "Maximum Daily Registrations" -msgstr "Înregistrări Zilnice Maxime" - -#: ../../mod/admin.php:649 -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 "Dacă înregistrarea este permisă de mai sus, aceasta stabileşte numărul maxim de utilizatori noi înregistraţi, acceptaţi pe zi. Dacă înregistrarea este stabilită ca închisă, această setare nu are efect." - -#: ../../mod/admin.php:650 -msgid "Register text" -msgstr "Text înregistrare" - -#: ../../mod/admin.php:650 -msgid "Will be displayed prominently on the registration page." -msgstr "Va fi afişat vizibil pe pagina de înregistrare." - -#: ../../mod/admin.php:651 -msgid "Accounts abandoned after x days" -msgstr "Conturi abandonate după x zile" - -#: ../../mod/admin.php:651 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Nu va risipi resurse de sistem interogând site-uri externe pentru conturi abandonate. Introduceţi 0 pentru nici-o limită de timp." - -#: ../../mod/admin.php:652 -msgid "Allowed friend domains" -msgstr "Domenii prietene permise" - -#: ../../mod/admin.php:652 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Lista cu separator prin virgulă a domeniilor ce sunt permise pentru a stabili relaţii de prietenie cu acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu" - -#: ../../mod/admin.php:653 -msgid "Allowed email domains" -msgstr "Domenii de email, permise" - -#: ../../mod/admin.php:653 -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 "Lista cu separator prin virgulă a domeniilor ce sunt permise în adresele de email pentru înregistrările pe acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu" - -#: ../../mod/admin.php:654 -msgid "Block public" -msgstr "Blocare acces public" - -#: ../../mod/admin.php:654 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Bifați pentru a bloca accesul public, pe acest site, către toate paginile publice cu caracter personal, doar dacă nu sunteţi deja autentificat." - -#: ../../mod/admin.php:655 -msgid "Force publish" -msgstr "Forțează publicarea" - -#: ../../mod/admin.php:655 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Bifați pentru a forţa, ca toate profilurile de pe acest site să fie enumerate în directorul site-ului." - -#: ../../mod/admin.php:656 -msgid "Global directory update URL" -msgstr "URL actualizare director global" - -#: ../../mod/admin.php:656 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL pentru a actualiza directorul global. Dacă aceasta nu se stabilește, director global este complet indisponibil pentru aplicație." - -#: ../../mod/admin.php:657 -msgid "Allow threaded items" -msgstr "Permite elemente înșiruite" - -#: ../../mod/admin.php:657 -msgid "Allow infinite level threading for items on this site." -msgstr "Permite pe acest site, un număr infinit de nivele de înșiruire." - -#: ../../mod/admin.php:658 -msgid "Private posts by default for new users" -msgstr "Postările private, ca implicit pentru utilizatori noi" - -#: ../../mod/admin.php:658 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Stabilește permisiunile de postare implicite, pentru toți membrii noi, la grupul de confidențialitate implicit, mai degrabă decât cel public." - -#: ../../mod/admin.php:659 -msgid "Don't include post content in email notifications" -msgstr "Nu include conţinutul postării în notificările prin email" - -#: ../../mod/admin.php:659 -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 "Nu include conținutul unui post/comentariu/mesaj privat/etc. în notificările prin email, ce sunt trimise de pe acest site, ca și masură de confidenţialitate." - -#: ../../mod/admin.php:660 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Nu permiteţi accesul public la suplimentele enumerate în meniul de aplicaţii." - -#: ../../mod/admin.php:660 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Bifând această casetă va restricționa, suplimentele enumerate în meniul de aplicaţii, exclusiv la accesul membrilor." - -#: ../../mod/admin.php:661 -msgid "Don't embed private images in posts" -msgstr "Nu încorpora imagini private în postări" - -#: ../../mod/admin.php:661 -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 "Nu înlocui fotografiile private, locale, din postări cu o copie încorporată imaginii. Aceasta înseamnă că, contactele care primesc postări ce conțin fotografii private vor trebui să se autentifice şi să încarce fiecare imagine, ceea ce poate dura ceva timp." - -#: ../../mod/admin.php:662 -msgid "Allow Users to set remote_self" -msgstr "Permite utilizatorilor să-și stabilească remote_self" - -#: ../../mod/admin.php:662 -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 "Bifând aceasta, fiecărui utilizator îi este permis să marcheze fiecare contact, ca și propriu_la-distanță în dialogul de remediere contact. Stabilind acest marcaj unui un contact, va determina oglindirea fiecărei postări a respectivului contact, în fluxul utilizatorilor." - -#: ../../mod/admin.php:663 -msgid "Block multiple registrations" -msgstr "Blocare înregistrări multiple" - -#: ../../mod/admin.php:663 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Interzice utilizatorilor să-și înregistreze conturi adiționale pentru a le folosi ca pagini." - -#: ../../mod/admin.php:664 -msgid "OpenID support" -msgstr "OpenID support" - -#: ../../mod/admin.php:664 -msgid "OpenID support for registration and logins." -msgstr "Suport OpenID pentru înregistrare şi autentificări." - -#: ../../mod/admin.php:665 -msgid "Fullname check" -msgstr "Verificare Nume complet" - -#: ../../mod/admin.php:665 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Forțează utilizatorii să se înregistreze cu un spaţiu între prenume şi nume, în câmpul pentru Nume complet, ca și măsură antispam" - -#: ../../mod/admin.php:666 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 Regular expresii" - -#: ../../mod/admin.php:666 -msgid "Use PHP UTF8 regular expressions" -msgstr "Utilizaţi PHP UTF-8 Regular expresii" - -#: ../../mod/admin.php:667 -msgid "Community Page Style" -msgstr "" - -#: ../../mod/admin.php:667 -msgid "" -"Type of community page to show. 'Global community' shows every public " -"posting from an open distributed network that arrived on this server." -msgstr "" - -#: ../../mod/admin.php:668 -msgid "Posts per user on community page" -msgstr "" - -#: ../../mod/admin.php:668 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "" - -#: ../../mod/admin.php:669 -msgid "Enable OStatus support" -msgstr "Activează Suport OStatus" - -#: ../../mod/admin.php:669 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Oferă compatibilitate de integrare OStatus (StatusNet, GNU Sociale etc.). Toate comunicațiile din OStatus sunt publice, astfel încât avertismentele de confidenţialitate vor fi ocazional afişate." - -#: ../../mod/admin.php:670 -msgid "OStatus conversation completion interval" -msgstr "Intervalul OStatus de finalizare a conversaţiei" - -#: ../../mod/admin.php:670 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "Cât de des ar trebui, operatorul de sondaje, să verifice existența intrărilor noi din conversațiile OStatus? Aceasta poate fi o resursă de sarcini utile." - -#: ../../mod/admin.php:671 -msgid "Enable Diaspora support" -msgstr "Activează Suport Diaspora" - -#: ../../mod/admin.php:671 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Oferă o compatibilitate de reţea Diaspora, întegrată." - -#: ../../mod/admin.php:672 -msgid "Only allow Friendica contacts" -msgstr "Se permit doar contactele Friendica" - -#: ../../mod/admin.php:672 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Toate contactele trebuie să utilizeze protocoalele Friendica. Toate celelalte protocoale, integrate, de comunicaţii sunt dezactivate." - -#: ../../mod/admin.php:673 -msgid "Verify SSL" -msgstr "Verifică SSL" - -#: ../../mod/admin.php:673 -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 "Dacă doriţi, puteţi porni verificarea cu strictețe a certificatului. Aceasta va însemna că nu vă puteţi conecta (deloc) la site-uri SSL auto-semnate." - -#: ../../mod/admin.php:674 -msgid "Proxy user" -msgstr "Proxy user" - -#: ../../mod/admin.php:675 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: ../../mod/admin.php:676 -msgid "Network timeout" -msgstr "Timp de expirare rețea" - -#: ../../mod/admin.php:676 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valoare exprimată în secunde. Stabiliți la 0 pentru nelimitat (nu este recomandat)." - -#: ../../mod/admin.php:677 -msgid "Delivery interval" -msgstr "Interval de livrare" - -#: ../../mod/admin.php:677 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Întârzierea proceselor de livrare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. Recomandat: 4-5 pentru gazde comune, 2-3 pentru servere virtuale private, 0-1 pentru servere dedicate mari." - -#: ../../mod/admin.php:678 -msgid "Poll interval" -msgstr "Interval de Sondare" - -#: ../../mod/admin.php:678 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Întârzierea proceselor de sondare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. dacă este 0, utilizează intervalul de livrare." - -#: ../../mod/admin.php:679 -msgid "Maximum Load Average" -msgstr "Media Maximă de Încărcare" - -#: ../../mod/admin.php:679 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Încărcarea maximă a sistemului înainte ca livrarea şi procesele de sondare să fie amânate - implicit 50." - -#: ../../mod/admin.php:681 -msgid "Use MySQL full text engine" -msgstr "Utilizare motor text-complet MySQL" - -#: ../../mod/admin.php:681 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Activează motorul pentru text complet. Grăbeşte căutare - dar poate căuta, numai pentru minim 4 caractere." - -#: ../../mod/admin.php:682 -msgid "Suppress Language" -msgstr "Suprimă Limba" - -#: ../../mod/admin.php:682 -msgid "Suppress language information in meta information about a posting." -msgstr "Suprimă informaţiile despre limba din informaţiile meta ale unei postări." - -#: ../../mod/admin.php:683 -msgid "Suppress Tags" -msgstr "" - -#: ../../mod/admin.php:683 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" - -#: ../../mod/admin.php:684 -msgid "Path to item cache" -msgstr "Calea pentru elementul cache" - -#: ../../mod/admin.php:685 -msgid "Cache duration in seconds" -msgstr "Durata Cache în secunde" - -#: ../../mod/admin.php:685 -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 "Cât de mult ar trebui păstrate fișierele cache? Valoarea implicită este de 86400 de secunde (O zi). Pentru a dezactiva elementul cache, stabilește valoarea la -1." - -#: ../../mod/admin.php:686 -msgid "Maximum numbers of comments per post" -msgstr "Numărul maxim de comentarii per post" - -#: ../../mod/admin.php:686 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Câte comentarii ar trebui afișate pentru fiecare postare? Valoarea implicită este 100." - -#: ../../mod/admin.php:687 -msgid "Path for lock file" -msgstr "Cale pentru blocare fișiere" - -#: ../../mod/admin.php:688 -msgid "Temp path" -msgstr "Calea Temp" - -#: ../../mod/admin.php:689 -msgid "Base path to installation" -msgstr "Calea de bază pentru instalare" - -#: ../../mod/admin.php:690 -msgid "Disable picture proxy" -msgstr "" - -#: ../../mod/admin.php:690 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "" - -#: ../../mod/admin.php:691 -msgid "Enable old style pager" -msgstr "" - -#: ../../mod/admin.php:691 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "" - -#: ../../mod/admin.php:692 -msgid "Only search in tags" -msgstr "" - -#: ../../mod/admin.php:692 -msgid "On large systems the text search can slow down the system extremely." -msgstr "" - -#: ../../mod/admin.php:694 -msgid "New base url" -msgstr "URL de bază nou" - -#: ../../mod/admin.php:711 -msgid "Update has been marked successful" -msgstr "Actualizarea a fost marcată cu succes" - -#: ../../mod/admin.php:719 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Actualizarea structurii bazei de date %s a fost aplicată cu succes." - -#: ../../mod/admin.php:722 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "" - -#: ../../mod/admin.php:734 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Executarea %s a eșuat cu eroarea : %s" - -#: ../../mod/admin.php:737 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Actualizarea %s a fost aplicată cu succes." - -#: ../../mod/admin.php:741 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Actualizare %s nu a returnat nici-un status. Nu se știe dacă a reuşit." - -#: ../../mod/admin.php:743 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" - -#: ../../mod/admin.php:762 -msgid "No failed updates." -msgstr "Nici-o actualizare eșuată." - -#: ../../mod/admin.php:763 -msgid "Check database structure" -msgstr "Verifică structura bazei de date" - -#: ../../mod/admin.php:768 -msgid "Failed Updates" -msgstr "Actualizări Eșuate" - -#: ../../mod/admin.php:769 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Aceasta nu include actualizările dinainte de 1139, care nu a returnat nici-un status." - -#: ../../mod/admin.php:770 -msgid "Mark success (if update was manually applied)" -msgstr "Marcaţi ca și realizat (dacă actualizarea a fost aplicată manual)" - -#: ../../mod/admin.php:771 -msgid "Attempt to execute this update step automatically" -msgstr "Se încearcă executarea automată a acestei etape de actualizare" - -#: ../../mod/admin.php:803 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" - -#: ../../mod/admin.php:806 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$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\tThank you and welcome to %4$s." -msgstr "" - -#: ../../mod/admin.php:838 ../../include/user.php:413 -#, php-format -msgid "Registration details for %s" -msgstr "Detaliile de înregistrare pentru %s" - -#: ../../mod/admin.php:850 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s utilizator blocat/deblocat" -msgstr[1] "%s utilizatori blocați/deblocați" -msgstr[2] "%s de utilizatori blocați/deblocați" - -#: ../../mod/admin.php:857 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s utilizator şters" -msgstr[1] "%s utilizatori şterşi" -msgstr[2] "%s utilizatori şterşi" - -#: ../../mod/admin.php:896 -#, php-format -msgid "User '%s' deleted" -msgstr "Utilizator %s şters" - -#: ../../mod/admin.php:904 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utilizator %s deblocat" - -#: ../../mod/admin.php:904 -#, php-format -msgid "User '%s' blocked" -msgstr "Utilizator %s blocat" - -#: ../../mod/admin.php:999 -msgid "Add User" -msgstr "Adăugaţi Utilizator" - -#: ../../mod/admin.php:1000 -msgid "select all" -msgstr "selectează tot" - -#: ../../mod/admin.php:1001 -msgid "User registrations waiting for confirm" -msgstr "Înregistrarea utilizatorului, aşteaptă confirmarea" - -#: ../../mod/admin.php:1002 -msgid "User waiting for permanent deletion" -msgstr "Utilizatorul așteaptă să fie șters definitiv" - -#: ../../mod/admin.php:1003 -msgid "Request date" -msgstr "Data cererii" - -#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 -#: ../../mod/admin.php:1031 ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 -msgid "Email" -msgstr "Email" - -#: ../../mod/admin.php:1004 -msgid "No registrations." -msgstr "Nici-o înregistrare." - -#: ../../mod/admin.php:1006 -msgid "Deny" -msgstr "Respinge" - -#: ../../mod/admin.php:1010 -msgid "Site admin" -msgstr "Site admin" - -#: ../../mod/admin.php:1011 -msgid "Account expired" -msgstr "Cont expirat" - -#: ../../mod/admin.php:1014 -msgid "New User" -msgstr "Utilizator Nou" - -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 -msgid "Register date" -msgstr "Data înregistrare" - -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 -msgid "Last login" -msgstr "Ultimul login" - -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 -msgid "Last item" -msgstr "Ultimul element" - -#: ../../mod/admin.php:1015 -msgid "Deleted since" -msgstr "Șters din" - -#: ../../mod/admin.php:1016 ../../mod/settings.php:36 -msgid "Account" -msgstr "Cont" - -#: ../../mod/admin.php:1018 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Utilizatorii selectați vor fi ştersi!\\n\\nTot ce au postat acești utilizatori pe acest site, va fi şters permanent!\\n\\nConfirmați?" - -#: ../../mod/admin.php:1019 -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 "Utilizatorul {0} va fi şters!\\n\\nTot ce a postat acest utilizator pe acest site, va fi şters permanent!\\n\\nConfirmați?" - -#: ../../mod/admin.php:1029 -msgid "Name of the new user." -msgstr "Numele noului utilizator." - -#: ../../mod/admin.php:1030 -msgid "Nickname" -msgstr "Pseudonim" - -#: ../../mod/admin.php:1030 -msgid "Nickname of the new user." -msgstr "Pseudonimul noului utilizator." - -#: ../../mod/admin.php:1031 -msgid "Email address of the new user." -msgstr "Adresa de e-mail a utilizatorului nou." - -#: ../../mod/admin.php:1064 -#, php-format -msgid "Plugin %s disabled." -msgstr "Modulul %s a fost dezactivat." - -#: ../../mod/admin.php:1068 -#, php-format -msgid "Plugin %s enabled." -msgstr "Modulul %s a fost activat." - -#: ../../mod/admin.php:1078 ../../mod/admin.php:1294 -msgid "Disable" -msgstr "Dezactivează" - -#: ../../mod/admin.php:1080 ../../mod/admin.php:1296 -msgid "Enable" -msgstr "Activează" - -#: ../../mod/admin.php:1103 ../../mod/admin.php:1324 -msgid "Toggle" -msgstr "Comutare" - -#: ../../mod/admin.php:1111 ../../mod/admin.php:1334 -msgid "Author: " -msgstr "Autor: " - -#: ../../mod/admin.php:1112 ../../mod/admin.php:1335 -msgid "Maintainer: " -msgstr "Responsabil:" - -#: ../../mod/admin.php:1254 -msgid "No themes found." -msgstr "Nici-o temă găsită." - -#: ../../mod/admin.php:1316 -msgid "Screenshot" -msgstr "Screenshot" - -#: ../../mod/admin.php:1362 -msgid "[Experimental]" -msgstr "[Experimental]" - -#: ../../mod/admin.php:1363 -msgid "[Unsupported]" -msgstr "[Unsupported]" - -#: ../../mod/admin.php:1390 -msgid "Log settings updated." -msgstr "Jurnalul de configurări fost actualizat." - -#: ../../mod/admin.php:1446 -msgid "Clear" -msgstr "Curăţă" - -#: ../../mod/admin.php:1452 -msgid "Enable Debugging" -msgstr "Activează Depanarea" - -#: ../../mod/admin.php:1453 -msgid "Log file" -msgstr "Fişier Log " - -#: ../../mod/admin.php:1453 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Trebuie să fie inscriptibil pentru serverul web. Relativ la directoul dvs. superior Friendica." - -#: ../../mod/admin.php:1454 -msgid "Log level" -msgstr "Nivel log" - -#: ../../mod/admin.php:1504 -msgid "Close" -msgstr "Închide" - -#: ../../mod/admin.php:1510 -msgid "FTP Host" -msgstr "FTP Host" - -#: ../../mod/admin.php:1511 -msgid "FTP Path" -msgstr "FTP Path" - -#: ../../mod/admin.php:1512 -msgid "FTP User" -msgstr "FTP User" - -#: ../../mod/admin.php:1513 -msgid "FTP Password" -msgstr "FTP Parolă" - -#: ../../mod/network.php:142 -msgid "Search Results For:" -msgstr "Rezultatele Căutării Pentru:" - -#: ../../mod/network.php:185 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Eliminare termen" - -#: ../../mod/network.php:194 ../../mod/search.php:30 -#: ../../include/features.php:42 -msgid "Saved Searches" -msgstr "Căutări Salvate" - -#: ../../mod/network.php:195 ../../include/group.php:275 -msgid "add" -msgstr "add" - -#: ../../mod/network.php:356 -msgid "Commented Order" -msgstr "Ordonare Comentarii" - -#: ../../mod/network.php:359 -msgid "Sort by Comment Date" -msgstr "Sortare după Data Comentariului" - -#: ../../mod/network.php:362 -msgid "Posted Order" -msgstr "Ordonare Postări" - -#: ../../mod/network.php:365 -msgid "Sort by Post Date" -msgstr "Sortare după Data Postării" - -#: ../../mod/network.php:374 -msgid "Posts that mention or involve you" -msgstr "Postări ce vă menționează sau vă implică" - -#: ../../mod/network.php:380 -msgid "New" -msgstr "Nou" - -#: ../../mod/network.php:383 -msgid "Activity Stream - by date" -msgstr "Flux Activități - după dată" - -#: ../../mod/network.php:389 -msgid "Shared Links" -msgstr "Linkuri partajate" - -#: ../../mod/network.php:392 -msgid "Interesting Links" -msgstr "Legături Interesante" - -#: ../../mod/network.php:398 -msgid "Starred" -msgstr "Cu steluță" - -#: ../../mod/network.php:401 -msgid "Favourite Posts" -msgstr "Postări Favorite" - -#: ../../mod/network.php:463 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Atenție: Acest grup conţine %s membru dintr-o reţea nesigură." -msgstr[1] "Atenție: Acest grup conţine %s membrii dintr-o reţea nesigură." -msgstr[2] "Atenție: Acest grup conţine %s de membrii dintr-o reţea nesigură." - -#: ../../mod/network.php:466 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Mesajele private către acest grup sunt supuse riscului de divulgare publică." - -#: ../../mod/network.php:520 ../../mod/content.php:119 -msgid "No such group" -msgstr "Membrii" - -#: ../../mod/network.php:537 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "Grupul este gol" - -#: ../../mod/network.php:544 ../../mod/content.php:134 -msgid "Group: " -msgstr "Grup:" - -#: ../../mod/network.php:554 -msgid "Contact: " -msgstr "Contact: " - -#: ../../mod/network.php:556 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Mesajele private către această persoană sunt supuse riscului de divulgare publică." - -#: ../../mod/network.php:561 -msgid "Invalid contact." -msgstr "Invalid contact." - -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Prieteni cu %s" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Nici-un prieten de afișat." - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "Titlul evenimentului şi timpul de pornire sunt necesare." - -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l, F j" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Editează eveniment" - -#: ../../mod/events.php:335 ../../include/text.php:1647 -#: ../../include/text.php:1657 -msgid "link to source" -msgstr "link către sursă" - -#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80 -#: ../../view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Evenimente" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Crează eveniment nou" - -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Precedent" - -#: ../../mod/events.php:373 ../../mod/install.php:207 -msgid "Next" -msgstr "Next" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "ore:minute" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Detalii eveniment" - -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "Formatul este %s %s.Data de începere și Titlul sunt necesare." - -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Evenimentul Începe:" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Cerut" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "Data/ora de finalizare nu este cunoscută sau nu este relevantă" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "Evenimentul se Finalizează:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Reglați pentru fusul orar al vizitatorului" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Descriere:" - -#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648 -#: ../../include/bb2diaspora.php:170 ../../include/event.php:40 -msgid "Location:" -msgstr "Locaţie:" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Titlu:" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Partajează acest eveniment" - -#: ../../mod/content.php:437 ../../mod/content.php:740 -#: ../../mod/photos.php:1653 ../../object/Item.php:129 -#: ../../include/conversation.php:613 -msgid "Select" -msgstr "Select" - -#: ../../mod/content.php:471 ../../mod/content.php:852 -#: ../../mod/content.php:853 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../include/conversation.php:654 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vizualizaţi profilul %s @ %s" - -#: ../../mod/content.php:481 ../../mod/content.php:864 -#: ../../object/Item.php:340 ../../include/conversation.php:674 -#, php-format -msgid "%s from %s" -msgstr "%s de la %s" - -#: ../../mod/content.php:497 ../../include/conversation.php:690 -msgid "View in context" -msgstr "Vizualizare în context" - -#: ../../mod/content.php:603 ../../object/Item.php:387 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentariu" -msgstr[1] "%d comentarii" -msgstr[2] "%d comentarii" - -#: ../../mod/content.php:605 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../include/text.php:1972 -msgid "comment" -msgid_plural "comments" -msgstr[0] "comentariu" -msgstr[1] "comentarii" -msgstr[2] "comentarii" - -#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390 -#: ../../include/contact_widgets.php:205 -msgid "show more" -msgstr "mai mult" - -#: ../../mod/content.php:620 ../../mod/photos.php:1359 -#: ../../object/Item.php:116 -msgid "Private Message" -msgstr " Mesaj Privat" - -#: ../../mod/content.php:684 ../../mod/photos.php:1542 -#: ../../object/Item.php:231 -msgid "I like this (toggle)" -msgstr "I like asta (toggle)" - -#: ../../mod/content.php:684 ../../object/Item.php:231 -msgid "like" -msgstr "like" - -#: ../../mod/content.php:685 ../../mod/photos.php:1543 -#: ../../object/Item.php:232 -msgid "I don't like this (toggle)" -msgstr "nu îmi place aceasta (comutare)" - -#: ../../mod/content.php:685 ../../object/Item.php:232 -msgid "dislike" -msgstr "dislike" - -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "Share this" -msgstr "Partajează" - -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "share" -msgstr "partajează" - -#: ../../mod/content.php:707 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 -#: ../../object/Item.php:675 -msgid "This is you" -msgstr "Acesta eşti tu" - -#: ../../mod/content.php:709 ../../mod/photos.php:1564 -#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:750 -#: ../../object/Item.php:361 ../../object/Item.php:677 -msgid "Comment" -msgstr "Comentariu" - -#: ../../mod/content.php:711 ../../object/Item.php:679 -msgid "Bold" -msgstr "Bold" - -#: ../../mod/content.php:712 ../../object/Item.php:680 -msgid "Italic" -msgstr "Italic" - -#: ../../mod/content.php:713 ../../object/Item.php:681 -msgid "Underline" -msgstr "Subliniat" - -#: ../../mod/content.php:714 ../../object/Item.php:682 -msgid "Quote" -msgstr "Citat" - -#: ../../mod/content.php:715 ../../object/Item.php:683 -msgid "Code" -msgstr "Code" - -#: ../../mod/content.php:716 ../../object/Item.php:684 -msgid "Image" -msgstr "Imagine" - -#: ../../mod/content.php:717 ../../object/Item.php:685 -msgid "Link" -msgstr "Link" - -#: ../../mod/content.php:718 ../../object/Item.php:686 -msgid "Video" -msgstr "Video" - -#: ../../mod/content.php:719 ../../mod/editpost.php:145 -#: ../../mod/photos.php:1566 ../../mod/photos.php:1610 -#: ../../mod/photos.php:1698 ../../object/Item.php:687 -#: ../../include/conversation.php:1126 -msgid "Preview" -msgstr "Previzualizare" - -#: ../../mod/content.php:728 ../../mod/settings.php:676 -#: ../../object/Item.php:120 -msgid "Edit" -msgstr "Edit" - -#: ../../mod/content.php:753 ../../object/Item.php:195 -msgid "add star" -msgstr "add stea" - -#: ../../mod/content.php:754 ../../object/Item.php:196 -msgid "remove star" -msgstr "înlătură stea" - -#: ../../mod/content.php:755 ../../object/Item.php:197 -msgid "toggle star status" -msgstr "comută status steluță" - -#: ../../mod/content.php:758 ../../object/Item.php:200 -msgid "starred" -msgstr "cu steluță" - -#: ../../mod/content.php:759 ../../object/Item.php:220 -msgid "add tag" -msgstr "add tag" - -#: ../../mod/content.php:763 ../../object/Item.php:133 -msgid "save to folder" -msgstr "salvează în directorul" - -#: ../../mod/content.php:854 ../../object/Item.php:328 -msgid "to" -msgstr "către" - -#: ../../mod/content.php:855 ../../object/Item.php:330 -msgid "Wall-to-Wall" -msgstr "Perete-prin-Perete" - -#: ../../mod/content.php:856 ../../object/Item.php:331 -msgid "via Wall-To-Wall:" -msgstr "via Perete-Prin-Perete" - -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Șterge Contul Meu" - -#: ../../mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Aceasta va elimina complet contul dvs. Odată ce a fostă, această acțiune este nerecuperabilă." - -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Vă rugăm să introduceţi parola dvs. pentru verificare:" - -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" -msgstr "Serverul de Comunicații Friendica - Instalare" - -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr "Nu se poate face conectarea cu baza de date." - -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "Nu se poate crea tabelul." - -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "Baza dvs. de date Friendica, a fost instalată." - -#: ../../mod/install.php:138 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Este posibil să fie nevoie să importați manual fişierul \"database.sql\" folosind phpmyadmin sau mysql." - -#: ../../mod/install.php:139 ../../mod/install.php:206 -#: ../../mod/install.php:525 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Vă rugăm să consultaţi fişierul \"INSTALL.txt\"." - -#: ../../mod/install.php:203 -msgid "System check" -msgstr "Verificare sistem" - -#: ../../mod/install.php:208 -msgid "Check again" -msgstr "Reverificare" - -#: ../../mod/install.php:227 -msgid "Database connection" -msgstr "Conexiunea cu baza de date" - -#: ../../mod/install.php:228 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Pentru a instala Friendica trebuie să știm cum să vă conectaţi la baza dumneavoastră de date." - -#: ../../mod/install.php:229 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Vă rugăm să vă contactaţi furnizorul găzduirii sau administratorul de site dacă aveţi întrebări despre aceste configurări." - -#: ../../mod/install.php:230 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Baza de date specificată mai jos ar trebui să existe deja. Dacă nu, vă rugăm s-o creați înainte de a continua." - -#: ../../mod/install.php:234 -msgid "Database Server Name" -msgstr "Nume Server Bază de date" - -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Nume Autentificare Bază de date" - -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Parola de Autentificare Bază de date" - -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Nume Bază de date" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "Adresa de email a administratorului de site" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Adresa de email a contului dvs. trebuie să corespundă cu aceasta pentru a utiliza panoul de administrare web." - -#: ../../mod/install.php:242 ../../mod/install.php:280 -msgid "Please select a default timezone for your website" -msgstr "Vă rugăm să selectaţi un fus orar prestabilit pentru site-ul dvs." - -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "Configurări Site" - -#: ../../mod/install.php:321 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Nu s-a putut găsi o versiune a liniei de comandă PHP în CALEA serverului web." - -#: ../../mod/install.php:322 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "Dacă nu aveţi o versiune a liniei de comandă PHP instalată pe server, nu veţi putea să efectuaţi interogări ciclice în fundal prin funcția cron. Consultaţi 'Activarea sarcinilor programate' " - -#: ../../mod/install.php:326 -msgid "PHP executable path" -msgstr "Calea de executare PHP" - -#: ../../mod/install.php:326 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Introduceţi calea completă către executabilul php. Puteţi lăsa acesta necompletată pentru a continua instalarea." - -#: ../../mod/install.php:331 -msgid "Command line PHP" -msgstr "linie comandă PHP" - -#: ../../mod/install.php:340 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "Executabilul PHP nu este de formă binară php-cli (ar putea fi versiunea cgi-fgci)" - -#: ../../mod/install.php:341 -msgid "Found PHP version: " -msgstr "Versiune PHP identificată:" - -#: ../../mod/install.php:343 -msgid "PHP cli binary" -msgstr "Versiune binară PHP-cli" - -#: ../../mod/install.php:354 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Versiunea liniei de comandă PHP de pe sistemul dumneavoastră nu are comanda \"register_argc_argv\" activată." - -#: ../../mod/install.php:355 -msgid "This is required for message delivery to work." -msgstr "Aceasta este necesară pentru a funcționa livrarea de mesaje." - -#: ../../mod/install.php:357 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/install.php:378 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Eroare: funcția \"openssl_pkey_new\" de pe acest sistem nu este capabilă să genereze chei de criptare" - -#: ../../mod/install.php:379 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Dacă rulează pe Windows, vă rugăm să consultaţi \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/install.php:381 -msgid "Generate encryption keys" -msgstr "Generare chei de criptare" - -#: ../../mod/install.php:388 -msgid "libCurl PHP module" -msgstr "Modulul PHP libCurl" - -#: ../../mod/install.php:389 -msgid "GD graphics PHP module" -msgstr "Modulul PHP grafică GD" - -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" -msgstr "Modulul PHP OpenSSL" - -#: ../../mod/install.php:391 -msgid "mysqli PHP module" -msgstr "Modulul PHP mysqli" - -#: ../../mod/install.php:392 -msgid "mb_string PHP module" -msgstr "Modulul PHP mb_string" - -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" -msgstr "Modulul Apache mod_rewrite" - -#: ../../mod/install.php:397 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Eroare: Modulul mod-rewrite al serverulului Apache este necesar, dar nu este instalat." - -#: ../../mod/install.php:405 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Eroare: modulul PHP libCURL este necesar dar nu este instalat." - -#: ../../mod/install.php:409 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Eroare: Modulul PHP grafică GD cu suport JPEG, este necesar dar nu este instalat." - -#: ../../mod/install.php:413 -msgid "Error: openssl PHP module required but not installed." -msgstr "Eroare: modulul PHP libCURL este necesar dar nu este instalat." - -#: ../../mod/install.php:417 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Eroare: modulul PHP mysqli este necesar dar nu este instalat." - -#: ../../mod/install.php:421 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Eroare: modulul PHP mb_string este necesar dar nu este instalat." - -#: ../../mod/install.php:438 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "Expertul de instalare web trebuie să poată crea un fișier numit \".htconfig.php\" în dosarul superior al serverului dvs. web, şi nu poate face acest lucru." - -#: ../../mod/install.php:439 -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 "Aceasta este cel mai adesea o configurare de permisiune, deoarece serverul web nu ar putea fi capabil să scrie fişiere în dosarul dumneavoastră - chiar dacă dvs. puteţi." - -#: ../../mod/install.php:440 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "La finalul acestei proceduri, vă vom oferi un text pentru a-l salva într-un fişier numit .htconfig.php din dosarul dvs. superior Friendica." - -#: ../../mod/install.php:441 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Alternativ, puteţi omite această procedură şi să efectuaţi o instalare manuală. Vă rugăm să consultaţi fişierul \"INSTALL.txt\" pentru instrucțiuni." - -#: ../../mod/install.php:444 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php este inscriptibil" - -#: ../../mod/install.php:454 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica utilizează motorul de șablon Smarty3 pentru a prelucra vizualizările sale web. Smarty3 compilează şabloane în PHP pentru a grăbi prelucrarea." - -#: ../../mod/install.php:455 -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 "Pentru a stoca aceste şabloane compilate, serverul de web trebuie să aibă acces la scriere pentru directorul view/smarty3/ din dosarul de nivel superior Friendica." - -#: ../../mod/install.php:456 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Vă rugăm să vă asiguraţi că utilizatorul pe care rulează serverul dvs. web (de ex. www-date) are acces la scriere pentru acest dosar." - -#: ../../mod/install.php:457 -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 "Notă: ca o măsură de securitate, ar trebui să dați serverului web, acces de scriere numai pentru view/smarty3/--dar nu și fișierelor de șablon (.tpl) pe care le conţine." - -#: ../../mod/install.php:460 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 este inscriptibil" - -#: ../../mod/install.php:472 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "Funcția de rescriere Url rewrite din .htaccess nu funcţionează. Verificaţi-vă configuraţia serverului." - -#: ../../mod/install.php:474 -msgid "Url rewrite is working" -msgstr "Funcția de rescriere Url rewrite, funcţionează." - -#: ../../mod/install.php:484 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Fișierul de configurare baza de date \".htconfig.php\", nu a putut fi scris. Vă rugăm să utilizaţi textul închis pentru a crea un fişier de configurare în rădăcina serverului dvs. web." - -#: ../../mod/install.php:523 -msgid "

    What next

    " -msgstr "

    Ce urmează

    " - -#: ../../mod/install.php:524 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT: Va trebui să configurați [manual] o sarcină programată pentru operatorul de sondaje." - -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Numărul de mesaje, zilnice de perete, pentru %s a fost depăşit. Mesajul a eşuat." - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Imposibil de verificat locaţia dvs. de reşedinţă." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Nici-un destinatar." - -#: ../../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 "Dacă doriţi ca %s să vă răspundă, vă rugăm să verificaţi dacă configurările de confidenţialitate de pe site-ul dumneavoastră, permite mail-uri private de la expeditori necunoscuți." - -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "Ajutor:" - -#: ../../mod/help.php:84 ../../include/nav.php:114 -msgid "Help" -msgstr "Ajutor" - -#: ../../mod/help.php:90 ../../index.php:256 -msgid "Not Found" -msgstr "Negăsit" - -#: ../../mod/help.php:93 ../../index.php:259 -msgid "Page not found." -msgstr "Pagină negăsită." - -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s îi urează bun venit lui %2$s" - -#: ../../mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Bine aţi venit la %s" - -#: ../../mod/wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Ne pare rău, este posibil ca fișierul pe care doriți să-l încărcați, este mai mare decât permite configuraţia PHP" - -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "Sau - ați încercat să încărcaţi un fişier gol?" - -#: ../../mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Fişierul depăşeşte dimensiunea limită de %d" - -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Încărcarea fișierului a eşuat." - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Potrivire Profil" - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Nu există cuvinte cheie pentru a le potrivi. Vă rugăm să adăugaţi cuvinte cheie la profilul dvs implicit." - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "are interese pentru:" - -#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568 -#: ../../include/contact_widgets.php:10 -msgid "Connect" -msgstr "Conectare" - -#: ../../mod/share.php:44 -msgid "link" -msgstr "link" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Indisponibil." - -#: ../../mod/community.php:32 ../../include/nav.php:129 -#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Comunitate" - -#: ../../mod/community.php:62 ../../mod/community.php:71 -#: ../../mod/search.php:168 ../../mod/search.php:192 -msgid "No results." -msgstr "Nici-un rezultat." - -#: ../../mod/settings.php:29 ../../mod/photos.php:80 -msgid "everybody" -msgstr "oricine" - -#: ../../mod/settings.php:41 -msgid "Additional features" -msgstr "Caracteristici suplimentare" - -#: ../../mod/settings.php:46 -msgid "Display" -msgstr "Afișare" - -#: ../../mod/settings.php:52 ../../mod/settings.php:780 -msgid "Social Networks" -msgstr "Rețele Sociale" - -#: ../../mod/settings.php:62 ../../include/nav.php:170 -msgid "Delegations" -msgstr "Delegații" - -#: ../../mod/settings.php:67 -msgid "Connected apps" -msgstr "Aplicații Conectate" - -#: ../../mod/settings.php:72 ../../mod/uexport.php:85 -msgid "Export personal data" -msgstr "Exportare date personale" - -#: ../../mod/settings.php:77 -msgid "Remove account" -msgstr "Ștergere cont" - -#: ../../mod/settings.php:129 -msgid "Missing some important data!" -msgstr "Lipsesc unele date importante!" - -#: ../../mod/settings.php:238 -msgid "Failed to connect with email account using the settings provided." -msgstr "A eşuat conectarea cu, contul de email, folosind configurările furnizate." - -#: ../../mod/settings.php:243 -msgid "Email settings updated." -msgstr "Configurările de email au fost actualizate." - -#: ../../mod/settings.php:258 -msgid "Features updated" -msgstr "Caracteristici actualizate" - -#: ../../mod/settings.php:321 -msgid "Relocate message has been send to your contacts" -msgstr "Mesajul despre mutare, a fost trimis către contactele dvs." - -#: ../../mod/settings.php:335 -msgid "Passwords do not match. Password unchanged." -msgstr "Parolele nu coincid. Parolă neschimbată." - -#: ../../mod/settings.php:340 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Parolele necompletate nu sunt permise. Parolă neschimbată." - -#: ../../mod/settings.php:348 -msgid "Wrong password." -msgstr "Parolă greșită." - -#: ../../mod/settings.php:359 -msgid "Password changed." -msgstr "Parola a fost schimbată." - -#: ../../mod/settings.php:361 -msgid "Password update failed. Please try again." -msgstr "Actualizarea parolei a eșuat. Vă rugăm să reîncercați." - -#: ../../mod/settings.php:428 -msgid " Please use a shorter name." -msgstr "Vă rugăm să utilizaţi un nume mai scurt." - -#: ../../mod/settings.php:430 -msgid " Name too short." -msgstr "Numele este prea scurt." - -#: ../../mod/settings.php:439 -msgid "Wrong Password" -msgstr "Parolă Greșită" - -#: ../../mod/settings.php:444 -msgid " Not valid email." -msgstr "Nu este un email valid." - -#: ../../mod/settings.php:450 -msgid " Cannot change to that email." -msgstr "Nu poate schimba cu acest email." - -#: ../../mod/settings.php:506 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Forumul privat nu are permisiuni de confidenţialitate. Se folosește confidențialitatea implicită de grup." - -#: ../../mod/settings.php:510 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Forumul Privat nu are permisiuni de confidenţialitate şi nici o confidențialitate implicită de grup." - -#: ../../mod/settings.php:540 -msgid "Settings updated." -msgstr "Configurări actualizate." - -#: ../../mod/settings.php:613 ../../mod/settings.php:639 -#: ../../mod/settings.php:675 -msgid "Add application" -msgstr "Adăugare aplicaţie" - -#: ../../mod/settings.php:617 ../../mod/settings.php:643 -msgid "Consumer Key" -msgstr "Cheia Utilizatorului" - -#: ../../mod/settings.php:618 ../../mod/settings.php:644 -msgid "Consumer Secret" -msgstr "Cheia Secretă a Utilizatorului" - -#: ../../mod/settings.php:619 ../../mod/settings.php:645 -msgid "Redirect" -msgstr "Redirecţionare" - -#: ../../mod/settings.php:620 ../../mod/settings.php:646 -msgid "Icon url" -msgstr "URL pictogramă" - -#: ../../mod/settings.php:631 -msgid "You can't edit this application." -msgstr "Nu puteți edita această aplicaţie." - -#: ../../mod/settings.php:674 -msgid "Connected Apps" -msgstr "Aplicații Conectate" - -#: ../../mod/settings.php:678 -msgid "Client key starts with" -msgstr "Cheia clientului începe cu" - -#: ../../mod/settings.php:679 -msgid "No name" -msgstr "Fără nume" - -#: ../../mod/settings.php:680 -msgid "Remove authorization" -msgstr "Eliminare autorizare" - -#: ../../mod/settings.php:692 -msgid "No Plugin settings configured" -msgstr "Nici-o configurare stabilită pentru modul" - -#: ../../mod/settings.php:700 -msgid "Plugin Settings" -msgstr "Configurări Modul" - -#: ../../mod/settings.php:714 -msgid "Off" -msgstr "Off" - -#: ../../mod/settings.php:714 -msgid "On" -msgstr "On" - -#: ../../mod/settings.php:722 -msgid "Additional Features" -msgstr "Caracteristici Suplimentare" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Suportul încorporat pentru conectivitatea %s este %s" - -#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -msgid "enabled" -msgstr "activat" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -msgid "disabled" -msgstr "dezactivat" - -#: ../../mod/settings.php:737 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:773 -msgid "Email access is disabled on this site." -msgstr "Accesul de email este dezactivat pe acest site." - -#: ../../mod/settings.php:785 -msgid "Email/Mailbox Setup" -msgstr "Configurare E-Mail/Căsuță poştală" - -#: ../../mod/settings.php:786 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Dacă doriţi să comunicaţi cu contactele de email folosind acest serviciu (opţional), vă rugăm să precizaţi cum doriți să vă conectaţi la căsuța dvs. poştală." - -#: ../../mod/settings.php:787 -msgid "Last successful email check:" -msgstr "Ultima verificare, cu succes, a email-ului:" - -#: ../../mod/settings.php:789 -msgid "IMAP server name:" -msgstr "Nume server IMAP:" - -#: ../../mod/settings.php:790 -msgid "IMAP port:" -msgstr "IMAP port:" - -#: ../../mod/settings.php:791 -msgid "Security:" -msgstr "Securitate:" - -#: ../../mod/settings.php:791 ../../mod/settings.php:796 -msgid "None" -msgstr "Nimic" - -#: ../../mod/settings.php:792 -msgid "Email login name:" -msgstr "Nume email autentificare:" - -#: ../../mod/settings.php:793 -msgid "Email password:" -msgstr "Parolă de e-mail:" - -#: ../../mod/settings.php:794 -msgid "Reply-to address:" -msgstr "Adresă pentru răspuns:" - -#: ../../mod/settings.php:795 -msgid "Send public posts to all email contacts:" -msgstr "Trimiteți postările publice la toate contactele de email:" - -#: ../../mod/settings.php:796 -msgid "Action after import:" -msgstr "Acţiune după importare:" - -#: ../../mod/settings.php:796 -msgid "Mark as seen" -msgstr "Marcați ca și vizualizat" - -#: ../../mod/settings.php:796 -msgid "Move to folder" -msgstr "Mutare în dosar" - -#: ../../mod/settings.php:797 -msgid "Move to folder:" -msgstr "Mutare în dosarul:" - -#: ../../mod/settings.php:878 -msgid "Display Settings" -msgstr "Preferințe Ecran" - -#: ../../mod/settings.php:884 ../../mod/settings.php:899 -msgid "Display Theme:" -msgstr "Temă Afişaj:" - -#: ../../mod/settings.php:885 -msgid "Mobile Theme:" -msgstr "Temă pentru Mobile:" - -#: ../../mod/settings.php:886 -msgid "Update browser every xx seconds" -msgstr "Actualizare browser la fiecare fiecare xx secunde" - -#: ../../mod/settings.php:886 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minim 10 secunde, fără un maxim" - -#: ../../mod/settings.php:887 -msgid "Number of items to display per page:" -msgstr "Numărul de elemente de afişat pe pagină:" - -#: ../../mod/settings.php:887 ../../mod/settings.php:888 -msgid "Maximum of 100 items" -msgstr "Maxim 100 de elemente" - -#: ../../mod/settings.php:888 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Numărul de elemente de afişat pe pagină atunci când se vizualizează de pe dispozitivul mobil:" - -#: ../../mod/settings.php:889 -msgid "Don't show emoticons" -msgstr "Nu afișa emoticoane" - -#: ../../mod/settings.php:890 -msgid "Don't show notices" -msgstr "Nu afișa notificări" - -#: ../../mod/settings.php:891 -msgid "Infinite scroll" -msgstr "Derulare infinită" - -#: ../../mod/settings.php:892 -msgid "Automatic updates only at the top of the network page" -msgstr "Actualizări automate doar la partea superioară a paginii de rețea " - -#: ../../mod/settings.php:969 -msgid "User Types" -msgstr "Tipuri de Utilizator" - -#: ../../mod/settings.php:970 -msgid "Community Types" -msgstr "Tipuri de Comunitare" - -#: ../../mod/settings.php:971 -msgid "Normal Account Page" -msgstr "Pagină de Cont Simplu" - -#: ../../mod/settings.php:972 -msgid "This account is a normal personal profile" -msgstr "Acest cont este un profil personal normal" - -#: ../../mod/settings.php:975 -msgid "Soapbox Page" -msgstr "Pagină Soapbox" - -#: ../../mod/settings.php:976 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Aprobă automat toate conexiunile/solicitările de prietenie ca și fani cu drepturi doar pentru vizualizare" - -#: ../../mod/settings.php:979 -msgid "Community Forum/Celebrity Account" -msgstr "Cont Comunitate Forum/Celebritate" - -#: ../../mod/settings.php:980 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Aprobă automat toate conexiunile/solicitările de prietenie ca și fani cu drepturi doar pentru vizualizare" - -#: ../../mod/settings.php:983 -msgid "Automatic Friend Page" -msgstr "Pagină Prietenie Automată" - -#: ../../mod/settings.php:984 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Aprobă automat toate conexiunile/solicitările de prietenie ca și prieteni" - -#: ../../mod/settings.php:987 -msgid "Private Forum [Experimental]" -msgstr "Forum Privat [Experimental]" - -#: ../../mod/settings.php:988 -msgid "Private forum - approved members only" -msgstr "Forum Privat - numai membrii aprobați" - -#: ../../mod/settings.php:1000 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:1000 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opţional) Permite acest OpenID să se conecteze la acest cont." - -#: ../../mod/settings.php:1010 -msgid "Publish your default profile in your local site directory?" -msgstr "Publicați profilul dvs. implicit în directorul site-ului dvs. local?" - -#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 -#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 -#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 -#: ../../mod/register.php:234 ../../mod/profiles.php:661 -#: ../../mod/profiles.php:665 ../../mod/api.php:106 -msgid "No" -msgstr "NU" - -#: ../../mod/settings.php:1016 -msgid "Publish your default profile in the global social directory?" -msgstr "Publicați profilul dvs. implicit în directorul social global?" - -#: ../../mod/settings.php:1024 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Ascundeţi lista dvs. de contacte/prieteni de vizitatorii profilului dvs. implicit?" - -#: ../../mod/settings.php:1028 ../../include/conversation.php:1057 -msgid "Hide your profile details from unknown viewers?" -msgstr "Ascundeţi detaliile profilului dvs. de vizitatorii necunoscuți?" - -#: ../../mod/settings.php:1028 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" - -#: ../../mod/settings.php:1033 -msgid "Allow friends to post to your profile page?" -msgstr "Permiteți prietenilor să posteze pe pagina dvs. de profil ?" - -#: ../../mod/settings.php:1039 -msgid "Allow friends to tag your posts?" -msgstr "Permiteți prietenilor să vă eticheteze postările?" - -#: ../../mod/settings.php:1045 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Ne permiteți să vă recomandăm ca și potențial prieten pentru membrii noi?" - -#: ../../mod/settings.php:1051 -msgid "Permit unknown people to send you private mail?" -msgstr "Permiteți persoanelor necunoscute să vă trimită mesaje private?" - -#: ../../mod/settings.php:1059 -msgid "Profile is not published." -msgstr "Profilul nu este publicat." - -#: ../../mod/settings.php:1067 -msgid "Your Identity Address is" -msgstr "Adresa Dvs. de Identitate este" - -#: ../../mod/settings.php:1078 -msgid "Automatically expire posts after this many days:" -msgstr "Postările vor expira automat după atâtea zile:" - -#: ../../mod/settings.php:1078 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Dacă se lasă necompletat, postările nu vor expira. Postările expirate vor fi şterse" - -#: ../../mod/settings.php:1079 -msgid "Advanced expiration settings" -msgstr "Configurări Avansate de Expirare" - -#: ../../mod/settings.php:1080 -msgid "Advanced Expiration" -msgstr "Expirare Avansată" - -#: ../../mod/settings.php:1081 -msgid "Expire posts:" -msgstr "Postările expiră:" - -#: ../../mod/settings.php:1082 -msgid "Expire personal notes:" -msgstr "Notele personale expiră:" - -#: ../../mod/settings.php:1083 -msgid "Expire starred posts:" -msgstr "Postările favorite expiră:" - -#: ../../mod/settings.php:1084 -msgid "Expire photos:" -msgstr "Fotografiile expiră:" - -#: ../../mod/settings.php:1085 -msgid "Only expire posts by others:" -msgstr "Expiră numai postările altora:" - -#: ../../mod/settings.php:1111 -msgid "Account Settings" -msgstr "Configurări Cont" - -#: ../../mod/settings.php:1119 -msgid "Password Settings" -msgstr "Configurări Parolă" - -#: ../../mod/settings.php:1120 -msgid "New Password:" -msgstr "Parola Nouă:" - -#: ../../mod/settings.php:1121 -msgid "Confirm:" -msgstr "Confirm:" - -#: ../../mod/settings.php:1121 -msgid "Leave password fields blank unless changing" -msgstr "Lăsaţi câmpurile, pentru parolă, goale dacă nu doriți să modificați" - -#: ../../mod/settings.php:1122 -msgid "Current Password:" -msgstr "Parola Curentă:" - -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 -msgid "Your current password to confirm the changes" -msgstr "Parola curentă pentru a confirma modificările" - -#: ../../mod/settings.php:1123 -msgid "Password:" -msgstr "Parola:" - -#: ../../mod/settings.php:1127 -msgid "Basic Settings" -msgstr "Configurări de Bază" - -#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "Nume complet:" - -#: ../../mod/settings.php:1129 -msgid "Email Address:" -msgstr "Adresa de email:" - -#: ../../mod/settings.php:1130 -msgid "Your Timezone:" -msgstr "Fusul dvs. orar:" - -#: ../../mod/settings.php:1131 -msgid "Default Post Location:" -msgstr "Locația Implicită pentru Postări" - -#: ../../mod/settings.php:1132 -msgid "Use Browser Location:" -msgstr "Folosește Locația Navigatorului:" - -#: ../../mod/settings.php:1135 -msgid "Security and Privacy Settings" -msgstr "Configurări de Securitate și Confidențialitate" - -#: ../../mod/settings.php:1137 -msgid "Maximum Friend Requests/Day:" -msgstr "Solicitări de Prietenie, Maxime/Zi" - -#: ../../mod/settings.php:1137 ../../mod/settings.php:1167 -msgid "(to prevent spam abuse)" -msgstr "(Pentru a preveni abuzul de tip spam)" - -#: ../../mod/settings.php:1138 -msgid "Default Post Permissions" -msgstr "Permisiuni Implicite Postări" - -#: ../../mod/settings.php:1139 -msgid "(click to open/close)" -msgstr "(apăsați pentru a deschide/închide)" - -#: ../../mod/settings.php:1148 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1519 -msgid "Show to Groups" -msgstr "Afișare pentru Grupuri" - -#: ../../mod/settings.php:1149 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1520 -msgid "Show to Contacts" -msgstr "Afişează la Contacte" - -#: ../../mod/settings.php:1150 -msgid "Default Private Post" -msgstr "Postare Privată Implicită" - -#: ../../mod/settings.php:1151 -msgid "Default Public Post" -msgstr "Postare Privată Implicită" - -#: ../../mod/settings.php:1155 -msgid "Default Permissions for New Posts" -msgstr "Permisiuni Implicite pentru Postările Noi" - -#: ../../mod/settings.php:1167 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum de mesaje private pe zi, de la persoanele necunoscute:" - -#: ../../mod/settings.php:1170 -msgid "Notification Settings" -msgstr "Configurări de Notificare" - -#: ../../mod/settings.php:1171 -msgid "By default post a status message when:" -msgstr "Implicit, postează un mesaj de stare atunci când:" - -#: ../../mod/settings.php:1172 -msgid "accepting a friend request" -msgstr "se acceptă o solicitare de prietenie" - -#: ../../mod/settings.php:1173 -msgid "joining a forum/community" -msgstr "se aderă la un forum/o comunitate" - -#: ../../mod/settings.php:1174 -msgid "making an interesting profile change" -msgstr "se face o modificări de profilinteresantă" - -#: ../../mod/settings.php:1175 -msgid "Send a notification email when:" -msgstr "Trimiteți o notificare email atunci când:" - -#: ../../mod/settings.php:1176 -msgid "You receive an introduction" -msgstr "Primiți o introducere" - -#: ../../mod/settings.php:1177 -msgid "Your introductions are confirmed" -msgstr "Introducerile dvs. sunt confirmate" - -#: ../../mod/settings.php:1178 -msgid "Someone writes on your profile wall" -msgstr "Cineva scrie pe perete dvs. de profil" - -#: ../../mod/settings.php:1179 -msgid "Someone writes a followup comment" -msgstr "Cineva scrie un comentariu de urmărire" - -#: ../../mod/settings.php:1180 -msgid "You receive a private message" -msgstr "Primiți un mesaj privat" - -#: ../../mod/settings.php:1181 -msgid "You receive a friend suggestion" -msgstr "Primiți o sugestie de prietenie" - -#: ../../mod/settings.php:1182 -msgid "You are tagged in a post" -msgstr "Sunteți etichetat într-o postare" - -#: ../../mod/settings.php:1183 -msgid "You are poked/prodded/etc. in a post" -msgstr "Sunteți abordat/incitat/etc. într-o postare" - -#: ../../mod/settings.php:1185 -msgid "Text-only notification emails" -msgstr "" - -#: ../../mod/settings.php:1187 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: ../../mod/settings.php:1189 -msgid "Advanced Account/Page Type Settings" -msgstr "Configurări Avansate Cont/Tip Pagină" - -#: ../../mod/settings.php:1190 -msgid "Change the behaviour of this account for special situations" -msgstr "Modificați comportamentul acestui cont pentru situațiile speciale" - -#: ../../mod/settings.php:1193 -msgid "Relocate" -msgstr "Mutare" - -#: ../../mod/settings.php:1194 -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 "Dacă aţi mutat acest profil dintr-un alt server, şi unele dintre contactele dvs. nu primesc actualizările dvs., încercaţi să apăsați acest buton." - -#: ../../mod/settings.php:1195 -msgid "Resend relocate message to contacts" -msgstr "Retrimiteți contactelor, mesajul despre mutare" - -#: ../../mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Această introducere a fost deja acceptată" - -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Locaţia profilului nu este validă sau nu conţine informaţii de profil." - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Atenţie: locaţia profilului nu are un nume de deţinător identificabil." - -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Atenţie: locaţia profilului nu are fotografie de profil." - -#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 -#, 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 parametru necesar nu a fost găsit în locaţia specificată" -msgstr[1] "%d parametrii necesari nu au fost găsiţi în locaţia specificată" -msgstr[2] "%d de parametrii necesari nu au fost găsiţi în locaţia specificată" - -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Prezentare completă." - -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Eroare de protocol nerecuperabilă." - -#: ../../mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profil nedisponibil." - -#: ../../mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s a primit, pentru azi, prea multe solicitări de conectare." - -#: ../../mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Au fost invocate măsuri de protecţie anti-spam." - -#: ../../mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Prietenii sunt rugaţi să reîncerce peste 24 de ore." - -#: ../../mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Invalid locator" - -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Adresă mail invalidă." - -#: ../../mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Acest cont nu a fost configurat pentru email. Cererea a eşuat." - -#: ../../mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Imposibil să vă soluţionăm numele pentru locaţia sugerată." - -#: ../../mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Aţi fost deja prezentat aici" - -#: ../../mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Se pare că sunteţi deja prieten cu %s." - -#: ../../mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Profil URL invalid." - -#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Profil URL invalid." - -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Prezentarea dumneavoastră a fost trimisă." - -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Vă rugăm să vă autentificați pentru a confirma prezentarea." - -#: ../../mod/dfrn_request.php:660 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Autentificat curent cu identitate eronată. Vă rugăm să vă autentificați pentru acest profil." - -#: ../../mod/dfrn_request.php:671 -msgid "Hide this contact" -msgstr "Ascunde acest contact" - -#: ../../mod/dfrn_request.php:674 -#, php-format -msgid "Welcome home %s." -msgstr "Bine ai venit %s." - -#: ../../mod/dfrn_request.php:675 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Vă rugăm să vă confirmaţi solicitarea de introducere/conectare la %s." - -#: ../../mod/dfrn_request.php:676 -msgid "Confirm" -msgstr "Confirm" - -#: ../../mod/dfrn_request.php:804 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Vă rugăm să vă introduceţi \"Adresa de Identitate\" din una din următoarele reţele de socializare acceptate:" - -#: ../../mod/dfrn_request.php:824 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "Dacă nu sunteţi încă un membru al reţelei online de socializare gratuite, urmați acest link pentru a găsi un site public Friendica şi alăturați-vă nouă, chiar astăzi." - -#: ../../mod/dfrn_request.php:827 -msgid "Friend/Connection Request" -msgstr "Solicitare Prietenie/Conectare" - -#: ../../mod/dfrn_request.php:828 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Exemple: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: ../../mod/dfrn_request.php:829 -msgid "Please answer the following:" -msgstr "Vă rugăm să răspundeţi la următoarele:" - -#: ../../mod/dfrn_request.php:830 -#, php-format -msgid "Does %s know you?" -msgstr "%s vă cunoaşte?" - -#: ../../mod/dfrn_request.php:834 -msgid "Add a personal note:" -msgstr "Adaugă o notă personală:" - -#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../mod/dfrn_request.php:837 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Reţea Socială Web Centralizată" - -#: ../../mod/dfrn_request.php:839 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "- vă rugăm să nu folosiţi acest formular. În schimb, introduceţi %s în bara dvs. de căutare Diaspora." - -#: ../../mod/dfrn_request.php:840 -msgid "Your Identity Address:" -msgstr "Adresa dvs. Identitate " - -#: ../../mod/dfrn_request.php:843 -msgid "Submit Request" -msgstr "Trimiteţi Solicitarea" - -#: ../../mod/register.php:90 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Înregistrarea s-a efectuat cu succes. Vă rugăm să vă verificaţi e-mailul pentru instrucţiuni suplimentare." - -#: ../../mod/register.php:96 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
    login: %s
    " -"password: %s

    You can change your password after login." -msgstr "" - -#: ../../mod/register.php:105 -msgid "Your registration can not be processed." -msgstr "Înregistrarea dvs. nu poate fi procesată." - -#: ../../mod/register.php:148 -msgid "Your registration is pending approval by the site owner." -msgstr "Înregistrarea dvs. este în aşteptarea aprobării de către deținătorul site-ului." - -#: ../../mod/register.php:186 ../../mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Acest site a depăşit numărul zilnic permis al înregistrărilor de conturi. Vă rugăm să reîncercați mâine." - -#: ../../mod/register.php:214 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Puteți (opțional) să completaţi acest formular prin intermediul OpenID, introducând contul dvs. OpenID și apăsând pe 'Înregistrare'." - -#: ../../mod/register.php:215 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Dacă nu sunteţi familiarizați cu OpenID, vă rugăm să lăsaţi acest câmp gol iar apoi să completaţi restul elementelor." - -#: ../../mod/register.php:216 -msgid "Your OpenID (optional): " -msgstr "Contul dvs. OpenID (opţional):" - -#: ../../mod/register.php:230 -msgid "Include your profile in member directory?" -msgstr "Includeți profilul dvs în directorul de membru?" - -#: ../../mod/register.php:251 -msgid "Membership on this site is by invitation only." -msgstr "Aderare pe acest site, este posibilă doar pe bază de invitație." - -#: ../../mod/register.php:252 -msgid "Your invitation ID: " -msgstr "ID invitaţiei dvs:" - -#: ../../mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Numele Complet (de ex. Joe Smith):" - -#: ../../mod/register.php:264 -msgid "Your Email Address: " -msgstr "Adresa dvs de mail:" - -#: ../../mod/register.php:265 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Alegeţi un pseudonim de profil. Aceasta trebuie să înceapă cu un caracter text. Adresa profilului dvs. de pe acest site va fi de forma 'pseudonim@$sitename'." - -#: ../../mod/register.php:266 -msgid "Choose a nickname: " -msgstr "Alegeţi un pseudonim:" - -#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109 -msgid "Register" -msgstr "Înregistrare" - -#: ../../mod/register.php:275 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Import" - -#: ../../mod/register.php:276 -msgid "Import your profile to this friendica instance" -msgstr "Importați profilul dvs. în această instanță friendica" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Sistemul este suspendat pentru întreținere" - -#: ../../mod/search.php:99 ../../include/text.php:953 -#: ../../include/text.php:954 ../../include/nav.php:119 -msgid "Search" -msgstr "Căutare" - -#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Director Global" - -#: ../../mod/directory.php:59 -msgid "Find on this site" -msgstr "Căutați pe acest site" - -#: ../../mod/directory.php:62 -msgid "Site Directory" -msgstr "Director Site" - -#: ../../mod/directory.php:113 ../../mod/profiles.php:750 -msgid "Age: " -msgstr "Vârsta:" - -#: ../../mod/directory.php:116 -msgid "Gender: " -msgstr "Sex:" - -#: ../../mod/directory.php:138 ../../boot.php:1650 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "Sex:" - -#: ../../mod/directory.php:140 ../../boot.php:1653 -#: ../../include/profile_advanced.php:37 -msgid "Status:" -msgstr "Status:" - -#: ../../mod/directory.php:142 ../../boot.php:1655 -#: ../../include/profile_advanced.php:48 -msgid "Homepage:" -msgstr "Homepage:" - -#: ../../mod/directory.php:144 ../../boot.php:1657 -#: ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "Despre:" - -#: ../../mod/directory.php:189 -msgid "No entries (some entries may be hidden)." -msgstr "Fără înregistrări (unele înregistrări pot fi ascunse)." - -#: ../../mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Nici-un delegat potenţial de pagină, nu a putut fi localizat." - -#: ../../mod/delegate.php:130 ../../include/nav.php:170 -msgid "Delegate Page Management" -msgstr "Delegare Gestionare Pagină" - -#: ../../mod/delegate.php:132 -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 "Delegații sunt capabili să gestioneze toate aspectele acestui cont/pagină, cu excepţia configurărilor de bază ale contului. Vă rugăm să nu vă delegați, contul dvs. personal, cuiva în care nu aveţi încredere deplină." - -#: ../../mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Gestionari Existenți Pagină" - -#: ../../mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Delegați Existenți Pagină" - -#: ../../mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Potenţiali Delegaţi" - -#: ../../mod/delegate.php:140 -msgid "Add" -msgstr "Adăugare" - -#: ../../mod/delegate.php:141 -msgid "No entries." -msgstr "Nu există intrări." - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Prieteni Comuni" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Nici-un contact în comun" - -#: ../../mod/uexport.php:77 -msgid "Export account" -msgstr "Exportare cont" - -#: ../../mod/uexport.php:77 -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 "Exportați-vă informațiile contului şi contactele. Utilizaţi aceasta pentru a face o copie de siguranţă a contului dumneavoastră şi/sau pentru a-l muta pe un alt server." - -#: ../../mod/uexport.php:78 -msgid "Export all" -msgstr "Exportare tot" - -#: ../../mod/uexport.php:78 -msgid "" -"Export your accout 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 "Exportați informațiile dvs. de cont, contactele şi toate elementele dvs., ca json. Ar putea fi un fișier foarte mare, şi ar putea lua mult timp. Utilizaţi aceasta pentru a face un backup complet al contului (fotografiile nu sunt exportate)" - -#: ../../mod/mood.php:62 ../../include/conversation.php:227 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s este momentan %2$s" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Stare de spirit" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Stabiliți-vă starea de spirit curentă, şi comunicați-o prietenilor" - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Sigur doriți să ștergeți acesta sugestie?" - -#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35 -#: ../../view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" -msgstr "Sugestii de Prietenie" - -#: ../../mod/suggest.php:74 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nici-o sugestie disponibilă. Dacă aceasta este un site nou, vă rugăm să încercaţi din nou în 24 de ore." - -#: ../../mod/suggest.php:92 -msgid "Ignore/Hide" -msgstr "Ignorare/Ascundere" - -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profilul a fost şters." - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Profil-" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Profilul nou a fost creat." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Profil indisponibil pentru clonare." - -#: ../../mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Numele de Profil este necesar." - -#: ../../mod/profiles.php:340 -msgid "Marital Status" -msgstr "Starea Civilă" - -#: ../../mod/profiles.php:344 -msgid "Romantic Partner" -msgstr "Partener Romantic" - -#: ../../mod/profiles.php:348 -msgid "Likes" -msgstr "Likes" - -#: ../../mod/profiles.php:352 -msgid "Dislikes" -msgstr "Antipatii" - -#: ../../mod/profiles.php:356 -msgid "Work/Employment" -msgstr "Loc de Muncă/Slujbă" - -#: ../../mod/profiles.php:359 -msgid "Religion" -msgstr "Religie" - -#: ../../mod/profiles.php:363 -msgid "Political Views" -msgstr "Viziuni Politice" - -#: ../../mod/profiles.php:367 -msgid "Gender" -msgstr "Sex" - -#: ../../mod/profiles.php:371 -msgid "Sexual Preference" -msgstr "Preferinţe Sexuale" - -#: ../../mod/profiles.php:375 -msgid "Homepage" -msgstr "Homepage" - -#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 -msgid "Interests" -msgstr "Interese" - -#: ../../mod/profiles.php:383 -msgid "Address" -msgstr "Addresă" - -#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 -msgid "Location" -msgstr "Locaţie" - -#: ../../mod/profiles.php:473 -msgid "Profile updated." -msgstr "Profil actualizat." - -#: ../../mod/profiles.php:568 -msgid " and " -msgstr "şi" - -#: ../../mod/profiles.php:576 -msgid "public profile" -msgstr "profil public" - -#: ../../mod/profiles.php:579 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s a modificat %2$s în “%3$s”" - -#: ../../mod/profiles.php:580 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "- Vizitați %2$s lui %1$s'" - -#: ../../mod/profiles.php:583 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s și-a actualizat %2$s, modificând %3$s." - -#: ../../mod/profiles.php:658 -msgid "Hide contacts and friends:" -msgstr "Ascunde contacte și prieteni:" - -#: ../../mod/profiles.php:663 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Ascundeţi lista dvs. de contacte/prieteni de vizitatorii acestui profil?" - -#: ../../mod/profiles.php:685 -msgid "Edit Profile Details" -msgstr "Editare Detalii Profil" - -#: ../../mod/profiles.php:687 -msgid "Change Profile Photo" -msgstr "Modificați Fotografia de Profil" - -#: ../../mod/profiles.php:688 -msgid "View this profile" -msgstr "Vizualizați acest profil" - -#: ../../mod/profiles.php:689 -msgid "Create a new profile using these settings" -msgstr "Creaţi un profil nou folosind aceste configurări" - -#: ../../mod/profiles.php:690 -msgid "Clone this profile" -msgstr "Clonați acest profil" - -#: ../../mod/profiles.php:691 -msgid "Delete this profile" -msgstr "Ştergeţi acest profil" - -#: ../../mod/profiles.php:692 -msgid "Basic information" -msgstr "Informaţii de bază" - -#: ../../mod/profiles.php:693 -msgid "Profile picture" -msgstr "Imagine profil" - -#: ../../mod/profiles.php:695 -msgid "Preferences" -msgstr "Preferinţe " - -#: ../../mod/profiles.php:696 -msgid "Status information" -msgstr "Informaţii Status" - -#: ../../mod/profiles.php:697 -msgid "Additional information" -msgstr "Informaţii suplimentare" - -#: ../../mod/profiles.php:700 -msgid "Profile Name:" -msgstr "Nume profil:" - -#: ../../mod/profiles.php:701 -msgid "Your Full Name:" -msgstr "Numele Complet:" - -#: ../../mod/profiles.php:702 -msgid "Title/Description:" -msgstr "Titlu/Descriere" - -#: ../../mod/profiles.php:703 -msgid "Your Gender:" -msgstr "Sexul:" - -#: ../../mod/profiles.php:704 -#, php-format -msgid "Birthday (%s):" -msgstr "Zi Naştere (%s):" - -#: ../../mod/profiles.php:705 -msgid "Street Address:" -msgstr "Strada:" - -#: ../../mod/profiles.php:706 -msgid "Locality/City:" -msgstr "Localitate/Oraș:" - -#: ../../mod/profiles.php:707 -msgid "Postal/Zip Code:" -msgstr "Cod poștal:" - -#: ../../mod/profiles.php:708 -msgid "Country:" -msgstr "Ţară:" - -#: ../../mod/profiles.php:709 -msgid "Region/State:" -msgstr "Regiunea/Județul:" - -#: ../../mod/profiles.php:710 -msgid " Marital Status:" -msgstr " Stare Civilă:" - -#: ../../mod/profiles.php:711 -msgid "Who: (if applicable)" -msgstr "Cine: (dacă este cazul)" - -#: ../../mod/profiles.php:712 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exemple: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:713 -msgid "Since [date]:" -msgstr "Din [data]:" - -#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46 -msgid "Sexual Preference:" -msgstr "Orientare Sexuală:" - -#: ../../mod/profiles.php:715 -msgid "Homepage URL:" -msgstr "Homepage URL:" - -#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50 -msgid "Hometown:" -msgstr "Domiciliu:" - -#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54 -msgid "Political Views:" -msgstr "Viziuni Politice:" - -#: ../../mod/profiles.php:718 -msgid "Religious Views:" -msgstr "Viziuni Religioase:" - -#: ../../mod/profiles.php:719 -msgid "Public Keywords:" -msgstr "Cuvinte cheie Publice:" - -#: ../../mod/profiles.php:720 -msgid "Private Keywords:" -msgstr "Cuvinte cheie Private:" - -#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62 -msgid "Likes:" -msgstr "Îmi place:" - -#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64 -msgid "Dislikes:" -msgstr "Nu-mi place:" - -#: ../../mod/profiles.php:723 -msgid "Example: fishing photography software" -msgstr "Exemplu: pescuit fotografii software" - -#: ../../mod/profiles.php:724 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Utilizat pentru a sugera potențiali prieteni, ce pot fi văzuți de către ceilalți)" - -#: ../../mod/profiles.php:725 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Utilizat pentru a căuta profile, niciodată afișat altora)" - -#: ../../mod/profiles.php:726 -msgid "Tell us about yourself..." -msgstr "Spune-ne despre tine ..." - -#: ../../mod/profiles.php:727 -msgid "Hobbies/Interests" -msgstr "Hobby/Interese" - -#: ../../mod/profiles.php:728 -msgid "Contact information and Social Networks" -msgstr "Informaţii de Contact şi Reţele Sociale" - -#: ../../mod/profiles.php:729 -msgid "Musical interests" -msgstr "Preferințe muzicale" - -#: ../../mod/profiles.php:730 -msgid "Books, literature" -msgstr "Cărti, literatură" - -#: ../../mod/profiles.php:731 -msgid "Television" -msgstr "Programe TV" - -#: ../../mod/profiles.php:732 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/cultură/divertisment" - -#: ../../mod/profiles.php:733 -msgid "Love/romance" -msgstr "Dragoste/romantism" - -#: ../../mod/profiles.php:734 -msgid "Work/employment" -msgstr "Loc de Muncă/Slujbă" - -#: ../../mod/profiles.php:735 -msgid "School/education" -msgstr "Școală/educație" - -#: ../../mod/profiles.php:740 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "Acesta este profilul dvs. public.
    El poate fi vizibil pentru oricine folosește internetul." - -#: ../../mod/profiles.php:803 -msgid "Edit/Manage Profiles" -msgstr "Editare/Gestionare Profile" - -#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637 -msgid "Change profile photo" -msgstr "Modificați Fotografia de Profil" - -#: ../../mod/profiles.php:805 ../../boot.php:1612 -msgid "Create New Profile" -msgstr "Creați Profil Nou" - -#: ../../mod/profiles.php:816 ../../boot.php:1622 -msgid "Profile Image" -msgstr "Imagine profil" - -#: ../../mod/profiles.php:818 ../../boot.php:1625 -msgid "visible to everybody" -msgstr "vizibil pentru toata lumea" - -#: ../../mod/profiles.php:819 ../../boot.php:1626 -msgid "Edit visibility" -msgstr "Editare vizibilitate" - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Element negăsit" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Editează post" - -#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 -msgid "upload photo" -msgstr "încărcare fotografie" - -#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 -msgid "Attach file" -msgstr "Ataşează fişier" - -#: ../../mod/editpost.php:113 ../../include/conversation.php:1094 -msgid "attach file" -msgstr "ataşează fişier" - -#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 -msgid "web link" -msgstr "web link" - -#: ../../mod/editpost.php:116 ../../include/conversation.php:1097 -msgid "Insert video link" -msgstr "Inserează video link" - -#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 -msgid "video link" -msgstr "video link" - -#: ../../mod/editpost.php:118 ../../include/conversation.php:1099 -msgid "Insert audio link" -msgstr "Inserare link audio" - -#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 -msgid "audio link" -msgstr "audio link" - -#: ../../mod/editpost.php:120 ../../include/conversation.php:1101 -msgid "Set your location" -msgstr "Setează locaţia dvs" - -#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 -msgid "set location" -msgstr "set locaţie" - -#: ../../mod/editpost.php:122 ../../include/conversation.php:1103 -msgid "Clear browser location" -msgstr "Curățare locație browser" - -#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 -msgid "clear location" -msgstr "şterge locaţia" - -#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 -msgid "Permission settings" -msgstr "Setări permisiuni" - -#: ../../mod/editpost.php:133 ../../include/conversation.php:1119 -msgid "CC: email addresses" -msgstr "CC: adresă email" - -#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 -msgid "Public post" -msgstr "Public post" - -#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 -msgid "Set title" -msgstr "Setează titlu" - -#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 -msgid "Categories (comma-separated list)" -msgstr "Categorii (listă cu separator prin virgulă)" - -#: ../../mod/editpost.php:140 ../../include/conversation.php:1122 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Exemplu: bob@exemplu.com, mary@exemplu.com" - -#: ../../mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Friendica, versiunea" - -#: ../../mod/friendica.php:60 -msgid "running at web location" -msgstr "rulează la locaţia web" - -#: ../../mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Vă rugăm să vizitaţi Friendica.com pentru a afla mai multe despre proiectul Friendica." - -#: ../../mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Rapoarte de erori şi probleme: vă rugăm să vizitaţi" - -#: ../../mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Sugestii, laude, donatii, etc. - vă rugăm să trimiteți un email pe \"Info\" at Friendica - dot com" - -#: ../../mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Module/suplimente/aplicații instalate:" - -#: ../../mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Module/suplimente/aplicații neinstalate" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizare conectare aplicaţie" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Reveniți la aplicația dvs. şi introduceţi acest Cod de Securitate:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Vă rugăm să vă autentificați pentru a continua." - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Doriţi să autorizați această aplicaţie pentru a vă accesa postările şi contactele, şi/sau crea noi postări pentru dvs.?" - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informaţiile la distanţă despre confidenţialitate, nu sunt disponibile." - -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visibil către:" - -#: ../../mod/notes.php:44 ../../boot.php:2150 +#: mod/notes.php:52 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "Note Personale" -#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148 -#: ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" +#: mod/notes.php:56 +msgid "Personal notes are visible only by yourself." +msgstr "Notele Personale sunt vizibile doar pentru dumneavoastră" -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Conversie Oră" +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:161 +msgid "Save" +msgstr "Salvare" -#: ../../mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica oferă acest serviciu pentru partajarea evenimentelor cu alte rețele și prieteni, în zonele cu fusuri orare necunoscute.\\v" +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "Utilizator negăsit." -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "Fus orar UTC: %s" - -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Fusul orar curent: %s" - -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Ora locală convertită: %s" - -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Vă rugăm să vă selectaţi fusul orar:" - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Abordare/Atragerea atenției" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "abordați, atrageți atenția sau faceți alte lucruri cuiva" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Destinatar" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Alegeți ce doriți să faceți cu destinatarul" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Faceți acest articol privat" - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limita totală a invitațiilor a fost depăşită." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Nu este o adresă vaildă de email." - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Vă rugăm să veniți alături de noi pe Friendica" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limita invitațiilor a fost depăşită. Vă rugăm să vă contactați administratorul de sistem." - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Livrarea mesajului a eşuat." - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mesaj trimis." -msgstr[1] "%d mesaje trimise." -msgstr[2] "%d de mesaje trimise." - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Nu mai aveți invitaţii disponibile" - -#: ../../mod/invite.php:120 -#, 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 "Vizitaţi %s pentru o lista de site-uri publice la care puteţi alătura. Membrii Friendica de pe alte site-uri se pot conecta cu toții între ei, precum şi cu membri ai multor alte reţele sociale." - -#: ../../mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Pentru a accepta această invitaţie, vă rugăm să vizitaţi şi să vă înregistraţi pe %s sau orice alt site public Friendica." - -#: ../../mod/invite.php:123 -#, 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 "Toate site-urile Friendica sunt interconectate pentru a crea o imensă rețea socială cu o confidențialitate sporită, ce este deținută și controlată de către membrii săi. Aceștia se pot conecta, de asemenea, cu multe rețele sociale tradiționale. Vizitaţi %s pentru o lista de site-uri alternative Friendica în care vă puteţi alătura." - -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Ne cerem scuze. Acest sistem nu este configurat în prezent pentru conectarea cu alte site-uri publice sau pentru a invita membrii." - -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Trimiteți invitaţii" - -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Introduceţi adresele de email, una pe linie:" - -#: ../../mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Vă invit cordial să vă alăturați mie, si altor prieteni apropiați, pe Friendica - şi să ne ajutați să creăm o rețea socială mai bună." - -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Va fi nevoie să furnizați acest cod de invitaţie: $invite_code" - -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Odată ce v-aţi înregistrat, vă rog să vă conectaţi cu mine prin pagina mea de profil de la:" - -#: ../../mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Pentru mai multe informaţii despre proiectul Friendica, şi de ce credem că este important, vă rugăm să vizitaţi http://friendica.com" - -#: ../../mod/photos.php:52 ../../boot.php:2129 +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 msgid "Photo Albums" msgstr "Albume Photo " -#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064 -#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 -#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 -#: ../../view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Photo Contact" +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 +msgid "Recent Photos" +msgstr "Poze Recente" -#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 msgid "Upload New Photos" msgstr "Încărcaţi Fotografii Noi" -#: ../../mod/photos.php:144 +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 +msgid "everybody" +msgstr "oricine" + +#: mod/photos.php:159 msgid "Contact information unavailable" msgstr "Informaţii contact nedisponibile" -#: ../../mod/photos.php:165 +#: mod/photos.php:188 msgid "Album not found." msgstr "Album negăsit" -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 -msgid "Delete Album" -msgstr "Şterge Album" +#: mod/photos.php:244 +msgid "Album successfully deleted" +msgstr "Album șters cu succes" -#: ../../mod/photos.php:198 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Doriţi într-adevăr să ştergeţi acest album foto și toate fotografiile sale?" +#: mod/photos.php:246 +msgid "Album was empty." +msgstr "Album gol." -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 -msgid "Delete Photo" -msgstr "Şterge Poza" +#: mod/photos.php:277 +msgid "Failed to delete the photo." +msgstr "Nu s-a putut șterge fotografia" -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "Sigur doriți să ștergeți această fotografie?" +#: mod/photos.php:545 +msgid "a photo" +msgstr "o fotografie" -#: ../../mod/photos.php:662 +#: mod/photos.php:545 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s a fost etichetat în %2$s de către %3$s" -#: ../../mod/photos.php:662 -msgid "a photo" -msgstr "o poză" +#: mod/photos.php:582 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Acces public refuzat." -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "Dimensiunea imaginii depăşeşte limita de" - -#: ../../mod/photos.php:775 -msgid "Image file is empty." -msgstr "Fișierul imagine este gol." - -#: ../../mod/photos.php:930 +#: mod/photos.php:587 msgid "No photos selected" -msgstr "Nici-o fotografie selectată" +msgstr "Nicio fotografie selectată" -#: ../../mod/photos.php:1094 +#: mod/photos.php:721 #, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Aţi folosit %1$.2f Mb din %2$.2f Mb de stocare foto." +msgid "The maximum accepted image size is %s" +msgstr "Mărimea maximă acceptată a imaginii este %s" -#: ../../mod/photos.php:1129 +#: mod/photos.php:728 msgid "Upload Photos" msgstr "Încărcare Fotografii" -#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 +#: mod/photos.php:732 mod/photos.php:820 msgid "New album name: " msgstr "Nume album nou:" -#: ../../mod/photos.php:1134 -msgid "or existing album name: " -msgstr "sau numele unui album existent:" +#: mod/photos.php:733 +msgid "or select existing album:" +msgstr "sau selectează un album existent:" -#: ../../mod/photos.php:1135 +#: mod/photos.php:734 msgid "Do not show a status post for this upload" msgstr "Nu afișa un status pentru această încărcare" -#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 msgid "Permissions" msgstr "Permisiuni" -#: ../../mod/photos.php:1148 -msgid "Private Photo" -msgstr "Poze private" +#: mod/photos.php:801 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Doriţi într-adevăr să ştergeţi acest album foto și toate fotografiile sale?" -#: ../../mod/photos.php:1149 -msgid "Public Photo" -msgstr "Poze Publice" +#: mod/photos.php:802 mod/photos.php:825 +msgid "Delete Album" +msgstr "Şterge Album" -#: ../../mod/photos.php:1212 +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Anulează" + +#: mod/photos.php:829 msgid "Edit Album" msgstr "Editează Album" -#: ../../mod/photos.php:1218 +#: mod/photos.php:830 +msgid "Drop Album" +msgstr "" + +#: mod/photos.php:834 msgid "Show Newest First" msgstr "Afișează Întâi cele Noi" -#: ../../mod/photos.php:1220 +#: mod/photos.php:836 msgid "Show Oldest First" msgstr "Afișează Întâi cele Vechi" -#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 msgid "View Photo" msgstr "Vizualizare Fotografie" -#: ../../mod/photos.php:1294 +#: mod/photos.php:889 msgid "Permission denied. Access to this item may be restricted." msgstr "Permisiune refuzată. Accesul la acest element poate fi restricționat." -#: ../../mod/photos.php:1296 +#: mod/photos.php:891 msgid "Photo not available" msgstr "Fotografia nu este disponibilă" -#: ../../mod/photos.php:1352 +#: mod/photos.php:901 +msgid "Do you really want to delete this photo?" +msgstr "Sigur doriți să ștergeți această fotografie?" + +#: mod/photos.php:902 mod/photos.php:1102 +msgid "Delete Photo" +msgstr "Şterge Poza" + +#: mod/photos.php:1000 msgid "View photo" msgstr "Vezi foto" -#: ../../mod/photos.php:1352 +#: mod/photos.php:1002 msgid "Edit photo" -msgstr "Editează poza" +msgstr "Editează fotografia" -#: ../../mod/photos.php:1353 +#: mod/photos.php:1003 +msgid "Delete photo" +msgstr "Șterge fotografia" + +#: mod/photos.php:1004 msgid "Use as profile photo" msgstr "Utilizați ca și fotografie de profil" -#: ../../mod/photos.php:1378 +#: mod/photos.php:1011 +msgid "Private Photo" +msgstr "Fotografie privată" + +#: mod/photos.php:1017 msgid "View Full Size" msgstr "Vizualizați la Dimensiunea Completă" -#: ../../mod/photos.php:1457 +#: mod/photos.php:1070 msgid "Tags: " msgstr "Etichete:" -#: ../../mod/photos.php:1460 -msgid "[Remove any tag]" -msgstr "[Elimină orice etichetă]" +#: mod/photos.php:1073 +msgid "[Select tags to remove]" +msgstr "[Selectează etichete de șters]" -#: ../../mod/photos.php:1500 -msgid "Rotate CW (right)" -msgstr "Rotire spre dreapta" - -#: ../../mod/photos.php:1501 -msgid "Rotate CCW (left)" -msgstr "Rotire spre stânga" - -#: ../../mod/photos.php:1503 +#: mod/photos.php:1088 msgid "New album name" msgstr "Nume Nou Album" -#: ../../mod/photos.php:1506 +#: mod/photos.php:1089 msgid "Caption" msgstr "Titlu" -#: ../../mod/photos.php:1508 +#: mod/photos.php:1090 msgid "Add a Tag" msgstr "Adaugă un Tag" -#: ../../mod/photos.php:1512 +#: mod/photos.php:1090 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Exemplu: @Bob, @Barbara_Jensen, @jim@exemplu.com , #California, #camping" -#: ../../mod/photos.php:1521 -msgid "Private photo" -msgstr "Poze private" +#: mod/photos.php:1091 +msgid "Do not rotate" +msgstr "Nu roti" -#: ../../mod/photos.php:1522 -msgid "Public photo" -msgstr "Poze Publice" +#: mod/photos.php:1092 +msgid "Rotate CW (right)" +msgstr "Rotire spre dreapta" -#: ../../mod/photos.php:1544 ../../include/conversation.php:1090 -msgid "Share" -msgstr "Partajează" +#: mod/photos.php:1093 +msgid "Rotate CCW (left)" +msgstr "Rotire spre stânga" -#: ../../mod/photos.php:1817 -msgid "Recent Photos" -msgstr "Poze Recente" +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1103 +msgid "This is you" +msgstr "Acesta eşti tu" -#: ../../mod/regmod.php:55 -msgid "Account approved." -msgstr "Cont aprobat." +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:581 +#: src/Object/Post.php:1105 +msgid "Comment" +msgstr "Comentariu" -#: ../../mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "Înregistrare revocată pentru %s" +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1119 +msgid "Preview" +msgstr "Previzualizare" -#: ../../mod/regmod.php:104 -msgid "Please login." -msgstr "Vă rugăm să vă autentificați." +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1107 +msgid "Loading..." +msgstr "Încărcare..." -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Mutaţi contul" +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:261 +msgid "Select" +msgstr "Select" -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Puteţi importa un cont dintr-un alt server Friendica." +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 +msgid "Delete" +msgstr "Şterge" -#: ../../mod/uimport.php:68 -msgid "" -"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." -msgstr "Trebuie să vă exportați contul din vechiul server şi să-l încărcaţi aici. Vă vom recrea vechiul cont, aici cu toate contactele sale. Vom încerca de altfel să vă informăm prietenii că v-ați mutat aici." +#: mod/photos.php:1298 src/Object/Post.php:409 +msgid "Like" +msgstr "Îmi place" -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Această caracteristică este experimentală. Nu putem importa contactele din reţeaua OStatus (statusnet/identi.ca) sau din Diaspora" +#: mod/photos.php:1299 src/Object/Post.php:409 +msgid "I like this (toggle)" +msgstr "Îmi place asta (comutare)" -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "Fişier Cont" +#: mod/photos.php:1300 src/Object/Post.php:410 +msgid "Dislike" +msgstr "Nu îmi place" -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Pentru a vă exporta contul, deplasaţi-vă la \"Configurări- >Export date personale \" şi selectaţi \"Exportare cont \"" +#: mod/photos.php:1302 src/Object/Post.php:410 +msgid "I don't like this (toggle)" +msgstr "Nu îmi place aceasta (comutare)" -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Elementul nu este disponibil." +#: mod/photos.php:1324 +msgid "Map" +msgstr "Hartă" -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Element negăsit." +#: src/App.php:473 +msgid "No system theme config value set." +msgstr "" -#: ../../boot.php:749 +#: src/App.php:580 +msgid "Apologies but the website is unavailable at the moment." +msgstr "Ne pare rău, însă website-ul nu este momentan disponibil" + +#: src/App/Page.php:248 msgid "Delete this item?" msgstr "Ștergeți acest element?" -#: ../../boot.php:752 -msgid "show fewer" -msgstr "afișare mai puține" +#: src/App/Page.php:249 +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 "Dorești să blochezi acest autor? Acesta nu va mai putea să te urmărească și nici să îți vadă postările publice, iar tu nu vei mai putea să-i vezi postările și notificările." -#: ../../boot.php:1122 +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "Dorești să ignori acest autor? Nu îi vei mai putea vedea postările și notificările." + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "" + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "Apreciere eșuată" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "Neapreciere eșuată" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "Distribuire eșuată" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "Eroare de rețea" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "Lasă fișierele aici pentru a le încărca" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "Browser-ul dumneavoastră nu suportă încărcarea fișierelor prin tragere și plasare" + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "" + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "Fișierul este prea mare ({{filesize}}MiB). Dimensiunea maximă: {{maxFilesize}}MiB." + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "Nu puteți încărca fișiere de acest tip" + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "Serverul a răspuns cu codul {{statusCode}}" + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "Anulează încărcarea" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "Încărcarea a fost anulată." + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "Sunteți sigur/-ă că vreți să anulați această încărcare?" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "Înlătură fișierul" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "Nu mai puteți încărca alte fișiere." + +#: src/App/Page.php:351 +msgid "toggle mobile" +msgstr "comutare mobil" + +#: src/App/Router.php:309 #, php-format -msgid "Update %s failed. See error logs." -msgstr "Actualizarea %s a eșuat. Consultaţi jurnalele de eroare." +msgid "Method not allowed for this module. Allowed method(s): %s" +msgstr "Metodă nepermisă pentru acest modul. Metodă/metode permise: %s" -#: ../../boot.php:1240 -msgid "Create a New Account" -msgstr "Creaţi un Cont Nou" +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +msgid "Page not found." +msgstr "Pagină negăsită." -#: ../../boot.php:1265 ../../include/nav.php:73 -msgid "Logout" -msgstr "Deconectare" +#: src/App/Router.php:323 +msgid "You must be logged in to use addons. " +msgstr "Trebuie să vă autentificați pentru a folosi suplimentele." -#: ../../boot.php:1268 -msgid "Nickname or Email address: " -msgstr "Pseudonimul sau Adresa de email:" +#: src/BaseModule.php:403 +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 "Formarea codului de securitate, nu a fost corectă. Aceasta probabil s-a întâmplat pentru că formularul a fost deschis pentru prea mult timp ( >3 ore) înainte de a-l transmite." -#: ../../boot.php:1269 -msgid "Password: " -msgstr "Parola:" +#: src/BaseModule.php:430 +msgid "All contacts" +msgstr "Toate contactele" -#: ../../boot.php:1270 -msgid "Remember me" -msgstr "Reține autentificarea" +#: src/BaseModule.php:435 src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 +#: src/Module/Settings/Channels.php:120 +msgid "Followers" +msgstr "Urmăritori" -#: ../../boot.php:1273 -msgid "Or login using OpenID: " -msgstr "Sau conectaţi-vă utilizând OpenID:" +#: src/BaseModule.php:440 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 src/Module/Settings/Channels.php:119 +msgid "Following" +msgstr "Urmăriți" -#: ../../boot.php:1279 -msgid "Forgot your password?" -msgstr "Ați uitat parola?" +#: src/BaseModule.php:445 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 +msgid "Mutual friends" +msgstr "Prieteni comuni" -#: ../../boot.php:1282 -msgid "Website Terms of Service" -msgstr "Condiții de Utilizare Site Web" +#: src/BaseModule.php:453 +msgid "Common" +msgstr "" -#: ../../boot.php:1283 -msgid "terms of service" -msgstr "condiții de utilizare" +#: src/Console/Addon.php:175 src/Console/Addon.php:199 +msgid "Addon not found" +msgstr "Supliment negăsit" -#: ../../boot.php:1285 -msgid "Website Privacy Policy" -msgstr "Politica de Confidențialitate Site Web" +#: src/Console/Addon.php:179 +msgid "Addon already enabled" +msgstr "Supliment deja activat" -#: ../../boot.php:1286 -msgid "privacy policy" -msgstr "politica de confidențialitate" +#: src/Console/Addon.php:203 +msgid "Addon already disabled" +msgstr "Supliment deja dezactivat" -#: ../../boot.php:1419 -msgid "Requested account is not available." -msgstr "Contul solicitat nu este disponibil." +#: src/Console/ArchiveContact.php:106 +#, php-format +msgid "Could not find any unarchived contact entry for this URL (%s)" +msgstr "" -#: ../../boot.php:1501 ../../boot.php:1635 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Editare profil" +#: src/Console/ArchiveContact.php:109 +msgid "The contact entries have been archived" +msgstr "Contactul a fost arhivat" -#: ../../boot.php:1600 +#: src/Console/GlobalCommunityBlock.php:96 +#: src/Module/Moderation/Blocklist/Contact.php:65 +#, php-format +msgid "Could not find any contact entry for this URL (%s)" +msgstr "" + +#: src/Console/GlobalCommunityBlock.php:101 +#: src/Module/Moderation/Blocklist/Contact.php:82 +msgid "The contact has been blocked from the node" +msgstr "Contactul a fost blocat pe acest nod" + +#: src/Console/MergeContacts.php:75 +#, php-format +msgid "%d %s, %d duplicates." +msgstr "" + +#: src/Console/MergeContacts.php:78 +#, php-format +msgid "uri-id is empty for contact %s." +msgstr "" + +#: src/Console/MergeContacts.php:91 +#, php-format +msgid "No valid first contact found for uri-id %d." +msgstr "" + +#: src/Console/MergeContacts.php:102 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:106 +#, php-format +msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." +msgstr "" + +#: src/Console/MergeContacts.php:142 +#, php-format +msgid "Deletion of id %d failed" +msgstr "" + +#: src/Console/MergeContacts.php:144 +#, php-format +msgid "Deletion of id %d was successful" +msgstr "" + +#: src/Console/MergeContacts.php:150 +#, php-format +msgid "Updating \"%s\" in \"%s\" from %d to %d" +msgstr "" + +#: src/Console/MergeContacts.php:152 +msgid " - found" +msgstr " - găsit" + +#: src/Console/MergeContacts.php:159 +msgid " - failed" +msgstr " - eșuat" + +#: src/Console/MergeContacts.php:161 +msgid " - success" +msgstr "" + +#: src/Console/MergeContacts.php:165 +msgid " - deleted" +msgstr "" + +#: src/Console/MergeContacts.php:168 +msgid " - done" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:91 +msgid "The avatar cache needs to be enabled to use this command." +msgstr "" + +#: src/Console/MoveToAvatarCache.php:109 +#, php-format +msgid "no resource in photo %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:137 +#, php-format +msgid "no photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:146 +#, php-format +msgid "no image data for photo with id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:155 +#, php-format +msgid "invalid image for id %s" +msgstr "" + +#: src/Console/MoveToAvatarCache.php:168 +#, php-format +msgid "Quit on invalid photo %s" +msgstr "" + +#: src/Console/PostUpdate.php:87 +#, php-format +msgid "Post update version number has been set to %s." +msgstr "" + +#: src/Console/PostUpdate.php:95 +msgid "Check for pending update actions." +msgstr "" + +#: src/Console/PostUpdate.php:97 +msgid "Done." +msgstr "Realizat." + +#: src/Console/PostUpdate.php:99 +msgid "Execute pending post updates." +msgstr "" + +#: src/Console/PostUpdate.php:105 +msgid "All pending post updates are done." +msgstr "Toate actualizările de postare aflate în așteptare s-au terminat." + +#: src/Console/User.php:158 src/Console/User.php:245 +msgid "Enter user nickname: " +msgstr "Introduceți pseudonimul de utilizator:" + +#: src/Console/User.php:182 src/Model/User.php:710 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "Utilizator negăsit" + +#: src/Console/User.php:202 +msgid "Enter new password: " +msgstr "Introduceți noua parolă:" + +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 +msgid "Password update failed. Please try again." +msgstr "Actualizarea parolei a eșuat. Vă rugăm să reîncercați." + +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 +msgid "Password changed." +msgstr "Parola a fost schimbată." + +#: src/Console/User.php:237 +msgid "Enter user name: " +msgstr "Introduceți numele de utilizator:" + +#: src/Console/User.php:253 +msgid "Enter user email address: " +msgstr "" + +#: src/Console/User.php:261 +msgid "Enter a language (optional): " +msgstr "Introduceți o limbă (opțional):" + +#: src/Console/User.php:286 +msgid "User is not pending." +msgstr "" + +#: src/Console/User.php:318 +msgid "User has already been marked for deletion." +msgstr "" + +#: src/Console/User.php:323 +#, php-format +msgid "Type \"yes\" to delete %s" +msgstr "" + +#: src/Console/User.php:325 +msgid "Deletion aborted." +msgstr "" + +#: src/Console/User.php:450 +msgid "Enter category: " +msgstr "" + +#: src/Console/User.php:460 +msgid "Enter key: " +msgstr "" + +#: src/Console/User.php:494 +msgid "Enter value: " +msgstr "" + +#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +msgid "newer" +msgstr "mai noi" + +#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +msgid "older" +msgstr "mai vechi" + +#: src/Content/ContactSelector.php:51 +msgid "Frequently" +msgstr "" + +#: src/Content/ContactSelector.php:52 +msgid "Hourly" +msgstr "" + +#: src/Content/ContactSelector.php:53 +msgid "Twice daily" +msgstr "" + +#: src/Content/ContactSelector.php:54 +msgid "Daily" +msgstr "" + +#: src/Content/ContactSelector.php:55 +msgid "Weekly" +msgstr "" + +#: src/Content/ContactSelector.php:56 +msgid "Monthly" +msgstr "" + +#: src/Content/ContactSelector.php:126 +msgid "DFRN" +msgstr "DFRN" + +#: src/Content/ContactSelector.php:127 +msgid "OStatus" +msgstr "OStatus" + +#: src/Content/ContactSelector.php:128 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Email" +msgstr "Email" + +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +msgid "Diaspora" +msgstr "Diaspora" + +#: src/Content/ContactSelector.php:131 +msgid "Zot!" +msgstr "Zot!" + +#: src/Content/ContactSelector.php:132 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: src/Content/ContactSelector.php:133 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: src/Content/ContactSelector.php:134 +msgid "MySpace" +msgstr "MySpace" + +#: src/Content/ContactSelector.php:135 +msgid "Google+" +msgstr "Google+" + +#: src/Content/ContactSelector.php:136 +msgid "pump.io" +msgstr "pump.io" + +#: src/Content/ContactSelector.php:137 +msgid "Twitter" +msgstr "Twitter" + +#: src/Content/ContactSelector.php:138 +msgid "Discourse" +msgstr "Discourse" + +#: src/Content/ContactSelector.php:139 +msgid "Diaspora Connector" +msgstr "Conector Diaspora" + +#: src/Content/ContactSelector.php:140 +msgid "GNU Social Connector" +msgstr "Conector GNU Social" + +#: src/Content/ContactSelector.php:141 +msgid "ActivityPub" +msgstr "ActivityPub" + +#: src/Content/ContactSelector.php:142 +msgid "pnut" +msgstr "" + +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "Tumblr" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "Bluesky" + +#: src/Content/ContactSelector.php:180 +#, php-format +msgid "%s (via %s)" +msgstr "%s (via %s)" + +#: src/Content/Conversation.php:226 +msgid "and" +msgstr "şi" + +#: src/Content/Conversation.php:229 +#, php-format +msgid "and %d other people" +msgstr "" + +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:239 +#, php-format +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:241 +#, php-format +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:243 +#, php-format +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:245 +#, php-format +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:274 +#, php-format +msgid " likes this" +msgid_plural " like this" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:277 +#, php-format +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:280 +#, php-format +msgid " attends" +msgid_plural " attend" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:283 +#, php-format +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:286 +#, php-format +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:289 +#, php-format +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Content/Conversation.php:336 +msgid "Visible to everybody" +msgstr "Vizibil pentru toți" + +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1118 +msgid "Please enter a image/video/audio/webpage URL:" +msgstr "" + +#: src/Content/Conversation.php:338 +msgid "Tag term:" +msgstr "Termen etichetare:" + +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 +msgid "Save to Folder:" +msgstr "Salvare în Dosar:" + +#: src/Content/Conversation.php:340 +msgid "Where are you right now?" +msgstr "Unde vă aflați acum?" + +#: src/Content/Conversation.php:341 +msgid "Delete item(s)?" +msgstr "Ștergeți element(e)?" + +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 +msgid "Created at" +msgstr "" + +#: src/Content/Conversation.php:363 +msgid "New Post" +msgstr "Postare nouă" + +#: src/Content/Conversation.php:366 +msgid "Share" +msgstr "Partajează" + +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "încărcare fotografie" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Ataşează fişier" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "ataşează fişier" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1108 +msgid "Bold" +msgstr "Bold" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1109 +msgid "Italic" +msgstr "Italic" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1110 +msgid "Underline" +msgstr "Subliniat" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1112 +msgid "Quote" +msgstr "Citat" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1113 +msgid "Add emojis" +msgstr "Adaugă emoji-uri" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1111 +msgid "Content Warning" +msgstr "Avertisment de conținut" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1114 +msgid "Code" +msgstr "Code" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1115 +msgid "Image" +msgstr "Imagine" + +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1116 +msgid "Link" +msgstr "Link" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1117 +msgid "Link or Media" +msgstr "Link sau fișier media" + +#: src/Content/Conversation.php:382 +msgid "Video" +msgstr "Video" + +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "Setați locația dvs" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "set locaţie" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "Curățare locație browser" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "şterge locaţia" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Setează titlu" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Categorii (listă cu separator prin virgulă)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 +msgid "Scheduled at" +msgstr "Programat la" + +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Setări permisiuni" + +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Public post" + +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:132 +#: src/Model/Profile.php:479 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 msgid "Message" msgstr "Mesaj" -#: ../../boot.php:1606 ../../include/nav.php:175 -msgid "Profiles" -msgstr "Profile" +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Browser" -#: ../../boot.php:1606 -msgid "Manage/edit profiles" -msgstr "Gestionare/editare profile" +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "Deschide Pagina de compunere" -#: ../../boot.php:1706 -msgid "Network:" -msgstr "Reţea:" +#: src/Content/Conversation.php:595 +msgid "remove" +msgstr "eliminare" -#: ../../boot.php:1736 ../../boot.php:1822 -msgid "g A l F d" -msgstr "g A l F d" +#: src/Content/Conversation.php:599 +msgid "Delete Selected Items" +msgstr "Ștergeți Elementele Selectate" -#: ../../boot.php:1737 ../../boot.php:1823 -msgid "F d" -msgstr "F d" - -#: ../../boot.php:1782 ../../boot.php:1863 -msgid "[today]" -msgstr "[azi]" - -#: ../../boot.php:1794 -msgid "Birthday Reminders" -msgstr "Memento Zile naştere " - -#: ../../boot.php:1795 -msgid "Birthdays this week:" -msgstr "Zi;e Naştere această săptămînă:" - -#: ../../boot.php:1856 -msgid "[No description]" -msgstr "[Fără descriere]" - -#: ../../boot.php:1874 -msgid "Event Reminders" -msgstr "Memento Eveniment" - -#: ../../boot.php:1875 -msgid "Events this week:" -msgstr "Evenimente în această săptămână:" - -#: ../../boot.php:2112 ../../include/nav.php:76 -msgid "Status" -msgstr "Status" - -#: ../../boot.php:2115 -msgid "Status Messages and Posts" -msgstr "Status Mesaje şi Postări" - -#: ../../boot.php:2122 -msgid "Profile Details" -msgstr "Detalii Profil" - -#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79 -msgid "Videos" -msgstr "Clipuri video" - -#: ../../boot.php:2146 -msgid "Events and Calendar" -msgstr "Evenimente şi Calendar" - -#: ../../boot.php:2153 -msgid "Only You Can See This" -msgstr "Numai Dvs. Puteţi Vizualiza" - -#: ../../object/Item.php:94 -msgid "This entry was edited" -msgstr "Această intrare a fost editată" - -#: ../../object/Item.php:208 -msgid "ignore thread" +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 +#, php-format +msgid "You had been addressed (%s)." msgstr "" -#: ../../object/Item.php:209 -msgid "unignore thread" +#: src/Content/Conversation.php:769 +#, php-format +msgid "You are following %s." +msgstr "Dvs. urmăriți %s." + +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "V-ați abonat la %s." + +#: src/Content/Conversation.php:776 +msgid "You subscribed to one or more tags in this post." +msgstr "V-ați abonat la una sau mai multe etichete prezente în această postare" + +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "%s a redistribuit" + +#: src/Content/Conversation.php:798 +msgid "Reshared" +msgstr "Redistribuit" + +#: src/Content/Conversation.php:798 +#, php-format +msgid "Reshared by %s <%s>" +msgstr "Redistribuit de %s <%s>" + +#: src/Content/Conversation.php:801 +#, php-format +msgid "%s is participating in this thread." +msgstr "%s participă în acest fir de conversație" + +#: src/Content/Conversation.php:804 +msgid "Stored for general reasons" msgstr "" -#: ../../object/Item.php:210 -msgid "toggle ignore status" -msgstr "Comutaţi status Ignorare" +#: src/Content/Conversation.php:807 +msgid "Global post" +msgstr "" -#: ../../object/Item.php:213 -msgid "ignored" -msgstr "ignorat" +#: src/Content/Conversation.php:810 +msgid "Sent via an relay server" +msgstr "Trimis printr-un server releu" -#: ../../object/Item.php:316 ../../include/conversation.php:666 +#: src/Content/Conversation.php:810 +#, php-format +msgid "Sent via the relay server %s <%s>" +msgstr "Trimis prin serverul releu %s <%s>" + +#: src/Content/Conversation.php:813 +msgid "Fetched" +msgstr "" + +#: src/Content/Conversation.php:813 +#, php-format +msgid "Fetched because of %s <%s>" +msgstr "" + +#: src/Content/Conversation.php:816 +msgid "Stored because of a child post to complete this thread." +msgstr "" + +#: src/Content/Conversation.php:819 +msgid "Local delivery" +msgstr "" + +#: src/Content/Conversation.php:822 +msgid "Stored because of your activity (like, comment, star, ...)" +msgstr "" + +#: src/Content/Conversation.php:825 +msgid "Distributed" +msgstr "" + +#: src/Content/Conversation.php:828 +msgid "Pushed to us" +msgstr "" + +#: src/Content/Conversation.php:1492 src/Object/Post.php:248 +msgid "Pinned item" +msgstr "Element fixat" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:530 +#: src/Object/Post.php:531 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vizualizaţi profilul %s @ %s" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:518 msgid "Categories:" msgstr "Categorii:" -#: ../../object/Item.php:317 ../../include/conversation.php:667 +#: src/Content/Conversation.php:1523 src/Object/Post.php:519 msgid "Filed under:" msgstr "Înscris în:" -#: ../../object/Item.php:329 -msgid "via" -msgstr "via" - -#: ../../include/dbstructure.php:26 +#: src/Content/Conversation.php:1531 src/Object/Post.php:544 #, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgid "%s from %s" +msgstr "%s de la %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "Vizualizare în context" + +#: src/Content/Conversation/Factory/Channel.php:42 +msgid "For you" msgstr "" -#: ../../include/dbstructure.php:31 +#: src/Content/Conversation/Factory/Channel.php:42 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:43 +msgid "What's Hot" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:43 +msgid "Posts with a lot of interactions" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:44 #, php-format +msgid "Posts in %s" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:45 +msgid "Posts from your followers that you don't follow" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:46 +msgid "Sharers of sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:46 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Module/Settings/Channels.php:137 src/Module/Settings/Channels.php:153 +msgid "Images" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:47 +msgid "Posts with images" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:155 +msgid "Audio" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts with audio" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Module/Settings/Channels.php:138 src/Module/Settings/Channels.php:154 +msgid "Videos" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 +msgid "Posts with videos" +msgstr "" + +#: src/Content/Conversation/Factory/Community.php:43 +msgid "Local Community" +msgstr "Comunitatea locală" + +#: src/Content/Conversation/Factory/Community.php:43 +msgid "Posts from local users on this server" +msgstr "Postări ale utilizatorilor aflați pe acest server" + +#: src/Content/Conversation/Factory/Community.php:47 +#: src/Module/Settings/Channels.php:118 +msgid "Global Community" +msgstr "Comunitatea globală" + +#: src/Content/Conversation/Factory/Community.php:47 +msgid "Posts from users of the whole federated network" +msgstr "Postări ale utilizatorilor întregii rețele federate" + +#: src/Content/Conversation/Factory/Network.php:38 +msgid "Latest Activity" +msgstr "Activitate recentă" + +#: src/Content/Conversation/Factory/Network.php:38 +msgid "Sort by latest activity" +msgstr "Sortează după activitatea recentă" + +#: src/Content/Conversation/Factory/Network.php:39 +msgid "Latest Posts" +msgstr "Postări recente" + +#: src/Content/Conversation/Factory/Network.php:39 +msgid "Sort by post received date" +msgstr "" + +#: src/Content/Conversation/Factory/Network.php:40 +msgid "Latest Creation" +msgstr "Creații recente" + +#: src/Content/Conversation/Factory/Network.php:40 +msgid "Sort by post creation date" +msgstr "Sortează după data creării postării" + +#: src/Content/Conversation/Factory/Network.php:41 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "Personal" + +#: src/Content/Conversation/Factory/Network.php:41 +msgid "Posts that mention or involve you" +msgstr "Postări ce vă menționează sau vă implică" + +#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:381 +msgid "Starred" +msgstr "Cu steluță" + +#: src/Content/Conversation/Factory/Network.php:42 +msgid "Favourite Posts" +msgstr "Postări Favorite" + +#: src/Content/Feature.php:96 +msgid "General Features" +msgstr "Caracteristici Generale" + +#: src/Content/Feature.php:98 +msgid "Photo Location" +msgstr "Locație fotografie" + +#: src/Content/Feature.php:98 msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Mesajul de eroare este\n[pre]%s[/pre]" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "Metadata fotografiilor este în mod normal înlăturată. Aceasta extrage locația (dacă există) anterior înlăturării metadatelor și o afișează pe o hartă." -#: ../../include/dbstructure.php:162 -msgid "Errors encountered creating database tables." -msgstr "Erori întâlnite la crearea tabelelor bazei de date." +#: src/Content/Feature.php:99 +msgid "Trending Tags" +msgstr "Etichete în tendințe" -#: ../../include/dbstructure.php:220 -msgid "Errors encountered performing database changes." -msgstr "Erori întâlnite la operarea de modificări în baza de date." - -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Deconectat." - -#: ../../include/auth.php:128 ../../include/user.php:67 +#: src/Content/Feature.php:99 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Am întâmpinat o problemă în timpul autentificării cu datele OpenID pe care le-ați furnizat." +"Show a community page widget with a list of the most popular tags in recent " +"public posts." +msgstr "" -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "The error message was:" -msgstr "Mesajul de eroare a fost:" +#: src/Content/Feature.php:104 +msgid "Post Composition Features" +msgstr "Caracteristici Compoziţie Postare" -#: ../../include/contact_widgets.php:6 +#: src/Content/Feature.php:105 +msgid "Auto-mention Groups" +msgstr "" + +#: src/Content/Feature.php:105 +msgid "" +"Add/remove mention when a group page is selected/deselected in ACL window." +msgstr "" + +#: src/Content/Feature.php:106 +msgid "Explicit Mentions" +msgstr "" + +#: src/Content/Feature.php:106 +msgid "" +"Add explicit mentions to comment box for manual control over who gets " +"mentioned in replies." +msgstr "" + +#: src/Content/Feature.php:107 +msgid "Add an abstract from ActivityPub content warnings" +msgstr "Adaugă un abstract din avertismentele de conținut ActivityPub" + +#: src/Content/Feature.php:107 +msgid "" +"Add an abstract when commenting on ActivityPub posts with a content warning." +" Abstracts are displayed as content warning on systems like Mastodon or " +"Pleroma." +msgstr "Adaugați un abstract atunci când comentați postări ActivityPub conținând un avertisment de conținut. Abstractele sunt afișate ca avertisment de conținut pe sisteme precum Mastodon sau Pleroma" + +#: src/Content/Feature.php:112 +msgid "Post/Comment Tools" +msgstr "Instrumente Postare/Comentariu" + +#: src/Content/Feature.php:113 +msgid "Post Categories" +msgstr "Categorii Postări" + +#: src/Content/Feature.php:113 +msgid "Add categories to your posts" +msgstr "Adăugaţi categorii la postările dvs." + +#: src/Content/Feature.php:118 +msgid "Advanced Profile Settings" +msgstr "Setări de profil avansate" + +#: src/Content/Feature.php:119 +msgid "List Groups" +msgstr "Listează grupuri" + +#: src/Content/Feature.php:119 +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "Arată vizitatorilor grupuri publice în Pagina de Profil Avansată" + +#: src/Content/Feature.php:120 +msgid "Tag Cloud" +msgstr "Nor cu etichete" + +#: src/Content/Feature.php:120 +msgid "Provide a personal tag cloud on your profile page" +msgstr "Afișează un „nor cu etichete” personale pe pagina ta de profil" + +#: src/Content/Feature.php:121 +msgid "Display Membership Date" +msgstr "" + +#: src/Content/Feature.php:121 +msgid "Display membership date in profile" +msgstr "" + +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "Setări avansate calendar" + +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "Permiteți accesul anonim la calendarul dumneavoastră" + +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "Permite vizitatorilor anonimi să vă consulte calendarul și evenimentele publice ale dumneavoastră. Evenimentele tip zi de naștere ale contactelor dumneavoastră rămân private." + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1272 +msgid "Groups" +msgstr "Grupuri" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "Link extern către grup" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 +msgid "show less" +msgstr "mai puțin" + +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 +msgid "show more" +msgstr "mai mult" + +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "Creează un grup nou" + +#: src/Content/Item.php:331 src/Model/Item.php:3080 +msgid "event" +msgstr "eveniment" + +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "status" + +#: src/Content/Item.php:340 src/Model/Item.php:3082 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "fotografie" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s a etichetat %3$s de la %2$s cu %4$s" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 +msgid "Follow Thread" +msgstr "Urmăriți Firul Conversației" + +#: src/Content/Item.php:429 src/Model/Contact.php:1242 +msgid "View Status" +msgstr "Vizualizare Status" + +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1233 +#: src/Model/Contact.php:1243 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 +msgid "View Profile" +msgstr "Vizualizare Profil" + +#: src/Content/Item.php:431 src/Model/Contact.php:1244 +msgid "View Photos" +msgstr "Vizualizare Fotografii" + +#: src/Content/Item.php:432 src/Model/Contact.php:1211 +#: src/Model/Profile.php:464 +msgid "Network Posts" +msgstr "Postări din Rețea" + +#: src/Content/Item.php:433 src/Model/Contact.php:1235 +#: src/Model/Contact.php:1246 +msgid "View Contact" +msgstr "" + +#: src/Content/Item.php:434 src/Model/Contact.php:1247 +msgid "Send PM" +msgstr "Trimiteți mesaj personal" + +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 +msgid "Block" +msgstr "Blochează" + +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 +msgid "Ignore" +msgstr "Ignoră" + +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "" + +#: src/Content/Item.php:438 src/Object/Post.php:289 +#, php-format +msgid "Ignore %s server" +msgstr "" + +#: src/Content/Item.php:442 src/Object/Post.php:491 +msgid "Languages" +msgstr "" + +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1236 src/Model/Contact.php:1248 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Conectare/Urmărire" + +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "" + +#: src/Content/Nav.php:121 +msgid "Nothing new here" +msgstr "Nimic nou aici" + +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +msgid "Go back" +msgstr "" + +#: src/Content/Nav.php:126 +msgid "Clear notifications" +msgstr "Ştergeţi notificările" + +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" +msgstr "@nume, !grup, #etichetă, conținut" + +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 +msgid "Logout" +msgstr "Deconectare" + +#: src/Content/Nav.php:222 +msgid "End this session" +msgstr "Finalizați această sesiune" + +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 +msgid "Login" +msgstr "Login" + +#: src/Content/Nav.php:224 +msgid "Sign in" +msgstr "Autentificare" + +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "Conversații" + +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "Conversații pe care le-ați pornit" + +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +msgid "Profile" +msgstr "Profil" + +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +msgid "Your profile page" +msgstr "Pagina dvs. de profil" + +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Poze" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +msgid "Your photos" +msgstr "Fotografiile dvs." + +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 +msgid "Media" +msgstr "" + +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +msgid "Your postings with media" +msgstr "" + +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:310 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "" + +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "" + +#: src/Content/Nav.php:234 +msgid "Personal notes" +msgstr "Note Personale" + +#: src/Content/Nav.php:234 +msgid "Your personal notes" +msgstr "Notele tale personale" + +#: src/Content/Nav.php:251 src/Content/Nav.php:308 +msgid "Home" +msgstr "Home" + +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "Home Pagina" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 +#: src/Module/Security/Login.php:124 +msgid "Register" +msgstr "Înregistrare" + +#: src/Content/Nav.php:255 +msgid "Create an account" +msgstr "Creați un cont" + +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 +msgid "Help" +msgstr "Ajutor" + +#: src/Content/Nav.php:261 +msgid "Help and documentation" +msgstr "Ajutor şi documentaţie" + +#: src/Content/Nav.php:265 +msgid "Apps" +msgstr "Aplicații" + +#: src/Content/Nav.php:265 +msgid "Addon applications, utilities, games" +msgstr "Suplimente la aplicații, utilitare, jocuri" + +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 +msgid "Search" +msgstr "Căutare" + +#: src/Content/Nav.php:269 +msgid "Search site content" +msgstr "Căutare în conținut site" + +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 +msgid "Full Text" +msgstr "" + +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 +#: src/Content/Widget/TagCloud.php:68 +msgid "Tags" +msgstr "" + +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 +msgid "Contacts" +msgstr "Contacte" + +#: src/Content/Nav.php:289 +msgid "Community" +msgstr "Comunitate" + +#: src/Content/Nav.php:289 +msgid "Conversations on this and other servers" +msgstr "Conversații pe acest server și pe altele" + +#: src/Content/Nav.php:296 +msgid "Directory" +msgstr "Director" + +#: src/Content/Nav.php:296 +msgid "People directory" +msgstr "Director persoane" + +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 +msgid "Information" +msgstr "Informaţii" + +#: src/Content/Nav.php:298 +msgid "Information about this friendica instance" +msgstr "Informaţii despre această instanță friendica" + +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 +msgid "Terms of Service" +msgstr "Condiții de Utilizare" + +#: src/Content/Nav.php:301 +msgid "Terms of Service of this Friendica instance" +msgstr "Condițiile de Utilizare ale acestei instanțe de Friendica" + +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +msgid "Network" +msgstr "Reţea" + +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +msgid "Conversations from your friends" +msgstr "Conversaţiile prieteniilor dvs." + +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "Postările şi conversaţiile dvs." + +#: src/Content/Nav.php:312 +msgid "Introductions" +msgstr "Introduceri" + +#: src/Content/Nav.php:312 +msgid "Friend Requests" +msgstr "Solicitări Prietenie" + +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 +msgid "Notifications" +msgstr "Notificări" + +#: src/Content/Nav.php:314 +msgid "See all notifications" +msgstr "Consultaţi toate notificările" + +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Marcați ca și vizualizat" + +#: src/Content/Nav.php:315 +msgid "Mark all system notifications as seen" +msgstr "" + +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +msgid "Private mail" +msgstr "Mail privat" + +#: src/Content/Nav.php:319 +msgid "Inbox" +msgstr "Mesaje primite" + +#: src/Content/Nav.php:320 +msgid "Outbox" +msgstr "Căsuță de Ieșire" + +#: src/Content/Nav.php:324 +msgid "Accounts" +msgstr "" + +#: src/Content/Nav.php:324 +msgid "Manage other pages" +msgstr "Gestionează alte pagini" + +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +msgid "Settings" +msgstr "Setări" + +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +msgid "Account settings" +msgstr "Configurări Cont" + +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +msgid "Manage/edit friends and contacts" +msgstr "Gestionare/Editare prieteni şi contacte" + +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +msgid "Admin" +msgstr "Admin" + +#: src/Content/Nav.php:334 +msgid "Site setup and configuration" +msgstr "Instalare şi configurare site" + +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "" + +#: src/Content/Nav.php:338 +msgid "Navigation" +msgstr "Navigare" + +#: src/Content/Nav.php:338 +msgid "Site map" +msgstr "Hartă Site" + +#: src/Content/OEmbed.php:316 +msgid "Embedding disabled" +msgstr "Încorporarea conținuturilor este dezactivată" + +#: src/Content/OEmbed.php:440 +msgid "Embedded content" +msgstr "Conţinut încorporat" + +#: src/Content/Pager.php:216 +msgid "first" +msgstr "prima" + +#: src/Content/Pager.php:221 +msgid "prev" +msgstr "preced" + +#: src/Content/Pager.php:276 +msgid "next" +msgstr "următor" + +#: src/Content/Pager.php:281 +msgid "last" +msgstr "ultima" + +#: src/Content/Text/BBCode.php:751 src/Content/Text/BBCode.php:1692 +#: src/Content/Text/BBCode.php:1693 +msgid "Image/photo" +msgstr "Imagine/fotografie" + +#: src/Content/Text/BBCode.php:969 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3813 +#: src/Model/Item.php:3819 src/Model/Item.php:3820 +msgid "Link to source" +msgstr "" + +#: src/Content/Text/BBCode.php:1599 src/Content/Text/HTML.php:904 +msgid "Click to open/close" +msgstr "Apăsați pentru a deschide/închide" + +#: src/Content/Text/BBCode.php:1632 +msgid "$1 wrote:" +msgstr "$1 a scris:" + +#: src/Content/Text/BBCode.php:1697 src/Content/Text/BBCode.php:1698 +msgid "Encrypted content" +msgstr "Conţinut criptat" + +#: src/Content/Text/BBCode.php:1953 +msgid "Invalid source protocol" +msgstr "" + +#: src/Content/Text/BBCode.php:1972 +msgid "Invalid link protocol" +msgstr "" + +#: src/Content/Text/HTML.php:782 +msgid "Loading more entries..." +msgstr "" + +#: src/Content/Text/HTML.php:783 +msgid "The end" +msgstr "" + +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:128 +#: src/Model/Profile.php:473 src/Module/Contact/Profile.php:471 +msgid "Follow" +msgstr "" + +#: src/Content/Widget.php:51 msgid "Add New Contact" msgstr "Add Contact Nou" -#: ../../include/contact_widgets.php:7 +#: src/Content/Widget.php:52 msgid "Enter address or web location" msgstr "Introduceţi adresa sau locaţia web" -#: ../../include/contact_widgets.php:8 +#: src/Content/Widget.php:53 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Exemplu: bob@example.com, http://example.com/barbara" -#: ../../include/contact_widgets.php:24 +#: src/Content/Widget.php:55 +msgid "Connect" +msgstr "Conectare" + +#: src/Content/Widget.php:72 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" @@ -5757,619 +2265,149 @@ msgstr[0] "%d invitație disponibilă" msgstr[1] "%d invitații disponibile" msgstr[2] "%d de invitații disponibile" -#: ../../include/contact_widgets.php:30 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 msgid "Find People" msgstr "Căutați Persoane" -#: ../../include/contact_widgets.php:31 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 msgid "Enter name or interest" msgstr "Introduceţi numele sau interesul" -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Conectare/Urmărire" - -#: ../../include/contact_widgets.php:33 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Exemple: Robert Morgenstein, Pescuit" -#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526 +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 +msgid "Find" +msgstr "Căutare" + +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "Sugestii de Prietenie" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 msgid "Similar Interests" msgstr "Interese Similare" -#: ../../include/contact_widgets.php:37 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 msgid "Random Profile" msgstr "Profil Aleatoriu" -#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 msgid "Invite Friends" msgstr "Invită Prieteni" -#: ../../include/contact_widgets.php:71 -msgid "Networks" -msgstr "Rețele" +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 +msgid "Global Directory" +msgstr "Director Global" -#: ../../include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Toate Reţelele" +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +msgid "Local Directory" +msgstr "Director Local" -#: ../../include/contact_widgets.php:104 ../../include/features.php:60 +#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "" + +#: src/Content/Widget.php:217 +msgid "Everyone" +msgstr "" + +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "" + +#: src/Content/Widget.php:247 +msgid "Relationships" +msgstr "" + +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 +msgid "All Contacts" +msgstr "Toate Contactele" + +#: src/Content/Widget.php:288 +msgid "Protocols" +msgstr "Protocoale" + +#: src/Content/Widget.php:290 +msgid "All Protocols" +msgstr "Toate protocoalele" + +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "Dosare Salvate" -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "Totul" -#: ../../include/contact_widgets.php:136 +#: src/Content/Widget.php:349 msgid "Categories" msgstr "Categorii" -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Caracteristici Generale" +#: src/Content/Widget.php:406 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contact în comun" +msgstr[1] "%d contacte în comun" +msgstr[2] "%d de contacte în comun" -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Profile Multiple" +#: src/Content/Widget.php:506 +msgid "Archives" +msgstr "Arhive" -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Capacitatea de a crea profile multiple" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Caracteristici Compoziţie Postare" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Editor Text Îmbogățit" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Activare editor text îmbogățit" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Previzualizare Postare" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Permiteți previzualizarea postărilor şi comentariilor înaintea publicării lor" - -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "Auto-menţionare Forumuri" - -#: ../../include/features.php:33 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "Adăugaţi/eliminaţi mențiunea când o pagină de forum este selectată/deselectată în fereastra ACL." - -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Aplicaţii widget de Rețea în Bara Laterală" - -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "Căutare după Dată" - -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Abilitatea de a selecta postări după intervalele de timp" - -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "Filtru Grup" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Permiteți aplicației widget să afișeze postări din Rețea, numai din grupul selectat" - -#: ../../include/features.php:41 -msgid "Network Filter" -msgstr "Filtru Reţea" - -#: ../../include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Permiteți aplicației widget să afișeze postări din Rețea, numai din rețeaua selectată" - -#: ../../include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Salvați termenii de căutare pentru reutilizare" - -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "File Reţea" - -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "Filă Personală de Reţea" - -#: ../../include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Permiteți filei să afişeze numai postările Reţelei cu care ați interacţionat" - -#: ../../include/features.php:49 -msgid "Network New Tab" -msgstr "Filă Nouă de Reţea" - -#: ../../include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Permiteți filei să afişeze numai postările noi din Reţea (din ultimele 12 ore)" - -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "Filă Legături Distribuite în Rețea" - -#: ../../include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Permiteți filei să afişeze numai postările din Reţea ce conțin legături" - -#: ../../include/features.php:55 -msgid "Post/Comment Tools" -msgstr "Instrumente Postare/Comentariu" - -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "Ştergere Multiplă" - -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Selectaţi şi ştergeţi postări/comentarii multiple simultan" - -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Editare Postări Trimise" - -#: ../../include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Editarea şi corectarea postărilor şi comentariilor după postarea lor" - -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "Etichetare" - -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Capacitatea de a eticheta postările existente" - -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "Categorii Postări" - -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "Adăugaţi categorii la postările dvs." - -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Capacitatea de a atribui postări în dosare" - -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "Respingere Postări" - -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Capacitatea de a marca postări/comentarii ca fiind neplăcute" - -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "Postări cu Steluță" - -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "Capacitatea de a marca posturile speciale cu o stea ca şi indicator" - -#: ../../include/features.php:63 -msgid "Mute Post Notifications" +#: src/Content/Widget.php:514 +msgid "On this date" msgstr "" -#: ../../include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "" +#: src/Content/Widget.php:534 +msgid "Persons" +msgstr "Persoane" -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "Lipseşte URL-ul de conectare." +#: src/Content/Widget.php:535 +msgid "Organisations" +msgstr "Organizații" -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Acest site nu este configurat pentru a permite comunicarea cu alte reţele." +#: src/Content/Widget.php:536 src/Model/Contact.php:1714 +msgid "News" +msgstr "Știri" -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Nu au fost descoperite protocoale de comunicaţii sau fluxuri compatibile." +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 +msgid "Account Types" +msgstr "Tipuri de cont" -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "Adresa de profil specificată nu furnizează informații adecvate." +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 +msgid "All" +msgstr "Totul" -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Un autor sau nume nu a fost găsit." +#: src/Content/Widget.php:591 src/Module/BaseSettings.php:125 +#: src/Module/Settings/Channels.php:157 src/Module/Settings/Display.php:309 +msgid "Channels" +msgstr "Canale" -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Nici un URL de browser nu a putut fi corelat cu această adresă." +#: src/Content/Widget/CalendarExport.php:56 +msgid "Export" +msgstr "Exportare" -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Nu se poate corela @-stilul pentru Adresa de Identitatea cu un protocol cunoscut sau contact de email." +#: src/Content/Widget/CalendarExport.php:57 +msgid "Export calendar as ical" +msgstr "Exportă calendarul ca ical" -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Utilizaţi mailto: în faţa adresei pentru a forţa verificarea de email." +#: src/Content/Widget/CalendarExport.php:58 +msgid "Export calendar as csv" +msgstr "Exportă calendarul ca csv" -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Adresa de profil specificată aparţine unei reţele care a fost dezactivată pe acest site." - -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Profil limitat. Această persoană nu va putea primi notificări directe/personale, de la dvs." - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Nu se pot localiza informaţiile de contact." - -#: ../../include/follow.php:258 -msgid "following" -msgstr "urmărire" - -#: ../../include/group.php:25 -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 "Un grup şters cu acest nume a fost restabilit. Permisiunile existente ale elementului, potfi aplicate acestui grup şi oricăror viitori membrii. Dacă aceasta nu este ceea ați intenționat să faceți, vă rugăm să creaţi un alt grup cu un un nume diferit." - -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Confidenţialitatea implicită a grupului pentru noi contacte" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Toată lumea" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "editare" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Editare grup" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Creați un nou grup" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Contacte ce nu se află în orice grup" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Diverse" - -#: ../../include/datetime.php:153 ../../include/datetime.php:290 -msgid "year" -msgstr "an" - -#: ../../include/datetime.php:158 ../../include/datetime.php:291 -msgid "month" -msgstr "lună" - -#: ../../include/datetime.php:163 ../../include/datetime.php:293 -msgid "day" -msgstr "zi" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "niciodată" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "acum mai puțin de o secundă" - -#: ../../include/datetime.php:290 -msgid "years" -msgstr "ani" - -#: ../../include/datetime.php:291 -msgid "months" -msgstr "luni" - -#: ../../include/datetime.php:292 -msgid "week" -msgstr "săptămână" - -#: ../../include/datetime.php:292 -msgid "weeks" -msgstr "săptămâni" - -#: ../../include/datetime.php:293 -msgid "days" -msgstr "zile" - -#: ../../include/datetime.php:294 -msgid "hour" -msgstr "oră" - -#: ../../include/datetime.php:294 -msgid "hours" -msgstr "ore" - -#: ../../include/datetime.php:295 -msgid "minute" -msgstr "minut" - -#: ../../include/datetime.php:295 -msgid "minutes" -msgstr "minute" - -#: ../../include/datetime.php:296 -msgid "second" -msgstr "secundă" - -#: ../../include/datetime.php:296 -msgid "seconds" -msgstr "secunde" - -#: ../../include/datetime.php:305 -#, php-format -msgid "%1$d %2$s ago" -msgstr "acum %1$d %2$s" - -#: ../../include/datetime.php:477 ../../include/items.php:2211 -#, php-format -msgid "%s's birthday" -msgstr "%s's zi de naştere" - -#: ../../include/datetime.php:478 ../../include/items.php:2212 -#, php-format -msgid "Happy Birthday %s" -msgstr "La mulţi ani %s" - -#: ../../include/acl_selectors.php:333 -msgid "Visible to everybody" -msgstr "Vizibil pentru toata lumea" - -#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "show" -msgstr "afișare" - -#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "don't show" -msgstr "nu afișa" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[fără subiect]" - -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "urmărire întreruptă" - -#: ../../include/Contact.php:228 ../../include/conversation.php:882 -msgid "Poke" -msgstr "Abordare" - -#: ../../include/Contact.php:229 ../../include/conversation.php:876 -msgid "View Status" -msgstr "Vizualizare Status" - -#: ../../include/Contact.php:230 ../../include/conversation.php:877 -msgid "View Profile" -msgstr "Vizualizare Profil" - -#: ../../include/Contact.php:231 ../../include/conversation.php:878 -msgid "View Photos" -msgstr "Vizualizare Fotografii" - -#: ../../include/Contact.php:232 ../../include/Contact.php:255 -#: ../../include/conversation.php:879 -msgid "Network Posts" -msgstr "Postări din Rețea" - -#: ../../include/Contact.php:233 ../../include/Contact.php:255 -#: ../../include/conversation.php:880 -msgid "Edit Contact" -msgstr "Edit Contact" - -#: ../../include/Contact.php:234 -msgid "Drop Contact" -msgstr "Eliminare Contact" - -#: ../../include/Contact.php:235 ../../include/Contact.php:255 -#: ../../include/conversation.php:881 -msgid "Send PM" -msgstr "Trimiteți mesaj personal" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Bine ați venit" - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Vă rugăm să încărcaţi o fotografie de profil." - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Bine ați revenit" - -#: ../../include/security.php:366 -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 "Formarea codului de securitate, nu a fost corectă. Aceasta probabil s-a întâmplat pentru că formularul a fost deschis pentru prea mult timp ( >3 ore) înainte de a-l transmite." - -#: ../../include/conversation.php:118 ../../include/conversation.php:246 -#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463 -msgid "event" -msgstr "eveniment" - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s a abordat pe %2$s" - -#: ../../include/conversation.php:211 ../../include/text.php:1005 -msgid "poked" -msgstr "a fost abordat(ă)" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "post/element" - -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s a marcat %3$s de la %2$s ca favorit" - -#: ../../include/conversation.php:772 -msgid "remove" -msgstr "eliminare" - -#: ../../include/conversation.php:776 -msgid "Delete Selected Items" -msgstr "Ștergeți Elementele Selectate" - -#: ../../include/conversation.php:875 -msgid "Follow Thread" -msgstr "Urmăriți Firul Conversației" - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s likes this." -msgstr "%s apreciază aceasta." - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s doesn't like this." -msgstr "%s nu apreciază aceasta." - -#: ../../include/conversation.php:949 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d persoane apreciază aceasta" - -#: ../../include/conversation.php:952 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d persoanenu apreciază aceasta" - -#: ../../include/conversation.php:966 -msgid "and" -msgstr "şi" - -#: ../../include/conversation.php:972 -#, php-format -msgid ", and %d other people" -msgstr ", şi %d alte persoane" - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s like this." -msgstr "%s apreciază aceasta." - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s don't like this." -msgstr "%s nu apreciază aceasta." - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Visible to everybody" -msgstr "Vizibil pentru toți" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter a video link/URL:" -msgstr "Vă rugăm să introduceți un URL/legătură pentru clip video" - -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Please enter an audio link/URL:" -msgstr "Vă rugăm să introduceți un URL/legătură pentru clip audio" - -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -msgid "Tag term:" -msgstr "Termen etichetare:" - -#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 -msgid "Where are you right now?" -msgstr "Unde vă aflați acum?" - -#: ../../include/conversation.php:1008 -msgid "Delete item(s)?" -msgstr "Ștergeți element(e)?" - -#: ../../include/conversation.php:1051 -msgid "Post to Email" -msgstr "Postați prin Email" - -#: ../../include/conversation.php:1056 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Conectorii au fost dezactivați, din moment ce \"%s\" este activat." - -#: ../../include/conversation.php:1111 -msgid "permissions" -msgstr "permisiuni" - -#: ../../include/conversation.php:1135 -msgid "Post to Groups" -msgstr "Postați în Grupuri" - -#: ../../include/conversation.php:1136 -msgid "Post to Contacts" -msgstr "Post către Contacte" - -#: ../../include/conversation.php:1137 -msgid "Private post" -msgstr "Articol privat" - -#: ../../include/network.php:895 -msgid "view full size" -msgstr "vezi intreaga mărime" - -#: ../../include/text.php:297 -msgid "newer" -msgstr "mai noi" - -#: ../../include/text.php:299 -msgid "older" -msgstr "mai vechi" - -#: ../../include/text.php:304 -msgid "prev" -msgstr "preced" - -#: ../../include/text.php:306 -msgid "first" -msgstr "prima" - -#: ../../include/text.php:338 -msgid "last" -msgstr "ultima" - -#: ../../include/text.php:341 -msgid "next" -msgstr "următor" - -#: ../../include/text.php:855 +#: src/Content/Widget/ContactBlock.php:79 msgid "No contacts" msgstr "Nici-un contact" -#: ../../include/text.php:864 +#: src/Content/Widget/ContactBlock.php:110 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -6377,731 +2415,1404 @@ msgstr[0] "%d Contact" msgstr[1] "%d Contacte" msgstr[2] "%d de Contacte" -#: ../../include/text.php:1005 -msgid "poke" -msgstr "abordare" +#: src/Content/Widget/ContactBlock.php:127 +msgid "View Contacts" +msgstr "Vezi Contacte" -#: ../../include/text.php:1006 -msgid "ping" -msgstr "ping" +#: src/Content/Widget/SavedSearches.php:47 +msgid "Remove term" +msgstr "Eliminare termen" -#: ../../include/text.php:1006 -msgid "pinged" -msgstr "i s-a trimis ping" +#: src/Content/Widget/SavedSearches.php:60 +msgid "Saved Searches" +msgstr "Căutări Salvate" -#: ../../include/text.php:1007 -msgid "prod" -msgstr "prod" +#: src/Content/Widget/TrendingTags.php:52 +#, php-format +msgid "Trending Tags (last %d hour)" +msgid_plural "Trending Tags (last %d hours)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: ../../include/text.php:1007 -msgid "prodded" -msgstr "i s-a atras atenția" +#: src/Content/Widget/TrendingTags.php:53 +msgid "More Trending Tags" +msgstr "Mai multe etichete în tendințe" -#: ../../include/text.php:1008 -msgid "slap" -msgstr "plesnire" +#: src/Content/Widget/VCard.php:107 src/Model/Contact.php:1204 +#: src/Model/Profile.php:457 +msgid "Post to group" +msgstr "" -#: ../../include/text.php:1008 -msgid "slapped" -msgstr "a fost plesnit(ă)" +#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1209 +#: src/Model/Profile.php:462 src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "" -#: ../../include/text.php:1009 -msgid "finger" -msgstr "indicare" +#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 +msgid "XMPP:" +msgstr "XMPP:" -#: ../../include/text.php:1009 -msgid "fingered" -msgstr "a fost indicat(ă)" +#: src/Content/Widget/VCard.php:122 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 +msgid "Matrix:" +msgstr "Matrix:" -#: ../../include/text.php:1010 -msgid "rebuff" -msgstr "respingere" +#: src/Content/Widget/VCard.php:123 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Locaţie:" -#: ../../include/text.php:1010 -msgid "rebuffed" -msgstr "a fost respins(ă)" +#: src/Content/Widget/VCard.php:126 src/Model/Profile.php:486 +#: src/Module/Notifications/Introductions.php:201 +msgid "Network:" +msgstr "Reţea:" -#: ../../include/text.php:1024 -msgid "happy" -msgstr "fericit(ă)" +#: src/Content/Widget/VCard.php:130 src/Model/Contact.php:1237 +#: src/Model/Contact.php:1249 src/Model/Profile.php:475 +#: src/Module/Contact/Profile.php:463 +msgid "Unfollow" +msgstr "" -#: ../../include/text.php:1025 -msgid "sad" -msgstr "trist(ă)" +#: src/Content/Widget/VCard.php:136 src/Model/Contact.php:1206 +#: src/Model/Profile.php:459 +msgid "View group" +msgstr "" -#: ../../include/text.php:1026 -msgid "mellow" -msgstr "trist(ă)" +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +msgid "Yourself" +msgstr "" -#: ../../include/text.php:1027 -msgid "tired" -msgstr "obosit(ă)" +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 +msgid "Mutuals" +msgstr "" -#: ../../include/text.php:1028 -msgid "perky" -msgstr "arogant(ă)" +#: src/Core/ACL.php:294 +msgid "Post to Email" +msgstr "Postați prin Email" -#: ../../include/text.php:1029 -msgid "angry" -msgstr "supărat(ă)" +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 +msgid "Public" +msgstr "" -#: ../../include/text.php:1030 -msgid "stupified" -msgstr "stupefiat(ă)" +#: src/Core/ACL.php:322 +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 "" -#: ../../include/text.php:1031 -msgid "puzzled" -msgstr "nedumerit(ă)" +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 +msgid "Limited/Private" +msgstr "" -#: ../../include/text.php:1032 -msgid "interested" -msgstr "interesat(ă)" +#: src/Core/ACL.php:324 +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 "" -#: ../../include/text.php:1033 -msgid "bitter" -msgstr "amarnic" +#: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." +msgstr "" -#: ../../include/text.php:1034 -msgid "cheerful" -msgstr "vesel(ă)" +#: src/Core/ACL.php:325 +msgid "Show to:" +msgstr "Arată către:" -#: ../../include/text.php:1035 -msgid "alive" -msgstr "plin(ă) de viață" +#: src/Core/ACL.php:326 +msgid "Except to:" +msgstr "Cu excepția:" -#: ../../include/text.php:1036 -msgid "annoyed" -msgstr "enervat(ă)" +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "CC: adresă email" -#: ../../include/text.php:1037 -msgid "anxious" -msgstr "neliniştit(ă)" +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Exemplu: bob@exemplu.com, mary@exemplu.com" -#: ../../include/text.php:1038 -msgid "cranky" -msgstr "irascibil(ă)" +#: src/Core/ACL.php:329 +msgid "Connectors" +msgstr "" -#: ../../include/text.php:1039 -msgid "disturbed" -msgstr "perturbat(ă)" +#: src/Core/Installer.php:180 +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 "" -#: ../../include/text.php:1040 -msgid "frustrated" -msgstr "frustrat(ă)" +#: src/Core/Installer.php:197 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Este posibil să fie nevoie să importați manual fişierul \"database.sql\" folosind phpmyadmin sau mysql." -#: ../../include/text.php:1041 -msgid "motivated" -msgstr "motivat(ă)" +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 +msgid "Please see the file \"doc/INSTALL.md\"." +msgstr "" -#: ../../include/text.php:1042 -msgid "relaxed" -msgstr "relaxat(ă)" +#: src/Core/Installer.php:259 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Nu s-a putut găsi o versiune a liniei de comandă PHP în CALEA serverului web." -#: ../../include/text.php:1043 -msgid "surprised" -msgstr "surprins(ă)" +#: src/Core/Installer.php:260 +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 "" -#: ../../include/text.php:1213 +#: src/Core/Installer.php:265 +msgid "PHP executable path" +msgstr "Calea de executare PHP" + +#: src/Core/Installer.php:265 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Introduceţi calea completă către executabilul php. Puteţi lăsa acesta necompletată pentru a continua instalarea." + +#: src/Core/Installer.php:270 +msgid "Command line PHP" +msgstr "linie comandă PHP" + +#: src/Core/Installer.php:279 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "Executabilul PHP nu este de formă binară php-cli (ar putea fi versiunea cgi-fgci)" + +#: src/Core/Installer.php:280 +msgid "Found PHP version: " +msgstr "Versiune PHP identificată:" + +#: src/Core/Installer.php:282 +msgid "PHP cli binary" +msgstr "Versiune binară PHP-cli" + +#: src/Core/Installer.php:295 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Versiunea liniei de comandă PHP de pe sistemul dumneavoastră nu are comanda \"register_argc_argv\" activată." + +#: src/Core/Installer.php:296 +msgid "This is required for message delivery to work." +msgstr "Aceasta este necesară pentru a funcționa livrarea de mesaje." + +#: src/Core/Installer.php:301 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: src/Core/Installer.php:333 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Eroare: funcția \"openssl_pkey_new\" de pe acest sistem nu este capabilă să genereze chei de criptare" + +#: src/Core/Installer.php:334 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Dacă rulează pe Windows, vă rugăm să consultaţi \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: src/Core/Installer.php:337 +msgid "Generate encryption keys" +msgstr "Generare chei de criptare" + +#: src/Core/Installer.php:388 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Eroare: Modulul mod-rewrite al serverulului Apache este necesar, dar nu este instalat." + +#: src/Core/Installer.php:392 +msgid "Apache mod_rewrite module" +msgstr "Modulul Apache mod_rewrite" + +#: src/Core/Installer.php:398 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:402 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "" + +#: src/Core/Installer.php:405 +msgid "PDO or MySQLi PHP module" +msgstr "" + +#: src/Core/Installer.php:411 +msgid "Error: The IntlChar module is not installed." +msgstr "" + +#: src/Core/Installer.php:414 +msgid "IntlChar PHP module" +msgstr "" + +#: src/Core/Installer.php:422 +msgid "Error, XML PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:426 +msgid "XML PHP module" +msgstr "" + +#: src/Core/Installer.php:429 +msgid "libCurl PHP module" +msgstr "Modulul PHP libCurl" + +#: src/Core/Installer.php:430 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Eroare: modulul PHP libCURL este necesar dar nu este instalat." + +#: src/Core/Installer.php:436 +msgid "GD graphics PHP module" +msgstr "Modulul PHP grafică GD" + +#: src/Core/Installer.php:437 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Eroare: Modulul PHP grafică GD cu suport JPEG, este necesar dar nu este instalat." + +#: src/Core/Installer.php:443 +msgid "OpenSSL PHP module" +msgstr "Modulul PHP OpenSSL" + +#: src/Core/Installer.php:444 +msgid "Error: openssl PHP module required but not installed." +msgstr "Eroare: modulul PHP libCURL este necesar dar nu este instalat." + +#: src/Core/Installer.php:450 +msgid "mb_string PHP module" +msgstr "Modulul PHP mb_string" + +#: src/Core/Installer.php:451 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Eroare: modulul PHP mb_string este necesar dar nu este instalat." + +#: src/Core/Installer.php:457 +msgid "iconv PHP module" +msgstr "" + +#: src/Core/Installer.php:458 +msgid "Error: iconv PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:464 +msgid "POSIX PHP module" +msgstr "" + +#: src/Core/Installer.php:465 +msgid "Error: POSIX PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:471 +msgid "Program execution functions" +msgstr "" + +#: src/Core/Installer.php:472 +msgid "" +"Error: Program execution functions (proc_open) required but not enabled." +msgstr "" + +#: src/Core/Installer.php:478 +msgid "JSON PHP module" +msgstr "" + +#: src/Core/Installer.php:479 +msgid "Error: JSON PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:485 +msgid "File Information PHP module" +msgstr "" + +#: src/Core/Installer.php:486 +msgid "Error: File Information PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:492 +msgid "GNU Multiple Precision PHP module" +msgstr "" + +#: src/Core/Installer.php:493 +msgid "Error: GNU Multiple Precision PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:516 +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 "" + +#: src/Core/Installer.php:517 +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 "Aceasta este cel mai adesea o configurare de permisiune, deoarece serverul web nu ar putea fi capabil să scrie fişiere în dosarul dumneavoastră - chiar dacă dvs. puteţi." + +#: src/Core/Installer.php:518 +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 "" + +#: src/Core/Installer.php:519 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"doc/INSTALL.md\" for instructions." +msgstr "" + +#: src/Core/Installer.php:522 +msgid "config/local.config.php is writable" +msgstr "" + +#: src/Core/Installer.php:542 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica utilizează motorul de șablon Smarty3 pentru a prelucra vizualizările sale web. Smarty3 compilează şabloane în PHP pentru a grăbi prelucrarea." + +#: src/Core/Installer.php:543 +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 "Pentru a stoca aceste şabloane compilate, serverul de web trebuie să aibă acces la scriere pentru directorul view/smarty3/ din dosarul de nivel superior Friendica." + +#: src/Core/Installer.php:544 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Vă rugăm să vă asiguraţi că utilizatorul pe care rulează serverul dvs. web (de ex. www-date) are acces la scriere pentru acest dosar." + +#: src/Core/Installer.php:545 +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 "Notă: ca o măsură de securitate, ar trebui să dați serverului web, acces de scriere numai pentru view/smarty3/--dar nu și fișierelor de șablon (.tpl) pe care le conţine." + +#: src/Core/Installer.php:548 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 este inscriptibil" + +#: src/Core/Installer.php:576 +msgid "" +"Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" +"dist to .htaccess." +msgstr "" + +#: src/Core/Installer.php:577 +msgid "" +"In some circumstances (like running inside containers), you can skip this " +"error." +msgstr "" + +#: src/Core/Installer.php:579 +msgid "Error message from Curl when fetching" +msgstr "" + +#: src/Core/Installer.php:585 +msgid "Url rewrite is working" +msgstr "Funcția de rescriere Url rewrite, funcţionează." + +#: src/Core/Installer.php:614 +msgid "" +"The detection of TLS to secure the communication between the browser and the" +" new Friendica server failed." +msgstr "" + +#: src/Core/Installer.php:615 +msgid "" +"It is highly encouraged to use Friendica only over a secure connection as " +"sensitive information like passwords will be transmitted." +msgstr "" + +#: src/Core/Installer.php:616 +msgid "Please ensure that the connection to the server is secure." +msgstr "" + +#: src/Core/Installer.php:617 +msgid "No TLS detected" +msgstr "" + +#: src/Core/Installer.php:619 +msgid "TLS detected" +msgstr "" + +#: src/Core/Installer.php:646 +msgid "ImageMagick PHP extension is not installed" +msgstr "" + +#: src/Core/Installer.php:648 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: src/Core/Installer.php:650 +msgid "ImageMagick supports GIF" +msgstr "" + +#: src/Core/Installer.php:672 +msgid "Database already in use." +msgstr "" + +#: src/Core/Installer.php:677 +msgid "Could not connect to database." +msgstr "Nu se poate face conectarea cu baza de date." + +#: src/Core/L10n.php:507 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:278 msgid "Monday" msgstr "Luni" -#: ../../include/text.php:1213 +#: src/Core/L10n.php:507 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:279 msgid "Tuesday" msgstr "Marţi" -#: ../../include/text.php:1213 +#: src/Core/L10n.php:507 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:280 msgid "Wednesday" msgstr "Miercuri" -#: ../../include/text.php:1213 +#: src/Core/L10n.php:507 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:281 msgid "Thursday" msgstr "Joi" -#: ../../include/text.php:1213 +#: src/Core/L10n.php:507 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:282 msgid "Friday" msgstr "Vineri" -#: ../../include/text.php:1213 +#: src/Core/L10n.php:507 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:283 msgid "Saturday" msgstr "Sâmbătă" -#: ../../include/text.php:1213 +#: src/Core/L10n.php:507 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:277 msgid "Sunday" msgstr "Duminică" -#: ../../include/text.php:1217 +#: src/Core/L10n.php:511 src/Model/Event.php:450 msgid "January" msgstr "Ianuarie" -#: ../../include/text.php:1217 +#: src/Core/L10n.php:511 src/Model/Event.php:451 msgid "February" msgstr "Februarie" -#: ../../include/text.php:1217 +#: src/Core/L10n.php:511 src/Model/Event.php:452 msgid "March" msgstr "Martie" -#: ../../include/text.php:1217 +#: src/Core/L10n.php:511 src/Model/Event.php:453 msgid "April" msgstr "Aprilie" -#: ../../include/text.php:1217 +#: src/Core/L10n.php:511 src/Core/L10n.php:530 src/Model/Event.php:441 msgid "May" msgstr "Mai" -#: ../../include/text.php:1217 +#: src/Core/L10n.php:511 src/Model/Event.php:454 msgid "June" msgstr "Iunie" -#: ../../include/text.php:1217 +#: src/Core/L10n.php:511 src/Model/Event.php:455 msgid "July" msgstr "Iulie" -#: ../../include/text.php:1217 +#: src/Core/L10n.php:511 src/Model/Event.php:456 msgid "August" msgstr "August" -#: ../../include/text.php:1217 +#: src/Core/L10n.php:511 src/Model/Event.php:457 msgid "September" msgstr "Septembrie" -#: ../../include/text.php:1217 +#: src/Core/L10n.php:511 src/Model/Event.php:458 msgid "October" msgstr "Octombrie" -#: ../../include/text.php:1217 +#: src/Core/L10n.php:511 src/Model/Event.php:459 msgid "November" msgstr "Noiembrie" -#: ../../include/text.php:1217 +#: src/Core/L10n.php:511 src/Model/Event.php:460 msgid "December" msgstr "Decembrie" -#: ../../include/text.php:1437 -msgid "bytes" -msgstr "octeţi" +#: src/Core/L10n.php:526 src/Model/Event.php:422 +msgid "Mon" +msgstr "" -#: ../../include/text.php:1461 ../../include/text.php:1473 -msgid "Click to open/close" -msgstr "Apăsați pentru a deschide/închide" +#: src/Core/L10n.php:526 src/Model/Event.php:423 +msgid "Tue" +msgstr "" -#: ../../include/text.php:1702 ../../include/user.php:247 -#: ../../view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "implicit" +#: src/Core/L10n.php:526 src/Model/Event.php:424 +msgid "Wed" +msgstr "" -#: ../../include/text.php:1714 -msgid "Select an alternate language" -msgstr "Selectați o limbă alternativă" +#: src/Core/L10n.php:526 src/Model/Event.php:425 +msgid "Thu" +msgstr "" -#: ../../include/text.php:1970 -msgid "activity" -msgstr "activitate" +#: src/Core/L10n.php:526 src/Model/Event.php:426 +msgid "Fri" +msgstr "" -#: ../../include/text.php:1973 -msgid "post" -msgstr "postare" +#: src/Core/L10n.php:526 src/Model/Event.php:427 +msgid "Sat" +msgstr "" -#: ../../include/text.php:2141 -msgid "Item filed" -msgstr "Element îndosariat" +#: src/Core/L10n.php:526 src/Model/Event.php:421 +msgid "Sun" +msgstr "" -#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047 -#: ../../include/bbcode.php:1048 -msgid "Image/photo" -msgstr "Imagine/fotografie" +#: src/Core/L10n.php:530 src/Model/Event.php:437 +msgid "Jan" +msgstr "Ian" -#: ../../include/bbcode.php:528 +#: src/Core/L10n.php:530 src/Model/Event.php:438 +msgid "Feb" +msgstr "Feb" + +#: src/Core/L10n.php:530 src/Model/Event.php:439 +msgid "Mar" +msgstr "Mar" + +#: src/Core/L10n.php:530 src/Model/Event.php:440 +msgid "Apr" +msgstr "Apr" + +#: src/Core/L10n.php:530 src/Model/Event.php:442 +msgid "Jun" +msgstr "Iun" + +#: src/Core/L10n.php:530 src/Model/Event.php:443 +msgid "Jul" +msgstr "Iul" + +#: src/Core/L10n.php:530 src/Model/Event.php:444 +msgid "Aug" +msgstr "Aug" + +#: src/Core/L10n.php:530 +msgid "Sep" +msgstr "Sep" + +#: src/Core/L10n.php:530 src/Model/Event.php:446 +msgid "Oct" +msgstr "Oct" + +#: src/Core/L10n.php:530 src/Model/Event.php:447 +msgid "Nov" +msgstr "Noi" + +#: src/Core/L10n.php:530 src/Model/Event.php:448 +msgid "Dec" +msgstr "Dec" + +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 #, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" -#: ../../include/bbcode.php:562 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 #, php-format msgid "" -"%s wrote the following post" -msgstr "%s a scris următoarea postare" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" -#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031 -msgid "$1 wrote:" -msgstr "$1 a scris:" +#: src/Core/Renderer.php:89 src/Core/Renderer.php:118 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 +msgid "" +"Friendica can't display this page at the moment, please contact the " +"administrator." +msgstr "Friendica nu poate afișa această pagină momentan, vă rugăm să contactați administratorul." -#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057 -msgid "Encrypted content" -msgstr "Conţinut criptat" +#: src/Core/Renderer.php:143 +msgid "template engine cannot be registered without a name." +msgstr "" -#: ../../include/notifier.php:786 ../../include/delivery.php:456 -msgid "(no subject)" -msgstr "(fără subiect)" +#: src/Core/Renderer.php:177 +msgid "template engine is not registered!" +msgstr "" -#: ../../include/notifier.php:796 ../../include/delivery.php:467 -#: ../../include/enotify.php:33 -msgid "noreply" -msgstr "nu-răspundeţi" +#: src/Core/Storage/Type/FilesystemConfig.php:78 +msgid "Storage base path" +msgstr "" -#: ../../include/dba_pdo.php:72 ../../include/dba.php:56 +#: src/Core/Storage/Type/FilesystemConfig.php:80 +msgid "" +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "" + +#: src/Core/Storage/Type/FilesystemConfig.php:93 +msgid "Enter a valid existing folder" +msgstr "" + +#: src/Core/Update.php:80 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Nu se pot localiza informațiile DNS pentru serverul de bază de date '%s'" +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 "" -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Necunoscut | Fără categorie" +#: src/Core/Update.php:91 +#, 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 "" -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Blocare Imediată" +#: src/Core/Update.php:183 +#, php-format +msgid "%s: executing pre update %d" +msgstr "" -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Dubioșii, spammerii, auto-promoterii" +#: src/Core/Update.php:225 +#, php-format +msgid "%s: executing post update %d" +msgstr "" -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Cunoscut mie, dar fără o opinie" +#: src/Core/Update.php:299 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Actualizarea %s a eșuat. Consultaţi jurnalele de eroare." -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, probabil inofensiv" +#: src/Core/Update.php:339 +#, 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 "" -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Cu reputație, are încrederea mea" +#: src/Core/Update.php:345 +#, php-format +msgid "The error message is\\n[pre]%s[/pre]" +msgstr "" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Săptămânal" +#: src/Core/Update.php:349 src/Core/Update.php:377 +msgid "[Friendica Notify] Database update" +msgstr "" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Lunar" +#: src/Core/Update.php:371 +#, php-format +msgid "" +"\n" +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "\n\t\t\t\tBaza de date a Friendica a fost actualizată cu succes de la %s la %s." -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" +#: src/Database/DBStructure.php:57 +#, php-format +msgid "The database version had been set to %s." +msgstr "" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: src/Database/DBStructure.php:82 +#, php-format +msgid "" +"The post update is at version %d, it has to be at %d to safely drop the " +"tables." +msgstr "" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: src/Database/DBStructure.php:95 +msgid "No unused tables found." +msgstr "" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: src/Database/DBStructure.php:100 +msgid "" +"These tables are not used for friendica and will be deleted when you execute" +" \"dbstructure drop -e\":" +msgstr "" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: src/Database/DBStructure.php:137 +msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." +msgstr "" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: src/Database/DBStructure.php:161 +#, php-format +msgid "" +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "" -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" +#: src/Database/DBStructure.php:164 +msgid "Errors encountered performing database changes: " +msgstr "" -#: ../../include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" +#: src/Database/DBStructure.php:232 +msgid "Another database update is currently running." +msgstr "" -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" +#: src/Database/DBStructure.php:236 +#, php-format +msgid "%s: Database update" +msgstr "" -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Conector Diaspora" +#: src/Database/DBStructure.php:493 +#, php-format +msgid "%s: updating %s table." +msgstr "" -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" +#: src/Factory/Api/Mastodon/Error.php:42 +msgid "Record not found" +msgstr "" -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" +#: src/Factory/Api/Mastodon/Error.php:49 +msgid "Unprocessable Entity" +msgstr "" -#: ../../include/Scrape.php:614 -msgid " on Last.fm" -msgstr "pe Last.fm" +#: src/Factory/Api/Mastodon/Error.php:56 +msgid "Unauthorized" +msgstr "" -#: ../../include/bb2diaspora.php:154 ../../include/event.php:20 +#: src/Factory/Api/Mastodon/Error.php:62 +msgid "" +"Token is not authorized with a valid user or is missing a required scope" +msgstr "" + +#: src/Factory/Api/Mastodon/Error.php:69 +msgid "Internal Server Error" +msgstr "" + +#: src/LegacyModule.php:63 +#, php-format +msgid "Legacy module file not found: %s" +msgstr "" + +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." +msgstr "" + +#: src/Model/Circle.php:544 +msgid "Everybody" +msgstr "Toată lumea" + +#: src/Model/Circle.php:563 +msgid "edit" +msgstr "editare" + +#: src/Model/Circle.php:600 +msgid "add" +msgstr "adaugă" + +#: src/Model/Circle.php:605 +msgid "Edit circle" +msgstr "Modifică cercul" + +#: src/Model/Circle.php:606 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "Contacte în afara oricărui cerc" + +#: src/Model/Circle.php:608 +msgid "Create a new circle" +msgstr "Creează un cerc nou" + +#: src/Model/Circle.php:609 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "Nume cerc:" + +#: src/Model/Circle.php:610 +msgid "Edit circles" +msgstr "Modifică cercuri" + +#: src/Model/Contact.php:1256 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 +msgid "Approve" +msgstr "Aprobă" + +#: src/Model/Contact.php:1710 +msgid "Organisation" +msgstr "Organizație" + +#: src/Model/Contact.php:1718 +msgid "Group" +msgstr "Grup" + +#: src/Model/Contact.php:3021 +msgid "Disallowed profile URL." +msgstr "Profil URL invalid." + +#: src/Model/Contact.php:3026 src/Module/Friendica.php:101 +msgid "Blocked domain" +msgstr "Domeniu blocat" + +#: src/Model/Contact.php:3031 +msgid "Connect URL missing." +msgstr "Lipseşte URL-ul de conectare." + +#: src/Model/Contact.php:3040 +msgid "" +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "Contactul nu a putut fi adăugat. Vă rugăm să verificați credențialele relevante în pagina Setări -> Rețele Sociale" + +#: src/Model/Contact.php:3058 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "" + +#: src/Model/Contact.php:3075 +msgid "The profile address specified does not provide adequate information." +msgstr "Adresa de profil specificată nu furnizează informații adecvate." + +#: src/Model/Contact.php:3077 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Nu au fost descoperite protocoale de comunicații sau fluxuri compatibile." + +#: src/Model/Contact.php:3080 +msgid "An author or name was not found." +msgstr "Un autor sau nume nu a fost găsit." + +#: src/Model/Contact.php:3083 +msgid "No browser URL could be matched to this address." +msgstr "Nici un URL de browser nu a putut fi corelat cu această adresă." + +#: src/Model/Contact.php:3086 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Nu se poate corela @-stilul pentru Adresa de Identitatea cu un protocol cunoscut sau contact de email." + +#: src/Model/Contact.php:3087 +msgid "Use mailto: in front of address to force email check." +msgstr "Utilizaţi mailto: în faţa adresei pentru a forţa verificarea de email." + +#: src/Model/Contact.php:3093 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Adresa de profil specificată aparţine unei reţele care a fost dezactivată pe acest site." + +#: src/Model/Contact.php:3098 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profil limitat. Această persoană nu va putea primi notificări directe/personale, de la dvs." + +#: src/Model/Contact.php:3164 +msgid "Unable to retrieve contact information." +msgstr "Nu se pot localiza informaţiile de contact." + +#: src/Model/Event.php:54 +msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" +msgstr "" + +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 msgid "Starts:" msgstr "Începe:" -#: ../../include/bb2diaspora.php:162 ../../include/event.php:30 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 msgid "Finishes:" -msgstr "Se finalizează:" +msgstr "Se termină:" -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "j F, Y" +#: src/Model/Event.php:419 +msgid "all-day" +msgstr "toată ziua" -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "j F" +#: src/Model/Event.php:445 +msgid "Sept" +msgstr "Sept" -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Zile Naştere :" +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "astăzi" -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Vârsta:" +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:288 src/Util/Temporal.php:353 +msgid "month" +msgstr "lună" -#: ../../include/profile_advanced.php:43 +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:289 src/Util/Temporal.php:354 +msgid "week" +msgstr "săptămână" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:290 src/Util/Temporal.php:355 +msgid "day" +msgstr "zi" + +#: src/Model/Event.php:467 +msgid "No events to display" +msgstr "Niciun eveniment de afișat" + +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "Accesul la acest profil a fost restricţionat." + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "Eveniment negăsit" + +#: src/Model/Event.php:637 +msgid "l, F j" +msgstr "l, F j" + +#: src/Model/Event.php:664 +msgid "Edit event" +msgstr "Editează eveniment" + +#: src/Model/Event.php:665 +msgid "Duplicate event" +msgstr "Eveniment duplicat" + +#: src/Model/Event.php:666 +msgid "Delete event" +msgstr "Ștergere eveniment" + +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: src/Model/Event.php:897 +msgid "D g:i A" +msgstr "" + +#: src/Model/Event.php:898 +msgid "g:i A" +msgstr "" + +#: src/Model/Event.php:964 src/Model/Event.php:966 +msgid "Show map" +msgstr "Arată harta" + +#: src/Model/Event.php:965 +msgid "Hide map" +msgstr "Ascunde harta" + +#: src/Model/Event.php:1058 #, php-format -msgid "for %1$d %2$s" -msgstr "pentru %1$d %2$s" +msgid "%s's birthday" +msgstr "Ziua de naștere a lui %s" -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Etichete:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religie:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Hobby/Interese:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Informaţii de Contact şi Reţele Sociale:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Preferințe muzicale:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Cărti, literatură:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Programe TV:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/cultură/divertisment:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Dragoste/Romantism:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Loc de Muncă/Slujbă:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Școală/educatie:" - -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Apăsați aici pentru a actualiza." - -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Această acţiune depăşeşte limitele stabilite de planul abonamentului dvs." - -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "Această acţiune nu este disponibilă în planul abonamentului dvs." - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Finalizați această sesiune" - -#: ../../include/nav.php:76 ../../include/nav.php:148 -#: ../../view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "Postările şi conversaţiile dvs." - -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Pagina dvs. de profil" - -#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Fotografiile dvs." - -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "Fișierele tale video" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "Evenimentele dvs." - -#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Note Personale" - -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "Notele tale personale" - -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Autentificare" - -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Home Pagina" - -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Creați un cont" - -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Ajutor şi documentaţie" - -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Aplicații" - -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Suplimente la aplicații, utilitare, jocuri" - -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Căutare în conținut site" - -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Conversaţii pe acest site" - -#: ../../include/nav.php:131 -msgid "Conversations on the network" -msgstr "" - -#: ../../include/nav.php:133 -msgid "Directory" -msgstr "Director" - -#: ../../include/nav.php:133 -msgid "People directory" -msgstr "Director persoane" - -#: ../../include/nav.php:135 -msgid "Information" -msgstr "Informaţii" - -#: ../../include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "Informaţii despre această instanță friendica" - -#: ../../include/nav.php:145 -msgid "Conversations from your friends" -msgstr "Conversaţiile prieteniilor dvs." - -#: ../../include/nav.php:146 -msgid "Network Reset" -msgstr "Resetare Reţea" - -#: ../../include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "Încărcare pagina de Reţea fără filtre" - -#: ../../include/nav.php:154 -msgid "Friend Requests" -msgstr "Solicitări Prietenie" - -#: ../../include/nav.php:156 -msgid "See all notifications" -msgstr "Consultaţi toate notificările" - -#: ../../include/nav.php:157 -msgid "Mark all system notifications seen" -msgstr "Marcaţi toate notificările de sistem, ca și vizualizate" - -#: ../../include/nav.php:161 -msgid "Private mail" -msgstr "Mail privat" - -#: ../../include/nav.php:162 -msgid "Inbox" -msgstr "Mesaje primite" - -#: ../../include/nav.php:163 -msgid "Outbox" -msgstr "Căsuță de Ieșire" - -#: ../../include/nav.php:167 -msgid "Manage" -msgstr "Gestionare" - -#: ../../include/nav.php:167 -msgid "Manage other pages" -msgstr "Gestionează alte pagini" - -#: ../../include/nav.php:172 -msgid "Account settings" -msgstr "Configurări Cont" - -#: ../../include/nav.php:175 -msgid "Manage/Edit Profiles" -msgstr "Gestionare/Editare Profile" - -#: ../../include/nav.php:177 -msgid "Manage/edit friends and contacts" -msgstr "Gestionare/Editare prieteni şi contacte" - -#: ../../include/nav.php:184 -msgid "Site setup and configuration" -msgstr "Instalare şi configurare site" - -#: ../../include/nav.php:188 -msgid "Navigation" -msgstr "Navigare" - -#: ../../include/nav.php:188 -msgid "Site map" -msgstr "Hartă Site" - -#: ../../include/api.php:304 ../../include/api.php:315 -#: ../../include/api.php:416 ../../include/api.php:1063 -#: ../../include/api.php:1065 -msgid "User not found." -msgstr "Utilizatorul nu a fost găsit." - -#: ../../include/api.php:771 +#: src/Model/Event.php:1059 #, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "" +msgid "Happy Birthday %s" +msgstr "La mulţi ani, %s!" -#: ../../include/api.php:790 +#: src/Model/Item.php:2139 #, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgid "Detected languages in this post:\\n%s" +msgstr "Limbi recunoscute în această postare:\\n%s" + +#: src/Model/Item.php:3084 +msgid "activity" +msgstr "activitate" + +#: src/Model/Item.php:3086 +msgid "comment" msgstr "" -#: ../../include/api.php:809 +#: src/Model/Item.php:3089 src/Module/Post/Tag/Add.php:123 +msgid "post" +msgstr "postare" + +#: src/Model/Item.php:3259 #, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgid "%s is blocked" +msgstr "%s este blocat(-ă)" + +#: src/Model/Item.php:3261 +#, php-format +msgid "%s is ignored" +msgstr "%s este ignorat(-ă)" + +#: src/Model/Item.php:3263 +#, php-format +msgid "Content from %s is collapsed" msgstr "" -#: ../../include/api.php:1272 -msgid "There is no status with this id." -msgstr "Nu există nici-un status cu acest id." +#: src/Model/Item.php:3267 +#, php-format +msgid "Content warning: %s" +msgstr "Avertisment de conținut: %s" -#: ../../include/api.php:1342 -msgid "There is no conversation with this id." -msgstr "Nu există nici-o conversație cu acest id." +#: src/Model/Item.php:3720 +msgid "bytes" +msgstr "octeţi" -#: ../../include/api.php:1614 -msgid "Invalid request." -msgstr "Cerere invalida" +#: src/Model/Item.php:3751 +#, php-format +msgid "%2$s (%3$d%%, %1$d vote)" +msgid_plural "%2$s (%3$d%%, %1$d votes)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: ../../include/api.php:1625 -msgid "Invalid item." -msgstr "Element invalid" +#: src/Model/Item.php:3753 +#, php-format +msgid "%2$s (%1$d vote)" +msgid_plural "%2$s (%1$d votes)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: ../../include/api.php:1635 -msgid "Invalid action. " +#: src/Model/Item.php:3758 +#, php-format +msgid "%d voter. Poll end: %s" +msgid_plural "%d voters. Poll end: %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Model/Item.php:3760 +#, php-format +msgid "%d voter." +msgid_plural "%d voters." +msgstr[0] "%d votant." +msgstr[1] "%d votanți." +msgstr[2] "%d de votanți." + +#: src/Model/Item.php:3762 +#, php-format +msgid "Poll end: %s" +msgstr "Sfârșitul sondajului: %s" + +#: src/Model/Item.php:3796 src/Model/Item.php:3797 +msgid "View on separate page" +msgstr "Vezi pe o pagină separată" + +#: src/Model/Mail.php:137 src/Model/Mail.php:266 +msgid "[no subject]" +msgstr "[fără subiect]" + +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Fotografii de Perete" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 +msgid "Edit profile" +msgstr "Editare profil" + +#: src/Model/Profile.php:361 +msgid "Change profile photo" +msgstr "Modificați Fotografia de Profil" + +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 +msgid "Homepage:" +msgstr "Homepage:" + +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 +msgid "About:" +msgstr "Despre:" + +#: src/Model/Profile.php:477 +msgid "Atom feed" +msgstr "Feed Atom" + +#: src/Model/Profile.php:484 +msgid "This website has been verified to belong to the same person." +msgstr "Acest website a fost verificat ca aparținând aceleiași persoane" + +#: src/Model/Profile.php:525 +msgid "F d" +msgstr "F d" + +#: src/Model/Profile.php:589 src/Model/Profile.php:678 +msgid "[today]" +msgstr "[azi]" + +#: src/Model/Profile.php:598 +msgid "Birthday Reminders" +msgstr "Memento Zile naştere " + +#: src/Model/Profile.php:599 +msgid "Birthdays this week:" +msgstr "Zi;e Naştere această săptămînă:" + +#: src/Model/Profile.php:627 +msgid "g A l F d" +msgstr "g A l F d" + +#: src/Model/Profile.php:665 +msgid "[No description]" +msgstr "[Fără descriere]" + +#: src/Model/Profile.php:691 +msgid "Event Reminders" +msgstr "Memento Eveniment" + +#: src/Model/Profile.php:692 +msgid "Upcoming events the next 7 days:" +msgstr "Evenimente viitoare în următoarele 7 zile:" + +#: src/Model/Profile.php:891 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "" -#: ../../include/api.php:1643 -msgid "DB error" -msgstr "Eroare BD" +#: src/Model/Profile.php:1031 +msgid "Hometown:" +msgstr "Domiciliu:" -#: ../../include/user.php:40 -msgid "An invitation is required." -msgstr "O invitaţie este necesară." +#: src/Model/Profile.php:1032 +msgid "Marital Status:" +msgstr "Starea civilă:" -#: ../../include/user.php:45 -msgid "Invitation could not be verified." -msgstr "Invitația nu s-a putut verifica." +#: src/Model/Profile.php:1033 +msgid "With:" +msgstr "Împreună cu:" -#: ../../include/user.php:53 -msgid "Invalid OpenID url" -msgstr "URL OpenID invalid" +#: src/Model/Profile.php:1034 +msgid "Since:" +msgstr "Începând cu:" -#: ../../include/user.php:74 -msgid "Please enter the required information." -msgstr "Vă rugăm să introduceți informațiile solicitate." +#: src/Model/Profile.php:1035 +msgid "Sexual Preference:" +msgstr "Orientare Sexuală:" -#: ../../include/user.php:88 -msgid "Please use a shorter name." -msgstr "Vă rugăm să utilizaţi un nume mai scurt." +#: src/Model/Profile.php:1036 +msgid "Political Views:" +msgstr "Viziuni Politice:" -#: ../../include/user.php:90 -msgid "Name too short." -msgstr "Numele este prea scurt." +#: src/Model/Profile.php:1037 +msgid "Religious Views:" +msgstr "Viziuni Religioase:" -#: ../../include/user.php:105 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Acesta nu pare a fi Numele (Prenumele) dvs. complet" +#: src/Model/Profile.php:1038 +msgid "Likes:" +msgstr "Îmi place:" -#: ../../include/user.php:110 -msgid "Your email domain is not among those allowed on this site." -msgstr "Domeniul dvs. de email nu este printre cele permise pe acest site." +#: src/Model/Profile.php:1039 +msgid "Dislikes:" +msgstr "Nu-mi place:" -#: ../../include/user.php:113 -msgid "Not a valid email address." -msgstr "Nu este o adresă vaildă de email." +#: src/Model/Profile.php:1040 +msgid "Title/Description:" +msgstr "Titlu/Descriere" -#: ../../include/user.php:126 -msgid "Cannot use that email." -msgstr "Nu se poate utiliza acest email." +#: src/Model/Profile.php:1041 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 +msgid "Summary" +msgstr "Sumar" -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr " \"Pseudonimul\" dvs. poate conţine numai \"a-z\", \"0-9\", \"-\",, şi \"_\", şi trebuie de asemenea să înceapă cu o literă." +#: src/Model/Profile.php:1042 +msgid "Musical interests" +msgstr "Preferințe muzicale" -#: ../../include/user.php:138 ../../include/user.php:236 -msgid "Nickname is already registered. Please choose another." -msgstr "Pseudonimul este deja înregistrat. Vă rugăm, alegeți un altul." +#: src/Model/Profile.php:1043 +msgid "Books, literature" +msgstr "Cărti, literatură" -#: ../../include/user.php:148 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Pseudonimul a fost înregistrat aici, şi e posibil să nu mai poată fi reutilizat. Vă rugăm, alegeți altul." +#: src/Model/Profile.php:1044 +msgid "Television" +msgstr "Programe TV" -#: ../../include/user.php:164 +#: src/Model/Profile.php:1045 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/cultură/divertisment" + +#: src/Model/Profile.php:1046 +msgid "Hobbies/Interests" +msgstr "Hobby/Interese" + +#: src/Model/Profile.php:1047 +msgid "Love/romance" +msgstr "Dragoste/romantism" + +#: src/Model/Profile.php:1048 +msgid "Work/employment" +msgstr "Loc de Muncă/Slujbă" + +#: src/Model/Profile.php:1049 +msgid "School/education" +msgstr "Școală/educație" + +#: src/Model/Profile.php:1050 +msgid "Contact information and Social Networks" +msgstr "Informaţii de Contact şi Reţele Sociale" + +#: src/Model/User.php:226 src/Model/User.php:1185 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "EROARE GRAVĂ: Generarea de chei de securitate a eşuat." -#: ../../include/user.php:222 +#: src/Model/User.php:619 src/Model/User.php:652 +msgid "Login failed" +msgstr "" + +#: src/Model/User.php:684 +msgid "Not enough information to authenticate" +msgstr "" + +#: src/Model/User.php:805 +msgid "Password can't be empty" +msgstr "Parola nu poate fi goală" + +#: src/Model/User.php:847 +msgid "Empty passwords are not allowed." +msgstr "Parolele goale nu sunt permise." + +#: src/Model/User.php:851 +msgid "" +"The new password has been exposed in a public data dump, please choose " +"another." +msgstr "" + +#: src/Model/User.php:855 +msgid "The password length is limited to 72 characters." +msgstr "Lungimea parolei este limitată la 72 de caractere." + +#: src/Model/User.php:859 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "Parola nu poate conține spații goale sau litere accentuate" + +#: src/Model/User.php:1068 +msgid "Passwords do not match. Password unchanged." +msgstr "Parolele nu coincid. Parolă neschimbată." + +#: src/Model/User.php:1075 +msgid "An invitation is required." +msgstr "O invitaţie este necesară." + +#: src/Model/User.php:1079 +msgid "Invitation could not be verified." +msgstr "Invitația nu s-a putut verifica." + +#: src/Model/User.php:1087 +msgid "Invalid OpenID url" +msgstr "URL OpenID invalid" + +#: src/Model/User.php:1100 src/Security/Authentication.php:241 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Am întâmpinat o problemă în timpul autentificării cu datele OpenID pe care le-ați furnizat." + +#: src/Model/User.php:1100 src/Security/Authentication.php:241 +msgid "The error message was:" +msgstr "Mesajul de eroare a fost:" + +#: src/Model/User.php:1106 +msgid "Please enter the required information." +msgstr "Vă rugăm să introduceți informațiile solicitate." + +#: src/Model/User.php:1120 +#, 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:1127 +#, php-format +msgid "Username should be at least %s character." +msgid_plural "Username should be at least %s characters." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Model/User.php:1131 +#, php-format +msgid "Username should be at most %s character." +msgid_plural "Username should be at most %s characters." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Model/User.php:1139 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Acesta nu pare a fi Numele (Prenumele) dvs. complet" + +#: src/Model/User.php:1144 +msgid "Your email domain is not among those allowed on this site." +msgstr "Domeniul dvs. de email nu este printre cele permise pe acest site." + +#: src/Model/User.php:1148 +msgid "Not a valid email address." +msgstr "Nu este o adresă vaildă de email." + +#: src/Model/User.php:1151 +msgid "The nickname was blocked from registration by the nodes admin." +msgstr "" + +#: src/Model/User.php:1155 src/Model/User.php:1161 +msgid "Cannot use that email." +msgstr "Nu se poate utiliza acest email." + +#: src/Model/User.php:1167 +msgid "Your nickname can only contain a-z, 0-9 and _." +msgstr "Pseudonimul dumneavoastră poate conținu numai a-z, 0-9 și _." + +#: src/Model/User.php:1175 src/Model/User.php:1232 +msgid "Nickname is already registered. Please choose another." +msgstr "Pseudonimul este deja înregistrat. Vă rugăm, alegeți un altul." + +#: src/Model/User.php:1219 src/Model/User.php:1223 msgid "An error occurred during registration. Please try again." msgstr "A intervenit o eroare în timpul înregistrării. Vă rugăm să reîncercați." -#: ../../include/user.php:257 +#: src/Model/User.php:1246 msgid "An error occurred creating your default profile. Please try again." msgstr "A intervenit o eroare la crearea profilului dvs. implicit. Vă rugăm să reîncercați." -#: ../../include/user.php:289 ../../include/user.php:293 -#: ../../include/profile_selectors.php:42 +#: src/Model/User.php:1253 +msgid "An error occurred creating your self contact. Please try again." +msgstr "" + +#: src/Model/User.php:1258 msgid "Friends" msgstr "Prieteni" -#: ../../include/user.php:377 +#: src/Model/User.php:1262 +msgid "" +"An error occurred creating your default contact circle. Please try again." +msgstr "" + +#: src/Model/User.php:1306 +msgid "Profile Photos" +msgstr "Poze profil" + +#: src/Model/User.php:1486 #, php-format msgid "" "\n" "\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" +"\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: ../../include/user.php:381 +#: src/Model/User.php:1489 #, php-format msgid "" "\n" "\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\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" @@ -7120,572 +3831,7487 @@ msgid "" "\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/settings/removeme\n" "\n" -"\t\tThank you and welcome to %2$s." +"\t\tThank you and welcome to %4$s." msgstr "" -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "Partajarea notificării din reţeaua Diaspora" +#: src/Model/User.php:1522 src/Model/User.php:1629 +#, php-format +msgid "Registration details for %s" +msgstr "Detaliile de înregistrare pentru %s" -#: ../../include/diaspora.php:2520 -msgid "Attachments:" -msgstr "Atașări:" +#: src/Model/User.php:1542 +#, 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 "" -#: ../../include/items.php:4555 -msgid "Do you really want to delete this item?" -msgstr "Sigur doriți să ștergeți acest element?" +#: src/Model/User.php:1561 +#, php-format +msgid "Registration at %s" +msgstr "" -#: ../../include/items.php:4778 -msgid "Archives" -msgstr "Arhive" +#: src/Model/User.php:1585 +#, 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 "" -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Bărbat" +#: src/Model/User.php:1593 +#, 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/settings/removeme\n" +"\n" +"\t\t\tThank you and welcome to %2$s." +msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Femeie" +#: src/Model/User.php:1656 +msgid "" +"User with delegates can't be removed, please remove delegate users first" +msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "În prezent Bărbat" +#: src/Module/Admin/Addons/Details.php:65 +msgid "Addon not found." +msgstr "Supliment negăsit." -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "În prezent Femeie" +#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 +#, php-format +msgid "Addon %s disabled." +msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Mai mult Bărbat" +#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 +#, php-format +msgid "Addon %s enabled." +msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Mai mult Femeie" +#: src/Module/Admin/Addons/Details.php:88 +#: src/Module/Admin/Themes/Details.php:46 +msgid "Disable" +msgstr "Dezactivează" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transsexual" +#: src/Module/Admin/Addons/Details.php:91 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:332 +msgid "Enable" +msgstr "Activează" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersexual" +#: src/Module/Admin/Addons/Details.php:111 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 +#: src/Module/Admin/Themes/Details.php:90 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 +msgid "Administration" +msgstr "Administrare" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transsexual" +#: src/Module/Admin/Addons/Details.php:112 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:139 +msgid "Addons" +msgstr "Suplimente" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodit" +#: src/Module/Admin/Addons/Details.php:113 +#: src/Module/Admin/Themes/Details.php:92 +msgid "Toggle" +msgstr "Comutare" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutru" +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 +msgid "Author: " +msgstr "Autor: " -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Non-specific" +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 +msgid "Maintainer: " +msgstr "Responsabil:" -#: ../../include/profile_selectors.php:6 +#: src/Module/Admin/Addons/Index.php:42 +msgid "Addons reloaded" +msgstr "" + +#: src/Module/Admin/Addons/Index.php:53 +#, php-format +msgid "Addon %s failed to install." +msgstr "Suplimentul %s nu s-a putut instala." + +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:303 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Salvare Configurări" + +#: src/Module/Admin/Addons/Index.php:70 +msgid "Reload active addons" +msgstr "Reîncarcă suplimentele active" + +#: src/Module/Admin/Addons/Index.php:74 +#, 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 "" + +#: src/Module/Admin/DBSync.php:51 +msgid "Update has been marked successful" +msgstr "Actualizarea a fost marcată cu succes" + +#: src/Module/Admin/DBSync.php:59 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Actualizarea structurii bazei de date %s a fost aplicată cu succes." + +#: src/Module/Admin/DBSync.php:61 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" + +#: src/Module/Admin/DBSync.php:76 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Executarea %s a eșuat cu eroarea : %s" + +#: src/Module/Admin/DBSync.php:78 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Actualizarea %s a fost aplicată cu succes." + +#: src/Module/Admin/DBSync.php:81 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Actualizare %s nu a returnat nici-un status. Nu se știe dacă a reuşit." + +#: src/Module/Admin/DBSync.php:84 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: src/Module/Admin/DBSync.php:105 +msgid "No failed updates." +msgstr "Nici-o actualizare eșuată." + +#: src/Module/Admin/DBSync.php:106 +msgid "Check database structure" +msgstr "Verifică structura bazei de date" + +#: src/Module/Admin/DBSync.php:110 +msgid "Failed Updates" +msgstr "Actualizări Eșuate" + +#: src/Module/Admin/DBSync.php:111 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Aceasta nu include actualizările dinainte de 1139, care nu a returnat nici-un status." + +#: src/Module/Admin/DBSync.php:112 +msgid "Mark success (if update was manually applied)" +msgstr "Marcaţi ca și realizat (dacă actualizarea a fost aplicată manual)" + +#: src/Module/Admin/DBSync.php:113 +msgid "Attempt to execute this update step automatically" +msgstr "Se încearcă executarea automată a acestei etape de actualizare" + +#: src/Module/Admin/Features.php:76 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: src/Module/Admin/Features.php:84 +msgid "Manage Additional Features" +msgstr "" + +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 msgid "Other" msgstr "Alta" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indecisă" +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 +msgid "unknown" +msgstr "necunoscut" -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Bărbați" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Femei" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gay" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbiană" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Fără Preferințe" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisexual" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosexual" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Abstinent(ă)" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Virgin(ă)" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Deviant" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetish" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "La grămadă" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Nonsexual" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Necăsătorit(ă)" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Singur(ă)" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Disponibil(ă)" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Indisponibil(ă)" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Îndrăgostit(ă)" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Îndrăgostit(ă) nebunește" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Am întâlniri" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Infidel(ă)" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Dependent(ă) de Sex" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Prietenii/Prestaţii" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Ocazional" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Cuplat" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Căsătorit(ă)" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Căsătorit(ă) imaginar" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Parteneri" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "În conviețuire" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "Drept Comun" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Fericit(ă)" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Nu caut" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Înșelat(ă)" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Separat(ă)" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Instabil(ă)" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Divorţat(ă)" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Divorţat(ă) imaginar" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Văduv(ă)" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Incert" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "E complicat" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Nu-mi pasă" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Întreabă-mă" - -#: ../../include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Notificare Friendica" - -#: ../../include/enotify.php:21 -msgid "Thank You," -msgstr "Vă mulțumim," - -#: ../../include/enotify.php:23 +#: src/Module/Admin/Federation.php:187 #, php-format -msgid "%s Administrator" -msgstr "%s Administrator" +msgid "%2$s total system" +msgid_plural "%2$s total systems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: ../../include/enotify.php:64 +#: src/Module/Admin/Federation.php:188 #, php-format -msgid "%s " -msgstr "%s " +msgid "%2$s active user last month" +msgid_plural "%2$s active users last month" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: ../../include/enotify.php:68 +#: src/Module/Admin/Federation.php:189 #, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notificare] Mail nou primit la %s" +msgid "%2$s active user last six months" +msgid_plural "%2$s active users last six months" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: ../../include/enotify.php:70 +#: src/Module/Admin/Federation.php:190 #, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s v-a trimis un nou mesaj privat la %2$s." +msgid "%2$s registered user" +msgid_plural "%2$s registered users" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: ../../include/enotify.php:71 +#: src/Module/Admin/Federation.php:191 #, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s v-a trimis %2$s" +msgid "%2$s locally created post or comment" +msgid_plural "%2$s locally created posts and comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: ../../include/enotify.php:71 -msgid "a private message" -msgstr "un mesaj privat" - -#: ../../include/enotify.php:72 +#: src/Module/Admin/Federation.php:194 #, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la mesaje private." +msgid "%2$s post per user" +msgid_plural "%2$s posts per user" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: ../../include/enotify.php:124 +#: src/Module/Admin/Federation.php:199 #, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s a comentat la [url=%2$s]a %3$s[/url]" +msgid "%2$s user per system" +msgid_plural "%2$s users per system" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: ../../include/enotify.php:131 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s a comentat la [url=%2$s]%4$s postat de %3$s[/url]" - -#: ../../include/enotify.php:139 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s a comentat la [url=%2$s]%3$s dvs.[/url]" - -#: ../../include/enotify.php:149 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Notificare] Comentariu la conversaţia #%1$d postată de %2$s" - -#: ../../include/enotify.php:150 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s a comentat la un element/conversaţie pe care o urmăriți." - -#: ../../include/enotify.php:153 ../../include/enotify.php:168 -#: ../../include/enotify.php:181 ../../include/enotify.php:194 -#: ../../include/enotify.php:212 ../../include/enotify.php:225 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la conversație." - -#: ../../include/enotify.php:160 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notificare] %s a postat pe peretele dvs. de profil" - -#: ../../include/enotify.php:162 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s a postat pe peretele dvs. de profil la %2$s" - -#: ../../include/enotify.php:164 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s a postat pe [url=%2$s]peretele dvs.[/url]" - -#: ../../include/enotify.php:175 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notificare] %s v-a etichetat" - -#: ../../include/enotify.php:176 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s v-a etichetat la %2$s" - -#: ../../include/enotify.php:177 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]v-a etichetat[/url]." - -#: ../../include/enotify.php:188 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica:Notificare] %s a distribuit o nouă postare" - -#: ../../include/enotify.php:189 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s a distribuit o nouă postare la %2$s" - -#: ../../include/enotify.php:190 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s] a distribuit o postare[/url]." - -#: ../../include/enotify.php:202 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notificare] %1$s v-a abordat" - -#: ../../include/enotify.php:203 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s v-a abordat la %2$s" - -#: ../../include/enotify.php:204 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]v-a abordat[/url]." - -#: ../../include/enotify.php:219 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notificare] %s v-a etichetat postarea" - -#: ../../include/enotify.php:220 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$sv-a etichetat postarea la %2$s" - -#: ../../include/enotify.php:221 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s a etichetat [url=%2$s]postarea dvs.[/url]" - -#: ../../include/enotify.php:232 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notificare] Prezentare primită" - -#: ../../include/enotify.php:233 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Aţi primit o prezentare de la '%1$s' at %2$s" - -#: ../../include/enotify.php:234 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Aţi primit [url=%1$s]o prezentare[/url] de la %2$s." - -#: ../../include/enotify.php:237 ../../include/enotify.php:279 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Le puteți vizita profilurile, online pe %s" - -#: ../../include/enotify.php:239 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge prezentarea." - -#: ../../include/enotify.php:247 -msgid "[Friendica:Notify] A new person is sharing with you" +#: src/Module/Admin/Federation.php:209 +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 "" -#: ../../include/enotify.php:248 ../../include/enotify.php:249 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "%1$s împărtăşeşte cu dvs. la %2$s" +#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87 +msgid "Federation Statistics" +msgstr "Statistici federație" -#: ../../include/enotify.php:255 -msgid "[Friendica:Notify] You have a new follower" -msgstr "[Friendica:Notify] Aveţi un nou susținător la" - -#: ../../include/enotify.php:256 ../../include/enotify.php:257 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "Aveţi un nou susținător la %2$s : %1$s" - -#: ../../include/enotify.php:270 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notificare] Ați primit o sugestie de prietenie" - -#: ../../include/enotify.php:271 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Ați primit o sugestie de prietenie de la '%1$s' la %2$s" - -#: ../../include/enotify.php:272 +#: src/Module/Admin/Federation.php:219 #, php-format msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Aţi primit [url=%1$s]o sugestie de prietenie[/url] pentru %2$s de la %3$s." +"Currently this node is aware of %2$s node (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgid_plural "" +"Currently this node is aware of %2$s nodes (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: ../../include/enotify.php:277 -msgid "Name:" -msgstr "Nume:" - -#: ../../include/enotify.php:278 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:281 +#: src/Module/Admin/Logs/Settings.php:47 #, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge sugestia." - -#: ../../include/enotify.php:289 ../../include/enotify.php:302 -msgid "[Friendica:Notify] Connection accepted" -msgstr "[Friendica:Notificare] Conectare acceptată" - -#: ../../include/enotify.php:290 ../../include/enotify.php:303 -#, php-format -msgid "'%1$s' has acepted your connection request at %2$s" +msgid "The logfile '%s' is not writable. No logging possible" msgstr "" -#: ../../include/enotify.php:291 ../../include/enotify.php:304 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +#: src/Module/Admin/Logs/Settings.php:77 +msgid "PHP log currently enabled." msgstr "" -#: ../../include/enotify.php:294 +#: src/Module/Admin/Logs/Settings.php:79 +msgid "PHP log currently disabled." +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 +msgid "Logs" +msgstr "Jurnale" + +#: src/Module/Admin/Logs/Settings.php:88 +msgid "Clear" +msgstr "Curăţă" + +#: src/Module/Admin/Logs/Settings.php:91 +msgid "Enable Debugging" +msgstr "Activează Depanarea" + +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." +"Read-only because it is set by an environment variable" msgstr "" -#: ../../include/enotify.php:297 ../../include/enotify.php:311 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." +#: src/Module/Admin/Logs/Settings.php:92 +msgid "Log file" +msgstr "Fişier Log " + +#: src/Module/Admin/Logs/Settings.php:92 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Trebuie să fie inscriptibil pentru serverul web. Relativ la directorul dumneavoastră superior Friendica." + +#: src/Module/Admin/Logs/Settings.php:93 +msgid "Log level" +msgstr "Nivel log" + +#: src/Module/Admin/Logs/Settings.php:95 +msgid "PHP logging" +msgstr "Jurnalizare PHP" + +#: src/Module/Admin/Logs/Settings.php:96 +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 "" -#: ../../include/enotify.php:307 +#: src/Module/Admin/Logs/View.php:70 #, php-format msgid "" -"'%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." +"Error trying to open %1$s log file.
    Check to see if " +"file %1$s exist and is readable." msgstr "" -#: ../../include/enotify.php:309 +#: src/Module/Admin/Logs/View.php:79 #, php-format msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " +"Couldn't open %1$s log file.
    Check to see if file %1$s " +"is readable." msgstr "" -#: ../../include/enotify.php:322 -msgid "[Friendica System:Notify] registration request" +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 +msgid "View Logs" +msgstr "Vezi jurnale" + +#: src/Module/Admin/Logs/View.php:87 +msgid "Search in logs" +msgstr "Caută în jurnale" + +#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Notifications/Notifications.php:140 +msgid "Show all" msgstr "" -#: ../../include/enotify.php:323 +#: src/Module/Admin/Logs/View.php:89 +msgid "Date" +msgstr "" + +#: src/Module/Admin/Logs/View.php:90 +msgid "Level" +msgstr "" + +#: src/Module/Admin/Logs/View.php:91 +msgid "Context" +msgstr "" + +#: src/Module/Admin/Logs/View.php:93 +msgid "ALL" +msgstr "" + +#: src/Module/Admin/Logs/View.php:94 +msgid "View details" +msgstr "" + +#: src/Module/Admin/Logs/View.php:95 +msgid "Click to view details" +msgstr "" + +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Detalii eveniment" + +#: src/Module/Admin/Logs/View.php:97 +msgid "Data" +msgstr "" + +#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Debug/ActivityPubConversion.php:57 +msgid "Source" +msgstr "" + +#: src/Module/Admin/Logs/View.php:99 +msgid "File" +msgstr "" + +#: src/Module/Admin/Logs/View.php:100 +msgid "Line" +msgstr "Linie" + +#: src/Module/Admin/Logs/View.php:101 +msgid "Function" +msgstr "Funcție" + +#: src/Module/Admin/Logs/View.php:102 +msgid "UID" +msgstr "UID" + +#: src/Module/Admin/Logs/View.php:103 +msgid "Process ID" +msgstr "ID proces" + +#: src/Module/Admin/Logs/View.php:104 +msgid "Close" +msgstr "" + +#: src/Module/Admin/Queue.php:50 +msgid "Inspect Deferred Worker Queue" +msgstr "" + +#: 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 "" + +#: src/Module/Admin/Queue.php:54 +msgid "Inspect Worker Queue" +msgstr "" + +#: 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 "" + +#: src/Module/Admin/Queue.php:75 +msgid "ID" +msgstr "ID" + +#: src/Module/Admin/Queue.php:76 +msgid "Command" +msgstr "Comandă" + +#: src/Module/Admin/Queue.php:77 +msgid "Job Parameters" +msgstr "" + +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "" + +#: src/Module/Admin/Queue.php:79 +msgid "Priority" +msgstr "Prioritate" + +#: src/Module/Admin/Site.php:212 #, php-format -msgid "You've received a registration request from '%1$s' at %2$s" +msgid "%s is no valid input for maximum image size" msgstr "" -#: ../../include/enotify.php:324 +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:211 +msgid "No special theme for mobile devices" +msgstr "Nici-o temă specială pentru dispozitive mobile" + +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:221 #, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgid "%s - (Experimental)" msgstr "" -#: ../../include/enotify.php:327 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +#: src/Module/Admin/Site.php:342 +msgid "No community page" msgstr "" -#: ../../include/enotify.php:330 +#: src/Module/Admin/Site.php:343 +msgid "No community page for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:344 +msgid "Public postings from users of this site" +msgstr "Postări publice de la utilizatorii acestui site" + +#: src/Module/Admin/Site.php:345 +msgid "Public postings from the federated network" +msgstr "Postări publice din rețeaua federată" + +#: src/Module/Admin/Site.php:346 +msgid "Public postings from local users and the federated network" +msgstr "Postări publice atât de la utilizatori locali, cât și de la rețeaua federată" + +#: src/Module/Admin/Site.php:352 +msgid "Multi user instance" +msgstr "Instanţă utilizatori multipli" + +#: src/Module/Admin/Site.php:375 +msgid "Closed" +msgstr "Inchis" + +#: src/Module/Admin/Site.php:376 +msgid "Requires approval" +msgstr "Necesită aprobarea" + +#: src/Module/Admin/Site.php:377 +msgid "Open" +msgstr "Deschide" + +#: src/Module/Admin/Site.php:381 +msgid "Don't check" +msgstr "" + +#: src/Module/Admin/Site.php:382 +msgid "check the stable version" +msgstr "" + +#: src/Module/Admin/Site.php:383 +msgid "check the development version" +msgstr "" + +#: src/Module/Admin/Site.php:387 +msgid "none" +msgstr "" + +#: src/Module/Admin/Site.php:388 +msgid "Local contacts" +msgstr "" + +#: src/Module/Admin/Site.php:389 +msgid "Interactors" +msgstr "" + +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 +msgid "Site" +msgstr "Site" + +#: src/Module/Admin/Site.php:400 +msgid "General Information" +msgstr "Informații generale" + +#: src/Module/Admin/Site.php:402 +msgid "Republish users to directory" +msgstr "" + +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 +msgid "Registration" +msgstr "Registratură" + +#: src/Module/Admin/Site.php:404 +msgid "File upload" +msgstr "Fişier incărcat" + +#: src/Module/Admin/Site.php:405 +msgid "Policies" +msgstr "Politici" + +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "Avansat" + +#: src/Module/Admin/Site.php:407 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: src/Module/Admin/Site.php:408 +msgid "Performance" +msgstr "Performanţă" + +#: src/Module/Admin/Site.php:409 +msgid "Worker" +msgstr "" + +#: src/Module/Admin/Site.php:410 +msgid "Message Relay" +msgstr "" + +#: src/Module/Admin/Site.php:411 +msgid "" +"Use the command \"console relay\" in the command line to add or remove " +"relays." +msgstr "" + +#: src/Module/Admin/Site.php:412 +msgid "The system is not subscribed to any relays at the moment." +msgstr "Sistemul nu este abonat momentan la niciun releu." + +#: src/Module/Admin/Site.php:413 +msgid "The system is currently subscribed to the following relays:" +msgstr "Sistemul este abonat în mod curent la următoarele relee:" + +#: src/Module/Admin/Site.php:415 +msgid "Relocate Node" +msgstr "" + +#: src/Module/Admin/Site.php:416 +msgid "" +"Relocating your node enables you to change the DNS domain of this node and " +"keep all the existing users and posts. This process takes a while and can " +"only be started from the relocate console command like this:" +msgstr "" + +#: src/Module/Admin/Site.php:417 +msgid "(Friendica directory)# bin/console relocate https://newdomain.com" +msgstr "" + +#: src/Module/Admin/Site.php:420 +msgid "Site name" +msgstr "Nume site" + +#: src/Module/Admin/Site.php:421 +msgid "Sender Email" +msgstr "" + +#: src/Module/Admin/Site.php:421 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: src/Module/Admin/Site.php:422 +msgid "Name of the system actor" +msgstr "" + +#: src/Module/Admin/Site.php:422 +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:423 +msgid "Banner/Logo" +msgstr "Baner/Logo" + +#: src/Module/Admin/Site.php:424 +msgid "Email Banner/Logo" +msgstr "" + +#: src/Module/Admin/Site.php:425 +msgid "Shortcut icon" +msgstr "" + +#: src/Module/Admin/Site.php:425 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: src/Module/Admin/Site.php:426 +msgid "Touch icon" +msgstr "" + +#: src/Module/Admin/Site.php:426 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: src/Module/Admin/Site.php:427 +msgid "Additional Info" +msgstr "Informaţii suplimentare" + +#: src/Module/Admin/Site.php:427 #, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge cererea." +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/servers." +msgstr "" -#: ../../include/oembed.php:212 -msgid "Embedded content" -msgstr "Conţinut încorporat" +#: src/Module/Admin/Site.php:428 +msgid "System language" +msgstr "Limbă System l" -#: ../../include/oembed.php:221 -msgid "Embedding disabled" -msgstr "Încorporarea conținuturilor este dezactivată" +#: src/Module/Admin/Site.php:429 +msgid "System theme" +msgstr "Temă System " -#: ../../include/uimport.php:94 +#: src/Module/Admin/Site.php:429 +#, php-format +msgid "" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "" + +#: src/Module/Admin/Site.php:430 +msgid "Mobile system theme" +msgstr "Temă sisteme mobile" + +#: src/Module/Admin/Site.php:430 +msgid "Theme for mobile devices" +msgstr "Temă pentru dispozitivele mobile" + +#: src/Module/Admin/Site.php:431 +msgid "Force SSL" +msgstr "Forțează SSL" + +#: src/Module/Admin/Site.php:431 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" + +#: src/Module/Admin/Site.php:432 +msgid "Show help entry from navigation menu" +msgstr "" + +#: src/Module/Admin/Site.php:432 +msgid "" +"Displays the menu entry for the Help pages from the navigation menu. It is " +"always accessible by calling /help directly." +msgstr "" + +#: src/Module/Admin/Site.php:433 +msgid "Single user instance" +msgstr "Instanţă cu un singur utilizator" + +#: src/Module/Admin/Site.php:433 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Stabiliți această instanţă ca utilizator-multipli sau utilizator/unic, pentru utilizatorul respectiv" + +#: src/Module/Admin/Site.php:435 +msgid "Maximum image size" +msgstr "Maxim mărime imagine" + +#: src/Module/Admin/Site.php:435 +#, php-format +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "" + +#: src/Module/Admin/Site.php:439 +msgid "Maximum image length" +msgstr "Dimensiunea maximă a imaginii" + +#: src/Module/Admin/Site.php:439 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Dimensiunea maximă în pixeli a celei mai lungi laturi a imaginii încărcate. Implicit este -1, ceea ce înseamnă fără limite." + +#: src/Module/Admin/Site.php:440 +msgid "JPEG image quality" +msgstr "Calitate imagine JPEG " + +#: src/Module/Admin/Site.php:440 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Imaginile JPEG încărcate vor fi salvate cu această calitate stabilită [0-100]. Implicit este 100, ceea ce înseamnă calitate completă." + +#: src/Module/Admin/Site.php:442 +msgid "Register policy" +msgstr "Politici inregistrare " + +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "" + +#: src/Module/Admin/Site.php:444 +msgid "Maximum Daily Registrations" +msgstr "Înregistrări Zilnice Maxime" + +#: src/Module/Admin/Site.php:444 +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 "Dacă înregistrarea este permisă de mai sus, aceasta stabileşte numărul maxim de utilizatori noi înregistraţi, acceptaţi pe zi. Dacă înregistrarea este stabilită ca închisă, această setare nu are efect." + +#: src/Module/Admin/Site.php:445 +msgid "Register text" +msgstr "Text înregistrare" + +#: src/Module/Admin/Site.php:445 +msgid "" +"Will be displayed prominently on the registration page. You can use BBCode " +"here." +msgstr "Va fi afișat în mod proeminent pe pagina de înregistrare. Puteți folosi BBCode aici." + +#: src/Module/Admin/Site.php:446 +msgid "Forbidden Nicknames" +msgstr "Pseudonime interzise" + +#: src/Module/Admin/Site.php:446 +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:447 +msgid "Accounts abandoned after x days" +msgstr "Conturi abandonate după x zile" + +#: src/Module/Admin/Site.php:447 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Nu va risipi resurse de sistem interogând site-uri externe pentru conturi abandonate. Introduceţi 0 pentru nici-o limită de timp." + +#: src/Module/Admin/Site.php:448 +msgid "Allowed friend domains" +msgstr "Domenii prietene permise" + +#: src/Module/Admin/Site.php:448 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Lista cu separator prin virgulă a domeniilor ce sunt permise pentru a stabili relaţii de prietenie cu acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu" + +#: src/Module/Admin/Site.php:449 +msgid "Allowed email domains" +msgstr "Domenii de email, permise" + +#: src/Module/Admin/Site.php:449 +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 "Lista cu separator prin virgulă a domeniilor ce sunt permise în adresele de email pentru înregistrările pe acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu" + +#: src/Module/Admin/Site.php:450 +msgid "No OEmbed rich content" +msgstr "" + +#: src/Module/Admin/Site.php:450 +msgid "" +"Don't show the rich content (e.g. embedded PDF), except from the domains " +"listed below." +msgstr "" + +#: src/Module/Admin/Site.php:451 +msgid "Trusted third-party domains" +msgstr "Domenii terțe de încredere" + +#: src/Module/Admin/Site.php:451 +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:452 +msgid "Block public" +msgstr "Blocare acces public" + +#: src/Module/Admin/Site.php:452 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Bifați pentru a bloca accesul public, pe acest site, către toate paginile publice cu caracter personal, doar dacă nu sunteţi deja autentificat." + +#: src/Module/Admin/Site.php:453 +msgid "Force publish" +msgstr "Forțează publicarea" + +#: src/Module/Admin/Site.php:453 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Bifați pentru a forţa, ca toate profilurile de pe acest site să fie enumerate în directorul site-ului." + +#: src/Module/Admin/Site.php:453 +msgid "Enabling this may violate privacy laws like the GDPR" +msgstr "Activarea acestei opțiuni poate viola legi dedicate intimității precum GDPR" + +#: src/Module/Admin/Site.php:454 +msgid "Global directory URL" +msgstr "URL director global" + +#: src/Module/Admin/Site.php:454 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "URL către directorul global. Dacă aceasta nu este setată, directorul global este complet indisponibil aplicației." + +#: src/Module/Admin/Site.php:455 +msgid "Private posts by default for new users" +msgstr "Postările private, ca implicit pentru utilizatori noi" + +#: src/Module/Admin/Site.php:455 +msgid "" +"Set default post permissions for all new members to the default privacy " +"circle rather than public." +msgstr "" + +#: src/Module/Admin/Site.php:456 +msgid "Don't include post content in email notifications" +msgstr "Nu include conţinutul postării în notificările prin email" + +#: src/Module/Admin/Site.php:456 +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 "Nu include conținutul unui post/comentariu/mesaj privat/etc. în notificările prin email, ce sunt trimise de pe acest site, ca și masură de confidenţialitate." + +#: src/Module/Admin/Site.php:457 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Nu permiteţi accesul public la suplimentele enumerate în meniul de aplicaţii." + +#: src/Module/Admin/Site.php:457 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Bifând această casetă va restricționa, suplimentele enumerate în meniul de aplicaţii, exclusiv la accesul membrilor." + +#: src/Module/Admin/Site.php:458 +msgid "Don't embed private images in posts" +msgstr "Nu încorpora imagini private în postări" + +#: src/Module/Admin/Site.php:458 +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 "Nu înlocui fotografiile private, locale, din postări cu o copie încorporată imaginii. Aceasta înseamnă că, contactele care primesc postări ce conțin fotografii private vor trebui să se autentifice şi să încarce fiecare imagine, ceea ce poate dura ceva timp." + +#: src/Module/Admin/Site.php:459 +msgid "Explicit Content" +msgstr "Conținut explicit" + +#: src/Module/Admin/Site.php:459 +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 "" + +#: src/Module/Admin/Site.php:460 +msgid "Proxify external content" +msgstr "" + +#: src/Module/Admin/Site.php:460 +msgid "" +"Route external content via the proxy functionality. This is used for example" +" for some OEmbed accesses and in some other rare cases." +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "Cache contact avatars" +msgstr "" + +#: src/Module/Admin/Site.php:461 +msgid "" +"Locally store the avatar pictures of the contacts. This uses a lot of " +"storage space but it increases the performance." +msgstr "" + +#: src/Module/Admin/Site.php:462 +msgid "Allow Users to set remote_self" +msgstr "Permite utilizatorilor să-și stabilească remote_self" + +#: src/Module/Admin/Site.php:462 +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 "Bifând aceasta, fiecărui utilizator îi este permis să marcheze fiecare contact, ca și propriu_la-distanță în dialogul de remediere contact. Stabilind acest marcaj unui un contact, va determina oglindirea fiecărei postări a respectivului contact, în fluxul utilizatorilor." + +#: src/Module/Admin/Site.php:463 +msgid "Enable multiple registrations" +msgstr "Permite înregistrări multiple" + +#: src/Module/Admin/Site.php:463 +msgid "Enable users to register additional accounts for use as pages." +msgstr "Permite utilizatorilor să înregistreze conturi adiționale care să poată fi folosite drept pagini." + +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID" +msgstr "Activează OpenID" + +#: src/Module/Admin/Site.php:464 +msgid "Enable OpenID support for registration and logins." +msgstr "Activează suportul OpenID pentru înregistrare și login." + +#: src/Module/Admin/Site.php:465 +msgid "Enable Fullname check" +msgstr "" + +#: src/Module/Admin/Site.php:465 +msgid "" +"Enable check to only allow users to register with a space between the first " +"name and the last name in their full name." +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "" + +#: src/Module/Admin/Site.php:467 +msgid "Community pages for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:467 +msgid "" +"Which community pages should be available for visitors. Local users always " +"see both pages." +msgstr "" + +#: src/Module/Admin/Site.php:468 +msgid "Posts per user on community page" +msgstr "" + +#: src/Module/Admin/Site.php:468 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"\"Global Community\")" +msgstr "" + +#: src/Module/Admin/Site.php:470 +msgid "Enable Mail support" +msgstr "" + +#: src/Module/Admin/Site.php:470 +msgid "" +"Enable built-in mail support to poll IMAP folders and to reply via mail." +msgstr "" + +#: src/Module/Admin/Site.php:471 +msgid "" +"Mail support can't be enabled because the PHP IMAP module is not installed." +msgstr "" + +#: src/Module/Admin/Site.php:472 +msgid "Enable OStatus support" +msgstr "" + +#: src/Module/Admin/Site.php:472 +msgid "" +"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public." +msgstr "" + +#: src/Module/Admin/Site.php:474 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "Suportul pentru Diaspora nu poate fi activat deoarece Friendica a fost instalată într-un subdirector." + +#: src/Module/Admin/Site.php:475 +msgid "Enable Diaspora support" +msgstr "Activează Suport Diaspora" + +#: src/Module/Admin/Site.php:475 +msgid "" +"Enable built-in Diaspora network compatibility for communicating with " +"diaspora servers." +msgstr "" + +#: src/Module/Admin/Site.php:476 +msgid "Verify SSL" +msgstr "Verifică SSL" + +#: src/Module/Admin/Site.php:476 +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 "Dacă doriţi, puteţi porni verificarea cu strictețe a certificatului. Aceasta va însemna că nu vă puteţi conecta (deloc) la site-uri SSL auto-semnate." + +#: src/Module/Admin/Site.php:477 +msgid "Proxy user" +msgstr "Proxy user" + +#: src/Module/Admin/Site.php:477 +msgid "User name for the proxy server." +msgstr "" + +#: src/Module/Admin/Site.php:478 +msgid "Proxy URL" +msgstr "Proxy URL" + +#: src/Module/Admin/Site.php:478 +msgid "" +"If you want to use a proxy server that Friendica should use to connect to " +"the network, put the URL of the proxy here." +msgstr "" + +#: src/Module/Admin/Site.php:479 +msgid "Network timeout" +msgstr "Timp de expirare rețea" + +#: src/Module/Admin/Site.php:479 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valoare exprimată în secunde. Stabiliți la 0 pentru nelimitat (nu este recomandat)." + +#: src/Module/Admin/Site.php:480 +msgid "Maximum Load Average" +msgstr "Media Maximă de Încărcare" + +#: src/Module/Admin/Site.php:480 +#, php-format +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default %d." +msgstr "" + +#: src/Module/Admin/Site.php:481 +msgid "Minimal Memory" +msgstr "" + +#: src/Module/Admin/Site.php:481 +msgid "" +"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "" + +#: src/Module/Admin/Site.php:482 +msgid "Periodically optimize tables" +msgstr "" + +#: src/Module/Admin/Site.php:482 +msgid "Periodically optimize tables like the cache and the workerqueue" +msgstr "" + +#: src/Module/Admin/Site.php:484 +msgid "Discover followers/followings from contacts" +msgstr "" + +#: src/Module/Admin/Site.php:484 +msgid "" +"If enabled, contacts are checked for their followers and following contacts." +msgstr "" + +#: src/Module/Admin/Site.php:485 +msgid "None - deactivated" +msgstr "" + +#: src/Module/Admin/Site.php:486 +msgid "" +"Local contacts - contacts of our local contacts are discovered for their " +"followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:487 +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:489 +msgid "Synchronize the contacts with the directory server" +msgstr "" + +#: src/Module/Admin/Site.php:489 +msgid "" +"if enabled, the system will check periodically for new contacts on the " +"defined directory server." +msgstr "" + +#: src/Module/Admin/Site.php:491 +msgid "Days between requery" +msgstr "" + +#: src/Module/Admin/Site.php:491 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: src/Module/Admin/Site.php:492 +msgid "Discover contacts from other servers" +msgstr "Descoperă contacte de pe alte servere" + +#: src/Module/Admin/Site.php:492 +msgid "" +"Periodically query other servers for contacts. The system queries Friendica," +" Mastodon and Hubzilla servers." +msgstr "" + +#: src/Module/Admin/Site.php:493 +msgid "Search the local directory" +msgstr "" + +#: src/Module/Admin/Site.php:493 +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:495 +msgid "Publish server information" +msgstr "" + +#: src/Module/Admin/Site.php:495 +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 "" + +#: src/Module/Admin/Site.php:497 +msgid "Check upstream version" +msgstr "" + +#: src/Module/Admin/Site.php:497 +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:498 +msgid "Suppress Tags" +msgstr "" + +#: src/Module/Admin/Site.php:498 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: src/Module/Admin/Site.php:499 +msgid "Clean database" +msgstr "" + +#: src/Module/Admin/Site.php:499 +msgid "" +"Remove old remote items, orphaned database records and old content from some" +" other helper tables." +msgstr "" + +#: src/Module/Admin/Site.php:500 +msgid "Lifespan of remote items" +msgstr "" + +#: src/Module/Admin/Site.php:500 +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:501 +msgid "Lifespan of unclaimed items" +msgstr "" + +#: src/Module/Admin/Site.php:501 +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 "" + +#: src/Module/Admin/Site.php:502 +msgid "Lifespan of raw conversation data" +msgstr "" + +#: src/Module/Admin/Site.php:502 +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:503 +msgid "Maximum numbers of comments per post" +msgstr "Numărul maxim de comentarii per post" + +#: src/Module/Admin/Site.php:503 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Câte comentarii ar trebui afișate pentru fiecare postare? Valoarea implicită este 100." + +#: src/Module/Admin/Site.php:504 +msgid "Maximum numbers of comments per post on the display page" +msgstr "" + +#: src/Module/Admin/Site.php:504 +msgid "" +"How many comments should be shown on the single view for each post? Default " +"value is 1000." +msgstr "" + +#: src/Module/Admin/Site.php:505 +msgid "Temp path" +msgstr "Calea Temp" + +#: src/Module/Admin/Site.php:505 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Dacă aveți un sistem restricționat unde serverul web nu poate accesa calea temp a sistemului, introduceți o nouă cale aici." + +#: src/Module/Admin/Site.php:506 +msgid "Only search in tags" +msgstr "Caută numai etichete" + +#: src/Module/Admin/Site.php:506 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "" + +#: src/Module/Admin/Site.php:507 +msgid "" +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "" + +#: src/Module/Admin/Site.php:509 +msgid "Maximum number of parallel workers" +msgstr "" + +#: src/Module/Admin/Site.php:509 +#, 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:510 +msgid "Enable fastlane" +msgstr "" + +#: src/Module/Admin/Site.php:510 +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:512 +msgid "Direct relay transfer" +msgstr "" + +#: src/Module/Admin/Site.php:512 +msgid "" +"Enables the direct transfer to other servers without using the relay servers" +msgstr "" + +#: src/Module/Admin/Site.php:513 +msgid "Relay scope" +msgstr "" + +#: src/Module/Admin/Site.php:513 +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:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Disabled" +msgstr "Dezactivat" + +#: src/Module/Admin/Site.php:513 +msgid "all" +msgstr "toate" + +#: src/Module/Admin/Site.php:513 +msgid "tags" +msgstr "etichete" + +#: src/Module/Admin/Site.php:514 +msgid "Server tags" +msgstr "Etichete server" + +#: src/Module/Admin/Site.php:514 +msgid "Comma separated list of tags for the \"tags\" subscription." +msgstr "" + +#: src/Module/Admin/Site.php:515 +msgid "Deny Server tags" +msgstr "" + +#: src/Module/Admin/Site.php:515 +msgid "Comma separated list of tags that are rejected." +msgstr "" + +#: src/Module/Admin/Site.php:516 +msgid "Allow user tags" +msgstr "" + +#: src/Module/Admin/Site.php:516 +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:519 +msgid "Start Relocation" +msgstr "" + +#: src/Module/Admin/Storage.php:46 +#, php-format +msgid "Storage backend, %s is invalid." +msgstr "" + +#: src/Module/Admin/Storage.php:73 +#, php-format +msgid "Storage backend %s error: %s" +msgstr "" + +#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +msgid "Invalid storage backend setting value." +msgstr "" + +#: src/Module/Admin/Storage.php:139 +msgid "Current Storage Backend" +msgstr "" + +#: src/Module/Admin/Storage.php:140 +msgid "Storage Configuration" +msgstr "" + +#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +msgid "Storage" +msgstr "" + +#: src/Module/Admin/Storage.php:143 +msgid "Save & Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:144 +msgid "Use storage backend" +msgstr "" + +#: src/Module/Admin/Storage.php:145 +msgid "Save & Reload" +msgstr "Salvează & Reîncarcă" + +#: src/Module/Admin/Storage.php:146 +msgid "This backend doesn't have custom settings" +msgstr "" + +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "" + +#: src/Module/Admin/Storage.php:150 +msgid "Database (legacy)" +msgstr "" + +#: src/Module/Admin/Summary.php:55 +#, php-format +msgid "Template engine (%s) error: %s" +msgstr "" + +#: src/Module/Admin/Summary.php:59 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"bin/console.php dbstructure toinnodb of your Friendica installation for" +" an automatic conversion.
    " +msgstr "" + +#: src/Module/Admin/Summary.php:64 +#, php-format +msgid "" +"Your DB still runs with InnoDB tables in the Antelope file format. You " +"should change the file format to Barracuda. Friendica is using features that" +" are not provided by the Antelope format. See here for a " +"guide that may be helpful converting the table engines. You may also use the" +" command php bin/console.php dbstructure toinnodb of your Friendica" +" installation for an automatic conversion.
    " +msgstr "" + +#: src/Module/Admin/Summary.php:74 +#, php-format +msgid "" +"Your table_definition_cache is too low (%d). This can lead to the database " +"error \"Prepared statement needs to be re-prepared\". Please set it at least" +" to %d. See here for more information.
    " +msgstr "" + +#: src/Module/Admin/Summary.php:85 +#, php-format +msgid "" +"There is a new version of Friendica available for download. Your current " +"version is %1$s, upstream version is %2$s" +msgstr "" + +#: src/Module/Admin/Summary.php:94 +msgid "" +"The database update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "" + +#: src/Module/Admin/Summary.php:98 +msgid "" +"The last update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear. (Some of the errors are possibly inside the logfile.)" +msgstr "" + +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "" + +#: src/Module/Admin/Summary.php:107 +msgid "The worker was never executed. Please check your database structure!" +msgstr "" + +#: src/Module/Admin/Summary.php:109 +#, php-format +msgid "" +"The last worker execution was on %s UTC. This is older than one hour. Please" +" check your crontab settings." +msgstr "" + +#: src/Module/Admin/Summary.php:114 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +".htconfig.php. See the Config help page for " +"help with the transition." +msgstr "" + +#: src/Module/Admin/Summary.php:118 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +"config/local.ini.php. See the Config help " +"page for help with the transition." +msgstr "" + +#: src/Module/Admin/Summary.php:124 +#, php-format +msgid "" +"%s is not reachable on your system. This is a severe " +"configuration issue that prevents server to server communication. See the installation page for help." +msgstr "" + +#: src/Module/Admin/Summary.php:148 +#, php-format +msgid "" +"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" +" system.basepath from your db to avoid differences." +msgstr "" + +#: src/Module/Admin/Summary.php:156 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is wrong and the config file '%s' " +"isn't used." +msgstr "" + +#: src/Module/Admin/Summary.php:164 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is not equal to the config file " +"'%s'. Please fix your configuration." +msgstr "" + +#: src/Module/Admin/Summary.php:175 +msgid "Message queues" +msgstr "Șiruri de mesaje" + +#: src/Module/Admin/Summary.php:181 +msgid "Server Settings" +msgstr "Setări server" + +#: src/Module/Admin/Summary.php:199 +msgid "Version" +msgstr "Versiune" + +#: src/Module/Admin/Summary.php:203 +msgid "Active addons" +msgstr "Suplimente active" + +#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 +#, php-format +msgid "Theme %s disabled." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 +#, php-format +msgid "Theme %s successfully enabled." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 +#, php-format +msgid "Theme %s failed to install." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:83 +msgid "Screenshot" +msgstr "Screenshot" + +#: src/Module/Admin/Themes/Details.php:91 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 +msgid "Themes" +msgstr "Teme" + +#: src/Module/Admin/Themes/Embed.php:80 +msgid "Unknown theme." +msgstr "Temă necunoscută" + +#: src/Module/Admin/Themes/Index.php:51 +msgid "Themes reloaded" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:114 +msgid "Reload active themes" +msgstr "Reîncarcă teme active" + +#: src/Module/Admin/Themes/Index.php:118 +#, php-format +msgid "No themes found on the system. They should be placed in %1$s" +msgstr "Nicio temă nu s-a găsit pe acest sistem. Ele trebuie plasate în %1$s" + +#: src/Module/Admin/Themes/Index.php:119 +msgid "[Experimental]" +msgstr "[Experimental]" + +#: src/Module/Admin/Themes/Index.php:120 +msgid "[Unsupported]" +msgstr "[Unsupported]" + +#: src/Module/Admin/Tos.php:79 +msgid "Display Terms of Service" +msgstr "Afișează Condițiile de Utilizare" + +#: src/Module/Admin/Tos.php:79 +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 "" + +#: src/Module/Admin/Tos.php:80 +msgid "Display Privacy Statement" +msgstr "" + +#: src/Module/Admin/Tos.php:80 +#, php-format +msgid "" +"Show some informations regarding the needed information to operate the node " +"according e.g. to EU-GDPR." +msgstr "" + +#: src/Module/Admin/Tos.php:81 +msgid "Privacy Statement Preview" +msgstr "" + +#: src/Module/Admin/Tos.php:83 +msgid "The Terms of Service" +msgstr "Condițiile de Utilizare" + +#: src/Module/Admin/Tos.php:83 +msgid "" +"Enter the Terms of Service for your node here. You can use BBCode. Headers " +"of sections should be [h2] and below." +msgstr "" + +#: src/Module/Admin/Tos.php:84 +msgid "The rules" +msgstr "" + +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." +msgstr "" + +#: src/Module/Api/ApiResponse.php:293 +#, php-format +msgid "API endpoint %s %s is not implemented but might be in the future." +msgstr "" + +#: src/Module/Api/Mastodon/Apps.php:73 +msgid "Missing parameters" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:51 +msgid "Only starting posts can be bookmarked" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +msgid "Only starting posts can be muted" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 +#, php-format +msgid "Posts from %s can't be shared" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +msgid "Only starting posts can be unbookmarked" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +msgid "Only starting posts can be unmuted" +msgstr "" + +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 +#, php-format +msgid "Posts from %s can't be unshared" +msgstr "" + +#: src/Module/Api/Twitter/ContactEndpoint.php:66 +msgid "Contact not found" +msgstr "Contact negăsit" + +#: src/Module/Apps.php:62 +msgid "No installed applications." +msgstr "Nu există aplicații instalate." + +#: src/Module/Apps.php:67 +msgid "Applications" +msgstr "Aplicații" + +#: src/Module/Attach.php:49 src/Module/Attach.php:61 +msgid "Item was not found." +msgstr "Element negăsit." + +#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +msgid "Please login to continue." +msgstr "Vă rugăm să vă autentificați pentru a continua." + +#: src/Module/BaseAdmin.php:63 +msgid "You don't have access to administration pages." +msgstr "" + +#: src/Module/BaseAdmin.php:67 +msgid "" +"Submanaged account can't access the administration pages. Please log back in" +" as the main account." +msgstr "" + +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +msgid "Overview" +msgstr "" + +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +msgid "Configuration" +msgstr "" + +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +msgid "Additional features" +msgstr "Caracteristici suplimentare" + +#: src/Module/BaseAdmin.php:97 +msgid "Database" +msgstr "" + +#: src/Module/BaseAdmin.php:98 +msgid "DB updates" +msgstr "Actualizări Bază de Date" + +#: src/Module/BaseAdmin.php:99 +msgid "Inspect Deferred Workers" +msgstr "" + +#: src/Module/BaseAdmin.php:100 +msgid "Inspect worker Queue" +msgstr "" + +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +msgid "Diagnostics" +msgstr "" + +#: src/Module/BaseAdmin.php:107 +msgid "PHP Info" +msgstr "" + +#: src/Module/BaseAdmin.php:108 +msgid "probe address" +msgstr "" + +#: src/Module/BaseAdmin.php:109 +msgid "check webfinger" +msgstr "" + +#: src/Module/BaseAdmin.php:110 +msgid "Babel" +msgstr "" + +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 +msgid "ActivityPub Conversion" +msgstr "Conversie ActivityPub" + +#: src/Module/BaseAdmin.php:120 +msgid "Addon Features" +msgstr "" + +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +msgid "User registrations waiting for confirmation" +msgstr "Înregistrări de utilizatori, aşteaptă confirmarea" + +#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 +#: src/Module/BaseApi.php:487 +msgid "Too Many Requests" +msgstr "Prea multe cereri" + +#: src/Module/BaseApi.php:456 +#, 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] "" +msgstr[2] "" + +#: src/Module/BaseApi.php:472 +#, 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] "" +msgstr[2] "" + +#: src/Module/BaseApi.php:488 +#, php-format +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Monthly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "" + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "" + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Utilizatori" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "Ștergere element" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 +msgid "Profile Details" +msgstr "Detalii Profil" + +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "Conversații pornite" + +#: src/Module/BaseProfile.php:111 +msgid "Only You Can See This" +msgstr "Numai Dvs. Puteţi Vizualiza" + +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +msgid "Scheduled Posts" +msgstr "Postări programate" + +#: src/Module/BaseProfile.php:119 +msgid "Posts that are scheduled for publishing" +msgstr "Postări programate pentru publicare" + +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +msgid "Tips for New Members" +msgstr "Sfaturi pentru Membrii Noi" + +#: src/Module/BaseSearch.php:71 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: src/Module/BaseSearch.php:75 +#, php-format +msgid "Group Search - %s" +msgstr "" + +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "Nici-o potrivire" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "%d rezultat a fost filtrat deoarece nodul dvs. blochează domeniul pe care acesta a fost înregistrat. Puteți revizui lista domeniilor blocate actualmente de nodul dvs. în pagina „Despre”." +msgstr[1] "%d rezultate au fost filtrate deoarece nodul dvs. blochează domeniile pe care acestea au fost înregistrate. Puteți revizui lista domeniilor blocate actualmente de nodul dvs. în pagina „Despre”." +msgstr[2] "%d rezultate au fost filtrate deoarece nodul dvs. blochează domeniile pe care acestea au fost înregistrate. Puteți revizui lista domeniilor blocate actualmente de nodul dvs. în pagina „Despre”." + +#: src/Module/BaseSettings.php:78 +msgid "Account" +msgstr "Cont" + +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 +msgid "Two-factor authentication" +msgstr "Autentificare prin doi factori" + +#: src/Module/BaseSettings.php:118 +msgid "Display" +msgstr "Afișare" + +#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "Rețele Sociale" + +#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 +msgid "Manage Accounts" +msgstr "Administrare conturi" + +#: src/Module/BaseSettings.php:153 +msgid "Connected apps" +msgstr "Aplicații Conectate" + +#: src/Module/BaseSettings.php:160 +msgid "Remote servers" +msgstr "Servere la distanță" + +#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 +msgid "Export personal data" +msgstr "Exportare date personale" + +#: src/Module/BaseSettings.php:174 +msgid "Remove account" +msgstr "Ștergere cont" + +#: src/Module/Bookmarklet.php:54 +msgid "This page is missing a url parameter." +msgstr "" + +#: src/Module/Bookmarklet.php:66 +msgid "The post was created" +msgstr "Postarea a fost creată" + +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "Cerere invalidă" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "" + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "Nu s-a putut șterge evenimentul" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "Evenimentul nu se poate termina înainte de a începe" + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "Titlul evenimentului şi timpul de pornire sunt necesare." + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "Data de început și titlul sunt necesare." + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "Evenimentul începe de la:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/Channels.php:130 src/Module/Settings/Channels.php:146 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Cerut" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "Data/ora de finalizare nu este cunoscută sau nu este relevantă" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "Evenimentul se Finalizează:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "Titlu (BBCode nepermis)" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "Descriere (BBCode permis)" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "Locație (BBCode nepermis)" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Partajează acest eveniment" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "Acest format de calendar nu este suportat" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Evenimente" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Crează eveniment nou" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:291 +msgid "list" +msgstr "" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "Nu se poate crea cercul" + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "Cerc negăsit" + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "Numele cercului nu s-a schimbat." + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "Cerc negăsit." + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "Contact negăsit." + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "Invalid contact." + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "Contactul a fost șters" + +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "Nu se poate adăuga contactul în cerc." + +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "Contactul a fost adăugat cu succes în cerc." + +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "Nu se poate înlătura contactul din cerc." + +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "Contactul a fost înlăturat cu succes din cerc." + +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "" + +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "Salvează cercul" + +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "Filtrează" + +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "Creați un cerc de contacte/prieteni." + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "Nu se poate înlătura cercul." + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "Ștergeți cercul" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "Modificați numele cercului" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "Membri" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "Cercul este gol" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "Înlăturați contactul din cerc" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "Apăsați pe un contact pentru a-l adăuga sau elimina." + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "Adăugați contactul în cerc" + +#: src/Module/Contact.php:97 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Contact.php:348 +msgid "Show all contacts" +msgstr "Afişează toate contactele" + +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "În așteptare" + +#: src/Module/Contact.php:356 +msgid "Only show pending contacts" +msgstr "Arată numai contactele în așteptare" + +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Blocat" + +#: src/Module/Contact.php:364 +msgid "Only show blocked contacts" +msgstr "Se afişează numai contactele blocate" + +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:369 +msgid "Ignored" +msgstr "Ignorat" + +#: src/Module/Contact.php:372 +msgid "Only show ignored contacts" +msgstr "Se afişează numai contactele ignorate" + +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 +msgid "Archived" +msgstr "Arhivat" + +#: src/Module/Contact.php:388 +msgid "Only show archived contacts" +msgstr "Se afişează numai contactele arhivate" + +#: src/Module/Contact.php:393 src/Module/Contact.php:438 +msgid "Hidden" +msgstr "Ascuns" + +#: src/Module/Contact.php:396 +msgid "Only show hidden contacts" +msgstr "Se afişează numai contactele ascunse" + +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "" + +#: src/Module/Contact.php:459 +msgid "Search your contacts" +msgstr "Căutare contacte" + +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 +#, php-format +msgid "Results for: %s" +msgstr "Rezultate pentru: %s" + +#: src/Module/Contact.php:467 +msgid "Update" +msgstr "Actualizare" + +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Deblochează" + +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 +msgid "Unignore" +msgstr "Anulare ignorare" + +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "" + +#: src/Module/Contact.php:472 +msgid "Batch Actions" +msgstr "" + +#: src/Module/Contact.php:515 +msgid "Conversations started by this contact" +msgstr "Conversații pornite de acest contact" + +#: src/Module/Contact.php:520 +msgid "Posts and Comments" +msgstr "Postări și comentarii" + +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "Postări și comentarii individuale" + +#: src/Module/Contact.php:531 +msgid "Posts containing media objects" +msgstr "Postări care conțin elemente media" + +#: src/Module/Contact.php:539 +msgid "View all known contacts" +msgstr "" + +#: src/Module/Contact.php:550 +msgid "Advanced Contact Settings" +msgstr "Configurări Avansate Contacte" + +#: src/Module/Contact.php:586 +msgid "Mutual Friendship" +msgstr "Prietenie Reciprocă" + +#: src/Module/Contact.php:590 +msgid "is a fan of yours" +msgstr "este fanul dumneavoastră" + +#: src/Module/Contact.php:594 +msgid "you are a fan of" +msgstr "sunteţi un fan al" + +#: src/Module/Contact.php:612 +msgid "Pending outgoing contact request" +msgstr "Cerere de contact trimisă, în așteptare" + +#: src/Module/Contact.php:614 +msgid "Pending incoming contact request" +msgstr "Cerere de contact primită, în așteptare" + +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Vizitați profilul %s [%s]" + +#: src/Module/Contact/Advanced.php:99 +msgid "Contact update failed." +msgstr "Actualizarea Contactului a eșuat." + +#: src/Module/Contact/Advanced.php:130 +msgid "Return to contact editor" +msgstr "Reveniţi la editorul de contact" + +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Nume" + +#: src/Module/Contact/Advanced.php:135 +msgid "Account Nickname" +msgstr "Pseudonim Cont" + +#: src/Module/Contact/Advanced.php:136 +msgid "Account URL" +msgstr "URL Cont" + +#: src/Module/Contact/Advanced.php:137 +msgid "Poll/Feed URL" +msgstr "URL Sondaj/Flux" + +#: src/Module/Contact/Advanced.php:138 +msgid "New photo from this URL" +msgstr "Fotografie Nouă de la acest URL" + +#: src/Module/Contact/Contacts.php:89 +msgid "No known contacts." +msgstr "Niciun contact știut." + +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +msgid "No common contacts." +msgstr "Niciun contact în comun." + +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#, php-format +msgid "Follower (%s)" +msgid_plural "Followers (%s)" +msgstr[0] "Urmăritori (%s)" +msgstr[1] "Urmăritori (%s)" +msgstr[2] "Urmăritori (%s)" + +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#, php-format +msgid "Following (%s)" +msgid_plural "Following (%s)" +msgstr[0] "Urmărește (%s)" +msgstr[1] "Urmărește (%s)" +msgstr[2] "Urmărește (%s)" + +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#, php-format +msgid "Mutual friend (%s)" +msgid_plural "Mutual friends (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#, php-format +msgid "These contacts both follow and are followed by %s." +msgstr "Aceste contacte urmăresc, dar sunt și urmărite de %s." + +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#, php-format +msgid "Common contact (%s)" +msgid_plural "Common contacts (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#, php-format +msgid "" +"Both %s and yourself have publicly interacted with these " +"contacts (follow, comment or likes on public posts)." +msgstr "" + +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#, php-format +msgid "Contact (%s)" +msgid_plural "Contacts (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:166 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Accesul interzis." + +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Trimiteţi Solicitarea" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "Ați adăugat deja acest contact." + +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Tipul de rețea nu a putut fi detectată. Contactul nu poate fi adăugat." + +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Suportul pentru Diaspora nu este activat. Contactul nu poate fi adăugat." + +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "Suportul pentru OStatus este dezactivat. Contactul nu poate fi adăugat." + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Vă rugăm să răspundeţi la următoarele:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "Adresa dvs. Identitate " + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "URL Profil" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Etichete:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Adaugă o notă personală:" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" +msgstr "Postări și răspunsuri" + +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "Contactul nu a putut fi adăugat." + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "Cerere invalida" + +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "" + +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "Potrivire Profil" + +#: src/Module/Contact/Profile.php:140 +msgid "Failed to update contact record." +msgstr "Actualizarea datelor de contact a eşuat." + +#: src/Module/Contact/Profile.php:190 +msgid "Contact has been unblocked" +msgstr "Contactul a fost deblocat" + +#: src/Module/Contact/Profile.php:194 +msgid "Contact has been blocked" +msgstr "Contactul a fost blocat" + +#: src/Module/Contact/Profile.php:206 +msgid "Contact has been unignored" +msgstr "Contactul a fost neignorat" + +#: src/Module/Contact/Profile.php:210 +msgid "Contact has been ignored" +msgstr "Contactul a fost ignorat" + +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:254 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Sunteţi prieten comun cu %s" + +#: src/Module/Contact/Profile.php:255 +#, php-format +msgid "You are sharing with %s" +msgstr "Împărtășiți cu %s" + +#: src/Module/Contact/Profile.php:256 +#, php-format +msgid "%s is sharing with you" +msgstr "%s împărtăşeşte cu dvs." + +#: src/Module/Contact/Profile.php:272 +msgid "Private communications are not available for this contact." +msgstr "Comunicaţiile private nu sunt disponibile pentru acest contact." + +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "Contactul se află pe un server pe care l-ați ignorat." + +#: src/Module/Contact/Profile.php:285 +msgid "Never" +msgstr "Niciodată" + +#: src/Module/Contact/Profile.php:288 +msgid "(Update was not successful)" +msgstr "(Actualizarea nu a reușit)" + +#: src/Module/Contact/Profile.php:288 +msgid "(Update was successful)" +msgstr "(Actualizarea a reușit)" + +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 +msgid "Suggest friends" +msgstr "Sugeraţi prieteni" + +#: src/Module/Contact/Profile.php:294 +#, php-format +msgid "Network type: %s" +msgstr "Tipul rețelei: %s" + +#: src/Module/Contact/Profile.php:299 +msgid "Communications lost with this contact!" +msgstr "S-a pierdut conexiunea cu acest contact!" + +#: src/Module/Contact/Profile.php:305 +msgid "Fetch further information for feeds" +msgstr "Preluare informaţii suplimentare pentru fluxuri" + +#: src/Module/Contact/Profile.php:307 +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 "" + +#: src/Module/Contact/Profile.php:310 +msgid "Fetch information" +msgstr "" + +#: src/Module/Contact/Profile.php:311 +msgid "Fetch keywords" +msgstr "" + +#: src/Module/Contact/Profile.php:312 +msgid "Fetch information and keywords" +msgstr "" + +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 +msgid "No mirroring" +msgstr "Nicio oglindire" + +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 +msgid "Mirror as my own posting" +msgstr "Oglindește ca fiind propriile postări" + +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 +msgid "Native reshare" +msgstr "Redistribuire nativă" + +#: src/Module/Contact/Profile.php:353 +msgid "Contact Information / Notes" +msgstr "Informaţii de Contact / Note" + +#: src/Module/Contact/Profile.php:354 +msgid "Contact Settings" +msgstr "Setări contact" + +#: src/Module/Contact/Profile.php:362 +msgid "Contact" +msgstr "" + +#: src/Module/Contact/Profile.php:366 +msgid "Their personal note" +msgstr "" + +#: src/Module/Contact/Profile.php:368 +msgid "Edit contact notes" +msgstr "Editare note de contact" + +#: src/Module/Contact/Profile.php:372 +msgid "Block/Unblock contact" +msgstr "Blocare/Deblocare contact" + +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 +msgid "Ignore contact" +msgstr "Ignorare contact" + +#: src/Module/Contact/Profile.php:374 +msgid "View conversations" +msgstr "Vizualizaţi conversaţii" + +#: src/Module/Contact/Profile.php:379 +msgid "Last update:" +msgstr "Ultima actualizare:" + +#: src/Module/Contact/Profile.php:381 +msgid "Update public posts" +msgstr "Actualizare postări publice" + +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 +msgid "Update now" +msgstr "Actualizează acum" + +#: src/Module/Contact/Profile.php:385 +msgid "Awaiting connection acknowledge" +msgstr "Se așteaptă confirmarea conexiunii" + +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "Blocat în prezent" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "Ignorat în prezent" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "Arhivat în prezent" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "" + +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 +msgid "Hide this contact from others" +msgstr "Ascunde acest contact pentru alţii" + +#: src/Module/Contact/Profile.php:394 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Răspunsurile/aprecierile pentru postările dvs. publice ar putea fi încă vizibile" + +#: src/Module/Contact/Profile.php:395 +msgid "Notification for new posts" +msgstr "Notificare de postări noi" + +#: src/Module/Contact/Profile.php:395 +msgid "Send a notification of every new post of this contact" +msgstr "Trimiteți o notificare despre fiecare postare nouă a acestui contact" + +#: src/Module/Contact/Profile.php:397 +msgid "Keyword Deny List" +msgstr "" + +#: src/Module/Contact/Profile.php:397 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" + +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:139 +msgid "Actions" +msgstr "Acțiuni" + +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "Status" + +#: src/Module/Contact/Profile.php:423 +msgid "Mirror postings from this contact" +msgstr "Postări în oglindă de la acest contact" + +#: src/Module/Contact/Profile.php:425 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Marcaţi acest contact ca remote_self, aceasta va determina friendica să reposteze noile articole ale acestui contact." + +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" +msgstr "Setări canal" + +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "Frecvența acestui contact în canale relevante" + +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "" + +#: src/Module/Contact/Profile.php:502 +msgid "Refetch contact data" +msgstr "" + +#: src/Module/Contact/Profile.php:513 +msgid "Toggle Blocked status" +msgstr "Comutare status Blocat" + +#: src/Module/Contact/Profile.php:521 +msgid "Toggle Ignored status" +msgstr "Comutaţi status Ignorat" + +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" +msgstr "" + +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 +msgid "Revoke Follow" +msgstr "Revocă urmărirea" + +#: src/Module/Contact/Profile.php:538 +msgid "Revoke the follow from this contact" +msgstr "Revocă urmărirea din partea acestui contact" + +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "" + +#: src/Module/Contact/Revoke.php:63 +msgid "Unknown contact." +msgstr "Contact necunoscut" + +#: src/Module/Contact/Revoke.php:77 +msgid "Contact is being deleted." +msgstr "" + +#: src/Module/Contact/Revoke.php:91 +msgid "Follow was successfully revoked." +msgstr "Urmărirea a fost revocată cu succes." + +#: src/Module/Contact/Revoke.php:107 +msgid "" +"Do you really want to revoke this contact's follow? This cannot be undone " +"and they will have to manually follow you back again." +msgstr "Sunteți sigur că doriți să revocați urmărirea acestui contact? Aceasta nu poate fi anulată iar contactul va trebui să vă urmărească la rândul său din nou" + +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "Yes" +msgstr "Da" + +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nicio sugestie disponibilă. Dacă aceasta este un site nou, vă rugăm să încercați din nou în 24 de ore." + +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "Nu urmăriți acest contact." + +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "" + +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "" + +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "" + +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "" + +#: src/Module/Conversation/Channel.php:139 +#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 +#: src/Module/Search/Index.php:194 +msgid "No results." +msgstr "Niciun rezultat." + +#: src/Module/Conversation/Channel.php:177 +msgid "Channel not available." +msgstr "" + +#: src/Module/Conversation/Community.php:92 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "" + +#: src/Module/Conversation/Community.php:180 +msgid "Community option not available." +msgstr "" + +#: src/Module/Conversation/Community.php:196 +msgid "Not available." +msgstr "Indisponibil." + +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "Niciun astfel de cerc" + +#: src/Module/Conversation/Network.php:222 +#, php-format +msgid "Circle: %s" +msgstr "Cerc: %s" + +#: src/Module/Conversation/Network.php:250 +#, php-format +msgid "Error %d (%s) while fetching the timeline." +msgstr "" + +#: src/Module/Conversation/Network.php:329 +msgid "Network feed not available." +msgstr "" + +#: src/Module/Conversation/Timeline.php:162 +msgid "Own Contacts" +msgstr "" + +#: src/Module/Conversation/Timeline.php:166 +msgid "Include" +msgstr "Include" + +#: src/Module/Conversation/Timeline.php:167 +msgid "Hide" +msgstr "Ascunde" + +#: src/Module/Credits.php:44 +msgid "Credits" +msgstr "" + +#: 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 "" + +#: src/Module/Debug/ActivityPubConversion.php:53 +msgid "Formatted" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:65 +msgid "Activity" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:117 +msgid "Object data" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:124 +msgid "Result Item" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Eroare" +msgstr[1] "Erori" +msgstr[2] "Erori" + +#: src/Module/Debug/ActivityPubConversion.php:138 +msgid "Source activity" +msgstr "" + +#: src/Module/Debug/Babel.php:51 +msgid "Source input" +msgstr "" + +#: src/Module/Debug/Babel.php:57 +msgid "BBCode::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:63 +msgid "BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:68 +msgid "BBCode::convert (hex)" +msgstr "" + +#: src/Module/Debug/Babel.php:73 +msgid "BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:79 +msgid "BBCode::convert => HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:85 +msgid "BBCode::toMarkdown" +msgstr "" + +#: src/Module/Debug/Babel.php:91 +msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:95 +msgid "BBCode::toMarkdown => Markdown::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:101 +msgid "BBCode::toMarkdown => Markdown::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:107 +msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:115 +msgid "Item Body" +msgstr "" + +#: src/Module/Debug/Babel.php:119 +msgid "Item Tags" +msgstr "" + +#: src/Module/Debug/Babel.php:125 +msgid "PageInfo::appendToBody" +msgstr "" + +#: src/Module/Debug/Babel.php:130 +msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:134 +msgid "PageInfo::appendToBody => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:141 +msgid "Source input (Diaspora format)" +msgstr "" + +#: src/Module/Debug/Babel.php:150 +msgid "Source input (Markdown)" +msgstr "" + +#: src/Module/Debug/Babel.php:156 +msgid "Markdown::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:161 +msgid "Markdown::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:167 +msgid "Markdown::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:174 +msgid "Raw HTML input" +msgstr "" + +#: src/Module/Debug/Babel.php:179 +msgid "HTML Input" +msgstr "" + +#: src/Module/Debug/Babel.php:186 +msgid "HTML Purified (raw)" +msgstr "" + +#: src/Module/Debug/Babel.php:191 +msgid "HTML Purified (hex)" +msgstr "" + +#: src/Module/Debug/Babel.php:196 +msgid "HTML Purified" +msgstr "" + +#: src/Module/Debug/Babel.php:202 +msgid "HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:208 +msgid "HTML::toBBCode => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:213 +msgid "HTML::toBBCode => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:219 +msgid "HTML::toBBCode => BBCode::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:225 +msgid "HTML::toMarkdown" +msgstr "" + +#: src/Module/Debug/Babel.php:231 +msgid "HTML::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:237 +msgid "HTML::toPlaintext (compact)" +msgstr "" + +#: src/Module/Debug/Babel.php:255 +msgid "Decoded post" +msgstr "" + +#: src/Module/Debug/Babel.php:276 +msgid "Post array before expand entities" +msgstr "" + +#: src/Module/Debug/Babel.php:283 +msgid "Post converted" +msgstr "" + +#: src/Module/Debug/Babel.php:288 +msgid "Converted body" +msgstr "" + +#: src/Module/Debug/Babel.php:294 +msgid "Twitter addon is absent from the addon/ folder." +msgstr "" + +#: src/Module/Debug/Babel.php:304 +msgid "Babel Diagnostic" +msgstr "" + +#: src/Module/Debug/Babel.php:305 +msgid "Source text" +msgstr "Text sursă" + +#: 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 "" + +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:177 +msgid "You must be logged in to use this module" +msgstr "" + +#: src/Module/Debug/Feed.php:77 +msgid "Source URL" +msgstr "URL Sursă" + +#: src/Module/Debug/Localtime.php:49 +msgid "Time Conversion" +msgstr "Conversie Oră" + +#: src/Module/Debug/Localtime.php:50 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica oferă acest serviciu pentru partajarea evenimentelor cu alte rețele și alți prieteni, în zonele cu fusuri orare necunoscute." + +#: src/Module/Debug/Localtime.php:51 +#, php-format +msgid "UTC time: %s" +msgstr "Fus orar UTC: %s" + +#: src/Module/Debug/Localtime.php:54 +#, php-format +msgid "Current timezone: %s" +msgstr "Fusul orar curent: %s" + +#: src/Module/Debug/Localtime.php:58 +#, php-format +msgid "Converted localtime: %s" +msgstr "Ora locală convertită: %s" + +#: src/Module/Debug/Localtime.php:62 +msgid "Please select your timezone:" +msgstr "Vă rugăm să vă selectaţi fusul orar:" + +#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +msgid "Only logged in users are permitted to perform a probing." +msgstr "" + +#: src/Module/Debug/Probe.php:52 +msgid "Probe Diagnostic" +msgstr "" + +#: src/Module/Debug/Probe.php:53 +msgid "Output" +msgstr "" + +#: src/Module/Debug/Probe.php:56 +msgid "Lookup address" +msgstr "" + +#: src/Module/Debug/WebFinger.php:50 +msgid "Webfinger Diagnostic" +msgstr "" + +#: src/Module/Debug/WebFinger.php:52 +msgid "Lookup address:" +msgstr "" + +#: src/Module/Directory.php:74 +msgid "No entries (some entries may be hidden)." +msgstr "Fără înregistrări (unele înregistrări pot fi ascunse)." + +#: src/Module/Directory.php:90 +msgid "Find on this site" +msgstr "Căutați pe acest site" + +#: src/Module/Directory.php:92 +msgid "Results for:" +msgstr "Rezultate pentru:" + +#: src/Module/Directory.php:94 +msgid "Site Directory" +msgstr "Director Site" + +#: src/Module/Filer/RemoveTag.php:105 +msgid "Item was not deleted" +msgstr "Elementul nu a fost șters" + +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "Elementul nu a fost înlăturat" + +#: src/Module/Filer/SaveTag.php:73 +msgid "- select -" +msgstr "- selectare -" + +#: src/Module/FriendSuggest.php:82 +msgid "Suggested contact not found." +msgstr "Contactul sugerat nu a fost găsit." + +#: src/Module/FriendSuggest.php:100 +msgid "Friend suggestion sent." +msgstr "Sugestia de prietenie a fost trimisă." + +#: src/Module/FriendSuggest.php:137 +msgid "Suggest Friends" +msgstr "Sugeraţi Prieteni" + +#: src/Module/FriendSuggest.php:140 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Sugeraţi un prieten pentru %s" + +#: src/Module/Friendica.php:82 +msgid "Installed addons/apps:" +msgstr "Suplimente/aplicații instalate:" + +#: src/Module/Friendica.php:87 +msgid "No installed addons/apps" +msgstr "Niciun supliment/nicio aplicație nu au fost instalate" + +#: src/Module/Friendica.php:92 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "" + +#: src/Module/Friendica.php:99 +msgid "On this server the following remote servers are blocked." +msgstr "Pe acest server, următoarele servere sunt blocate." + +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +#: src/Module/Settings/Channels.php:164 +msgid "Reason for the block" +msgstr "Motivul blocării" + +#: src/Module/Friendica.php:104 +msgid "Download this list in CSV format" +msgstr "Descărcați această listă în format CSV" + +#: src/Module/Friendica.php:118 +#, php-format +msgid "" +"This is Friendica, version %s that is running at the web location %s. The " +"database version is %s, the post update version is %s." +msgstr "" + +#: src/Module/Friendica.php:123 +msgid "" +"Please visit Friendi.ca to learn more " +"about the Friendica project." +msgstr "Vă rugăm să vizitați Friendi.ca pentru a afla mai multe despre proiectul Friendica." + +#: src/Module/Friendica.php:124 +msgid "Bug reports and issues: please visit" +msgstr "Rapoarte de erori şi probleme: vă rugăm să vizitaţi" + +#: src/Module/Friendica.php:124 +msgid "the bugtracker at github" +msgstr "" + +#: src/Module/Friendica.php:125 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +msgstr "" + +#: src/Module/HCard.php:45 +msgid "No profile" +msgstr "Niciun profil" + +#: src/Module/HTTPException/MethodNotAllowed.php:31 +msgid "Method Not Allowed." +msgstr "Metodă nepermisă." + +#: src/Module/Help.php:60 +msgid "Help:" +msgstr "Ajutor:" + +#: src/Module/Home.php:63 +#, php-format +msgid "Welcome to %s" +msgstr "Bine aţi venit la %s" + +#: src/Module/Install.php:189 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: src/Module/Install.php:200 +msgid "System check" +msgstr "Verificare sistem" + +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 +msgid "Requirement not satisfied" +msgstr "" + +#: src/Module/Install.php:203 +msgid "Optional requirement not satisfied" +msgstr "" + +#: src/Module/Install.php:204 +msgid "OK" +msgstr "OK" + +#: src/Module/Install.php:208 +msgid "Next" +msgstr "Următorul" + +#: src/Module/Install.php:209 +msgid "Check again" +msgstr "Reverificare" + +#: src/Module/Install.php:222 +msgid "Base settings" +msgstr "Setări de bază" + +#: src/Module/Install.php:224 +msgid "Base path to installation" +msgstr "Calea de bază pentru instalare" + +#: src/Module/Install.php:226 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: src/Module/Install.php:229 +msgid "The Friendica system URL" +msgstr "" + +#: src/Module/Install.php:231 +msgid "" +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." +msgstr "" + +#: src/Module/Install.php:242 +msgid "Database connection" +msgstr "Conexiunea cu baza de date" + +#: src/Module/Install.php:243 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Pentru a instala Friendica trebuie să știm cum să vă conectaţi la baza dumneavoastră de date." + +#: src/Module/Install.php:244 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Vă rugăm să vă contactaţi furnizorul găzduirii sau administratorul de site dacă aveţi întrebări despre aceste configurări." + +#: src/Module/Install.php:245 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Baza de date specificată mai jos ar trebui să existe deja. Dacă nu, vă rugăm s-o creați înainte de a continua." + +#: src/Module/Install.php:252 +msgid "Database Server Name" +msgstr "Nume Server Bază de date" + +#: src/Module/Install.php:257 +msgid "Database Login Name" +msgstr "Nume Autentificare Bază de date" + +#: src/Module/Install.php:263 +msgid "Database Login Password" +msgstr "Parola de Autentificare Bază de date" + +#: src/Module/Install.php:265 +msgid "For security reasons the password must not be empty" +msgstr "Din motive de securitate parola nu trebuie să fie goală" + +#: src/Module/Install.php:268 +msgid "Database Name" +msgstr "Nume Bază de date" + +#: src/Module/Install.php:272 src/Module/Install.php:300 +msgid "Please select a default timezone for your website" +msgstr "Vă rugăm să selectaţi un fus orar prestabilit pentru site-ul dvs." + +#: src/Module/Install.php:287 +msgid "Site settings" +msgstr "Configurări Site" + +#: src/Module/Install.php:295 +msgid "Site administrator email address" +msgstr "Adresa de email a administratorului de site" + +#: src/Module/Install.php:297 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Adresa de email a contului dvs. trebuie să corespundă cu aceasta pentru a utiliza panoul de administrare web." + +#: src/Module/Install.php:304 +msgid "System Language:" +msgstr "Limbă de sistem:" + +#: src/Module/Install.php:306 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "" + +#: src/Module/Install.php:318 +msgid "Your Friendica site database has been installed." +msgstr "Baza dvs. de date Friendica, a fost instalată." + +#: src/Module/Install.php:328 +msgid "Installation finished" +msgstr "Instalarea s-a terminat" + +#: src/Module/Install.php:348 +msgid "

    What next

    " +msgstr "

    Ce urmează

    " + +#: src/Module/Install.php:349 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"worker." +msgstr "" + +#: src/Module/Install.php:352 +#, php-format +msgid "" +"Go to your new Friendica node registration page " +"and register as new user. Remember to use the same email you have entered as" +" administrator email. This will allow you to enter the site admin panel." +msgstr "" + +#: src/Module/Invite.php:57 +msgid "Total invitation limit exceeded." +msgstr "Limita totală a invitațiilor a fost depăşită." + +#: src/Module/Invite.php:82 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Nu este o adresă vaildă de email." + +#: src/Module/Invite.php:108 +msgid "Please join us on Friendica" +msgstr "Vă rugăm să veniți alături de noi pe Friendica" + +#: src/Module/Invite.php:117 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limita invitațiilor a fost depăşită. Vă rugăm să vă contactați administratorul de sistem." + +#: src/Module/Invite.php:121 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Livrarea mesajului a eşuat." + +#: src/Module/Invite.php:125 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d mesaj trimis." +msgstr[1] "%d mesaje trimise." +msgstr[2] "%d de mesaje trimise." + +#: src/Module/Invite.php:143 +msgid "You have no more invitations available" +msgstr "Nu mai aveți invitaţii disponibile" + +#: src/Module/Invite.php:150 +#, 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 "Vizitaţi %s pentru o lista de site-uri publice la care puteţi alătura. Membrii Friendica de pe alte site-uri se pot conecta cu toții între ei, precum şi cu membri ai multor alte reţele sociale." + +#: src/Module/Invite.php:152 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Pentru a accepta această invitaţie, vă rugăm să vizitaţi şi să vă înregistraţi pe %s sau orice alt site public Friendica." + +#: src/Module/Invite.php:153 +#, 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 "Toate site-urile Friendica sunt interconectate pentru a crea o imensă rețea socială cu o confidențialitate sporită, ce este deținută și controlată de către membrii săi. Aceștia se pot conecta, de asemenea, cu multe rețele sociale tradiționale. Vizitaţi %s pentru o lista de site-uri alternative Friendica în care vă puteţi alătura." + +#: src/Module/Invite.php:157 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Ne cerem scuze. Acest sistem nu este configurat în prezent pentru conectarea cu alte site-uri publice sau pentru a invita membrii." + +#: src/Module/Invite.php:160 +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks." +msgstr "" + +#: src/Module/Invite.php:159 +#, php-format +msgid "To accept this invitation, please visit and register at %s." +msgstr "" + +#: src/Module/Invite.php:167 +msgid "Send invitations" +msgstr "Trimiteți invitaţii" + +#: src/Module/Invite.php:168 +msgid "Enter email addresses, one per line:" +msgstr "Introduceţi adresele de email, una pe linie:" + +#: src/Module/Invite.php:172 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Vă invit cordial să vă alăturați mie, si altor prieteni apropiați, pe Friendica - şi să ne ajutați să creăm o rețea socială mai bună." + +#: src/Module/Invite.php:174 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Va fi nevoie să furnizați acest cod de invitaţie: $invite_code" + +#: src/Module/Invite.php:174 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Odată ce v-aţi înregistrat, vă rog să vă conectaţi cu mine prin pagina mea de profil de la:" + +#: src/Module/Invite.php:176 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendi.ca" +msgstr "" + +#: src/Module/Item/Compose.php:85 +msgid "Please enter a post body." +msgstr "Vă rugăm introduceți corpul textului." + +#: src/Module/Item/Compose.php:98 +msgid "This feature is only available with the frio theme." +msgstr "" + +#: src/Module/Item/Compose.php:122 +msgid "Compose new personal note" +msgstr "Compune o notă personală nouă" + +#: src/Module/Item/Compose.php:131 +msgid "Compose new post" +msgstr "Compune o nouă postare" + +#: src/Module/Item/Compose.php:187 +msgid "Visibility" +msgstr "Vizibilitate" + +#: src/Module/Item/Compose.php:203 +msgid "Clear the location" +msgstr "" + +#: src/Module/Item/Compose.php:204 +msgid "Location services are unavailable on your device" +msgstr "Servicii de locație indisponibile pe dispozitivul dumneavoastră" + +#: src/Module/Item/Compose.php:205 +msgid "" +"Location services are disabled. Please check the website's permissions on " +"your device" +msgstr "" + +#: src/Module/Item/Compose.php:211 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "" + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "" + +#: src/Module/Item/Follow.php:51 +msgid "Unable to follow this item." +msgstr "Imposibil de urmărit acest element" + +#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +msgid "System down for maintenance" +msgstr "Sistemul este suspendat pentru întreținere" + +#: 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 "Acest nod Friendica se află în modul de întreținere, fie din cauza auto-actualizărilor, fie manual, de administrator. Aceasta condiție este temporară, vă rugăm să reveniți în câteva minute." + +#: src/Module/Manifest.php:40 +msgid "A Decentralized Social Network" +msgstr "O rețea socială descentralizată" + +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "Trebuie să vă logați pentru a accesa această pagină." + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Fişiere" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:129 +msgid "Upload" +msgstr "Încărcare" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Ne pare rău, este posibil ca fișierul pe care doriți să-l încărcați, este mai mare decât permite configuraţia PHP" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "Sau - ați încercat să încărcați un fișier gol?" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Fișierul depășește limita de dimensiune de %s" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "Încărcarea fișierului a eşuat." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:69 +msgid "Unable to process image." +msgstr "Nu s-a putut procesa imaginea." + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:96 +msgid "Image upload failed." +msgstr "Încărcarea imaginii a eşuat." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "Pagină de Cont Simplu" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "Pagină Soapbox" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "Grup public" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "Pagină Prietenie Automată" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "Grup privat" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "Pagină personală" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "Pagină de organizație" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "Pagină de știri" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "Grup de comunitate" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "Releu" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s contact deblocat" +msgstr[1] "%scontacte deblocate" +msgstr[2] "%s de contacte deblocate" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "selectează tot" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "selectează nimic" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "Fotografie" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "Motiv" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "Nume server" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "Domeniu server" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "Contacte cunoscute" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "%d server știut" +msgstr[1] "%d servere știute" +msgstr[2] "%d de servere știute" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "Încărcare fișier" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +#: src/Module/Settings/Channels.php:163 +msgid "Blocked server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "Ștergeți acest element" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "Pe această pagină puteți șterge un element din nodul dumneavoastră. Dacă elementul este o postare de nivel superior, întregul fir va fi șters." + +#: src/Module/Moderation/Item/Delete.php:65 +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 "" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "Termeni" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "Tip" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Element negăsit" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "Spam" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "Conținut ilegal" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "Acest contact postează conținut considerat ilegal în jurisdicția în care se află nodul acesta." + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "Conținut/comportament nedorit" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "Violare de reguli" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "Informații adiționale" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "Nimic" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "Blochează contactul" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "" + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "" + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Cont normal" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "Cont de grup public" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Cont Prieten Automat" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Cont Blog" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "Cont de grup privat" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Utilizatori înregistraţi" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Administrare" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utilizator şters" +msgstr[1] "%s utilizatori şterşi" +msgstr[2] "%s utilizatori şterşi" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "Utilizatorul „%s” a fost șters" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "Utilizatorul „%s” a fost șters" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Data înregistrare" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "Ultimul login" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "Administratorul site-ului" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "Cont expirat" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "Creează un nou utilizator" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Utilizatorii selectați vor fi șterși!\\n\\nTot ce au postat acești utilizatori pe acest site, va fi șters permanent!\\n\\nConfirmați?" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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 "Utilizatorul {0} va fi şters!\\n\\nTot ce a postat acest utilizator pe acest site, va fi şters permanent!\\n\\nConfirmați?" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "Utilizatorul „%s” a fost deblocat" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "Utilizatori blocați" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "Utilizator Nou" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "Adăugaţi Utilizator" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "Numele noului utilizator." + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "Pseudonim" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "Pseudonimul noului utilizator." + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "Adresa de e-mail a utilizatorului nou." + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "Utilizatori care așteaptă ștergerea permanentă" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "Ștergere permanentă" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "Utilizatorul așteaptă să fie șters definitiv" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Cont aprobat." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Data cererii" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "Nicio înregistrare." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "Notă de la utilizator" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Respinge" + +#: src/Module/Notifications/Introductions.php:99 +msgid "Show Ignored Requests" +msgstr "Afişare Solicitări Ignorate" + +#: src/Module/Notifications/Introductions.php:99 +msgid "Hide Ignored Requests" +msgstr "Ascundere Solicitări Ignorate" + +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 +msgid "Notification type:" +msgstr "Tip de notificare:" + +#: src/Module/Notifications/Introductions.php:118 +msgid "Suggested by:" +msgstr "Sugerat de" + +#: src/Module/Notifications/Introductions.php:143 +msgid "Claims to be known to you: " +msgstr "Pretinde că vă cunoaște:" + +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 +msgid "No" +msgstr "NU" + +#: src/Module/Notifications/Introductions.php:152 +msgid "Shall your connection be bidirectional or not?" +msgstr "" + +#: src/Module/Notifications/Introductions.php:153 +#, 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 "" + +#: src/Module/Notifications/Introductions.php:154 +#, 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 "" + +#: src/Module/Notifications/Introductions.php:156 +msgid "Friend" +msgstr "Prieten" + +#: src/Module/Notifications/Introductions.php:157 +msgid "Subscriber" +msgstr "Urmăritor" + +#: src/Module/Notifications/Introductions.php:216 +msgid "No introductions." +msgstr "Fără prezentări." + +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 +#, php-format +msgid "No more %s notifications." +msgstr "" + +#: src/Module/Notifications/Notification.php:135 +msgid "You must be logged in to show this page." +msgstr "Trebuie să fiți logat(-ă) pentru a vedea această pagină" + +#: src/Module/Notifications/Notifications.php:66 +msgid "Network Notifications" +msgstr "Notificări de Reţea" + +#: src/Module/Notifications/Notifications.php:72 +msgid "System Notifications" +msgstr "Notificări de Sistem" + +#: src/Module/Notifications/Notifications.php:78 +msgid "Personal Notifications" +msgstr "Notificări personale" + +#: src/Module/Notifications/Notifications.php:84 +msgid "Home Notifications" +msgstr "Notificări de Origine" + +#: src/Module/Notifications/Notifications.php:140 +msgid "Show unread" +msgstr "Arătați necitite" + +#: src/Module/Notifications/Ping.php:246 +msgid "{0} requested registration" +msgstr "{0} a solicitat înregistrarea" + +#: src/Module/Notifications/Ping.php:255 +#, php-format +msgid "{0} and %d others requested registration" +msgstr "" + +#: src/Module/OAuth/Acknowledge.php:51 +msgid "Authorize application connection" +msgstr "Autorizare conectare aplicaţie" + +#: src/Module/OAuth/Acknowledge.php:53 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Doriţi să autorizați această aplicaţie pentru a vă accesa postările şi contactele, şi/sau crea noi postări pentru dvs.?" + +#: src/Module/OAuth/Authorize.php:54 +msgid "Unsupported or missing response type" +msgstr "" + +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +msgid "Incomplete request data" +msgstr "" + +#: 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:83 +msgid "Invalid data or unknown client" +msgstr "" + +#: src/Module/OAuth/Token.php:108 +msgid "Unsupported or missing grant type" +msgstr "" + +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "" + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "✔ Gata" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Gata" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "success" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "eșuat" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "ignorat" + +#: src/Module/PermissionTooltip.php:49 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "" + +#: src/Module/PermissionTooltip.php:79 +msgid "Model not found" +msgstr "" + +#: src/Module/PermissionTooltip.php:94 +msgid "Unlisted" +msgstr "Nelistat" + +#: src/Module/PermissionTooltip.php:112 +msgid "Remote privacy information not available." +msgstr "Informațiile la distanță despre confidențialitate nu sunt disponibile." + +#: src/Module/PermissionTooltip.php:121 +msgid "Visible to:" +msgstr "Visibil către:" + +#: src/Module/PermissionTooltip.php:204 +#, php-format +msgid "Collection (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:208 +#, php-format +msgid "Followers (%s)" +msgstr "" + +#: src/Module/PermissionTooltip.php:227 +#, php-format +msgid "%d more" +msgstr "" + +#: src/Module/PermissionTooltip.php:231 +#, php-format +msgid "To: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:234 +#, php-format +msgid "CC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:237 +#, php-format +msgid "BCC: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "" + +#: src/Module/Photo.php:130 +msgid "The Photo is not available." +msgstr "Fotografia nu este disponibilă" + +#: src/Module/Photo.php:155 +#, php-format +msgid "The Photo with id %s is not available." +msgstr "" + +#: src/Module/Photo.php:192 +#, php-format +msgid "Invalid external resource with url %s." +msgstr "" + +#: src/Module/Photo.php:194 +#, php-format +msgid "Invalid photo with id %s." +msgstr "" + +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "Postare negăsită" + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Editează postarea" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "link web" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Inserare link video" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "link video" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Inserare link audio" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "link audio" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Eliminați Eticheta Elementului" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Selectați o etichetă de eliminat:" + +#: src/Module/Post/Tag/Remove.php:108 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Eliminare" + +#: src/Module/Profile/Contacts.php:159 +msgid "No contacts." +msgstr "Niciun contact." + +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "Cronologia lui %s" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "Postările lui %s" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "Comentariile lui %s" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:60 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Imaginea depășește limita de %s" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "Încărcarea imaginii a eșuat, vă rugăm, reîncercați" + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "Fișierul de imagine lipsește" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "Serverul nu mai acceptă momentan noi încărcări de fișiere, vă rugăm să vă contactați administratorul" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "Fișierul imagine este gol." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "Vezi Album" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +msgid "Profile not found." +msgstr "Profil negăsit." + +#: src/Module/Profile/Profile.php:158 +#, php-format +msgid "" +"You're currently viewing your profile as %s Cancel" +msgstr "" + +#: src/Module/Profile/Profile.php:167 +msgid "Full Name:" +msgstr "Nume complet:" + +#: src/Module/Profile/Profile.php:172 +msgid "Member since:" +msgstr "Membru începând cu:" + +#: src/Module/Profile/Profile.php:178 +msgid "j F, Y" +msgstr "j F, Y" + +#: src/Module/Profile/Profile.php:179 +msgid "j F" +msgstr "j F" + +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 +msgid "Birthday:" +msgstr "Zile Naştere :" + +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +msgid "Age: " +msgstr "Vârsta:" + +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#, php-format +msgid "%d year old" +msgid_plural "%d years old" +msgstr[0] "%dan" +msgstr[1] "%dani" +msgstr[2] "%dde ani" + +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "Descriere:" + +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "Grupuri" + +#: src/Module/Profile/Profile.php:273 +msgid "View profile as:" +msgstr "Vizualizați profilul ca:" + +#: src/Module/Profile/Profile.php:290 +msgid "View as" +msgstr "Vedeți ca" + +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "Profil indisponibil." + +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "Invalid locator" + +#: src/Module/Profile/RemoteFollow.php:95 +msgid "The provided profile link doesn't seem to be valid" +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:100 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: src/Module/Profile/RemoteFollow.php:128 +msgid "Friend/Connection Request" +msgstr "Solicitare Prietenie/Conectare" + +#: src/Module/Profile/RemoteFollow.php:129 +#, 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 "" + +#: src/Module/Profile/RemoteFollow.php:130 +#, 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 "" + +#: src/Module/Profile/RemoteFollow.php:131 +msgid "Your Webfinger address or profile URL:" +msgstr "" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "Profil restricționat" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "Acest profil a fost restricționat, ceea ce previne accesul conținutului său public din partea utilizatorilor anonimi" + +#: src/Module/Profile/Schedule.php:83 +msgid "Scheduled" +msgstr "Programat" + +#: src/Module/Profile/Schedule.php:84 +msgid "Content" +msgstr "Conținut" + +#: src/Module/Profile/Schedule.php:85 +msgid "Remove post" +msgstr "Înlătură postarea" + +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "Corp mesaj gol." + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Imposibil de verificat locaţia dvs. de reşedinţă." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "Destinatar negăsit." + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Numărul de mesaje zilnice pe perete pentru %s a fost depășit. Mesajul a eșuat." + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "Dacă doriţi ca %s să vă răspundă, vă rugăm să verificaţi dacă configurările de confidenţialitate de pe site-ul dumneavoastră, permite mail-uri private de la expeditori necunoscuți." + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "Către" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "Subiect" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "Mesajul dumneavoastră" + +#: src/Module/Register.php:84 +msgid "Only parent users can create additional accounts." +msgstr "" + +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Acest site a depăşit numărul zilnic permis al înregistrărilor de conturi. Vă rugăm să reîncercați mâine." + +#: src/Module/Register.php:116 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." +msgstr "" + +#: src/Module/Register.php:117 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Dacă nu sunteţi familiarizați cu OpenID, vă rugăm să lăsaţi acest câmp gol iar apoi să completaţi restul elementelor." + +#: src/Module/Register.php:118 +msgid "Your OpenID (optional): " +msgstr "Contul dvs. OpenID (opţional):" + +#: src/Module/Register.php:127 +msgid "Include your profile in member directory?" +msgstr "Includeți profilul dvs în directorul de membru?" + +#: src/Module/Register.php:148 +msgid "Note for the admin" +msgstr "Notă pentru administrator" + +#: src/Module/Register.php:148 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "" + +#: src/Module/Register.php:149 +msgid "Membership on this site is by invitation only." +msgstr "Aderarea pe acest site este posibilă doar pe bază de invitație." + +#: src/Module/Register.php:150 +msgid "Your invitation code: " +msgstr "Codul dvs. de invitație:" + +#: src/Module/Register.php:158 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Numele dvs. complet (ex: Ion Popescu, real sau care pare real):" + +#: src/Module/Register.php:159 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "Adresa dvs. de email: (Informațiile inițiale vor fi trimise acolo, astfel că va trebui să introduceți o adresă existentă)" + +#: src/Module/Register.php:160 +msgid "Please repeat your e-mail address:" +msgstr "Vă rugăm, repetați adresa dvs. de e-mail:" + +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 +msgid "New Password:" +msgstr "Parola Nouă:" + +#: src/Module/Register.php:162 +msgid "Leave empty for an auto generated password." +msgstr "Lăsați gol pentru o parolă generată automat" + +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 +msgid "Confirm:" +msgstr "Confirmați:" + +#: src/Module/Register.php:164 +#, php-format +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be \"nickname@%s\"." +msgstr "" + +#: src/Module/Register.php:165 +msgid "Choose a nickname: " +msgstr "Alegeţi un pseudonim:" + +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Import" + +#: src/Module/Register.php:174 +msgid "Import your profile to this friendica instance" +msgstr "Importați profilul dvs. în această instanță friendica" + +#: src/Module/Register.php:181 +msgid "Note: This node explicitly contains adult content" +msgstr "Notă: acest nod conține în mod explicit conținut pentru adulți" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 +msgid "Parent Password:" +msgstr "" + +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "" + +#: src/Module/Register.php:212 +msgid "Password doesn't match." +msgstr "Parola nu se potrivește" + +#: src/Module/Register.php:218 +msgid "Please enter your password." +msgstr "Vă rugăm să introduceți parola dvs." + +#: src/Module/Register.php:260 +msgid "You have entered too much information." +msgstr "Ați introdus prea multă informație" + +#: src/Module/Register.php:283 +msgid "Please enter the identical mail address in the second field." +msgstr "" + +#: src/Module/Register.php:310 +msgid "The additional account was created." +msgstr "Contul adițional a fost creat" + +#: src/Module/Register.php:335 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Înregistrarea s-a efectuat cu succes. Vă rugăm să vă verificaţi e-mailul pentru instrucţiuni suplimentare." + +#: src/Module/Register.php:342 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "" + +#: src/Module/Register.php:348 +msgid "Registration successful." +msgstr "Înregistrarea s-a efectuat cu succes." + +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 +msgid "Your registration can not be processed." +msgstr "Înregistrarea dvs. nu poate fi procesată." + +#: src/Module/Register.php:363 +msgid "You have to leave a request note for the admin." +msgstr "" + +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "S-a produs o eroare internă." + +#: src/Module/Register.php:395 +msgid "Your registration is pending approval by the site owner." +msgstr "Înregistrarea dvs. este în aşteptarea aprobării de către deținătorul site-ului." + +#: src/Module/Search/Acl.php:73 +msgid "You must be logged in to use this module." +msgstr "Trebuie să vă logați pentru a folosi acest modul." + +#: src/Module/Search/Index.php:69 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: src/Module/Search/Index.php:89 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: src/Module/Search/Index.php:205 +#, php-format +msgid "Items tagged with: %s" +msgstr "Elemente etichetate cu: %s" + +#: src/Module/Search/Saved.php:59 +msgid "Search term was not saved." +msgstr "" + +#: src/Module/Search/Saved.php:62 +msgid "Search term already saved." +msgstr "" + +#: src/Module/Search/Saved.php:68 +msgid "Search term was not removed." +msgstr "" + +#: src/Module/Security/Login.php:123 +msgid "Create a New Account" +msgstr "Creaţi un Cont Nou" + +#: src/Module/Security/Login.php:142 +msgid "Your OpenID: " +msgstr "OpenID-ul dvs." + +#: src/Module/Security/Login.php:145 +msgid "" +"Please enter your username and password to add the OpenID to your existing " +"account." +msgstr "Vă rugăm să introduceți username-ul și parola pentru a adăuga OpenID la contul dumneavoastră existent." + +#: src/Module/Security/Login.php:147 +msgid "Or login using OpenID: " +msgstr "Sau conectaţi-vă utilizând OpenID:" + +#: src/Module/Security/Login.php:161 +msgid "Password: " +msgstr "Parola:" + +#: src/Module/Security/Login.php:162 +msgid "Remember me" +msgstr "Reține autentificarea" + +#: src/Module/Security/Login.php:171 +msgid "Forgot your password?" +msgstr "Ați uitat parola?" + +#: src/Module/Security/Login.php:174 +msgid "Website Terms of Service" +msgstr "Condiții de Utilizare Site Web" + +#: src/Module/Security/Login.php:175 +msgid "terms of service" +msgstr "condiții de utilizare" + +#: src/Module/Security/Login.php:177 +msgid "Website Privacy Policy" +msgstr "Politica de Confidențialitate Site Web" + +#: src/Module/Security/Login.php:178 +msgid "privacy policy" +msgstr "politica de confidențialitate" + +#: src/Module/Security/Logout.php:84 +#: src/Module/Security/TwoFactor/SignOut.php:78 +#: src/Module/Security/TwoFactor/SignOut.php:86 +#: src/Module/Security/TwoFactor/SignOut.php:108 +#: src/Module/Security/TwoFactor/SignOut.php:115 +msgid "Logged out." +msgstr "Deconectat." + +#: src/Module/Security/OpenID.php:54 +msgid "OpenID protocol error. No ID returned" +msgstr "" + +#: src/Module/Security/OpenID.php:90 +msgid "" +"Account not found. Please login to your existing account to add the OpenID " +"to it." +msgstr "" + +#: src/Module/Security/OpenID.php:92 +msgid "" +"Account not found. Please register a new account or login to your existing " +"account to add the OpenID to it." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 +msgid "Passwords do not match." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:64 +msgid "Password does not need changing." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 +msgid "Password unchanged." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:91 +msgid "Password Too Long" +msgstr "Parola este prea lungă" + +#: src/Module/Security/PasswordTooLong.php:92 +msgid "" +"Since version 2022.09, we've realized that any password longer than 72 " +"characters is truncated during hashing. To prevent any confusion about this " +"behavior, please update your password to be fewer or equal to 72 characters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:93 +msgid "Update Password" +msgstr "Actualizați-vă parola" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Current Password:" +msgstr "Parola Curentă:" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Your current password to confirm the changes" +msgstr "Parola curentă pentru a confirma modificările" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces and accentuated letters." +msgstr "Caracterele permise sunt a-z, A-Z, 0-9 și caractere speciale cu excepția spațiilor albe sau a literelor accentuate." + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 +msgid "Password length is limited to 72 characters." +msgstr "Lungimea parolei este limitată la 72 de caractere." + +#: src/Module/Security/TwoFactor/Recovery.php:74 +#, php-format +msgid "Remaining recovery codes: %d" +msgstr "Coduri de recuperare rămase: %d" + +#: src/Module/Security/TwoFactor/Recovery.php:80 +#: src/Module/Security/TwoFactor/Verify.php:77 +#: src/Module/Settings/TwoFactor/Verify.php:95 +msgid "Invalid code, please retry." +msgstr "Cod invalid, vă rugăm să reîncercați." + +#: src/Module/Security/TwoFactor/Recovery.php:99 +msgid "Two-factor recovery" +msgstr "Recuperare cu doi factori" + +#: src/Module/Security/TwoFactor/Recovery.php:100 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:101 +#, php-format +msgid "Don’t have your phone? Enter a two-factor recovery code" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:102 +msgid "Please enter a recovery code" +msgstr "Vă rugăm să introduceți un cod de recuperare" + +#: src/Module/Security/TwoFactor/Recovery.php:103 +msgid "Submit recovery code and complete login" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:122 +msgid "Sign out of this browser?" +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:123 +msgid "" +"

    If you trust this browser, you will not be asked for verification code " +"the next time you sign in.

    " +msgstr "" + +#: src/Module/Security/TwoFactor/SignOut.php:124 +msgid "Sign out" +msgstr "Delogare" + +#: src/Module/Security/TwoFactor/SignOut.php:126 +msgid "Trust and sign out" +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:96 +msgid "Couldn't save browser to Cookie." +msgstr "" + +#: src/Module/Security/TwoFactor/Trust.php:141 +msgid "Trust this browser?" +msgstr "Aveți încredere în acest browser?" + +#: src/Module/Security/TwoFactor/Trust.php:142 +msgid "" +"

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

    " +msgstr "

    Dacă alegeți să aveți încredere în acest browser, nu veți mai fi întrebat(-ă) pentru un cod de verificare data viitoare când vă veți mai autentifica.

    " + +#: src/Module/Security/TwoFactor/Trust.php:143 +msgid "Not now" +msgstr "Nu acum" + +#: src/Module/Security/TwoFactor/Trust.php:144 +msgid "Don't trust" +msgstr "Nu aveți încredere" + +#: src/Module/Security/TwoFactor/Trust.php:145 +msgid "Trust" +msgstr "Aveți încredere" + +#: src/Module/Security/TwoFactor/Verify.php:97 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:100 +#, php-format +msgid "" +"If you do not have access to your authentication code you can use a two-factor recovery code." +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Please enter a code from your authentication app" +msgstr "Vă rugăm să introduceți un cod din aplicația dumneavoastră de autentificare." + +#: src/Module/Security/TwoFactor/Verify.php:102 +msgid "Verify code and complete login" +msgstr "Verificați contul și intrați în cont" + +#: src/Module/Settings/Account.php:96 +msgid "Please use a shorter name." +msgstr "" + +#: src/Module/Settings/Account.php:99 +msgid "Name too short." +msgstr "" + +#: src/Module/Settings/Account.php:108 +msgid "Wrong Password." +msgstr "Parolă greșită." + +#: src/Module/Settings/Account.php:113 +msgid "Invalid email." +msgstr "Email invalid." + +#: src/Module/Settings/Account.php:117 +msgid "Cannot change to that email." +msgstr "" + +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 +msgid "Settings were not updated." +msgstr "" + +#: src/Module/Settings/Account.php:364 +msgid "Contact CSV file upload error" +msgstr "" + +#: src/Module/Settings/Account.php:383 +msgid "Importing Contacts done" +msgstr "" + +#: src/Module/Settings/Account.php:396 +msgid "Relocate message has been send to your contacts" +msgstr "Mesajul despre mutare, a fost trimis către contactele dvs." + +#: src/Module/Settings/Account.php:413 +msgid "Unable to find your profile. Please contact your admin." +msgstr "" + +#: src/Module/Settings/Account.php:455 +msgid "Personal Page Subtypes" +msgstr "Subtipuri pagină personală" + +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" +msgstr "Subtipuri grup de comunitate" + +#: src/Module/Settings/Account.php:466 +msgid "Account for a personal profile." +msgstr "Cont pentru un profil personal." + +#: src/Module/Settings/Account.php:473 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:480 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:487 +msgid "Account for community discussions." +msgstr "Cont pentru discuții de comunitate" + +#: src/Module/Settings/Account.php:494 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:501 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "" + +#: src/Module/Settings/Account.php:508 +msgid "Automatically approves all contact requests." +msgstr "" + +#: src/Module/Settings/Account.php:515 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "" + +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "Grup privat [Experimental]" + +#: src/Module/Settings/Account.php:522 +msgid "Requires manual approval of contact requests." +msgstr "Necesită aprobarea manuală a cererilor de contact." + +#: src/Module/Settings/Account.php:531 +msgid "OpenID:" +msgstr "OpenID:" + +#: src/Module/Settings/Account.php:531 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opţional) Permite acest OpenID să se conecteze la acest cont." + +#: src/Module/Settings/Account.php:539 +msgid "Publish your profile in your local site directory?" +msgstr "" + +#: src/Module/Settings/Account.php:539 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "Profilul dumneavoastră va fi publicat în directorul local al acestui nod. Detaliile profilului dumneavoastră ar putea fi vizibile public, în funcție de setările de sistem." + +#: src/Module/Settings/Account.php:545 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "" + +#: src/Module/Settings/Account.php:558 +msgid "Account Settings" +msgstr "Configurări Cont" + +#: src/Module/Settings/Account.php:559 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: src/Module/Settings/Account.php:566 +msgid "Password Settings" +msgstr "Configurări Parolă" + +#: src/Module/Settings/Account.php:568 +msgid "Leave password fields blank unless changing" +msgstr "Lăsaţi câmpurile, pentru parolă, goale dacă nu doriți să modificați" + +#: src/Module/Settings/Account.php:570 +msgid "Password:" +msgstr "Parola:" + +#: src/Module/Settings/Account.php:570 +msgid "Your current password to confirm the changes of the email address" +msgstr "" + +#: src/Module/Settings/Account.php:573 +msgid "Delete OpenID URL" +msgstr "" + +#: src/Module/Settings/Account.php:575 +msgid "Basic Settings" +msgstr "Configurări de Bază" + +#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "Numele afișat:" + +#: src/Module/Settings/Account.php:577 +msgid "Email Address:" +msgstr "Adresa de email:" + +#: src/Module/Settings/Account.php:578 +msgid "Your Timezone:" +msgstr "Fusul dvs. orar:" + +#: src/Module/Settings/Account.php:579 +msgid "Your Language:" +msgstr "Limba dvs.:" + +#: src/Module/Settings/Account.php:579 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Setați limba pe care să o folosim în interfața Friendica și în care să vă trimitem email-urile" + +#: src/Module/Settings/Account.php:580 +msgid "Default Post Location:" +msgstr "Locația Implicită pentru Postări" + +#: src/Module/Settings/Account.php:581 +msgid "Use Browser Location:" +msgstr "Folosește Locația Navigatorului:" + +#: src/Module/Settings/Account.php:583 +msgid "Security and Privacy Settings" +msgstr "Configurări de Securitate și Confidențialitate" + +#: src/Module/Settings/Account.php:585 +msgid "Maximum Friend Requests/Day:" +msgstr "Solicitări de Prietenie, Maxime/Zi" + +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 +msgid "(to prevent spam abuse)" +msgstr "(Pentru a preveni abuzul de tip spam)" + +#: src/Module/Settings/Account.php:587 +msgid "Allow your profile to be searchable globally?" +msgstr "" + +#: src/Module/Settings/Account.php:587 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "" + +#: src/Module/Settings/Account.php:588 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "" + +#: src/Module/Settings/Account.php:588 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "" + +#: src/Module/Settings/Account.php:589 +msgid "" +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "Vizitatorii anonimi vor vedea numai detaliile tale de bază. Postările și comentariile tale publice vor putea fi în continuare accesibile pe alte servere ale urmăritorilor tăi și prin relee." + +#: src/Module/Settings/Account.php:590 +msgid "Make public posts unlisted" +msgstr "Delistați postările publice" + +#: src/Module/Settings/Account.php:590 +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 "Postările dumneavoastră publice nu vor apărea pe paginile de comunitate sau în rezultatele de căutare și nici nu vor fi trimise către servere-releu. Cu toate acestea, ele încă mai pot apărea pe feed-uri publice ale altor servere." + +#: src/Module/Settings/Account.php:591 +msgid "Make all posted pictures accessible" +msgstr "" + +#: src/Module/Settings/Account.php:591 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "" + +#: src/Module/Settings/Account.php:592 +msgid "Allow friends to post to your profile page?" +msgstr "Permiteți prietenilor să posteze pe pagina dvs. de profil ?" + +#: src/Module/Settings/Account.php:592 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "Contactele dumneavoastră vă pot scrie postări pe profil. Aceste postări vor fi distribuite către contactele dumneavoastră" + +#: src/Module/Settings/Account.php:593 +msgid "Allow friends to tag your posts?" +msgstr "Permiteți prietenilor să vă eticheteze postările?" + +#: src/Module/Settings/Account.php:593 +msgid "Your contacts can add additional tags to your posts." +msgstr "Contactele dumneavoastră pot adăuga etichete adiționale în postările dumneavoastră." + +#: src/Module/Settings/Account.php:594 +msgid "Permit unknown people to send you private mail?" +msgstr "Permiteți persoanelor necunoscute să vă trimită mesaje private?" + +#: src/Module/Settings/Account.php:594 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "" + +#: src/Module/Settings/Account.php:595 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum de mesaje private pe zi, de la persoanele necunoscute:" + +#: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "" + +#: src/Module/Settings/Account.php:598 +msgid "Default Post Permissions" +msgstr "Permisiuni Implicite Postări" + +#: src/Module/Settings/Account.php:602 +msgid "Expiration settings" +msgstr "" + +#: src/Module/Settings/Account.php:603 +msgid "Automatically expire posts after this many days:" +msgstr "Postările vor expira automat după atâtea zile:" + +#: src/Module/Settings/Account.php:603 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Dacă se lasă necompletat, postările nu vor expira. Postările expirate vor fi şterse" + +#: src/Module/Settings/Account.php:604 +msgid "Expire posts" +msgstr "Expiră postări" + +#: src/Module/Settings/Account.php:604 +msgid "When activated, posts and comments will be expired." +msgstr "Când va fi activată, postările și comentariile vor expira." + +#: src/Module/Settings/Account.php:605 +msgid "Expire personal notes" +msgstr "" + +#: src/Module/Settings/Account.php:605 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "" + +#: src/Module/Settings/Account.php:606 +msgid "Expire starred posts" +msgstr "" + +#: src/Module/Settings/Account.php:606 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "" + +#: src/Module/Settings/Account.php:607 +msgid "Only expire posts by others" +msgstr "" + +#: src/Module/Settings/Account.php:607 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "" + +#: src/Module/Settings/Account.php:610 +msgid "Notification Settings" +msgstr "Configurări de Notificare" + +#: src/Module/Settings/Account.php:611 +msgid "Send a notification email when:" +msgstr "Trimiteți o notificare email atunci când:" + +#: src/Module/Settings/Account.php:612 +msgid "You receive an introduction" +msgstr "Primiți o introducere" + +#: src/Module/Settings/Account.php:613 +msgid "Your introductions are confirmed" +msgstr "Introducerile dvs. sunt confirmate" + +#: src/Module/Settings/Account.php:614 +msgid "Someone writes on your profile wall" +msgstr "Cineva scrie pe perete dvs. de profil" + +#: src/Module/Settings/Account.php:615 +msgid "Someone writes a followup comment" +msgstr "Cineva scrie un comentariu de urmărire" + +#: src/Module/Settings/Account.php:616 +msgid "You receive a private message" +msgstr "Primiți un mesaj privat" + +#: src/Module/Settings/Account.php:617 +msgid "You receive a friend suggestion" +msgstr "Primiți o sugestie de prietenie" + +#: src/Module/Settings/Account.php:618 +msgid "You are tagged in a post" +msgstr "Sunteți etichetat într-o postare" + +#: src/Module/Settings/Account.php:620 +msgid "Create a desktop notification when:" +msgstr "Creați o notificare desktop atunci când:" + +#: src/Module/Settings/Account.php:621 +msgid "Someone tagged you" +msgstr "Cineva vă etichetează" + +#: src/Module/Settings/Account.php:622 +msgid "Someone directly commented on your post" +msgstr "Cineva comentează direct la o postare a dumneavoastră" + +#: src/Module/Settings/Account.php:623 +msgid "Someone liked your content" +msgstr "Cuiva îi place conținutul dumneavoastră" + +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +msgid "Can only be enabled, when the direct comment notification is enabled." +msgstr "" + +#: src/Module/Settings/Account.php:624 +msgid "Someone shared your content" +msgstr "Cineva a distribuit conținutul dumneavoastră" + +#: src/Module/Settings/Account.php:625 +msgid "Someone commented in your thread" +msgstr "Cineva a comentat în firul de conversație al dumneavoastră" + +#: src/Module/Settings/Account.php:626 +msgid "Someone commented in a thread where you commented" +msgstr "Cineva a comentat într-un fir de conversație unde ați comentat și dumneavoastră" + +#: src/Module/Settings/Account.php:627 +msgid "Someone commented in a thread where you interacted" +msgstr "Cineva a comentat într-un fir de conversație în care ați interacționat" + +#: src/Module/Settings/Account.php:629 +msgid "Activate desktop notifications" +msgstr "Activați notificările desktop" + +#: src/Module/Settings/Account.php:629 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: src/Module/Settings/Account.php:633 +msgid "Text-only notification emails" +msgstr "" + +#: src/Module/Settings/Account.php:635 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: src/Module/Settings/Account.php:639 +msgid "Show detailled notifications" +msgstr "" + +#: src/Module/Settings/Account.php:641 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "" + +#: src/Module/Settings/Account.php:645 +msgid "Show notifications of ignored contacts" +msgstr "" + +#: src/Module/Settings/Account.php:647 +msgid "" +"You don't see posts from ignored contacts. But you still see their comments." +" This setting controls if you want to still receive regular notifications " +"that are caused by ignored contacts or not." +msgstr "" + +#: src/Module/Settings/Account.php:650 +msgid "Advanced Account/Page Type Settings" +msgstr "Configurări Avansate Cont/Tip Pagină" + +#: src/Module/Settings/Account.php:651 +msgid "Change the behaviour of this account for special situations" +msgstr "Modificați comportamentul acestui cont pentru situațiile speciale" + +#: src/Module/Settings/Account.php:654 +msgid "Import Contacts" +msgstr "" + +#: src/Module/Settings/Account.php:655 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "" + +#: src/Module/Settings/Account.php:656 +msgid "Upload File" +msgstr "" + +#: src/Module/Settings/Account.php:659 +msgid "Relocate" +msgstr "Mutare" + +#: src/Module/Settings/Account.php:660 +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 "Dacă aţi mutat acest profil dintr-un alt server, şi unele dintre contactele dvs. nu primesc actualizările dvs., încercaţi să apăsați acest buton." + +#: src/Module/Settings/Account.php:661 +msgid "Resend relocate message to contacts" +msgstr "Retrimiteți contactelor, mesajul despre mutare" + +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "Setări suplimente" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "" + +#: src/Module/Settings/Channels.php:130 src/Module/Settings/Channels.php:146 +#: src/Module/Settings/Display.php:330 +msgid "Label" +msgstr "" + +#: src/Module/Settings/Channels.php:131 src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +msgid "Description" +msgstr "" + +#: src/Module/Settings/Channels.php:132 src/Module/Settings/Channels.php:148 +msgid "Access Key" +msgstr "" + +#: src/Module/Settings/Channels.php:133 src/Module/Settings/Channels.php:149 +msgid "Circle/Channel" +msgstr "" + +#: src/Module/Settings/Channels.php:134 src/Module/Settings/Channels.php:150 +msgid "Include Tags" +msgstr "" + +#: src/Module/Settings/Channels.php:135 src/Module/Settings/Channels.php:151 +msgid "Exclude Tags" +msgstr "" + +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:152 +msgid "Full Text Search" +msgstr "" + +#: src/Module/Settings/Channels.php:140 +msgid "Delete channel" +msgstr "" + +#: src/Module/Settings/Channels.php:140 +msgid "Check to delete this entry from the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:146 +msgid "Short name for the channel. It is displayed on the channels widget." +msgstr "Numele scurt al acestui canal. Va fi afișat în widget-ul cu canale." + +#: src/Module/Settings/Channels.php:147 +msgid "This should describe the content of the channel in a few word." +msgstr "" + +#: src/Module/Settings/Channels.php:148 +msgid "" +"When you want to access this channel via an access key, you can define it " +"here. Pay attention to not use an already used one." +msgstr "" + +#: src/Module/Settings/Channels.php:149 +msgid "Select a circle or channel, that your channel should be based on." +msgstr "" + +#: src/Module/Settings/Channels.php:150 +msgid "" +"Comma separated list of tags. A post will be used when it contains any of " +"the listed tags." +msgstr "" + +#: src/Module/Settings/Channels.php:151 +msgid "" +"Comma separated list of tags. If a post contain any of these tags, then it " +"will not be part of nthis channel." +msgstr "" + +#: src/Module/Settings/Channels.php:152 +#, php-format +msgid "" +"Search terms for the body, supports the \"boolean mode\" operators from " +"MariaDB. See the help for a complete list of operators and additional " +"keywords: %s" +msgstr "" + +#: src/Module/Settings/Channels.php:153 +msgid "Check to display images in the channel." +msgstr "" + +#: src/Module/Settings/Channels.php:154 +msgid "Check to display videos in the channel." +msgstr "" + +#: src/Module/Settings/Channels.php:155 +msgid "Check to display audio in the channel." +msgstr "" + +#: src/Module/Settings/Channels.php:158 +msgid "This page can be used to define your own channels." +msgstr "Această pagină poate fi folosită pentru a vă defini propriile canale." + +#: src/Module/Settings/Channels.php:159 +msgid "Add new entry to the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:160 +msgid "Add" +msgstr "Adăugare" + +#: src/Module/Settings/Channels.php:162 +msgid "Current Entries in the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:165 +msgid "Delete entry from the channel list" +msgstr "" + +#: src/Module/Settings/Channels.php:166 +msgid "Delete entry from the channel list?" +msgstr "" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "A eşuat conectarea cu, contul de email, folosind configurările furnizate." + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "OStatus (GNU Social)" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "Accesul de email este dezactivat pe acest site." + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "Nimic" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "Setări generale pentru Social Media" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "" + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "Doar conversații pe care urmăritorii mei le-au pornit" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "Conversații pe care urmăritorii mei le-au pornit sau la care au comentat (implicit)" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "Activează avertismentul de conținut" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "Configurare E-Mail/Căsuță poştală" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Dacă doriţi să comunicaţi cu contactele de email folosind acest serviciu (opţional), vă rugăm să precizaţi cum doriți să vă conectaţi la căsuța dvs. poştală." + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "Ultima verificare, cu succes, a email-ului:" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "Nume server IMAP:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "IMAP port:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "Securitate:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "Nume email autentificare:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "Parolă de e-mail:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "Adresă pentru răspuns:" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "Trimiteți postările publice la toate contactele de email:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "Acţiune după importare:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "Mutare în dosar" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "Mutare în dosarul:" + +#: src/Module/Settings/Delegation.php:73 +msgid "Delegation successfully granted." +msgstr "" + +#: src/Module/Settings/Delegation.php:75 +msgid "Parent user not found, unavailable or password doesn't match." +msgstr "" + +#: src/Module/Settings/Delegation.php:79 +msgid "Delegation successfully revoked." +msgstr "" + +#: src/Module/Settings/Delegation.php:98 +#: src/Module/Settings/Delegation.php:120 +msgid "" +"Delegated administrators can view but not change delegation permissions." +msgstr "" + +#: src/Module/Settings/Delegation.php:112 +msgid "Delegate user not found." +msgstr "" + +#: src/Module/Settings/Delegation.php:169 +msgid "No parent user" +msgstr "" + +#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:191 +msgid "Parent User" +msgstr "" + +#: src/Module/Settings/Delegation.php:188 +msgid "Additional Accounts" +msgstr "" + +#: src/Module/Settings/Delegation.php:189 +msgid "" +"Register additional accounts that are automatically connected to your " +"existing account so you can manage them from this account." +msgstr "Înregistrează conturi adiționale conectate automat la contul existent pentru a le administra din acest cont" + +#: src/Module/Settings/Delegation.php:190 +msgid "Register an additional account" +msgstr "Înregistrează un cont adițional" + +#: src/Module/Settings/Delegation.php:192 +msgid "" +"Parent users have total control about this account, including the account " +"settings. Please double check whom you give this access." +msgstr "" + +#: src/Module/Settings/Delegation.php:195 +msgid "Delegates" +msgstr "Delegați" + +#: src/Module/Settings/Delegation.php:196 +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 "Delegații sunt capabili să gestioneze toate aspectele acestui cont/pagină, cu excepţia configurărilor de bază ale contului. Vă rugăm să nu vă delegați, contul dvs. personal, cuiva în care nu aveţi încredere deplină." + +#: src/Module/Settings/Delegation.php:197 +msgid "Existing Page Delegates" +msgstr "Delegați Existenți Pagină" + +#: src/Module/Settings/Delegation.php:198 +msgid "Potential Delegates" +msgstr "Potenţiali Delegaţi" + +#: src/Module/Settings/Delegation.php:199 +msgid "No entries." +msgstr "Nu există intrări." + +#: src/Module/Settings/Display.php:179 +msgid "The theme you chose isn't available." +msgstr "" + +#: src/Module/Settings/Display.php:219 +#, php-format +msgid "%s - (Unsupported)" +msgstr "" + +#: src/Module/Settings/Display.php:254 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:255 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:256 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:257 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:302 +msgid "Display Settings" +msgstr "Preferințe Ecran" + +#: src/Module/Settings/Display.php:304 +msgid "General Theme Settings" +msgstr "Setări generale pentru teme" + +#: src/Module/Settings/Display.php:305 +msgid "Custom Theme Settings" +msgstr "Setări personalizare temă" + +#: src/Module/Settings/Display.php:306 +msgid "Content Settings" +msgstr "Setări de conținut" + +#: src/Module/Settings/Display.php:307 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 +msgid "Theme settings" +msgstr "Configurări Temă" + +#: src/Module/Settings/Display.php:308 +msgid "Timelines" +msgstr "" + +#: src/Module/Settings/Display.php:315 +msgid "Display Theme:" +msgstr "Temă de afișat:" + +#: src/Module/Settings/Display.php:316 +msgid "Mobile Theme:" +msgstr "Temă pentru mobil:" + +#: src/Module/Settings/Display.php:319 +msgid "Number of items to display per page:" +msgstr "Numărul de elemente de afişat pe pagină:" + +#: src/Module/Settings/Display.php:319 src/Module/Settings/Display.php:320 +msgid "Maximum of 100 items" +msgstr "Maxim 100 de elemente" + +#: src/Module/Settings/Display.php:320 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Numărul de elemente de afişat pe pagină atunci când se vizualizează de pe dispozitivul mobil:" + +#: src/Module/Settings/Display.php:321 +msgid "Update browser every xx seconds" +msgstr "Actualizare browser la fiecare fiecare xx secunde" + +#: src/Module/Settings/Display.php:321 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" + +#: src/Module/Settings/Display.php:322 +msgid "Display emoticons" +msgstr "Afișează emoticoanele" + +#: src/Module/Settings/Display.php:322 +msgid "When enabled, emoticons are replaced with matching symbols." +msgstr "Când aceasta este activată, emoticoanele sunt înlocuite cu simboluri aferente acestora." + +#: src/Module/Settings/Display.php:323 +msgid "Infinite scroll" +msgstr "Derulare infinită" + +#: src/Module/Settings/Display.php:323 +msgid "Automatic fetch new items when reaching the page end." +msgstr "" + +#: src/Module/Settings/Display.php:324 +msgid "Enable Smart Threading" +msgstr "" + +#: src/Module/Settings/Display.php:324 +msgid "Enable the automatic suppression of extraneous thread indentation." +msgstr "" + +#: src/Module/Settings/Display.php:325 +msgid "Display the Dislike feature" +msgstr "" + +#: src/Module/Settings/Display.php:325 +msgid "" +"Display the Dislike button and dislike reactions on posts and comments." +msgstr "" + +#: src/Module/Settings/Display.php:326 +msgid "Display the resharer" +msgstr "" + +#: src/Module/Settings/Display.php:326 +msgid "Display the first resharer as icon and text on a reshared item." +msgstr "" + +#: src/Module/Settings/Display.php:327 +msgid "Stay local" +msgstr "" + +#: src/Module/Settings/Display.php:327 +msgid "Don't go to a remote system when following a contact link." +msgstr "" + +#: src/Module/Settings/Display.php:328 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:328 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "" + +#: src/Module/Settings/Display.php:333 +msgid "Bookmark" +msgstr "" + +#: src/Module/Settings/Display.php:335 +msgid "" +"Enable timelines that you want to see in the channels widget. Bookmark " +"timelines that you want to see in the top menu." +msgstr "Activați cronologiile pe care vreți să le vedeți în widget-ul de canale. Marcați cronologiile pe care vreți să le vedeți în meniul de sus." + +#: src/Module/Settings/Display.php:337 +msgid "Channel languages:" +msgstr "Limbile canalelor:" + +#: src/Module/Settings/Display.php:337 +msgid "Select all languages that you want to see in your channels." +msgstr "Selectați toate limbile pe care vreți să le vedeți în canalele dumneavoastră." + +#: src/Module/Settings/Display.php:339 +msgid "Beginning of week:" +msgstr "Început de săptămână:" + +#: src/Module/Settings/Display.php:340 +msgid "Default calendar view:" +msgstr "Vedere de calendar implicită:" + +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "Caracteristici Suplimentare" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Aplicații Conectate" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "Eliminare autorizare" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "Este necesar un nume de afișat." + +#: src/Module/Settings/Profile/Index.php:167 +msgid "Profile couldn't be updated." +msgstr "Profilul nu a putut fi actualizat." + +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 +msgid "Label:" +msgstr "Etichetă:" + +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 +msgid "Value:" +msgstr "Valoare:" + +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 +msgid "Field Permissions" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 +msgid "(click to open/close)" +msgstr "(apăsați pentru a deschide/închide)" + +#: src/Module/Settings/Profile/Index.php:224 +msgid "Add a new profile field" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:247 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." +msgstr "Pagina a fost verificată. Un link rel=\"me\" către profilul dvs. de Friendica a fost găsit pe pagină." + +#: src/Module/Settings/Profile/Index.php:249 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:255 +msgid "Profile Actions" +msgstr "Acțiuni Profil" + +#: src/Module/Settings/Profile/Index.php:256 +msgid "Edit Profile Details" +msgstr "Editare Detalii Profil" + +#: src/Module/Settings/Profile/Index.php:258 +msgid "Change Profile Photo" +msgstr "Modificați Fotografia de Profil" + +#: src/Module/Settings/Profile/Index.php:261 +msgid "Profile picture" +msgstr "Imagine profil" + +#: src/Module/Settings/Profile/Index.php:262 +msgid "Location" +msgstr "Locaţie" + +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 +msgid "Miscellaneous" +msgstr "Diverse" + +#: src/Module/Settings/Profile/Index.php:264 +msgid "Custom Profile Fields" +msgstr "Câmpuri de profil personalizate" + +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +msgid "Upload Profile Photo" +msgstr "Încărcare Fotografie Profil" + +#: src/Module/Settings/Profile/Index.php:266 +#, 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 circles.

    " +msgstr "" + +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "Strada:" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "Localitate/Oraș:" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "Regiunea/Județul:" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "Cod poștal:" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "Ţară:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "Adresă XMPP (Jabber):" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "Adresă Matrix (Element):" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "Homepage URL:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "Cuvinte cheie Publice:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Utilizat pentru a sugera potențiali prieteni, ce pot fi văzuți de către ceilalți)" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "Cuvinte cheie Private:" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Utilizat pentru a căuta profile, niciodată afișat altora)" + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 +#: src/Module/Settings/Profile/Photo/Index.php:102 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Reducerea dimensiunea imaginii [%s] a eşuat." + +#: src/Module/Settings/Profile/Photo/Crop.php:150 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Apăsați pe Shift și pe Reîncărcare Pagină sau ştergeţi memoria cache a browser-ului, dacă noua fotografie nu se afişează imediat." + +#: src/Module/Settings/Profile/Photo/Crop.php:155 +msgid "Unable to process image" +msgstr "Nu s-a putut procesa imaginea." + +#: src/Module/Settings/Profile/Photo/Crop.php:174 +msgid "Photo not found." +msgstr "Fotografia nu a fost găsită." + +#: src/Module/Settings/Profile/Photo/Crop.php:196 +msgid "Profile picture successfully updated." +msgstr "Poza de profil a fost actualizată cu succes" + +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 +msgid "Crop Image" +msgstr "Decupare Imagine" + +#: src/Module/Settings/Profile/Photo/Crop.php:223 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Vă rugăm să ajustaţi decuparea imaginii pentru o vizualizare optimă." + +#: src/Module/Settings/Profile/Photo/Crop.php:225 +msgid "Use Image As Is" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:46 +msgid "Missing uploaded image." +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:125 +msgid "Profile Picture Settings" +msgstr "Setări poză de profil" + +#: src/Module/Settings/Profile/Photo/Index.php:126 +msgid "Current Profile Picture" +msgstr "Fotografia de profil curentă" + +#: src/Module/Settings/Profile/Photo/Index.php:127 +msgid "Upload Profile Picture" +msgstr "Încărcare fotografie de profil" + +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload Picture:" +msgstr "Încarcă fotografia:" + +#: src/Module/Settings/Profile/Photo/Index.php:133 +msgid "or" +msgstr "sau" + +#: src/Module/Settings/Profile/Photo/Index.php:135 +msgid "skip this step" +msgstr "omiteți acest pas" + +#: src/Module/Settings/Profile/Photo/Index.php:137 +msgid "select a photo from your photo albums" +msgstr "selectaţi o fotografie din albumele dvs. foto" + +#: src/Module/Settings/RemoveMe.php:76 +msgid "" +"There was a validation error, please make sure you're logged in with the " +"account you want to remove and try again." +msgstr "" + +#: src/Module/Settings/RemoveMe.php:76 +msgid "If this error persists, please contact your administrator." +msgstr "" + +#: src/Module/Settings/RemoveMe.php:90 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:90 +msgid "User deleted their account" +msgstr "Utilizatorul și-a șters contul" + +#: src/Module/Settings/RemoveMe.php:91 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "" + +#: src/Module/Settings/RemoveMe.php:92 +#, php-format +msgid "The user id is %d" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:105 +msgid "Your account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:130 +msgid "Remove My Account" +msgstr "Șterge Contul Meu" + +#: src/Module/Settings/RemoveMe.php:131 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Aceasta va elimina complet contul dvs. Odată ce a fostă, această acțiune este nerecuperabilă." + +#: src/Module/Settings/RemoveMe.php:136 +msgid "Please enter your password for verification:" +msgstr "Vă rugăm să introduceţi parola dvs. pentru verificare:" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "" + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 +msgid "Please enter your password to access this page." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 +msgid "App-specific password generation failed: The description is empty." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +msgid "" +"App-specific password generation failed: This description already exists." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 +msgid "New app-specific password generated." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 +msgid "App-specific passwords successfully revoked." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 +msgid "App-specific password successfully revoked." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +msgid "Two-factor app-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 +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 "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +msgid "" +"Make sure to copy your new app-specific password now. You won’t be able to " +"see it again!" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 +msgid "Last Used" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 +msgid "Revoke" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +msgid "Revoke All" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +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 "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 +msgid "Generate new app-specific password" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 +msgid "Friendiqa on my Fairphone 2..." +msgstr "Friendiqa pe Fairphone 2..." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +msgid "Generate" +msgstr "Generează" + +#: src/Module/Settings/TwoFactor/Index.php:68 +msgid "Two-factor authentication successfully disabled." +msgstr "Autentificarea cu doi factori a fost dezactivată cu succes" + +#: src/Module/Settings/TwoFactor/Index.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:124 +msgid "Authenticator app" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Configured" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "Not Configured" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:126 +msgid "

    You haven't finished configuring your authenticator app.

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

    Your authenticator app is correctly configured.

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:129 +msgid "Recovery codes" +msgstr "Coduri de recupare" + +#: src/Module/Settings/TwoFactor/Index.php:130 +msgid "Remaining valid codes" +msgstr "Coduri de recuperare valide" + +#: src/Module/Settings/TwoFactor/Index.php:132 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:134 +msgid "App-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:135 +msgid "Generated app-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:137 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:140 +msgid "Current password:" +msgstr "Parola curentă:" + +#: src/Module/Settings/TwoFactor/Index.php:140 +msgid "" +"You need to provide your current password to change two-factor " +"authentication settings." +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:141 +msgid "Enable two-factor authentication" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:142 +msgid "Disable two-factor authentication" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:143 +msgid "Show recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:144 +msgid "Manage app-specific passwords" +msgstr "Administrați parole specifice aplicațiilor" + +#: src/Module/Settings/TwoFactor/Index.php:145 +msgid "Manage trusted browsers" +msgstr "Administrați browsere de încredere" + +#: src/Module/Settings/TwoFactor/Index.php:146 +msgid "Finish app configuration" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:80 +msgid "New recovery codes successfully generated." +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:106 +msgid "Two-factor recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:108 +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 "" + +#: src/Module/Settings/TwoFactor/Recovery.php:110 +msgid "" +"When you generate new recovery codes, you must copy the new codes. Your old " +"codes won’t work anymore." +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:111 +msgid "Generate new recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:113 +msgid "Next: Verification" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:84 +msgid "Trusted browsers successfully removed." +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:94 +msgid "Trusted browser successfully removed." +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:136 +msgid "Two-factor Trusted Browsers" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:137 +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 "" + +#: src/Module/Settings/TwoFactor/Trusted.php:138 +msgid "Device" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:139 +msgid "OS" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:141 +msgid "Trusted" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:142 +msgid "Created At" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:143 +msgid "Last Use" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:145 +msgid "Remove All" +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:91 +msgid "Two-factor authentication successfully activated." +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:125 +#, 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 "" + +#: src/Module/Settings/TwoFactor/Verify.php:145 +msgid "Two-factor code verification" +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:147 +msgid "" +"

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

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

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

    %s

    " +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:156 +msgid "Verify code and enable two-factor authentication" +msgstr "" + +#: src/Module/Settings/UserExport.php:90 +msgid "Export account" +msgstr "Exportare cont" + +#: src/Module/Settings/UserExport.php:90 +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 "Exportați-vă informațiile contului şi contactele. Utilizaţi aceasta pentru a face o copie de siguranţă a contului dumneavoastră şi/sau pentru a-l muta pe un alt server." + +#: src/Module/Settings/UserExport.php:91 +msgid "Export all" +msgstr "Exportare tot" + +#: src/Module/Settings/UserExport.php:91 +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 "Exportați-vă informațiile contului, contactele și toate elementele personale în format json. Fișierul poate fi unul foarte mare, astfel că poate lua mai mult timp. Utilizați aceasta pentru a face o copie completă de siguranță a contului dumneavoastră (fotografiile nu vor fi exportate)." + +#: src/Module/Settings/UserExport.php:92 +msgid "Export Contacts to CSV" +msgstr "Exportare contacte ca CSV" + +#: src/Module/Settings/UserExport.php:92 +msgid "" +"Export the list of the accounts you are following as CSV file. Compatible to" +" e.g. Mastodon." +msgstr "Exportă lista de conturi pe care le urmărești ca fișier CSV. Compatibil cu ex.: Mastodon" + +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "Postarea de nivel superior nu este vizibilă." + +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "Postarea de nivel superior a fost ștearsă." + +#: src/Module/Special/DisplayNotFound.php:37 +msgid "" +"This node has blocked the top-level author or the author of the shared post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:38 +msgid "" +"You have ignored or blocked the top-level author or the author of the shared" +" post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:39 +msgid "" +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "" + +#: src/Module/Special/HTTPException.php:78 +msgid "Stack trace:" +msgstr "" + +#: src/Module/Special/HTTPException.php:83 +#, php-format +msgid "Exception thrown in %s:%d" +msgstr "" + +#: src/Module/Tos.php:58 src/Module/Tos.php:107 +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 "" + +#: src/Module/Tos.php:59 src/Module/Tos.php:108 +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 "" + +#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#, 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/settings/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 "" + +#: src/Module/Tos.php:63 src/Module/Tos.php:106 +msgid "Privacy Statement" +msgstr "" + +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "" + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "" + +#: src/Module/User/Delegation.php:146 +#, php-format +msgid "You are now logged in as %s" +msgstr "V-ați logat ca %s" + +#: src/Module/User/Delegation.php:185 +msgid "Switch between your accounts" +msgstr "Comutați conturile dvs." + +#: src/Module/User/Delegation.php:186 +msgid "Manage your accounts" +msgstr "Administrați-vă conturile" + +#: src/Module/User/Delegation.php:187 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Comutați între diferitele identităţi sau pagini de comunitate/grup, care împărtășesc detaliile contului dvs. sau pentru care v-au fost acordate drepturi de \"gestionare \"" + +#: src/Module/User/Delegation.php:188 +msgid "Select an identity to manage: " +msgstr "Selectaţi o identitate de gestionat:" + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "" + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "Mutaţi contul" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "Puteţi importa un cont dintr-un alt server Friendica." + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "Trebuie să vă exportați contul din vechiul server și să-l încărcați aici. Vă vom recrea vechiul cont, aici cu toate contactele sale. Vom încerca de asemenea să vă informăm prietenii că v-ați mutat aici." + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "" + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "Fişier Cont" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Pentru a vă exporta contul, accesați „Setări->Exportare date personale” și selectați „Exportare cont”" + +#: src/Module/User/Import.php:217 msgid "Error decoding account file" msgstr "Eroare la decodarea fişierului de cont" -#: ../../include/uimport.php:100 +#: src/Module/User/Import.php:222 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Eroare! Nu există data versiunii în fişier! Acesta nu este un fișier de cont Friendica?" -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Eroare! Nu pot verifica pseudonimul" - -#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#: src/Module/User/Import.php:230 #, php-format msgid "User '%s' already exists on this server!" msgstr "Utilizatorul '%s' există deja pe acest server!" -#: ../../include/uimport.php:153 +#: src/Module/User/Import.php:267 msgid "User creation error" msgstr "Eroare la crearea utilizatorului" -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Eroare la crearea profilului utilizatorului" - -#: ../../include/uimport.php:220 +#: src/Module/User/Import.php:316 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" @@ -7693,194 +11319,1348 @@ msgstr[0] "%d contact neimportat" msgstr[1] "%d contacte neimportate" msgstr[2] "%d de contacte neimportate" -#: ../../include/uimport.php:290 +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "Eroare la crearea profilului utilizatorului" + +#: src/Module/User/Import.php:416 msgid "Done. You can now login with your username and password" msgstr "Realizat. Vă puteţi conecta acum cu parola şi numele dumneavoastră de utilizator" -#: ../../index.php:428 -msgid "toggle mobile" -msgstr "comutare mobil" +#: src/Module/Welcome.php:44 +msgid "Welcome to Friendica" +msgstr "Bun Venit la Friendica" -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 -#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55 -#: ../../view/theme/duepuntozero/config.php:61 -msgid "Theme settings" -msgstr "Configurări Temă" +#: src/Module/Welcome.php:45 +msgid "New Member Checklist" +msgstr "Lista de Verificare Membrii Noi" -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Stabiliți nivelul de redimensionare a imaginilor din postări și comentarii (lăţimea şi înălţimea)" +#: 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 "Dorim să vă oferim câteva sfaturi şi legături pentru a vă ajuta să aveți o experienţă cât mai plăcută. Apăsați pe orice element pentru a vizita pagina relevantă. O legătură către această pagină va fi vizibilă de pe pagina principală, pentru două săptămâni după înregistrarea dvs. iniţială, iar apoi va dispare în tăcere." -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/dispy/config.php:73 -#: ../../view/theme/diabook/config.php:151 -msgid "Set font-size for posts and comments" -msgstr "Stabilire dimensiune font pentru postări şi comentarii" +#: src/Module/Welcome.php:48 +msgid "Getting Started" +msgstr "Noțiuni de Bază" -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Stabilire lăţime temă" +#: src/Module/Welcome.php:49 +msgid "Friendica Walk-Through" +msgstr "Ghidul de Prezentare Friendica" -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Schemă culoare" +#: 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 "Pe pagina dvs. de Pornire Rapidă - veți găsi o scurtă introducere pentru profilul dvs. şi pentru filele de reţea, veți face câteva conexiuni noi, şi veți găsi câteva grupuri la care să vă alăturați." -#: ../../view/theme/dispy/config.php:74 -#: ../../view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" -msgstr "Stabilire înălțime linie pentru postări şi comentarii" +#: src/Module/Welcome.php:53 +msgid "Go to Your Settings" +msgstr "Mergeți la Configurări" -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Stabilire schemă de culori" +#: 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 "Din pagina dvs. de Configurări - schimbaţi-vă parola iniţială. De asemenea creați o notă pentru Adresa dvs. de Identificare. Aceasta arată exact ca o adresă de email - şi va fi utilă la stabilirea de prietenii pe rețeaua socială web gratuită." -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Aliniere" +#: 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 "Revizuiți celelalte configurări, în special configurările de confidenţialitate. O listă de directoare nepublicate este ca și cum ați avea un număr de telefon necatalogat. În general, ar trebui probabil să vă publicați lista - cu excepţia cazului în care toți prietenii şi potenţialii prieteni, știu exact cum să vă găsească." -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Stânga" +#: 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 "Încărcaţi o fotografie de profil, dacă nu aţi făcut-o deja.Studiile au arătat că, pentru persoanele cu fotografiile lor reale, există de zece ori mai multe şanse să-și facă prieteni, decât cei care nu folosesc fotografii reale." -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centrat" +#: src/Module/Welcome.php:60 +msgid "Edit Your Profile" +msgstr "Editare Profil" -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Dimensiune font postări" +#: 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 "Editaţi-vă profilul Implicit după bunul plac. Revizuiți configurările pentru a ascunde lista dvs. de prieteni și pentru ascunderea profilului dvs., de vizitatorii necunoscuți." -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Dimensiune font zone text" +#: src/Module/Welcome.php:62 +msgid "Profile Keywords" +msgstr "Cuvinte-Cheie Profil" -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Stabilire rezoluţie pentru coloana din mijloc" +#: 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 "" -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Stabilire schemă de culori" +#: src/Module/Welcome.php:65 +msgid "Connecting" +msgstr "Conectare" -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Stabilire factor de magnificare pentru Straturi Pământ" +#: src/Module/Welcome.php:67 +msgid "Importing Emails" +msgstr "Importare Email-uri" -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "Stabilire longitudine (X) pentru Straturi Pământ" +#: 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 "Introduceţi informațiile dvs. de acces la email adresa de email, în pagina dvs. de Configurări Conector, dacă doriți să importați și să interacționați cu prietenii sau cu listele de email din Căsuța dvs. de Mesaje Primite." -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Stabilire latitudine (Y) pentru Straturi Pământ" +#: src/Module/Welcome.php:69 +msgid "Go to Your Contacts Page" +msgstr "Dute la pagina ta Contacte " -#: ../../view/theme/diabook/config.php:158 -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "Community Pagini" +#: 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 "Pagina dvs. de Contact este poarta dvs. de acces către administrarea prieteniilor şi pentru conectarea cu prietenii din alte rețele. În general, introduceți adresa lor sau URL-ul către site, folosind dialogul Adăugare Contact Nou." -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Straturi Pământ" +#: src/Module/Welcome.php:71 +msgid "Go to Your Site's Directory" +msgstr "Mergeţi la Directorul Site-ului" -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Profile de Comunitate" +#: 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 "Pagina Directorului vă permite să găsiţi alte persoane în această reţea sau în alte site-uri asociate. Căutaţi o legătură de Conectare sau Urmărire pe pagina lor de profil. Oferiți propria dvs. Adresă de Identitate dacă se solicită." -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "Ajutor sau @NouAici ?" +#: src/Module/Welcome.php:73 +msgid "Finding New People" +msgstr "Găsire Persoane Noi" -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Conectare Servicii" +#: 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 "Pe panoul lateral al paginii Contacte sunt câteva unelte utile pentru a găsi noi prieteni. Putem asocia persoanele după interese, căuta persoane după nume sau interes, şi vă putem oferi sugestii bazate pe relaţiile din reţea. Pe un site nou-nouț, sugestiile de prietenie vor începe în mod normal să fie populate în termen de 24 de ore." -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Găsire Prieteni" +#: src/Module/Welcome.php:77 +msgid "Add Your Contacts To Circle" +msgstr "" -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Ultimii utilizatori" +#: src/Module/Welcome.php:78 +msgid "" +"Once you have made some friends, organize them into private conversation " +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "" -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Ultimele fotografii" +#: src/Module/Welcome.php:80 +msgid "Why Aren't My Posts Public?" +msgstr "De ce nu sunt Postările Mele Publice?" -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Ultimele aprecieri" +#: 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 "Friendica vă respectă confidenţialitatea. Implicit, postările dvs. vor fi afişate numai persoanelor pe care le-ați adăugat ca și prieteni. Pentru mai multe informaţii, consultaţi secţiunea de asistenţă din legătura de mai sus." -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Contactele dvs." +#: src/Module/Welcome.php:83 +msgid "Getting Help" +msgstr "Obţinerea de Ajutor" -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Fotografii dvs. personale" +#: src/Module/Welcome.php:84 +msgid "Go to the Help Section" +msgstr "Navigați la Secțiunea Ajutor" -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Director Local" +#: src/Module/Welcome.php:85 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Paginile noastre de ajutor pot fi consultate pentru detalii, prin alte funcții şi resurse de program." -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Stabilire factor de magnificare pentru Straturi Pământ" +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +msgid "{0} wants to follow you" +msgstr "" -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Afişare/ascundere casete din coloana din dreapta:" +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +msgid "{0} has started following you" +msgstr "" -#: ../../view/theme/vier/config.php:56 -msgid "Set style" -msgstr "Stabilire stil" +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#, php-format +msgid "%s liked %s's post" +msgstr "%s a apreciat ceea a publicat %s" -#: ../../view/theme/duepuntozero/config.php:45 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s a nu a apreciat ceea a publicat %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#, php-format +msgid "%s is attending %s's event" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#, php-format +msgid "%s is not attending %s's event" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#, php-format +msgid "%s may attending %s's event" +msgstr "" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s este acum prieten cu %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s a comentat la articolul postat de %s" + +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#, php-format +msgid "%s created a new post" +msgstr "%s a creat o nouă postare" + +#: src/Navigation/Notifications/Factory/Introduction.php:133 +msgid "Friend Suggestion" +msgstr "Sugestie Prietenie" + +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "Friend/Connect Request" +msgstr "Prieten/Solicitare de Conectare" + +#: src/Navigation/Notifications/Factory/Introduction.php:159 +msgid "New Follower" +msgstr "Susţinător Nou" + +#: src/Navigation/Notifications/Factory/Notification.php:134 +#, php-format +msgid "%1$s wants to follow you" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:136 +#, php-format +msgid "%1$s has started following you" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:208 +#, php-format +msgid "%1$s liked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:211 +#, php-format +msgid "%1$s liked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:218 +#, php-format +msgid "%1$s disliked your comment on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:221 +#, php-format +msgid "%1$s disliked your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:228 +#, php-format +msgid "%1$s shared your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 +#, php-format +msgid "%1$s shared your post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:235 +#: src/Navigation/Notifications/Factory/Notification.php:305 +#, php-format +msgid "%1$s shared the post %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:237 +#: src/Navigation/Notifications/Factory/Notification.php:307 +#, php-format +msgid "%1$s shared a post from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:239 +#: src/Navigation/Notifications/Factory/Notification.php:309 +#, php-format +msgid "%1$s shared the post %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:311 +#, php-format +msgid "%1$s shared a post" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:249 +#, php-format +msgid "%1$s wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:256 +#, php-format +msgid "%1$s does not want to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:263 +#, php-format +msgid "%1$s maybe wants to attend your event %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:270 +#, php-format +msgid "%1$s tagged you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:274 +#, php-format +msgid "%1$s replied to you on %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:278 +#, php-format +msgid "%1$s commented in your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:282 +#, php-format +msgid "%1$s commented on your comment %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:289 +#, php-format +msgid "%1$s commented in their thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:291 +#, php-format +msgid "%1$s commented in their thread" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:293 +#, php-format +msgid "%1$s commented in the thread %2$s from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:295 +#, php-format +msgid "%1$s commented in the thread from %3$s" +msgstr "" + +#: src/Navigation/Notifications/Factory/Notification.php:300 +#, php-format +msgid "%1$s commented on your thread %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 +msgid "[Friendica:Notify]" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:293 +#, php-format +msgid "%s New mail received at %s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:295 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s v-a trimis un nou mesaj privat la %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:296 +msgid "a private message" +msgstr "un mesaj privat" + +#: src/Navigation/Notifications/Repository/Notify.php:296 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s v-a trimis %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:298 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la mesaje private." + +#: src/Navigation/Notifications/Repository/Notify.php:328 +#, php-format +msgid "%1$s commented on %2$s's %3$s %4$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:333 +#, php-format +msgid "%1$s commented on your %2$s %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:337 +#, php-format +msgid "%1$s commented on their %2$s %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 +#, php-format +msgid "%1$s Comment to conversation #%2$d by %3$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:343 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s a comentat la un element/conversaţie pe care o urmăriți." + +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la conversație." + +#: src/Navigation/Notifications/Repository/Notify.php:354 +#, php-format +msgid "%s %s posted to your profile wall" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:356 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s a postat pe peretele dvs. de profil la %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:357 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s a postat pe [url=%2$s]peretele dvs.[/url]" + +#: src/Navigation/Notifications/Repository/Notify.php:370 +#, php-format +msgid "%s Introduction received" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:372 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Aţi primit o prezentare de la '%1$s' at %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:373 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Aţi primit [url=%1$s]o prezentare[/url] de la %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Le puteți vizita profilurile, online pe %s" + +#: src/Navigation/Notifications/Repository/Notify.php:380 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge prezentarea." + +#: src/Navigation/Notifications/Repository/Notify.php:387 +#, php-format +msgid "%s A new person is sharing with you" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s împărtăşeşte cu dvs. la %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:397 +#, php-format +msgid "%s You have a new follower" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "Aveţi un nou susținător la %2$s : %1$s" + +#: src/Navigation/Notifications/Repository/Notify.php:413 +#, php-format +msgid "%s Friend suggestion received" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:415 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Ați primit o sugestie de prietenie de la '%1$s' la %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:416 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Aţi primit [url=%1$s]o sugestie de prietenie[/url] pentru %2$s de la %3$s." + +#: src/Navigation/Notifications/Repository/Notify.php:422 +msgid "Name:" +msgstr "Nume:" + +#: src/Navigation/Notifications/Repository/Notify.php:423 +msgid "Photo:" +msgstr "Foto:" + +#: src/Navigation/Notifications/Repository/Notify.php:426 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge sugestia." + +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 +#, php-format +msgid "%s Connection accepted" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:442 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:444 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:457 +#, php-format +msgid "" +"'%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." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:459 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:461 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:471 +msgid "registration request" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:473 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:474 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 +#, php-format +msgid "" +"Full Name:\t%s\n" +"Site Location:\t%s\n" +"Login Name:\t%s (%s)" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:485 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge cererea." + +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:780 +#, php-format +msgid "%s %s tagged you" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:783 +#, php-format +msgid "%s %s shared a new post" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "" + +#: src/Object/EMail/ItemCCEMail.php:42 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Acest mesaj v-a fost trimis de către %s, un membru al rețelei sociale Friendica." + +#: src/Object/EMail/ItemCCEMail.php:44 +#, php-format +msgid "You may visit them online at %s" +msgstr "Îi puteți vizita profilul online la %s" + +#: src/Object/EMail/ItemCCEMail.php:45 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Vă rugăm să contactați expeditorul răspunzând la această postare, dacă nu doriţi să primiţi aceste mesaje." + +#: src/Object/EMail/ItemCCEMail.php:49 +#, php-format +msgid "%s posted an update." +msgstr "%s a postat o actualizare." + +#: src/Object/Post.php:138 +msgid "Private Message" +msgstr " Mesaj Privat" + +#: src/Object/Post.php:142 +msgid "Public Message" +msgstr "" + +#: src/Object/Post.php:146 +msgid "Unlisted Message" +msgstr "" + +#: src/Object/Post.php:182 +msgid "This entry was edited" +msgstr "Această intrare a fost editată" + +#: src/Object/Post.php:210 +msgid "Connector Message" +msgstr "" + +#: src/Object/Post.php:226 src/Object/Post.php:228 +msgid "Edit" +msgstr "Edit" + +#: src/Object/Post.php:262 +msgid "Delete globally" +msgstr "" + +#: src/Object/Post.php:262 +msgid "Remove locally" +msgstr "" + +#: src/Object/Post.php:269 +#, php-format +msgid "Block %s" +msgstr "" + +#: src/Object/Post.php:274 +#, php-format +msgid "Ignore %s" +msgstr "" + +#: src/Object/Post.php:279 +#, php-format +msgid "Collapse %s" +msgstr "" + +#: src/Object/Post.php:283 +msgid "Report post" +msgstr "" + +#: src/Object/Post.php:294 +msgid "Save to folder" +msgstr "" + +#: src/Object/Post.php:334 +msgid "I will attend" +msgstr "" + +#: src/Object/Post.php:334 +msgid "I will not attend" +msgstr "" + +#: src/Object/Post.php:334 +msgid "I might attend" +msgstr "" + +#: src/Object/Post.php:364 +msgid "Ignore thread" +msgstr "Igonrați firul conversației" + +#: src/Object/Post.php:365 +msgid "Unignore thread" +msgstr "Neignorați firul conversației" + +#: src/Object/Post.php:366 +msgid "Toggle ignore status" +msgstr "" + +#: src/Object/Post.php:376 +msgid "Add star" +msgstr "" + +#: src/Object/Post.php:377 +msgid "Remove star" +msgstr "" + +#: src/Object/Post.php:378 +msgid "Toggle star status" +msgstr "" + +#: src/Object/Post.php:389 +msgid "Pin" +msgstr "" + +#: src/Object/Post.php:390 +msgid "Unpin" +msgstr "" + +#: src/Object/Post.php:391 +msgid "Toggle pin status" +msgstr "" + +#: src/Object/Post.php:394 +msgid "Pinned" +msgstr "" + +#: src/Object/Post.php:399 +msgid "Add tag" +msgstr "" + +#: src/Object/Post.php:412 +msgid "Quote share this" +msgstr "" + +#: src/Object/Post.php:412 +msgid "Quote Share" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Reshare this" +msgstr "Redistribuie aceasta" + +#: src/Object/Post.php:415 +msgid "Reshare" +msgstr "Redistribuie" + +#: src/Object/Post.php:416 +msgid "Cancel your Reshare" +msgstr "Anulează redistribuția" + +#: src/Object/Post.php:416 +msgid "Unshare" +msgstr "" + +#: src/Object/Post.php:467 +#, php-format +msgid "%s (Received %s)" +msgstr "" + +#: src/Object/Post.php:473 +msgid "Comment this item on your system" +msgstr "" + +#: src/Object/Post.php:473 +msgid "Remote comment" +msgstr "" + +#: src/Object/Post.php:495 +msgid "Share via ..." +msgstr "" + +#: src/Object/Post.php:495 +msgid "Share via external services" +msgstr "" + +#: src/Object/Post.php:502 +msgid "Unknown parent" +msgstr "" + +#: src/Object/Post.php:506 +#, php-format +msgid "in reply to %s" +msgstr "" + +#: src/Object/Post.php:508 +msgid "Parent is probably private or not federated." +msgstr "" + +#: src/Object/Post.php:532 +msgid "to" +msgstr "către" + +#: src/Object/Post.php:533 +msgid "via" +msgstr "via" + +#: src/Object/Post.php:534 +msgid "Wall-to-Wall" +msgstr "Perete-prin-Perete" + +#: src/Object/Post.php:535 +msgid "via Wall-To-Wall:" +msgstr "via Perete-Prin-Perete" + +#: src/Object/Post.php:582 +#, php-format +msgid "Reply to %s" +msgstr "" + +#: src/Object/Post.php:585 +msgid "More" +msgstr "" + +#: src/Object/Post.php:604 +msgid "Notifier task is pending" +msgstr "Sarcină de notificare în așteptare" + +#: src/Object/Post.php:605 +msgid "Delivery to remote servers is pending" +msgstr "Livrarea către alte servere se află în așteptare" + +#: src/Object/Post.php:606 +msgid "Delivery to remote servers is underway" +msgstr "Livrarea către alte servere este în desfășurare" + +#: src/Object/Post.php:607 +msgid "Delivery to remote servers is mostly done" +msgstr "Livrarea către alte servere este în mare parte realizată" + +#: src/Object/Post.php:608 +msgid "Delivery to remote servers is done" +msgstr "Livrarea către alte servere este complet realizată" + +#: src/Object/Post.php:630 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentariu" +msgstr[1] "%d comentarii" +msgstr[2] "%d comentarii" + +#: src/Object/Post.php:631 +msgid "Show more" +msgstr "" + +#: src/Object/Post.php:632 +msgid "Show fewer" +msgstr "" + +#: src/Object/Post.php:668 +#, php-format +msgid "Reshared by: %s" +msgstr "Redistribuit de: %s" + +#: src/Object/Post.php:673 +#, php-format +msgid "Viewed by: %s" +msgstr "" + +#: src/Object/Post.php:678 +#, php-format +msgid "Liked by: %s" +msgstr "" + +#: src/Object/Post.php:683 +#, php-format +msgid "Disliked by: %s" +msgstr "" + +#: src/Object/Post.php:688 +#, php-format +msgid "Attended by: %s" +msgstr "" + +#: src/Object/Post.php:693 +#, php-format +msgid "Maybe attended by: %s" +msgstr "" + +#: src/Object/Post.php:698 +#, php-format +msgid "Not attended by: %s" +msgstr "" + +#: src/Object/Post.php:703 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "" + +#: src/Protocol/ActivityPub/Receiver.php:522 +msgid "Chat" +msgstr "" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "" + +#: src/Protocol/OStatus.php:1390 +#, php-format +msgid "%s is now following %s." +msgstr "" + +#: src/Protocol/OStatus.php:1391 +msgid "following" +msgstr "urmărire" + +#: src/Protocol/OStatus.php:1394 +#, php-format +msgid "%s stopped following %s." +msgstr "" + +#: src/Protocol/OStatus.php:1395 +msgid "stopped following" +msgstr "urmărire întreruptă" + +#: src/Render/FriendicaSmartyEngine.php:56 +#, php-format +msgid "The folder %s must be writable by webserver." +msgstr "" + +#: src/Security/Authentication.php:227 +msgid "Login failed." +msgstr "Eşec la conectare" + +#: src/Security/Authentication.php:272 +msgid "Login failed. Please check your credentials." +msgstr "" + +#: src/Security/Authentication.php:391 +#, php-format +msgid "Welcome %s" +msgstr "" + +#: src/Security/Authentication.php:392 +msgid "Please upload a profile photo." +msgstr "Vă rugăm să încărcaţi o fotografie de profil." + +#: src/Util/EMailer/MailBuilder.php:260 +msgid "Friendica Notification" +msgstr "" + +#: src/Util/EMailer/NotifyMailBuilder.php:78 +#: src/Util/EMailer/SystemMailBuilder.php:54 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "" + +#: src/Util/EMailer/NotifyMailBuilder.php:80 +#: src/Util/EMailer/SystemMailBuilder.php:56 +#, php-format +msgid "%s Administrator" +msgstr "" + +#: 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 "" + +#: src/Util/Temporal.php:172 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: src/Util/Temporal.php:280 +#, php-format +msgid "Time zone: %s Change in Settings" +msgstr "" + +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +msgid "never" +msgstr "" + +#: src/Util/Temporal.php:343 +msgid "less than a second ago" +msgstr "" + +#: src/Util/Temporal.php:352 +msgid "year" +msgstr "" + +#: src/Util/Temporal.php:352 +msgid "years" +msgstr "" + +#: src/Util/Temporal.php:353 +msgid "months" +msgstr "" + +#: src/Util/Temporal.php:354 +msgid "weeks" +msgstr "" + +#: src/Util/Temporal.php:355 +msgid "days" +msgstr "" + +#: src/Util/Temporal.php:356 +msgid "hour" +msgstr "" + +#: src/Util/Temporal.php:356 +msgid "hours" +msgstr "" + +#: src/Util/Temporal.php:357 +msgid "minute" +msgstr "" + +#: src/Util/Temporal.php:357 +msgid "minutes" +msgstr "" + +#: src/Util/Temporal.php:358 +msgid "second" +msgstr "" + +#: src/Util/Temporal.php:358 +msgid "seconds" +msgstr "" + +#: src/Util/Temporal.php:367 +#, php-format +msgid "in %1$d %2$s" +msgstr "" + +#: src/Util/Temporal.php:370 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: src/Worker/PushSubscription.php:110 +msgid "Notification from Friendica" +msgstr "" + +#: src/Worker/PushSubscription.php:111 +msgid "Empty Post" +msgstr "" + +#: view/theme/duepuntozero/config.php:68 +msgid "default" +msgstr "" + +#: view/theme/duepuntozero/config.php:69 msgid "greenzero" -msgstr "zeroverde" +msgstr "" -#: ../../view/theme/duepuntozero/config.php:46 +#: view/theme/duepuntozero/config.php:70 msgid "purplezero" -msgstr "zeroviolet" +msgstr "" -#: ../../view/theme/duepuntozero/config.php:47 +#: view/theme/duepuntozero/config.php:71 msgid "easterbunny" msgstr "" -#: ../../view/theme/duepuntozero/config.php:48 +#: view/theme/duepuntozero/config.php:72 msgid "darkzero" -msgstr "zeronegru" +msgstr "" -#: ../../view/theme/duepuntozero/config.php:49 +#: view/theme/duepuntozero/config.php:73 msgid "comix" -msgstr "comix" +msgstr "" -#: ../../view/theme/duepuntozero/config.php:50 +#: view/theme/duepuntozero/config.php:74 msgid "slackr" -msgstr "slackr" +msgstr "" -#: ../../view/theme/duepuntozero/config.php:62 +#: view/theme/duepuntozero/config.php:87 msgid "Variations" -msgstr "Variatii" +msgstr "" + +#: view/theme/frio/config.php:153 +msgid "Light (Accented)" +msgstr "" + +#: view/theme/frio/config.php:154 +msgid "Dark (Accented)" +msgstr "" + +#: view/theme/frio/config.php:155 +msgid "Black (Accented)" +msgstr "" + +#: view/theme/frio/config.php:167 +msgid "Note" +msgstr "" + +#: view/theme/frio/config.php:167 +msgid "Check image permissions if all users are allowed to see the image" +msgstr "" + +#: view/theme/frio/config.php:173 +msgid "Custom" +msgstr "" + +#: view/theme/frio/config.php:174 +msgid "Legacy" +msgstr "" + +#: view/theme/frio/config.php:175 +msgid "Accented" +msgstr "" + +#: view/theme/frio/config.php:176 +msgid "Select color scheme" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Select scheme accent" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Blue" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Red" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Purple" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Green" +msgstr "" + +#: view/theme/frio/config.php:177 +msgid "Pink" +msgstr "" + +#: view/theme/frio/config.php:178 +msgid "Copy or paste schemestring" +msgstr "" + +#: view/theme/frio/config.php:178 +msgid "" +"You can copy this string to share your theme with others. Pasting here " +"applies the schemestring" +msgstr "" + +#: view/theme/frio/config.php:179 +msgid "Navigation bar background color" +msgstr "" + +#: view/theme/frio/config.php:180 +msgid "Navigation bar icon color " +msgstr "" + +#: view/theme/frio/config.php:181 +msgid "Link color" +msgstr "" + +#: view/theme/frio/config.php:182 +msgid "Set the background color" +msgstr "" + +#: view/theme/frio/config.php:183 +msgid "Content background opacity" +msgstr "" + +#: view/theme/frio/config.php:184 +msgid "Set the background image" +msgstr "" + +#: view/theme/frio/config.php:185 +msgid "Background image style" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "Deschide mereu Pagina de compunere" + +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "" + +#: view/theme/frio/config.php:192 +msgid "Login page background image" +msgstr "" + +#: view/theme/frio/config.php:196 +msgid "Login page background color" +msgstr "" + +#: view/theme/frio/config.php:196 +msgid "Leave background image and color empty for theme defaults" +msgstr "" + +#: view/theme/frio/php/Image.php:39 +msgid "Top Banner" +msgstr "" + +#: view/theme/frio/php/Image.php:39 +msgid "" +"Resize image to the width of the screen and show background color below on " +"long pages." +msgstr "" + +#: view/theme/frio/php/Image.php:40 +msgid "Full screen" +msgstr "" + +#: view/theme/frio/php/Image.php:40 +msgid "" +"Resize image to fill entire screen, clipping either the right or the bottom." +msgstr "" + +#: view/theme/frio/php/Image.php:41 +msgid "Single row mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:41 +msgid "" +"Resize image to repeat it on a single row, either vertical or horizontal." +msgstr "" + +#: view/theme/frio/php/Image.php:42 +msgid "Mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:42 +msgid "Repeat image to fill the screen." +msgstr "" + +#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +msgid "Skip to main content" +msgstr "" + +#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +msgid "Back to top" +msgstr "" + +#: view/theme/frio/theme.php:211 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:214 +msgid "Visitor" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Alignment" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Left" +msgstr "" + +#: view/theme/quattro/config.php:89 +msgid "Center" +msgstr "" + +#: view/theme/quattro/config.php:90 +msgid "Color scheme" +msgstr "Schemă de culori" + +#: view/theme/quattro/config.php:91 +msgid "Posts font size" +msgstr "" + +#: view/theme/quattro/config.php:92 +msgid "Textareas font size" +msgstr "" + +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" +msgstr "" + +#: view/theme/vier/config.php:131 +msgid "don't show" +msgstr "" + +#: view/theme/vier/config.php:131 +msgid "show" +msgstr "" + +#: view/theme/vier/config.php:137 +msgid "Set style" +msgstr "" + +#: view/theme/vier/config.php:138 +msgid "Community Pages" +msgstr "" + +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +msgid "Community Profiles" +msgstr "" + +#: view/theme/vier/config.php:140 +msgid "Help or @NewHere ?" +msgstr "" + +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +msgid "Connect Services" +msgstr "" + +#: view/theme/vier/config.php:142 +msgid "Find Friends" +msgstr "" + +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +msgid "Last users" +msgstr "" + +#: view/theme/vier/theme.php:234 +msgid "Quick Start" +msgstr "" diff --git a/view/lang/ro/strings.php b/view/lang/ro/strings.php index e5f537042..e6a3f38ab 100644 --- a/view/lang/ro/strings.php +++ b/view/lang/ro/strings.php @@ -5,332 +5,77 @@ function string_plural_select_ro($n){ $n = intval($n); if ($n==1) { return 0; } else if ((($n%100>19)||(($n%100==0)&&($n!=0)))) { return 2; } else { return 1; } }} -$a->strings['%d contact edited.'] = [ - 0 => '%d contact editat.', - 1 => '%d contacte editate.', - 2 => '%d de contacte editate.', -]; -$a->strings['Could not access contact record.'] = 'Nu se poate accesa registrul contactului.'; -$a->strings['Could not locate selected profile.'] = 'Nu se poate localiza profilul selectat.'; -$a->strings['Contact updated.'] = 'Contact actualizat.'; -$a->strings['Failed to update contact record.'] = 'Actualizarea datelor de contact a eşuat.'; -$a->strings['Permission denied.'] = 'Permisiune refuzată.'; -$a->strings['Contact has been blocked'] = 'Contactul a fost blocat'; -$a->strings['Contact has been unblocked'] = 'Contactul a fost deblocat'; -$a->strings['Contact has been ignored'] = 'Contactul a fost ignorat'; -$a->strings['Contact has been unignored'] = 'Contactul a fost neignorat'; -$a->strings['Contact has been archived'] = 'Contactul a fost arhivat'; -$a->strings['Contact has been unarchived'] = 'Contactul a fost dezarhivat'; -$a->strings['Do you really want to delete this contact?'] = 'Sigur doriți să ștergeți acest contact?'; -$a->strings['Yes'] = 'Da'; -$a->strings['Cancel'] = 'Anulează'; -$a->strings['Contact has been removed.'] = 'Contactul a fost înlăturat.'; -$a->strings['You are mutual friends with %s'] = 'Sunteţi prieten comun cu %s'; -$a->strings['You are sharing with %s'] = 'Împărtășiți cu %s'; -$a->strings['%s is sharing with you'] = '%s împărtăşeşte cu dvs.'; -$a->strings['Private communications are not available for this contact.'] = 'Comunicaţiile private nu sunt disponibile pentru acest contact.'; -$a->strings['Never'] = 'Niciodată'; -$a->strings['(Update was successful)'] = '(Actualizare a reuşit)'; -$a->strings['(Update was not successful)'] = '(Actualizare nu a reuşit)'; -$a->strings['Suggest friends'] = 'Sugeraţi prieteni'; -$a->strings['Network type: %s'] = 'Tipul rețelei: %s'; -$a->strings['%d contact in common'] = [ - 0 => '%d contact în comun', - 1 => '%d contacte în comun', - 2 => '%d de contacte în comun', -]; -$a->strings['View all contacts'] = 'Vezi toate contactele'; -$a->strings['Unblock'] = 'Deblochează'; -$a->strings['Block'] = 'Blochează'; -$a->strings['Toggle Blocked status'] = 'Comutare status Blocat'; -$a->strings['Unignore'] = 'Anulare ignorare'; -$a->strings['Ignore'] = 'Ignoră'; -$a->strings['Toggle Ignored status'] = 'Comutaţi status Ignorat'; -$a->strings['Unarchive'] = 'Dezarhivează'; -$a->strings['Archive'] = 'Arhivează'; -$a->strings['Toggle Archive status'] = 'Comutaţi status Arhivat'; -$a->strings['Repair'] = 'Repară'; -$a->strings['Advanced Contact Settings'] = 'Configurări Avansate Contacte'; -$a->strings['Communications lost with this contact!'] = 'S-a pierdut conexiunea cu acest contact!'; -$a->strings['Contact Editor'] = 'Editor Contact'; -$a->strings['Submit'] = 'Trimite'; -$a->strings['Profile Visibility'] = 'Vizibilitate Profil'; -$a->strings['Please choose the profile you would like to display to %s when viewing your profile securely.'] = 'Vă rugăm să alegeţi profilul pe care doriţi să îl afişaţi pentru %s când acesta vă vizitează profuilul în mod securizat.'; -$a->strings['Contact Information / Notes'] = 'Informaţii de Contact / Note'; -$a->strings['Edit contact notes'] = 'Editare note de contact'; -$a->strings['Visit %s\'s profile [%s]'] = 'Vizitați profilul %s [%s]'; -$a->strings['Block/Unblock contact'] = 'Blocare/Deblocare contact'; -$a->strings['Ignore contact'] = 'Ignorare contact'; -$a->strings['Repair URL settings'] = 'Remediere configurări URL'; -$a->strings['View conversations'] = 'Vizualizaţi conversaţii'; -$a->strings['Delete contact'] = 'Şterge contact'; -$a->strings['Last update:'] = 'Ultima actualizare:'; -$a->strings['Update public posts'] = 'Actualizare postări publice'; -$a->strings['Update now'] = 'Actualizează acum'; -$a->strings['Currently blocked'] = 'Blocat în prezent'; -$a->strings['Currently ignored'] = 'Ignorat în prezent'; -$a->strings['Currently archived'] = 'Arhivat în prezent'; -$a->strings['Hide this contact from others'] = 'Ascunde acest contact pentru alţii'; -$a->strings['Replies/likes to your public posts may still be visible'] = 'Răspunsurile/aprecierile pentru postările dvs. publice ar putea fi încă vizibile'; -$a->strings['Notification for new posts'] = 'Notificare de postări noi'; -$a->strings['Send a notification of every new post of this contact'] = 'Trimiteți o notificare despre fiecare postare nouă a acestui contact'; -$a->strings['Fetch further information for feeds'] = 'Preluare informaţii suplimentare pentru fluxuri'; -$a->strings['Disabled'] = 'Dezactivat'; -$a->strings['Suggestions'] = 'Sugestii'; -$a->strings['Suggest potential friends'] = 'Sugeraţi prieteni potențiali'; -$a->strings['All Contacts'] = 'Toate Contactele'; -$a->strings['Show all contacts'] = 'Afişează toate contactele'; -$a->strings['Unblocked'] = 'Deblocat'; -$a->strings['Only show unblocked contacts'] = 'Se afişează numai contactele deblocate'; -$a->strings['Blocked'] = 'Blocat'; -$a->strings['Only show blocked contacts'] = 'Se afişează numai contactele blocate'; -$a->strings['Ignored'] = 'Ignorat'; -$a->strings['Only show ignored contacts'] = 'Se afişează numai contactele ignorate'; -$a->strings['Archived'] = 'Arhivat'; -$a->strings['Only show archived contacts'] = 'Se afişează numai contactele arhivate'; -$a->strings['Hidden'] = 'Ascuns'; -$a->strings['Only show hidden contacts'] = 'Se afişează numai contactele ascunse'; -$a->strings['Mutual Friendship'] = 'Prietenie Reciprocă'; -$a->strings['is a fan of yours'] = 'este fanul dvs.'; -$a->strings['you are a fan of'] = 'sunteţi un fan al'; -$a->strings['Edit contact'] = 'Editează contact'; -$a->strings['Contacts'] = 'Contacte'; -$a->strings['Search your contacts'] = 'Căutare contacte'; -$a->strings['Finding: '] = 'Găsire:'; -$a->strings['Find'] = 'Căutare'; -$a->strings['Update'] = 'Actualizare'; -$a->strings['Delete'] = 'Şterge'; -$a->strings['No profile'] = 'Niciun profil'; -$a->strings['Manage Identities and/or Pages'] = 'Administrare Identităţii şi/sau Pagini'; -$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Comutați între diferitele identităţi sau pagini de comunitate/grup, care împărtășesc detaliile contului dvs. sau pentru care v-au fost acordate drepturi de "gestionare "'; -$a->strings['Select an identity to manage: '] = 'Selectaţi o identitate de gestionat:'; -$a->strings['Post successful.'] = 'Postat cu succes.'; -$a->strings['Permission denied'] = 'Permisiune refuzată'; -$a->strings['Invalid profile identifier.'] = 'Identificator profil, invalid.'; -$a->strings['Profile Visibility Editor'] = 'Editor Vizibilitate Profil'; -$a->strings['Profile'] = 'Profil'; -$a->strings['Click on a contact to add or remove.'] = 'Apăsați pe un contact pentru a-l adăuga sau elimina.'; -$a->strings['Visible To'] = 'Vizibil Pentru'; -$a->strings['All Contacts (with secure profile access)'] = 'Toate Contactele (cu acces profil securizat)'; -$a->strings['Item not found.'] = 'Element negăsit.'; -$a->strings['Public access denied.'] = 'Acces public refuzat.'; -$a->strings['Access to this profile has been restricted.'] = 'Accesul la acest profil a fost restricţionat.'; -$a->strings['Item has been removed.'] = 'Elementul a fost eliminat.'; -$a->strings['Welcome to Friendica'] = 'Bun Venit la Friendica'; -$a->strings['New Member Checklist'] = 'Lista de Verificare Membrii Noi'; -$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.'] = 'Dorim să vă oferim câteva sfaturi şi legături pentru a vă ajuta să aveți o experienţă cât mai plăcută. Apăsați pe orice element pentru a vizita pagina relevantă. O legătură către această pagină va fi vizibilă de pe pagina principală, pentru două săptămâni după înregistrarea dvs. iniţială, iar apoi va dispare în tăcere.'; -$a->strings['Getting Started'] = 'Noțiuni de Bază'; -$a->strings['Friendica Walk-Through'] = 'Ghidul de Prezentare Friendica'; -$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.'] = 'Pe pagina dvs. de Pornire Rapidă - veți găsi o scurtă introducere pentru profilul dvs. şi pentru filele de reţea, veți face câteva conexiuni noi, şi veți găsi câteva grupuri la care să vă alăturați.'; -$a->strings['Settings'] = 'Setări'; -$a->strings['Go to Your Settings'] = 'Mergeți la Configurări'; -$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.'] = 'Din pagina dvs. de Configurări - schimbaţi-vă parola iniţială. De asemenea creați o notă pentru Adresa dvs. de Identificare. Aceasta arată exact ca o adresă de email - şi va fi utilă la stabilirea de prietenii pe rețeaua socială web gratuită.'; -$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.'] = 'Revizuiți celelalte configurări, în special configurările de confidenţialitate. O listă de directoare nepublicate este ca și cum ați avea un număr de telefon necatalogat. În general, ar trebui probabil să vă publicați lista - cu excepţia cazului în care toți prietenii şi potenţialii prieteni, știu exact cum să vă găsească.'; -$a->strings['Upload Profile Photo'] = 'Încărcare Fotografie Profil'; -$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.'] = 'Încărcaţi o fotografie de profil, dacă nu aţi făcut-o deja.Studiile au arătat că, pentru persoanele cu fotografiile lor reale, există de zece ori mai multe şanse să-și facă prieteni, decât cei care nu folosesc fotografii reale.'; -$a->strings['Edit Your Profile'] = 'Editare Profil'; -$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.'] = 'Editaţi-vă profilul Implicit după bunul plac. Revizuiți configurările pentru a ascunde lista dvs. de prieteni și pentru ascunderea profilului dvs., de vizitatorii necunoscuți.'; -$a->strings['Profile Keywords'] = 'Cuvinte-Cheie Profil'; -$a->strings['Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships.'] = 'Stabiliți câteva cuvinte-cheie publice pentru profilul dvs. implicit, cuvinte ce descriu cel mai bine interesele dvs. Vom putea astfel găsi alte persoane cu interese similare și vă vom sugera prietenia lor.'; -$a->strings['Connecting'] = 'Conectare'; -$a->strings['Facebook'] = 'Facebook'; -$a->strings['Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations.'] = 'Autorizați Conectorul Facebook dacă dețineți în prezent un cont pe Facebook, şi vom importa (opțional) toți prietenii și toate conversațiile de pe Facebook.'; -$a->strings['If this is your own personal server, installing the Facebook addon may ease your transition to the free social web.'] = 'Dacă aceasta este propriul dvs. server, instalarea suplimentului Facebook, vă poate uşura tranziţia la reţeaua socială web gratuită.'; -$a->strings['Importing Emails'] = 'Importare Email-uri'; -$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'] = 'Introduceţi informațiile dvs. de acces la email adresa de email, în pagina dvs. de Configurări Conector, dacă doriți să importați și să interacționați cu prietenii sau cu listele de email din Căsuța dvs. de Mesaje Primite.'; -$a->strings['Go to Your Contacts Page'] = 'Dute la pagina ta Contacte '; -$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.'] = 'Pagina dvs. de Contact este poarta dvs. de acces către administrarea prieteniilor şi pentru conectarea cu prietenii din alte rețele. În general, introduceți adresa lor sau URL-ul către site, folosind dialogul Adăugare Contact Nou.'; -$a->strings['Go to Your Site\'s Directory'] = 'Mergeţi la Directorul Site-ului'; -$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.'] = 'Pagina Directorului vă permite să găsiţi alte persoane în această reţea sau în alte site-uri asociate. Căutaţi o legătură de Conectare sau Urmărire pe pagina lor de profil. Oferiți propria dvs. Adresă de Identitate dacă se solicită.'; -$a->strings['Finding New People'] = 'Găsire Persoane Noi'; -$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.'] = 'Pe panoul lateral al paginii Contacte sunt câteva unelte utile pentru a găsi noi prieteni. Putem asocia persoanele după interese, căuta persoane după nume sau interes, şi vă putem oferi sugestii bazate pe relaţiile din reţea. Pe un site nou-nouț, sugestiile de prietenie vor începe în mod normal să fie populate în termen de 24 de ore.'; -$a->strings['Groups'] = 'Groupuri'; -$a->strings['Group Your Contacts'] = 'Grupați-vă Contactele'; -$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.'] = 'Odată ce v-aţi făcut unele prietenii, organizaţi-le în grupuri de conversaţii private din bara laterală a paginii dvs. de Contact şi apoi puteţi interacționa, privat cu fiecare grup pe pagina dumneavoastră de Reţea.'; -$a->strings['Why Aren\'t My Posts Public?'] = 'De ce nu sunt Postările Mele Publice?'; -$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.'] = 'Friendica vă respectă confidenţialitatea. Implicit, postările dvs. vor fi afişate numai persoanelor pe care le-ați adăugat ca și prieteni. Pentru mai multe informaţii, consultaţi secţiunea de asistenţă din legătura de mai sus.'; -$a->strings['Getting Help'] = 'Obţinerea de Ajutor'; -$a->strings['Go to the Help Section'] = 'Navigați la Secțiunea Ajutor'; -$a->strings['Our help pages may be consulted for detail on other program features and resources.'] = 'Paginile noastre de ajutor pot fi consultate pentru detalii, prin alte funcții şi resurse de program.'; -$a->strings['OpenID protocol error. No ID returned.'] = 'Eroare de protocol OpenID. Nici-un ID returnat.'; -$a->strings['Account not found and OpenID registration is not permitted on this site.'] = 'Contul nu a fost găsit iar înregistrările OpenID nu sunt permise pe acest site.'; -$a->strings['Login failed.'] = 'Eşec la conectare'; -$a->strings['Image uploaded but image cropping failed.'] = 'Imaginea a fost încărcată, dar decuparea imaginii a eşuat.'; -$a->strings['Profile Photos'] = 'Poze profil'; -$a->strings['Image size reduction [%s] failed.'] = 'Reducerea dimensiunea imaginii [%s] a eşuat.'; -$a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Apăsați pe Shift și pe Reîncărcare Pagină sau ştergeţi memoria cache a browser-ului, dacă noua fotografie nu se afişează imediat.'; -$a->strings['Unable to process image'] = 'Nu s-a putut procesa imaginea.'; -$a->strings['Image exceeds size limit of %d'] = 'Dimensiunea imaginii depăşeşte limita de %d'; -$a->strings['Unable to process image.'] = 'Nu s-a putut procesa imaginea.'; -$a->strings['Upload File:'] = 'Încărcare Fișier:'; -$a->strings['Select a profile:'] = 'Selectați un profil:'; -$a->strings['Upload'] = 'Încărcare'; -$a->strings['or'] = 'sau'; -$a->strings['skip this step'] = 'omiteți acest pas'; -$a->strings['select a photo from your photo albums'] = 'selectaţi o fotografie din albumele dvs. foto'; -$a->strings['Crop Image'] = 'Decupare Imagine'; -$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Vă rugăm să ajustaţi decuparea imaginii pentru o vizualizare optimă.'; -$a->strings['Done Editing'] = 'Editare Realizată'; -$a->strings['Image uploaded successfully.'] = 'Imaginea a fost încărcată cu succes'; -$a->strings['Image upload failed.'] = 'Încărcarea imaginii a eşuat.'; -$a->strings['photo'] = 'photo'; -$a->strings['status'] = 'status'; -$a->strings['%1$s is following %2$s\'s %3$s'] = '%1$s urmărește %3$s postată %2$s'; -$a->strings['Tag removed'] = 'Etichetă eliminată'; -$a->strings['Remove Item Tag'] = 'Eliminați Eticheta Elementului'; -$a->strings['Select a tag to remove: '] = 'Selectați o etichetă de eliminat:'; -$a->strings['Remove'] = 'Eliminare'; -$a->strings['Save to Folder:'] = 'Salvare în Dosar:'; -$a->strings['- select -'] = '- selectare -'; -$a->strings['Save'] = 'Salvare'; -$a->strings['Contact added'] = 'Contact addăugat'; $a->strings['Unable to locate original post.'] = 'Nu se poate localiza postarea originală.'; +$a->strings['Post updated.'] = 'Postare actualizată'; +$a->strings['Item couldn\'t be fetched.'] = 'Elementul nu a putut fi adus'; $a->strings['Empty post discarded.'] = 'Postarea goală a fost eliminată.'; -$a->strings['Wall Photos'] = 'Fotografii de Perete'; -$a->strings['System error. Post not saved.'] = 'Eroare de sistem. Articolul nu a fost salvat.'; -$a->strings['This message was sent to you by %s, a member of the Friendica social network.'] = 'Acest mesaj v-a fost trimis de către %s, un membru al rețelei sociale Friendica.'; -$a->strings['You may visit them online at %s'] = 'Îi puteți vizita profilul online la %s'; -$a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Vă rugăm să contactați expeditorul răspunzând la această postare, dacă nu doriţi să primiţi aceste mesaje.'; -$a->strings['%s posted an update.'] = '%s a postat o actualizare.'; -$a->strings['Group created.'] = 'Grupul a fost creat.'; -$a->strings['Could not create group.'] = 'Grupul nu se poate crea.'; -$a->strings['Group not found.'] = 'Grupul nu a fost găsit.'; -$a->strings['Group name changed.'] = 'Numele grupului a fost schimbat.'; -$a->strings['Save Group'] = 'Salvare Grup'; -$a->strings['Create a group of contacts/friends.'] = 'Creaţi un grup de contacte/prieteni.'; -$a->strings['Group Name: '] = 'Nume Grup:'; -$a->strings['Group removed.'] = 'Grupul a fost eliminat.'; -$a->strings['Unable to remove group.'] = 'Nu se poate elimina grupul.'; -$a->strings['Group Editor'] = 'Editor Grup'; -$a->strings['Members'] = 'Membri'; -$a->strings['You must be logged in to use addons. '] = 'Tu trebuie să vă autentificați pentru a folosi suplimentele.'; -$a->strings['Applications'] = 'Aplicații'; -$a->strings['No installed applications.'] = 'Nu există aplicații instalate.'; -$a->strings['Profile not found.'] = 'Profil negăsit.'; -$a->strings['Contact not found.'] = 'Contact negăsit.'; -$a->strings['This may occasionally happen if contact was requested by both persons and it has already been approved.'] = 'Aceasta se poate întâmpla ocazional dacă contactul a fost solicitat de către ambele persoane şi acesta a fost deja aprobat.'; -$a->strings['Response from remote site was not understood.'] = 'Răspunsul de la adresa de la distanţă, nu a fost înțeles.'; -$a->strings['Unexpected response from remote site: '] = 'Răspuns neaşteptat de la site-ul de la distanţă:'; -$a->strings['Confirmation completed successfully.'] = 'Confirmare încheiată cu succes.'; -$a->strings['Remote site reported: '] = 'Site-ul de la distanţă a raportat:'; -$a->strings['Temporary failure. Please wait and try again.'] = 'Eroare Temporară. Vă rugăm să aşteptaţi şi încercaţi din nou.'; -$a->strings['Introduction failed or was revoked.'] = 'Introducerea a eşuat sau a fost revocată.'; -$a->strings['Unable to set contact photo.'] = 'Imposibil de stabilit fotografia de contact.'; -$a->strings['%1$s is now friends with %2$s'] = '%1$s este acum prieten cu %2$s'; -$a->strings['No user record found for \'%s\' '] = 'Nici-o înregistrare de utilizator găsită pentru \'%s\''; -$a->strings['Our site encryption key is apparently messed up.'] = 'Se pare că, cheia de criptare a site-ului nostru s-a încurcat.'; -$a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'A fost furnizată o adresă URL goală, sau adresa URL nu poate fi decriptată de noi.'; -$a->strings['Contact record was not found for you on our site.'] = 'Registrul contactului nu a fost găsit pe site-ul nostru.'; -$a->strings['Site public key not available in contact record for URL %s.'] = 'Cheia publică a site-ului nu este disponibilă în registrul contactului pentru URL-ul %s.'; -$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'ID-ul furnizat de către sistemul dumneavoastră este un duplicat pe sistemul nostru. Ar trebui să funcţioneze dacă încercaţi din nou.'; -$a->strings['Unable to set your contact credentials on our system.'] = 'Imposibil de configurat datele dvs. de autentificare, pe sistemul nostru.'; -$a->strings['Unable to update your contact profile details on our system'] = 'Imposibil de actualizat detaliile de profil ale contactului dvs., pe sistemul nostru.'; -$a->strings['[Name Withheld]'] = '[Nume Reţinut]'; -$a->strings['%1$s has joined %2$s'] = '%1$s s-a alăturat lui %2$s'; -$a->strings['Requested profile is not available.'] = 'Profilul solicitat nu este disponibil.'; -$a->strings['Tips for New Members'] = 'Sfaturi pentru Membrii Noi'; -$a->strings['No videos selected'] = 'Nici-un clip video selectat'; -$a->strings['Access to this item is restricted.'] = 'Accesul la acest element este restricționat.'; -$a->strings['View Video'] = 'Vizualizați Clipul Video'; -$a->strings['View Album'] = 'Vezi Album'; -$a->strings['Recent Videos'] = 'Clipuri video recente'; -$a->strings['Upload New Videos'] = 'Încărcaţi Clipuri Video Noi'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s a etichetat %3$s de la %2$s cu %4$s'; -$a->strings['Friend suggestion sent.'] = 'Sugestia de prietenie a fost trimisă.'; -$a->strings['Suggest Friends'] = 'Sugeraţi Prieteni'; -$a->strings['Suggest a friend for %s'] = 'Sugeraţi un prieten pentru %s'; +$a->strings['Item not found.'] = 'Element negăsit.'; +$a->strings['Permission denied.'] = 'Permisiune refuzată.'; $a->strings['No valid account found.'] = 'Nici-un cont valid găsit.'; $a->strings['Password reset request issued. Check your email.'] = 'Solicitarea de Resetare Parolă a fost emisă. Verificați-vă emailul.'; +$a->strings[' + Dear %1$s, + A request was recently received at "%2$s" to reset your account + password. In order to confirm this request, please select the verification link + below or paste it into your web browser address bar. + + If you did NOT request this change, please DO NOT follow the link + provided and ignore and/or delete this email, the request will expire shortly. + + Your password will not be changed unless we can verify that you + issued this request.'] = ' + Stimate %1$s, + A fost primită recent o solicitare către "%2$s" pentru a vă schimba parola + contului. Pentru a confirma aceasta, vă rugăm să accesați link-ul de verificare + de mai jos sau să-l copiați în bara de adrese a browser-ului dumneavoastră. + + Dacă NU ați efectuat această solicitare, vă rugăm să NU urmați link-ul + trimis mai sus și să ignorați și/sau să ștergeți acest email, cererea urmând să expire în curând. + + Parola dumneavoastră nu va fi schimbată decât dacă putem verifica faptul că dumneavoastră + ați solicitat acest lucru.'; $a->strings['Password reset requested at %s'] = 'Solicitarea de resetare a parolei a fost făcută la %s'; $a->strings['Request could not be verified. (You may have previously submitted it.) Password reset failed.'] = 'Solicitarea nu se poate verifica. (Este posibil să fi solicitat-o anterior.) Resetarea parolei a eșuat.'; +$a->strings['Request has expired, please make a new one.'] = 'Solicitarea a expirat, vă rugăm să efectuați o nouă solicitare'; +$a->strings['Forgot your Password?'] = 'Ați uitat Parola?'; +$a->strings['Enter your email address and submit to have your password reset. Then check your email for further instructions.'] = 'Introduceţi adresa dumneavoastră de email şi trimiteți-o pentru a vă reseta parola. Apoi verificaţi-vă emailul pentru instrucţiuni suplimentare.'; +$a->strings['Nickname or Email: '] = 'Pseudonim sau Email:'; +$a->strings['Reset'] = 'Resetare'; $a->strings['Password Reset'] = 'Resetare Parolă'; $a->strings['Your password has been reset as requested.'] = 'Parola a fost resetată conform solicitării.'; $a->strings['Your new password is'] = 'Noua dvs. parolă este'; $a->strings['Save or copy your new password - and then'] = 'Salvați sau copiați noua dvs. parolă - şi apoi'; $a->strings['click here to login'] = 'click aici pentru logare'; $a->strings['Your password may be changed from the Settings page after successful login.'] = 'Parola poate fi schimbată din pagina de Configurări după autentificarea cu succes.'; +$a->strings['Your password has been reset.'] = 'Parola dumneavoastră a fost schimbată.'; +$a->strings[' + Your login details are as follows: + + Site Location: %1$s + Login Name: %2$s + Password: %3$s + + You may change that password from your account settings page after logging in. + '] = ' + Detaliile dumneavoastră de login sunt următoarele: + + Locația site-ului: %1$s + Nume login: %2$s + Parolă: %3$s + + Vă puteți schimba această parolă din pagina de setări a contului dumneavoastră, după logare. + '; $a->strings['Your password has been changed at %s'] = 'Parola dumneavoastră a fost schimbată la %s'; -$a->strings['Forgot your Password?'] = 'Ați uitat Parola?'; -$a->strings['Enter your email address and submit to have your password reset. Then check your email for further instructions.'] = 'Introduceţi adresa dumneavoastră de email şi trimiteți-o pentru a vă reseta parola. Apoi verificaţi-vă emailul pentru instrucţiuni suplimentare.'; -$a->strings['Nickname or Email: '] = 'Pseudonim sau Email:'; -$a->strings['Reset'] = 'Reset'; -$a->strings['%1$s likes %2$s\'s %3$s'] = '%1$s apreciază %3$s lui %2$s'; -$a->strings['%1$s doesn\'t like %2$s\'s %3$s'] = '%1$s nu apreciază %3$s lui %2$s'; -$a->strings['{0} wants to be your friend'] = '{0} doreşte să vă fie prieten'; -$a->strings['{0} sent you a message'] = '{0} v-a trimis un mesaj'; -$a->strings['{0} requested registration'] = '{0} a solicitat înregistrarea'; -$a->strings['{0} commented %s\'s post'] = '{0} a comentat la articolul postat de %s'; -$a->strings['{0} liked %s\'s post'] = '{0} a apreciat articolul postat de %s'; -$a->strings['{0} disliked %s\'s post'] = '{0} nu a apreciat articolul postat de %s'; -$a->strings['{0} is now friends with %s'] = '{0} este acum prieten cu %s'; -$a->strings['{0} posted'] = '{0} a postat'; -$a->strings['{0} tagged %s\'s post with #%s'] = '{0} a etichetat articolul postat de %s cu #%s'; -$a->strings['{0} mentioned you in a post'] = '{0} v-a menţionat într-o postare'; -$a->strings['No contacts.'] = 'Nici-un contact.'; -$a->strings['View Contacts'] = 'Vezi Contacte'; -$a->strings['Invalid request identifier.'] = 'Datele de identificare solicitate, sunt invalide.'; -$a->strings['Discard'] = 'Renunțați'; -$a->strings['System'] = 'System'; -$a->strings['Network'] = 'Reţea'; -$a->strings['Personal'] = 'Personal'; -$a->strings['Home'] = 'Home'; -$a->strings['Introductions'] = 'Introduceri'; -$a->strings['Show Ignored Requests'] = 'Afişare Solicitări Ignorate'; -$a->strings['Hide Ignored Requests'] = 'Ascundere Solicitări Ignorate'; -$a->strings['Notification type: '] = 'Tip Notificări:'; -$a->strings['Friend Suggestion'] = 'Sugestie Prietenie'; -$a->strings['suggested by %s'] = 'sugerat de către %s'; -$a->strings['Post a new friend activity'] = 'Publicaţi prietenului o nouă activitate'; -$a->strings['if applicable'] = 'dacă i posibil'; -$a->strings['Approve'] = 'Aprobă'; -$a->strings['Claims to be known to you: '] = 'Pretinde că vă cunoaște:'; -$a->strings['yes'] = 'da'; -$a->strings['no'] = 'nu'; -$a->strings['Approve as: '] = 'Aprobă ca:'; -$a->strings['Friend'] = 'Prieten'; -$a->strings['Sharer'] = 'Distribuitor'; -$a->strings['Fan/Admirer'] = 'Fan/Admirator'; -$a->strings['Friend/Connect Request'] = 'Prieten/Solicitare de Conectare'; -$a->strings['New Follower'] = 'Susţinător Nou'; -$a->strings['No introductions.'] = 'Fără prezentări.'; -$a->strings['Notifications'] = 'Notificări'; -$a->strings['%s liked %s\'s post'] = '%s a apreciat ceea a publicat %s'; -$a->strings['%s disliked %s\'s post'] = '%s a nu a apreciat ceea a publicat %s'; -$a->strings['%s is now friends with %s'] = '%s este acum prieten cu %s'; -$a->strings['%s created a new post'] = '%s a creat o nouă postare'; -$a->strings['%s commented on %s\'s post'] = '%s a comentat la articolul postat de %s'; -$a->strings['No more network notifications.'] = 'Nu mai există notificări de reţea.'; -$a->strings['Network Notifications'] = 'Notificări de Reţea'; -$a->strings['No more system notifications.'] = 'Nu mai există notificări de sistem.'; -$a->strings['System Notifications'] = 'Notificări de Sistem'; -$a->strings['No more personal notifications.'] = 'Nici o notificare personală'; -$a->strings['Personal Notifications'] = 'Notificări personale'; -$a->strings['No more home notifications.'] = 'Nu mai există notificări de origine.'; -$a->strings['Home Notifications'] = 'Notificări de Origine'; -$a->strings['Source (bbcode) text:'] = 'Text (bbcode) sursă:'; -$a->strings['Source (Diaspora) text to convert to BBcode:'] = 'Text (Diaspora) sursă pentru a-l converti în BBcode:'; -$a->strings['Source input: '] = 'Intrare Sursă:'; -$a->strings['bb2html (raw HTML): '] = 'bb2html (raw HTML): '; -$a->strings['bb2html: '] = 'bb2html: '; -$a->strings['bb2html2bb: '] = 'bb2html2bb: '; -$a->strings['bb2md: '] = 'bb2md: '; -$a->strings['bb2md2html: '] = 'bb2md2html: '; -$a->strings['bb2dia2bb: '] = 'bb2dia2bb: '; -$a->strings['bb2md2html2bb: '] = 'bb2md2html2bb: '; -$a->strings['Source input (Diaspora format): '] = 'Intrare Sursă (Format Diaspora):'; -$a->strings['diaspora2bb: '] = 'diaspora2bb: '; -$a->strings['Nothing new here'] = 'Nimic nou aici'; -$a->strings['Clear notifications'] = 'Ştergeţi notificările'; $a->strings['New Message'] = 'Mesaj nou'; -$a->strings['No recipient selected.'] = 'Nici-o adresă selectată.'; +$a->strings['No recipient selected.'] = 'Niciun destinatar selectat.'; $a->strings['Unable to locate contact information.'] = 'Nu se pot localiza informaţiile de contact.'; $a->strings['Message could not be sent.'] = 'Mesajul nu a putut fi trimis.'; $a->strings['Message collection failure.'] = 'Eșec de colectare mesaj.'; -$a->strings['Message sent.'] = 'Mesaj trimis.'; +$a->strings['Discard'] = 'Renunțați'; $a->strings['Messages'] = 'Mesage'; -$a->strings['Do you really want to delete this message?'] = 'Chiar doriţi să ştergeţi acest mesaj ?'; -$a->strings['Message deleted.'] = 'Mesaj şters'; -$a->strings['Conversation removed.'] = 'Conversaşie inlăturată.'; +$a->strings['Conversation not found.'] = 'Conversație negăsită.'; +$a->strings['Message was not deleted.'] = 'Mesajul nu a fost șters.'; +$a->strings['Conversation was not removed.'] = 'Conversația nu a fost ștearsă.'; $a->strings['Please enter a link URL:'] = 'Introduceţi un link URL:'; $a->strings['Send Private Message'] = 'Trimite mesaj privat'; $a->strings['To:'] = 'Către: '; @@ -339,373 +84,370 @@ $a->strings['Your message:'] = 'Mesajul dvs :'; $a->strings['Upload photo'] = 'Încarcă foto'; $a->strings['Insert web link'] = 'Inserează link web'; $a->strings['Please wait'] = 'Aşteptaţi vă rog'; +$a->strings['Submit'] = 'Trimite'; $a->strings['No messages.'] = 'Nici-un mesaj.'; +$a->strings['Message not available.'] = 'Mesaj nedisponibil'; +$a->strings['Delete message'] = 'Şterge mesaj'; +$a->strings['D, d M Y - g:i A'] = 'D, d M Y - g:i A'; +$a->strings['Delete conversation'] = 'Ștergeți conversaţia'; +$a->strings['No secure communications available. You may be able to respond from the sender\'s profile page.'] = 'Nicio comunicare securizată disponibilă. Veți putea răspunde din pagina de profil a expeditorului.'; +$a->strings['Send Reply'] = 'Răspunde'; $a->strings['Unknown sender - %s'] = 'Expeditor necunoscut - %s'; $a->strings['You and %s'] = 'Tu şi %s'; $a->strings['%s and You'] = '%s şi dvs'; -$a->strings['Delete conversation'] = 'Ștergeți conversaţia'; -$a->strings['D, d M Y - g:i A'] = 'D, d M Y - g:i A'; $a->strings['%d message'] = [ 0 => '%d mesaj', 1 => '%d mesaje', 2 => '%d mesaje', ]; -$a->strings['Message not available.'] = 'Mesaj nedisponibil'; -$a->strings['Delete message'] = 'Şterge mesaj'; -$a->strings['No secure communications available. You may be able to respond from the sender\'s profile page.'] = 'Nici-o comunicaţie securizată disponibilă. Veți putea răspunde din pagina de profil a expeditorului.'; -$a->strings['Send Reply'] = 'Răspunde'; -$a->strings['[Embedded content - reload page to view]'] = '[Conţinut încastrat - reîncărcaţi pagina pentru a vizualiza]'; -$a->strings['Contact settings applied.'] = 'Configurările Contactului au fost aplicate.'; -$a->strings['Contact update failed.'] = 'Actualizarea Contactului a eșuat.'; -$a->strings['Repair Contact Settings'] = 'Remediere Configurări Contact'; -$a->strings['WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working.'] = 'AVERTISMENT: Această acțiune este foarte avansată şi dacă introduceţi informaţii incorecte, comunicaţiile cu acest contact se poate opri.'; -$a->strings['Please use your browser \'Back\' button now if you are uncertain what to do on this page.'] = 'Vă rugăm să utilizaţi acum butonul \'Înapoi\' din browser, dacă nu sunteţi sigur ce sa faceți pe această pagină.'; -$a->strings['Return to contact editor'] = 'Reveniţi la editorul de contact'; -$a->strings['Name'] = 'Nume'; -$a->strings['Account Nickname'] = 'Pseudonim Cont'; -$a->strings['@Tagname - overrides Name/Nickname'] = '@Nume_etichetă - suprascrie Numele/Pseudonimul'; -$a->strings['Account URL'] = 'URL Cont'; -$a->strings['Friend Request URL'] = 'URL Solicitare Prietenie'; -$a->strings['Friend Confirm URL'] = 'URL Confirmare Prietenie'; -$a->strings['Notification Endpoint URL'] = 'Punct final URL Notificare'; -$a->strings['Poll/Feed URL'] = 'URL Sondaj/Flux'; -$a->strings['New photo from this URL'] = 'Fotografie Nouă de la acest URL'; -$a->strings['Remote Self'] = 'Auto la Distanţă'; -$a->strings['Mirror postings from this contact'] = 'Postări în oglindă de la acest contact'; -$a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'Marcaţi acest contact ca remote_self, aceasta va determina friendica să reposteze noile articole ale acestui contact.'; -$a->strings['Login'] = 'Login'; -$a->strings['Access denied.'] = 'Accesul interzis.'; -$a->strings['People Search'] = 'Căutare Persoane'; -$a->strings['No matches'] = 'Nici-o potrivire'; -$a->strings['Photos'] = 'Poze'; -$a->strings['Files'] = 'Fişiere'; -$a->strings['Contacts who are not members of a group'] = 'Contactele care nu sunt membre ale unui grup'; -$a->strings['Theme settings updated.'] = 'Configurările temei au fost actualizate.'; -$a->strings['Site'] = 'Site'; -$a->strings['Users'] = 'Utilizatori'; -$a->strings['Plugins'] = 'Pluginuri'; -$a->strings['Themes'] = 'Teme'; -$a->strings['DB updates'] = 'Actualizări Bază de Date'; -$a->strings['Logs'] = 'Jurnale'; -$a->strings['Admin'] = 'Admin'; -$a->strings['Plugin Features'] = 'Caracteristici Modul'; -$a->strings['diagnostics'] = 'diacgnostice'; -$a->strings['User registrations waiting for confirmation'] = 'Înregistrări de utilizatori, aşteaptă confirmarea'; -$a->strings['Normal Account'] = 'Cont normal'; -$a->strings['Soapbox Account'] = 'Cont Soapbox'; -$a->strings['Community/Celebrity Account'] = 'Cont Comunitate/Celebritate'; -$a->strings['Automatic Friend Account'] = 'Cont Prieten Automat'; -$a->strings['Blog Account'] = 'Cont Blog'; -$a->strings['Private Forum'] = 'Forum Privat'; -$a->strings['Message queues'] = 'Șiruri de mesaje'; -$a->strings['Administration'] = 'Administrare'; -$a->strings['Summary'] = 'Sumar'; -$a->strings['Registered users'] = 'Utilizatori înregistraţi'; -$a->strings['Pending registrations'] = 'Administrare'; -$a->strings['Version'] = 'Versiune'; -$a->strings['Active plugins'] = 'Module active'; -$a->strings['Can not parse base url. Must have at least ://'] = 'Nu se poate analiza URL-ul de bază. Trebuie să aibă minim ://'; -$a->strings['Site settings updated.'] = 'Configurările site-ului au fost actualizate.'; -$a->strings['No special theme for mobile devices'] = 'Nici-o temă specială pentru dispozitive mobile'; -$a->strings['At post arrival'] = 'La sosirea publicaţiei'; -$a->strings['Frequently'] = 'Frecvent'; -$a->strings['Hourly'] = 'Din oră în oră'; -$a->strings['Twice daily'] = 'De două ori pe zi'; -$a->strings['Daily'] = 'Zilnic'; -$a->strings['Multi user instance'] = 'Instanţă utilizatori multipli'; -$a->strings['Closed'] = 'Inchis'; -$a->strings['Requires approval'] = 'Necesită aprobarea'; -$a->strings['Open'] = 'Deschide'; -$a->strings['No SSL policy, links will track page SSL state'] = 'Nici-o politică SSL, legăturile vor urmări starea paginii SSL'; -$a->strings['Force all links to use SSL'] = 'Forţează toate legăturile să utilizeze SSL'; -$a->strings['Self-signed certificate, use SSL for local links only (discouraged)'] = 'Certificat auto/semnat, folosește SSL numai pentru legăturile locate (nerecomandat)'; -$a->strings['Save Settings'] = 'Salvare Configurări'; -$a->strings['Registration'] = 'Registratură'; -$a->strings['File upload'] = 'Fişier incărcat'; -$a->strings['Policies'] = 'Politici'; -$a->strings['Advanced'] = 'Avansat'; -$a->strings['Performance'] = 'Performanţă'; -$a->strings['Relocate - WARNING: advanced function. Could make this server unreachable.'] = 'Reaşezaţi - AVERTIZARE: funcţie avansată. Ar putea face acest server inaccesibil.'; -$a->strings['Site name'] = 'Nume site'; -$a->strings['Host name'] = 'Nume host'; -$a->strings['Banner/Logo'] = 'Baner/Logo'; -$a->strings['Additional Info'] = 'Informaţii suplimentare'; -$a->strings['For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo.'] = 'Pentru serverele publice: puteţi să adăugaţi aici informaţiile suplimentare ce vor fi afişate pe dir.friendica.com/siteinfo.'; -$a->strings['System language'] = 'Limbă System l'; -$a->strings['System theme'] = 'Temă System '; -$a->strings['Default system theme - may be over-ridden by user profiles - change theme settings'] = 'Tema implicită a sistemului - se poate supraregla prin profilele de utilizator - modificați configurările temei'; -$a->strings['Mobile system theme'] = 'Temă sisteme mobile'; -$a->strings['Theme for mobile devices'] = 'Temă pentru dispozitivele mobile'; -$a->strings['SSL link policy'] = 'Politivi link SSL '; -$a->strings['Determines whether generated links should be forced to use SSL'] = 'Determină dacă legăturile generate ar trebui forţate să utilizeze SSL'; -$a->strings['Old style \'Share\''] = 'Stilul vechi de \'Distribuiţi\''; -$a->strings['Deactivates the bbcode element \'share\' for repeating items.'] = 'Dezactivează elementul bbcode \'distribuiţi\' pentru elementele repetitive.'; -$a->strings['Hide help entry from navigation menu'] = 'Ascunde elementele de ajutor, din meniul de navigare'; -$a->strings['Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly.'] = 'Ascunde intrările de meniu pentru paginile de Ajutor, din meniul de navigare. Îl puteţi accesa în continuare direct, apelând /ajutor.'; -$a->strings['Single user instance'] = 'Instanţă cu un singur utilizator'; -$a->strings['Make this instance multi-user or single-user for the named user'] = 'Stabiliți această instanţă ca utilizator-multipli sau utilizator/unic, pentru utilizatorul respectiv'; -$a->strings['Maximum image size'] = 'Maxim mărime imagine'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'Dimensiunea maximă în octeţi, a imaginii încărcate. Implicit este 0, ceea ce înseamnă fără limite.'; -$a->strings['Maximum image length'] = 'Dimensiunea maximă a imaginii'; -$a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Dimensiunea maximă în pixeli a celei mai lungi laturi a imaginii încărcate. Implicit este -1, ceea ce înseamnă fără limite.'; -$a->strings['JPEG image quality'] = 'Calitate imagine JPEG '; -$a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = 'Imaginile JPEG încărcate vor fi salvate cu această calitate stabilită [0-100]. Implicit este 100, ceea ce înseamnă calitate completă.'; -$a->strings['Register policy'] = 'Politici inregistrare '; -$a->strings['Maximum Daily Registrations'] = 'Înregistrări Zilnice Maxime'; -$a->strings['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.'] = 'Dacă înregistrarea este permisă de mai sus, aceasta stabileşte numărul maxim de utilizatori noi înregistraţi, acceptaţi pe zi. Dacă înregistrarea este stabilită ca închisă, această setare nu are efect.'; -$a->strings['Register text'] = 'Text înregistrare'; -$a->strings['Will be displayed prominently on the registration page.'] = 'Va fi afişat vizibil pe pagina de înregistrare.'; -$a->strings['Accounts abandoned after x days'] = 'Conturi abandonate după x zile'; -$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = 'Nu va risipi resurse de sistem interogând site-uri externe pentru conturi abandonate. Introduceţi 0 pentru nici-o limită de timp.'; -$a->strings['Allowed friend domains'] = 'Domenii prietene permise'; -$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Lista cu separator prin virgulă a domeniilor ce sunt permise pentru a stabili relaţii de prietenie cu acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu'; -$a->strings['Allowed email domains'] = 'Domenii de email, permise'; -$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Lista cu separator prin virgulă a domeniilor ce sunt permise în adresele de email pentru înregistrările pe acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu'; -$a->strings['Block public'] = 'Blocare acces public'; -$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Bifați pentru a bloca accesul public, pe acest site, către toate paginile publice cu caracter personal, doar dacă nu sunteţi deja autentificat.'; -$a->strings['Force publish'] = 'Forțează publicarea'; -$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Bifați pentru a forţa, ca toate profilurile de pe acest site să fie enumerate în directorul site-ului.'; -$a->strings['Global directory update URL'] = 'URL actualizare director global'; -$a->strings['URL to update the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'URL pentru a actualiza directorul global. Dacă aceasta nu se stabilește, director global este complet indisponibil pentru aplicație.'; -$a->strings['Allow threaded items'] = 'Permite elemente înșiruite'; -$a->strings['Allow infinite level threading for items on this site.'] = 'Permite pe acest site, un număr infinit de nivele de înșiruire.'; -$a->strings['Private posts by default for new users'] = 'Postările private, ca implicit pentru utilizatori noi'; -$a->strings['Set default post permissions for all new members to the default privacy group rather than public.'] = 'Stabilește permisiunile de postare implicite, pentru toți membrii noi, la grupul de confidențialitate implicit, mai degrabă decât cel public.'; -$a->strings['Don\'t include post content in email notifications'] = 'Nu include conţinutul postării în notificările prin email'; -$a->strings['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.'] = 'Nu include conținutul unui post/comentariu/mesaj privat/etc. în notificările prin email, ce sunt trimise de pe acest site, ca și masură de confidenţialitate.'; -$a->strings['Disallow public access to addons listed in the apps menu.'] = 'Nu permiteţi accesul public la suplimentele enumerate în meniul de aplicaţii.'; -$a->strings['Checking this box will restrict addons listed in the apps menu to members only.'] = 'Bifând această casetă va restricționa, suplimentele enumerate în meniul de aplicaţii, exclusiv la accesul membrilor.'; -$a->strings['Don\'t embed private images in posts'] = 'Nu încorpora imagini private în postări'; -$a->strings['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.'] = 'Nu înlocui fotografiile private, locale, din postări cu o copie încorporată imaginii. Aceasta înseamnă că, contactele care primesc postări ce conțin fotografii private vor trebui să se autentifice şi să încarce fiecare imagine, ceea ce poate dura ceva timp.'; -$a->strings['Allow Users to set remote_self'] = 'Permite utilizatorilor să-și stabilească remote_self'; -$a->strings['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.'] = 'Bifând aceasta, fiecărui utilizator îi este permis să marcheze fiecare contact, ca și propriu_la-distanță în dialogul de remediere contact. Stabilind acest marcaj unui un contact, va determina oglindirea fiecărei postări a respectivului contact, în fluxul utilizatorilor.'; -$a->strings['Block multiple registrations'] = 'Blocare înregistrări multiple'; -$a->strings['Disallow users to register additional accounts for use as pages.'] = 'Interzice utilizatorilor să-și înregistreze conturi adiționale pentru a le folosi ca pagini.'; -$a->strings['OpenID support'] = 'OpenID support'; -$a->strings['OpenID support for registration and logins.'] = 'Suport OpenID pentru înregistrare şi autentificări.'; -$a->strings['Fullname check'] = 'Verificare Nume complet'; -$a->strings['Force users to register with a space between firstname and lastname in Full name, as an antispam measure'] = 'Forțează utilizatorii să se înregistreze cu un spaţiu între prenume şi nume, în câmpul pentru Nume complet, ca și măsură antispam'; -$a->strings['UTF-8 Regular expressions'] = 'UTF-8 Regular expresii'; -$a->strings['Use PHP UTF8 regular expressions'] = 'Utilizaţi PHP UTF-8 Regular expresii'; -$a->strings['Enable OStatus support'] = 'Activează Suport OStatus'; -$a->strings['Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed.'] = 'Oferă compatibilitate de integrare OStatus (StatusNet, GNU Sociale etc.). Toate comunicațiile din OStatus sunt publice, astfel încât avertismentele de confidenţialitate vor fi ocazional afişate.'; -$a->strings['OStatus conversation completion interval'] = 'Intervalul OStatus de finalizare a conversaţiei'; -$a->strings['How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task.'] = 'Cât de des ar trebui, operatorul de sondaje, să verifice existența intrărilor noi din conversațiile OStatus? Aceasta poate fi o resursă de sarcini utile.'; -$a->strings['Enable Diaspora support'] = 'Activează Suport Diaspora'; -$a->strings['Provide built-in Diaspora network compatibility.'] = 'Oferă o compatibilitate de reţea Diaspora, întegrată.'; -$a->strings['Only allow Friendica contacts'] = 'Se permit doar contactele Friendica'; -$a->strings['All contacts must use Friendica protocols. All other built-in communication protocols disabled.'] = 'Toate contactele trebuie să utilizeze protocoalele Friendica. Toate celelalte protocoale, integrate, de comunicaţii sunt dezactivate.'; -$a->strings['Verify SSL'] = 'Verifică SSL'; -$a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = 'Dacă doriţi, puteţi porni verificarea cu strictețe a certificatului. Aceasta va însemna că nu vă puteţi conecta (deloc) la site-uri SSL auto-semnate.'; -$a->strings['Proxy user'] = 'Proxy user'; -$a->strings['Proxy URL'] = 'Proxy URL'; -$a->strings['Network timeout'] = 'Timp de expirare rețea'; -$a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Valoare exprimată în secunde. Stabiliți la 0 pentru nelimitat (nu este recomandat).'; -$a->strings['Delivery interval'] = 'Interval de livrare'; -$a->strings['Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers.'] = 'Întârzierea proceselor de livrare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. Recomandat: 4-5 pentru gazde comune, 2-3 pentru servere virtuale private, 0-1 pentru servere dedicate mari.'; -$a->strings['Poll interval'] = 'Interval de Sondare'; -$a->strings['Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval.'] = 'Întârzierea proceselor de sondare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. dacă este 0, utilizează intervalul de livrare.'; -$a->strings['Maximum Load Average'] = 'Media Maximă de Încărcare'; -$a->strings['Maximum system load before delivery and poll processes are deferred - default 50.'] = 'Încărcarea maximă a sistemului înainte ca livrarea şi procesele de sondare să fie amânate - implicit 50.'; -$a->strings['Use MySQL full text engine'] = 'Utilizare motor text-complet MySQL'; -$a->strings['Activates the full text engine. Speeds up search - but can only search for four and more characters.'] = 'Activează motorul pentru text complet. Grăbeşte căutare - dar poate căuta, numai pentru minim 4 caractere.'; -$a->strings['Suppress Language'] = 'Suprimă Limba'; -$a->strings['Suppress language information in meta information about a posting.'] = 'Suprimă informaţiile despre limba din informaţiile meta ale unei postări.'; -$a->strings['Path to item cache'] = 'Calea pentru elementul cache'; -$a->strings['Cache duration in seconds'] = 'Durata Cache în secunde'; -$a->strings['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.'] = 'Cât de mult ar trebui păstrate fișierele cache? Valoarea implicită este de 86400 de secunde (O zi). Pentru a dezactiva elementul cache, stabilește valoarea la -1.'; -$a->strings['Maximum numbers of comments per post'] = 'Numărul maxim de comentarii per post'; -$a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Câte comentarii ar trebui afișate pentru fiecare postare? Valoarea implicită este 100.'; -$a->strings['Path for lock file'] = 'Cale pentru blocare fișiere'; -$a->strings['Temp path'] = 'Calea Temp'; -$a->strings['Base path to installation'] = 'Calea de bază pentru instalare'; -$a->strings['New base url'] = 'URL de bază nou'; -$a->strings['Update has been marked successful'] = 'Actualizarea a fost marcată cu succes'; -$a->strings['Database structure update %s was successfully applied.'] = 'Actualizarea structurii bazei de date %s a fost aplicată cu succes.'; -$a->strings['Executing %s failed with error: %s'] = 'Executarea %s a eșuat cu eroarea : %s'; -$a->strings['Update %s was successfully applied.'] = 'Actualizarea %s a fost aplicată cu succes.'; -$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'Actualizare %s nu a returnat nici-un status. Nu se știe dacă a reuşit.'; -$a->strings['No failed updates.'] = 'Nici-o actualizare eșuată.'; -$a->strings['Check database structure'] = 'Verifică structura bazei de date'; -$a->strings['Failed Updates'] = 'Actualizări Eșuate'; -$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Aceasta nu include actualizările dinainte de 1139, care nu a returnat nici-un status.'; -$a->strings['Mark success (if update was manually applied)'] = 'Marcaţi ca și realizat (dacă actualizarea a fost aplicată manual)'; -$a->strings['Attempt to execute this update step automatically'] = 'Se încearcă executarea automată a acestei etape de actualizare'; -$a->strings['Registration details for %s'] = 'Detaliile de înregistrare pentru %s'; -$a->strings['%s user blocked/unblocked'] = [ - 0 => '%s utilizator blocat/deblocat', - 1 => '%s utilizatori blocați/deblocați', - 2 => '%s de utilizatori blocați/deblocați', -]; -$a->strings['%s user deleted'] = [ - 0 => '%s utilizator şters', - 1 => '%s utilizatori şterşi', - 2 => '%s utilizatori şterşi', -]; -$a->strings['User \'%s\' deleted'] = 'Utilizator %s şters'; -$a->strings['User \'%s\' unblocked'] = 'Utilizator %s deblocat'; -$a->strings['User \'%s\' blocked'] = 'Utilizator %s blocat'; -$a->strings['Add User'] = 'Adăugaţi Utilizator'; -$a->strings['select all'] = 'selectează tot'; -$a->strings['User registrations waiting for confirm'] = 'Înregistrarea utilizatorului, aşteaptă confirmarea'; -$a->strings['User waiting for permanent deletion'] = 'Utilizatorul așteaptă să fie șters definitiv'; -$a->strings['Request date'] = 'Data cererii'; -$a->strings['Email'] = 'Email'; -$a->strings['No registrations.'] = 'Nici-o înregistrare.'; -$a->strings['Deny'] = 'Respinge'; -$a->strings['Site admin'] = 'Site admin'; -$a->strings['Account expired'] = 'Cont expirat'; -$a->strings['New User'] = 'Utilizator Nou'; -$a->strings['Register date'] = 'Data înregistrare'; -$a->strings['Last login'] = 'Ultimul login'; -$a->strings['Last item'] = 'Ultimul element'; -$a->strings['Deleted since'] = 'Șters din'; -$a->strings['Account'] = 'Cont'; -$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Utilizatorii selectați vor fi ştersi!\n\nTot ce au postat acești utilizatori pe acest site, va fi şters permanent!\n\nConfirmați?'; -$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Utilizatorul {0} va fi şters!\n\nTot ce a postat acest utilizator pe acest site, va fi şters permanent!\n\nConfirmați?'; -$a->strings['Name of the new user.'] = 'Numele noului utilizator.'; -$a->strings['Nickname'] = 'Pseudonim'; -$a->strings['Nickname of the new user.'] = 'Pseudonimul noului utilizator.'; -$a->strings['Email address of the new user.'] = 'Adresa de e-mail a utilizatorului nou.'; -$a->strings['Plugin %s disabled.'] = 'Modulul %s a fost dezactivat.'; -$a->strings['Plugin %s enabled.'] = 'Modulul %s a fost activat.'; -$a->strings['Disable'] = 'Dezactivează'; -$a->strings['Enable'] = 'Activează'; -$a->strings['Toggle'] = 'Comutare'; -$a->strings['Author: '] = 'Autor: '; -$a->strings['Maintainer: '] = 'Responsabil:'; -$a->strings['No themes found.'] = 'Nici-o temă găsită.'; -$a->strings['Screenshot'] = 'Screenshot'; -$a->strings['[Experimental]'] = '[Experimental]'; -$a->strings['[Unsupported]'] = '[Unsupported]'; -$a->strings['Log settings updated.'] = 'Jurnalul de configurări fost actualizat.'; -$a->strings['Clear'] = 'Curăţă'; -$a->strings['Enable Debugging'] = 'Activează Depanarea'; -$a->strings['Log file'] = 'Fişier Log '; -$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Trebuie să fie inscriptibil pentru serverul web. Relativ la directoul dvs. superior Friendica.'; -$a->strings['Log level'] = 'Nivel log'; -$a->strings['Close'] = 'Închide'; -$a->strings['FTP Host'] = 'FTP Host'; -$a->strings['FTP Path'] = 'FTP Path'; -$a->strings['FTP User'] = 'FTP User'; -$a->strings['FTP Password'] = 'FTP Parolă'; -$a->strings['Search Results For:'] = 'Rezultatele Căutării Pentru:'; -$a->strings['Remove term'] = 'Eliminare termen'; -$a->strings['Saved Searches'] = 'Căutări Salvate'; -$a->strings['add'] = 'add'; -$a->strings['Commented Order'] = 'Ordonare Comentarii'; -$a->strings['Sort by Comment Date'] = 'Sortare după Data Comentariului'; -$a->strings['Posted Order'] = 'Ordonare Postări'; -$a->strings['Sort by Post Date'] = 'Sortare după Data Postării'; -$a->strings['Posts that mention or involve you'] = 'Postări ce vă menționează sau vă implică'; -$a->strings['New'] = 'Nou'; -$a->strings['Activity Stream - by date'] = 'Flux Activități - după dată'; -$a->strings['Shared Links'] = 'Linkuri partajate'; -$a->strings['Interesting Links'] = 'Legături Interesante'; -$a->strings['Starred'] = 'Cu steluță'; -$a->strings['Favourite Posts'] = 'Postări Favorite'; -$a->strings['Warning: This group contains %s member from an insecure network.'] = [ - 0 => 'Atenție: Acest grup conţine %s membru dintr-o reţea nesigură.', - 1 => 'Atenție: Acest grup conţine %s membrii dintr-o reţea nesigură.', - 2 => 'Atenție: Acest grup conţine %s de membrii dintr-o reţea nesigură.', -]; -$a->strings['Private messages to this group are at risk of public disclosure.'] = 'Mesajele private către acest grup sunt supuse riscului de divulgare publică.'; -$a->strings['No such group'] = 'Membrii'; -$a->strings['Group is empty'] = 'Grupul este gol'; -$a->strings['Group: '] = 'Grup:'; -$a->strings['Contact: '] = 'Contact: '; -$a->strings['Private messages to this person are at risk of public disclosure.'] = 'Mesajele private către această persoană sunt supuse riscului de divulgare publică.'; -$a->strings['Invalid contact.'] = 'Invalid contact.'; -$a->strings['Friends of %s'] = 'Prieteni cu %s'; -$a->strings['No friends to display.'] = 'Nici-un prieten de afișat.'; -$a->strings['Event title and start time are required.'] = 'Titlul evenimentului şi timpul de pornire sunt necesare.'; -$a->strings['l, F j'] = 'l, F j'; -$a->strings['Edit event'] = 'Editează eveniment'; -$a->strings['link to source'] = 'link către sursă'; -$a->strings['Events'] = 'Evenimente'; -$a->strings['Create New Event'] = 'Crează eveniment nou'; -$a->strings['Previous'] = 'Precedent'; -$a->strings['Next'] = 'Next'; -$a->strings['hour:minute'] = 'ore:minute'; -$a->strings['Event details'] = 'Detalii eveniment'; -$a->strings['Format is %s %s. Starting date and Title are required.'] = 'Formatul este %s %s.Data de începere și Titlul sunt necesare.'; -$a->strings['Event Starts:'] = 'Evenimentul Începe:'; -$a->strings['Required'] = 'Cerut'; -$a->strings['Finish date/time is not known or not relevant'] = 'Data/ora de finalizare nu este cunoscută sau nu este relevantă'; -$a->strings['Event Finishes:'] = 'Evenimentul se Finalizează:'; -$a->strings['Adjust for viewer timezone'] = 'Reglați pentru fusul orar al vizitatorului'; -$a->strings['Description:'] = 'Descriere:'; -$a->strings['Location:'] = 'Locaţie:'; -$a->strings['Title:'] = 'Titlu:'; -$a->strings['Share this event'] = 'Partajează acest eveniment'; -$a->strings['Select'] = 'Select'; -$a->strings['View %s\'s profile @ %s'] = 'Vizualizaţi profilul %s @ %s'; -$a->strings['%s from %s'] = '%s de la %s'; -$a->strings['View in context'] = 'Vizualizare în context'; -$a->strings['%d comment'] = [ - 0 => '%d comentariu', - 1 => '%d comentarii', - 2 => '%d comentarii', -]; -$a->strings['comment'] = [ - 0 => 'comentariu', - 1 => 'comentarii', - 2 => 'comentarii', -]; -$a->strings['show more'] = 'mai mult'; -$a->strings['Private Message'] = ' Mesaj Privat'; -$a->strings['I like this (toggle)'] = 'I like asta (toggle)'; -$a->strings['like'] = 'like'; -$a->strings['I don\'t like this (toggle)'] = 'nu îmi place aceasta (comutare)'; -$a->strings['dislike'] = 'dislike'; -$a->strings['Share this'] = 'Partajează'; -$a->strings['share'] = 'partajează'; +$a->strings['Personal Notes'] = 'Note Personale'; +$a->strings['Personal notes are visible only by yourself.'] = 'Notele Personale sunt vizibile doar pentru dumneavoastră'; +$a->strings['Save'] = 'Salvare'; +$a->strings['User not found.'] = 'Utilizator negăsit.'; +$a->strings['Photo Albums'] = 'Albume Photo '; +$a->strings['Recent Photos'] = 'Poze Recente'; +$a->strings['Upload New Photos'] = 'Încărcaţi Fotografii Noi'; +$a->strings['everybody'] = 'oricine'; +$a->strings['Contact information unavailable'] = 'Informaţii contact nedisponibile'; +$a->strings['Album not found.'] = 'Album negăsit'; +$a->strings['Album successfully deleted'] = 'Album șters cu succes'; +$a->strings['Album was empty.'] = 'Album gol.'; +$a->strings['Failed to delete the photo.'] = 'Nu s-a putut șterge fotografia'; +$a->strings['a photo'] = 'o fotografie'; +$a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s a fost etichetat în %2$s de către %3$s'; +$a->strings['Public access denied.'] = 'Acces public refuzat.'; +$a->strings['No photos selected'] = 'Nicio fotografie selectată'; +$a->strings['The maximum accepted image size is %s'] = 'Mărimea maximă acceptată a imaginii este %s'; +$a->strings['Upload Photos'] = 'Încărcare Fotografii'; +$a->strings['New album name: '] = 'Nume album nou:'; +$a->strings['or select existing album:'] = 'sau selectează un album existent:'; +$a->strings['Do not show a status post for this upload'] = 'Nu afișa un status pentru această încărcare'; +$a->strings['Permissions'] = 'Permisiuni'; +$a->strings['Do you really want to delete this photo album and all its photos?'] = 'Doriţi într-adevăr să ştergeţi acest album foto și toate fotografiile sale?'; +$a->strings['Delete Album'] = 'Şterge Album'; +$a->strings['Cancel'] = 'Anulează'; +$a->strings['Edit Album'] = 'Editează Album'; +$a->strings['Show Newest First'] = 'Afișează Întâi cele Noi'; +$a->strings['Show Oldest First'] = 'Afișează Întâi cele Vechi'; +$a->strings['View Photo'] = 'Vizualizare Fotografie'; +$a->strings['Permission denied. Access to this item may be restricted.'] = 'Permisiune refuzată. Accesul la acest element poate fi restricționat.'; +$a->strings['Photo not available'] = 'Fotografia nu este disponibilă'; +$a->strings['Do you really want to delete this photo?'] = 'Sigur doriți să ștergeți această fotografie?'; +$a->strings['Delete Photo'] = 'Şterge Poza'; +$a->strings['View photo'] = 'Vezi foto'; +$a->strings['Edit photo'] = 'Editează fotografia'; +$a->strings['Delete photo'] = 'Șterge fotografia'; +$a->strings['Use as profile photo'] = 'Utilizați ca și fotografie de profil'; +$a->strings['Private Photo'] = 'Fotografie privată'; +$a->strings['View Full Size'] = 'Vizualizați la Dimensiunea Completă'; +$a->strings['Tags: '] = 'Etichete:'; +$a->strings['[Select tags to remove]'] = '[Selectează etichete de șters]'; +$a->strings['New album name'] = 'Nume Nou Album'; +$a->strings['Caption'] = 'Titlu'; +$a->strings['Add a Tag'] = 'Adaugă un Tag'; +$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Exemplu: @Bob, @Barbara_Jensen, @jim@exemplu.com , #California, #camping'; +$a->strings['Do not rotate'] = 'Nu roti'; +$a->strings['Rotate CW (right)'] = 'Rotire spre dreapta'; +$a->strings['Rotate CCW (left)'] = 'Rotire spre stânga'; $a->strings['This is you'] = 'Acesta eşti tu'; $a->strings['Comment'] = 'Comentariu'; +$a->strings['Preview'] = 'Previzualizare'; +$a->strings['Loading...'] = 'Încărcare...'; +$a->strings['Select'] = 'Select'; +$a->strings['Delete'] = 'Şterge'; +$a->strings['Like'] = 'Îmi place'; +$a->strings['I like this (toggle)'] = 'Îmi place asta (comutare)'; +$a->strings['Dislike'] = 'Nu îmi place'; +$a->strings['I don\'t like this (toggle)'] = 'Nu îmi place aceasta (comutare)'; +$a->strings['Map'] = 'Hartă'; +$a->strings['Apologies but the website is unavailable at the moment.'] = 'Ne pare rău, însă website-ul nu este momentan disponibil'; +$a->strings['Delete this item?'] = 'Ștergeți acest element?'; +$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.'] = 'Dorești să blochezi acest autor? Acesta nu va mai putea să te urmărească și nici să îți vadă postările publice, iar tu nu vei mai putea să-i vezi postările și notificările.'; +$a->strings['Ignore this author? You won\'t be able to see their posts and their notifications.'] = 'Dorești să ignori acest autor? Nu îi vei mai putea vedea postările și notificările.'; +$a->strings['Like not successful'] = 'Apreciere eșuată'; +$a->strings['Dislike not successful'] = 'Neapreciere eșuată'; +$a->strings['Sharing not successful'] = 'Distribuire eșuată'; +$a->strings['Network error'] = 'Eroare de rețea'; +$a->strings['Drop files here to upload'] = 'Lasă fișierele aici pentru a le încărca'; +$a->strings['Your browser does not support drag and drop file uploads.'] = 'Browser-ul dumneavoastră nu suportă încărcarea fișierelor prin tragere și plasare'; +$a->strings['File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.'] = 'Fișierul este prea mare ({{filesize}}MiB). Dimensiunea maximă: {{maxFilesize}}MiB.'; +$a->strings['You can\'t upload files of this type.'] = 'Nu puteți încărca fișiere de acest tip'; +$a->strings['Server responded with {{statusCode}} code.'] = 'Serverul a răspuns cu codul {{statusCode}}'; +$a->strings['Cancel upload'] = 'Anulează încărcarea'; +$a->strings['Upload canceled.'] = 'Încărcarea a fost anulată.'; +$a->strings['Are you sure you want to cancel this upload?'] = 'Sunteți sigur/-ă că vreți să anulați această încărcare?'; +$a->strings['Remove file'] = 'Înlătură fișierul'; +$a->strings['You can\'t upload any more files.'] = 'Nu mai puteți încărca alte fișiere.'; +$a->strings['toggle mobile'] = 'comutare mobil'; +$a->strings['Method not allowed for this module. Allowed method(s): %s'] = 'Metodă nepermisă pentru acest modul. Metodă/metode permise: %s'; +$a->strings['Page not found.'] = 'Pagină negăsită.'; +$a->strings['You must be logged in to use addons. '] = 'Trebuie să vă autentificați pentru a folosi suplimentele.'; +$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.'] = 'Formarea codului de securitate, nu a fost corectă. Aceasta probabil s-a întâmplat pentru că formularul a fost deschis pentru prea mult timp ( >3 ore) înainte de a-l transmite.'; +$a->strings['All contacts'] = 'Toate contactele'; +$a->strings['Followers'] = 'Urmăritori'; +$a->strings['Following'] = 'Urmăriți'; +$a->strings['Mutual friends'] = 'Prieteni comuni'; +$a->strings['Addon not found'] = 'Supliment negăsit'; +$a->strings['Addon already enabled'] = 'Supliment deja activat'; +$a->strings['Addon already disabled'] = 'Supliment deja dezactivat'; +$a->strings['The contact entries have been archived'] = 'Contactul a fost arhivat'; +$a->strings['The contact has been blocked from the node'] = 'Contactul a fost blocat pe acest nod'; +$a->strings[' - found'] = ' - găsit'; +$a->strings[' - failed'] = ' - eșuat'; +$a->strings['Done.'] = 'Realizat.'; +$a->strings['All pending post updates are done.'] = 'Toate actualizările de postare aflate în așteptare s-au terminat.'; +$a->strings['Enter user nickname: '] = 'Introduceți pseudonimul de utilizator:'; +$a->strings['User not found'] = 'Utilizator negăsit'; +$a->strings['Enter new password: '] = 'Introduceți noua parolă:'; +$a->strings['Password update failed. Please try again.'] = 'Actualizarea parolei a eșuat. Vă rugăm să reîncercați.'; +$a->strings['Password changed.'] = 'Parola a fost schimbată.'; +$a->strings['Enter user name: '] = 'Introduceți numele de utilizator:'; +$a->strings['Enter a language (optional): '] = 'Introduceți o limbă (opțional):'; +$a->strings['newer'] = 'mai noi'; +$a->strings['older'] = 'mai vechi'; +$a->strings['DFRN'] = 'DFRN'; +$a->strings['OStatus'] = 'OStatus'; +$a->strings['RSS/Atom'] = 'RSS/Atom'; +$a->strings['Email'] = 'Email'; +$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'] = 'Conector Diaspora'; +$a->strings['GNU Social Connector'] = 'Conector GNU Social'; +$a->strings['ActivityPub'] = 'ActivityPub'; +$a->strings['Tumblr'] = 'Tumblr'; +$a->strings['Bluesky'] = 'Bluesky'; +$a->strings['%s (via %s)'] = '%s (via %s)'; +$a->strings['and'] = 'şi'; +$a->strings['Visible to everybody'] = 'Vizibil pentru toți'; +$a->strings['Tag term:'] = 'Termen etichetare:'; +$a->strings['Save to Folder:'] = 'Salvare în Dosar:'; +$a->strings['Where are you right now?'] = 'Unde vă aflați acum?'; +$a->strings['Delete item(s)?'] = 'Ștergeți element(e)?'; +$a->strings['New Post'] = 'Postare nouă'; +$a->strings['Share'] = 'Partajează'; +$a->strings['upload photo'] = 'încărcare fotografie'; +$a->strings['Attach file'] = 'Ataşează fişier'; +$a->strings['attach file'] = 'ataşează fişier'; $a->strings['Bold'] = 'Bold'; $a->strings['Italic'] = 'Italic'; $a->strings['Underline'] = 'Subliniat'; $a->strings['Quote'] = 'Citat'; +$a->strings['Add emojis'] = 'Adaugă emoji-uri'; +$a->strings['Content Warning'] = 'Avertisment de conținut'; $a->strings['Code'] = 'Code'; $a->strings['Image'] = 'Imagine'; $a->strings['Link'] = 'Link'; +$a->strings['Link or Media'] = 'Link sau fișier media'; $a->strings['Video'] = 'Video'; -$a->strings['Preview'] = 'Previzualizare'; -$a->strings['Edit'] = 'Edit'; -$a->strings['add star'] = 'add stea'; -$a->strings['remove star'] = 'înlătură stea'; -$a->strings['toggle star status'] = 'comută status steluță'; -$a->strings['starred'] = 'cu steluță'; -$a->strings['add tag'] = 'add tag'; -$a->strings['save to folder'] = 'salvează în directorul'; -$a->strings['to'] = 'către'; -$a->strings['Wall-to-Wall'] = 'Perete-prin-Perete'; -$a->strings['via Wall-To-Wall:'] = 'via Perete-Prin-Perete'; -$a->strings['Remove My Account'] = 'Șterge Contul Meu'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Aceasta va elimina complet contul dvs. Odată ce a fostă, această acțiune este nerecuperabilă.'; -$a->strings['Please enter your password for verification:'] = 'Vă rugăm să introduceţi parola dvs. pentru verificare:'; -$a->strings['Friendica Communications Server - Setup'] = 'Serverul de Comunicații Friendica - Instalare'; -$a->strings['Could not connect to database.'] = 'Nu se poate face conectarea cu baza de date.'; -$a->strings['Could not create table.'] = 'Nu se poate crea tabelul.'; -$a->strings['Your Friendica site database has been installed.'] = 'Baza dvs. de date Friendica, a fost instalată.'; +$a->strings['Set your location'] = 'Setați locația dvs'; +$a->strings['set location'] = 'set locaţie'; +$a->strings['Clear browser location'] = 'Curățare locație browser'; +$a->strings['clear location'] = 'şterge locaţia'; +$a->strings['Set title'] = 'Setează titlu'; +$a->strings['Categories (comma-separated list)'] = 'Categorii (listă cu separator prin virgulă)'; +$a->strings['Scheduled at'] = 'Programat la'; +$a->strings['Permission settings'] = 'Setări permisiuni'; +$a->strings['Public post'] = 'Public post'; +$a->strings['Message'] = 'Mesaj'; +$a->strings['Browser'] = 'Browser'; +$a->strings['Open Compose page'] = 'Deschide Pagina de compunere'; +$a->strings['remove'] = 'eliminare'; +$a->strings['Delete Selected Items'] = 'Ștergeți Elementele Selectate'; +$a->strings['You are following %s.'] = 'Dvs. urmăriți %s.'; +$a->strings['You subscribed to %s.'] = 'V-ați abonat la %s.'; +$a->strings['You subscribed to one or more tags in this post.'] = 'V-ați abonat la una sau mai multe etichete prezente în această postare'; +$a->strings['%s reshared this.'] = '%s a redistribuit'; +$a->strings['Reshared'] = 'Redistribuit'; +$a->strings['Reshared by %s <%s>'] = 'Redistribuit de %s <%s>'; +$a->strings['%s is participating in this thread.'] = '%s participă în acest fir de conversație'; +$a->strings['Sent via an relay server'] = 'Trimis printr-un server releu'; +$a->strings['Sent via the relay server %s <%s>'] = 'Trimis prin serverul releu %s <%s>'; +$a->strings['Pinned item'] = 'Element fixat'; +$a->strings['View %s\'s profile @ %s'] = 'Vizualizaţi profilul %s @ %s'; +$a->strings['Categories:'] = 'Categorii:'; +$a->strings['Filed under:'] = 'Înscris în:'; +$a->strings['%s from %s'] = '%s de la %s'; +$a->strings['View in context'] = 'Vizualizare în context'; +$a->strings['Local Community'] = 'Comunitatea locală'; +$a->strings['Posts from local users on this server'] = 'Postări ale utilizatorilor aflați pe acest server'; +$a->strings['Global Community'] = 'Comunitatea globală'; +$a->strings['Posts from users of the whole federated network'] = 'Postări ale utilizatorilor întregii rețele federate'; +$a->strings['Latest Activity'] = 'Activitate recentă'; +$a->strings['Sort by latest activity'] = 'Sortează după activitatea recentă'; +$a->strings['Latest Posts'] = 'Postări recente'; +$a->strings['Latest Creation'] = 'Creații recente'; +$a->strings['Sort by post creation date'] = 'Sortează după data creării postării'; +$a->strings['Personal'] = 'Personal'; +$a->strings['Posts that mention or involve you'] = 'Postări ce vă menționează sau vă implică'; +$a->strings['Starred'] = 'Cu steluță'; +$a->strings['Favourite Posts'] = 'Postări Favorite'; +$a->strings['General Features'] = 'Caracteristici Generale'; +$a->strings['Photo Location'] = 'Locație fotografie'; +$a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'Metadata fotografiilor este în mod normal înlăturată. Aceasta extrage locația (dacă există) anterior înlăturării metadatelor și o afișează pe o hartă.'; +$a->strings['Trending Tags'] = 'Etichete în tendințe'; +$a->strings['Post Composition Features'] = 'Caracteristici Compoziţie Postare'; +$a->strings['Add an abstract from ActivityPub content warnings'] = 'Adaugă un abstract din avertismentele de conținut ActivityPub'; +$a->strings['Add an abstract when commenting on ActivityPub posts with a content warning. Abstracts are displayed as content warning on systems like Mastodon or Pleroma.'] = 'Adaugați un abstract atunci când comentați postări ActivityPub conținând un avertisment de conținut. Abstractele sunt afișate ca avertisment de conținut pe sisteme precum Mastodon sau Pleroma'; +$a->strings['Post/Comment Tools'] = 'Instrumente Postare/Comentariu'; +$a->strings['Post Categories'] = 'Categorii Postări'; +$a->strings['Add categories to your posts'] = 'Adăugaţi categorii la postările dvs.'; +$a->strings['Advanced Profile Settings'] = 'Setări de profil avansate'; +$a->strings['List Groups'] = 'Listează grupuri'; +$a->strings['Show visitors public groups at the Advanced Profile Page'] = 'Arată vizitatorilor grupuri publice în Pagina de Profil Avansată'; +$a->strings['Tag Cloud'] = 'Nor cu etichete'; +$a->strings['Provide a personal tag cloud on your profile page'] = 'Afișează un „nor cu etichete” personale pe pagina ta de profil'; +$a->strings['Advanced Calendar Settings'] = 'Setări avansate calendar'; +$a->strings['Allow anonymous access to your calendar'] = 'Permiteți accesul anonim la calendarul dumneavoastră'; +$a->strings['Allows anonymous visitors to consult your calendar and your public events. Contact birthday events are private to you.'] = 'Permite vizitatorilor anonimi să vă consulte calendarul și evenimentele publice ale dumneavoastră. Evenimentele tip zi de naștere ale contactelor dumneavoastră rămân private.'; +$a->strings['Groups'] = 'Grupuri'; +$a->strings['External link to group'] = 'Link extern către grup'; +$a->strings['show less'] = 'mai puțin'; +$a->strings['show more'] = 'mai mult'; +$a->strings['Create new group'] = 'Creează un grup nou'; +$a->strings['event'] = 'eveniment'; +$a->strings['status'] = 'status'; +$a->strings['photo'] = 'fotografie'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s a etichetat %3$s de la %2$s cu %4$s'; +$a->strings['Follow Thread'] = 'Urmăriți Firul Conversației'; +$a->strings['View Status'] = 'Vizualizare Status'; +$a->strings['View Profile'] = 'Vizualizare Profil'; +$a->strings['View Photos'] = 'Vizualizare Fotografii'; +$a->strings['Network Posts'] = 'Postări din Rețea'; +$a->strings['Send PM'] = 'Trimiteți mesaj personal'; +$a->strings['Block'] = 'Blochează'; +$a->strings['Ignore'] = 'Ignoră'; +$a->strings['Connect/Follow'] = 'Conectare/Urmărire'; +$a->strings['Nothing new here'] = 'Nimic nou aici'; +$a->strings['Clear notifications'] = 'Ştergeţi notificările'; +$a->strings['@name, !group, #tags, content'] = '@nume, !grup, #etichetă, conținut'; +$a->strings['Logout'] = 'Deconectare'; +$a->strings['End this session'] = 'Finalizați această sesiune'; +$a->strings['Login'] = 'Login'; +$a->strings['Sign in'] = 'Autentificare'; +$a->strings['Conversations'] = 'Conversații'; +$a->strings['Conversations you started'] = 'Conversații pe care le-ați pornit'; +$a->strings['Profile'] = 'Profil'; +$a->strings['Your profile page'] = 'Pagina dvs. de profil'; +$a->strings['Photos'] = 'Poze'; +$a->strings['Your photos'] = 'Fotografiile dvs.'; +$a->strings['Personal notes'] = 'Note Personale'; +$a->strings['Your personal notes'] = 'Notele tale personale'; +$a->strings['Home'] = 'Home'; +$a->strings['Home Page'] = 'Home Pagina'; +$a->strings['Register'] = 'Înregistrare'; +$a->strings['Create an account'] = 'Creați un cont'; +$a->strings['Help'] = 'Ajutor'; +$a->strings['Help and documentation'] = 'Ajutor şi documentaţie'; +$a->strings['Apps'] = 'Aplicații'; +$a->strings['Addon applications, utilities, games'] = 'Suplimente la aplicații, utilitare, jocuri'; +$a->strings['Search'] = 'Căutare'; +$a->strings['Search site content'] = 'Căutare în conținut site'; +$a->strings['Contacts'] = 'Contacte'; +$a->strings['Community'] = 'Comunitate'; +$a->strings['Conversations on this and other servers'] = 'Conversații pe acest server și pe altele'; +$a->strings['Directory'] = 'Director'; +$a->strings['People directory'] = 'Director persoane'; +$a->strings['Information'] = 'Informaţii'; +$a->strings['Information about this friendica instance'] = 'Informaţii despre această instanță friendica'; +$a->strings['Terms of Service'] = 'Condiții de Utilizare'; +$a->strings['Terms of Service of this Friendica instance'] = 'Condițiile de Utilizare ale acestei instanțe de Friendica'; +$a->strings['Network'] = 'Reţea'; +$a->strings['Conversations from your friends'] = 'Conversaţiile prieteniilor dvs.'; +$a->strings['Your posts and conversations'] = 'Postările şi conversaţiile dvs.'; +$a->strings['Introductions'] = 'Introduceri'; +$a->strings['Friend Requests'] = 'Solicitări Prietenie'; +$a->strings['Notifications'] = 'Notificări'; +$a->strings['See all notifications'] = 'Consultaţi toate notificările'; +$a->strings['Mark as seen'] = 'Marcați ca și vizualizat'; +$a->strings['Private mail'] = 'Mail privat'; +$a->strings['Inbox'] = 'Mesaje primite'; +$a->strings['Outbox'] = 'Căsuță de Ieșire'; +$a->strings['Manage other pages'] = 'Gestionează alte pagini'; +$a->strings['Settings'] = 'Setări'; +$a->strings['Account settings'] = 'Configurări Cont'; +$a->strings['Manage/edit friends and contacts'] = 'Gestionare/Editare prieteni şi contacte'; +$a->strings['Admin'] = 'Admin'; +$a->strings['Site setup and configuration'] = 'Instalare şi configurare site'; +$a->strings['Navigation'] = 'Navigare'; +$a->strings['Site map'] = 'Hartă Site'; +$a->strings['Embedding disabled'] = 'Încorporarea conținuturilor este dezactivată'; +$a->strings['Embedded content'] = 'Conţinut încorporat'; +$a->strings['first'] = 'prima'; +$a->strings['prev'] = 'preced'; +$a->strings['next'] = 'următor'; +$a->strings['last'] = 'ultima'; +$a->strings['Image/photo'] = 'Imagine/fotografie'; +$a->strings['Click to open/close'] = 'Apăsați pentru a deschide/închide'; +$a->strings['$1 wrote:'] = '$1 a scris:'; +$a->strings['Encrypted content'] = 'Conţinut criptat'; +$a->strings['Add New Contact'] = 'Add Contact Nou'; +$a->strings['Enter address or web location'] = 'Introduceţi adresa sau locaţia web'; +$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Exemplu: bob@example.com, http://example.com/barbara'; +$a->strings['Connect'] = 'Conectare'; +$a->strings['%d invitation available'] = [ + 0 => '%d invitație disponibilă', + 1 => '%d invitații disponibile', + 2 => '%d de invitații disponibile', +]; +$a->strings['Find People'] = 'Căutați Persoane'; +$a->strings['Enter name or interest'] = 'Introduceţi numele sau interesul'; +$a->strings['Examples: Robert Morgenstein, Fishing'] = 'Exemple: Robert Morgenstein, Pescuit'; +$a->strings['Find'] = 'Căutare'; +$a->strings['Friend Suggestions'] = 'Sugestii de Prietenie'; +$a->strings['Similar Interests'] = 'Interese Similare'; +$a->strings['Random Profile'] = 'Profil Aleatoriu'; +$a->strings['Invite Friends'] = 'Invită Prieteni'; +$a->strings['Global Directory'] = 'Director Global'; +$a->strings['Local Directory'] = 'Director Local'; +$a->strings['All Contacts'] = 'Toate Contactele'; +$a->strings['Protocols'] = 'Protocoale'; +$a->strings['All Protocols'] = 'Toate protocoalele'; +$a->strings['Saved Folders'] = 'Dosare Salvate'; +$a->strings['Everything'] = 'Totul'; +$a->strings['Categories'] = 'Categorii'; +$a->strings['%d contact in common'] = [ + 0 => '%d contact în comun', + 1 => '%d contacte în comun', + 2 => '%d de contacte în comun', +]; +$a->strings['Archives'] = 'Arhive'; +$a->strings['Persons'] = 'Persoane'; +$a->strings['Organisations'] = 'Organizații'; +$a->strings['News'] = 'Știri'; +$a->strings['Account Types'] = 'Tipuri de cont'; +$a->strings['All'] = 'Totul'; +$a->strings['Channels'] = 'Canale'; +$a->strings['Export'] = 'Exportare'; +$a->strings['Export calendar as ical'] = 'Exportă calendarul ca ical'; +$a->strings['Export calendar as csv'] = 'Exportă calendarul ca csv'; +$a->strings['No contacts'] = 'Nici-un contact'; +$a->strings['%d Contact'] = [ + 0 => '%d Contact', + 1 => '%d Contacte', + 2 => '%d de Contacte', +]; +$a->strings['View Contacts'] = 'Vezi Contacte'; +$a->strings['Remove term'] = 'Eliminare termen'; +$a->strings['Saved Searches'] = 'Căutări Salvate'; +$a->strings['More Trending Tags'] = 'Mai multe etichete în tendințe'; +$a->strings['XMPP:'] = 'XMPP:'; +$a->strings['Matrix:'] = 'Matrix:'; +$a->strings['Location:'] = 'Locaţie:'; +$a->strings['Network:'] = 'Reţea:'; +$a->strings['Post to Email'] = 'Postați prin Email'; +$a->strings['Show to:'] = 'Arată către:'; +$a->strings['Except to:'] = 'Cu excepția:'; +$a->strings['CC: email addresses'] = 'CC: adresă email'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Exemplu: bob@exemplu.com, mary@exemplu.com'; $a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Este posibil să fie nevoie să importați manual fişierul "database.sql" folosind phpmyadmin sau mysql.'; -$a->strings['Please see the file "INSTALL.txt".'] = 'Vă rugăm să consultaţi fişierul "INSTALL.txt".'; -$a->strings['System check'] = 'Verificare sistem'; -$a->strings['Check again'] = 'Reverificare'; -$a->strings['Database connection'] = 'Conexiunea cu baza de date'; -$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Pentru a instala Friendica trebuie să știm cum să vă conectaţi la baza dumneavoastră de date.'; -$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Vă rugăm să vă contactaţi furnizorul găzduirii sau administratorul de site dacă aveţi întrebări despre aceste configurări.'; -$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'Baza de date specificată mai jos ar trebui să existe deja. Dacă nu, vă rugăm s-o creați înainte de a continua.'; -$a->strings['Database Server Name'] = 'Nume Server Bază de date'; -$a->strings['Database Login Name'] = 'Nume Autentificare Bază de date'; -$a->strings['Database Login Password'] = 'Parola de Autentificare Bază de date'; -$a->strings['Database Name'] = 'Nume Bază de date'; -$a->strings['Site administrator email address'] = 'Adresa de email a administratorului de site'; -$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'Adresa de email a contului dvs. trebuie să corespundă cu aceasta pentru a utiliza panoul de administrare web.'; -$a->strings['Please select a default timezone for your website'] = 'Vă rugăm să selectaţi un fus orar prestabilit pentru site-ul dvs.'; -$a->strings['Site settings'] = 'Configurări Site'; $a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Nu s-a putut găsi o versiune a liniei de comandă PHP în CALEA serverului web.'; -$a->strings['If you don\'t have a command line version of PHP installed on server, you will not be able to run background polling via cron. See \'Activating scheduled tasks\''] = 'Dacă nu aveţi o versiune a liniei de comandă PHP instalată pe server, nu veţi putea să efectuaţi interogări ciclice în fundal prin funcția cron. Consultaţi \'Activarea sarcinilor programate\' '; $a->strings['PHP executable path'] = 'Calea de executare PHP'; $a->strings['Enter full path to php executable. You can leave this blank to continue the installation.'] = 'Introduceţi calea completă către executabilul php. Puteţi lăsa acesta necompletată pentru a continua instalarea.'; $a->strings['Command line PHP'] = 'linie comandă PHP'; @@ -718,425 +460,571 @@ $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'] = 'Eroare: funcția "openssl_pkey_new" de pe acest sistem nu este capabilă să genereze chei de criptare'; $a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'Dacă rulează pe Windows, vă rugăm să consultaţi "http://www.php.net/manual/en/openssl.installation.php".'; $a->strings['Generate encryption keys'] = 'Generare chei de criptare'; -$a->strings['libCurl PHP module'] = 'Modulul PHP libCurl'; -$a->strings['GD graphics PHP module'] = 'Modulul PHP grafică GD'; -$a->strings['OpenSSL PHP module'] = 'Modulul PHP OpenSSL'; -$a->strings['mysqli PHP module'] = 'Modulul PHP mysqli'; -$a->strings['mb_string PHP module'] = 'Modulul PHP mb_string'; -$a->strings['Apache mod_rewrite module'] = 'Modulul Apache mod_rewrite'; $a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Eroare: Modulul mod-rewrite al serverulului Apache este necesar, dar nu este instalat.'; +$a->strings['Apache mod_rewrite module'] = 'Modulul Apache mod_rewrite'; +$a->strings['libCurl PHP module'] = 'Modulul PHP libCurl'; $a->strings['Error: libCURL PHP module required but not installed.'] = 'Eroare: modulul PHP libCURL este necesar dar nu este instalat.'; +$a->strings['GD graphics PHP module'] = 'Modulul PHP grafică GD'; $a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Eroare: Modulul PHP grafică GD cu suport JPEG, este necesar dar nu este instalat.'; +$a->strings['OpenSSL PHP module'] = 'Modulul PHP OpenSSL'; $a->strings['Error: openssl PHP module required but not installed.'] = 'Eroare: modulul PHP libCURL este necesar dar nu este instalat.'; -$a->strings['Error: mysqli PHP module required but not installed.'] = 'Eroare: modulul PHP mysqli este necesar dar nu este instalat.'; +$a->strings['mb_string PHP module'] = 'Modulul PHP mb_string'; $a->strings['Error: mb_string PHP module required but not installed.'] = 'Eroare: modulul PHP mb_string este necesar dar nu este instalat.'; -$a->strings['The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.'] = 'Expertul de instalare web trebuie să poată crea un fișier numit ".htconfig.php" în dosarul superior al serverului dvs. web, şi nu poate face acest lucru.'; $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.'] = 'Aceasta este cel mai adesea o configurare de permisiune, deoarece serverul web nu ar putea fi capabil să scrie fişiere în dosarul dumneavoastră - chiar dacă dvs. puteţi.'; -$a->strings['At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder.'] = 'La finalul acestei proceduri, vă vom oferi un text pentru a-l salva într-un fişier numit .htconfig.php din dosarul dvs. superior Friendica.'; -$a->strings['You can alternatively skip this procedure and perform a manual installation. Please see the file "INSTALL.txt" for instructions.'] = 'Alternativ, puteţi omite această procedură şi să efectuaţi o instalare manuală. Vă rugăm să consultaţi fişierul "INSTALL.txt" pentru instrucțiuni.'; -$a->strings['.htconfig.php is writable'] = '.htconfig.php este inscriptibil'; $a->strings['Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.'] = 'Friendica utilizează motorul de șablon Smarty3 pentru a prelucra vizualizările sale web. Smarty3 compilează şabloane în PHP pentru a grăbi prelucrarea.'; $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.'] = 'Pentru a stoca aceste şabloane compilate, serverul de web trebuie să aibă acces la scriere pentru directorul view/smarty3/ din dosarul de nivel superior Friendica.'; $a->strings['Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder.'] = 'Vă rugăm să vă asiguraţi că utilizatorul pe care rulează serverul dvs. web (de ex. www-date) are acces la scriere pentru acest dosar.'; $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.'] = 'Notă: ca o măsură de securitate, ar trebui să dați serverului web, acces de scriere numai pentru view/smarty3/--dar nu și fișierelor de șablon (.tpl) pe care le conţine.'; $a->strings['view/smarty3 is writable'] = 'view/smarty3 este inscriptibil'; -$a->strings['Url rewrite in .htaccess is not working. Check your server configuration.'] = 'Funcția de rescriere Url rewrite din .htaccess nu funcţionează. Verificaţi-vă configuraţia serverului.'; $a->strings['Url rewrite is working'] = 'Funcția de rescriere Url rewrite, funcţionează.'; -$a->strings['The database configuration file ".htconfig.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.'] = 'Fișierul de configurare baza de date ".htconfig.php", nu a putut fi scris. Vă rugăm să utilizaţi textul închis pentru a crea un fişier de configurare în rădăcina serverului dvs. web.'; -$a->strings['

    What next

    '] = '

    Ce urmează

    '; -$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the poller.'] = 'IMPORTANT: Va trebui să configurați [manual] o sarcină programată pentru operatorul de sondaje.'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Numărul de mesaje, zilnice de perete, pentru %s a fost depăşit. Mesajul a eşuat.'; -$a->strings['Unable to check your home location.'] = 'Imposibil de verificat locaţia dvs. de reşedinţă.'; -$a->strings['No recipient.'] = 'Nici-un destinatar.'; -$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Dacă doriţi ca %s să vă răspundă, vă rugăm să verificaţi dacă configurările de confidenţialitate de pe site-ul dumneavoastră, permite mail-uri private de la expeditori necunoscuți.'; -$a->strings['Help:'] = 'Ajutor:'; -$a->strings['Help'] = 'Ajutor'; -$a->strings['Not Found'] = 'Negăsit'; -$a->strings['Page not found.'] = 'Pagină negăsită.'; -$a->strings['%1$s welcomes %2$s'] = '%1$s îi urează bun venit lui %2$s'; -$a->strings['Welcome to %s'] = 'Bine aţi venit la %s'; -$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Ne pare rău, este posibil ca fișierul pe care doriți să-l încărcați, este mai mare decât permite configuraţia PHP'; -$a->strings['Or - did you try to upload an empty file?'] = 'Sau - ați încercat să încărcaţi un fişier gol?'; -$a->strings['File exceeds size limit of %d'] = 'Fişierul depăşeşte dimensiunea limită de %d'; -$a->strings['File upload failed.'] = 'Încărcarea fișierului a eşuat.'; -$a->strings['Profile Match'] = 'Potrivire Profil'; -$a->strings['No keywords to match. Please add keywords to your default profile.'] = 'Nu există cuvinte cheie pentru a le potrivi. Vă rugăm să adăugaţi cuvinte cheie la profilul dvs implicit.'; -$a->strings['is interested in:'] = 'are interese pentru:'; -$a->strings['Connect'] = 'Conectare'; -$a->strings['link'] = 'link'; -$a->strings['Not available.'] = 'Indisponibil.'; -$a->strings['Community'] = 'Comunitate'; -$a->strings['No results.'] = 'Nici-un rezultat.'; -$a->strings['everybody'] = 'oricine'; -$a->strings['Additional features'] = 'Caracteristici suplimentare'; -$a->strings['Display'] = 'Afișare'; -$a->strings['Social Networks'] = 'Rețele Sociale'; -$a->strings['Delegations'] = 'Delegații'; -$a->strings['Connected apps'] = 'Aplicații Conectate'; -$a->strings['Export personal data'] = 'Exportare date personale'; -$a->strings['Remove account'] = 'Ștergere cont'; -$a->strings['Missing some important data!'] = 'Lipsesc unele date importante!'; -$a->strings['Failed to connect with email account using the settings provided.'] = 'A eşuat conectarea cu, contul de email, folosind configurările furnizate.'; -$a->strings['Email settings updated.'] = 'Configurările de email au fost actualizate.'; -$a->strings['Features updated'] = 'Caracteristici actualizate'; -$a->strings['Relocate message has been send to your contacts'] = 'Mesajul despre mutare, a fost trimis către contactele dvs.'; -$a->strings['Passwords do not match. Password unchanged.'] = 'Parolele nu coincid. Parolă neschimbată.'; -$a->strings['Empty passwords are not allowed. Password unchanged.'] = 'Parolele necompletate nu sunt permise. Parolă neschimbată.'; -$a->strings['Wrong password.'] = 'Parolă greșită.'; -$a->strings['Password changed.'] = 'Parola a fost schimbată.'; -$a->strings['Password update failed. Please try again.'] = 'Actualizarea parolei a eșuat. Vă rugăm să reîncercați.'; -$a->strings[' Please use a shorter name.'] = 'Vă rugăm să utilizaţi un nume mai scurt.'; -$a->strings[' Name too short.'] = 'Numele este prea scurt.'; -$a->strings['Wrong Password'] = 'Parolă Greșită'; -$a->strings[' Not valid email.'] = 'Nu este un email valid.'; -$a->strings[' Cannot change to that email.'] = 'Nu poate schimba cu acest email.'; -$a->strings['Private forum has no privacy permissions. Using default privacy group.'] = 'Forumul privat nu are permisiuni de confidenţialitate. Se folosește confidențialitatea implicită de grup.'; -$a->strings['Private forum has no privacy permissions and no default privacy group.'] = 'Forumul Privat nu are permisiuni de confidenţialitate şi nici o confidențialitate implicită de grup.'; -$a->strings['Settings updated.'] = 'Configurări actualizate.'; -$a->strings['Add application'] = 'Adăugare aplicaţie'; -$a->strings['Consumer Key'] = 'Cheia Utilizatorului'; -$a->strings['Consumer Secret'] = 'Cheia Secretă a Utilizatorului'; -$a->strings['Redirect'] = 'Redirecţionare'; -$a->strings['Icon url'] = 'URL pictogramă'; -$a->strings['You can\'t edit this application.'] = 'Nu puteți edita această aplicaţie.'; -$a->strings['Connected Apps'] = 'Aplicații Conectate'; -$a->strings['Client key starts with'] = 'Cheia clientului începe cu'; -$a->strings['No name'] = 'Fără nume'; -$a->strings['Remove authorization'] = 'Eliminare autorizare'; -$a->strings['No Plugin settings configured'] = 'Nici-o configurare stabilită pentru modul'; -$a->strings['Plugin Settings'] = 'Configurări Modul'; -$a->strings['Off'] = 'Off'; -$a->strings['On'] = 'On'; -$a->strings['Additional Features'] = 'Caracteristici Suplimentare'; -$a->strings['Built-in support for %s connectivity is %s'] = 'Suportul încorporat pentru conectivitatea %s este %s'; -$a->strings['Diaspora'] = 'Diaspora'; -$a->strings['enabled'] = 'activat'; -$a->strings['disabled'] = 'dezactivat'; -$a->strings['StatusNet'] = 'StatusNet'; -$a->strings['Email access is disabled on this site.'] = 'Accesul de email este dezactivat pe acest site.'; -$a->strings['Email/Mailbox Setup'] = 'Configurare E-Mail/Căsuță poştală'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Dacă doriţi să comunicaţi cu contactele de email folosind acest serviciu (opţional), vă rugăm să precizaţi cum doriți să vă conectaţi la căsuța dvs. poştală.'; -$a->strings['Last successful email check:'] = 'Ultima verificare, cu succes, a email-ului:'; -$a->strings['IMAP server name:'] = 'Nume server IMAP:'; -$a->strings['IMAP port:'] = 'IMAP port:'; -$a->strings['Security:'] = 'Securitate:'; -$a->strings['None'] = 'Nimic'; -$a->strings['Email login name:'] = 'Nume email autentificare:'; -$a->strings['Email password:'] = 'Parolă de e-mail:'; -$a->strings['Reply-to address:'] = 'Adresă pentru răspuns:'; -$a->strings['Send public posts to all email contacts:'] = 'Trimiteți postările publice la toate contactele de email:'; -$a->strings['Action after import:'] = 'Acţiune după importare:'; -$a->strings['Mark as seen'] = 'Marcați ca și vizualizat'; -$a->strings['Move to folder'] = 'Mutare în dosar'; -$a->strings['Move to folder:'] = 'Mutare în dosarul:'; -$a->strings['Display Settings'] = 'Preferințe Ecran'; -$a->strings['Display Theme:'] = 'Temă Afişaj:'; -$a->strings['Mobile Theme:'] = 'Temă pentru Mobile:'; -$a->strings['Update browser every xx seconds'] = 'Actualizare browser la fiecare fiecare xx secunde'; -$a->strings['Minimum of 10 seconds, no maximum'] = 'Minim 10 secunde, fără un maxim'; -$a->strings['Number of items to display per page:'] = 'Numărul de elemente de afişat pe pagină:'; -$a->strings['Maximum of 100 items'] = 'Maxim 100 de elemente'; -$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Numărul de elemente de afişat pe pagină atunci când se vizualizează de pe dispozitivul mobil:'; -$a->strings['Don\'t show emoticons'] = 'Nu afișa emoticoane'; -$a->strings['Don\'t show notices'] = 'Nu afișa notificări'; -$a->strings['Infinite scroll'] = 'Derulare infinită'; -$a->strings['Automatic updates only at the top of the network page'] = 'Actualizări automate doar la partea superioară a paginii de rețea '; -$a->strings['User Types'] = 'Tipuri de Utilizator'; -$a->strings['Community Types'] = 'Tipuri de Comunitare'; -$a->strings['Normal Account Page'] = 'Pagină de Cont Simplu'; -$a->strings['This account is a normal personal profile'] = 'Acest cont este un profil personal normal'; -$a->strings['Soapbox Page'] = 'Pagină Soapbox'; -$a->strings['Automatically approve all connection/friend requests as read-only fans'] = 'Aprobă automat toate conexiunile/solicitările de prietenie ca și fani cu drepturi doar pentru vizualizare'; -$a->strings['Community Forum/Celebrity Account'] = 'Cont Comunitate Forum/Celebritate'; -$a->strings['Automatically approve all connection/friend requests as read-write fans'] = 'Aprobă automat toate conexiunile/solicitările de prietenie ca și fani cu drepturi doar pentru vizualizare'; -$a->strings['Automatic Friend Page'] = 'Pagină Prietenie Automată'; -$a->strings['Automatically approve all connection/friend requests as friends'] = 'Aprobă automat toate conexiunile/solicitările de prietenie ca și prieteni'; -$a->strings['Private Forum [Experimental]'] = 'Forum Privat [Experimental]'; -$a->strings['Private forum - approved members only'] = 'Forum Privat - numai membrii aprobați'; -$a->strings['OpenID:'] = 'OpenID:'; -$a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Opţional) Permite acest OpenID să se conecteze la acest cont.'; -$a->strings['Publish your default profile in your local site directory?'] = 'Publicați profilul dvs. implicit în directorul site-ului dvs. local?'; -$a->strings['No'] = 'NU'; -$a->strings['Publish your default profile in the global social directory?'] = 'Publicați profilul dvs. implicit în directorul social global?'; -$a->strings['Hide your contact/friend list from viewers of your default profile?'] = 'Ascundeţi lista dvs. de contacte/prieteni de vizitatorii profilului dvs. implicit?'; -$a->strings['Hide your profile details from unknown viewers?'] = 'Ascundeţi detaliile profilului dvs. de vizitatorii necunoscuți?'; -$a->strings['Allow friends to post to your profile page?'] = 'Permiteți prietenilor să posteze pe pagina dvs. de profil ?'; -$a->strings['Allow friends to tag your posts?'] = 'Permiteți prietenilor să vă eticheteze postările?'; -$a->strings['Allow us to suggest you as a potential friend to new members?'] = 'Ne permiteți să vă recomandăm ca și potențial prieten pentru membrii noi?'; -$a->strings['Permit unknown people to send you private mail?'] = 'Permiteți persoanelor necunoscute să vă trimită mesaje private?'; -$a->strings['Profile is not published.'] = 'Profilul nu este publicat.'; -$a->strings['Your Identity Address is'] = 'Adresa Dvs. de Identitate este'; -$a->strings['Automatically expire posts after this many days:'] = 'Postările vor expira automat după atâtea zile:'; -$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Dacă se lasă necompletat, postările nu vor expira. Postările expirate vor fi şterse'; -$a->strings['Advanced expiration settings'] = 'Configurări Avansate de Expirare'; -$a->strings['Advanced Expiration'] = 'Expirare Avansată'; -$a->strings['Expire posts:'] = 'Postările expiră:'; -$a->strings['Expire personal notes:'] = 'Notele personale expiră:'; -$a->strings['Expire starred posts:'] = 'Postările favorite expiră:'; -$a->strings['Expire photos:'] = 'Fotografiile expiră:'; -$a->strings['Only expire posts by others:'] = 'Expiră numai postările altora:'; -$a->strings['Account Settings'] = 'Configurări Cont'; -$a->strings['Password Settings'] = 'Configurări Parolă'; -$a->strings['New Password:'] = 'Parola Nouă:'; -$a->strings['Confirm:'] = 'Confirm:'; -$a->strings['Leave password fields blank unless changing'] = 'Lăsaţi câmpurile, pentru parolă, goale dacă nu doriți să modificați'; -$a->strings['Current Password:'] = 'Parola Curentă:'; -$a->strings['Your current password to confirm the changes'] = 'Parola curentă pentru a confirma modificările'; -$a->strings['Password:'] = 'Parola:'; -$a->strings['Basic Settings'] = 'Configurări de Bază'; -$a->strings['Full Name:'] = 'Nume complet:'; -$a->strings['Email Address:'] = 'Adresa de email:'; -$a->strings['Your Timezone:'] = 'Fusul dvs. orar:'; -$a->strings['Default Post Location:'] = 'Locația Implicită pentru Postări'; -$a->strings['Use Browser Location:'] = 'Folosește Locația Navigatorului:'; -$a->strings['Security and Privacy Settings'] = 'Configurări de Securitate și Confidențialitate'; -$a->strings['Maximum Friend Requests/Day:'] = 'Solicitări de Prietenie, Maxime/Zi'; -$a->strings['(to prevent spam abuse)'] = '(Pentru a preveni abuzul de tip spam)'; -$a->strings['Default Post Permissions'] = 'Permisiuni Implicite Postări'; -$a->strings['(click to open/close)'] = '(apăsați pentru a deschide/închide)'; -$a->strings['Show to Groups'] = 'Afișare pentru Grupuri'; -$a->strings['Show to Contacts'] = 'Afişează la Contacte'; -$a->strings['Default Private Post'] = 'Postare Privată Implicită'; -$a->strings['Default Public Post'] = 'Postare Privată Implicită'; -$a->strings['Default Permissions for New Posts'] = 'Permisiuni Implicite pentru Postările Noi'; -$a->strings['Maximum private messages per day from unknown people:'] = 'Maximum de mesaje private pe zi, de la persoanele necunoscute:'; -$a->strings['Notification Settings'] = 'Configurări de Notificare'; -$a->strings['By default post a status message when:'] = 'Implicit, postează un mesaj de stare atunci când:'; -$a->strings['accepting a friend request'] = 'se acceptă o solicitare de prietenie'; -$a->strings['joining a forum/community'] = 'se aderă la un forum/o comunitate'; -$a->strings['making an interesting profile change'] = 'se face o modificări de profilinteresantă'; -$a->strings['Send a notification email when:'] = 'Trimiteți o notificare email atunci când:'; -$a->strings['You receive an introduction'] = 'Primiți o introducere'; -$a->strings['Your introductions are confirmed'] = 'Introducerile dvs. sunt confirmate'; -$a->strings['Someone writes on your profile wall'] = 'Cineva scrie pe perete dvs. de profil'; -$a->strings['Someone writes a followup comment'] = 'Cineva scrie un comentariu de urmărire'; -$a->strings['You receive a private message'] = 'Primiți un mesaj privat'; -$a->strings['You receive a friend suggestion'] = 'Primiți o sugestie de prietenie'; -$a->strings['You are tagged in a post'] = 'Sunteți etichetat într-o postare'; -$a->strings['You are poked/prodded/etc. in a post'] = 'Sunteți abordat/incitat/etc. într-o postare'; -$a->strings['Advanced Account/Page Type Settings'] = 'Configurări Avansate Cont/Tip Pagină'; -$a->strings['Change the behaviour of this account for special situations'] = 'Modificați comportamentul acestui cont pentru situațiile speciale'; -$a->strings['Relocate'] = 'Mutare'; -$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.'] = 'Dacă aţi mutat acest profil dintr-un alt server, şi unele dintre contactele dvs. nu primesc actualizările dvs., încercaţi să apăsați acest buton.'; -$a->strings['Resend relocate message to contacts'] = 'Retrimiteți contactelor, mesajul despre mutare'; -$a->strings['This introduction has already been accepted.'] = 'Această introducere a fost deja acceptată'; -$a->strings['Profile location is not valid or does not contain profile information.'] = 'Locaţia profilului nu este validă sau nu conţine informaţii de profil.'; -$a->strings['Warning: profile location has no identifiable owner name.'] = 'Atenţie: locaţia profilului nu are un nume de deţinător identificabil.'; -$a->strings['Warning: profile location has no profile photo.'] = 'Atenţie: locaţia profilului nu are fotografie de profil.'; -$a->strings['%d required parameter was not found at the given location'] = [ - 0 => '%d parametru necesar nu a fost găsit în locaţia specificată', - 1 => '%d parametrii necesari nu au fost găsiţi în locaţia specificată', - 2 => '%d de parametrii necesari nu au fost găsiţi în locaţia specificată', -]; -$a->strings['Introduction complete.'] = 'Prezentare completă.'; -$a->strings['Unrecoverable protocol error.'] = 'Eroare de protocol nerecuperabilă.'; -$a->strings['Profile unavailable.'] = 'Profil nedisponibil.'; -$a->strings['%s has received too many connection requests today.'] = '%s a primit, pentru azi, prea multe solicitări de conectare.'; -$a->strings['Spam protection measures have been invoked.'] = 'Au fost invocate măsuri de protecţie anti-spam.'; -$a->strings['Friends are advised to please try again in 24 hours.'] = 'Prietenii sunt rugaţi să reîncerce peste 24 de ore.'; -$a->strings['Invalid locator'] = 'Invalid locator'; -$a->strings['Invalid email address.'] = 'Adresă mail invalidă.'; -$a->strings['This account has not been configured for email. Request failed.'] = 'Acest cont nu a fost configurat pentru email. Cererea a eşuat.'; -$a->strings['Unable to resolve your name at the provided location.'] = 'Imposibil să vă soluţionăm numele pentru locaţia sugerată.'; -$a->strings['You have already introduced yourself here.'] = 'Aţi fost deja prezentat aici'; -$a->strings['Apparently you are already friends with %s.'] = 'Se pare că sunteţi deja prieten cu %s.'; -$a->strings['Invalid profile URL.'] = 'Profil URL invalid.'; +$a->strings['Could not connect to database.'] = 'Nu se poate face conectarea cu baza de date.'; +$a->strings['Monday'] = 'Luni'; +$a->strings['Tuesday'] = 'Marţi'; +$a->strings['Wednesday'] = 'Miercuri'; +$a->strings['Thursday'] = 'Joi'; +$a->strings['Friday'] = 'Vineri'; +$a->strings['Saturday'] = 'Sâmbătă'; +$a->strings['Sunday'] = 'Duminică'; +$a->strings['January'] = 'Ianuarie'; +$a->strings['February'] = 'Februarie'; +$a->strings['March'] = 'Martie'; +$a->strings['April'] = 'Aprilie'; +$a->strings['May'] = 'Mai'; +$a->strings['June'] = 'Iunie'; +$a->strings['July'] = 'Iulie'; +$a->strings['August'] = 'August'; +$a->strings['September'] = 'Septembrie'; +$a->strings['October'] = 'Octombrie'; +$a->strings['November'] = 'Noiembrie'; +$a->strings['December'] = 'Decembrie'; +$a->strings['Jan'] = 'Ian'; +$a->strings['Feb'] = 'Feb'; +$a->strings['Mar'] = 'Mar'; +$a->strings['Apr'] = 'Apr'; +$a->strings['Jun'] = 'Iun'; +$a->strings['Jul'] = 'Iul'; +$a->strings['Aug'] = 'Aug'; +$a->strings['Sep'] = 'Sep'; +$a->strings['Oct'] = 'Oct'; +$a->strings['Nov'] = 'Noi'; +$a->strings['Dec'] = 'Dec'; +$a->strings['Friendica can\'t display this page at the moment, please contact the administrator.'] = 'Friendica nu poate afișa această pagină momentan, vă rugăm să contactați administratorul.'; +$a->strings['Update %s failed. See error logs.'] = 'Actualizarea %s a eșuat. Consultaţi jurnalele de eroare.'; +$a->strings[' + The friendica database was successfully updated from %s to %s.'] = ' + Baza de date a Friendica a fost actualizată cu succes de la %s la %s.'; +$a->strings['Everybody'] = 'Toată lumea'; +$a->strings['edit'] = 'editare'; +$a->strings['add'] = 'adaugă'; +$a->strings['Edit circle'] = 'Modifică cercul'; +$a->strings['Contacts not in any circle'] = 'Contacte în afara oricărui cerc'; +$a->strings['Create a new circle'] = 'Creează un cerc nou'; +$a->strings['Circle Name: '] = 'Nume cerc:'; +$a->strings['Edit circles'] = 'Modifică cercuri'; +$a->strings['Approve'] = 'Aprobă'; +$a->strings['Organisation'] = 'Organizație'; +$a->strings['Group'] = 'Grup'; $a->strings['Disallowed profile URL.'] = 'Profil URL invalid.'; -$a->strings['Your introduction has been sent.'] = 'Prezentarea dumneavoastră a fost trimisă.'; -$a->strings['Please login to confirm introduction.'] = 'Vă rugăm să vă autentificați pentru a confirma prezentarea.'; -$a->strings['Incorrect identity currently logged in. Please login to this profile.'] = 'Autentificat curent cu identitate eronată. Vă rugăm să vă autentificați pentru acest profil.'; -$a->strings['Hide this contact'] = 'Ascunde acest contact'; -$a->strings['Welcome home %s.'] = 'Bine ai venit %s.'; -$a->strings['Please confirm your introduction/connection request to %s.'] = 'Vă rugăm să vă confirmaţi solicitarea de introducere/conectare la %s.'; -$a->strings['Confirm'] = 'Confirm'; -$a->strings['Please enter your \'Identity Address\' from one of the following supported communications networks:'] = 'Vă rugăm să vă introduceţi "Adresa de Identitate" din una din următoarele reţele de socializare acceptate:'; -$a->strings['If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today.'] = 'Dacă nu sunteţi încă un membru al reţelei online de socializare gratuite, urmați acest link pentru a găsi un site public Friendica şi alăturați-vă nouă, chiar astăzi.'; -$a->strings['Friend/Connection Request'] = 'Solicitare Prietenie/Conectare'; -$a->strings['Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca'] = 'Exemple: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca'; -$a->strings['Please answer the following:'] = 'Vă rugăm să răspundeţi la următoarele:'; -$a->strings['Does %s know you?'] = '%s vă cunoaşte?'; -$a->strings['Add a personal note:'] = 'Adaugă o notă personală:'; -$a->strings['Friendica'] = 'Friendica'; -$a->strings['StatusNet/Federated Social Web'] = 'StatusNet/Reţea Socială Web Centralizată'; -$a->strings[' - please do not use this form. Instead, enter %s into your Diaspora search bar.'] = '- vă rugăm să nu folosiţi acest formular. În schimb, introduceţi %s în bara dvs. de căutare Diaspora.'; -$a->strings['Your Identity Address:'] = 'Adresa dvs. Identitate '; -$a->strings['Submit Request'] = 'Trimiteţi Solicitarea'; -$a->strings['Registration successful. Please check your email for further instructions.'] = 'Înregistrarea s-a efectuat cu succes. Vă rugăm să vă verificaţi e-mailul pentru instrucţiuni suplimentare.'; -$a->strings['Your registration can not be processed.'] = 'Înregistrarea dvs. nu poate fi procesată.'; -$a->strings['Your registration is pending approval by the site owner.'] = 'Înregistrarea dvs. este în aşteptarea aprobării de către deținătorul site-ului.'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Acest site a depăşit numărul zilnic permis al înregistrărilor de conturi. Vă rugăm să reîncercați mâine.'; -$a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \'Register\'.'] = 'Puteți (opțional) să completaţi acest formular prin intermediul OpenID, introducând contul dvs. OpenID și apăsând pe \'Înregistrare\'.'; -$a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Dacă nu sunteţi familiarizați cu OpenID, vă rugăm să lăsaţi acest câmp gol iar apoi să completaţi restul elementelor.'; -$a->strings['Your OpenID (optional): '] = 'Contul dvs. OpenID (opţional):'; -$a->strings['Include your profile in member directory?'] = 'Includeți profilul dvs în directorul de membru?'; -$a->strings['Membership on this site is by invitation only.'] = 'Aderare pe acest site, este posibilă doar pe bază de invitație.'; -$a->strings['Your invitation ID: '] = 'ID invitaţiei dvs:'; -$a->strings['Your Full Name (e.g. Joe Smith): '] = 'Numele Complet (de ex. Joe Smith):'; -$a->strings['Your Email Address: '] = 'Adresa dvs de mail:'; -$a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'nickname@$sitename\'.'] = 'Alegeţi un pseudonim de profil. Aceasta trebuie să înceapă cu un caracter text. Adresa profilului dvs. de pe acest site va fi de forma \'pseudonim@$sitename\'.'; -$a->strings['Choose a nickname: '] = 'Alegeţi un pseudonim:'; -$a->strings['Register'] = 'Înregistrare'; -$a->strings['Import'] = 'Import'; -$a->strings['Import your profile to this friendica instance'] = 'Importați profilul dvs. în această instanță friendica'; -$a->strings['System down for maintenance'] = 'Sistemul este suspendat pentru întreținere'; -$a->strings['Search'] = 'Căutare'; -$a->strings['Global Directory'] = 'Director Global'; -$a->strings['Find on this site'] = 'Căutați pe acest site'; -$a->strings['Site Directory'] = 'Director Site'; -$a->strings['Age: '] = 'Vârsta:'; -$a->strings['Gender: '] = 'Sex:'; -$a->strings['Gender:'] = 'Sex:'; -$a->strings['Status:'] = 'Status:'; +$a->strings['Blocked domain'] = 'Domeniu blocat'; +$a->strings['Connect URL missing.'] = 'Lipseşte URL-ul de conectare.'; +$a->strings['The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.'] = 'Contactul nu a putut fi adăugat. Vă rugăm să verificați credențialele relevante în pagina Setări -> Rețele Sociale'; +$a->strings['The profile address specified does not provide adequate information.'] = 'Adresa de profil specificată nu furnizează informații adecvate.'; +$a->strings['No compatible communication protocols or feeds were discovered.'] = 'Nu au fost descoperite protocoale de comunicații sau fluxuri compatibile.'; +$a->strings['An author or name was not found.'] = 'Un autor sau nume nu a fost găsit.'; +$a->strings['No browser URL could be matched to this address.'] = 'Nici un URL de browser nu a putut fi corelat cu această adresă.'; +$a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Nu se poate corela @-stilul pentru Adresa de Identitatea cu un protocol cunoscut sau contact de email.'; +$a->strings['Use mailto: in front of address to force email check.'] = 'Utilizaţi mailto: în faţa adresei pentru a forţa verificarea de email.'; +$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Adresa de profil specificată aparţine unei reţele care a fost dezactivată pe acest site.'; +$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Profil limitat. Această persoană nu va putea primi notificări directe/personale, de la dvs.'; +$a->strings['Unable to retrieve contact information.'] = 'Nu se pot localiza informaţiile de contact.'; +$a->strings['Starts:'] = 'Începe:'; +$a->strings['Finishes:'] = 'Se termină:'; +$a->strings['all-day'] = 'toată ziua'; +$a->strings['Sept'] = 'Sept'; +$a->strings['today'] = 'astăzi'; +$a->strings['month'] = 'lună'; +$a->strings['week'] = 'săptămână'; +$a->strings['day'] = 'zi'; +$a->strings['No events to display'] = 'Niciun eveniment de afișat'; +$a->strings['Access to this profile has been restricted.'] = 'Accesul la acest profil a fost restricţionat.'; +$a->strings['Event not found.'] = 'Eveniment negăsit'; +$a->strings['l, F j'] = 'l, F j'; +$a->strings['Edit event'] = 'Editează eveniment'; +$a->strings['Duplicate event'] = 'Eveniment duplicat'; +$a->strings['Delete event'] = 'Ștergere eveniment'; +$a->strings['l F d, Y \@ g:i A'] = 'l F d, Y \@ g:i A'; +$a->strings['Show map'] = 'Arată harta'; +$a->strings['Hide map'] = 'Ascunde harta'; +$a->strings['%s\'s birthday'] = 'Ziua de naștere a lui %s'; +$a->strings['Happy Birthday %s'] = 'La mulţi ani, %s!'; +$a->strings['Detected languages in this post:\n%s'] = 'Limbi recunoscute în această postare:\n%s'; +$a->strings['activity'] = 'activitate'; +$a->strings['post'] = 'postare'; +$a->strings['%s is blocked'] = '%s este blocat(-ă)'; +$a->strings['%s is ignored'] = '%s este ignorat(-ă)'; +$a->strings['Content warning: %s'] = 'Avertisment de conținut: %s'; +$a->strings['bytes'] = 'octeţi'; +$a->strings['%d voter.'] = [ + 0 => '%d votant.', + 1 => '%d votanți.', + 2 => '%d de votanți.', +]; +$a->strings['Poll end: %s'] = 'Sfârșitul sondajului: %s'; +$a->strings['View on separate page'] = 'Vezi pe o pagină separată'; +$a->strings['[no subject]'] = '[fără subiect]'; +$a->strings['Wall Photos'] = 'Fotografii de Perete'; +$a->strings['Edit profile'] = 'Editare profil'; +$a->strings['Change profile photo'] = 'Modificați Fotografia de Profil'; $a->strings['Homepage:'] = 'Homepage:'; $a->strings['About:'] = 'Despre:'; -$a->strings['No entries (some entries may be hidden).'] = 'Fără înregistrări (unele înregistrări pot fi ascunse).'; -$a->strings['No potential page delegates located.'] = 'Nici-un delegat potenţial de pagină, nu a putut fi localizat.'; -$a->strings['Delegate Page Management'] = 'Delegare Gestionare Pagină'; -$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.'] = 'Delegații sunt capabili să gestioneze toate aspectele acestui cont/pagină, cu excepţia configurărilor de bază ale contului. Vă rugăm să nu vă delegați, contul dvs. personal, cuiva în care nu aveţi încredere deplină.'; -$a->strings['Existing Page Managers'] = 'Gestionari Existenți Pagină'; -$a->strings['Existing Page Delegates'] = 'Delegați Existenți Pagină'; -$a->strings['Potential Delegates'] = 'Potenţiali Delegaţi'; -$a->strings['Add'] = 'Adăugare'; -$a->strings['No entries.'] = 'Nu există intrări.'; -$a->strings['Common Friends'] = 'Prieteni Comuni'; -$a->strings['No contacts in common.'] = 'Nici-un contact în comun'; -$a->strings['Export account'] = 'Exportare cont'; -$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.'] = 'Exportați-vă informațiile contului şi contactele. Utilizaţi aceasta pentru a face o copie de siguranţă a contului dumneavoastră şi/sau pentru a-l muta pe un alt server.'; -$a->strings['Export all'] = 'Exportare tot'; -$a->strings['Export your accout 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)'] = 'Exportați informațiile dvs. de cont, contactele şi toate elementele dvs., ca json. Ar putea fi un fișier foarte mare, şi ar putea lua mult timp. Utilizaţi aceasta pentru a face un backup complet al contului (fotografiile nu sunt exportate)'; -$a->strings['%1$s is currently %2$s'] = '%1$s este momentan %2$s'; -$a->strings['Mood'] = 'Stare de spirit'; -$a->strings['Set your current mood and tell your friends'] = 'Stabiliți-vă starea de spirit curentă, şi comunicați-o prietenilor'; -$a->strings['Do you really want to delete this suggestion?'] = 'Sigur doriți să ștergeți acesta sugestie?'; -$a->strings['Friend Suggestions'] = 'Sugestii de Prietenie'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Nici-o sugestie disponibilă. Dacă aceasta este un site nou, vă rugăm să încercaţi din nou în 24 de ore.'; -$a->strings['Ignore/Hide'] = 'Ignorare/Ascundere'; -$a->strings['Profile deleted.'] = 'Profilul a fost şters.'; -$a->strings['Profile-'] = 'Profil-'; -$a->strings['New profile created.'] = 'Profilul nou a fost creat.'; -$a->strings['Profile unavailable to clone.'] = 'Profil indisponibil pentru clonare.'; -$a->strings['Profile Name is required.'] = 'Numele de Profil este necesar.'; -$a->strings['Marital Status'] = 'Starea Civilă'; -$a->strings['Romantic Partner'] = 'Partener Romantic'; -$a->strings['Likes'] = 'Likes'; -$a->strings['Dislikes'] = 'Antipatii'; -$a->strings['Work/Employment'] = 'Loc de Muncă/Slujbă'; -$a->strings['Religion'] = 'Religie'; -$a->strings['Political Views'] = 'Viziuni Politice'; -$a->strings['Gender'] = 'Sex'; -$a->strings['Sexual Preference'] = 'Preferinţe Sexuale'; -$a->strings['Homepage'] = 'Homepage'; -$a->strings['Interests'] = 'Interese'; -$a->strings['Address'] = 'Addresă'; -$a->strings['Location'] = 'Locaţie'; -$a->strings['Profile updated.'] = 'Profil actualizat.'; -$a->strings[' and '] = 'şi'; -$a->strings['public profile'] = 'profil public'; -$a->strings['%1$s changed %2$s to “%3$s”'] = '%1$s a modificat %2$s în “%3$s”'; -$a->strings[' - Visit %1$s\'s %2$s'] = '- Vizitați %2$s lui %1$s\''; -$a->strings['%1$s has an updated %2$s, changing %3$s.'] = '%1$s și-a actualizat %2$s, modificând %3$s.'; -$a->strings['Hide contacts and friends:'] = 'Ascunde contacte și prieteni:'; -$a->strings['Hide your contact/friend list from viewers of this profile?'] = 'Ascundeţi lista dvs. de contacte/prieteni de vizitatorii acestui profil?'; -$a->strings['Edit Profile Details'] = 'Editare Detalii Profil'; -$a->strings['Change Profile Photo'] = 'Modificați Fotografia de Profil'; -$a->strings['View this profile'] = 'Vizualizați acest profil'; -$a->strings['Create a new profile using these settings'] = 'Creaţi un profil nou folosind aceste configurări'; -$a->strings['Clone this profile'] = 'Clonați acest profil'; -$a->strings['Delete this profile'] = 'Ştergeţi acest profil'; -$a->strings['Basic information'] = 'Informaţii de bază'; -$a->strings['Profile picture'] = 'Imagine profil'; -$a->strings['Preferences'] = 'Preferinţe '; -$a->strings['Status information'] = 'Informaţii Status'; -$a->strings['Additional information'] = 'Informaţii suplimentare'; -$a->strings['Profile Name:'] = 'Nume profil:'; -$a->strings['Your Full Name:'] = 'Numele Complet:'; -$a->strings['Title/Description:'] = 'Titlu/Descriere'; -$a->strings['Your Gender:'] = 'Sexul:'; -$a->strings['Birthday (%s):'] = 'Zi Naştere (%s):'; -$a->strings['Street Address:'] = 'Strada:'; -$a->strings['Locality/City:'] = 'Localitate/Oraș:'; -$a->strings['Postal/Zip Code:'] = 'Cod poștal:'; -$a->strings['Country:'] = 'Ţară:'; -$a->strings['Region/State:'] = 'Regiunea/Județul:'; -$a->strings[' Marital Status:'] = ' Stare Civilă:'; -$a->strings['Who: (if applicable)'] = 'Cine: (dacă este cazul)'; -$a->strings['Examples: cathy123, Cathy Williams, cathy@example.com'] = 'Exemple: cathy123, Cathy Williams, cathy@example.com'; -$a->strings['Since [date]:'] = 'Din [data]:'; -$a->strings['Sexual Preference:'] = 'Orientare Sexuală:'; -$a->strings['Homepage URL:'] = 'Homepage URL:'; +$a->strings['Atom feed'] = 'Feed Atom'; +$a->strings['This website has been verified to belong to the same person.'] = 'Acest website a fost verificat ca aparținând aceleiași persoane'; +$a->strings['F d'] = 'F d'; +$a->strings['[today]'] = '[azi]'; +$a->strings['Birthday Reminders'] = 'Memento Zile naştere '; +$a->strings['Birthdays this week:'] = 'Zi;e Naştere această săptămînă:'; +$a->strings['g A l F d'] = 'g A l F d'; +$a->strings['[No description]'] = '[Fără descriere]'; +$a->strings['Event Reminders'] = 'Memento Eveniment'; +$a->strings['Upcoming events the next 7 days:'] = 'Evenimente viitoare în următoarele 7 zile:'; $a->strings['Hometown:'] = 'Domiciliu:'; +$a->strings['Marital Status:'] = 'Starea civilă:'; +$a->strings['With:'] = 'Împreună cu:'; +$a->strings['Since:'] = 'Începând cu:'; +$a->strings['Sexual Preference:'] = 'Orientare Sexuală:'; $a->strings['Political Views:'] = 'Viziuni Politice:'; $a->strings['Religious Views:'] = 'Viziuni Religioase:'; -$a->strings['Public Keywords:'] = 'Cuvinte cheie Publice:'; -$a->strings['Private Keywords:'] = 'Cuvinte cheie Private:'; $a->strings['Likes:'] = 'Îmi place:'; $a->strings['Dislikes:'] = 'Nu-mi place:'; -$a->strings['Example: fishing photography software'] = 'Exemplu: pescuit fotografii software'; -$a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Utilizat pentru a sugera potențiali prieteni, ce pot fi văzuți de către ceilalți)'; -$a->strings['(Used for searching profiles, never shown to others)'] = '(Utilizat pentru a căuta profile, niciodată afișat altora)'; -$a->strings['Tell us about yourself...'] = 'Spune-ne despre tine ...'; -$a->strings['Hobbies/Interests'] = 'Hobby/Interese'; -$a->strings['Contact information and Social Networks'] = 'Informaţii de Contact şi Reţele Sociale'; +$a->strings['Title/Description:'] = 'Titlu/Descriere'; +$a->strings['Summary'] = 'Sumar'; $a->strings['Musical interests'] = 'Preferințe muzicale'; $a->strings['Books, literature'] = 'Cărti, literatură'; $a->strings['Television'] = 'Programe TV'; $a->strings['Film/dance/culture/entertainment'] = 'Film/dans/cultură/divertisment'; +$a->strings['Hobbies/Interests'] = 'Hobby/Interese'; $a->strings['Love/romance'] = 'Dragoste/romantism'; $a->strings['Work/employment'] = 'Loc de Muncă/Slujbă'; $a->strings['School/education'] = 'Școală/educație'; -$a->strings['This is your public profile.
    It may be visible to anybody using the internet.'] = 'Acesta este profilul dvs. public.
    El poate fi vizibil pentru oricine folosește internetul.'; -$a->strings['Edit/Manage Profiles'] = 'Editare/Gestionare Profile'; -$a->strings['Change profile photo'] = 'Modificați Fotografia de Profil'; -$a->strings['Create New Profile'] = 'Creați Profil Nou'; -$a->strings['Profile Image'] = 'Imagine profil'; -$a->strings['visible to everybody'] = 'vizibil pentru toata lumea'; -$a->strings['Edit visibility'] = 'Editare vizibilitate'; -$a->strings['Item not found'] = 'Element negăsit'; -$a->strings['Edit post'] = 'Editează post'; -$a->strings['upload photo'] = 'încărcare fotografie'; -$a->strings['Attach file'] = 'Ataşează fişier'; -$a->strings['attach file'] = 'ataşează fişier'; -$a->strings['web link'] = 'web link'; -$a->strings['Insert video link'] = 'Inserează video link'; -$a->strings['video link'] = 'video link'; -$a->strings['Insert audio link'] = 'Inserare link audio'; -$a->strings['audio link'] = 'audio link'; -$a->strings['Set your location'] = 'Setează locaţia dvs'; -$a->strings['set location'] = 'set locaţie'; -$a->strings['Clear browser location'] = 'Curățare locație browser'; -$a->strings['clear location'] = 'şterge locaţia'; -$a->strings['Permission settings'] = 'Setări permisiuni'; -$a->strings['CC: email addresses'] = 'CC: adresă email'; -$a->strings['Public post'] = 'Public post'; -$a->strings['Set title'] = 'Setează titlu'; -$a->strings['Categories (comma-separated list)'] = 'Categorii (listă cu separator prin virgulă)'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Exemplu: bob@exemplu.com, mary@exemplu.com'; -$a->strings['This is Friendica, version'] = 'Friendica, versiunea'; -$a->strings['running at web location'] = 'rulează la locaţia web'; -$a->strings['Please visit Friendica.com to learn more about the Friendica project.'] = 'Vă rugăm să vizitaţi Friendica.com pentru a afla mai multe despre proiectul Friendica.'; -$a->strings['Bug reports and issues: please visit'] = 'Rapoarte de erori şi probleme: vă rugăm să vizitaţi'; -$a->strings['Suggestions, praise, donations, etc. - please email "Info" at Friendica - dot com'] = 'Sugestii, laude, donatii, etc. - vă rugăm să trimiteți un email pe "Info" at Friendica - dot com'; -$a->strings['Installed plugins/addons/apps:'] = 'Module/suplimente/aplicații instalate:'; -$a->strings['No installed plugins/addons/apps'] = 'Module/suplimente/aplicații neinstalate'; -$a->strings['Authorize application connection'] = 'Autorizare conectare aplicaţie'; -$a->strings['Return to your app and insert this Securty Code:'] = 'Reveniți la aplicația dvs. şi introduceţi acest Cod de Securitate:'; +$a->strings['Contact information and Social Networks'] = 'Informaţii de Contact şi Reţele Sociale'; +$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'EROARE GRAVĂ: Generarea de chei de securitate a eşuat.'; +$a->strings['Password can\'t be empty'] = 'Parola nu poate fi goală'; +$a->strings['Empty passwords are not allowed.'] = 'Parolele goale nu sunt permise.'; +$a->strings['The password length is limited to 72 characters.'] = 'Lungimea parolei este limitată la 72 de caractere.'; +$a->strings['The password can\'t contain white spaces nor accentuated letters'] = 'Parola nu poate conține spații goale sau litere accentuate'; +$a->strings['Passwords do not match. Password unchanged.'] = 'Parolele nu coincid. Parolă neschimbată.'; +$a->strings['An invitation is required.'] = 'O invitaţie este necesară.'; +$a->strings['Invitation could not be verified.'] = 'Invitația nu s-a putut verifica.'; +$a->strings['Invalid OpenID url'] = 'URL OpenID invalid'; +$a->strings['We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.'] = 'Am întâmpinat o problemă în timpul autentificării cu datele OpenID pe care le-ați furnizat.'; +$a->strings['The error message was:'] = 'Mesajul de eroare a fost:'; +$a->strings['Please enter the required information.'] = 'Vă rugăm să introduceți informațiile solicitate.'; +$a->strings['That doesn\'t appear to be your full (First Last) name.'] = 'Acesta nu pare a fi Numele (Prenumele) dvs. complet'; +$a->strings['Your email domain is not among those allowed on this site.'] = 'Domeniul dvs. de email nu este printre cele permise pe acest site.'; +$a->strings['Not a valid email address.'] = 'Nu este o adresă vaildă de email.'; +$a->strings['Cannot use that email.'] = 'Nu se poate utiliza acest email.'; +$a->strings['Your nickname can only contain a-z, 0-9 and _.'] = 'Pseudonimul dumneavoastră poate conținu numai a-z, 0-9 și _.'; +$a->strings['Nickname is already registered. Please choose another.'] = 'Pseudonimul este deja înregistrat. Vă rugăm, alegeți un altul.'; +$a->strings['An error occurred during registration. Please try again.'] = 'A intervenit o eroare în timpul înregistrării. Vă rugăm să reîncercați.'; +$a->strings['An error occurred creating your default profile. Please try again.'] = 'A intervenit o eroare la crearea profilului dvs. implicit. Vă rugăm să reîncercați.'; +$a->strings['Friends'] = 'Prieteni'; +$a->strings['Profile Photos'] = 'Poze profil'; +$a->strings['Registration details for %s'] = 'Detaliile de înregistrare pentru %s'; +$a->strings['Addon not found.'] = 'Supliment negăsit.'; +$a->strings['Disable'] = 'Dezactivează'; +$a->strings['Enable'] = 'Activează'; +$a->strings['Administration'] = 'Administrare'; +$a->strings['Addons'] = 'Suplimente'; +$a->strings['Toggle'] = 'Comutare'; +$a->strings['Author: '] = 'Autor: '; +$a->strings['Maintainer: '] = 'Responsabil:'; +$a->strings['Addon %s failed to install.'] = 'Suplimentul %s nu s-a putut instala.'; +$a->strings['Save Settings'] = 'Salvare Configurări'; +$a->strings['Reload active addons'] = 'Reîncarcă suplimentele active'; +$a->strings['Update has been marked successful'] = 'Actualizarea a fost marcată cu succes'; +$a->strings['Database structure update %s was successfully applied.'] = 'Actualizarea structurii bazei de date %s a fost aplicată cu succes.'; +$a->strings['Executing %s failed with error: %s'] = 'Executarea %s a eșuat cu eroarea : %s'; +$a->strings['Update %s was successfully applied.'] = 'Actualizarea %s a fost aplicată cu succes.'; +$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'Actualizare %s nu a returnat nici-un status. Nu se știe dacă a reuşit.'; +$a->strings['No failed updates.'] = 'Nici-o actualizare eșuată.'; +$a->strings['Check database structure'] = 'Verifică structura bazei de date'; +$a->strings['Failed Updates'] = 'Actualizări Eșuate'; +$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Aceasta nu include actualizările dinainte de 1139, care nu a returnat nici-un status.'; +$a->strings['Mark success (if update was manually applied)'] = 'Marcaţi ca și realizat (dacă actualizarea a fost aplicată manual)'; +$a->strings['Attempt to execute this update step automatically'] = 'Se încearcă executarea automată a acestei etape de actualizare'; +$a->strings['Other'] = 'Alta'; +$a->strings['unknown'] = 'necunoscut'; +$a->strings['Federation Statistics'] = 'Statistici federație'; +$a->strings['Logs'] = 'Jurnale'; +$a->strings['Clear'] = 'Curăţă'; +$a->strings['Enable Debugging'] = 'Activează Depanarea'; +$a->strings['Log file'] = 'Fişier Log '; +$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Trebuie să fie inscriptibil pentru serverul web. Relativ la directorul dumneavoastră superior Friendica.'; +$a->strings['Log level'] = 'Nivel log'; +$a->strings['PHP logging'] = 'Jurnalizare PHP'; +$a->strings['View Logs'] = 'Vezi jurnale'; +$a->strings['Search in logs'] = 'Caută în jurnale'; +$a->strings['Event details'] = 'Detalii eveniment'; +$a->strings['Line'] = 'Linie'; +$a->strings['Function'] = 'Funcție'; +$a->strings['UID'] = 'UID'; +$a->strings['Process ID'] = 'ID proces'; +$a->strings['ID'] = 'ID'; +$a->strings['Command'] = 'Comandă'; +$a->strings['Priority'] = 'Prioritate'; +$a->strings['No special theme for mobile devices'] = 'Nici-o temă specială pentru dispozitive mobile'; +$a->strings['Public postings from users of this site'] = 'Postări publice de la utilizatorii acestui site'; +$a->strings['Public postings from the federated network'] = 'Postări publice din rețeaua federată'; +$a->strings['Public postings from local users and the federated network'] = 'Postări publice atât de la utilizatori locali, cât și de la rețeaua federată'; +$a->strings['Multi user instance'] = 'Instanţă utilizatori multipli'; +$a->strings['Closed'] = 'Inchis'; +$a->strings['Requires approval'] = 'Necesită aprobarea'; +$a->strings['Open'] = 'Deschide'; +$a->strings['Site'] = 'Site'; +$a->strings['General Information'] = 'Informații generale'; +$a->strings['Registration'] = 'Registratură'; +$a->strings['File upload'] = 'Fişier incărcat'; +$a->strings['Policies'] = 'Politici'; +$a->strings['Advanced'] = 'Avansat'; +$a->strings['Performance'] = 'Performanţă'; +$a->strings['The system is not subscribed to any relays at the moment.'] = 'Sistemul nu este abonat momentan la niciun releu.'; +$a->strings['The system is currently subscribed to the following relays:'] = 'Sistemul este abonat în mod curent la următoarele relee:'; +$a->strings['Site name'] = 'Nume site'; +$a->strings['Banner/Logo'] = 'Baner/Logo'; +$a->strings['Additional Info'] = 'Informaţii suplimentare'; +$a->strings['System language'] = 'Limbă System l'; +$a->strings['System theme'] = 'Temă System '; +$a->strings['Mobile system theme'] = 'Temă sisteme mobile'; +$a->strings['Theme for mobile devices'] = 'Temă pentru dispozitivele mobile'; +$a->strings['Force SSL'] = 'Forțează SSL'; +$a->strings['Single user instance'] = 'Instanţă cu un singur utilizator'; +$a->strings['Make this instance multi-user or single-user for the named user'] = 'Stabiliți această instanţă ca utilizator-multipli sau utilizator/unic, pentru utilizatorul respectiv'; +$a->strings['Maximum image size'] = 'Maxim mărime imagine'; +$a->strings['Maximum image length'] = 'Dimensiunea maximă a imaginii'; +$a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Dimensiunea maximă în pixeli a celei mai lungi laturi a imaginii încărcate. Implicit este -1, ceea ce înseamnă fără limite.'; +$a->strings['JPEG image quality'] = 'Calitate imagine JPEG '; +$a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = 'Imaginile JPEG încărcate vor fi salvate cu această calitate stabilită [0-100]. Implicit este 100, ceea ce înseamnă calitate completă.'; +$a->strings['Register policy'] = 'Politici inregistrare '; +$a->strings['Maximum Daily Registrations'] = 'Înregistrări Zilnice Maxime'; +$a->strings['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.'] = 'Dacă înregistrarea este permisă de mai sus, aceasta stabileşte numărul maxim de utilizatori noi înregistraţi, acceptaţi pe zi. Dacă înregistrarea este stabilită ca închisă, această setare nu are efect.'; +$a->strings['Register text'] = 'Text înregistrare'; +$a->strings['Will be displayed prominently on the registration page. You can use BBCode here.'] = 'Va fi afișat în mod proeminent pe pagina de înregistrare. Puteți folosi BBCode aici.'; +$a->strings['Forbidden Nicknames'] = 'Pseudonime interzise'; +$a->strings['Accounts abandoned after x days'] = 'Conturi abandonate după x zile'; +$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = 'Nu va risipi resurse de sistem interogând site-uri externe pentru conturi abandonate. Introduceţi 0 pentru nici-o limită de timp.'; +$a->strings['Allowed friend domains'] = 'Domenii prietene permise'; +$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Lista cu separator prin virgulă a domeniilor ce sunt permise pentru a stabili relaţii de prietenie cu acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu'; +$a->strings['Allowed email domains'] = 'Domenii de email, permise'; +$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Lista cu separator prin virgulă a domeniilor ce sunt permise în adresele de email pentru înregistrările pe acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu'; +$a->strings['Trusted third-party domains'] = 'Domenii terțe de încredere'; +$a->strings['Block public'] = 'Blocare acces public'; +$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Bifați pentru a bloca accesul public, pe acest site, către toate paginile publice cu caracter personal, doar dacă nu sunteţi deja autentificat.'; +$a->strings['Force publish'] = 'Forțează publicarea'; +$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Bifați pentru a forţa, ca toate profilurile de pe acest site să fie enumerate în directorul site-ului.'; +$a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Activarea acestei opțiuni poate viola legi dedicate intimității precum GDPR'; +$a->strings['Global directory URL'] = 'URL director global'; +$a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'URL către directorul global. Dacă aceasta nu este setată, directorul global este complet indisponibil aplicației.'; +$a->strings['Private posts by default for new users'] = 'Postările private, ca implicit pentru utilizatori noi'; +$a->strings['Don\'t include post content in email notifications'] = 'Nu include conţinutul postării în notificările prin email'; +$a->strings['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.'] = 'Nu include conținutul unui post/comentariu/mesaj privat/etc. în notificările prin email, ce sunt trimise de pe acest site, ca și masură de confidenţialitate.'; +$a->strings['Disallow public access to addons listed in the apps menu.'] = 'Nu permiteţi accesul public la suplimentele enumerate în meniul de aplicaţii.'; +$a->strings['Checking this box will restrict addons listed in the apps menu to members only.'] = 'Bifând această casetă va restricționa, suplimentele enumerate în meniul de aplicaţii, exclusiv la accesul membrilor.'; +$a->strings['Don\'t embed private images in posts'] = 'Nu încorpora imagini private în postări'; +$a->strings['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.'] = 'Nu înlocui fotografiile private, locale, din postări cu o copie încorporată imaginii. Aceasta înseamnă că, contactele care primesc postări ce conțin fotografii private vor trebui să se autentifice şi să încarce fiecare imagine, ceea ce poate dura ceva timp.'; +$a->strings['Explicit Content'] = 'Conținut explicit'; +$a->strings['Allow Users to set remote_self'] = 'Permite utilizatorilor să-și stabilească remote_self'; +$a->strings['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.'] = 'Bifând aceasta, fiecărui utilizator îi este permis să marcheze fiecare contact, ca și propriu_la-distanță în dialogul de remediere contact. Stabilind acest marcaj unui un contact, va determina oglindirea fiecărei postări a respectivului contact, în fluxul utilizatorilor.'; +$a->strings['Enable multiple registrations'] = 'Permite înregistrări multiple'; +$a->strings['Enable users to register additional accounts for use as pages.'] = 'Permite utilizatorilor să înregistreze conturi adiționale care să poată fi folosite drept pagini.'; +$a->strings['Enable OpenID'] = 'Activează OpenID'; +$a->strings['Enable OpenID support for registration and logins.'] = 'Activează suportul OpenID pentru înregistrare și login.'; +$a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Suportul pentru Diaspora nu poate fi activat deoarece Friendica a fost instalată într-un subdirector.'; +$a->strings['Enable Diaspora support'] = 'Activează Suport Diaspora'; +$a->strings['Verify SSL'] = 'Verifică SSL'; +$a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = 'Dacă doriţi, puteţi porni verificarea cu strictețe a certificatului. Aceasta va însemna că nu vă puteţi conecta (deloc) la site-uri SSL auto-semnate.'; +$a->strings['Proxy user'] = 'Proxy user'; +$a->strings['Proxy URL'] = 'Proxy URL'; +$a->strings['Network timeout'] = 'Timp de expirare rețea'; +$a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Valoare exprimată în secunde. Stabiliți la 0 pentru nelimitat (nu este recomandat).'; +$a->strings['Maximum Load Average'] = 'Media Maximă de Încărcare'; +$a->strings['Discover contacts from other servers'] = 'Descoperă contacte de pe alte servere'; +$a->strings['Maximum numbers of comments per post'] = 'Numărul maxim de comentarii per post'; +$a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Câte comentarii ar trebui afișate pentru fiecare postare? Valoarea implicită este 100.'; +$a->strings['Temp path'] = 'Calea Temp'; +$a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Dacă aveți un sistem restricționat unde serverul web nu poate accesa calea temp a sistemului, introduceți o nouă cale aici.'; +$a->strings['Only search in tags'] = 'Caută numai etichete'; +$a->strings['Disabled'] = 'Dezactivat'; +$a->strings['all'] = 'toate'; +$a->strings['tags'] = 'etichete'; +$a->strings['Server tags'] = 'Etichete server'; +$a->strings['Save & Reload'] = 'Salvează & Reîncarcă'; +$a->strings['Message queues'] = 'Șiruri de mesaje'; +$a->strings['Server Settings'] = 'Setări server'; +$a->strings['Version'] = 'Versiune'; +$a->strings['Active addons'] = 'Suplimente active'; +$a->strings['Screenshot'] = 'Screenshot'; +$a->strings['Themes'] = 'Teme'; +$a->strings['Unknown theme.'] = 'Temă necunoscută'; +$a->strings['Reload active themes'] = 'Reîncarcă teme active'; +$a->strings['No themes found on the system. They should be placed in %1$s'] = 'Nicio temă nu s-a găsit pe acest sistem. Ele trebuie plasate în %1$s'; +$a->strings['[Experimental]'] = '[Experimental]'; +$a->strings['[Unsupported]'] = '[Unsupported]'; +$a->strings['Display Terms of Service'] = 'Afișează Condițiile de Utilizare'; +$a->strings['The Terms of Service'] = 'Condițiile de Utilizare'; +$a->strings['Contact not found'] = 'Contact negăsit'; +$a->strings['No installed applications.'] = 'Nu există aplicații instalate.'; +$a->strings['Applications'] = 'Aplicații'; +$a->strings['Item was not found.'] = 'Element negăsit.'; $a->strings['Please login to continue.'] = 'Vă rugăm să vă autentificați pentru a continua.'; -$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Doriţi să autorizați această aplicaţie pentru a vă accesa postările şi contactele, şi/sau crea noi postări pentru dvs.?'; -$a->strings['Remote privacy information not available.'] = 'Informaţiile la distanţă despre confidenţialitate, nu sunt disponibile.'; -$a->strings['Visible to:'] = 'Visibil către:'; -$a->strings['Personal Notes'] = 'Note Personale'; -$a->strings['l F d, Y \@ g:i A'] = 'l F d, Y \@ g:i A'; +$a->strings['Additional features'] = 'Caracteristici suplimentare'; +$a->strings['DB updates'] = 'Actualizări Bază de Date'; +$a->strings['ActivityPub Conversion'] = 'Conversie ActivityPub'; +$a->strings['User registrations waiting for confirmation'] = 'Înregistrări de utilizatori, aşteaptă confirmarea'; +$a->strings['Too Many Requests'] = 'Prea multe cereri'; +$a->strings['Users'] = 'Utilizatori'; +$a->strings['Delete Item'] = 'Ștergere element'; +$a->strings['Profile Details'] = 'Detalii Profil'; +$a->strings['Conversations started'] = 'Conversații pornite'; +$a->strings['Only You Can See This'] = 'Numai Dvs. Puteţi Vizualiza'; +$a->strings['Scheduled Posts'] = 'Postări programate'; +$a->strings['Posts that are scheduled for publishing'] = 'Postări programate pentru publicare'; +$a->strings['Tips for New Members'] = 'Sfaturi pentru Membrii Noi'; +$a->strings['No matches'] = 'Nici-o potrivire'; +$a->strings['%d result was filtered out because your node blocks the domain it is registered on. You can review the list of domains your node is currently blocking in the About page.'] = [ + 0 => '%d rezultat a fost filtrat deoarece nodul dvs. blochează domeniul pe care acesta a fost înregistrat. Puteți revizui lista domeniilor blocate actualmente de nodul dvs. în pagina „Despre”.', + 1 => '%d rezultate au fost filtrate deoarece nodul dvs. blochează domeniile pe care acestea au fost înregistrate. Puteți revizui lista domeniilor blocate actualmente de nodul dvs. în pagina „Despre”.', + 2 => '%d rezultate au fost filtrate deoarece nodul dvs. blochează domeniile pe care acestea au fost înregistrate. Puteți revizui lista domeniilor blocate actualmente de nodul dvs. în pagina „Despre”.', +]; +$a->strings['Account'] = 'Cont'; +$a->strings['Two-factor authentication'] = 'Autentificare prin doi factori'; +$a->strings['Display'] = 'Afișare'; +$a->strings['Social Networks'] = 'Rețele Sociale'; +$a->strings['Manage Accounts'] = 'Administrare conturi'; +$a->strings['Connected apps'] = 'Aplicații Conectate'; +$a->strings['Remote servers'] = 'Servere la distanță'; +$a->strings['Export personal data'] = 'Exportare date personale'; +$a->strings['Remove account'] = 'Ștergere cont'; +$a->strings['The post was created'] = 'Postarea a fost creată'; +$a->strings['Invalid Request'] = 'Cerere invalidă'; +$a->strings['Failed to remove event'] = 'Nu s-a putut șterge evenimentul'; +$a->strings['Event can not end before it has started.'] = 'Evenimentul nu se poate termina înainte de a începe'; +$a->strings['Event title and start time are required.'] = 'Titlul evenimentului şi timpul de pornire sunt necesare.'; +$a->strings['Starting date and Title are required.'] = 'Data de început și titlul sunt necesare.'; +$a->strings['Event Starts:'] = 'Evenimentul începe de la:'; +$a->strings['Required'] = 'Cerut'; +$a->strings['Finish date/time is not known or not relevant'] = 'Data/ora de finalizare nu este cunoscută sau nu este relevantă'; +$a->strings['Event Finishes:'] = 'Evenimentul se Finalizează:'; +$a->strings['Title (BBCode not allowed)'] = 'Titlu (BBCode nepermis)'; +$a->strings['Description (BBCode allowed)'] = 'Descriere (BBCode permis)'; +$a->strings['Location (BBCode not allowed)'] = 'Locație (BBCode nepermis)'; +$a->strings['Share this event'] = 'Partajează acest eveniment'; +$a->strings['This calendar format is not supported'] = 'Acest format de calendar nu este suportat'; +$a->strings['Events'] = 'Evenimente'; +$a->strings['Create New Event'] = 'Crează eveniment nou'; +$a->strings['Could not create circle.'] = 'Nu se poate crea cercul'; +$a->strings['Circle not found.'] = 'Cerc negăsit'; +$a->strings['Circle name was not changed.'] = 'Numele cercului nu s-a schimbat.'; +$a->strings['Unknown circle.'] = 'Cerc negăsit.'; +$a->strings['Contact not found.'] = 'Contact negăsit.'; +$a->strings['Invalid contact.'] = 'Invalid contact.'; +$a->strings['Contact is deleted.'] = 'Contactul a fost șters'; +$a->strings['Unable to add the contact to the circle.'] = 'Nu se poate adăuga contactul în cerc.'; +$a->strings['Contact successfully added to circle.'] = 'Contactul a fost adăugat cu succes în cerc.'; +$a->strings['Unable to remove the contact from the circle.'] = 'Nu se poate înlătura contactul din cerc.'; +$a->strings['Contact successfully removed from circle.'] = 'Contactul a fost înlăturat cu succes din cerc.'; +$a->strings['Save Circle'] = 'Salvează cercul'; +$a->strings['Filter'] = 'Filtrează'; +$a->strings['Create a circle of contacts/friends.'] = 'Creați un cerc de contacte/prieteni.'; +$a->strings['Unable to remove circle.'] = 'Nu se poate înlătura cercul.'; +$a->strings['Delete Circle'] = 'Ștergeți cercul'; +$a->strings['Edit Circle Name'] = 'Modificați numele cercului'; +$a->strings['Members'] = 'Membri'; +$a->strings['Circle is empty'] = 'Cercul este gol'; +$a->strings['Remove contact from circle'] = 'Înlăturați contactul din cerc'; +$a->strings['Click on a contact to add or remove.'] = 'Apăsați pe un contact pentru a-l adăuga sau elimina.'; +$a->strings['Add contact to circle'] = 'Adăugați contactul în cerc'; +$a->strings['Show all contacts'] = 'Afişează toate contactele'; +$a->strings['Pending'] = 'În așteptare'; +$a->strings['Only show pending contacts'] = 'Arată numai contactele în așteptare'; +$a->strings['Blocked'] = 'Blocat'; +$a->strings['Only show blocked contacts'] = 'Se afişează numai contactele blocate'; +$a->strings['Ignored'] = 'Ignorat'; +$a->strings['Only show ignored contacts'] = 'Se afişează numai contactele ignorate'; +$a->strings['Archived'] = 'Arhivat'; +$a->strings['Only show archived contacts'] = 'Se afişează numai contactele arhivate'; +$a->strings['Hidden'] = 'Ascuns'; +$a->strings['Only show hidden contacts'] = 'Se afişează numai contactele ascunse'; +$a->strings['Search your contacts'] = 'Căutare contacte'; +$a->strings['Results for: %s'] = 'Rezultate pentru: %s'; +$a->strings['Update'] = 'Actualizare'; +$a->strings['Unblock'] = 'Deblochează'; +$a->strings['Unignore'] = 'Anulare ignorare'; +$a->strings['Conversations started by this contact'] = 'Conversații pornite de acest contact'; +$a->strings['Posts and Comments'] = 'Postări și comentarii'; +$a->strings['Individual Posts and Replies'] = 'Postări și comentarii individuale'; +$a->strings['Posts containing media objects'] = 'Postări care conțin elemente media'; +$a->strings['Advanced Contact Settings'] = 'Configurări Avansate Contacte'; +$a->strings['Mutual Friendship'] = 'Prietenie Reciprocă'; +$a->strings['is a fan of yours'] = 'este fanul dumneavoastră'; +$a->strings['you are a fan of'] = 'sunteţi un fan al'; +$a->strings['Pending outgoing contact request'] = 'Cerere de contact trimisă, în așteptare'; +$a->strings['Pending incoming contact request'] = 'Cerere de contact primită, în așteptare'; +$a->strings['Visit %s\'s profile [%s]'] = 'Vizitați profilul %s [%s]'; +$a->strings['Contact update failed.'] = 'Actualizarea Contactului a eșuat.'; +$a->strings['Return to contact editor'] = 'Reveniţi la editorul de contact'; +$a->strings['Name'] = 'Nume'; +$a->strings['Account Nickname'] = 'Pseudonim Cont'; +$a->strings['Account URL'] = 'URL Cont'; +$a->strings['Poll/Feed URL'] = 'URL Sondaj/Flux'; +$a->strings['New photo from this URL'] = 'Fotografie Nouă de la acest URL'; +$a->strings['No known contacts.'] = 'Niciun contact știut.'; +$a->strings['No common contacts.'] = 'Niciun contact în comun.'; +$a->strings['Follower (%s)'] = [ + 0 => 'Urmăritori (%s)', + 1 => 'Urmăritori (%s)', + 2 => 'Urmăritori (%s)', +]; +$a->strings['Following (%s)'] = [ + 0 => 'Urmărește (%s)', + 1 => 'Urmărește (%s)', + 2 => 'Urmărește (%s)', +]; +$a->strings['These contacts both follow and are followed by %s.'] = 'Aceste contacte urmăresc, dar sunt și urmărite de %s.'; +$a->strings['Access denied.'] = 'Accesul interzis.'; +$a->strings['Submit Request'] = 'Trimiteţi Solicitarea'; +$a->strings['You already added this contact.'] = 'Ați adăugat deja acest contact.'; +$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Tipul de rețea nu a putut fi detectată. Contactul nu poate fi adăugat.'; +$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Suportul pentru Diaspora nu este activat. Contactul nu poate fi adăugat.'; +$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Suportul pentru OStatus este dezactivat. Contactul nu poate fi adăugat.'; +$a->strings['Please answer the following:'] = 'Vă rugăm să răspundeţi la următoarele:'; +$a->strings['Your Identity Address:'] = 'Adresa dvs. Identitate '; +$a->strings['Profile URL'] = 'URL Profil'; +$a->strings['Tags:'] = 'Etichete:'; +$a->strings['Add a personal note:'] = 'Adaugă o notă personală:'; +$a->strings['Posts and Replies'] = 'Postări și răspunsuri'; +$a->strings['The contact could not be added.'] = 'Contactul nu a putut fi adăugat.'; +$a->strings['Invalid request.'] = 'Cerere invalida'; +$a->strings['Profile Match'] = 'Potrivire Profil'; +$a->strings['Failed to update contact record.'] = 'Actualizarea datelor de contact a eşuat.'; +$a->strings['Contact has been unblocked'] = 'Contactul a fost deblocat'; +$a->strings['Contact has been blocked'] = 'Contactul a fost blocat'; +$a->strings['Contact has been unignored'] = 'Contactul a fost neignorat'; +$a->strings['Contact has been ignored'] = 'Contactul a fost ignorat'; +$a->strings['You are mutual friends with %s'] = 'Sunteţi prieten comun cu %s'; +$a->strings['You are sharing with %s'] = 'Împărtășiți cu %s'; +$a->strings['%s is sharing with you'] = '%s împărtăşeşte cu dvs.'; +$a->strings['Private communications are not available for this contact.'] = 'Comunicaţiile private nu sunt disponibile pentru acest contact.'; +$a->strings['This contact is on a server you ignored.'] = 'Contactul se află pe un server pe care l-ați ignorat.'; +$a->strings['Never'] = 'Niciodată'; +$a->strings['(Update was not successful)'] = '(Actualizarea nu a reușit)'; +$a->strings['(Update was successful)'] = '(Actualizarea a reușit)'; +$a->strings['Suggest friends'] = 'Sugeraţi prieteni'; +$a->strings['Network type: %s'] = 'Tipul rețelei: %s'; +$a->strings['Communications lost with this contact!'] = 'S-a pierdut conexiunea cu acest contact!'; +$a->strings['Fetch further information for feeds'] = 'Preluare informaţii suplimentare pentru fluxuri'; +$a->strings['No mirroring'] = 'Nicio oglindire'; +$a->strings['Mirror as my own posting'] = 'Oglindește ca fiind propriile postări'; +$a->strings['Native reshare'] = 'Redistribuire nativă'; +$a->strings['Contact Information / Notes'] = 'Informaţii de Contact / Note'; +$a->strings['Contact Settings'] = 'Setări contact'; +$a->strings['Edit contact notes'] = 'Editare note de contact'; +$a->strings['Block/Unblock contact'] = 'Blocare/Deblocare contact'; +$a->strings['Ignore contact'] = 'Ignorare contact'; +$a->strings['View conversations'] = 'Vizualizaţi conversaţii'; +$a->strings['Last update:'] = 'Ultima actualizare:'; +$a->strings['Update public posts'] = 'Actualizare postări publice'; +$a->strings['Update now'] = 'Actualizează acum'; +$a->strings['Awaiting connection acknowledge'] = 'Se așteaptă confirmarea conexiunii'; +$a->strings['Currently blocked'] = 'Blocat în prezent'; +$a->strings['Currently ignored'] = 'Ignorat în prezent'; +$a->strings['Currently archived'] = 'Arhivat în prezent'; +$a->strings['Hide this contact from others'] = 'Ascunde acest contact pentru alţii'; +$a->strings['Replies/likes to your public posts may still be visible'] = 'Răspunsurile/aprecierile pentru postările dvs. publice ar putea fi încă vizibile'; +$a->strings['Notification for new posts'] = 'Notificare de postări noi'; +$a->strings['Send a notification of every new post of this contact'] = 'Trimiteți o notificare despre fiecare postare nouă a acestui contact'; +$a->strings['Actions'] = 'Acțiuni'; +$a->strings['Status'] = 'Status'; +$a->strings['Mirror postings from this contact'] = 'Postări în oglindă de la acest contact'; +$a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'Marcaţi acest contact ca remote_self, aceasta va determina friendica să reposteze noile articole ale acestui contact.'; +$a->strings['Channel Settings'] = 'Setări canal'; +$a->strings['Frequency of this contact in relevant channels'] = 'Frecvența acestui contact în canale relevante'; +$a->strings['Toggle Blocked status'] = 'Comutare status Blocat'; +$a->strings['Toggle Ignored status'] = 'Comutaţi status Ignorat'; +$a->strings['Revoke Follow'] = 'Revocă urmărirea'; +$a->strings['Revoke the follow from this contact'] = 'Revocă urmărirea din partea acestui contact'; +$a->strings['Unknown contact.'] = 'Contact necunoscut'; +$a->strings['Follow was successfully revoked.'] = 'Urmărirea a fost revocată cu succes.'; +$a->strings['Do you really want to revoke this contact\'s follow? This cannot be undone and they will have to manually follow you back again.'] = 'Sunteți sigur că doriți să revocați urmărirea acestui contact? Aceasta nu poate fi anulată iar contactul va trebui să vă urmărească la rândul său din nou'; +$a->strings['Yes'] = 'Da'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Nicio sugestie disponibilă. Dacă aceasta este un site nou, vă rugăm să încercați din nou în 24 de ore.'; +$a->strings['You aren\'t following this contact.'] = 'Nu urmăriți acest contact.'; +$a->strings['No results.'] = 'Niciun rezultat.'; +$a->strings['Not available.'] = 'Indisponibil.'; +$a->strings['No such circle'] = 'Niciun astfel de cerc'; +$a->strings['Circle: %s'] = 'Cerc: %s'; +$a->strings['Include'] = 'Include'; +$a->strings['Hide'] = 'Ascunde'; +$a->strings['Error'] = [ + 0 => 'Eroare', + 1 => 'Erori', + 2 => 'Erori', +]; +$a->strings['Source text'] = 'Text sursă'; +$a->strings['BBCode'] = 'BBCode'; +$a->strings['Markdown'] = 'Markdown'; +$a->strings['HTML'] = 'HTML'; +$a->strings['Source URL'] = 'URL Sursă'; $a->strings['Time Conversion'] = 'Conversie Oră'; -$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica oferă acest serviciu pentru partajarea evenimentelor cu alte rețele și prieteni, în zonele cu fusuri orare necunoscute.\v'; +$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica oferă acest serviciu pentru partajarea evenimentelor cu alte rețele și alți prieteni, în zonele cu fusuri orare necunoscute.'; $a->strings['UTC time: %s'] = 'Fus orar UTC: %s'; $a->strings['Current timezone: %s'] = 'Fusul orar curent: %s'; $a->strings['Converted localtime: %s'] = 'Ora locală convertită: %s'; $a->strings['Please select your timezone:'] = 'Vă rugăm să vă selectaţi fusul orar:'; -$a->strings['Poke/Prod'] = 'Abordare/Atragerea atenției'; -$a->strings['poke, prod or do other things to somebody'] = 'abordați, atrageți atenția sau faceți alte lucruri cuiva'; -$a->strings['Recipient'] = 'Destinatar'; -$a->strings['Choose what you wish to do to recipient'] = 'Alegeți ce doriți să faceți cu destinatarul'; -$a->strings['Make this post private'] = 'Faceți acest articol privat'; +$a->strings['No entries (some entries may be hidden).'] = 'Fără înregistrări (unele înregistrări pot fi ascunse).'; +$a->strings['Find on this site'] = 'Căutați pe acest site'; +$a->strings['Results for:'] = 'Rezultate pentru:'; +$a->strings['Site Directory'] = 'Director Site'; +$a->strings['Item was not deleted'] = 'Elementul nu a fost șters'; +$a->strings['Item was not removed'] = 'Elementul nu a fost înlăturat'; +$a->strings['- select -'] = '- selectare -'; +$a->strings['Suggested contact not found.'] = 'Contactul sugerat nu a fost găsit.'; +$a->strings['Friend suggestion sent.'] = 'Sugestia de prietenie a fost trimisă.'; +$a->strings['Suggest Friends'] = 'Sugeraţi Prieteni'; +$a->strings['Suggest a friend for %s'] = 'Sugeraţi un prieten pentru %s'; +$a->strings['Installed addons/apps:'] = 'Suplimente/aplicații instalate:'; +$a->strings['No installed addons/apps'] = 'Niciun supliment/nicio aplicație nu au fost instalate'; +$a->strings['On this server the following remote servers are blocked.'] = 'Pe acest server, următoarele servere sunt blocate.'; +$a->strings['Reason for the block'] = 'Motivul blocării'; +$a->strings['Download this list in CSV format'] = 'Descărcați această listă în format CSV'; +$a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Vă rugăm să vizitați Friendi.ca pentru a afla mai multe despre proiectul Friendica.'; +$a->strings['Bug reports and issues: please visit'] = 'Rapoarte de erori şi probleme: vă rugăm să vizitaţi'; +$a->strings['No profile'] = 'Niciun profil'; +$a->strings['Method Not Allowed.'] = 'Metodă nepermisă.'; +$a->strings['Help:'] = 'Ajutor:'; +$a->strings['Welcome to %s'] = 'Bine aţi venit la %s'; +$a->strings['System check'] = 'Verificare sistem'; +$a->strings['OK'] = 'OK'; +$a->strings['Next'] = 'Următorul'; +$a->strings['Check again'] = 'Reverificare'; +$a->strings['Base settings'] = 'Setări de bază'; +$a->strings['Base path to installation'] = 'Calea de bază pentru instalare'; +$a->strings['Database connection'] = 'Conexiunea cu baza de date'; +$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Pentru a instala Friendica trebuie să știm cum să vă conectaţi la baza dumneavoastră de date.'; +$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Vă rugăm să vă contactaţi furnizorul găzduirii sau administratorul de site dacă aveţi întrebări despre aceste configurări.'; +$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'Baza de date specificată mai jos ar trebui să existe deja. Dacă nu, vă rugăm s-o creați înainte de a continua.'; +$a->strings['Database Server Name'] = 'Nume Server Bază de date'; +$a->strings['Database Login Name'] = 'Nume Autentificare Bază de date'; +$a->strings['Database Login Password'] = 'Parola de Autentificare Bază de date'; +$a->strings['For security reasons the password must not be empty'] = 'Din motive de securitate parola nu trebuie să fie goală'; +$a->strings['Database Name'] = 'Nume Bază de date'; +$a->strings['Please select a default timezone for your website'] = 'Vă rugăm să selectaţi un fus orar prestabilit pentru site-ul dvs.'; +$a->strings['Site settings'] = 'Configurări Site'; +$a->strings['Site administrator email address'] = 'Adresa de email a administratorului de site'; +$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'Adresa de email a contului dvs. trebuie să corespundă cu aceasta pentru a utiliza panoul de administrare web.'; +$a->strings['System Language:'] = 'Limbă de sistem:'; +$a->strings['Your Friendica site database has been installed.'] = 'Baza dvs. de date Friendica, a fost instalată.'; +$a->strings['Installation finished'] = 'Instalarea s-a terminat'; +$a->strings['

    What next

    '] = '

    Ce urmează

    '; $a->strings['Total invitation limit exceeded.'] = 'Limita totală a invitațiilor a fost depăşită.'; $a->strings['%s : Not a valid email address.'] = '%s : Nu este o adresă vaildă de email.'; $a->strings['Please join us on Friendica'] = 'Vă rugăm să veniți alături de noi pe Friendica'; @@ -1157,590 +1045,524 @@ $a->strings['Enter email addresses, one per line:'] = 'Introduceţi adresele de $a->strings['You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.'] = 'Vă invit cordial să vă alăturați mie, si altor prieteni apropiați, pe Friendica - şi să ne ajutați să creăm o rețea socială mai bună.'; $a->strings['You will need to supply this invitation code: $invite_code'] = 'Va fi nevoie să furnizați acest cod de invitaţie: $invite_code'; $a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Odată ce v-aţi înregistrat, vă rog să vă conectaţi cu mine prin pagina mea de profil de la:'; -$a->strings['For more information about the Friendica project and why we feel it is important, please visit http://friendica.com'] = 'Pentru mai multe informaţii despre proiectul Friendica, şi de ce credem că este important, vă rugăm să vizitaţi http://friendica.com'; -$a->strings['Photo Albums'] = 'Albume Photo '; -$a->strings['Contact Photos'] = 'Photo Contact'; -$a->strings['Upload New Photos'] = 'Încărcaţi Fotografii Noi'; -$a->strings['Contact information unavailable'] = 'Informaţii contact nedisponibile'; -$a->strings['Album not found.'] = 'Album negăsit'; -$a->strings['Delete Album'] = 'Şterge Album'; -$a->strings['Do you really want to delete this photo album and all its photos?'] = 'Doriţi într-adevăr să ştergeţi acest album foto și toate fotografiile sale?'; -$a->strings['Delete Photo'] = 'Şterge Poza'; -$a->strings['Do you really want to delete this photo?'] = 'Sigur doriți să ștergeți această fotografie?'; -$a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s a fost etichetat în %2$s de către %3$s'; -$a->strings['a photo'] = 'o poză'; -$a->strings['Image exceeds size limit of '] = 'Dimensiunea imaginii depăşeşte limita de'; -$a->strings['Image file is empty.'] = 'Fișierul imagine este gol.'; -$a->strings['No photos selected'] = 'Nici-o fotografie selectată'; -$a->strings['You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage.'] = 'Aţi folosit %1$.2f Mb din %2$.2f Mb de stocare foto.'; -$a->strings['Upload Photos'] = 'Încărcare Fotografii'; -$a->strings['New album name: '] = 'Nume album nou:'; -$a->strings['or existing album name: '] = 'sau numele unui album existent:'; -$a->strings['Do not show a status post for this upload'] = 'Nu afișa un status pentru această încărcare'; -$a->strings['Permissions'] = 'Permisiuni'; -$a->strings['Private Photo'] = 'Poze private'; -$a->strings['Public Photo'] = 'Poze Publice'; -$a->strings['Edit Album'] = 'Editează Album'; -$a->strings['Show Newest First'] = 'Afișează Întâi cele Noi'; -$a->strings['Show Oldest First'] = 'Afișează Întâi cele Vechi'; -$a->strings['View Photo'] = 'Vizualizare Fotografie'; -$a->strings['Permission denied. Access to this item may be restricted.'] = 'Permisiune refuzată. Accesul la acest element poate fi restricționat.'; -$a->strings['Photo not available'] = 'Fotografia nu este disponibilă'; -$a->strings['View photo'] = 'Vezi foto'; -$a->strings['Edit photo'] = 'Editează poza'; -$a->strings['Use as profile photo'] = 'Utilizați ca și fotografie de profil'; -$a->strings['View Full Size'] = 'Vizualizați la Dimensiunea Completă'; -$a->strings['Tags: '] = 'Etichete:'; -$a->strings['[Remove any tag]'] = '[Elimină orice etichetă]'; -$a->strings['Rotate CW (right)'] = 'Rotire spre dreapta'; -$a->strings['Rotate CCW (left)'] = 'Rotire spre stânga'; -$a->strings['New album name'] = 'Nume Nou Album'; -$a->strings['Caption'] = 'Titlu'; -$a->strings['Add a Tag'] = 'Adaugă un Tag'; -$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Exemplu: @Bob, @Barbara_Jensen, @jim@exemplu.com , #California, #camping'; -$a->strings['Private photo'] = 'Poze private'; -$a->strings['Public photo'] = 'Poze Publice'; -$a->strings['Share'] = 'Partajează'; -$a->strings['Recent Photos'] = 'Poze Recente'; +$a->strings['Please enter a post body.'] = 'Vă rugăm introduceți corpul textului.'; +$a->strings['Compose new personal note'] = 'Compune o notă personală nouă'; +$a->strings['Compose new post'] = 'Compune o nouă postare'; +$a->strings['Visibility'] = 'Vizibilitate'; +$a->strings['Location services are unavailable on your device'] = 'Servicii de locație indisponibile pe dispozitivul dumneavoastră'; +$a->strings['Unable to follow this item.'] = 'Imposibil de urmărit acest element'; +$a->strings['System down for maintenance'] = 'Sistemul este suspendat pentru întreținere'; +$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.'] = 'Acest nod Friendica se află în modul de întreținere, fie din cauza auto-actualizărilor, fie manual, de administrator. Aceasta condiție este temporară, vă rugăm să reveniți în câteva minute.'; +$a->strings['A Decentralized Social Network'] = 'O rețea socială descentralizată'; +$a->strings['You need to be logged in to access this page.'] = 'Trebuie să vă logați pentru a accesa această pagină.'; +$a->strings['Files'] = 'Fişiere'; +$a->strings['Upload'] = 'Încărcare'; +$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Ne pare rău, este posibil ca fișierul pe care doriți să-l încărcați, este mai mare decât permite configuraţia PHP'; +$a->strings['Or - did you try to upload an empty file?'] = 'Sau - ați încercat să încărcați un fișier gol?'; +$a->strings['File exceeds size limit of %s'] = 'Fișierul depășește limita de dimensiune de %s'; +$a->strings['File upload failed.'] = 'Încărcarea fișierului a eşuat.'; +$a->strings['Unable to process image.'] = 'Nu s-a putut procesa imaginea.'; +$a->strings['Image upload failed.'] = 'Încărcarea imaginii a eşuat.'; +$a->strings['Normal Account Page'] = 'Pagină de Cont Simplu'; +$a->strings['Soapbox Page'] = 'Pagină Soapbox'; +$a->strings['Public Group'] = 'Grup public'; +$a->strings['Automatic Friend Page'] = 'Pagină Prietenie Automată'; +$a->strings['Private Group'] = 'Grup privat'; +$a->strings['Personal Page'] = 'Pagină personală'; +$a->strings['Organisation Page'] = 'Pagină de organizație'; +$a->strings['News Page'] = 'Pagină de știri'; +$a->strings['Community Group'] = 'Grup de comunitate'; +$a->strings['Relay'] = 'Releu'; +$a->strings['%s contact unblocked'] = [ + 0 => '%s contact deblocat', + 1 => '%scontacte deblocate', + 2 => '%s de contacte deblocate', +]; +$a->strings['select all'] = 'selectează tot'; +$a->strings['select none'] = 'selectează nimic'; +$a->strings['Photo'] = 'Fotografie'; +$a->strings['Reason'] = 'Motiv'; +$a->strings['Server Name'] = 'Nume server'; +$a->strings['Server Domain'] = 'Domeniu server'; +$a->strings['Known Contacts'] = 'Contacte cunoscute'; +$a->strings['%d known server'] = [ + 0 => '%d server știut', + 1 => '%d servere știute', + 2 => '%d de servere știute', +]; +$a->strings['Upload file'] = 'Încărcare fișier'; +$a->strings['Delete this Item'] = 'Ștergeți acest element'; +$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.'] = 'Pe această pagină puteți șterge un element din nodul dumneavoastră. Dacă elementul este o postare de nivel superior, întregul fir va fi șters.'; +$a->strings['Terms'] = 'Termeni'; +$a->strings['Type'] = 'Tip'; +$a->strings['Item not found'] = 'Element negăsit'; +$a->strings['Spam'] = 'Spam'; +$a->strings['Illegal Content'] = 'Conținut ilegal'; +$a->strings['This contact is publishing content that is considered illegal in this node\'s hosting juridiction.'] = 'Acest contact postează conținut considerat ilegal în jurisdicția în care se află nodul acesta.'; +$a->strings['Unwanted Content/Behavior'] = 'Conținut/comportament nedorit'; +$a->strings['Rules Violation'] = 'Violare de reguli'; +$a->strings['Additional Information'] = 'Informații adiționale'; +$a->strings['Nothing'] = 'Nimic'; +$a->strings['Block contact'] = 'Blochează contactul'; +$a->strings['Normal Account'] = 'Cont normal'; +$a->strings['Public Group Account'] = 'Cont de grup public'; +$a->strings['Automatic Friend Account'] = 'Cont Prieten Automat'; +$a->strings['Blog Account'] = 'Cont Blog'; +$a->strings['Private Group Account'] = 'Cont de grup privat'; +$a->strings['Registered users'] = 'Utilizatori înregistraţi'; +$a->strings['Pending registrations'] = 'Administrare'; +$a->strings['%s user deleted'] = [ + 0 => '%s utilizator şters', + 1 => '%s utilizatori şterşi', + 2 => '%s utilizatori şterşi', +]; +$a->strings['User "%s" deleted'] = 'Utilizatorul „%s” a fost șters'; +$a->strings['User "%s" blocked'] = 'Utilizatorul „%s” a fost șters'; +$a->strings['Register date'] = 'Data înregistrare'; +$a->strings['Last login'] = 'Ultimul login'; +$a->strings['Site admin'] = 'Administratorul site-ului'; +$a->strings['Account expired'] = 'Cont expirat'; +$a->strings['Create a new user'] = 'Creează un nou utilizator'; +$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Utilizatorii selectați vor fi șterși!\n\nTot ce au postat acești utilizatori pe acest site, va fi șters permanent!\n\nConfirmați?'; +$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Utilizatorul {0} va fi şters!\n\nTot ce a postat acest utilizator pe acest site, va fi şters permanent!\n\nConfirmați?'; +$a->strings['User "%s" unblocked'] = 'Utilizatorul „%s” a fost deblocat'; +$a->strings['Blocked Users'] = 'Utilizatori blocați'; +$a->strings['New User'] = 'Utilizator Nou'; +$a->strings['Add User'] = 'Adăugaţi Utilizator'; +$a->strings['Name of the new user.'] = 'Numele noului utilizator.'; +$a->strings['Nickname'] = 'Pseudonim'; +$a->strings['Nickname of the new user.'] = 'Pseudonimul noului utilizator.'; +$a->strings['Email address of the new user.'] = 'Adresa de e-mail a utilizatorului nou.'; +$a->strings['Users awaiting permanent deletion'] = 'Utilizatori care așteaptă ștergerea permanentă'; +$a->strings['Permanent deletion'] = 'Ștergere permanentă'; +$a->strings['User waiting for permanent deletion'] = 'Utilizatorul așteaptă să fie șters definitiv'; $a->strings['Account approved.'] = 'Cont aprobat.'; -$a->strings['Registration revoked for %s'] = 'Înregistrare revocată pentru %s'; -$a->strings['Please login.'] = 'Vă rugăm să vă autentificați.'; -$a->strings['Move account'] = 'Mutaţi contul'; -$a->strings['You can import an account from another Friendica server.'] = 'Puteţi importa un cont dintr-un alt server Friendica.'; -$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.'] = 'Trebuie să vă exportați contul din vechiul server şi să-l încărcaţi aici. Vă vom recrea vechiul cont, aici cu toate contactele sale. Vom încerca de altfel să vă informăm prietenii că v-ați mutat aici.'; -$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora'] = 'Această caracteristică este experimentală. Nu putem importa contactele din reţeaua OStatus (statusnet/identi.ca) sau din Diaspora'; -$a->strings['Account file'] = 'Fişier Cont'; -$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Pentru a vă exporta contul, deplasaţi-vă la "Configurări- >Export date personale " şi selectaţi "Exportare cont "'; -$a->strings['Item not available.'] = 'Elementul nu este disponibil.'; -$a->strings['Item was not found.'] = 'Element negăsit.'; -$a->strings['Delete this item?'] = 'Ștergeți acest element?'; -$a->strings['show fewer'] = 'afișare mai puține'; -$a->strings['Update %s failed. See error logs.'] = 'Actualizarea %s a eșuat. Consultaţi jurnalele de eroare.'; +$a->strings['Request date'] = 'Data cererii'; +$a->strings['No registrations.'] = 'Nicio înregistrare.'; +$a->strings['Note from the user'] = 'Notă de la utilizator'; +$a->strings['Deny'] = 'Respinge'; +$a->strings['Show Ignored Requests'] = 'Afişare Solicitări Ignorate'; +$a->strings['Hide Ignored Requests'] = 'Ascundere Solicitări Ignorate'; +$a->strings['Notification type:'] = 'Tip de notificare:'; +$a->strings['Suggested by:'] = 'Sugerat de'; +$a->strings['Claims to be known to you: '] = 'Pretinde că vă cunoaște:'; +$a->strings['No'] = 'NU'; +$a->strings['Friend'] = 'Prieten'; +$a->strings['Subscriber'] = 'Urmăritor'; +$a->strings['No introductions.'] = 'Fără prezentări.'; +$a->strings['You must be logged in to show this page.'] = 'Trebuie să fiți logat(-ă) pentru a vedea această pagină'; +$a->strings['Network Notifications'] = 'Notificări de Reţea'; +$a->strings['System Notifications'] = 'Notificări de Sistem'; +$a->strings['Personal Notifications'] = 'Notificări personale'; +$a->strings['Home Notifications'] = 'Notificări de Origine'; +$a->strings['Show unread'] = 'Arătați necitite'; +$a->strings['{0} requested registration'] = '{0} a solicitat înregistrarea'; +$a->strings['Authorize application connection'] = 'Autorizare conectare aplicaţie'; +$a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Doriţi să autorizați această aplicaţie pentru a vă accesa postările şi contactele, şi/sau crea noi postări pentru dvs.?'; +$a->strings['✔ Done'] = '✔ Gata'; +$a->strings['Done'] = 'Gata'; +$a->strings['success'] = 'success'; +$a->strings['failed'] = 'eșuat'; +$a->strings['ignored'] = 'ignorat'; +$a->strings['Unlisted'] = 'Nelistat'; +$a->strings['Remote privacy information not available.'] = 'Informațiile la distanță despre confidențialitate nu sunt disponibile.'; +$a->strings['Visible to:'] = 'Visibil către:'; +$a->strings['The Photo is not available.'] = 'Fotografia nu este disponibilă'; +$a->strings['Post not found.'] = 'Postare negăsită'; +$a->strings['Edit post'] = 'Editează postarea'; +$a->strings['web link'] = 'link web'; +$a->strings['Insert video link'] = 'Inserare link video'; +$a->strings['video link'] = 'link video'; +$a->strings['Insert audio link'] = 'Inserare link audio'; +$a->strings['audio link'] = 'link audio'; +$a->strings['Remove Item Tag'] = 'Eliminați Eticheta Elementului'; +$a->strings['Select a tag to remove: '] = 'Selectați o etichetă de eliminat:'; +$a->strings['Remove'] = 'Eliminare'; +$a->strings['No contacts.'] = 'Niciun contact.'; +$a->strings['%s\'s timeline'] = 'Cronologia lui %s'; +$a->strings['%s\'s posts'] = 'Postările lui %s'; +$a->strings['%s\'s comments'] = 'Comentariile lui %s'; +$a->strings['Image exceeds size limit of %s'] = 'Imaginea depășește limita de %s'; +$a->strings['Image upload didn\'t complete, please try again'] = 'Încărcarea imaginii a eșuat, vă rugăm, reîncercați'; +$a->strings['Image file is missing'] = 'Fișierul de imagine lipsește'; +$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Serverul nu mai acceptă momentan noi încărcări de fișiere, vă rugăm să vă contactați administratorul'; +$a->strings['Image file is empty.'] = 'Fișierul imagine este gol.'; +$a->strings['View Album'] = 'Vezi Album'; +$a->strings['Profile not found.'] = 'Profil negăsit.'; +$a->strings['Full Name:'] = 'Nume complet:'; +$a->strings['Member since:'] = 'Membru începând cu:'; +$a->strings['j F, Y'] = 'j F, Y'; +$a->strings['j F'] = 'j F'; +$a->strings['Birthday:'] = 'Zile Naştere :'; +$a->strings['Age: '] = 'Vârsta:'; +$a->strings['%d year old'] = [ + 0 => '%dan', + 1 => '%dani', + 2 => '%dde ani', +]; +$a->strings['Description:'] = 'Descriere:'; +$a->strings['Groups:'] = 'Grupuri'; +$a->strings['View profile as:'] = 'Vizualizați profilul ca:'; +$a->strings['View as'] = 'Vedeți ca'; +$a->strings['Profile unavailable.'] = 'Profil indisponibil.'; +$a->strings['Invalid locator'] = 'Invalid locator'; +$a->strings['Friend/Connection Request'] = 'Solicitare Prietenie/Conectare'; +$a->strings['Restricted profile'] = 'Profil restricționat'; +$a->strings['This profile has been restricted which prevents access to their public content from anonymous visitors.'] = 'Acest profil a fost restricționat, ceea ce previne accesul conținutului său public din partea utilizatorilor anonimi'; +$a->strings['Scheduled'] = 'Programat'; +$a->strings['Content'] = 'Conținut'; +$a->strings['Remove post'] = 'Înlătură postarea'; +$a->strings['Empty message body.'] = 'Corp mesaj gol.'; +$a->strings['Unable to check your home location.'] = 'Imposibil de verificat locaţia dvs. de reşedinţă.'; +$a->strings['Recipient not found.'] = 'Destinatar negăsit.'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Numărul de mesaje zilnice pe perete pentru %s a fost depășit. Mesajul a eșuat.'; +$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Dacă doriţi ca %s să vă răspundă, vă rugăm să verificaţi dacă configurările de confidenţialitate de pe site-ul dumneavoastră, permite mail-uri private de la expeditori necunoscuți.'; +$a->strings['To'] = 'Către'; +$a->strings['Subject'] = 'Subiect'; +$a->strings['Your message'] = 'Mesajul dumneavoastră'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Acest site a depăşit numărul zilnic permis al înregistrărilor de conturi. Vă rugăm să reîncercați mâine.'; +$a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Dacă nu sunteţi familiarizați cu OpenID, vă rugăm să lăsaţi acest câmp gol iar apoi să completaţi restul elementelor.'; +$a->strings['Your OpenID (optional): '] = 'Contul dvs. OpenID (opţional):'; +$a->strings['Include your profile in member directory?'] = 'Includeți profilul dvs în directorul de membru?'; +$a->strings['Note for the admin'] = 'Notă pentru administrator'; +$a->strings['Membership on this site is by invitation only.'] = 'Aderarea pe acest site este posibilă doar pe bază de invitație.'; +$a->strings['Your invitation code: '] = 'Codul dvs. de invitație:'; +$a->strings['Your Full Name (e.g. Joe Smith, real or real-looking): '] = 'Numele dvs. complet (ex: Ion Popescu, real sau care pare real):'; +$a->strings['Your Email Address: (Initial information will be send there, so this has to be an existing address.)'] = 'Adresa dvs. de email: (Informațiile inițiale vor fi trimise acolo, astfel că va trebui să introduceți o adresă existentă)'; +$a->strings['Please repeat your e-mail address:'] = 'Vă rugăm, repetați adresa dvs. de e-mail:'; +$a->strings['New Password:'] = 'Parola Nouă:'; +$a->strings['Leave empty for an auto generated password.'] = 'Lăsați gol pentru o parolă generată automat'; +$a->strings['Confirm:'] = 'Confirmați:'; +$a->strings['Choose a nickname: '] = 'Alegeţi un pseudonim:'; +$a->strings['Import'] = 'Import'; +$a->strings['Import your profile to this friendica instance'] = 'Importați profilul dvs. în această instanță friendica'; +$a->strings['Note: This node explicitly contains adult content'] = 'Notă: acest nod conține în mod explicit conținut pentru adulți'; +$a->strings['Password doesn\'t match.'] = 'Parola nu se potrivește'; +$a->strings['Please enter your password.'] = 'Vă rugăm să introduceți parola dvs.'; +$a->strings['You have entered too much information.'] = 'Ați introdus prea multă informație'; +$a->strings['The additional account was created.'] = 'Contul adițional a fost creat'; +$a->strings['Registration successful. Please check your email for further instructions.'] = 'Înregistrarea s-a efectuat cu succes. Vă rugăm să vă verificaţi e-mailul pentru instrucţiuni suplimentare.'; +$a->strings['Registration successful.'] = 'Înregistrarea s-a efectuat cu succes.'; +$a->strings['Your registration can not be processed.'] = 'Înregistrarea dvs. nu poate fi procesată.'; +$a->strings['An internal error occured.'] = 'S-a produs o eroare internă.'; +$a->strings['Your registration is pending approval by the site owner.'] = 'Înregistrarea dvs. este în aşteptarea aprobării de către deținătorul site-ului.'; +$a->strings['You must be logged in to use this module.'] = 'Trebuie să vă logați pentru a folosi acest modul.'; +$a->strings['Items tagged with: %s'] = 'Elemente etichetate cu: %s'; $a->strings['Create a New Account'] = 'Creaţi un Cont Nou'; -$a->strings['Logout'] = 'Deconectare'; -$a->strings['Nickname or Email address: '] = 'Pseudonimul sau Adresa de email:'; +$a->strings['Your OpenID: '] = 'OpenID-ul dvs.'; +$a->strings['Please enter your username and password to add the OpenID to your existing account.'] = 'Vă rugăm să introduceți username-ul și parola pentru a adăuga OpenID la contul dumneavoastră existent.'; +$a->strings['Or login using OpenID: '] = 'Sau conectaţi-vă utilizând OpenID:'; $a->strings['Password: '] = 'Parola:'; $a->strings['Remember me'] = 'Reține autentificarea'; -$a->strings['Or login using OpenID: '] = 'Sau conectaţi-vă utilizând OpenID:'; $a->strings['Forgot your password?'] = 'Ați uitat parola?'; $a->strings['Website Terms of Service'] = 'Condiții de Utilizare Site Web'; $a->strings['terms of service'] = 'condiții de utilizare'; $a->strings['Website Privacy Policy'] = 'Politica de Confidențialitate Site Web'; $a->strings['privacy policy'] = 'politica de confidențialitate'; -$a->strings['Requested account is not available.'] = 'Contul solicitat nu este disponibil.'; -$a->strings['Edit profile'] = 'Editare profil'; -$a->strings['Message'] = 'Mesaj'; -$a->strings['Profiles'] = 'Profile'; -$a->strings['Manage/edit profiles'] = 'Gestionare/editare profile'; -$a->strings['Network:'] = 'Reţea:'; -$a->strings['g A l F d'] = 'g A l F d'; -$a->strings['F d'] = 'F d'; -$a->strings['[today]'] = '[azi]'; -$a->strings['Birthday Reminders'] = 'Memento Zile naştere '; -$a->strings['Birthdays this week:'] = 'Zi;e Naştere această săptămînă:'; -$a->strings['[No description]'] = '[Fără descriere]'; -$a->strings['Event Reminders'] = 'Memento Eveniment'; -$a->strings['Events this week:'] = 'Evenimente în această săptămână:'; -$a->strings['Status'] = 'Status'; -$a->strings['Status Messages and Posts'] = 'Status Mesaje şi Postări'; -$a->strings['Profile Details'] = 'Detalii Profil'; -$a->strings['Videos'] = 'Clipuri video'; -$a->strings['Events and Calendar'] = 'Evenimente şi Calendar'; -$a->strings['Only You Can See This'] = 'Numai Dvs. Puteţi Vizualiza'; -$a->strings['This entry was edited'] = 'Această intrare a fost editată'; -$a->strings['toggle ignore status'] = 'Comutaţi status Ignorare'; -$a->strings['ignored'] = 'ignorat'; -$a->strings['Categories:'] = 'Categorii:'; -$a->strings['Filed under:'] = 'Înscris în:'; -$a->strings['via'] = 'via'; -$a->strings['The error message is -[pre]%s[/pre]'] = 'Mesajul de eroare este -[pre]%s[/pre]'; -$a->strings['Errors encountered creating database tables.'] = 'Erori întâlnite la crearea tabelelor bazei de date.'; -$a->strings['Errors encountered performing database changes.'] = 'Erori întâlnite la operarea de modificări în baza de date.'; $a->strings['Logged out.'] = 'Deconectat.'; -$a->strings['We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.'] = 'Am întâmpinat o problemă în timpul autentificării cu datele OpenID pe care le-ați furnizat.'; -$a->strings['The error message was:'] = 'Mesajul de eroare a fost:'; -$a->strings['Add New Contact'] = 'Add Contact Nou'; -$a->strings['Enter address or web location'] = 'Introduceţi adresa sau locaţia web'; -$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Exemplu: bob@example.com, http://example.com/barbara'; -$a->strings['%d invitation available'] = [ - 0 => '%d invitație disponibilă', - 1 => '%d invitații disponibile', - 2 => '%d de invitații disponibile', -]; -$a->strings['Find People'] = 'Căutați Persoane'; -$a->strings['Enter name or interest'] = 'Introduceţi numele sau interesul'; -$a->strings['Connect/Follow'] = 'Conectare/Urmărire'; -$a->strings['Examples: Robert Morgenstein, Fishing'] = 'Exemple: Robert Morgenstein, Pescuit'; -$a->strings['Similar Interests'] = 'Interese Similare'; -$a->strings['Random Profile'] = 'Profil Aleatoriu'; -$a->strings['Invite Friends'] = 'Invită Prieteni'; -$a->strings['Networks'] = 'Rețele'; -$a->strings['All Networks'] = 'Toate Reţelele'; -$a->strings['Saved Folders'] = 'Dosare Salvate'; -$a->strings['Everything'] = 'Totul'; -$a->strings['Categories'] = 'Categorii'; -$a->strings['General Features'] = 'Caracteristici Generale'; -$a->strings['Multiple Profiles'] = 'Profile Multiple'; -$a->strings['Ability to create multiple profiles'] = 'Capacitatea de a crea profile multiple'; -$a->strings['Post Composition Features'] = 'Caracteristici Compoziţie Postare'; -$a->strings['Richtext Editor'] = 'Editor Text Îmbogățit'; -$a->strings['Enable richtext editor'] = 'Activare editor text îmbogățit'; -$a->strings['Post Preview'] = 'Previzualizare Postare'; -$a->strings['Allow previewing posts and comments before publishing them'] = 'Permiteți previzualizarea postărilor şi comentariilor înaintea publicării lor'; -$a->strings['Auto-mention Forums'] = 'Auto-menţionare Forumuri'; -$a->strings['Add/remove mention when a fourm page is selected/deselected in ACL window.'] = 'Adăugaţi/eliminaţi mențiunea când o pagină de forum este selectată/deselectată în fereastra ACL.'; -$a->strings['Network Sidebar Widgets'] = 'Aplicaţii widget de Rețea în Bara Laterală'; -$a->strings['Search by Date'] = 'Căutare după Dată'; -$a->strings['Ability to select posts by date ranges'] = 'Abilitatea de a selecta postări după intervalele de timp'; -$a->strings['Group Filter'] = 'Filtru Grup'; -$a->strings['Enable widget to display Network posts only from selected group'] = 'Permiteți aplicației widget să afișeze postări din Rețea, numai din grupul selectat'; -$a->strings['Network Filter'] = 'Filtru Reţea'; -$a->strings['Enable widget to display Network posts only from selected network'] = 'Permiteți aplicației widget să afișeze postări din Rețea, numai din rețeaua selectată'; -$a->strings['Save search terms for re-use'] = 'Salvați termenii de căutare pentru reutilizare'; -$a->strings['Network Tabs'] = 'File Reţea'; -$a->strings['Network Personal Tab'] = 'Filă Personală de Reţea'; -$a->strings['Enable tab to display only Network posts that you\'ve interacted on'] = 'Permiteți filei să afişeze numai postările Reţelei cu care ați interacţionat'; -$a->strings['Network New Tab'] = 'Filă Nouă de Reţea'; -$a->strings['Enable tab to display only new Network posts (from the last 12 hours)'] = 'Permiteți filei să afişeze numai postările noi din Reţea (din ultimele 12 ore)'; -$a->strings['Network Shared Links Tab'] = 'Filă Legături Distribuite în Rețea'; -$a->strings['Enable tab to display only Network posts with links in them'] = 'Permiteți filei să afişeze numai postările din Reţea ce conțin legături'; -$a->strings['Post/Comment Tools'] = 'Instrumente Postare/Comentariu'; -$a->strings['Multiple Deletion'] = 'Ştergere Multiplă'; -$a->strings['Select and delete multiple posts/comments at once'] = 'Selectaţi şi ştergeţi postări/comentarii multiple simultan'; -$a->strings['Edit Sent Posts'] = 'Editare Postări Trimise'; -$a->strings['Edit and correct posts and comments after sending'] = 'Editarea şi corectarea postărilor şi comentariilor după postarea lor'; -$a->strings['Tagging'] = 'Etichetare'; -$a->strings['Ability to tag existing posts'] = 'Capacitatea de a eticheta postările existente'; -$a->strings['Post Categories'] = 'Categorii Postări'; -$a->strings['Add categories to your posts'] = 'Adăugaţi categorii la postările dvs.'; -$a->strings['Ability to file posts under folders'] = 'Capacitatea de a atribui postări în dosare'; -$a->strings['Dislike Posts'] = 'Respingere Postări'; -$a->strings['Ability to dislike posts/comments'] = 'Capacitatea de a marca postări/comentarii ca fiind neplăcute'; -$a->strings['Star Posts'] = 'Postări cu Steluță'; -$a->strings['Ability to mark special posts with a star indicator'] = 'Capacitatea de a marca posturile speciale cu o stea ca şi indicator'; -$a->strings['Connect URL missing.'] = 'Lipseşte URL-ul de conectare.'; -$a->strings['This site is not configured to allow communications with other networks.'] = 'Acest site nu este configurat pentru a permite comunicarea cu alte reţele.'; -$a->strings['No compatible communication protocols or feeds were discovered.'] = 'Nu au fost descoperite protocoale de comunicaţii sau fluxuri compatibile.'; -$a->strings['The profile address specified does not provide adequate information.'] = 'Adresa de profil specificată nu furnizează informații adecvate.'; -$a->strings['An author or name was not found.'] = 'Un autor sau nume nu a fost găsit.'; -$a->strings['No browser URL could be matched to this address.'] = 'Nici un URL de browser nu a putut fi corelat cu această adresă.'; -$a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Nu se poate corela @-stilul pentru Adresa de Identitatea cu un protocol cunoscut sau contact de email.'; -$a->strings['Use mailto: in front of address to force email check.'] = 'Utilizaţi mailto: în faţa adresei pentru a forţa verificarea de email.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Adresa de profil specificată aparţine unei reţele care a fost dezactivată pe acest site.'; -$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Profil limitat. Această persoană nu va putea primi notificări directe/personale, de la dvs.'; -$a->strings['Unable to retrieve contact information.'] = 'Nu se pot localiza informaţiile de contact.'; -$a->strings['following'] = 'urmărire'; -$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.'] = 'Un grup şters cu acest nume a fost restabilit. Permisiunile existente ale elementului, potfi aplicate acestui grup şi oricăror viitori membrii. Dacă aceasta nu este ceea ați intenționat să faceți, vă rugăm să creaţi un alt grup cu un un nume diferit.'; -$a->strings['Default privacy group for new contacts'] = 'Confidenţialitatea implicită a grupului pentru noi contacte'; -$a->strings['Everybody'] = 'Toată lumea'; -$a->strings['edit'] = 'editare'; -$a->strings['Edit group'] = 'Editare grup'; -$a->strings['Create a new group'] = 'Creați un nou grup'; -$a->strings['Contacts not in any group'] = 'Contacte ce nu se află în orice grup'; +$a->strings['Password Too Long'] = 'Parola este prea lungă'; +$a->strings['Update Password'] = 'Actualizați-vă parola'; +$a->strings['Current Password:'] = 'Parola Curentă:'; +$a->strings['Your current password to confirm the changes'] = 'Parola curentă pentru a confirma modificările'; +$a->strings['Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces and accentuated letters.'] = 'Caracterele permise sunt a-z, A-Z, 0-9 și caractere speciale cu excepția spațiilor albe sau a literelor accentuate.'; +$a->strings['Password length is limited to 72 characters.'] = 'Lungimea parolei este limitată la 72 de caractere.'; +$a->strings['Remaining recovery codes: %d'] = 'Coduri de recuperare rămase: %d'; +$a->strings['Invalid code, please retry.'] = 'Cod invalid, vă rugăm să reîncercați.'; +$a->strings['Two-factor recovery'] = 'Recuperare cu doi factori'; +$a->strings['Please enter a recovery code'] = 'Vă rugăm să introduceți un cod de recuperare'; +$a->strings['Sign out'] = 'Delogare'; +$a->strings['Trust this browser?'] = 'Aveți încredere în acest browser?'; +$a->strings['

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

    '] = '

    Dacă alegeți să aveți încredere în acest browser, nu veți mai fi întrebat(-ă) pentru un cod de verificare data viitoare când vă veți mai autentifica.

    '; +$a->strings['Not now'] = 'Nu acum'; +$a->strings['Don\'t trust'] = 'Nu aveți încredere'; +$a->strings['Trust'] = 'Aveți încredere'; +$a->strings['Please enter a code from your authentication app'] = 'Vă rugăm să introduceți un cod din aplicația dumneavoastră de autentificare.'; +$a->strings['Verify code and complete login'] = 'Verificați contul și intrați în cont'; +$a->strings['Wrong Password.'] = 'Parolă greșită.'; +$a->strings['Invalid email.'] = 'Email invalid.'; +$a->strings['Relocate message has been send to your contacts'] = 'Mesajul despre mutare, a fost trimis către contactele dvs.'; +$a->strings['Personal Page Subtypes'] = 'Subtipuri pagină personală'; +$a->strings['Community Group Subtypes'] = 'Subtipuri grup de comunitate'; +$a->strings['Account for a personal profile.'] = 'Cont pentru un profil personal.'; +$a->strings['Account for community discussions.'] = 'Cont pentru discuții de comunitate'; +$a->strings['Private Group [Experimental]'] = 'Grup privat [Experimental]'; +$a->strings['Requires manual approval of contact requests.'] = 'Necesită aprobarea manuală a cererilor de contact.'; +$a->strings['OpenID:'] = 'OpenID:'; +$a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Opţional) Permite acest OpenID să se conecteze la acest cont.'; +$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.'] = 'Profilul dumneavoastră va fi publicat în directorul local al acestui nod. Detaliile profilului dumneavoastră ar putea fi vizibile public, în funcție de setările de sistem.'; +$a->strings['Account Settings'] = 'Configurări Cont'; +$a->strings['Password Settings'] = 'Configurări Parolă'; +$a->strings['Leave password fields blank unless changing'] = 'Lăsaţi câmpurile, pentru parolă, goale dacă nu doriți să modificați'; +$a->strings['Password:'] = 'Parola:'; +$a->strings['Basic Settings'] = 'Configurări de Bază'; +$a->strings['Display name:'] = 'Numele afișat:'; +$a->strings['Email Address:'] = 'Adresa de email:'; +$a->strings['Your Timezone:'] = 'Fusul dvs. orar:'; +$a->strings['Your Language:'] = 'Limba dvs.:'; +$a->strings['Set the language we use to show you friendica interface and to send you emails'] = 'Setați limba pe care să o folosim în interfața Friendica și în care să vă trimitem email-urile'; +$a->strings['Default Post Location:'] = 'Locația Implicită pentru Postări'; +$a->strings['Use Browser Location:'] = 'Folosește Locația Navigatorului:'; +$a->strings['Security and Privacy Settings'] = 'Configurări de Securitate și Confidențialitate'; +$a->strings['Maximum Friend Requests/Day:'] = 'Solicitări de Prietenie, Maxime/Zi'; +$a->strings['(to prevent spam abuse)'] = '(Pentru a preveni abuzul de tip spam)'; +$a->strings['Anonymous visitors will only see your basic profile details. Your public posts and replies will still be freely accessible on the remote servers of your followers and through relays.'] = 'Vizitatorii anonimi vor vedea numai detaliile tale de bază. Postările și comentariile tale publice vor putea fi în continuare accesibile pe alte servere ale urmăritorilor tăi și prin relee.'; +$a->strings['Make public posts unlisted'] = 'Delistați postările publice'; +$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.'] = 'Postările dumneavoastră publice nu vor apărea pe paginile de comunitate sau în rezultatele de căutare și nici nu vor fi trimise către servere-releu. Cu toate acestea, ele încă mai pot apărea pe feed-uri publice ale altor servere.'; +$a->strings['Allow friends to post to your profile page?'] = 'Permiteți prietenilor să posteze pe pagina dvs. de profil ?'; +$a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'Contactele dumneavoastră vă pot scrie postări pe profil. Aceste postări vor fi distribuite către contactele dumneavoastră'; +$a->strings['Allow friends to tag your posts?'] = 'Permiteți prietenilor să vă eticheteze postările?'; +$a->strings['Your contacts can add additional tags to your posts.'] = 'Contactele dumneavoastră pot adăuga etichete adiționale în postările dumneavoastră.'; +$a->strings['Permit unknown people to send you private mail?'] = 'Permiteți persoanelor necunoscute să vă trimită mesaje private?'; +$a->strings['Maximum private messages per day from unknown people:'] = 'Maximum de mesaje private pe zi, de la persoanele necunoscute:'; +$a->strings['Default Post Permissions'] = 'Permisiuni Implicite Postări'; +$a->strings['Automatically expire posts after this many days:'] = 'Postările vor expira automat după atâtea zile:'; +$a->strings['If empty, posts will not expire. Expired posts will be deleted'] = 'Dacă se lasă necompletat, postările nu vor expira. Postările expirate vor fi şterse'; +$a->strings['Expire posts'] = 'Expiră postări'; +$a->strings['When activated, posts and comments will be expired.'] = 'Când va fi activată, postările și comentariile vor expira.'; +$a->strings['Notification Settings'] = 'Configurări de Notificare'; +$a->strings['Send a notification email when:'] = 'Trimiteți o notificare email atunci când:'; +$a->strings['You receive an introduction'] = 'Primiți o introducere'; +$a->strings['Your introductions are confirmed'] = 'Introducerile dvs. sunt confirmate'; +$a->strings['Someone writes on your profile wall'] = 'Cineva scrie pe perete dvs. de profil'; +$a->strings['Someone writes a followup comment'] = 'Cineva scrie un comentariu de urmărire'; +$a->strings['You receive a private message'] = 'Primiți un mesaj privat'; +$a->strings['You receive a friend suggestion'] = 'Primiți o sugestie de prietenie'; +$a->strings['You are tagged in a post'] = 'Sunteți etichetat într-o postare'; +$a->strings['Create a desktop notification when:'] = 'Creați o notificare desktop atunci când:'; +$a->strings['Someone tagged you'] = 'Cineva vă etichetează'; +$a->strings['Someone directly commented on your post'] = 'Cineva comentează direct la o postare a dumneavoastră'; +$a->strings['Someone liked your content'] = 'Cuiva îi place conținutul dumneavoastră'; +$a->strings['Someone shared your content'] = 'Cineva a distribuit conținutul dumneavoastră'; +$a->strings['Someone commented in your thread'] = 'Cineva a comentat în firul de conversație al dumneavoastră'; +$a->strings['Someone commented in a thread where you commented'] = 'Cineva a comentat într-un fir de conversație unde ați comentat și dumneavoastră'; +$a->strings['Someone commented in a thread where you interacted'] = 'Cineva a comentat într-un fir de conversație în care ați interacționat'; +$a->strings['Activate desktop notifications'] = 'Activați notificările desktop'; +$a->strings['Advanced Account/Page Type Settings'] = 'Configurări Avansate Cont/Tip Pagină'; +$a->strings['Change the behaviour of this account for special situations'] = 'Modificați comportamentul acestui cont pentru situațiile speciale'; +$a->strings['Relocate'] = 'Mutare'; +$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.'] = 'Dacă aţi mutat acest profil dintr-un alt server, şi unele dintre contactele dvs. nu primesc actualizările dvs., încercaţi să apăsați acest buton.'; +$a->strings['Resend relocate message to contacts'] = 'Retrimiteți contactelor, mesajul despre mutare'; +$a->strings['Addon Settings'] = 'Setări suplimente'; +$a->strings['Short name for the channel. It is displayed on the channels widget.'] = 'Numele scurt al acestui canal. Va fi afișat în widget-ul cu canale.'; +$a->strings['This page can be used to define your own channels.'] = 'Această pagină poate fi folosită pentru a vă defini propriile canale.'; +$a->strings['Add'] = 'Adăugare'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'A eşuat conectarea cu, contul de email, folosind configurările furnizate.'; +$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; +$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; +$a->strings['Email access is disabled on this site.'] = 'Accesul de email este dezactivat pe acest site.'; +$a->strings['None'] = 'Nimic'; +$a->strings['General Social Media Settings'] = 'Setări generale pentru Social Media'; +$a->strings['Only conversations my follows started'] = 'Doar conversații pe care urmăritorii mei le-au pornit'; +$a->strings['Conversations my follows started or commented on (default)'] = 'Conversații pe care urmăritorii mei le-au pornit sau la care au comentat (implicit)'; +$a->strings['Enable Content Warning'] = 'Activează avertismentul de conținut'; +$a->strings['Email/Mailbox Setup'] = 'Configurare E-Mail/Căsuță poştală'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Dacă doriţi să comunicaţi cu contactele de email folosind acest serviciu (opţional), vă rugăm să precizaţi cum doriți să vă conectaţi la căsuța dvs. poştală.'; +$a->strings['Last successful email check:'] = 'Ultima verificare, cu succes, a email-ului:'; +$a->strings['IMAP server name:'] = 'Nume server IMAP:'; +$a->strings['IMAP port:'] = 'IMAP port:'; +$a->strings['Security:'] = 'Securitate:'; +$a->strings['Email login name:'] = 'Nume email autentificare:'; +$a->strings['Email password:'] = 'Parolă de e-mail:'; +$a->strings['Reply-to address:'] = 'Adresă pentru răspuns:'; +$a->strings['Send public posts to all email contacts:'] = 'Trimiteți postările publice la toate contactele de email:'; +$a->strings['Action after import:'] = 'Acţiune după importare:'; +$a->strings['Move to folder'] = 'Mutare în dosar'; +$a->strings['Move to folder:'] = 'Mutare în dosarul:'; +$a->strings['Register additional accounts that are automatically connected to your existing account so you can manage them from this account.'] = 'Înregistrează conturi adiționale conectate automat la contul existent pentru a le administra din acest cont'; +$a->strings['Register an additional account'] = 'Înregistrează un cont adițional'; +$a->strings['Delegates'] = 'Delegați'; +$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.'] = 'Delegații sunt capabili să gestioneze toate aspectele acestui cont/pagină, cu excepţia configurărilor de bază ale contului. Vă rugăm să nu vă delegați, contul dvs. personal, cuiva în care nu aveţi încredere deplină.'; +$a->strings['Existing Page Delegates'] = 'Delegați Existenți Pagină'; +$a->strings['Potential Delegates'] = 'Potenţiali Delegaţi'; +$a->strings['No entries.'] = 'Nu există intrări.'; +$a->strings['Display Settings'] = 'Preferințe Ecran'; +$a->strings['General Theme Settings'] = 'Setări generale pentru teme'; +$a->strings['Custom Theme Settings'] = 'Setări personalizare temă'; +$a->strings['Content Settings'] = 'Setări de conținut'; +$a->strings['Theme settings'] = 'Configurări Temă'; +$a->strings['Display Theme:'] = 'Temă de afișat:'; +$a->strings['Mobile Theme:'] = 'Temă pentru mobil:'; +$a->strings['Number of items to display per page:'] = 'Numărul de elemente de afişat pe pagină:'; +$a->strings['Maximum of 100 items'] = 'Maxim 100 de elemente'; +$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Numărul de elemente de afişat pe pagină atunci când se vizualizează de pe dispozitivul mobil:'; +$a->strings['Update browser every xx seconds'] = 'Actualizare browser la fiecare fiecare xx secunde'; +$a->strings['Display emoticons'] = 'Afișează emoticoanele'; +$a->strings['When enabled, emoticons are replaced with matching symbols.'] = 'Când aceasta este activată, emoticoanele sunt înlocuite cu simboluri aferente acestora.'; +$a->strings['Infinite scroll'] = 'Derulare infinită'; +$a->strings['Enable timelines that you want to see in the channels widget. Bookmark timelines that you want to see in the top menu.'] = 'Activați cronologiile pe care vreți să le vedeți în widget-ul de canale. Marcați cronologiile pe care vreți să le vedeți în meniul de sus.'; +$a->strings['Channel languages:'] = 'Limbile canalelor:'; +$a->strings['Select all languages that you want to see in your channels.'] = 'Selectați toate limbile pe care vreți să le vedeți în canalele dumneavoastră.'; +$a->strings['Beginning of week:'] = 'Început de săptămână:'; +$a->strings['Default calendar view:'] = 'Vedere de calendar implicită:'; +$a->strings['Additional Features'] = 'Caracteristici Suplimentare'; +$a->strings['Connected Apps'] = 'Aplicații Conectate'; +$a->strings['Remove authorization'] = 'Eliminare autorizare'; +$a->strings['Display Name is required.'] = 'Este necesar un nume de afișat.'; +$a->strings['Profile couldn\'t be updated.'] = 'Profilul nu a putut fi actualizat.'; +$a->strings['Label:'] = 'Etichetă:'; +$a->strings['Value:'] = 'Valoare:'; +$a->strings['(click to open/close)'] = '(apăsați pentru a deschide/închide)'; +$a->strings['The homepage is verified. A rel="me" link back to your Friendica profile page was found on the homepage.'] = 'Pagina a fost verificată. Un link rel="me" către profilul dvs. de Friendica a fost găsit pe pagină.'; +$a->strings['Profile Actions'] = 'Acțiuni Profil'; +$a->strings['Edit Profile Details'] = 'Editare Detalii Profil'; +$a->strings['Change Profile Photo'] = 'Modificați Fotografia de Profil'; +$a->strings['Profile picture'] = 'Imagine profil'; +$a->strings['Location'] = 'Locaţie'; $a->strings['Miscellaneous'] = 'Diverse'; -$a->strings['year'] = 'an'; -$a->strings['month'] = 'lună'; -$a->strings['day'] = 'zi'; -$a->strings['never'] = 'niciodată'; -$a->strings['less than a second ago'] = 'acum mai puțin de o secundă'; -$a->strings['years'] = 'ani'; -$a->strings['months'] = 'luni'; -$a->strings['week'] = 'săptămână'; -$a->strings['weeks'] = 'săptămâni'; -$a->strings['days'] = 'zile'; -$a->strings['hour'] = 'oră'; -$a->strings['hours'] = 'ore'; -$a->strings['minute'] = 'minut'; -$a->strings['minutes'] = 'minute'; -$a->strings['second'] = 'secundă'; -$a->strings['seconds'] = 'secunde'; -$a->strings['%1$d %2$s ago'] = 'acum %1$d %2$s'; -$a->strings['%s\'s birthday'] = '%s\'s zi de naştere'; -$a->strings['Happy Birthday %s'] = 'La mulţi ani %s'; -$a->strings['Visible to everybody'] = 'Vizibil pentru toata lumea'; -$a->strings['show'] = 'afișare'; -$a->strings['don\'t show'] = 'nu afișa'; -$a->strings['[no subject]'] = '[fără subiect]'; -$a->strings['stopped following'] = 'urmărire întreruptă'; -$a->strings['Poke'] = 'Abordare'; -$a->strings['View Status'] = 'Vizualizare Status'; -$a->strings['View Profile'] = 'Vizualizare Profil'; -$a->strings['View Photos'] = 'Vizualizare Fotografii'; -$a->strings['Network Posts'] = 'Postări din Rețea'; -$a->strings['Edit Contact'] = 'Edit Contact'; -$a->strings['Drop Contact'] = 'Eliminare Contact'; -$a->strings['Send PM'] = 'Trimiteți mesaj personal'; -$a->strings['Welcome '] = 'Bine ați venit'; -$a->strings['Please upload a profile photo.'] = 'Vă rugăm să încărcaţi o fotografie de profil.'; -$a->strings['Welcome back '] = 'Bine ați revenit'; -$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.'] = 'Formarea codului de securitate, nu a fost corectă. Aceasta probabil s-a întâmplat pentru că formularul a fost deschis pentru prea mult timp ( >3 ore) înainte de a-l transmite.'; -$a->strings['event'] = 'eveniment'; -$a->strings['%1$s poked %2$s'] = '%1$s a abordat pe %2$s'; -$a->strings['poked'] = 'a fost abordat(ă)'; -$a->strings['post/item'] = 'post/element'; -$a->strings['%1$s marked %2$s\'s %3$s as favorite'] = '%1$s a marcat %3$s de la %2$s ca favorit'; -$a->strings['remove'] = 'eliminare'; -$a->strings['Delete Selected Items'] = 'Ștergeți Elementele Selectate'; -$a->strings['Follow Thread'] = 'Urmăriți Firul Conversației'; -$a->strings['%s likes this.'] = '%s apreciază aceasta.'; -$a->strings['%s doesn\'t like this.'] = '%s nu apreciază aceasta.'; -$a->strings['%2$d people like this'] = '%2$d persoane apreciază aceasta'; -$a->strings['%2$d people don\'t like this'] = '%2$d persoanenu apreciază aceasta'; -$a->strings['and'] = 'şi'; -$a->strings[', and %d other people'] = ', şi %d alte persoane'; -$a->strings['%s like this.'] = '%s apreciază aceasta.'; -$a->strings['%s don\'t like this.'] = '%s nu apreciază aceasta.'; -$a->strings['Visible to everybody'] = 'Vizibil pentru toți'; -$a->strings['Please enter a video link/URL:'] = 'Vă rugăm să introduceți un URL/legătură pentru clip video'; -$a->strings['Please enter an audio link/URL:'] = 'Vă rugăm să introduceți un URL/legătură pentru clip audio'; -$a->strings['Tag term:'] = 'Termen etichetare:'; -$a->strings['Where are you right now?'] = 'Unde vă aflați acum?'; -$a->strings['Delete item(s)?'] = 'Ștergeți element(e)?'; -$a->strings['Post to Email'] = 'Postați prin Email'; -$a->strings['Connectors disabled, since "%s" is enabled.'] = 'Conectorii au fost dezactivați, din moment ce "%s" este activat.'; -$a->strings['permissions'] = 'permisiuni'; -$a->strings['Post to Groups'] = 'Postați în Grupuri'; -$a->strings['Post to Contacts'] = 'Post către Contacte'; -$a->strings['Private post'] = 'Articol privat'; -$a->strings['view full size'] = 'vezi intreaga mărime'; -$a->strings['newer'] = 'mai noi'; -$a->strings['older'] = 'mai vechi'; -$a->strings['prev'] = 'preced'; -$a->strings['first'] = 'prima'; -$a->strings['last'] = 'ultima'; -$a->strings['next'] = 'următor'; -$a->strings['No contacts'] = 'Nici-un contact'; -$a->strings['%d Contact'] = [ - 0 => '%d Contact', - 1 => '%d Contacte', - 2 => '%d de Contacte', -]; -$a->strings['poke'] = 'abordare'; -$a->strings['ping'] = 'ping'; -$a->strings['pinged'] = 'i s-a trimis ping'; -$a->strings['prod'] = 'prod'; -$a->strings['prodded'] = 'i s-a atras atenția'; -$a->strings['slap'] = 'plesnire'; -$a->strings['slapped'] = 'a fost plesnit(ă)'; -$a->strings['finger'] = 'indicare'; -$a->strings['fingered'] = 'a fost indicat(ă)'; -$a->strings['rebuff'] = 'respingere'; -$a->strings['rebuffed'] = 'a fost respins(ă)'; -$a->strings['happy'] = 'fericit(ă)'; -$a->strings['sad'] = 'trist(ă)'; -$a->strings['mellow'] = 'trist(ă)'; -$a->strings['tired'] = 'obosit(ă)'; -$a->strings['perky'] = 'arogant(ă)'; -$a->strings['angry'] = 'supărat(ă)'; -$a->strings['stupified'] = 'stupefiat(ă)'; -$a->strings['puzzled'] = 'nedumerit(ă)'; -$a->strings['interested'] = 'interesat(ă)'; -$a->strings['bitter'] = 'amarnic'; -$a->strings['cheerful'] = 'vesel(ă)'; -$a->strings['alive'] = 'plin(ă) de viață'; -$a->strings['annoyed'] = 'enervat(ă)'; -$a->strings['anxious'] = 'neliniştit(ă)'; -$a->strings['cranky'] = 'irascibil(ă)'; -$a->strings['disturbed'] = 'perturbat(ă)'; -$a->strings['frustrated'] = 'frustrat(ă)'; -$a->strings['motivated'] = 'motivat(ă)'; -$a->strings['relaxed'] = 'relaxat(ă)'; -$a->strings['surprised'] = 'surprins(ă)'; -$a->strings['Monday'] = 'Luni'; -$a->strings['Tuesday'] = 'Marţi'; -$a->strings['Wednesday'] = 'Miercuri'; -$a->strings['Thursday'] = 'Joi'; -$a->strings['Friday'] = 'Vineri'; -$a->strings['Saturday'] = 'Sâmbătă'; -$a->strings['Sunday'] = 'Duminică'; -$a->strings['January'] = 'Ianuarie'; -$a->strings['February'] = 'Februarie'; -$a->strings['March'] = 'Martie'; -$a->strings['April'] = 'Aprilie'; -$a->strings['May'] = 'Mai'; -$a->strings['June'] = 'Iunie'; -$a->strings['July'] = 'Iulie'; -$a->strings['August'] = 'August'; -$a->strings['September'] = 'Septembrie'; -$a->strings['October'] = 'Octombrie'; -$a->strings['November'] = 'Noiembrie'; -$a->strings['December'] = 'Decembrie'; -$a->strings['bytes'] = 'octeţi'; -$a->strings['Click to open/close'] = 'Apăsați pentru a deschide/închide'; -$a->strings['default'] = 'implicit'; -$a->strings['Select an alternate language'] = 'Selectați o limbă alternativă'; -$a->strings['activity'] = 'activitate'; -$a->strings['post'] = 'postare'; -$a->strings['Item filed'] = 'Element îndosariat'; -$a->strings['Image/photo'] = 'Imagine/fotografie'; -$a->strings['%2$s %3$s'] = '%2$s %3$s'; -$a->strings['%s wrote the following post'] = '%s a scris următoarea postare'; -$a->strings['$1 wrote:'] = '$1 a scris:'; -$a->strings['Encrypted content'] = 'Conţinut criptat'; -$a->strings['(no subject)'] = '(fără subiect)'; -$a->strings['noreply'] = 'nu-răspundeţi'; -$a->strings['Cannot locate DNS info for database server \'%s\''] = 'Nu se pot localiza informațiile DNS pentru serverul de bază de date \'%s\''; -$a->strings['Unknown | Not categorised'] = 'Necunoscut | Fără categorie'; -$a->strings['Block immediately'] = 'Blocare Imediată'; -$a->strings['Shady, spammer, self-marketer'] = 'Dubioșii, spammerii, auto-promoterii'; -$a->strings['Known to me, but no opinion'] = 'Cunoscut mie, dar fără o opinie'; -$a->strings['OK, probably harmless'] = 'OK, probabil inofensiv'; -$a->strings['Reputable, has my trust'] = 'Cu reputație, are încrederea mea'; -$a->strings['Weekly'] = 'Săptămânal'; -$a->strings['Monthly'] = 'Lunar'; -$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['Diaspora Connector'] = 'Conector Diaspora'; -$a->strings['Statusnet'] = 'Statusnet'; -$a->strings['App.net'] = 'App.net'; -$a->strings[' on Last.fm'] = 'pe Last.fm'; -$a->strings['Starts:'] = 'Începe:'; -$a->strings['Finishes:'] = 'Se finalizează:'; -$a->strings['j F, Y'] = 'j F, Y'; -$a->strings['j F'] = 'j F'; -$a->strings['Birthday:'] = 'Zile Naştere :'; -$a->strings['Age:'] = 'Vârsta:'; -$a->strings['for %1$d %2$s'] = 'pentru %1$d %2$s'; -$a->strings['Tags:'] = 'Etichete:'; -$a->strings['Religion:'] = 'Religie:'; -$a->strings['Hobbies/Interests:'] = 'Hobby/Interese:'; -$a->strings['Contact information and Social Networks:'] = 'Informaţii de Contact şi Reţele Sociale:'; -$a->strings['Musical interests:'] = 'Preferințe muzicale:'; -$a->strings['Books, literature:'] = 'Cărti, literatură:'; -$a->strings['Television:'] = 'Programe TV:'; -$a->strings['Film/dance/culture/entertainment:'] = 'Film/dans/cultură/divertisment:'; -$a->strings['Love/Romance:'] = 'Dragoste/Romantism:'; -$a->strings['Work/employment:'] = 'Loc de Muncă/Slujbă:'; -$a->strings['School/education:'] = 'Școală/educatie:'; -$a->strings['Click here to upgrade.'] = 'Apăsați aici pentru a actualiza.'; -$a->strings['This action exceeds the limits set by your subscription plan.'] = 'Această acţiune depăşeşte limitele stabilite de planul abonamentului dvs.'; -$a->strings['This action is not available under your subscription plan.'] = 'Această acţiune nu este disponibilă în planul abonamentului dvs.'; -$a->strings['End this session'] = 'Finalizați această sesiune'; -$a->strings['Your posts and conversations'] = 'Postările şi conversaţiile dvs.'; -$a->strings['Your profile page'] = 'Pagina dvs. de profil'; -$a->strings['Your photos'] = 'Fotografiile dvs.'; -$a->strings['Your videos'] = 'Fișierele tale video'; -$a->strings['Your events'] = 'Evenimentele dvs.'; -$a->strings['Personal notes'] = 'Note Personale'; -$a->strings['Your personal notes'] = 'Notele tale personale'; -$a->strings['Sign in'] = 'Autentificare'; -$a->strings['Home Page'] = 'Home Pagina'; -$a->strings['Create an account'] = 'Creați un cont'; -$a->strings['Help and documentation'] = 'Ajutor şi documentaţie'; -$a->strings['Apps'] = 'Aplicații'; -$a->strings['Addon applications, utilities, games'] = 'Suplimente la aplicații, utilitare, jocuri'; -$a->strings['Search site content'] = 'Căutare în conținut site'; -$a->strings['Conversations on this site'] = 'Conversaţii pe acest site'; -$a->strings['Directory'] = 'Director'; -$a->strings['People directory'] = 'Director persoane'; -$a->strings['Information'] = 'Informaţii'; -$a->strings['Information about this friendica instance'] = 'Informaţii despre această instanță friendica'; -$a->strings['Conversations from your friends'] = 'Conversaţiile prieteniilor dvs.'; -$a->strings['Network Reset'] = 'Resetare Reţea'; -$a->strings['Load Network page with no filters'] = 'Încărcare pagina de Reţea fără filtre'; -$a->strings['Friend Requests'] = 'Solicitări Prietenie'; -$a->strings['See all notifications'] = 'Consultaţi toate notificările'; -$a->strings['Mark all system notifications seen'] = 'Marcaţi toate notificările de sistem, ca și vizualizate'; -$a->strings['Private mail'] = 'Mail privat'; -$a->strings['Inbox'] = 'Mesaje primite'; -$a->strings['Outbox'] = 'Căsuță de Ieșire'; -$a->strings['Manage'] = 'Gestionare'; -$a->strings['Manage other pages'] = 'Gestionează alte pagini'; -$a->strings['Account settings'] = 'Configurări Cont'; -$a->strings['Manage/Edit Profiles'] = 'Gestionare/Editare Profile'; -$a->strings['Manage/edit friends and contacts'] = 'Gestionare/Editare prieteni şi contacte'; -$a->strings['Site setup and configuration'] = 'Instalare şi configurare site'; -$a->strings['Navigation'] = 'Navigare'; -$a->strings['Site map'] = 'Hartă Site'; -$a->strings['User not found.'] = 'Utilizatorul nu a fost găsit.'; -$a->strings['There is no status with this id.'] = 'Nu există nici-un status cu acest id.'; -$a->strings['There is no conversation with this id.'] = 'Nu există nici-o conversație cu acest id.'; -$a->strings['Invalid request.'] = 'Cerere invalida'; -$a->strings['Invalid item.'] = 'Element invalid'; -$a->strings['DB error'] = 'Eroare BD'; -$a->strings['An invitation is required.'] = 'O invitaţie este necesară.'; -$a->strings['Invitation could not be verified.'] = 'Invitația nu s-a putut verifica.'; -$a->strings['Invalid OpenID url'] = 'URL OpenID invalid'; -$a->strings['Please enter the required information.'] = 'Vă rugăm să introduceți informațiile solicitate.'; -$a->strings['Please use a shorter name.'] = 'Vă rugăm să utilizaţi un nume mai scurt.'; -$a->strings['Name too short.'] = 'Numele este prea scurt.'; -$a->strings['That doesn\'t appear to be your full (First Last) name.'] = 'Acesta nu pare a fi Numele (Prenumele) dvs. complet'; -$a->strings['Your email domain is not among those allowed on this site.'] = 'Domeniul dvs. de email nu este printre cele permise pe acest site.'; -$a->strings['Not a valid email address.'] = 'Nu este o adresă vaildă de email.'; -$a->strings['Cannot use that email.'] = 'Nu se poate utiliza acest email.'; -$a->strings['Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.'] = ' "Pseudonimul" dvs. poate conţine numai "a-z", "0-9", "-",, şi "_", şi trebuie de asemenea să înceapă cu o literă.'; -$a->strings['Nickname is already registered. Please choose another.'] = 'Pseudonimul este deja înregistrat. Vă rugăm, alegeți un altul.'; -$a->strings['Nickname was once registered here and may not be re-used. Please choose another.'] = 'Pseudonimul a fost înregistrat aici, şi e posibil să nu mai poată fi reutilizat. Vă rugăm, alegeți altul.'; -$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'EROARE GRAVĂ: Generarea de chei de securitate a eşuat.'; -$a->strings['An error occurred during registration. Please try again.'] = 'A intervenit o eroare în timpul înregistrării. Vă rugăm să reîncercați.'; -$a->strings['An error occurred creating your default profile. Please try again.'] = 'A intervenit o eroare la crearea profilului dvs. implicit. Vă rugăm să reîncercați.'; -$a->strings['Friends'] = 'Prieteni'; -$a->strings['Sharing notification from Diaspora network'] = 'Partajarea notificării din reţeaua Diaspora'; -$a->strings['Attachments:'] = 'Atașări:'; -$a->strings['Do you really want to delete this item?'] = 'Sigur doriți să ștergeți acest element?'; -$a->strings['Archives'] = 'Arhive'; -$a->strings['Male'] = 'Bărbat'; -$a->strings['Female'] = 'Femeie'; -$a->strings['Currently Male'] = 'În prezent Bărbat'; -$a->strings['Currently Female'] = 'În prezent Femeie'; -$a->strings['Mostly Male'] = 'Mai mult Bărbat'; -$a->strings['Mostly Female'] = 'Mai mult Femeie'; -$a->strings['Transgender'] = 'Transsexual'; -$a->strings['Intersex'] = 'Intersexual'; -$a->strings['Transsexual'] = 'Transsexual'; -$a->strings['Hermaphrodite'] = 'Hermafrodit'; -$a->strings['Neuter'] = 'Neutru'; -$a->strings['Non-specific'] = 'Non-specific'; -$a->strings['Other'] = 'Alta'; -$a->strings['Undecided'] = 'Indecisă'; -$a->strings['Males'] = 'Bărbați'; -$a->strings['Females'] = 'Femei'; -$a->strings['Gay'] = 'Gay'; -$a->strings['Lesbian'] = 'Lesbiană'; -$a->strings['No Preference'] = 'Fără Preferințe'; -$a->strings['Bisexual'] = 'Bisexual'; -$a->strings['Autosexual'] = 'Autosexual'; -$a->strings['Abstinent'] = 'Abstinent(ă)'; -$a->strings['Virgin'] = 'Virgin(ă)'; -$a->strings['Deviant'] = 'Deviant'; -$a->strings['Fetish'] = 'Fetish'; -$a->strings['Oodles'] = 'La grămadă'; -$a->strings['Nonsexual'] = 'Nonsexual'; -$a->strings['Single'] = 'Necăsătorit(ă)'; -$a->strings['Lonely'] = 'Singur(ă)'; -$a->strings['Available'] = 'Disponibil(ă)'; -$a->strings['Unavailable'] = 'Indisponibil(ă)'; -$a->strings['Has crush'] = 'Îndrăgostit(ă)'; -$a->strings['Infatuated'] = 'Îndrăgostit(ă) nebunește'; -$a->strings['Dating'] = 'Am întâlniri'; -$a->strings['Unfaithful'] = 'Infidel(ă)'; -$a->strings['Sex Addict'] = 'Dependent(ă) de Sex'; -$a->strings['Friends/Benefits'] = 'Prietenii/Prestaţii'; -$a->strings['Casual'] = 'Ocazional'; -$a->strings['Engaged'] = 'Cuplat'; -$a->strings['Married'] = 'Căsătorit(ă)'; -$a->strings['Imaginarily married'] = 'Căsătorit(ă) imaginar'; -$a->strings['Partners'] = 'Parteneri'; -$a->strings['Cohabiting'] = 'În conviețuire'; -$a->strings['Common law'] = 'Drept Comun'; -$a->strings['Happy'] = 'Fericit(ă)'; -$a->strings['Not looking'] = 'Nu caut'; -$a->strings['Swinger'] = 'Swinger'; -$a->strings['Betrayed'] = 'Înșelat(ă)'; -$a->strings['Separated'] = 'Separat(ă)'; -$a->strings['Unstable'] = 'Instabil(ă)'; -$a->strings['Divorced'] = 'Divorţat(ă)'; -$a->strings['Imaginarily divorced'] = 'Divorţat(ă) imaginar'; -$a->strings['Widowed'] = 'Văduv(ă)'; -$a->strings['Uncertain'] = 'Incert'; -$a->strings['It\'s complicated'] = 'E complicat'; -$a->strings['Don\'t care'] = 'Nu-mi pasă'; -$a->strings['Ask me'] = 'Întreabă-mă'; -$a->strings['Friendica Notification'] = 'Notificare Friendica'; -$a->strings['Thank You,'] = 'Vă mulțumim,'; -$a->strings['%s Administrator'] = '%s Administrator'; -$a->strings['%s '] = '%s '; -$a->strings['[Friendica:Notify] New mail received at %s'] = '[Friendica:Notificare] Mail nou primit la %s'; -$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s v-a trimis un nou mesaj privat la %2$s.'; -$a->strings['%1$s sent you %2$s.'] = '%1$s v-a trimis %2$s'; -$a->strings['a private message'] = 'un mesaj privat'; -$a->strings['Please visit %s to view and/or reply to your private messages.'] = 'Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la mesaje private.'; -$a->strings['%1$s commented on [url=%2$s]a %3$s[/url]'] = '%1$s a comentat la [url=%2$s]a %3$s[/url]'; -$a->strings['%1$s commented on [url=%2$s]%3$s\'s %4$s[/url]'] = '%1$s a comentat la [url=%2$s]%4$s postat de %3$s[/url]'; -$a->strings['%1$s commented on [url=%2$s]your %3$s[/url]'] = '%1$s a comentat la [url=%2$s]%3$s dvs.[/url]'; -$a->strings['[Friendica:Notify] Comment to conversation #%1$d by %2$s'] = '[Friendica:Notificare] Comentariu la conversaţia #%1$d postată de %2$s'; -$a->strings['%s commented on an item/conversation you have been following.'] = '%s a comentat la un element/conversaţie pe care o urmăriți.'; -$a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la conversație.'; -$a->strings['[Friendica:Notify] %s posted to your profile wall'] = '[Friendica:Notificare] %s a postat pe peretele dvs. de profil'; -$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s a postat pe peretele dvs. de profil la %2$s'; -$a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s a postat pe [url=%2$s]peretele dvs.[/url]'; -$a->strings['[Friendica:Notify] %s tagged you'] = '[Friendica:Notificare] %s v-a etichetat'; -$a->strings['%1$s tagged you at %2$s'] = '%1$s v-a etichetat la %2$s'; -$a->strings['%1$s [url=%2$s]tagged you[/url].'] = '%1$s [url=%2$s]v-a etichetat[/url].'; -$a->strings['[Friendica:Notify] %s shared a new post'] = '[Friendica:Notificare] %s a distribuit o nouă postare'; -$a->strings['%1$s shared a new post at %2$s'] = '%1$s a distribuit o nouă postare la %2$s'; -$a->strings['%1$s [url=%2$s]shared a post[/url].'] = '%1$s [url=%2$s] a distribuit o postare[/url].'; -$a->strings['[Friendica:Notify] %1$s poked you'] = '[Friendica:Notificare] %1$s v-a abordat'; -$a->strings['%1$s poked you at %2$s'] = '%1$s v-a abordat la %2$s'; -$a->strings['%1$s [url=%2$s]poked you[/url].'] = '%1$s [url=%2$s]v-a abordat[/url].'; -$a->strings['[Friendica:Notify] %s tagged your post'] = '[Friendica:Notificare] %s v-a etichetat postarea'; -$a->strings['%1$s tagged your post at %2$s'] = '%1$sv-a etichetat postarea la %2$s'; -$a->strings['%1$s tagged [url=%2$s]your post[/url]'] = '%1$s a etichetat [url=%2$s]postarea dvs.[/url]'; -$a->strings['[Friendica:Notify] Introduction received'] = '[Friendica:Notificare] Prezentare primită'; -$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Aţi primit o prezentare de la \'%1$s\' at %2$s'; -$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Aţi primit [url=%1$s]o prezentare[/url] de la %2$s.'; -$a->strings['You may visit their profile at %s'] = 'Le puteți vizita profilurile, online pe %s'; -$a->strings['Please visit %s to approve or reject the introduction.'] = 'Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge prezentarea.'; -$a->strings['%1$s is sharing with you at %2$s'] = '%1$s împărtăşeşte cu dvs. la %2$s'; -$a->strings['[Friendica:Notify] You have a new follower'] = '[Friendica:Notify] Aveţi un nou susținător la'; -$a->strings['You have a new follower at %2$s : %1$s'] = 'Aveţi un nou susținător la %2$s : %1$s'; -$a->strings['[Friendica:Notify] Friend suggestion received'] = '[Friendica:Notificare] Ați primit o sugestie de prietenie'; -$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = 'Ați primit o sugestie de prietenie de la \'%1$s\' la %2$s'; -$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = 'Aţi primit [url=%1$s]o sugestie de prietenie[/url] pentru %2$s de la %3$s.'; -$a->strings['Name:'] = 'Nume:'; -$a->strings['Photo:'] = 'Foto:'; -$a->strings['Please visit %s to approve or reject the suggestion.'] = 'Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge sugestia.'; -$a->strings['[Friendica:Notify] Connection accepted'] = '[Friendica:Notificare] Conectare acceptată'; -$a->strings['Please visit %s to approve or reject the request.'] = 'Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge cererea.'; -$a->strings['Embedded content'] = 'Conţinut încorporat'; -$a->strings['Embedding disabled'] = 'Încorporarea conținuturilor este dezactivată'; +$a->strings['Custom Profile Fields'] = 'Câmpuri de profil personalizate'; +$a->strings['Upload Profile Photo'] = 'Încărcare Fotografie Profil'; +$a->strings['Street Address:'] = 'Strada:'; +$a->strings['Locality/City:'] = 'Localitate/Oraș:'; +$a->strings['Region/State:'] = 'Regiunea/Județul:'; +$a->strings['Postal/Zip Code:'] = 'Cod poștal:'; +$a->strings['Country:'] = 'Ţară:'; +$a->strings['XMPP (Jabber) address:'] = 'Adresă XMPP (Jabber):'; +$a->strings['Matrix (Element) address:'] = 'Adresă Matrix (Element):'; +$a->strings['Homepage URL:'] = 'Homepage URL:'; +$a->strings['Public Keywords:'] = 'Cuvinte cheie Publice:'; +$a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Utilizat pentru a sugera potențiali prieteni, ce pot fi văzuți de către ceilalți)'; +$a->strings['Private Keywords:'] = 'Cuvinte cheie Private:'; +$a->strings['(Used for searching profiles, never shown to others)'] = '(Utilizat pentru a căuta profile, niciodată afișat altora)'; +$a->strings['Image size reduction [%s] failed.'] = 'Reducerea dimensiunea imaginii [%s] a eşuat.'; +$a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Apăsați pe Shift și pe Reîncărcare Pagină sau ştergeţi memoria cache a browser-ului, dacă noua fotografie nu se afişează imediat.'; +$a->strings['Unable to process image'] = 'Nu s-a putut procesa imaginea.'; +$a->strings['Photo not found.'] = 'Fotografia nu a fost găsită.'; +$a->strings['Profile picture successfully updated.'] = 'Poza de profil a fost actualizată cu succes'; +$a->strings['Crop Image'] = 'Decupare Imagine'; +$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Vă rugăm să ajustaţi decuparea imaginii pentru o vizualizare optimă.'; +$a->strings['Profile Picture Settings'] = 'Setări poză de profil'; +$a->strings['Current Profile Picture'] = 'Fotografia de profil curentă'; +$a->strings['Upload Profile Picture'] = 'Încărcare fotografie de profil'; +$a->strings['Upload Picture:'] = 'Încarcă fotografia:'; +$a->strings['or'] = 'sau'; +$a->strings['skip this step'] = 'omiteți acest pas'; +$a->strings['select a photo from your photo albums'] = 'selectaţi o fotografie din albumele dvs. foto'; +$a->strings['User deleted their account'] = 'Utilizatorul și-a șters contul'; +$a->strings['Remove My Account'] = 'Șterge Contul Meu'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Aceasta va elimina complet contul dvs. Odată ce a fostă, această acțiune este nerecuperabilă.'; +$a->strings['Please enter your password for verification:'] = 'Vă rugăm să introduceţi parola dvs. pentru verificare:'; +$a->strings['Friendiqa on my Fairphone 2...'] = 'Friendiqa pe Fairphone 2...'; +$a->strings['Generate'] = 'Generează'; +$a->strings['Two-factor authentication successfully disabled.'] = 'Autentificarea cu doi factori a fost dezactivată cu succes'; +$a->strings['Recovery codes'] = 'Coduri de recupare'; +$a->strings['Remaining valid codes'] = 'Coduri de recuperare valide'; +$a->strings['Current password:'] = 'Parola curentă:'; +$a->strings['Manage app-specific passwords'] = 'Administrați parole specifice aplicațiilor'; +$a->strings['Manage trusted browsers'] = 'Administrați browsere de încredere'; +$a->strings['Export account'] = 'Exportare cont'; +$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.'] = 'Exportați-vă informațiile contului şi contactele. Utilizaţi aceasta pentru a face o copie de siguranţă a contului dumneavoastră şi/sau pentru a-l muta pe un alt server.'; +$a->strings['Export all'] = 'Exportare tot'; +$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)'] = 'Exportați-vă informațiile contului, contactele și toate elementele personale în format json. Fișierul poate fi unul foarte mare, astfel că poate lua mai mult timp. Utilizați aceasta pentru a face o copie completă de siguranță a contului dumneavoastră (fotografiile nu vor fi exportate).'; +$a->strings['Export Contacts to CSV'] = 'Exportare contacte ca CSV'; +$a->strings['Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon.'] = 'Exportă lista de conturi pe care le urmărești ca fișier CSV. Compatibil cu ex.: Mastodon'; +$a->strings['The top-level post isn\'t visible.'] = 'Postarea de nivel superior nu este vizibilă.'; +$a->strings['The top-level post was deleted.'] = 'Postarea de nivel superior a fost ștearsă.'; +$a->strings['You are now logged in as %s'] = 'V-ați logat ca %s'; +$a->strings['Switch between your accounts'] = 'Comutați conturile dvs.'; +$a->strings['Manage your accounts'] = 'Administrați-vă conturile'; +$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Comutați între diferitele identităţi sau pagini de comunitate/grup, care împărtășesc detaliile contului dvs. sau pentru care v-au fost acordate drepturi de "gestionare "'; +$a->strings['Select an identity to manage: '] = 'Selectaţi o identitate de gestionat:'; +$a->strings['Move account'] = 'Mutaţi contul'; +$a->strings['You can import an account from another Friendica server.'] = 'Puteţi importa un cont dintr-un alt server Friendica.'; +$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.'] = 'Trebuie să vă exportați contul din vechiul server și să-l încărcați aici. Vă vom recrea vechiul cont, aici cu toate contactele sale. Vom încerca de asemenea să vă informăm prietenii că v-ați mutat aici.'; +$a->strings['Account file'] = 'Fişier Cont'; +$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Pentru a vă exporta contul, accesați „Setări->Exportare date personale” și selectați „Exportare cont”'; $a->strings['Error decoding account file'] = 'Eroare la decodarea fişierului de cont'; $a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Eroare! Nu există data versiunii în fişier! Acesta nu este un fișier de cont Friendica?'; -$a->strings['Error! Cannot check nickname'] = 'Eroare! Nu pot verifica pseudonimul'; $a->strings['User \'%s\' already exists on this server!'] = 'Utilizatorul \'%s\' există deja pe acest server!'; $a->strings['User creation error'] = 'Eroare la crearea utilizatorului'; -$a->strings['User profile creation error'] = 'Eroare la crearea profilului utilizatorului'; $a->strings['%d contact not imported'] = [ 0 => '%d contact neimportat', 1 => '%d contacte neimportate', 2 => '%d de contacte neimportate', ]; +$a->strings['User profile creation error'] = 'Eroare la crearea profilului utilizatorului'; $a->strings['Done. You can now login with your username and password'] = 'Realizat. Vă puteţi conecta acum cu parola şi numele dumneavoastră de utilizator'; -$a->strings['toggle mobile'] = 'comutare mobil'; -$a->strings['Theme settings'] = 'Configurări Temă'; -$a->strings['Set resize level for images in posts and comments (width and height)'] = 'Stabiliți nivelul de redimensionare a imaginilor din postări și comentarii (lăţimea şi înălţimea)'; -$a->strings['Set font-size for posts and comments'] = 'Stabilire dimensiune font pentru postări şi comentarii'; -$a->strings['Set theme width'] = 'Stabilire lăţime temă'; -$a->strings['Color scheme'] = 'Schemă culoare'; -$a->strings['Set line-height for posts and comments'] = 'Stabilire înălțime linie pentru postări şi comentarii'; -$a->strings['Set colour scheme'] = 'Stabilire schemă de culori'; -$a->strings['Alignment'] = 'Aliniere'; -$a->strings['Left'] = 'Stânga'; -$a->strings['Center'] = 'Centrat'; -$a->strings['Posts font size'] = 'Dimensiune font postări'; -$a->strings['Textareas font size'] = 'Dimensiune font zone text'; -$a->strings['Set resolution for middle column'] = 'Stabilire rezoluţie pentru coloana din mijloc'; -$a->strings['Set color scheme'] = 'Stabilire schemă de culori'; -$a->strings['Set zoomfactor for Earth Layer'] = 'Stabilire factor de magnificare pentru Straturi Pământ'; -$a->strings['Set longitude (X) for Earth Layers'] = 'Stabilire longitudine (X) pentru Straturi Pământ'; -$a->strings['Set latitude (Y) for Earth Layers'] = 'Stabilire latitudine (Y) pentru Straturi Pământ'; -$a->strings['Community Pages'] = 'Community Pagini'; -$a->strings['Earth Layers'] = 'Straturi Pământ'; -$a->strings['Community Profiles'] = 'Profile de Comunitate'; -$a->strings['Help or @NewHere ?'] = 'Ajutor sau @NouAici ?'; -$a->strings['Connect Services'] = 'Conectare Servicii'; -$a->strings['Find Friends'] = 'Găsire Prieteni'; -$a->strings['Last users'] = 'Ultimii utilizatori'; -$a->strings['Last photos'] = 'Ultimele fotografii'; -$a->strings['Last likes'] = 'Ultimele aprecieri'; -$a->strings['Your contacts'] = 'Contactele dvs.'; -$a->strings['Your personal photos'] = 'Fotografii dvs. personale'; -$a->strings['Local Directory'] = 'Director Local'; -$a->strings['Set zoomfactor for Earth Layers'] = 'Stabilire factor de magnificare pentru Straturi Pământ'; -$a->strings['Show/hide boxes at right-hand column:'] = 'Afişare/ascundere casete din coloana din dreapta:'; -$a->strings['Set style'] = 'Stabilire stil'; -$a->strings['greenzero'] = 'zeroverde'; -$a->strings['purplezero'] = 'zeroviolet'; -$a->strings['darkzero'] = 'zeronegru'; -$a->strings['comix'] = 'comix'; -$a->strings['slackr'] = 'slackr'; -$a->strings['Variations'] = 'Variatii'; +$a->strings['Welcome to Friendica'] = 'Bun Venit la Friendica'; +$a->strings['New Member Checklist'] = 'Lista de Verificare Membrii Noi'; +$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.'] = 'Dorim să vă oferim câteva sfaturi şi legături pentru a vă ajuta să aveți o experienţă cât mai plăcută. Apăsați pe orice element pentru a vizita pagina relevantă. O legătură către această pagină va fi vizibilă de pe pagina principală, pentru două săptămâni după înregistrarea dvs. iniţială, iar apoi va dispare în tăcere.'; +$a->strings['Getting Started'] = 'Noțiuni de Bază'; +$a->strings['Friendica Walk-Through'] = 'Ghidul de Prezentare Friendica'; +$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.'] = 'Pe pagina dvs. de Pornire Rapidă - veți găsi o scurtă introducere pentru profilul dvs. şi pentru filele de reţea, veți face câteva conexiuni noi, şi veți găsi câteva grupuri la care să vă alăturați.'; +$a->strings['Go to Your Settings'] = 'Mergeți la Configurări'; +$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.'] = 'Din pagina dvs. de Configurări - schimbaţi-vă parola iniţială. De asemenea creați o notă pentru Adresa dvs. de Identificare. Aceasta arată exact ca o adresă de email - şi va fi utilă la stabilirea de prietenii pe rețeaua socială web gratuită.'; +$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.'] = 'Revizuiți celelalte configurări, în special configurările de confidenţialitate. O listă de directoare nepublicate este ca și cum ați avea un număr de telefon necatalogat. În general, ar trebui probabil să vă publicați lista - cu excepţia cazului în care toți prietenii şi potenţialii prieteni, știu exact cum să vă găsească.'; +$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.'] = 'Încărcaţi o fotografie de profil, dacă nu aţi făcut-o deja.Studiile au arătat că, pentru persoanele cu fotografiile lor reale, există de zece ori mai multe şanse să-și facă prieteni, decât cei care nu folosesc fotografii reale.'; +$a->strings['Edit Your Profile'] = 'Editare Profil'; +$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.'] = 'Editaţi-vă profilul Implicit după bunul plac. Revizuiți configurările pentru a ascunde lista dvs. de prieteni și pentru ascunderea profilului dvs., de vizitatorii necunoscuți.'; +$a->strings['Profile Keywords'] = 'Cuvinte-Cheie Profil'; +$a->strings['Connecting'] = 'Conectare'; +$a->strings['Importing Emails'] = 'Importare Email-uri'; +$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'] = 'Introduceţi informațiile dvs. de acces la email adresa de email, în pagina dvs. de Configurări Conector, dacă doriți să importați și să interacționați cu prietenii sau cu listele de email din Căsuța dvs. de Mesaje Primite.'; +$a->strings['Go to Your Contacts Page'] = 'Dute la pagina ta Contacte '; +$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.'] = 'Pagina dvs. de Contact este poarta dvs. de acces către administrarea prieteniilor şi pentru conectarea cu prietenii din alte rețele. În general, introduceți adresa lor sau URL-ul către site, folosind dialogul Adăugare Contact Nou.'; +$a->strings['Go to Your Site\'s Directory'] = 'Mergeţi la Directorul Site-ului'; +$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.'] = 'Pagina Directorului vă permite să găsiţi alte persoane în această reţea sau în alte site-uri asociate. Căutaţi o legătură de Conectare sau Urmărire pe pagina lor de profil. Oferiți propria dvs. Adresă de Identitate dacă se solicită.'; +$a->strings['Finding New People'] = 'Găsire Persoane Noi'; +$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.'] = 'Pe panoul lateral al paginii Contacte sunt câteva unelte utile pentru a găsi noi prieteni. Putem asocia persoanele după interese, căuta persoane după nume sau interes, şi vă putem oferi sugestii bazate pe relaţiile din reţea. Pe un site nou-nouț, sugestiile de prietenie vor începe în mod normal să fie populate în termen de 24 de ore.'; +$a->strings['Why Aren\'t My Posts Public?'] = 'De ce nu sunt Postările Mele Publice?'; +$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.'] = 'Friendica vă respectă confidenţialitatea. Implicit, postările dvs. vor fi afişate numai persoanelor pe care le-ați adăugat ca și prieteni. Pentru mai multe informaţii, consultaţi secţiunea de asistenţă din legătura de mai sus.'; +$a->strings['Getting Help'] = 'Obţinerea de Ajutor'; +$a->strings['Go to the Help Section'] = 'Navigați la Secțiunea Ajutor'; +$a->strings['Our help pages may be consulted for detail on other program features and resources.'] = 'Paginile noastre de ajutor pot fi consultate pentru detalii, prin alte funcții şi resurse de program.'; +$a->strings['%s liked %s\'s post'] = '%s a apreciat ceea a publicat %s'; +$a->strings['%s disliked %s\'s post'] = '%s a nu a apreciat ceea a publicat %s'; +$a->strings['%s is now friends with %s'] = '%s este acum prieten cu %s'; +$a->strings['%s commented on %s\'s post'] = '%s a comentat la articolul postat de %s'; +$a->strings['%s created a new post'] = '%s a creat o nouă postare'; +$a->strings['Friend Suggestion'] = 'Sugestie Prietenie'; +$a->strings['Friend/Connect Request'] = 'Prieten/Solicitare de Conectare'; +$a->strings['New Follower'] = 'Susţinător Nou'; +$a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s v-a trimis un nou mesaj privat la %2$s.'; +$a->strings['a private message'] = 'un mesaj privat'; +$a->strings['%1$s sent you %2$s.'] = '%1$s v-a trimis %2$s'; +$a->strings['Please visit %s to view and/or reply to your private messages.'] = 'Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la mesaje private.'; +$a->strings['%s commented on an item/conversation you have been following.'] = '%s a comentat la un element/conversaţie pe care o urmăriți.'; +$a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la conversație.'; +$a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s a postat pe peretele dvs. de profil la %2$s'; +$a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s a postat pe [url=%2$s]peretele dvs.[/url]'; +$a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Aţi primit o prezentare de la \'%1$s\' at %2$s'; +$a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Aţi primit [url=%1$s]o prezentare[/url] de la %2$s.'; +$a->strings['You may visit their profile at %s'] = 'Le puteți vizita profilurile, online pe %s'; +$a->strings['Please visit %s to approve or reject the introduction.'] = 'Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge prezentarea.'; +$a->strings['%1$s is sharing with you at %2$s'] = '%1$s împărtăşeşte cu dvs. la %2$s'; +$a->strings['You have a new follower at %2$s : %1$s'] = 'Aveţi un nou susținător la %2$s : %1$s'; +$a->strings['You\'ve received a friend suggestion from \'%1$s\' at %2$s'] = 'Ați primit o sugestie de prietenie de la \'%1$s\' la %2$s'; +$a->strings['You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'] = 'Aţi primit [url=%1$s]o sugestie de prietenie[/url] pentru %2$s de la %3$s.'; +$a->strings['Name:'] = 'Nume:'; +$a->strings['Photo:'] = 'Foto:'; +$a->strings['Please visit %s to approve or reject the suggestion.'] = 'Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge sugestia.'; +$a->strings['Please visit %s to approve or reject the request.'] = 'Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge cererea.'; +$a->strings['This message was sent to you by %s, a member of the Friendica social network.'] = 'Acest mesaj v-a fost trimis de către %s, un membru al rețelei sociale Friendica.'; +$a->strings['You may visit them online at %s'] = 'Îi puteți vizita profilul online la %s'; +$a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Vă rugăm să contactați expeditorul răspunzând la această postare, dacă nu doriţi să primiţi aceste mesaje.'; +$a->strings['%s posted an update.'] = '%s a postat o actualizare.'; +$a->strings['Private Message'] = ' Mesaj Privat'; +$a->strings['This entry was edited'] = 'Această intrare a fost editată'; +$a->strings['Edit'] = 'Edit'; +$a->strings['Ignore thread'] = 'Igonrați firul conversației'; +$a->strings['Unignore thread'] = 'Neignorați firul conversației'; +$a->strings['Reshare this'] = 'Redistribuie aceasta'; +$a->strings['Reshare'] = 'Redistribuie'; +$a->strings['Cancel your Reshare'] = 'Anulează redistribuția'; +$a->strings['to'] = 'către'; +$a->strings['via'] = 'via'; +$a->strings['Wall-to-Wall'] = 'Perete-prin-Perete'; +$a->strings['via Wall-To-Wall:'] = 'via Perete-Prin-Perete'; +$a->strings['Notifier task is pending'] = 'Sarcină de notificare în așteptare'; +$a->strings['Delivery to remote servers is pending'] = 'Livrarea către alte servere se află în așteptare'; +$a->strings['Delivery to remote servers is underway'] = 'Livrarea către alte servere este în desfășurare'; +$a->strings['Delivery to remote servers is mostly done'] = 'Livrarea către alte servere este în mare parte realizată'; +$a->strings['Delivery to remote servers is done'] = 'Livrarea către alte servere este complet realizată'; +$a->strings['%d comment'] = [ + 0 => '%d comentariu', + 1 => '%d comentarii', + 2 => '%d comentarii', +]; +$a->strings['Reshared by: %s'] = 'Redistribuit de: %s'; +$a->strings['following'] = 'urmărire'; +$a->strings['stopped following'] = 'urmărire întreruptă'; +$a->strings['Login failed.'] = 'Eşec la conectare'; +$a->strings['Please upload a profile photo.'] = 'Vă rugăm să încărcaţi o fotografie de profil.'; +$a->strings['Always open Compose page'] = 'Deschide mereu Pagina de compunere'; +$a->strings['Color scheme'] = 'Schemă de culori'; diff --git a/view/lang/ru/messages.po b/view/lang/ru/messages.po index ec8a6de6b..f2173ae43 100644 --- a/view/lang/ru/messages.po +++ b/view/lang/ru/messages.po @@ -1,10 +1,10 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: # Aleksandr "M.O.Z.G" Dikov , 2020 -# Alexander An , 2020-2022 +# Alexander An , 2020-2023 # Alex , 2012-2013 # soko1 , 2016 # vislav , 2014 @@ -24,539 +24,80 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-21 08:18+0000\n" +"POT-Creation-Date: 2023-10-15 13:49+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" -"Last-Translator: Alexander An , 2020-2022\n" -"Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n" +"Last-Translator: Alexander An , 2020-2023\n" +"Language-Team: Russian (http://app.transifex.com/Friendica/friendica/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: mod/cal.php:45 mod/cal.php:49 mod/follow.php:39 mod/redir.php:35 -#: mod/redir.php:176 src/Module/Conversation/Community.php:193 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 -#: src/Module/Item/Star.php:42 -msgid "Access denied." -msgstr "Доступ запрещен." - -#: mod/cal.php:62 mod/cal.php:79 mod/photos.php:68 mod/photos.php:139 -#: mod/photos.php:793 src/Model/Profile.php:234 src/Module/Feed.php:72 -#: src/Module/HCard.php:51 src/Module/Profile/Common.php:40 -#: src/Module/Profile/Common.php:51 src/Module/Profile/Contacts.php:39 -#: src/Module/Profile/Contacts.php:49 src/Module/Profile/Media.php:38 -#: src/Module/Profile/Status.php:58 src/Module/Register.php:267 -#: src/Module/RemoteFollow.php:59 -msgid "User not found." -msgstr "Пользователь не найден." - -#: mod/cal.php:121 mod/display.php:261 src/Module/Profile/Profile.php:93 -#: src/Module/Profile/Profile.php:108 src/Module/Profile/Status.php:109 -#: src/Module/Update/Profile.php:55 -msgid "Access to this profile has been restricted." -msgstr "Доступ к этому профилю ограничен." - -#: mod/cal.php:242 mod/events.php:375 src/Content/Nav.php:197 -#: src/Content/Nav.php:261 src/Module/BaseProfile.php:84 -#: src/Module/BaseProfile.php:95 view/theme/frio/theme.php:242 -#: view/theme/frio/theme.php:246 -msgid "Events" -msgstr "Мероприятия" - -#: mod/cal.php:243 mod/events.php:376 -msgid "View" -msgstr "Смотреть" - -#: mod/cal.php:244 mod/events.php:378 -msgid "Previous" -msgstr "Назад" - -#: mod/cal.php:245 mod/events.php:379 src/Module/Install.php:214 -msgid "Next" -msgstr "Далее" - -#: mod/cal.php:248 mod/events.php:384 src/Model/Event.php:460 -msgid "today" -msgstr "сегодня" - -#: mod/cal.php:249 mod/events.php:385 src/Model/Event.php:461 -#: src/Util/Temporal.php:342 -msgid "month" -msgstr "мес." - -#: mod/cal.php:250 mod/events.php:386 src/Model/Event.php:462 -#: src/Util/Temporal.php:343 -msgid "week" -msgstr "неделя" - -#: mod/cal.php:251 mod/events.php:387 src/Model/Event.php:463 -#: src/Util/Temporal.php:344 -msgid "day" -msgstr "день" - -#: mod/cal.php:252 mod/events.php:388 -msgid "list" -msgstr "список" - -#: mod/cal.php:264 src/Console/User.php:182 src/Model/User.php:663 -#: src/Module/Admin/Users/Active.php:73 src/Module/Admin/Users/Blocked.php:75 -#: src/Module/Admin/Users/Index.php:81 src/Module/Admin/Users/Pending.php:71 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -msgid "User not found" -msgstr "Пользователь не найден" - -#: mod/cal.php:273 -msgid "This calendar format is not supported" -msgstr "Этот формат календарей не поддерживается" - -#: mod/cal.php:275 -msgid "No exportable data found" -msgstr "Нет данных для экспорта" - -#: mod/cal.php:291 -msgid "calendar" -msgstr "календарь" - -#: mod/display.php:142 mod/photos.php:797 -#: src/Module/Conversation/Community.php:187 src/Module/Directory.php:48 -#: src/Module/Search/Index.php:64 -msgid "Public access denied." -msgstr "Свободный доступ закрыт." - -#: mod/display.php:212 mod/display.php:286 -msgid "The requested item doesn't exist or has been deleted." -msgstr "Запрошенная запись не существует или была удалена." - -#: mod/display.php:366 -msgid "The feed for this item is unavailable." -msgstr "Лента недоступна для этого объекта." - -#: mod/editpost.php:38 mod/events.php:218 mod/follow.php:56 mod/follow.php:130 -#: mod/item.php:181 mod/item.php:186 mod/item.php:864 mod/message.php:69 -#: mod/message.php:114 mod/notes.php:44 mod/ostatus_subscribe.php:33 -#: mod/photos.php:159 mod/photos.php:886 mod/repair_ostatus.php:31 -#: mod/settings.php:40 mod/settings.php:50 mod/settings.php:156 -#: mod/suggest.php:34 mod/uimport.php:33 mod/unfollow.php:35 -#: mod/unfollow.php:50 mod/unfollow.php:82 mod/wall_attach.php:66 -#: mod/wall_attach.php:68 mod/wall_upload.php:88 mod/wall_upload.php:90 -#: mod/wallmessage.php:37 mod/wallmessage.php:56 mod/wallmessage.php:90 -#: mod/wallmessage.php:110 src/Module/Attach.php:56 src/Module/BaseApi.php:94 -#: src/Module/BaseNotifications.php:98 src/Module/Contact/Advanced.php:60 -#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:38 -#: src/Module/FriendSuggest.php:57 src/Module/Group.php:40 -#: src/Module/Group.php:83 src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/Profile/Common.php:55 src/Module/Profile/Contacts.php:55 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:77 src/Module/Register.php:90 -#: src/Module/Register.php:206 src/Module/Register.php:245 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 -#: src/Module/Settings/Account.php:410 src/Module/Settings/Delegation.php:41 -#: src/Module/Settings/Delegation.php:69 src/Module/Settings/Display.php:41 -#: src/Module/Settings/Display.php:119 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:111 -#: src/Module/Settings/UserExport.php:58 src/Module/Settings/UserExport.php:92 -#: src/Module/Settings/UserExport.php:196 -#: src/Module/Settings/UserExport.php:216 -#: src/Module/Settings/UserExport.php:281 -msgid "Permission denied." -msgstr "Нет разрешения." - -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Элемент не найден" - -#: mod/editpost.php:64 -msgid "Edit post" -msgstr "Редактировать запись" - -#: mod/editpost.php:91 mod/notes.php:56 src/Content/Text/HTML.php:882 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -msgid "Save" -msgstr "Сохранить" - -#: mod/editpost.php:92 mod/photos.php:1333 src/Content/Conversation.php:342 -#: src/Object/Post.php:993 -msgid "Loading..." -msgstr "Загрузка..." - -#: mod/editpost.php:93 mod/message.php:201 mod/message.php:357 -#: mod/wallmessage.php:140 src/Content/Conversation.php:343 -msgid "Upload photo" -msgstr "Загрузить фото" - -#: mod/editpost.php:94 src/Content/Conversation.php:344 -msgid "upload photo" -msgstr "загрузить фото" - -#: mod/editpost.php:95 src/Content/Conversation.php:345 -msgid "Attach file" -msgstr "Прикрепить файл" - -#: mod/editpost.php:96 src/Content/Conversation.php:346 -msgid "attach file" -msgstr "приложить файл" - -#: mod/editpost.php:97 mod/message.php:202 mod/message.php:358 -#: mod/wallmessage.php:141 -msgid "Insert web link" -msgstr "Вставить веб-ссылку" - -#: mod/editpost.php:98 -msgid "web link" -msgstr "веб-ссылка" - -#: mod/editpost.php:99 -msgid "Insert video link" -msgstr "Вставить ссылку видео" - -#: mod/editpost.php:100 -msgid "video link" -msgstr "видео-ссылка" - -#: mod/editpost.php:101 -msgid "Insert audio link" -msgstr "Вставить ссылку аудио" - -#: mod/editpost.php:102 -msgid "audio link" -msgstr "аудио-ссылка" - -#: mod/editpost.php:103 src/Content/Conversation.php:356 -#: src/Module/Item/Compose.php:200 -msgid "Set your location" -msgstr "Задать ваше местоположение" - -#: mod/editpost.php:104 src/Content/Conversation.php:357 -msgid "set location" -msgstr "установить местонахождение" - -#: mod/editpost.php:105 src/Content/Conversation.php:358 -msgid "Clear browser location" -msgstr "Очистить местонахождение браузера" - -#: mod/editpost.php:106 src/Content/Conversation.php:359 -msgid "clear location" -msgstr "убрать местонахождение" - -#: mod/editpost.php:107 mod/message.php:203 mod/message.php:360 -#: mod/photos.php:1484 mod/wallmessage.php:142 -#: src/Content/Conversation.php:372 src/Content/Conversation.php:718 -#: src/Module/Item/Compose.php:204 src/Object/Post.php:538 -msgid "Please wait" -msgstr "Пожалуйста, подождите" - -#: mod/editpost.php:108 src/Content/Conversation.php:373 -msgid "Permission settings" -msgstr "Настройки разрешений" - -#: mod/editpost.php:116 src/Core/ACL.php:326 -msgid "CC: email addresses" -msgstr "Копии на email адреса" - -#: mod/editpost.php:117 src/Content/Conversation.php:383 -msgid "Public post" -msgstr "Публичная запись" - -#: mod/editpost.php:120 src/Content/Conversation.php:361 -#: src/Module/Item/Compose.php:205 -msgid "Set title" -msgstr "Установить заголовок" - -#: mod/editpost.php:122 src/Content/Conversation.php:363 -#: src/Module/Item/Compose.php:206 -msgid "Categories (comma-separated list)" -msgstr "Категории (список через запятую)" - -#: mod/editpost.php:123 src/Core/ACL.php:327 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Пример: bob@example.com, mary@example.com" - -#: mod/editpost.php:128 mod/events.php:514 mod/photos.php:1332 -#: mod/photos.php:1388 mod/photos.php:1462 src/Content/Conversation.php:387 -#: src/Module/Item/Compose.php:199 src/Object/Post.php:1003 -msgid "Preview" -msgstr "Просмотр" - -#: mod/editpost.php:130 mod/fbrowser.php:119 mod/fbrowser.php:146 -#: mod/follow.php:144 mod/photos.php:999 mod/photos.php:1100 mod/tagrm.php:35 -#: mod/tagrm.php:127 mod/unfollow.php:97 src/Content/Conversation.php:390 -#: src/Module/Contact/Revoke.php:109 src/Module/RemoteFollow.php:128 -#: src/Module/Security/TwoFactor/SignOut.php:126 -msgid "Cancel" -msgstr "Отмена" - -#: mod/editpost.php:134 src/Content/Conversation.php:347 -#: src/Module/Item/Compose.php:190 src/Object/Post.php:994 -msgid "Bold" -msgstr "Жирный" - -#: mod/editpost.php:135 src/Content/Conversation.php:348 -#: src/Module/Item/Compose.php:191 src/Object/Post.php:995 -msgid "Italic" -msgstr "Kурсивный" - -#: mod/editpost.php:136 src/Content/Conversation.php:349 -#: src/Module/Item/Compose.php:192 src/Object/Post.php:996 -msgid "Underline" -msgstr "Подчеркнутый" - -#: mod/editpost.php:137 src/Content/Conversation.php:350 -#: src/Module/Item/Compose.php:193 src/Object/Post.php:997 -msgid "Quote" -msgstr "Цитата" - -#: mod/editpost.php:138 src/Content/Conversation.php:351 -#: src/Module/Item/Compose.php:194 src/Object/Post.php:998 -msgid "Code" -msgstr "Код" - -#: mod/editpost.php:139 src/Content/Conversation.php:353 -#: src/Module/Item/Compose.php:196 src/Object/Post.php:1000 -msgid "Link" -msgstr "Ссылка" - -#: mod/editpost.php:140 src/Content/Conversation.php:354 -#: src/Module/Item/Compose.php:197 src/Object/Post.php:1001 -msgid "Link or Media" -msgstr "Ссылка или медиа" - -#: mod/editpost.php:143 src/Content/Conversation.php:397 -#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:465 -#: src/Module/Admin/Logs/View.php:93 -msgid "Message" -msgstr "Сообщение" - -#: mod/editpost.php:144 src/Content/Conversation.php:398 -#: src/Module/Settings/TwoFactor/Trusted.php:139 -msgid "Browser" -msgstr "Браузер" - -#: mod/editpost.php:145 mod/events.php:519 mod/photos.php:934 -#: mod/photos.php:1286 src/Content/Conversation.php:374 -msgid "Permissions" -msgstr "Разрешения" - -#: mod/editpost.php:147 src/Content/Conversation.php:400 -msgid "Open Compose page" -msgstr "Развернуть редактор" - -#: mod/events.php:124 mod/events.php:126 -msgid "Event can not end before it has started." -msgstr "Эвент не может закончится до старта." - -#: mod/events.php:132 mod/events.php:134 -msgid "Event title and start time are required." -msgstr "Название мероприятия и время начала обязательны для заполнения." - -#: mod/events.php:377 -msgid "Create New Event" -msgstr "Создать новое мероприятие" - -#: mod/events.php:475 src/Module/Admin/Logs/View.php:97 -msgid "Event details" -msgstr "Сведения о мероприятии" - -#: mod/events.php:476 -msgid "Starting date and Title are required." -msgstr "Необходима дата старта и заголовок." - -#: mod/events.php:477 mod/events.php:482 -msgid "Event Starts:" -msgstr "Начало мероприятия:" - -#: mod/events.php:477 mod/events.php:507 -#: src/Module/Admin/Blocklist/Server/Add.php:136 -#: src/Module/Admin/Blocklist/Server/Add.php:138 -#: src/Module/Admin/Blocklist/Server/Import.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:84 -#: src/Module/Admin/Blocklist/Server/Index.php:85 -#: src/Module/Admin/Blocklist/Server/Index.php:113 -#: src/Module/Admin/Blocklist/Server/Index.php:114 -#: src/Module/Admin/Item/Delete.php:69 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:207 src/Module/Install.php:240 -#: src/Module/Install.php:245 src/Module/Install.php:264 -#: src/Module/Install.php:275 src/Module/Install.php:280 -#: src/Module/Install.php:286 src/Module/Install.php:291 -#: src/Module/Install.php:305 src/Module/Install.php:320 -#: src/Module/Install.php:347 src/Module/Register.php:148 -#: src/Module/Security/TwoFactor/Verify.php:102 -#: src/Module/Settings/TwoFactor/Index.php:140 -#: src/Module/Settings/TwoFactor/Verify.php:154 -msgid "Required" -msgstr "Требуется" - -#: mod/events.php:490 mod/events.php:513 -msgid "Finish date/time is not known or not relevant" -msgstr "Дата/время окончания не известны, или не указаны" - -#: mod/events.php:492 mod/events.php:497 -msgid "Event Finishes:" -msgstr "Окончание мероприятия:" - -#: mod/events.php:503 src/Module/Profile/Profile.php:171 -#: src/Module/Settings/Profile/Index.php:238 -msgid "Description:" -msgstr "Описание:" - -#: mod/events.php:505 src/Content/Widget/VCard.php:105 src/Model/Event.php:80 -#: src/Model/Event.php:107 src/Model/Event.php:469 src/Model/Event.php:919 -#: src/Model/Profile.php:373 src/Module/Contact/Profile.php:371 -#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:186 -#: src/Module/Profile/Profile.php:193 -msgid "Location:" -msgstr "Откуда:" - -#: mod/events.php:507 mod/events.php:509 -msgid "Title:" -msgstr "Титул:" - -#: mod/events.php:510 mod/events.php:511 -msgid "Share this event" -msgstr "Поделиться этим мероприятием" - -#: mod/events.php:516 mod/message.php:204 mod/message.php:359 -#: mod/photos.php:916 mod/photos.php:1020 mod/photos.php:1290 -#: mod/photos.php:1331 mod/photos.php:1387 mod/photos.php:1461 -#: src/Module/Admin/Item/Source.php:60 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Profile.php:329 -#: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:145 -#: src/Module/Install.php:252 src/Module/Install.php:294 -#: src/Module/Install.php:331 src/Module/Invite.php:178 -#: src/Module/Item/Compose.php:189 src/Module/Profile/Profile.php:246 -#: src/Module/Settings/Profile/Index.php:222 src/Object/Post.php:992 -#: view/theme/duepuntozero/config.php:86 view/theme/frio/config.php:172 -#: view/theme/quattro/config.php:88 view/theme/vier/config.php:136 -msgid "Submit" -msgstr "Отправить" - -#: mod/events.php:517 src/Module/Profile/Profile.php:247 -msgid "Basic" -msgstr "Базовый" - -#: mod/events.php:518 src/Module/Admin/Site.php:437 src/Module/Contact.php:477 -#: src/Module/Profile/Profile.php:248 -msgid "Advanced" -msgstr "Расширенный" - -#: mod/events.php:535 -msgid "Failed to remove event" -msgstr "Ошибка удаления события" - -#: mod/fbrowser.php:61 src/Content/Nav.php:195 src/Module/BaseProfile.php:64 -#: view/theme/frio/theme.php:240 -msgid "Photos" -msgstr "Фото" - -#: mod/fbrowser.php:121 mod/fbrowser.php:148 -#: src/Module/Settings/Profile/Photo/Index.php:128 -msgid "Upload" -msgstr "Загрузить" - -#: mod/fbrowser.php:143 -msgid "Files" -msgstr "Файлы" - -#: mod/follow.php:74 mod/unfollow.php:96 src/Module/RemoteFollow.php:127 -msgid "Submit Request" -msgstr "Отправить запрос" - -#: mod/follow.php:84 -msgid "You already added this contact." -msgstr "Вы уже добавили этот контакт." - -#: mod/follow.php:100 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "Тип сети не может быть определен. Контакт не может быть добавлен." - -#: mod/follow.php:108 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Поддержка Diaspora не включена. Контакт не может быть добавлен." - -#: mod/follow.php:113 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Поддержка OStatus выключена. Контакт не может быть добавлен." - -#: mod/follow.php:138 src/Content/Item.php:401 src/Content/Widget.php:81 -#: src/Model/Contact.php:1194 src/Model/Contact.php:1205 -#: view/theme/vier/theme.php:199 -msgid "Connect/Follow" -msgstr "Подключиться/Подписаться" - -#: mod/follow.php:139 src/Module/RemoteFollow.php:126 -msgid "Please answer the following:" -msgstr "Пожалуйста, ответьте следующее:" - -#: mod/follow.php:140 mod/unfollow.php:94 -msgid "Your Identity Address:" -msgstr "Ваш адрес:" - -#: mod/follow.php:141 mod/unfollow.php:100 -#: src/Module/Admin/Blocklist/Contact.php:116 -#: src/Module/Contact/Profile.php:367 -#: src/Module/Notifications/Introductions.php:128 -#: src/Module/Notifications/Introductions.php:197 -msgid "Profile URL" -msgstr "URL профиля" - -#: mod/follow.php:142 src/Module/Contact/Profile.php:379 -#: src/Module/Notifications/Introductions.php:190 -#: src/Module/Profile/Profile.php:206 -msgid "Tags:" -msgstr "Ключевые слова: " - -#: mod/follow.php:153 -#, php-format -msgid "%s knows you" -msgstr "%s знают Вас" - -#: mod/follow.php:154 -msgid "Add a personal note:" -msgstr "Добавить личную заметку:" - -#: mod/follow.php:163 mod/unfollow.php:109 src/Module/BaseProfile.php:59 -#: src/Module/Contact.php:447 -msgid "Status Messages and Posts" -msgstr "Записи и статусы" - -#: mod/follow.php:191 -msgid "The contact could not be added." -msgstr "Не удалось добавить этот контакт." - -#: mod/item.php:131 mod/item.php:135 +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 msgid "Unable to locate original post." msgstr "Не удалось найти оригинальную запись." -#: mod/item.php:337 mod/item.php:342 -msgid "Empty post discarded." -msgstr "Пустое сообщение отбрасывается." - -#: mod/item.php:674 +#: mod/item.php:138 msgid "Post updated." msgstr "Запись обновлена." -#: mod/item.php:684 mod/item.php:689 +#: mod/item.php:203 mod/item.php:207 msgid "Item wasn't stored." msgstr "Запись не была сохранена." -#: mod/item.php:700 +#: mod/item.php:217 msgid "Item couldn't be fetched." msgstr "Не удалось получить запись." -#: mod/item.php:840 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "Пустое сообщение отбрасывается." + +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 -#: src/Module/Debug/ItemBody.php:57 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Пункт не найден." +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 +#: src/Module/Invite.php:42 src/Module/Invite.php:131 +#: src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Channels.php:56 src/Module/Settings/Channels.php:114 +#: src/Module/Settings/Delegation.php:90 src/Module/Settings/Display.php:90 +#: src/Module/Settings/Display.php:193 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:112 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/User/Import.php:84 src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "Нет разрешения." + #: mod/lostpass.php:40 msgid "No valid account found." msgstr "Не найдено действительного аккаунта." @@ -623,7 +164,7 @@ msgid "" "your email for further instructions." msgstr "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций." -#: mod/lostpass.php:130 src/Module/Security/Login.php:161 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " msgstr "Ник или E-mail: " @@ -631,7 +172,7 @@ msgstr "Ник или E-mail: " msgid "Reset" msgstr "Сброс" -#: mod/lostpass.php:146 src/Module/Security/Login.php:173 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 msgid "Password Reset" msgstr "Сброс пароля" @@ -691,127 +232,156 @@ msgstr "\n\t\t\tВаши данные для входа ниже:\n\n\t\t\tАд msgid "Your password has been changed at %s" msgstr "Ваш пароль был изменен %s" -#: mod/match.php:62 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "Нет совпадающих ключевых слов. Пожалуйста, добавьте ключевые слова в ваш профиль." - -#: mod/match.php:93 src/Module/BaseSearch.php:119 -msgid "No matches" -msgstr "Нет соответствий" - -#: mod/match.php:98 -msgid "Profile Match" -msgstr "Похожие профили" - -#: mod/message.php:46 mod/message.php:129 src/Content/Nav.php:289 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 msgid "New Message" msgstr "Новое сообщение" -#: mod/message.php:83 mod/wallmessage.php:70 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 msgid "No recipient selected." msgstr "Не выбран получатель." -#: mod/message.php:88 +#: mod/message.php:87 msgid "Unable to locate contact information." msgstr "Не удалось найти контактную информацию." -#: mod/message.php:92 mod/wallmessage.php:76 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 msgid "Message could not be sent." msgstr "Сообщение не может быть отправлено." -#: mod/message.php:96 mod/wallmessage.php:79 +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 msgid "Message collection failure." msgstr "Неудача коллекции сообщения." -#: mod/message.php:123 src/Module/Notifications/Introductions.php:134 -#: src/Module/Notifications/Introductions.php:169 +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 #: src/Module/Notifications/Notification.php:85 msgid "Discard" msgstr "Отказаться" -#: mod/message.php:136 src/Content/Nav.php:286 view/theme/frio/theme.php:247 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" msgstr "Сообщения" -#: mod/message.php:149 +#: mod/message.php:148 msgid "Conversation not found." msgstr "Беседа не найдена." -#: mod/message.php:154 +#: mod/message.php:153 msgid "Message was not deleted." msgstr "Сообщение не было удалено." -#: mod/message.php:169 +#: mod/message.php:168 msgid "Conversation was not removed." msgstr "Беседа не была удалена." -#: mod/message.php:183 mod/message.php:289 mod/wallmessage.php:124 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 msgid "Please enter a link URL:" msgstr "Пожалуйста, введите URL ссылки:" -#: mod/message.php:192 mod/wallmessage.php:129 +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 msgid "Send Private Message" msgstr "Отправить личное сообщение" -#: mod/message.php:193 mod/message.php:349 mod/wallmessage.php:131 +#: mod/message.php:191 mod/message.php:346 msgid "To:" msgstr "Кому:" -#: mod/message.php:194 mod/message.php:350 mod/wallmessage.php:132 +#: mod/message.php:192 mod/message.php:347 msgid "Subject:" msgstr "Тема:" -#: mod/message.php:198 mod/message.php:353 mod/wallmessage.php:138 -#: src/Module/Invite.php:171 +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 msgid "Your message:" msgstr "Ваше сообщение:" -#: mod/message.php:225 +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "Загрузить фото" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "Вставить веб-ссылку" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:587 +msgid "Please wait" +msgstr "Пожалуйста, подождите" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 +#: src/Module/Install.php:274 src/Module/Install.php:309 +#: src/Module/Invite.php:178 src/Module/Item/Compose.php:189 +#: src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 +#: src/Object/Post.php:1106 view/theme/duepuntozero/config.php:85 +#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Отправить" + +#: mod/message.php:223 msgid "No messages." msgstr "Нет сообщений." -#: mod/message.php:281 +#: mod/message.php:279 msgid "Message not available." msgstr "Сообщение не доступно." -#: mod/message.php:326 +#: mod/message.php:323 msgid "Delete message" msgstr "Удалить сообщение" -#: mod/message.php:328 mod/message.php:459 +#: mod/message.php:325 mod/message.php:456 msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:i A" -#: mod/message.php:343 mod/message.php:456 +#: mod/message.php:340 mod/message.php:453 msgid "Delete conversation" msgstr "Удалить историю общения" -#: mod/message.php:345 +#: mod/message.php:342 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Невозможно защищённое соединение. Вы имеете возможность ответить со страницы профиля отправителя." -#: mod/message.php:348 +#: mod/message.php:345 msgid "Send Reply" msgstr "Отправить ответ" -#: mod/message.php:430 +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "Неизвестный отправитель - %s" -#: mod/message.php:432 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "Вы и %s" -#: mod/message.php:434 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "%s и Вы" -#: mod/message.php:462 +#: mod/message.php:459 #, php-format msgid "%d message" msgid_plural "%d messages" @@ -820,817 +390,444 @@ msgstr[1] "%d сообщений" msgstr[2] "%d сообщений" msgstr[3] "%d сообщений" -#: mod/notes.php:51 src/Module/BaseProfile.php:106 +#: mod/notes.php:52 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "Личные заметки" -#: mod/notes.php:55 +#: mod/notes.php:56 msgid "Personal notes are visible only by yourself." msgstr "Личные заметки видны только вам." -#: mod/ostatus_subscribe.php:38 -msgid "Subscribing to contacts" -msgstr "Подписка на контакты" +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:161 +msgid "Save" +msgstr "Сохранить" -#: mod/ostatus_subscribe.php:47 -msgid "No contact provided." -msgstr "Не указан контакт." +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "Пользователь не найден." -#: mod/ostatus_subscribe.php:53 -msgid "Couldn't fetch information for contact." -msgstr "Невозможно получить информацию о контакте." - -#: mod/ostatus_subscribe.php:64 -msgid "Couldn't fetch friends for contact." -msgstr "Невозможно получить друзей для контакта." - -#: mod/ostatus_subscribe.php:70 mod/ostatus_subscribe.php:81 -msgid "Couldn't fetch following contacts." -msgstr "Не удалось загрузить контакты подписчиков." - -#: mod/ostatus_subscribe.php:76 -msgid "Couldn't fetch remote profile." -msgstr "Не получилось загрузить профиль." - -#: mod/ostatus_subscribe.php:86 -msgid "Unsupported network" -msgstr "Сеть не поддерживается" - -#: mod/ostatus_subscribe.php:102 mod/repair_ostatus.php:51 -msgid "Done" -msgstr "Готово" - -#: mod/ostatus_subscribe.php:116 -msgid "success" -msgstr "удачно" - -#: mod/ostatus_subscribe.php:118 -msgid "failed" -msgstr "неудача" - -#: mod/ostatus_subscribe.php:121 -msgid "ignored" -msgstr "игнорирован" - -#: mod/ostatus_subscribe.php:126 mod/repair_ostatus.php:57 -msgid "Keep this window open until done." -msgstr "Держать окно открытым до завершения." - -#: mod/photos.php:107 src/Module/BaseProfile.php:67 +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 msgid "Photo Albums" msgstr "Фотоальбомы" -#: mod/photos.php:108 mod/photos.php:1579 +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 msgid "Recent Photos" msgstr "Последние фото" -#: mod/photos.php:110 mod/photos.php:1068 mod/photos.php:1581 +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 msgid "Upload New Photos" msgstr "Загрузить новые фото" -#: mod/photos.php:128 src/Module/BaseSettings.php:35 +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 msgid "everybody" msgstr "все" -#: mod/photos.php:166 +#: mod/photos.php:159 msgid "Contact information unavailable" msgstr "Информация о контакте недоступна" -#: mod/photos.php:195 +#: mod/photos.php:188 msgid "Album not found." msgstr "Альбом не найден." -#: mod/photos.php:249 +#: mod/photos.php:244 msgid "Album successfully deleted" msgstr "Альбом успешно удалён" -#: mod/photos.php:251 +#: mod/photos.php:246 msgid "Album was empty." msgstr "Альбом был пуст." -#: mod/photos.php:283 +#: mod/photos.php:277 msgid "Failed to delete the photo." msgstr "Не получилось удалить фото." -#: mod/photos.php:552 +#: mod/photos.php:545 msgid "a photo" msgstr "фото" -#: mod/photos.php:552 +#: mod/photos.php:545 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s отмечен/а/ в %2$s by %3$s" -#: mod/photos.php:631 mod/photos.php:634 mod/photos.php:661 -#: mod/wall_upload.php:200 src/Module/Settings/Profile/Photo/Index.php:59 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Изображение превышает лимит размера в %s" +#: mod/photos.php:582 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Публичный доступ закрыт." -#: mod/photos.php:637 -msgid "Image upload didn't complete, please try again" -msgstr "Не получилось загрузить изображение, попробуйте снова" - -#: mod/photos.php:640 -msgid "Image file is missing" -msgstr "Файл изображения не найден" - -#: mod/photos.php:645 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "Сервер не принимает новые файлы для загрузки в настоящий момент, пожалуйста, свяжитесь с администратором" - -#: mod/photos.php:669 -msgid "Image file is empty." -msgstr "Файл изображения пуст." - -#: mod/photos.php:684 mod/wall_upload.php:162 -#: src/Module/Settings/Profile/Photo/Index.php:68 -msgid "Unable to process image." -msgstr "Невозможно обработать фото." - -#: mod/photos.php:710 mod/wall_upload.php:225 -#: src/Module/Settings/Profile/Photo/Index.php:95 -msgid "Image upload failed." -msgstr "Загрузка фото неудачная." - -#: mod/photos.php:802 +#: mod/photos.php:587 msgid "No photos selected" msgstr "Не выбрано фото." -#: mod/photos.php:871 -msgid "Access to this item is restricted." -msgstr "Доступ к этому пункту ограничен." +#: mod/photos.php:721 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "Максимально допустимый размер изображения %s" -#: mod/photos.php:926 +#: mod/photos.php:728 msgid "Upload Photos" msgstr "Загрузить фото" -#: mod/photos.php:930 mod/photos.php:1016 +#: mod/photos.php:732 mod/photos.php:820 msgid "New album name: " msgstr "Название нового альбома: " -#: mod/photos.php:931 +#: mod/photos.php:733 msgid "or select existing album:" msgstr "или выберите имеющийся альбом:" -#: mod/photos.php:932 +#: mod/photos.php:734 msgid "Do not show a status post for this upload" msgstr "Не показывать статус-сообщение для этой закачки" -#: mod/photos.php:997 +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "Разрешения" + +#: mod/photos.php:801 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Вы действительно хотите удалить этот альбом и все его фотографии?" -#: mod/photos.php:998 mod/photos.php:1021 +#: mod/photos.php:802 mod/photos.php:825 msgid "Delete Album" msgstr "Удалить альбом" -#: mod/photos.php:1025 +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Отмена" + +#: mod/photos.php:829 msgid "Edit Album" msgstr "Редактировать альбом" -#: mod/photos.php:1026 +#: mod/photos.php:830 msgid "Drop Album" msgstr "Удалить альбом" -#: mod/photos.php:1030 +#: mod/photos.php:834 msgid "Show Newest First" msgstr "Показать новые первыми" -#: mod/photos.php:1032 +#: mod/photos.php:836 msgid "Show Oldest First" msgstr "Показать старые первыми" -#: mod/photos.php:1053 mod/photos.php:1564 +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 msgid "View Photo" msgstr "Просмотр фото" -#: mod/photos.php:1086 +#: mod/photos.php:889 msgid "Permission denied. Access to this item may be restricted." msgstr "Нет разрешения. Доступ к этому элементу ограничен." -#: mod/photos.php:1088 +#: mod/photos.php:891 msgid "Photo not available" msgstr "Фото недоступно" -#: mod/photos.php:1098 +#: mod/photos.php:901 msgid "Do you really want to delete this photo?" msgstr "Вы действительно хотите удалить эту фотографию?" -#: mod/photos.php:1099 mod/photos.php:1291 +#: mod/photos.php:902 mod/photos.php:1102 msgid "Delete Photo" msgstr "Удалить фото" -#: mod/photos.php:1191 +#: mod/photos.php:1000 msgid "View photo" msgstr "Просмотр фото" -#: mod/photos.php:1193 +#: mod/photos.php:1002 msgid "Edit photo" msgstr "Редактировать фото" -#: mod/photos.php:1194 +#: mod/photos.php:1003 msgid "Delete photo" msgstr "Удалить фото" -#: mod/photos.php:1195 +#: mod/photos.php:1004 msgid "Use as profile photo" msgstr "Использовать как фото профиля" -#: mod/photos.php:1202 +#: mod/photos.php:1011 msgid "Private Photo" msgstr "Закрытое фото" -#: mod/photos.php:1208 +#: mod/photos.php:1017 msgid "View Full Size" msgstr "Просмотреть полный размер" -#: mod/photos.php:1259 +#: mod/photos.php:1070 msgid "Tags: " msgstr "Ключевые слова: " -#: mod/photos.php:1262 +#: mod/photos.php:1073 msgid "[Select tags to remove]" msgstr "[выберите тэги для удаления]" -#: mod/photos.php:1277 +#: mod/photos.php:1088 msgid "New album name" msgstr "Название нового альбома" -#: mod/photos.php:1278 +#: mod/photos.php:1089 msgid "Caption" msgstr "Подпись" -#: mod/photos.php:1279 +#: mod/photos.php:1090 msgid "Add a Tag" msgstr "Добавить тег" -#: mod/photos.php:1279 +#: mod/photos.php:1090 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1280 +#: mod/photos.php:1091 msgid "Do not rotate" msgstr "Не поворачивать" -#: mod/photos.php:1281 +#: mod/photos.php:1092 msgid "Rotate CW (right)" msgstr "Поворот по часовой стрелке (направо)" -#: mod/photos.php:1282 +#: mod/photos.php:1093 msgid "Rotate CCW (left)" msgstr "Поворот против часовой стрелки (налево)" -#: mod/photos.php:1328 mod/photos.php:1384 mod/photos.php:1458 -#: src/Module/Contact.php:547 src/Module/Item/Compose.php:188 -#: src/Object/Post.php:989 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1103 msgid "This is you" msgstr "Это вы" -#: mod/photos.php:1330 mod/photos.php:1386 mod/photos.php:1460 -#: src/Object/Post.php:532 src/Object/Post.php:991 +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:581 +#: src/Object/Post.php:1105 msgid "Comment" msgstr "Комментировать" -#: mod/photos.php:1419 src/Content/Conversation.php:634 -#: src/Object/Post.php:256 +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1119 +msgid "Preview" +msgstr "Просмотр" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1107 +msgid "Loading..." +msgstr "Загрузка..." + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:261 msgid "Select" msgstr "Выберите" -#: mod/photos.php:1420 mod/settings.php:350 src/Content/Conversation.php:635 -#: src/Module/Admin/Users/Active.php:139 -#: src/Module/Admin/Users/Blocked.php:141 src/Module/Admin/Users/Index.php:154 +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 msgid "Delete" msgstr "Удалить" -#: mod/photos.php:1481 src/Object/Post.php:379 +#: mod/photos.php:1298 src/Object/Post.php:409 msgid "Like" msgstr "Нравится" -#: mod/photos.php:1482 src/Object/Post.php:379 +#: mod/photos.php:1299 src/Object/Post.php:409 msgid "I like this (toggle)" msgstr "Нравится" -#: mod/photos.php:1483 src/Object/Post.php:380 +#: mod/photos.php:1300 src/Object/Post.php:410 msgid "Dislike" msgstr "Не нравится" -#: mod/photos.php:1485 src/Object/Post.php:380 +#: mod/photos.php:1302 src/Object/Post.php:410 msgid "I don't like this (toggle)" msgstr "Не нравится" -#: mod/photos.php:1507 +#: mod/photos.php:1324 msgid "Map" msgstr "Карта" -#: mod/photos.php:1570 -msgid "View Album" -msgstr "Просмотреть альбом" - -#: mod/redir.php:50 mod/redir.php:103 -msgid "Bad Request." -msgstr "Ошибочный запрос." - -#: mod/redir.php:56 mod/redir.php:130 src/Module/Contact/Advanced.php:70 -#: src/Module/Contact/Advanced.php:109 src/Module/Contact/Contacts.php:53 -#: src/Module/Contact/Conversations.php:79 -#: src/Module/Contact/Conversations.php:84 -#: src/Module/Contact/Conversations.php:89 src/Module/Contact/Media.php:43 -#: src/Module/Contact/Posts.php:73 src/Module/Contact/Posts.php:78 -#: src/Module/Contact/Posts.php:83 src/Module/Contact/Profile.php:143 -#: src/Module/Contact/Profile.php:148 src/Module/Contact/Profile.php:153 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 -#: src/Module/Group.php:97 src/Module/Group.php:106 -msgid "Contact not found." -msgstr "Контакт не найден." - -#: mod/removeme.php:65 src/Navigation/Notifications/Repository/Notify.php:467 -msgid "[Friendica System Notify]" -msgstr "[Системное уведомление Friendica]" - -#: mod/removeme.php:65 -msgid "User deleted their account" -msgstr "Пользователь удалил свою учётную запись" - -#: mod/removeme.php:66 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "Пользователь удалил свою учётную запись на вашем сервере Friendica. Пожалуйста, убедитесь, что их данные будут удалены из резервных копий." - -#: mod/removeme.php:67 -#, php-format -msgid "The user id is %d" -msgstr "id пользователя: %d" - -#: mod/removeme.php:101 mod/removeme.php:104 -msgid "Remove My Account" -msgstr "Удалить мой аккаунт" - -#: mod/removeme.php:102 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит." - -#: mod/removeme.php:103 -msgid "Please enter your password for verification:" -msgstr "Пожалуйста, введите свой пароль для проверки:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Переподписаться на OStatus-контакты." - -#: mod/repair_ostatus.php:46 src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Security/TwoFactor/Verify.php:99 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Ошибка" -msgstr[1] "Ошибки" -msgstr[2] "Ошибки" -msgstr[3] "Ошибки" - -#: mod/settings.php:122 -msgid "Failed to connect with email account using the settings provided." -msgstr "Не удалось подключиться к аккаунту e-mail, используя указанные настройки." - -#: mod/settings.php:175 -msgid "Connected Apps" -msgstr "Подключенные приложения" - -#: mod/settings.php:176 src/Module/Admin/Blocklist/Contact.php:106 -#: src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:131 src/Module/Admin/Users/Create.php:71 -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:143 -#: src/Module/Admin/Users/Index.php:163 src/Module/Admin/Users/Pending.php:104 -#: src/Module/Contact/Advanced.php:134 -msgid "Name" -msgstr "Имя" - -#: mod/settings.php:177 src/Content/Nav.php:215 -msgid "Home Page" -msgstr "Главная страница" - -#: mod/settings.php:178 src/Module/Admin/Queue.php:78 -msgid "Created" -msgstr "Создано" - -#: mod/settings.php:179 -msgid "Remove authorization" -msgstr "Удалить авторизацию" - -#: mod/settings.php:205 mod/settings.php:237 mod/settings.php:268 -#: mod/settings.php:352 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81 -#: src/Module/Admin/Site.php:432 src/Module/Admin/Themes/Index.php:113 -#: src/Module/Admin/Tos.php:83 src/Module/Settings/Account.php:563 -#: src/Module/Settings/Delegation.php:169 src/Module/Settings/Display.php:200 -msgid "Save Settings" -msgstr "Сохранить настройки" - -#: mod/settings.php:213 -msgid "Addon Settings" -msgstr "Настройки дополнений" - -#: mod/settings.php:214 -msgid "No Addon settings configured" -msgstr "Настройки дополнений не изменены" - -#: mod/settings.php:235 -msgid "Additional Features" -msgstr "Дополнительные возможности" - -#: mod/settings.php:273 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "enabled" -msgstr "подключено" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "disabled" -msgstr "отключено" - -#: mod/settings.php:273 mod/settings.php:274 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Встроенная поддержка для %s подключение %s" - -#: mod/settings.php:274 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: mod/settings.php:300 -msgid "Email access is disabled on this site." -msgstr "Доступ эл. почты отключен на этом сайте." - -#: mod/settings.php:305 mod/settings.php:350 -msgid "None" -msgstr "Ничего" - -#: mod/settings.php:311 src/Module/BaseSettings.php:78 -msgid "Social Networks" -msgstr "Социальные сети" - -#: mod/settings.php:316 -msgid "General Social Media Settings" -msgstr "Общие настройки социальных медиа" - -#: mod/settings.php:319 -msgid "Followed content scope" -msgstr "Какие записи показывать в ленте" - -#: mod/settings.php:321 -msgid "" -"By default, conversations in which your follows participated but didn't " -"start will be shown in your timeline. You can turn this behavior off, or " -"expand it to the conversations in which your follows liked a post." -msgstr "По-умолчанию в вашу ленту попадают и записи, которые ваши контакты не создали сами, а лишь прокомментировали. Вы можете отключить это, либо наоборот расширить до загрузки записей, которым ваши контакты поставили отметку \"нравится\"." - -#: mod/settings.php:323 -msgid "Only conversations my follows started" -msgstr "Только записи, созданные моими контактами" - -#: mod/settings.php:324 -msgid "Conversations my follows started or commented on (default)" -msgstr "Записи, которые мои контакты создали или прокомментировали (по-умолчанию)" - -#: mod/settings.php:325 -msgid "Any conversation my follows interacted with, including likes" -msgstr "Любые записи, с которыми мои контакты взаимодействовали, включая лайки" - -#: mod/settings.php:328 -msgid "Enable Content Warning" -msgstr "Включить предупреждение о контенте" - -#: mod/settings.php:328 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect any other content filtering you eventually set up." -msgstr "Пользователи некоторых сетей, таких как Mastodon или Pleroma, могут использовать \"предупреждение о контенте\", сворачивающее их записи. Эта настройка выключает это свёртывание вместо обычного помещения \"предупреждения о контенте\" в заголовок записи. Это не влияет на другие фильтры, которые вы можете настроить." - -#: mod/settings.php:329 -msgid "Enable intelligent shortening" -msgstr "Включить умное сокращение" - -#: mod/settings.php:329 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If disabled, every shortened post will always point to the original " -"friendica post." -msgstr "Обычно система пытается найти лучшую ссылку для добавления к сокращенной записи. Если эта настройка включена, то каждая сокращенная запись будет указывать на оригинальную запись в Friendica." - -#: mod/settings.php:330 -msgid "Enable simple text shortening" -msgstr "Включить простое сокращение текста" - -#: mod/settings.php:330 -msgid "" -"Normally the system shortens posts at the next line feed. If this option is " -"enabled then the system will shorten the text at the maximum character " -"limit." -msgstr "Обычно система обрезает записи на следующей строке. Если эта настройка включена, система будет сокращать записи по достижении лимита символов." - -#: mod/settings.php:331 -msgid "Attach the link title" -msgstr "Присоединять заголовок ссылок" - -#: mod/settings.php:331 -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:332 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "Ваша старая учётная запись ActivityPub/GNU Social" - -#: mod/settings.php:332 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "Если вы введете тут вашу старую учетную запись от платформы совместимой с ActivityPub или GNU Social/Statusnet (в виде пользователь@домен), ваши контакты оттуда будут автоматически добавлены. Поле будет очищено когда все контакты будут добавлены." - -#: mod/settings.php:335 -msgid "Repair OStatus subscriptions" -msgstr "Починить подписки OStatus" - -#: mod/settings.php:339 -msgid "Email/Mailbox Setup" -msgstr "Настройка эл. почты / почтового ящика" - -#: mod/settings.php:340 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику." - -#: mod/settings.php:341 -msgid "Last successful email check:" -msgstr "Последняя успешная проверка электронной почты:" - -#: mod/settings.php:343 -msgid "IMAP server name:" -msgstr "Имя IMAP сервера:" - -#: mod/settings.php:344 -msgid "IMAP port:" -msgstr "Порт IMAP:" - -#: mod/settings.php:345 -msgid "Security:" -msgstr "Безопасность:" - -#: mod/settings.php:346 -msgid "Email login name:" -msgstr "Логин эл. почты:" - -#: mod/settings.php:347 -msgid "Email password:" -msgstr "Пароль эл. почты:" - -#: mod/settings.php:348 -msgid "Reply-to address:" -msgstr "Адрес для ответа:" - -#: mod/settings.php:349 -msgid "Send public posts to all email contacts:" -msgstr "Отправлять открытые сообщения на все контакты электронной почты:" - -#: mod/settings.php:350 -msgid "Action after import:" -msgstr "Действие после импорта:" - -#: mod/settings.php:350 src/Content/Nav.php:283 -msgid "Mark as seen" -msgstr "Отметить, как прочитанное" - -#: mod/settings.php:350 -msgid "Move to folder" -msgstr "Переместить в папку" - -#: mod/settings.php:351 -msgid "Move to folder:" -msgstr "Переместить в папку:" - -#: mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа." - -#: mod/suggest.php:55 src/Content/Widget.php:84 view/theme/vier/theme.php:202 -msgid "Friend Suggestions" -msgstr "Предложения друзей" - -#: mod/tagger.php:77 src/Content/Item.php:301 src/Model/Item.php:2860 -msgid "photo" -msgstr "фото" - -#: mod/tagger.php:77 src/Content/Item.php:295 src/Content/Item.php:305 -msgid "status" -msgstr "статус" - -#: mod/tagger.php:110 src/Content/Item.php:315 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s tagged %2$s's %3$s в %4$s" - -#: mod/tagrm.php:113 -msgid "Remove Item Tag" -msgstr "Удалить ключевое слово" - -#: mod/tagrm.php:115 -msgid "Select a tag to remove: " -msgstr "Выберите ключевое слово для удаления: " - -#: mod/tagrm.php:126 src/Module/Settings/Delegation.php:178 -#: src/Module/Settings/TwoFactor/Trusted.php:143 -msgid "Remove" -msgstr "Удалить" - -#: mod/uimport.php:46 -msgid "User imports on closed servers can only be done by an administrator." -msgstr "Импорт пользователей на закрытых серверах может быть произведён только администратором." - -#: mod/uimport.php:55 src/Module/Register.php:99 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра." - -#: mod/uimport.php:62 src/Module/Register.php:173 -msgid "Import" -msgstr "Импорт" - -#: mod/uimport.php:64 -msgid "Move account" -msgstr "Удалить аккаунт" - -#: mod/uimport.php:65 -msgid "You can import an account from another Friendica server." -msgstr "Вы можете импортировать учетную запись с другого сервера Friendica." - -#: mod/uimport.php:66 -msgid "" -"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." -msgstr "Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда." - -#: mod/uimport.php:67 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "Это экспериментальная функция. Мы не можем импортировать контакты из сети OStatus (GNU Social/ StatusNet) или из Diaspora" - -#: mod/uimport.php:68 -msgid "Account file" -msgstr "Файл аккаунта" - -#: mod/uimport.php:68 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\"" - -#: mod/unfollow.php:65 mod/unfollow.php:134 -msgid "You aren't following this contact." -msgstr "Вы не подписаны на этот контакт." - -#: mod/unfollow.php:71 -msgid "Unfollowing is currently not supported by your network." -msgstr "Отписка в настоящий момент не предусмотрена этой сетью" - -#: mod/unfollow.php:92 -msgid "Disconnect/Unfollow" -msgstr "Отсоединиться/Отписаться" - -#: mod/unfollow.php:143 -msgid "Contact was successfully unfollowed" -msgstr "Подписка успешно удалена" - -#: mod/unfollow.php:146 -msgid "Unable to unfollow this contact, please contact your administrator" -msgstr "Не получается отписаться от этого контакта, пожалуйста, свяжитесь с вашим администратором" - -#: mod/wall_attach.php:39 mod/wall_attach.php:45 mod/wall_attach.php:74 -#: mod/wall_upload.php:53 mod/wall_upload.php:62 mod/wall_upload.php:96 -#: mod/wall_upload.php:147 mod/wall_upload.php:149 -msgid "Invalid request." -msgstr "Неверный запрос." - -#: mod/wall_attach.php:92 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Извините, похоже что загружаемый файл превышает лимиты, разрешенные конфигурацией PHP" - -#: mod/wall_attach.php:92 -msgid "Or - did you try to upload an empty file?" -msgstr "Или вы пытались загрузить пустой файл?" - -#: mod/wall_attach.php:103 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Файл превышает лимит размера в %s" - -#: mod/wall_attach.php:118 -msgid "File upload failed." -msgstr "Загрузка файла не удалась." - -#: mod/wall_upload.php:217 src/Model/Photo.php:1086 -msgid "Wall Photos" -msgstr "Фото стены" - -#: mod/wallmessage.php:62 mod/wallmessage.php:116 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.." - -#: mod/wallmessage.php:73 -msgid "Unable to check your home location." -msgstr "Невозможно проверить местоположение." - -#: mod/wallmessage.php:97 mod/wallmessage.php:104 -msgid "No recipient." -msgstr "Без адресата." - -#: mod/wallmessage.php:130 -#, 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 "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать личные сообщения от неизвестных отправителей." - -#: src/App.php:491 +#: src/App.php:473 msgid "No system theme config value set." msgstr "Настройки системной темы не установлены." -#: src/App.php:612 +#: src/App.php:580 msgid "Apologies but the website is unavailable at the moment." msgstr "Приносим извинения, но этот сервис сейчас недоступен." -#: src/App/Page.php:282 +#: src/App/Page.php:248 msgid "Delete this item?" msgstr "Удалить этот элемент?" -#: src/App/Page.php:283 +#: src/App/Page.php:249 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "Заблокировать этого автора? Они не смогут подписаться на вас или видеть ваши записи, вы не будете видеть их записи и получать от них уведомления." -#: src/App/Page.php:353 +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "Игнорировать этого автора? Вы не увидите их записи и уведомления." + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "Сворачивать записи этого автора?" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "Игнорировать сервер этого автора?" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "Вы не будете видеть любые записи с этого сервера, включая репосты, в вашей ленте, в сообществах и в комментариях." + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "Ошибка отправки \"мне нравится\"" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "Ошибка оправки \"мне не нравится\"" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "Ошибка при попытке поделиться" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "Ошибка обновления календаря" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "Ошибка бэкенда" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "Ошибка сети" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "Перетащите сюда файлы для загрузки" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "Ваш браузер не поддерживает перетаскивание файлов для загрузки" + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "Пожалуйста, используйте форму ниже для загрузки файлов" + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "Файл слишком большой ({{filesize}}MiB). Ограничение: {{maxFilesize}}MiB." + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "Нельзя загрузить этот тип файла." + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "Сервер ответил с кодом {{statusCode}}." + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "Отменить загрузку" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "Загрузка отменена" + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "Вы уверены, что хотите отменить загрузку?" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "Убрать файл" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "Вы не можете загрузить больше файлов." + +#: src/App/Page.php:351 msgid "toggle mobile" msgstr "мобильная версия" -#: src/App/Router.php:283 +#: src/App/Router.php:309 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Метод не разрешён для этого модуля. Разрешенный метод(ы): %s" -#: src/App/Router.php:285 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 msgid "Page not found." msgstr "Страница не найдена." -#: src/App/Router.php:313 +#: src/App/Router.php:323 msgid "You must be logged in to use addons. " msgstr "Вы должны войти в систему, чтобы использовать аддоны." -#: src/BaseModule.php:392 +#: src/BaseModule.php:403 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 "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки." -#: src/BaseModule.php:419 +#: src/BaseModule.php:430 msgid "All contacts" msgstr "Все контакты" -#: src/BaseModule.php:424 src/Content/Widget.php:236 src/Core/ACL.php:194 -#: src/Module/Contact.php:370 src/Module/PermissionTooltip.php:122 -#: src/Module/PermissionTooltip.php:144 +#: src/BaseModule.php:435 src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 +#: src/Module/Settings/Channels.php:120 msgid "Followers" msgstr "Подписаны на вас" -#: src/BaseModule.php:429 src/Content/Widget.php:237 -#: src/Module/Contact.php:371 +#: src/BaseModule.php:440 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 src/Module/Settings/Channels.php:119 msgid "Following" msgstr "Ваши подписки" -#: src/BaseModule.php:434 src/Content/Widget.php:238 -#: src/Module/Contact.php:372 +#: src/BaseModule.php:445 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 msgid "Mutual friends" msgstr "Взаимные друзья" -#: src/BaseModule.php:442 +#: src/BaseModule.php:453 msgid "Common" msgstr "Общее" @@ -1656,30 +853,30 @@ msgid "The contact entries have been archived" msgstr "Записи этого контакта были архивированы." #: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Не удалось найти контактных данных по этой ссылке (%s)" #: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:66 +#: src/Module/Moderation/Blocklist/Contact.php:82 msgid "The contact has been blocked from the node" msgstr "Контакт был заблокирован на узле." #: src/Console/MergeContacts.php:75 #, php-format msgid "%d %s, %d duplicates." -msgstr "" +msgstr "%d %s, %d дубликаты." #: src/Console/MergeContacts.php:78 #, php-format msgid "uri-id is empty for contact %s." -msgstr "" +msgstr "uri-id пустой для контакта %s." #: src/Console/MergeContacts.php:91 #, php-format msgid "No valid first contact found for uri-id %d." -msgstr "" +msgstr "Не найден первый контакт для uri-id %d." #: src/Console/MergeContacts.php:102 #, php-format @@ -1780,16 +977,25 @@ msgstr "Все операции по обновлению записей вып msgid "Enter user nickname: " msgstr "Введите ник пользователя:" +#: src/Console/User.php:182 src/Model/User.php:710 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "Пользователь не найден" + #: src/Console/User.php:202 msgid "Enter new password: " msgstr "Введите новый пароль:" -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:66 +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 #: src/Module/Settings/Account.php:75 msgid "Password update failed. Please try again." msgstr "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:69 +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 #: src/Module/Settings/Account.php:78 msgid "Password changed." msgstr "Пароль изменен." @@ -1879,10 +1085,14 @@ msgstr "OStatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:131 src/Module/Admin/Users/Create.php:73 -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:143 -#: src/Module/Admin/Users/Index.php:163 src/Module/Admin/Users/Pending.php:104 +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 msgid "Email" msgstr "Эл. почта" @@ -1938,266 +1148,532 @@ msgstr "ActivityPub" msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:178 +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "Tumblr" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "Bluesky" + +#: src/Content/ContactSelector.php:180 #, php-format msgid "%s (via %s)" msgstr "%s (через %s)" -#: src/Content/Conversation.php:211 -#, php-format -msgid "%s likes this." -msgstr "%s нравится это." - -#: src/Content/Conversation.php:214 -#, php-format -msgid "%s doesn't like this." -msgstr "%s не нравится это." - -#: src/Content/Conversation.php:217 -#, php-format -msgid "%s attends." -msgstr "%s посещает." - -#: src/Content/Conversation.php:220 -#, php-format -msgid "%s doesn't attend." -msgstr "%s не посетит." - -#: src/Content/Conversation.php:223 -#, php-format -msgid "%s attends maybe." -msgstr "%s может быть посетит." - -#: src/Content/Conversation.php:226 src/Content/Conversation.php:264 -#: src/Content/Conversation.php:878 -#, php-format -msgid "%s reshared this." -msgstr "%s поделился этим." - -#: src/Content/Conversation.php:232 +#: src/Content/Conversation.php:226 msgid "and" msgstr "и" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:229 #, php-format msgid "and %d other people" msgstr "и еще %d человек" +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "%2$s нравится это." +msgstr[1] "%2$s нравится это." +msgstr[2] "%2$s нравится это." +msgstr[3] "%2$s нравится это." + +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "%2$s не нравится это." +msgstr[1] "%2$s не нравится это." +msgstr[2] "%2$s не нравится это." +msgstr[3] "%2$s не нравится это." + +#: src/Content/Conversation.php:239 +#, php-format +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "%2$s посетит." +msgstr[1] "%2$s посетят." +msgstr[2] "%2$s посетят." +msgstr[3] "%2$s посетят." + +#: src/Content/Conversation.php:241 +#, php-format +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "%2$s не посетит." +msgstr[1] "%2$s не посетят." +msgstr[2] "%2$s не посетят." +msgstr[3] "%2$s не посетят." + #: src/Content/Conversation.php:243 #, php-format -msgid "%2$d people like this" -msgstr "%2$d людям нравится это" +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "%2$s может посетить." +msgstr[1] "%2$s могут посетить." +msgstr[2] "%2$s могут посетить." +msgstr[3] "%2$s могут посетить." -#: src/Content/Conversation.php:244 +#: src/Content/Conversation.php:245 #, php-format -msgid "%s like this." -msgstr "%s нравится это." +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "%2$s поделился этим." +msgstr[1] "%2$s поделились этим." +msgstr[2] "%2$s поделились этим." +msgstr[3] "%2$s поделились этим." -#: src/Content/Conversation.php:247 +#: src/Content/Conversation.php:274 #, php-format -msgid "%2$d people don't like this" -msgstr "%2$d людям не нравится это" +msgid " likes this" +msgid_plural " like this" +msgstr[0] " нравится это" +msgstr[1] " нравится это" +msgstr[2] " нравится это" +msgstr[3] " нравится это" -#: src/Content/Conversation.php:248 +#: src/Content/Conversation.php:277 #, php-format -msgid "%s don't like this." -msgstr "%s не нравится это" +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] " не нравится это" +msgstr[1] " не нравится это" +msgstr[2] " не нравится это" +msgstr[3] " не нравится это" -#: src/Content/Conversation.php:251 +#: src/Content/Conversation.php:280 #, php-format -msgid "%2$d people attend" -msgstr "%2$d человека посетят" +msgid " attends" +msgid_plural " attend" +msgstr[0] " посетит" +msgstr[1] " посетят" +msgstr[2] " посетят" +msgstr[3] " посетят" -#: src/Content/Conversation.php:252 +#: src/Content/Conversation.php:283 #, php-format -msgid "%s attend." -msgstr "%s посетит." +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] " не посетит" +msgstr[1] " не посетят" +msgstr[2] " не посетят" +msgstr[3] " не посетят" -#: src/Content/Conversation.php:255 +#: src/Content/Conversation.php:286 #, php-format -msgid "%2$d people don't attend" -msgstr "%2$d человек не посетит" +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] " возможно посетит" +msgstr[1] " возможно посетят" +msgstr[2] " возможно посетят" +msgstr[3] " возможно посетят" -#: src/Content/Conversation.php:256 +#: src/Content/Conversation.php:289 #, php-format -msgid "%s don't attend." -msgstr "%s не посетит" +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] " поделился этим" +msgstr[1] " поделились этим" +msgstr[2] " поделились этим" +msgstr[3] " поделились этим" -#: src/Content/Conversation.php:259 -#, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d человек может быть посетят" - -#: src/Content/Conversation.php:260 -#, php-format -msgid "%s attend maybe." -msgstr "%s может быть посетит." - -#: src/Content/Conversation.php:263 -#, php-format -msgid "%2$d people reshared this" -msgstr "%2$d людей поделились этим" - -#: src/Content/Conversation.php:311 +#: src/Content/Conversation.php:336 msgid "Visible to everybody" msgstr "Видимое всем" -#: src/Content/Conversation.php:312 src/Module/Item/Compose.php:198 -#: src/Object/Post.php:1002 +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1118 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Пожалуйста, введите адрес картинки/видео/аудио/странички:" -#: src/Content/Conversation.php:313 +#: src/Content/Conversation.php:338 msgid "Tag term:" msgstr "Тег:" -#: src/Content/Conversation.php:314 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 msgid "Save to Folder:" msgstr "Сохранить в папку:" -#: src/Content/Conversation.php:315 +#: src/Content/Conversation.php:340 msgid "Where are you right now?" msgstr "И где вы сейчас?" -#: src/Content/Conversation.php:316 +#: src/Content/Conversation.php:341 msgid "Delete item(s)?" msgstr "Удалить елемент(ты)?" -#: src/Content/Conversation.php:328 src/Module/Item/Compose.php:175 +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 msgid "Created at" msgstr "Создано" -#: src/Content/Conversation.php:338 +#: src/Content/Conversation.php:363 msgid "New Post" msgstr "Новая запись" -#: src/Content/Conversation.php:341 +#: src/Content/Conversation.php:366 msgid "Share" msgstr "Поделиться" -#: src/Content/Conversation.php:352 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:999 +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "загрузить фото" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Прикрепить файл" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "приложить файл" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1108 +msgid "Bold" +msgstr "Жирный" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1109 +msgid "Italic" +msgstr "Kурсивный" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1110 +msgid "Underline" +msgstr "Подчеркнутый" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1112 +msgid "Quote" +msgstr "Цитата" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1113 +msgid "Add emojis" +msgstr "Добавить эмодзи" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1111 +msgid "Content Warning" +msgstr "Предупреждение о контенте (CW)" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1114 +msgid "Code" +msgstr "Код" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1115 msgid "Image" msgstr "Изображение / Фото" -#: src/Content/Conversation.php:355 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1116 +msgid "Link" +msgstr "Ссылка" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1117 +msgid "Link or Media" +msgstr "Ссылка или медиа" + +#: src/Content/Conversation.php:382 msgid "Video" msgstr "Видео" -#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:222 +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "Задать ваше местоположение" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "установить местонахождение" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "Очистить местонахождение браузера" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "убрать местонахождение" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Установить заголовок" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Категории (список через запятую)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 msgid "Scheduled at" msgstr "Запланировано на" -#: src/Content/Conversation.php:662 src/Object/Post.php:244 -msgid "Pinned item" -msgstr "Закреплённая запись" +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Настройки разрешений" -#: src/Content/Conversation.php:678 src/Object/Post.php:486 -#: src/Object/Post.php:487 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Просмотреть профиль %s [@ %s]" +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Публичная запись" -#: src/Content/Conversation.php:691 src/Object/Post.php:474 -msgid "Categories:" -msgstr "Категории:" +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:132 +#: src/Model/Profile.php:479 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "Написать" -#: src/Content/Conversation.php:692 src/Object/Post.php:475 -msgid "Filed under:" -msgstr "В рубрике:" +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Браузер" -#: src/Content/Conversation.php:700 src/Object/Post.php:500 -#, php-format -msgid "%s from %s" -msgstr "%s из %s" +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" +msgstr "Развернуть редактор" -#: src/Content/Conversation.php:716 -msgid "View in context" -msgstr "Смотреть в контексте" - -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:595 msgid "remove" msgstr "удалить" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:599 msgid "Delete Selected Items" msgstr "Удалить выбранные позиции" -#: src/Content/Conversation.php:850 src/Content/Conversation.php:853 -#: src/Content/Conversation.php:856 src/Content/Conversation.php:859 +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 #, php-format msgid "You had been addressed (%s)." msgstr "К вам обратились (%s)." -#: src/Content/Conversation.php:862 +#: src/Content/Conversation.php:769 #, php-format msgid "You are following %s." msgstr "Вы подписаны на %s." -#: src/Content/Conversation.php:865 +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "Вы подписаны на %s." + +#: src/Content/Conversation.php:776 msgid "You subscribed to one or more tags in this post." msgstr "Вы подписаны на один или несколько тегов в этой записи." -#: src/Content/Conversation.php:880 +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "%s поделился этим." + +#: src/Content/Conversation.php:798 msgid "Reshared" msgstr "Репост" -#: src/Content/Conversation.php:880 +#: src/Content/Conversation.php:798 #, php-format msgid "Reshared by %s <%s>" msgstr "Репост от %s <%s>" -#: src/Content/Conversation.php:883 +#: src/Content/Conversation.php:801 #, php-format msgid "%s is participating in this thread." msgstr "%s участвует в этом обсуждении" -#: src/Content/Conversation.php:886 +#: src/Content/Conversation.php:804 msgid "Stored for general reasons" msgstr "Загружено по необходимости" -#: src/Content/Conversation.php:889 +#: src/Content/Conversation.php:807 msgid "Global post" msgstr "Глобальная запись" -#: src/Content/Conversation.php:892 +#: src/Content/Conversation.php:810 msgid "Sent via an relay server" msgstr "Прислано через релей" -#: src/Content/Conversation.php:892 +#: src/Content/Conversation.php:810 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "Прислано через релей %s <%s>" -#: src/Content/Conversation.php:895 +#: src/Content/Conversation.php:813 msgid "Fetched" msgstr "Загружено" -#: src/Content/Conversation.php:895 +#: src/Content/Conversation.php:813 #, php-format msgid "Fetched because of %s <%s>" msgstr "Загружено из-за %s <%s>" -#: src/Content/Conversation.php:898 +#: src/Content/Conversation.php:816 msgid "Stored because of a child post to complete this thread." msgstr "Загружено из-за комментария в этой ветке." -#: src/Content/Conversation.php:901 +#: src/Content/Conversation.php:819 msgid "Local delivery" -msgstr "" +msgstr "Местная доставка" -#: src/Content/Conversation.php:904 +#: src/Content/Conversation.php:822 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Загружено из-за ваших действий (лайк, комментарий, ...)" -#: src/Content/Conversation.php:907 +#: src/Content/Conversation.php:825 msgid "Distributed" msgstr "Распространено" -#: src/Content/Conversation.php:910 +#: src/Content/Conversation.php:828 msgid "Pushed to us" msgstr "Прислано нам" +#: src/Content/Conversation.php:1492 src/Object/Post.php:248 +msgid "Pinned item" +msgstr "Закреплённая запись" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:530 +#: src/Object/Post.php:531 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Просмотреть профиль %s [@ %s]" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:518 +msgid "Categories:" +msgstr "Категории:" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:519 +msgid "Filed under:" +msgstr "В рубрике:" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:544 +#, php-format +msgid "%s from %s" +msgstr "%s из %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "Смотреть в контексте" + +#: src/Content/Conversation/Factory/Channel.php:42 +msgid "For you" +msgstr "Для Вас" + +#: src/Content/Conversation/Factory/Channel.php:42 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "Записи от людей, с которыми вы часто общаетесь" + +#: src/Content/Conversation/Factory/Channel.php:43 +msgid "What's Hot" +msgstr "Популярное" + +#: src/Content/Conversation/Factory/Channel.php:43 +msgid "Posts with a lot of interactions" +msgstr "Записи с большой активностью" + +#: src/Content/Conversation/Factory/Channel.php:44 +#, php-format +msgid "Posts in %s" +msgstr "Записи от %s" + +#: src/Content/Conversation/Factory/Channel.php:45 +msgid "Posts from your followers that you don't follow" +msgstr "Записи от ваших подписчиков, на которых вы не подписаны" + +#: src/Content/Conversation/Factory/Channel.php:46 +msgid "Sharers of sharers" +msgstr "Друзья друзей" + +#: src/Content/Conversation/Factory/Channel.php:46 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "Записи от людей, на которых подписаны ваши контакты" + +#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Module/Settings/Channels.php:137 src/Module/Settings/Channels.php:153 +msgid "Images" +msgstr "Картинки" + +#: src/Content/Conversation/Factory/Channel.php:47 +msgid "Posts with images" +msgstr "Записи с изображениями" + +#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:155 +msgid "Audio" +msgstr "Аудио" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts with audio" +msgstr "Записи с аудио" + +#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Module/Settings/Channels.php:138 src/Module/Settings/Channels.php:154 +msgid "Videos" +msgstr "Видео" + +#: src/Content/Conversation/Factory/Channel.php:49 +msgid "Posts with videos" +msgstr "Записи с видео" + +#: src/Content/Conversation/Factory/Community.php:43 +msgid "Local Community" +msgstr "Местное сообщество" + +#: src/Content/Conversation/Factory/Community.php:43 +msgid "Posts from local users on this server" +msgstr "Записи пользователей с этого сервера" + +#: src/Content/Conversation/Factory/Community.php:47 +#: src/Module/Settings/Channels.php:118 +msgid "Global Community" +msgstr "Глобальное сообщество" + +#: src/Content/Conversation/Factory/Community.php:47 +msgid "Posts from users of the whole federated network" +msgstr "Записи пользователей со всей федеративной сети" + +#: src/Content/Conversation/Factory/Network.php:38 +msgid "Latest Activity" +msgstr "Вся активность" + +#: src/Content/Conversation/Factory/Network.php:38 +msgid "Sort by latest activity" +msgstr "Отсортировать по свежей активности" + +#: src/Content/Conversation/Factory/Network.php:39 +msgid "Latest Posts" +msgstr "Новые записи" + +#: src/Content/Conversation/Factory/Network.php:39 +msgid "Sort by post received date" +msgstr "Отсортировать по времени получения записей" + +#: src/Content/Conversation/Factory/Network.php:40 +msgid "Latest Creation" +msgstr "По времени" + +#: src/Content/Conversation/Factory/Network.php:40 +msgid "Sort by post creation date" +msgstr "Отсортировать по времени создания записей" + +#: src/Content/Conversation/Factory/Network.php:41 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "Личные" + +#: src/Content/Conversation/Factory/Network.php:41 +msgid "Posts that mention or involve you" +msgstr "Записи, которые упоминают вас или в которых вы участвуете" + +#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:381 +msgid "Starred" +msgstr "Избранное" + +#: src/Content/Conversation/Factory/Network.php:42 +msgid "Favourite Posts" +msgstr "Избранные записи" + #: src/Content/Feature.php:96 msgid "General Features" msgstr "Основные возможности" @@ -2227,13 +1703,13 @@ msgid "Post Composition Features" msgstr "Составление сообщений" #: src/Content/Feature.php:105 -msgid "Auto-mention Forums" -msgstr "Автоматически отмечать форумы" +msgid "Auto-mention Groups" +msgstr "Автоматически отмечать группы" #: src/Content/Feature.php:105 msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Добавлять/удалять упоминание, когда страница форума выбрана/убрана в списке получателей." +"Add/remove mention when a group page is selected/deselected in ACL window." +msgstr "Добавлять/удалять упоминание, когда страница группы выбрана/убрана в списке получателей." #: src/Content/Feature.php:106 msgid "Explicit Mentions" @@ -2273,12 +1749,12 @@ msgid "Advanced Profile Settings" msgstr "Расширенные настройки профиля" #: src/Content/Feature.php:119 -msgid "List Forums" -msgstr "Список форумов" +msgid "List Groups" +msgstr "Список групп" #: src/Content/Feature.php:119 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Показывать посетителям публичные форумы на расширенной странице профиля." +msgid "Show visitors public groups at the Advanced Profile Page" +msgstr "Показывать посетителям публичные группы на расширенной странице профиля." #: src/Content/Feature.php:120 msgid "Tag Cloud" @@ -2296,342 +1772,433 @@ msgstr "Показывать дату регистрации" msgid "Display membership date in profile" msgstr "Дата вашей регистрации будет отображаться в вашем профиле" -#: src/Content/ForumManager.php:152 src/Content/Nav.php:242 -#: src/Content/Text/HTML.php:903 src/Content/Widget.php:525 -msgid "Forums" -msgstr "Форумы" +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "Дополнительные настройки календаря" -#: src/Content/ForumManager.php:154 -msgid "External link to forum" -msgstr "Внешняя ссылка на форум" +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "Разрешить анонимный доступ к вашему календарю" -#: src/Content/ForumManager.php:157 src/Content/Widget.php:504 +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "Разрешает анонимным пользователям просматривать ваш календарь и публичные мероприятия. Дни рождения контактов видны только вам." + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1272 +msgid "Groups" +msgstr "Группы" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "Внешняя ссылка на группу" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 msgid "show less" msgstr "показать меньше" -#: src/Content/ForumManager.php:158 src/Content/Widget.php:406 -#: src/Content/Widget.php:505 +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 msgid "show more" msgstr "показать больше" -#: src/Content/Item.php:292 src/Model/Item.php:2858 +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "Создать новую группу" + +#: src/Content/Item.php:331 src/Model/Item.php:3080 msgid "event" msgstr "мероприятие" -#: src/Content/Item.php:384 view/theme/frio/theme.php:268 +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "статус" + +#: src/Content/Item.php:340 src/Model/Item.php:3082 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "фото" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s tagged %2$s's %3$s в %4$s" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 msgid "Follow Thread" msgstr "Подписаться на обсуждение" -#: src/Content/Item.php:385 src/Model/Contact.php:1199 +#: src/Content/Item.php:429 src/Model/Contact.php:1242 msgid "View Status" msgstr "Просмотреть статус" -#: src/Content/Item.php:386 src/Content/Item.php:404 -#: src/Model/Contact.php:1137 src/Model/Contact.php:1191 -#: src/Model/Contact.php:1200 src/Module/Directory.php:157 -#: src/Module/Settings/Profile/Index.php:225 +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1233 +#: src/Model/Contact.php:1243 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Просмотреть профиль" -#: src/Content/Item.php:387 src/Model/Contact.php:1201 +#: src/Content/Item.php:431 src/Model/Contact.php:1244 msgid "View Photos" msgstr "Просмотреть фото" -#: src/Content/Item.php:388 src/Model/Contact.php:1192 -#: src/Model/Contact.php:1202 +#: src/Content/Item.php:432 src/Model/Contact.php:1211 +#: src/Model/Profile.php:464 msgid "Network Posts" msgstr "Записи сети" -#: src/Content/Item.php:389 src/Model/Contact.php:1193 -#: src/Model/Contact.php:1203 +#: src/Content/Item.php:433 src/Model/Contact.php:1235 +#: src/Model/Contact.php:1246 msgid "View Contact" msgstr "Просмотреть контакт" -#: src/Content/Item.php:390 src/Model/Contact.php:1204 +#: src/Content/Item.php:434 src/Model/Contact.php:1247 msgid "Send PM" msgstr "Отправить ЛС" -#: src/Content/Item.php:391 src/Module/Admin/Blocklist/Contact.php:100 -#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:155 -#: src/Module/Contact.php:401 src/Module/Contact/Profile.php:350 -#: src/Module/Contact/Profile.php:451 +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 msgid "Block" msgstr "Заблокировать" -#: src/Content/Item.php:392 src/Module/Contact.php:402 -#: src/Module/Contact/Profile.php:351 src/Module/Contact/Profile.php:459 -#: src/Module/Notifications/Introductions.php:133 -#: src/Module/Notifications/Introductions.php:205 +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 #: src/Module/Notifications/Notification.php:89 msgid "Ignore" msgstr "Игнорировать" -#: src/Content/Item.php:396 src/Object/Post.php:455 +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "Сворачивать" + +#: src/Content/Item.php:438 src/Object/Post.php:289 +#, php-format +msgid "Ignore %s server" +msgstr "Игнорировать сервер %s " + +#: src/Content/Item.php:442 src/Object/Post.php:491 msgid "Languages" msgstr "Языки" -#: src/Content/Nav.php:91 +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1236 src/Model/Contact.php:1248 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Подключиться/Подписаться" + +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "Ошибка получения информации пользователя" + +#: src/Content/Nav.php:121 msgid "Nothing new here" msgstr "Ничего нового здесь" -#: src/Content/Nav.php:95 src/Module/Special/HTTPException.php:50 +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 msgid "Go back" msgstr "Назад" -#: src/Content/Nav.php:96 +#: src/Content/Nav.php:126 msgid "Clear notifications" msgstr "Стереть уведомления" -#: src/Content/Nav.php:97 src/Content/Text/HTML.php:890 -msgid "@name, !forum, #tags, content" -msgstr "@имя, !форум, #тег, контент" +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" +msgstr "@имя, !группа, #тег, контент" -#: src/Content/Nav.php:186 src/Module/Security/Login.php:158 +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 msgid "Logout" msgstr "Выход" -#: src/Content/Nav.php:186 +#: src/Content/Nav.php:222 msgid "End this session" msgstr "Завершить эту сессию" -#: src/Content/Nav.php:188 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:159 +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 msgid "Login" msgstr "Вход" -#: src/Content/Nav.php:188 +#: src/Content/Nav.php:224 msgid "Sign in" msgstr "Вход" -#: src/Content/Nav.php:193 src/Module/BaseProfile.php:56 -#: src/Module/Contact.php:436 src/Module/Contact/Profile.php:382 -#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:238 -msgid "Status" +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" msgstr "Записи" -#: src/Content/Nav.php:193 src/Content/Nav.php:276 -#: view/theme/frio/theme.php:238 -msgid "Your posts and conversations" -msgstr "Ваши записи и диалоги" +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "Ваши записи" -#: src/Content/Nav.php:194 src/Module/BaseProfile.php:48 -#: src/Module/BaseSettings.php:55 src/Module/Contact.php:460 -#: src/Module/Contact/Profile.php:384 src/Module/Profile/Profile.php:240 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 msgid "Profile" msgstr "Информация" -#: src/Content/Nav.php:194 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 msgid "Your profile page" msgstr "Информация о вас" -#: src/Content/Nav.php:195 view/theme/frio/theme.php:240 +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Фото" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 msgid "Your photos" msgstr "Ваши фотографии" -#: src/Content/Nav.php:196 src/Module/BaseProfile.php:72 -#: src/Module/BaseProfile.php:75 src/Module/Contact.php:452 -#: view/theme/frio/theme.php:241 +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 msgid "Media" msgstr "Медиа" -#: src/Content/Nav.php:196 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 msgid "Your postings with media" msgstr "Ваши записи с фото и видео" -#: src/Content/Nav.php:197 view/theme/frio/theme.php:242 -msgid "Your events" -msgstr "Ваши события" +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:310 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "Календарь" -#: src/Content/Nav.php:198 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "Ваш календарь" + +#: src/Content/Nav.php:234 msgid "Personal notes" msgstr "Личные заметки" -#: src/Content/Nav.php:198 +#: src/Content/Nav.php:234 msgid "Your personal notes" msgstr "Ваши личные заметки" -#: src/Content/Nav.php:215 src/Content/Nav.php:276 +#: src/Content/Nav.php:251 src/Content/Nav.php:308 msgid "Home" msgstr "Мой профиль" -#: src/Content/Nav.php:219 src/Module/Register.php:168 +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "Главная страница" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 #: src/Module/Security/Login.php:124 msgid "Register" msgstr "Регистрация" -#: src/Content/Nav.php:219 +#: src/Content/Nav.php:255 msgid "Create an account" msgstr "Создать аккаунт" -#: src/Content/Nav.php:225 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 #: src/Module/Settings/TwoFactor/Index.php:118 -#: src/Module/Settings/TwoFactor/Recovery.php:106 -#: src/Module/Settings/TwoFactor/Verify.php:145 view/theme/vier/theme.php:244 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 msgid "Help" msgstr "Помощь" -#: src/Content/Nav.php:225 +#: src/Content/Nav.php:261 msgid "Help and documentation" msgstr "Помощь и документация" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:265 msgid "Apps" msgstr "Приложения" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:265 msgid "Addon applications, utilities, games" msgstr "Дополнительные приложения, утилиты, игры" -#: src/Content/Nav.php:233 src/Content/Text/HTML.php:888 -#: src/Module/Admin/Logs/View.php:87 src/Module/Search/Index.php:111 +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 msgid "Search" msgstr "Поиск" -#: src/Content/Nav.php:233 +#: src/Content/Nav.php:269 msgid "Search site content" msgstr "Поиск по сайту" -#: src/Content/Nav.php:236 src/Content/Text/HTML.php:897 +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 msgid "Full Text" msgstr "Контент" -#: src/Content/Nav.php:237 src/Content/Text/HTML.php:898 +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 #: src/Content/Widget/TagCloud.php:68 msgid "Tags" msgstr "Тэги" -#: src/Content/Nav.php:238 src/Content/Nav.php:297 -#: src/Content/Text/HTML.php:899 src/Module/BaseProfile.php:125 -#: src/Module/BaseProfile.php:128 src/Module/Contact.php:373 -#: src/Module/Contact.php:467 view/theme/frio/theme.php:249 +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 msgid "Contacts" msgstr "Контакты" -#: src/Content/Nav.php:257 +#: src/Content/Nav.php:289 msgid "Community" msgstr "Сообщество" -#: src/Content/Nav.php:257 +#: src/Content/Nav.php:289 msgid "Conversations on this and other servers" msgstr "Диалоги на этом и других серверах" -#: src/Content/Nav.php:261 src/Module/BaseProfile.php:87 -#: src/Module/BaseProfile.php:98 view/theme/frio/theme.php:246 -msgid "Events and Calendar" -msgstr "Календарь и события" - -#: src/Content/Nav.php:264 +#: src/Content/Nav.php:296 msgid "Directory" msgstr "Каталог" -#: src/Content/Nav.php:264 +#: src/Content/Nav.php:296 msgid "People directory" msgstr "Каталог участников" -#: src/Content/Nav.php:266 src/Module/BaseAdmin.php:85 +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 msgid "Information" msgstr "Информация" -#: src/Content/Nav.php:266 +#: src/Content/Nav.php:298 msgid "Information about this friendica instance" msgstr "Информация об этом экземпляре Friendica" -#: src/Content/Nav.php:269 src/Module/Admin/Tos.php:76 -#: src/Module/BaseAdmin.php:96 src/Module/Register.php:176 -#: src/Module/Tos.php:87 +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 msgid "Terms of Service" msgstr "Условия оказания услуг" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:301 msgid "Terms of Service of this Friendica instance" msgstr "Условия оказания услуг для этого узла Friendica" -#: src/Content/Nav.php:274 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Network" msgstr "Новости" -#: src/Content/Nav.php:274 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Conversations from your friends" msgstr "Сообщения ваших друзей" -#: src/Content/Nav.php:280 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "Ваши записи и диалоги" + +#: src/Content/Nav.php:312 msgid "Introductions" msgstr "Запросы" -#: src/Content/Nav.php:280 +#: src/Content/Nav.php:312 msgid "Friend Requests" msgstr "Запросы на добавление в список друзей" -#: src/Content/Nav.php:281 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:74 +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 msgid "Notifications" msgstr "Уведомления" -#: src/Content/Nav.php:282 +#: src/Content/Nav.php:314 msgid "See all notifications" msgstr "Посмотреть все уведомления" -#: src/Content/Nav.php:283 +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Отметить, как прочитанное" + +#: src/Content/Nav.php:315 msgid "Mark all system notifications as seen" msgstr "Пометить все уведомления прочитанными" -#: src/Content/Nav.php:286 view/theme/frio/theme.php:247 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Private mail" msgstr "Личная почта" -#: src/Content/Nav.php:287 +#: src/Content/Nav.php:319 msgid "Inbox" msgstr "Входящие" -#: src/Content/Nav.php:288 +#: src/Content/Nav.php:320 msgid "Outbox" msgstr "Исходящие" -#: src/Content/Nav.php:292 +#: src/Content/Nav.php:324 msgid "Accounts" msgstr "Учётные записи" -#: src/Content/Nav.php:292 +#: src/Content/Nav.php:324 msgid "Manage other pages" msgstr "Управление другими страницами" -#: src/Content/Nav.php:295 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:122 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:248 +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 msgid "Settings" msgstr "Настройки" -#: src/Content/Nav.php:295 view/theme/frio/theme.php:248 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 msgid "Account settings" msgstr "Настройки аккаунта" -#: src/Content/Nav.php:297 view/theme/frio/theme.php:249 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 msgid "Manage/edit friends and contacts" msgstr "Управление / редактирование друзей и контактов" -#: src/Content/Nav.php:302 src/Module/BaseAdmin.php:126 +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 msgid "Admin" msgstr "Администратор" -#: src/Content/Nav.php:302 +#: src/Content/Nav.php:334 msgid "Site setup and configuration" msgstr "Конфигурация сайта" -#: src/Content/Nav.php:305 +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "Модерация" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "Модерация пользователей и контента" + +#: src/Content/Nav.php:338 msgid "Navigation" msgstr "Навигация" -#: src/Content/Nav.php:305 +#: src/Content/Nav.php:338 msgid "Site map" msgstr "Карта сайта" -#: src/Content/OEmbed.php:317 +#: src/Content/OEmbed.php:316 msgid "Embedding disabled" msgstr "Встраивание отключено" -#: src/Content/OEmbed.php:441 +#: src/Content/OEmbed.php:440 msgid "Embedded content" msgstr "Встроенное содержание" @@ -2651,71 +2218,71 @@ msgstr "след." msgid "last" msgstr "последний" -#: src/Content/Text/BBCode.php:1002 src/Content/Text/BBCode.php:1883 -#: src/Content/Text/BBCode.php:1884 +#: src/Content/Text/BBCode.php:751 src/Content/Text/BBCode.php:1692 +#: src/Content/Text/BBCode.php:1693 msgid "Image/photo" msgstr "Изображение / Фото" -#: src/Content/Text/BBCode.php:1238 +#: src/Content/Text/BBCode.php:969 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1263 src/Model/Item.php:3461 -#: src/Model/Item.php:3467 src/Model/Item.php:3468 +#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3813 +#: src/Model/Item.php:3819 src/Model/Item.php:3820 msgid "Link to source" msgstr "Ссылка на источник" -#: src/Content/Text/BBCode.php:1801 src/Content/Text/HTML.php:940 +#: src/Content/Text/BBCode.php:1599 src/Content/Text/HTML.php:904 msgid "Click to open/close" msgstr "Нажмите, чтобы открыть / закрыть" -#: src/Content/Text/BBCode.php:1832 +#: src/Content/Text/BBCode.php:1632 msgid "$1 wrote:" msgstr "$1 написал:" -#: src/Content/Text/BBCode.php:1888 src/Content/Text/BBCode.php:1889 +#: src/Content/Text/BBCode.php:1697 src/Content/Text/BBCode.php:1698 msgid "Encrypted content" msgstr "Зашифрованный контент" -#: src/Content/Text/BBCode.php:2109 +#: src/Content/Text/BBCode.php:1953 msgid "Invalid source protocol" msgstr "Неправильный протокол источника" -#: src/Content/Text/BBCode.php:2124 +#: src/Content/Text/BBCode.php:1972 msgid "Invalid link protocol" msgstr "Неправильная протокольная ссылка" -#: src/Content/Text/HTML.php:805 +#: src/Content/Text/HTML.php:782 msgid "Loading more entries..." msgstr "Загружаю больше сообщений..." -#: src/Content/Text/HTML.php:806 +#: src/Content/Text/HTML.php:783 msgid "The end" msgstr "Конец" -#: src/Content/Text/HTML.php:882 src/Content/Widget/VCard.php:110 -#: src/Model/Profile.php:459 +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:128 +#: src/Model/Profile.php:473 src/Module/Contact/Profile.php:471 msgid "Follow" -msgstr "Подписаться" +msgstr "Подписка" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:51 msgid "Add New Contact" msgstr "Добавить контакт" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:52 msgid "Enter address or web location" msgstr "Введите адрес или веб-местонахождение" -#: src/Content/Widget.php:54 +#: src/Content/Widget.php:53 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Пример: bob@example.com, http://example.com/barbara" -#: src/Content/Widget.php:56 +#: src/Content/Widget.php:55 msgid "Connect" msgstr "Подключить" -#: src/Content/Widget.php:73 +#: src/Content/Widget.php:72 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" @@ -2724,83 +2291,92 @@ msgstr[1] "%d приглашений доступно" msgstr[2] "%d приглашений доступно" msgstr[3] "%d приглашений доступно" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 msgid "Find People" msgstr "Поиск людей" -#: src/Content/Widget.php:80 view/theme/vier/theme.php:198 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 msgid "Enter name or interest" msgstr "Введите имя или интерес" -#: src/Content/Widget.php:82 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Примеры: Роберт Morgenstein, Рыбалка" -#: src/Content/Widget.php:83 src/Module/Contact.php:394 -#: src/Module/Directory.php:96 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 msgid "Find" msgstr "Найти" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:203 +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "Предложения друзей" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 msgid "Similar Interests" msgstr "Похожие интересы" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 msgid "Random Profile" msgstr "Случайный профиль" -#: src/Content/Widget.php:87 view/theme/vier/theme.php:205 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 msgid "Invite Friends" msgstr "Пригласить друзей" -#: src/Content/Widget.php:88 src/Module/Directory.php:88 -#: view/theme/vier/theme.php:206 +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 msgid "Global Directory" msgstr "Глобальный каталог" -#: src/Content/Widget.php:90 view/theme/vier/theme.php:208 +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 msgid "Local Directory" msgstr "Локальный каталог" -#: src/Content/Widget.php:212 src/Model/Group.php:587 -#: src/Module/Contact.php:357 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "Группы" +#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "Круги" -#: src/Content/Widget.php:214 +#: src/Content/Widget.php:217 msgid "Everyone" msgstr "Все" -#: src/Content/Widget.php:243 +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "Нет связи" + +#: src/Content/Widget.php:247 msgid "Relationships" msgstr "Отношения" -#: src/Content/Widget.php:245 src/Module/Contact.php:309 -#: src/Module/Group.php:291 +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 msgid "All Contacts" msgstr "Все контакты" -#: src/Content/Widget.php:284 +#: src/Content/Widget.php:288 msgid "Protocols" msgstr "Протоколы" -#: src/Content/Widget.php:286 +#: src/Content/Widget.php:290 msgid "All Protocols" msgstr "Все протоколы" -#: src/Content/Widget.php:314 +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "Сохранённые папки" -#: src/Content/Widget.php:316 src/Content/Widget.php:347 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "Всё" -#: src/Content/Widget.php:345 +#: src/Content/Widget.php:349 msgid "Categories" msgstr "Категории" -#: src/Content/Widget.php:402 +#: src/Content/Widget.php:406 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2809,39 +2385,48 @@ msgstr[1] "%d Контактов" msgstr[2] "%d Контактов" msgstr[3] "%d Контактов" -#: src/Content/Widget.php:498 +#: src/Content/Widget.php:506 msgid "Archives" msgstr "Архивы" -#: src/Content/Widget.php:522 +#: src/Content/Widget.php:514 +msgid "On this date" +msgstr "В этот день" + +#: src/Content/Widget.php:534 msgid "Persons" msgstr "Люди" -#: src/Content/Widget.php:523 +#: src/Content/Widget.php:535 msgid "Organisations" msgstr "Организации" -#: src/Content/Widget.php:524 src/Model/Contact.php:1630 +#: src/Content/Widget.php:536 src/Model/Contact.php:1714 msgid "News" msgstr "Новости" -#: src/Content/Widget.php:528 src/Module/Settings/Account.php:456 +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 msgid "Account Types" msgstr "Тип учетной записи" -#: src/Content/Widget.php:529 src/Module/Admin/BaseUsers.php:51 +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "Все" -#: src/Content/Widget/CalendarExport.php:54 +#: src/Content/Widget.php:591 src/Module/BaseSettings.php:125 +#: src/Module/Settings/Channels.php:157 src/Module/Settings/Display.php:309 +msgid "Channels" +msgstr "Каналы" + +#: src/Content/Widget/CalendarExport.php:56 msgid "Export" msgstr "Экспорт" -#: src/Content/Widget/CalendarExport.php:55 +#: src/Content/Widget/CalendarExport.php:57 msgid "Export calendar as ical" msgstr "Экспортировать календарь в формат ical" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:58 msgid "Export calendar as csv" msgstr "Экспортировать календарь в формат csv" @@ -2849,7 +2434,7 @@ msgstr "Экспортировать календарь в формат csv" msgid "No contacts" msgstr "Нет контактов" -#: src/Content/Widget/ContactBlock.php:108 +#: src/Content/Widget/ContactBlock.php:110 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -2858,19 +2443,19 @@ msgstr[1] "%d контактов" msgstr[2] "%d контактов" msgstr[3] "%d контактов" -#: src/Content/Widget/ContactBlock.php:125 +#: src/Content/Widget/ContactBlock.php:127 msgid "View Contacts" msgstr "Просмотр контактов" -#: src/Content/Widget/SavedSearches.php:48 +#: src/Content/Widget/SavedSearches.php:47 msgid "Remove term" msgstr "Удалить элемент" -#: src/Content/Widget/SavedSearches.php:61 +#: src/Content/Widget/SavedSearches.php:60 msgid "Saved Searches" msgstr "Сохранённые поиски" -#: src/Content/Widget/TrendingTags.php:51 +#: src/Content/Widget/TrendingTags.php:52 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" @@ -2879,58 +2464,83 @@ msgstr[1] "Популярные тэги (за %d часа)" msgstr[2] "Популярные тэги (за %d часов)" msgstr[3] "Популярные тэги (за %d часов)" -#: src/Content/Widget/TrendingTags.php:52 +#: src/Content/Widget/TrendingTags.php:53 msgid "More Trending Tags" msgstr "Больше популярных тэгов" -#: src/Content/Widget/VCard.php:103 src/Model/Profile.php:378 -#: src/Module/Contact/Profile.php:373 src/Module/Profile/Profile.php:175 +#: src/Content/Widget/VCard.php:107 src/Model/Contact.php:1204 +#: src/Model/Profile.php:457 +msgid "Post to group" +msgstr "Запись для группы" + +#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1209 +#: src/Model/Profile.php:462 src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "Отметка" + +#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:104 src/Model/Profile.php:379 -#: src/Module/Contact/Profile.php:375 src/Module/Profile/Profile.php:179 +#: src/Content/Widget/VCard.php:122 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:108 src/Model/Profile.php:471 -#: src/Module/Notifications/Introductions.php:200 +#: src/Content/Widget/VCard.php:123 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Откуда:" + +#: src/Content/Widget/VCard.php:126 src/Model/Profile.php:486 +#: src/Module/Notifications/Introductions.php:201 msgid "Network:" msgstr "Сеть:" -#: src/Content/Widget/VCard.php:112 src/Model/Profile.php:461 +#: src/Content/Widget/VCard.php:130 src/Model/Contact.php:1237 +#: src/Model/Contact.php:1249 src/Model/Profile.php:475 +#: src/Module/Contact/Profile.php:463 msgid "Unfollow" -msgstr "Отписаться" +msgstr "Отписка" -#: src/Core/ACL.php:165 src/Module/Profile/Profile.php:241 +#: src/Content/Widget/VCard.php:136 src/Model/Contact.php:1206 +#: src/Model/Profile.php:459 +msgid "View group" +msgstr "Просмотр группы" + +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 msgid "Yourself" msgstr "Вы" -#: src/Core/ACL.php:201 src/Module/PermissionTooltip.php:128 -#: src/Module/PermissionTooltip.php:150 +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 msgid "Mutuals" msgstr "Взаимные" -#: src/Core/ACL.php:293 +#: src/Core/ACL.php:294 msgid "Post to Email" msgstr "Отправить на Email" -#: src/Core/ACL.php:320 src/Module/PermissionTooltip.php:85 -#: src/Module/PermissionTooltip.php:197 +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 msgid "Public" msgstr "Публично" -#: src/Core/ACL.php:321 +#: src/Core/ACL.php:322 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "Это будет показано всем вашим подписчикам и так же будет доступно в общей ленте и по прямой ссылке." -#: src/Core/ACL.php:322 src/Module/PermissionTooltip.php:93 +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 msgid "Limited/Private" msgstr "Ограниченный доступ" -#: src/Core/ACL.php:323 +#: src/Core/ACL.php:324 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 " @@ -2938,40 +2548,54 @@ msgid "" msgstr "Это будет доступно только получателям, перечисленным в первом поле, за исключением тех, кто добавлен во второе поле. Нигде в открытом доступе это не появится." #: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." +msgstr "Начните набирать имя контакта или круга для появления списка. Вы так же можете выбрать специальные круги \"Подписаны на вас\" и \"Взаимные\"." + +#: src/Core/ACL.php:325 msgid "Show to:" msgstr "Доступно:" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:326 msgid "Except to:" msgstr "За исключением:" -#: src/Core/ACL.php:328 +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "Копии на email адреса" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Пример: bob@example.com, mary@example.com" + +#: src/Core/ACL.php:329 msgid "Connectors" msgstr "Соединители" -#: src/Core/Installer.php:183 +#: src/Core/Installer.php:180 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 "Не получается записать файл конфигурации базы данных \"config/local.config.php\". Пожалуйста, создайте этот файл в корневом каталоге веб-сервера вручную, вставив в него приведённые здесь данные." -#: src/Core/Installer.php:200 +#: src/Core/Installer.php:197 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL." -#: src/Core/Installer.php:201 src/Module/Install.php:213 -#: src/Module/Install.php:372 +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "Пожалуйста посмотрите файл \"doc/INSTALL.md\"." -#: src/Core/Installer.php:262 +#: src/Core/Installer.php:259 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Не удалось найти PATH веб-сервера в установках PHP." -#: src/Core/Installer.php:263 +#: src/Core/Installer.php:260 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 "Если у вас нет доступа к командной строке PHP на вашем сервере, вы не сможете использовать фоновые задания. Посмотрите 'Настройка фоновых заданий'" -#: src/Core/Installer.php:268 +#: src/Core/Installer.php:265 msgid "PHP executable path" msgstr "PHP executable path" -#: src/Core/Installer.php:268 +#: src/Core/Installer.php:265 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку." -#: src/Core/Installer.php:273 +#: src/Core/Installer.php:270 msgid "Command line PHP" msgstr "Command line PHP" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:279 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "Бинарник PHP не является CLI версией (может быть это cgi-fcgi версия)" -#: src/Core/Installer.php:283 +#: src/Core/Installer.php:280 msgid "Found PHP version: " msgstr "Найденная PHP версия: " -#: src/Core/Installer.php:285 +#: src/Core/Installer.php:282 msgid "PHP cli binary" msgstr "PHP cli binary" -#: src/Core/Installer.php:298 +#: src/Core/Installer.php:295 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "Не включено \"register_argc_argv\" в установках PHP." -#: src/Core/Installer.php:299 +#: src/Core/Installer.php:296 msgid "This is required for message delivery to work." msgstr "Это необходимо для работы доставки сообщений." -#: src/Core/Installer.php:304 +#: src/Core/Installer.php:301 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:336 +#: src/Core/Installer.php:333 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования" -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:334 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:340 +#: src/Core/Installer.php:337 msgid "Generate encryption keys" msgstr "Генерация шифрованых ключей" -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:388 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен." -#: src/Core/Installer.php:397 +#: src/Core/Installer.php:392 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite module" -#: src/Core/Installer.php:403 +#: src/Core/Installer.php:398 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Ошибка: PDO или MySQLi модули PHP требуются, но не установлены." -#: src/Core/Installer.php:408 +#: src/Core/Installer.php:402 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Ошибка: Драйвер MySQL для PDO не установлен." -#: src/Core/Installer.php:412 +#: src/Core/Installer.php:405 msgid "PDO or MySQLi PHP module" msgstr "PDO или MySQLi PHP модуль" -#: src/Core/Installer.php:420 +#: src/Core/Installer.php:411 +msgid "Error: The IntlChar module is not installed." +msgstr "" + +#: src/Core/Installer.php:414 +msgid "IntlChar PHP module" +msgstr "" + +#: src/Core/Installer.php:422 msgid "Error, XML PHP module required but not installed." msgstr "Ошибка, необходим PHP модуль XML, но он не установлен" -#: src/Core/Installer.php:424 +#: src/Core/Installer.php:426 msgid "XML PHP module" msgstr "XML PHP модуль" -#: src/Core/Installer.php:427 +#: src/Core/Installer.php:429 msgid "libCurl PHP module" msgstr "libCurl PHP модуль" -#: src/Core/Installer.php:428 +#: src/Core/Installer.php:430 msgid "Error: libCURL PHP module required but not installed." msgstr "Ошибка: необходим libCURL PHP модуль, но он не установлен." -#: src/Core/Installer.php:434 +#: src/Core/Installer.php:436 msgid "GD graphics PHP module" msgstr "GD graphics PHP модуль" -#: src/Core/Installer.php:435 +#: src/Core/Installer.php:437 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен." -#: src/Core/Installer.php:441 +#: src/Core/Installer.php:443 msgid "OpenSSL PHP module" msgstr "OpenSSL PHP модуль" -#: src/Core/Installer.php:442 +#: src/Core/Installer.php:444 msgid "Error: openssl PHP module required but not installed." msgstr "Ошибка: необходим PHP модуль OpenSSL, но он не установлен." -#: src/Core/Installer.php:448 +#: src/Core/Installer.php:450 msgid "mb_string PHP module" msgstr "mb_string PHP модуль" -#: src/Core/Installer.php:449 +#: src/Core/Installer.php:451 msgid "Error: mb_string PHP module required but not installed." msgstr "Ошибка: необходим PHP модуль mb_string, но он не установлен." -#: src/Core/Installer.php:455 +#: src/Core/Installer.php:457 msgid "iconv PHP module" msgstr "iconv PHP модуль" -#: src/Core/Installer.php:456 +#: src/Core/Installer.php:458 msgid "Error: iconv PHP module required but not installed." msgstr "Ошибка: необходим PHP модуль iconv, но он не установлен." -#: src/Core/Installer.php:462 +#: src/Core/Installer.php:464 msgid "POSIX PHP module" msgstr "POSIX PHP модуль" -#: src/Core/Installer.php:463 +#: src/Core/Installer.php:465 msgid "Error: POSIX PHP module required but not installed." msgstr "Ошибка: POSIX PHP модуль требуется, но не установлен." -#: src/Core/Installer.php:469 +#: src/Core/Installer.php:471 msgid "Program execution functions" msgstr "Функции исполнения программ" -#: src/Core/Installer.php:470 +#: src/Core/Installer.php:472 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "Ошибка: Требуется наличие функций исполнения программ (proc_open), но они не включены." -#: src/Core/Installer.php:476 +#: src/Core/Installer.php:478 msgid "JSON PHP module" msgstr "JSON PHP модуль" -#: src/Core/Installer.php:477 +#: src/Core/Installer.php:479 msgid "Error: JSON PHP module required but not installed." msgstr "Ошибка: JSON PHP модуль требуется, но не установлен." -#: src/Core/Installer.php:483 +#: src/Core/Installer.php:485 msgid "File Information PHP module" msgstr "File Information PHP модуль" -#: src/Core/Installer.php:484 +#: src/Core/Installer.php:486 msgid "Error: File Information PHP module required but not installed." msgstr "Ошибка File Information PHP модуль требуется, но не установлен." -#: src/Core/Installer.php:490 +#: src/Core/Installer.php:492 msgid "GNU Multiple Precision PHP module" msgstr "" -#: src/Core/Installer.php:491 +#: src/Core/Installer.php:493 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:514 +#: src/Core/Installer.php:516 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 "Установщику требуется создать файл \"local.config.php\" в каталоге \"config\" на вашем веб-сервере, но у него не получается это сделать." -#: src/Core/Installer.php:515 +#: src/Core/Installer.php:517 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 "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете." -#: src/Core/Installer.php:516 +#: src/Core/Installer.php:518 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 "В конце этой операции мы предоставим вам текст конфигурации, которую вам нужно будет сохранить в виде файла local.config.php в каталоге \"config\" вашей установки Френдики." -#: src/Core/Installer.php:517 +#: src/Core/Installer.php:519 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "В качестве альтернативы вы можете пропустить эту процедуру и выполнить установку вручную. Пожалуйста, обратитесь к файлу \"INSTALL.md\" для получения инструкций." -#: src/Core/Installer.php:520 +#: src/Core/Installer.php:522 msgid "config/local.config.php is writable" msgstr "config/local.config.php доступен для записи" -#: src/Core/Installer.php:540 +#: src/Core/Installer.php:542 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica использует механизм шаблонов Smarty3 для генерации веб-страниц. Smarty3 компилирует шаблоны в PHP для увеличения скорости загрузки." -#: src/Core/Installer.php:541 +#: src/Core/Installer.php:543 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 "Для того чтобы хранить эти скомпилированные шаблоны, веб-сервер должен иметь доступ на запись для папки view/smarty3 в директории, где установлена Friendica." -#: src/Core/Installer.php:542 +#: src/Core/Installer.php:544 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Пожалуйста, убедитесь, что пользователь, под которым работает ваш веб-сервер (например www-data), имеет доступ на запись в этой папке." -#: src/Core/Installer.php:543 +#: src/Core/Installer.php:545 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 "Примечание: в качестве меры безопасности, вы должны дать вебсерверу доступ на запись только в view/smarty3 - но не на сами файлы шаблонов (.tpl)., Которые содержатся в этой папке." -#: src/Core/Installer.php:546 +#: src/Core/Installer.php:548 msgid "view/smarty3 is writable" msgstr "view/smarty3 доступен для записи" -#: src/Core/Installer.php:574 +#: src/Core/Installer.php:576 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "Похоже, что Url rewrite в .htaccess не работает. Убедитесь, что вы скопировали .htaccess-dist в .htaccess." -#: src/Core/Installer.php:575 +#: src/Core/Installer.php:577 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "В некоторых случаях (например, при запуске в контейнерах) вы можете пропустить эту ошибку." -#: src/Core/Installer.php:577 +#: src/Core/Installer.php:579 msgid "Error message from Curl when fetching" msgstr "Ошибка Curl при закачке" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:585 msgid "Url rewrite is working" msgstr "Url rewrite работает" -#: src/Core/Installer.php:612 +#: src/Core/Installer.php:614 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "Не удалось обнаружить TLS-соединение между браузером и новым сервером Friendica." -#: src/Core/Installer.php:613 +#: src/Core/Installer.php:615 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "Настоятельно рекомендуется использовать Friendica только с безопасным соединением, так как передаётся чувствительная информация, например - пароли." -#: src/Core/Installer.php:614 +#: src/Core/Installer.php:616 msgid "Please ensure that the connection to the server is secure." msgstr "Пожалуйста, убедитесь, что соединение с сервером безопасно." -#: src/Core/Installer.php:615 +#: src/Core/Installer.php:617 msgid "No TLS detected" msgstr "TLS не обнаружено." -#: src/Core/Installer.php:617 +#: src/Core/Installer.php:619 msgid "TLS detected" msgstr "TLS обнаружено." -#: src/Core/Installer.php:644 +#: src/Core/Installer.php:646 msgid "ImageMagick PHP extension is not installed" msgstr "Модуль PHP ImageMagick не установлен" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:648 msgid "ImageMagick PHP extension is installed" msgstr "Модуль PHP ImageMagick установлен" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:650 msgid "ImageMagick supports GIF" msgstr "ImageMagick поддерживает GIF" -#: src/Core/Installer.php:670 +#: src/Core/Installer.php:672 msgid "Database already in use." msgstr "База данных уже используется." -#: src/Core/Installer.php:675 +#: src/Core/Installer.php:677 msgid "Could not connect to database." msgstr "Не удалось подключиться к базе данных." -#: src/Core/L10n.php:403 src/Model/Event.php:428 -#: src/Module/Settings/Display.php:183 +#: src/Core/L10n.php:507 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:278 msgid "Monday" msgstr "Понедельник" -#: src/Core/L10n.php:403 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:184 +#: src/Core/L10n.php:507 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:279 msgid "Tuesday" msgstr "Вторник" -#: src/Core/L10n.php:403 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:185 +#: src/Core/L10n.php:507 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:280 msgid "Wednesday" msgstr "Среда" -#: src/Core/L10n.php:403 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:186 +#: src/Core/L10n.php:507 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:281 msgid "Thursday" msgstr "Четверг" -#: src/Core/L10n.php:403 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:187 +#: src/Core/L10n.php:507 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:282 msgid "Friday" msgstr "Пятница" -#: src/Core/L10n.php:403 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:188 +#: src/Core/L10n.php:507 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:283 msgid "Saturday" msgstr "Суббота" -#: src/Core/L10n.php:403 src/Model/Event.php:427 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:507 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:277 msgid "Sunday" msgstr "Воскресенье" -#: src/Core/L10n.php:407 src/Model/Event.php:448 +#: src/Core/L10n.php:511 src/Model/Event.php:450 msgid "January" msgstr "Январь" -#: src/Core/L10n.php:407 src/Model/Event.php:449 +#: src/Core/L10n.php:511 src/Model/Event.php:451 msgid "February" msgstr "Февраль" -#: src/Core/L10n.php:407 src/Model/Event.php:450 +#: src/Core/L10n.php:511 src/Model/Event.php:452 msgid "March" msgstr "Март" -#: src/Core/L10n.php:407 src/Model/Event.php:451 +#: src/Core/L10n.php:511 src/Model/Event.php:453 msgid "April" msgstr "Апрель" -#: src/Core/L10n.php:407 src/Core/L10n.php:426 src/Model/Event.php:439 +#: src/Core/L10n.php:511 src/Core/L10n.php:530 src/Model/Event.php:441 msgid "May" msgstr "Май" -#: src/Core/L10n.php:407 src/Model/Event.php:452 +#: src/Core/L10n.php:511 src/Model/Event.php:454 msgid "June" msgstr "Июнь" -#: src/Core/L10n.php:407 src/Model/Event.php:453 +#: src/Core/L10n.php:511 src/Model/Event.php:455 msgid "July" msgstr "Июль" -#: src/Core/L10n.php:407 src/Model/Event.php:454 +#: src/Core/L10n.php:511 src/Model/Event.php:456 msgid "August" msgstr "Август" -#: src/Core/L10n.php:407 src/Model/Event.php:455 +#: src/Core/L10n.php:511 src/Model/Event.php:457 msgid "September" msgstr "Сентябрь" -#: src/Core/L10n.php:407 src/Model/Event.php:456 +#: src/Core/L10n.php:511 src/Model/Event.php:458 msgid "October" msgstr "Октябрь" -#: src/Core/L10n.php:407 src/Model/Event.php:457 +#: src/Core/L10n.php:511 src/Model/Event.php:459 msgid "November" msgstr "Ноябрь" -#: src/Core/L10n.php:407 src/Model/Event.php:458 +#: src/Core/L10n.php:511 src/Model/Event.php:460 msgid "December" msgstr "Декабрь" -#: src/Core/L10n.php:422 src/Model/Event.php:420 +#: src/Core/L10n.php:526 src/Model/Event.php:422 msgid "Mon" msgstr "Пн" -#: src/Core/L10n.php:422 src/Model/Event.php:421 +#: src/Core/L10n.php:526 src/Model/Event.php:423 msgid "Tue" msgstr "Вт" -#: src/Core/L10n.php:422 src/Model/Event.php:422 +#: src/Core/L10n.php:526 src/Model/Event.php:424 msgid "Wed" msgstr "Ср" -#: src/Core/L10n.php:422 src/Model/Event.php:423 +#: src/Core/L10n.php:526 src/Model/Event.php:425 msgid "Thu" msgstr "Чт" -#: src/Core/L10n.php:422 src/Model/Event.php:424 +#: src/Core/L10n.php:526 src/Model/Event.php:426 msgid "Fri" msgstr "Пт" -#: src/Core/L10n.php:422 src/Model/Event.php:425 +#: src/Core/L10n.php:526 src/Model/Event.php:427 msgid "Sat" msgstr "Сб" -#: src/Core/L10n.php:422 src/Model/Event.php:419 +#: src/Core/L10n.php:526 src/Model/Event.php:421 msgid "Sun" msgstr "Вс" -#: src/Core/L10n.php:426 src/Model/Event.php:435 +#: src/Core/L10n.php:530 src/Model/Event.php:437 msgid "Jan" msgstr "Янв" -#: src/Core/L10n.php:426 src/Model/Event.php:436 +#: src/Core/L10n.php:530 src/Model/Event.php:438 msgid "Feb" msgstr "Фев" -#: src/Core/L10n.php:426 src/Model/Event.php:437 +#: src/Core/L10n.php:530 src/Model/Event.php:439 msgid "Mar" msgstr "Мрт" -#: src/Core/L10n.php:426 src/Model/Event.php:438 +#: src/Core/L10n.php:530 src/Model/Event.php:440 msgid "Apr" msgstr "Апр" -#: src/Core/L10n.php:426 src/Model/Event.php:440 +#: src/Core/L10n.php:530 src/Model/Event.php:442 msgid "Jun" msgstr "Июн" -#: src/Core/L10n.php:426 src/Model/Event.php:441 +#: src/Core/L10n.php:530 src/Model/Event.php:443 msgid "Jul" msgstr "Июл" -#: src/Core/L10n.php:426 src/Model/Event.php:442 +#: src/Core/L10n.php:530 src/Model/Event.php:444 msgid "Aug" msgstr "Авг" -#: src/Core/L10n.php:426 +#: src/Core/L10n.php:530 msgid "Sep" msgstr "Сен" -#: src/Core/L10n.php:426 src/Model/Event.php:444 +#: src/Core/L10n.php:530 src/Model/Event.php:446 msgid "Oct" msgstr "Окт" -#: src/Core/L10n.php:426 src/Model/Event.php:445 +#: src/Core/L10n.php:530 src/Model/Event.php:447 msgid "Nov" msgstr "Нбр" -#: src/Core/L10n.php:426 src/Model/Event.php:446 +#: src/Core/L10n.php:530 src/Model/Event.php:448 msgid "Dec" msgstr "Дек" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + #: src/Core/Renderer.php:89 src/Core/Renderer.php:118 #: src/Core/Renderer.php:147 src/Core/Renderer.php:181 #: src/Render/FriendicaSmartyEngine.php:60 @@ -3453,36 +3096,36 @@ msgstr "Каталог, куда сохраняются загруженные msgid "Enter a valid existing folder" msgstr "Введите путь к существующему каталогу" -#: src/Core/Update.php:69 +#: src/Core/Update.php:80 #, 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 "" +msgstr "Обновления для версии %s не поддерживаются. Пожалуйста, обновитесь хотя бы до версии 2021.01 и дождитесь выполнения postupdate до версии 1383." -#: src/Core/Update.php:80 +#: src/Core/Update.php:91 #, 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 "" +msgstr "Обновления для postupdate версии %s не поддерживаются. Пожалуйста, обновитесь хотя бы до версии 2021.01 и дождитесь выполнения postupdate до версии 1383." -#: src/Core/Update.php:155 +#: src/Core/Update.php:183 #, php-format msgid "%s: executing pre update %d" msgstr "%s: выполняется предварительное обновление %d" -#: src/Core/Update.php:193 +#: src/Core/Update.php:225 #, php-format msgid "%s: executing post update %d" msgstr "%s: выполняется завершение обновления %d" -#: src/Core/Update.php:263 +#: src/Core/Update.php:299 #, php-format msgid "Update %s failed. See error logs." msgstr "Обновление %s не удалось. Смотрите журнал ошибок." -#: src/Core/Update.php:317 +#: src/Core/Update.php:339 #, php-format msgid "" "\n" @@ -3492,83 +3135,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\tРазработчики Френдики недавно выпустили обновление %s,\n\t\t\t\tно при установке что-то пошло не так.\n\t\t\t\tЭто нужно исправить в ближайшее время и у меня не получается сделать это самостоятельно. Пожалуйста, свяжитесь с разработчиками Френдики, если вы не можете мне помочь сами. База данных может быть повреждена." -#: src/Core/Update.php:323 +#: src/Core/Update.php:345 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "Сообщение об ошибке\\n[pre]%s[/pre]" -#: src/Core/Update.php:327 src/Core/Update.php:369 +#: src/Core/Update.php:349 src/Core/Update.php:377 msgid "[Friendica Notify] Database update" msgstr "[Friendica Notify] Обновление базы данных" -#: src/Core/Update.php:363 +#: src/Core/Update.php:371 #, php-format msgid "" "\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n\t\t\t\t\tБаза данных Френдики была успешно обновлена с версии %s на %s." - -#: src/Core/UserImport.php:126 -msgid "Error decoding account file" -msgstr "Ошибка расшифровки файла аккаунта" - -#: src/Core/UserImport.php:132 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?" - -#: src/Core/UserImport.php:140 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "Пользователь '%s' уже существует на этом сервере!" - -#: src/Core/UserImport.php:176 -msgid "User creation error" -msgstr "Ошибка создания пользователя" - -#: src/Core/UserImport.php:221 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d контакт не импортирован" -msgstr[1] "%d контакты не импортированы" -msgstr[2] "%d контакты не импортированы" -msgstr[3] "%d контакты не импортированы" - -#: src/Core/UserImport.php:274 -msgid "User profile creation error" -msgstr "Ошибка создания профиля пользователя" - -#: src/Core/UserImport.php:327 -msgid "Done. You can now login with your username and password" -msgstr "Завершено. Теперь вы можете войти с вашим логином и паролем" +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "\n\t\t\t\tБаза данных Friendica была успешно обновлена с версии %s на %s." #: src/Database/DBStructure.php:57 #, php-format msgid "The database version had been set to %s." msgstr "Версия базы данных была установлена на %s." -#: src/Database/DBStructure.php:70 +#: src/Database/DBStructure.php:82 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." -msgstr "" +msgstr "Версия postupdate сейчас %d, она должна достигнуть %d для безопасного удаления таблиц." -#: src/Database/DBStructure.php:83 +#: src/Database/DBStructure.php:95 msgid "No unused tables found." msgstr "Неиспользуемые таблицы не найдены." -#: src/Database/DBStructure.php:88 +#: src/Database/DBStructure.php:100 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "Эти таблицы не используются Friendica и будут удалены, когда вы выполните команду \"dbstructure drop -e\":" -#: src/Database/DBStructure.php:126 +#: src/Database/DBStructure.php:137 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "В MyISAM или InnoDB нет таблиц в формате Antelope." -#: src/Database/DBStructure.php:150 +#: src/Database/DBStructure.php:161 #, php-format msgid "" "\n" @@ -3576,42 +3185,42 @@ msgid "" "%s\n" msgstr "\nОшибка %d возникла при обновлении базы данных:\n%s\n" -#: src/Database/DBStructure.php:153 +#: src/Database/DBStructure.php:164 msgid "Errors encountered performing database changes: " msgstr "Ошибки, возникшие при применении изменений базы данных: " -#: src/Database/DBStructure.php:219 +#: src/Database/DBStructure.php:232 msgid "Another database update is currently running." msgstr "Другая операция обновления базы данных уже запущена." -#: src/Database/DBStructure.php:223 +#: src/Database/DBStructure.php:236 #, php-format msgid "%s: Database update" msgstr "%s: Обновление базы данных" -#: src/Database/DBStructure.php:479 +#: src/Database/DBStructure.php:493 #, php-format msgid "%s: updating %s table." msgstr "%s: обновляется %s таблица." -#: src/Factory/Api/Mastodon/Error.php:55 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Record not found" msgstr "Запись не найдена" -#: src/Factory/Api/Mastodon/Error.php:65 +#: src/Factory/Api/Mastodon/Error.php:49 msgid "Unprocessable Entity" msgstr "Необрабатываемая сущность" -#: src/Factory/Api/Mastodon/Error.php:75 +#: src/Factory/Api/Mastodon/Error.php:56 msgid "Unauthorized" msgstr "Нет авторизации" -#: src/Factory/Api/Mastodon/Error.php:85 +#: src/Factory/Api/Mastodon/Error.php:62 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:95 +#: src/Factory/Api/Mastodon/Error.php:69 msgid "Internal Server Error" msgstr "Внутренняя ошибка сервера" @@ -3620,227 +3229,268 @@ msgstr "Внутренняя ошибка сервера" msgid "Legacy module file not found: %s" msgstr "Legacy-модуль не найден: %s" -#: src/Model/Contact.php:1195 src/Model/Contact.php:1206 -msgid "UnFollow" -msgstr "Отписаться" +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." +msgstr "Удалённый круг с таким названием был восстановлен. Существующие права доступа могут применяться к этому кругу и любым будущим участникам. Если это не то, что вы хотели, пожалуйста, создайте ещё ​​один круг с другим названием." -#: src/Model/Contact.php:1212 src/Module/Admin/Users/Pending.php:107 -#: src/Module/Notifications/Introductions.php:131 -#: src/Module/Notifications/Introductions.php:203 +#: src/Model/Circle.php:544 +msgid "Everybody" +msgstr "Все" + +#: src/Model/Circle.php:563 +msgid "edit" +msgstr "редактировать" + +#: src/Model/Circle.php:600 +msgid "add" +msgstr "добавить" + +#: src/Model/Circle.php:605 +msgid "Edit circle" +msgstr "Редактировать круг" + +#: src/Model/Circle.php:606 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "Контакты вне кругов" + +#: src/Model/Circle.php:608 +msgid "Create a new circle" +msgstr "Создать круг" + +#: src/Model/Circle.php:609 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "Название круга:" + +#: src/Model/Circle.php:610 +msgid "Edit circles" +msgstr "Редактировать круги" + +#: src/Model/Contact.php:1256 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Одобрить" -#: src/Model/Contact.php:1626 +#: src/Model/Contact.php:1710 msgid "Organisation" msgstr "Организация" -#: src/Model/Contact.php:1634 -msgid "Forum" -msgstr "Форум" +#: src/Model/Contact.php:1718 +msgid "Group" +msgstr "Группа" -#: src/Model/Contact.php:2820 +#: src/Model/Contact.php:3021 msgid "Disallowed profile URL." msgstr "Запрещенный URL профиля." -#: src/Model/Contact.php:2825 src/Module/Friendica.php:82 +#: src/Model/Contact.php:3026 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Заблокированный домен" -#: src/Model/Contact.php:2830 +#: src/Model/Contact.php:3031 msgid "Connect URL missing." msgstr "Connect-URL отсутствует." -#: src/Model/Contact.php:2839 +#: src/Model/Contact.php:3040 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Контакт не может быть добавлен. Пожалуйста проверьте учётные данные на странице Настройки -> Социальные сети." -#: src/Model/Contact.php:2881 +#: src/Model/Contact.php:3058 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "Ожидаемая сеть %s не соответствует обнаруженной сети %s" + +#: src/Model/Contact.php:3075 msgid "The profile address specified does not provide adequate information." msgstr "Указанный адрес профиля не дает адекватной информации." -#: src/Model/Contact.php:2883 +#: src/Model/Contact.php:3077 msgid "No compatible communication protocols or feeds were discovered." msgstr "Обнаружены несовместимые протоколы связи или каналы." -#: src/Model/Contact.php:2886 +#: src/Model/Contact.php:3080 msgid "An author or name was not found." msgstr "Автор или имя не найдены." -#: src/Model/Contact.php:2889 +#: src/Model/Contact.php:3083 msgid "No browser URL could be matched to this address." msgstr "Нет URL браузера, который соответствует этому адресу." -#: src/Model/Contact.php:2892 +#: src/Model/Contact.php:3086 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Не получается совместить этот адрес с известным протоколом или контактом электронной почты." -#: src/Model/Contact.php:2893 +#: src/Model/Contact.php:3087 msgid "Use mailto: in front of address to force email check." msgstr "Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email." -#: src/Model/Contact.php:2899 +#: src/Model/Contact.php:3093 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "Указанный адрес профиля принадлежит сети, недоступной на этом сайта." -#: src/Model/Contact.php:2904 +#: src/Model/Contact.php:3098 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас." -#: src/Model/Contact.php:2963 +#: src/Model/Contact.php:3164 msgid "Unable to retrieve contact information." msgstr "Невозможно получить контактную информацию." -#: src/Model/Event.php:52 +#: src/Model/Event.php:54 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:73 src/Model/Event.php:90 src/Model/Event.php:467 -#: src/Model/Event.php:901 +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 msgid "Starts:" msgstr "Начало:" -#: src/Model/Event.php:76 src/Model/Event.php:96 src/Model/Event.php:468 -#: src/Model/Event.php:905 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 msgid "Finishes:" msgstr "Окончание:" -#: src/Model/Event.php:417 +#: src/Model/Event.php:419 msgid "all-day" msgstr "Весь день" -#: src/Model/Event.php:443 +#: src/Model/Event.php:445 msgid "Sept" msgstr "Сен" -#: src/Model/Event.php:465 +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "сегодня" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:288 src/Util/Temporal.php:353 +msgid "month" +msgstr "мес." + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:289 src/Util/Temporal.php:354 +msgid "week" +msgstr "неделя" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:290 src/Util/Temporal.php:355 +msgid "day" +msgstr "день" + +#: src/Model/Event.php:467 msgid "No events to display" msgstr "Нет событий для показа" -#: src/Model/Event.php:581 +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "Доступ к этому профилю ограничен." + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "Событие не найдено" + +#: src/Model/Event.php:637 msgid "l, F j" msgstr "l, j F" -#: src/Model/Event.php:612 +#: src/Model/Event.php:664 msgid "Edit event" msgstr "Редактировать мероприятие" -#: src/Model/Event.php:613 +#: src/Model/Event.php:665 msgid "Duplicate event" msgstr "Дубликат события" -#: src/Model/Event.php:614 +#: src/Model/Event.php:666 msgid "Delete event" msgstr "Удалить событие" -#: src/Model/Event.php:857 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:858 +#: src/Model/Event.php:897 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:859 +#: src/Model/Event.php:898 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:920 src/Model/Event.php:922 +#: src/Model/Event.php:964 src/Model/Event.php:966 msgid "Show map" msgstr "Показать карту" -#: src/Model/Event.php:921 +#: src/Model/Event.php:965 msgid "Hide map" msgstr "Скрыть карту" -#: src/Model/Event.php:1014 +#: src/Model/Event.php:1058 #, php-format msgid "%s's birthday" msgstr "день рождения %s" -#: src/Model/Event.php:1015 +#: src/Model/Event.php:1059 #, php-format msgid "Happy Birthday %s" msgstr "С днём рождения %s" -#: src/Model/Group.php:105 -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 "Удаленная группа с таким названием была восстановлена. Существующие права доступа могут применяться к этой группе и любым будущим участникам. Если это не то, что вы хотели, пожалуйста, создайте еще ​​одну группу с другим названием." - -#: src/Model/Group.php:503 -msgid "Default privacy group for new contacts" -msgstr "Группа доступа по умолчанию для новых контактов" - -#: src/Model/Group.php:535 -msgid "Everybody" -msgstr "Все" - -#: src/Model/Group.php:554 -msgid "edit" -msgstr "редактировать" - -#: src/Model/Group.php:586 -msgid "add" -msgstr "добавить" - -#: src/Model/Group.php:591 -msgid "Edit group" -msgstr "Редактировать группу" - -#: src/Model/Group.php:592 src/Module/Group.php:192 -msgid "Contacts not in any group" -msgstr "Контакты не состоят в группе" - -#: src/Model/Group.php:594 -msgid "Create a new group" -msgstr "Создать новую группу" - -#: src/Model/Group.php:595 src/Module/Group.php:177 src/Module/Group.php:200 -#: src/Module/Group.php:275 -msgid "Group Name: " -msgstr "Название группы: " - -#: src/Model/Group.php:596 -msgid "Edit groups" -msgstr "Редактировать группы" - -#: src/Model/Item.php:1970 +#: src/Model/Item.php:2139 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Обнаруженные в этой записи языки:\\n%s" -#: src/Model/Item.php:2862 +#: src/Model/Item.php:3084 msgid "activity" msgstr "активность" -#: src/Model/Item.php:2864 +#: src/Model/Item.php:3086 msgid "comment" msgstr "комментарий" -#: src/Model/Item.php:2867 +#: src/Model/Item.php:3089 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "пост" -#: src/Model/Item.php:3010 +#: src/Model/Item.php:3259 +#, php-format +msgid "%s is blocked" +msgstr "%s заблокирован" + +#: src/Model/Item.php:3261 +#, php-format +msgid "%s is ignored" +msgstr "%s игнорируется" + +#: src/Model/Item.php:3263 +#, php-format +msgid "Content from %s is collapsed" +msgstr "Запись от %s скрыта" + +#: src/Model/Item.php:3267 #, php-format msgid "Content warning: %s" msgstr "Предупреждение о контенте: %s" -#: src/Model/Item.php:3373 +#: src/Model/Item.php:3720 msgid "bytes" msgstr "байт" -#: src/Model/Item.php:3404 +#: src/Model/Item.php:3751 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3849,7 +3499,7 @@ msgstr[1] "%2$s (%3$d%%, %1$d голоса)" msgstr[2] "%2$s (%3$d%%, %1$d голосов)" msgstr[3] "%2$s (%3$d%%, %1$d голосов)" -#: src/Model/Item.php:3406 +#: src/Model/Item.php:3753 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3858,7 +3508,7 @@ msgstr[1] "%2$s (%1$d голоса)" msgstr[2] "%2$s (%1$d голосов)" msgstr[3] "%2$s (%1$d голосов)" -#: src/Model/Item.php:3411 +#: src/Model/Item.php:3758 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3867,7 +3517,7 @@ msgstr[1] "%d голоса. Конец опроса: %s" msgstr[2] "%d голосов. Конец опроса: %s" msgstr[3] "%d голосов. Конец опроса: %s" -#: src/Model/Item.php:3413 +#: src/Model/Item.php:3760 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3876,232 +3526,241 @@ msgstr[1] "%d голоса." msgstr[2] "%d голосов." msgstr[3] "%d голосов." -#: src/Model/Item.php:3415 +#: src/Model/Item.php:3762 #, php-format msgid "Poll end: %s" msgstr "Конец опроса: %s" -#: src/Model/Item.php:3449 src/Model/Item.php:3450 +#: src/Model/Item.php:3796 src/Model/Item.php:3797 msgid "View on separate page" msgstr "Посмотреть в отдельной вкладке" -#: src/Model/Mail.php:137 src/Model/Mail.php:265 +#: src/Model/Mail.php:137 src/Model/Mail.php:266 msgid "[no subject]" msgstr "[без темы]" -#: src/Model/Profile.php:361 src/Module/Profile/Profile.php:255 -#: src/Module/Profile/Profile.php:257 +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Фото стены" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 msgid "Edit profile" msgstr "Редактировать профиль" -#: src/Model/Profile.php:363 +#: src/Model/Profile.php:361 msgid "Change profile photo" msgstr "Изменить фото профиля" -#: src/Model/Profile.php:376 src/Module/Directory.php:152 -#: src/Module/Profile/Profile.php:183 +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 msgid "Homepage:" msgstr "Домашняя страничка:" -#: src/Model/Profile.php:377 src/Module/Contact/Profile.php:377 -#: src/Module/Notifications/Introductions.php:188 +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "О себе:" -#: src/Model/Profile.php:463 +#: src/Model/Profile.php:477 msgid "Atom feed" msgstr "Фид Atom" -#: src/Model/Profile.php:506 +#: src/Model/Profile.php:484 +msgid "This website has been verified to belong to the same person." +msgstr "Принадлежность этой веб-страницы данному пользователю была подтверждена." + +#: src/Model/Profile.php:525 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:570 src/Model/Profile.php:659 +#: src/Model/Profile.php:589 src/Model/Profile.php:678 msgid "[today]" msgstr "[сегодня]" -#: src/Model/Profile.php:579 +#: src/Model/Profile.php:598 msgid "Birthday Reminders" msgstr "Напоминания о днях рождения" -#: src/Model/Profile.php:580 +#: src/Model/Profile.php:599 msgid "Birthdays this week:" msgstr "Дни рождения на этой неделе:" -#: src/Model/Profile.php:608 +#: src/Model/Profile.php:627 msgid "g A l F d" msgstr "g A l F d" -#: src/Model/Profile.php:646 +#: src/Model/Profile.php:665 msgid "[No description]" msgstr "[без описания]" -#: src/Model/Profile.php:672 +#: src/Model/Profile.php:691 msgid "Event Reminders" msgstr "Напоминания о мероприятиях" -#: src/Model/Profile.php:673 +#: src/Model/Profile.php:692 msgid "Upcoming events the next 7 days:" msgstr "События на ближайшие 7 дней:" -#: src/Model/Profile.php:867 +#: src/Model/Profile.php:891 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s приветствует %2$s" -#: src/Model/Profile.php:1007 +#: src/Model/Profile.php:1031 msgid "Hometown:" msgstr "Родной город:" -#: src/Model/Profile.php:1008 +#: src/Model/Profile.php:1032 msgid "Marital Status:" msgstr "Семейное положение:" -#: src/Model/Profile.php:1009 +#: src/Model/Profile.php:1033 msgid "With:" msgstr "Вместе:" -#: src/Model/Profile.php:1010 +#: src/Model/Profile.php:1034 msgid "Since:" msgstr "С:" -#: src/Model/Profile.php:1011 +#: src/Model/Profile.php:1035 msgid "Sexual Preference:" msgstr "Сексуальные предпочтения:" -#: src/Model/Profile.php:1012 +#: src/Model/Profile.php:1036 msgid "Political Views:" msgstr "Политические взгляды:" -#: src/Model/Profile.php:1013 +#: src/Model/Profile.php:1037 msgid "Religious Views:" msgstr "Религиозные взгляды:" -#: src/Model/Profile.php:1014 +#: src/Model/Profile.php:1038 msgid "Likes:" msgstr "Нравится:" -#: src/Model/Profile.php:1015 +#: src/Model/Profile.php:1039 msgid "Dislikes:" msgstr "Не нравится:" -#: src/Model/Profile.php:1016 +#: src/Model/Profile.php:1040 msgid "Title/Description:" msgstr "Заголовок / Описание:" -#: src/Model/Profile.php:1017 src/Module/Admin/Summary.php:235 +#: src/Model/Profile.php:1041 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 msgid "Summary" msgstr "Резюме" -#: src/Model/Profile.php:1018 +#: src/Model/Profile.php:1042 msgid "Musical interests" msgstr "Музыкальные интересы" -#: src/Model/Profile.php:1019 +#: src/Model/Profile.php:1043 msgid "Books, literature" msgstr "Книги, литература" -#: src/Model/Profile.php:1020 +#: src/Model/Profile.php:1044 msgid "Television" msgstr "Телевидение" -#: src/Model/Profile.php:1021 +#: src/Model/Profile.php:1045 msgid "Film/dance/culture/entertainment" msgstr "Кино / танцы / культура / развлечения" -#: src/Model/Profile.php:1022 +#: src/Model/Profile.php:1046 msgid "Hobbies/Interests" msgstr "Хобби / Интересы" -#: src/Model/Profile.php:1023 +#: src/Model/Profile.php:1047 msgid "Love/romance" msgstr "Любовь / романтика" -#: src/Model/Profile.php:1024 +#: src/Model/Profile.php:1048 msgid "Work/employment" msgstr "Работа / занятость" -#: src/Model/Profile.php:1025 +#: src/Model/Profile.php:1049 msgid "School/education" msgstr "Школа / образование" -#: src/Model/Profile.php:1026 +#: src/Model/Profile.php:1050 msgid "Contact information and Social Networks" msgstr "Контактная информация и социальные сети" -#: src/Model/User.php:212 src/Model/User.php:1085 +#: src/Model/User.php:226 src/Model/User.php:1185 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась." -#: src/Model/User.php:572 src/Model/User.php:605 +#: src/Model/User.php:619 src/Model/User.php:652 msgid "Login failed" msgstr "Вход не удался" -#: src/Model/User.php:637 +#: src/Model/User.php:684 msgid "Not enough information to authenticate" msgstr "Недостаточно информации для входа" -#: src/Model/User.php:732 +#: src/Model/User.php:805 msgid "Password can't be empty" msgstr "Пароль не может быть пустым" -#: src/Model/User.php:774 +#: src/Model/User.php:847 msgid "Empty passwords are not allowed." msgstr "Пароль не должен быть пустым." -#: src/Model/User.php:778 +#: src/Model/User.php:851 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Новый пароль содержится в опубликованных списках украденных паролей, пожалуйста, используйте другой." -#: src/Model/User.php:782 +#: src/Model/User.php:855 msgid "The password length is limited to 72 characters." msgstr "Длина пароля ограничена 72 символами." -#: src/Model/User.php:786 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "Пароль не может содержать символы с акцентами, пробелы или двоеточия (:)" +#: src/Model/User.php:859 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "Пароль не может содержать пробелов и букв с акцентами." -#: src/Model/User.php:965 +#: src/Model/User.php:1068 msgid "Passwords do not match. Password unchanged." msgstr "Пароли не совпадают. Пароль не изменен." -#: src/Model/User.php:972 +#: src/Model/User.php:1075 msgid "An invitation is required." msgstr "Требуется приглашение." -#: src/Model/User.php:976 +#: src/Model/User.php:1079 msgid "Invitation could not be verified." msgstr "Приглашение не может быть проверено." -#: src/Model/User.php:984 +#: src/Model/User.php:1087 msgid "Invalid OpenID url" msgstr "Неверный URL OpenID" -#: src/Model/User.php:997 src/Security/Authentication.php:240 +#: src/Model/User.php:1100 src/Security/Authentication.php:241 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:997 src/Security/Authentication.php:240 +#: src/Model/User.php:1100 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "Сообщение об ошибке было:" -#: src/Model/User.php:1003 +#: src/Model/User.php:1106 msgid "Please enter the required information." msgstr "Пожалуйста, введите необходимую информацию." -#: src/Model/User.php:1017 +#: src/Model/User.php:1120 #, 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:1024 +#: src/Model/User.php:1127 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." @@ -4110,7 +3769,7 @@ msgstr[1] "Имя пользователя должно быть хотя бы % msgstr[2] "Имя пользователя должно быть хотя бы %s символов." msgstr[3] "Имя пользователя должно быть хотя бы %s символов." -#: src/Model/User.php:1028 +#: src/Model/User.php:1131 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." @@ -4119,60 +3778,60 @@ msgstr[1] "Имя пользователя должно быть не больш msgstr[2] "Имя пользователя должно быть не больше %s символов." msgstr[3] "Имя пользователя должно быть не больше %s символов." -#: src/Model/User.php:1036 +#: src/Model/User.php:1139 msgid "That doesn't appear to be your full (First Last) name." msgstr "Кажется, что это ваше неполное (Имя Фамилия) имя." -#: src/Model/User.php:1041 +#: src/Model/User.php:1144 msgid "Your email domain is not among those allowed on this site." msgstr "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте." -#: src/Model/User.php:1045 +#: src/Model/User.php:1148 msgid "Not a valid email address." msgstr "Неверный адрес электронной почты." -#: src/Model/User.php:1048 +#: src/Model/User.php:1151 msgid "The nickname was blocked from registration by the nodes admin." msgstr "Этот ник был заблокирован для регистрации администратором узла." -#: src/Model/User.php:1052 src/Model/User.php:1060 +#: src/Model/User.php:1155 src/Model/User.php:1161 msgid "Cannot use that email." msgstr "Нельзя использовать этот Email." -#: src/Model/User.php:1067 +#: src/Model/User.php:1167 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Ваш ник может содержать только символы a-z, 0-9 и _." -#: src/Model/User.php:1075 src/Model/User.php:1132 +#: src/Model/User.php:1175 src/Model/User.php:1232 msgid "Nickname is already registered. Please choose another." msgstr "Такой ник уже зарегистрирован. Пожалуйста, выберите другой." -#: src/Model/User.php:1119 src/Model/User.php:1123 +#: src/Model/User.php:1219 src/Model/User.php:1223 msgid "An error occurred during registration. Please try again." msgstr "Ошибка при регистрации. Пожалуйста, попробуйте еще раз." -#: src/Model/User.php:1146 +#: src/Model/User.php:1246 msgid "An error occurred creating your default profile. Please try again." msgstr "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз." -#: src/Model/User.php:1153 +#: src/Model/User.php:1253 msgid "An error occurred creating your self contact. Please try again." msgstr "При создании вашего контакта возникла проблема. Пожалуйста, попробуйте ещё раз." -#: src/Model/User.php:1158 +#: src/Model/User.php:1258 msgid "Friends" msgstr "Друзья" -#: src/Model/User.php:1162 +#: src/Model/User.php:1262 msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "При создании группы контактов по-умолчанию возникла ошибка. Пожалуйста, попробуйте ещё раз." +"An error occurred creating your default contact circle. Please try again." +msgstr "При создании круга контактов по-умолчанию возникла ошибка. Пожалуйста, попробуйте ещё раз." -#: src/Model/User.php:1201 +#: src/Model/User.php:1306 msgid "Profile Photos" msgstr "Фотографии профиля" -#: src/Model/User.php:1394 +#: src/Model/User.php:1486 #, php-format msgid "" "\n" @@ -4180,7 +3839,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\tУважаемый(ая) %1$s,\n\t\t\tадминистратор %2$s создал для вас учётную запись." -#: src/Model/User.php:1397 +#: src/Model/User.php:1489 #, php-format msgid "" "\n" @@ -4207,17 +3866,17 @@ msgid "" "\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" +"\t\tIf you ever want to delete your account, you can do so at %1$s/settings/removeme\n" "\n" "\t\tThank you and welcome to %4$s." -msgstr "\n\t\tДанные для входа в систему:\n\n\t\tМестоположение сайта:\t%1$s\n\t\tЛогин:\t\t%2$s\n\t\tПароль:\t\t%3$s\n\n\t\tВы можете изменить пароль на странице \"Настройки\" после авторизации.\n\n\t\tПожалуйста, уделите время ознакомлению с другими другие настройками аккаунта на этой странице.\n\n\n\t\tВы также можете захотеть добавить немного базовой информации к вашему стандартному профилю\n\t\t(на странице \"Информация\") чтобы другим людям было проще вас найти.\n\n\t\tМы рекомендуем указать ваше полное имя, добавить фотографию,\n\t\tнемного \"ключевых слов\" (очень полезно, чтобы завести новых друзей)\n\t\tи возможно страну вашего проживания; если вы не хотите быть более конкретным.\n\n\t\tМы полностью уважаем ваше право на приватность, поэтому ничего из этого не является обязательным.\n\t\tЕсли же вы новичок и никого не знаете, это может помочь\n\t\tвам завести новых интересных друзей.\n\n\t\tЕсли вы когда-нибудь захотите удалить свой аккаунт, вы можете сделать это перейдя по ссылке %1$s/removeme\n\n\t\tСпасибо и добро пожаловать в %4$s." +msgstr "\n\t\tВаши данные для входа:\n\n\t\tАдрес:\t%1$s\n\t\tИмя для входа:\t\t%2$s\n\t\tПароль:\t\t%3$s\n\n\t\tВы можете сменить пароль после входа на странице настроек.\n\t\t\n\n\t\tПожалуйста, ознакомьтесь с другими настройками на этой же странице.\n\n\t\tВы так же можете захотеть добавить некоторую информацию о вас\n\t\t(на странице профиля), чтобы другие смогли легко найти вас.\n\n\t\tМы рекомендуем указать имя и поставить изображение профиля,\n\t\tдобавить несколько ключевых слов (очень полезны для поиска друзей),\n\t\tвероятно, страну вашего проживания, если вы не хотите давать больше деталей.\n\t\t\n\n\t\tМы полностью уважаем вашу приватность и ничто из перечисленного не является обязательным.\n\t\tЕсли вы новичок и не знаете здесь никого, то эти рекомендации\n\t\tмогут помочь найти вам новых интересных друзей.\n\n\t\tЕсли вы захотите удалить вашу учётную запись, то всегда сможете сделать это на %1$s/settings/removeme\n\n\t\tСпасибо и добро пожаловать на %4$s." -#: src/Model/User.php:1430 src/Model/User.php:1537 +#: src/Model/User.php:1522 src/Model/User.php:1629 #, php-format msgid "Registration details for %s" msgstr "Подробности регистрации для %s" -#: src/Model/User.php:1450 +#: src/Model/User.php:1542 #, php-format msgid "" "\n" @@ -4232,12 +3891,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:1469 +#: src/Model/User.php:1561 #, php-format msgid "Registration at %s" msgstr "Регистрация на %s" -#: src/Model/User.php:1493 +#: src/Model/User.php:1585 #, php-format msgid "" "\n" @@ -4246,7 +3905,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\tУважаемый(ая) %1$s,\n\t\t\t\tСпасибо за регистрацию на %2$s. Ваша учётная запись создана.\n\t\t\t" -#: src/Model/User.php:1501 +#: src/Model/User.php:1593 #, php-format msgid "" "\n" @@ -4273,25 +3932,15 @@ msgid "" "\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" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." -msgstr "\n\t\t\tДанные для входа:\n\n\t\t\tАдрес сайта:\t%3$s\n\t\t\tИмя:\t\t%1$s\n\t\t\tПароль:\t\t%5$s\n\n\t\t\tВы можете сменить пароль в настройках учётной записи после входа.\n\t\t\t\n\n\t\t\tТакже обратите внимание на другие настройки на этой странице.\n\n\t\t\tВы можете захотеть добавить основную информацию о себе\n\t\t\tна странице \"Профиль\", чтобы другие люди легко вас нашли.\n\n\t\t\tМы рекомендуем указать полное имя и установить фото профиля,\n\t\t\tдобавить ключевые слова для поиска друзей по интересам,\n\t\t\tи, вероятно, страну вашего проживания.\n\n\t\t\tМы уважаем вашу приватность и ничто из вышеуказанного не обязательно.\n\t\t\tЕсли вы новичок и пока никого здесь не знаете, то это поможет\n\t\t\tвам найти новых интересных друзей.\n\n\t\t\tЕсли вы захотите удалить свою учётную запись, то сможете сделать это на %3$s/removeme\n\n\t\t\tСпасибо и добро пожаловать на %2$s." +msgstr "\n\t\t\tВаши данные для входа:\n\n\t\t\tАдрес:\t%3$s\n\t\t\tИмя для входа:\t\t%1$s\n\t\t\tПароль:\t\t%5$s\n\n\t\t\tВы можете сменить пароль после входа на странице настроек.\n\t\t\t\n\n\t\t\tПожалуйста, ознакомьтесь с другими настройками на этой же странице.\n\n\t\t\tВы так же можете захотеть добавить некоторую информацию о вас\n\t\t\t(на странице профиля), чтобы другие смогли легко найти вас.\n\n\t\t\tМы рекомендуем указать имя и поставить изображение профиля,\n\t\t\tдобавить несколько ключевых слов (очень полезны для поиска друзей),\n\t\t\tвероятно, страну вашего проживания, если вы не хотите давать больше деталей.\n\t\t\t\n\n\t\t\tМы полностью уважаем вашу приватность и ничто из перечисленного не является обязательным.\n\t\t\tЕсли вы новичок и не знаете здесь никого, то эти рекомендации\n\t\t\tмогут помочь найти вам новых интересных друзей.\n\n\t\t\tЕсли вы захотите удалить вашу учётную запись, то всегда сможете сделать это на %3$s/settings/removeme\n\n\t\t\tСпасибо и добро пожаловать на %2$s." -#: src/Moderation/DomainPatternBlocklist.php:228 -#, php-format -msgid "[%s] Notice of remote server domain pattern block list update" -msgstr "[%s] Обновление списка блокировки серверов" - -#: src/Moderation/DomainPatternBlocklist.php:230 -#, php-format +#: src/Model/User.php:1656 msgid "" -"Dear %s,\n" -"\n" -"You are receiving this email because the Friendica node at %s where you are registered as a user updated their remote server domain pattern block list.\n" -"\n" -"Please review the updated list at %s at your earliest convenience." -msgstr "Уважаемый(ая) %s,\n\nВы получили это письмо, так как на узле Friendica %s, где вы зарегистрированы, обновился список блокировки серверов.\n\nПожалуйста, ознакомьтесь с новым списком по адресу %s." +"User with delegates can't be removed, please remove delegate users first" +msgstr "" #: src/Module/Admin/Addons/Details.php:65 msgid "Addon not found." @@ -4313,32 +3962,25 @@ msgid "Disable" msgstr "Отключить" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:332 msgid "Enable" msgstr "Включить" #: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:94 -#: src/Module/Admin/Blocklist/Server/Add.php:121 -#: src/Module/Admin/Blocklist/Server/Import.php:117 -#: src/Module/Admin/Blocklist/Server/Index.php:93 -#: src/Module/Admin/Federation.php:202 src/Module/Admin/Item/Delete.php:64 -#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:84 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:429 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:234 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:75 -#: src/Module/Admin/Users/Active.php:136 -#: src/Module/Admin/Users/Blocked.php:138 src/Module/Admin/Users/Create.php:61 -#: src/Module/Admin/Users/Deleted.php:85 src/Module/Admin/Users/Index.php:150 -#: src/Module/Admin/Users/Pending.php:101 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 msgid "Administration" -msgstr "Администрация" +msgstr "Администрирование" #: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:93 -#: src/Module/BaseSettings.php:85 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:139 msgid "Addons" msgstr "Дополнения" @@ -4347,13 +3989,13 @@ msgstr "Дополнения" msgid "Toggle" msgstr "Переключить" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 msgid "Author: " msgstr "Автор:" -#: src/Module/Admin/Addons/Details.php:122 -#: src/Module/Admin/Themes/Details.php:102 +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 msgid "Maintainer: " msgstr "Программа обслуживания: " @@ -4366,11 +4008,22 @@ msgstr "Дополнения перезагружены" msgid "Addon %s failed to install." msgstr "Не удалось установить дополнение %s." +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:303 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Сохранить настройки" + #: src/Module/Admin/Addons/Index.php:70 msgid "Reload active addons" msgstr "Перезагрузить активные дополнения" -#: src/Module/Admin/Addons/Index.php:75 +#: src/Module/Admin/Addons/Index.php:74 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4378,428 +4031,6 @@ msgid "" " the open addon registry at %2$s" msgstr "На вашем узле пока нет доступных дополнений. Вы можете найти официальный репозиторий дополнений на %1$s и найти больше интересных дополнений в открытой библиотеке на %2$s" -#: src/Module/Admin/BaseUsers.php:54 -msgid "List of all users" -msgstr "Все пользователи" - -#: src/Module/Admin/BaseUsers.php:59 -msgid "Active" -msgstr "Активные" - -#: src/Module/Admin/BaseUsers.php:62 -msgid "List of active accounts" -msgstr "Список активных пользователей" - -#: src/Module/Admin/BaseUsers.php:67 src/Module/Contact.php:317 -#: src/Module/Contact.php:377 -msgid "Pending" -msgstr "В ожидании" - -#: src/Module/Admin/BaseUsers.php:70 -msgid "List of pending registrations" -msgstr "Список ожидающих регистрацию" - -#: src/Module/Admin/BaseUsers.php:75 src/Module/Contact.php:325 -#: src/Module/Contact.php:378 -msgid "Blocked" -msgstr "Заблокированы" - -#: src/Module/Admin/BaseUsers.php:78 -msgid "List of blocked users" -msgstr "Заблокированные пользователи" - -#: src/Module/Admin/BaseUsers.php:83 -msgid "Deleted" -msgstr "Удалённые" - -#: src/Module/Admin/BaseUsers.php:86 -msgid "List of pending user deletions" -msgstr "Список ожидающих удаления" - -#: src/Module/Admin/BaseUsers.php:100 src/Module/Settings/Account.php:494 -msgid "Normal Account Page" -msgstr "Стандартная страница аккаунта" - -#: src/Module/Admin/BaseUsers.php:101 src/Module/Settings/Account.php:501 -msgid "Soapbox Page" -msgstr "Публичная страница" - -#: src/Module/Admin/BaseUsers.php:102 src/Module/Settings/Account.php:508 -msgid "Public Forum" -msgstr "Публичный форум" - -#: src/Module/Admin/BaseUsers.php:103 src/Module/Settings/Account.php:515 -msgid "Automatic Friend Page" -msgstr "\"Автоматический друг\" страница" - -#: src/Module/Admin/BaseUsers.php:104 -msgid "Private Forum" -msgstr "Закрытый форум" - -#: src/Module/Admin/BaseUsers.php:107 src/Module/Settings/Account.php:466 -msgid "Personal Page" -msgstr "Личная страница" - -#: src/Module/Admin/BaseUsers.php:108 src/Module/Settings/Account.php:473 -msgid "Organisation Page" -msgstr "Организационная страница" - -#: src/Module/Admin/BaseUsers.php:109 src/Module/Settings/Account.php:480 -msgid "News Page" -msgstr "Новостная страница" - -#: src/Module/Admin/BaseUsers.php:110 src/Module/Settings/Account.php:487 -msgid "Community Forum" -msgstr "Форум сообщества" - -#: src/Module/Admin/BaseUsers.php:111 -msgid "Relay" -msgstr "Ретранслятор" - -#: src/Module/Admin/Blocklist/Contact.php:54 -msgid "You can't block a local contact, please block the user instead" -msgstr "Нельзя заблокировать локальный контакт, пожалуйста заблокируйте самого пользователя." - -#: src/Module/Admin/Blocklist/Contact.php:73 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s контакт разблокирован" -msgstr[1] "%s контакта разблокированы" -msgstr[2] "%s контактов разблокировано" -msgstr[3] "%s контактов разблокировано" - -#: src/Module/Admin/Blocklist/Contact.php:95 -msgid "Remote Contact Blocklist" -msgstr "Чёрный список удалённых контактов" - -#: src/Module/Admin/Blocklist/Contact.php:96 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "На этой странице вы можете заблокировать приём вашим узлом любых записей от определённых контактов." - -#: src/Module/Admin/Blocklist/Contact.php:97 -msgid "Block Remote Contact" -msgstr "Заблокировать удалённый контакт" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#: src/Module/Admin/Users/Active.php:138 -#: src/Module/Admin/Users/Blocked.php:140 src/Module/Admin/Users/Index.php:152 -#: src/Module/Admin/Users/Pending.php:103 -msgid "select all" -msgstr "выбрать все" - -#: src/Module/Admin/Blocklist/Contact.php:99 -msgid "select none" -msgstr "сбросить выбор" - -#: src/Module/Admin/Blocklist/Contact.php:101 -#: src/Module/Admin/Users/Blocked.php:143 src/Module/Admin/Users/Index.php:157 -#: src/Module/Contact.php:401 src/Module/Contact/Profile.php:350 -#: src/Module/Contact/Profile.php:451 -msgid "Unblock" -msgstr "Разблокировать" - -#: src/Module/Admin/Blocklist/Contact.php:102 -msgid "No remote contact is blocked from this node." -msgstr "Для этого узла нет заблокированных контактов." - -#: src/Module/Admin/Blocklist/Contact.php:104 -msgid "Blocked Remote Contacts" -msgstr "Заблокированные контакты" - -#: src/Module/Admin/Blocklist/Contact.php:105 -msgid "Block New Remote Contact" -msgstr "Заблокировать новый контакт" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Photo" -msgstr "Фото" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Reason" -msgstr "Причина" - -#: src/Module/Admin/Blocklist/Contact.php:114 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "%s заблокированный контакт" -msgstr[1] "%s заблокированных контакта" -msgstr[2] "%s заблокированных контактов" -msgstr[3] "%s заблокированных контактов" - -#: src/Module/Admin/Blocklist/Contact.php:116 -msgid "URL of the remote contact to block." -msgstr "URL блокируемого контакта." - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "Also purge contact" -msgstr "Так же очистить контакт" - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "" -"Removes all content related to this contact from the node. Keeps the contact" -" record. This action cannot be undone." -msgstr "Удалить всё содержимое, относящееся к данному контакту на этом узле. Запись контакта будет сохранена. Это действие нельзя отменить." - -#: src/Module/Admin/Blocklist/Contact.php:118 -#: src/Module/Admin/Blocklist/Server/Import.php:123 -msgid "Block Reason" -msgstr "Причина блокировки" - -#: src/Module/Admin/Blocklist/Server/Add.php:80 -msgid "Server domain pattern added to the blocklist." -msgstr "Маска адреса сервера добавлена в чёрный список." - -#: src/Module/Admin/Blocklist/Server/Add.php:88 -#, php-format -msgid "%s server scheduled to be purged." -msgid_plural "%s servers scheduled to be purged." -msgstr[0] "%s сервер ожидает очистки." -msgstr[1] "%s сервера ожидают очистки." -msgstr[2] "%s серверов ожидают очистки." -msgstr[3] "%s серверов ожидают очистки." - -#: src/Module/Admin/Blocklist/Server/Add.php:120 -#: src/Module/Admin/Blocklist/Server/Import.php:116 -msgid "← Return to the list" -msgstr "← Вернуться к списку" - -#: src/Module/Admin/Blocklist/Server/Add.php:122 -msgid "Block A New Server Domain Pattern" -msgstr "Заблокировать новый сервер по маске" - -#: src/Module/Admin/Blocklist/Server/Add.php:123 -#: src/Module/Admin/Blocklist/Server/Index.php:97 -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" -"
    " -msgstr "

    Маска домена сервера нечувствительна к регистру и представляет собой выражение shell со следующими спецсимволами:

    \n
      \n\t
    • *: Любое число символов
    • \n\t
    • ?: Один любой символ
    • \n
    " - -#: src/Module/Admin/Blocklist/Server/Add.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:105 -msgid "Check pattern" -msgstr "Проверить маску" - -#: src/Module/Admin/Blocklist/Server/Add.php:129 -msgid "Matching known servers" -msgstr "Совпадающие известные серверы" - -#: src/Module/Admin/Blocklist/Server/Add.php:130 -msgid "Server Name" -msgstr "Имя сервера" - -#: src/Module/Admin/Blocklist/Server/Add.php:131 -msgid "Server Domain" -msgstr "Домен сервера" - -#: src/Module/Admin/Blocklist/Server/Add.php:132 -msgid "Known Contacts" -msgstr "Известные контакты" - -#: src/Module/Admin/Blocklist/Server/Add.php:133 -#, php-format -msgid "%d known server" -msgid_plural "%d known servers" -msgstr[0] "%d известный сервер" -msgstr[1] "%d известных сервера" -msgstr[2] "%d известных серверов" -msgstr[3] "%d известных серверов" - -#: src/Module/Admin/Blocklist/Server/Add.php:134 -msgid "Add pattern to the blocklist" -msgstr "Добавить маску в чёрный список" - -#: src/Module/Admin/Blocklist/Server/Add.php:136 -#: src/Module/Admin/Blocklist/Server/Index.php:114 -msgid "Server Domain Pattern" -msgstr "Маска домена узла" - -#: src/Module/Admin/Blocklist/Server/Add.php:136 -#: src/Module/Admin/Blocklist/Server/Index.php:114 -msgid "" -"The domain pattern of the new server to add to the blocklist. Do not include" -" the protocol." -msgstr "Маска домена сервера, который вы хотите добавить в чёрный список. Не включайте префикс протокола." - -#: src/Module/Admin/Blocklist/Server/Add.php:137 -msgid "Purge server" -msgstr "Очистить сервер" - -#: src/Module/Admin/Blocklist/Server/Add.php:137 -msgid "" -"Also purges all the locally stored content authored by the known contacts " -"registered on that server. Keeps the contacts and the server records. This " -"action cannot be undone." -msgid_plural "" -"Also purges all the locally stored content authored by the known contacts " -"registered on these servers. Keeps the contacts and the servers records. " -"This action cannot be undone." -msgstr[0] "Так же удаляет все локальные данные, созданные контактами, зарегистрированными на этом сервере. Сохраняет записи о самих контактах и сервере. Это действие нельзя отменить." -msgstr[1] "Так же удаляет все локальные данные, созданные контактами, зарегистрированными на этих серверах. Сохраняет записи о самих контактах и серверах. Это действие нельзя отменить." -msgstr[2] "Так же удаляет все локальные данные, созданные контактами, зарегистрированными на этих серверах. Сохраняет записи о самих контактах и серверах. Это действие нельзя отменить." -msgstr[3] "Так же удаляет все локальные данные, созданные контактами, зарегистрированными на этих серверах. Сохраняет записи о самих контактах и серверах. Это действие нельзя отменить." - -#: src/Module/Admin/Blocklist/Server/Add.php:138 -msgid "Block reason" -msgstr "Причина блокировки" - -#: src/Module/Admin/Blocklist/Server/Add.php:138 -msgid "" -"The reason why you blocked this server domain pattern. This reason will be " -"shown publicly in the server information page." -msgstr "Причина, по которой вы заблокировали этот домен. Это будет показано публично на странице с информацией о сервере." - -#: src/Module/Admin/Blocklist/Server/Import.php:75 -#: src/Module/Admin/Blocklist/Server/Import.php:84 -msgid "Error importing pattern file" -msgstr "Ошибка импорта файла списка" - -#: src/Module/Admin/Blocklist/Server/Import.php:90 -msgid "Local blocklist replaced with the provided file." -msgstr "Список блокировки заменён на список из файла." - -#: src/Module/Admin/Blocklist/Server/Import.php:94 -#, php-format -msgid "%d pattern was added to the local blocklist." -msgid_plural "%d patterns were added to the local blocklist." -msgstr[0] "%d маска была добавлена в список блокировки." -msgstr[1] "%d маски были добавлены в список блокировки." -msgstr[2] "%d масок было добавлено в список блокировки." -msgstr[3] "%d масок было добавлено в список блокировки." - -#: src/Module/Admin/Blocklist/Server/Import.php:96 -msgid "No pattern was added to the local blocklist." -msgstr "Новых масок не было добавлено." - -#: src/Module/Admin/Blocklist/Server/Import.php:118 -msgid "Import a Server Domain Pattern Blocklist" -msgstr "Импорт списка блокировки серверов" - -#: src/Module/Admin/Blocklist/Server/Import.php:119 -msgid "" -"

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

    " -msgstr "

    Этот файл может быть загружен по ссылке /friendica с любого сервера Friendica.

    " - -#: src/Module/Admin/Blocklist/Server/Import.php:120 -#: src/Module/Admin/Blocklist/Server/Index.php:104 -msgid "Upload file" -msgstr "Загрузить файл" - -#: src/Module/Admin/Blocklist/Server/Import.php:121 -msgid "Patterns to import" -msgstr "Маски для импорта" - -#: src/Module/Admin/Blocklist/Server/Import.php:122 -msgid "Domain Pattern" -msgstr "Маска домена" - -#: src/Module/Admin/Blocklist/Server/Import.php:124 -msgid "Import Mode" -msgstr "Режим импорта" - -#: src/Module/Admin/Blocklist/Server/Import.php:125 -msgid "Import Patterns" -msgstr "Импорт значений" - -#: src/Module/Admin/Blocklist/Server/Import.php:126 -#, php-format -msgid "%d total pattern" -msgid_plural "%d total patterns" -msgstr[0] "%d маска" -msgstr[1] "%d маски всего" -msgstr[2] "%d масок всего" -msgstr[3] "%d масок всего" - -#: src/Module/Admin/Blocklist/Server/Import.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:113 -msgid "Server domain pattern blocklist CSV file" -msgstr "Список блокировки серверов в виде файла CSV" - -#: src/Module/Admin/Blocklist/Server/Import.php:129 -msgid "Append" -msgstr "Добавить" - -#: src/Module/Admin/Blocklist/Server/Import.php:129 -msgid "" -"Imports patterns from the file that weren't already existing in the current " -"blocklist." -msgstr "Добавляет маски из файла, которые ещё не существуют в текущем списке блокировки." - -#: src/Module/Admin/Blocklist/Server/Import.php:130 -msgid "Replace" -msgstr "Заменить" - -#: src/Module/Admin/Blocklist/Server/Import.php:130 -msgid "Replaces the current blocklist by the imported patterns." -msgstr "Заменяет текущий список загруженными значениями." - -#: src/Module/Admin/Blocklist/Server/Index.php:84 -#: src/Module/Admin/Blocklist/Server/Index.php:108 -msgid "Blocked server domain pattern" -msgstr "Маска домена блокируемого сервера" - -#: src/Module/Admin/Blocklist/Server/Index.php:85 -#: src/Module/Admin/Blocklist/Server/Index.php:109 src/Module/Friendica.php:83 -msgid "Reason for the block" -msgstr "Причина блокировки" - -#: src/Module/Admin/Blocklist/Server/Index.php:86 -msgid "Delete server domain pattern" -msgstr "Удалить маску домена" - -#: src/Module/Admin/Blocklist/Server/Index.php:86 -msgid "Check to delete this entry from the blocklist" -msgstr "Отметьте, чтобы удалить эту запись из списка блокировки" - -#: src/Module/Admin/Blocklist/Server/Index.php:94 -msgid "Server Domain Pattern Blocklist" -msgstr "Список блокировки доменов" - -#: src/Module/Admin/Blocklist/Server/Index.php:95 -msgid "" -"This page can be used to define a blocklist of server domain patterns from " -"the federated network that are not allowed to interact with your node. For " -"each domain pattern you should also provide the reason why you block it." -msgstr "На этой странице можно настроить список блокировки доменов узлов федеративной сети, которые не должны взаимодействовать с вашим узлом. Для каждой записи вы должны предоставить причину блокировки." - -#: src/Module/Admin/Blocklist/Server/Index.php:96 -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 "Список блокируемых доменов будет отображаться публично на странице /friendica, чтобы ваши пользователи и другие люди могли легко понять причину проблем с доставкой записей." - -#: src/Module/Admin/Blocklist/Server/Index.php:102 -msgid "Import server domain pattern blocklist" -msgstr "Импорт списка блокировки" - -#: src/Module/Admin/Blocklist/Server/Index.php:103 -msgid "Add new entry to the blocklist" -msgstr "Добавить новую запись в список блокировки" - -#: src/Module/Admin/Blocklist/Server/Index.php:106 -msgid "Save changes to the blocklist" -msgstr "Сохранить изменения списка блокировки" - -#: src/Module/Admin/Blocklist/Server/Index.php:107 -msgid "Current Entries in the Blocklist" -msgstr "Текущие значения списка блокировки" - -#: src/Module/Admin/Blocklist/Server/Index.php:110 -msgid "Delete entry from the blocklist" -msgstr "Удалить запись из списка" - -#: src/Module/Admin/Blocklist/Server/Index.php:111 -msgid "Delete entry from the blocklist?" -msgstr "Удалить запись из списка блокировки?" - #: src/Module/Admin/DBSync.php:51 msgid "Update has been marked successful" msgstr "Обновление было успешно отмечено" @@ -4834,28 +4065,28 @@ msgstr "Процесс обновления %s не вернул статус. msgid "There was no additional update function %s that needed to be called." msgstr "Не было процедур обновления %s, которые нужно было запустить." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:105 msgid "No failed updates." msgstr "Неудавшихся обновлений нет." -#: src/Module/Admin/DBSync.php:107 +#: src/Module/Admin/DBSync.php:106 msgid "Check database structure" msgstr "Проверить структуру базы данных" -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:110 msgid "Failed Updates" msgstr "Неудавшиеся обновления" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:111 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Эта цифра не включает обновления до 1139, которое не возвращает статус." -#: src/Module/Admin/DBSync.php:114 +#: src/Module/Admin/DBSync.php:112 msgid "Mark success (if update was manually applied)" msgstr "Отмечено успешно (если обновление было применено вручную)" -#: src/Module/Admin/DBSync.php:115 +#: src/Module/Admin/DBSync.php:113 msgid "Attempt to execute this update step automatically" msgstr "Попытаться выполнить этот шаг обновления автоматически" @@ -4864,93 +4095,95 @@ msgstr "Попытаться выполнить этот шаг обновлен msgid "Lock feature %s" msgstr "Заблокировать %s" -#: src/Module/Admin/Features.php:85 +#: src/Module/Admin/Features.php:84 msgid "Manage Additional Features" msgstr "Управление дополнительными возможностями" -#: src/Module/Admin/Federation.php:70 +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 msgid "Other" msgstr "Другой" -#: src/Module/Admin/Federation.php:142 src/Module/Admin/Federation.php:391 +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 msgid "unknown" msgstr "неизвестно" -#: src/Module/Admin/Federation.php:175 +#: src/Module/Admin/Federation.php:187 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%2$s система всего" +msgstr[1] "%2$s системы всего" +msgstr[2] "%2$s систем всего" +msgstr[3] "%2$s систем всего" -#: src/Module/Admin/Federation.php:176 +#: src/Module/Admin/Federation.php:188 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%2$s активный пользователь за месяц" +msgstr[1] "%2$s активных пользователя за месяц" +msgstr[2] "%2$s активных пользователей за месяц" +msgstr[3] "%2$s активных пользователей за месяц" -#: src/Module/Admin/Federation.php:177 +#: src/Module/Admin/Federation.php:189 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%2$s активный пользователь за полгода" +msgstr[1] "%2$s активных пользователя за полгода" +msgstr[2] "%2$s активных пользователей за полгода" +msgstr[3] "%2$s активных пользователей за полгода" -#: src/Module/Admin/Federation.php:178 +#: src/Module/Admin/Federation.php:190 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%2$s зарегистрированный пользователь" +msgstr[1] "%2$s зарегистрированных пользователя" +msgstr[2] "%2$s зарегистрированных пользователей" +msgstr[3] "%2$s зарегистрированных пользователей" -#: src/Module/Admin/Federation.php:179 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%2$s местная запись или комментарий" +msgstr[1] "%2$s местных записей и комментариев" +msgstr[2] "%2$s местных записей и комментариев" +msgstr[3] "%2$s местных записей и комментариев" -#: src/Module/Admin/Federation.php:182 +#: src/Module/Admin/Federation.php:194 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%2$s запись на пользователя" +msgstr[1] "%2$s записи на пользователя" +msgstr[2] "%2$s записей на пользователя" +msgstr[3] "%2$s записей на пользователя" -#: src/Module/Admin/Federation.php:187 +#: src/Module/Admin/Federation.php:199 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%2$s пользователь на систему" +msgstr[1] "%2$s пользователя на систему" +msgstr[2] "%2$s пользователей на систему" +msgstr[3] "%2$s пользователей на систему" -#: src/Module/Admin/Federation.php:197 +#: src/Module/Admin/Federation.php:209 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:203 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "Статистика федерации" -#: src/Module/Admin/Federation.php:207 +#: src/Module/Admin/Federation.php:219 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4960,134 +4193,63 @@ msgid_plural "" "Currently this node is aware of %2$s nodes (%3$s active users last month, " "%4$s active users last six months, %5$s registered users in total) from the " "following platforms:" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: src/Module/Admin/Item/Delete.php:53 -msgid "Item marked for deletion." -msgstr "Запись помечена для удаления." - -#: src/Module/Admin/Item/Delete.php:65 src/Module/BaseAdmin.php:106 -msgid "Delete Item" -msgstr "Удалить запись" - -#: src/Module/Admin/Item/Delete.php:66 -msgid "Delete this Item" -msgstr "Удалить эту запись" - -#: src/Module/Admin/Item/Delete.php:67 -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 "На этой странице вы можете удалять записи на вашем узле. Если запись является родительской, то будет удалена вся её ветка." - -#: src/Module/Admin/Item/Delete.php:68 -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 "Вам нужно знать GUID записи. Вы можете узнать его, посмотрев на ссылку записи. Последняя часть ссылки - GUID. Например, для http://example.com/display/123456 - GUID будет 123456." - -#: src/Module/Admin/Item/Delete.php:69 -msgid "GUID" -msgstr "GUID" - -#: src/Module/Admin/Item/Delete.php:69 -msgid "The GUID of the item you want to delete." -msgstr "GUID записи, которую вы хотите удалить." - -#: src/Module/Admin/Item/Source.php:53 src/Module/BaseAdmin.php:116 -msgid "Item Source" -msgstr "" - -#: src/Module/Admin/Item/Source.php:54 -msgid "Item Guid" -msgstr "GUID записи" - -#: src/Module/Admin/Item/Source.php:58 -msgid "Item Id" -msgstr "" - -#: src/Module/Admin/Item/Source.php:59 -msgid "Item URI" -msgstr "" - -#: src/Module/Admin/Item/Source.php:61 -msgid "Terms" -msgstr "" - -#: src/Module/Admin/Item/Source.php:62 -msgid "Tag" -msgstr "" - -#: src/Module/Admin/Item/Source.php:63 src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:131 src/Module/Admin/Users/Index.php:143 -msgid "Type" -msgstr "Тип" - -#: src/Module/Admin/Item/Source.php:64 -msgid "Term" -msgstr "" - -#: src/Module/Admin/Item/Source.php:65 -msgid "URL" -msgstr "" - -#: src/Module/Admin/Item/Source.php:66 -msgid "Mention" -msgstr "" - -#: src/Module/Admin/Item/Source.php:67 -msgid "Implicit Mention" -msgstr "" +msgstr[0] "Сейчас этому узлу известно о %2$s узле (%3$s активных пользователей за месяц, %4$s активных пользователей за полгода, %5$s всего зарегистрированных) с платформой:" +msgstr[1] "Сейчас этому узлу известно о %2$s узлах (%3$s активных пользователей за месяц, %4$s активных пользователей за полгода, %5$s всего зарегистрированных) со следующими платформами:" +msgstr[2] "Сейчас этому узлу известно о%2$s узлах (%3$s активных пользователей за месяц, %4$s активных пользователей за полгода, %5$s всего зарегистрированных) со следующими платформами:" +msgstr[3] "Сейчас этому узлу известно о %2$s узлах (%3$s активных пользователей за месяц, %4$s активных пользователей за полгода, %5$s всего зарегистрированных) со следующими платформами:" #: src/Module/Admin/Logs/Settings.php:47 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "Файл журнала '%s' недоступен для записи. Журналирование невозможно." -#: src/Module/Admin/Logs/Settings.php:71 +#: src/Module/Admin/Logs/Settings.php:77 msgid "PHP log currently enabled." msgstr "Лог PHP включен." -#: src/Module/Admin/Logs/Settings.php:73 +#: src/Module/Admin/Logs/Settings.php:79 msgid "PHP log currently disabled." msgstr "Лог PHP выключен." -#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:108 -#: src/Module/BaseAdmin.php:109 +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 msgid "Logs" msgstr "Журналы" -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:88 msgid "Clear" msgstr "Очистить" -#: src/Module/Admin/Logs/Settings.php:86 +#: src/Module/Admin/Logs/Settings.php:91 msgid "Enable Debugging" msgstr "Включить отладку" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:92 msgid "Log file" msgstr "Лог-файл" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:92 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня." -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:93 msgid "Log level" msgstr "Уровень лога" -#: src/Module/Admin/Logs/Settings.php:90 +#: src/Module/Admin/Logs/Settings.php:95 msgid "PHP logging" msgstr "PHP логирование" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:96 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 " @@ -5101,84 +4263,88 @@ msgstr "Чтобы временно включить журналировани msgid "" "Error trying to open %1$s log file.
    Check to see if " "file %1$s exist and is readable." -msgstr "" +msgstr "Ошибка при открытии файла журнала %1$s.
    Проверьте, что файл %1$s существует и может быть прочитан веб-сервером." #: src/Module/Admin/Logs/View.php:79 #, php-format msgid "" "Couldn't open %1$s log file.
    Check to see if file %1$s " "is readable." -msgstr "" +msgstr "Не получилось открыть файл журнала %1$s. Проверьте, что файл %1$s может быть прочитан веб-сервером." -#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:110 +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 msgid "View Logs" -msgstr "Просмотр логов" +msgstr "Просмотр журналов" + +#: src/Module/Admin/Logs/View.php:87 +msgid "Search in logs" +msgstr "Поиск в журналах событий" #: src/Module/Admin/Logs/View.php:88 -msgid "Search in logs" -msgstr "" - -#: src/Module/Admin/Logs/View.php:89 -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Notifications/Notifications.php:140 msgid "Show all" msgstr "Показать все" -#: src/Module/Admin/Logs/View.php:90 +#: src/Module/Admin/Logs/View.php:89 msgid "Date" -msgstr "" +msgstr "Дата" + +#: src/Module/Admin/Logs/View.php:90 +msgid "Level" +msgstr "Уровень" #: src/Module/Admin/Logs/View.php:91 -msgid "Level" -msgstr "" - -#: src/Module/Admin/Logs/View.php:92 msgid "Context" -msgstr "" +msgstr "Контекст" + +#: src/Module/Admin/Logs/View.php:93 +msgid "ALL" +msgstr "ВСЕ" #: src/Module/Admin/Logs/View.php:94 -msgid "ALL" -msgstr "" +msgid "View details" +msgstr "Посмотреть детали" #: src/Module/Admin/Logs/View.php:95 -msgid "View details" -msgstr "" - -#: src/Module/Admin/Logs/View.php:96 msgid "Click to view details" -msgstr "" +msgstr "Нажмите для просмотра подробностей" + +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Сведения о мероприятии" + +#: src/Module/Admin/Logs/View.php:97 +msgid "Data" +msgstr "Данные" #: src/Module/Admin/Logs/View.php:98 -msgid "Data" -msgstr "" - -#: src/Module/Admin/Logs/View.php:99 #: src/Module/Debug/ActivityPubConversion.php:57 msgid "Source" -msgstr "" +msgstr "Источник" + +#: src/Module/Admin/Logs/View.php:99 +msgid "File" +msgstr "Файл" #: src/Module/Admin/Logs/View.php:100 -msgid "File" -msgstr "" +msgid "Line" +msgstr "Строка" #: src/Module/Admin/Logs/View.php:101 -msgid "Line" -msgstr "" +msgid "Function" +msgstr "Функция" #: src/Module/Admin/Logs/View.php:102 -msgid "Function" -msgstr "" +msgid "UID" +msgstr "UID" #: src/Module/Admin/Logs/View.php:103 -msgid "UID" -msgstr "" +msgid "Process ID" +msgstr "ID процесса" #: src/Module/Admin/Logs/View.php:104 -msgid "Process ID" -msgstr "" - -#: src/Module/Admin/Logs/View.php:105 msgid "Close" -msgstr "" +msgstr "Закрыть" #: src/Module/Admin/Queue.php:50 msgid "Inspect Deferred Worker Queue" @@ -5206,469 +4372,478 @@ msgstr "ID" #: src/Module/Admin/Queue.php:76 msgid "Command" -msgstr "" +msgstr "Команда" #: src/Module/Admin/Queue.php:77 msgid "Job Parameters" msgstr "Параметры задания" +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "Создано" + #: src/Module/Admin/Queue.php:79 msgid "Priority" msgstr "Приоритет" -#: src/Module/Admin/Site.php:334 src/Module/Settings/Display.php:137 +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" +msgstr "%s недопустимое значение для максимального размера изображений" + +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:211 msgid "No special theme for mobile devices" msgstr "Нет специальной темы для мобильных устройств" -#: src/Module/Admin/Site.php:351 src/Module/Settings/Display.php:147 +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:221 #, php-format msgid "%s - (Experimental)" msgstr "%s - (экспериментально)" -#: src/Module/Admin/Site.php:363 +#: src/Module/Admin/Site.php:342 msgid "No community page" msgstr "Нет общей ленты записей" -#: src/Module/Admin/Site.php:364 +#: src/Module/Admin/Site.php:343 msgid "No community page for visitors" -msgstr "" +msgstr "Нет общей ленты записей для гостей" -#: src/Module/Admin/Site.php:365 +#: src/Module/Admin/Site.php:344 msgid "Public postings from users of this site" msgstr "Публичные записи от пользователей этого узла" -#: src/Module/Admin/Site.php:366 +#: src/Module/Admin/Site.php:345 msgid "Public postings from the federated network" msgstr "Публичные записи федеративной сети" -#: src/Module/Admin/Site.php:367 +#: src/Module/Admin/Site.php:346 msgid "Public postings from local users and the federated network" msgstr "Публичные записи от местных пользователей и федеративной сети." -#: src/Module/Admin/Site.php:373 +#: src/Module/Admin/Site.php:352 msgid "Multi user instance" msgstr "Многопользовательский вид" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:375 msgid "Closed" msgstr "Закрыто" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:376 msgid "Requires approval" msgstr "Требуется подтверждение" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:377 msgid "Open" msgstr "Открыто" -#: src/Module/Admin/Site.php:406 src/Module/Install.php:222 -msgid "No SSL policy, links will track page SSL state" -msgstr "Нет режима SSL, состояние SSL не будет отслеживаться" - -#: src/Module/Admin/Site.php:407 src/Module/Install.php:223 -msgid "Force all links to use SSL" -msgstr "Заставить все ссылки использовать SSL" - -#: src/Module/Admin/Site.php:408 src/Module/Install.php:224 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Само-подписанный сертификат, использовать SSL только локально (не рекомендуется)" - -#: src/Module/Admin/Site.php:412 +#: src/Module/Admin/Site.php:381 msgid "Don't check" msgstr "Не проверять" -#: src/Module/Admin/Site.php:413 +#: src/Module/Admin/Site.php:382 msgid "check the stable version" msgstr "проверить стабильную версию" -#: src/Module/Admin/Site.php:414 +#: src/Module/Admin/Site.php:383 msgid "check the development version" msgstr "проверить development-версию" -#: src/Module/Admin/Site.php:418 +#: src/Module/Admin/Site.php:387 msgid "none" msgstr "нет" -#: src/Module/Admin/Site.php:419 +#: src/Module/Admin/Site.php:388 msgid "Local contacts" msgstr "Местные контакты" -#: src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:389 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:430 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Сайт" -#: src/Module/Admin/Site.php:431 +#: src/Module/Admin/Site.php:400 msgid "General Information" -msgstr "" +msgstr "Общая информация" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:402 msgid "Republish users to directory" msgstr "Переопубликовать пользователей в каталог" -#: src/Module/Admin/Site.php:434 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 msgid "Registration" msgstr "Регистрация" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:404 msgid "File upload" msgstr "Загрузка файлов" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:405 msgid "Policies" msgstr "Политики" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "Дополнительно" + +#: src/Module/Admin/Site.php:407 msgid "Auto Discovered Contact Directory" msgstr "Каталог автообнаружения контактов" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:408 msgid "Performance" msgstr "Производительность" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:409 msgid "Worker" msgstr "Обработчик" -#: src/Module/Admin/Site.php:441 +#: src/Module/Admin/Site.php:410 msgid "Message Relay" msgstr "Ретранслятор записей" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:411 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "Используйте команду \"console relay\" в командной строке для добавления и удаления ретрансляторов." -#: src/Module/Admin/Site.php:443 +#: src/Module/Admin/Site.php:412 msgid "The system is not subscribed to any relays at the moment." msgstr "Система сейчас не подписана на ретрансляторы." -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:413 msgid "The system is currently subscribed to the following relays:" msgstr "Система сейчас подписана на следующие ретрансляторы:" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:415 msgid "Relocate Node" msgstr "Переместить узел" -#: src/Module/Admin/Site.php:447 +#: src/Module/Admin/Site.php:416 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "Перемещение узла позволяет вам изменить DNS-имя этого узла с сохранением всех пользователей и записей. Этот процесс может занять много времени и может быть запущен только с помощью команды консоли:" -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:417 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(каталог Friendica)# bin/console relocate https://newdomain.com" -#: src/Module/Admin/Site.php:452 +#: src/Module/Admin/Site.php:420 msgid "Site name" msgstr "Название сайта" -#: src/Module/Admin/Site.php:453 +#: src/Module/Admin/Site.php:421 msgid "Sender Email" msgstr "Системный Email" -#: src/Module/Admin/Site.php:453 +#: src/Module/Admin/Site.php:421 msgid "" "The email address your server shall use to send notification emails from." msgstr "Адрес с которого будут приходить письма пользователям." -#: src/Module/Admin/Site.php:454 +#: src/Module/Admin/Site.php:422 msgid "Name of the system actor" msgstr "Имя системного аккаунта" -#: src/Module/Admin/Site.php:454 +#: src/Module/Admin/Site.php:422 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 "Имя внутреннего системного аккаунта, который используется для выполнения запросов ActivityPub. Это должно быть не занятое имя пользователя. После установки его нельзя изменить снова." -#: src/Module/Admin/Site.php:455 +#: src/Module/Admin/Site.php:423 msgid "Banner/Logo" msgstr "Баннер/Логотип" -#: src/Module/Admin/Site.php:456 +#: src/Module/Admin/Site.php:424 msgid "Email Banner/Logo" msgstr "Лого для писем" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:425 msgid "Shortcut icon" msgstr "Иконка сайта" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:425 msgid "Link to an icon that will be used for browsers." msgstr "Ссылка на иконку, которая будет использоваться браузерами." -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:426 msgid "Touch icon" msgstr "Иконка веб-приложения" -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:426 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Ссылка на иконку, которая будет использоваться для создания ярлыка на смартфонах и планшетах." -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:427 msgid "Additional Info" msgstr "Дополнительная информация" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:427 #, 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:460 +#: src/Module/Admin/Site.php:428 msgid "System language" msgstr "Системный язык" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:429 msgid "System theme" msgstr "Системная тема" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:429 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "Тема по-умолчанию - пользователи могут менять её в настройках своего профиля - Изменить тему по-умолчанию" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:430 msgid "Mobile system theme" msgstr "Мобильная тема системы" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:430 msgid "Theme for mobile devices" msgstr "Тема для мобильных устройств" -#: src/Module/Admin/Site.php:463 src/Module/Install.php:232 -msgid "SSL link policy" -msgstr "Политика SSL" - -#: src/Module/Admin/Site.php:463 src/Module/Install.php:234 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Ссылки должны быть вынуждены использовать SSL" - -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:431 msgid "Force SSL" msgstr "SSL принудительно" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:431 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:465 +#: src/Module/Admin/Site.php:432 msgid "Show help entry from navigation menu" msgstr "Показать пункт \"помощь\" в меню навигации" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:432 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "Показывает пункт меню для страницы справки из меню навигации. Она так же всегда доступна по прямой ссылке /help." -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:433 msgid "Single user instance" msgstr "Однопользовательский режим" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:433 msgid "Make this instance multi-user or single-user for the named user" msgstr "Сделать этот экземпляр многопользовательским, или однопользовательским для названного пользователя" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:435 msgid "Maximum image size" msgstr "Максимальный размер изображения" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:435 +#, php-format msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Максимальный размер в байтах для загружаемых изображений. По умолчанию 0, что означает отсутствие ограничений." +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:439 msgid "Maximum image length" msgstr "Максимальная длина картинки" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:439 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:470 +#: src/Module/Admin/Site.php:440 msgid "JPEG image quality" msgstr "Качество JPEG изображения" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:440 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По умолчанию 100, что означает полное качество." -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:442 msgid "Register policy" msgstr "Политика регистрация" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "Максимум пользователей" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "Если включено, регистрация будет автоматически закрываться при достижении указанного числа пользователей и вновь открываться, если число пользователей снова снизится. Это работает только, если регистрация установлена как открытая или закрытая, но не когда включено её одобрение." + +#: src/Module/Admin/Site.php:444 msgid "Maximum Daily Registrations" msgstr "Максимальное число регистраций в день" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:444 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:474 +#: src/Module/Admin/Site.php:445 msgid "Register text" msgstr "Текст регистрации" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:445 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Будет отображаться на видном месте на странице регистрации. Вы можете использовать BBCode для оформления." -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:446 msgid "Forbidden Nicknames" msgstr "Запрещённые ники" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:446 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:476 +#: src/Module/Admin/Site.php:447 msgid "Accounts abandoned after x days" msgstr "Аккаунт считается после x дней не воспользованным" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:447 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:477 +#: src/Module/Admin/Site.php:448 msgid "Allowed friend domains" msgstr "Разрешенные домены друзей" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:448 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:478 +#: src/Module/Admin/Site.php:449 msgid "Allowed email domains" msgstr "Разрешенные почтовые домены" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:449 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:479 +#: src/Module/Admin/Site.php:450 msgid "No OEmbed rich content" msgstr "Не показывать контент OEmbed" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:450 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "Не показывать внедрённое содержимое (например, PDF), если источником не являются домены из списка ниже." -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:451 msgid "Trusted third-party domains" msgstr "Доверенные внешние домены" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:451 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 "Список доменов через запятую, данные с которых будет разрешено внедрять в записи через OEmbed. Все поддомены этих доменов будут так же разрешены." -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:452 msgid "Block public" msgstr "Блокировать общественный доступ" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:452 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:482 +#: src/Module/Admin/Site.php:453 msgid "Force publish" msgstr "Принудительная публикация" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:453 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта." -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:453 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Включение этого может нарушить законы о личных данных, например, GDPR." -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:454 msgid "Global directory URL" msgstr "URL глобального каталога" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:454 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:484 +#: src/Module/Admin/Site.php:455 msgid "Private posts by default for new users" msgstr "Частные сообщения по умолчанию для новых пользователей" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:455 msgid "" "Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Установить права на создание записей по умолчанию для всех участников в дефолтной приватной группе, а не для публичных участников." +"circle rather than public." +msgstr "Установить права на создание записей по-умолчанию для всех участников в приватный круг, а не для публично." -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:456 msgid "Don't include post content in email notifications" msgstr "Не включать текст сообщения в email-оповещение." -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:456 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:486 +#: src/Module/Admin/Site.php:457 msgid "Disallow public access to addons listed in the apps menu." msgstr "Запретить публичный доступ к аддонам, перечисленным в меню приложений." -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:457 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "При установке этого флажка, будут ограничены аддоны, перечисленные в меню приложений, только для участников." -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:458 msgid "Don't embed private images in posts" msgstr "Не вставлять личные картинки в записи" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:458 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 " @@ -5676,11 +4851,11 @@ msgid "" "while." msgstr "Не заменяйте локально расположенные фотографии в записях на внедрённые копии изображений. Это означает, что контакты, которые получают сообщения, содержащие личные фотографии, будут вынуждены идентефицироваться и грузить каждое изображение, что может занять некоторое время." -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:459 msgid "Explicit Content" msgstr "Контент для взрослых" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:459 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 " @@ -5689,257 +4864,267 @@ msgid "" "will be shown at the user registration page." msgstr "Включите, если ваш узел будет содержать преимущественно откровенный/чувствительный контент, который не должен быть показан несовершеннолетним. Эта информация появится в информации об узле и может быть использована, например, в глобальном каталоге для скрытия вашего узла при подборе узлов для регистрации. Так же пометка об этом появится на странице регистрации." -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:460 msgid "Proxify external content" msgstr "Проксировать внешние данные" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:460 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "Отображать внешний контент через встроенное прокси. Это используется для некоторых случаев отображения OEmbed и некоторых других." -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:461 msgid "Cache contact avatars" msgstr "Кэшировать аватары" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:461 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "Локально сохранять аватары контактов. Это потребует существенного расхода места на диске, но увеличит производительность." -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:462 msgid "Allow Users to set remote_self" msgstr "Разрешить пользователям установить remote_self" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:462 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:492 +#: src/Module/Admin/Site.php:463 msgid "Enable multiple registrations" msgstr "Разрешить несколько регистраций" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:463 msgid "Enable users to register additional accounts for use as pages." msgstr "Разрешить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц." -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID" msgstr "Включить OpenID" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID support for registration and logins." msgstr "Включить поддержку OpenID для регистрации и входа." -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:465 msgid "Enable Fullname check" msgstr "Включить проверку полноты имени" -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:465 msgid "" "Enable check to only allow users to register with a space between the first " "name and the last name in their full name." msgstr "Проверять при регистрации, чтобы пользователь имел пробел в указанном имени между именем и фамилией." -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "Уведомлять администраторов о новых регистрациях" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "Если включено и регистрации открыты, то о каждой новой регистрации будет сообщаться администраторам по электронной почте." + +#: src/Module/Admin/Site.php:467 msgid "Community pages for visitors" msgstr "Публичная лента для посетителей" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:467 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Какие публичные ленты будут доступны для гостей. Местные пользователи всегда видят обе ленты." -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:468 msgid "Posts per user on community page" msgstr "Число записей на пользователя в публичной ленте" -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:468 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "\"Global Community\")" msgstr "Максимальное число записей от одного пользователя в публичной ленте узла. (Не применяется к федеративной публичной ленте)." -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:470 msgid "Enable Mail support" -msgstr "" +msgstr "Включить поддержку электронной почты" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:470 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." -msgstr "" +msgstr "Включает встроенную поддержку электронной почты, позволяющую работать с папками IMAP и отвечать по почте." -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:471 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." -msgstr "" +msgstr "Поддержка почты не может быть включена, так как не установлен модуль PHP IMAP." -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:472 msgid "Enable OStatus support" msgstr "Включить поддержку OStatus" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:472 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "Включить встроенную поддержку OStatus (StatusNet, GNU Social и т.п.). Всё общение в OStatus происходит публично." -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:474 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Поддержка Diaspora не может быть включена, так как Френдика была установлена в подкаталог." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:475 msgid "Enable Diaspora support" msgstr "Включить поддержку Diaspora" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:475 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "Включить встроенную поддержку Diaspora для общения с серверами сети Diaspora." -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:476 msgid "Verify SSL" msgstr "Проверка SSL" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:476 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:505 +#: src/Module/Admin/Site.php:477 msgid "Proxy user" msgstr "Прокси пользователь" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:477 msgid "User name for the proxy server." msgstr "Имя пользователя прокси" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:478 msgid "Proxy URL" msgstr "Прокси URL" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:478 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "Если вы хотите указать прокси, который Friendica будет использовать для выхода в сеть, укажите здесь его URL." -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:479 msgid "Network timeout" msgstr "Тайм-аут сети" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:479 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется)." -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:480 msgid "Maximum Load Average" msgstr "Средняя максимальная нагрузка" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:480 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "Максимальная нагрузка на систему, прежде чем задания опроса и доставки начнут приостанавливаться - по-умолчанию %d." -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:481 msgid "Minimal Memory" msgstr "Минимум памяти" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:481 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "Минимально допустимая свободная память ОЗУ для запуска заданий. Для работы нужен доступ в /proc/meminfo - по-умолчанию 0 (отключено)." -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables" msgstr "Периодически оптимизировать таблицы" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "Периодически оптимизировать таблицы, такие как cache и workerqueue" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:484 msgid "Discover followers/followings from contacts" msgstr "Обнаруживать подписчиков и друзей для контактов" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:484 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "Если включено, контакты будут проверяться на наличие подписчиков и друзей." -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:485 msgid "None - deactivated" msgstr "None - выключено." -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:486 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "Local contacts - местные контакты будут проверяться на наличие подписчиков и друзей." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:487 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "Interactors - местные контакты и те контакты, кто взаимодействовал с локально видимыми записями, будут проверяться на наличие подписчиков и друзей." -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:489 msgid "Synchronize the contacts with the directory server" msgstr "Синхронизировать контакты с сервером каталога" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:489 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "Если включено, то система будет периодически проверять новые контакты на указанном сервере каталога." -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:491 msgid "Days between requery" msgstr "Интервал запросов" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:491 msgid "Number of days after which a server is requeried for his contacts." msgstr "Интервал в днях, с которым контакты сервера будут перепроверяться." -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:492 msgid "Discover contacts from other servers" msgstr "Обнаруживать контакты с других серверов" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:492 msgid "" "Periodically query other servers for contacts. The system queries Friendica," " Mastodon and Hubzilla servers." msgstr "Периодически опрашивать контакты с других серверов. В них входят Friendica, Mastodon и Hubzilla." -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:493 msgid "Search the local directory" msgstr "Искать в местном каталоге" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:493 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:523 +#: src/Module/Admin/Site.php:495 msgid "Publish server information" msgstr "Опубликовать информацию о сервере" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:495 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 " @@ -5947,50 +5132,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "Если включено, общая информация о сервере и статистика будут опубликованы. В данных содержатся имя сервера, версия ПО, число пользователей с открытыми профилями, число записей, подключенные протоколы и соединители. Подробности смотрите на the-federation.info." -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:497 msgid "Check upstream version" msgstr "Проверять версию в репозитории" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:497 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. Если появится новая версия, вы получите уведомление в панели администратора." -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:498 msgid "Suppress Tags" msgstr "Скрывать тэги" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:498 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Отключить показ списка тэгов в конце записей." -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:499 msgid "Clean database" msgstr "Очистка базы данных" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:499 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Удалять старые записи, полученные с других серверов, ненужные записи в базе данных." -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:500 msgid "Lifespan of remote items" msgstr "Время жизни записей с других серверов" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:500 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:529 +#: src/Module/Admin/Site.php:501 msgid "Lifespan of unclaimed items" msgstr "Время жизни ничейных элементов" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:501 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5998,156 +5183,156 @@ msgid "" "items if set to 0." msgstr "Когда очистка базы данных включена, эта настройка определяет число дней, после которого ничейные элементы (в основном, данные с ретранслятора) будут удалены. Значение по умолчанию 90 дней. Приравнивается ко времени жизни элементов других серверов, если выставлено в 0." -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:502 msgid "Lifespan of raw conversation data" msgstr "Время жизни необработанных данных коммуникаций." -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:502 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:531 +#: src/Module/Admin/Site.php:503 msgid "Maximum numbers of comments per post" msgstr "Максимальное число комментариев для записи" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:503 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Сколько комментариев должно быть показано для каждой записи? Значение по-умолчанию: 100." -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:504 msgid "Maximum numbers of comments per post on the display page" msgstr "Максимальное число комментариев на запись при его просмотре" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:504 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "Сколько комментариев показывать при просмотре записи на отдельной странице? Значение по-умолчанию: 1000." -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:505 msgid "Temp path" msgstr "Временная папка" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:505 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Если на вашей системе веб-сервер не имеет доступа к системному пути tmp, введите здесь другой путь." -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:506 msgid "Only search in tags" msgstr "Искать только в тегах" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:506 msgid "On large systems the text search can slow down the system extremely." msgstr "На больших системах текстовый поиск может сильно замедлить систему." -#: src/Module/Admin/Site.php:535 -msgid "Generate counts per contact group when calculating network count" -msgstr "" +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "Показывать счётчики записей по кругам при обновлении страницы сети" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:507 msgid "" -"On systems with users that heavily use contact groups the query can be very " -"expensive." -msgstr "" +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "Для систем, где активно используются круги контактов, это может быть затратно по ресурсам." -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:509 msgid "Maximum number of parallel workers" msgstr "Максимальное число параллельно работающих worker'ов" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:509 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." -msgstr "" +msgstr "На shared-хостингах установите это в %d. На больших системах можно установить %d или больше. Значение по-умолчанию %d." -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:510 msgid "Enable fastlane" msgstr "Включить fastlane" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:510 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." -msgstr "" +msgstr "Если включено, механизм fastlane будет запускать дополнительного обработчика, если процессы с высоким приоритетом задерживаются из-за процессов с более низким приоритетом." -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:512 msgid "Direct relay transfer" msgstr "Прямая ретрансляция" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:512 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Разрешает прямую отправку на другие серверы без использования ретрансляторов" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:513 msgid "Relay scope" msgstr "Область ретрансляции" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:513 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\". \"all\" означает, что любые публичные записи будут получены. \"tags\" включает приём публичных записей с выбранными тэгами." -#: src/Module/Admin/Site.php:541 src/Module/Contact/Profile.php:275 +#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:125 msgid "Disabled" msgstr "Отключено" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:513 msgid "all" msgstr "all" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:513 msgid "tags" msgstr "tags" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:514 msgid "Server tags" msgstr "Тэги сервера" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:514 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Список тэгов, разделённых запятыми, используемый для подписки в режиме \"tags\"" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:515 msgid "Deny Server tags" msgstr "Запретить тэги сервера" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:515 msgid "Comma separated list of tags that are rejected." msgstr "Разделённый запятыми список тэгов, которые будут отбрасываться." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:516 msgid "Allow user tags" msgstr "Разрешить пользовательские тэги" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:516 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:547 +#: src/Module/Admin/Site.php:519 msgid "Start Relocation" msgstr "Начать перемещение" #: src/Module/Admin/Storage.php:46 #, php-format msgid "Storage backend, %s is invalid." -msgstr "" +msgstr "Бэкенд хранилища, %s неправильный." #: src/Module/Admin/Storage.php:73 #, php-format msgid "Storage backend %s error: %s" -msgstr "" +msgstr "Бэкенд хранилища %s вызвал ошибку: %s" #: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 msgid "Invalid storage backend setting value." @@ -6155,33 +5340,39 @@ msgstr "Недопустимое значение типа хранилища." #: src/Module/Admin/Storage.php:139 msgid "Current Storage Backend" -msgstr "" +msgstr "Текущий бэкенд хранилища" #: src/Module/Admin/Storage.php:140 msgid "Storage Configuration" -msgstr "" +msgstr "Конфигурация хранилища" #: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 msgid "Storage" -msgstr "" +msgstr "Хранилище" #: src/Module/Admin/Storage.php:143 msgid "Save & Use storage backend" -msgstr "" +msgstr "Сохранить и использовать этот бэкенд" #: src/Module/Admin/Storage.php:144 msgid "Use storage backend" -msgstr "" +msgstr "Использовать этот бэкенд" #: src/Module/Admin/Storage.php:145 msgid "Save & Reload" -msgstr "" +msgstr "Сохранить и применить" #: src/Module/Admin/Storage.php:146 msgid "This backend doesn't have custom settings" +msgstr "Этот бэкенд не имеет дополнительных настроек." + +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" msgstr "" -#: src/Module/Admin/Storage.php:149 +#: src/Module/Admin/Storage.php:150 msgid "Database (legacy)" msgstr "База данных (устаревшее)" @@ -6218,23 +5409,23 @@ 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 "" +msgstr "Ваше значение table_definition_cache слишком маленькое (%d). Это может вызвать ошибку базы данных \"Prepared statement needs to be re-prepared\". Пожалуйста, установите его хотя бы в %d. Смотрите здесь для дополнительной информации.
    " -#: src/Module/Admin/Summary.php:84 +#: src/Module/Admin/Summary.php:85 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "Новая версия Friendica доступна для загрузки. Ваша текущая версия %1$s, последняя версия %2$s" -#: src/Module/Admin/Summary.php:93 +#: src/Module/Admin/Summary.php:94 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 "" +msgstr "Обновление базы данных завершилось неудачно. Пожалуйста, запустите \"php bin/console.php dbstructure update\" в командной строке и посмотрите какие ошибки там могут появиться." -#: src/Module/Admin/Summary.php:97 +#: src/Module/Admin/Summary.php:98 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 " @@ -6242,17 +5433,24 @@ msgid "" msgstr "" #: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "" + +#: src/Module/Admin/Summary.php:107 msgid "The worker was never executed. Please check your database structure!" msgstr "Фоновые задания ни разу не выполнялись. Пожалуйста, проверьте структуру базы данных!" -#: src/Module/Admin/Summary.php:104 +#: src/Module/Admin/Summary.php:109 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "Последний раз фоновое задание выполнялось %s UTC. Это более одного часа назад. Пожалуйста, проверьте настройки crontab." -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:114 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6261,7 +5459,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:113 +#: src/Module/Admin/Summary.php:118 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6270,91 +5468,48 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:119 +#: src/Module/Admin/Summary.php:124 #, 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 "" +msgstr "%s не доступен на вашей системе. Это серьёзная проблема, которая мешает межсерверной коммуникации. Посмотрите страницу установки для помощи." -#: src/Module/Admin/Summary.php:137 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:151 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:167 +#: src/Module/Admin/Summary.php:148 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "" -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:156 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "" -#: src/Module/Admin/Summary.php:183 +#: src/Module/Admin/Summary.php:164 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "" -#: src/Module/Admin/Summary.php:190 -msgid "Normal Account" -msgstr "Обычный аккаунт" - -#: src/Module/Admin/Summary.php:191 -msgid "Automatic Follower Account" -msgstr "\"Автоматический друг\" Аккаунт" - -#: src/Module/Admin/Summary.php:192 -msgid "Public Forum Account" -msgstr "Публичный форум" - -#: src/Module/Admin/Summary.php:193 -msgid "Automatic Friend Account" -msgstr "\"Автоматический друг\" Аккаунт" - -#: src/Module/Admin/Summary.php:194 -msgid "Blog Account" -msgstr "Аккаунт блога" - -#: src/Module/Admin/Summary.php:195 -msgid "Private Forum Account" -msgstr "Закрытый форум" - -#: src/Module/Admin/Summary.php:215 +#: src/Module/Admin/Summary.php:175 msgid "Message queues" msgstr "Очереди сообщений" -#: src/Module/Admin/Summary.php:221 +#: src/Module/Admin/Summary.php:181 msgid "Server Settings" msgstr "Настройки сервера" -#: src/Module/Admin/Summary.php:237 -msgid "Registered users" -msgstr "Зарегистрированные пользователи" - -#: src/Module/Admin/Summary.php:239 -msgid "Pending registrations" -msgstr "Ожидающие регистрации" - -#: src/Module/Admin/Summary.php:240 +#: src/Module/Admin/Summary.php:199 msgid "Version" msgstr "Версия" -#: src/Module/Admin/Summary.php:244 +#: src/Module/Admin/Summary.php:203 msgid "Active addons" msgstr "Активные дополнения" @@ -6378,7 +5533,7 @@ msgid "Screenshot" msgstr "Скриншот" #: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:94 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 msgid "Themes" msgstr "Темы" @@ -6394,34 +5549,34 @@ msgstr "Темы перезагружены" msgid "Reload active themes" msgstr "Перезагрузить активные темы" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:118 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "Ни одной темы не найдено на сервере. Они должны быть размещены в %1$s" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:119 msgid "[Experimental]" msgstr "[экспериментально]" -#: src/Module/Admin/Themes/Index.php:121 +#: src/Module/Admin/Themes/Index.php:120 msgid "[Unsupported]" msgstr "[Неподдерживаемое]" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 msgid "Display Terms of Service" msgstr "Показать Условия оказания услуг" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 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 "Включить страницу с Условиями Оказания Услуг. Если эта настройка активна, ссылка на страницу с Условиями будет добавлена в форму регистрации и на страницу общей информации." -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 msgid "Display Privacy Statement" msgstr "Показать Положение о конфиденциальности" -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -6429,230 +5584,34 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "Показать различную информацию о соответствии узла различным требованиям конфиденциальности, например, EU-GDPR." -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:81 msgid "Privacy Statement Preview" msgstr "Предпросмотр Положения о конфиденциальности" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "The Terms of Service" msgstr "Условия оказания услуг" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "Введите здесь текст Условий оказания услуг для вашего узла. Можно использовать BBCode. Заголовки отдельных секций должны использовать [h2] и ниже." -#: src/Module/Admin/Users/Active.php:45 src/Module/Admin/Users/Index.php:46 +#: src/Module/Admin/Tos.php:84 +msgid "The rules" +msgstr "Правила сервера" + +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." +msgstr "Введите здесь правила поведения на сервере. Каждая линия - отдельное правило." + +#: src/Module/Api/ApiResponse.php:293 #, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "%s пользователь заблокирован" -msgstr[1] "%s пользователя заблокировано" -msgstr[2] "%s пользователей заблокировано" -msgstr[3] "%s пользователей заблокировано" - -#: src/Module/Admin/Users/Active.php:53 src/Module/Admin/Users/Active.php:88 -#: src/Module/Admin/Users/Blocked.php:55 src/Module/Admin/Users/Blocked.php:90 -#: src/Module/Admin/Users/Index.php:61 src/Module/Admin/Users/Index.php:96 -msgid "You can't remove yourself" -msgstr "Вы не можете удалить самого себя" - -#: src/Module/Admin/Users/Active.php:57 src/Module/Admin/Users/Blocked.php:59 -#: src/Module/Admin/Users/Index.php:65 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s человек удален" -msgstr[1] "%s чел. удалено" -msgstr[2] "%s чел. удалено" -msgstr[3] "%s чел. удалено" - -#: src/Module/Admin/Users/Active.php:86 src/Module/Admin/Users/Blocked.php:88 -#: src/Module/Admin/Users/Index.php:94 -#, php-format -msgid "User \"%s\" deleted" -msgstr "Пользователь \"%s\" удалён" - -#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:104 -#, php-format -msgid "User \"%s\" blocked" -msgstr "Пользователь \"%s\" заблокирован" - -#: src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:131 -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:143 -#: src/Module/Admin/Users/Index.php:163 -msgid "Register date" -msgstr "Дата регистрации" - -#: src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:131 -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:143 -#: src/Module/Admin/Users/Index.php:163 -msgid "Last login" -msgstr "Последний вход" - -#: src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:131 -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:143 -#: src/Module/Admin/Users/Index.php:163 -msgid "Last public item" -msgstr "Последняя публичная запись" - -#: src/Module/Admin/Users/Active.php:137 -msgid "Active Accounts" +msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Admin/Users/Active.php:141 -#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156 -msgid "User blocked" -msgstr "Пользователь заблокирован" - -#: src/Module/Admin/Users/Active.php:142 -#: src/Module/Admin/Users/Blocked.php:144 src/Module/Admin/Users/Index.php:158 -msgid "Site admin" -msgstr "Админ сайта" - -#: src/Module/Admin/Users/Active.php:143 -#: src/Module/Admin/Users/Blocked.php:145 src/Module/Admin/Users/Index.php:159 -msgid "Account expired" -msgstr "Аккаунт просрочен" - -#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:162 -msgid "Create a new user" -msgstr "" - -#: src/Module/Admin/Users/Active.php:150 -#: src/Module/Admin/Users/Blocked.php:151 src/Module/Admin/Users/Index.php:168 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?" - -#: src/Module/Admin/Users/Active.php:151 -#: src/Module/Admin/Users/Blocked.php:152 src/Module/Admin/Users/Index.php:169 -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} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?" - -#: src/Module/Admin/Users/Blocked.php:47 src/Module/Admin/Users/Index.php:53 -#, php-format -msgid "%s user unblocked" -msgid_plural "%s users unblocked" -msgstr[0] "%s пользователь разблокирован" -msgstr[1] "%s пользователя разблокировано" -msgstr[2] "%s пользователей разблокировано" -msgstr[3] "%s пользователей разблокировано" - -#: src/Module/Admin/Users/Blocked.php:97 src/Module/Admin/Users/Index.php:110 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "Пользователь \"%s\" разблокирован" - -#: src/Module/Admin/Users/Blocked.php:139 -msgid "Blocked Users" -msgstr "Заблокированные" - -#: src/Module/Admin/Users/Create.php:62 -msgid "New User" -msgstr "Новый пользователь" - -#: src/Module/Admin/Users/Create.php:63 -msgid "Add User" -msgstr "Добавить пользователя" - -#: src/Module/Admin/Users/Create.php:71 -msgid "Name of the new user." -msgstr "Имя нового пользователя." - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname" -msgstr "Ник" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname of the new user." -msgstr "Ник нового пользователя." - -#: src/Module/Admin/Users/Create.php:73 -msgid "Email address of the new user." -msgstr "Email адрес нового пользователя." - -#: src/Module/Admin/Users/Deleted.php:86 -msgid "Users awaiting permanent deletion" -msgstr "Пользователи, ожидающие окончательного удаления" - -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:163 -msgid "Permanent deletion" -msgstr "Постоянное удаление" - -#: src/Module/Admin/Users/Index.php:151 src/Module/Admin/Users/Index.php:161 -#: src/Module/BaseAdmin.php:92 -msgid "Users" -msgstr "Пользователи" - -#: src/Module/Admin/Users/Index.php:153 -msgid "User waiting for permanent deletion" -msgstr "Пользователь ожидает окончательного удаления" - -#: src/Module/Admin/Users/Pending.php:48 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "%s пользователь одобрен" -msgstr[1] "%s пользователя одобрено" -msgstr[2] "%s пользователей одобрено" -msgstr[3] "%s пользователей одобрено" - -#: src/Module/Admin/Users/Pending.php:55 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "%s регистрация отменена" -msgstr[1] "%s регистрации отменены" -msgstr[2] "%s регистраций отменены" -msgstr[3] "%s регистраций отменены" - -#: src/Module/Admin/Users/Pending.php:81 -msgid "Account approved." -msgstr "Аккаунт утвержден." - -#: src/Module/Admin/Users/Pending.php:87 -msgid "Registration revoked" -msgstr "Регистрация отменена" - -#: src/Module/Admin/Users/Pending.php:102 -msgid "User registrations awaiting review" -msgstr "Регистрации пользователей, ожидающие подтверждения" - -#: src/Module/Admin/Users/Pending.php:104 -msgid "Request date" -msgstr "Запрос даты" - -#: src/Module/Admin/Users/Pending.php:105 -msgid "No registrations." -msgstr "Нет регистраций." - -#: src/Module/Admin/Users/Pending.php:106 -msgid "Note from the user" -msgstr "Сообщение от пользователя" - -#: src/Module/Admin/Users/Pending.php:108 -msgid "Deny" -msgstr "Отклонить" - -#: src/Module/Api/ApiResponse.php:279 -#, php-format -msgid "API endpoint %s %s is not implemented" -msgstr "" - -#: src/Module/Api/ApiResponse.php:280 -msgid "" -"The API endpoint is currently not implemented but might be in the future." -msgstr "" - -#: src/Module/Api/Mastodon/Apps.php:63 +#: src/Module/Api/Mastodon/Apps.php:73 msgid "Missing parameters" msgstr "" @@ -6664,10 +5623,10 @@ msgstr "Только заглавные записи могут быть доб msgid "Only starting posts can be muted" msgstr "Только заглавные записи можно заглушить" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 #, php-format msgid "Posts from %s can't be shared" -msgstr "" +msgstr "Записями от %s нельзя поделиться" #: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 msgid "Only starting posts can be unbookmarked" @@ -6677,28 +5636,29 @@ msgstr "Только заглавные записи можно удалить msgid "Only starting posts can be unmuted" msgstr "Только с заглавных записей можно снять заглушение" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 #, php-format msgid "Posts from %s can't be unshared" -msgstr "" +msgstr "Нельзя отменить продвижение для записей от %s " #: src/Module/Api/Twitter/ContactEndpoint.php:66 msgid "Contact not found" msgstr "Контакт не найден" -#: src/Module/Apps.php:55 +#: src/Module/Apps.php:62 msgid "No installed applications." msgstr "Нет установленных приложений." -#: src/Module/Apps.php:60 +#: src/Module/Apps.php:67 msgid "Applications" msgstr "Приложения" -#: src/Module/Attach.php:50 src/Module/Attach.php:62 +#: src/Module/Attach.php:49 src/Module/Attach.php:61 msgid "Item was not found." msgstr "Пункт не был найден." #: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 msgid "Please login to continue." msgstr "Пожалуйста, войдите для продолжения." @@ -6712,84 +5672,72 @@ msgid "" " as the main account." msgstr "Дополнительная учётная запись не имеет доступа к административным страницам. Пожалуйста, зайдите непосредственно как администратор." -#: src/Module/BaseAdmin.php:86 +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 msgid "Overview" msgstr "Общая информация" -#: src/Module/BaseAdmin.php:89 +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 msgid "Configuration" msgstr "Конфигурация" -#: src/Module/BaseAdmin.php:95 src/Module/BaseSettings.php:63 +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 msgid "Additional features" msgstr "Дополнительные возможности" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:97 msgid "Database" msgstr "База данных" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:98 msgid "DB updates" msgstr "Обновление БД" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:99 msgid "Inspect Deferred Workers" msgstr "Посмотреть отложенные задания" -#: src/Module/BaseAdmin.php:101 +#: src/Module/BaseAdmin.php:100 msgid "Inspect worker Queue" msgstr "Посмотреть очередь заданий" -#: src/Module/BaseAdmin.php:103 -msgid "Tools" -msgstr "Инструменты" - -#: src/Module/BaseAdmin.php:104 -msgid "Contact Blocklist" -msgstr "Чёрный список контактов" - -#: src/Module/BaseAdmin.php:105 -msgid "Server Blocklist" -msgstr "Чёрный список серверов" - -#: src/Module/BaseAdmin.php:112 +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 msgid "Diagnostics" msgstr "Диагностика" -#: src/Module/BaseAdmin.php:113 +#: src/Module/BaseAdmin.php:107 msgid "PHP Info" msgstr "" -#: src/Module/BaseAdmin.php:114 +#: src/Module/BaseAdmin.php:108 msgid "probe address" msgstr "" -#: src/Module/BaseAdmin.php:115 +#: src/Module/BaseAdmin.php:109 msgid "check webfinger" msgstr "" -#: src/Module/BaseAdmin.php:117 +#: src/Module/BaseAdmin.php:110 msgid "Babel" msgstr "" -#: src/Module/BaseAdmin.php:118 src/Module/Debug/ActivityPubConversion.php:137 +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 msgid "ActivityPub Conversion" msgstr "" -#: src/Module/BaseAdmin.php:127 +#: src/Module/BaseAdmin.php:120 msgid "Addon Features" msgstr "" -#: src/Module/BaseAdmin.php:128 +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 msgid "User registrations waiting for confirmation" msgstr "Регистрации пользователей, ожидающие подтверждения" -#: src/Module/BaseApi.php:242 src/Module/BaseApi.php:258 -#: src/Module/BaseApi.php:274 +#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 +#: src/Module/BaseApi.php:487 msgid "Too Many Requests" -msgstr "" +msgstr "Слишком много запросов" -#: src/Module/BaseApi.php:243 +#: src/Module/BaseApi.php:456 #, 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." @@ -6798,7 +5746,7 @@ msgstr[1] "Дневной лимит в %d записи достигнут. За msgstr[2] "Дневной лимит в %d записей достигнут. Запись отклонена." msgstr[3] "Дневной лимит в %d записей достигнут. Запись отклонена." -#: src/Module/BaseApi.php:259 +#: src/Module/BaseApi.php:472 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6808,72 +5756,142 @@ msgstr[1] "Недельный лимит в %d записи достигнут. msgstr[2] "Недельный лимит в %d записей достигнут. Запись была отклонена." msgstr[3] "Недельный лимит в %d записей достигнут. Запись была отклонена." -#: src/Module/BaseApi.php:275 +#: src/Module/BaseApi.php:488 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" "Monthly posting limit of %d posts reached. The post was rejected." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Месячный лимит в%d запись достигнут. Запись была отклонена." +msgstr[1] "Месячный лимит в %d записей достигнут. Запись была отклонена." +msgstr[2] "Месячный лимит в%d записей достигнут. Запись была отклонена." +msgstr[3] "Месячный лимит в %d записей достигнут. Запись была отклонена." -#: src/Module/BaseProfile.php:51 src/Module/Contact.php:463 +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "У вас нет доступа к страницам модераторов." + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "Дополнительная учётная запись не имеет доступа к модераторским страницам. Пожалуйста, зайдите под основной." + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "Обращения" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Пользователи" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "Инструменты" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "Чёрный список контактов" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "Чёрный список серверов" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "Удалить запись" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "Исходник" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 msgid "Profile Details" msgstr "Информация о вас" -#: src/Module/BaseProfile.php:109 +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "Записи этого автора" + +#: src/Module/BaseProfile.php:111 msgid "Only You Can See This" msgstr "Только вы можете это видеть" -#: src/Module/BaseProfile.php:114 src/Module/Profile/Schedule.php:82 +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 msgid "Scheduled Posts" msgstr "Запланированные записи" -#: src/Module/BaseProfile.php:117 +#: src/Module/BaseProfile.php:119 msgid "Posts that are scheduled for publishing" msgstr "Записи, публикация которых запланирована" -#: src/Module/BaseProfile.php:136 src/Module/BaseProfile.php:139 +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 msgid "Tips for New Members" msgstr "Советы для новых участников" -#: src/Module/BaseSearch.php:69 +#: src/Module/BaseSearch.php:71 #, php-format msgid "People Search - %s" msgstr "Поиск по людям - %s" -#: src/Module/BaseSearch.php:79 +#: src/Module/BaseSearch.php:75 #, php-format -msgid "Forum Search - %s" -msgstr "Поиск по форумам - %s" +msgid "Group Search - %s" +msgstr "Поиск по группам - %s" -#: src/Module/BaseSettings.php:41 +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "Нет соответствий" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "%d результато не был показан, так как ваш сервер блокирует домен источника. Вы можете посмотреть список заблокированных доменов на странице информации Об узле." +msgstr[1] "%d результатов не были показаны, так как ваш сервер блокирует домен их источника. Вы можете посмотреть список заблокированных доменов на странице информации Об узле." +msgstr[2] "%d результатов не были показаны, так как ваш сервер блокирует домен их источника. Вы можете посмотреть список заблокированных доменов на странице информации Об узле." +msgstr[3] "%d результатов не были показаны, так как ваш сервер блокирует домен их источника. Вы можете посмотреть список заблокированных доменов на странице информации Об узле." + +#: src/Module/BaseSettings.php:78 msgid "Account" msgstr "Аккаунт" -#: src/Module/BaseSettings.php:48 src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 #: src/Module/Settings/TwoFactor/Index.php:117 msgid "Two-factor authentication" msgstr "Двухфакторная аутентификация" -#: src/Module/BaseSettings.php:71 +#: src/Module/BaseSettings.php:118 msgid "Display" msgstr "Внешний вид" -#: src/Module/BaseSettings.php:92 src/Module/Settings/Delegation.php:170 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "Социальные сети" + +#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 msgid "Manage Accounts" msgstr "Управление учётными записями" -#: src/Module/BaseSettings.php:99 +#: src/Module/BaseSettings.php:153 msgid "Connected apps" msgstr "Подключенные приложения" -#: src/Module/BaseSettings.php:106 src/Module/Settings/UserExport.php:76 +#: src/Module/BaseSettings.php:160 +msgid "Remote servers" +msgstr "Другие серверы" + +#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 msgid "Export personal data" msgstr "Экспорт личных данных" -#: src/Module/BaseSettings.php:113 +#: src/Module/BaseSettings.php:174 msgid "Remove account" msgstr "Удалить аккаунт" @@ -6885,7 +5903,223 @@ msgstr "" msgid "The post was created" msgstr "Запись создана" -#: src/Module/Contact.php:88 +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "Неверный запрос" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "Отсутствует id события" + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "Ошибка удаления события" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "Эвент не может закончится до старта." + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "Название мероприятия и время начала обязательны для заполнения." + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "Необходима дата старта и заголовок." + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "Начало мероприятия:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/Channels.php:130 src/Module/Settings/Channels.php:146 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Требуется" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "Дата/время окончания не известны, или не указаны" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "Окончание мероприятия:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Поделиться этим мероприятием" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "Базовый" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "Этот формат календарей не поддерживается" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "Нет данных для экспорта" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "календарь" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Мероприятия" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "Смотреть" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Создать новое мероприятие" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:291 +msgid "list" +msgstr "список" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "Не удалось создать круг." + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "Круг не найден." + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "Название круга не изменено." + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "Неизвестный круг." + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "Контакт не найден." + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "Недопустимый контакт." + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "Контакт удалён." + +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "Не удалось добавить контакт в круг." + +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "Контакт успешно добавлен в круг." + +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "Не удалось удалить контакт из круга." + +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "Контакт успешно удалён из круга." + +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "Ошибочный запрос." + +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "Сохранить круг" + +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "Фильтр" + +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "Создать круг контактов/друзей." + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "Не удаётся удалить круг." + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "Удалить круг" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "Изменить имя круга" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "Участники" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "Круг пуст" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "Удалить контакт из круга" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "Нажмите на контакт, чтобы добавить или удалить." + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "Добавить контакт в круг" + +#: src/Module/Contact.php:97 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." @@ -6894,110 +6128,142 @@ msgstr[1] "%d контакта изменено." msgstr[2] "%d контактов изменены." msgstr[3] "%d контактов изменены." -#: src/Module/Contact.php:312 +#: src/Module/Contact.php:348 msgid "Show all contacts" msgstr "Показать все контакты" -#: src/Module/Contact.php:320 +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "В ожидании" + +#: src/Module/Contact.php:356 msgid "Only show pending contacts" msgstr "Показать только контакты \"в ожидании\"" -#: src/Module/Contact.php:328 +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Заблокированы" + +#: src/Module/Contact.php:364 msgid "Only show blocked contacts" msgstr "Показать только блокированные контакты" -#: src/Module/Contact.php:333 src/Module/Contact.php:380 -#: src/Object/Post.php:339 +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:369 msgid "Ignored" msgstr "Игнорируются" -#: src/Module/Contact.php:336 +#: src/Module/Contact.php:372 msgid "Only show ignored contacts" msgstr "Показать только игнорируемые контакты" -#: src/Module/Contact.php:341 src/Module/Contact.php:381 +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "Свёрнуто" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "Показать только сворачиваемые контакты" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 msgid "Archived" msgstr "Архивированные" -#: src/Module/Contact.php:344 +#: src/Module/Contact.php:388 msgid "Only show archived contacts" msgstr "Показывать только архивные контакты" -#: src/Module/Contact.php:349 src/Module/Contact.php:379 +#: src/Module/Contact.php:393 src/Module/Contact.php:438 msgid "Hidden" msgstr "Скрытые" -#: src/Module/Contact.php:352 +#: src/Module/Contact.php:396 msgid "Only show hidden contacts" msgstr "Показывать только скрытые контакты" -#: src/Module/Contact.php:360 -msgid "Organize your contact groups" -msgstr "Настроить группы контактов" +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" +msgstr "Настроить круги контактов" -#: src/Module/Contact.php:392 +#: src/Module/Contact.php:459 msgid "Search your contacts" msgstr "Поиск ваших контактов" -#: src/Module/Contact.php:393 src/Module/Search/Index.php:206 +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 #, php-format msgid "Results for: %s" msgstr "Результаты для: %s" -#: src/Module/Contact.php:400 +#: src/Module/Contact.php:467 msgid "Update" msgstr "Обновление" -#: src/Module/Contact.php:402 src/Module/Contact/Profile.php:351 -#: src/Module/Contact/Profile.php:459 +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Разблокировать" + +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 msgid "Unignore" msgstr "Не игнорировать" -#: src/Module/Contact.php:404 +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "Не сворачивать" + +#: src/Module/Contact.php:472 msgid "Batch Actions" msgstr "Пакетные действия" -#: src/Module/Contact.php:439 +#: src/Module/Contact.php:515 msgid "Conversations started by this contact" msgstr "Диалоги этого контакта" -#: src/Module/Contact.php:444 +#: src/Module/Contact.php:520 msgid "Posts and Comments" msgstr "Записи и комментарии" -#: src/Module/Contact.php:455 -msgid "Posts containing media objects" -msgstr "" +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "Отдельные записи и ответы" -#: src/Module/Contact.php:470 +#: src/Module/Contact.php:531 +msgid "Posts containing media objects" +msgstr "Записи с медиа" + +#: src/Module/Contact.php:539 msgid "View all known contacts" msgstr "Показать все известные контакты" -#: src/Module/Contact.php:480 +#: src/Module/Contact.php:550 msgid "Advanced Contact Settings" msgstr "Дополнительные Настройки Контакта" -#: src/Module/Contact.php:514 +#: src/Module/Contact.php:586 msgid "Mutual Friendship" msgstr "Взаимная дружба" -#: src/Module/Contact.php:518 +#: src/Module/Contact.php:590 msgid "is a fan of yours" msgstr "является вашим поклонником" -#: src/Module/Contact.php:522 +#: src/Module/Contact.php:594 msgid "you are a fan of" msgstr "Вы - поклонник" -#: src/Module/Contact.php:540 +#: src/Module/Contact.php:612 msgid "Pending outgoing contact request" msgstr "Исходящий запрос на подписку" -#: src/Module/Contact.php:542 +#: src/Module/Contact.php:614 msgid "Pending incoming contact request" msgstr "Входящий запрос на подписку" -#: src/Module/Contact.php:555 src/Module/Contact/Profile.php:336 +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 #, php-format msgid "Visit %s's profile [%s]" msgstr "Посетить профиль %s [%s]" @@ -7010,6 +6276,19 @@ msgstr "Обновление контакта неудачное." msgid "Return to contact editor" msgstr "Возврат к редактору контакта" +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Имя" + #: src/Module/Contact/Advanced.php:135 msgid "Account Nickname" msgstr "Ник аккаунта" @@ -7026,20 +6305,15 @@ msgstr "URL опроса/ленты" msgid "New photo from this URL" msgstr "Новое фото из этой URL" -#: src/Module/Contact/Contacts.php:48 src/Module/Conversation/Network.php:186 -#: src/Module/Group.php:101 -msgid "Invalid contact." -msgstr "Недопустимый контакт." - -#: src/Module/Contact/Contacts.php:71 +#: src/Module/Contact/Contacts.php:89 msgid "No known contacts." msgstr "Нет известных контактов." -#: src/Module/Contact/Contacts.php:85 src/Module/Profile/Common.php:97 +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 msgid "No common contacts." msgstr "Общих контактов нет." -#: src/Module/Contact/Contacts.php:97 src/Module/Profile/Contacts.php:95 +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" @@ -7048,7 +6322,7 @@ msgstr[1] "Подписчики (%s)" msgstr[2] "Подписчики (%s)" msgstr[3] "Подписчики (%s)" -#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:98 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" @@ -7057,7 +6331,7 @@ msgstr[1] "Подписаны на (%s)" msgstr[2] "Подписаны на (%s)" msgstr[3] "Подписаны на (%s)" -#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:101 +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" @@ -7066,12 +6340,12 @@ msgstr[1] "Взаимные друзья (%s)" msgstr[2] "Взаимные друзья (%s)" msgstr[3] "Взаимные друзья (%s)" -#: src/Module/Contact/Contacts.php:107 src/Module/Profile/Contacts.php:103 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "Эти контакты взаимно добавлены в друзья %s." -#: src/Module/Contact/Contacts.php:113 src/Module/Profile/Common.php:85 +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" @@ -7080,14 +6354,14 @@ msgstr[1] "Общие контакты (%s)" msgstr[2] "Общие контакты (%s)" msgstr[3] "Общие контакты (%s)" -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Common.php:87 +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "%s и вы публично взаимодействовали с этими контактами (добавляли их, комментировали публичные посты или оставляли лайки к ним)." -#: src/Module/Contact/Contacts.php:121 src/Module/Profile/Contacts.php:109 +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" @@ -7096,245 +6370,413 @@ msgstr[1] "Контакты (%s)" msgstr[2] "Контакты (%s)" msgstr[3] "Контакты (%s)" -#: src/Module/Contact/Profile.php:129 +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:166 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Доступ запрещен." + +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Отправить запрос" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "Вы уже добавили этот контакт." + +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Тип сети не может быть определен. Контакт не может быть добавлен." + +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Поддержка Diaspora не включена. Контакт не может быть добавлен." + +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "Поддержка OStatus выключена. Контакт не может быть добавлен." + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Пожалуйста, ответьте следующее:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "Ваш адрес:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "URL профиля" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Ключевые слова: " + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "%s знают Вас" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Добавить личную заметку:" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" +msgstr "Записи и ответы" + +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "Не удалось добавить этот контакт." + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "Неверный запрос." + +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "Нет совпадающих ключевых слов. Пожалуйста, добавьте ключевые слова в ваш профиль." + +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "Похожие профили" + +#: src/Module/Contact/Profile.php:140 msgid "Failed to update contact record." msgstr "Не удалось обновить запись контакта." -#: src/Module/Contact/Profile.php:179 +#: src/Module/Contact/Profile.php:190 msgid "Contact has been unblocked" msgstr "Контакт разблокирован" -#: src/Module/Contact/Profile.php:183 +#: src/Module/Contact/Profile.php:194 msgid "Contact has been blocked" msgstr "Контакт заблокирован" -#: src/Module/Contact/Profile.php:195 +#: src/Module/Contact/Profile.php:206 msgid "Contact has been unignored" msgstr "У контакта отменено игнорирование" -#: src/Module/Contact/Profile.php:199 +#: src/Module/Contact/Profile.php:210 msgid "Contact has been ignored" msgstr "Контакт проигнорирован" -#: src/Module/Contact/Profile.php:231 +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" +msgstr "Записи контакта не сворачиваются" + +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "Записи контакта сворачиваются" + +#: src/Module/Contact/Profile.php:254 #, php-format msgid "You are mutual friends with %s" msgstr "У Вас взаимная дружба с %s" -#: src/Module/Contact/Profile.php:232 +#: src/Module/Contact/Profile.php:255 #, php-format msgid "You are sharing with %s" msgstr "Вы делитесь с %s" -#: src/Module/Contact/Profile.php:233 +#: src/Module/Contact/Profile.php:256 #, php-format msgid "%s is sharing with you" msgstr "%s делится с Вами" -#: src/Module/Contact/Profile.php:249 +#: src/Module/Contact/Profile.php:272 msgid "Private communications are not available for this contact." msgstr "Приватные коммуникации недоступны для этого контакта." -#: src/Module/Contact/Profile.php:251 +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "Этот контакт на игнорируемом вами сервере." + +#: src/Module/Contact/Profile.php:285 msgid "Never" msgstr "Никогда" -#: src/Module/Contact/Profile.php:254 +#: src/Module/Contact/Profile.php:288 msgid "(Update was not successful)" msgstr "(Обновление не удалось)" -#: src/Module/Contact/Profile.php:254 +#: src/Module/Contact/Profile.php:288 msgid "(Update was successful)" msgstr "(Обновление было успешно)" -#: src/Module/Contact/Profile.php:256 src/Module/Contact/Profile.php:422 +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 msgid "Suggest friends" msgstr "Предложить друзей" -#: src/Module/Contact/Profile.php:260 +#: src/Module/Contact/Profile.php:294 #, php-format msgid "Network type: %s" msgstr "Сеть: %s" -#: src/Module/Contact/Profile.php:265 +#: src/Module/Contact/Profile.php:299 msgid "Communications lost with this contact!" msgstr "Связь с контактом утеряна!" -#: src/Module/Contact/Profile.php:271 +#: src/Module/Contact/Profile.php:305 msgid "Fetch further information for feeds" msgstr "Получить подробную информацию о фидах" -#: src/Module/Contact/Profile.php:273 +#: src/Module/Contact/Profile.php:307 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 "Извлекать картинки предпросмотра, заголовок и вступление из записи ленты. Вы можете включить эту опцию, если лента не содержит много текста. Ключевые слова берутся из метаданных записи и публикуются как теги." -#: src/Module/Contact/Profile.php:276 +#: src/Module/Contact/Profile.php:310 msgid "Fetch information" msgstr "Получить информацию" -#: src/Module/Contact/Profile.php:277 +#: src/Module/Contact/Profile.php:311 msgid "Fetch keywords" msgstr "Получить ключевые слова" -#: src/Module/Contact/Profile.php:278 +#: src/Module/Contact/Profile.php:312 msgid "Fetch information and keywords" msgstr "Получить информацию и ключевые слова" -#: src/Module/Contact/Profile.php:288 src/Module/Contact/Profile.php:294 -#: src/Module/Contact/Profile.php:299 src/Module/Contact/Profile.php:305 +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 msgid "No mirroring" msgstr "Не зеркалировать" -#: src/Module/Contact/Profile.php:289 -msgid "Mirror as forwarded posting" -msgstr "Зеркалировать как переадресованные сообщения" - -#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:300 -#: src/Module/Contact/Profile.php:306 +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 msgid "Mirror as my own posting" msgstr "Зеркалировать как мои сообщения" -#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:301 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 msgid "Native reshare" -msgstr "" +msgstr "Обычный репост" -#: src/Module/Contact/Profile.php:318 +#: src/Module/Contact/Profile.php:353 msgid "Contact Information / Notes" msgstr "Информация о контакте / Заметки" -#: src/Module/Contact/Profile.php:319 +#: src/Module/Contact/Profile.php:354 msgid "Contact Settings" msgstr "Настройки контакта" -#: src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:362 msgid "Contact" msgstr "Контакт" -#: src/Module/Contact/Profile.php:331 +#: src/Module/Contact/Profile.php:366 msgid "Their personal note" msgstr "Персональная заметка" -#: src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:368 msgid "Edit contact notes" msgstr "Редактировать заметки контакта" -#: src/Module/Contact/Profile.php:337 +#: src/Module/Contact/Profile.php:372 msgid "Block/Unblock contact" msgstr "Блокировать / Разблокировать контакт" -#: src/Module/Contact/Profile.php:338 +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 msgid "Ignore contact" msgstr "Игнорировать контакт" -#: src/Module/Contact/Profile.php:339 +#: src/Module/Contact/Profile.php:374 msgid "View conversations" msgstr "Просмотр бесед" -#: src/Module/Contact/Profile.php:344 +#: src/Module/Contact/Profile.php:379 msgid "Last update:" msgstr "Последнее обновление: " -#: src/Module/Contact/Profile.php:346 +#: src/Module/Contact/Profile.php:381 msgid "Update public posts" msgstr "Обновить публичные сообщения" -#: src/Module/Contact/Profile.php:348 src/Module/Contact/Profile.php:432 +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 msgid "Update now" msgstr "Обновить сейчас" -#: src/Module/Contact/Profile.php:355 -msgid "Currently blocked" -msgstr "В настоящее время заблокирован" - -#: src/Module/Contact/Profile.php:356 -msgid "Currently ignored" -msgstr "В настоящее время игнорируется" - -#: src/Module/Contact/Profile.php:357 -msgid "Currently archived" -msgstr "В данный момент архивирован" - -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:385 msgid "Awaiting connection acknowledge" msgstr "Ожидаем подтверждения соединения" -#: src/Module/Contact/Profile.php:359 -#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "В настоящее время заблокирован" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "В настоящее время игнорируется" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "В настоящее время сворачивается" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "В данный момент архивирован" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "Управлять удалёнными серверами" + +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 msgid "Hide this contact from others" msgstr "Скрыть этот контакт от других" -#: src/Module/Contact/Profile.php:359 +#: src/Module/Contact/Profile.php:394 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Ответы/лайки ваших публичных сообщений будут видимы." -#: src/Module/Contact/Profile.php:360 +#: src/Module/Contact/Profile.php:395 msgid "Notification for new posts" msgstr "Уведомление о новых записях" -#: src/Module/Contact/Profile.php:360 +#: src/Module/Contact/Profile.php:395 msgid "Send a notification of every new post of this contact" msgstr "Отправлять уведомление о каждом новой записи контакта" -#: src/Module/Contact/Profile.php:362 +#: src/Module/Contact/Profile.php:397 msgid "Keyword Deny List" msgstr "Запретный список слов" -#: src/Module/Contact/Profile.php:362 +#: src/Module/Contact/Profile.php:397 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Список слов через запятую, которые не должны конвертироваться в хэштеги, когда включено \"Получать информацию и хэштеги\"" -#: src/Module/Contact/Profile.php:380 +#: src/Module/Contact/Profile.php:415 #: src/Module/Settings/TwoFactor/Index.php:139 msgid "Actions" msgstr "Действия" -#: src/Module/Contact/Profile.php:388 +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "Записи" + +#: src/Module/Contact/Profile.php:423 msgid "Mirror postings from this contact" msgstr "Зекралировать сообщения от этого контакта" -#: src/Module/Contact/Profile.php:390 +#: src/Module/Contact/Profile.php:425 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "Пометить этот контакт как remote_self, что заставит Friendica отправлять сообщения от этого контакта." -#: src/Module/Contact/Profile.php:442 +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" +msgstr "Настройки каналов" + +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "Частота появления этого контакта в каналах" + +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "В зависимости от типа канала, не все записи этого контакта могут отображаться в них. По-умолчанию записи должны получить некоторое число взаимодействий (комментарии, лайки), чтобы попасть в каналы. Так же некоторые контакты могут заполнять каналы слишком частыми записями или вы можете не хотеть видеть их в каналах вообще, но не готовы их игнорировать или блокировать полностью." + +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "Обычная частота" + +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "Записи этого контакта будут показаны в канале \"Для Вас\", если вы часто взаимодействуете с ним, либо запись этого контакта получит какую-то активность." + +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "Показывать все" + +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "Все записи от этого контакта будут показаны в канале \"Для Вас\"" + +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "Показывать немного" + +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "Когда контакт создаёт много записей за короткий период, эта настройка сократит число отображаемых записей в каналах." + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "Не показывать" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "Записи этого контакта никогда не будут показаны в каналах" + +#: src/Module/Contact/Profile.php:502 msgid "Refetch contact data" msgstr "Обновить данные контакта" -#: src/Module/Contact/Profile.php:453 +#: src/Module/Contact/Profile.php:513 msgid "Toggle Blocked status" msgstr "Изменить статус блокированности (заблокировать/разблокировать)" -#: src/Module/Contact/Profile.php:461 +#: src/Module/Contact/Profile.php:521 msgid "Toggle Ignored status" msgstr "Изменить статус игнорирования" -#: src/Module/Contact/Profile.php:468 src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" +msgstr "Изменить статус сворачивания" + +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 msgid "Revoke Follow" msgstr "Отозвать подписку" -#: src/Module/Contact/Profile.php:470 +#: src/Module/Contact/Profile.php:538 msgid "Revoke the follow from this contact" msgstr "Отменить подписку этого контакта на вас" +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "Ошибочный запрос." + #: src/Module/Contact/Revoke.php:63 msgid "Unknown contact." -msgstr "" - -#: src/Module/Contact/Revoke.php:73 src/Module/Group.php:110 -msgid "Contact is deleted." -msgstr "Контакт удалён." +msgstr "Неизвестный контакт." #: src/Module/Contact/Revoke.php:77 msgid "Contact is being deleted." -msgstr "" +msgstr "Контакт удаляется." #: src/Module/Contact/Revoke.php:91 msgid "Follow was successfully revoked." @@ -7347,108 +6789,91 @@ msgid "" msgstr "Вы действительно хотите отозвать подписку этого контакта на вас? Это нельзя будет отменить позже, им потребуется снова подписаться на вас." #: src/Module/Contact/Revoke.php:108 -#: src/Module/Notifications/Introductions.php:143 -#: src/Module/OAuth/Acknowledge.php:53 src/Module/Register.php:130 -#: src/Module/Settings/TwoFactor/Trusted.php:125 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "Yes" msgstr "Да" -#: src/Module/Conversation/Community.php:73 +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа." + +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "Вы не подписаны на этот контакт." + +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "Отписка в настоящий момент не предусмотрена этой сетью" + +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "Отсоединиться/Отписаться" + +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "Подписка успешно удалена" + +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" +msgstr "Не получается отписаться от этого контакта, пожалуйста, свяжитесь с вашим администратором" + +#: src/Module/Conversation/Channel.php:139 +#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 +#: src/Module/Search/Index.php:194 +msgid "No results." +msgstr "Нет результатов." + +#: src/Module/Conversation/Channel.php:177 +msgid "Channel not available." +msgstr "Канал недоступен" + +#: src/Module/Conversation/Community.php:92 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "Эта общая лента показывает все публичные записи, которые получил этот сервер. Они могут не отражать мнений пользователей этого сервера." -#: src/Module/Conversation/Community.php:86 -msgid "Local Community" -msgstr "Местное сообщество" - -#: src/Module/Conversation/Community.php:89 -msgid "Posts from local users on this server" -msgstr "Записи пользователей с этого сервера" - -#: src/Module/Conversation/Community.php:97 -msgid "Global Community" -msgstr "Глобальное сообщество" - -#: src/Module/Conversation/Community.php:100 -msgid "Posts from users of the whole federated network" -msgstr "Записи пользователей со всей федеративной сети" - -#: src/Module/Conversation/Community.php:133 -msgid "Own Contacts" -msgstr "" - -#: src/Module/Conversation/Community.php:137 -msgid "Include" -msgstr "" - -#: src/Module/Conversation/Community.php:138 -msgid "Hide" -msgstr "" - -#: src/Module/Conversation/Community.php:155 src/Module/Search/Index.php:151 -#: src/Module/Search/Index.php:193 -msgid "No results." -msgstr "Нет результатов." - -#: src/Module/Conversation/Community.php:211 +#: src/Module/Conversation/Community.php:180 msgid "Community option not available." -msgstr "" +msgstr "Сообщество недоступно." -#: src/Module/Conversation/Community.php:227 +#: src/Module/Conversation/Community.php:196 msgid "Not available." msgstr "Недоступно." -#: src/Module/Conversation/Network.php:172 -msgid "No such group" -msgstr "Нет такой группы" +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "Нет такого круга" -#: src/Module/Conversation/Network.php:176 +#: src/Module/Conversation/Network.php:222 #, php-format -msgid "Group: %s" -msgstr "Группа: %s" +msgid "Circle: %s" +msgstr "Круг: %s" -#: src/Module/Conversation/Network.php:254 -msgid "Latest Activity" -msgstr "Вся активность" +#: src/Module/Conversation/Network.php:250 +#, php-format +msgid "Error %d (%s) while fetching the timeline." +msgstr "" -#: src/Module/Conversation/Network.php:257 -msgid "Sort by latest activity" -msgstr "Отсортировать по свежей активности" +#: src/Module/Conversation/Network.php:329 +msgid "Network feed not available." +msgstr "Лента недоступна" -#: src/Module/Conversation/Network.php:262 -msgid "Latest Posts" -msgstr "Новые записи" +#: src/Module/Conversation/Timeline.php:162 +msgid "Own Contacts" +msgstr "Свои контакты" -#: src/Module/Conversation/Network.php:265 -msgid "Sort by post received date" -msgstr "Отсортировать по времени получения записей" +#: src/Module/Conversation/Timeline.php:166 +msgid "Include" +msgstr "Включить" -#: src/Module/Conversation/Network.php:270 -msgid "Latest Creation" -msgstr "По времени" - -#: src/Module/Conversation/Network.php:273 -msgid "Sort by post creation date" -msgstr "Отсортировать по времени создания записей" - -#: src/Module/Conversation/Network.php:278 -#: src/Module/Settings/Profile/Index.php:227 -msgid "Personal" -msgstr "Личные" - -#: src/Module/Conversation/Network.php:281 -msgid "Posts that mention or involve you" -msgstr "Записи, которые упоминают вас или в которых вы участвуете" - -#: src/Module/Conversation/Network.php:286 src/Object/Post.php:351 -msgid "Starred" -msgstr "Избранное" - -#: src/Module/Conversation/Network.php:289 -msgid "Favourite Posts" -msgstr "Избранные записи" +#: src/Module/Conversation/Timeline.php:167 +msgid "Hide" +msgstr "Скрыть" #: src/Module/Credits.php:44 msgid "Credits" @@ -7477,6 +6902,16 @@ msgstr "" msgid "Result Item" msgstr "" +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Ошибка" +msgstr[1] "Ошибки" +msgstr[2] "Ошибки" +msgstr[3] "Ошибки" + #: src/Module/Debug/ActivityPubConversion.php:138 msgid "Source activity" msgstr "" @@ -7658,7 +7093,7 @@ msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" #: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:141 +#: src/Module/Settings/Profile/Index.php:177 msgid "You must be logged in to use this module" msgstr "Вы должны быть залогинены для использования этого модуля" @@ -7697,7 +7132,7 @@ msgstr "Выберите пожалуйста ваш часовой пояс:" #: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 msgid "Only logged in users are permitted to perform a probing." -msgstr "" +msgstr "Для использования этой функции нужно войти." #: src/Module/Debug/Probe.php:52 msgid "Probe Diagnostic" @@ -7719,29 +7154,6 @@ msgstr "" msgid "Lookup address:" msgstr "" -#: src/Module/Delegation.php:110 -#, php-format -msgid "You are now logged in as %s" -msgstr "Вы вошли как %s" - -#: src/Module/Delegation.php:142 -msgid "Switch between your accounts" -msgstr "Переключить учётную запись" - -#: src/Module/Delegation.php:143 -msgid "Manage your accounts" -msgstr "Управление учётными записями" - -#: src/Module/Delegation.php:144 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Переключайтесь между разными профилями или страницами сообществ/групп, которые зарегистрированы на одинаковые контактные данные, либо вам предоставлено право управления ими." - -#: src/Module/Delegation.php:145 -msgid "Select an identity to manage: " -msgstr "Выберите учётную запись:" - #: src/Module/Directory.php:74 msgid "No entries (some entries may be hidden)." msgstr "Нет записей (некоторые записи могут быть скрыты)." @@ -7758,11 +7170,11 @@ msgstr "Результаты для:" msgid "Site Directory" msgstr "Каталог сайта" -#: src/Module/Filer/RemoveTag.php:102 +#: src/Module/Filer/RemoveTag.php:105 msgid "Item was not deleted" msgstr "Запись не была удалена" -#: src/Module/Filer/RemoveTag.php:112 +#: src/Module/Filer/RemoveTag.php:115 msgid "Item was not removed" msgstr "Запись не была удалена" @@ -7787,137 +7199,64 @@ msgstr "Предложить друзей" msgid "Suggest a friend for %s" msgstr "Предложить друга для %s." -#: src/Module/Friendica.php:63 +#: src/Module/Friendica.php:82 msgid "Installed addons/apps:" msgstr "Установленные дополнения:" -#: src/Module/Friendica.php:68 +#: src/Module/Friendica.php:87 msgid "No installed addons/apps" msgstr "Нет установленных дополнений" -#: src/Module/Friendica.php:73 +#: src/Module/Friendica.php:92 #, php-format msgid "Read about the Terms of Service of this node." msgstr "Ознакомьтесь с Условиями Предоставления Услуг этого узла." -#: src/Module/Friendica.php:80 +#: src/Module/Friendica.php:99 msgid "On this server the following remote servers are blocked." msgstr "На этом сервере заблокированы следующие удалённые серверы." -#: src/Module/Friendica.php:85 +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +#: src/Module/Settings/Channels.php:164 +msgid "Reason for the block" +msgstr "Причина блокировки" + +#: src/Module/Friendica.php:104 msgid "Download this list in CSV format" msgstr "Скачать этот список в формате CSV" -#: src/Module/Friendica.php:99 +#: src/Module/Friendica.php:118 #, 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 "Это сервер Friendica, версия %s, работающий по адресу %s. Версия базы данных %s, версия post update %s." -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:123 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "Посетите Friendi.ca, чтобы узнать больше о проекте Friendica." -#: src/Module/Friendica.php:105 +#: src/Module/Friendica.php:124 msgid "Bug reports and issues: please visit" msgstr "Отчет об ошибках и проблемах: пожалуйста, посетите" -#: src/Module/Friendica.php:105 +#: src/Module/Friendica.php:124 msgid "the bugtracker at github" msgstr "багтрекер на github" -#: src/Module/Friendica.php:106 +#: src/Module/Friendica.php:125 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "Предложения, отзывы, похвала - пишите нам на info[собака]friendi[точка]ca" -#: src/Module/Group.php:56 -msgid "Could not create group." -msgstr "Не удалось создать группу." - -#: src/Module/Group.php:67 src/Module/Group.php:213 src/Module/Group.php:237 -msgid "Group not found." -msgstr "Группа не найдена." - -#: src/Module/Group.php:73 -msgid "Group name was not changed." -msgstr "Название группы не изменено." - -#: src/Module/Group.php:91 -msgid "Unknown group." -msgstr "Неизвестная группа." - -#: src/Module/Group.php:116 -msgid "Unable to add the contact to the group." -msgstr "Не удалось добавить контакт в группу." - -#: src/Module/Group.php:119 -msgid "Contact successfully added to group." -msgstr "Контакт успешно добавлен в группу." - -#: src/Module/Group.php:123 -msgid "Unable to remove the contact from the group." -msgstr "Не удалось удалить контакт из группы." - -#: src/Module/Group.php:126 -msgid "Contact successfully removed from group." -msgstr "Контакт успешно удалён из группы." - -#: src/Module/Group.php:130 -msgid "Bad request." -msgstr "Ошибочный запрос." - -#: src/Module/Group.php:169 -msgid "Save Group" -msgstr "Сохранить группу" - -#: src/Module/Group.php:170 -msgid "Filter" -msgstr "Фильтр" - -#: src/Module/Group.php:176 -msgid "Create a group of contacts/friends." -msgstr "Создать группу контактов / друзей." - -#: src/Module/Group.php:218 -msgid "Unable to remove group." -msgstr "Не удается удалить группу." - -#: src/Module/Group.php:269 -msgid "Delete Group" -msgstr "Удалить группу" - -#: src/Module/Group.php:279 -msgid "Edit Group Name" -msgstr "Изменить имя группы" - -#: src/Module/Group.php:289 -msgid "Members" -msgstr "Участники" - -#: src/Module/Group.php:292 -msgid "Group is empty" -msgstr "Группа пуста" - -#: src/Module/Group.php:305 -msgid "Remove contact from group" -msgstr "Удалить контакт из группы" - -#: src/Module/Group.php:326 -msgid "Click on a contact to add or remove." -msgstr "Нажмите на контакт, чтобы добавить или удалить." - -#: src/Module/Group.php:340 -msgid "Add contact to group" -msgstr "Добавить контакт в группу" - #: src/Module/HCard.php:45 msgid "No profile" msgstr "Нет профиля" -#: src/Module/HTTPException/MethodNotAllowed.php:32 +#: src/Module/HTTPException/MethodNotAllowed.php:31 msgid "Method Not Allowed." msgstr "Метод не разрешён" @@ -7925,161 +7264,154 @@ msgstr "Метод не разрешён" msgid "Help:" msgstr "Помощь:" -#: src/Module/Home.php:54 +#: src/Module/Home.php:63 #, php-format msgid "Welcome to %s" msgstr "Добро пожаловать на %s!" -#: src/Module/Install.php:195 +#: src/Module/Install.php:189 msgid "Friendica Communications Server - Setup" msgstr "Социальная сеть Friendica - Установка" -#: src/Module/Install.php:206 +#: src/Module/Install.php:200 msgid "System check" msgstr "Проверить систему" -#: src/Module/Install.php:208 src/Module/Install.php:265 -#: src/Module/Install.php:348 +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 msgid "Requirement not satisfied" msgstr "" -#: src/Module/Install.php:209 +#: src/Module/Install.php:203 msgid "Optional requirement not satisfied" msgstr "" -#: src/Module/Install.php:210 +#: src/Module/Install.php:204 msgid "OK" msgstr "ОК" -#: src/Module/Install.php:215 +#: src/Module/Install.php:208 +msgid "Next" +msgstr "Далее" + +#: src/Module/Install.php:209 msgid "Check again" msgstr "Проверить еще раз" -#: src/Module/Install.php:230 +#: src/Module/Install.php:222 msgid "Base settings" msgstr "Основные настройки" -#: src/Module/Install.php:237 -msgid "Host name" -msgstr "Имя хоста" - -#: src/Module/Install.php:239 -msgid "" -"Overwrite this field in case the determinated hostname isn't right, " -"otherweise leave it as is." -msgstr "Впишите здесь имя сервера, если оно определилось неправильно, иначе оставьте его как есть." - -#: src/Module/Install.php:242 +#: src/Module/Install.php:224 msgid "Base path to installation" msgstr "Путь для установки" -#: src/Module/Install.php:244 +#: src/Module/Install.php:226 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "Если система не смогла определить правильный путь к вашей установке, введите правильный путь здесь. Эта настройка должна использоваться только, если вы используете систему с ограниченным доступом с символьными ссылками в ваш веб-каталог." -#: src/Module/Install.php:247 -msgid "Sub path of the URL" -msgstr "Дополнительная часть URL" +#: src/Module/Install.php:229 +msgid "The Friendica system URL" +msgstr "" -#: src/Module/Install.php:249 +#: src/Module/Install.php:231 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 "Впишите здесь правильный каталог URL, если он определён неверно, иначе оставьте его как есть. Пустое поле означает, что Friendica установлена по основному URL без подкаталогов." +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." +msgstr "" -#: src/Module/Install.php:260 +#: src/Module/Install.php:242 msgid "Database connection" msgstr "Подключение к базе данных" -#: src/Module/Install.php:261 +#: src/Module/Install.php:243 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных." -#: src/Module/Install.php:262 +#: src/Module/Install.php:244 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах." -#: src/Module/Install.php:263 +#: src/Module/Install.php:245 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением." -#: src/Module/Install.php:272 +#: src/Module/Install.php:252 msgid "Database Server Name" msgstr "Имя сервера базы данных" -#: src/Module/Install.php:277 +#: src/Module/Install.php:257 msgid "Database Login Name" msgstr "Логин базы данных" -#: src/Module/Install.php:283 +#: src/Module/Install.php:263 msgid "Database Login Password" msgstr "Пароль базы данных" -#: src/Module/Install.php:285 +#: src/Module/Install.php:265 msgid "For security reasons the password must not be empty" msgstr "Для безопасности пароль не должен быть пустым" -#: src/Module/Install.php:288 +#: src/Module/Install.php:268 msgid "Database Name" msgstr "Имя базы данных" -#: src/Module/Install.php:292 src/Module/Install.php:322 +#: src/Module/Install.php:272 src/Module/Install.php:300 msgid "Please select a default timezone for your website" msgstr "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта" -#: src/Module/Install.php:307 +#: src/Module/Install.php:287 msgid "Site settings" msgstr "Настройки сайта" -#: src/Module/Install.php:317 +#: src/Module/Install.php:295 msgid "Site administrator email address" msgstr "Адрес электронной почты администратора сайта" -#: src/Module/Install.php:319 +#: src/Module/Install.php:297 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора." -#: src/Module/Install.php:326 +#: src/Module/Install.php:304 msgid "System Language:" msgstr "Язык системы:" -#: src/Module/Install.php:328 +#: src/Module/Install.php:306 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "Язык по-умолчанию для интерфейса Friendica и для отправки писем." -#: src/Module/Install.php:340 +#: src/Module/Install.php:318 msgid "Your Friendica site database has been installed." msgstr "База данных сайта установлена." -#: src/Module/Install.php:350 +#: src/Module/Install.php:328 msgid "Installation finished" msgstr "Установка завершена" -#: src/Module/Install.php:370 +#: src/Module/Install.php:348 msgid "

    What next

    " msgstr "

    Что далее

    " -#: src/Module/Install.php:371 +#: src/Module/Install.php:349 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "ВАЖНО: Вам нужно будет [вручную] настроить фоновое задание в планировщике." -#: src/Module/Install.php:374 +#: src/Module/Install.php:352 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -8213,25 +7545,29 @@ msgstr "Создать новую запись" msgid "Visibility" msgstr "Видимость" -#: src/Module/Item/Compose.php:201 +#: src/Module/Item/Compose.php:203 msgid "Clear the location" msgstr "Очистить локацию" -#: src/Module/Item/Compose.php:202 +#: src/Module/Item/Compose.php:204 msgid "Location services are unavailable on your device" msgstr "Геолокация на вашем устройстве недоступна" -#: src/Module/Item/Compose.php:203 +#: src/Module/Item/Compose.php:205 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "Геолокация отключена. Пожалуйста, проверьте разрешения этого сайта на вашем устройстве" -#: src/Module/Item/Compose.php:209 +#: src/Module/Item/Compose.php:211 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." -msgstr "" +msgstr "Вы можете включить открытие этой страницы по кнопке создания новой записи в настройках отображения темы." + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "Лента недоступна для этого объекта." #: src/Module/Item/Follow.php:51 msgid "Unable to follow this item." @@ -8252,65 +7588,1073 @@ msgstr "Этот сервер Friendica в настоящее время зак msgid "A Decentralized Social Network" msgstr "Децентрализованная социальная сеть" -#: src/Module/Notifications/Introductions.php:98 +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "Вам нужно войти, чтобы увидеть эту страницу." + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Файлы" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:129 +msgid "Upload" +msgstr "Загрузить" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Извините, похоже что загружаемый файл превышает лимиты, разрешенные конфигурацией PHP" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "Или вы пытались загрузить пустой файл?" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Файл превышает лимит размера в %s" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "Загрузка файла не удалась." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:69 +msgid "Unable to process image." +msgstr "Невозможно обработать фото." + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:96 +msgid "Image upload failed." +msgstr "Загрузка фото неудачная." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "Все пользователи" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "Активные" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "Список активных пользователей" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "Список ожидающих регистрацию" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "Заблокированные пользователи" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "Удалённые" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "Список ожидающих удаления" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "Стандартная страница аккаунта" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "Публичная страница" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "Публичная группа" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "\"Автоматический друг\" страница" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "Закрытая группа" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "Личная страница" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "Организационная страница" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "Новостная страница" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "Группа сообщества" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "Ретранслятор" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "Нельзя заблокировать локальный контакт, пожалуйста заблокируйте самого пользователя." + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s контакт разблокирован" +msgstr[1] "%s контакта разблокированы" +msgstr[2] "%s контактов разблокировано" +msgstr[3] "%s контактов разблокировано" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "Чёрный список удалённых контактов" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "На этой странице вы можете заблокировать приём вашим узлом любых записей от определённых контактов." + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "Заблокировать удалённый контакт" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "выбрать все" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "сбросить выбор" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "Для этого узла нет заблокированных контактов." + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "Заблокированные контакты" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "Заблокировать новый контакт" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "Фото" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "Причина" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "%s заблокированный контакт" +msgstr[1] "%s заблокированных контакта" +msgstr[2] "%s заблокированных контактов" +msgstr[3] "%s заблокированных контактов" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "URL блокируемого контакта." + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "Так же очистить контакт" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "Удалить всё содержимое, относящееся к данному контакту на этом узле. Запись контакта будет сохранена. Это действие нельзя отменить." + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "Причина блокировки" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "Маска адреса сервера добавлена в чёрный список." + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "%s сервер ожидает очистки." +msgstr[1] "%s сервера ожидают очистки." +msgstr[2] "%s серверов ожидают очистки." +msgstr[3] "%s серверов ожидают очистки." + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "← Вернуться к списку" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "Заблокировать новый сервер по маске" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "

    Маска домена сервера нечувствительна к регистру и представляет собой выражение shell со следующими спецсимволами:

    \n
      \n\t
    • *: Любое число символов
    • \n\t
    • ?: Один любой символ
    • \n
    " + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "Проверить маску" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "Совпадающие известные серверы" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "Имя сервера" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "Домен сервера" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "Известные контакты" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "%d известный сервер" +msgstr[1] "%d известных сервера" +msgstr[2] "%d известных серверов" +msgstr[3] "%d известных серверов" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "Добавить маску в чёрный список" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "Маска домена узла" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "Маска домена сервера, который вы хотите добавить в чёрный список. Не включайте префикс протокола." + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "Очистить сервер" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "Так же удаляет все локальные данные, созданные контактами, зарегистрированными на этом сервере. Сохраняет записи о самих контактах и сервере. Это действие нельзя отменить." +msgstr[1] "Так же удаляет все локальные данные, созданные контактами, зарегистрированными на этих серверах. Сохраняет записи о самих контактах и серверах. Это действие нельзя отменить." +msgstr[2] "Так же удаляет все локальные данные, созданные контактами, зарегистрированными на этих серверах. Сохраняет записи о самих контактах и серверах. Это действие нельзя отменить." +msgstr[3] "Так же удаляет все локальные данные, созданные контактами, зарегистрированными на этих серверах. Сохраняет записи о самих контактах и серверах. Это действие нельзя отменить." + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "Причина блокировки" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "Причина, по которой вы заблокировали этот домен. Это будет показано публично на странице с информацией о сервере." + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "Ошибка импорта файла списка" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "Список блокировки заменён на список из файла." + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "%d маска была добавлена в список блокировки." +msgstr[1] "%d маски были добавлены в список блокировки." +msgstr[2] "%d масок было добавлено в список блокировки." +msgstr[3] "%d масок было добавлено в список блокировки." + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "Новых масок не было добавлено." + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "Импорт списка блокировки серверов" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "

    Этот файл может быть загружен по ссылке /friendica с любого сервера Friendica.

    " + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "Загрузить файл" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "Маски для импорта" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "Маска домена" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "Режим импорта" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "Импорт значений" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "%d маска" +msgstr[1] "%d маски всего" +msgstr[2] "%d масок всего" +msgstr[3] "%d масок всего" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "Список блокировки серверов в виде файла CSV" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "Добавить" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "Добавляет маски из файла, которые ещё не существуют в текущем списке блокировки." + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "Заменить" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "Заменяет текущий список загруженными значениями." + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +#: src/Module/Settings/Channels.php:163 +msgid "Blocked server domain pattern" +msgstr "Маска домена блокируемого сервера" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "Удалить маску домена" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "Отметьте, чтобы удалить эту запись из списка блокировки" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "Список блокировки доменов" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "На этой странице можно настроить список блокировки доменов узлов федеративной сети, которые не должны взаимодействовать с вашим узлом. Для каждой записи вы должны предоставить причину блокировки." + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +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 "Список блокируемых доменов будет отображаться публично на странице /friendica, чтобы ваши пользователи и другие люди могли легко понять причину проблем с доставкой записей." + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "Импорт списка блокировки" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "Добавить новую запись в список блокировки" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "Сохранить изменения списка блокировки" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "Текущие значения списка блокировки" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "Удалить запись из списка" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "Удалить запись из списка блокировки?" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "Запись помечена для удаления." + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "Удалить эту запись" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "На этой странице вы можете удалять записи на вашем узле. Если запись является родительской, то будет удалена вся её ветка." + +#: src/Module/Moderation/Item/Delete.php:65 +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 "Вам нужно знать GUID записи. Вы можете узнать его, посмотрев на ссылку записи. Последняя часть ссылки - GUID. Например, для http://example.com/display/123456 - GUID будет 123456." + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "GUID записи, которую вы хотите удалить." + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "Id записи" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "URI записи" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "Ключевые слова" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "Тэг" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "Тип" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "Ключевое слово" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "URL" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "Неявная отметка" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Элемент не найден" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "Источник не сохранён" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "GUID записи" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "Контакт не найден или их сервер уже заблокирован на этом узле." + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "Пожалуйста, войдите для доступа к этой странице." + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "Создать обращение к модераторам" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "Выбор контакта" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "Пожалуйста, выберите адрес контакта или URL профиля, о котором вы хотите отправить обращение." + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "Адрес контакта/URL" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "Выбор категории" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "Пожалуйста, выберите категорию обращения." + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "Спам" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "Этот контакт публикует много повторяющихся/слишком длинных записей/комментариев, либо рекламирует свои товары/услуги там, где это неуместно." + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "Противозаконный контент" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "Этот контакт публикует что-то, что запрещено законом в юрисдикции данного узла." + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "Общественный порядок" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "Этот контакт раздражает вас или других людей провокационным или невежливым поведением, намеренно или нет. Это включает распространение частной информации о других людях (doxxing), угрозы, оскорбительные изображения в записях или комментариях." + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "Нежелательные материалы/поведение" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "Этот контакт неоднократно публикует что-то, не относящееся к тематике узла, открыто критикует администраторов/модераторов без непосредственного обращения к ним, намеренно провоцирует раздор в чувствительных темах." + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "Нарушение правил" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "Этот контакт нарушил одно или несколько правил этого узла. Вы сможете выбрать какие на следующем шаге." + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "Пожалуйста, расскажите о причинах вашего обращения. Чем больше деталей вы предоставите, тем лучше ваше обращение будет обработано." + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "Дополнительная информация" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "Пожалуйста, добавьте любую дополнительную информацию, относящуюся к ситуации. Вы сможете прикрепить записи на следующем шаге, но любые детали пригодятся." + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "Выберите правила" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "Пожалуйста, выберите правила, которые по вашему мнению были нарушены." + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "Выберите записи" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "Пожалуйста, выберите записи, которые вы хотите добавить к обращению." + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "Отправить обращение" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "Дальнейшие действия" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "Вы так же можете сделать следующее с этим контактом:" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "Ничего" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "Сворачивать контакт" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "Их записи и комментарии будут появляться в вашей ленте, но они будут свёрнуты." + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "Их записи и комментарии не будут больше появляться в вашей ленте, но могут появляться в групповых ветках. Так же они могут подписаться на вас." + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "Заблокировать контакт" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "Их записи не будут появляться в вашей ленте, но их ответы могут появляться в групповых ветках в свёрнутом виде. Они не смогут подписаться на вас, но могут увидеть ваши публичные записи другими способами." + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "Переслать обращение" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "Вы хотите переслать это обращение на удалённый сервер?" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "1. Выберите контакт" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "2. Выберите категорию" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "2a. Выберите правила" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "2b. Добавьте комментарий" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "3. Выберите записи" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "Список обращений" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "Эта страница показывает обращения, созданные нашими или удалёнными пользователями." + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "Обращений на этом узле нет." + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "Категория" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "%s обращение" +msgstr[1] "%s обращения" +msgstr[2] "%s обращений" +msgstr[3] "%s обращений" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "URL контакта в обращении." + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Обычный аккаунт" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "\"Автоматический друг\" Аккаунт" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "Публичная группа" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "\"Автоматический друг\" Аккаунт" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Аккаунт блога" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "Закрытая группа" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Зарегистрированные пользователи" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Ожидающие регистрации" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "%s пользователь заблокирован" +msgstr[1] "%s пользователя заблокировано" +msgstr[2] "%s пользователей заблокировано" +msgstr[3] "%s пользователей заблокировано" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "Вы не можете удалить самого себя" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s человек удален" +msgstr[1] "%s чел. удалено" +msgstr[2] "%s чел. удалено" +msgstr[3] "%s чел. удалено" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "Пользователь \"%s\" удалён" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "Пользователь \"%s\" заблокирован" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Дата регистрации" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "Последний вход" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "Последняя публичная запись" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "Активные учётные записи" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "Пользователь заблокирован" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "Админ сайта" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "Аккаунт просрочен" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "Создать нового" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "%s пользователь разблокирован" +msgstr[1] "%s пользователя разблокировано" +msgstr[2] "%s пользователей разблокировано" +msgstr[3] "%s пользователей разблокировано" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "Пользователь \"%s\" разблокирован" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "Заблокированные" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "Новый пользователь" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "Добавить пользователя" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "Имя нового пользователя." + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "Ник" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "Ник нового пользователя." + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "Email адрес нового пользователя." + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "Пользователи, ожидающие окончательного удаления" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "Постоянное удаление" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "Пользователь ожидает окончательного удаления" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "%s пользователь одобрен" +msgstr[1] "%s пользователя одобрено" +msgstr[2] "%s пользователей одобрено" +msgstr[3] "%s пользователей одобрено" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "%s регистрация отменена" +msgstr[1] "%s регистрации отменены" +msgstr[2] "%s регистраций отменены" +msgstr[3] "%s регистраций отменены" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Аккаунт утвержден." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "Регистрация отменена" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "Регистрации пользователей, ожидающие подтверждения" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Запрос даты" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "Нет регистраций." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "Сообщение от пользователя" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Отклонить" + +#: src/Module/Notifications/Introductions.php:99 msgid "Show Ignored Requests" msgstr "Показать проигнорированные запросы" -#: src/Module/Notifications/Introductions.php:98 +#: src/Module/Notifications/Introductions.php:99 msgid "Hide Ignored Requests" msgstr "Скрыть проигнорированные запросы" -#: src/Module/Notifications/Introductions.php:114 -#: src/Module/Notifications/Introductions.php:177 +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 msgid "Notification type:" msgstr "Тип уведомления:" -#: src/Module/Notifications/Introductions.php:117 +#: src/Module/Notifications/Introductions.php:118 msgid "Suggested by:" msgstr "Рекомендовано:" -#: src/Module/Notifications/Introductions.php:142 +#: src/Module/Notifications/Introductions.php:143 msgid "Claims to be known to you: " msgstr "Утверждения, о которых должно быть вам известно: " -#: src/Module/Notifications/Introductions.php:143 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:125 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "No" msgstr "Нет" -#: src/Module/Notifications/Introductions.php:151 +#: src/Module/Notifications/Introductions.php:152 msgid "Shall your connection be bidirectional or not?" msgstr "Должно ли ваше соединение быть двухсторонним или нет?" -#: src/Module/Notifications/Introductions.php:152 +#: src/Module/Notifications/Introductions.php:153 #, 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 как друга вы позволяете %s читать ему свои записи, а также будете получать записи от него." -#: src/Module/Notifications/Introductions.php:153 +#: src/Module/Notifications/Introductions.php:154 #, 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 как подписчика вы позволяете читать ему свои записи, но вы не будете получать записей от него." -#: src/Module/Notifications/Introductions.php:155 +#: src/Module/Notifications/Introductions.php:156 msgid "Friend" msgstr "Друг" -#: src/Module/Notifications/Introductions.php:156 +#: src/Module/Notifications/Introductions.php:157 msgid "Subscriber" msgstr "Подписчик" -#: src/Module/Notifications/Introductions.php:215 +#: src/Module/Notifications/Introductions.php:216 msgid "No introductions." msgstr "Запросов нет." -#: src/Module/Notifications/Introductions.php:216 -#: src/Module/Notifications/Notifications.php:134 +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 #, php-format msgid "No more %s notifications." msgstr "Больше нет уведомлений о %s." @@ -8319,40 +8663,40 @@ msgstr "Больше нет уведомлений о %s." msgid "You must be logged in to show this page." msgstr "Вам нужно войти, чтобы увидеть эту страницу." -#: src/Module/Notifications/Notifications.php:65 +#: src/Module/Notifications/Notifications.php:66 msgid "Network Notifications" msgstr "Уведомления сети" -#: src/Module/Notifications/Notifications.php:71 +#: src/Module/Notifications/Notifications.php:72 msgid "System Notifications" msgstr "Уведомления системы" -#: src/Module/Notifications/Notifications.php:77 +#: src/Module/Notifications/Notifications.php:78 msgid "Personal Notifications" msgstr "Личные уведомления" -#: src/Module/Notifications/Notifications.php:83 +#: src/Module/Notifications/Notifications.php:84 msgid "Home Notifications" msgstr "Уведомления" -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Notifications/Notifications.php:140 msgid "Show unread" msgstr "Показать непрочитанные" -#: src/Module/Notifications/Ping.php:224 +#: src/Module/Notifications/Ping.php:246 msgid "{0} requested registration" -msgstr "{0} требуемая регистрация" +msgstr "{0} запрос на регистрацию" -#: src/Module/Notifications/Ping.php:235 +#: src/Module/Notifications/Ping.php:255 #, php-format msgid "{0} and %d others requested registration" -msgstr "" +msgstr "{0} и %d других запросов на регистрацию" -#: src/Module/OAuth/Acknowledge.php:50 +#: src/Module/OAuth/Acknowledge.php:51 msgid "Authorize application connection" msgstr "Разрешить связь с приложением" -#: src/Module/OAuth/Acknowledge.php:52 +#: src/Module/OAuth/Acknowledge.php:53 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" @@ -8360,135 +8704,299 @@ msgstr "Вы действительно хотите разрешить этом #: src/Module/OAuth/Authorize.php:54 msgid "Unsupported or missing response type" -msgstr "" +msgstr "Неподдерживаемый или отсутствующий тип отклика" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:72 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 msgid "Incomplete request data" -msgstr "" +msgstr "Неполные данные запроса" #: src/Module/OAuth/Authorize.php:106 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" -msgstr "" +msgstr "Пожалуйста, скопируйте следующий код аутентификации в ваше приложение и закройте это окно: %s" -#: src/Module/OAuth/Token.php:96 +#: src/Module/OAuth/Token.php:83 +msgid "Invalid data or unknown client" +msgstr "Ошибочные данные или неизвестный клиент" + +#: src/Module/OAuth/Token.php:108 msgid "Unsupported or missing grant type" -msgstr "" +msgstr "Неподдерживаемый или отсутствующий тип гранта." + +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "Переподписаться на OStatus-контакты." + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "Держать окно открытым до завершения." + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "✔ Готово" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "Нет контактов OStatus для переподписки." + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "Подписка на контакты" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "Не указан контакт." + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "Невозможно получить информацию о контакте." + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "Невозможно получить друзей для контакта." + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "Не удалось загрузить контакты подписчиков." + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "Не получилось загрузить профиль." + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "Сеть не поддерживается" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Готово" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "удачно" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "неудача" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "игнорирован" #: src/Module/PermissionTooltip.php:49 #, php-format msgid "Wrong type \"%s\", expected one of: %s" -msgstr "" +msgstr "Ошибочный тип \"%s\", ожидался один из: %s" -#: src/Module/PermissionTooltip.php:66 +#: src/Module/PermissionTooltip.php:79 msgid "Model not found" -msgstr "" +msgstr "Модель не найдена" -#: src/Module/PermissionTooltip.php:89 +#: src/Module/PermissionTooltip.php:94 msgid "Unlisted" msgstr "Непублично" -#: src/Module/PermissionTooltip.php:107 +#: src/Module/PermissionTooltip.php:112 msgid "Remote privacy information not available." msgstr "Личная информация удаленно недоступна." -#: src/Module/PermissionTooltip.php:116 +#: src/Module/PermissionTooltip.php:121 msgid "Visible to:" msgstr "Кто может видеть:" -#: src/Module/PermissionTooltip.php:200 +#: src/Module/PermissionTooltip.php:204 #, php-format msgid "Collection (%s)" -msgstr "" +msgstr "Коллекция (%s)" -#: src/Module/PermissionTooltip.php:204 +#: src/Module/PermissionTooltip.php:208 #, php-format msgid "Followers (%s)" msgstr "Подписчики (%s)" -#: src/Module/PermissionTooltip.php:223 -#, php-format -msgid "%d more" -msgstr "" - #: src/Module/PermissionTooltip.php:227 #, php-format -msgid "To: %s
    " -msgstr "" +msgid "%d more" +msgstr "%d ещё" -#: src/Module/PermissionTooltip.php:230 +#: src/Module/PermissionTooltip.php:231 +#, php-format +msgid "To: %s
    " +msgstr "Кому: %s
    " + +#: src/Module/PermissionTooltip.php:234 #, php-format msgid "CC: %s
    " -msgstr "" +msgstr "CC: %s
    " -#: src/Module/PermissionTooltip.php:233 +#: src/Module/PermissionTooltip.php:237 #, php-format msgid "BCC: %s
    " -msgstr "" +msgstr "BCC: %s
    " -#: src/Module/Photo.php:128 +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "Аудитория: %s
    " + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "Относится к: %s
    " + +#: src/Module/Photo.php:130 msgid "The Photo is not available." msgstr "Фото недоступно." -#: src/Module/Photo.php:141 +#: src/Module/Photo.php:155 #, php-format msgid "The Photo with id %s is not available." msgstr "Фотография с id %s недоступна." -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:192 #, php-format msgid "Invalid external resource with url %s." -msgstr "" +msgstr "Проблема с внешним ресурсом по адресу %s." -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:194 #, php-format msgid "Invalid photo with id %s." msgstr "Неправильное фото с id %s." -#: src/Module/Profile/Contacts.php:119 +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "Запись не найдена" + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Редактировать запись" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "веб-ссылка" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Вставить ссылку видео" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "видео-ссылка" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Вставить ссылку аудио" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "аудио-ссылка" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Удалить ключевое слово" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Выберите ключевое слово для удаления: " + +#: src/Module/Post/Tag/Remove.php:108 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Удалить" + +#: src/Module/Profile/Contacts.php:159 msgid "No contacts." msgstr "Нет контактов." -#: src/Module/Profile/Profile.php:81 +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "Лента %s" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "Записи %s" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "Комментарии %s" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:60 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Изображение превышает лимит размера в %s" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "Не получилось загрузить изображение, попробуйте снова" + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "Файл изображения не найден" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "Сервер не принимает новые файлы для загрузки в настоящий момент, пожалуйста, свяжитесь с администратором" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "Файл изображения пуст." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "Просмотреть альбом" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 msgid "Profile not found." msgstr "Профиль не найден." -#: src/Module/Profile/Profile.php:134 +#: src/Module/Profile/Profile.php:158 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "Сейчас вы видите свой профиль как %s Отмена" -#: src/Module/Profile/Profile.php:143 src/Module/Settings/Account.php:579 +#: src/Module/Profile/Profile.php:167 msgid "Full Name:" msgstr "Полное имя:" -#: src/Module/Profile/Profile.php:148 +#: src/Module/Profile/Profile.php:172 msgid "Member since:" msgstr "Зарегистрирован с:" -#: src/Module/Profile/Profile.php:154 +#: src/Module/Profile/Profile.php:178 msgid "j F, Y" msgstr "j F, Y" -#: src/Module/Profile/Profile.php:155 +#: src/Module/Profile/Profile.php:179 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:163 src/Util/Temporal.php:167 +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 msgid "Birthday:" msgstr "День рождения:" -#: src/Module/Profile/Profile.php:166 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:169 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 msgid "Age: " msgstr "Возраст: " -#: src/Module/Profile/Profile.php:166 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:169 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 #, php-format msgid "%d year old" msgid_plural "%d years old" @@ -8497,58 +9005,137 @@ msgstr[1] "%dгода" msgstr[2] "%dлет" msgstr[3] "%dлет" -#: src/Module/Profile/Profile.php:233 -msgid "Forums:" -msgstr "Форумы:" +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "Описание:" -#: src/Module/Profile/Profile.php:245 +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" +msgstr "Группы:" + +#: src/Module/Profile/Profile.php:273 msgid "View profile as:" msgstr "Посмотреть профиль как:" -#: src/Module/Profile/Profile.php:262 +#: src/Module/Profile/Profile.php:290 msgid "View as" msgstr "Посмотреть как" -#: src/Module/Profile/Profile.php:325 src/Module/Profile/Profile.php:328 -#: src/Module/Profile/Status.php:65 src/Module/Profile/Status.php:68 -#: src/Protocol/Feed.php:1028 src/Protocol/OStatus.php:1047 -#, php-format -msgid "%s's timeline" -msgstr "Лента %s" +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "Профиль недоступен." -#: src/Module/Profile/Profile.php:326 src/Module/Profile/Status.php:66 -#: src/Protocol/Feed.php:1032 src/Protocol/OStatus.php:1052 -#, php-format -msgid "%s's posts" -msgstr "Записи %s" +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "Недопустимый локатор" -#: src/Module/Profile/Profile.php:327 src/Module/Profile/Status.php:67 -#: src/Protocol/Feed.php:1035 src/Protocol/OStatus.php:1056 -#, php-format -msgid "%s's comments" -msgstr "Комментарии %s" +#: src/Module/Profile/RemoteFollow.php:95 +msgid "The provided profile link doesn't seem to be valid" +msgstr "Указанная ссылка на профиль не выглядит правильной" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/RemoteFollow.php:100 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "Удаленная подписка не может быть выполнена на вашей сети. Пожалуйста, подпишитесь на вашей системе." + +#: src/Module/Profile/RemoteFollow.php:128 +msgid "Friend/Connection Request" +msgstr "Запрос в друзья / на подключение" + +#: src/Module/Profile/RemoteFollow.php:129 +#, 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 "Введите здесь ваш Webfinger-адрес (user@domain.tld) или ссылку на профиль. Если это не поддерживается вашей системой, вам нужно подписаться на %s или %s непосредственно на вашей системе." + +#: src/Module/Profile/RemoteFollow.php:130 +#, 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 "Если вы ещё не член свободной социальной сети, пройдите по этой ссылке, чтобы найти публичный узел Friendica и присоединитесь к нам сегодня." + +#: src/Module/Profile/RemoteFollow.php:131 +msgid "Your Webfinger address or profile URL:" +msgstr "Ваш адрес Webfinger или ссылка на профиль:" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "Закрытый профиль" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "Доступ к этому профилю был ограничен, анонимные пользователи не могут его просматривать." + +#: src/Module/Profile/Schedule.php:83 msgid "Scheduled" msgstr "Запланировано" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:84 msgid "Content" msgstr "Содержание" -#: src/Module/Profile/Schedule.php:86 +#: src/Module/Profile/Schedule.php:85 msgid "Remove post" msgstr "Удалить запись" +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "Пустое сообщение" + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Невозможно проверить местоположение." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "Получатель не найден" + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.." + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать личные сообщения от неизвестных отправителей." + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "Кому" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "Тема" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "Ваше сообщение" + #: src/Module/Register.php:84 msgid "Only parent users can create additional accounts." msgstr "Только основные пользователи могут создавать дополнительные учётные записи." +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра." + #: src/Module/Register.php:116 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." -msgstr "" +msgstr "Вы можете (по желанию), заполнить эту форму с помощью OpenID, предоставив ваш OpenID и нажав кнопку \"Регистрация\"." #: src/Module/Register.php:117 msgid "" @@ -8594,8 +9181,8 @@ msgstr "Ваш адрес электронной почты: (Информаци msgid "Please repeat your e-mail address:" msgstr "Пожалуйста, введите адрес электронной почты ещё раз:" -#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:98 -#: src/Module/Settings/Account.php:570 +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 msgid "New Password:" msgstr "Новый пароль:" @@ -8603,8 +9190,8 @@ msgstr "Новый пароль:" msgid "Leave empty for an auto generated password." msgstr "Оставьте пустым для автоматической генерации пароля." -#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:571 +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 msgid "Confirm:" msgstr "Подтвердите:" @@ -8613,12 +9200,16 @@ msgstr "Подтвердите:" msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be \"nickname@%s\"." -msgstr "" +msgstr "Выберите псевдоним. Он должен начинаться с буквы. Адрес вашего профиля на этом сайте будет \"псевдоним@%s\"." #: src/Module/Register.php:165 msgid "Choose a nickname: " msgstr "Выберите псевдоним: " +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Импорт" + #: src/Module/Register.php:174 msgid "Import your profile to this friendica instance" msgstr "Импорт своего профиля в этот экземпляр friendica" @@ -8627,11 +9218,11 @@ msgstr "Импорт своего профиля в этот экземпляр msgid "Note: This node explicitly contains adult content" msgstr "Внимание: на этом сервере размещаются материалы для взрослых." -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:154 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 msgid "Parent Password:" msgstr "Родительский пароль:" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:154 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "Пожалуйста введите пароль от родительского аккаунта для подтверждения запроса." @@ -8661,83 +9252,47 @@ msgid "" "Registration successful. Please check your email for further instructions." msgstr "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций." -#: src/Module/Register.php:339 +#: src/Module/Register.php:342 #, php-format msgid "" "Failed to send email message. Here your accout details:
    login: %s
    " "password: %s

    You can change your password after login." msgstr "Ошибка отправки письма. Вот ваши учетные данные:
    логин: %s
    пароль: %s

    Вы сможете изменить пароль после входа." -#: src/Module/Register.php:345 +#: src/Module/Register.php:348 msgid "Registration successful." msgstr "Регистрация успешна." -#: src/Module/Register.php:350 src/Module/Register.php:357 +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 msgid "Your registration can not be processed." msgstr "Ваша регистрация не может быть обработана." -#: src/Module/Register.php:356 +#: src/Module/Register.php:363 msgid "You have to leave a request note for the admin." msgstr "Вам нужно написать обращение к администратору." -#: src/Module/Register.php:402 +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "Возникла внутренняя ошибка." + +#: src/Module/Register.php:395 msgid "Your registration is pending approval by the site owner." msgstr "Ваша регистрация в ожидании одобрения владельцем сайта." -#: src/Module/RemoteFollow.php:72 -msgid "Profile unavailable." -msgstr "Профиль недоступен." - -#: src/Module/RemoteFollow.php:78 -msgid "Invalid locator" -msgstr "Недопустимый локатор" - -#: src/Module/RemoteFollow.php:85 -msgid "The provided profile link doesn't seem to be valid" -msgstr "Указанная ссылка на профиль не выглядит правильной" - -#: src/Module/RemoteFollow.php:90 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "Удаленная подписка не может быть выполнена на вашей сети. Пожалуйста, подпишитесь на вашей системе." - -#: src/Module/RemoteFollow.php:122 -msgid "Friend/Connection Request" -msgstr "Запрос в друзья / на подключение" - -#: src/Module/RemoteFollow.php:123 -#, 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 "" - -#: src/Module/RemoteFollow.php:124 -#, 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 "Если вы ещё не член свободной социальной сети, пройдите по этой ссылке, чтобы найти публичный узел Friendica и присоединитесь к нам сегодня." - -#: src/Module/RemoteFollow.php:125 -msgid "Your Webfinger address or profile URL:" -msgstr "Ваш адрес Webfinger или ссылка на профиль:" - -#: src/Module/Search/Acl.php:55 +#: src/Module/Search/Acl.php:73 msgid "You must be logged in to use this module." msgstr "Вам нужно войти, чтобы использовать этот модуль." -#: src/Module/Search/Index.php:68 +#: src/Module/Search/Index.php:69 msgid "Only logged in users are permitted to perform a search." msgstr "Только зарегистрированные пользователи могут использовать поиск." -#: src/Module/Search/Index.php:88 +#: src/Module/Search/Index.php:89 msgid "Only one search per minute is permitted for not logged in users." msgstr "Незарегистрированные пользователи могут выполнять поиск раз в минуту." -#: src/Module/Search/Index.php:204 +#: src/Module/Search/Index.php:205 #, php-format msgid "Items tagged with: %s" msgstr "Элементы с тегами: %s" @@ -8758,122 +9313,122 @@ msgstr "Поисковый запрос не был удалён." msgid "Create a New Account" msgstr "Создать новый аккаунт" -#: src/Module/Security/Login.php:143 +#: src/Module/Security/Login.php:142 msgid "Your OpenID: " msgstr "Ваш OpenID: " -#: src/Module/Security/Login.php:146 +#: src/Module/Security/Login.php:145 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "Пожалуйста, введите ваше имя пользователя и пароль для того, чтобы добавить OpenID к вашей учётной записи." -#: src/Module/Security/Login.php:148 +#: src/Module/Security/Login.php:147 msgid "Or login using OpenID: " msgstr "Или зайти с OpenID: " -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:161 msgid "Password: " msgstr "Пароль: " -#: src/Module/Security/Login.php:163 +#: src/Module/Security/Login.php:162 msgid "Remember me" msgstr "Запомнить" -#: src/Module/Security/Login.php:172 +#: src/Module/Security/Login.php:171 msgid "Forgot your password?" msgstr "Забыли пароль?" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:174 msgid "Website Terms of Service" msgstr "Правила сайта" -#: src/Module/Security/Login.php:176 +#: src/Module/Security/Login.php:175 msgid "terms of service" msgstr "правила" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:177 msgid "Website Privacy Policy" msgstr "Политика конфиденциальности сервера" -#: src/Module/Security/Login.php:179 +#: src/Module/Security/Login.php:178 msgid "privacy policy" msgstr "политика конфиденциальности" #: src/Module/Security/Logout.php:84 -#: src/Module/Security/TwoFactor/SignOut.php:79 -#: src/Module/Security/TwoFactor/SignOut.php:87 -#: src/Module/Security/TwoFactor/SignOut.php:109 -#: src/Module/Security/TwoFactor/SignOut.php:116 +#: src/Module/Security/TwoFactor/SignOut.php:78 +#: src/Module/Security/TwoFactor/SignOut.php:86 +#: src/Module/Security/TwoFactor/SignOut.php:108 +#: src/Module/Security/TwoFactor/SignOut.php:115 msgid "Logged out." msgstr "Выход из системы." #: src/Module/Security/OpenID.php:54 msgid "OpenID protocol error. No ID returned" -msgstr "" +msgstr "Ошибка протокола OpenID. Не возвращён ID." #: src/Module/Security/OpenID.php:90 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." -msgstr "" +msgstr "Учётная запись не найдена. Пожалуйста, зайдите в вашу существующую запись, чтобы добавить OpenID к ней." #: src/Module/Security/OpenID.php:92 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." -msgstr "" +msgstr "Учётная запись не найдена. Пожалуйста, зарегистрируйте новую учётную запись или зайдите в существующую, чтобы добавить к ней OpenID." -#: src/Module/Security/PasswordTooLong.php:54 +#: src/Module/Security/PasswordTooLong.php:57 #: src/Module/Settings/Account.php:67 msgid "Passwords do not match." msgstr "Пароли не совпадают" -#: src/Module/Security/PasswordTooLong.php:61 +#: src/Module/Security/PasswordTooLong.php:64 msgid "Password does not need changing." -msgstr "" +msgstr "Смена пароля не требуется." -#: src/Module/Security/PasswordTooLong.php:74 +#: src/Module/Security/PasswordTooLong.php:77 #: src/Module/Settings/Account.php:81 msgid "Password unchanged." msgstr "Пароль не поменялся" -#: src/Module/Security/PasswordTooLong.php:88 +#: src/Module/Security/PasswordTooLong.php:91 msgid "Password Too Long" -msgstr "" +msgstr "Пароль слишком длинный" -#: src/Module/Security/PasswordTooLong.php:89 +#: src/Module/Security/PasswordTooLong.php:92 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." -msgstr "" +msgstr "С версии 2022.09 мы поняли, что пароли длиннее 72 символов обрезаются при хешировании. Чтобы избежать связанных с этим неожиданностей, пожалуйста, смените ваш пароль, чтобы его длина не превышала 72 символа." -#: src/Module/Security/PasswordTooLong.php:90 +#: src/Module/Security/PasswordTooLong.php:93 msgid "Update Password" -msgstr "" +msgstr "Изменить пароль" -#: src/Module/Security/PasswordTooLong.php:97 -#: src/Module/Settings/Account.php:572 +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 msgid "Current Password:" msgstr "Текущий пароль:" -#: src/Module/Security/PasswordTooLong.php:97 -#: src/Module/Settings/Account.php:572 +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 msgid "Your current password to confirm the changes" msgstr "Ваш текущий пароль, для подтверждения изменений" -#: src/Module/Security/PasswordTooLong.php:98 -#: src/Module/Settings/Account.php:555 +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "Разрешенные символы: a-z, A-Z, 0-9 специальные символы за исключением пробелов, букв с акцентами и двоеточия (:)." +"spaces and accentuated letters." +msgstr "Допустимые символы a-z, A-Z, 0-9 и специальные символы за исключением пробелов и букв с акцентами." -#: src/Module/Security/PasswordTooLong.php:98 -#: src/Module/Settings/Account.php:556 +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 msgid "Password length is limited to 72 characters." -msgstr "" +msgstr "Длина пароля ограничена 72-мя символами." #: src/Module/Security/TwoFactor/Recovery.php:74 #, php-format @@ -8881,8 +9436,8 @@ msgid "Remaining recovery codes: %d" msgstr "Осталось кодов для восстановления: %d" #: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:78 -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Security/TwoFactor/Verify.php:77 +#: src/Module/Settings/TwoFactor/Verify.php:95 msgid "Invalid code, please retry." msgstr "Неправильный код, попробуйте ещё." @@ -8909,69 +9464,69 @@ msgstr "Пожалуйста, введите код восстановления msgid "Submit recovery code and complete login" msgstr "Отправить код восстановления и завершить вход" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:122 msgid "Sign out of this browser?" -msgstr "" +msgstr "Выйти из этого браузера?" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:123 msgid "" "

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

    " -msgstr "" +msgstr "

    Если вы доверяете этому браузеру, то при следующем входе код двухфакторной аутентификации запрошен не будет.

    " -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: src/Module/Security/TwoFactor/SignOut.php:124 msgid "Sign out" -msgstr "" +msgstr "Выйти" -#: src/Module/Security/TwoFactor/SignOut.php:127 +#: src/Module/Security/TwoFactor/SignOut.php:126 msgid "Trust and sign out" -msgstr "" +msgstr "Доверять и выйти" #: src/Module/Security/TwoFactor/Trust.php:96 msgid "Couldn't save browser to Cookie." -msgstr "" +msgstr "Не удалось сохранить браузер в Cookie" #: src/Module/Security/TwoFactor/Trust.php:141 msgid "Trust this browser?" -msgstr "" +msgstr "Доверять этому браузеру?" #: src/Module/Security/TwoFactor/Trust.php:142 msgid "" "

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

    " -msgstr "" +msgstr "

    Если вы решите доверять этому браузеру, то при следующем входе код двухфакторной аутентификации запрошен не будет.

    " #: src/Module/Security/TwoFactor/Trust.php:143 msgid "Not now" -msgstr "" +msgstr "Не сейчас" #: src/Module/Security/TwoFactor/Trust.php:144 msgid "Don't trust" -msgstr "" +msgstr "Не доверять" #: src/Module/Security/TwoFactor/Trust.php:145 msgid "Trust" -msgstr "" +msgstr "Доверять" -#: src/Module/Security/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Verify.php:97 msgid "" "

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

    " msgstr "

    Откройте приложение для двухфакторной аутентификации на вашем устройстве, чтобы получить код аутентификации и подтвердить вашу личность.

    " -#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Security/TwoFactor/Verify.php:100 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." -msgstr "" +msgstr "Если у вас нет доступа к кодам аутентификации, вы можете использовать код восстановления." -#: src/Module/Security/TwoFactor/Verify.php:102 -#: src/Module/Settings/TwoFactor/Verify.php:154 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Verify.php:155 msgid "Please enter a code from your authentication app" msgstr "Пожалуйста, введите код из вашего приложения для аутентификации" -#: src/Module/Security/TwoFactor/Verify.php:103 +#: src/Module/Security/TwoFactor/Verify.php:102 msgid "Verify code and complete login" msgstr "Введите код для завершения входа" @@ -8991,103 +9546,103 @@ msgstr "Неправильный пароль" msgid "Invalid email." msgstr "Неправильный адрес почты" -#: src/Module/Settings/Account.php:119 +#: src/Module/Settings/Account.php:117 msgid "Cannot change to that email." msgstr "Нельзя установить этот адрес почты" -#: src/Module/Settings/Account.php:149 src/Module/Settings/Account.php:201 -#: src/Module/Settings/Account.php:221 src/Module/Settings/Account.php:305 -#: src/Module/Settings/Account.php:354 +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 msgid "Settings were not updated." msgstr "Настройки не были изменены." -#: src/Module/Settings/Account.php:366 +#: src/Module/Settings/Account.php:364 msgid "Contact CSV file upload error" msgstr "Ошибка загрузки CSV с контактами" -#: src/Module/Settings/Account.php:385 +#: src/Module/Settings/Account.php:383 msgid "Importing Contacts done" msgstr "Импорт контактов завершён" -#: src/Module/Settings/Account.php:398 +#: src/Module/Settings/Account.php:396 msgid "Relocate message has been send to your contacts" msgstr "Перемещённое сообщение было отправлено списку контактов" -#: src/Module/Settings/Account.php:415 +#: src/Module/Settings/Account.php:413 msgid "Unable to find your profile. Please contact your admin." msgstr "Не получается найти ваш профиль. Пожалуйста свяжитесь с администратором." -#: src/Module/Settings/Account.php:457 +#: src/Module/Settings/Account.php:455 msgid "Personal Page Subtypes" msgstr "Подтипы личной страницы" -#: src/Module/Settings/Account.php:458 -msgid "Community Forum Subtypes" -msgstr "Подтипы форума сообщества" +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" +msgstr "Типы групп сообществ" -#: src/Module/Settings/Account.php:468 +#: src/Module/Settings/Account.php:466 msgid "Account for a personal profile." msgstr "Личная учётная запись" -#: src/Module/Settings/Account.php:475 +#: src/Module/Settings/Account.php:473 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Учётная запись организации, которая автоматически одобряет новых подписчиков." -#: src/Module/Settings/Account.php:482 +#: src/Module/Settings/Account.php:480 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Учётная запись новостной ленты, которая автоматически одобряет новых подписчиков." -#: src/Module/Settings/Account.php:489 +#: src/Module/Settings/Account.php:487 msgid "Account for community discussions." msgstr "Учётная запись для совместных обсуждений." -#: src/Module/Settings/Account.php:496 +#: src/Module/Settings/Account.php:494 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Личная учётная запись, которая требует ручного одобрения для новых подписчиков и друзей." -#: src/Module/Settings/Account.php:503 +#: src/Module/Settings/Account.php:501 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Учётная запись для публичного профиля, которая автоматически одобряет новых подписчиков." -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:508 msgid "Automatically approves all contact requests." msgstr "Автоматически одобряет все запросы на подписку." -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:515 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Учётная запись для публичной личности, которая автоматически добавляет все новые контакты в друзья." -#: src/Module/Settings/Account.php:522 -msgid "Private Forum [Experimental]" -msgstr "Личный форум [экспериментально]" +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "Частная группа [экспериментально]" -#: src/Module/Settings/Account.php:524 +#: src/Module/Settings/Account.php:522 msgid "Requires manual approval of contact requests." msgstr "Требует ручного одобрения запросов на подписку." -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:531 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:531 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Необязательно) Разрешить этому OpenID входить в этот аккаунт" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:539 msgid "Publish your profile in your local site directory?" msgstr "Опубликовать ваш профиль в каталоге вашего сервера?" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:539 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9095,89 +9650,94 @@ msgid "" " system settings." msgstr "Ваш профиль будет опубликован в локальном каталоге этого сервера. Данные вашего профиля могут быть доступны публично в зависимости от настроек." -#: src/Module/Settings/Account.php:547 +#: src/Module/Settings/Account.php:545 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Ваш профиль так же будет опубликован в глобальных каталогах Френдики (напр. %s)." -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 msgid "Account Settings" msgstr "Настройки аккаунта" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:559 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Ваш адрес: '%s' или '%s'." -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:566 msgid "Password Settings" msgstr "Смена пароля" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:568 msgid "Leave password fields blank unless changing" msgstr "Оставьте поля пароля пустыми, если он не изменяется" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:570 msgid "Password:" msgstr "Пароль:" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:570 msgid "Your current password to confirm the changes of the email address" msgstr "Ваш текущий пароль для подтверждения смены адреса почты" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:573 msgid "Delete OpenID URL" msgstr "Удалить ссылку OpenID" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:575 msgid "Basic Settings" msgstr "Основные параметры" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "Отображаемое имя:" + +#: src/Module/Settings/Account.php:577 msgid "Email Address:" msgstr "Адрес электронной почты:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:578 msgid "Your Timezone:" msgstr "Ваш часовой пояс:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:579 msgid "Your Language:" msgstr "Ваш язык:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:579 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Выберите язык, на котором вы будете видеть интерфейс Friendica и на котором вы будете получать письма" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:580 msgid "Default Post Location:" msgstr "Местонахождение по умолчанию:" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:581 msgid "Use Browser Location:" msgstr "Использовать определение местоположения браузером:" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:583 msgid "Security and Privacy Settings" msgstr "Параметры безопасности и конфиденциальности" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:585 msgid "Maximum Friend Requests/Day:" msgstr "Максимум запросов в друзья в день:" -#: src/Module/Settings/Account.php:588 src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 msgid "(to prevent spam abuse)" msgstr "(для предотвращения спама)" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:587 msgid "Allow your profile to be searchable globally?" msgstr "Сделать ваш профиль доступным для поиска глобально?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:587 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 " @@ -9185,43 +9745,43 @@ msgid "" "indexed or not." msgstr "Включите эту настройку, если вы хотите, чтобы другие люди могли легко вас находить. Ваш профиль станет доступным для поиска на других узлах. Так же эта настройка разрешает поисковым системам индексировать ваш профиль." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:588 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Скрыть список ваших контактов/друзей от просмотра в вашем профиле?" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:588 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "Список ваших контактов отображается на вашей странице профиля. Включите эту настройку, чтобы скрыть отображение вашего списка контактов." -#: src/Module/Settings/Account.php:592 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Скрыть данные профиля от анонимных посетителей?" +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "Скрыть ваши публичные записи от анонимных посетителей" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:589 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 "Анонимные посетители будут видеть только вашу картинку, ваше имя и и ник. Публичные записи и комментарии могут быть доступны другими способами." +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "Анонимные посетители увидят только основные данные профиля. Публичные записи и комментарии будут там скрыты, но при этом доступны на серверах ваших подписчиков и через релеи." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:590 msgid "Make public posts unlisted" msgstr "Скрыть публичные записи из общих лент" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:590 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "Ваши публичные записи не будут отражаться в общей ленте сервера или в результатах поиска, так же они не будут отправляться на ретранслтяторы. Тем не менее, они всё равно могут быть доступны в публичных лентах других серверов." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:591 msgid "Make all posted pictures accessible" msgstr "Сделать все опубликованные изображения доступными" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:591 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 " @@ -9229,582 +9789,960 @@ msgid "" "public on your photo albums though." msgstr "Эта настройка делает все опубликованные изображения доступными по прямой ссылке. Это можно применить для решения проблем с другими социальными сетями, которые не умеют работать с разрешениями доступа для изображений. Непубличные изображения в любом случае не будут доступны для просмотра публично в ваших альбомах." -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:592 msgid "Allow friends to post to your profile page?" msgstr "Разрешить друзьям оставлять сообщения на страницу вашего профиля?" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:592 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Ваши контакты могут оставлять записи на стене вашего профиля. Эти записи будут распространены вашим подписчикам." -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:593 msgid "Allow friends to tag your posts?" msgstr "Разрешить друзьям отмечать ваши сообщения?" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:593 msgid "Your contacts can add additional tags to your posts." msgstr "Ваши контакты могут добавлять дополнительные теги к вашим записям." -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:594 msgid "Permit unknown people to send you private mail?" msgstr "Разрешить незнакомым людям отправлять вам личные сообщения?" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:594 msgid "" "Friendica network users may send you private messages even if they are not " "in your contact list." msgstr "Пользователи Френдики могут отправлять вам личные сообщения даже если их нет в вашем списке контактов." -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:595 msgid "Maximum private messages per day from unknown people:" msgstr "Максимальное количество личных сообщений от незнакомых людей в день:" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "Круг по-умолчанию для новых контактов" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "Круг по-умолчанию для новых групп" + +#: src/Module/Settings/Account.php:598 msgid "Default Post Permissions" msgstr "Разрешение на сообщения по умолчанию" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:602 msgid "Expiration settings" msgstr "Очистка старых записей" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:603 msgid "Automatically expire posts after this many days:" msgstr "Автоматическое истекание срока действия сообщения после стольких дней:" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:603 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:604 msgid "Expire posts" msgstr "Удалять старые записи" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:604 msgid "When activated, posts and comments will be expired." msgstr "Если включено, то старые записи и комментарии будут удаляться." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:605 msgid "Expire personal notes" msgstr "Удалять персональные заметки" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:605 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Если включено, старые личные заметки из вашего профиля будут удаляться." -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:606 msgid "Expire starred posts" msgstr "Удалять избранные записи" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:606 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Добавление записи в избранные защищает её от удаления. Эта настройка выключает эту защиту." -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:607 msgid "Only expire posts by others" msgstr "Удалять только записи других людей" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:607 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Если включено, ваши собственные записи никогда не удаляются. В этом случае все настройки выше применяются только к записям, которые вы получаете от других." -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:610 msgid "Notification Settings" msgstr "Настройка уведомлений" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:611 msgid "Send a notification email when:" msgstr "Отправлять уведомление по электронной почте, когда:" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:612 msgid "You receive an introduction" msgstr "Вы получили запрос" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:613 msgid "Your introductions are confirmed" msgstr "Ваши запросы подтверждены" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:614 msgid "Someone writes on your profile wall" msgstr "Кто-то пишет на стене вашего профиля" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "Someone writes a followup comment" msgstr "Кто-то пишет последующий комментарий" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:616 msgid "You receive a private message" msgstr "Вы получаете личное сообщение" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:617 msgid "You receive a friend suggestion" -msgstr "Вы полулили предложение о добавлении в друзья" +msgstr "Вы получили предложение о добавлении в друзья" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:618 msgid "You are tagged in a post" msgstr "Вы отмечены в записи" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:620 msgid "Create a desktop notification when:" msgstr "Показывать уведомление при:" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:621 msgid "Someone tagged you" msgstr "Вас отметили" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:622 msgid "Someone directly commented on your post" msgstr "На вашу запись написали комментарий" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:623 msgid "Someone liked your content" msgstr "Ваша запись кому-то понравилась" -#: src/Module/Settings/Account.php:625 src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Может быть включено только при включении уведомлений о комментариях к вашим записям." -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:624 msgid "Someone shared your content" msgstr "Вашей записью поделились" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:625 msgid "Someone commented in your thread" msgstr "В обсуждении вашей записи написали комментарий" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:626 msgid "Someone commented in a thread where you commented" msgstr "Написали в диалоге, где вы оставляли комментарии" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:627 msgid "Someone commented in a thread where you interacted" msgstr "Написали в диалоге, где вы принимали любое участие" -#: src/Module/Settings/Account.php:631 +#: src/Module/Settings/Account.php:629 msgid "Activate desktop notifications" msgstr "Активировать уведомления на рабочем столе" -#: src/Module/Settings/Account.php:631 +#: src/Module/Settings/Account.php:629 msgid "Show desktop popup on new notifications" msgstr "Показывать уведомления на рабочем столе" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:633 msgid "Text-only notification emails" msgstr "Только текстовые письма" -#: src/Module/Settings/Account.php:637 +#: src/Module/Settings/Account.php:635 msgid "Send text only notification emails, without the html part" msgstr "Отправлять только текстовые уведомления, без HTML" -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:639 msgid "Show detailled notifications" msgstr "Показывать подробные уведомления" -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:641 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "По-умолчанию уведомления группируются в одно для каждой записи. Эта настройка показывает все уведомления по отдельности." -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:645 msgid "Show notifications of ignored contacts" msgstr "Показывать уведомления игнорируемых контактов" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:647 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "Вы не видите записи от игнорируемых контактов, но вы видите их комментарии. Эта настройка определяет, хотите ли вы получать уведомления от действий игнорируемых контактов или нет." -#: src/Module/Settings/Account.php:652 +#: src/Module/Settings/Account.php:650 msgid "Advanced Account/Page Type Settings" msgstr "Расширенные настройки учётной записи" -#: src/Module/Settings/Account.php:653 +#: src/Module/Settings/Account.php:651 msgid "Change the behaviour of this account for special situations" msgstr "Измените поведение этого аккаунта в специальных ситуациях" -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:654 msgid "Import Contacts" msgstr "Импорт контактов" -#: src/Module/Settings/Account.php:657 +#: src/Module/Settings/Account.php:655 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Загрузите файл CSV, который содержит адреса ваших контактов в первой колонке. Вы можете экспортировать его из вашей старой учётной записи." -#: src/Module/Settings/Account.php:658 +#: src/Module/Settings/Account.php:656 msgid "Upload File" msgstr "Загрузить файл" -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:659 msgid "Relocate" msgstr "Перемещение" -#: src/Module/Settings/Account.php:662 +#: src/Module/Settings/Account.php:660 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Если вы переместили эту анкету с другого сервера, и некоторые из ваших контактов не получили ваши обновления, попробуйте нажать эту кнопку." -#: src/Module/Settings/Account.php:663 +#: src/Module/Settings/Account.php:661 msgid "Resend relocate message to contacts" msgstr "Отправить перемещённые сообщения контактам" -#: src/Module/Settings/Delegation.php:52 +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "Настройки дополнений" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "Настройки дополнений не изменены" + +#: src/Module/Settings/Channels.php:130 src/Module/Settings/Channels.php:146 +#: src/Module/Settings/Display.php:330 +msgid "Label" +msgstr "Название" + +#: src/Module/Settings/Channels.php:131 src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +msgid "Description" +msgstr "Описание" + +#: src/Module/Settings/Channels.php:132 src/Module/Settings/Channels.php:148 +msgid "Access Key" +msgstr "Горячая клавиша" + +#: src/Module/Settings/Channels.php:133 src/Module/Settings/Channels.php:149 +msgid "Circle/Channel" +msgstr "Круг/Канал" + +#: src/Module/Settings/Channels.php:134 src/Module/Settings/Channels.php:150 +msgid "Include Tags" +msgstr "Включить теги" + +#: src/Module/Settings/Channels.php:135 src/Module/Settings/Channels.php:151 +msgid "Exclude Tags" +msgstr "Исключить теги" + +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:152 +msgid "Full Text Search" +msgstr "Полнотекстовый поиск" + +#: src/Module/Settings/Channels.php:140 +msgid "Delete channel" +msgstr "Удалить канал" + +#: src/Module/Settings/Channels.php:140 +msgid "Check to delete this entry from the channel list" +msgstr "Отметьте, чтобы удалить этот канал из списка" + +#: src/Module/Settings/Channels.php:146 +msgid "Short name for the channel. It is displayed on the channels widget." +msgstr "Короткое название для канала, будет отображаться в их списке." + +#: src/Module/Settings/Channels.php:147 +msgid "This should describe the content of the channel in a few word." +msgstr "Описание содержимого канала в нескольких словах." + +#: src/Module/Settings/Channels.php:148 +msgid "" +"When you want to access this channel via an access key, you can define it " +"here. Pay attention to not use an already used one." +msgstr "Если вы хотите сделать доступ к каналу по горячей клавише, определите её здесь. Будьте внимательны и не берите уже используемую где-то клавишу." + +#: src/Module/Settings/Channels.php:149 +msgid "Select a circle or channel, that your channel should be based on." +msgstr "Выберите круг или канал, на основе которого будет создан этот." + +#: src/Module/Settings/Channels.php:150 +msgid "" +"Comma separated list of tags. A post will be used when it contains any of " +"the listed tags." +msgstr "Список тегов через запятую. Запись попадёт в канал, если в ней есть любой из них." + +#: src/Module/Settings/Channels.php:151 +msgid "" +"Comma separated list of tags. If a post contain any of these tags, then it " +"will not be part of nthis channel." +msgstr "Список тегов через запятую. Запись не попадёт в канал, если в ней есть любой из них." + +#: src/Module/Settings/Channels.php:152 +#, php-format +msgid "" +"Search terms for the body, supports the \"boolean mode\" operators from " +"MariaDB. See the help for a complete list of operators and additional " +"keywords: %s" +msgstr "Поисковый запрос для записей, можно использовать операторы \"boolean mode\" для MariaDB. Справка по операторам и ключевым словам: %s" + +#: src/Module/Settings/Channels.php:153 +msgid "Check to display images in the channel." +msgstr "Отметьте для включения записей с картинками." + +#: src/Module/Settings/Channels.php:154 +msgid "Check to display videos in the channel." +msgstr "Отметьте для включения записей с видео." + +#: src/Module/Settings/Channels.php:155 +msgid "Check to display audio in the channel." +msgstr "Отметьте для включения записей со аудио." + +#: src/Module/Settings/Channels.php:158 +msgid "This page can be used to define your own channels." +msgstr "На этой странице вы можете определить свои собственные каналы" + +#: src/Module/Settings/Channels.php:159 +msgid "Add new entry to the channel list" +msgstr "Добавить в список каналов" + +#: src/Module/Settings/Channels.php:160 +msgid "Add" +msgstr "Добавить" + +#: src/Module/Settings/Channels.php:162 +msgid "Current Entries in the channel list" +msgstr "Текущий список каналов" + +#: src/Module/Settings/Channels.php:165 +msgid "Delete entry from the channel list" +msgstr "Удалить из списка каналов" + +#: src/Module/Settings/Channels.php:166 +msgid "Delete entry from the channel list?" +msgstr "Удалить запись из списка каналов?" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "Не удалось подключиться к аккаунту e-mail, используя указанные настройки." + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "Встроенная поддержка для %s включена" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "Встроенная поддержка для %s отключена" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "OStatus (GNU Social)" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "Доступ эл. почты отключен на этом сайте." + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "Ничего" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "Общие настройки социальных медиа" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "Какие записи показывать в ленте" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "По-умолчанию в вашу ленту попадают и записи, которые ваши контакты не создали сами, а лишь прокомментировали. Вы можете отключить это, либо наоборот расширить до загрузки записей, которым ваши контакты поставили отметку \"нравится\"." + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "Только записи, созданные моими контактами" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "Записи, которые мои контакты создали или прокомментировали (по-умолчанию)" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "Любые записи, с которыми мои контакты взаимодействовали, включая лайки" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "Включить предупреждение о контенте" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "Пользователи некоторых сетей, таких как Mastodon или Pleroma, могут использовать \"предупреждение о контенте\", сворачивающее их записи. Эта настройка выключает это свёртывание вместо обычного помещения \"предупреждения о контенте\" в заголовок записи. Это не влияет на другие фильтры, которые вы можете настроить." + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "Включить умное сокращение" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "Обычно система пытается найти лучшую ссылку для добавления к сокращенной записи. Если эта настройка включена, то каждая сокращенная запись будет указывать на оригинальную запись в Friendica." + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "Включить простое сокращение текста" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "Обычно система обрезает записи на следующей строке. Если эта настройка включена, система будет сокращать записи по достижении лимита символов." + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "Присоединять заголовок ссылок" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "Если включено. заголовок добавленной ссылки будет добавлен к записи в Диаспоре как заголовок. Это в основном нужно для контактов \"мой двойник\", которые публикуют содержимое ленты." + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "API: Использовать спойлер как заголовок" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "Если включено, поле \"spoiler_text\" в API будет использоваться как заголовок для отдельных записей. Если отключено, то оно будет использоваться как спойлер. Для комментариев оно всегда используется как спойлер." + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "API: Автоматически загружать ссылки в конце записей" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "Если включено, ссылки в конце записей будут обрабатываться так же, как ссылки, добавленные через веб-интерфейс." + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "Ваша старая учётная запись ActivityPub/GNU Social" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "Если вы введете тут вашу старую учетную запись от платформы совместимой с ActivityPub или GNU Social/Statusnet (в виде пользователь@домен), ваши контакты оттуда будут автоматически добавлены. Поле будет очищено когда все контакты будут добавлены." + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "Починить подписки OStatus" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "Настройка эл. почты / почтового ящика" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику." + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "Последняя успешная проверка электронной почты:" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "Имя IMAP сервера:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "Порт IMAP:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "Безопасность:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "Логин эл. почты:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "Пароль эл. почты:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "Адрес для ответа:" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "Отправлять открытые сообщения на все контакты электронной почты:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "Действие после импорта:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "Переместить в папку" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "Переместить в папку:" + +#: src/Module/Settings/Delegation.php:73 msgid "Delegation successfully granted." msgstr "Делегирование успешно предоставлено." -#: src/Module/Settings/Delegation.php:54 +#: src/Module/Settings/Delegation.php:75 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Родительский пользователь не найден, недоступен или пароль не совпадает." -#: src/Module/Settings/Delegation.php:58 +#: src/Module/Settings/Delegation.php:79 msgid "Delegation successfully revoked." msgstr "Делегирование успешно отменено." -#: src/Module/Settings/Delegation.php:80 -#: src/Module/Settings/Delegation.php:102 +#: src/Module/Settings/Delegation.php:98 +#: src/Module/Settings/Delegation.php:120 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Администраторы-делегаты могут видеть, но не менять разрешения делегирования." -#: src/Module/Settings/Delegation.php:94 +#: src/Module/Settings/Delegation.php:112 msgid "Delegate user not found." msgstr "Пользователь-делегат не найден." -#: src/Module/Settings/Delegation.php:142 +#: src/Module/Settings/Delegation.php:169 msgid "No parent user" msgstr "Нет родительского пользователя" -#: src/Module/Settings/Delegation.php:153 -#: src/Module/Settings/Delegation.php:164 +#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:191 msgid "Parent User" msgstr "Родительский пользователь" -#: src/Module/Settings/Delegation.php:161 +#: src/Module/Settings/Delegation.php:188 msgid "Additional Accounts" msgstr "Дополнительные учётные записи" -#: src/Module/Settings/Delegation.php:162 +#: src/Module/Settings/Delegation.php:189 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Регистрируйте дополнительные учётные записи, которые будут автоматически соединены с вашей основной учётной записью и вы сможете ими из неё управлять." -#: src/Module/Settings/Delegation.php:163 +#: src/Module/Settings/Delegation.php:190 msgid "Register an additional account" msgstr "Зарегистрируйте дополнительную учётную запись" -#: src/Module/Settings/Delegation.php:167 +#: src/Module/Settings/Delegation.php:192 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." -msgstr "" +msgstr "Родительские пользователи имеют полное управление этим профилем, включая все его настройки. Будьте очень осторожны с предоставлением этого доступа." -#: src/Module/Settings/Delegation.php:171 +#: src/Module/Settings/Delegation.php:195 msgid "Delegates" msgstr "Делегаты" -#: src/Module/Settings/Delegation.php:173 +#: src/Module/Settings/Delegation.php:196 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 "Доверенные лица могут управлять всеми аспектами этого аккаунта/страницы, за исключением основных настроек аккаунта. Пожалуйста, не предоставляйте доступ в личный кабинет тому, кому вы не полностью доверяете." -#: src/Module/Settings/Delegation.php:174 +#: src/Module/Settings/Delegation.php:197 msgid "Existing Page Delegates" msgstr "Существующие уполномоченные страницы" -#: src/Module/Settings/Delegation.php:176 +#: src/Module/Settings/Delegation.php:198 msgid "Potential Delegates" msgstr "Возможные доверенные лица" -#: src/Module/Settings/Delegation.php:179 -msgid "Add" -msgstr "Добавить" - -#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:199 msgid "No entries." msgstr "Нет записей." -#: src/Module/Settings/Display.php:106 +#: src/Module/Settings/Display.php:179 msgid "The theme you chose isn't available." msgstr "Выбранная вами тема недоступна." -#: src/Module/Settings/Display.php:145 +#: src/Module/Settings/Display.php:219 #, php-format msgid "%s - (Unsupported)" -msgstr "" +msgstr "%s - (Не поддерживается)" -#: src/Module/Settings/Display.php:199 +#: src/Module/Settings/Display.php:254 +msgid "No preview" +msgstr "Нет предпросмотра" + +#: src/Module/Settings/Display.php:255 +msgid "No image" +msgstr "Без изображения" + +#: src/Module/Settings/Display.php:256 +msgid "Small Image" +msgstr "Маленькое изображение" + +#: src/Module/Settings/Display.php:257 +msgid "Large Image" +msgstr "Большое изображение" + +#: src/Module/Settings/Display.php:302 msgid "Display Settings" msgstr "Внешний вид" -#: src/Module/Settings/Display.php:201 +#: src/Module/Settings/Display.php:304 msgid "General Theme Settings" msgstr "Общие настройки тем" -#: src/Module/Settings/Display.php:202 +#: src/Module/Settings/Display.php:305 msgid "Custom Theme Settings" msgstr "Личные настройки тем" -#: src/Module/Settings/Display.php:203 +#: src/Module/Settings/Display.php:306 msgid "Content Settings" msgstr "Настройки контента" -#: src/Module/Settings/Display.php:204 view/theme/duepuntozero/config.php:87 -#: view/theme/frio/config.php:173 view/theme/quattro/config.php:89 -#: view/theme/vier/config.php:137 +#: src/Module/Settings/Display.php:307 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Настройки темы" -#: src/Module/Settings/Display.php:205 -msgid "Calendar" -msgstr "Календарь" +#: src/Module/Settings/Display.php:308 +msgid "Timelines" +msgstr "Ленты" -#: src/Module/Settings/Display.php:211 +#: src/Module/Settings/Display.php:315 msgid "Display Theme:" msgstr "Показать тему:" -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:316 msgid "Mobile Theme:" msgstr "Мобильная тема:" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:319 msgid "Number of items to display per page:" msgstr "Количество элементов, отображаемых на одной странице:" -#: src/Module/Settings/Display.php:215 src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:319 src/Module/Settings/Display.php:320 msgid "Maximum of 100 items" msgstr "Максимум 100 элементов" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:320 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Количество элементов на странице, когда просмотр осуществляется с мобильных устройств:" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:321 msgid "Update browser every xx seconds" msgstr "Обновление браузера каждые хх секунд" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:321 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Минимум 10 секунд. Введите -1 для отключения." -#: src/Module/Settings/Display.php:218 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "Автоматически обновлять только при нахождении вверху страницы ленты" - -#: src/Module/Settings/Display.php:218 -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 "Автообновление может загружать новые записи в начало ленты, что может изменить положение прокрутки и помешать чтению, если вы находитесь не в начале страницы." - -#: src/Module/Settings/Display.php:219 +#: src/Module/Settings/Display.php:322 msgid "Display emoticons" msgstr "Показывать смайлики" -#: src/Module/Settings/Display.php:219 +#: src/Module/Settings/Display.php:322 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "Когда включено, соответствующие символы отображаются как смайлики." -#: src/Module/Settings/Display.php:220 +#: src/Module/Settings/Display.php:323 msgid "Infinite scroll" msgstr "Бесконечная прокрутка" -#: src/Module/Settings/Display.php:220 +#: src/Module/Settings/Display.php:323 msgid "Automatic fetch new items when reaching the page end." msgstr "Автоматически подгружать новые записи, когда вы оказываетесь в конце страницы." -#: src/Module/Settings/Display.php:221 +#: src/Module/Settings/Display.php:324 msgid "Enable Smart Threading" msgstr "Включить умное ветвление обсуждений" -#: src/Module/Settings/Display.php:221 +#: src/Module/Settings/Display.php:324 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "Включить автоматическое удаление излишних отступов в ветках обсуждений." -#: src/Module/Settings/Display.php:222 +#: src/Module/Settings/Display.php:325 msgid "Display the Dislike feature" msgstr "Показывать \"Не нравится\"" -#: src/Module/Settings/Display.php:222 +#: src/Module/Settings/Display.php:325 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "Показывать кнопку \"Не нравится\" и соответствующие реакции на записях и комментариях." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:326 msgid "Display the resharer" msgstr "Показывать поделившегося" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:326 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Показывать первого из поделившихся записью в виде значка над этой записью." -#: src/Module/Settings/Display.php:224 +#: src/Module/Settings/Display.php:327 msgid "Stay local" msgstr "Оставаться локально" -#: src/Module/Settings/Display.php:224 +#: src/Module/Settings/Display.php:327 msgid "Don't go to a remote system when following a contact link." msgstr "Не переходить на другие серверы по ссылкам профилей." -#: src/Module/Settings/Display.php:226 +#: src/Module/Settings/Display.php:328 +msgid "Link preview mode" +msgstr "Предпросмотр ссылок" + +#: src/Module/Settings/Display.php:328 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "Внешний вид предпросмотра ссылок, который появляется в записях со ссылками." + +#: src/Module/Settings/Display.php:333 +msgid "Bookmark" +msgstr "Главное меню" + +#: src/Module/Settings/Display.php:335 +msgid "" +"Enable timelines that you want to see in the channels widget. Bookmark " +"timelines that you want to see in the top menu." +msgstr "Включите ленты, которые вы хотите видеть в меню каналов слева, выберите ленты, которые будут отображаться в главном меню сверху." + +#: src/Module/Settings/Display.php:337 +msgid "Channel languages:" +msgstr "Языки каналов:" + +#: src/Module/Settings/Display.php:337 +msgid "Select all languages that you want to see in your channels." +msgstr "Выберите все языки, которые вы хотите видеть в своих каналах." + +#: src/Module/Settings/Display.php:339 msgid "Beginning of week:" msgstr "Начало недели:" -#: src/Module/Settings/Profile/Index.php:83 -msgid "Profile Name is required." -msgstr "Необходимо имя профиля." +#: src/Module/Settings/Display.php:340 +msgid "Default calendar view:" +msgstr "Вид календаря по-умолчанию:" -#: src/Module/Settings/Profile/Index.php:131 +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "Дополнительные возможности" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Подключенные приложения" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "Удалить авторизацию" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "Необходимо указать имя" + +#: src/Module/Settings/Profile/Index.php:167 msgid "Profile couldn't be updated." msgstr "Профиль не получилось обновить." -#: src/Module/Settings/Profile/Index.php:172 -#: src/Module/Settings/Profile/Index.php:192 +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 msgid "Label:" msgstr "Поле:" -#: src/Module/Settings/Profile/Index.php:173 -#: src/Module/Settings/Profile/Index.php:193 +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 msgid "Value:" msgstr "Значение:" -#: src/Module/Settings/Profile/Index.php:183 -#: src/Module/Settings/Profile/Index.php:203 +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 msgid "Field Permissions" msgstr "Право просмотра поля" -#: src/Module/Settings/Profile/Index.php:184 -#: src/Module/Settings/Profile/Index.php:204 +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 msgid "(click to open/close)" msgstr "(нажмите, чтобы открыть / закрыть)" -#: src/Module/Settings/Profile/Index.php:190 +#: src/Module/Settings/Profile/Index.php:224 msgid "Add a new profile field" msgstr "Добавить новое поле профиля" -#: src/Module/Settings/Profile/Index.php:220 +#: src/Module/Settings/Profile/Index.php:247 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." +msgstr "Домашняя страница подтверждена. Ссылка с атрибутом rel=\"me\", указывающая на ваш профиль Friendica, была найдена на странице." + +#: src/Module/Settings/Profile/Index.php:249 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "Для верификации вашей домашней страницы добавьте на неё ссылку с атрибутом rel=\"me\" указывающую на ваш профиль (%s)." + +#: src/Module/Settings/Profile/Index.php:255 msgid "Profile Actions" msgstr "Действия профиля" -#: src/Module/Settings/Profile/Index.php:221 +#: src/Module/Settings/Profile/Index.php:256 msgid "Edit Profile Details" msgstr "Редактировать детали профиля" -#: src/Module/Settings/Profile/Index.php:223 +#: src/Module/Settings/Profile/Index.php:258 msgid "Change Profile Photo" msgstr "Изменить фото профиля" -#: src/Module/Settings/Profile/Index.php:228 +#: src/Module/Settings/Profile/Index.php:261 msgid "Profile picture" msgstr "Картинка профиля" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:262 msgid "Location" msgstr "Местонахождение" -#: src/Module/Settings/Profile/Index.php:230 src/Util/Temporal.php:96 -#: src/Util/Temporal.php:98 +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 msgid "Miscellaneous" msgstr "Разное" -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:264 msgid "Custom Profile Fields" msgstr "Произвольные поля профиля" -#: src/Module/Settings/Profile/Index.php:233 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 msgid "Upload Profile Photo" msgstr "Загрузить фото профиля" -#: src/Module/Settings/Profile/Index.php:237 -msgid "Display name:" -msgstr "Отображаемое имя:" - -#: src/Module/Settings/Profile/Index.php:240 -msgid "Street Address:" -msgstr "Адрес:" - -#: src/Module/Settings/Profile/Index.php:241 -msgid "Locality/City:" -msgstr "Город / Населенный пункт:" - -#: src/Module/Settings/Profile/Index.php:242 -msgid "Region/State:" -msgstr "Район / Область:" - -#: src/Module/Settings/Profile/Index.php:243 -msgid "Postal/Zip Code:" -msgstr "Почтовый индекс:" - -#: src/Module/Settings/Profile/Index.php:244 -msgid "Country:" -msgstr "Страна:" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "XMPP (Jabber) address:" -msgstr "Адрес XMPP (Jabber):" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "" -"The XMPP address will be published so that people can follow you there." -msgstr "Этот адрес XMPP будет виден в профиле, чтобы другие люди могли вас там найти." - -#: src/Module/Settings/Profile/Index.php:247 -msgid "Matrix (Element) address:" -msgstr "Адрес Matrix (Element):" - -#: src/Module/Settings/Profile/Index.php:247 -msgid "" -"The Matrix address will be published so that people can follow you there." -msgstr "Этот адрес Matrix будет виден в профиле, чтобы другие люди могли вас там найти." - -#: src/Module/Settings/Profile/Index.php:248 -msgid "Homepage URL:" -msgstr "Адрес домашней странички:" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "Public Keywords:" -msgstr "Общественные ключевые слова:" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Используется для предложения потенциальным друзьям, могут увидеть другие)" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "Private Keywords:" -msgstr "Личные ключевые слова:" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Используется для поиска профилей, никогда не показывается другим)" - -#: src/Module/Settings/Profile/Index.php:251 +#: src/Module/Settings/Profile/Index.php:266 #, 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 "

    Произвольные поля видны на вашей странице профиля.

    \n\t\t\t\t

    В значениях полей можно использовать BBCode.

    \n\t\t\t\t

    Меняйте порядок перетаскиванием.

    \n\t\t\t\t

    Сотрите название для удаления поля.

    \n\t\t\t\t

    Закрытые поля будут видны только выбранным контактам из Friendica, либо контактам из выбранных групп.

    " +"\t\t\t\t

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

    " +msgstr "

    Произвольные поля видны на вашей странице профиля.

    \n\t\t\t\t

    Вы можете использовать BBCode в значениях полей.

    \n\t\t\t\t

    Меняйте порядок перетаскиванием.

    \n\t\t\t\t

    Сотрите название для удаления поля.

    \n\t\t\t\t

    Закрытые поля будут видны только выбранным контактам из Friendica, либо контактам из выбранных кругов.

    " + +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "Адрес:" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "Город / Населенный пункт:" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "Район / Область:" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "Почтовый индекс:" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "Страна:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "Адрес XMPP (Jabber):" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "Этот адрес XMPP будет виден в профиле, чтобы другие люди могли вас там найти." + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "Адрес Matrix (Element):" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "Этот адрес Matrix будет виден в профиле, чтобы другие люди могли вас там найти." + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "Адрес домашней странички:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "Общественные ключевые слова:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Используется для предложения потенциальным друзьям, могут увидеть другие)" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "Личные ключевые слова:" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Используется для поиска профилей, никогда не показывается другим)" #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:101 +#: src/Module/Settings/Profile/Photo/Index.php:102 #, php-format msgid "Image size reduction [%s] failed." msgstr "Уменьшение размера изображения [%s] не удалось." @@ -9840,174 +10778,255 @@ msgstr "Пожалуйста, настройте обрезку изображе msgid "Use Image As Is" msgstr "Использовать картинку как есть" -#: src/Module/Settings/Profile/Photo/Index.php:45 +#: src/Module/Settings/Profile/Photo/Index.php:46 msgid "Missing uploaded image." msgstr "Отсутствует загруженное изображение" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Profile Picture Settings" msgstr "Настройки картинки профиля" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Current Profile Picture" msgstr "Текущая картинка профиля" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload Profile Picture" msgstr "Загрузить картинку профиля" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:128 msgid "Upload Picture:" msgstr "Загрузить картинку:" -#: src/Module/Settings/Profile/Photo/Index.php:132 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "or" msgstr "или" -#: src/Module/Settings/Profile/Photo/Index.php:134 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "skip this step" msgstr "пропустить этот шаг" -#: src/Module/Settings/Profile/Photo/Index.php:136 +#: src/Module/Settings/Profile/Photo/Index.php:137 msgid "select a photo from your photo albums" msgstr "выберите фото из ваших фотоальбомов" -#: src/Module/Settings/TwoFactor/AppSpecific.php:65 -#: src/Module/Settings/TwoFactor/Recovery.php:63 -#: src/Module/Settings/TwoFactor/Trusted.php:66 -#: src/Module/Settings/TwoFactor/Verify.php:68 +#: src/Module/Settings/RemoveMe.php:76 +msgid "" +"There was a validation error, please make sure you're logged in with the " +"account you want to remove and try again." +msgstr "Возникла ошибка валидации, пожалуйста, проверьте, что вы зашли под учётной записью, которую хотите удалить, и попробуйте ещё." + +#: src/Module/Settings/RemoveMe.php:76 +msgid "If this error persists, please contact your administrator." +msgstr "Если эта ошибка сохраняется, пожалуйста, свяжитесь с администратором." + +#: src/Module/Settings/RemoveMe.php:90 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[Системное уведомление Friendica]" + +#: src/Module/Settings/RemoveMe.php:90 +msgid "User deleted their account" +msgstr "Пользователь удалил свою учётную запись" + +#: src/Module/Settings/RemoveMe.php:91 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "Пользователь удалил свою учётную запись на вашем сервере Friendica. Пожалуйста, убедитесь, что их данные будут удалены из резервных копий." + +#: src/Module/Settings/RemoveMe.php:92 +#, php-format +msgid "The user id is %d" +msgstr "id пользователя: %d" + +#: src/Module/Settings/RemoveMe.php:105 +msgid "Your account has been successfully removed. Bye bye!" +msgstr "Ваша учётная запись была успешно удалена. Всего хорошего!" + +#: src/Module/Settings/RemoveMe.php:130 +msgid "Remove My Account" +msgstr "Удалить мой аккаунт" + +#: src/Module/Settings/RemoveMe.php:131 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит." + +#: src/Module/Settings/RemoveMe.php:136 +msgid "Please enter your password for verification:" +msgstr "Пожалуйста, введите свой пароль для проверки:" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "Вы хотите игнорировать этот сервер?" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "Вы хотите прекратить игнорировать этот сервер?" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "Настройки сервера" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "URL сервера" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "Настройки сохранены" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "Здесь вы можете найти все серверы, к которым вы применяли действия модерации. Чтобы посмотреть список серверов, которые заблокировал ваш узел, пожалуйста, посмотрите страницу информации об узле." + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "Удалить ваши настройки для удалённого сервера" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "Сохранить изменения" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 msgid "Please enter your password to access this page." msgstr "Пожалуйста, введите ваш пароль для доступа к этой странице." -#: src/Module/Settings/TwoFactor/AppSpecific.php:83 +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 msgid "App-specific password generation failed: The description is empty." -msgstr "" +msgstr "Создание пароля приложения не удалось: не указано описание" -#: src/Module/Settings/TwoFactor/AppSpecific.php:86 +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 msgid "" "App-specific password generation failed: This description already exists." -msgstr "" +msgstr "Создание пароля приложения не удалось: такое описание уже есть." -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 msgid "New app-specific password generated." -msgstr "" +msgstr "Новый пароль приложения сгенерирован" -#: src/Module/Settings/TwoFactor/AppSpecific.php:96 +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 msgid "App-specific passwords successfully revoked." -msgstr "" +msgstr "Пароли для приложений успешно отозваны" -#: src/Module/Settings/TwoFactor/AppSpecific.php:106 +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 msgid "App-specific password successfully revoked." -msgstr "" +msgstr "Пароль для приложения успешно отозван" -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 msgid "Two-factor app-specific passwords" -msgstr "" +msgstr "Пароли для приложений" -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 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 "" +msgstr "

    Пароли для приложений это случайно сгенерированные пароли, используемые вместо основного пароля для приложений, которые не поддерживают двухфакторную аутентификацию.

    " -#: src/Module/Settings/TwoFactor/AppSpecific.php:130 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 -msgid "Description" -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 -msgid "Last Used" -msgstr "" +msgstr "Убедитесь, что вы скопировали этот новый пароль сейчас. Вы больше его не увидите!" #: src/Module/Settings/TwoFactor/AppSpecific.php:135 -msgid "Revoke" -msgstr "" +msgid "Last Used" +msgstr "Последнее использование" #: src/Module/Settings/TwoFactor/AppSpecific.php:136 +msgid "Revoke" +msgstr "Отозвать" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Revoke All" msgstr "Отозвать все" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 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 "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 -msgid "Generate new app-specific password" -msgstr "" +msgstr "Когда вы создадите новый пароль приложения, вам нужно использовать его сразу же. Он будет показан один раз после его создания." #: src/Module/Settings/TwoFactor/AppSpecific.php:141 -msgid "Friendiqa on my Fairphone 2..." -msgstr "" +msgid "Generate new app-specific password" +msgstr "Создать новый пароль приложения" #: src/Module/Settings/TwoFactor/AppSpecific.php:142 +msgid "Friendiqa on my Fairphone 2..." +msgstr "Friendiqa на моём Fairphone 2..." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 msgid "Generate" -msgstr "" +msgstr "Сгенерировать" #: src/Module/Settings/TwoFactor/Index.php:68 msgid "Two-factor authentication successfully disabled." -msgstr "" +msgstr "Двухфакторная аутентификация успешно выключена." #: src/Module/Settings/TwoFactor/Index.php:120 msgid "" "

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

    " -msgstr "" +msgstr "

    Используйте приложение на мобильном устройстве для получения кодов второго фактора при входе.

    " #: src/Module/Settings/TwoFactor/Index.php:124 msgid "Authenticator app" -msgstr "" +msgstr "Приложение аутентификации" #: src/Module/Settings/TwoFactor/Index.php:125 msgid "Configured" -msgstr "" +msgstr "Настроено" #: src/Module/Settings/TwoFactor/Index.php:125 msgid "Not Configured" -msgstr "" +msgstr "Не настроено" #: src/Module/Settings/TwoFactor/Index.php:126 msgid "

    You haven't finished configuring your authenticator app.

    " -msgstr "" +msgstr "

    Вы не закончили настройку приложения для аутентификации.

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

    Your authenticator app is correctly configured.

    " -msgstr "" +msgstr "

    Ваше приложение для аутентификации настроено.

    " #: src/Module/Settings/TwoFactor/Index.php:129 msgid "Recovery codes" -msgstr "" +msgstr "Коды восстановления" #: src/Module/Settings/TwoFactor/Index.php:130 msgid "Remaining valid codes" -msgstr "" +msgstr "Оставшиеся коды восстановления" #: src/Module/Settings/TwoFactor/Index.php:132 msgid "" "

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

    " -msgstr "" +msgstr "

    Эти одноразовые коды могут заменить приложение для аутентификации, если вы его потеряете.

    " #: src/Module/Settings/TwoFactor/Index.php:134 msgid "App-specific passwords" -msgstr "" +msgstr "Пароли для приложений" #: src/Module/Settings/TwoFactor/Index.php:135 msgid "Generated app-specific passwords" -msgstr "" +msgstr "Пароли для приложений" #: src/Module/Settings/TwoFactor/Index.php:137 msgid "" "

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

    " -msgstr "" +msgstr "

    Эти случайно сгенерированные пароли могут быть использованы в приложениях, не поддерживающих двухфакторную аутентификацию.

    " #: src/Module/Settings/TwoFactor/Index.php:140 msgid "Current password:" @@ -10017,7 +11036,7 @@ msgstr "Текущий пароль:" msgid "" "You need to provide your current password to change two-factor " "authentication settings." -msgstr "" +msgstr "Вам нужно ввести ваш текущий пароль для изменения настроек аутентификации." #: src/Module/Settings/TwoFactor/Index.php:141 msgid "Enable two-factor authentication" @@ -10025,7 +11044,7 @@ msgstr "Включить двухфакторную аутентификацию #: src/Module/Settings/TwoFactor/Index.php:142 msgid "Disable two-factor authentication" -msgstr "" +msgstr "Отключить двухфакторную аутентификацию" #: src/Module/Settings/TwoFactor/Index.php:143 msgid "Show recovery codes" @@ -10037,91 +11056,91 @@ msgstr "Управление паролями приложений" #: src/Module/Settings/TwoFactor/Index.php:145 msgid "Manage trusted browsers" -msgstr "" +msgstr "Управление доверенными браузерами" #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Finish app configuration" msgstr "Закончить настройку приложения" -#: src/Module/Settings/TwoFactor/Recovery.php:79 +#: src/Module/Settings/TwoFactor/Recovery.php:80 msgid "New recovery codes successfully generated." msgstr "Новые коды восстановления успешно сгенерированы." -#: src/Module/Settings/TwoFactor/Recovery.php:105 +#: src/Module/Settings/TwoFactor/Recovery.php:106 msgid "Two-factor recovery codes" msgstr "Коды восстановления для ДФА" -#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Recovery.php:108 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 "" +msgstr "

    Коды восстановления могут быть использованы для входа в случае, если вы потеряли доступ к приложению и не можете получить коды второго фактора.

    Храните их в безопасном месте! Если вы потеряете устройство с приложением и эти коды, то вы потеряете доступ к вашей учётной записи.

    " -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:110 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." -msgstr "" +msgstr "Когда вы создаёте новые коды восстановления, вам нужно их сохранить. Ранее созданные коды больше не будут работать." -#: src/Module/Settings/TwoFactor/Recovery.php:110 +#: src/Module/Settings/TwoFactor/Recovery.php:111 msgid "Generate new recovery codes" msgstr "Сгенерировать новые коды восстановления." -#: src/Module/Settings/TwoFactor/Recovery.php:112 +#: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "Next: Verification" -msgstr "" +msgstr "Далее: Проверка" -#: src/Module/Settings/TwoFactor/Trusted.php:83 +#: src/Module/Settings/TwoFactor/Trusted.php:84 msgid "Trusted browsers successfully removed." -msgstr "" +msgstr "Доверенные браузеры успешно удалены." -#: src/Module/Settings/TwoFactor/Trusted.php:93 +#: src/Module/Settings/TwoFactor/Trusted.php:94 msgid "Trusted browser successfully removed." -msgstr "" - -#: src/Module/Settings/TwoFactor/Trusted.php:135 -msgid "Two-factor Trusted Browsers" -msgstr "" +msgstr "Доверенный браузер успешно удалён." #: src/Module/Settings/TwoFactor/Trusted.php:136 +msgid "Two-factor Trusted Browsers" +msgstr "Доверенные браузеры" + +#: src/Module/Settings/TwoFactor/Trusted.php:137 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 "" - -#: src/Module/Settings/TwoFactor/Trusted.php:137 -msgid "Device" -msgstr "" +msgstr "Доверенные браузеры это браузеры, где вы можете пропускать использование двухфакторной аутентификации. Используйте эту возможность с осторожностью, так как это может лишить преимуществ двухфакторной аутентификации." #: src/Module/Settings/TwoFactor/Trusted.php:138 -msgid "OS" -msgstr "" +msgid "Device" +msgstr "Устройство" -#: src/Module/Settings/TwoFactor/Trusted.php:140 -msgid "Trusted" -msgstr "" +#: src/Module/Settings/TwoFactor/Trusted.php:139 +msgid "OS" +msgstr "ОС" #: src/Module/Settings/TwoFactor/Trusted.php:141 -msgid "Created At" -msgstr "" +msgid "Trusted" +msgstr "Доверие" #: src/Module/Settings/TwoFactor/Trusted.php:142 +msgid "Created At" +msgstr "Создано" + +#: src/Module/Settings/TwoFactor/Trusted.php:143 msgid "Last Use" msgstr "Последнее использование" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:145 msgid "Remove All" msgstr "Удалить все" -#: src/Module/Settings/TwoFactor/Verify.php:90 +#: src/Module/Settings/TwoFactor/Verify.php:91 msgid "Two-factor authentication successfully activated." msgstr "Двухфакторная аутентификация успешно включена." -#: src/Module/Settings/TwoFactor/Verify.php:124 +#: src/Module/Settings/TwoFactor/Verify.php:125 #, php-format msgid "" "

    Or you can submit the authentication settings manually:

    \n" @@ -10139,70 +11158,107 @@ msgid "" "\t
    Hashing algorithm
    \n" "\t
    SHA-1
    \n" "" -msgstr "" +msgstr "

    Или вы можете ввести настройки аутентификации вручную:

    \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
    " -#: src/Module/Settings/TwoFactor/Verify.php:144 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Two-factor code verification" msgstr "Проверка кода второго фактора" -#: src/Module/Settings/TwoFactor/Verify.php:146 +#: src/Module/Settings/TwoFactor/Verify.php:147 msgid "" "

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

    " -msgstr "" +msgstr "

    Пожалуйста, отсканируйте этот QR-код вашим приложением для аутентификации и введите полученный код.

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

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

    %s

    " -msgstr "" +msgstr "

    Или вы можете открыть следующую ссылку на вашем мобильном устройстве:

    %s

    " -#: src/Module/Settings/TwoFactor/Verify.php:155 +#: src/Module/Settings/TwoFactor/Verify.php:156 msgid "Verify code and enable two-factor authentication" -msgstr "" +msgstr "Проверить код и включить двухфакторную аутентификацию" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 msgid "Export account" msgstr "Экспорт аккаунта" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 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 "Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать резервную копию вашего аккаунта и/или переместить его на другой сервер." -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:91 msgid "Export all" msgstr "Экспорт всего" -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:91 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 "Выгрузить информацию о вашей учётной записи, контактах и всех ваших записях как файл JSON. Это может занять много времени и создать очень большой файл. Используйте это для создания резервной копии вашей учётной записи (изображения в неё не войдут)." -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:92 msgid "Export Contacts to CSV" msgstr "Экспорт контактов в CSV" -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:92 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Выгрузить список пользователей, на которых вы подписаны, в CSV-файл. Совместимо с Mastodon и др." -#: src/Module/Special/HTTPException.php:51 -msgid "Stack trace:" -msgstr "" +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "Родительская запись скрыта." -#: src/Module/Special/HTTPException.php:55 +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "Родительская запись была удалена." + +#: src/Module/Special/DisplayNotFound.php:37 +msgid "" +"This node has blocked the top-level author or the author of the shared post." +msgstr "Этот узел заблокировал автора основной записи или поделившегося ей." + +#: src/Module/Special/DisplayNotFound.php:38 +msgid "" +"You have ignored or blocked the top-level author or the author of the shared" +" post." +msgstr "Вы игнорируете или заблокировали автора основной записи или поделившегося ей." + +#: src/Module/Special/DisplayNotFound.php:39 +msgid "" +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "Вы игорируете сервер автора основной записи или сервер поделившегося ей." + +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "Запись не найдена" + +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "К сожалению, эта запись вам недоступна." + +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "Возможные причины этого:" + +#: src/Module/Special/HTTPException.php:78 +msgid "Stack trace:" +msgstr "Stack trace:" + +#: src/Module/Special/HTTPException.php:83 #, php-format msgid "Exception thrown in %s:%d" -msgstr "" +msgstr "Exception thrown in %s:%d" -#: src/Module/Tos.php:57 src/Module/Tos.php:91 +#: src/Module/Tos.php:58 src/Module/Tos.php:107 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" @@ -10213,30 +11269,134 @@ msgid "" "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 "" +msgstr "При регистрации и для организации взаимодействия между пользователем и другими контактами, пользователь должен указать отображаемое имя (псевдоним), имя учётной записи (ник) и действующий адрес электронной почты. Имена будут видны на странице профиля для любого посетителя, даже если другие данные будут скрыты. Адрес электронной почты будет использоваться только для отправки пользователю уведомлений о действиях, но не будет нигде отображаться. Добавление пользователя в каталог узла или глобальный каталог опционально и управляется настройками, оно не обязательно для общения в сети." -#: src/Module/Tos.php:58 src/Module/Tos.php:92 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 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 "" +msgstr "Эти данные необходимы для взаимодействия и передаются другим узлам партнёров по сети и сохраняются там. Пользователи могут добавить дополнительные личные данные, которые тоже могут передаваться на другие узлы." -#: src/Module/Tos.php:59 src/Module/Tos.php:93 +#: src/Module/Tos.php:60 src/Module/Tos.php:109 #, 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 "" +"href=\"%1$s/settings/removeme\">%1$s/settings/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 "В любой момент вошедший в систему пользователь может экспортировать свои данные через настройки. Если пользователь хочет удалить свою учётную запись, они могут сделать это через %1$s/settings/removeme. Удаление данных будет без возможности восстановления. Запрос на удаление данных будет так же передан на узлы партнёров по сети." -#: src/Module/Tos.php:62 src/Module/Tos.php:90 +#: src/Module/Tos.php:63 src/Module/Tos.php:106 msgid "Privacy Statement" msgstr "Положение о конфиденциальности" +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "Правила" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "Параметр uri_id отсутствует." + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "Запрошенная запись не существует или была удалена." + +#: src/Module/User/Delegation.php:146 +#, php-format +msgid "You are now logged in as %s" +msgstr "Вы вошли как %s" + +#: src/Module/User/Delegation.php:185 +msgid "Switch between your accounts" +msgstr "Переключить учётную запись" + +#: src/Module/User/Delegation.php:186 +msgid "Manage your accounts" +msgstr "Управление учётными записями" + +#: src/Module/User/Delegation.php:187 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Переключайтесь между разными профилями или страницами сообществ/групп, которые зарегистрированы на одинаковые контактные данные, либо вам предоставлено право управления ими." + +#: src/Module/User/Delegation.php:188 +msgid "Select an identity to manage: " +msgstr "Выберите учётную запись:" + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "Импорт пользователей на закрытых серверах может быть произведён только администратором." + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "Удалить аккаунт" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "Вы можете импортировать учетную запись с другого сервера Friendica." + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда." + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "Это экспериментальная функция. Мы не можем импортировать контакты из сети OStatus (GNU Social/ StatusNet) или из Diaspora" + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "Файл аккаунта" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\"" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "Ошибка расшифровки файла аккаунта" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?" + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Пользователь '%s' уже существует на этом сервере!" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "Ошибка создания пользователя" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d контакт не импортирован" +msgstr[1] "%d контакты не импортированы" +msgstr[2] "%d контакты не импортированы" +msgstr[3] "%d контакты не импортированы" + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "Ошибка создания профиля пользователя" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "Завершено. Теперь вы можете войти с вашим логином и паролем" + #: src/Module/Welcome.php:44 msgid "Welcome to Friendica" msgstr "Добро пожаловать в Friendica" @@ -10367,15 +11527,15 @@ msgid "" msgstr "На боковой панели страницы Контакты есть несколько инструментов, чтобы найти новых друзей. Мы можем искать по соответствию интересам, посмотреть людей по имени или интересам, и внести предложения на основе сетевых отношений. На новом сайте, предложения дружбы, как правило, начинают заполняться в течение 24 часов." #: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "Группа \"ваши контакты\"" +msgid "Add Your Contacts To Circle" +msgstr "Добавьте ваши контакты в круги" #: 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 "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть." +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." +msgstr "После того, как вы найдете несколько друзей, соберите их в круги частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно в вашей ленте." #: src/Module/Welcome.php:80 msgid "Why Aren't My Posts Public?" @@ -10402,64 +11562,64 @@ msgid "" " features and resources." msgstr "Наши страницы помощи могут проконсультировать о подробностях и возможностях программы и ресурса." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:135 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 msgid "{0} wants to follow you" msgstr "{0} хочет подписаться на вас" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:137 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 msgid "{0} has started following you" msgstr "{0} подписался на вас" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:93 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 #, php-format msgid "%s liked %s's post" msgstr "%s нравится %s сообшение" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:105 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 #, php-format msgid "%s disliked %s's post" msgstr "%s не нравится сообщение %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:117 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 #, php-format msgid "%s is attending %s's event" msgstr "%s будет присутствовать на событии %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:129 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 #, php-format msgid "%s is not attending %s's event" msgstr "%s не будет присутствовать на событии %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:141 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 #, php-format msgid "%s may attending %s's event" msgstr "%s возможно будет присутствовать на событии %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:171 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 #, php-format msgid "%s is now friends with %s" msgstr "%s теперь друзья с %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:338 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:376 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 #, php-format msgid "%s commented on %s's post" msgstr "%s прокомментировал %s сообщение" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:375 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 #, php-format msgid "%s created a new post" msgstr "%s написал новое сообщение" -#: src/Navigation/Notifications/Factory/Introduction.php:134 +#: src/Navigation/Notifications/Factory/Introduction.php:133 msgid "Friend Suggestion" msgstr "Предложение в друзья" -#: src/Navigation/Notifications/Factory/Introduction.php:160 +#: src/Navigation/Notifications/Factory/Introduction.php:159 msgid "Friend/Connect Request" msgstr "Запрос в друзья / на подключение" -#: src/Navigation/Notifications/Factory/Introduction.php:160 +#: src/Navigation/Notifications/Factory/Introduction.php:159 msgid "New Follower" msgstr "Новый подписчик" @@ -10499,6 +11659,7 @@ msgid "%1$s shared your comment %2$s" msgstr "%1$s поделился вашим комментарием %2$s" #: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 #, php-format msgid "%1$s shared your post %2$s" msgstr "%1$s поделился вашей записью %2$s" @@ -10588,189 +11749,189 @@ msgid "%1$s commented on your thread %2$s" msgstr "%1$s ответил(а) в вашем обсуждении %2$s" #: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:721 +#: src/Navigation/Notifications/Repository/Notify.php:752 msgid "[Friendica:Notify]" msgstr "[Friendica]" -#: src/Navigation/Notifications/Repository/Notify.php:289 +#: src/Navigation/Notifications/Repository/Notify.php:293 #, php-format msgid "%s New mail received at %s" msgstr "%s Новая почта получена в %s" -#: src/Navigation/Notifications/Repository/Notify.php:291 +#: src/Navigation/Notifications/Repository/Notify.php:295 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s отправил вам новое личное сообщение на %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:292 +#: src/Navigation/Notifications/Repository/Notify.php:296 msgid "a private message" msgstr "личное сообщение" -#: src/Navigation/Notifications/Repository/Notify.php:292 +#: src/Navigation/Notifications/Repository/Notify.php:296 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s послал вам %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:294 +#: src/Navigation/Notifications/Repository/Notify.php:298 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Пожалуйста, посетите %s для просмотра и/или ответа на личные сообщения." -#: src/Navigation/Notifications/Repository/Notify.php:324 +#: src/Navigation/Notifications/Repository/Notify.php:328 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s прокомментировал(а) %2$s %3$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:329 +#: src/Navigation/Notifications/Repository/Notify.php:333 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s прокомментировал(а) ваш %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:337 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s прокомментировал(а) свой %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 -#: src/Navigation/Notifications/Repository/Notify.php:755 +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Комментариев к разговору #%2$d от %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:339 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s оставил комментарий к элементу/беседе, за которой вы следите." -#: src/Navigation/Notifications/Repository/Notify.php:343 -#: src/Navigation/Notifications/Repository/Notify.php:358 -#: src/Navigation/Notifications/Repository/Notify.php:770 +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Пожалуйста посетите %s для просмотра и/или ответа в беседу." -#: src/Navigation/Notifications/Repository/Notify.php:350 +#: src/Navigation/Notifications/Repository/Notify.php:354 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s размещены на стене вашего профиля" -#: src/Navigation/Notifications/Repository/Notify.php:352 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s написал на вашей стене на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:353 +#: src/Navigation/Notifications/Repository/Notify.php:357 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s написал на [url=%2$s]вашей стене[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:366 +#: src/Navigation/Notifications/Repository/Notify.php:370 #, php-format msgid "%s Introduction received" msgstr "%s Входящих получено" -#: src/Navigation/Notifications/Repository/Notify.php:368 +#: src/Navigation/Notifications/Repository/Notify.php:372 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Вы получили запрос от '%1$s' на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:369 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Вы получили [url=%1$s]запрос[/url] от %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:374 -#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 #, php-format msgid "You may visit their profile at %s" msgstr "Вы можете посмотреть его профиль здесь %s" -#: src/Navigation/Notifications/Repository/Notify.php:376 +#: src/Navigation/Notifications/Repository/Notify.php:380 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Посетите %s для подтверждения или отказа запроса." -#: src/Navigation/Notifications/Repository/Notify.php:383 +#: src/Navigation/Notifications/Repository/Notify.php:387 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Новый человек поделился с Вами" -#: src/Navigation/Notifications/Repository/Notify.php:385 -#: src/Navigation/Notifications/Repository/Notify.php:386 +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s делится с вами на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:393 +#: src/Navigation/Notifications/Repository/Notify.php:397 #, php-format msgid "%s You have a new follower" msgstr "%s У Вас новый подписчик" -#: src/Navigation/Notifications/Repository/Notify.php:395 -#: src/Navigation/Notifications/Repository/Notify.php:396 +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "У вас новый подписчик на %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:409 +#: src/Navigation/Notifications/Repository/Notify.php:413 #, php-format msgid "%s Friend suggestion received" msgstr "%s Получено дружеское приглашение" -#: src/Navigation/Notifications/Repository/Notify.php:411 +#: src/Navigation/Notifications/Repository/Notify.php:415 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Вы получили предложение дружбы от '%1$s' на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:412 +#: src/Navigation/Notifications/Repository/Notify.php:416 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "У вас [url=%1$s]новое предложение дружбы[/url] для %2$s от %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:418 +#: src/Navigation/Notifications/Repository/Notify.php:422 msgid "Name:" msgstr "Имя:" -#: src/Navigation/Notifications/Repository/Notify.php:419 +#: src/Navigation/Notifications/Repository/Notify.php:423 msgid "Photo:" msgstr "Фото:" -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:426 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Пожалуйста, посетите %s для подтверждения, или отказа запроса." -#: src/Navigation/Notifications/Repository/Notify.php:430 -#: src/Navigation/Notifications/Repository/Notify.php:445 +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 #, php-format msgid "%s Connection accepted" msgstr "%s Соединение принято" -#: src/Navigation/Notifications/Repository/Notify.php:432 -#: src/Navigation/Notifications/Repository/Notify.php:447 +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' принял соединение с вами на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:433 -#: src/Navigation/Notifications/Repository/Notify.php:448 +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s принял ваше [url=%1$s]предложение о соединении[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:438 +#: src/Navigation/Notifications/Repository/Notify.php:442 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Вы теперь взаимные друзья и можете обмениваться статусами, фотографиями и письмами без ограничений." -#: src/Navigation/Notifications/Repository/Notify.php:440 +#: src/Navigation/Notifications/Repository/Notify.php:444 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Посетите %s если вы хотите сделать изменения в этом отношении." -#: src/Navigation/Notifications/Repository/Notify.php:453 +#: src/Navigation/Notifications/Repository/Notify.php:457 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -10779,33 +11940,34 @@ msgid "" "automatically." msgstr "%1$s решил принять приглашение и пометил вас как фаната, что запрещает некоторые формы общения - например, личные сообщения и некоторые действия с профилем. Если эта страница знаменитости или сообщества, то эти настройки были применены автоматически." -#: src/Navigation/Notifications/Repository/Notify.php:455 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "%1$s может расширить взаимоотношения до более мягких в будущем." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:461 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Посетите %s если вы хотите сделать изменения в этом отношении." -#: src/Navigation/Notifications/Repository/Notify.php:467 +#: src/Navigation/Notifications/Repository/Notify.php:471 msgid "registration request" msgstr "запрос регистрации" -#: src/Navigation/Notifications/Repository/Notify.php:469 +#: src/Navigation/Notifications/Repository/Notify.php:473 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Вы получили запрос на регистрацию от '%1$s' на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:470 +#: src/Navigation/Notifications/Repository/Notify.php:474 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Вы получили [url=%1$s]запрос регистрации[/url] от %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:475 +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 #, php-format msgid "" "Full Name:\t%s\n" @@ -10813,20 +11975,49 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Полное имя:\t%s\nРасположение:\t%s\nИмя для входа:\t%s (%s)" -#: src/Navigation/Notifications/Repository/Notify.php:481 +#: src/Navigation/Notifications/Repository/Notify.php:485 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Пожалуйста, посетите %s чтобы подтвердить или отвергнуть запрос." -#: src/Navigation/Notifications/Repository/Notify.php:749 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "новая регистрация" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "У вас новая регистрация от '%1$s' на %2$s" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "У вас [url=%1$s]новая регистрация[/url] от %2$s." + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "Пожалуйста, посетите %s для просмотра новой регистрации." + +#: src/Navigation/Notifications/Repository/Notify.php:780 #, php-format msgid "%s %s tagged you" msgstr "%s %s отметил(и) Вас" -#: src/Navigation/Notifications/Repository/Notify.php:752 +#: src/Navigation/Notifications/Repository/Notify.php:783 #, php-format msgid "%s %s shared a new post" -msgstr "%s %s поделился(-ась) новым сообщением" +msgstr "%s %s поделился(-ась) новой записью" + +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "%1$s %2$s нравится ваша запись #%3$d" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "%1$s %2$s нравится ваш комментарий в #%3$d" #: src/Object/EMail/ItemCCEMail.php:42 #, php-format @@ -10851,194 +12042,221 @@ msgstr "Пожалуйста, свяжитесь с отправителем, о msgid "%s posted an update." msgstr "%s отправил/а/ обновление." -#: src/Object/Post.php:136 +#: src/Object/Post.php:138 msgid "Private Message" msgstr "Приватная запись" -#: src/Object/Post.php:140 +#: src/Object/Post.php:142 msgid "Public Message" msgstr "Публичная запись" -#: src/Object/Post.php:144 +#: src/Object/Post.php:146 msgid "Unlisted Message" msgstr "Запись без публикации в общих лентах" -#: src/Object/Post.php:179 +#: src/Object/Post.php:182 msgid "This entry was edited" msgstr "Эта запись была отредактирована" -#: src/Object/Post.php:207 +#: src/Object/Post.php:210 msgid "Connector Message" msgstr "Сообщение-коннектор" -#: src/Object/Post.php:222 src/Object/Post.php:224 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Редактировать" -#: src/Object/Post.php:248 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "Удалить везде" -#: src/Object/Post.php:248 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "Убрать для себя" -#: src/Object/Post.php:264 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "Заблокировать %s" -#: src/Object/Post.php:269 +#: src/Object/Post.php:274 +#, php-format +msgid "Ignore %s" +msgstr "Игнорировать %s" + +#: src/Object/Post.php:279 +#, php-format +msgid "Collapse %s" +msgstr "Сворачивать %s" + +#: src/Object/Post.php:283 +msgid "Report post" +msgstr "Пожаловаться" + +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "Сохранить в папку" -#: src/Object/Post.php:304 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "Я буду" -#: src/Object/Post.php:304 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "Меня не будет" -#: src/Object/Post.php:304 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "Возможно" -#: src/Object/Post.php:334 +#: src/Object/Post.php:364 msgid "Ignore thread" msgstr "Игнорировать обсуждение" -#: src/Object/Post.php:335 +#: src/Object/Post.php:365 msgid "Unignore thread" msgstr "Не игнорировать обсуждение" -#: src/Object/Post.php:336 +#: src/Object/Post.php:366 msgid "Toggle ignore status" msgstr "Переключить игнорирование" -#: src/Object/Post.php:346 +#: src/Object/Post.php:376 msgid "Add star" msgstr "Добавить в Избранное" -#: src/Object/Post.php:347 +#: src/Object/Post.php:377 msgid "Remove star" msgstr "Убрать из Избранного" -#: src/Object/Post.php:348 +#: src/Object/Post.php:378 msgid "Toggle star status" msgstr "Добавить/убрать из Избранного" -#: src/Object/Post.php:359 +#: src/Object/Post.php:389 msgid "Pin" msgstr "Закрепить" -#: src/Object/Post.php:360 +#: src/Object/Post.php:390 msgid "Unpin" msgstr "Открепить" -#: src/Object/Post.php:361 +#: src/Object/Post.php:391 msgid "Toggle pin status" msgstr "Закрепить/открепить" -#: src/Object/Post.php:364 +#: src/Object/Post.php:394 msgid "Pinned" msgstr "Закреплено" -#: src/Object/Post.php:369 +#: src/Object/Post.php:399 msgid "Add tag" msgstr "Добавить тег" -#: src/Object/Post.php:382 +#: src/Object/Post.php:412 msgid "Quote share this" msgstr "Поделиться с комментарием" -#: src/Object/Post.php:382 +#: src/Object/Post.php:412 msgid "Quote Share" msgstr "Цитировать" -#: src/Object/Post.php:385 +#: src/Object/Post.php:415 msgid "Reshare this" msgstr "Поделиться этим с подписчиками" -#: src/Object/Post.php:385 +#: src/Object/Post.php:415 msgid "Reshare" msgstr "Поделиться" -#: src/Object/Post.php:386 +#: src/Object/Post.php:416 msgid "Cancel your Reshare" msgstr "Отменить репост" -#: src/Object/Post.php:386 +#: src/Object/Post.php:416 msgid "Unshare" msgstr "Отменить репост" -#: src/Object/Post.php:433 +#: src/Object/Post.php:467 #, php-format msgid "%s (Received %s)" msgstr "%s (Получено %s)" -#: src/Object/Post.php:438 +#: src/Object/Post.php:473 msgid "Comment this item on your system" msgstr "Прокомментировать это на вашем узле" -#: src/Object/Post.php:438 +#: src/Object/Post.php:473 msgid "Remote comment" msgstr "Загруженный комментарий" -#: src/Object/Post.php:459 +#: src/Object/Post.php:495 msgid "Share via ..." msgstr "Отправить в ..." -#: src/Object/Post.php:459 +#: src/Object/Post.php:495 msgid "Share via external services" msgstr "Поделиться через сторонние сервисы" -#: src/Object/Post.php:488 +#: src/Object/Post.php:502 +msgid "Unknown parent" +msgstr "Источник неизвестен" + +#: src/Object/Post.php:506 +#, php-format +msgid "in reply to %s" +msgstr "в ответ на %s" + +#: src/Object/Post.php:508 +msgid "Parent is probably private or not federated." +msgstr "Источник приватный или не федерируется." + +#: src/Object/Post.php:532 msgid "to" msgstr "к" -#: src/Object/Post.php:489 +#: src/Object/Post.php:533 msgid "via" msgstr "через" -#: src/Object/Post.php:490 +#: src/Object/Post.php:534 msgid "Wall-to-Wall" msgstr "Стена-на-Стену" -#: src/Object/Post.php:491 +#: src/Object/Post.php:535 msgid "via Wall-To-Wall:" msgstr "через Стена-на-Стену:" -#: src/Object/Post.php:533 +#: src/Object/Post.php:582 #, php-format msgid "Reply to %s" msgstr "Ответ %s" -#: src/Object/Post.php:536 +#: src/Object/Post.php:585 msgid "More" msgstr "Ещё" -#: src/Object/Post.php:554 +#: src/Object/Post.php:604 msgid "Notifier task is pending" msgstr "Постановка в очередь" -#: src/Object/Post.php:555 +#: src/Object/Post.php:605 msgid "Delivery to remote servers is pending" msgstr "Ожидается отправка адресатам" -#: src/Object/Post.php:556 +#: src/Object/Post.php:606 msgid "Delivery to remote servers is underway" msgstr "Отправка адресатам в процессе" -#: src/Object/Post.php:557 +#: src/Object/Post.php:607 msgid "Delivery to remote servers is mostly done" msgstr "Отправка адресатам почти завершилась" -#: src/Object/Post.php:558 +#: src/Object/Post.php:608 msgid "Delivery to remote servers is done" msgstr "Отправка адресатам завершена" -#: src/Object/Post.php:578 +#: src/Object/Post.php:630 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -11047,51 +12265,99 @@ msgstr[1] "%d комментариев" msgstr[2] "%d комментариев" msgstr[3] "%d комментариев" -#: src/Object/Post.php:579 +#: src/Object/Post.php:631 msgid "Show more" msgstr "Показать больше" -#: src/Object/Post.php:580 +#: src/Object/Post.php:632 msgid "Show fewer" msgstr "Показать меньше" -#: src/Protocol/OStatus.php:1472 +#: src/Object/Post.php:668 +#, php-format +msgid "Reshared by: %s" +msgstr "Репост от: %s" + +#: src/Object/Post.php:673 +#, php-format +msgid "Viewed by: %s" +msgstr "Просмотрено: %s" + +#: src/Object/Post.php:678 +#, php-format +msgid "Liked by: %s" +msgstr "Понравилось: %s" + +#: src/Object/Post.php:683 +#, php-format +msgid "Disliked by: %s" +msgstr "Не понравилось: %s" + +#: src/Object/Post.php:688 +#, php-format +msgid "Attended by: %s" +msgstr "Присутствуют: %s" + +#: src/Object/Post.php:693 +#, php-format +msgid "Maybe attended by: %s" +msgstr "Под вопросом: %s" + +#: src/Object/Post.php:698 +#, php-format +msgid "Not attended by: %s" +msgstr "Не присутствуют: %s" + +#: src/Object/Post.php:703 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "Отреагировали как %s : %s" + +#: src/Protocol/ActivityPub/Receiver.php:522 +msgid "Chat" +msgstr "Чат" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "(нет темы)" + +#: src/Protocol/OStatus.php:1390 #, php-format msgid "%s is now following %s." msgstr "%s теперь подписан на %s." -#: src/Protocol/OStatus.php:1473 +#: src/Protocol/OStatus.php:1391 msgid "following" msgstr "следует" -#: src/Protocol/OStatus.php:1476 +#: src/Protocol/OStatus.php:1394 #, php-format msgid "%s stopped following %s." msgstr "%s отписался от %s." -#: src/Protocol/OStatus.php:1477 +#: src/Protocol/OStatus.php:1395 msgid "stopped following" msgstr "отписка от" #: src/Render/FriendicaSmartyEngine.php:56 #, php-format msgid "The folder %s must be writable by webserver." -msgstr "" +msgstr "Каталог %s должен быть доступен для записи веб-сервером." -#: src/Security/Authentication.php:226 +#: src/Security/Authentication.php:227 msgid "Login failed." msgstr "Войти не удалось." -#: src/Security/Authentication.php:271 +#: src/Security/Authentication.php:272 msgid "Login failed. Please check your credentials." msgstr "Ошибка входа. Пожалуйста, проверьте данные для входа." -#: src/Security/Authentication.php:382 +#: src/Security/Authentication.php:391 #, php-format msgid "Welcome %s" msgstr "Добро пожаловать, %s" -#: src/Security/Authentication.php:383 +#: src/Security/Authentication.php:392 msgid "Please upload a profile photo." msgstr "Пожалуйста, загрузите фотографию профиля." @@ -11118,81 +12384,77 @@ msgstr "%s Администратор" msgid "thanks" msgstr "спасибо" -#: src/Util/Temporal.php:171 +#: src/Util/Temporal.php:172 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD или MM-DD" -#: src/Util/Temporal.php:279 +#: src/Util/Temporal.php:280 #, php-format msgid "Time zone: %s Change in Settings" msgstr "Временная зона: %s Изменить в Настройках" -#: src/Util/Temporal.php:318 src/Util/Temporal.php:325 +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 msgid "never" msgstr "никогда" -#: src/Util/Temporal.php:332 +#: src/Util/Temporal.php:343 msgid "less than a second ago" msgstr "менее секунды назад" -#: src/Util/Temporal.php:341 +#: src/Util/Temporal.php:352 msgid "year" msgstr "год" -#: src/Util/Temporal.php:341 +#: src/Util/Temporal.php:352 msgid "years" msgstr "лет" -#: src/Util/Temporal.php:342 +#: src/Util/Temporal.php:353 msgid "months" msgstr "мес." -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:354 msgid "weeks" msgstr "нед." -#: src/Util/Temporal.php:344 +#: src/Util/Temporal.php:355 msgid "days" msgstr "дней" -#: src/Util/Temporal.php:345 +#: src/Util/Temporal.php:356 msgid "hour" msgstr "час" -#: src/Util/Temporal.php:345 +#: src/Util/Temporal.php:356 msgid "hours" msgstr "час." -#: src/Util/Temporal.php:346 +#: src/Util/Temporal.php:357 msgid "minute" msgstr "мин." -#: src/Util/Temporal.php:346 +#: src/Util/Temporal.php:357 msgid "minutes" msgstr "мин." -#: src/Util/Temporal.php:347 +#: src/Util/Temporal.php:358 msgid "second" msgstr "секунда" -#: src/Util/Temporal.php:347 +#: src/Util/Temporal.php:358 msgid "seconds" msgstr "сек." -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:367 #, php-format msgid "in %1$d %2$s" msgstr "через %1$d %2$s" -#: src/Util/Temporal.php:360 +#: src/Util/Temporal.php:370 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s назад" -#: src/Worker/Delivery.php:527 -msgid "(no subject)" -msgstr "(нет темы)" - #: src/Worker/PushSubscription.php:110 msgid "Notification from Friendica" msgstr "Уведомление от Friendica" @@ -11201,156 +12463,156 @@ msgstr "Уведомление от Friendica" msgid "Empty Post" msgstr "Пустая запись" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:68 msgid "default" msgstr "По умолчанию" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:69 msgid "greenzero" msgstr "greenzero" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:70 msgid "purplezero" msgstr "purplezero" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:71 msgid "easterbunny" msgstr "easterbunny" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:72 msgid "darkzero" msgstr "darkzero" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:73 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:75 +#: view/theme/duepuntozero/config.php:74 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:88 +#: view/theme/duepuntozero/config.php:87 msgid "Variations" msgstr "Вариации" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:153 msgid "Light (Accented)" msgstr "Светлая (с акцентами)" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:154 msgid "Dark (Accented)" msgstr "Тёмная (с акцентами)" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:155 msgid "Black (Accented)" msgstr "Чёрная (с акцентами)" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:167 msgid "Note" msgstr "Примечание" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:167 msgid "Check image permissions if all users are allowed to see the image" msgstr "Проверьте настройки разрешений изображения, оно должно быть видно всем пользователям" -#: view/theme/frio/config.php:174 +#: view/theme/frio/config.php:173 msgid "Custom" msgstr "Другое" -#: view/theme/frio/config.php:175 +#: view/theme/frio/config.php:174 msgid "Legacy" msgstr "Традиционная" -#: view/theme/frio/config.php:176 +#: view/theme/frio/config.php:175 msgid "Accented" msgstr "С акцентами" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:176 msgid "Select color scheme" msgstr "Выбрать цветовую схему" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:177 msgid "Select scheme accent" msgstr "Выберите акцент темы" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:177 msgid "Blue" msgstr "Синий" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:177 msgid "Red" msgstr "Красный" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:177 msgid "Purple" msgstr "Фиолетовый" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:177 msgid "Green" msgstr "Зелёный" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:177 msgid "Pink" msgstr "Розовый" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:178 msgid "Copy or paste schemestring" msgstr "Скопируйте или вставьте код темы" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:178 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Вы можете скопировать эту строку и поделиться настройками вашей темы с другими. Вставка строки здесь применяет настройки оформления темы." -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:179 msgid "Navigation bar background color" msgstr "Цвет фона навигационной панели" -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:180 msgid "Navigation bar icon color " msgstr "Цвет значков навигационной панели" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:181 msgid "Link color" msgstr "Цвет ссылок" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:182 msgid "Set the background color" msgstr "Установить цвет фона" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:183 msgid "Content background opacity" msgstr "Прозрачность фона основного содержимого" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:184 msgid "Set the background image" msgstr "Установить фоновую картинку" -#: view/theme/frio/config.php:186 +#: view/theme/frio/config.php:185 msgid "Background image style" msgstr "Стиль фонового изображения" -#: view/theme/frio/config.php:189 +#: view/theme/frio/config.php:188 msgid "Always open Compose page" msgstr "Всегда открывать страницу редактора" -#: view/theme/frio/config.php:189 +#: view/theme/frio/config.php:188 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "Кнопка создания новой записи всегда будет открывать страницу редактора вместо всплывающего окна. Когда это отключено, страница редактора может быть развёрнута из всплывающего окна, либо при открытии ссылки кнопки в новой вкладке." -#: view/theme/frio/config.php:193 +#: view/theme/frio/config.php:192 msgid "Login page background image" msgstr "Фоновое изображение страницы входа" -#: view/theme/frio/config.php:197 +#: view/theme/frio/config.php:196 msgid "Login page background color" msgstr "Цвет фона страницы входа" -#: view/theme/frio/config.php:197 +#: view/theme/frio/config.php:196 msgid "Leave background image and color empty for theme defaults" msgstr "Оставьте настройки фоновых цвета и изображения пустыми, чтобы применить настройки темы по-умолчанию." @@ -11398,78 +12660,78 @@ msgstr "Пропустить до основного содержимого" msgid "Back to top" msgstr "Наверх" -#: view/theme/frio/theme.php:220 +#: view/theme/frio/theme.php:211 msgid "Guest" msgstr "Гость" -#: view/theme/frio/theme.php:223 +#: view/theme/frio/theme.php:214 msgid "Visitor" msgstr "Посетитель" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:89 msgid "Alignment" msgstr "Выравнивание" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:89 msgid "Left" msgstr "Слева" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:89 msgid "Center" msgstr "Центр" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:90 msgid "Color scheme" msgstr "Цветовая схема" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:91 msgid "Posts font size" msgstr "Размер шрифта записей" -#: view/theme/quattro/config.php:93 +#: view/theme/quattro/config.php:92 msgid "Textareas font size" msgstr "Размер шрифта текстовых полей" -#: view/theme/vier/config.php:92 -msgid "Comma separated list of helper forums" -msgstr "Разделенный запятыми список форумов помощи" +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" +msgstr "Список групп поддержки через запятую" -#: view/theme/vier/config.php:132 +#: view/theme/vier/config.php:131 msgid "don't show" msgstr "не показывать" -#: view/theme/vier/config.php:132 +#: view/theme/vier/config.php:131 msgid "show" msgstr "показывать" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:137 msgid "Set style" msgstr "Установить стиль" -#: view/theme/vier/config.php:139 +#: view/theme/vier/config.php:138 msgid "Community Pages" msgstr "Страницы сообщества" -#: view/theme/vier/config.php:140 view/theme/vier/theme.php:152 +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 msgid "Community Profiles" msgstr "Профили сообщества" -#: view/theme/vier/config.php:141 +#: view/theme/vier/config.php:140 msgid "Help or @NewHere ?" msgstr "Помощь" -#: view/theme/vier/config.php:142 view/theme/vier/theme.php:323 +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 msgid "Connect Services" msgstr "Подключить службы" -#: view/theme/vier/config.php:143 +#: view/theme/vier/config.php:142 msgid "Find Friends" msgstr "Найти друзей" -#: view/theme/vier/config.php:144 view/theme/vier/theme.php:179 +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 msgid "Last users" msgstr "Последние пользователи" -#: view/theme/vier/theme.php:238 +#: view/theme/vier/theme.php:234 msgid "Quick Start" msgstr "Быстрый старт" diff --git a/view/lang/ru/strings.php b/view/lang/ru/strings.php index 7d9488401..be3543519 100644 --- a/view/lang/ru/strings.php +++ b/view/lang/ru/strings.php @@ -5,104 +5,13 @@ function string_plural_select_ru($n){ $n = intval($n); if ($n%10==1 && $n%100!=11) { return 0; } else if ($n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14)) { return 1; } else if ($n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)) { return 2; } else { return 3; } }} -$a->strings['Access denied.'] = 'Доступ запрещен.'; -$a->strings['User not found.'] = 'Пользователь не найден.'; -$a->strings['Access to this profile has been restricted.'] = 'Доступ к этому профилю ограничен.'; -$a->strings['Events'] = 'Мероприятия'; -$a->strings['View'] = 'Смотреть'; -$a->strings['Previous'] = 'Назад'; -$a->strings['Next'] = 'Далее'; -$a->strings['today'] = 'сегодня'; -$a->strings['month'] = 'мес.'; -$a->strings['week'] = 'неделя'; -$a->strings['day'] = 'день'; -$a->strings['list'] = 'список'; -$a->strings['User not found'] = 'Пользователь не найден'; -$a->strings['This calendar format is not supported'] = 'Этот формат календарей не поддерживается'; -$a->strings['No exportable data found'] = 'Нет данных для экспорта'; -$a->strings['calendar'] = 'календарь'; -$a->strings['Public access denied.'] = 'Свободный доступ закрыт.'; -$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'Запрошенная запись не существует или была удалена.'; -$a->strings['The feed for this item is unavailable.'] = 'Лента недоступна для этого объекта.'; -$a->strings['Permission denied.'] = 'Нет разрешения.'; -$a->strings['Item not found'] = 'Элемент не найден'; -$a->strings['Edit post'] = 'Редактировать запись'; -$a->strings['Save'] = 'Сохранить'; -$a->strings['Loading...'] = 'Загрузка...'; -$a->strings['Upload photo'] = 'Загрузить фото'; -$a->strings['upload photo'] = 'загрузить фото'; -$a->strings['Attach file'] = 'Прикрепить файл'; -$a->strings['attach file'] = 'приложить файл'; -$a->strings['Insert web link'] = 'Вставить веб-ссылку'; -$a->strings['web link'] = 'веб-ссылка'; -$a->strings['Insert video link'] = 'Вставить ссылку видео'; -$a->strings['video link'] = 'видео-ссылка'; -$a->strings['Insert audio link'] = 'Вставить ссылку аудио'; -$a->strings['audio link'] = 'аудио-ссылка'; -$a->strings['Set your location'] = 'Задать ваше местоположение'; -$a->strings['set location'] = 'установить местонахождение'; -$a->strings['Clear browser location'] = 'Очистить местонахождение браузера'; -$a->strings['clear location'] = 'убрать местонахождение'; -$a->strings['Please wait'] = 'Пожалуйста, подождите'; -$a->strings['Permission settings'] = 'Настройки разрешений'; -$a->strings['CC: email addresses'] = 'Копии на email адреса'; -$a->strings['Public post'] = 'Публичная запись'; -$a->strings['Set title'] = 'Установить заголовок'; -$a->strings['Categories (comma-separated list)'] = 'Категории (список через запятую)'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Пример: bob@example.com, mary@example.com'; -$a->strings['Preview'] = 'Просмотр'; -$a->strings['Cancel'] = 'Отмена'; -$a->strings['Bold'] = 'Жирный'; -$a->strings['Italic'] = 'Kурсивный'; -$a->strings['Underline'] = 'Подчеркнутый'; -$a->strings['Quote'] = 'Цитата'; -$a->strings['Code'] = 'Код'; -$a->strings['Link'] = 'Ссылка'; -$a->strings['Link or Media'] = 'Ссылка или медиа'; -$a->strings['Message'] = 'Сообщение'; -$a->strings['Browser'] = 'Браузер'; -$a->strings['Permissions'] = 'Разрешения'; -$a->strings['Open Compose page'] = 'Развернуть редактор'; -$a->strings['Event can not end before it has started.'] = 'Эвент не может закончится до старта.'; -$a->strings['Event title and start time are required.'] = 'Название мероприятия и время начала обязательны для заполнения.'; -$a->strings['Create New Event'] = 'Создать новое мероприятие'; -$a->strings['Event details'] = 'Сведения о мероприятии'; -$a->strings['Starting date and Title are required.'] = 'Необходима дата старта и заголовок.'; -$a->strings['Event Starts:'] = 'Начало мероприятия:'; -$a->strings['Required'] = 'Требуется'; -$a->strings['Finish date/time is not known or not relevant'] = 'Дата/время окончания не известны, или не указаны'; -$a->strings['Event Finishes:'] = 'Окончание мероприятия:'; -$a->strings['Description:'] = 'Описание:'; -$a->strings['Location:'] = 'Откуда:'; -$a->strings['Title:'] = 'Титул:'; -$a->strings['Share this event'] = 'Поделиться этим мероприятием'; -$a->strings['Submit'] = 'Отправить'; -$a->strings['Basic'] = 'Базовый'; -$a->strings['Advanced'] = 'Расширенный'; -$a->strings['Failed to remove event'] = 'Ошибка удаления события'; -$a->strings['Photos'] = 'Фото'; -$a->strings['Upload'] = 'Загрузить'; -$a->strings['Files'] = 'Файлы'; -$a->strings['Submit Request'] = 'Отправить запрос'; -$a->strings['You already added this contact.'] = 'Вы уже добавили этот контакт.'; -$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['Connect/Follow'] = 'Подключиться/Подписаться'; -$a->strings['Please answer the following:'] = 'Пожалуйста, ответьте следующее:'; -$a->strings['Your Identity Address:'] = 'Ваш адрес:'; -$a->strings['Profile URL'] = 'URL профиля'; -$a->strings['Tags:'] = 'Ключевые слова: '; -$a->strings['%s knows you'] = '%s знают Вас'; -$a->strings['Add a personal note:'] = 'Добавить личную заметку:'; -$a->strings['Status Messages and Posts'] = 'Записи и статусы'; -$a->strings['The contact could not be added.'] = 'Не удалось добавить этот контакт.'; $a->strings['Unable to locate original post.'] = 'Не удалось найти оригинальную запись.'; -$a->strings['Empty post discarded.'] = 'Пустое сообщение отбрасывается.'; $a->strings['Post updated.'] = 'Запись обновлена.'; $a->strings['Item wasn\'t stored.'] = 'Запись не была сохранена.'; $a->strings['Item couldn\'t be fetched.'] = 'Не удалось получить запись.'; +$a->strings['Empty post discarded.'] = 'Пустое сообщение отбрасывается.'; $a->strings['Item not found.'] = 'Пункт не найден.'; +$a->strings['Permission denied.'] = 'Нет разрешения.'; $a->strings['No valid account found.'] = 'Не найдено действительного аккаунта.'; $a->strings['Password reset request issued. Check your email.'] = 'Запрос на сброс пароля принят. Проверьте вашу электронную почту.'; $a->strings[' @@ -190,9 +99,6 @@ $a->strings[' Вы можете сменить этот пароль в настройках учётной записи после входа. '; $a->strings['Your password has been changed at %s'] = 'Ваш пароль был изменен %s'; -$a->strings['No keywords to match. Please add keywords to your profile.'] = 'Нет совпадающих ключевых слов. Пожалуйста, добавьте ключевые слова в ваш профиль.'; -$a->strings['No matches'] = 'Нет соответствий'; -$a->strings['Profile Match'] = 'Похожие профили'; $a->strings['New Message'] = 'Новое сообщение'; $a->strings['No recipient selected.'] = 'Не выбран получатель.'; $a->strings['Unable to locate contact information.'] = 'Не удалось найти контактную информацию.'; @@ -208,6 +114,10 @@ $a->strings['Send Private Message'] = 'Отправить личное сооб $a->strings['To:'] = 'Кому:'; $a->strings['Subject:'] = 'Тема:'; $a->strings['Your message:'] = 'Ваше сообщение:'; +$a->strings['Upload photo'] = 'Загрузить фото'; +$a->strings['Insert web link'] = 'Вставить веб-ссылку'; +$a->strings['Please wait'] = 'Пожалуйста, подождите'; +$a->strings['Submit'] = 'Отправить'; $a->strings['No messages.'] = 'Нет сообщений.'; $a->strings['Message not available.'] = 'Сообщение не доступно.'; $a->strings['Delete message'] = 'Удалить сообщение'; @@ -226,18 +136,8 @@ $a->strings['%d message'] = [ ]; $a->strings['Personal Notes'] = 'Личные заметки'; $a->strings['Personal notes are visible only by yourself.'] = 'Личные заметки видны только вам.'; -$a->strings['Subscribing to contacts'] = 'Подписка на контакты'; -$a->strings['No contact provided.'] = 'Не указан контакт.'; -$a->strings['Couldn\'t fetch information for contact.'] = 'Невозможно получить информацию о контакте.'; -$a->strings['Couldn\'t fetch friends for contact.'] = 'Невозможно получить друзей для контакта.'; -$a->strings['Couldn\'t fetch following contacts.'] = 'Не удалось загрузить контакты подписчиков.'; -$a->strings['Couldn\'t fetch remote profile.'] = 'Не получилось загрузить профиль.'; -$a->strings['Unsupported network'] = 'Сеть не поддерживается'; -$a->strings['Done'] = 'Готово'; -$a->strings['success'] = 'удачно'; -$a->strings['failed'] = 'неудача'; -$a->strings['ignored'] = 'игнорирован'; -$a->strings['Keep this window open until done.'] = 'Держать окно открытым до завершения.'; +$a->strings['Save'] = 'Сохранить'; +$a->strings['User not found.'] = 'Пользователь не найден.'; $a->strings['Photo Albums'] = 'Фотоальбомы'; $a->strings['Recent Photos'] = 'Последние фото'; $a->strings['Upload New Photos'] = 'Загрузить новые фото'; @@ -249,21 +149,17 @@ $a->strings['Album was empty.'] = 'Альбом был пуст.'; $a->strings['Failed to delete the photo.'] = 'Не получилось удалить фото.'; $a->strings['a photo'] = 'фото'; $a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s отмечен/а/ в %2$s by %3$s'; -$a->strings['Image exceeds size limit of %s'] = 'Изображение превышает лимит размера в %s'; -$a->strings['Image upload didn\'t complete, please try again'] = 'Не получилось загрузить изображение, попробуйте снова'; -$a->strings['Image file is missing'] = 'Файл изображения не найден'; -$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Сервер не принимает новые файлы для загрузки в настоящий момент, пожалуйста, свяжитесь с администратором'; -$a->strings['Image file is empty.'] = 'Файл изображения пуст.'; -$a->strings['Unable to process image.'] = 'Невозможно обработать фото.'; -$a->strings['Image upload failed.'] = 'Загрузка фото неудачная.'; +$a->strings['Public access denied.'] = 'Публичный доступ закрыт.'; $a->strings['No photos selected'] = 'Не выбрано фото.'; -$a->strings['Access to this item is restricted.'] = 'Доступ к этому пункту ограничен.'; +$a->strings['The maximum accepted image size is %s'] = 'Максимально допустимый размер изображения %s'; $a->strings['Upload Photos'] = 'Загрузить фото'; $a->strings['New album name: '] = 'Название нового альбома: '; $a->strings['or select existing album:'] = 'или выберите имеющийся альбом:'; $a->strings['Do not show a status post for this upload'] = 'Не показывать статус-сообщение для этой закачки'; +$a->strings['Permissions'] = 'Разрешения'; $a->strings['Do you really want to delete this photo album and all its photos?'] = 'Вы действительно хотите удалить этот альбом и все его фотографии?'; $a->strings['Delete Album'] = 'Удалить альбом'; +$a->strings['Cancel'] = 'Отмена'; $a->strings['Edit Album'] = 'Редактировать альбом'; $a->strings['Drop Album'] = 'Удалить альбом'; $a->strings['Show Newest First'] = 'Показать новые первыми'; @@ -290,6 +186,8 @@ $a->strings['Rotate CW (right)'] = 'Поворот по часовой стре $a->strings['Rotate CCW (left)'] = 'Поворот против часовой стрелки (налево)'; $a->strings['This is you'] = 'Это вы'; $a->strings['Comment'] = 'Комментировать'; +$a->strings['Preview'] = 'Просмотр'; +$a->strings['Loading...'] = 'Загрузка...'; $a->strings['Select'] = 'Выберите'; $a->strings['Delete'] = 'Удалить'; $a->strings['Like'] = 'Нравится'; @@ -297,108 +195,31 @@ $a->strings['I like this (toggle)'] = 'Нравится'; $a->strings['Dislike'] = 'Не нравится'; $a->strings['I don\'t like this (toggle)'] = 'Не нравится'; $a->strings['Map'] = 'Карта'; -$a->strings['View Album'] = 'Просмотреть альбом'; -$a->strings['Bad Request.'] = 'Ошибочный запрос.'; -$a->strings['Contact not found.'] = 'Контакт не найден.'; -$a->strings['[Friendica System Notify]'] = '[Системное уведомление Friendica]'; -$a->strings['User deleted their account'] = 'Пользователь удалил свою учётную запись'; -$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Пользователь удалил свою учётную запись на вашем сервере Friendica. Пожалуйста, убедитесь, что их данные будут удалены из резервных копий.'; -$a->strings['The user id is %d'] = 'id пользователя: %d'; -$a->strings['Remove My Account'] = 'Удалить мой аккаунт'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит.'; -$a->strings['Please enter your password for verification:'] = 'Пожалуйста, введите свой пароль для проверки:'; -$a->strings['Resubscribing to OStatus contacts'] = 'Переподписаться на OStatus-контакты.'; -$a->strings['Error'] = [ - 0 => 'Ошибка', - 1 => 'Ошибки', - 2 => 'Ошибки', - 3 => 'Ошибки', -]; -$a->strings['Failed to connect with email account using the settings provided.'] = 'Не удалось подключиться к аккаунту e-mail, используя указанные настройки.'; -$a->strings['Connected Apps'] = 'Подключенные приложения'; -$a->strings['Name'] = 'Имя'; -$a->strings['Home Page'] = 'Главная страница'; -$a->strings['Created'] = 'Создано'; -$a->strings['Remove authorization'] = 'Удалить авторизацию'; -$a->strings['Save Settings'] = 'Сохранить настройки'; -$a->strings['Addon Settings'] = 'Настройки дополнений'; -$a->strings['No Addon settings configured'] = 'Настройки дополнений не изменены'; -$a->strings['Additional Features'] = 'Дополнительные возможности'; -$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$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'] = 'Социальные сети'; -$a->strings['General Social Media Settings'] = 'Общие настройки социальных медиа'; -$a->strings['Followed content scope'] = 'Какие записи показывать в ленте'; -$a->strings['By default, conversations in which your follows participated but didn\'t start will be shown in your timeline. You can turn this behavior off, or expand it to the conversations in which your follows liked a post.'] = 'По-умолчанию в вашу ленту попадают и записи, которые ваши контакты не создали сами, а лишь прокомментировали. Вы можете отключить это, либо наоборот расширить до загрузки записей, которым ваши контакты поставили отметку "нравится".'; -$a->strings['Only conversations my follows started'] = 'Только записи, созданные моими контактами'; -$a->strings['Conversations my follows started or commented on (default)'] = 'Записи, которые мои контакты создали или прокомментировали (по-умолчанию)'; -$a->strings['Any conversation my follows interacted with, including likes'] = 'Любые записи, с которыми мои контакты взаимодействовали, включая лайки'; -$a->strings['Enable Content Warning'] = 'Включить предупреждение о контенте'; -$a->strings['Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.'] = 'Пользователи некоторых сетей, таких как Mastodon или Pleroma, могут использовать "предупреждение о контенте", сворачивающее их записи. Эта настройка выключает это свёртывание вместо обычного помещения "предупреждения о контенте" в заголовок записи. Это не влияет на другие фильтры, которые вы можете настроить.'; -$a->strings['Enable intelligent shortening'] = 'Включить умное сокращение'; -$a->strings['Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.'] = 'Обычно система пытается найти лучшую ссылку для добавления к сокращенной записи. Если эта настройка включена, то каждая сокращенная запись будет указывать на оригинальную запись в Friendica.'; -$a->strings['Enable simple text shortening'] = 'Включить простое сокращение текста'; -$a->strings['Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'] = 'Обычно система обрезает записи на следующей строке. Если эта настройка включена, система будет сокращать записи по достижении лимита символов.'; -$a->strings['Attach the link title'] = 'Присоединять заголовок ссылок'; -$a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'Если включено. заголовок добавленной ссылки будет добавлен к записи в Диаспоре как заголовок. Это в основном нужно для контактов "мой двойник", которые публикуют содержимое ленты.'; -$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Ваша старая учётная запись ActivityPub/GNU Social'; -$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Если вы введете тут вашу старую учетную запись от платформы совместимой с ActivityPub или GNU Social/Statusnet (в виде пользователь@домен), ваши контакты оттуда будут автоматически добавлены. Поле будет очищено когда все контакты будут добавлены.'; -$a->strings['Repair OStatus subscriptions'] = 'Починить подписки OStatus'; -$a->strings['Email/Mailbox Setup'] = 'Настройка эл. почты / почтового ящика'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику.'; -$a->strings['Last successful email check:'] = 'Последняя успешная проверка электронной почты:'; -$a->strings['IMAP server name:'] = 'Имя IMAP сервера:'; -$a->strings['IMAP port:'] = 'Порт IMAP:'; -$a->strings['Security:'] = 'Безопасность:'; -$a->strings['Email login name:'] = 'Логин эл. почты:'; -$a->strings['Email password:'] = 'Пароль эл. почты:'; -$a->strings['Reply-to address:'] = 'Адрес для ответа:'; -$a->strings['Send public posts to all email contacts:'] = 'Отправлять открытые сообщения на все контакты электронной почты:'; -$a->strings['Action after import:'] = 'Действие после импорта:'; -$a->strings['Mark as seen'] = 'Отметить, как прочитанное'; -$a->strings['Move to folder'] = 'Переместить в папку'; -$a->strings['Move to folder:'] = 'Переместить в папку:'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа.'; -$a->strings['Friend Suggestions'] = 'Предложения друзей'; -$a->strings['photo'] = 'фото'; -$a->strings['status'] = 'статус'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s tagged %2$s\'s %3$s в %4$s'; -$a->strings['Remove Item Tag'] = 'Удалить ключевое слово'; -$a->strings['Select a tag to remove: '] = 'Выберите ключевое слово для удаления: '; -$a->strings['Remove'] = 'Удалить'; -$a->strings['User imports on closed servers can only be done by an administrator.'] = 'Импорт пользователей на закрытых серверах может быть произведён только администратором.'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра.'; -$a->strings['Import'] = 'Импорт'; -$a->strings['Move account'] = 'Удалить аккаунт'; -$a->strings['You can import an account from another Friendica server.'] = 'Вы можете импортировать учетную запись с другого сервера Friendica.'; -$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.'] = 'Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда.'; -$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Это экспериментальная функция. Мы не можем импортировать контакты из сети OStatus (GNU Social/ StatusNet) или из Diaspora'; -$a->strings['Account file'] = 'Файл аккаунта'; -$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Для экспорта аккаунта, перейдите в "Настройки->Экспортировать ваши данные" и выберите "Экспорт аккаунта"'; -$a->strings['You aren\'t following this contact.'] = 'Вы не подписаны на этот контакт.'; -$a->strings['Unfollowing is currently not supported by your network.'] = 'Отписка в настоящий момент не предусмотрена этой сетью'; -$a->strings['Disconnect/Unfollow'] = 'Отсоединиться/Отписаться'; -$a->strings['Contact was successfully unfollowed'] = 'Подписка успешно удалена'; -$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Не получается отписаться от этого контакта, пожалуйста, свяжитесь с вашим администратором'; -$a->strings['Invalid request.'] = 'Неверный запрос.'; -$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Извините, похоже что загружаемый файл превышает лимиты, разрешенные конфигурацией PHP'; -$a->strings['Or - did you try to upload an empty file?'] = 'Или вы пытались загрузить пустой файл?'; -$a->strings['File exceeds size limit of %s'] = 'Файл превышает лимит размера в %s'; -$a->strings['File upload failed.'] = 'Загрузка файла не удалась.'; -$a->strings['Wall Photos'] = 'Фото стены'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Количество ежедневных сообщений на стене %s превышено. Сообщение отменено..'; -$a->strings['Unable to check your home location.'] = 'Невозможно проверить местоположение.'; -$a->strings['No recipient.'] = 'Без адресата.'; -$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать личные сообщения от неизвестных отправителей.'; $a->strings['No system theme config value set.'] = 'Настройки системной темы не установлены.'; $a->strings['Apologies but the website is unavailable at the moment.'] = 'Приносим извинения, но этот сервис сейчас недоступен.'; $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['Ignore this author? You won\'t be able to see their posts and their notifications.'] = 'Игнорировать этого автора? Вы не увидите их записи и уведомления.'; +$a->strings['Collapse this author\'s posts?'] = 'Сворачивать записи этого автора?'; +$a->strings['Ignore this author\'s server?'] = 'Игнорировать сервер этого автора?'; +$a->strings['You won\'t see any content from this server including reshares in your Network page, the community pages and individual conversations.'] = 'Вы не будете видеть любые записи с этого сервера, включая репосты, в вашей ленте, в сообществах и в комментариях.'; +$a->strings['Like not successful'] = 'Ошибка отправки "мне нравится"'; +$a->strings['Dislike not successful'] = 'Ошибка оправки "мне не нравится"'; +$a->strings['Sharing not successful'] = 'Ошибка при попытке поделиться'; +$a->strings['Attendance unsuccessful'] = 'Ошибка обновления календаря'; +$a->strings['Backend error'] = 'Ошибка бэкенда'; +$a->strings['Network error'] = 'Ошибка сети'; +$a->strings['Drop files here to upload'] = 'Перетащите сюда файлы для загрузки'; +$a->strings['Your browser does not support drag and drop file uploads.'] = 'Ваш браузер не поддерживает перетаскивание файлов для загрузки'; +$a->strings['Please use the fallback form below to upload your files like in the olden days.'] = 'Пожалуйста, используйте форму ниже для загрузки файлов'; +$a->strings['File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.'] = 'Файл слишком большой ({{filesize}}MiB). Ограничение: {{maxFilesize}}MiB.'; +$a->strings['You can\'t upload files of this type.'] = 'Нельзя загрузить этот тип файла.'; +$a->strings['Server responded with {{statusCode}} code.'] = 'Сервер ответил с кодом {{statusCode}}.'; +$a->strings['Cancel upload'] = 'Отменить загрузку'; +$a->strings['Upload canceled.'] = 'Загрузка отменена'; +$a->strings['Are you sure you want to cancel this upload?'] = 'Вы уверены, что хотите отменить загрузку?'; +$a->strings['Remove file'] = 'Убрать файл'; +$a->strings['You can\'t upload any more files.'] = 'Вы не можете загрузить больше файлов.'; $a->strings['toggle mobile'] = 'мобильная версия'; $a->strings['Method not allowed for this module. Allowed method(s): %s'] = 'Метод не разрешён для этого модуля. Разрешенный метод(ы): %s'; $a->strings['Page not found.'] = 'Страница не найдена.'; @@ -416,6 +237,9 @@ $a->strings['Could not find any unarchived contact entry for this URL (%s)'] = ' $a->strings['The contact entries have been archived'] = 'Записи этого контакта были архивированы.'; $a->strings['Could not find any contact entry for this URL (%s)'] = 'Не удалось найти контактных данных по этой ссылке (%s)'; $a->strings['The contact has been blocked from the node'] = 'Контакт был заблокирован на узле.'; +$a->strings['%d %s, %d duplicates.'] = '%d %s, %d дубликаты.'; +$a->strings['uri-id is empty for contact %s.'] = 'uri-id пустой для контакта %s.'; +$a->strings['No valid first contact found for uri-id %d.'] = 'Не найден первый контакт для uri-id %d.'; $a->strings['The avatar cache needs to be enabled to use this command.'] = 'Кэширование аватаров должно быть включено для использования этой команды.'; $a->strings['no resource in photo %s'] = 'нет ресурса для фото %s'; $a->strings['no photo with id %s'] = 'нет фото с id %s'; @@ -428,6 +252,7 @@ $a->strings['Done.'] = 'Готово.'; $a->strings['Execute pending post updates.'] = 'Выполнить обновления записей из очереди.'; $a->strings['All pending post updates are done.'] = 'Все операции по обновлению записей выполнены.'; $a->strings['Enter user nickname: '] = 'Введите ник пользователя:'; +$a->strings['User not found'] = 'Пользователь не найден'; $a->strings['Enter new password: '] = 'Введите новый пароль:'; $a->strings['Password update failed. Please try again.'] = 'Обновление пароля не удалось. Пожалуйста, попробуйте еще раз.'; $a->strings['Password changed.'] = 'Пароль изменен.'; @@ -466,26 +291,83 @@ $a->strings['Diaspora Connector'] = 'Diaspora Connector'; $a->strings['GNU Social Connector'] = 'GNU Social Connector'; $a->strings['ActivityPub'] = 'ActivityPub'; $a->strings['pnut'] = 'pnut'; +$a->strings['Tumblr'] = 'Tumblr'; +$a->strings['Bluesky'] = 'Bluesky'; $a->strings['%s (via %s)'] = '%s (через %s)'; -$a->strings['%s likes this.'] = '%s нравится это.'; -$a->strings['%s doesn\'t like this.'] = '%s не нравится это.'; -$a->strings['%s attends.'] = '%s посещает.'; -$a->strings['%s doesn\'t attend.'] = '%s не посетит.'; -$a->strings['%s attends maybe.'] = '%s может быть посетит.'; -$a->strings['%s reshared this.'] = '%s поделился этим.'; $a->strings['and'] = 'и'; $a->strings['and %d other people'] = 'и еще %d человек'; -$a->strings['%2$d people like this'] = '%2$d людям нравится это'; -$a->strings['%s like this.'] = '%s нравится это.'; -$a->strings['%2$d people don\'t like this'] = '%2$d людям не нравится это'; -$a->strings['%s don\'t like this.'] = '%s не нравится это'; -$a->strings['%2$d people attend'] = '%2$d человека посетят'; -$a->strings['%s attend.'] = '%s посетит.'; -$a->strings['%2$d people don\'t attend'] = '%2$d человек не посетит'; -$a->strings['%s don\'t attend.'] = '%s не посетит'; -$a->strings['%2$d people attend maybe'] = '%2$d человек может быть посетят'; -$a->strings['%s attend maybe.'] = '%s может быть посетит.'; -$a->strings['%2$d people reshared this'] = '%2$d людей поделились этим'; +$a->strings['%2$s likes this.'] = [ + 0 => '%2$s нравится это.', + 1 => '%2$s нравится это.', + 2 => '%2$s нравится это.', + 3 => '%2$s нравится это.', +]; +$a->strings['%2$s doesn\'t like this.'] = [ + 0 => '%2$s не нравится это.', + 1 => '%2$s не нравится это.', + 2 => '%2$s не нравится это.', + 3 => '%2$s не нравится это.', +]; +$a->strings['%2$s attends.'] = [ + 0 => '%2$s посетит.', + 1 => '%2$s посетят.', + 2 => '%2$s посетят.', + 3 => '%2$s посетят.', +]; +$a->strings['%2$s doesn\'t attend.'] = [ + 0 => '%2$s не посетит.', + 1 => '%2$s не посетят.', + 2 => '%2$s не посетят.', + 3 => '%2$s не посетят.', +]; +$a->strings['%2$s attends maybe.'] = [ + 0 => '%2$s может посетить.', + 1 => '%2$s могут посетить.', + 2 => '%2$s могут посетить.', + 3 => '%2$s могут посетить.', +]; +$a->strings['%2$s reshared this.'] = [ + 0 => '%2$s поделился этим.', + 1 => '%2$s поделились этим.', + 2 => '%2$s поделились этим.', + 3 => '%2$s поделились этим.', +]; +$a->strings[' likes this'] = [ + 0 => ' нравится это', + 1 => ' нравится это', + 2 => ' нравится это', + 3 => ' нравится это', +]; +$a->strings[' doesn\'t like this'] = [ + 0 => ' не нравится это', + 1 => ' не нравится это', + 2 => ' не нравится это', + 3 => ' не нравится это', +]; +$a->strings[' attends'] = [ + 0 => ' посетит', + 1 => ' посетят', + 2 => ' посетят', + 3 => ' посетят', +]; +$a->strings[' doesn\'t attend'] = [ + 0 => ' не посетит', + 1 => ' не посетят', + 2 => ' не посетят', + 3 => ' не посетят', +]; +$a->strings[' attends maybe'] = [ + 0 => ' возможно посетит', + 1 => ' возможно посетят', + 2 => ' возможно посетят', + 3 => ' возможно посетят', +]; +$a->strings[' reshared this'] = [ + 0 => ' поделился этим', + 1 => ' поделились этим', + 2 => ' поделились этим', + 3 => ' поделились этим', +]; $a->strings['Visible to everybody'] = 'Видимое всем'; $a->strings['Please enter a image/video/audio/webpage URL:'] = 'Пожалуйста, введите адрес картинки/видео/аудио/странички:'; $a->strings['Tag term:'] = 'Тег:'; @@ -495,20 +377,39 @@ $a->strings['Delete item(s)?'] = 'Удалить елемент(ты)?'; $a->strings['Created at'] = 'Создано'; $a->strings['New Post'] = 'Новая запись'; $a->strings['Share'] = 'Поделиться'; +$a->strings['upload photo'] = 'загрузить фото'; +$a->strings['Attach file'] = 'Прикрепить файл'; +$a->strings['attach file'] = 'приложить файл'; +$a->strings['Bold'] = 'Жирный'; +$a->strings['Italic'] = 'Kурсивный'; +$a->strings['Underline'] = 'Подчеркнутый'; +$a->strings['Quote'] = 'Цитата'; +$a->strings['Add emojis'] = 'Добавить эмодзи'; +$a->strings['Content Warning'] = 'Предупреждение о контенте (CW)'; +$a->strings['Code'] = 'Код'; $a->strings['Image'] = 'Изображение / Фото'; +$a->strings['Link'] = 'Ссылка'; +$a->strings['Link or Media'] = 'Ссылка или медиа'; $a->strings['Video'] = 'Видео'; +$a->strings['Set your location'] = 'Задать ваше местоположение'; +$a->strings['set location'] = 'установить местонахождение'; +$a->strings['Clear browser location'] = 'Очистить местонахождение браузера'; +$a->strings['clear location'] = 'убрать местонахождение'; +$a->strings['Set title'] = 'Установить заголовок'; +$a->strings['Categories (comma-separated list)'] = 'Категории (список через запятую)'; $a->strings['Scheduled at'] = 'Запланировано на'; -$a->strings['Pinned item'] = 'Закреплённая запись'; -$a->strings['View %s\'s profile @ %s'] = 'Просмотреть профиль %s [@ %s]'; -$a->strings['Categories:'] = 'Категории:'; -$a->strings['Filed under:'] = 'В рубрике:'; -$a->strings['%s from %s'] = '%s из %s'; -$a->strings['View in context'] = 'Смотреть в контексте'; +$a->strings['Permission settings'] = 'Настройки разрешений'; +$a->strings['Public post'] = 'Публичная запись'; +$a->strings['Message'] = 'Написать'; +$a->strings['Browser'] = 'Браузер'; +$a->strings['Open Compose page'] = 'Развернуть редактор'; $a->strings['remove'] = 'удалить'; $a->strings['Delete Selected Items'] = 'Удалить выбранные позиции'; $a->strings['You had been addressed (%s).'] = 'К вам обратились (%s).'; $a->strings['You are following %s.'] = 'Вы подписаны на %s.'; +$a->strings['You subscribed to %s.'] = 'Вы подписаны на %s.'; $a->strings['You subscribed to one or more tags in this post.'] = 'Вы подписаны на один или несколько тегов в этой записи.'; +$a->strings['%s reshared this.'] = '%s поделился этим.'; $a->strings['Reshared'] = 'Репост'; $a->strings['Reshared by %s <%s>'] = 'Репост от %s <%s>'; $a->strings['%s is participating in this thread.'] = '%s участвует в этом обсуждении'; @@ -519,17 +420,52 @@ $a->strings['Sent via the relay server %s <%s>'] = 'Прислано через $a->strings['Fetched'] = 'Загружено'; $a->strings['Fetched because of %s <%s>'] = 'Загружено из-за %s <%s>'; $a->strings['Stored because of a child post to complete this thread.'] = 'Загружено из-за комментария в этой ветке.'; +$a->strings['Local delivery'] = 'Местная доставка'; $a->strings['Stored because of your activity (like, comment, star, ...)'] = 'Загружено из-за ваших действий (лайк, комментарий, ...)'; $a->strings['Distributed'] = 'Распространено'; $a->strings['Pushed to us'] = 'Прислано нам'; +$a->strings['Pinned item'] = 'Закреплённая запись'; +$a->strings['View %s\'s profile @ %s'] = 'Просмотреть профиль %s [@ %s]'; +$a->strings['Categories:'] = 'Категории:'; +$a->strings['Filed under:'] = 'В рубрике:'; +$a->strings['%s from %s'] = '%s из %s'; +$a->strings['View in context'] = 'Смотреть в контексте'; +$a->strings['For you'] = 'Для Вас'; +$a->strings['Posts from contacts you interact with and who interact with you'] = 'Записи от людей, с которыми вы часто общаетесь'; +$a->strings['What\'s Hot'] = 'Популярное'; +$a->strings['Posts with a lot of interactions'] = 'Записи с большой активностью'; +$a->strings['Posts in %s'] = 'Записи от %s'; +$a->strings['Posts from your followers that you don\'t follow'] = 'Записи от ваших подписчиков, на которых вы не подписаны'; +$a->strings['Sharers of sharers'] = 'Друзья друзей'; +$a->strings['Posts from accounts that are followed by accounts that you follow'] = 'Записи от людей, на которых подписаны ваши контакты'; +$a->strings['Images'] = 'Картинки'; +$a->strings['Posts with images'] = 'Записи с изображениями'; +$a->strings['Audio'] = 'Аудио'; +$a->strings['Posts with audio'] = 'Записи с аудио'; +$a->strings['Videos'] = 'Видео'; +$a->strings['Posts with videos'] = 'Записи с видео'; +$a->strings['Local Community'] = 'Местное сообщество'; +$a->strings['Posts from local users on this server'] = 'Записи пользователей с этого сервера'; +$a->strings['Global Community'] = 'Глобальное сообщество'; +$a->strings['Posts from users of the whole federated network'] = 'Записи пользователей со всей федеративной сети'; +$a->strings['Latest Activity'] = 'Вся активность'; +$a->strings['Sort by latest activity'] = 'Отсортировать по свежей активности'; +$a->strings['Latest Posts'] = 'Новые записи'; +$a->strings['Sort by post received date'] = 'Отсортировать по времени получения записей'; +$a->strings['Latest Creation'] = 'По времени'; +$a->strings['Sort by post creation date'] = 'Отсортировать по времени создания записей'; +$a->strings['Personal'] = 'Личные'; +$a->strings['Posts that mention or involve you'] = 'Записи, которые упоминают вас или в которых вы участвуете'; +$a->strings['Starred'] = 'Избранное'; +$a->strings['Favourite Posts'] = 'Избранные записи'; $a->strings['General Features'] = 'Основные возможности'; $a->strings['Photo Location'] = 'Место фотографирования'; $a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'Метаданные фотографий обычно вырезаются. Эта настройка получает местоположение (если есть) до вырезки метаданных и связывает с координатами на карте.'; $a->strings['Trending Tags'] = 'Популярные тэги'; $a->strings['Show a community page widget with a list of the most popular tags in recent public posts.'] = 'Показать облако популярных тэгов на странице публичных записей сервера'; $a->strings['Post Composition Features'] = 'Составление сообщений'; -$a->strings['Auto-mention Forums'] = 'Автоматически отмечать форумы'; -$a->strings['Add/remove mention when a forum page is selected/deselected in ACL window.'] = 'Добавлять/удалять упоминание, когда страница форума выбрана/убрана в списке получателей.'; +$a->strings['Auto-mention Groups'] = 'Автоматически отмечать группы'; +$a->strings['Add/remove mention when a group page is selected/deselected in ACL window.'] = 'Добавлять/удалять упоминание, когда страница группы выбрана/убрана в списке получателей.'; $a->strings['Explicit Mentions'] = 'Явные отметки'; $a->strings['Add explicit mentions to comment box for manual control over who gets mentioned in replies.'] = 'Вставлять отметки пользователей в поле комментариев, чтобы иметь ручной контроль над тем, кто будет упомянут в ответе.'; $a->strings['Add an abstract from ActivityPub content warnings'] = 'Добавлять abstract для записей ActivityPub с content warning'; @@ -538,17 +474,24 @@ $a->strings['Post/Comment Tools'] = 'Инструменты записей/ко $a->strings['Post Categories'] = 'Категории записей'; $a->strings['Add categories to your posts'] = 'Добавить категории для ваших записей'; $a->strings['Advanced Profile Settings'] = 'Расширенные настройки профиля'; -$a->strings['List Forums'] = 'Список форумов'; -$a->strings['Show visitors public community forums at the Advanced Profile Page'] = 'Показывать посетителям публичные форумы на расширенной странице профиля.'; +$a->strings['List Groups'] = 'Список групп'; +$a->strings['Show visitors public groups at the Advanced Profile Page'] = 'Показывать посетителям публичные группы на расширенной странице профиля.'; $a->strings['Tag Cloud'] = 'Облако тэгов'; $a->strings['Provide a personal tag cloud on your profile page'] = 'Показывать ваше личное облако тэгов в вашем профиле'; $a->strings['Display Membership Date'] = 'Показывать дату регистрации'; $a->strings['Display membership date in profile'] = 'Дата вашей регистрации будет отображаться в вашем профиле'; -$a->strings['Forums'] = 'Форумы'; -$a->strings['External link to forum'] = 'Внешняя ссылка на форум'; +$a->strings['Advanced Calendar Settings'] = 'Дополнительные настройки календаря'; +$a->strings['Allow anonymous access to your calendar'] = 'Разрешить анонимный доступ к вашему календарю'; +$a->strings['Allows anonymous visitors to consult your calendar and your public events. Contact birthday events are private to you.'] = 'Разрешает анонимным пользователям просматривать ваш календарь и публичные мероприятия. Дни рождения контактов видны только вам.'; +$a->strings['Groups'] = 'Группы'; +$a->strings['External link to group'] = 'Внешняя ссылка на группу'; $a->strings['show less'] = 'показать меньше'; $a->strings['show more'] = 'показать больше'; +$a->strings['Create new group'] = 'Создать новую группу'; $a->strings['event'] = 'мероприятие'; +$a->strings['status'] = 'статус'; +$a->strings['photo'] = 'фото'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s tagged %2$s\'s %3$s в %4$s'; $a->strings['Follow Thread'] = 'Подписаться на обсуждение'; $a->strings['View Status'] = 'Просмотреть статус'; $a->strings['View Profile'] = 'Просмотреть профиль'; @@ -558,26 +501,33 @@ $a->strings['View Contact'] = 'Просмотреть контакт'; $a->strings['Send PM'] = 'Отправить ЛС'; $a->strings['Block'] = 'Заблокировать'; $a->strings['Ignore'] = 'Игнорировать'; +$a->strings['Collapse'] = 'Сворачивать'; +$a->strings['Ignore %s server'] = 'Игнорировать сервер %s '; $a->strings['Languages'] = 'Языки'; +$a->strings['Connect/Follow'] = 'Подключиться/Подписаться'; +$a->strings['Unable to fetch user.'] = 'Ошибка получения информации пользователя'; $a->strings['Nothing new here'] = 'Ничего нового здесь'; $a->strings['Go back'] = 'Назад'; $a->strings['Clear notifications'] = 'Стереть уведомления'; -$a->strings['@name, !forum, #tags, content'] = '@имя, !форум, #тег, контент'; +$a->strings['@name, !group, #tags, content'] = '@имя, !группа, #тег, контент'; $a->strings['Logout'] = 'Выход'; $a->strings['End this session'] = 'Завершить эту сессию'; $a->strings['Login'] = 'Вход'; $a->strings['Sign in'] = 'Вход'; -$a->strings['Status'] = 'Записи'; -$a->strings['Your posts and conversations'] = 'Ваши записи и диалоги'; +$a->strings['Conversations'] = 'Записи'; +$a->strings['Conversations you started'] = 'Ваши записи'; $a->strings['Profile'] = 'Информация'; $a->strings['Your profile page'] = 'Информация о вас'; +$a->strings['Photos'] = 'Фото'; $a->strings['Your photos'] = 'Ваши фотографии'; $a->strings['Media'] = 'Медиа'; $a->strings['Your postings with media'] = 'Ваши записи с фото и видео'; -$a->strings['Your events'] = 'Ваши события'; +$a->strings['Calendar'] = 'Календарь'; +$a->strings['Your calendar'] = 'Ваш календарь'; $a->strings['Personal notes'] = 'Личные заметки'; $a->strings['Your personal notes'] = 'Ваши личные заметки'; $a->strings['Home'] = 'Мой профиль'; +$a->strings['Home Page'] = 'Главная страница'; $a->strings['Register'] = 'Регистрация'; $a->strings['Create an account'] = 'Создать аккаунт'; $a->strings['Help'] = 'Помощь'; @@ -591,7 +541,6 @@ $a->strings['Tags'] = 'Тэги'; $a->strings['Contacts'] = 'Контакты'; $a->strings['Community'] = 'Сообщество'; $a->strings['Conversations on this and other servers'] = 'Диалоги на этом и других серверах'; -$a->strings['Events and Calendar'] = 'Календарь и события'; $a->strings['Directory'] = 'Каталог'; $a->strings['People directory'] = 'Каталог участников'; $a->strings['Information'] = 'Информация'; @@ -600,10 +549,12 @@ $a->strings['Terms of Service'] = 'Условия оказания услуг'; $a->strings['Terms of Service of this Friendica instance'] = 'Условия оказания услуг для этого узла Friendica'; $a->strings['Network'] = 'Новости'; $a->strings['Conversations from your friends'] = 'Сообщения ваших друзей'; +$a->strings['Your posts and conversations'] = 'Ваши записи и диалоги'; $a->strings['Introductions'] = 'Запросы'; $a->strings['Friend Requests'] = 'Запросы на добавление в список друзей'; $a->strings['Notifications'] = 'Уведомления'; $a->strings['See all notifications'] = 'Посмотреть все уведомления'; +$a->strings['Mark as seen'] = 'Отметить, как прочитанное'; $a->strings['Mark all system notifications as seen'] = 'Пометить все уведомления прочитанными'; $a->strings['Private mail'] = 'Личная почта'; $a->strings['Inbox'] = 'Входящие'; @@ -615,6 +566,8 @@ $a->strings['Account settings'] = 'Настройки аккаунта'; $a->strings['Manage/edit friends and contacts'] = 'Управление / редактирование друзей и контактов'; $a->strings['Admin'] = 'Администратор'; $a->strings['Site setup and configuration'] = 'Конфигурация сайта'; +$a->strings['Moderation'] = 'Модерация'; +$a->strings['Content and user moderation'] = 'Модерация пользователей и контента'; $a->strings['Navigation'] = 'Навигация'; $a->strings['Site map'] = 'Карта сайта'; $a->strings['Embedding disabled'] = 'Встраивание отключено'; @@ -633,7 +586,7 @@ $a->strings['Invalid source protocol'] = 'Неправильный проток $a->strings['Invalid link protocol'] = 'Неправильная протокольная ссылка'; $a->strings['Loading more entries...'] = 'Загружаю больше сообщений...'; $a->strings['The end'] = 'Конец'; -$a->strings['Follow'] = 'Подписаться'; +$a->strings['Follow'] = 'Подписка'; $a->strings['Add New Contact'] = 'Добавить контакт'; $a->strings['Enter address or web location'] = 'Введите адрес или веб-местонахождение'; $a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Пример: bob@example.com, http://example.com/barbara'; @@ -648,13 +601,15 @@ $a->strings['Find People'] = 'Поиск людей'; $a->strings['Enter name or interest'] = 'Введите имя или интерес'; $a->strings['Examples: Robert Morgenstein, Fishing'] = 'Примеры: Роберт Morgenstein, Рыбалка'; $a->strings['Find'] = 'Найти'; +$a->strings['Friend Suggestions'] = 'Предложения друзей'; $a->strings['Similar Interests'] = 'Похожие интересы'; $a->strings['Random Profile'] = 'Случайный профиль'; $a->strings['Invite Friends'] = 'Пригласить друзей'; $a->strings['Global Directory'] = 'Глобальный каталог'; $a->strings['Local Directory'] = 'Локальный каталог'; -$a->strings['Groups'] = 'Группы'; +$a->strings['Circles'] = 'Круги'; $a->strings['Everyone'] = 'Все'; +$a->strings['No relationship'] = 'Нет связи'; $a->strings['Relationships'] = 'Отношения'; $a->strings['All Contacts'] = 'Все контакты'; $a->strings['Protocols'] = 'Протоколы'; @@ -669,11 +624,13 @@ $a->strings['%d contact in common'] = [ 3 => '%d Контактов', ]; $a->strings['Archives'] = 'Архивы'; +$a->strings['On this date'] = 'В этот день'; $a->strings['Persons'] = 'Люди'; $a->strings['Organisations'] = 'Организации'; $a->strings['News'] = 'Новости'; $a->strings['Account Types'] = 'Тип учетной записи'; $a->strings['All'] = 'Все'; +$a->strings['Channels'] = 'Каналы'; $a->strings['Export'] = 'Экспорт'; $a->strings['Export calendar as ical'] = 'Экспортировать календарь в формат ical'; $a->strings['Export calendar as csv'] = 'Экспортировать календарь в формат csv'; @@ -694,10 +651,14 @@ $a->strings['Trending Tags (last %d hour)'] = [ 3 => 'Популярные тэги (за %d часов)', ]; $a->strings['More Trending Tags'] = 'Больше популярных тэгов'; +$a->strings['Post to group'] = 'Запись для группы'; +$a->strings['Mention'] = 'Отметка'; $a->strings['XMPP:'] = 'XMPP:'; $a->strings['Matrix:'] = 'Matrix:'; +$a->strings['Location:'] = 'Откуда:'; $a->strings['Network:'] = 'Сеть:'; -$a->strings['Unfollow'] = 'Отписаться'; +$a->strings['Unfollow'] = 'Отписка'; +$a->strings['View group'] = 'Просмотр группы'; $a->strings['Yourself'] = 'Вы'; $a->strings['Mutuals'] = 'Взаимные'; $a->strings['Post to Email'] = 'Отправить на Email'; @@ -705,8 +666,11 @@ $a->strings['Public'] = 'Публично'; $a->strings['This content will be shown to all your followers and can be seen in the community pages and by anyone with its link.'] = 'Это будет показано всем вашим подписчикам и так же будет доступно в общей ленте и по прямой ссылке.'; $a->strings['Limited/Private'] = 'Ограниченный доступ'; $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.'] = 'Это будет доступно только получателям, перечисленным в первом поле, за исключением тех, кто добавлен во второе поле. Нигде в открытом доступе это не появится.'; +$a->strings['Start typing the name of a contact or a circle to show a filtered list. You can also mention the special circles "Followers" and "Mutuals".'] = 'Начните набирать имя контакта или круга для появления списка. Вы так же можете выбрать специальные круги "Подписаны на вас" и "Взаимные".'; $a->strings['Show to:'] = 'Доступно:'; $a->strings['Except to:'] = 'За исключением:'; +$a->strings['CC: email addresses'] = 'Копии на email адреса'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Пример: bob@example.com, mary@example.com'; $a->strings['Connectors'] = 'Соединители'; $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.'] = 'Не получается записать файл конфигурации базы данных "config/local.config.php". Пожалуйста, создайте этот файл в корневом каталоге веб-сервера вручную, вставив в него приведённые здесь данные.'; $a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Вам может понадобиться импортировать файл "database.sql" вручную с помощью PhpMyAdmin или MySQL.'; @@ -815,6 +779,8 @@ $a->strings['Friendica can\'t display this page at the moment, please contact th $a->strings['Storage base path'] = 'Корневой каталог хранилища'; $a->strings['Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree'] = 'Каталог, куда сохраняются загруженные файлы. Для максимальной безопасности этот каталог должен быть размещён вне каталогов веб-сервера.'; $a->strings['Enter a valid existing folder'] = 'Введите путь к существующему каталогу'; +$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.'] = 'Обновления для версии %s не поддерживаются. Пожалуйста, обновитесь хотя бы до версии 2021.01 и дождитесь выполнения postupdate до версии 1383.'; +$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.'] = 'Обновления для postupdate версии %s не поддерживаются. Пожалуйста, обновитесь хотя бы до версии 2021.01 и дождитесь выполнения postupdate до версии 1383.'; $a->strings['%s: executing pre update %d'] = '%s: выполняется предварительное обновление %d'; $a->strings['%s: executing post update %d'] = '%s: выполняется завершение обновления %d'; $a->strings['Update %s failed. See error logs.'] = 'Обновление %s не удалось. Смотрите журнал ошибок.'; @@ -829,21 +795,10 @@ $a->strings[' $a->strings['The error message is\n[pre]%s[/pre]'] = 'Сообщение об ошибке\n[pre]%s[/pre]'; $a->strings['[Friendica Notify] Database update'] = '[Friendica Notify] Обновление базы данных'; $a->strings[' - The friendica database was successfully updated from %s to %s.'] = ' - База данных Френдики была успешно обновлена с версии %s на %s.'; -$a->strings['Error decoding account file'] = 'Ошибка расшифровки файла аккаунта'; -$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?'; -$a->strings['User \'%s\' already exists on this server!'] = 'Пользователь \'%s\' уже существует на этом сервере!'; -$a->strings['User creation error'] = 'Ошибка создания пользователя'; -$a->strings['%d contact not imported'] = [ - 0 => '%d контакт не импортирован', - 1 => '%d контакты не импортированы', - 2 => '%d контакты не импортированы', - 3 => '%d контакты не импортированы', -]; -$a->strings['User profile creation error'] = 'Ошибка создания профиля пользователя'; -$a->strings['Done. You can now login with your username and password'] = 'Завершено. Теперь вы можете войти с вашим логином и паролем'; + The friendica database was successfully updated from %s to %s.'] = ' + База данных Friendica была успешно обновлена с версии %s на %s.'; $a->strings['The database version had been set to %s.'] = 'Версия базы данных была установлена на %s.'; +$a->strings['The post update is at version %d, it has to be at %d to safely drop the tables.'] = 'Версия postupdate сейчас %d, она должна достигнуть %d для безопасного удаления таблиц.'; $a->strings['No unused tables found.'] = 'Неиспользуемые таблицы не найдены.'; $a->strings['These tables are not used for friendica and will be deleted when you execute "dbstructure drop -e":'] = 'Эти таблицы не используются Friendica и будут удалены, когда вы выполните команду "dbstructure drop -e":'; $a->strings['There are no tables on MyISAM or InnoDB with the Antelope file format.'] = 'В MyISAM или InnoDB нет таблиц в формате Antelope.'; @@ -863,14 +818,23 @@ $a->strings['Unprocessable Entity'] = 'Необрабатываемая сущн $a->strings['Unauthorized'] = 'Нет авторизации'; $a->strings['Internal Server Error'] = 'Внутренняя ошибка сервера'; $a->strings['Legacy module file not found: %s'] = 'Legacy-модуль не найден: %s'; -$a->strings['UnFollow'] = 'Отписаться'; +$a->strings['A deleted circle with this name was revived. Existing item permissions may apply to this circle and any future members. If this is not what you intended, please create another circle with a different name.'] = 'Удалённый круг с таким названием был восстановлен. Существующие права доступа могут применяться к этому кругу и любым будущим участникам. Если это не то, что вы хотели, пожалуйста, создайте ещё ​​один круг с другим названием.'; +$a->strings['Everybody'] = 'Все'; +$a->strings['edit'] = 'редактировать'; +$a->strings['add'] = 'добавить'; +$a->strings['Edit circle'] = 'Редактировать круг'; +$a->strings['Contacts not in any circle'] = 'Контакты вне кругов'; +$a->strings['Create a new circle'] = 'Создать круг'; +$a->strings['Circle Name: '] = 'Название круга:'; +$a->strings['Edit circles'] = 'Редактировать круги'; $a->strings['Approve'] = 'Одобрить'; $a->strings['Organisation'] = 'Организация'; -$a->strings['Forum'] = 'Форум'; +$a->strings['Group'] = 'Группа'; $a->strings['Disallowed profile URL.'] = 'Запрещенный URL профиля.'; $a->strings['Blocked domain'] = 'Заблокированный домен'; $a->strings['Connect URL missing.'] = 'Connect-URL отсутствует.'; $a->strings['The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.'] = 'Контакт не может быть добавлен. Пожалуйста проверьте учётные данные на странице Настройки -> Социальные сети.'; +$a->strings['Expected network %s does not match actual network %s'] = 'Ожидаемая сеть %s не соответствует обнаруженной сети %s'; $a->strings['The profile address specified does not provide adequate information.'] = 'Указанный адрес профиля не дает адекватной информации.'; $a->strings['No compatible communication protocols or feeds were discovered.'] = 'Обнаружены несовместимые протоколы связи или каналы.'; $a->strings['An author or name was not found.'] = 'Автор или имя не найдены.'; @@ -884,7 +848,13 @@ $a->strings['Starts:'] = 'Начало:'; $a->strings['Finishes:'] = 'Окончание:'; $a->strings['all-day'] = 'Весь день'; $a->strings['Sept'] = 'Сен'; +$a->strings['today'] = 'сегодня'; +$a->strings['month'] = 'мес.'; +$a->strings['week'] = 'неделя'; +$a->strings['day'] = 'день'; $a->strings['No events to display'] = 'Нет событий для показа'; +$a->strings['Access to this profile has been restricted.'] = 'Доступ к этому профилю ограничен.'; +$a->strings['Event not found.'] = 'Событие не найдено'; $a->strings['l, F j'] = 'l, j F'; $a->strings['Edit event'] = 'Редактировать мероприятие'; $a->strings['Duplicate event'] = 'Дубликат события'; @@ -896,20 +866,13 @@ $a->strings['Show map'] = 'Показать карту'; $a->strings['Hide map'] = 'Скрыть карту'; $a->strings['%s\'s birthday'] = 'день рождения %s'; $a->strings['Happy Birthday %s'] = 'С днём рождения %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.'] = 'Удаленная группа с таким названием была восстановлена. Существующие права доступа могут применяться к этой группе и любым будущим участникам. Если это не то, что вы хотели, пожалуйста, создайте еще ​​одну группу с другим названием.'; -$a->strings['Default privacy group for new contacts'] = 'Группа доступа по умолчанию для новых контактов'; -$a->strings['Everybody'] = 'Все'; -$a->strings['edit'] = 'редактировать'; -$a->strings['add'] = 'добавить'; -$a->strings['Edit group'] = 'Редактировать группу'; -$a->strings['Contacts not in any group'] = 'Контакты не состоят в группе'; -$a->strings['Create a new group'] = 'Создать новую группу'; -$a->strings['Group Name: '] = 'Название группы: '; -$a->strings['Edit groups'] = 'Редактировать группы'; $a->strings['Detected languages in this post:\n%s'] = 'Обнаруженные в этой записи языки:\n%s'; $a->strings['activity'] = 'активность'; $a->strings['comment'] = 'комментарий'; $a->strings['post'] = 'пост'; +$a->strings['%s is blocked'] = '%s заблокирован'; +$a->strings['%s is ignored'] = '%s игнорируется'; +$a->strings['Content from %s is collapsed'] = 'Запись от %s скрыта'; $a->strings['Content warning: %s'] = 'Предупреждение о контенте: %s'; $a->strings['bytes'] = 'байт'; $a->strings['%2$s (%3$d%%, %1$d vote)'] = [ @@ -939,11 +902,13 @@ $a->strings['%d voter.'] = [ $a->strings['Poll end: %s'] = 'Конец опроса: %s'; $a->strings['View on separate page'] = 'Посмотреть в отдельной вкладке'; $a->strings['[no subject]'] = '[без темы]'; +$a->strings['Wall Photos'] = 'Фото стены'; $a->strings['Edit profile'] = 'Редактировать профиль'; $a->strings['Change profile photo'] = 'Изменить фото профиля'; $a->strings['Homepage:'] = 'Домашняя страничка:'; $a->strings['About:'] = 'О себе:'; $a->strings['Atom feed'] = 'Фид Atom'; +$a->strings['This website has been verified to belong to the same person.'] = 'Принадлежность этой веб-страницы данному пользователю была подтверждена.'; $a->strings['F d'] = 'F d'; $a->strings['[today]'] = '[сегодня]'; $a->strings['Birthday Reminders'] = 'Напоминания о днях рождения'; @@ -980,7 +945,7 @@ $a->strings['Password can\'t be empty'] = 'Пароль не может быть $a->strings['Empty passwords are not allowed.'] = 'Пароль не должен быть пустым.'; $a->strings['The new password has been exposed in a public data dump, please choose another.'] = 'Новый пароль содержится в опубликованных списках украденных паролей, пожалуйста, используйте другой.'; $a->strings['The password length is limited to 72 characters.'] = 'Длина пароля ограничена 72 символами.'; -$a->strings['The password can\'t contain accentuated letters, white spaces or colons (:)'] = 'Пароль не может содержать символы с акцентами, пробелы или двоеточия (:)'; +$a->strings['The password can\'t contain white spaces nor accentuated letters'] = 'Пароль не может содержать пробелов и букв с акцентами.'; $a->strings['Passwords do not match. Password unchanged.'] = 'Пароли не совпадают. Пароль не изменен.'; $a->strings['An invitation is required.'] = 'Требуется приглашение.'; $a->strings['Invitation could not be verified.'] = 'Приглашение не может быть проверено.'; @@ -1012,7 +977,7 @@ $a->strings['An error occurred during registration. Please try again.'] = 'Ош $a->strings['An error occurred creating your default profile. Please try again.'] = 'Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз.'; $a->strings['An error occurred creating your self contact. Please try again.'] = 'При создании вашего контакта возникла проблема. Пожалуйста, попробуйте ещё раз.'; $a->strings['Friends'] = 'Друзья'; -$a->strings['An error occurred creating your default contact group. Please try again.'] = 'При создании группы контактов по-умолчанию возникла ошибка. Пожалуйста, попробуйте ещё раз.'; +$a->strings['An error occurred creating your default contact circle. Please try again.'] = 'При создании круга контактов по-умолчанию возникла ошибка. Пожалуйста, попробуйте ещё раз.'; $a->strings['Profile Photos'] = 'Фотографии профиля'; $a->strings[' Dear %1$s, @@ -1043,34 +1008,35 @@ $a->strings[' If you are new and do not know anybody here, they may help you to make some new and interesting friends. - If you ever want to delete your account, you can do so at %1$s/removeme + If you ever want to delete your account, you can do so at %1$s/settings/removeme Thank you and welcome to %4$s.'] = ' - Данные для входа в систему: + Ваши данные для входа: - Местоположение сайта: %1$s - Логин: %2$s + Адрес: %1$s + Имя для входа: %2$s Пароль: %3$s - Вы можете изменить пароль на странице "Настройки" после авторизации. + Вы можете сменить пароль после входа на странице настроек. + - Пожалуйста, уделите время ознакомлению с другими другие настройками аккаунта на этой странице. + Пожалуйста, ознакомьтесь с другими настройками на этой же странице. + Вы так же можете захотеть добавить некоторую информацию о вас + (на странице профиля), чтобы другие смогли легко найти вас. - Вы также можете захотеть добавить немного базовой информации к вашему стандартному профилю - (на странице "Информация") чтобы другим людям было проще вас найти. + Мы рекомендуем указать имя и поставить изображение профиля, + добавить несколько ключевых слов (очень полезны для поиска друзей), + вероятно, страну вашего проживания, если вы не хотите давать больше деталей. + - Мы рекомендуем указать ваше полное имя, добавить фотографию, - немного "ключевых слов" (очень полезно, чтобы завести новых друзей) - и возможно страну вашего проживания; если вы не хотите быть более конкретным. + Мы полностью уважаем вашу приватность и ничто из перечисленного не является обязательным. + Если вы новичок и не знаете здесь никого, то эти рекомендации + могут помочь найти вам новых интересных друзей. - Мы полностью уважаем ваше право на приватность, поэтому ничего из этого не является обязательным. - Если же вы новичок и никого не знаете, это может помочь - вам завести новых интересных друзей. + Если вы захотите удалить вашу учётную запись, то всегда сможете сделать это на %1$s/settings/removeme - Если вы когда-нибудь захотите удалить свой аккаунт, вы можете сделать это перейдя по ссылке %1$s/removeme - - Спасибо и добро пожаловать в %4$s.'; + Спасибо и добро пожаловать на %4$s.'; $a->strings['Registration details for %s'] = 'Подробности регистрации для %s'; $a->strings[' Dear %1$s, @@ -1123,76 +1089,836 @@ $a->strings[' If you are new and do not know anybody here, they may help you to make some new and interesting friends. - If you ever want to delete your account, you can do so at %3$s/removeme + If you ever want to delete your account, you can do so at %3$s/settings/removeme Thank you and welcome to %2$s.'] = ' - Данные для входа: + Ваши данные для входа: - Адрес сайта: %3$s - Имя: %1$s + Адрес: %3$s + Имя для входа: %1$s Пароль: %5$s - Вы можете сменить пароль в настройках учётной записи после входа. + Вы можете сменить пароль после входа на странице настроек. - Также обратите внимание на другие настройки на этой странице. + Пожалуйста, ознакомьтесь с другими настройками на этой же странице. - Вы можете захотеть добавить основную информацию о себе - на странице "Профиль", чтобы другие люди легко вас нашли. + Вы так же можете захотеть добавить некоторую информацию о вас + (на странице профиля), чтобы другие смогли легко найти вас. - Мы рекомендуем указать полное имя и установить фото профиля, - добавить ключевые слова для поиска друзей по интересам, - и, вероятно, страну вашего проживания. + Мы рекомендуем указать имя и поставить изображение профиля, + добавить несколько ключевых слов (очень полезны для поиска друзей), + вероятно, страну вашего проживания, если вы не хотите давать больше деталей. + - Мы уважаем вашу приватность и ничто из вышеуказанного не обязательно. - Если вы новичок и пока никого здесь не знаете, то это поможет - вам найти новых интересных друзей. + Мы полностью уважаем вашу приватность и ничто из перечисленного не является обязательным. + Если вы новичок и не знаете здесь никого, то эти рекомендации + могут помочь найти вам новых интересных друзей. - Если вы захотите удалить свою учётную запись, то сможете сделать это на %3$s/removeme + Если вы захотите удалить вашу учётную запись, то всегда сможете сделать это на %3$s/settings/removeme Спасибо и добро пожаловать на %2$s.'; -$a->strings['[%s] Notice of remote server domain pattern block list update'] = '[%s] Обновление списка блокировки серверов'; -$a->strings['Dear %s, - -You are receiving this email because the Friendica node at %s where you are registered as a user updated their remote server domain pattern block list. - -Please review the updated list at %s at your earliest convenience.'] = 'Уважаемый(ая) %s, - -Вы получили это письмо, так как на узле Friendica %s, где вы зарегистрированы, обновился список блокировки серверов. - -Пожалуйста, ознакомьтесь с новым списком по адресу %s.'; $a->strings['Addon not found.'] = 'Дополнение не найдено.'; $a->strings['Addon %s disabled.'] = 'Дополнение %s отключено.'; $a->strings['Addon %s enabled.'] = 'Дополнение %s включено.'; $a->strings['Disable'] = 'Отключить'; $a->strings['Enable'] = 'Включить'; -$a->strings['Administration'] = 'Администрация'; +$a->strings['Administration'] = 'Администрирование'; $a->strings['Addons'] = 'Дополнения'; $a->strings['Toggle'] = 'Переключить'; $a->strings['Author: '] = 'Автор:'; $a->strings['Maintainer: '] = 'Программа обслуживания: '; $a->strings['Addons reloaded'] = 'Дополнения перезагружены'; $a->strings['Addon %s failed to install.'] = 'Не удалось установить дополнение %s.'; +$a->strings['Save Settings'] = 'Сохранить настройки'; $a->strings['Reload active addons'] = 'Перезагрузить активные дополнения'; $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'] = 'На вашем узле пока нет доступных дополнений. Вы можете найти официальный репозиторий дополнений на %1$s и найти больше интересных дополнений в открытой библиотеке на %2$s'; +$a->strings['Update has been marked successful'] = 'Обновление было успешно отмечено'; +$a->strings['Database structure update %s was successfully applied.'] = 'Обновление базы данных %s успешно применено.'; +$a->strings['Executing of database structure update %s failed with error: %s'] = 'Выполнение обновления базы данных %s завершено с ошибкой: %s'; +$a->strings['Executing %s failed with error: %s'] = 'Выполнение %s завершено с ошибкой: %s'; +$a->strings['Update %s was successfully applied.'] = 'Обновление %s успешно применено.'; +$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'Процесс обновления %s не вернул статус. Не известно, выполнено, или нет.'; +$a->strings['There was no additional update function %s that needed to be called.'] = 'Не было процедур обновления %s, которые нужно было запустить.'; +$a->strings['No failed updates.'] = 'Неудавшихся обновлений нет.'; +$a->strings['Check database structure'] = 'Проверить структуру базы данных'; +$a->strings['Failed Updates'] = 'Неудавшиеся обновления'; +$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Эта цифра не включает обновления до 1139, которое не возвращает статус.'; +$a->strings['Mark success (if update was manually applied)'] = 'Отмечено успешно (если обновление было применено вручную)'; +$a->strings['Attempt to execute this update step automatically'] = 'Попытаться выполнить этот шаг обновления автоматически'; +$a->strings['Lock feature %s'] = 'Заблокировать %s'; +$a->strings['Manage Additional Features'] = 'Управление дополнительными возможностями'; +$a->strings['Other'] = 'Другой'; +$a->strings['unknown'] = 'неизвестно'; +$a->strings['%2$s total system'] = [ + 0 => '%2$s система всего', + 1 => '%2$s системы всего', + 2 => '%2$s систем всего', + 3 => '%2$s систем всего', +]; +$a->strings['%2$s active user last month'] = [ + 0 => '%2$s активный пользователь за месяц', + 1 => '%2$s активных пользователя за месяц', + 2 => '%2$s активных пользователей за месяц', + 3 => '%2$s активных пользователей за месяц', +]; +$a->strings['%2$s active user last six months'] = [ + 0 => '%2$s активный пользователь за полгода', + 1 => '%2$s активных пользователя за полгода', + 2 => '%2$s активных пользователей за полгода', + 3 => '%2$s активных пользователей за полгода', +]; +$a->strings['%2$s registered user'] = [ + 0 => '%2$s зарегистрированный пользователь', + 1 => '%2$s зарегистрированных пользователя', + 2 => '%2$s зарегистрированных пользователей', + 3 => '%2$s зарегистрированных пользователей', +]; +$a->strings['%2$s locally created post or comment'] = [ + 0 => '%2$s местная запись или комментарий', + 1 => '%2$s местных записей и комментариев', + 2 => '%2$s местных записей и комментариев', + 3 => '%2$s местных записей и комментариев', +]; +$a->strings['%2$s post per user'] = [ + 0 => '%2$s запись на пользователя', + 1 => '%2$s записи на пользователя', + 2 => '%2$s записей на пользователя', + 3 => '%2$s записей на пользователя', +]; +$a->strings['%2$s user per system'] = [ + 0 => '%2$s пользователь на систему', + 1 => '%2$s пользователя на систему', + 2 => '%2$s пользователей на систему', + 3 => '%2$s пользователей на систему', +]; +$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.'] = 'На этой странице вы можете увидеть немного статистики из известной вашему узлу федеративной сети. Эти данные неполные и только отражают ту часть сети, с которой ваш узел взаимодействовал.'; +$a->strings['Federation Statistics'] = 'Статистика федерации'; +$a->strings['Currently this node is aware of %2$s node (%3$s active users last month, %4$s active users last six months, %5$s registered users in total) from the following platforms:'] = [ + 0 => 'Сейчас этому узлу известно о %2$s узле (%3$s активных пользователей за месяц, %4$s активных пользователей за полгода, %5$s всего зарегистрированных) с платформой:', + 1 => 'Сейчас этому узлу известно о %2$s узлах (%3$s активных пользователей за месяц, %4$s активных пользователей за полгода, %5$s всего зарегистрированных) со следующими платформами:', + 2 => 'Сейчас этому узлу известно о%2$s узлах (%3$s активных пользователей за месяц, %4$s активных пользователей за полгода, %5$s всего зарегистрированных) со следующими платформами:', + 3 => 'Сейчас этому узлу известно о %2$s узлах (%3$s активных пользователей за месяц, %4$s активных пользователей за полгода, %5$s всего зарегистрированных) со следующими платформами:', +]; +$a->strings['The logfile \'%s\' is not writable. No logging possible'] = 'Файл журнала \'%s\' недоступен для записи. Журналирование невозможно.'; +$a->strings['PHP log currently enabled.'] = 'Лог PHP включен.'; +$a->strings['PHP log currently disabled.'] = 'Лог PHP выключен.'; +$a->strings['Logs'] = 'Журналы'; +$a->strings['Clear'] = 'Очистить'; +$a->strings['Enable Debugging'] = 'Включить отладку'; +$a->strings['Log file'] = 'Лог-файл'; +$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня.'; +$a->strings['Log level'] = 'Уровень лога'; +$a->strings['PHP logging'] = 'PHP логирование'; +$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.'] = 'Чтобы временно включить журналирование ошибок и предупреждений PHP, вы можете добавить следующее в файл index.php вашей установки. Имя файла, установленное в \'error_log\', задаётся относительно каталога установки Френдики и у веб-сервера должно быть разрешение на запись в этот файл. Настройка 1\' для \'log_errors\' и \'display_errors\' включает журналирование и отображение ошибок, \'0\' отключает.'; +$a->strings['Error trying to open %1$s log file.
    Check to see if file %1$s exist and is readable.'] = 'Ошибка при открытии файла журнала %1$s.
    Проверьте, что файл %1$s существует и может быть прочитан веб-сервером.'; +$a->strings['Couldn\'t open %1$s log file.
    Check to see if file %1$s is readable.'] = 'Не получилось открыть файл журнала %1$s. Проверьте, что файл %1$s может быть прочитан веб-сервером.'; +$a->strings['View Logs'] = 'Просмотр журналов'; +$a->strings['Search in logs'] = 'Поиск в журналах событий'; +$a->strings['Show all'] = 'Показать все'; +$a->strings['Date'] = 'Дата'; +$a->strings['Level'] = 'Уровень'; +$a->strings['Context'] = 'Контекст'; +$a->strings['ALL'] = 'ВСЕ'; +$a->strings['View details'] = 'Посмотреть детали'; +$a->strings['Click to view details'] = 'Нажмите для просмотра подробностей'; +$a->strings['Event details'] = 'Сведения о мероприятии'; +$a->strings['Data'] = 'Данные'; +$a->strings['Source'] = 'Источник'; +$a->strings['File'] = 'Файл'; +$a->strings['Line'] = 'Строка'; +$a->strings['Function'] = 'Функция'; +$a->strings['UID'] = 'UID'; +$a->strings['Process ID'] = 'ID процесса'; +$a->strings['Close'] = 'Закрыть'; +$a->strings['Inspect Deferred Worker Queue'] = 'Посмотреть очередь отложенных заданий'; +$a->strings['This page lists the deferred worker jobs. This are jobs that couldn\'t be executed at the first time.'] = 'На этой странице отображаюттся отложенные задания планировщика. Эти задания по какой-то причине не были выполнены с первого раза.'; +$a->strings['Inspect Worker Queue'] = 'Посмотреть очередь заданий'; +$a->strings['This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you\'ve set up during install.'] = 'На этой странице отображаются задания планировщика, которые в настоящий момент стоят в очереди на выполнение. Эти задания запускаются посредством планировщика cron, который вы настроили при установке.'; +$a->strings['ID'] = 'ID'; +$a->strings['Command'] = 'Команда'; +$a->strings['Job Parameters'] = 'Параметры задания'; +$a->strings['Created'] = 'Создано'; +$a->strings['Priority'] = 'Приоритет'; +$a->strings['%s is no valid input for maximum image size'] = '%s недопустимое значение для максимального размера изображений'; +$a->strings['No special theme for mobile devices'] = 'Нет специальной темы для мобильных устройств'; +$a->strings['%s - (Experimental)'] = '%s - (экспериментально)'; +$a->strings['No community page'] = 'Нет общей ленты записей'; +$a->strings['No community page for visitors'] = 'Нет общей ленты записей для гостей'; +$a->strings['Public postings from users of this site'] = 'Публичные записи от пользователей этого узла'; +$a->strings['Public postings from the federated network'] = 'Публичные записи федеративной сети'; +$a->strings['Public postings from local users and the federated network'] = 'Публичные записи от местных пользователей и федеративной сети.'; +$a->strings['Multi user instance'] = 'Многопользовательский вид'; +$a->strings['Closed'] = 'Закрыто'; +$a->strings['Requires approval'] = 'Требуется подтверждение'; +$a->strings['Open'] = 'Открыто'; +$a->strings['Don\'t check'] = 'Не проверять'; +$a->strings['check the stable version'] = 'проверить стабильную версию'; +$a->strings['check the development version'] = 'проверить development-версию'; +$a->strings['none'] = 'нет'; +$a->strings['Local contacts'] = 'Местные контакты'; +$a->strings['Site'] = 'Сайт'; +$a->strings['General Information'] = 'Общая информация'; +$a->strings['Republish users to directory'] = 'Переопубликовать пользователей в каталог'; +$a->strings['Registration'] = 'Регистрация'; +$a->strings['File upload'] = 'Загрузка файлов'; +$a->strings['Policies'] = 'Политики'; +$a->strings['Advanced'] = 'Дополнительно'; +$a->strings['Auto Discovered Contact Directory'] = 'Каталог автообнаружения контактов'; +$a->strings['Performance'] = 'Производительность'; +$a->strings['Worker'] = 'Обработчик'; +$a->strings['Message Relay'] = 'Ретранслятор записей'; +$a->strings['Use the command "console relay" in the command line to add or remove relays.'] = 'Используйте команду "console relay" в командной строке для добавления и удаления ретрансляторов.'; +$a->strings['The system is not subscribed to any relays at the moment.'] = 'Система сейчас не подписана на ретрансляторы.'; +$a->strings['The system is currently subscribed to the following relays:'] = 'Система сейчас подписана на следующие ретрансляторы:'; +$a->strings['Relocate Node'] = 'Переместить узел'; +$a->strings['Relocating your node enables you to change the DNS domain of this node and keep all the existing users and posts. This process takes a while and can only be started from the relocate console command like this:'] = 'Перемещение узла позволяет вам изменить DNS-имя этого узла с сохранением всех пользователей и записей. Этот процесс может занять много времени и может быть запущен только с помощью команды консоли:'; +$a->strings['(Friendica directory)# bin/console relocate https://newdomain.com'] = '(каталог Friendica)# bin/console relocate https://newdomain.com'; +$a->strings['Site name'] = 'Название сайта'; +$a->strings['Sender Email'] = 'Системный Email'; +$a->strings['The email address your server shall use to send notification emails from.'] = 'Адрес с которого будут приходить письма пользователям.'; +$a->strings['Name of the system actor'] = 'Имя системного аккаунта'; +$a->strings['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.'] = 'Имя внутреннего системного аккаунта, который используется для выполнения запросов ActivityPub. Это должно быть не занятое имя пользователя. После установки его нельзя изменить снова.'; +$a->strings['Banner/Logo'] = 'Баннер/Логотип'; +$a->strings['Email Banner/Logo'] = 'Лого для писем'; +$a->strings['Shortcut icon'] = 'Иконка сайта'; +$a->strings['Link to an icon that will be used for browsers.'] = 'Ссылка на иконку, которая будет использоваться браузерами.'; +$a->strings['Touch icon'] = 'Иконка веб-приложения'; +$a->strings['Link to an icon that will be used for tablets and mobiles.'] = 'Ссылка на иконку, которая будет использоваться для создания ярлыка на смартфонах и планшетах.'; +$a->strings['Additional Info'] = 'Дополнительная информация'; +$a->strings['For public servers: you can add additional information here that will be listed at %s/servers.'] = 'Для публичных серверов: здесь вы можете разместить дополнительную информацию и она будет доступна по %s/servers.'; +$a->strings['System language'] = 'Системный язык'; +$a->strings['System theme'] = 'Системная тема'; +$a->strings['Default system theme - may be over-ridden by user profiles - Change default theme settings'] = 'Тема по-умолчанию - пользователи могут менять её в настройках своего профиля - Изменить тему по-умолчанию'; +$a->strings['Mobile system theme'] = 'Мобильная тема системы'; +$a->strings['Theme for mobile devices'] = 'Тема для мобильных устройств'; +$a->strings['Force SSL'] = 'SSL принудительно'; +$a->strings['Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'] = 'Форсировать не-SSL запросы как SSL. Внимание: на некоторых системах это может привести к бесконечным циклам.'; +$a->strings['Show help entry from navigation menu'] = 'Показать пункт "помощь" в меню навигации'; +$a->strings['Displays the menu entry for the Help pages from the navigation menu. It is always accessible by calling /help directly.'] = 'Показывает пункт меню для страницы справки из меню навигации. Она так же всегда доступна по прямой ссылке /help.'; +$a->strings['Single user instance'] = 'Однопользовательский режим'; +$a->strings['Make this instance multi-user or single-user for the named user'] = 'Сделать этот экземпляр многопользовательским, или однопользовательским для названного пользователя'; +$a->strings['Maximum image size'] = 'Максимальный размер изображения'; +$a->strings['Maximum image length'] = 'Максимальная длина картинки'; +$a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Максимальная длина в пикселях для длинной стороны загруженных изображений. По умолчанию равно -1, что означает отсутствие ограничений.'; +$a->strings['JPEG image quality'] = 'Качество JPEG изображения'; +$a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = 'Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По умолчанию 100, что означает полное качество.'; +$a->strings['Register policy'] = 'Политика регистрация'; +$a->strings['Maximum Users'] = 'Максимум пользователей'; +$a->strings['If defined, the register policy is automatically closed when the given number of users is reached and reopens the registry when the number drops below the limit. It only works when the policy is set to open or close, but not when the policy is set to approval.'] = 'Если включено, регистрация будет автоматически закрываться при достижении указанного числа пользователей и вновь открываться, если число пользователей снова снизится. Это работает только, если регистрация установлена как открытая или закрытая, но не когда включено её одобрение.'; +$a->strings['Maximum Daily Registrations'] = 'Максимальное число регистраций в день'; +$a->strings['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.'] = 'Если регистрация разрешена, этот параметр устанавливает максимальное количество новых регистраций пользователей в день. Если регистрация закрыта, эта опция не имеет никакого эффекта.'; +$a->strings['Register text'] = 'Текст регистрации'; +$a->strings['Will be displayed prominently on the registration page. You can use BBCode here.'] = 'Будет отображаться на видном месте на странице регистрации. Вы можете использовать BBCode для оформления.'; +$a->strings['Forbidden Nicknames'] = 'Запрещённые ники'; +$a->strings['Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142.'] = 'Имена, перечисленные через запятую, которые запрещены для регистрации на этом узле. Предустановленный список соответствует RFC 2142.'; +$a->strings['Accounts abandoned after x days'] = 'Аккаунт считается после x дней не воспользованным'; +$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = 'Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени.'; +$a->strings['Allowed friend domains'] = 'Разрешенные домены друзей'; +$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами.'; +$a->strings['Allowed email domains'] = 'Разрешенные почтовые домены'; +$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами.'; +$a->strings['No OEmbed rich content'] = 'Не показывать контент OEmbed'; +$a->strings['Don\'t show the rich content (e.g. embedded PDF), except from the domains listed below.'] = 'Не показывать внедрённое содержимое (например, PDF), если источником не являются домены из списка ниже.'; +$a->strings['Trusted third-party domains'] = 'Доверенные внешние домены'; +$a->strings['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.'] = 'Список доменов через запятую, данные с которых будет разрешено внедрять в записи через OEmbed. Все поддомены этих доменов будут так же разрешены.'; +$a->strings['Block public'] = 'Блокировать общественный доступ'; +$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Отметьте, чтобы заблокировать публичный доступ ко всем иным публичным личным страницам на этом сайте, если вы не вошли на сайт.'; +$a->strings['Force publish'] = 'Принудительная публикация'; +$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта.'; +$a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Включение этого может нарушить законы о личных данных, например, GDPR.'; +$a->strings['Global directory URL'] = 'URL глобального каталога'; +$a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'Ссылка глобального каталога. Если не указано, то глобальный каталог будет полностью недоступен.'; +$a->strings['Private posts by default for new users'] = 'Частные сообщения по умолчанию для новых пользователей'; +$a->strings['Set default post permissions for all new members to the default privacy circle rather than public.'] = 'Установить права на создание записей по-умолчанию для всех участников в приватный круг, а не для публично.'; +$a->strings['Don\'t include post content in email notifications'] = 'Не включать текст сообщения в email-оповещение.'; +$a->strings['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.'] = 'Не включать содержание сообщения/комментария/личного сообщения и т.д.. в уведомления электронной почты, отправленных с сайта, в качестве меры конфиденциальности.'; +$a->strings['Disallow public access to addons listed in the apps menu.'] = 'Запретить публичный доступ к аддонам, перечисленным в меню приложений.'; +$a->strings['Checking this box will restrict addons listed in the apps menu to members only.'] = 'При установке этого флажка, будут ограничены аддоны, перечисленные в меню приложений, только для участников.'; +$a->strings['Don\'t embed private images in posts'] = 'Не вставлять личные картинки в записи'; +$a->strings['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.'] = 'Не заменяйте локально расположенные фотографии в записях на внедрённые копии изображений. Это означает, что контакты, которые получают сообщения, содержащие личные фотографии, будут вынуждены идентефицироваться и грузить каждое изображение, что может занять некоторое время.'; +$a->strings['Explicit Content'] = 'Контент для взрослых'; +$a->strings['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.'] = 'Включите, если ваш узел будет содержать преимущественно откровенный/чувствительный контент, который не должен быть показан несовершеннолетним. Эта информация появится в информации об узле и может быть использована, например, в глобальном каталоге для скрытия вашего узла при подборе узлов для регистрации. Так же пометка об этом появится на странице регистрации.'; +$a->strings['Proxify external content'] = 'Проксировать внешние данные'; +$a->strings['Route external content via the proxy functionality. This is used for example for some OEmbed accesses and in some other rare cases.'] = 'Отображать внешний контент через встроенное прокси. Это используется для некоторых случаев отображения OEmbed и некоторых других.'; +$a->strings['Cache contact avatars'] = 'Кэшировать аватары'; +$a->strings['Locally store the avatar pictures of the contacts. This uses a lot of storage space but it increases the performance.'] = 'Локально сохранять аватары контактов. Это потребует существенного расхода места на диске, но увеличит производительность.'; +$a->strings['Allow Users to set remote_self'] = 'Разрешить пользователям установить remote_self'; +$a->strings['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.'] = 'Если включено, любой пользователь сможет пометить любой контакт как "remote_self" в расширенных настройках контакта. Установка такого параметра приводит к тому, что все записи помеченного контакта публикуются в ленте от имени пользователя.'; +$a->strings['Enable multiple registrations'] = 'Разрешить несколько регистраций'; +$a->strings['Enable users to register additional accounts for use as pages.'] = 'Разрешить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц.'; +$a->strings['Enable OpenID'] = 'Включить OpenID'; +$a->strings['Enable OpenID support for registration and logins.'] = 'Включить поддержку OpenID для регистрации и входа.'; +$a->strings['Enable Fullname check'] = 'Включить проверку полноты имени'; +$a->strings['Enable check to only allow users to register with a space between the first name and the last name in their full name.'] = 'Проверять при регистрации, чтобы пользователь имел пробел в указанном имени между именем и фамилией.'; +$a->strings['Email administrators on new registration'] = 'Уведомлять администраторов о новых регистрациях'; +$a->strings['If enabled and the system is set to an open registration, an email for each new registration is sent to the administrators.'] = 'Если включено и регистрации открыты, то о каждой новой регистрации будет сообщаться администраторам по электронной почте.'; +$a->strings['Community pages for visitors'] = 'Публичная лента для посетителей'; +$a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = 'Какие публичные ленты будут доступны для гостей. Местные пользователи всегда видят обе ленты.'; +$a->strings['Posts per user on community page'] = 'Число записей на пользователя в публичной ленте'; +$a->strings['The maximum number of posts per user on the community page. (Not valid for "Global Community")'] = 'Максимальное число записей от одного пользователя в публичной ленте узла. (Не применяется к федеративной публичной ленте).'; +$a->strings['Enable Mail support'] = 'Включить поддержку электронной почты'; +$a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'Включает встроенную поддержку электронной почты, позволяющую работать с папками IMAP и отвечать по почте.'; +$a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'Поддержка почты не может быть включена, так как не установлен модуль PHP IMAP.'; +$a->strings['Enable OStatus support'] = 'Включить поддержку OStatus'; +$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'Включить встроенную поддержку OStatus (StatusNet, GNU Social и т.п.). Всё общение в OStatus происходит публично.'; +$a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Поддержка Diaspora не может быть включена, так как Френдика была установлена в подкаталог.'; +$a->strings['Enable Diaspora support'] = 'Включить поддержку Diaspora'; +$a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'Включить встроенную поддержку Diaspora для общения с серверами сети Diaspora.'; +$a->strings['Verify SSL'] = 'Проверка SSL'; +$a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = 'Если хотите, вы можете включить строгую проверку сертификатов. Это будет означать, что вы не сможете соединиться (вообще) с сайтами, имеющими само-подписанный SSL сертификат.'; +$a->strings['Proxy user'] = 'Прокси пользователь'; +$a->strings['User name for the proxy server.'] = 'Имя пользователя прокси'; +$a->strings['Proxy URL'] = 'Прокси URL'; +$a->strings['If you want to use a proxy server that Friendica should use to connect to the network, put the URL of the proxy here.'] = 'Если вы хотите указать прокси, который Friendica будет использовать для выхода в сеть, укажите здесь его URL.'; +$a->strings['Network timeout'] = 'Тайм-аут сети'; +$a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется).'; +$a->strings['Maximum Load Average'] = 'Средняя максимальная нагрузка'; +$a->strings['Maximum system load before delivery and poll processes are deferred - default %d.'] = 'Максимальная нагрузка на систему, прежде чем задания опроса и доставки начнут приостанавливаться - по-умолчанию %d.'; +$a->strings['Minimal Memory'] = 'Минимум памяти'; +$a->strings['Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).'] = 'Минимально допустимая свободная память ОЗУ для запуска заданий. Для работы нужен доступ в /proc/meminfo - по-умолчанию 0 (отключено).'; +$a->strings['Periodically optimize tables'] = 'Периодически оптимизировать таблицы'; +$a->strings['Periodically optimize tables like the cache and the workerqueue'] = 'Периодически оптимизировать таблицы, такие как cache и workerqueue'; +$a->strings['Discover followers/followings from contacts'] = 'Обнаруживать подписчиков и друзей для контактов'; +$a->strings['If enabled, contacts are checked for their followers and following contacts.'] = 'Если включено, контакты будут проверяться на наличие подписчиков и друзей.'; +$a->strings['None - deactivated'] = 'None - выключено.'; +$a->strings['Local contacts - contacts of our local contacts are discovered for their followers/followings.'] = 'Local contacts - местные контакты будут проверяться на наличие подписчиков и друзей.'; +$a->strings['Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings.'] = 'Interactors - местные контакты и те контакты, кто взаимодействовал с локально видимыми записями, будут проверяться на наличие подписчиков и друзей.'; +$a->strings['Synchronize the contacts with the directory server'] = 'Синхронизировать контакты с сервером каталога'; +$a->strings['if enabled, the system will check periodically for new contacts on the defined directory server.'] = 'Если включено, то система будет периодически проверять новые контакты на указанном сервере каталога.'; +$a->strings['Days between requery'] = 'Интервал запросов'; +$a->strings['Number of days after which a server is requeried for his contacts.'] = 'Интервал в днях, с которым контакты сервера будут перепроверяться.'; +$a->strings['Discover contacts from other servers'] = 'Обнаруживать контакты с других серверов'; +$a->strings['Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers.'] = 'Периодически опрашивать контакты с других серверов. В них входят Friendica, Mastodon и Hubzilla.'; +$a->strings['Search the local directory'] = 'Искать в местном каталоге'; +$a->strings['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.'] = 'Искать в локальном каталоге вместо глобального. При локальном поиске каждый запрос будет выполняться в глобальном каталоге в фоновом режиме. Это улучшит результаты поиска при повторных запросах.'; +$a->strings['Publish server information'] = 'Опубликовать информацию о сервере'; +$a->strings['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.'] = 'Если включено, общая информация о сервере и статистика будут опубликованы. В данных содержатся имя сервера, версия ПО, число пользователей с открытыми профилями, число записей, подключенные протоколы и соединители. Подробности смотрите на the-federation.info.'; +$a->strings['Check upstream version'] = 'Проверять версию в репозитории'; +$a->strings['Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview.'] = 'Включает проверку новых версий Френдики на Github. Если появится новая версия, вы получите уведомление в панели администратора.'; +$a->strings['Suppress Tags'] = 'Скрывать тэги'; +$a->strings['Suppress showing a list of hashtags at the end of the posting.'] = 'Отключить показ списка тэгов в конце записей.'; +$a->strings['Clean database'] = 'Очистка базы данных'; +$a->strings['Remove old remote items, orphaned database records and old content from some other helper tables.'] = 'Удалять старые записи, полученные с других серверов, ненужные записи в базе данных.'; +$a->strings['Lifespan of remote items'] = 'Время жизни записей с других серверов'; +$a->strings['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.'] = 'Если очистка базы данных включена, эта настройка определяет число дней, после которого записи будут удаляться. Собственные записи, записи с закладками, записи в папках не удаляются. 0 отключает очистку.'; +$a->strings['Lifespan of unclaimed items'] = 'Время жизни ничейных элементов'; +$a->strings['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.'] = 'Когда очистка базы данных включена, эта настройка определяет число дней, после которого ничейные элементы (в основном, данные с ретранслятора) будут удалены. Значение по умолчанию 90 дней. Приравнивается ко времени жизни элементов других серверов, если выставлено в 0.'; +$a->strings['Lifespan of raw conversation data'] = 'Время жизни необработанных данных коммуникаций.'; +$a->strings['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.'] = 'Эти данные используются для ActivityPub и OStatus, а так же для диагностики. Обычно их можно спокойно удалять после 14 дней, значение по-умолчанию 90 дней.'; +$a->strings['Maximum numbers of comments per post'] = 'Максимальное число комментариев для записи'; +$a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Сколько комментариев должно быть показано для каждой записи? Значение по-умолчанию: 100.'; +$a->strings['Maximum numbers of comments per post on the display page'] = 'Максимальное число комментариев на запись при его просмотре'; +$a->strings['How many comments should be shown on the single view for each post? Default value is 1000.'] = 'Сколько комментариев показывать при просмотре записи на отдельной странице? Значение по-умолчанию: 1000.'; +$a->strings['Temp path'] = 'Временная папка'; +$a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Если на вашей системе веб-сервер не имеет доступа к системному пути tmp, введите здесь другой путь.'; +$a->strings['Only search in tags'] = 'Искать только в тегах'; +$a->strings['On large systems the text search can slow down the system extremely.'] = 'На больших системах текстовый поиск может сильно замедлить систему.'; +$a->strings['Generate counts per contact circle when calculating network count'] = 'Показывать счётчики записей по кругам при обновлении страницы сети'; +$a->strings['On systems with users that heavily use contact circles the query can be very expensive.'] = 'Для систем, где активно используются круги контактов, это может быть затратно по ресурсам.'; +$a->strings['Maximum number of parallel workers'] = 'Максимальное число параллельно работающих worker\'ов'; +$a->strings['On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d.'] = 'На shared-хостингах установите это в %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['Direct relay transfer'] = 'Прямая ретрансляция'; +$a->strings['Enables the direct transfer to other servers without using the relay servers'] = 'Разрешает прямую отправку на другие серверы без использования ретрансляторов'; +$a->strings['Relay scope'] = 'Область ретрансляции'; +$a->strings['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.'] = 'Допустимые значения "all" или "tags". "all" означает, что любые публичные записи будут получены. "tags" включает приём публичных записей с выбранными тэгами.'; +$a->strings['Disabled'] = 'Отключено'; +$a->strings['all'] = 'all'; +$a->strings['tags'] = 'tags'; +$a->strings['Server tags'] = 'Тэги сервера'; +$a->strings['Comma separated list of tags for the "tags" subscription.'] = 'Список тэгов, разделённых запятыми, используемый для подписки в режиме "tags"'; +$a->strings['Deny Server tags'] = 'Запретить тэги сервера'; +$a->strings['Comma separated list of tags that are rejected.'] = 'Разделённый запятыми список тэгов, которые будут отбрасываться.'; +$a->strings['Allow user tags'] = 'Разрешить пользовательские тэги'; +$a->strings['If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".'] = 'Если включено, то теги. на которые подписались пользователи, будут добавлены в подписку в дополнение к тегам сервера.'; +$a->strings['Start Relocation'] = 'Начать перемещение'; +$a->strings['Storage backend, %s is invalid.'] = 'Бэкенд хранилища, %s неправильный.'; +$a->strings['Storage backend %s error: %s'] = 'Бэкенд хранилища %s вызвал ошибку: %s'; +$a->strings['Invalid storage backend setting value.'] = 'Недопустимое значение типа хранилища.'; +$a->strings['Current Storage Backend'] = 'Текущий бэкенд хранилища'; +$a->strings['Storage Configuration'] = 'Конфигурация хранилища'; +$a->strings['Storage'] = 'Хранилище'; +$a->strings['Save & Use storage backend'] = 'Сохранить и использовать этот бэкенд'; +$a->strings['Use storage backend'] = 'Использовать этот бэкенд'; +$a->strings['Save & Reload'] = 'Сохранить и применить'; +$a->strings['This backend doesn\'t have custom settings'] = 'Этот бэкенд не имеет дополнительных настроек.'; +$a->strings['Database (legacy)'] = 'База данных (устаревшее)'; +$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.
    '] = 'Ваше значение table_definition_cache слишком маленькое (%d). Это может вызвать ошибку базы данных "Prepared statement needs to be re-prepared". Пожалуйста, установите его хотя бы в %d. Смотрите здесь для дополнительной информации.
    '; +$a->strings['There is a new version of Friendica available for download. Your current version is %1$s, upstream version is %2$s'] = 'Новая версия Friendica доступна для загрузки. Ваша текущая версия %1$s, последняя версия %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.'] = 'Обновление базы данных завершилось неудачно. Пожалуйста, запустите "php bin/console.php dbstructure update" в командной строке и посмотрите какие ошибки там могут появиться.'; +$a->strings['The worker was never executed. Please check your database structure!'] = 'Фоновые задания ни разу не выполнялись. Пожалуйста, проверьте структуру базы данных!'; +$a->strings['The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings.'] = 'Последний раз фоновое задание выполнялось %s UTC. Это более одного часа назад. Пожалуйста, проверьте настройки crontab.'; +$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.'] = '%s не доступен на вашей системе. Это серьёзная проблема, которая мешает межсерверной коммуникации. Посмотрите страницу установки для помощи.'; +$a->strings['Message queues'] = 'Очереди сообщений'; +$a->strings['Server Settings'] = 'Настройки сервера'; +$a->strings['Version'] = 'Версия'; +$a->strings['Active addons'] = 'Активные дополнения'; +$a->strings['Theme %s disabled.'] = 'Тема %s отключена.'; +$a->strings['Theme %s successfully enabled.'] = 'Тема %s успешно включена.'; +$a->strings['Theme %s failed to install.'] = 'Не удалось установить тему %s.'; +$a->strings['Screenshot'] = 'Скриншот'; +$a->strings['Themes'] = 'Темы'; +$a->strings['Unknown theme.'] = 'Неизвестная тема.'; +$a->strings['Themes reloaded'] = 'Темы перезагружены'; +$a->strings['Reload active themes'] = 'Перезагрузить активные темы'; +$a->strings['No themes found on the system. They should be placed in %1$s'] = 'Ни одной темы не найдено на сервере. Они должны быть размещены в %1$s'; +$a->strings['[Experimental]'] = '[экспериментально]'; +$a->strings['[Unsupported]'] = '[Неподдерживаемое]'; +$a->strings['Display Terms of Service'] = 'Показать Условия оказания услуг'; +$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->strings['Display Privacy Statement'] = 'Показать Положение о конфиденциальности'; +$a->strings['Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR.'] = 'Показать различную информацию о соответствии узла различным требованиям конфиденциальности, например, EU-GDPR.'; +$a->strings['Privacy Statement Preview'] = 'Предпросмотр Положения о конфиденциальности'; +$a->strings['The Terms of Service'] = 'Условия оказания услуг'; +$a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = 'Введите здесь текст Условий оказания услуг для вашего узла. Можно использовать BBCode. Заголовки отдельных секций должны использовать [h2] и ниже.'; +$a->strings['The rules'] = 'Правила сервера'; +$a->strings['Enter your system rules here. Each line represents one rule.'] = 'Введите здесь правила поведения на сервере. Каждая линия - отдельное правило.'; +$a->strings['Only starting posts can be bookmarked'] = 'Только заглавные записи могут быть добавлены в закладки'; +$a->strings['Only starting posts can be muted'] = 'Только заглавные записи можно заглушить'; +$a->strings['Posts from %s can\'t be shared'] = 'Записями от %s нельзя поделиться'; +$a->strings['Only starting posts can be unbookmarked'] = 'Только заглавные записи можно удалить из закладок'; +$a->strings['Only starting posts can be unmuted'] = 'Только с заглавных записей можно снять заглушение'; +$a->strings['Posts from %s can\'t be unshared'] = 'Нельзя отменить продвижение для записей от %s '; +$a->strings['Contact not found'] = 'Контакт не найден'; +$a->strings['No installed applications.'] = 'Нет установленных приложений.'; +$a->strings['Applications'] = 'Приложения'; +$a->strings['Item was not found.'] = 'Пункт не был найден.'; +$a->strings['Please login to continue.'] = 'Пожалуйста, войдите для продолжения.'; +$a->strings['You don\'t have access to administration pages.'] = 'У вас нет доступа к страницам администратора.'; +$a->strings['Submanaged account can\'t access the administration pages. Please log back in as the main account.'] = 'Дополнительная учётная запись не имеет доступа к административным страницам. Пожалуйста, зайдите непосредственно как администратор.'; +$a->strings['Overview'] = 'Общая информация'; +$a->strings['Configuration'] = 'Конфигурация'; +$a->strings['Additional features'] = 'Дополнительные возможности'; +$a->strings['Database'] = 'База данных'; +$a->strings['DB updates'] = 'Обновление БД'; +$a->strings['Inspect Deferred Workers'] = 'Посмотреть отложенные задания'; +$a->strings['Inspect worker Queue'] = 'Посмотреть очередь заданий'; +$a->strings['Diagnostics'] = 'Диагностика'; +$a->strings['User registrations waiting for confirmation'] = 'Регистрации пользователей, ожидающие подтверждения'; +$a->strings['Too Many Requests'] = 'Слишком много запросов'; +$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Дневной лимит в %d запись достигнут. Запись отклонена.', + 1 => 'Дневной лимит в %d записи достигнут. Запись отклонена.', + 2 => 'Дневной лимит в %d записей достигнут. Запись отклонена.', + 3 => 'Дневной лимит в %d записей достигнут. Запись отклонена.', +]; +$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Недельный лимит в %d запись достигнут. Запись была отклонена.', + 1 => 'Недельный лимит в %d записи достигнут. Запись была отклонена.', + 2 => 'Недельный лимит в %d записей достигнут. Запись была отклонена.', + 3 => 'Недельный лимит в %d записей достигнут. Запись была отклонена.', +]; +$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = [ + 0 => 'Месячный лимит в%d запись достигнут. Запись была отклонена.', + 1 => 'Месячный лимит в %d записей достигнут. Запись была отклонена.', + 2 => 'Месячный лимит в%d записей достигнут. Запись была отклонена.', + 3 => 'Месячный лимит в %d записей достигнут. Запись была отклонена.', +]; +$a->strings['You don\'t have access to moderation pages.'] = 'У вас нет доступа к страницам модераторов.'; +$a->strings['Submanaged account can\'t access the moderation pages. Please log back in as the main account.'] = 'Дополнительная учётная запись не имеет доступа к модераторским страницам. Пожалуйста, зайдите под основной.'; +$a->strings['Reports'] = 'Обращения'; +$a->strings['Users'] = 'Пользователи'; +$a->strings['Tools'] = 'Инструменты'; +$a->strings['Contact Blocklist'] = 'Чёрный список контактов'; +$a->strings['Server Blocklist'] = 'Чёрный список серверов'; +$a->strings['Delete Item'] = 'Удалить запись'; +$a->strings['Item Source'] = 'Исходник'; +$a->strings['Profile Details'] = 'Информация о вас'; +$a->strings['Conversations started'] = 'Записи этого автора'; +$a->strings['Only You Can See This'] = 'Только вы можете это видеть'; +$a->strings['Scheduled Posts'] = 'Запланированные записи'; +$a->strings['Posts that are scheduled for publishing'] = 'Записи, публикация которых запланирована'; +$a->strings['Tips for New Members'] = 'Советы для новых участников'; +$a->strings['People Search - %s'] = 'Поиск по людям - %s'; +$a->strings['Group Search - %s'] = 'Поиск по группам - %s'; +$a->strings['No matches'] = 'Нет соответствий'; +$a->strings['%d result was filtered out because your node blocks the domain it is registered on. You can review the list of domains your node is currently blocking in the About page.'] = [ + 0 => '%d результато не был показан, так как ваш сервер блокирует домен источника. Вы можете посмотреть список заблокированных доменов на странице информации Об узле.', + 1 => '%d результатов не были показаны, так как ваш сервер блокирует домен их источника. Вы можете посмотреть список заблокированных доменов на странице информации Об узле.', + 2 => '%d результатов не были показаны, так как ваш сервер блокирует домен их источника. Вы можете посмотреть список заблокированных доменов на странице информации Об узле.', + 3 => '%d результатов не были показаны, так как ваш сервер блокирует домен их источника. Вы можете посмотреть список заблокированных доменов на странице информации Об узле.', +]; +$a->strings['Account'] = 'Аккаунт'; +$a->strings['Two-factor authentication'] = 'Двухфакторная аутентификация'; +$a->strings['Display'] = 'Внешний вид'; +$a->strings['Social Networks'] = 'Социальные сети'; +$a->strings['Manage Accounts'] = 'Управление учётными записями'; +$a->strings['Connected apps'] = 'Подключенные приложения'; +$a->strings['Remote servers'] = 'Другие серверы'; +$a->strings['Export personal data'] = 'Экспорт личных данных'; +$a->strings['Remove account'] = 'Удалить аккаунт'; +$a->strings['The post was created'] = 'Запись создана'; +$a->strings['Invalid Request'] = 'Неверный запрос'; +$a->strings['Event id is missing.'] = 'Отсутствует id события'; +$a->strings['Failed to remove event'] = 'Ошибка удаления события'; +$a->strings['Event can not end before it has started.'] = 'Эвент не может закончится до старта.'; +$a->strings['Event title and start time are required.'] = 'Название мероприятия и время начала обязательны для заполнения.'; +$a->strings['Starting date and Title are required.'] = 'Необходима дата старта и заголовок.'; +$a->strings['Event Starts:'] = 'Начало мероприятия:'; +$a->strings['Required'] = 'Требуется'; +$a->strings['Finish date/time is not known or not relevant'] = 'Дата/время окончания не известны, или не указаны'; +$a->strings['Event Finishes:'] = 'Окончание мероприятия:'; +$a->strings['Share this event'] = 'Поделиться этим мероприятием'; +$a->strings['Basic'] = 'Базовый'; +$a->strings['This calendar format is not supported'] = 'Этот формат календарей не поддерживается'; +$a->strings['No exportable data found'] = 'Нет данных для экспорта'; +$a->strings['calendar'] = 'календарь'; +$a->strings['Events'] = 'Мероприятия'; +$a->strings['View'] = 'Смотреть'; +$a->strings['Create New Event'] = 'Создать новое мероприятие'; +$a->strings['list'] = 'список'; +$a->strings['Could not create circle.'] = 'Не удалось создать круг.'; +$a->strings['Circle not found.'] = 'Круг не найден.'; +$a->strings['Circle name was not changed.'] = 'Название круга не изменено.'; +$a->strings['Unknown circle.'] = 'Неизвестный круг.'; +$a->strings['Contact not found.'] = 'Контакт не найден.'; +$a->strings['Invalid contact.'] = 'Недопустимый контакт.'; +$a->strings['Contact is deleted.'] = 'Контакт удалён.'; +$a->strings['Unable to add the contact to the circle.'] = 'Не удалось добавить контакт в круг.'; +$a->strings['Contact successfully added to circle.'] = 'Контакт успешно добавлен в круг.'; +$a->strings['Unable to remove the contact from the circle.'] = 'Не удалось удалить контакт из круга.'; +$a->strings['Contact successfully removed from circle.'] = 'Контакт успешно удалён из круга.'; +$a->strings['Bad request.'] = 'Ошибочный запрос.'; +$a->strings['Save Circle'] = 'Сохранить круг'; +$a->strings['Filter'] = 'Фильтр'; +$a->strings['Create a circle of contacts/friends.'] = 'Создать круг контактов/друзей.'; +$a->strings['Unable to remove circle.'] = 'Не удаётся удалить круг.'; +$a->strings['Delete Circle'] = 'Удалить круг'; +$a->strings['Edit Circle Name'] = 'Изменить имя круга'; +$a->strings['Members'] = 'Участники'; +$a->strings['Circle is empty'] = 'Круг пуст'; +$a->strings['Remove contact from circle'] = 'Удалить контакт из круга'; +$a->strings['Click on a contact to add or remove.'] = 'Нажмите на контакт, чтобы добавить или удалить.'; +$a->strings['Add contact to circle'] = 'Добавить контакт в круг'; +$a->strings['%d contact edited.'] = [ + 0 => '%d контакт изменен.', + 1 => '%d контакта изменено.', + 2 => '%d контактов изменены.', + 3 => '%d контактов изменены.', +]; +$a->strings['Show all contacts'] = 'Показать все контакты'; +$a->strings['Pending'] = 'В ожидании'; +$a->strings['Only show pending contacts'] = 'Показать только контакты "в ожидании"'; +$a->strings['Blocked'] = 'Заблокированы'; +$a->strings['Only show blocked contacts'] = 'Показать только блокированные контакты'; +$a->strings['Ignored'] = 'Игнорируются'; +$a->strings['Only show ignored contacts'] = 'Показать только игнорируемые контакты'; +$a->strings['Collapsed'] = 'Свёрнуто'; +$a->strings['Only show collapsed contacts'] = 'Показать только сворачиваемые контакты'; +$a->strings['Archived'] = 'Архивированные'; +$a->strings['Only show archived contacts'] = 'Показывать только архивные контакты'; +$a->strings['Hidden'] = 'Скрытые'; +$a->strings['Only show hidden contacts'] = 'Показывать только скрытые контакты'; +$a->strings['Organize your contact circles'] = 'Настроить круги контактов'; +$a->strings['Search your contacts'] = 'Поиск ваших контактов'; +$a->strings['Results for: %s'] = 'Результаты для: %s'; +$a->strings['Update'] = 'Обновление'; +$a->strings['Unblock'] = 'Разблокировать'; +$a->strings['Unignore'] = 'Не игнорировать'; +$a->strings['Uncollapse'] = 'Не сворачивать'; +$a->strings['Batch Actions'] = 'Пакетные действия'; +$a->strings['Conversations started by this contact'] = 'Диалоги этого контакта'; +$a->strings['Posts and Comments'] = 'Записи и комментарии'; +$a->strings['Individual Posts and Replies'] = 'Отдельные записи и ответы'; +$a->strings['Posts containing media objects'] = 'Записи с медиа'; +$a->strings['View all known contacts'] = 'Показать все известные контакты'; +$a->strings['Advanced Contact Settings'] = 'Дополнительные Настройки Контакта'; +$a->strings['Mutual Friendship'] = 'Взаимная дружба'; +$a->strings['is a fan of yours'] = 'является вашим поклонником'; +$a->strings['you are a fan of'] = 'Вы - поклонник'; +$a->strings['Pending outgoing contact request'] = 'Исходящий запрос на подписку'; +$a->strings['Pending incoming contact request'] = 'Входящий запрос на подписку'; +$a->strings['Visit %s\'s profile [%s]'] = 'Посетить профиль %s [%s]'; +$a->strings['Contact update failed.'] = 'Обновление контакта неудачное.'; +$a->strings['Return to contact editor'] = 'Возврат к редактору контакта'; +$a->strings['Name'] = 'Имя'; +$a->strings['Account Nickname'] = 'Ник аккаунта'; +$a->strings['Account URL'] = 'URL аккаунта'; +$a->strings['Poll/Feed URL'] = 'URL опроса/ленты'; +$a->strings['New photo from this URL'] = 'Новое фото из этой URL'; +$a->strings['No known contacts.'] = 'Нет известных контактов.'; +$a->strings['No common contacts.'] = 'Общих контактов нет.'; +$a->strings['Follower (%s)'] = [ + 0 => 'Подписчик (%s)', + 1 => 'Подписчики (%s)', + 2 => 'Подписчики (%s)', + 3 => 'Подписчики (%s)', +]; +$a->strings['Following (%s)'] = [ + 0 => 'Подписан на (%s)', + 1 => 'Подписаны на (%s)', + 2 => 'Подписаны на (%s)', + 3 => 'Подписаны на (%s)', +]; +$a->strings['Mutual friend (%s)'] = [ + 0 => 'Взаимный друг (%s)', + 1 => 'Взаимные друзья (%s)', + 2 => 'Взаимные друзья (%s)', + 3 => 'Взаимные друзья (%s)', +]; +$a->strings['These contacts both follow and are followed by %s.'] = 'Эти контакты взаимно добавлены в друзья %s.'; +$a->strings['Common contact (%s)'] = [ + 0 => 'Общий контакт (%s)', + 1 => 'Общие контакты (%s)', + 2 => 'Общие контакты (%s)', + 3 => 'Общие контакты (%s)', +]; +$a->strings['Both %s and yourself have publicly interacted with these contacts (follow, comment or likes on public posts).'] = '%s и вы публично взаимодействовали с этими контактами (добавляли их, комментировали публичные посты или оставляли лайки к ним).'; +$a->strings['Contact (%s)'] = [ + 0 => 'Контакт (%s)', + 1 => 'Контакты (%s)', + 2 => 'Контакты (%s)', + 3 => 'Контакты (%s)', +]; +$a->strings['Access denied.'] = 'Доступ запрещен.'; +$a->strings['Submit Request'] = 'Отправить запрос'; +$a->strings['You already added this contact.'] = 'Вы уже добавили этот контакт.'; +$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['Please answer the following:'] = 'Пожалуйста, ответьте следующее:'; +$a->strings['Your Identity Address:'] = 'Ваш адрес:'; +$a->strings['Profile URL'] = 'URL профиля'; +$a->strings['Tags:'] = 'Ключевые слова: '; +$a->strings['%s knows you'] = '%s знают Вас'; +$a->strings['Add a personal note:'] = 'Добавить личную заметку:'; +$a->strings['Posts and Replies'] = 'Записи и ответы'; +$a->strings['The contact could not be added.'] = 'Не удалось добавить этот контакт.'; +$a->strings['Invalid request.'] = 'Неверный запрос.'; +$a->strings['No keywords to match. Please add keywords to your profile.'] = 'Нет совпадающих ключевых слов. Пожалуйста, добавьте ключевые слова в ваш профиль.'; +$a->strings['Profile Match'] = 'Похожие профили'; +$a->strings['Failed to update contact record.'] = 'Не удалось обновить запись контакта.'; +$a->strings['Contact has been unblocked'] = 'Контакт разблокирован'; +$a->strings['Contact has been blocked'] = 'Контакт заблокирован'; +$a->strings['Contact has been unignored'] = 'У контакта отменено игнорирование'; +$a->strings['Contact has been ignored'] = 'Контакт проигнорирован'; +$a->strings['Contact has been uncollapsed'] = 'Записи контакта не сворачиваются'; +$a->strings['Contact has been collapsed'] = 'Записи контакта сворачиваются'; +$a->strings['You are mutual friends with %s'] = 'У Вас взаимная дружба с %s'; +$a->strings['You are sharing with %s'] = 'Вы делитесь с %s'; +$a->strings['%s is sharing with you'] = '%s делится с Вами'; +$a->strings['Private communications are not available for this contact.'] = 'Приватные коммуникации недоступны для этого контакта.'; +$a->strings['This contact is on a server you ignored.'] = 'Этот контакт на игнорируемом вами сервере.'; +$a->strings['Never'] = 'Никогда'; +$a->strings['(Update was not successful)'] = '(Обновление не удалось)'; +$a->strings['(Update was successful)'] = '(Обновление было успешно)'; +$a->strings['Suggest friends'] = 'Предложить друзей'; +$a->strings['Network type: %s'] = 'Сеть: %s'; +$a->strings['Communications lost with this contact!'] = 'Связь с контактом утеряна!'; +$a->strings['Fetch further information for feeds'] = 'Получить подробную информацию о фидах'; +$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.'] = 'Извлекать картинки предпросмотра, заголовок и вступление из записи ленты. Вы можете включить эту опцию, если лента не содержит много текста. Ключевые слова берутся из метаданных записи и публикуются как теги.'; +$a->strings['Fetch information'] = 'Получить информацию'; +$a->strings['Fetch keywords'] = 'Получить ключевые слова'; +$a->strings['Fetch information and keywords'] = 'Получить информацию и ключевые слова'; +$a->strings['No mirroring'] = 'Не зеркалировать'; +$a->strings['Mirror as my own posting'] = 'Зеркалировать как мои сообщения'; +$a->strings['Native reshare'] = 'Обычный репост'; +$a->strings['Contact Information / Notes'] = 'Информация о контакте / Заметки'; +$a->strings['Contact Settings'] = 'Настройки контакта'; +$a->strings['Contact'] = 'Контакт'; +$a->strings['Their personal note'] = 'Персональная заметка'; +$a->strings['Edit contact notes'] = 'Редактировать заметки контакта'; +$a->strings['Block/Unblock contact'] = 'Блокировать / Разблокировать контакт'; +$a->strings['Ignore contact'] = 'Игнорировать контакт'; +$a->strings['View conversations'] = 'Просмотр бесед'; +$a->strings['Last update:'] = 'Последнее обновление: '; +$a->strings['Update public posts'] = 'Обновить публичные сообщения'; +$a->strings['Update now'] = 'Обновить сейчас'; +$a->strings['Awaiting connection acknowledge'] = 'Ожидаем подтверждения соединения'; +$a->strings['Currently blocked'] = 'В настоящее время заблокирован'; +$a->strings['Currently ignored'] = 'В настоящее время игнорируется'; +$a->strings['Currently collapsed'] = 'В настоящее время сворачивается'; +$a->strings['Currently archived'] = 'В данный момент архивирован'; +$a->strings['Manage remote servers'] = 'Управлять удалёнными серверами'; +$a->strings['Hide this contact from others'] = 'Скрыть этот контакт от других'; +$a->strings['Replies/likes to your public posts may still be visible'] = 'Ответы/лайки ваших публичных сообщений будут видимы.'; +$a->strings['Notification for new posts'] = 'Уведомление о новых записях'; +$a->strings['Send a notification of every new post of this contact'] = 'Отправлять уведомление о каждом новой записи контакта'; +$a->strings['Keyword Deny List'] = 'Запретный список слов'; +$a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Список слов через запятую, которые не должны конвертироваться в хэштеги, когда включено "Получать информацию и хэштеги"'; +$a->strings['Actions'] = 'Действия'; +$a->strings['Status'] = 'Записи'; +$a->strings['Mirror postings from this contact'] = 'Зекралировать сообщения от этого контакта'; +$a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'Пометить этот контакт как remote_self, что заставит Friendica отправлять сообщения от этого контакта.'; +$a->strings['Channel Settings'] = 'Настройки каналов'; +$a->strings['Frequency of this contact in relevant channels'] = 'Частота появления этого контакта в каналах'; +$a->strings['Depending on the type of the channel not all posts from this contact are displayed. By default, posts need to have a minimum amount of interactions (comments, likes) to show in your channels. On the other hand there can be contacts who flood the channel, so you might want to see only some of their posts. Or you don\'t want to see their content at all, but you don\'t want to block or hide the contact completely.'] = 'В зависимости от типа канала, не все записи этого контакта могут отображаться в них. По-умолчанию записи должны получить некоторое число взаимодействий (комментарии, лайки), чтобы попасть в каналы. Так же некоторые контакты могут заполнять каналы слишком частыми записями или вы можете не хотеть видеть их в каналах вообще, но не готовы их игнорировать или блокировать полностью.'; +$a->strings['Default frequency'] = 'Обычная частота'; +$a->strings['Posts by this contact are displayed in the "for you" channel if you interact often with this contact or if a post reached some level of interaction.'] = 'Записи этого контакта будут показаны в канале "Для Вас", если вы часто взаимодействуете с ним, либо запись этого контакта получит какую-то активность.'; +$a->strings['Display all posts of this contact'] = 'Показывать все'; +$a->strings['All posts from this contact will appear on the "for you" channel'] = 'Все записи от этого контакта будут показаны в канале "Для Вас"'; +$a->strings['Display only few posts'] = 'Показывать немного'; +$a->strings['When a contact creates a lot of posts in a short period, this setting reduces the number of displayed posts in every channel.'] = 'Когда контакт создаёт много записей за короткий период, эта настройка сократит число отображаемых записей в каналах.'; +$a->strings['Never display posts'] = 'Не показывать'; +$a->strings['Posts from this contact will never be displayed in any channel'] = 'Записи этого контакта никогда не будут показаны в каналах'; +$a->strings['Refetch contact data'] = 'Обновить данные контакта'; +$a->strings['Toggle Blocked status'] = 'Изменить статус блокированности (заблокировать/разблокировать)'; +$a->strings['Toggle Ignored status'] = 'Изменить статус игнорирования'; +$a->strings['Toggle Collapsed status'] = 'Изменить статус сворачивания'; +$a->strings['Revoke Follow'] = 'Отозвать подписку'; +$a->strings['Revoke the follow from this contact'] = 'Отменить подписку этого контакта на вас'; +$a->strings['Bad Request.'] = 'Ошибочный запрос.'; +$a->strings['Unknown contact.'] = 'Неизвестный контакт.'; +$a->strings['Contact is being deleted.'] = 'Контакт удаляется.'; +$a->strings['Follow was successfully revoked.'] = 'Подписка была успешно отозвана.'; +$a->strings['Do you really want to revoke this contact\'s follow? This cannot be undone and they will have to manually follow you back again.'] = 'Вы действительно хотите отозвать подписку этого контакта на вас? Это нельзя будет отменить позже, им потребуется снова подписаться на вас.'; +$a->strings['Yes'] = 'Да'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа.'; +$a->strings['You aren\'t following this contact.'] = 'Вы не подписаны на этот контакт.'; +$a->strings['Unfollowing is currently not supported by your network.'] = 'Отписка в настоящий момент не предусмотрена этой сетью'; +$a->strings['Disconnect/Unfollow'] = 'Отсоединиться/Отписаться'; +$a->strings['Contact was successfully unfollowed'] = 'Подписка успешно удалена'; +$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Не получается отписаться от этого контакта, пожалуйста, свяжитесь с вашим администратором'; +$a->strings['No results.'] = 'Нет результатов.'; +$a->strings['Channel not available.'] = 'Канал недоступен'; +$a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'Эта общая лента показывает все публичные записи, которые получил этот сервер. Они могут не отражать мнений пользователей этого сервера.'; +$a->strings['Community option not available.'] = 'Сообщество недоступно.'; +$a->strings['Not available.'] = 'Недоступно.'; +$a->strings['No such circle'] = 'Нет такого круга'; +$a->strings['Circle: %s'] = 'Круг: %s'; +$a->strings['Network feed not available.'] = 'Лента недоступна'; +$a->strings['Own Contacts'] = 'Свои контакты'; +$a->strings['Include'] = 'Включить'; +$a->strings['Hide'] = 'Скрыть'; +$a->strings['Credits'] = 'Признательность'; +$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!'] = 'Friendica это проект сообщества, который был бы невозможен без помощи многих людей. Вот лист тех, кто писал код или помогал с переводом. Спасибо вам всем!'; +$a->strings['Error'] = [ + 0 => 'Ошибка', + 1 => 'Ошибки', + 2 => 'Ошибки', + 3 => 'Ошибки', +]; +$a->strings['Decoded post'] = 'Декодированная запись'; +$a->strings['Post array before expand entities'] = 'Массив записи до развертывания объектов'; +$a->strings['Post converted'] = 'Запись преобразована'; +$a->strings['You must be logged in to use this module'] = 'Вы должны быть залогинены для использования этого модуля'; +$a->strings['Source URL'] = 'Исходный URL'; +$a->strings['Time Conversion'] = 'История общения'; +$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica предоставляет этот сервис для обмена событиями с другими сетями и друзьями, находящимися в неопределённых часовых поясах.'; +$a->strings['UTC time: %s'] = 'UTC время: %s'; +$a->strings['Current timezone: %s'] = 'Ваш часовой пояс: %s'; +$a->strings['Converted localtime: %s'] = 'Ваше изменённое время: %s'; +$a->strings['Please select your timezone:'] = 'Выберите пожалуйста ваш часовой пояс:'; +$a->strings['Only logged in users are permitted to perform a probing.'] = 'Для использования этой функции нужно войти.'; +$a->strings['No entries (some entries may be hidden).'] = 'Нет записей (некоторые записи могут быть скрыты).'; +$a->strings['Find on this site'] = 'Найти на этом сайте'; +$a->strings['Results for:'] = 'Результаты для:'; +$a->strings['Site Directory'] = 'Каталог сайта'; +$a->strings['Item was not deleted'] = 'Запись не была удалена'; +$a->strings['Item was not removed'] = 'Запись не была удалена'; +$a->strings['- select -'] = '- выбрать -'; +$a->strings['Suggested contact not found.'] = 'Рекомендованный контакт не найден.'; +$a->strings['Friend suggestion sent.'] = 'Приглашение в друзья отправлено.'; +$a->strings['Suggest Friends'] = 'Предложить друзей'; +$a->strings['Suggest a friend for %s'] = 'Предложить друга для %s.'; +$a->strings['Installed addons/apps:'] = 'Установленные дополнения:'; +$a->strings['No installed addons/apps'] = 'Нет установленных дополнений'; +$a->strings['Read about the Terms of Service of this node.'] = 'Ознакомьтесь с Условиями Предоставления Услуг этого узла.'; +$a->strings['On this server the following remote servers are blocked.'] = 'На этом сервере заблокированы следующие удалённые серверы.'; +$a->strings['Reason for the block'] = 'Причина блокировки'; +$a->strings['Download this list in CSV format'] = 'Скачать этот список в формате CSV'; +$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.'] = 'Это сервер Friendica, версия %s, работающий по адресу %s. Версия базы данных %s, версия post update %s.'; +$a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Посетите Friendi.ca, чтобы узнать больше о проекте Friendica.'; +$a->strings['Bug reports and issues: please visit'] = 'Отчет об ошибках и проблемах: пожалуйста, посетите'; +$a->strings['the bugtracker at github'] = 'багтрекер на github'; +$a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = 'Предложения, отзывы, похвала - пишите нам на info[собака]friendi[точка]ca'; +$a->strings['No profile'] = 'Нет профиля'; +$a->strings['Method Not Allowed.'] = 'Метод не разрешён'; +$a->strings['Help:'] = 'Помощь:'; +$a->strings['Welcome to %s'] = 'Добро пожаловать на %s!'; +$a->strings['Friendica Communications Server - Setup'] = 'Социальная сеть Friendica - Установка'; +$a->strings['System check'] = 'Проверить систему'; +$a->strings['OK'] = 'ОК'; +$a->strings['Next'] = 'Далее'; +$a->strings['Check again'] = 'Проверить еще раз'; +$a->strings['Base settings'] = 'Основные настройки'; +$a->strings['Base path to installation'] = 'Путь для установки'; +$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.'] = 'Если система не смогла определить правильный путь к вашей установке, введите правильный путь здесь. Эта настройка должна использоваться только, если вы используете систему с ограниченным доступом с символьными ссылками в ваш веб-каталог.'; +$a->strings['Database connection'] = 'Подключение к базе данных'; +$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных.'; +$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах.'; +$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением.'; +$a->strings['Database Server Name'] = 'Имя сервера базы данных'; +$a->strings['Database Login Name'] = 'Логин базы данных'; +$a->strings['Database Login Password'] = 'Пароль базы данных'; +$a->strings['For security reasons the password must not be empty'] = 'Для безопасности пароль не должен быть пустым'; +$a->strings['Database Name'] = 'Имя базы данных'; +$a->strings['Please select a default timezone for your website'] = 'Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта'; +$a->strings['Site settings'] = 'Настройки сайта'; +$a->strings['Site administrator email address'] = 'Адрес электронной почты администратора сайта'; +$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора.'; +$a->strings['System Language:'] = 'Язык системы:'; +$a->strings['Set the default language for your Friendica installation interface and to send emails.'] = 'Язык по-умолчанию для интерфейса Friendica и для отправки писем.'; +$a->strings['Your Friendica site database has been installed.'] = 'База данных сайта установлена.'; +$a->strings['Installation finished'] = 'Установка завершена'; +$a->strings['

    What next

    '] = '

    Что далее

    '; +$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the worker.'] = 'ВАЖНО: Вам нужно будет [вручную] настроить фоновое задание в планировщике.'; +$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.'] = 'Зайдите на страницу регистрации вашего нового сервера Friendica и зарегистрируйтесь как новый пользователь. Обратите внимание, что нужно использовать тот же адрес почты, какой вы указали в настройках администратора. Это позволит вам зайти в панель администратора.'; +$a->strings['Total invitation limit exceeded.'] = 'Превышен общий лимит приглашений.'; +$a->strings['%s : Not a valid email address.'] = '%s: Неверный адрес электронной почты.'; +$a->strings['Please join us on Friendica'] = 'Пожалуйста, присоединяйтесь к нам на Friendica'; +$a->strings['Invitation limit exceeded. Please contact your site administrator.'] = 'Лимит приглашений превышен. Пожалуйста, свяжитесь с администратором сайта.'; +$a->strings['%s : Message delivery failed.'] = '%s: Доставка сообщения не удалась.'; +$a->strings['%d message sent.'] = [ + 0 => '%d сообщение отправлено.', + 1 => '%d сообщений отправлено.', + 2 => '%d сообщений отправлено.', + 3 => '%d сообщений отправлено.', +]; +$a->strings['You have no more invitations available'] = 'У вас нет больше приглашений'; +$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.'] = 'Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей.'; +$a->strings['To accept this invitation, please visit and register at %s or any other public Friendica website.'] = 'Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на %s ,или любом другом публичном сервере Friendica'; +$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.'] = 'Сайты Friendica, подключившись между собой, могут создать сеть с повышенной безопасностью, которая принадлежит и управляется её членами. Они также могут подключаться ко многим традиционным социальным сетям. См. %s со списком альтернативных сайтов Friendica, к которым вы можете присоединиться.'; +$a->strings['Our apologies. This system is not currently configured to connect with other public sites or invite members.'] = 'Извините. Эта система в настоящее время не сконфигурирована для соединения с другими общественными сайтами и для приглашения участников.'; +$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->strings['To accept this invitation, please visit and register at %s.'] = 'Чтобы принять это приглашение, пожалуйста зайдите на %s и зарегистрируйтесь.'; +$a->strings['Send invitations'] = 'Отправить приглашения'; +$a->strings['Enter email addresses, one per line:'] = 'Введите адреса электронной почты, по одному в строке:'; +$a->strings['You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.'] = 'Приглашаем Вас присоединиться ко мне и другим близким друзьям на Friendica - помочь нам создать лучшую социальную сеть.'; +$a->strings['You will need to supply this invitation code: $invite_code'] = 'Вам нужно будет предоставить этот код приглашения: $invite_code'; +$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:'; +$a->strings['For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca'] = 'Чтобы узнать больше о проекте Friendica и почему мы считаем это важным, посетите http://friendi.ca'; +$a->strings['Please enter a post body.'] = 'Пожалуйста, введите текст записи.'; +$a->strings['This feature is only available with the frio theme.'] = 'Эта функция доступна только для темы frio.'; +$a->strings['Compose new personal note'] = 'Создать новую личную заметку'; +$a->strings['Compose new post'] = 'Создать новую запись'; +$a->strings['Visibility'] = 'Видимость'; +$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['You can make this page always open when you use the New Post button in the Theme Customization settings.'] = 'Вы можете включить открытие этой страницы по кнопке создания новой записи в настройках отображения темы.'; +$a->strings['The feed for this item is unavailable.'] = 'Лента недоступна для этого объекта.'; +$a->strings['Unable to follow this item.'] = 'Не получается подписаться на эту запись.'; +$a->strings['System down for maintenance'] = 'Система закрыта на техническое обслуживание'; +$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.'] = 'Этот сервер Friendica в настоящее время закрыт на обслуживание, либо по причине автоматического обновления, либо администратором. Обычно это временное явление, пожалуйста, попробуйте вернуться через некоторое время.'; +$a->strings['A Decentralized Social Network'] = 'Децентрализованная социальная сеть'; +$a->strings['You need to be logged in to access this page.'] = 'Вам нужно войти, чтобы увидеть эту страницу.'; +$a->strings['Files'] = 'Файлы'; +$a->strings['Upload'] = 'Загрузить'; +$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Извините, похоже что загружаемый файл превышает лимиты, разрешенные конфигурацией PHP'; +$a->strings['Or - did you try to upload an empty file?'] = 'Или вы пытались загрузить пустой файл?'; +$a->strings['File exceeds size limit of %s'] = 'Файл превышает лимит размера в %s'; +$a->strings['File upload failed.'] = 'Загрузка файла не удалась.'; +$a->strings['Unable to process image.'] = 'Невозможно обработать фото.'; +$a->strings['Image upload failed.'] = 'Загрузка фото неудачная.'; $a->strings['List of all users'] = 'Все пользователи'; $a->strings['Active'] = 'Активные'; $a->strings['List of active accounts'] = 'Список активных пользователей'; -$a->strings['Pending'] = 'В ожидании'; $a->strings['List of pending registrations'] = 'Список ожидающих регистрацию'; -$a->strings['Blocked'] = 'Заблокированы'; $a->strings['List of blocked users'] = 'Заблокированные пользователи'; $a->strings['Deleted'] = 'Удалённые'; $a->strings['List of pending user deletions'] = 'Список ожидающих удаления'; $a->strings['Normal Account Page'] = 'Стандартная страница аккаунта'; $a->strings['Soapbox Page'] = 'Публичная страница'; -$a->strings['Public Forum'] = 'Публичный форум'; +$a->strings['Public Group'] = 'Публичная группа'; $a->strings['Automatic Friend Page'] = '"Автоматический друг" страница'; -$a->strings['Private Forum'] = 'Закрытый форум'; +$a->strings['Private Group'] = 'Закрытая группа'; $a->strings['Personal Page'] = 'Личная страница'; $a->strings['Organisation Page'] = 'Организационная страница'; $a->strings['News Page'] = 'Новостная страница'; -$a->strings['Community Forum'] = 'Форум сообщества'; +$a->strings['Community Group'] = 'Группа сообщества'; $a->strings['Relay'] = 'Ретранслятор'; $a->strings['You can\'t block a local contact, please block the user instead'] = 'Нельзя заблокировать локальный контакт, пожалуйста заблокируйте самого пользователя.'; $a->strings['%s contact unblocked'] = [ @@ -1206,7 +1932,6 @@ $a->strings['This page allows you to prevent any message from a remote contact t $a->strings['Block Remote Contact'] = 'Заблокировать удалённый контакт'; $a->strings['select all'] = 'выбрать все'; $a->strings['select none'] = 'сбросить выбор'; -$a->strings['Unblock'] = 'Разблокировать'; $a->strings['No remote contact is blocked from this node.'] = 'Для этого узла нет заблокированных контактов.'; $a->strings['Blocked Remote Contacts'] = 'Заблокированные контакты'; $a->strings['Block New Remote Contact'] = 'Заблокировать новый контакт'; @@ -1291,7 +2016,6 @@ $a->strings['Imports patterns from the file that weren\'t already existing in th $a->strings['Replace'] = 'Заменить'; $a->strings['Replaces the current blocklist by the imported patterns.'] = 'Заменяет текущий список загруженными значениями.'; $a->strings['Blocked server domain pattern'] = 'Маска домена блокируемого сервера'; -$a->strings['Reason for the block'] = 'Причина блокировки'; $a->strings['Delete server domain pattern'] = 'Удалить маску домена'; $a->strings['Check to delete this entry from the blocklist'] = 'Отметьте, чтобы удалить эту запись из списка блокировки'; $a->strings['Server Domain Pattern Blocklist'] = 'Список блокировки доменов'; @@ -1303,274 +2027,83 @@ $a->strings['Save changes to the blocklist'] = 'Сохранить измене $a->strings['Current Entries in the Blocklist'] = 'Текущие значения списка блокировки'; $a->strings['Delete entry from the blocklist'] = 'Удалить запись из списка'; $a->strings['Delete entry from the blocklist?'] = 'Удалить запись из списка блокировки?'; -$a->strings['Update has been marked successful'] = 'Обновление было успешно отмечено'; -$a->strings['Database structure update %s was successfully applied.'] = 'Обновление базы данных %s успешно применено.'; -$a->strings['Executing of database structure update %s failed with error: %s'] = 'Выполнение обновления базы данных %s завершено с ошибкой: %s'; -$a->strings['Executing %s failed with error: %s'] = 'Выполнение %s завершено с ошибкой: %s'; -$a->strings['Update %s was successfully applied.'] = 'Обновление %s успешно применено.'; -$a->strings['Update %s did not return a status. Unknown if it succeeded.'] = 'Процесс обновления %s не вернул статус. Не известно, выполнено, или нет.'; -$a->strings['There was no additional update function %s that needed to be called.'] = 'Не было процедур обновления %s, которые нужно было запустить.'; -$a->strings['No failed updates.'] = 'Неудавшихся обновлений нет.'; -$a->strings['Check database structure'] = 'Проверить структуру базы данных'; -$a->strings['Failed Updates'] = 'Неудавшиеся обновления'; -$a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Эта цифра не включает обновления до 1139, которое не возвращает статус.'; -$a->strings['Mark success (if update was manually applied)'] = 'Отмечено успешно (если обновление было применено вручную)'; -$a->strings['Attempt to execute this update step automatically'] = 'Попытаться выполнить этот шаг обновления автоматически'; -$a->strings['Lock feature %s'] = 'Заблокировать %s'; -$a->strings['Manage Additional Features'] = 'Управление дополнительными возможностями'; -$a->strings['Other'] = 'Другой'; -$a->strings['unknown'] = 'неизвестно'; -$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.'] = 'На этой странице вы можете увидеть немного статистики из известной вашему узлу федеративной сети. Эти данные неполные и только отражают ту часть сети, с которой ваш узел взаимодействовал.'; -$a->strings['Federation Statistics'] = 'Статистика федерации'; $a->strings['Item marked for deletion.'] = 'Запись помечена для удаления.'; -$a->strings['Delete Item'] = 'Удалить запись'; $a->strings['Delete this Item'] = 'Удалить эту запись'; $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.'] = 'На этой странице вы можете удалять записи на вашем узле. Если запись является родительской, то будет удалена вся её ветка.'; $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.'] = 'Вам нужно знать GUID записи. Вы можете узнать его, посмотрев на ссылку записи. Последняя часть ссылки - GUID. Например, для http://example.com/display/123456 - GUID будет 123456.'; $a->strings['GUID'] = 'GUID'; $a->strings['The GUID of the item you want to delete.'] = 'GUID записи, которую вы хотите удалить.'; -$a->strings['Item Guid'] = 'GUID записи'; +$a->strings['Item Id'] = 'Id записи'; +$a->strings['Item URI'] = 'URI записи'; +$a->strings['Terms'] = 'Ключевые слова'; +$a->strings['Tag'] = 'Тэг'; $a->strings['Type'] = 'Тип'; -$a->strings['The logfile \'%s\' is not writable. No logging possible'] = 'Файл журнала \'%s\' недоступен для записи. Журналирование невозможно.'; -$a->strings['PHP log currently enabled.'] = 'Лог PHP включен.'; -$a->strings['PHP log currently disabled.'] = 'Лог PHP выключен.'; -$a->strings['Logs'] = 'Журналы'; -$a->strings['Clear'] = 'Очистить'; -$a->strings['Enable Debugging'] = 'Включить отладку'; -$a->strings['Log file'] = 'Лог-файл'; -$a->strings['Must be writable by web server. Relative to your Friendica top-level directory.'] = 'Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня.'; -$a->strings['Log level'] = 'Уровень лога'; -$a->strings['PHP logging'] = 'PHP логирование'; -$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.'] = 'Чтобы временно включить журналирование ошибок и предупреждений PHP, вы можете добавить следующее в файл index.php вашей установки. Имя файла, установленное в \'error_log\', задаётся относительно каталога установки Френдики и у веб-сервера должно быть разрешение на запись в этот файл. Настройка 1\' для \'log_errors\' и \'display_errors\' включает журналирование и отображение ошибок, \'0\' отключает.'; -$a->strings['View Logs'] = 'Просмотр логов'; -$a->strings['Show all'] = 'Показать все'; -$a->strings['Inspect Deferred Worker Queue'] = 'Посмотреть очередь отложенных заданий'; -$a->strings['This page lists the deferred worker jobs. This are jobs that couldn\'t be executed at the first time.'] = 'На этой странице отображаюттся отложенные задания планировщика. Эти задания по какой-то причине не были выполнены с первого раза.'; -$a->strings['Inspect Worker Queue'] = 'Посмотреть очередь заданий'; -$a->strings['This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you\'ve set up during install.'] = 'На этой странице отображаются задания планировщика, которые в настоящий момент стоят в очереди на выполнение. Эти задания запускаются посредством планировщика cron, который вы настроили при установке.'; -$a->strings['ID'] = 'ID'; -$a->strings['Job Parameters'] = 'Параметры задания'; -$a->strings['Priority'] = 'Приоритет'; -$a->strings['No special theme for mobile devices'] = 'Нет специальной темы для мобильных устройств'; -$a->strings['%s - (Experimental)'] = '%s - (экспериментально)'; -$a->strings['No community page'] = 'Нет общей ленты записей'; -$a->strings['Public postings from users of this site'] = 'Публичные записи от пользователей этого узла'; -$a->strings['Public postings from the federated network'] = 'Публичные записи федеративной сети'; -$a->strings['Public postings from local users and the federated network'] = 'Публичные записи от местных пользователей и федеративной сети.'; -$a->strings['Multi user instance'] = 'Многопользовательский вид'; -$a->strings['Closed'] = 'Закрыто'; -$a->strings['Requires approval'] = 'Требуется подтверждение'; -$a->strings['Open'] = 'Открыто'; -$a->strings['No SSL policy, links will track page SSL state'] = 'Нет режима SSL, состояние SSL не будет отслеживаться'; -$a->strings['Force all links to use SSL'] = 'Заставить все ссылки использовать SSL'; -$a->strings['Self-signed certificate, use SSL for local links only (discouraged)'] = 'Само-подписанный сертификат, использовать SSL только локально (не рекомендуется)'; -$a->strings['Don\'t check'] = 'Не проверять'; -$a->strings['check the stable version'] = 'проверить стабильную версию'; -$a->strings['check the development version'] = 'проверить development-версию'; -$a->strings['none'] = 'нет'; -$a->strings['Local contacts'] = 'Местные контакты'; -$a->strings['Site'] = 'Сайт'; -$a->strings['Republish users to directory'] = 'Переопубликовать пользователей в каталог'; -$a->strings['Registration'] = 'Регистрация'; -$a->strings['File upload'] = 'Загрузка файлов'; -$a->strings['Policies'] = 'Политики'; -$a->strings['Auto Discovered Contact Directory'] = 'Каталог автообнаружения контактов'; -$a->strings['Performance'] = 'Производительность'; -$a->strings['Worker'] = 'Обработчик'; -$a->strings['Message Relay'] = 'Ретранслятор записей'; -$a->strings['Use the command "console relay" in the command line to add or remove relays.'] = 'Используйте команду "console relay" в командной строке для добавления и удаления ретрансляторов.'; -$a->strings['The system is not subscribed to any relays at the moment.'] = 'Система сейчас не подписана на ретрансляторы.'; -$a->strings['The system is currently subscribed to the following relays:'] = 'Система сейчас подписана на следующие ретрансляторы:'; -$a->strings['Relocate Node'] = 'Переместить узел'; -$a->strings['Relocating your node enables you to change the DNS domain of this node and keep all the existing users and posts. This process takes a while and can only be started from the relocate console command like this:'] = 'Перемещение узла позволяет вам изменить DNS-имя этого узла с сохранением всех пользователей и записей. Этот процесс может занять много времени и может быть запущен только с помощью команды консоли:'; -$a->strings['(Friendica directory)# bin/console relocate https://newdomain.com'] = '(каталог Friendica)# bin/console relocate https://newdomain.com'; -$a->strings['Site name'] = 'Название сайта'; -$a->strings['Sender Email'] = 'Системный Email'; -$a->strings['The email address your server shall use to send notification emails from.'] = 'Адрес с которого будут приходить письма пользователям.'; -$a->strings['Name of the system actor'] = 'Имя системного аккаунта'; -$a->strings['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.'] = 'Имя внутреннего системного аккаунта, который используется для выполнения запросов ActivityPub. Это должно быть не занятое имя пользователя. После установки его нельзя изменить снова.'; -$a->strings['Banner/Logo'] = 'Баннер/Логотип'; -$a->strings['Email Banner/Logo'] = 'Лого для писем'; -$a->strings['Shortcut icon'] = 'Иконка сайта'; -$a->strings['Link to an icon that will be used for browsers.'] = 'Ссылка на иконку, которая будет использоваться браузерами.'; -$a->strings['Touch icon'] = 'Иконка веб-приложения'; -$a->strings['Link to an icon that will be used for tablets and mobiles.'] = 'Ссылка на иконку, которая будет использоваться для создания ярлыка на смартфонах и планшетах.'; -$a->strings['Additional Info'] = 'Дополнительная информация'; -$a->strings['For public servers: you can add additional information here that will be listed at %s/servers.'] = 'Для публичных серверов: здесь вы можете разместить дополнительную информацию и она будет доступна по %s/servers.'; -$a->strings['System language'] = 'Системный язык'; -$a->strings['System theme'] = 'Системная тема'; -$a->strings['Default system theme - may be over-ridden by user profiles - Change default theme settings'] = 'Тема по-умолчанию - пользователи могут менять её в настройках своего профиля - Изменить тему по-умолчанию'; -$a->strings['Mobile system theme'] = 'Мобильная тема системы'; -$a->strings['Theme for mobile devices'] = 'Тема для мобильных устройств'; -$a->strings['SSL link policy'] = 'Политика SSL'; -$a->strings['Determines whether generated links should be forced to use SSL'] = 'Ссылки должны быть вынуждены использовать SSL'; -$a->strings['Force SSL'] = 'SSL принудительно'; -$a->strings['Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.'] = 'Форсировать не-SSL запросы как SSL. Внимание: на некоторых системах это может привести к бесконечным циклам.'; -$a->strings['Show help entry from navigation menu'] = 'Показать пункт "помощь" в меню навигации'; -$a->strings['Displays the menu entry for the Help pages from the navigation menu. It is always accessible by calling /help directly.'] = 'Показывает пункт меню для страницы справки из меню навигации. Она так же всегда доступна по прямой ссылке /help.'; -$a->strings['Single user instance'] = 'Однопользовательский режим'; -$a->strings['Make this instance multi-user or single-user for the named user'] = 'Сделать этот экземпляр многопользовательским, или однопользовательским для названного пользователя'; -$a->strings['Maximum image size'] = 'Максимальный размер изображения'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'Максимальный размер в байтах для загружаемых изображений. По умолчанию 0, что означает отсутствие ограничений.'; -$a->strings['Maximum image length'] = 'Максимальная длина картинки'; -$a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Максимальная длина в пикселях для длинной стороны загруженных изображений. По умолчанию равно -1, что означает отсутствие ограничений.'; -$a->strings['JPEG image quality'] = 'Качество JPEG изображения'; -$a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = 'Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По умолчанию 100, что означает полное качество.'; -$a->strings['Register policy'] = 'Политика регистрация'; -$a->strings['Maximum Daily Registrations'] = 'Максимальное число регистраций в день'; -$a->strings['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.'] = 'Если регистрация разрешена, этот параметр устанавливает максимальное количество новых регистраций пользователей в день. Если регистрация закрыта, эта опция не имеет никакого эффекта.'; -$a->strings['Register text'] = 'Текст регистрации'; -$a->strings['Will be displayed prominently on the registration page. You can use BBCode here.'] = 'Будет отображаться на видном месте на странице регистрации. Вы можете использовать BBCode для оформления.'; -$a->strings['Forbidden Nicknames'] = 'Запрещённые ники'; -$a->strings['Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142.'] = 'Имена, перечисленные через запятую, которые запрещены для регистрации на этом узле. Предустановленный список соответствует RFC 2142.'; -$a->strings['Accounts abandoned after x days'] = 'Аккаунт считается после x дней не воспользованным'; -$a->strings['Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.'] = 'Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени.'; -$a->strings['Allowed friend domains'] = 'Разрешенные домены друзей'; -$a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами.'; -$a->strings['Allowed email domains'] = 'Разрешенные почтовые домены'; -$a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами.'; -$a->strings['No OEmbed rich content'] = 'Не показывать контент OEmbed'; -$a->strings['Don\'t show the rich content (e.g. embedded PDF), except from the domains listed below.'] = 'Не показывать внедрённое содержимое (например, PDF), если источником не являются домены из списка ниже.'; -$a->strings['Trusted third-party domains'] = 'Доверенные внешние домены'; -$a->strings['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.'] = 'Список доменов через запятую, данные с которых будет разрешено внедрять в записи через OEmbed. Все поддомены этих доменов будут так же разрешены.'; -$a->strings['Block public'] = 'Блокировать общественный доступ'; -$a->strings['Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.'] = 'Отметьте, чтобы заблокировать публичный доступ ко всем иным публичным личным страницам на этом сайте, если вы не вошли на сайт.'; -$a->strings['Force publish'] = 'Принудительная публикация'; -$a->strings['Check to force all profiles on this site to be listed in the site directory.'] = 'Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта.'; -$a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Включение этого может нарушить законы о личных данных, например, GDPR.'; -$a->strings['Global directory URL'] = 'URL глобального каталога'; -$a->strings['URL to the global directory. If this is not set, the global directory is completely unavailable to the application.'] = 'Ссылка глобального каталога. Если не указано, то глобальный каталог будет полностью недоступен.'; -$a->strings['Private posts by default for new users'] = 'Частные сообщения по умолчанию для новых пользователей'; -$a->strings['Set default post permissions for all new members to the default privacy group rather than public.'] = 'Установить права на создание записей по умолчанию для всех участников в дефолтной приватной группе, а не для публичных участников.'; -$a->strings['Don\'t include post content in email notifications'] = 'Не включать текст сообщения в email-оповещение.'; -$a->strings['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.'] = 'Не включать содержание сообщения/комментария/личного сообщения и т.д.. в уведомления электронной почты, отправленных с сайта, в качестве меры конфиденциальности.'; -$a->strings['Disallow public access to addons listed in the apps menu.'] = 'Запретить публичный доступ к аддонам, перечисленным в меню приложений.'; -$a->strings['Checking this box will restrict addons listed in the apps menu to members only.'] = 'При установке этого флажка, будут ограничены аддоны, перечисленные в меню приложений, только для участников.'; -$a->strings['Don\'t embed private images in posts'] = 'Не вставлять личные картинки в записи'; -$a->strings['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.'] = 'Не заменяйте локально расположенные фотографии в записях на внедрённые копии изображений. Это означает, что контакты, которые получают сообщения, содержащие личные фотографии, будут вынуждены идентефицироваться и грузить каждое изображение, что может занять некоторое время.'; -$a->strings['Explicit Content'] = 'Контент для взрослых'; -$a->strings['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.'] = 'Включите, если ваш узел будет содержать преимущественно откровенный/чувствительный контент, который не должен быть показан несовершеннолетним. Эта информация появится в информации об узле и может быть использована, например, в глобальном каталоге для скрытия вашего узла при подборе узлов для регистрации. Так же пометка об этом появится на странице регистрации.'; -$a->strings['Proxify external content'] = 'Проксировать внешние данные'; -$a->strings['Route external content via the proxy functionality. This is used for example for some OEmbed accesses and in some other rare cases.'] = 'Отображать внешний контент через встроенное прокси. Это используется для некоторых случаев отображения OEmbed и некоторых других.'; -$a->strings['Cache contact avatars'] = 'Кэшировать аватары'; -$a->strings['Locally store the avatar pictures of the contacts. This uses a lot of storage space but it increases the performance.'] = 'Локально сохранять аватары контактов. Это потребует существенного расхода места на диске, но увеличит производительность.'; -$a->strings['Allow Users to set remote_self'] = 'Разрешить пользователям установить remote_self'; -$a->strings['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.'] = 'Если включено, любой пользователь сможет пометить любой контакт как "remote_self" в расширенных настройках контакта. Установка такого параметра приводит к тому, что все записи помеченного контакта публикуются в ленте от имени пользователя.'; -$a->strings['Enable multiple registrations'] = 'Разрешить несколько регистраций'; -$a->strings['Enable users to register additional accounts for use as pages.'] = 'Разрешить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц.'; -$a->strings['Enable OpenID'] = 'Включить OpenID'; -$a->strings['Enable OpenID support for registration and logins.'] = 'Включить поддержку OpenID для регистрации и входа.'; -$a->strings['Enable Fullname check'] = 'Включить проверку полноты имени'; -$a->strings['Enable check to only allow users to register with a space between the first name and the last name in their full name.'] = 'Проверять при регистрации, чтобы пользователь имел пробел в указанном имени между именем и фамилией.'; -$a->strings['Community pages for visitors'] = 'Публичная лента для посетителей'; -$a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = 'Какие публичные ленты будут доступны для гостей. Местные пользователи всегда видят обе ленты.'; -$a->strings['Posts per user on community page'] = 'Число записей на пользователя в публичной ленте'; -$a->strings['The maximum number of posts per user on the community page. (Not valid for "Global Community")'] = 'Максимальное число записей от одного пользователя в публичной ленте узла. (Не применяется к федеративной публичной ленте).'; -$a->strings['Enable OStatus support'] = 'Включить поддержку OStatus'; -$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'Включить встроенную поддержку OStatus (StatusNet, GNU Social и т.п.). Всё общение в OStatus происходит публично.'; -$a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Поддержка Diaspora не может быть включена, так как Френдика была установлена в подкаталог.'; -$a->strings['Enable Diaspora support'] = 'Включить поддержку Diaspora'; -$a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'Включить встроенную поддержку Diaspora для общения с серверами сети Diaspora.'; -$a->strings['Verify SSL'] = 'Проверка SSL'; -$a->strings['If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.'] = 'Если хотите, вы можете включить строгую проверку сертификатов. Это будет означать, что вы не сможете соединиться (вообще) с сайтами, имеющими само-подписанный SSL сертификат.'; -$a->strings['Proxy user'] = 'Прокси пользователь'; -$a->strings['User name for the proxy server.'] = 'Имя пользователя прокси'; -$a->strings['Proxy URL'] = 'Прокси URL'; -$a->strings['If you want to use a proxy server that Friendica should use to connect to the network, put the URL of the proxy here.'] = 'Если вы хотите указать прокси, который Friendica будет использовать для выхода в сеть, укажите здесь его URL.'; -$a->strings['Network timeout'] = 'Тайм-аут сети'; -$a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется).'; -$a->strings['Maximum Load Average'] = 'Средняя максимальная нагрузка'; -$a->strings['Maximum system load before delivery and poll processes are deferred - default %d.'] = 'Максимальная нагрузка на систему, прежде чем задания опроса и доставки начнут приостанавливаться - по-умолчанию %d.'; -$a->strings['Minimal Memory'] = 'Минимум памяти'; -$a->strings['Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).'] = 'Минимально допустимая свободная память ОЗУ для запуска заданий. Для работы нужен доступ в /proc/meminfo - по-умолчанию 0 (отключено).'; -$a->strings['Periodically optimize tables'] = 'Периодически оптимизировать таблицы'; -$a->strings['Periodically optimize tables like the cache and the workerqueue'] = 'Периодически оптимизировать таблицы, такие как cache и workerqueue'; -$a->strings['Discover followers/followings from contacts'] = 'Обнаруживать подписчиков и друзей для контактов'; -$a->strings['If enabled, contacts are checked for their followers and following contacts.'] = 'Если включено, контакты будут проверяться на наличие подписчиков и друзей.'; -$a->strings['None - deactivated'] = 'None - выключено.'; -$a->strings['Local contacts - contacts of our local contacts are discovered for their followers/followings.'] = 'Local contacts - местные контакты будут проверяться на наличие подписчиков и друзей.'; -$a->strings['Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings.'] = 'Interactors - местные контакты и те контакты, кто взаимодействовал с локально видимыми записями, будут проверяться на наличие подписчиков и друзей.'; -$a->strings['Synchronize the contacts with the directory server'] = 'Синхронизировать контакты с сервером каталога'; -$a->strings['if enabled, the system will check periodically for new contacts on the defined directory server.'] = 'Если включено, то система будет периодически проверять новые контакты на указанном сервере каталога.'; -$a->strings['Days between requery'] = 'Интервал запросов'; -$a->strings['Number of days after which a server is requeried for his contacts.'] = 'Интервал в днях, с которым контакты сервера будут перепроверяться.'; -$a->strings['Discover contacts from other servers'] = 'Обнаруживать контакты с других серверов'; -$a->strings['Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers.'] = 'Периодически опрашивать контакты с других серверов. В них входят Friendica, Mastodon и Hubzilla.'; -$a->strings['Search the local directory'] = 'Искать в местном каталоге'; -$a->strings['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.'] = 'Искать в локальном каталоге вместо глобального. При локальном поиске каждый запрос будет выполняться в глобальном каталоге в фоновом режиме. Это улучшит результаты поиска при повторных запросах.'; -$a->strings['Publish server information'] = 'Опубликовать информацию о сервере'; -$a->strings['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.'] = 'Если включено, общая информация о сервере и статистика будут опубликованы. В данных содержатся имя сервера, версия ПО, число пользователей с открытыми профилями, число записей, подключенные протоколы и соединители. Подробности смотрите на the-federation.info.'; -$a->strings['Check upstream version'] = 'Проверять версию в репозитории'; -$a->strings['Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview.'] = 'Включает проверку новых версий Френдики на Github. Если появится новая версия, вы получите уведомление в панели администратора.'; -$a->strings['Suppress Tags'] = 'Скрывать тэги'; -$a->strings['Suppress showing a list of hashtags at the end of the posting.'] = 'Отключить показ списка тэгов в конце записей.'; -$a->strings['Clean database'] = 'Очистка базы данных'; -$a->strings['Remove old remote items, orphaned database records and old content from some other helper tables.'] = 'Удалять старые записи, полученные с других серверов, ненужные записи в базе данных.'; -$a->strings['Lifespan of remote items'] = 'Время жизни записей с других серверов'; -$a->strings['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.'] = 'Если очистка базы данных включена, эта настройка определяет число дней, после которого записи будут удаляться. Собственные записи, записи с закладками, записи в папках не удаляются. 0 отключает очистку.'; -$a->strings['Lifespan of unclaimed items'] = 'Время жизни ничейных элементов'; -$a->strings['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.'] = 'Когда очистка базы данных включена, эта настройка определяет число дней, после которого ничейные элементы (в основном, данные с ретранслятора) будут удалены. Значение по умолчанию 90 дней. Приравнивается ко времени жизни элементов других серверов, если выставлено в 0.'; -$a->strings['Lifespan of raw conversation data'] = 'Время жизни необработанных данных коммуникаций.'; -$a->strings['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.'] = 'Эти данные используются для ActivityPub и OStatus, а так же для диагностики. Обычно их можно спокойно удалять после 14 дней, значение по-умолчанию 90 дней.'; -$a->strings['Maximum numbers of comments per post'] = 'Максимальное число комментариев для записи'; -$a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Сколько комментариев должно быть показано для каждой записи? Значение по-умолчанию: 100.'; -$a->strings['Maximum numbers of comments per post on the display page'] = 'Максимальное число комментариев на запись при его просмотре'; -$a->strings['How many comments should be shown on the single view for each post? Default value is 1000.'] = 'Сколько комментариев показывать при просмотре записи на отдельной странице? Значение по-умолчанию: 1000.'; -$a->strings['Temp path'] = 'Временная папка'; -$a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Если на вашей системе веб-сервер не имеет доступа к системному пути tmp, введите здесь другой путь.'; -$a->strings['Only search in tags'] = 'Искать только в тегах'; -$a->strings['On large systems the text search can slow down the system extremely.'] = 'На больших системах текстовый поиск может сильно замедлить систему.'; -$a->strings['Maximum number of parallel workers'] = 'Максимальное число параллельно работающих worker\'ов'; -$a->strings['Enable fastlane'] = 'Включить fastlane'; -$a->strings['Direct relay transfer'] = 'Прямая ретрансляция'; -$a->strings['Enables the direct transfer to other servers without using the relay servers'] = 'Разрешает прямую отправку на другие серверы без использования ретрансляторов'; -$a->strings['Relay scope'] = 'Область ретрансляции'; -$a->strings['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.'] = 'Допустимые значения "all" или "tags". "all" означает, что любые публичные записи будут получены. "tags" включает приём публичных записей с выбранными тэгами.'; -$a->strings['Disabled'] = 'Отключено'; -$a->strings['all'] = 'all'; -$a->strings['tags'] = 'tags'; -$a->strings['Server tags'] = 'Тэги сервера'; -$a->strings['Comma separated list of tags for the "tags" subscription.'] = 'Список тэгов, разделённых запятыми, используемый для подписки в режиме "tags"'; -$a->strings['Deny Server tags'] = 'Запретить тэги сервера'; -$a->strings['Comma separated list of tags that are rejected.'] = 'Разделённый запятыми список тэгов, которые будут отбрасываться.'; -$a->strings['Allow user tags'] = 'Разрешить пользовательские тэги'; -$a->strings['If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".'] = 'Если включено, то теги. на которые подписались пользователи, будут добавлены в подписку в дополнение к тегам сервера.'; -$a->strings['Start Relocation'] = 'Начать перемещение'; -$a->strings['Invalid storage backend setting value.'] = 'Недопустимое значение типа хранилища.'; -$a->strings['Database (legacy)'] = 'База данных (устаревшее)'; -$a->strings['There is a new version of Friendica available for download. Your current version is %1$s, upstream version is %2$s'] = 'Новая версия Friendica доступна для загрузки. Ваша текущая версия %1$s, последняя версия %2$s'; -$a->strings['The worker was never executed. Please check your database structure!'] = 'Фоновые задания ни разу не выполнялись. Пожалуйста, проверьте структуру базы данных!'; -$a->strings['The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings.'] = 'Последний раз фоновое задание выполнялось %s UTC. Это более одного часа назад. Пожалуйста, проверьте настройки crontab.'; +$a->strings['Term'] = 'Ключевое слово'; +$a->strings['URL'] = 'URL'; +$a->strings['Implicit Mention'] = 'Неявная отметка'; +$a->strings['Item not found'] = 'Элемент не найден'; +$a->strings['No source recorded'] = 'Источник не сохранён'; +$a->strings['Item Guid'] = 'GUID записи'; +$a->strings['Contact not found or their server is already blocked on this node.'] = 'Контакт не найден или их сервер уже заблокирован на этом узле.'; +$a->strings['Please login to access this page.'] = 'Пожалуйста, войдите для доступа к этой странице.'; +$a->strings['Create Moderation Report'] = 'Создать обращение к модераторам'; +$a->strings['Pick Contact'] = 'Выбор контакта'; +$a->strings['Please enter below the contact address or profile URL you would like to create a moderation report about.'] = 'Пожалуйста, выберите адрес контакта или URL профиля, о котором вы хотите отправить обращение.'; +$a->strings['Contact address/URL'] = 'Адрес контакта/URL'; +$a->strings['Pick Category'] = 'Выбор категории'; +$a->strings['Please pick below the category of your report.'] = 'Пожалуйста, выберите категорию обращения.'; +$a->strings['Spam'] = 'Спам'; +$a->strings['This contact is publishing many repeated/overly long posts/replies or advertising their product/websites in otherwise irrelevant conversations.'] = 'Этот контакт публикует много повторяющихся/слишком длинных записей/комментариев, либо рекламирует свои товары/услуги там, где это неуместно.'; +$a->strings['Illegal Content'] = 'Противозаконный контент'; +$a->strings['This contact is publishing content that is considered illegal in this node\'s hosting juridiction.'] = 'Этот контакт публикует что-то, что запрещено законом в юрисдикции данного узла.'; +$a->strings['Community Safety'] = 'Общественный порядок'; +$a->strings['This contact aggravated you or other people, by being provocative or insensitive, intentionally or not. This includes disclosing people\'s private information (doxxing), posting threats or offensive pictures in posts or replies.'] = 'Этот контакт раздражает вас или других людей провокационным или невежливым поведением, намеренно или нет. Это включает распространение частной информации о других людях (doxxing), угрозы, оскорбительные изображения в записях или комментариях.'; +$a->strings['Unwanted Content/Behavior'] = 'Нежелательные материалы/поведение'; +$a->strings['This contact has repeatedly published content irrelevant to the node\'s theme or is openly criticizing the node\'s administration/moderation without directly engaging with the relevant people for example or repeatedly nitpicking on a sensitive topic.'] = 'Этот контакт неоднократно публикует что-то, не относящееся к тематике узла, открыто критикует администраторов/модераторов без непосредственного обращения к ним, намеренно провоцирует раздор в чувствительных темах.'; +$a->strings['Rules Violation'] = 'Нарушение правил'; +$a->strings['This contact violated one or more rules of this node. You will be able to pick which one(s) in the next step.'] = 'Этот контакт нарушил одно или несколько правил этого узла. Вы сможете выбрать какие на следующем шаге.'; +$a->strings['Please elaborate below why you submitted this report. The more details you provide, the better your report can be handled.'] = 'Пожалуйста, расскажите о причинах вашего обращения. Чем больше деталей вы предоставите, тем лучше ваше обращение будет обработано.'; +$a->strings['Additional Information'] = 'Дополнительная информация'; +$a->strings['Please provide any additional information relevant to this particular report. You will be able to attach posts by this contact in the next step, but any context is welcome.'] = 'Пожалуйста, добавьте любую дополнительную информацию, относящуюся к ситуации. Вы сможете прикрепить записи на следующем шаге, но любые детали пригодятся.'; +$a->strings['Pick Rules'] = 'Выберите правила'; +$a->strings['Please pick below the node rules you believe this contact violated.'] = 'Пожалуйста, выберите правила, которые по вашему мнению были нарушены.'; +$a->strings['Pick Posts'] = 'Выберите записи'; +$a->strings['Please optionally pick posts to attach to your report.'] = 'Пожалуйста, выберите записи, которые вы хотите добавить к обращению.'; +$a->strings['Submit Report'] = 'Отправить обращение'; +$a->strings['Further Action'] = 'Дальнейшие действия'; +$a->strings['You can also perform one of the following action on the contact you reported:'] = 'Вы так же можете сделать следующее с этим контактом:'; +$a->strings['Nothing'] = 'Ничего'; +$a->strings['Collapse contact'] = 'Сворачивать контакт'; +$a->strings['Their posts and replies will keep appearing in your Network page but their content will be collapsed by default.'] = 'Их записи и комментарии будут появляться в вашей ленте, но они будут свёрнуты.'; +$a->strings['Their posts won\'t appear in your Network page anymore, but their replies can appear in forum threads. They still can follow you.'] = 'Их записи и комментарии не будут больше появляться в вашей ленте, но могут появляться в групповых ветках. Так же они могут подписаться на вас.'; +$a->strings['Block contact'] = 'Заблокировать контакт'; +$a->strings['Their posts won\'t appear in your Network page anymore, but their replies can appear in forum threads, with their content collapsed by default. They cannot follow you but still can have access to your public posts by other means.'] = 'Их записи не будут появляться в вашей ленте, но их ответы могут появляться в групповых ветках в свёрнутом виде. Они не смогут подписаться на вас, но могут увидеть ваши публичные записи другими способами.'; +$a->strings['Forward report'] = 'Переслать обращение'; +$a->strings['Would you ike to forward this report to the remote server?'] = 'Вы хотите переслать это обращение на удалённый сервер?'; +$a->strings['1. Pick a contact'] = '1. Выберите контакт'; +$a->strings['2. Pick a category'] = '2. Выберите категорию'; +$a->strings['2a. Pick rules'] = '2a. Выберите правила'; +$a->strings['2b. Add comment'] = '2b. Добавьте комментарий'; +$a->strings['3. Pick posts'] = '3. Выберите записи'; +$a->strings['List of reports'] = 'Список обращений'; +$a->strings['This page display reports created by our or remote users.'] = 'Эта страница показывает обращения, созданные нашими или удалёнными пользователями.'; +$a->strings['No report exists at this node.'] = 'Обращений на этом узле нет.'; +$a->strings['Category'] = 'Категория'; +$a->strings['%s total report'] = [ + 0 => '%s обращение', + 1 => '%s обращения', + 2 => '%s обращений', + 3 => '%s обращений', +]; +$a->strings['URL of the reported contact.'] = 'URL контакта в обращении.'; $a->strings['Normal Account'] = 'Обычный аккаунт'; $a->strings['Automatic Follower Account'] = '"Автоматический друг" Аккаунт'; -$a->strings['Public Forum Account'] = 'Публичный форум'; +$a->strings['Public Group Account'] = 'Публичная группа'; $a->strings['Automatic Friend Account'] = '"Автоматический друг" Аккаунт'; $a->strings['Blog Account'] = 'Аккаунт блога'; -$a->strings['Private Forum Account'] = 'Закрытый форум'; -$a->strings['Message queues'] = 'Очереди сообщений'; -$a->strings['Server Settings'] = 'Настройки сервера'; +$a->strings['Private Group Account'] = 'Закрытая группа'; $a->strings['Registered users'] = 'Зарегистрированные пользователи'; $a->strings['Pending registrations'] = 'Ожидающие регистрации'; -$a->strings['Version'] = 'Версия'; -$a->strings['Active addons'] = 'Активные дополнения'; -$a->strings['Theme %s disabled.'] = 'Тема %s отключена.'; -$a->strings['Theme %s successfully enabled.'] = 'Тема %s успешно включена.'; -$a->strings['Theme %s failed to install.'] = 'Не удалось установить тему %s.'; -$a->strings['Screenshot'] = 'Скриншот'; -$a->strings['Themes'] = 'Темы'; -$a->strings['Unknown theme.'] = 'Неизвестная тема.'; -$a->strings['Themes reloaded'] = 'Темы перезагружены'; -$a->strings['Reload active themes'] = 'Перезагрузить активные темы'; -$a->strings['No themes found on the system. They should be placed in %1$s'] = 'Ни одной темы не найдено на сервере. Они должны быть размещены в %1$s'; -$a->strings['[Experimental]'] = '[экспериментально]'; -$a->strings['[Unsupported]'] = '[Неподдерживаемое]'; -$a->strings['Display Terms of Service'] = 'Показать Условия оказания услуг'; -$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->strings['Display Privacy Statement'] = 'Показать Положение о конфиденциальности'; -$a->strings['Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR.'] = 'Показать различную информацию о соответствии узла различным требованиям конфиденциальности, например, EU-GDPR.'; -$a->strings['Privacy Statement Preview'] = 'Предпросмотр Положения о конфиденциальности'; -$a->strings['The Terms of Service'] = 'Условия оказания услуг'; -$a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = 'Введите здесь текст Условий оказания услуг для вашего узла. Можно использовать BBCode. Заголовки отдельных секций должны использовать [h2] и ниже.'; $a->strings['%s user blocked'] = [ 0 => '%s пользователь заблокирован', 1 => '%s пользователя заблокировано', @@ -1589,9 +2122,11 @@ $a->strings['User "%s" blocked'] = 'Пользователь "%s" заблоки $a->strings['Register date'] = 'Дата регистрации'; $a->strings['Last login'] = 'Последний вход'; $a->strings['Last public item'] = 'Последняя публичная запись'; +$a->strings['Active Accounts'] = 'Активные учётные записи'; $a->strings['User blocked'] = 'Пользователь заблокирован'; $a->strings['Site admin'] = 'Админ сайта'; $a->strings['Account expired'] = 'Аккаунт просрочен'; +$a->strings['Create a new user'] = 'Создать нового'; $a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Выбранные пользователи будут удалены!\n\nВсе, что эти пользователи написали на этом сайте, будет удалено!\n\nВы уверены в вашем действии?'; $a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Пользователь {0} будет удален!\n\nВсе, что этот пользователь написал на этом сайте, будет удалено!\n\nВы уверены в вашем действии?'; $a->strings['%s user unblocked'] = [ @@ -1610,7 +2145,6 @@ $a->strings['Nickname of the new user.'] = 'Ник нового пользова $a->strings['Email address of the new user.'] = 'Email адрес нового пользователя.'; $a->strings['Users awaiting permanent deletion'] = 'Пользователи, ожидающие окончательного удаления'; $a->strings['Permanent deletion'] = 'Постоянное удаление'; -$a->strings['Users'] = 'Пользователи'; $a->strings['User waiting for permanent deletion'] = 'Пользователь ожидает окончательного удаления'; $a->strings['%s user approved'] = [ 0 => '%s пользователь одобрен', @@ -1631,333 +2165,6 @@ $a->strings['Request date'] = 'Запрос даты'; $a->strings['No registrations.'] = 'Нет регистраций.'; $a->strings['Note from the user'] = 'Сообщение от пользователя'; $a->strings['Deny'] = 'Отклонить'; -$a->strings['Only starting posts can be bookmarked'] = 'Только заглавные записи могут быть добавлены в закладки'; -$a->strings['Only starting posts can be muted'] = 'Только заглавные записи можно заглушить'; -$a->strings['Only starting posts can be unbookmarked'] = 'Только заглавные записи можно удалить из закладок'; -$a->strings['Only starting posts can be unmuted'] = 'Только с заглавных записей можно снять заглушение'; -$a->strings['Contact not found'] = 'Контакт не найден'; -$a->strings['No installed applications.'] = 'Нет установленных приложений.'; -$a->strings['Applications'] = 'Приложения'; -$a->strings['Item was not found.'] = 'Пункт не был найден.'; -$a->strings['Please login to continue.'] = 'Пожалуйста, войдите для продолжения.'; -$a->strings['You don\'t have access to administration pages.'] = 'У вас нет доступа к страницам администратора.'; -$a->strings['Submanaged account can\'t access the administration pages. Please log back in as the main account.'] = 'Дополнительная учётная запись не имеет доступа к административным страницам. Пожалуйста, зайдите непосредственно как администратор.'; -$a->strings['Overview'] = 'Общая информация'; -$a->strings['Configuration'] = 'Конфигурация'; -$a->strings['Additional features'] = 'Дополнительные возможности'; -$a->strings['Database'] = 'База данных'; -$a->strings['DB updates'] = 'Обновление БД'; -$a->strings['Inspect Deferred Workers'] = 'Посмотреть отложенные задания'; -$a->strings['Inspect worker Queue'] = 'Посмотреть очередь заданий'; -$a->strings['Tools'] = 'Инструменты'; -$a->strings['Contact Blocklist'] = 'Чёрный список контактов'; -$a->strings['Server Blocklist'] = 'Чёрный список серверов'; -$a->strings['Diagnostics'] = 'Диагностика'; -$a->strings['User registrations waiting for confirmation'] = 'Регистрации пользователей, ожидающие подтверждения'; -$a->strings['Daily posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Дневной лимит в %d запись достигнут. Запись отклонена.', - 1 => 'Дневной лимит в %d записи достигнут. Запись отклонена.', - 2 => 'Дневной лимит в %d записей достигнут. Запись отклонена.', - 3 => 'Дневной лимит в %d записей достигнут. Запись отклонена.', -]; -$a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = [ - 0 => 'Недельный лимит в %d запись достигнут. Запись была отклонена.', - 1 => 'Недельный лимит в %d записи достигнут. Запись была отклонена.', - 2 => 'Недельный лимит в %d записей достигнут. Запись была отклонена.', - 3 => 'Недельный лимит в %d записей достигнут. Запись была отклонена.', -]; -$a->strings['Profile Details'] = 'Информация о вас'; -$a->strings['Only You Can See This'] = 'Только вы можете это видеть'; -$a->strings['Scheduled Posts'] = 'Запланированные записи'; -$a->strings['Posts that are scheduled for publishing'] = 'Записи, публикация которых запланирована'; -$a->strings['Tips for New Members'] = 'Советы для новых участников'; -$a->strings['People Search - %s'] = 'Поиск по людям - %s'; -$a->strings['Forum Search - %s'] = 'Поиск по форумам - %s'; -$a->strings['Account'] = 'Аккаунт'; -$a->strings['Two-factor authentication'] = 'Двухфакторная аутентификация'; -$a->strings['Display'] = 'Внешний вид'; -$a->strings['Manage Accounts'] = 'Управление учётными записями'; -$a->strings['Connected apps'] = 'Подключенные приложения'; -$a->strings['Export personal data'] = 'Экспорт личных данных'; -$a->strings['Remove account'] = 'Удалить аккаунт'; -$a->strings['The post was created'] = 'Запись создана'; -$a->strings['%d contact edited.'] = [ - 0 => '%d контакт изменен.', - 1 => '%d контакта изменено.', - 2 => '%d контактов изменены.', - 3 => '%d контактов изменены.', -]; -$a->strings['Show all contacts'] = 'Показать все контакты'; -$a->strings['Only show pending contacts'] = 'Показать только контакты "в ожидании"'; -$a->strings['Only show blocked contacts'] = 'Показать только блокированные контакты'; -$a->strings['Ignored'] = 'Игнорируются'; -$a->strings['Only show ignored contacts'] = 'Показать только игнорируемые контакты'; -$a->strings['Archived'] = 'Архивированные'; -$a->strings['Only show archived contacts'] = 'Показывать только архивные контакты'; -$a->strings['Hidden'] = 'Скрытые'; -$a->strings['Only show hidden contacts'] = 'Показывать только скрытые контакты'; -$a->strings['Organize your contact groups'] = 'Настроить группы контактов'; -$a->strings['Search your contacts'] = 'Поиск ваших контактов'; -$a->strings['Results for: %s'] = 'Результаты для: %s'; -$a->strings['Update'] = 'Обновление'; -$a->strings['Unignore'] = 'Не игнорировать'; -$a->strings['Batch Actions'] = 'Пакетные действия'; -$a->strings['Conversations started by this contact'] = 'Диалоги этого контакта'; -$a->strings['Posts and Comments'] = 'Записи и комментарии'; -$a->strings['View all known contacts'] = 'Показать все известные контакты'; -$a->strings['Advanced Contact Settings'] = 'Дополнительные Настройки Контакта'; -$a->strings['Mutual Friendship'] = 'Взаимная дружба'; -$a->strings['is a fan of yours'] = 'является вашим поклонником'; -$a->strings['you are a fan of'] = 'Вы - поклонник'; -$a->strings['Pending outgoing contact request'] = 'Исходящий запрос на подписку'; -$a->strings['Pending incoming contact request'] = 'Входящий запрос на подписку'; -$a->strings['Visit %s\'s profile [%s]'] = 'Посетить профиль %s [%s]'; -$a->strings['Contact update failed.'] = 'Обновление контакта неудачное.'; -$a->strings['Return to contact editor'] = 'Возврат к редактору контакта'; -$a->strings['Account Nickname'] = 'Ник аккаунта'; -$a->strings['Account URL'] = 'URL аккаунта'; -$a->strings['Poll/Feed URL'] = 'URL опроса/ленты'; -$a->strings['New photo from this URL'] = 'Новое фото из этой URL'; -$a->strings['Invalid contact.'] = 'Недопустимый контакт.'; -$a->strings['No known contacts.'] = 'Нет известных контактов.'; -$a->strings['No common contacts.'] = 'Общих контактов нет.'; -$a->strings['Follower (%s)'] = [ - 0 => 'Подписчик (%s)', - 1 => 'Подписчики (%s)', - 2 => 'Подписчики (%s)', - 3 => 'Подписчики (%s)', -]; -$a->strings['Following (%s)'] = [ - 0 => 'Подписан на (%s)', - 1 => 'Подписаны на (%s)', - 2 => 'Подписаны на (%s)', - 3 => 'Подписаны на (%s)', -]; -$a->strings['Mutual friend (%s)'] = [ - 0 => 'Взаимный друг (%s)', - 1 => 'Взаимные друзья (%s)', - 2 => 'Взаимные друзья (%s)', - 3 => 'Взаимные друзья (%s)', -]; -$a->strings['These contacts both follow and are followed by %s.'] = 'Эти контакты взаимно добавлены в друзья %s.'; -$a->strings['Common contact (%s)'] = [ - 0 => 'Общий контакт (%s)', - 1 => 'Общие контакты (%s)', - 2 => 'Общие контакты (%s)', - 3 => 'Общие контакты (%s)', -]; -$a->strings['Both %s and yourself have publicly interacted with these contacts (follow, comment or likes on public posts).'] = '%s и вы публично взаимодействовали с этими контактами (добавляли их, комментировали публичные посты или оставляли лайки к ним).'; -$a->strings['Contact (%s)'] = [ - 0 => 'Контакт (%s)', - 1 => 'Контакты (%s)', - 2 => 'Контакты (%s)', - 3 => 'Контакты (%s)', -]; -$a->strings['Failed to update contact record.'] = 'Не удалось обновить запись контакта.'; -$a->strings['Contact has been unblocked'] = 'Контакт разблокирован'; -$a->strings['Contact has been blocked'] = 'Контакт заблокирован'; -$a->strings['Contact has been unignored'] = 'У контакта отменено игнорирование'; -$a->strings['Contact has been ignored'] = 'Контакт проигнорирован'; -$a->strings['You are mutual friends with %s'] = 'У Вас взаимная дружба с %s'; -$a->strings['You are sharing with %s'] = 'Вы делитесь с %s'; -$a->strings['%s is sharing with you'] = '%s делится с Вами'; -$a->strings['Private communications are not available for this contact.'] = 'Приватные коммуникации недоступны для этого контакта.'; -$a->strings['Never'] = 'Никогда'; -$a->strings['(Update was not successful)'] = '(Обновление не удалось)'; -$a->strings['(Update was successful)'] = '(Обновление было успешно)'; -$a->strings['Suggest friends'] = 'Предложить друзей'; -$a->strings['Network type: %s'] = 'Сеть: %s'; -$a->strings['Communications lost with this contact!'] = 'Связь с контактом утеряна!'; -$a->strings['Fetch further information for feeds'] = 'Получить подробную информацию о фидах'; -$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.'] = 'Извлекать картинки предпросмотра, заголовок и вступление из записи ленты. Вы можете включить эту опцию, если лента не содержит много текста. Ключевые слова берутся из метаданных записи и публикуются как теги.'; -$a->strings['Fetch information'] = 'Получить информацию'; -$a->strings['Fetch keywords'] = 'Получить ключевые слова'; -$a->strings['Fetch information and keywords'] = 'Получить информацию и ключевые слова'; -$a->strings['No mirroring'] = 'Не зеркалировать'; -$a->strings['Mirror as forwarded posting'] = 'Зеркалировать как переадресованные сообщения'; -$a->strings['Mirror as my own posting'] = 'Зеркалировать как мои сообщения'; -$a->strings['Contact Information / Notes'] = 'Информация о контакте / Заметки'; -$a->strings['Contact Settings'] = 'Настройки контакта'; -$a->strings['Contact'] = 'Контакт'; -$a->strings['Their personal note'] = 'Персональная заметка'; -$a->strings['Edit contact notes'] = 'Редактировать заметки контакта'; -$a->strings['Block/Unblock contact'] = 'Блокировать / Разблокировать контакт'; -$a->strings['Ignore contact'] = 'Игнорировать контакт'; -$a->strings['View conversations'] = 'Просмотр бесед'; -$a->strings['Last update:'] = 'Последнее обновление: '; -$a->strings['Update public posts'] = 'Обновить публичные сообщения'; -$a->strings['Update now'] = 'Обновить сейчас'; -$a->strings['Currently blocked'] = 'В настоящее время заблокирован'; -$a->strings['Currently ignored'] = 'В настоящее время игнорируется'; -$a->strings['Currently archived'] = 'В данный момент архивирован'; -$a->strings['Awaiting connection acknowledge'] = 'Ожидаем подтверждения соединения'; -$a->strings['Hide this contact from others'] = 'Скрыть этот контакт от других'; -$a->strings['Replies/likes to your public posts may still be visible'] = 'Ответы/лайки ваших публичных сообщений будут видимы.'; -$a->strings['Notification for new posts'] = 'Уведомление о новых записях'; -$a->strings['Send a notification of every new post of this contact'] = 'Отправлять уведомление о каждом новой записи контакта'; -$a->strings['Keyword Deny List'] = 'Запретный список слов'; -$a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Список слов через запятую, которые не должны конвертироваться в хэштеги, когда включено "Получать информацию и хэштеги"'; -$a->strings['Actions'] = 'Действия'; -$a->strings['Mirror postings from this contact'] = 'Зекралировать сообщения от этого контакта'; -$a->strings['Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'] = 'Пометить этот контакт как remote_self, что заставит Friendica отправлять сообщения от этого контакта.'; -$a->strings['Refetch contact data'] = 'Обновить данные контакта'; -$a->strings['Toggle Blocked status'] = 'Изменить статус блокированности (заблокировать/разблокировать)'; -$a->strings['Toggle Ignored status'] = 'Изменить статус игнорирования'; -$a->strings['Revoke Follow'] = 'Отозвать подписку'; -$a->strings['Revoke the follow from this contact'] = 'Отменить подписку этого контакта на вас'; -$a->strings['Contact is deleted.'] = 'Контакт удалён.'; -$a->strings['Follow was successfully revoked.'] = 'Подписка была успешно отозвана.'; -$a->strings['Do you really want to revoke this contact\'s follow? This cannot be undone and they will have to manually follow you back again.'] = 'Вы действительно хотите отозвать подписку этого контакта на вас? Это нельзя будет отменить позже, им потребуется снова подписаться на вас.'; -$a->strings['Yes'] = 'Да'; -$a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'Эта общая лента показывает все публичные записи, которые получил этот сервер. Они могут не отражать мнений пользователей этого сервера.'; -$a->strings['Local Community'] = 'Местное сообщество'; -$a->strings['Posts from local users on this server'] = 'Записи пользователей с этого сервера'; -$a->strings['Global Community'] = 'Глобальное сообщество'; -$a->strings['Posts from users of the whole federated network'] = 'Записи пользователей со всей федеративной сети'; -$a->strings['No results.'] = 'Нет результатов.'; -$a->strings['Not available.'] = 'Недоступно.'; -$a->strings['No such group'] = 'Нет такой группы'; -$a->strings['Group: %s'] = 'Группа: %s'; -$a->strings['Latest Activity'] = 'Вся активность'; -$a->strings['Sort by latest activity'] = 'Отсортировать по свежей активности'; -$a->strings['Latest Posts'] = 'Новые записи'; -$a->strings['Sort by post received date'] = 'Отсортировать по времени получения записей'; -$a->strings['Latest Creation'] = 'По времени'; -$a->strings['Sort by post creation date'] = 'Отсортировать по времени создания записей'; -$a->strings['Personal'] = 'Личные'; -$a->strings['Posts that mention or involve you'] = 'Записи, которые упоминают вас или в которых вы участвуете'; -$a->strings['Starred'] = 'Избранное'; -$a->strings['Favourite Posts'] = 'Избранные записи'; -$a->strings['Credits'] = 'Признательность'; -$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!'] = 'Friendica это проект сообщества, который был бы невозможен без помощи многих людей. Вот лист тех, кто писал код или помогал с переводом. Спасибо вам всем!'; -$a->strings['Decoded post'] = 'Декодированная запись'; -$a->strings['Post array before expand entities'] = 'Массив записи до развертывания объектов'; -$a->strings['Post converted'] = 'Запись преобразована'; -$a->strings['You must be logged in to use this module'] = 'Вы должны быть залогинены для использования этого модуля'; -$a->strings['Source URL'] = 'Исходный URL'; -$a->strings['Time Conversion'] = 'История общения'; -$a->strings['Friendica provides this service for sharing events with other networks and friends in unknown timezones.'] = 'Friendica предоставляет этот сервис для обмена событиями с другими сетями и друзьями, находящимися в неопределённых часовых поясах.'; -$a->strings['UTC time: %s'] = 'UTC время: %s'; -$a->strings['Current timezone: %s'] = 'Ваш часовой пояс: %s'; -$a->strings['Converted localtime: %s'] = 'Ваше изменённое время: %s'; -$a->strings['Please select your timezone:'] = 'Выберите пожалуйста ваш часовой пояс:'; -$a->strings['You are now logged in as %s'] = 'Вы вошли как %s'; -$a->strings['Switch between your accounts'] = 'Переключить учётную запись'; -$a->strings['Manage your accounts'] = 'Управление учётными записями'; -$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Переключайтесь между разными профилями или страницами сообществ/групп, которые зарегистрированы на одинаковые контактные данные, либо вам предоставлено право управления ими.'; -$a->strings['Select an identity to manage: '] = 'Выберите учётную запись:'; -$a->strings['No entries (some entries may be hidden).'] = 'Нет записей (некоторые записи могут быть скрыты).'; -$a->strings['Find on this site'] = 'Найти на этом сайте'; -$a->strings['Results for:'] = 'Результаты для:'; -$a->strings['Site Directory'] = 'Каталог сайта'; -$a->strings['Item was not deleted'] = 'Запись не была удалена'; -$a->strings['Item was not removed'] = 'Запись не была удалена'; -$a->strings['- select -'] = '- выбрать -'; -$a->strings['Suggested contact not found.'] = 'Рекомендованный контакт не найден.'; -$a->strings['Friend suggestion sent.'] = 'Приглашение в друзья отправлено.'; -$a->strings['Suggest Friends'] = 'Предложить друзей'; -$a->strings['Suggest a friend for %s'] = 'Предложить друга для %s.'; -$a->strings['Installed addons/apps:'] = 'Установленные дополнения:'; -$a->strings['No installed addons/apps'] = 'Нет установленных дополнений'; -$a->strings['Read about the Terms of Service of this node.'] = 'Ознакомьтесь с Условиями Предоставления Услуг этого узла.'; -$a->strings['On this server the following remote servers are blocked.'] = 'На этом сервере заблокированы следующие удалённые серверы.'; -$a->strings['Download this list in CSV format'] = 'Скачать этот список в формате CSV'; -$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.'] = 'Это сервер Friendica, версия %s, работающий по адресу %s. Версия базы данных %s, версия post update %s.'; -$a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Посетите Friendi.ca, чтобы узнать больше о проекте Friendica.'; -$a->strings['Bug reports and issues: please visit'] = 'Отчет об ошибках и проблемах: пожалуйста, посетите'; -$a->strings['the bugtracker at github'] = 'багтрекер на github'; -$a->strings['Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'] = 'Предложения, отзывы, похвала - пишите нам на info[собака]friendi[точка]ca'; -$a->strings['Could not create group.'] = 'Не удалось создать группу.'; -$a->strings['Group not found.'] = 'Группа не найдена.'; -$a->strings['Group name was not changed.'] = 'Название группы не изменено.'; -$a->strings['Unknown group.'] = 'Неизвестная группа.'; -$a->strings['Unable to add the contact to the group.'] = 'Не удалось добавить контакт в группу.'; -$a->strings['Contact successfully added to group.'] = 'Контакт успешно добавлен в группу.'; -$a->strings['Unable to remove the contact from the group.'] = 'Не удалось удалить контакт из группы.'; -$a->strings['Contact successfully removed from group.'] = 'Контакт успешно удалён из группы.'; -$a->strings['Bad request.'] = 'Ошибочный запрос.'; -$a->strings['Save Group'] = 'Сохранить группу'; -$a->strings['Filter'] = 'Фильтр'; -$a->strings['Create a group of contacts/friends.'] = 'Создать группу контактов / друзей.'; -$a->strings['Unable to remove group.'] = 'Не удается удалить группу.'; -$a->strings['Delete Group'] = 'Удалить группу'; -$a->strings['Edit Group Name'] = 'Изменить имя группы'; -$a->strings['Members'] = 'Участники'; -$a->strings['Group is empty'] = 'Группа пуста'; -$a->strings['Remove contact from group'] = 'Удалить контакт из группы'; -$a->strings['Click on a contact to add or remove.'] = 'Нажмите на контакт, чтобы добавить или удалить.'; -$a->strings['Add contact to group'] = 'Добавить контакт в группу'; -$a->strings['No profile'] = 'Нет профиля'; -$a->strings['Method Not Allowed.'] = 'Метод не разрешён'; -$a->strings['Help:'] = 'Помощь:'; -$a->strings['Welcome to %s'] = 'Добро пожаловать на %s!'; -$a->strings['Friendica Communications Server - Setup'] = 'Социальная сеть Friendica - Установка'; -$a->strings['System check'] = 'Проверить систему'; -$a->strings['OK'] = 'ОК'; -$a->strings['Check again'] = 'Проверить еще раз'; -$a->strings['Base settings'] = 'Основные настройки'; -$a->strings['Host name'] = 'Имя хоста'; -$a->strings['Overwrite this field in case the determinated hostname isn\'t right, otherweise leave it as is.'] = 'Впишите здесь имя сервера, если оно определилось неправильно, иначе оставьте его как есть.'; -$a->strings['Base path to installation'] = 'Путь для установки'; -$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.'] = 'Если система не смогла определить правильный путь к вашей установке, введите правильный путь здесь. Эта настройка должна использоваться только, если вы используете систему с ограниченным доступом с символьными ссылками в ваш веб-каталог.'; -$a->strings['Sub path of the URL'] = 'Дополнительная часть URL'; -$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.'] = 'Впишите здесь правильный каталог URL, если он определён неверно, иначе оставьте его как есть. Пустое поле означает, что Friendica установлена по основному URL без подкаталогов.'; -$a->strings['Database connection'] = 'Подключение к базе данных'; -$a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных.'; -$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах.'; -$a->strings['The database you specify below should already exist. If it does not, please create it before continuing.'] = 'Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением.'; -$a->strings['Database Server Name'] = 'Имя сервера базы данных'; -$a->strings['Database Login Name'] = 'Логин базы данных'; -$a->strings['Database Login Password'] = 'Пароль базы данных'; -$a->strings['For security reasons the password must not be empty'] = 'Для безопасности пароль не должен быть пустым'; -$a->strings['Database Name'] = 'Имя базы данных'; -$a->strings['Please select a default timezone for your website'] = 'Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта'; -$a->strings['Site settings'] = 'Настройки сайта'; -$a->strings['Site administrator email address'] = 'Адрес электронной почты администратора сайта'; -$a->strings['Your account email address must match this in order to use the web admin panel.'] = 'Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора.'; -$a->strings['System Language:'] = 'Язык системы:'; -$a->strings['Set the default language for your Friendica installation interface and to send emails.'] = 'Язык по-умолчанию для интерфейса Friendica и для отправки писем.'; -$a->strings['Your Friendica site database has been installed.'] = 'База данных сайта установлена.'; -$a->strings['Installation finished'] = 'Установка завершена'; -$a->strings['

    What next

    '] = '

    Что далее

    '; -$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the worker.'] = 'ВАЖНО: Вам нужно будет [вручную] настроить фоновое задание в планировщике.'; -$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.'] = 'Зайдите на страницу регистрации вашего нового сервера Friendica и зарегистрируйтесь как новый пользователь. Обратите внимание, что нужно использовать тот же адрес почты, какой вы указали в настройках администратора. Это позволит вам зайти в панель администратора.'; -$a->strings['Total invitation limit exceeded.'] = 'Превышен общий лимит приглашений.'; -$a->strings['%s : Not a valid email address.'] = '%s: Неверный адрес электронной почты.'; -$a->strings['Please join us on Friendica'] = 'Пожалуйста, присоединяйтесь к нам на Friendica'; -$a->strings['Invitation limit exceeded. Please contact your site administrator.'] = 'Лимит приглашений превышен. Пожалуйста, свяжитесь с администратором сайта.'; -$a->strings['%s : Message delivery failed.'] = '%s: Доставка сообщения не удалась.'; -$a->strings['%d message sent.'] = [ - 0 => '%d сообщение отправлено.', - 1 => '%d сообщений отправлено.', - 2 => '%d сообщений отправлено.', - 3 => '%d сообщений отправлено.', -]; -$a->strings['You have no more invitations available'] = 'У вас нет больше приглашений'; -$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.'] = 'Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей.'; -$a->strings['To accept this invitation, please visit and register at %s or any other public Friendica website.'] = 'Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на %s ,или любом другом публичном сервере Friendica'; -$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.'] = 'Сайты Friendica, подключившись между собой, могут создать сеть с повышенной безопасностью, которая принадлежит и управляется её членами. Они также могут подключаться ко многим традиционным социальным сетям. См. %s со списком альтернативных сайтов Friendica, к которым вы можете присоединиться.'; -$a->strings['Our apologies. This system is not currently configured to connect with other public sites or invite members.'] = 'Извините. Эта система в настоящее время не сконфигурирована для соединения с другими общественными сайтами и для приглашения участников.'; -$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->strings['To accept this invitation, please visit and register at %s.'] = 'Чтобы принять это приглашение, пожалуйста зайдите на %s и зарегистрируйтесь.'; -$a->strings['Send invitations'] = 'Отправить приглашения'; -$a->strings['Enter email addresses, one per line:'] = 'Введите адреса электронной почты, по одному в строке:'; -$a->strings['You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.'] = 'Приглашаем Вас присоединиться ко мне и другим близким друзьям на Friendica - помочь нам создать лучшую социальную сеть.'; -$a->strings['You will need to supply this invitation code: $invite_code'] = 'Вам нужно будет предоставить этот код приглашения: $invite_code'; -$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:'; -$a->strings['For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca'] = 'Чтобы узнать больше о проекте Friendica и почему мы считаем это важным, посетите http://friendi.ca'; -$a->strings['Please enter a post body.'] = 'Пожалуйста, введите текст записи.'; -$a->strings['This feature is only available with the frio theme.'] = 'Эта функция доступна только для темы frio.'; -$a->strings['Compose new personal note'] = 'Создать новую личную заметку'; -$a->strings['Compose new post'] = 'Создать новую запись'; -$a->strings['Visibility'] = 'Видимость'; -$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['Unable to follow this item.'] = 'Не получается подписаться на эту запись.'; -$a->strings['System down for maintenance'] = 'Система закрыта на техническое обслуживание'; -$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.'] = 'Этот сервер Friendica в настоящее время закрыт на обслуживание, либо по причине автоматического обновления, либо администратором. Обычно это временное явление, пожалуйста, попробуйте вернуться через некоторое время.'; -$a->strings['A Decentralized Social Network'] = 'Децентрализованная социальная сеть'; $a->strings['Show Ignored Requests'] = 'Показать проигнорированные запросы'; $a->strings['Hide Ignored Requests'] = 'Скрыть проигнорированные запросы'; $a->strings['Notification type:'] = 'Тип уведомления:'; @@ -1977,17 +2184,67 @@ $a->strings['System Notifications'] = 'Уведомления системы'; $a->strings['Personal Notifications'] = 'Личные уведомления'; $a->strings['Home Notifications'] = 'Уведомления'; $a->strings['Show unread'] = 'Показать непрочитанные'; -$a->strings['{0} requested registration'] = '{0} требуемая регистрация'; +$a->strings['{0} requested registration'] = '{0} запрос на регистрацию'; +$a->strings['{0} and %d others requested registration'] = '{0} и %d других запросов на регистрацию'; $a->strings['Authorize application connection'] = 'Разрешить связь с приложением'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Вы действительно хотите разрешить этому приложению доступ к своим записям и контактам, а также создавать новые записи от вашего имени?'; +$a->strings['Unsupported or missing response type'] = 'Неподдерживаемый или отсутствующий тип отклика'; +$a->strings['Incomplete request data'] = 'Неполные данные запроса'; +$a->strings['Please copy the following authentication code into your application and close this window: %s'] = 'Пожалуйста, скопируйте следующий код аутентификации в ваше приложение и закройте это окно: %s'; +$a->strings['Invalid data or unknown client'] = 'Ошибочные данные или неизвестный клиент'; +$a->strings['Unsupported or missing grant type'] = 'Неподдерживаемый или отсутствующий тип гранта.'; +$a->strings['Resubscribing to OStatus contacts'] = 'Переподписаться на OStatus-контакты.'; +$a->strings['Keep this window open until done.'] = 'Держать окно открытым до завершения.'; +$a->strings['✔ Done'] = '✔ Готово'; +$a->strings['No OStatus contacts to resubscribe to.'] = 'Нет контактов OStatus для переподписки.'; +$a->strings['Subscribing to contacts'] = 'Подписка на контакты'; +$a->strings['No contact provided.'] = 'Не указан контакт.'; +$a->strings['Couldn\'t fetch information for contact.'] = 'Невозможно получить информацию о контакте.'; +$a->strings['Couldn\'t fetch friends for contact.'] = 'Невозможно получить друзей для контакта.'; +$a->strings['Couldn\'t fetch following contacts.'] = 'Не удалось загрузить контакты подписчиков.'; +$a->strings['Couldn\'t fetch remote profile.'] = 'Не получилось загрузить профиль.'; +$a->strings['Unsupported network'] = 'Сеть не поддерживается'; +$a->strings['Done'] = 'Готово'; +$a->strings['success'] = 'удачно'; +$a->strings['failed'] = 'неудача'; +$a->strings['ignored'] = 'игнорирован'; +$a->strings['Wrong type "%s", expected one of: %s'] = 'Ошибочный тип "%s", ожидался один из: %s'; +$a->strings['Model not found'] = 'Модель не найдена'; $a->strings['Unlisted'] = 'Непублично'; $a->strings['Remote privacy information not available.'] = 'Личная информация удаленно недоступна.'; $a->strings['Visible to:'] = 'Кто может видеть:'; +$a->strings['Collection (%s)'] = 'Коллекция (%s)'; $a->strings['Followers (%s)'] = 'Подписчики (%s)'; +$a->strings['%d more'] = '%d ещё'; +$a->strings['To: %s
    '] = 'Кому: %s
    '; +$a->strings['CC: %s
    '] = 'CC: %s
    '; +$a->strings['BCC: %s
    '] = 'BCC: %s
    '; +$a->strings['Audience: %s
    '] = 'Аудитория: %s
    '; +$a->strings['Attributed To: %s
    '] = 'Относится к: %s
    '; $a->strings['The Photo is not available.'] = 'Фото недоступно.'; $a->strings['The Photo with id %s is not available.'] = 'Фотография с id %s недоступна.'; +$a->strings['Invalid external resource with url %s.'] = 'Проблема с внешним ресурсом по адресу %s.'; $a->strings['Invalid photo with id %s.'] = 'Неправильное фото с id %s.'; +$a->strings['Post not found.'] = 'Запись не найдена'; +$a->strings['Edit post'] = 'Редактировать запись'; +$a->strings['web link'] = 'веб-ссылка'; +$a->strings['Insert video link'] = 'Вставить ссылку видео'; +$a->strings['video link'] = 'видео-ссылка'; +$a->strings['Insert audio link'] = 'Вставить ссылку аудио'; +$a->strings['audio link'] = 'аудио-ссылка'; +$a->strings['Remove Item Tag'] = 'Удалить ключевое слово'; +$a->strings['Select a tag to remove: '] = 'Выберите ключевое слово для удаления: '; +$a->strings['Remove'] = 'Удалить'; $a->strings['No contacts.'] = 'Нет контактов.'; +$a->strings['%s\'s timeline'] = 'Лента %s'; +$a->strings['%s\'s posts'] = 'Записи %s'; +$a->strings['%s\'s comments'] = 'Комментарии %s'; +$a->strings['Image exceeds size limit of %s'] = 'Изображение превышает лимит размера в %s'; +$a->strings['Image upload didn\'t complete, please try again'] = 'Не получилось загрузить изображение, попробуйте снова'; +$a->strings['Image file is missing'] = 'Файл изображения не найден'; +$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Сервер не принимает новые файлы для загрузки в настоящий момент, пожалуйста, свяжитесь с администратором'; +$a->strings['Image file is empty.'] = 'Файл изображения пуст.'; +$a->strings['View Album'] = 'Просмотреть альбом'; $a->strings['Profile not found.'] = 'Профиль не найден.'; $a->strings['You\'re currently viewing your profile as %s Cancel'] = 'Сейчас вы видите свой профиль как %s Отмена'; $a->strings['Full Name:'] = 'Полное имя:'; @@ -2002,16 +2259,34 @@ $a->strings['%d year old'] = [ 2 => '%dлет', 3 => '%dлет', ]; -$a->strings['Forums:'] = 'Форумы:'; +$a->strings['Description:'] = 'Описание:'; +$a->strings['Groups:'] = 'Группы:'; $a->strings['View profile as:'] = 'Посмотреть профиль как:'; $a->strings['View as'] = 'Посмотреть как'; -$a->strings['%s\'s timeline'] = 'Лента %s'; -$a->strings['%s\'s posts'] = 'Записи %s'; -$a->strings['%s\'s comments'] = 'Комментарии %s'; +$a->strings['Profile unavailable.'] = 'Профиль недоступен.'; +$a->strings['Invalid locator'] = 'Недопустимый локатор'; +$a->strings['The provided profile link doesn\'t seem to be valid'] = 'Указанная ссылка на профиль не выглядит правильной'; +$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'Удаленная подписка не может быть выполнена на вашей сети. Пожалуйста, подпишитесь на вашей системе.'; +$a->strings['Friend/Connection Request'] = 'Запрос в друзья / на подключение'; +$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.'] = 'Введите здесь ваш Webfinger-адрес (user@domain.tld) или ссылку на профиль. Если это не поддерживается вашей системой, вам нужно подписаться на %s или %s непосредственно на вашей системе.'; +$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.'] = 'Если вы ещё не член свободной социальной сети, пройдите по этой ссылке, чтобы найти публичный узел Friendica и присоединитесь к нам сегодня.'; +$a->strings['Your Webfinger address or profile URL:'] = 'Ваш адрес Webfinger или ссылка на профиль:'; +$a->strings['Restricted profile'] = 'Закрытый профиль'; +$a->strings['This profile has been restricted which prevents access to their public content from anonymous visitors.'] = 'Доступ к этому профилю был ограничен, анонимные пользователи не могут его просматривать.'; $a->strings['Scheduled'] = 'Запланировано'; $a->strings['Content'] = 'Содержание'; $a->strings['Remove post'] = 'Удалить запись'; +$a->strings['Empty message body.'] = 'Пустое сообщение'; +$a->strings['Unable to check your home location.'] = 'Невозможно проверить местоположение.'; +$a->strings['Recipient not found.'] = 'Получатель не найден'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Количество ежедневных сообщений на стене %s превышено. Сообщение отменено..'; +$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать личные сообщения от неизвестных отправителей.'; +$a->strings['To'] = 'Кому'; +$a->strings['Subject'] = 'Тема'; +$a->strings['Your message'] = 'Ваше сообщение'; $a->strings['Only parent users can create additional accounts.'] = 'Только основные пользователи могут создавать дополнительные учётные записи.'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра.'; +$a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking "Register".'] = 'Вы можете (по желанию), заполнить эту форму с помощью OpenID, предоставив ваш OpenID и нажав кнопку "Регистрация".'; $a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы.'; $a->strings['Your OpenID (optional): '] = 'Ваш OpenID (необязательно):'; $a->strings['Include your profile in member directory?'] = 'Включить ваш профиль в каталог участников?'; @@ -2025,7 +2300,9 @@ $a->strings['Please repeat your e-mail address:'] = 'Пожалуйста, вв $a->strings['New Password:'] = 'Новый пароль:'; $a->strings['Leave empty for an auto generated password.'] = 'Оставьте пустым для автоматической генерации пароля.'; $a->strings['Confirm:'] = 'Подтвердите:'; +$a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be "nickname@%s".'] = 'Выберите псевдоним. Он должен начинаться с буквы. Адрес вашего профиля на этом сайте будет "псевдоним@%s".'; $a->strings['Choose a nickname: '] = 'Выберите псевдоним: '; +$a->strings['Import'] = 'Импорт'; $a->strings['Import your profile to this friendica instance'] = 'Импорт своего профиля в этот экземпляр friendica'; $a->strings['Note: This node explicitly contains adult content'] = 'Внимание: на этом сервере размещаются материалы для взрослых.'; $a->strings['Parent Password:'] = 'Родительский пароль:'; @@ -2040,14 +2317,8 @@ $a->strings['Failed to send email message. Here your accout details:
    login: $a->strings['Registration successful.'] = 'Регистрация успешна.'; $a->strings['Your registration can not be processed.'] = 'Ваша регистрация не может быть обработана.'; $a->strings['You have to leave a request note for the admin.'] = 'Вам нужно написать обращение к администратору.'; +$a->strings['An internal error occured.'] = 'Возникла внутренняя ошибка.'; $a->strings['Your registration is pending approval by the site owner.'] = 'Ваша регистрация в ожидании одобрения владельцем сайта.'; -$a->strings['Profile unavailable.'] = 'Профиль недоступен.'; -$a->strings['Invalid locator'] = 'Недопустимый локатор'; -$a->strings['The provided profile link doesn\'t seem to be valid'] = 'Указанная ссылка на профиль не выглядит правильной'; -$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'Удаленная подписка не может быть выполнена на вашей сети. Пожалуйста, подпишитесь на вашей системе.'; -$a->strings['Friend/Connection Request'] = 'Запрос в друзья / на подключение'; -$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.'] = 'Если вы ещё не член свободной социальной сети, пройдите по этой ссылке, чтобы найти публичный узел Friendica и присоединитесь к нам сегодня.'; -$a->strings['Your Webfinger address or profile URL:'] = 'Ваш адрес Webfinger или ссылка на профиль:'; $a->strings['You must be logged in to use this module.'] = 'Вам нужно войти, чтобы использовать этот модуль.'; $a->strings['Only logged in users are permitted to perform a search.'] = 'Только зарегистрированные пользователи могут использовать поиск.'; $a->strings['Only one search per minute is permitted for not logged in users.'] = 'Незарегистрированные пользователи могут выполнять поиск раз в минуту.'; @@ -2067,11 +2338,19 @@ $a->strings['terms of service'] = 'правила'; $a->strings['Website Privacy Policy'] = 'Политика конфиденциальности сервера'; $a->strings['privacy policy'] = 'политика конфиденциальности'; $a->strings['Logged out.'] = 'Выход из системы.'; +$a->strings['OpenID protocol error. No ID returned'] = 'Ошибка протокола OpenID. Не возвращён ID.'; +$a->strings['Account not found. Please login to your existing account to add the OpenID to it.'] = 'Учётная запись не найдена. Пожалуйста, зайдите в вашу существующую запись, чтобы добавить OpenID к ней.'; +$a->strings['Account not found. Please register a new account or login to your existing account to add the OpenID to it.'] = 'Учётная запись не найдена. Пожалуйста, зарегистрируйте новую учётную запись или зайдите в существующую, чтобы добавить к ней OpenID.'; $a->strings['Passwords do not match.'] = 'Пароли не совпадают'; +$a->strings['Password does not need changing.'] = 'Смена пароля не требуется.'; $a->strings['Password unchanged.'] = 'Пароль не поменялся'; +$a->strings['Password Too Long'] = 'Пароль слишком длинный'; +$a->strings['Since version 2022.09, we\'ve realized that any password longer than 72 characters is truncated during hashing. To prevent any confusion about this behavior, please update your password to be fewer or equal to 72 characters.'] = 'С версии 2022.09 мы поняли, что пароли длиннее 72 символов обрезаются при хешировании. Чтобы избежать связанных с этим неожиданностей, пожалуйста, смените ваш пароль, чтобы его длина не превышала 72 символа.'; +$a->strings['Update Password'] = 'Изменить пароль'; $a->strings['Current Password:'] = 'Текущий пароль:'; $a->strings['Your current password to confirm the changes'] = 'Ваш текущий пароль, для подтверждения изменений'; -$a->strings['Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).'] = 'Разрешенные символы: a-z, A-Z, 0-9 специальные символы за исключением пробелов, букв с акцентами и двоеточия (:).'; +$a->strings['Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces and accentuated letters.'] = 'Допустимые символы a-z, A-Z, 0-9 и специальные символы за исключением пробелов и букв с акцентами.'; +$a->strings['Password length is limited to 72 characters.'] = 'Длина пароля ограничена 72-мя символами.'; $a->strings['Remaining recovery codes: %d'] = 'Осталось кодов для восстановления: %d'; $a->strings['Invalid code, please retry.'] = 'Неправильный код, попробуйте ещё.'; $a->strings['Two-factor recovery'] = 'Двухфакторное восстановление доступа'; @@ -2079,7 +2358,18 @@ $a->strings['

    You can enter one of your one-time recovery codes in case you lo $a->strings['Don’t have your phone? Enter a two-factor recovery code'] = 'Нет телефона? Введите код восстановления'; $a->strings['Please enter a recovery code'] = 'Пожалуйста, введите код восстановления'; $a->strings['Submit recovery code and complete login'] = 'Отправить код восстановления и завершить вход'; +$a->strings['Sign out of this browser?'] = 'Выйти из этого браузера?'; +$a->strings['

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

    '] = '

    Если вы доверяете этому браузеру, то при следующем входе код двухфакторной аутентификации запрошен не будет.

    '; +$a->strings['Sign out'] = 'Выйти'; +$a->strings['Trust and sign out'] = 'Доверять и выйти'; +$a->strings['Couldn\'t save browser to Cookie.'] = 'Не удалось сохранить браузер в Cookie'; +$a->strings['Trust this browser?'] = 'Доверять этому браузеру?'; +$a->strings['

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

    '] = '

    Если вы решите доверять этому браузеру, то при следующем входе код двухфакторной аутентификации запрошен не будет.

    '; +$a->strings['Not now'] = 'Не сейчас'; +$a->strings['Don\'t trust'] = 'Не доверять'; +$a->strings['Trust'] = 'Доверять'; $a->strings['

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

    '] = '

    Откройте приложение для двухфакторной аутентификации на вашем устройстве, чтобы получить код аутентификации и подтвердить вашу личность.

    '; +$a->strings['If you do not have access to your authentication code you can use a two-factor recovery code.'] = 'Если у вас нет доступа к кодам аутентификации, вы можете использовать код восстановления.'; $a->strings['Please enter a code from your authentication app'] = 'Пожалуйста, введите код из вашего приложения для аутентификации'; $a->strings['Verify code and complete login'] = 'Введите код для завершения входа'; $a->strings['Please use a shorter name.'] = 'Пожалуйста, выберите имя короче.'; @@ -2093,7 +2383,7 @@ $a->strings['Importing Contacts done'] = 'Импорт контактов зав $a->strings['Relocate message has been send to your contacts'] = 'Перемещённое сообщение было отправлено списку контактов'; $a->strings['Unable to find your profile. Please contact your admin.'] = 'Не получается найти ваш профиль. Пожалуйста свяжитесь с администратором.'; $a->strings['Personal Page Subtypes'] = 'Подтипы личной страницы'; -$a->strings['Community Forum Subtypes'] = 'Подтипы форума сообщества'; +$a->strings['Community Group Subtypes'] = 'Типы групп сообществ'; $a->strings['Account for a personal profile.'] = 'Личная учётная запись'; $a->strings['Account for an organisation that automatically approves contact requests as "Followers".'] = 'Учётная запись организации, которая автоматически одобряет новых подписчиков.'; $a->strings['Account for a news reflector that automatically approves contact requests as "Followers".'] = 'Учётная запись новостной ленты, которая автоматически одобряет новых подписчиков.'; @@ -2102,7 +2392,7 @@ $a->strings['Account for a regular personal profile that requires manual approva $a->strings['Account for a public profile that automatically approves contact requests as "Followers".'] = 'Учётная запись для публичного профиля, которая автоматически одобряет новых подписчиков.'; $a->strings['Automatically approves all contact requests.'] = 'Автоматически одобряет все запросы на подписку.'; $a->strings['Account for a popular profile that automatically approves contact requests as "Friends".'] = 'Учётная запись для публичной личности, которая автоматически добавляет все новые контакты в друзья.'; -$a->strings['Private Forum [Experimental]'] = 'Личный форум [экспериментально]'; +$a->strings['Private Group [Experimental]'] = 'Частная группа [экспериментально]'; $a->strings['Requires manual approval of contact requests.'] = 'Требует ручного одобрения запросов на подписку.'; $a->strings['OpenID:'] = 'OpenID:'; $a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Необязательно) Разрешить этому OpenID входить в этот аккаунт'; @@ -2117,6 +2407,7 @@ $a->strings['Password:'] = 'Пароль:'; $a->strings['Your current password to confirm the changes of the email address'] = 'Ваш текущий пароль для подтверждения смены адреса почты'; $a->strings['Delete OpenID URL'] = 'Удалить ссылку OpenID'; $a->strings['Basic Settings'] = 'Основные параметры'; +$a->strings['Display name:'] = 'Отображаемое имя:'; $a->strings['Email Address:'] = 'Адрес электронной почты:'; $a->strings['Your Timezone:'] = 'Ваш часовой пояс:'; $a->strings['Your Language:'] = 'Ваш язык:'; @@ -2130,8 +2421,8 @@ $a->strings['Allow your profile to be searchable globally?'] = 'Сделать $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.'] = 'Включите эту настройку, если вы хотите, чтобы другие люди могли легко вас находить. Ваш профиль станет доступным для поиска на других узлах. Так же эта настройка разрешает поисковым системам индексировать ваш профиль.'; $a->strings['Hide your contact/friend list from viewers of your profile?'] = 'Скрыть список ваших контактов/друзей от просмотра в вашем профиле?'; $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->strings['Hide your profile details from anonymous viewers?'] = 'Скрыть данные профиля от анонимных посетителей?'; -$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->strings['Hide your public content from anonymous viewers'] = 'Скрыть ваши публичные записи от анонимных посетителей'; +$a->strings['Anonymous visitors will only see your basic profile details. Your public posts and replies will still be freely accessible on the remote servers of your followers and through relays.'] = 'Анонимные посетители увидят только основные данные профиля. Публичные записи и комментарии будут там скрыты, но при этом доступны на серверах ваших подписчиков и через релеи.'; $a->strings['Make public posts unlisted'] = 'Скрыть публичные записи из общих лент'; $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->strings['Make all posted pictures accessible'] = 'Сделать все опубликованные изображения доступными'; @@ -2143,6 +2434,8 @@ $a->strings['Your contacts can add additional tags to your posts.'] = 'Ваши $a->strings['Permit unknown people to send you private mail?'] = 'Разрешить незнакомым людям отправлять вам личные сообщения?'; $a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Пользователи Френдики могут отправлять вам личные сообщения даже если их нет в вашем списке контактов.'; $a->strings['Maximum private messages per day from unknown people:'] = 'Максимальное количество личных сообщений от незнакомых людей в день:'; +$a->strings['Default privacy circle for new contacts'] = 'Круг по-умолчанию для новых контактов'; +$a->strings['Default privacy circle for new group contacts'] = 'Круг по-умолчанию для новых групп'; $a->strings['Default Post Permissions'] = 'Разрешение на сообщения по умолчанию'; $a->strings['Expiration settings'] = 'Очистка старых записей'; $a->strings['Automatically expire posts after this many days:'] = 'Автоматическое истекание срока действия сообщения после стольких дней:'; @@ -2162,7 +2455,7 @@ $a->strings['Your introductions are confirmed'] = 'Ваши запросы по $a->strings['Someone writes on your profile wall'] = 'Кто-то пишет на стене вашего профиля'; $a->strings['Someone writes a followup comment'] = 'Кто-то пишет последующий комментарий'; $a->strings['You receive a private message'] = 'Вы получаете личное сообщение'; -$a->strings['You receive a friend suggestion'] = 'Вы полулили предложение о добавлении в друзья'; +$a->strings['You receive a friend suggestion'] = 'Вы получили предложение о добавлении в друзья'; $a->strings['You are tagged in a post'] = 'Вы отмечены в записи'; $a->strings['Create a desktop notification when:'] = 'Показывать уведомление при:'; $a->strings['Someone tagged you'] = 'Вас отметили'; @@ -2189,6 +2482,74 @@ $a->strings['Upload File'] = 'Загрузить файл'; $a->strings['Relocate'] = 'Перемещение'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Если вы переместили эту анкету с другого сервера, и некоторые из ваших контактов не получили ваши обновления, попробуйте нажать эту кнопку.'; $a->strings['Resend relocate message to contacts'] = 'Отправить перемещённые сообщения контактам'; +$a->strings['Addon Settings'] = 'Настройки дополнений'; +$a->strings['No Addon settings configured'] = 'Настройки дополнений не изменены'; +$a->strings['Label'] = 'Название'; +$a->strings['Description'] = 'Описание'; +$a->strings['Access Key'] = 'Горячая клавиша'; +$a->strings['Circle/Channel'] = 'Круг/Канал'; +$a->strings['Include Tags'] = 'Включить теги'; +$a->strings['Exclude Tags'] = 'Исключить теги'; +$a->strings['Full Text Search'] = 'Полнотекстовый поиск'; +$a->strings['Delete channel'] = 'Удалить канал'; +$a->strings['Check to delete this entry from the channel list'] = 'Отметьте, чтобы удалить этот канал из списка'; +$a->strings['Short name for the channel. It is displayed on the channels widget.'] = 'Короткое название для канала, будет отображаться в их списке.'; +$a->strings['This should describe the content of the channel in a few word.'] = 'Описание содержимого канала в нескольких словах.'; +$a->strings['When you want to access this channel via an access key, you can define it here. Pay attention to not use an already used one.'] = 'Если вы хотите сделать доступ к каналу по горячей клавише, определите её здесь. Будьте внимательны и не берите уже используемую где-то клавишу.'; +$a->strings['Select a circle or channel, that your channel should be based on.'] = 'Выберите круг или канал, на основе которого будет создан этот.'; +$a->strings['Comma separated list of tags. A post will be used when it contains any of the listed tags.'] = 'Список тегов через запятую. Запись попадёт в канал, если в ней есть любой из них.'; +$a->strings['Comma separated list of tags. If a post contain any of these tags, then it will not be part of nthis channel.'] = 'Список тегов через запятую. Запись не попадёт в канал, если в ней есть любой из них.'; +$a->strings['Search terms for the body, supports the "boolean mode" operators from MariaDB. See the help for a complete list of operators and additional keywords: %s'] = 'Поисковый запрос для записей, можно использовать операторы "boolean mode" для MariaDB. Справка по операторам и ключевым словам: %s'; +$a->strings['Check to display images in the channel.'] = 'Отметьте для включения записей с картинками.'; +$a->strings['Check to display videos in the channel.'] = 'Отметьте для включения записей с видео.'; +$a->strings['Check to display audio in the channel.'] = 'Отметьте для включения записей со аудио.'; +$a->strings['This page can be used to define your own channels.'] = 'На этой странице вы можете определить свои собственные каналы'; +$a->strings['Add new entry to the channel list'] = 'Добавить в список каналов'; +$a->strings['Add'] = 'Добавить'; +$a->strings['Current Entries in the channel list'] = 'Текущий список каналов'; +$a->strings['Delete entry from the channel list'] = 'Удалить из списка каналов'; +$a->strings['Delete entry from the channel list?'] = 'Удалить запись из списка каналов?'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'Не удалось подключиться к аккаунту e-mail, используя указанные настройки.'; +$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; +$a->strings['Built-in support for %s connectivity is enabled'] = 'Встроенная поддержка для %s включена'; +$a->strings['Built-in support for %s connectivity is disabled'] = 'Встроенная поддержка для %s отключена'; +$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; +$a->strings['Email access is disabled on this site.'] = 'Доступ эл. почты отключен на этом сайте.'; +$a->strings['None'] = 'Ничего'; +$a->strings['General Social Media Settings'] = 'Общие настройки социальных медиа'; +$a->strings['Followed content scope'] = 'Какие записи показывать в ленте'; +$a->strings['By default, conversations in which your follows participated but didn\'t start will be shown in your timeline. You can turn this behavior off, or expand it to the conversations in which your follows liked a post.'] = 'По-умолчанию в вашу ленту попадают и записи, которые ваши контакты не создали сами, а лишь прокомментировали. Вы можете отключить это, либо наоборот расширить до загрузки записей, которым ваши контакты поставили отметку "нравится".'; +$a->strings['Only conversations my follows started'] = 'Только записи, созданные моими контактами'; +$a->strings['Conversations my follows started or commented on (default)'] = 'Записи, которые мои контакты создали или прокомментировали (по-умолчанию)'; +$a->strings['Any conversation my follows interacted with, including likes'] = 'Любые записи, с которыми мои контакты взаимодействовали, включая лайки'; +$a->strings['Enable Content Warning'] = 'Включить предупреждение о контенте'; +$a->strings['Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.'] = 'Пользователи некоторых сетей, таких как Mastodon или Pleroma, могут использовать "предупреждение о контенте", сворачивающее их записи. Эта настройка выключает это свёртывание вместо обычного помещения "предупреждения о контенте" в заголовок записи. Это не влияет на другие фильтры, которые вы можете настроить.'; +$a->strings['Enable intelligent shortening'] = 'Включить умное сокращение'; +$a->strings['Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.'] = 'Обычно система пытается найти лучшую ссылку для добавления к сокращенной записи. Если эта настройка включена, то каждая сокращенная запись будет указывать на оригинальную запись в Friendica.'; +$a->strings['Enable simple text shortening'] = 'Включить простое сокращение текста'; +$a->strings['Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'] = 'Обычно система обрезает записи на следующей строке. Если эта настройка включена, система будет сокращать записи по достижении лимита символов.'; +$a->strings['Attach the link title'] = 'Присоединять заголовок ссылок'; +$a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'Если включено. заголовок добавленной ссылки будет добавлен к записи в Диаспоре как заголовок. Это в основном нужно для контактов "мой двойник", которые публикуют содержимое ленты.'; +$a->strings['API: Use spoiler field as title'] = 'API: Использовать спойлер как заголовок'; +$a->strings['When activated, the "spoiler_text" field in the API will be used for the title on standalone posts. When deactivated it will be used for spoiler text. For comments it will always be used for spoiler text.'] = 'Если включено, поле "spoiler_text" в API будет использоваться как заголовок для отдельных записей. Если отключено, то оно будет использоваться как спойлер. Для комментариев оно всегда используется как спойлер.'; +$a->strings['API: Automatically links at the end of the post as attached posts'] = 'API: Автоматически загружать ссылки в конце записей'; +$a->strings['When activated, added links at the end of the post react the same way as added links in the web interface.'] = 'Если включено, ссылки в конце записей будут обрабатываться так же, как ссылки, добавленные через веб-интерфейс.'; +$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Ваша старая учётная запись ActivityPub/GNU Social'; +$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Если вы введете тут вашу старую учетную запись от платформы совместимой с ActivityPub или GNU Social/Statusnet (в виде пользователь@домен), ваши контакты оттуда будут автоматически добавлены. Поле будет очищено когда все контакты будут добавлены.'; +$a->strings['Repair OStatus subscriptions'] = 'Починить подписки OStatus'; +$a->strings['Email/Mailbox Setup'] = 'Настройка эл. почты / почтового ящика'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику.'; +$a->strings['Last successful email check:'] = 'Последняя успешная проверка электронной почты:'; +$a->strings['IMAP server name:'] = 'Имя IMAP сервера:'; +$a->strings['IMAP port:'] = 'Порт IMAP:'; +$a->strings['Security:'] = 'Безопасность:'; +$a->strings['Email login name:'] = 'Логин эл. почты:'; +$a->strings['Email password:'] = 'Пароль эл. почты:'; +$a->strings['Reply-to address:'] = 'Адрес для ответа:'; +$a->strings['Send public posts to all email contacts:'] = 'Отправлять открытые сообщения на все контакты электронной почты:'; +$a->strings['Action after import:'] = 'Действие после импорта:'; +$a->strings['Move to folder'] = 'Переместить в папку'; +$a->strings['Move to folder:'] = 'Переместить в папку:'; $a->strings['Delegation successfully granted.'] = 'Делегирование успешно предоставлено.'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'Родительский пользователь не найден, недоступен или пароль не совпадает.'; $a->strings['Delegation successfully revoked.'] = 'Делегирование успешно отменено.'; @@ -2199,19 +2560,24 @@ $a->strings['Parent User'] = 'Родительский пользователь' $a->strings['Additional Accounts'] = 'Дополнительные учётные записи'; $a->strings['Register additional accounts that are automatically connected to your existing account so you can manage them from this account.'] = 'Регистрируйте дополнительные учётные записи, которые будут автоматически соединены с вашей основной учётной записью и вы сможете ими из неё управлять.'; $a->strings['Register an additional account'] = 'Зарегистрируйте дополнительную учётную запись'; +$a->strings['Parent users have total control about this account, including the account settings. Please double check whom you give this access.'] = 'Родительские пользователи имеют полное управление этим профилем, включая все его настройки. Будьте очень осторожны с предоставлением этого доступа.'; $a->strings['Delegates'] = 'Делегаты'; $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->strings['Existing Page Delegates'] = 'Существующие уполномоченные страницы'; $a->strings['Potential Delegates'] = 'Возможные доверенные лица'; -$a->strings['Add'] = 'Добавить'; $a->strings['No entries.'] = 'Нет записей.'; $a->strings['The theme you chose isn\'t available.'] = 'Выбранная вами тема недоступна.'; +$a->strings['%s - (Unsupported)'] = '%s - (Не поддерживается)'; +$a->strings['No preview'] = 'Нет предпросмотра'; +$a->strings['No image'] = 'Без изображения'; +$a->strings['Small Image'] = 'Маленькое изображение'; +$a->strings['Large Image'] = 'Большое изображение'; $a->strings['Display Settings'] = 'Внешний вид'; $a->strings['General Theme Settings'] = 'Общие настройки тем'; $a->strings['Custom Theme Settings'] = 'Личные настройки тем'; $a->strings['Content Settings'] = 'Настройки контента'; $a->strings['Theme settings'] = 'Настройки темы'; -$a->strings['Calendar'] = 'Календарь'; +$a->strings['Timelines'] = 'Ленты'; $a->strings['Display Theme:'] = 'Показать тему:'; $a->strings['Mobile Theme:'] = 'Мобильная тема:'; $a->strings['Number of items to display per page:'] = 'Количество элементов, отображаемых на одной странице:'; @@ -2219,8 +2585,6 @@ $a->strings['Maximum of 100 items'] = 'Максимум 100 элементов'; $a->strings['Number of items to display per page when viewed from mobile device:'] = 'Количество элементов на странице, когда просмотр осуществляется с мобильных устройств:'; $a->strings['Update browser every xx seconds'] = 'Обновление браузера каждые хх секунд'; $a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Минимум 10 секунд. Введите -1 для отключения.'; -$a->strings['Automatic updates only at the top of the post stream pages'] = 'Автоматически обновлять только при нахождении вверху страницы ленты'; -$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.'] = 'Автообновление может загружать новые записи в начало ленты, что может изменить положение прокрутки и помешать чтению, если вы находитесь не в начале страницы.'; $a->strings['Display emoticons'] = 'Показывать смайлики'; $a->strings['When enabled, emoticons are replaced with matching symbols.'] = 'Когда включено, соответствующие символы отображаются как смайлики.'; $a->strings['Infinite scroll'] = 'Бесконечная прокрутка'; @@ -2233,14 +2597,26 @@ $a->strings['Display the resharer'] = 'Показывать поделившег $a->strings['Display the first resharer as icon and text on a reshared item.'] = 'Показывать первого из поделившихся записью в виде значка над этой записью.'; $a->strings['Stay local'] = 'Оставаться локально'; $a->strings['Don\'t go to a remote system when following a contact link.'] = 'Не переходить на другие серверы по ссылкам профилей.'; +$a->strings['Link preview mode'] = 'Предпросмотр ссылок'; +$a->strings['Appearance of the link preview that is added to each post with a link.'] = 'Внешний вид предпросмотра ссылок, который появляется в записях со ссылками.'; +$a->strings['Bookmark'] = 'Главное меню'; +$a->strings['Enable timelines that you want to see in the channels widget. Bookmark timelines that you want to see in the top menu.'] = 'Включите ленты, которые вы хотите видеть в меню каналов слева, выберите ленты, которые будут отображаться в главном меню сверху.'; +$a->strings['Channel languages:'] = 'Языки каналов:'; +$a->strings['Select all languages that you want to see in your channels.'] = 'Выберите все языки, которые вы хотите видеть в своих каналах.'; $a->strings['Beginning of week:'] = 'Начало недели:'; -$a->strings['Profile Name is required.'] = 'Необходимо имя профиля.'; +$a->strings['Default calendar view:'] = 'Вид календаря по-умолчанию:'; +$a->strings['Additional Features'] = 'Дополнительные возможности'; +$a->strings['Connected Apps'] = 'Подключенные приложения'; +$a->strings['Remove authorization'] = 'Удалить авторизацию'; +$a->strings['Display Name is required.'] = 'Необходимо указать имя'; $a->strings['Profile couldn\'t be updated.'] = 'Профиль не получилось обновить.'; $a->strings['Label:'] = 'Поле:'; $a->strings['Value:'] = 'Значение:'; $a->strings['Field Permissions'] = 'Право просмотра поля'; $a->strings['(click to open/close)'] = '(нажмите, чтобы открыть / закрыть)'; $a->strings['Add a new profile field'] = 'Добавить новое поле профиля'; +$a->strings['The homepage is verified. A rel="me" link back to your Friendica profile page was found on the homepage.'] = 'Домашняя страница подтверждена. Ссылка с атрибутом rel="me", указывающая на ваш профиль Friendica, была найдена на странице.'; +$a->strings['To verify your homepage, add a rel="me" link to it, pointing to your profile URL (%s).'] = 'Для верификации вашей домашней страницы добавьте на неё ссылку с атрибутом rel="me" указывающую на ваш профиль (%s).'; $a->strings['Profile Actions'] = 'Действия профиля'; $a->strings['Edit Profile Details'] = 'Редактировать детали профиля'; $a->strings['Change Profile Photo'] = 'Изменить фото профиля'; @@ -2249,7 +2625,15 @@ $a->strings['Location'] = 'Местонахождение'; $a->strings['Miscellaneous'] = 'Разное'; $a->strings['Custom Profile Fields'] = 'Произвольные поля профиля'; $a->strings['Upload Profile Photo'] = 'Загрузить фото профиля'; -$a->strings['Display name:'] = 'Отображаемое имя:'; +$a->strings['

    Custom fields appear on your profile page.

    +

    You can use BBCodes in the field values.

    +

    Reorder by dragging the field title.

    +

    Empty the label field to remove a custom field.

    +

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

    '] = '

    Произвольные поля видны на вашей странице профиля.

    +

    Вы можете использовать BBCode в значениях полей.

    +

    Меняйте порядок перетаскиванием.

    +

    Сотрите название для удаления поля.

    +

    Закрытые поля будут видны только выбранным контактам из Friendica, либо контактам из выбранных кругов.

    '; $a->strings['Street Address:'] = 'Адрес:'; $a->strings['Locality/City:'] = 'Город / Населенный пункт:'; $a->strings['Region/State:'] = 'Район / Область:'; @@ -2264,15 +2648,6 @@ $a->strings['Public Keywords:'] = 'Общественные ключевые с $a->strings['(Used for suggesting potential friends, can be seen by others)'] = '(Используется для предложения потенциальным друзьям, могут увидеть другие)'; $a->strings['Private Keywords:'] = 'Личные ключевые слова:'; $a->strings['(Used for searching profiles, never shown to others)'] = '(Используется для поиска профилей, никогда не показывается другим)'; -$a->strings['

    Custom fields appear on your profile page.

    -

    You can use BBCodes in the field values.

    -

    Reorder by dragging the field title.

    -

    Empty the label field to remove a custom field.

    -

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

    '] = '

    Произвольные поля видны на вашей странице профиля.

    -

    В значениях полей можно использовать BBCode.

    -

    Меняйте порядок перетаскиванием.

    -

    Сотрите название для удаления поля.

    -

    Закрытые поля будут видны только выбранным контактам из Friendica, либо контактам из выбранных групп.

    '; $a->strings['Image size reduction [%s] failed.'] = 'Уменьшение размера изображения [%s] не удалось.'; $a->strings['Shift-reload the page or clear browser cache if the new photo does not display immediately.'] = 'Перезагрузите страницу с зажатой клавишей "Shift" для того, чтобы увидеть свое новое фото немедленно.'; $a->strings['Unable to process image'] = 'Не удается обработать изображение'; @@ -2289,27 +2664,158 @@ $a->strings['Upload Picture:'] = 'Загрузить картинку:'; $a->strings['or'] = 'или'; $a->strings['skip this step'] = 'пропустить этот шаг'; $a->strings['select a photo from your photo albums'] = 'выберите фото из ваших фотоальбомов'; +$a->strings['There was a validation error, please make sure you\'re logged in with the account you want to remove and try again.'] = 'Возникла ошибка валидации, пожалуйста, проверьте, что вы зашли под учётной записью, которую хотите удалить, и попробуйте ещё.'; +$a->strings['If this error persists, please contact your administrator.'] = 'Если эта ошибка сохраняется, пожалуйста, свяжитесь с администратором.'; +$a->strings['[Friendica System Notify]'] = '[Системное уведомление Friendica]'; +$a->strings['User deleted their account'] = 'Пользователь удалил свою учётную запись'; +$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Пользователь удалил свою учётную запись на вашем сервере Friendica. Пожалуйста, убедитесь, что их данные будут удалены из резервных копий.'; +$a->strings['The user id is %d'] = 'id пользователя: %d'; +$a->strings['Your account has been successfully removed. Bye bye!'] = 'Ваша учётная запись была успешно удалена. Всего хорошего!'; +$a->strings['Remove My Account'] = 'Удалить мой аккаунт'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит.'; +$a->strings['Please enter your password for verification:'] = 'Пожалуйста, введите свой пароль для проверки:'; +$a->strings['Do you want to ignore this server?'] = 'Вы хотите игнорировать этот сервер?'; +$a->strings['Do you want to unignore this server?'] = 'Вы хотите прекратить игнорировать этот сервер?'; +$a->strings['Remote server settings'] = 'Настройки сервера'; +$a->strings['Server URL'] = 'URL сервера'; +$a->strings['Settings saved'] = 'Настройки сохранены'; +$a->strings['Here you can find all the remote servers you have taken individual moderation actions against. For a list of servers your node has blocked, please check out the Information page.'] = 'Здесь вы можете найти все серверы, к которым вы применяли действия модерации. Чтобы посмотреть список серверов, которые заблокировал ваш узел, пожалуйста, посмотрите страницу информации об узле.'; +$a->strings['Delete all your settings for the remote server'] = 'Удалить ваши настройки для удалённого сервера'; +$a->strings['Save changes'] = 'Сохранить изменения'; $a->strings['Please enter your password to access this page.'] = 'Пожалуйста, введите ваш пароль для доступа к этой странице.'; +$a->strings['App-specific password generation failed: The description is empty.'] = 'Создание пароля приложения не удалось: не указано описание'; +$a->strings['App-specific password generation failed: This description already exists.'] = 'Создание пароля приложения не удалось: такое описание уже есть.'; +$a->strings['New app-specific password generated.'] = 'Новый пароль приложения сгенерирован'; +$a->strings['App-specific passwords successfully revoked.'] = 'Пароли для приложений успешно отозваны'; +$a->strings['App-specific password successfully revoked.'] = 'Пароль для приложения успешно отозван'; +$a->strings['Two-factor app-specific passwords'] = 'Пароли для приложений'; +$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.

    '] = '

    Пароли для приложений это случайно сгенерированные пароли, используемые вместо основного пароля для приложений, которые не поддерживают двухфакторную аутентификацию.

    '; +$a->strings['Make sure to copy your new app-specific password now. You won’t be able to see it again!'] = 'Убедитесь, что вы скопировали этот новый пароль сейчас. Вы больше его не увидите!'; +$a->strings['Last Used'] = 'Последнее использование'; +$a->strings['Revoke'] = 'Отозвать'; $a->strings['Revoke All'] = 'Отозвать все'; +$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.'] = 'Когда вы создадите новый пароль приложения, вам нужно использовать его сразу же. Он будет показан один раз после его создания.'; +$a->strings['Generate new app-specific password'] = 'Создать новый пароль приложения'; +$a->strings['Friendiqa on my Fairphone 2...'] = 'Friendiqa на моём Fairphone 2...'; +$a->strings['Generate'] = 'Сгенерировать'; +$a->strings['Two-factor authentication successfully disabled.'] = 'Двухфакторная аутентификация успешно выключена.'; +$a->strings['

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

    '] = '

    Используйте приложение на мобильном устройстве для получения кодов второго фактора при входе.

    '; +$a->strings['Authenticator app'] = 'Приложение аутентификации'; +$a->strings['Configured'] = 'Настроено'; +$a->strings['Not Configured'] = 'Не настроено'; +$a->strings['

    You haven\'t finished configuring your authenticator app.

    '] = '

    Вы не закончили настройку приложения для аутентификации.

    '; +$a->strings['

    Your authenticator app is correctly configured.

    '] = '

    Ваше приложение для аутентификации настроено.

    '; +$a->strings['Recovery codes'] = 'Коды восстановления'; +$a->strings['Remaining valid codes'] = 'Оставшиеся коды восстановления'; +$a->strings['

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

    '] = '

    Эти одноразовые коды могут заменить приложение для аутентификации, если вы его потеряете.

    '; +$a->strings['App-specific passwords'] = 'Пароли для приложений'; +$a->strings['Generated app-specific passwords'] = 'Пароли для приложений'; +$a->strings['

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

    '] = '

    Эти случайно сгенерированные пароли могут быть использованы в приложениях, не поддерживающих двухфакторную аутентификацию.

    '; $a->strings['Current password:'] = 'Текущий пароль:'; +$a->strings['You need to provide your current password to change two-factor authentication settings.'] = 'Вам нужно ввести ваш текущий пароль для изменения настроек аутентификации.'; $a->strings['Enable two-factor authentication'] = 'Включить двухфакторную аутентификацию'; +$a->strings['Disable two-factor authentication'] = 'Отключить двухфакторную аутентификацию'; $a->strings['Show recovery codes'] = 'Показать коды восстановления'; $a->strings['Manage app-specific passwords'] = 'Управление паролями приложений'; +$a->strings['Manage trusted browsers'] = 'Управление доверенными браузерами'; $a->strings['Finish app configuration'] = 'Закончить настройку приложения'; $a->strings['New recovery codes successfully generated.'] = 'Новые коды восстановления успешно сгенерированы.'; $a->strings['Two-factor recovery codes'] = 'Коды восстановления для ДФА'; +$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->strings['When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore.'] = 'Когда вы создаёте новые коды восстановления, вам нужно их сохранить. Ранее созданные коды больше не будут работать.'; $a->strings['Generate new recovery codes'] = 'Сгенерировать новые коды восстановления.'; +$a->strings['Next: Verification'] = 'Далее: Проверка'; +$a->strings['Trusted browsers successfully removed.'] = 'Доверенные браузеры успешно удалены.'; +$a->strings['Trusted browser successfully removed.'] = 'Доверенный браузер успешно удалён.'; +$a->strings['Two-factor Trusted Browsers'] = 'Доверенные браузеры'; +$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->strings['Device'] = 'Устройство'; +$a->strings['OS'] = 'ОС'; +$a->strings['Trusted'] = 'Доверие'; +$a->strings['Created At'] = 'Создано'; $a->strings['Last Use'] = 'Последнее использование'; $a->strings['Remove All'] = 'Удалить все'; $a->strings['Two-factor authentication successfully activated.'] = 'Двухфакторная аутентификация успешно включена.'; +$a->strings['

    Or you can submit the authentication settings manually:

    +
    +
    Issuer
    +
    %s
    +
    Account Name
    +
    %s
    +
    Secret Key
    +
    %s
    +
    Type
    +
    Time-based
    +
    Number of digits
    +
    6
    +
    Hashing algorithm
    +
    SHA-1
    +
    '] = '

    Или вы можете ввести настройки аутентификации вручную:

    +
    +
    Issuer
    +
    %s
    +
    Account Name
    +
    %s
    +
    Secret Key
    +
    %s
    +
    Type
    +
    Time-based
    +
    Number of digits
    +
    6
    +
    Hashing algorithm
    +
    SHA-1
    +
    '; $a->strings['Two-factor code verification'] = 'Проверка кода второго фактора'; +$a->strings['

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

    '] = '

    Пожалуйста, отсканируйте этот QR-код вашим приложением для аутентификации и введите полученный код.

    '; +$a->strings['

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

    %s

    '] = '

    Или вы можете открыть следующую ссылку на вашем мобильном устройстве:

    %s

    '; +$a->strings['Verify code and enable two-factor authentication'] = 'Проверить код и включить двухфакторную аутентификацию'; $a->strings['Export account'] = 'Экспорт аккаунта'; $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.'] = 'Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать резервную копию вашего аккаунта и/или переместить его на другой сервер.'; $a->strings['Export all'] = 'Экспорт всего'; $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)'] = 'Выгрузить информацию о вашей учётной записи, контактах и всех ваших записях как файл JSON. Это может занять много времени и создать очень большой файл. Используйте это для создания резервной копии вашей учётной записи (изображения в неё не войдут).'; $a->strings['Export Contacts to CSV'] = 'Экспорт контактов в CSV'; $a->strings['Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon.'] = 'Выгрузить список пользователей, на которых вы подписаны, в CSV-файл. Совместимо с Mastodon и др.'; +$a->strings['The top-level post isn\'t visible.'] = 'Родительская запись скрыта.'; +$a->strings['The top-level post was deleted.'] = 'Родительская запись была удалена.'; +$a->strings['This node has blocked the top-level author or the author of the shared post.'] = 'Этот узел заблокировал автора основной записи или поделившегося ей.'; +$a->strings['You have ignored or blocked the top-level author or the author of the shared post.'] = 'Вы игнорируете или заблокировали автора основной записи или поделившегося ей.'; +$a->strings['You have ignored the top-level author\'s server or the shared post author\'s server.'] = 'Вы игорируете сервер автора основной записи или сервер поделившегося ей.'; +$a->strings['Conversation Not Found'] = 'Запись не найдена'; +$a->strings['Unfortunately, the requested conversation isn\'t available to you.'] = 'К сожалению, эта запись вам недоступна.'; +$a->strings['Possible reasons include:'] = 'Возможные причины этого:'; +$a->strings['Stack trace:'] = 'Stack trace:'; +$a->strings['Exception thrown in %s:%d'] = 'Exception thrown in %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->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.'] = 'Эти данные необходимы для взаимодействия и передаются другим узлам партнёров по сети и сохраняются там. Пользователи могут добавить дополнительные личные данные, которые тоже могут передаваться на другие узлы.'; +$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/settings/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners.'] = 'В любой момент вошедший в систему пользователь может экспортировать свои данные через настройки. Если пользователь хочет удалить свою учётную запись, они могут сделать это через %1$s/settings/removeme. Удаление данных будет без возможности восстановления. Запрос на удаление данных будет так же передан на узлы партнёров по сети.'; $a->strings['Privacy Statement'] = 'Положение о конфиденциальности'; +$a->strings['Rules'] = 'Правила'; +$a->strings['Parameter uri_id is missing.'] = 'Параметр uri_id отсутствует.'; +$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'Запрошенная запись не существует или была удалена.'; +$a->strings['You are now logged in as %s'] = 'Вы вошли как %s'; +$a->strings['Switch between your accounts'] = 'Переключить учётную запись'; +$a->strings['Manage your accounts'] = 'Управление учётными записями'; +$a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Переключайтесь между разными профилями или страницами сообществ/групп, которые зарегистрированы на одинаковые контактные данные, либо вам предоставлено право управления ими.'; +$a->strings['Select an identity to manage: '] = 'Выберите учётную запись:'; +$a->strings['User imports on closed servers can only be done by an administrator.'] = 'Импорт пользователей на закрытых серверах может быть произведён только администратором.'; +$a->strings['Move account'] = 'Удалить аккаунт'; +$a->strings['You can import an account from another Friendica server.'] = 'Вы можете импортировать учетную запись с другого сервера Friendica.'; +$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.'] = 'Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда.'; +$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Это экспериментальная функция. Мы не можем импортировать контакты из сети OStatus (GNU Social/ StatusNet) или из Diaspora'; +$a->strings['Account file'] = 'Файл аккаунта'; +$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Для экспорта аккаунта, перейдите в "Настройки->Экспортировать ваши данные" и выберите "Экспорт аккаунта"'; +$a->strings['Error decoding account file'] = 'Ошибка расшифровки файла аккаунта'; +$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?'; +$a->strings['User \'%s\' already exists on this server!'] = 'Пользователь \'%s\' уже существует на этом сервере!'; +$a->strings['User creation error'] = 'Ошибка создания пользователя'; +$a->strings['%d contact not imported'] = [ + 0 => '%d контакт не импортирован', + 1 => '%d контакты не импортированы', + 2 => '%d контакты не импортированы', + 3 => '%d контакты не импортированы', +]; +$a->strings['User profile creation error'] = 'Ошибка создания профиля пользователя'; +$a->strings['Done. You can now login with your username and password'] = 'Завершено. Теперь вы можете войти с вашим логином и паролем'; $a->strings['Welcome to Friendica'] = 'Добро пожаловать в Friendica'; $a->strings['New Member Checklist'] = 'Новый контрольный список участников'; $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.'] = 'Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую страницу. Ссылка на эту страницу будет видна на вашей домашней странице в течение двух недель после первоначальной регистрации, а затем она исчезнет.'; @@ -2333,8 +2839,8 @@ $a->strings['Go to Your Site\'s Directory'] = 'Перейти в каталог $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->strings['Finding New People'] = 'Поиск людей'; $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.'] = 'На боковой панели страницы Контакты есть несколько инструментов, чтобы найти новых друзей. Мы можем искать по соответствию интересам, посмотреть людей по имени или интересам, и внести предложения на основе сетевых отношений. На новом сайте, предложения дружбы, как правило, начинают заполняться в течение 24 часов.'; -$a->strings['Group Your Contacts'] = 'Группа "ваши контакты"'; -$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.'] = 'После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть.'; +$a->strings['Add Your Contacts To Circle'] = 'Добавьте ваши контакты в круги'; +$a->strings['Once you have made some friends, organize them into private conversation circles from the sidebar of your Contacts page and then you can interact with each circle privately on your Network page.'] = 'После того, как вы найдете несколько друзей, соберите их в круги частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно в вашей ленте.'; $a->strings['Why Aren\'t My Posts Public?'] = 'Почему мои записи не публичные?'; $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.'] = 'Friendica уважает вашу приватность. По умолчанию, ваши сообщения будут показываться только для людей, которых вы добавили в список друзей. Для получения дополнительной информации см. раздел справки по ссылке выше.'; $a->strings['Getting Help'] = 'Получить помощь'; @@ -2424,8 +2930,14 @@ Login Name: %s (%s)'] = 'Полное имя: %s Расположение: %s Имя для входа: %s (%s)'; $a->strings['Please visit %s to approve or reject the request.'] = 'Пожалуйста, посетите %s чтобы подтвердить или отвергнуть запрос.'; +$a->strings['new registration'] = 'новая регистрация'; +$a->strings['You\'ve received a new registration from \'%1$s\' at %2$s'] = 'У вас новая регистрация от \'%1$s\' на %2$s'; +$a->strings['You\'ve received a [url=%1$s]new registration[/url] from %2$s.'] = 'У вас [url=%1$s]новая регистрация[/url] от %2$s.'; +$a->strings['Please visit %s to have a look at the new registration.'] = 'Пожалуйста, посетите %s для просмотра новой регистрации.'; $a->strings['%s %s tagged you'] = '%s %s отметил(и) Вас'; -$a->strings['%s %s shared a new post'] = '%s %s поделился(-ась) новым сообщением'; +$a->strings['%s %s shared a new post'] = '%s %s поделился(-ась) новой записью'; +$a->strings['%1$s %2$s liked your post #%3$d'] = '%1$s %2$s нравится ваша запись #%3$d'; +$a->strings['%1$s %2$s liked your comment on #%3$d'] = '%1$s %2$s нравится ваш комментарий в #%3$d'; $a->strings['This message was sent to you by %s, a member of the Friendica social network.'] = 'Это сообщение было отправлено вам %s, участником социальной сети Friendica.'; $a->strings['You may visit them online at %s'] = 'Вы можете посетить их в онлайне на %s'; $a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения.'; @@ -2439,6 +2951,9 @@ $a->strings['Edit'] = 'Редактировать'; $a->strings['Delete globally'] = 'Удалить везде'; $a->strings['Remove locally'] = 'Убрать для себя'; $a->strings['Block %s'] = 'Заблокировать %s'; +$a->strings['Ignore %s'] = 'Игнорировать %s'; +$a->strings['Collapse %s'] = 'Сворачивать %s'; +$a->strings['Report post'] = 'Пожаловаться'; $a->strings['Save to folder'] = 'Сохранить в папку'; $a->strings['I will attend'] = 'Я буду'; $a->strings['I will not attend'] = 'Меня не будет'; @@ -2465,6 +2980,9 @@ $a->strings['Comment this item on your system'] = 'Прокомментиров $a->strings['Remote comment'] = 'Загруженный комментарий'; $a->strings['Share via ...'] = 'Отправить в ...'; $a->strings['Share via external services'] = 'Поделиться через сторонние сервисы'; +$a->strings['Unknown parent'] = 'Источник неизвестен'; +$a->strings['in reply to %s'] = 'в ответ на %s'; +$a->strings['Parent is probably private or not federated.'] = 'Источник приватный или не федерируется.'; $a->strings['to'] = 'к'; $a->strings['via'] = 'через'; $a->strings['Wall-to-Wall'] = 'Стена-на-Стену'; @@ -2484,10 +3002,21 @@ $a->strings['%d comment'] = [ ]; $a->strings['Show more'] = 'Показать больше'; $a->strings['Show fewer'] = 'Показать меньше'; +$a->strings['Reshared by: %s'] = 'Репост от: %s'; +$a->strings['Viewed by: %s'] = 'Просмотрено: %s'; +$a->strings['Liked by: %s'] = 'Понравилось: %s'; +$a->strings['Disliked by: %s'] = 'Не понравилось: %s'; +$a->strings['Attended by: %s'] = 'Присутствуют: %s'; +$a->strings['Maybe attended by: %s'] = 'Под вопросом: %s'; +$a->strings['Not attended by: %s'] = 'Не присутствуют: %s'; +$a->strings['Reacted with %s by: %s'] = 'Отреагировали как %s : %s'; +$a->strings['Chat'] = 'Чат'; +$a->strings['(no subject)'] = '(нет темы)'; $a->strings['%s is now following %s.'] = '%s теперь подписан на %s.'; $a->strings['following'] = 'следует'; $a->strings['%s stopped following %s.'] = '%s отписался от %s.'; $a->strings['stopped following'] = 'отписка от'; +$a->strings['The folder %s must be writable by webserver.'] = 'Каталог %s должен быть доступен для записи веб-сервером.'; $a->strings['Login failed.'] = 'Войти не удалось.'; $a->strings['Login failed. Please check your credentials.'] = 'Ошибка входа. Пожалуйста, проверьте данные для входа.'; $a->strings['Welcome %s'] = 'Добро пожаловать, %s'; @@ -2513,7 +3042,6 @@ $a->strings['second'] = 'секунда'; $a->strings['seconds'] = 'сек.'; $a->strings['in %1$d %2$s'] = 'через %1$d %2$s'; $a->strings['%1$d %2$s ago'] = '%1$d %2$s назад'; -$a->strings['(no subject)'] = '(нет темы)'; $a->strings['Notification from Friendica'] = 'Уведомление от Friendica'; $a->strings['Empty Post'] = 'Пустая запись'; $a->strings['default'] = 'По умолчанию'; @@ -2571,7 +3099,7 @@ $a->strings['Center'] = 'Центр'; $a->strings['Color scheme'] = 'Цветовая схема'; $a->strings['Posts font size'] = 'Размер шрифта записей'; $a->strings['Textareas font size'] = 'Размер шрифта текстовых полей'; -$a->strings['Comma separated list of helper forums'] = 'Разделенный запятыми список форумов помощи'; +$a->strings['Comma separated list of helper groups'] = 'Список групп поддержки через запятую'; $a->strings['don\'t show'] = 'не показывать'; $a->strings['show'] = 'показывать'; $a->strings['Set style'] = 'Установить стиль'; diff --git a/view/lang/sv/messages.po b/view/lang/sv/messages.po index 8012fc90c..bf9f5324c 100644 --- a/view/lang/sv/messages.po +++ b/view/lang/sv/messages.po @@ -1,5 +1,5 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2022, the Friendica project +# Copyright (C) 2010-2023, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: @@ -9,542 +9,84 @@ # Mike Macgirvin, 2010 # Tim Stahel , 2018 # Bjoessi , 2019 -# Viktor Nilsson, 2022 +# Viktor Nilsson, 2022-2023 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-06-25 22:37+0200\n" +"POT-Creation-Date: 2023-09-18 05:30+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" -"Last-Translator: Viktor Nilsson, 2022\n" -"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"Last-Translator: Viktor Nilsson, 2022-2023\n" +"Language-Team: Swedish (http://app.transifex.com/Friendica/friendica/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:39 mod/redir.php:36 -#: mod/redir.php:177 src/Module/Conversation/Community.php:181 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: 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:43 -msgid "Access denied." -msgstr "Åtkomst nekad." - -#: mod/cal.php:63 mod/cal.php:80 mod/photos.php:69 mod/photos.php:140 -#: mod/photos.php:798 src/Model/Profile.php:232 src/Module/Feed.php:72 -#: src/Module/HCard.php:52 src/Module/Profile/Common.php:41 -#: src/Module/Profile/Common.php:52 src/Module/Profile/Contacts.php:40 -#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Media.php:38 -#: src/Module/Profile/Status.php:59 src/Module/Register.php:267 -#: src/Module/RemoteFollow.php:58 -msgid "User not found." -msgstr "Användaren hittades inte." - -#: mod/cal.php:122 mod/display.php:262 src/Module/Profile/Profile.php:94 -#: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:110 -#: src/Module/Update/Profile.php:56 -msgid "Access to this profile has been restricted." -msgstr "Åtkomst till den här profilen har begränsats." - -#: mod/cal.php:243 mod/events.php:374 src/Content/Nav.php:194 -#: src/Content/Nav.php:258 src/Module/BaseProfile.php:84 -#: src/Module/BaseProfile.php:95 view/theme/frio/theme.php:229 -#: view/theme/frio/theme.php:233 -msgid "Events" -msgstr "Evenemang" - -#: mod/cal.php:244 mod/events.php:375 -msgid "View" -msgstr "Visa" - -#: mod/cal.php:245 mod/events.php:377 -msgid "Previous" -msgstr "Föregående" - -#: mod/cal.php:246 mod/events.php:378 src/Module/Install.php:214 -msgid "Next" -msgstr "Nästa" - -#: mod/cal.php:249 mod/events.php:383 src/Model/Event.php:456 -msgid "today" -msgstr "idag" - -#: mod/cal.php:250 mod/events.php:384 src/Model/Event.php:457 -#: src/Util/Temporal.php:334 -msgid "month" -msgstr "månad" - -#: mod/cal.php:251 mod/events.php:385 src/Model/Event.php:458 -#: src/Util/Temporal.php:335 -msgid "week" -msgstr "vecka" - -#: mod/cal.php:252 mod/events.php:386 src/Model/Event.php:459 -#: src/Util/Temporal.php:336 -msgid "day" -msgstr "dag" - -#: mod/cal.php:253 mod/events.php:387 -msgid "list" -msgstr "lista" - -#: mod/cal.php:265 src/Console/User.php:182 src/Model/User.php:661 -#: 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:74 -msgid "User not found" -msgstr "Användaren hittades inte" - -#: mod/cal.php:274 -msgid "This calendar format is not supported" -msgstr "Kalenderformatet stöds inte" - -#: mod/cal.php:276 -msgid "No exportable data found" -msgstr "Inga data att exportera hittades" - -#: mod/cal.php:292 -msgid "calendar" -msgstr "kalender" - -#: mod/display.php:143 mod/photos.php:802 -#: src/Module/Conversation/Community.php:175 src/Module/Directory.php:49 -#: src/Module/Search/Index.php:65 -msgid "Public access denied." -msgstr "Publik åtkomst nekades." - -#: mod/display.php:213 mod/display.php:287 -msgid "The requested item doesn't exist or has been deleted." -msgstr "" - -#: mod/display.php:367 -msgid "The feed for this item is unavailable." -msgstr "Flödet för det här föremålet är otillgängligt." - -#: mod/editpost.php:38 mod/events.php:217 mod/follow.php:56 mod/follow.php:130 -#: mod/item.php:181 mod/item.php:186 mod/item.php:875 mod/message.php:69 -#: mod/message.php:111 mod/notes.php:44 mod/ostatus_subscribe.php:33 -#: mod/photos.php:160 mod/photos.php:891 mod/repair_ostatus.php:31 -#: mod/settings.php:40 mod/settings.php:50 mod/settings.php:156 -#: mod/suggest.php:34 mod/uimport.php:33 mod/unfollow.php:35 -#: mod/unfollow.php:50 mod/unfollow.php:82 mod/wall_attach.php:67 -#: mod/wall_attach.php:69 mod/wall_upload.php:89 mod/wall_upload.php:91 -#: mod/wallmessage.php:37 mod/wallmessage.php:56 mod/wallmessage.php:90 -#: mod/wallmessage.php:110 src/Module/Attach.php:56 src/Module/BaseApi.php:93 -#: src/Module/BaseNotifications.php:97 src/Module/Contact/Advanced.php:60 -#: src/Module/Delegation.php:119 src/Module/FollowConfirm.php:38 -#: src/Module/FriendSuggest.php:56 src/Module/Group.php:42 -#: src/Module/Group.php:85 src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:75 -#: src/Module/Notifications/Notification.php:106 -#: src/Module/Profile/Common.php:56 src/Module/Profile/Contacts.php:56 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:77 src/Module/Register.php:90 -#: src/Module/Register.php:206 src/Module/Register.php:245 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:49 -#: src/Module/Settings/Account.php:409 src/Module/Settings/Delegation.php:42 -#: src/Module/Settings/Delegation.php:70 src/Module/Settings/Display.php:42 -#: src/Module/Settings/Display.php:120 -#: src/Module/Settings/Profile/Photo/Crop.php:166 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/UserExport.php:58 src/Module/Settings/UserExport.php:92 -#: src/Module/Settings/UserExport.php:196 -#: src/Module/Settings/UserExport.php:216 -#: src/Module/Settings/UserExport.php:281 -msgid "Permission denied." -msgstr "Åtkomst nekad." - -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Hittades inte" - -#: mod/editpost.php:64 -msgid "Edit post" -msgstr "Ändra inlägg" - -#: mod/editpost.php:91 mod/notes.php:56 src/Content/Text/HTML.php:882 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:73 -msgid "Save" -msgstr "Spara" - -#: mod/editpost.php:92 mod/photos.php:1338 src/Content/Conversation.php:338 -#: src/Module/Contact/Poke.php:176 src/Object/Post.php:993 -msgid "Loading..." -msgstr "Laddar..." - -#: mod/editpost.php:93 mod/message.php:198 mod/message.php:355 -#: mod/wallmessage.php:140 src/Content/Conversation.php:339 -msgid "Upload photo" -msgstr "Ladda upp bild" - -#: mod/editpost.php:94 src/Content/Conversation.php:340 -msgid "upload photo" -msgstr "ladda upp bild" - -#: mod/editpost.php:95 src/Content/Conversation.php:341 -msgid "Attach file" -msgstr "Bifoga fil" - -#: mod/editpost.php:96 src/Content/Conversation.php:342 -msgid "attach file" -msgstr "bifoga fil" - -#: mod/editpost.php:97 mod/message.php:199 mod/message.php:356 -#: mod/wallmessage.php:141 -msgid "Insert web link" -msgstr "Infoga länk" - -#: mod/editpost.php:98 -msgid "web link" -msgstr "webblänk" - -#: mod/editpost.php:99 -msgid "Insert video link" -msgstr "Klistra in videolänk" - -#: mod/editpost.php:100 -msgid "video link" -msgstr "videolänk" - -#: mod/editpost.php:101 -msgid "Insert audio link" -msgstr "Klistra in ljudlänk" - -#: mod/editpost.php:102 -msgid "audio link" -msgstr "ljudlänk" - -#: mod/editpost.php:103 src/Content/Conversation.php:352 -#: src/Module/Item/Compose.php:173 -msgid "Set your location" -msgstr "Ange plats" - -#: mod/editpost.php:104 src/Content/Conversation.php:353 -msgid "set location" -msgstr "ange plats" - -#: mod/editpost.php:105 src/Content/Conversation.php:354 -msgid "Clear browser location" -msgstr "Clear browser location" - -#: mod/editpost.php:106 src/Content/Conversation.php:355 -msgid "clear location" -msgstr "rensa plats" - -#: mod/editpost.php:107 mod/message.php:200 mod/message.php:358 -#: mod/photos.php:1489 mod/wallmessage.php:142 -#: src/Content/Conversation.php:368 src/Content/Conversation.php:713 -#: src/Module/Item/Compose.php:177 src/Object/Post.php:538 -msgid "Please wait" -msgstr "Var god vänta" - -#: mod/editpost.php:108 src/Content/Conversation.php:369 -msgid "Permission settings" -msgstr "Åtkomstinställningar" - -#: mod/editpost.php:116 src/Core/ACL.php:326 -msgid "CC: email addresses" -msgstr "Kopia: e-postadresser" - -#: mod/editpost.php:117 src/Content/Conversation.php:379 -msgid "Public post" -msgstr "Offentligt inlägg" - -#: mod/editpost.php:120 src/Content/Conversation.php:357 -#: src/Module/Item/Compose.php:178 -msgid "Set title" -msgstr "Ange rubrik" - -#: mod/editpost.php:122 src/Content/Conversation.php:359 -#: src/Module/Item/Compose.php:179 -msgid "Categories (comma-separated list)" -msgstr "Kategorier (kommaseparerad lista)" - -#: mod/editpost.php:123 src/Core/ACL.php:327 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Exempel: adam@exempel.com, bertil@exempel.com" - -#: mod/editpost.php:128 mod/events.php:513 mod/photos.php:1337 -#: mod/photos.php:1393 mod/photos.php:1467 src/Content/Conversation.php:383 -#: src/Module/Item/Compose.php:172 src/Object/Post.php:1003 -msgid "Preview" -msgstr "Förhandsgranskning" - -#: mod/editpost.php:130 mod/fbrowser.php:118 mod/fbrowser.php:145 -#: mod/follow.php:144 mod/photos.php:1004 mod/photos.php:1105 mod/tagrm.php:35 -#: mod/tagrm.php:127 mod/unfollow.php:97 src/Content/Conversation.php:386 -#: src/Module/Contact/Revoke.php:108 src/Module/RemoteFollow.php:127 -#: src/Module/Security/TwoFactor/Signout.php:125 -msgid "Cancel" -msgstr "Avbryt" - -#: mod/editpost.php:134 src/Content/Conversation.php:343 -#: src/Module/Item/Compose.php:163 src/Object/Post.php:994 -msgid "Bold" -msgstr "Fet" - -#: mod/editpost.php:135 src/Content/Conversation.php:344 -#: src/Module/Item/Compose.php:164 src/Object/Post.php:995 -msgid "Italic" -msgstr "Kursiv" - -#: mod/editpost.php:136 src/Content/Conversation.php:345 -#: src/Module/Item/Compose.php:165 src/Object/Post.php:996 -msgid "Underline" -msgstr "Understruken" - -#: mod/editpost.php:137 src/Content/Conversation.php:346 -#: src/Module/Item/Compose.php:166 src/Object/Post.php:997 -msgid "Quote" -msgstr "Citat" - -#: mod/editpost.php:138 src/Content/Conversation.php:347 -#: src/Module/Item/Compose.php:167 src/Object/Post.php:998 -msgid "Code" -msgstr "Källkod" - -#: mod/editpost.php:139 src/Content/Conversation.php:349 -#: src/Module/Item/Compose.php:169 src/Object/Post.php:1000 -msgid "Link" -msgstr "Länk" - -#: mod/editpost.php:140 src/Content/Conversation.php:350 -#: src/Module/Item/Compose.php:170 src/Object/Post.php:1001 -msgid "Link or Media" -msgstr "Länk eller media" - -#: mod/editpost.php:143 src/Content/Conversation.php:393 -#: src/Content/Widget/VCard.php:113 src/Model/Profile.php:463 -#: src/Module/Admin/Logs/View.php:93 -msgid "Message" -msgstr "Meddelande" - -#: mod/editpost.php:144 src/Content/Conversation.php:394 -#: src/Module/Settings/TwoFactor/Trusted.php:138 -msgid "Browser" -msgstr "Bläddra" - -#: mod/editpost.php:145 mod/events.php:518 mod/photos.php:939 -#: mod/photos.php:1291 src/Content/Conversation.php:370 -msgid "Permissions" -msgstr "Åtkomst" - -#: mod/editpost.php:147 src/Content/Conversation.php:396 -msgid "Open Compose page" -msgstr "" - -#: mod/events.php:124 mod/events.php:126 -msgid "Event can not end before it has started." -msgstr "Evenemanget kan inte sluta före det har börjat." - -#: mod/events.php:132 mod/events.php:134 -msgid "Event title and start time are required." -msgstr "Evenemangets titel och start-tid krävs." - -#: mod/events.php:376 -msgid "Create New Event" -msgstr "Skapa nytt evenemang" - -#: mod/events.php:474 src/Module/Admin/Logs/View.php:97 -msgid "Event details" -msgstr "Evenemangets detaljer" - -#: mod/events.php:475 -msgid "Starting date and Title are required." -msgstr "Start-datum och titel krävs." - -#: mod/events.php:476 mod/events.php:481 -msgid "Event Starts:" -msgstr "Evenemanget börjar:" - -#: mod/events.php:476 mod/events.php:506 -#: src/Module/Admin/Blocklist/Server/Add.php:104 -#: src/Module/Admin/Blocklist/Server/Add.php:106 -#: src/Module/Admin/Blocklist/Server/Index.php:68 -#: src/Module/Admin/Blocklist/Server/Index.php:69 -#: src/Module/Admin/Blocklist/Server/Index.php:96 -#: src/Module/Admin/Item/Delete.php:69 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:207 src/Module/Install.php:240 -#: src/Module/Install.php:245 src/Module/Install.php:264 -#: src/Module/Install.php:275 src/Module/Install.php:280 -#: src/Module/Install.php:286 src/Module/Install.php:291 -#: src/Module/Install.php:305 src/Module/Install.php:320 -#: src/Module/Install.php:347 src/Module/Register.php:148 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Index.php:136 -#: src/Module/Settings/TwoFactor/Verify.php:154 -msgid "Required" -msgstr "Krävs" - -#: mod/events.php:489 mod/events.php:512 -msgid "Finish date/time is not known or not relevant" -msgstr "Slut-datum/tid är inte känt eller icke relevant" - -#: mod/events.php:491 mod/events.php:496 -msgid "Event Finishes:" -msgstr "Evenemanget slutar:" - -#: mod/events.php:502 src/Module/Profile/Profile.php:172 -#: src/Module/Settings/Profile/Index.php:238 -msgid "Description:" -msgstr "Beskrivning:" - -#: mod/events.php:504 src/Content/Widget/VCard.php:104 src/Model/Event.php:80 -#: src/Model/Event.php:107 src/Model/Event.php:465 src/Model/Event.php:915 -#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:369 -#: src/Module/Directory.php:148 src/Module/Notifications/Introductions.php:185 -#: src/Module/Profile/Profile.php:194 -msgid "Location:" -msgstr "Plats:" - -#: mod/events.php:506 mod/events.php:508 -msgid "Title:" -msgstr "Titel:" - -#: mod/events.php:509 mod/events.php:510 -msgid "Share this event" -msgstr "Dela det här evenemanget" - -#: mod/events.php:515 mod/message.php:201 mod/message.php:357 -#: mod/photos.php:921 mod/photos.php:1025 mod/photos.php:1295 -#: mod/photos.php:1336 mod/photos.php:1392 mod/photos.php:1466 -#: src/Module/Admin/Item/Source.php:65 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Poke.php:177 src/Module/Contact/Profile.php:327 -#: src/Module/Debug/ActivityPubConversion.php:145 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/Delegation.php:148 src/Module/FriendSuggest.php:144 -#: src/Module/Install.php:252 src/Module/Install.php:294 -#: src/Module/Install.php:331 src/Module/Invite.php:178 -#: src/Module/Item/Compose.php:162 src/Module/Profile/Profile.php:247 -#: src/Module/Settings/Profile/Index.php:222 src/Object/Post.php:992 -#: 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 "Spara" - -#: mod/events.php:516 src/Module/Profile/Profile.php:248 -msgid "Basic" -msgstr "Standard" - -#: mod/events.php:517 src/Module/Admin/Site.php:439 src/Module/Contact.php:474 -#: src/Module/Profile/Profile.php:249 -msgid "Advanced" -msgstr "Avancerat" - -#: mod/events.php:534 -msgid "Failed to remove event" -msgstr "Borttagning av evenemanget misslyckades" - -#: mod/fbrowser.php:61 src/Content/Nav.php:192 src/Module/BaseProfile.php:64 -#: view/theme/frio/theme.php:227 -msgid "Photos" -msgstr "Bilder" - -#: mod/fbrowser.php:120 mod/fbrowser.php:147 -#: src/Module/Settings/Profile/Photo/Index.php:129 -msgid "Upload" -msgstr "Ladda upp" - -#: mod/fbrowser.php:142 -msgid "Files" -msgstr "Filer" - -#: mod/follow.php:74 mod/unfollow.php:96 src/Module/RemoteFollow.php:126 -msgid "Submit Request" -msgstr "Skicka förfrågan" - -#: mod/follow.php:84 -msgid "You already added this contact." -msgstr "Du har redan lagt till den här kontakten." - -#: mod/follow.php:100 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "Nätverkstypen kunde inte upptäckas. Kontakten kan inte läggas till." - -#: mod/follow.php:108 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Stödet för Diaspora är inte aktiverat. Kontakten kan inte läggas till." - -#: mod/follow.php:113 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Stödet för OStatus är inaktiverat. Kontakten kan inte läggas till." - -#: mod/follow.php:138 src/Content/Item.php:443 src/Content/Widget.php:80 -#: src/Model/Contact.php:1103 src/Model/Contact.php:1115 -#: view/theme/vier/theme.php:172 -msgid "Connect/Follow" -msgstr "Gör till kontakt/Följ" - -#: mod/follow.php:139 src/Module/RemoteFollow.php:125 -msgid "Please answer the following:" -msgstr "Var vänlig besvara följande:" - -#: mod/follow.php:140 mod/unfollow.php:94 -msgid "Your Identity Address:" -msgstr "Din adress (ditt ID):" - -#: mod/follow.php:141 mod/unfollow.php:100 -#: src/Module/Admin/Blocklist/Contact.php:116 -#: src/Module/Contact/Profile.php:365 -#: src/Module/Notifications/Introductions.php:127 -#: src/Module/Notifications/Introductions.php:196 -msgid "Profile URL" -msgstr "URL för profil" - -#: mod/follow.php:142 src/Module/Contact/Profile.php:377 -#: src/Module/Notifications/Introductions.php:189 -#: src/Module/Profile/Profile.php:207 -msgid "Tags:" -msgstr "Taggar:" - -#: mod/follow.php:153 -#, php-format -msgid "%s knows you" -msgstr "%s känner dig" - -#: mod/follow.php:154 -msgid "Add a personal note:" -msgstr "Lägg till ett personligt meddelande:" - -#: mod/follow.php:163 mod/unfollow.php:109 src/Module/BaseProfile.php:59 -#: src/Module/Contact.php:444 -msgid "Status Messages and Posts" -msgstr "Statusmeddelanden och inlägg" - -#: mod/follow.php:191 -msgid "The contact could not be added." -msgstr "Kontakten kunde inte läggas till." - -#: mod/item.php:131 mod/item.php:135 +#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 msgid "Unable to locate original post." msgstr "Hittar inte det ursprungliga inlägget." -#: mod/item.php:337 mod/item.php:342 -msgid "Empty post discarded." -msgstr "Tomt inlägg. Inte sparat." - -#: mod/item.php:687 +#: mod/item.php:138 msgid "Post updated." msgstr "Inlägget uppdaterades." -#: mod/item.php:697 mod/item.php:702 +#: mod/item.php:203 mod/item.php:207 msgid "Item wasn't stored." msgstr "Objektet lagrades inte." -#: mod/item.php:713 +#: mod/item.php:217 msgid "Item couldn't be fetched." msgstr "Objektet kunde inte hämtas." -#: mod/item.php:853 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:255 mod/item.php:259 +msgid "Empty post discarded." +msgstr "Tomt inlägg. Inte sparat." + +#: mod/item.php:428 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 -#: src/Module/Debug/ItemBody.php:57 +#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Hittar inte." +#: mod/item.php:452 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: src/Module/Attach.php:55 src/Module/BaseApi.php:99 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 +#: src/Module/Circle.php:41 src/Module/Circle.php:84 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 +#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 +#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 +#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 +#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:38 +#: src/Module/FriendSuggest.php:57 src/Module/Invite.php:42 +#: src/Module/Invite.php:131 src/Module/Notifications/Notification.php:76 +#: src/Module/Notifications/Notification.php:107 +#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 +#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 +#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:408 +#: src/Module/Settings/Delegation.php:41 src/Module/Settings/Delegation.php:71 +#: src/Module/Settings/Display.php:73 src/Module/Settings/Display.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:111 +#: src/Module/Settings/RemoveMe.php:117 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/UserExport.php:114 +#: src/Module/Settings/UserExport.php:215 +#: src/Module/Settings/UserExport.php:235 +#: src/Module/Settings/UserExport.php:300 src/Module/User/Import.php:84 +#: src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "Åtkomst nekad." + #: mod/lostpass.php:40 msgid "No valid account found." msgstr "Inget giltigt konto hittades." @@ -567,7 +109,7 @@ msgid "" "\n" "\t\tYour password will not be changed unless we can verify that you\n" "\t\tissued this request." -msgstr "" +msgstr "\n\t\tHej %1$s,\n\t\t\tNågon begärde nyligen att \"%2$s\" skulle återställa ditt lösenord.\n\t\tFör att utföra denna begäran, vänligen besök länken nedan eller kopiera den till din webläsare.\n\n\t\tOm du INTE begärde återställning av ditt lösenord så ska du INTE följa länken, utan ignorera detta mail. Denna begäran om återställning blir snart ogiltig.\n\n\t\tDitt lösenord kommer inte att återställas om vi inte kan verifiera att det var du som begärde det." #: mod/lostpass.php:69 #, php-format @@ -584,7 +126,7 @@ msgid "" "\n" "\t\tSite Location:\t%2$s\n" "\t\tLogin Name:\t%3$s" -msgstr "" +msgstr "\n\t\tFölj denna länk snart för att bekräfta din identitet:\n\n\t\t%1$s\n\n\t\tDu kommer sedan att få ett mail med det nya lösenordet.\n\t\tDu kan ändra det lösenordet från dina konto-inställningar efter att du loggat in.\n\n\t\tDina inloggningsuppgifter:\n\n\t\tWeb-plats:\t%2$s\n\t\tAnvändarnamn:\t%3$s" #: mod/lostpass.php:84 #, php-format @@ -611,7 +153,7 @@ msgid "" "your email for further instructions." msgstr "Ange din e-postadress för att få ett nytt lösenord. Du kommer att få ett meddelande med vidare instruktioner via e-post." -#: mod/lostpass.php:130 src/Module/Security/Login.php:147 +#: mod/lostpass.php:130 src/Module/Security/Login.php:160 msgid "Nickname or Email: " msgstr "Användarnamn eller e-post:" @@ -619,7 +161,7 @@ msgstr "Användarnamn eller e-post:" msgid "Reset" msgstr "Skicka" -#: mod/lostpass.php:146 src/Module/Security/Login.php:159 +#: mod/lostpass.php:146 src/Module/Security/Login.php:172 msgid "Password Reset" msgstr "Glömt lösenordet?" @@ -679,23 +221,11 @@ msgstr "" msgid "Your password has been changed at %s" msgstr "Ditt lösenord ändrades den %s" -#: mod/match.php:62 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "" - -#: mod/match.php:93 src/Module/BaseSearch.php:119 -msgid "No matches" -msgstr "Ingen träff" - -#: mod/match.php:98 -msgid "Profile Match" -msgstr "Matcha profiler" - -#: mod/message.php:46 mod/message.php:126 src/Content/Nav.php:286 +#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 msgid "New Message" msgstr "Nytt meddelande" -#: mod/message.php:83 mod/wallmessage.php:70 +#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 msgid "No recipient selected." msgstr "Ingen mottagare har valts." @@ -703,62 +233,102 @@ msgstr "Ingen mottagare har valts." msgid "Unable to locate contact information." msgstr "Det gick inte att hitta kontaktuppgifterna." -#: mod/message.php:90 mod/wallmessage.php:76 +#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 msgid "Message could not be sent." msgstr "Det gick inte att skicka meddelandet." -#: mod/message.php:93 mod/wallmessage.php:79 +#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 msgid "Message collection failure." msgstr "Insamling av meddelanden misslyckades." -#: mod/message.php:120 src/Module/Notifications/Introductions.php:133 -#: src/Module/Notifications/Introductions.php:168 -#: src/Module/Notifications/Notification.php:84 +#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 msgid "Discard" msgstr "Ta bort" -#: mod/message.php:133 src/Content/Nav.php:283 view/theme/frio/theme.php:234 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" msgstr "Meddelanden" -#: mod/message.php:146 +#: mod/message.php:148 msgid "Conversation not found." msgstr "Konversationen hittades inte." -#: mod/message.php:151 +#: mod/message.php:153 msgid "Message was not deleted." msgstr "Meddelandet togs inte bort." -#: mod/message.php:166 +#: mod/message.php:168 msgid "Conversation was not removed." msgstr "Konversationen togs inte bort." -#: mod/message.php:180 mod/message.php:286 mod/wallmessage.php:124 +#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 msgid "Please enter a link URL:" msgstr "Ange en länk (URL):" -#: mod/message.php:189 mod/wallmessage.php:129 +#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 msgid "Send Private Message" msgstr "Skicka personligt meddelande" -#: mod/message.php:190 mod/message.php:347 mod/wallmessage.php:131 +#: mod/message.php:191 mod/message.php:346 msgid "To:" msgstr "Till:" -#: mod/message.php:191 mod/message.php:348 mod/wallmessage.php:132 +#: mod/message.php:192 mod/message.php:347 msgid "Subject:" msgstr "Rubrik:" -#: mod/message.php:195 mod/message.php:351 mod/wallmessage.php:138 -#: src/Module/Invite.php:171 +#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 msgid "Your message:" msgstr "Meddelande:" -#: mod/message.php:222 +#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:368 +#: src/Module/Post/Edit.php:131 +msgid "Upload photo" +msgstr "Ladda upp bild" + +#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: src/Module/Profile/UnkMail.php:153 +msgid "Insert web link" +msgstr "Infoga länk" + +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: src/Content/Conversation.php:399 src/Content/Conversation.php:1549 +#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 +#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:578 +msgid "Please wait" +msgstr "Var god vänta" + +#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 +#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 +#: mod/photos.php:1198 mod/photos.php:1278 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:364 +#: src/Module/Debug/ActivityPubConversion.php:140 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 +#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:145 +#: src/Module/Install.php:234 src/Module/Install.php:274 +#: src/Module/Install.php:309 src/Module/Invite.php:178 +#: src/Module/Item/Compose.php:189 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Moderation/Report/Create.php:168 +#: src/Module/Moderation/Report/Create.php:183 +#: src/Module/Moderation/Report/Create.php:211 +#: src/Module/Moderation/Report/Create.php:263 +#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 +#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Server/Action.php:79 src/Object/Post.php:1095 +#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171 +#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Spara" + +#: mod/message.php:223 msgid "No messages." msgstr "Inga meddelanden." -#: mod/message.php:278 +#: mod/message.php:279 msgid "Message not available." msgstr "Meddelandet är inte tillgängligt." @@ -766,11 +336,11 @@ msgstr "Meddelandet är inte tillgängligt." msgid "Delete message" msgstr "Ta bort meddelande" -#: mod/message.php:325 mod/message.php:457 +#: mod/message.php:325 mod/message.php:456 msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:i A" -#: mod/message.php:340 mod/message.php:454 +#: mod/message.php:340 mod/message.php:453 msgid "Delete conversation" msgstr "Ta bort konversation" @@ -780,841 +350,469 @@ msgid "" "respond from the sender's profile page." msgstr "Inga säkra kommunikationer tillgängliga. Du
    kanske
    kan ha möjlighet att svara från sändarens profilsida." -#: mod/message.php:346 +#: mod/message.php:345 msgid "Send Reply" msgstr "Skicka svar" -#: mod/message.php:428 +#: mod/message.php:427 #, php-format msgid "Unknown sender - %s" msgstr "Okänd sändare - %s" -#: mod/message.php:430 +#: mod/message.php:429 #, php-format msgid "You and %s" msgstr "Du och %s" -#: mod/message.php:432 +#: mod/message.php:431 #, php-format msgid "%s and You" msgstr "%s och Du" -#: mod/message.php:460 +#: mod/message.php:459 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d meddelande" msgstr[1] "%d meddelanden" -#: mod/notes.php:51 src/Module/BaseProfile.php:106 +#: mod/notes.php:52 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "Personliga anteckningar" -#: mod/notes.php:55 +#: mod/notes.php:56 msgid "Personal notes are visible only by yourself." msgstr "Personliga anteckningar kan endast ses av dig själv." -#: mod/ostatus_subscribe.php:38 -msgid "Subscribing to contacts" -msgstr "Prenumererar på kontakter" +#: mod/notes.php:57 src/Content/Text/HTML.php:859 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:129 +msgid "Save" +msgstr "Spara" -#: mod/ostatus_subscribe.php:48 -msgid "No contact provided." -msgstr "Ingen kontakt angedd" +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: src/Model/Event.php:512 src/Model/Profile.php:232 +#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 +#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "Användaren hittades inte." -#: mod/ostatus_subscribe.php:54 -msgid "Couldn't fetch information for contact." -msgstr "Kunde inte hämta information för kontakten." - -#: mod/ostatus_subscribe.php:65 -msgid "Couldn't fetch friends for contact." -msgstr "Kunde inte hämta vänner för kontakt." - -#: mod/ostatus_subscribe.php:71 mod/ostatus_subscribe.php:82 -msgid "Couldn't fetch following contacts." -msgstr "Kunde inte hämta följande kontakter." - -#: mod/ostatus_subscribe.php:77 -msgid "Couldn't fetch remote profile." -msgstr "Kunde inte hämta profil" - -#: mod/ostatus_subscribe.php:87 -msgid "Unsupported network" -msgstr "Nätverket stöds inte" - -#: mod/ostatus_subscribe.php:103 mod/repair_ostatus.php:51 -msgid "Done" -msgstr "Färdig" - -#: mod/ostatus_subscribe.php:117 -msgid "success" -msgstr "lyckades" - -#: mod/ostatus_subscribe.php:119 -msgid "failed" -msgstr "misslyckades" - -#: mod/ostatus_subscribe.php:122 -msgid "ignored" -msgstr "ignorerades" - -#: mod/ostatus_subscribe.php:127 mod/repair_ostatus.php:57 -msgid "Keep this window open until done." -msgstr "Håll det här fönstret öppet tills du är klar." - -#: mod/photos.php:108 src/Module/BaseProfile.php:67 +#: mod/photos.php:106 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:379 msgid "Photo Albums" msgstr "Fotoalbum" -#: mod/photos.php:109 mod/photos.php:1584 +#: mod/photos.php:107 src/Module/Profile/Photos.php:380 +#: src/Module/Profile/Photos.php:400 msgid "Recent Photos" msgstr "Nyligen tillagda bilder" -#: mod/photos.php:111 mod/photos.php:1073 mod/photos.php:1586 +#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 +#: src/Module/Profile/Photos.php:402 msgid "Upload New Photos" msgstr "Ladda upp bilder" -#: mod/photos.php:129 src/Module/BaseSettings.php:35 +#: mod/photos.php:121 src/Module/BaseSettings.php:72 +#: src/Module/Profile/Photos.php:363 msgid "everybody" msgstr "alla" -#: mod/photos.php:167 +#: mod/photos.php:159 msgid "Contact information unavailable" msgstr "Kommer inte åt kontaktuppgifter." -#: mod/photos.php:196 +#: mod/photos.php:188 msgid "Album not found." msgstr "Albumet finns inte." -#: mod/photos.php:250 +#: mod/photos.php:244 msgid "Album successfully deleted" msgstr "Borttagningen av albumet lyckades" -#: mod/photos.php:252 +#: mod/photos.php:246 msgid "Album was empty." msgstr "Albumet var tomt." -#: mod/photos.php:284 +#: mod/photos.php:277 msgid "Failed to delete the photo." msgstr "Borttagningen av fotot misslyckades." -#: mod/photos.php:553 +#: mod/photos.php:545 msgid "a photo" msgstr "ett foto" -#: mod/photos.php:553 +#: mod/photos.php:545 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s taggades i %2$s av %3$s" -#: mod/photos.php:636 mod/photos.php:639 mod/photos.php:666 -#: mod/wall_upload.php:201 src/Module/Settings/Profile/Photo/Index.php:60 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Bildstorlek överstiger %s" +#: mod/photos.php:582 src/Module/Conversation/Community.php:159 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: src/Module/Search/Index.php:65 +msgid "Public access denied." +msgstr "Publik åtkomst nekades." -#: mod/photos.php:642 -msgid "Image upload didn't complete, please try again" -msgstr "Uppladdningen av bilden slutfördes inte, vänligen försök igen." - -#: mod/photos.php:645 -msgid "Image file is missing" -msgstr "Bildfilen saknas" - -#: mod/photos.php:650 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "Servern kan just nu inte acceptera uppladdning av en ny fil, vänligen kontakta din administratör" - -#: mod/photos.php:674 -msgid "Image file is empty." -msgstr "Bildfilen är tom." - -#: mod/photos.php:689 mod/wall_upload.php:163 -#: src/Module/Settings/Profile/Photo/Index.php:69 -msgid "Unable to process image." -msgstr "Det gick inte att behandla bilden." - -#: mod/photos.php:715 mod/wall_upload.php:226 -#: src/Module/Settings/Profile/Photo/Index.php:96 -msgid "Image upload failed." -msgstr "Fel vid bilduppladdning." - -#: mod/photos.php:807 +#: mod/photos.php:587 msgid "No photos selected" msgstr "Inga bilder har valts" -#: mod/photos.php:876 -msgid "Access to this item is restricted." -msgstr "Åtkomst till det här objekt är begränsat." +#: mod/photos.php:721 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "" -#: mod/photos.php:931 +#: mod/photos.php:728 msgid "Upload Photos" msgstr "Ladda upp bilder" -#: mod/photos.php:935 mod/photos.php:1021 +#: mod/photos.php:732 mod/photos.php:820 msgid "New album name: " msgstr "Nytt album med namn: " -#: mod/photos.php:936 +#: mod/photos.php:733 msgid "or select existing album:" msgstr "eller välj befintligt album:" -#: mod/photos.php:937 +#: mod/photos.php:734 msgid "Do not show a status post for this upload" msgstr "Visa inte ett status-inlägg för den här uppladdningen" -#: mod/photos.php:1002 +#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:401 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +msgid "Permissions" +msgstr "Åtkomst" + +#: mod/photos.php:801 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Vill du verkligen ta bort det här fotoalbumet och alla dess foton?" -#: mod/photos.php:1003 mod/photos.php:1026 +#: mod/photos.php:802 mod/photos.php:825 msgid "Delete Album" msgstr "Ta bort album" -#: mod/photos.php:1030 +#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:417 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 +#: src/Module/Contact/Unfollow.php:126 +#: src/Module/Media/Attachment/Browser.php:77 +#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Avbryt" + +#: mod/photos.php:829 msgid "Edit Album" msgstr "Redigera album" -#: mod/photos.php:1031 +#: mod/photos.php:830 msgid "Drop Album" msgstr "Släpp albumet" -#: mod/photos.php:1035 +#: mod/photos.php:834 msgid "Show Newest First" msgstr "Visa nyaste först" -#: mod/photos.php:1037 +#: mod/photos.php:836 msgid "Show Oldest First" msgstr "Visa äldsta först" -#: mod/photos.php:1058 mod/photos.php:1569 +#: mod/photos.php:857 src/Module/Profile/Photos.php:350 msgid "View Photo" msgstr "Visa bild" -#: mod/photos.php:1091 +#: mod/photos.php:889 msgid "Permission denied. Access to this item may be restricted." msgstr "Tillståndet nekades. Åtkomst till det här objektet kan vara begränsad." -#: mod/photos.php:1093 +#: mod/photos.php:891 msgid "Photo not available" msgstr "Bilden är inte tillgänglig" -#: mod/photos.php:1103 +#: mod/photos.php:901 msgid "Do you really want to delete this photo?" msgstr "Vill du verkligen ta bort det här fotot?" -#: mod/photos.php:1104 mod/photos.php:1296 +#: mod/photos.php:902 mod/photos.php:1102 msgid "Delete Photo" msgstr "Ta bort bild" -#: mod/photos.php:1196 +#: mod/photos.php:1000 msgid "View photo" msgstr "Visa fotot" -#: mod/photos.php:1198 +#: mod/photos.php:1002 msgid "Edit photo" msgstr "Hantera bild" -#: mod/photos.php:1199 +#: mod/photos.php:1003 msgid "Delete photo" msgstr "Ta bort fotot" -#: mod/photos.php:1200 +#: mod/photos.php:1004 msgid "Use as profile photo" msgstr "Använd som ett profilfoto" -#: mod/photos.php:1207 +#: mod/photos.php:1011 msgid "Private Photo" msgstr "Privat foto" -#: mod/photos.php:1213 +#: mod/photos.php:1017 msgid "View Full Size" msgstr "Visa fullstor" -#: mod/photos.php:1264 +#: mod/photos.php:1070 msgid "Tags: " msgstr "Taggar: " -#: mod/photos.php:1267 +#: mod/photos.php:1073 msgid "[Select tags to remove]" msgstr "[Välj taggar att ta bort]" -#: mod/photos.php:1282 +#: mod/photos.php:1088 msgid "New album name" msgstr "Nytt album med namn" -#: mod/photos.php:1283 +#: mod/photos.php:1089 msgid "Caption" msgstr "Caption" -#: mod/photos.php:1284 +#: mod/photos.php:1090 msgid "Add a Tag" msgstr "Lägg till tagg" -#: mod/photos.php:1284 +#: mod/photos.php:1090 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Exempel: @adam, @Anna_Andersson, @johan@exempel.com, #Stockholm, #camping" -#: mod/photos.php:1285 +#: mod/photos.php:1091 msgid "Do not rotate" msgstr "Rotera inte" -#: mod/photos.php:1286 +#: mod/photos.php:1092 msgid "Rotate CW (right)" msgstr "Rotera medurs (höger)" -#: mod/photos.php:1287 +#: mod/photos.php:1093 msgid "Rotate CCW (left)" msgstr "Rotera Moturs (vänster)" -#: mod/photos.php:1333 mod/photos.php:1389 mod/photos.php:1463 -#: src/Module/Contact.php:544 src/Module/Item/Compose.php:160 -#: src/Object/Post.php:989 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: src/Module/Contact.php:619 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1092 msgid "This is you" msgstr "Det här är du" -#: mod/photos.php:1335 mod/photos.php:1391 mod/photos.php:1465 -#: src/Object/Post.php:532 src/Object/Post.php:991 +#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:572 +#: src/Object/Post.php:1094 msgid "Comment" msgstr "Kommentera" -#: mod/photos.php:1424 src/Content/Conversation.php:629 -#: src/Object/Post.php:256 +#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 +#: src/Object/Post.php:1108 +msgid "Preview" +msgstr "Förhandsgranskning" + +#: mod/photos.php:1144 src/Content/Conversation.php:367 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1096 +msgid "Loading..." +msgstr "Laddar..." + +#: mod/photos.php:1236 src/Content/Conversation.php:1464 +#: src/Object/Post.php:260 msgid "Select" msgstr "Välj" -#: mod/photos.php:1425 mod/settings.php:350 src/Content/Conversation.php:630 -#: src/Module/Admin/Users/Active.php:139 -#: src/Module/Admin/Users/Blocked.php:140 src/Module/Admin/Users/Index.php:153 +#: mod/photos.php:1237 src/Content/Conversation.php:1465 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Server/Index.php:109 msgid "Delete" msgstr "Ta bort" -#: mod/photos.php:1486 src/Object/Post.php:379 +#: mod/photos.php:1298 src/Object/Post.php:408 msgid "Like" msgstr "Gilla" -#: mod/photos.php:1487 src/Object/Post.php:379 +#: mod/photos.php:1299 src/Object/Post.php:408 msgid "I like this (toggle)" msgstr "Jag gillar det här (växla)" -#: mod/photos.php:1488 src/Object/Post.php:380 +#: mod/photos.php:1300 src/Object/Post.php:409 msgid "Dislike" msgstr "Ogilla" -#: mod/photos.php:1490 src/Object/Post.php:380 +#: mod/photos.php:1302 src/Object/Post.php:409 msgid "I don't like this (toggle)" msgstr "Jag ogillar det här (växla)" -#: mod/photos.php:1512 +#: mod/photos.php:1324 msgid "Map" msgstr "Karta" -#: mod/photos.php:1575 -msgid "View Album" -msgstr "Titta i album" - -#: mod/redir.php:51 mod/redir.php:104 -msgid "Bad Request." -msgstr "Dålig begäran." - -#: mod/redir.php:57 mod/redir.php:131 src/Module/Contact/Advanced.php:70 -#: src/Module/Contact/Advanced.php:109 src/Module/Contact/Contacts.php:55 -#: src/Module/Contact/Conversations.php:78 -#: src/Module/Contact/Conversations.php:83 -#: src/Module/Contact/Conversations.php:88 src/Module/Contact/Media.php:43 -#: src/Module/Contact/Posts.php:72 src/Module/Contact/Posts.php:77 -#: src/Module/Contact/Posts.php:82 src/Module/Contact/Profile.php:141 -#: src/Module/Contact/Profile.php:146 src/Module/Contact/Profile.php:151 -#: src/Module/FriendSuggest.php:70 src/Module/FriendSuggest.php:108 -#: src/Module/Group.php:99 src/Module/Group.php:108 -msgid "Contact not found." -msgstr "Kontakten hittades inte." - -#: mod/removeme.php:65 src/Navigation/Notifications/Repository/Notify.php:483 -msgid "[Friendica System Notify]" -msgstr "[System-avisering för Friendica]" - -#: mod/removeme.php:65 -msgid "User deleted their account" -msgstr "Användaren tog bort sitt konto" - -#: mod/removeme.php:66 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "" - -#: mod/removeme.php:67 -#, php-format -msgid "The user id is %d" -msgstr "ID för användaren är %d" - -#: mod/removeme.php:101 mod/removeme.php:104 -msgid "Remove My Account" -msgstr "Ta bort mitt konto" - -#: mod/removeme.php:102 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Detta kommer att ta bort kontot helt och hållet. Efter att det är gjort går det inte att återställa." - -#: mod/removeme.php:103 -msgid "Please enter your password for verification:" -msgstr "Ange lösenordet igen för säkerhets skull:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "" - -#: mod/repair_ostatus.php:46 src/Module/Debug/ActivityPubConversion.php:134 -#: src/Module/Debug/Babel.php:293 src/Module/Security/TwoFactor/Verify.php:98 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Fel" -msgstr[1] "Fel" - -#: mod/settings.php:122 -msgid "Failed to connect with email account using the settings provided." -msgstr "Kunde inte ansluta till e-postkontot med aktuella inställningar" - -#: mod/settings.php:175 -msgid "Connected Apps" -msgstr "Anslutna appar" - -#: mod/settings.php:176 src/Module/Admin/Blocklist/Contact.php:106 -#: 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 "Namn" - -#: mod/settings.php:177 src/Content/Nav.php:212 -msgid "Home Page" -msgstr "Hemsida" - -#: mod/settings.php:178 src/Module/Admin/Queue.php:78 -msgid "Created" -msgstr "Skapades" - -#: mod/settings.php:179 -msgid "Remove authorization" -msgstr "Ta bort autentisering" - -#: mod/settings.php:205 mod/settings.php:237 mod/settings.php:268 -#: mod/settings.php:352 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81 -#: src/Module/Admin/Site.php:434 src/Module/Admin/Themes/Index.php:113 -#: src/Module/Admin/Tos.php:83 src/Module/Settings/Account.php:559 -#: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:193 -msgid "Save Settings" -msgstr "Spara inställningar" - -#: mod/settings.php:213 -msgid "Addon Settings" -msgstr "Inställningar för Tillägg" - -#: mod/settings.php:214 -msgid "No Addon settings configured" -msgstr "Inga inställningar för Tillägg har gjorts" - -#: mod/settings.php:235 -msgid "Additional Features" -msgstr "Ytterligare funktioner" - -#: mod/settings.php:273 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "enabled" -msgstr "aktiverad" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "disabled" -msgstr "inaktiverad" - -#: mod/settings.php:273 mod/settings.php:274 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Inbyggt stöd för %s kommunikation är %s" - -#: mod/settings.php:274 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: mod/settings.php:300 -msgid "Email access is disabled on this site." -msgstr "E-poståtkomst är inaktiverat på den här sidan." - -#: mod/settings.php:305 mod/settings.php:350 -msgid "None" -msgstr "Ingen" - -#: mod/settings.php:311 src/Module/BaseSettings.php:78 -msgid "Social Networks" -msgstr "Sociala nätverk" - -#: mod/settings.php:316 -msgid "General Social Media Settings" -msgstr "Generella inställningar för sociala medier" - -#: mod/settings.php:319 -msgid "Followed content scope" -msgstr "" - -#: mod/settings.php:321 -msgid "" -"By default, conversations in which your follows participated but didn't " -"start will be shown in your timeline. You can turn this behavior off, or " -"expand it to the conversations in which your follows liked a post." -msgstr "" - -#: mod/settings.php:323 -msgid "Only conversations my follows started" -msgstr "" - -#: mod/settings.php:324 -msgid "Conversations my follows started or commented on (default)" -msgstr "" - -#: mod/settings.php:325 -msgid "Any conversation my follows interacted with, including likes" -msgstr "" - -#: mod/settings.php:328 -msgid "Enable Content Warning" -msgstr "Aktivera innehållsvarning" - -#: mod/settings.php:328 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect any other content filtering you eventually set up." -msgstr "" - -#: mod/settings.php:329 -msgid "Enable intelligent shortening" -msgstr "Aktivera intelligent förkortning" - -#: mod/settings.php:329 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If disabled, every shortened post will always point to the original " -"friendica post." -msgstr "" - -#: mod/settings.php:330 -msgid "Enable simple text shortening" -msgstr "" - -#: mod/settings.php:330 -msgid "" -"Normally the system shortens posts at the next line feed. If this option is " -"enabled then the system will shorten the text at the maximum character " -"limit." -msgstr "" - -#: mod/settings.php:331 -msgid "Attach the link title" -msgstr "" - -#: mod/settings.php:331 -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:332 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "" - -#: mod/settings.php:332 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "" - -#: mod/settings.php:335 -msgid "Repair OStatus subscriptions" -msgstr "Reparera OStatus-prenumerationer" - -#: mod/settings.php:339 -msgid "Email/Mailbox Setup" -msgstr "" - -#: mod/settings.php:340 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "För att kommunicera via e-post med denna tjänst (valfritt), vänligen ange anslutningssätt till ditt e-postkonto." - -#: mod/settings.php:341 -msgid "Last successful email check:" -msgstr "" - -#: mod/settings.php:343 -msgid "IMAP server name:" -msgstr "Namn på IMAP-server:" - -#: mod/settings.php:344 -msgid "IMAP port:" -msgstr "Port för IMAP:" - -#: mod/settings.php:345 -msgid "Security:" -msgstr "Säkerhet:" - -#: mod/settings.php:346 -msgid "Email login name:" -msgstr "Inloggningsnamn för e-post:" - -#: mod/settings.php:347 -msgid "Email password:" -msgstr "Lösenord för e-post:" - -#: mod/settings.php:348 -msgid "Reply-to address:" -msgstr "Svara till-adress:" - -#: mod/settings.php:349 -msgid "Send public posts to all email contacts:" -msgstr "Skicka publika inlägg till alla e-postkontakter:" - -#: mod/settings.php:350 -msgid "Action after import:" -msgstr "Åtgärd efter importering:" - -#: mod/settings.php:350 src/Content/Nav.php:280 -msgid "Mark as seen" -msgstr "Markera som läst" - -#: mod/settings.php:350 -msgid "Move to folder" -msgstr "Flytta till mapp" - -#: mod/settings.php:351 -msgid "Move to folder:" -msgstr "Flytta till mapp:" - -#: mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: mod/suggest.php:55 src/Content/Widget.php:83 view/theme/vier/theme.php:175 -msgid "Friend Suggestions" -msgstr "Vän-förslag" - -#: mod/tagger.php:78 src/Content/Item.php:342 src/Model/Item.php:2728 -msgid "photo" -msgstr "foto" - -#: mod/tagger.php:78 src/Content/Item.php:337 src/Content/Item.php:346 -msgid "status" -msgstr "status" - -#: mod/tagger.php:111 src/Content/Item.php:356 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s taggade %2$ss %3$s med %4$s" - -#: mod/tagrm.php:113 -msgid "Remove Item Tag" -msgstr "Ta bort tagg" - -#: mod/tagrm.php:115 -msgid "Select a tag to remove: " -msgstr "Välj vilken tagg som ska tas bort: " - -#: mod/tagrm.php:126 src/Module/Settings/Delegation.php:179 -#: src/Module/Settings/TwoFactor/Trusted.php:142 -msgid "Remove" -msgstr "Ta bort" - -#: mod/uimport.php:46 -msgid "User imports on closed servers can only be done by an administrator." -msgstr "" - -#: mod/uimport.php:55 src/Module/Register.php:99 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: mod/uimport.php:62 src/Module/Register.php:173 -msgid "Import" -msgstr "Importera" - -#: mod/uimport.php:64 -msgid "Move account" -msgstr "Flytta konto" - -#: mod/uimport.php:65 -msgid "You can import an account from another Friendica server." -msgstr "Du kan importera ett konto från en annan Friendica-server." - -#: mod/uimport.php:66 -msgid "" -"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." -msgstr "" - -#: mod/uimport.php:67 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "" - -#: mod/uimport.php:68 -msgid "Account file" -msgstr "" - -#: mod/uimport.php:68 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "För att exportera ditt konto, gå till \"Inställningar->Exportera din personliga data\" och välj \"Exportera konto\"" - -#: mod/unfollow.php:65 mod/unfollow.php:134 -msgid "You aren't following this contact." -msgstr "Du följer inte den här kontakten." - -#: mod/unfollow.php:71 -msgid "Unfollowing is currently not supported by your network." -msgstr "Avföljning stöds för närvarande inte av ditt nätverk." - -#: mod/unfollow.php:92 -msgid "Disconnect/Unfollow" -msgstr "Koppla ur/Avfölj" - -#: mod/unfollow.php:143 -msgid "Contact was successfully unfollowed" -msgstr "Avföljningen av kontakten lyckades" - -#: mod/unfollow.php:146 -msgid "Unable to unfollow this contact, please contact your administrator" -msgstr "" - -#: mod/wall_attach.php:40 mod/wall_attach.php:46 mod/wall_attach.php:75 -#: mod/wall_upload.php:54 mod/wall_upload.php:63 mod/wall_upload.php:97 -#: mod/wall_upload.php:148 mod/wall_upload.php:150 -msgid "Invalid request." -msgstr "Ogiltig förfrågning." - -#: mod/wall_attach.php:93 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: mod/wall_attach.php:93 -msgid "Or - did you try to upload an empty file?" -msgstr "Eller - provade du att ladda upp en tom fil?" - -#: mod/wall_attach.php:104 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Filen överstiger maxstorleken %s" - -#: mod/wall_attach.php:119 -msgid "File upload failed." -msgstr "Uppladdning av filen misslyckades." - -#: mod/wall_upload.php:218 src/Model/Photo.php:1085 -msgid "Wall Photos" -msgstr "Loggbilder" - -#: mod/wallmessage.php:62 mod/wallmessage.php:116 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "" - -#: mod/wallmessage.php:73 -msgid "Unable to check your home location." -msgstr "Kunde inte kontrollera platsen för ditt hem." - -#: mod/wallmessage.php:97 mod/wallmessage.php:104 -msgid "No recipient." -msgstr "Ingen mottagare." - -#: mod/wallmessage.php:130 -#, 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 "" - #: src/App.php:473 msgid "No system theme config value set." msgstr "" -#: src/App.php:594 +#: src/App.php:580 msgid "Apologies but the website is unavailable at the moment." msgstr "Ursäkta, men hemsidan är inte tillgänglig för tillfället. " -#: src/App/Page.php:276 +#: src/App/Page.php:248 msgid "Delete this item?" msgstr "Ta bort?" -#: src/App/Page.php:277 +#: src/App/Page.php:249 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "" -#: src/App/Page.php:347 +#: src/App/Page.php:250 +msgid "" +"Ignore this author? You won't be able to see their posts and their " +"notifications." +msgstr "" + +#: src/App/Page.php:251 +msgid "Collapse this author's posts?" +msgstr "" + +#: src/App/Page.php:252 +msgid "Ignore this author's server?" +msgstr "" + +#: src/App/Page.php:253 src/Module/Settings/Server/Action.php:61 +#: src/Module/Settings/Server/Index.php:108 +msgid "" +"You won't see any content from this server including reshares in your " +"Network page, the community pages and individual conversations." +msgstr "" + +#: src/App/Page.php:255 +msgid "Like not successful" +msgstr "" + +#: src/App/Page.php:256 +msgid "Dislike not successful" +msgstr "" + +#: src/App/Page.php:257 +msgid "Sharing not successful" +msgstr "" + +#: src/App/Page.php:258 +msgid "Attendance unsuccessful" +msgstr "" + +#: src/App/Page.php:259 +msgid "Backend error" +msgstr "" + +#: src/App/Page.php:260 +msgid "Network error" +msgstr "" + +#: src/App/Page.php:263 +msgid "Drop files here to upload" +msgstr "" + +#: src/App/Page.php:264 +msgid "Your browser does not support drag and drop file uploads." +msgstr "" + +#: src/App/Page.php:265 +msgid "" +"Please use the fallback form below to upload your files like in the olden " +"days." +msgstr "" + +#: src/App/Page.php:266 +msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." +msgstr "" + +#: src/App/Page.php:267 +msgid "You can't upload files of this type." +msgstr "" + +#: src/App/Page.php:268 +msgid "Server responded with {{statusCode}} code." +msgstr "" + +#: src/App/Page.php:269 +msgid "Cancel upload" +msgstr "" + +#: src/App/Page.php:270 +msgid "Upload canceled." +msgstr "" + +#: src/App/Page.php:271 +msgid "Are you sure you want to cancel this upload?" +msgstr "" + +#: src/App/Page.php:272 +msgid "Remove file" +msgstr "" + +#: src/App/Page.php:273 +msgid "You can't upload any more files." +msgstr "" + +#: src/App/Page.php:351 msgid "toggle mobile" msgstr "växla mobil" -#: src/App/Router.php:282 +#: src/App/Router.php:309 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "" -#: src/App/Router.php:284 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 msgid "Page not found." msgstr "Sidan hittades inte." -#: src/App/Router.php:312 +#: src/App/Router.php:323 msgid "You must be logged in to use addons. " msgstr "Du måste vara inloggad för att använda insticksprogram." -#: src/BaseModule.php:392 +#: src/BaseModule.php:401 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 "" -#: src/BaseModule.php:419 +#: src/BaseModule.php:428 msgid "All contacts" msgstr "Alla kontakter" -#: src/BaseModule.php:424 src/Content/Widget.php:235 src/Core/ACL.php:194 -#: src/Module/Contact.php:367 src/Module/PermissionTooltip.php:122 -#: src/Module/PermissionTooltip.php:144 +#: src/BaseModule.php:433 src/Content/Conversation/Factory/Timeline.php:62 +#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415 +#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149 msgid "Followers" msgstr "Följare" -#: src/BaseModule.php:429 src/Content/Widget.php:236 -#: src/Module/Contact.php:368 +#: src/BaseModule.php:438 src/Content/Widget.php:240 +#: src/Module/Contact.php:418 msgid "Following" msgstr "Följer" -#: src/BaseModule.php:434 src/Content/Widget.php:237 -#: src/Module/Contact.php:369 +#: src/BaseModule.php:443 src/Content/Widget.php:241 +#: src/Module/Contact.php:421 msgid "Mutual friends" msgstr "Gemensamma vänner" -#: src/BaseModule.php:442 +#: src/BaseModule.php:451 msgid "Common" msgstr "Vanlig" @@ -1637,76 +835,76 @@ msgstr "" #: src/Console/ArchiveContact.php:109 msgid "The contact entries have been archived" -msgstr "" +msgstr "Kontaktuppgifterna har arkiverats" #: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format msgid "Could not find any contact entry for this URL (%s)" -msgstr "" +msgstr "Kunde inte hitta någon kontakt för denna URL (%s)" #: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:66 +#: src/Module/Moderation/Blocklist/Contact.php:82 msgid "The contact has been blocked from the node" msgstr "" -#: src/Console/MergeContacts.php:74 +#: src/Console/MergeContacts.php:75 #, php-format msgid "%d %s, %d duplicates." msgstr "" -#: src/Console/MergeContacts.php:77 +#: src/Console/MergeContacts.php:78 #, php-format msgid "uri-id is empty for contact %s." msgstr "" -#: src/Console/MergeContacts.php:90 +#: src/Console/MergeContacts.php:91 #, php-format -msgid "No valid first countact found for uri-id %d." +msgid "No valid first contact found for uri-id %d." msgstr "" -#: src/Console/MergeContacts.php:101 +#: src/Console/MergeContacts.php:102 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:105 +#: src/Console/MergeContacts.php:106 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:141 +#: src/Console/MergeContacts.php:142 #, php-format msgid "Deletion of id %d failed" -msgstr "" +msgstr "Kunde inte ta bort id %d" -#: src/Console/MergeContacts.php:143 +#: src/Console/MergeContacts.php:144 #, php-format msgid "Deletion of id %d was successful" -msgstr "" +msgstr "Id %d har tagits bort" -#: src/Console/MergeContacts.php:149 +#: src/Console/MergeContacts.php:150 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "" -#: src/Console/MergeContacts.php:151 +#: src/Console/MergeContacts.php:152 msgid " - found" msgstr "- hittad" -#: src/Console/MergeContacts.php:158 +#: src/Console/MergeContacts.php:159 msgid " - failed" msgstr "- misslyckad" -#: src/Console/MergeContacts.php:160 +#: src/Console/MergeContacts.php:161 msgid " - success" msgstr "- framgång" -#: src/Console/MergeContacts.php:164 +#: src/Console/MergeContacts.php:165 msgid " - deleted" msgstr "- borttagen" -#: src/Console/MergeContacts.php:167 +#: src/Console/MergeContacts.php:168 msgid " - done" msgstr "- klar" @@ -1764,15 +962,26 @@ msgstr "" msgid "Enter user nickname: " msgstr "Ange smeknamn för användaren:" +#: src/Console/User.php:182 src/Model/User.php:711 +#: src/Module/Api/Twitter/ContactEndpoint.php:74 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Pending.php:67 +msgid "User not found" +msgstr "Användaren hittades inte" + #: src/Console/User.php:202 msgid "Enter new password: " msgstr "Ange nytt lösenord:" -#: src/Console/User.php:210 src/Module/Settings/Account.php:74 +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 msgid "Password update failed. Please try again." msgstr "Det blev fel när lösenordet skulle ändras. Försök igen." -#: src/Console/User.php:213 src/Module/Settings/Account.php:77 +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 msgid "Password changed." msgstr "Lösenordet har ändrats." @@ -1861,10 +1070,14 @@ msgstr "OStatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 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 +#: src/Content/ContactSelector.php:129 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 msgid "Email" msgstr "E-postadress" @@ -1920,246 +1133,504 @@ msgstr "ActivityPub" msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:178 +#: src/Content/ContactSelector.php:143 +msgid "Tumblr" +msgstr "" + +#: src/Content/ContactSelector.php:144 +msgid "Bluesky" +msgstr "" + +#: src/Content/ContactSelector.php:180 #, php-format msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:207 -#, php-format -msgid "%s likes this." -msgstr "%s gillar det här." - -#: src/Content/Conversation.php:210 -#, php-format -msgid "%s doesn't like this." -msgstr "%s ogillar det här." - -#: src/Content/Conversation.php:213 -#, php-format -msgid "%s attends." -msgstr "%s deltar." - -#: src/Content/Conversation.php:216 -#, php-format -msgid "%s doesn't attend." -msgstr "%s deltar inte." - -#: src/Content/Conversation.php:219 -#, php-format -msgid "%s attends maybe." -msgstr "%s deltar kanske." - -#: src/Content/Conversation.php:222 src/Content/Conversation.php:260 -#: src/Content/Conversation.php:873 -#, php-format -msgid "%s reshared this." -msgstr "" - -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:226 msgid "and" msgstr "och" -#: src/Content/Conversation.php:231 +#: src/Content/Conversation.php:229 #, php-format msgid "and %d other people" msgstr "och %d andra" +#: src/Content/Conversation.php:235 +#, php-format +msgid "%2$s likes this." +msgid_plural "%2$s like this." +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Conversation.php:237 +#, php-format +msgid "%2$s doesn't like this." +msgid_plural "%2$s don't like this." +msgstr[0] "" +msgstr[1] "" + #: src/Content/Conversation.php:239 #, php-format -msgid "%2$d people like this" -msgstr "%2$d personer gillar det här" +msgid "%2$s attends." +msgid_plural "%2$s attend." +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:240 +#: src/Content/Conversation.php:241 #, php-format -msgid "%s like this." -msgstr "%s gillar det här." +msgid "%2$s doesn't attend." +msgid_plural "%2$s don't attend." +msgstr[0] "" +msgstr[1] "" #: src/Content/Conversation.php:243 #, php-format -msgid "%2$d people don't like this" -msgstr "%2$d personer ogillar det här" +msgid "%2$s attends maybe." +msgid_plural "%2$s attend maybe." +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:244 +#: src/Content/Conversation.php:245 #, php-format -msgid "%s don't like this." -msgstr "%s ogillar det här." +msgid "%2$s reshared this." +msgid_plural "%2$s reshared this." +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:247 +#: src/Content/Conversation.php:274 #, php-format -msgid "%2$d people attend" -msgstr "%2$d personer deltar" +msgid " likes this" +msgid_plural " like this" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:248 +#: src/Content/Conversation.php:277 #, php-format -msgid "%s attend." -msgstr "%s deltar." +msgid " doesn't like this" +msgid_plural " don't like this" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:251 +#: src/Content/Conversation.php:280 #, php-format -msgid "%2$d people don't attend" -msgstr "%2$d personer deltar inte" +msgid " attends" +msgid_plural " attend" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:252 +#: src/Content/Conversation.php:283 #, php-format -msgid "%s don't attend." -msgstr "%s deltar inte." +msgid " doesn't attend" +msgid_plural " don't attend" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:255 +#: src/Content/Conversation.php:286 #, php-format -msgid "%2$d people attend maybe" -msgstr "%2$dpersoner deltar kanske" +msgid " attends maybe" +msgid_plural " attend maybe" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:256 +#: src/Content/Conversation.php:289 #, php-format -msgid "%s attend maybe." -msgstr "%s deltar kanske." +msgid " reshared this" +msgid_plural " reshared this" +msgstr[0] "" +msgstr[1] "" -#: src/Content/Conversation.php:259 -#, php-format -msgid "%2$d people reshared this" -msgstr "" - -#: src/Content/Conversation.php:307 +#: src/Content/Conversation.php:336 msgid "Visible to everybody" msgstr "Synlig för alla" -#: src/Content/Conversation.php:308 src/Module/Item/Compose.php:171 -#: src/Object/Post.php:1002 +#: src/Content/Conversation.php:337 src/Module/Item/Compose.php:200 +#: src/Object/Post.php:1107 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Vänligen fyll i URL till en bild/video/ljudklipp/hemsida:" -#: src/Content/Conversation.php:309 +#: src/Content/Conversation.php:338 msgid "Tag term:" msgstr "Märkning/tagg:" -#: src/Content/Conversation.php:310 src/Module/Filer/SaveTag.php:72 +#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73 msgid "Save to Folder:" msgstr "Spara till mapp:" -#: src/Content/Conversation.php:311 +#: src/Content/Conversation.php:340 msgid "Where are you right now?" msgstr "Var är du just nu?" -#: src/Content/Conversation.php:312 +#: src/Content/Conversation.php:341 msgid "Delete item(s)?" msgstr "Ta bort?" -#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:143 +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:334 +#: src/Content/Conversation.php:363 msgid "New Post" msgstr "Nytt inlägg" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:366 msgid "Share" msgstr "Publicera" -#: src/Content/Conversation.php:348 src/Module/Item/Compose.php:168 -#: src/Object/Post.php:999 +#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132 +msgid "upload photo" +msgstr "ladda upp bild" + +#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133 +msgid "Attach file" +msgstr "Bifoga fil" + +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134 +msgid "attach file" +msgstr "bifoga fil" + +#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1097 +msgid "Bold" +msgstr "Fet" + +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1098 +msgid "Italic" +msgstr "Kursiv" + +#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1099 +msgid "Underline" +msgstr "Understruken" + +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1101 +msgid "Quote" +msgstr "Citat" + +#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1102 +msgid "Add emojis" +msgstr "" + +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:1100 +msgid "Content Warning" +msgstr "" + +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1103 +msgid "Code" +msgstr "Källkod" + +#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197 +#: src/Object/Post.php:1104 msgid "Image" msgstr "Bild" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:198 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1105 +msgid "Link" +msgstr "Länk" + +#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:199 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1106 +msgid "Link or Media" +msgstr "Länk eller media" + +#: src/Content/Conversation.php:382 msgid "Video" msgstr "Video" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:184 +#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:202 +#: src/Module/Post/Edit.php:141 +msgid "Set your location" +msgstr "Ange plats" + +#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142 +msgid "set location" +msgstr "ange plats" + +#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143 +msgid "Clear browser location" +msgstr "Clear browser location" + +#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144 +msgid "clear location" +msgstr "rensa plats" + +#: src/Content/Conversation.php:388 src/Module/Item/Compose.php:207 +#: src/Module/Post/Edit.php:157 +msgid "Set title" +msgstr "Ange rubrik" + +#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:208 +#: src/Module/Post/Edit.php:159 +msgid "Categories (comma-separated list)" +msgstr "Kategorier (kommaseparerad lista)" + +#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224 msgid "Scheduled at" msgstr "Schemalades vid" -#: src/Content/Conversation.php:657 src/Object/Post.php:244 -msgid "Pinned item" +#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146 +msgid "Permission settings" +msgstr "Åtkomstinställningar" + +#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +msgid "Public post" +msgstr "Offentligt inlägg" + +#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:120 +#: src/Model/Profile.php:467 src/Module/Admin/Logs/View.php:92 +#: src/Module/Post/Edit.php:181 +msgid "Message" +msgstr "Meddelande" + +#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Bläddra" + +#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +msgid "Open Compose page" msgstr "" -#: src/Content/Conversation.php:673 src/Object/Post.php:486 -#: src/Object/Post.php:487 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Visa profilen som tillhör %s @ %s" - -#: src/Content/Conversation.php:686 src/Object/Post.php:474 -msgid "Categories:" -msgstr "Kategorier:" - -#: src/Content/Conversation.php:687 src/Object/Post.php:475 -msgid "Filed under:" -msgstr "Sparad under:" - -#: src/Content/Conversation.php:695 src/Object/Post.php:500 -#, php-format -msgid "%s from %s" -msgstr "%s från %s" - -#: src/Content/Conversation.php:711 -msgid "View in context" -msgstr "Visa i sitt sammanhang" - -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:595 msgid "remove" msgstr "ta bort" -#: src/Content/Conversation.php:780 +#: src/Content/Conversation.php:599 msgid "Delete Selected Items" msgstr "Ta bort valda föremål" -#: src/Content/Conversation.php:845 src/Content/Conversation.php:848 -#: src/Content/Conversation.php:851 src/Content/Conversation.php:854 +#: src/Content/Conversation.php:754 src/Content/Conversation.php:757 +#: src/Content/Conversation.php:760 src/Content/Conversation.php:763 +#: src/Content/Conversation.php:766 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:857 +#: src/Content/Conversation.php:769 #, php-format msgid "You are following %s." msgstr "Du följer %s." -#: src/Content/Conversation.php:860 -msgid "Tagged" -msgstr "Taggad" +#: src/Content/Conversation.php:774 +#, php-format +msgid "You subscribed to %s." +msgstr "" -#: src/Content/Conversation.php:875 +#: src/Content/Conversation.php:776 +msgid "You subscribed to one or more tags in this post." +msgstr "" + +#: src/Content/Conversation.php:796 +#, php-format +msgid "%s reshared this." +msgstr "" + +#: src/Content/Conversation.php:798 msgid "Reshared" msgstr "Delad igen" -#: src/Content/Conversation.php:875 +#: src/Content/Conversation.php:798 #, php-format msgid "Reshared by %s <%s>" msgstr "Delad igen av %s <%s>" -#: src/Content/Conversation.php:878 +#: src/Content/Conversation.php:801 #, php-format msgid "%s is participating in this thread." msgstr "%s deltar i den här tråden." -#: src/Content/Conversation.php:881 -msgid "Stored" -msgstr "Lagrad" +#: src/Content/Conversation.php:804 +msgid "Stored for general reasons" +msgstr "" -#: src/Content/Conversation.php:884 -msgid "Global" -msgstr "Global" +#: src/Content/Conversation.php:807 +msgid "Global post" +msgstr "" -#: src/Content/Conversation.php:887 -msgid "Relayed" -msgstr "Fördröjd" +#: src/Content/Conversation.php:810 +msgid "Sent via an relay server" +msgstr "" -#: src/Content/Conversation.php:887 +#: src/Content/Conversation.php:810 #, php-format -msgid "Relayed by %s <%s>" -msgstr "Fördröjdes av %s <%s>" +msgid "Sent via the relay server %s <%s>" +msgstr "" -#: src/Content/Conversation.php:890 +#: src/Content/Conversation.php:813 msgid "Fetched" msgstr "Hämtad" -#: src/Content/Conversation.php:890 +#: src/Content/Conversation.php:813 #, php-format msgid "Fetched because of %s <%s>" msgstr "Hämtades på grund av %s <%s>" +#: src/Content/Conversation.php:816 +msgid "Stored because of a child post to complete this thread." +msgstr "" + +#: src/Content/Conversation.php:819 +msgid "Local delivery" +msgstr "" + +#: src/Content/Conversation.php:822 +msgid "Stored because of your activity (like, comment, star, ...)" +msgstr "" + +#: src/Content/Conversation.php:825 +msgid "Distributed" +msgstr "" + +#: src/Content/Conversation.php:828 +msgid "Pushed to us" +msgstr "" + +#: src/Content/Conversation.php:1492 src/Object/Post.php:247 +msgid "Pinned item" +msgstr "" + +#: src/Content/Conversation.php:1509 src/Object/Post.php:521 +#: src/Object/Post.php:522 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Visa profilen som tillhör %s @ %s" + +#: src/Content/Conversation.php:1522 src/Object/Post.php:509 +msgid "Categories:" +msgstr "Kategorier:" + +#: src/Content/Conversation.php:1523 src/Object/Post.php:510 +msgid "Filed under:" +msgstr "Sparad under:" + +#: src/Content/Conversation.php:1531 src/Object/Post.php:535 +#, php-format +msgid "%s from %s" +msgstr "%s från %s" + +#: src/Content/Conversation.php:1547 +msgid "View in context" +msgstr "Visa i sitt sammanhang" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "For you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:59 +msgid "Posts from contacts you interact with and who interact with you" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "What's Hot" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:60 +msgid "Posts with a lot of interactions" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:61 +#, php-format +msgid "Posts in %s" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:62 +msgid "Posts from your followers that you don't follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Sharers of sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:63 +msgid "Posts from accounts that are followed by accounts that you follow" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:64 +msgid "Posts with images" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:65 +msgid "Posts with audio" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:66 +msgid "Posts with videos" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Local Community" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:85 +msgid "Posts from local users on this server" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Global Community" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:89 +msgid "Posts from users of the whole federated network" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Latest Activity" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:103 +msgid "Sort by latest activity" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Latest Posts" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:104 +msgid "Sort by post received date" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Latest Creation" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:105 +msgid "Sort by post creation date" +msgstr "" + +#: src/Content/Conversation/Factory/Timeline.php:106 +#: src/Module/Settings/Profile/Index.php:260 +msgid "Personal" +msgstr "Privat" + +#: src/Content/Conversation/Factory/Timeline.php:106 +msgid "Posts that mention or involve you" +msgstr "Inlägg som nämnde eller involverade dig" + +#: src/Content/Conversation/Factory/Timeline.php:107 src/Object/Post.php:380 +msgid "Starred" +msgstr "Stjärnmärkt" + +#: src/Content/Conversation/Factory/Timeline.php:107 +msgid "Favourite Posts" +msgstr "Favoriserade inlägg" + #: src/Content/Feature.php:96 msgid "General Features" msgstr "Generella funktioner" @@ -2189,12 +1660,12 @@ msgid "Post Composition Features" msgstr "" #: src/Content/Feature.php:105 -msgid "Auto-mention Forums" -msgstr "Nämn forumen automatiskt" +msgid "Auto-mention Groups" +msgstr "" #: src/Content/Feature.php:105 msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." +"Add/remove mention when a group page is selected/deselected in ACL window." msgstr "" #: src/Content/Feature.php:106 @@ -2235,11 +1706,11 @@ msgid "Advanced Profile Settings" msgstr "Avancerade profil-inställningar" #: src/Content/Feature.php:119 -msgid "List Forums" -msgstr "Lista forum" +msgid "List Groups" +msgstr "" #: src/Content/Feature.php:119 -msgid "Show visitors public community forums at the Advanced Profile Page" +msgid "Show visitors public groups at the Advanced Profile Page" msgstr "" #: src/Content/Feature.php:120 @@ -2258,351 +1729,433 @@ msgstr "Visa datum för medlemskap" msgid "Display membership date in profile" msgstr "Visa datum för medlemskapet i profilen" -#: src/Content/ForumManager.php:151 src/Content/Nav.php:239 -#: src/Content/Text/HTML.php:903 src/Content/Widget.php:524 -msgid "Forums" -msgstr "Forum" +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "" -#: src/Content/ForumManager.php:153 -msgid "External link to forum" -msgstr "Extern länk till forum" +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "" -#: src/Content/ForumManager.php:156 src/Content/Widget.php:503 +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "" + +#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 +#: src/Model/User.php:1273 +msgid "Groups" +msgstr "" + +#: src/Content/GroupManager.php:154 +msgid "External link to group" +msgstr "" + +#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 msgid "show less" msgstr "visa mindre" -#: src/Content/ForumManager.php:157 src/Content/Widget.php:405 -#: src/Content/Widget.php:504 +#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/Widget.php:513 msgid "show more" msgstr "visa mer" -#: src/Content/Item.php:301 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s puffade %2$s" +#: src/Content/GroupManager.php:160 +msgid "Create new group" +msgstr "" -#: src/Content/Item.php:334 src/Model/Item.php:2726 +#: src/Content/Item.php:331 src/Model/Item.php:3003 msgid "event" msgstr "händelse" -#: src/Content/Item.php:422 view/theme/frio/theme.php:254 +#: src/Content/Item.php:334 src/Content/Item.php:344 +msgid "status" +msgstr "status" + +#: src/Content/Item.php:340 src/Model/Item.php:3005 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "foto" + +#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s taggade %2$ss %3$s med %4$s" + +#: src/Content/Item.php:428 view/theme/frio/theme.php:262 msgid "Follow Thread" msgstr "Följ tråd" -#: src/Content/Item.php:423 src/Model/Contact.php:1108 +#: src/Content/Item.php:429 src/Model/Contact.php:1227 msgid "View Status" msgstr "Visa status" -#: src/Content/Item.php:424 src/Content/Item.php:446 -#: src/Model/Contact.php:1042 src/Model/Contact.php:1100 -#: src/Model/Contact.php:1109 src/Module/Directory.php:158 -#: src/Module/Settings/Profile/Index.php:225 +#: src/Content/Item.php:430 src/Content/Item.php:451 +#: src/Model/Contact.php:1176 src/Model/Contact.php:1219 +#: src/Model/Contact.php:1228 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Visa profil" -#: src/Content/Item.php:425 src/Model/Contact.php:1110 +#: src/Content/Item.php:431 src/Model/Contact.php:1229 msgid "View Photos" msgstr "Visa foton" -#: src/Content/Item.php:426 src/Model/Contact.php:1101 -#: src/Model/Contact.php:1111 +#: src/Content/Item.php:432 src/Model/Contact.php:1220 +#: src/Model/Contact.php:1230 msgid "Network Posts" msgstr "Nätverksinlägg" -#: src/Content/Item.php:427 src/Model/Contact.php:1102 -#: src/Model/Contact.php:1112 +#: src/Content/Item.php:433 src/Model/Contact.php:1221 +#: src/Model/Contact.php:1231 msgid "View Contact" msgstr "Visa kontakt" -#: src/Content/Item.php:428 src/Model/Contact.php:1113 +#: src/Content/Item.php:434 src/Model/Contact.php:1232 msgid "Send PM" msgstr "Skicka privat meddelande" -#: src/Content/Item.php:429 src/Module/Admin/Blocklist/Contact.php:100 -#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 -#: src/Module/Contact.php:398 src/Module/Contact/Profile.php:348 -#: src/Module/Contact/Profile.php:449 +#: src/Content/Item.php:435 src/Module/Contact.php:468 +#: src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 msgid "Block" msgstr "Blockera" -#: src/Content/Item.php:430 src/Module/Contact.php:399 -#: src/Module/Contact/Profile.php:349 src/Module/Contact/Profile.php:457 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 -#: src/Module/Notifications/Notification.php:88 +#: src/Content/Item.php:436 src/Module/Contact.php:469 +#: src/Module/Contact/Profile.php:519 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 msgid "Ignore" msgstr "Ignorera" -#: src/Content/Item.php:434 src/Object/Post.php:455 +#: src/Content/Item.php:437 src/Module/Contact.php:470 +#: src/Module/Contact/Profile.php:527 +msgid "Collapse" +msgstr "" + +#: src/Content/Item.php:438 src/Object/Post.php:288 +#, php-format +msgid "Ignore %s server" +msgstr "" + +#: src/Content/Item.php:442 src/Object/Post.php:490 msgid "Languages" msgstr "Språk" -#: src/Content/Item.php:438 src/Model/Contact.php:1114 -msgid "Poke" -msgstr "Peta" +#: src/Content/Item.php:448 src/Content/Widget.php:80 +#: src/Model/Contact.php:1222 src/Model/Contact.php:1233 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +msgid "Connect/Follow" +msgstr "Gör till kontakt/Följ" -#: src/Content/Nav.php:90 +#: src/Content/Item.php:882 +msgid "Unable to fetch user." +msgstr "" + +#: src/Content/Nav.php:121 msgid "Nothing new here" msgstr "Inget nytt här" -#: src/Content/Nav.php:94 src/Module/Special/HTTPException.php:50 +#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 msgid "Go back" msgstr "Gå tillbaka" -#: src/Content/Nav.php:95 +#: src/Content/Nav.php:126 msgid "Clear notifications" msgstr "Rensa aviseringar" -#: src/Content/Nav.php:96 src/Content/Text/HTML.php:890 -msgid "@name, !forum, #tags, content" -msgstr "@namn, !forum, #taggar, innehåll" +#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867 +msgid "@name, !group, #tags, content" +msgstr "" -#: src/Content/Nav.php:183 src/Module/Security/Login.php:144 +#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 msgid "Logout" msgstr "Logga ut" -#: src/Content/Nav.php:183 +#: src/Content/Nav.php:222 msgid "End this session" msgstr "Avsluta den här sessionen" -#: src/Content/Nav.php:185 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:145 +#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:158 msgid "Login" msgstr "Logga in" -#: src/Content/Nav.php:185 +#: src/Content/Nav.php:224 msgid "Sign in" msgstr "Logga in" -#: src/Content/Nav.php:190 src/Module/BaseProfile.php:56 -#: src/Module/Contact.php:433 src/Module/Contact/Profile.php:380 -#: src/Module/Settings/TwoFactor/Index.php:115 view/theme/frio/theme.php:225 -msgid "Status" -msgstr "Status" +#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:512 +msgid "Conversations" +msgstr "" -#: src/Content/Nav.php:190 src/Content/Nav.php:273 -#: view/theme/frio/theme.php:225 -msgid "Your posts and conversations" -msgstr "Dina inlägg och konversationer" +#: src/Content/Nav.php:229 +msgid "Conversations you started" +msgstr "" -#: src/Content/Nav.php:191 src/Module/BaseProfile.php:48 -#: src/Module/BaseSettings.php:55 src/Module/Contact.php:457 -#: src/Module/Contact/Profile.php:382 src/Module/Profile/Profile.php:241 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:226 +#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:98 src/Module/Contact.php:504 +#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 msgid "Profile" msgstr "Profil" -#: src/Content/Nav.php:191 view/theme/frio/theme.php:226 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 msgid "Your profile page" msgstr "Din profil-sida" -#: src/Content/Nav.php:192 view/theme/frio/theme.php:227 +#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +msgid "Photos" +msgstr "Bilder" + +#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 msgid "Your photos" msgstr "Dina foton" -#: src/Content/Nav.php:193 src/Module/BaseProfile.php:72 -#: src/Module/BaseProfile.php:75 src/Module/Contact.php:449 -#: view/theme/frio/theme.php:228 +#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528 +#: view/theme/frio/theme.php:235 msgid "Media" msgstr "Media" -#: src/Content/Nav.php:193 view/theme/frio/theme.php:228 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 msgid "Your postings with media" msgstr "" -#: src/Content/Nav.php:194 view/theme/frio/theme.php:229 -msgid "Your events" -msgstr "Dina evenemang" +#: src/Content/Nav.php:233 src/Content/Nav.php:293 +#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 +#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236 +#: view/theme/frio/theme.php:240 +msgid "Calendar" +msgstr "" -#: src/Content/Nav.php:195 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +msgid "Your calendar" +msgstr "" + +#: src/Content/Nav.php:234 msgid "Personal notes" msgstr "Personliga anteckningar" -#: src/Content/Nav.php:195 +#: src/Content/Nav.php:234 msgid "Your personal notes" msgstr "Dina personliga anteckningar" -#: src/Content/Nav.php:212 src/Content/Nav.php:273 +#: src/Content/Nav.php:251 src/Content/Nav.php:308 msgid "Home" msgstr "Hem" -#: src/Content/Nav.php:216 src/Module/Register.php:168 -#: src/Module/Security/Login.php:105 +#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +msgid "Home Page" +msgstr "Hemsida" + +#: src/Content/Nav.php:255 src/Module/Register.php:168 +#: src/Module/Security/Login.php:124 msgid "Register" msgstr "Registrera" -#: src/Content/Nav.php:216 +#: src/Content/Nav.php:255 msgid "Create an account" msgstr "Skapa ett konto" -#: src/Content/Nav.php:222 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 -#: src/Module/Settings/TwoFactor/Index.php:114 -#: src/Module/Settings/TwoFactor/Recovery.php:105 -#: src/Module/Settings/TwoFactor/Verify.php:145 view/theme/vier/theme.php:217 +#: src/Content/Nav.php:261 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240 msgid "Help" msgstr "Hjälp" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:261 msgid "Help and documentation" msgstr "Hjälp och dokumentation" -#: src/Content/Nav.php:226 +#: src/Content/Nav.php:265 msgid "Apps" msgstr "Apps" -#: src/Content/Nav.php:226 +#: src/Content/Nav.php:265 msgid "Addon applications, utilities, games" msgstr "" -#: src/Content/Nav.php:230 src/Content/Text/HTML.php:888 -#: src/Module/Admin/Logs/View.php:87 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:269 src/Content/Text/HTML.php:865 +#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 msgid "Search" msgstr "Sök" -#: src/Content/Nav.php:230 +#: src/Content/Nav.php:269 msgid "Search site content" msgstr "Sök innehåll på sidan" -#: src/Content/Nav.php:233 src/Content/Text/HTML.php:897 +#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874 msgid "Full Text" msgstr "Fullständig text" -#: src/Content/Nav.php:234 src/Content/Text/HTML.php:898 +#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875 #: src/Content/Widget/TagCloud.php:68 msgid "Tags" msgstr "Taggar" -#: src/Content/Nav.php:235 src/Content/Nav.php:294 -#: src/Content/Text/HTML.php:899 src/Module/BaseProfile.php:125 -#: src/Module/BaseProfile.php:128 src/Module/Contact.php:370 -#: src/Module/Contact.php:464 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:274 src/Content/Nav.php:329 +#: src/Content/Text/HTML.php:876 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:427 +#: src/Module/Contact.php:536 view/theme/frio/theme.php:243 msgid "Contacts" msgstr "Kontakter" -#: src/Content/Nav.php:254 +#: src/Content/Nav.php:289 msgid "Community" msgstr "Gemenskap" -#: src/Content/Nav.php:254 +#: src/Content/Nav.php:289 msgid "Conversations on this and other servers" msgstr "Konversationer i den här och andra servrar" -#: src/Content/Nav.php:258 src/Module/BaseProfile.php:87 -#: src/Module/BaseProfile.php:98 view/theme/frio/theme.php:233 -msgid "Events and Calendar" -msgstr "Evenemang och Kalender" - -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:296 msgid "Directory" msgstr "Medlemskatalog" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:296 msgid "People directory" msgstr "" -#: src/Content/Nav.php:263 src/Module/BaseAdmin.php:88 +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 msgid "Information" msgstr "Information" -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:298 msgid "Information about this friendica instance" msgstr "Information om den här friendica-instansen" -#: src/Content/Nav.php:266 src/Module/Admin/Tos.php:76 -#: src/Module/BaseAdmin.php:99 src/Module/Register.php:176 -#: src/Module/Tos.php:87 +#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:101 msgid "Terms of Service" msgstr "Villkor för användning" -#: src/Content/Nav.php:266 +#: src/Content/Nav.php:301 msgid "Terms of Service of this Friendica instance" msgstr "Den här Friendica-instansens villkor för användning" -#: src/Content/Nav.php:271 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Network" msgstr "Nätverk" -#: src/Content/Nav.php:271 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 msgid "Conversations from your friends" msgstr "Konversationer från dina vänner" -#: src/Content/Nav.php:277 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +msgid "Your posts and conversations" +msgstr "Dina inlägg och konversationer" + +#: src/Content/Nav.php:312 msgid "Introductions" msgstr "Presentationer" -#: src/Content/Nav.php:277 +#: src/Content/Nav.php:312 msgid "Friend Requests" msgstr "Vänförfrågningar" -#: src/Content/Nav.php:278 src/Module/BaseNotifications.php:148 -#: src/Module/Notifications/Introductions.php:73 +#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 msgid "Notifications" msgstr "Aviseringar" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:314 msgid "See all notifications" msgstr "Se alla aviseringar" -#: src/Content/Nav.php:280 +#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +msgid "Mark as seen" +msgstr "Markera som läst" + +#: src/Content/Nav.php:315 msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:283 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Private mail" msgstr "Privat e-post" -#: src/Content/Nav.php:284 +#: src/Content/Nav.php:319 msgid "Inbox" msgstr "Inkorg" -#: src/Content/Nav.php:285 +#: src/Content/Nav.php:320 msgid "Outbox" msgstr "Utkorg" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:324 msgid "Accounts" msgstr "Konton" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:324 msgid "Manage other pages" msgstr "Hantera andra sidor" -#: src/Content/Nav.php:292 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:122 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:175 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 msgid "Settings" msgstr "Inställningar" -#: src/Content/Nav.php:292 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 msgid "Account settings" msgstr "Kontoinställningar" -#: src/Content/Nav.php:294 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 msgid "Manage/edit friends and contacts" msgstr "Hantera/redigera vänner och kontakter" -#: src/Content/Nav.php:299 src/Module/BaseAdmin.php:129 +#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 msgid "Admin" msgstr "Administratör" -#: src/Content/Nav.php:299 +#: src/Content/Nav.php:334 msgid "Site setup and configuration" msgstr "" -#: src/Content/Nav.php:302 +#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:76 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Deleted.php:80 +#: src/Module/Moderation/Users/Index.php:147 +msgid "Moderation" +msgstr "" + +#: src/Content/Nav.php:335 +msgid "Content and user moderation" +msgstr "" + +#: src/Content/Nav.php:338 msgid "Navigation" msgstr "Navigering" -#: src/Content/Nav.php:302 +#: src/Content/Nav.php:338 msgid "Site map" msgstr "Karta över webbplatsen" -#: src/Content/OEmbed.php:299 +#: src/Content/OEmbed.php:316 msgid "Embedding disabled" msgstr "Funktionen bädda in är avstängd" -#: src/Content/OEmbed.php:417 +#: src/Content/OEmbed.php:440 msgid "Embedded content" msgstr "Inbäddat innehåll" @@ -2622,51 +2175,51 @@ msgstr "nästa" msgid "last" msgstr "sista" -#: src/Content/Text/BBCode.php:990 src/Content/Text/BBCode.php:1808 -#: src/Content/Text/BBCode.php:1809 +#: src/Content/Text/BBCode.php:696 src/Content/Text/BBCode.php:1636 +#: src/Content/Text/BBCode.php:1637 msgid "Image/photo" msgstr "Bild/foto" -#: src/Content/Text/BBCode.php:1163 +#: src/Content/Text/BBCode.php:914 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1188 src/Model/Item.php:3301 -#: src/Model/Item.php:3307 src/Model/Item.php:3308 +#: src/Content/Text/BBCode.php:939 src/Model/Item.php:3745 +#: src/Model/Item.php:3751 src/Model/Item.php:3752 msgid "Link to source" msgstr "Länk till källa" -#: src/Content/Text/BBCode.php:1726 src/Content/Text/HTML.php:940 +#: src/Content/Text/BBCode.php:1543 src/Content/Text/HTML.php:904 msgid "Click to open/close" msgstr "Klicka för att öppna/stänga" -#: src/Content/Text/BBCode.php:1757 +#: src/Content/Text/BBCode.php:1576 msgid "$1 wrote:" msgstr "$1 skrev:" -#: src/Content/Text/BBCode.php:1813 src/Content/Text/BBCode.php:1814 +#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642 msgid "Encrypted content" msgstr "Krypterat innehåll" -#: src/Content/Text/BBCode.php:2032 +#: src/Content/Text/BBCode.php:1901 msgid "Invalid source protocol" msgstr "Ogiltigt källprotokoll" -#: src/Content/Text/BBCode.php:2047 +#: src/Content/Text/BBCode.php:1920 msgid "Invalid link protocol" msgstr "Ogiltigt länkprotokoll" -#: src/Content/Text/HTML.php:805 +#: src/Content/Text/HTML.php:782 msgid "Loading more entries..." msgstr "Laddar fler poster..." -#: src/Content/Text/HTML.php:806 +#: src/Content/Text/HTML.php:783 msgid "The end" msgstr "Slut" -#: src/Content/Text/HTML.php:882 src/Content/Widget/VCard.php:109 -#: src/Model/Profile.php:457 +#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:116 +#: src/Model/Profile.php:461 src/Module/Contact/Profile.php:471 msgid "Follow" msgstr "Följ" @@ -2693,122 +2246,139 @@ msgid_plural "%d invitations available" msgstr[0] "%d inbjudning tillgänglig" msgstr[1] "%d inbjudningar tillgängliga" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:170 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 msgid "Find People" msgstr "Hitta personer" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:171 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 msgid "Enter name or interest" msgstr "Ange namn eller intresse" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:173 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Exempel: Robert Morgenstein, Fiskning" -#: src/Content/Widget.php:82 src/Module/Contact.php:391 -#: src/Module/Directory.php:97 view/theme/vier/theme.php:174 +#: src/Content/Widget.php:82 src/Module/Contact.php:461 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 msgid "Find" msgstr "Sök" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:176 +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:198 +msgid "Friend Suggestions" +msgstr "Vän-förslag" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 msgid "Similar Interests" msgstr "Liknande intressen" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:177 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 msgid "Random Profile" msgstr "Slumpmässig profil" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:178 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 msgid "Invite Friends" msgstr "Bjud in folk du känner" -#: src/Content/Widget.php:87 src/Module/Directory.php:89 -#: view/theme/vier/theme.php:179 +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:202 msgid "Global Directory" msgstr "Medlemskatalog för flera sajter (global)" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:181 +#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 msgid "Local Directory" msgstr "Lokal-mapp" -#: src/Content/Widget.php:211 src/Model/Group.php:583 -#: src/Module/Contact.php:354 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "Grupper" +#: src/Content/Widget.php:215 src/Model/Circle.php:600 +#: src/Module/Contact.php:401 src/Module/Welcome.php:76 +msgid "Circles" +msgstr "" -#: src/Content/Widget.php:213 +#: src/Content/Widget.php:217 msgid "Everyone" msgstr "Alla" -#: src/Content/Widget.php:242 +#: src/Content/Widget.php:242 src/Module/Contact.php:424 +msgid "No relationship" +msgstr "" + +#: src/Content/Widget.php:247 msgid "Relationships" msgstr "Relationer" -#: src/Content/Widget.php:244 src/Module/Contact.php:306 -#: src/Module/Group.php:293 +#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Module/Contact.php:345 msgid "All Contacts" msgstr "Alla kontakter" -#: src/Content/Widget.php:283 +#: src/Content/Widget.php:288 msgid "Protocols" msgstr "Protokoll" -#: src/Content/Widget.php:285 +#: src/Content/Widget.php:290 msgid "All Protocols" msgstr "Alla protokoll" -#: src/Content/Widget.php:313 +#: src/Content/Widget.php:318 msgid "Saved Folders" msgstr "Sparade mappar" -#: src/Content/Widget.php:315 src/Content/Widget.php:346 +#: src/Content/Widget.php:320 src/Content/Widget.php:351 msgid "Everything" msgstr "Allting" -#: src/Content/Widget.php:344 +#: src/Content/Widget.php:349 msgid "Categories" msgstr "Kategorier" -#: src/Content/Widget.php:401 +#: src/Content/Widget.php:406 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d gemensam kontakt" msgstr[1] "%d gemensamma kontakter" -#: src/Content/Widget.php:497 +#: src/Content/Widget.php:506 msgid "Archives" msgstr "Arkiv" -#: src/Content/Widget.php:521 +#: src/Content/Widget.php:514 +msgid "On this date" +msgstr "" + +#: src/Content/Widget.php:534 msgid "Persons" msgstr "Personer" -#: src/Content/Widget.php:522 +#: src/Content/Widget.php:535 msgid "Organisations" msgstr "Organisationer" -#: src/Content/Widget.php:523 src/Model/Contact.php:1538 +#: src/Content/Widget.php:536 src/Model/Contact.php:1698 msgid "News" msgstr "Nyheter" -#: src/Content/Widget.php:527 src/Module/Settings/Account.php:455 +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454 msgid "Account Types" msgstr "Typer av konton" -#: src/Content/Widget.php:528 src/Module/Admin/BaseUsers.php:51 +#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "Alla" -#: src/Content/Widget/CalendarExport.php:54 +#: src/Content/Widget.php:573 src/Module/Settings/Display.php:266 +msgid "Channels" +msgstr "" + +#: src/Content/Widget/CalendarExport.php:56 msgid "Export" msgstr "Exportera" -#: src/Content/Widget/CalendarExport.php:55 +#: src/Content/Widget/CalendarExport.php:57 msgid "Export calendar as ical" msgstr "Exportera kalender som ical" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:58 msgid "Export calendar as csv" msgstr "Exportera kalender som csv" @@ -2816,14 +2386,14 @@ msgstr "Exportera kalender som csv" msgid "No contacts" msgstr "Inga kontakter" -#: src/Content/Widget/ContactBlock.php:108 +#: src/Content/Widget/ContactBlock.php:110 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d kontakt" msgstr[1] "%d kontakter" -#: src/Content/Widget/ContactBlock.php:125 +#: src/Content/Widget/ContactBlock.php:127 msgid "View Contacts" msgstr "Visa kontakter" @@ -2835,65 +2405,75 @@ msgstr "Ta bort villkor" msgid "Saved Searches" msgstr "Sparade sökningar" -#: src/Content/Widget/TrendingTags.php:51 +#: src/Content/Widget/TrendingTags.php:52 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" msgstr[0] "Trendande taggar (senaste %d timmen)" msgstr[1] "Trendande taggar (de senaste %d timmarna)" -#: src/Content/Widget/TrendingTags.php:52 +#: src/Content/Widget/TrendingTags.php:53 msgid "More Trending Tags" msgstr "Fler trendande taggar" -#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:376 -#: src/Module/Contact/Profile.php:371 src/Module/Profile/Profile.php:176 +#: src/Content/Widget/VCard.php:109 src/Model/Profile.php:376 +#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:103 src/Model/Profile.php:377 -#: src/Module/Contact/Profile.php:373 src/Module/Profile/Profile.php:180 +#: src/Content/Widget/VCard.php:110 src/Model/Profile.php:377 +#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:469 -#: src/Module/Notifications/Introductions.php:199 +#: src/Content/Widget/VCard.php:111 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:221 +msgid "Location:" +msgstr "Plats:" + +#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:474 +#: src/Module/Notifications/Introductions.php:201 msgid "Network:" msgstr "Nätverk:" -#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:459 +#: src/Content/Widget/VCard.php:118 src/Model/Contact.php:1223 +#: src/Model/Contact.php:1234 src/Model/Profile.php:463 +#: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Avfölj" -#: src/Core/ACL.php:165 src/Module/Profile/Profile.php:242 +#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 msgid "Yourself" msgstr "Du själv" -#: src/Core/ACL.php:201 src/Module/PermissionTooltip.php:128 -#: src/Module/PermissionTooltip.php:150 +#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:133 +#: src/Module/PermissionTooltip.php:155 msgid "Mutuals" msgstr "Ömsesidiga" -#: src/Core/ACL.php:293 +#: src/Core/ACL.php:294 msgid "Post to Email" msgstr "" -#: src/Core/ACL.php:320 src/Module/PermissionTooltip.php:85 -#: src/Module/PermissionTooltip.php:197 +#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 +#: src/Module/PermissionTooltip.php:201 msgid "Public" msgstr "Publik" -#: src/Core/ACL.php:321 +#: src/Core/ACL.php:322 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "" -#: src/Core/ACL.php:322 src/Module/PermissionTooltip.php:93 +#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 msgid "Limited/Private" msgstr "Begränsad/Privat" -#: src/Core/ACL.php:323 +#: src/Core/ACL.php:324 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 " @@ -2901,40 +2481,54 @@ msgid "" msgstr "" #: src/Core/ACL.php:324 +msgid "" +"Start typing the name of a contact or a circle to show a filtered list. You " +"can also mention the special circles \"Followers\" and \"Mutuals\"." +msgstr "" + +#: src/Core/ACL.php:325 msgid "Show to:" msgstr "Visa till:" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:326 msgid "Except to:" msgstr "Förutom till:" -#: src/Core/ACL.php:328 +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +msgid "CC: email addresses" +msgstr "Kopia: e-postadresser" + +#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Exempel: adam@exempel.com, bertil@exempel.com" + +#: src/Core/ACL.php:329 msgid "Connectors" msgstr "" -#: src/Core/Installer.php:183 +#: src/Core/Installer.php:180 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 "" -#: src/Core/Installer.php:202 +#: src/Core/Installer.php:197 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Du kanske måste importera filen \"database.sql\" manuellt med phpmyadmin eller mysql." -#: src/Core/Installer.php:203 src/Module/Install.php:213 -#: src/Module/Install.php:372 +#: src/Core/Installer.php:198 src/Module/Install.php:207 +#: src/Module/Install.php:350 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "Vänligen se filen \"doc/INSTALL.md\"." -#: src/Core/Installer.php:264 +#: src/Core/Installer.php:259 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Could not find a command line version of PHP in the web server PATH." -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:260 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 "Om du inte har en kommandoradsversion av PHP installerad på din server kommer du inte att kunna köra bakgrundsbearbetningen." -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:265 msgid "PHP executable path" msgstr "" -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:265 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "" -#: src/Core/Installer.php:275 +#: src/Core/Installer.php:270 msgid "Command line PHP" msgstr "Kommandorad för PHP" -#: src/Core/Installer.php:284 +#: src/Core/Installer.php:279 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "" -#: src/Core/Installer.php:285 +#: src/Core/Installer.php:280 msgid "Found PHP version: " msgstr "Hittade PHP-version:" -#: src/Core/Installer.php:287 +#: src/Core/Installer.php:282 msgid "PHP cli binary" msgstr "" -#: src/Core/Installer.php:300 +#: src/Core/Installer.php:295 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:296 msgid "This is required for message delivery to work." msgstr "Det krävs för att meddelanden ska kunna levereras." -#: src/Core/Installer.php:306 +#: src/Core/Installer.php:301 msgid "PHP register_argc_argv" msgstr "" -#: src/Core/Installer.php:338 +#: src/Core/Installer.php:333 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Fel: funktionen \"openssl_pkey_new\" kan inte skapa krypteringsnycklar" -#: src/Core/Installer.php:339 +#: src/Core/Installer.php:334 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Läs mer på \"http://www.php.net/manual/en/openssl.installation.php\" om du kör Windows." -#: src/Core/Installer.php:342 +#: src/Core/Installer.php:337 msgid "Generate encryption keys" msgstr "Generera krypteringsnycklar" -#: src/Core/Installer.php:394 +#: src/Core/Installer.php:389 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Error: Apache webserver mod-rewrite module is required but not installed." -#: src/Core/Installer.php:399 +#: src/Core/Installer.php:394 msgid "Apache mod_rewrite module" msgstr "" -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:400 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:410 +#: src/Core/Installer.php:405 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Fel: MySQL-drivrutinen för PDO är inte installerad." -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:409 msgid "PDO or MySQLi PHP module" msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:417 msgid "Error, XML PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:421 msgid "XML PHP module" msgstr "" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:424 msgid "libCurl PHP module" msgstr "PHP-modul för libCurl" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:425 msgid "Error: libCURL PHP module required but not installed." msgstr "Error: libCURL PHP module required but not installed." -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:431 msgid "GD graphics PHP module" msgstr "" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:432 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Error: GD graphics PHP module with JPEG support required but not installed." -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:438 msgid "OpenSSL PHP module" msgstr "PHP-modul för OpenSSL" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:439 msgid "Error: openssl PHP module required but not installed." msgstr "Error: openssl PHP module required but not installed." -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:445 msgid "mb_string PHP module" msgstr "" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:446 msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:452 msgid "iconv PHP module" msgstr "" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:453 msgid "Error: iconv PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:459 msgid "POSIX PHP module" msgstr "" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:460 msgid "Error: POSIX PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:466 msgid "Program execution functions" msgstr "" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:467 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:473 msgid "JSON PHP module" msgstr "" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:474 msgid "Error: JSON PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:480 msgid "File Information PHP module" msgstr "" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:481 msgid "Error: File Information PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:509 +#: src/Core/Installer.php:487 +msgid "GNU Multiple Precision PHP module" +msgstr "" + +#: src/Core/Installer.php:488 +msgid "Error: GNU Multiple Precision PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:511 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 "" -#: src/Core/Installer.php:510 +#: src/Core/Installer.php:512 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 "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." -#: src/Core/Installer.php:511 +#: src/Core/Installer.php:513 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 "" -#: src/Core/Installer.php:512 +#: src/Core/Installer.php:514 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "" -#: src/Core/Installer.php:515 +#: src/Core/Installer.php:517 msgid "config/local.config.php is writable" msgstr "config/local.config.php är skrivbar" -#: src/Core/Installer.php:535 +#: src/Core/Installer.php:537 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "" -#: src/Core/Installer.php:536 +#: src/Core/Installer.php:538 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 "" -#: src/Core/Installer.php:537 +#: src/Core/Installer.php:539 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "" -#: src/Core/Installer.php:538 +#: src/Core/Installer.php:540 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 "" -#: src/Core/Installer.php:541 +#: src/Core/Installer.php:543 msgid "view/smarty3 is writable" msgstr "view/smarty3 är skrivbar" -#: src/Core/Installer.php:569 +#: src/Core/Installer.php:571 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "" -#: src/Core/Installer.php:570 +#: src/Core/Installer.php:572 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "" -#: src/Core/Installer.php:572 +#: src/Core/Installer.php:574 msgid "Error message from Curl when fetching" msgstr "" -#: src/Core/Installer.php:578 +#: src/Core/Installer.php:580 msgid "Url rewrite is working" msgstr "" -#: src/Core/Installer.php:607 +#: src/Core/Installer.php:609 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "" -#: src/Core/Installer.php:608 +#: src/Core/Installer.php:610 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "" -#: src/Core/Installer.php:609 +#: src/Core/Installer.php:611 msgid "Please ensure that the connection to the server is secure." msgstr "" -#: src/Core/Installer.php:610 +#: src/Core/Installer.php:612 msgid "No TLS detected" msgstr "Ingen TLS upptäcktes" -#: src/Core/Installer.php:612 +#: src/Core/Installer.php:614 msgid "TLS detected" msgstr "TLS upptäcktes" -#: src/Core/Installer.php:639 +#: src/Core/Installer.php:641 msgid "ImageMagick PHP extension is not installed" msgstr "" -#: src/Core/Installer.php:641 +#: src/Core/Installer.php:643 msgid "ImageMagick PHP extension is installed" msgstr "" -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:645 msgid "ImageMagick supports GIF" msgstr "ImageMagick har stöd för GIF" -#: src/Core/Installer.php:665 +#: src/Core/Installer.php:667 msgid "Database already in use." msgstr "Databas används redan." -#: src/Core/Installer.php:670 +#: src/Core/Installer.php:672 msgid "Could not connect to database." msgstr "Kunde inte ansluta till databasen." -#: src/Core/L10n.php:399 src/Model/Event.php:424 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:476 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:235 msgid "Monday" msgstr "måndag" -#: src/Core/L10n.php:399 src/Model/Event.php:425 +#: src/Core/L10n.php:476 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:236 msgid "Tuesday" msgstr "tisdag" -#: src/Core/L10n.php:399 src/Model/Event.php:426 +#: src/Core/L10n.php:476 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:237 msgid "Wednesday" msgstr "onsdag" -#: src/Core/L10n.php:399 src/Model/Event.php:427 +#: src/Core/L10n.php:476 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:238 msgid "Thursday" msgstr "torsdag" -#: src/Core/L10n.php:399 src/Model/Event.php:428 +#: src/Core/L10n.php:476 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:239 msgid "Friday" msgstr "fredag" -#: src/Core/L10n.php:399 src/Model/Event.php:429 +#: src/Core/L10n.php:476 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:240 msgid "Saturday" msgstr "lördag" -#: src/Core/L10n.php:399 src/Model/Event.php:423 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:476 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:234 msgid "Sunday" msgstr "söndag" -#: src/Core/L10n.php:403 src/Model/Event.php:444 +#: src/Core/L10n.php:480 src/Model/Event.php:450 msgid "January" msgstr "januari" -#: src/Core/L10n.php:403 src/Model/Event.php:445 +#: src/Core/L10n.php:480 src/Model/Event.php:451 msgid "February" msgstr "februari" -#: src/Core/L10n.php:403 src/Model/Event.php:446 +#: src/Core/L10n.php:480 src/Model/Event.php:452 msgid "March" msgstr "mars" -#: src/Core/L10n.php:403 src/Model/Event.php:447 +#: src/Core/L10n.php:480 src/Model/Event.php:453 msgid "April" msgstr "april" -#: src/Core/L10n.php:403 src/Core/L10n.php:422 src/Model/Event.php:435 +#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441 msgid "May" msgstr "maj" -#: src/Core/L10n.php:403 src/Model/Event.php:448 +#: src/Core/L10n.php:480 src/Model/Event.php:454 msgid "June" msgstr "juni" -#: src/Core/L10n.php:403 src/Model/Event.php:449 +#: src/Core/L10n.php:480 src/Model/Event.php:455 msgid "July" msgstr "juli" -#: src/Core/L10n.php:403 src/Model/Event.php:450 +#: src/Core/L10n.php:480 src/Model/Event.php:456 msgid "August" msgstr "augusti" -#: src/Core/L10n.php:403 src/Model/Event.php:451 +#: src/Core/L10n.php:480 src/Model/Event.php:457 msgid "September" msgstr "september" -#: src/Core/L10n.php:403 src/Model/Event.php:452 +#: src/Core/L10n.php:480 src/Model/Event.php:458 msgid "October" msgstr "oktober" -#: src/Core/L10n.php:403 src/Model/Event.php:453 +#: src/Core/L10n.php:480 src/Model/Event.php:459 msgid "November" msgstr "november" -#: src/Core/L10n.php:403 src/Model/Event.php:454 +#: src/Core/L10n.php:480 src/Model/Event.php:460 msgid "December" msgstr "december" -#: src/Core/L10n.php:418 src/Model/Event.php:416 +#: src/Core/L10n.php:495 src/Model/Event.php:422 msgid "Mon" msgstr "Mån" -#: src/Core/L10n.php:418 src/Model/Event.php:417 +#: src/Core/L10n.php:495 src/Model/Event.php:423 msgid "Tue" msgstr "Tis" -#: src/Core/L10n.php:418 src/Model/Event.php:418 +#: src/Core/L10n.php:495 src/Model/Event.php:424 msgid "Wed" msgstr "Ons" -#: src/Core/L10n.php:418 src/Model/Event.php:419 +#: src/Core/L10n.php:495 src/Model/Event.php:425 msgid "Thu" msgstr "Tor" -#: src/Core/L10n.php:418 src/Model/Event.php:420 +#: src/Core/L10n.php:495 src/Model/Event.php:426 msgid "Fri" msgstr "Fre" -#: src/Core/L10n.php:418 src/Model/Event.php:421 +#: src/Core/L10n.php:495 src/Model/Event.php:427 msgid "Sat" msgstr "Lör" -#: src/Core/L10n.php:418 src/Model/Event.php:415 +#: src/Core/L10n.php:495 src/Model/Event.php:421 msgid "Sun" msgstr "Sön" -#: src/Core/L10n.php:422 src/Model/Event.php:431 +#: src/Core/L10n.php:499 src/Model/Event.php:437 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:422 src/Model/Event.php:432 +#: src/Core/L10n.php:499 src/Model/Event.php:438 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:422 src/Model/Event.php:433 +#: src/Core/L10n.php:499 src/Model/Event.php:439 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:422 src/Model/Event.php:434 +#: src/Core/L10n.php:499 src/Model/Event.php:440 msgid "Apr" msgstr "Apr" -#: src/Core/L10n.php:422 src/Model/Event.php:436 +#: src/Core/L10n.php:499 src/Model/Event.php:442 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:422 src/Model/Event.php:437 +#: src/Core/L10n.php:499 src/Model/Event.php:443 msgid "Jul" msgstr "Jul" -#: src/Core/L10n.php:422 src/Model/Event.php:438 +#: src/Core/L10n.php:499 src/Model/Event.php:444 msgid "Aug" msgstr "Aug" -#: src/Core/L10n.php:422 +#: src/Core/L10n.php:499 msgid "Sep" msgstr "Sep" -#: src/Core/L10n.php:422 src/Model/Event.php:440 +#: src/Core/L10n.php:499 src/Model/Event.php:446 msgid "Oct" msgstr "Okt" -#: src/Core/L10n.php:422 src/Model/Event.php:441 +#: src/Core/L10n.php:499 src/Model/Event.php:447 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:422 src/Model/Event.php:442 +#: src/Core/L10n.php:499 src/Model/Event.php:448 msgid "Dec" msgstr "Dec" -#: src/Core/L10n.php:441 -msgid "poke" -msgstr "peta" - -#: src/Core/L10n.php:441 -msgid "poked" -msgstr "petad" - -#: src/Core/L10n.php:442 -msgid "ping" -msgstr "ping" - -#: src/Core/L10n.php:442 -msgid "pinged" -msgstr "pingad" - -#: src/Core/L10n.php:443 -msgid "prod" -msgstr "prod" - -#: src/Core/L10n.php:443 -msgid "prodded" -msgstr "proddad" - -#: src/Core/L10n.php:444 -msgid "slap" -msgstr "smiska" - -#: src/Core/L10n.php:444 -msgid "slapped" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/L10n.php:445 -msgid "finger" -msgstr "finger" - -#: src/Core/L10n.php:445 -msgid "fingered" -msgstr "fingrad" - -#: src/Core/L10n.php:446 -msgid "rebuff" -msgstr "" - -#: src/Core/L10n.php:446 -msgid "rebuffed" +#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" #: src/Core/Renderer.php:89 src/Core/Renderer.php:118 -#: src/Core/Renderer.php:145 src/Core/Renderer.php:179 -#: src/Render/FriendicaSmartyEngine.php:69 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "" -#: src/Core/Renderer.php:141 +#: src/Core/Renderer.php:143 msgid "template engine cannot be registered without a name." msgstr "" -#: src/Core/Renderer.php:175 +#: src/Core/Renderer.php:177 msgid "template engine is not registered!" msgstr "" @@ -3451,36 +3021,36 @@ msgstr "" msgid "Enter a valid existing folder" msgstr "Ange en giltig befintlig mapp" -#: src/Core/Update.php:67 +#: src/Core/Update.php:80 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:78 +#: src/Core/Update.php:91 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:152 +#: src/Core/Update.php:183 #, php-format msgid "%s: executing pre update %d" msgstr "" -#: src/Core/Update.php:190 +#: src/Core/Update.php:225 #, php-format msgid "%s: executing post update %d" msgstr "" -#: src/Core/Update.php:261 +#: src/Core/Update.php:299 #, php-format msgid "Update %s failed. See error logs." msgstr "Uppdateringen %s misslyckades. Se fler loggar." -#: src/Core/Update.php:314 +#: src/Core/Update.php:339 #, php-format msgid "" "\n" @@ -3490,81 +3060,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "" -#: src/Core/Update.php:320 +#: src/Core/Update.php:345 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "Felmeddelandet är \\n[pre]%s[/pre]" -#: src/Core/Update.php:324 src/Core/Update.php:366 +#: src/Core/Update.php:349 src/Core/Update.php:377 msgid "[Friendica Notify] Database update" msgstr "[Friendica-avisering] Uppdatering av databas" -#: src/Core/Update.php:360 +#: src/Core/Update.php:371 #, php-format msgid "" "\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." +"\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" -#: src/Core/UserImport.php:126 -msgid "Error decoding account file" -msgstr "" - -#: src/Core/UserImport.php:132 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: src/Core/UserImport.php:140 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "Användaren '%s' existerar redan i den här servern!" - -#: src/Core/UserImport.php:176 -msgid "User creation error" -msgstr "Fel uppstod när användaren skulle skapas" - -#: src/Core/UserImport.php:221 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d kontakt importerades inte" -msgstr[1] "%d kontakterna importerades inte" - -#: src/Core/UserImport.php:274 -msgid "User profile creation error" -msgstr "" - -#: src/Core/UserImport.php:327 -msgid "Done. You can now login with your username and password" -msgstr "Färdig. Du kan nu logga in med ditt användarnamn och lösenord" - -#: src/Database/DBStructure.php:65 +#: src/Database/DBStructure.php:57 #, php-format msgid "The database version had been set to %s." msgstr "Databas-versionen har ställts in till %s." -#: src/Database/DBStructure.php:78 +#: src/Database/DBStructure.php:82 #, 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:91 +#: src/Database/DBStructure.php:95 msgid "No unused tables found." msgstr "" -#: src/Database/DBStructure.php:96 +#: src/Database/DBStructure.php:100 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "" -#: src/Database/DBStructure.php:134 +#: src/Database/DBStructure.php:137 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Database/DBStructure.php:157 +#: src/Database/DBStructure.php:161 #, php-format msgid "" "\n" @@ -3572,20 +3110,20 @@ msgid "" "%s\n" msgstr "" -#: src/Database/DBStructure.php:160 +#: src/Database/DBStructure.php:164 msgid "Errors encountered performing database changes: " msgstr "" -#: src/Database/DBStructure.php:563 +#: src/Database/DBStructure.php:232 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:567 +#: src/Database/DBStructure.php:236 #, php-format msgid "%s: Database update" msgstr "%s: Uppdatering av databas" -#: src/Database/DBStructure.php:817 +#: src/Database/DBStructure.php:493 #, php-format msgid "%s: updating %s table." msgstr "" @@ -3602,12 +3140,12 @@ msgstr "" msgid "Unauthorized" msgstr "Ej autentiserad" -#: src/Factory/Api/Mastodon/Error.php:85 +#: src/Factory/Api/Mastodon/Error.php:84 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:95 +#: src/Factory/Api/Mastodon/Error.php:94 msgid "Internal Server Error" msgstr "Internt server-fel" @@ -3616,261 +3154,314 @@ msgstr "Internt server-fel" msgid "Legacy module file not found: %s" msgstr "" -#: src/Model/Contact.php:1104 src/Model/Contact.php:1116 -msgid "UnFollow" -msgstr "Avfölj" +#: src/Model/Circle.php:106 +msgid "" +"A deleted circle with this name was revived. Existing item permissions " +"may apply to this circle and any future members. If this is" +" not what you intended, please create another circle with a different name." +msgstr "" -#: src/Model/Contact.php:1122 src/Module/Admin/Users/Pending.php:107 -#: src/Module/Notifications/Introductions.php:130 -#: src/Module/Notifications/Introductions.php:202 +#: src/Model/Circle.php:543 +msgid "Everybody" +msgstr "Alla" + +#: src/Model/Circle.php:562 +msgid "edit" +msgstr "redigera" + +#: src/Model/Circle.php:599 +msgid "add" +msgstr "lägg till" + +#: src/Model/Circle.php:604 +msgid "Edit circle" +msgstr "" + +#: src/Model/Circle.php:605 src/Module/Circle.php:193 +msgid "Contacts not in any circle" +msgstr "" + +#: src/Model/Circle.php:607 +msgid "Create a new circle" +msgstr "" + +#: src/Model/Circle.php:608 src/Module/Circle.php:178 +#: src/Module/Circle.php:201 src/Module/Circle.php:276 +msgid "Circle Name: " +msgstr "" + +#: src/Model/Circle.php:609 +msgid "Edit circles" +msgstr "" + +#: src/Model/Contact.php:1240 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Godkänn" -#: src/Model/Contact.php:1534 +#: src/Model/Contact.php:1694 msgid "Organisation" msgstr "Organisation" -#: src/Model/Contact.php:1542 -msgid "Forum" -msgstr "Forum" +#: src/Model/Contact.php:1702 +msgid "Group" +msgstr "" -#: src/Model/Contact.php:2625 +#: src/Model/Contact.php:3005 msgid "Disallowed profile URL." msgstr "Otillåten profil-URL." -#: src/Model/Contact.php:2630 src/Module/Friendica.php:81 +#: src/Model/Contact.php:3010 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Blockerad domän" -#: src/Model/Contact.php:2635 +#: src/Model/Contact.php:3015 msgid "Connect URL missing." msgstr "" -#: src/Model/Contact.php:2644 +#: src/Model/Contact.php:3024 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:2686 +#: src/Model/Contact.php:3042 +#, php-format +msgid "Expected network %s does not match actual network %s" +msgstr "" + +#: src/Model/Contact.php:3059 msgid "The profile address specified does not provide adequate information." msgstr "Angiven profiladress ger inte tillräcklig information." -#: src/Model/Contact.php:2688 +#: src/Model/Contact.php:3061 msgid "No compatible communication protocols or feeds were discovered." msgstr "Inga kompatibla kommunikationsprotokoll eller flöden hittades." -#: src/Model/Contact.php:2691 +#: src/Model/Contact.php:3064 msgid "An author or name was not found." msgstr "En författare eller namnet hittades inte." -#: src/Model/Contact.php:2694 +#: src/Model/Contact.php:3067 msgid "No browser URL could be matched to this address." msgstr "" -#: src/Model/Contact.php:2697 +#: src/Model/Contact.php:3070 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "" -#: src/Model/Contact.php:2698 +#: src/Model/Contact.php:3071 msgid "Use mailto: in front of address to force email check." msgstr "" -#: src/Model/Contact.php:2704 +#: src/Model/Contact.php:3077 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "" -#: src/Model/Contact.php:2709 +#: src/Model/Contact.php:3082 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Begränsad profil. Den här personen kommer inte att kunna ta emot personliga meddelanden från dig." -#: src/Model/Contact.php:2768 +#: src/Model/Contact.php:3148 msgid "Unable to retrieve contact information." msgstr "Det gick inte att komma åt kontaktinformationen." -#: src/Model/Event.php:52 +#: src/Model/Event.php:54 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:73 src/Model/Event.php:90 src/Model/Event.php:463 -#: src/Model/Event.php:897 +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:945 msgid "Starts:" msgstr "Börjar:" -#: src/Model/Event.php:76 src/Model/Event.php:96 src/Model/Event.php:464 -#: src/Model/Event.php:901 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:949 msgid "Finishes:" msgstr "Slutar:" -#: src/Model/Event.php:413 +#: src/Model/Event.php:419 msgid "all-day" msgstr "hela dagen" -#: src/Model/Event.php:439 +#: src/Model/Event.php:445 msgid "Sept" msgstr "Sept" -#: src/Model/Event.php:461 +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:343 +msgid "today" +msgstr "idag" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 +#: src/Module/Settings/Display.php:245 src/Util/Temporal.php:353 +msgid "month" +msgstr "månad" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 +#: src/Module/Settings/Display.php:246 src/Util/Temporal.php:354 +msgid "week" +msgstr "vecka" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 +#: src/Module/Settings/Display.php:247 src/Util/Temporal.php:355 +msgid "day" +msgstr "dag" + +#: src/Model/Event.php:467 msgid "No events to display" msgstr "Inga evenemang att visa" -#: src/Model/Event.php:577 +#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:56 +msgid "Access to this profile has been restricted." +msgstr "Åtkomst till den här profilen har begränsats." + +#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "" + +#: src/Model/Event.php:637 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:608 +#: src/Model/Event.php:664 msgid "Edit event" msgstr "Redigera evenemang" -#: src/Model/Event.php:609 +#: src/Model/Event.php:665 msgid "Duplicate event" msgstr "Fördubbla evenemanget" -#: src/Model/Event.php:610 +#: src/Model/Event.php:666 msgid "Delete event" msgstr "Ta bort evenemanget" -#: src/Model/Event.php:853 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 msgid "l F d, Y \\@ g:i A" msgstr "" -#: src/Model/Event.php:854 +#: src/Model/Event.php:897 msgid "D g:i A" msgstr "" -#: src/Model/Event.php:855 +#: src/Model/Event.php:898 msgid "g:i A" msgstr "" -#: src/Model/Event.php:916 src/Model/Event.php:918 +#: src/Model/Event.php:964 src/Model/Event.php:966 msgid "Show map" msgstr "Visa karta" -#: src/Model/Event.php:917 +#: src/Model/Event.php:965 msgid "Hide map" msgstr "Göm karta" -#: src/Model/Event.php:1010 +#: src/Model/Event.php:1058 #, php-format msgid "%s's birthday" msgstr "%s's födelsedag" -#: src/Model/Event.php:1011 +#: src/Model/Event.php:1059 #, php-format msgid "Happy Birthday %s" msgstr "Grattis på födelsedagen %s" -#: src/Model/Group.php:105 -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 "" - -#: src/Model/Group.php:499 -msgid "Default privacy group for new contacts" -msgstr "" - -#: src/Model/Group.php:531 -msgid "Everybody" -msgstr "Alla" - -#: src/Model/Group.php:550 -msgid "edit" -msgstr "redigera" - -#: src/Model/Group.php:582 -msgid "add" -msgstr "lägg till" - -#: src/Model/Group.php:587 -msgid "Edit group" -msgstr "Redigera gruppen" - -#: src/Model/Group.php:588 src/Module/Group.php:194 -msgid "Contacts not in any group" -msgstr "Kontakterna finns inte i någon av grupperna" - -#: src/Model/Group.php:590 -msgid "Create a new group" -msgstr "Skapa ny grupp" - -#: src/Model/Group.php:591 src/Module/Group.php:179 src/Module/Group.php:202 -#: src/Module/Group.php:277 -msgid "Group Name: " -msgstr "Gruppens namn: " - -#: src/Model/Group.php:592 -msgid "Edit groups" -msgstr "Redigera grupper" - -#: src/Model/Item.php:1823 +#: src/Model/Item.php:2062 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Upptäckte språken i det här inlägget:\\n%s" -#: src/Model/Item.php:2730 +#: src/Model/Item.php:3007 msgid "activity" msgstr "aktivitet" -#: src/Model/Item.php:2732 +#: src/Model/Item.php:3009 msgid "comment" msgstr "kommentar" -#: src/Model/Item.php:2735 +#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "inlägg" -#: src/Model/Item.php:2851 +#: src/Model/Item.php:3182 +#, php-format +msgid "%s is blocked" +msgstr "" + +#: src/Model/Item.php:3184 +#, php-format +msgid "%s is ignored" +msgstr "" + +#: src/Model/Item.php:3186 +#, php-format +msgid "Content from %s is collapsed" +msgstr "" + +#: src/Model/Item.php:3190 #, php-format msgid "Content warning: %s" msgstr "Innehållsvarning: %s" -#: src/Model/Item.php:3210 +#: src/Model/Item.php:3652 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:3244 +#: src/Model/Item.php:3683 #, php-format -msgid "%s (%d%s, %d votes)" -msgstr "" +msgid "%2$s (%3$d%%, %1$d vote)" +msgid_plural "%2$s (%3$d%%, %1$d votes)" +msgstr[0] "" +msgstr[1] "" -#: src/Model/Item.php:3246 +#: src/Model/Item.php:3685 #, php-format -msgid "%s (%d votes)" -msgstr "" +msgid "%2$s (%1$d vote)" +msgid_plural "%2$s (%1$d votes)" +msgstr[0] "" +msgstr[1] "" -#: src/Model/Item.php:3251 +#: src/Model/Item.php:3690 #, php-format -msgid "%d voters. Poll end: %s" -msgstr "" +msgid "%d voter. Poll end: %s" +msgid_plural "%d voters. Poll end: %s" +msgstr[0] "" +msgstr[1] "" -#: src/Model/Item.php:3253 +#: src/Model/Item.php:3692 #, php-format -msgid "%d voters." -msgstr "" +msgid "%d voter." +msgid_plural "%d voters." +msgstr[0] "" +msgstr[1] "" -#: src/Model/Item.php:3255 +#: src/Model/Item.php:3694 #, php-format msgid "Poll end: %s" msgstr "Omröstningen slut om: %s" -#: src/Model/Item.php:3289 src/Model/Item.php:3290 +#: src/Model/Item.php:3728 src/Model/Item.php:3729 msgid "View on separate page" msgstr "Visa på en separat sida" -#: src/Model/Mail.php:137 src/Model/Mail.php:265 +#: src/Model/Mail.php:137 src/Model/Mail.php:266 msgid "[no subject]" msgstr "[ingen rubrik]" -#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:256 -#: src/Module/Profile/Profile.php:258 +#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170 +msgid "Wall Photos" +msgstr "Loggbilder" + +#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283 +#: src/Module/Profile/Profile.php:285 msgid "Edit profile" msgstr "Redigera profil" @@ -3878,273 +3469,282 @@ msgstr "Redigera profil" msgid "Change profile photo" msgstr "Byt profilbild" -#: src/Model/Profile.php:374 src/Module/Directory.php:153 -#: src/Module/Profile/Profile.php:184 +#: src/Model/Profile.php:374 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:209 msgid "Homepage:" msgstr "Hemsida:" -#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:375 -#: src/Module/Notifications/Introductions.php:187 +#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412 +#: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "Om:" -#: src/Model/Profile.php:461 +#: src/Model/Profile.php:465 msgid "Atom feed" msgstr "Atom-flöde" -#: src/Model/Profile.php:505 +#: src/Model/Profile.php:472 +msgid "This website has been verified to belong to the same person." +msgstr "" + +#: src/Model/Profile.php:509 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:569 src/Model/Profile.php:653 +#: src/Model/Profile.php:573 src/Model/Profile.php:662 msgid "[today]" msgstr "[idag]" -#: src/Model/Profile.php:578 +#: src/Model/Profile.php:582 msgid "Birthday Reminders" msgstr "Födelsedagspåminnelser" -#: src/Model/Profile.php:579 +#: src/Model/Profile.php:583 msgid "Birthdays this week:" msgstr "Födelsedagar denna vecka:" -#: src/Model/Profile.php:602 +#: src/Model/Profile.php:611 msgid "g A l F d" msgstr "g A l F d" -#: src/Model/Profile.php:640 +#: src/Model/Profile.php:649 msgid "[No description]" msgstr "[Ingen beskrivning]" -#: src/Model/Profile.php:666 +#: src/Model/Profile.php:675 msgid "Event Reminders" msgstr "Evenemangspåminnare" -#: src/Model/Profile.php:667 +#: src/Model/Profile.php:676 msgid "Upcoming events the next 7 days:" msgstr "Evenemang som kommer de kommande 7 dagarna:" -#: src/Model/Profile.php:855 +#: src/Model/Profile.php:873 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s välkomnar %2$s" -#: src/Model/Profile.php:981 +#: src/Model/Profile.php:1013 msgid "Hometown:" msgstr "Hemstad:" -#: src/Model/Profile.php:982 +#: src/Model/Profile.php:1014 msgid "Marital Status:" msgstr "Civilstånd:" -#: src/Model/Profile.php:983 +#: src/Model/Profile.php:1015 msgid "With:" msgstr "Med:" -#: src/Model/Profile.php:984 +#: src/Model/Profile.php:1016 msgid "Since:" msgstr "Sedan:" -#: src/Model/Profile.php:985 +#: src/Model/Profile.php:1017 msgid "Sexual Preference:" msgstr "Sexualitet" -#: src/Model/Profile.php:986 +#: src/Model/Profile.php:1018 msgid "Political Views:" msgstr "Politisk åskådning:" -#: src/Model/Profile.php:987 +#: src/Model/Profile.php:1019 msgid "Religious Views:" msgstr "Religion:" -#: src/Model/Profile.php:988 +#: src/Model/Profile.php:1020 msgid "Likes:" msgstr "Gillar:" -#: src/Model/Profile.php:989 +#: src/Model/Profile.php:1021 msgid "Dislikes:" msgstr "Ogillar:" -#: src/Model/Profile.php:990 +#: src/Model/Profile.php:1022 msgid "Title/Description:" msgstr "Titel/Beskrivning:" -#: src/Model/Profile.php:991 src/Module/Admin/Summary.php:234 +#: src/Model/Profile.php:1023 src/Module/Admin/Summary.php:197 +#: src/Module/Moderation/Report/Create.php:280 +#: src/Module/Moderation/Summary.php:77 msgid "Summary" msgstr "Sammanfattning" -#: src/Model/Profile.php:992 +#: src/Model/Profile.php:1024 msgid "Musical interests" msgstr "Musik" -#: src/Model/Profile.php:993 +#: src/Model/Profile.php:1025 msgid "Books, literature" msgstr "Böcker, litteratur" -#: src/Model/Profile.php:994 +#: src/Model/Profile.php:1026 msgid "Television" msgstr "TV" -#: src/Model/Profile.php:995 +#: src/Model/Profile.php:1027 msgid "Film/dance/culture/entertainment" msgstr "Film/Dans/Kultur/Nöje" -#: src/Model/Profile.php:996 +#: src/Model/Profile.php:1028 msgid "Hobbies/Interests" msgstr "Hobbys/Intressen" -#: src/Model/Profile.php:997 +#: src/Model/Profile.php:1029 msgid "Love/romance" msgstr "Kärlek/Romantik" -#: src/Model/Profile.php:998 +#: src/Model/Profile.php:1030 msgid "Work/employment" msgstr "Arbete" -#: src/Model/Profile.php:999 +#: src/Model/Profile.php:1031 msgid "School/education" msgstr "Skola/Utbildning" -#: src/Model/Profile.php:1000 +#: src/Model/Profile.php:1032 msgid "Contact information and Social Networks" msgstr "Kontaktuppgifter och sociala nätverk" -#: src/Model/User.php:212 src/Model/User.php:1058 +#: src/Model/User.php:227 src/Model/User.php:1186 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "SERIOUS ERROR: Generation of security keys failed." -#: src/Model/User.php:570 src/Model/User.php:603 +#: src/Model/User.php:620 src/Model/User.php:653 msgid "Login failed" msgstr "Inloggningen misslyckades" -#: src/Model/User.php:635 +#: src/Model/User.php:685 msgid "Not enough information to authenticate" msgstr "Inte tillräckligt med information för att autentisera" -#: src/Model/User.php:730 +#: src/Model/User.php:806 msgid "Password can't be empty" msgstr "Lösenordet kan inte vara tomt" -#: src/Model/User.php:749 +#: src/Model/User.php:848 msgid "Empty passwords are not allowed." msgstr "Tomma lösenord är inte tillåtna." -#: src/Model/User.php:753 +#: src/Model/User.php:852 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "" -#: src/Model/User.php:759 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" +#: src/Model/User.php:856 +msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:938 +#: src/Model/User.php:860 +msgid "The password can't contain white spaces nor accentuated letters" +msgstr "" + +#: src/Model/User.php:1069 msgid "Passwords do not match. Password unchanged." msgstr "Lösenorden skiljer sig åt. Lösenordet ändras inte." -#: src/Model/User.php:945 +#: src/Model/User.php:1076 msgid "An invitation is required." msgstr "En inbjudning krävs." -#: src/Model/User.php:949 +#: src/Model/User.php:1080 msgid "Invitation could not be verified." msgstr "Inbjudningen kunde inte bekräftas." -#: src/Model/User.php:957 +#: src/Model/User.php:1088 msgid "Invalid OpenID url" msgstr "Ogiltig OpenID-URL" -#: src/Model/User.php:970 src/Security/Authentication.php:240 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 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:970 src/Security/Authentication.php:240 +#: src/Model/User.php:1101 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "Felmeddelandet var:" -#: src/Model/User.php:976 +#: src/Model/User.php:1107 msgid "Please enter the required information." msgstr "Fyll i alla obligatoriska fält." -#: src/Model/User.php:990 +#: src/Model/User.php:1121 #, 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:997 +#: src/Model/User.php:1128 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." msgstr[0] "Användarnamnet bör ha åtminstone %s tecken." msgstr[1] "Användarnamn borde ha åtminstone %s tecken." -#: src/Model/User.php:1001 +#: src/Model/User.php:1132 #, 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:1009 +#: src/Model/User.php:1140 msgid "That doesn't appear to be your full (First Last) name." msgstr "Du verkar inte ha angett ditt fullständiga namn." -#: src/Model/User.php:1014 +#: src/Model/User.php:1145 msgid "Your email domain is not among those allowed on this site." msgstr "Din e-postdomän är inte tillåten på den här webbplatsen." -#: src/Model/User.php:1018 +#: src/Model/User.php:1149 msgid "Not a valid email address." msgstr "Ogiltig e-postadress." -#: src/Model/User.php:1021 +#: src/Model/User.php:1152 msgid "The nickname was blocked from registration by the nodes admin." msgstr "" -#: src/Model/User.php:1025 src/Model/User.php:1033 +#: src/Model/User.php:1156 src/Model/User.php:1162 msgid "Cannot use that email." msgstr "Otillåten e-postadress." -#: src/Model/User.php:1040 +#: src/Model/User.php:1168 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "" -#: src/Model/User.php:1048 src/Model/User.php:1105 +#: src/Model/User.php:1176 src/Model/User.php:1233 msgid "Nickname is already registered. Please choose another." msgstr "Användarnamnet är upptaget. Välj ett annat." -#: src/Model/User.php:1092 src/Model/User.php:1096 +#: src/Model/User.php:1220 src/Model/User.php:1224 msgid "An error occurred during registration. Please try again." msgstr "Något gick fel vid registreringen. Försök igen." -#: src/Model/User.php:1119 +#: src/Model/User.php:1247 msgid "An error occurred creating your default profile. Please try again." msgstr "Det blev fel när din standardprofil skulle skapas. Prova igen." -#: src/Model/User.php:1126 +#: src/Model/User.php:1254 msgid "An error occurred creating your self contact. Please try again." msgstr "" -#: src/Model/User.php:1131 +#: src/Model/User.php:1259 msgid "Friends" msgstr "Vänner" -#: src/Model/User.php:1135 +#: src/Model/User.php:1263 msgid "" -"An error occurred creating your default contact group. Please try again." +"An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1174 +#: src/Model/User.php:1307 msgid "Profile Photos" msgstr "Profilbilder" -#: src/Model/User.php:1367 +#: src/Model/User.php:1487 #, php-format msgid "" "\n" @@ -4152,7 +3752,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1370 +#: src/Model/User.php:1490 #, php-format msgid "" "\n" @@ -4179,17 +3779,17 @@ msgid "" "\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" +"\t\tIf you ever want to delete your account, you can do so at %1$s/settings/removeme\n" "\n" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1403 src/Model/User.php:1510 +#: src/Model/User.php:1523 src/Model/User.php:1630 #, php-format msgid "Registration details for %s" msgstr "Registreringsdetaljer för 1%s" -#: src/Model/User.php:1423 +#: src/Model/User.php:1543 #, php-format msgid "" "\n" @@ -4204,12 +3804,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:1442 +#: src/Model/User.php:1562 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:1466 +#: src/Model/User.php:1586 #, php-format msgid "" "\n" @@ -4218,7 +3818,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1474 +#: src/Model/User.php:1594 #, php-format msgid "" "\n" @@ -4245,7 +3845,7 @@ msgid "" "\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" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." msgstr "" @@ -4275,26 +3875,20 @@ msgid "Enable" msgstr "Aktivera" #: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:94 -#: src/Module/Admin/Blocklist/Server/Add.php:89 -#: src/Module/Admin/Blocklist/Server/Index.php:78 -#: src/Module/Admin/Federation.php:196 src/Module/Admin/Item/Delete.php:64 -#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:84 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:431 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:233 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:398 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:75 -#: 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 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 +#: src/Module/Moderation/Users/Create.php:61 +#: src/Module/Moderation/Users/Pending.php:96 msgid "Administration" msgstr "Administration" #: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:96 -#: src/Module/BaseSettings.php:85 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:132 msgid "Addons" msgstr "Insticksprogram" @@ -4303,13 +3897,13 @@ msgstr "Insticksprogram" msgid "Toggle" msgstr "Växla" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:120 +#: src/Module/Admin/Themes/Details.php:100 msgid "Author: " msgstr "Författare:" -#: src/Module/Admin/Addons/Details.php:122 -#: src/Module/Admin/Themes/Details.php:102 +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 msgid "Maintainer: " msgstr "Underhållare:" @@ -4322,11 +3916,22 @@ msgstr "" msgid "Addon %s failed to install." msgstr "" +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:401 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:561 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Connectors.php:160 +#: src/Module/Settings/Connectors.php:246 +#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Spara inställningar" + #: src/Module/Admin/Addons/Index.php:70 msgid "Reload active addons" msgstr "" -#: src/Module/Admin/Addons/Index.php:75 +#: src/Module/Admin/Addons/Index.php:74 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4334,327 +3939,6 @@ msgid "" " the open addon registry at %2$s" msgstr "" -#: src/Module/Admin/BaseUsers.php:54 -msgid "List of all users" -msgstr "Lista över alla användare" - -#: src/Module/Admin/BaseUsers.php:59 -msgid "Active" -msgstr "Aktiv" - -#: src/Module/Admin/BaseUsers.php:62 -msgid "List of active accounts" -msgstr "Lista över aktiva konton" - -#: src/Module/Admin/BaseUsers.php:67 src/Module/Contact.php:314 -#: src/Module/Contact.php:374 -msgid "Pending" -msgstr "Väntande" - -#: src/Module/Admin/BaseUsers.php:70 -msgid "List of pending registrations" -msgstr "Lista över väntande registreringar" - -#: src/Module/Admin/BaseUsers.php:75 src/Module/Contact.php:322 -#: src/Module/Contact.php:375 -msgid "Blocked" -msgstr "Blockerad" - -#: src/Module/Admin/BaseUsers.php:78 -msgid "List of blocked users" -msgstr "Lista över blockerade användare" - -#: src/Module/Admin/BaseUsers.php:83 -msgid "Deleted" -msgstr "Ta bort" - -#: src/Module/Admin/BaseUsers.php:86 -msgid "List of pending user deletions" -msgstr "Lista över väntande borttagningar av användare" - -#: src/Module/Admin/BaseUsers.php:100 src/Module/Settings/Account.php:493 -msgid "Normal Account Page" -msgstr "Normal konto-sida" - -#: src/Module/Admin/BaseUsers.php:101 src/Module/Settings/Account.php:500 -msgid "Soapbox Page" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:102 src/Module/Settings/Account.php:507 -msgid "Public Forum" -msgstr "Publikt forum" - -#: src/Module/Admin/BaseUsers.php:103 src/Module/Settings/Account.php:514 -msgid "Automatic Friend Page" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:104 -msgid "Private Forum" -msgstr "Privat forum" - -#: src/Module/Admin/BaseUsers.php:107 src/Module/Settings/Account.php:465 -msgid "Personal Page" -msgstr "Personlig sida" - -#: src/Module/Admin/BaseUsers.php:108 src/Module/Settings/Account.php:472 -msgid "Organisation Page" -msgstr "Sida för organisation" - -#: src/Module/Admin/BaseUsers.php:109 src/Module/Settings/Account.php:479 -msgid "News Page" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:110 src/Module/Settings/Account.php:486 -msgid "Community Forum" -msgstr "" - -#: src/Module/Admin/BaseUsers.php:111 -msgid "Relay" -msgstr "Fördröj" - -#: src/Module/Admin/Blocklist/Contact.php:54 -msgid "You can't block a local contact, please block the user instead" -msgstr "Du kan inte blockera en lokal kontakt, vänligen blockera användaren istället" - -#: src/Module/Admin/Blocklist/Contact.php:73 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Blocklist/Contact.php:95 -msgid "Remote Contact Blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:96 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:97 -msgid "Block Remote Contact" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#: 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 "välj alla" - -#: src/Module/Admin/Blocklist/Contact.php:99 -msgid "select none" -msgstr "välj ingen" - -#: src/Module/Admin/Blocklist/Contact.php:101 -#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156 -#: src/Module/Contact.php:398 src/Module/Contact/Profile.php:348 -#: src/Module/Contact/Profile.php:449 -msgid "Unblock" -msgstr "Avblockera" - -#: src/Module/Admin/Blocklist/Contact.php:102 -msgid "No remote contact is blocked from this node." -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:104 -msgid "Blocked Remote Contacts" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:105 -msgid "Block New Remote Contact" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Photo" -msgstr "Foto" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Reason" -msgstr "Anledning" - -#: src/Module/Admin/Blocklist/Contact.php:114 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Blocklist/Contact.php:116 -msgid "URL of the remote contact to block." -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "Also purge contact" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "" -"Removes all content related to this contact from the node. Keeps the contact" -" record. This action cannot be undone." -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:118 -msgid "Block Reason" -msgstr "Anledning för blockering" - -#: src/Module/Admin/Blocklist/Server/Add.php:55 -msgid "Server domain pattern added to the blocklist." -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:63 -#, php-format -msgid "%s server scheduled to be purged." -msgid_plural "%s servers scheduled to be purged." -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Blocklist/Server/Add.php:88 -msgid "← Return to the list" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:90 -msgid "Block A New Server Domain Pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:91 -#: src/Module/Admin/Blocklist/Server/Index.php:82 -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" -"
    " -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:96 -#: src/Module/Admin/Blocklist/Server/Index.php:88 -msgid "Check pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:97 -msgid "Matching known servers" -msgstr "Matchar kända servrar" - -#: src/Module/Admin/Blocklist/Server/Add.php:98 -msgid "Server Name" -msgstr "Namn på server" - -#: src/Module/Admin/Blocklist/Server/Add.php:99 -msgid "Server Domain" -msgstr "Serverns domän" - -#: src/Module/Admin/Blocklist/Server/Add.php:100 -msgid "Known Contacts" -msgstr "Kända kontakter" - -#: src/Module/Admin/Blocklist/Server/Add.php:101 -#, php-format -msgid "%d known server" -msgid_plural "%d known servers" -msgstr[0] "%d känd server" -msgstr[1] "%d kända servrar" - -#: src/Module/Admin/Blocklist/Server/Add.php:102 -msgid "Add pattern to the blocklist" -msgstr "Lägg till mönster till blockeringslistan" - -#: src/Module/Admin/Blocklist/Server/Add.php:104 -#: src/Module/Admin/Blocklist/Server/Index.php:96 -msgid "Server Domain Pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:104 -#: src/Module/Admin/Blocklist/Server/Index.php:96 -msgid "" -"The domain pattern of the new server to add to the blocklist. Do not include" -" the protocol." -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:105 -msgid "Purge server" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:105 -msgid "" -"Also purges all the locally stored content authored by the known contacts " -"registered on that server. Keeps the contacts and the server records. This " -"action cannot be undone." -msgid_plural "" -"Also purges all the locally stored content authored by the known contacts " -"registered on these servers. Keeps the contacts and the servers records. " -"This action cannot be undone." -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Blocklist/Server/Add.php:106 -msgid "Block reason" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Add.php:106 -msgid "" -"The reason why you blocked this server domain pattern. This reason will be " -"shown publicly in the server information page." -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:68 -#: src/Module/Admin/Blocklist/Server/Index.php:91 -msgid "Blocked server domain pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:69 -#: src/Module/Admin/Blocklist/Server/Index.php:92 src/Module/Friendica.php:82 -msgid "Reason for the block" -msgstr "Anledning för blockeringen" - -#: src/Module/Admin/Blocklist/Server/Index.php:70 -msgid "Delete server domain pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:70 -msgid "Check to delete this entry from the blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:79 -msgid "Server Domain Pattern Blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:80 -msgid "" -"This page can be used to define a blocklist of server domain patterns from " -"the federated network that are not allowed to interact with your node. For " -"each domain pattern you should also provide the reason why you block it." -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:81 -msgid "" -"The list of blocked server domain patterns will be made publically available" -" on the /friendica page so that your users and " -"people investigating communication problems can find the reason easily." -msgstr "" - -#: src/Module/Admin/Blocklist/Server/Index.php:87 -msgid "Add new entry to the blocklist" -msgstr "Lägg till ny post till blockeringslistan" - -#: src/Module/Admin/Blocklist/Server/Index.php:89 -msgid "Save changes to the blocklist" -msgstr "Spara ändringen i blockeringslistan" - -#: src/Module/Admin/Blocklist/Server/Index.php:90 -msgid "Current Entries in the Blocklist" -msgstr "Nuvarande poster i blockeringslistan" - -#: src/Module/Admin/Blocklist/Server/Index.php:93 -msgid "Delete entry from the blocklist" -msgstr "Ta bort post från blockeringslistan" - -#: src/Module/Admin/Blocklist/Server/Index.php:94 -msgid "Delete entry from the blocklist?" -msgstr "Ta bort post från blockeringslistan?" - #: src/Module/Admin/DBSync.php:51 msgid "Update has been marked successful" msgstr "Uppdateringen har blivit markerad som lyckad" @@ -4689,28 +3973,28 @@ msgstr "" msgid "There was no additional update function %s that needed to be called." msgstr "" -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:105 msgid "No failed updates." msgstr "Inga misslyckade uppdateringar." -#: src/Module/Admin/DBSync.php:107 +#: src/Module/Admin/DBSync.php:106 msgid "Check database structure" msgstr "Kolla databas-strukturen" -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:110 msgid "Failed Updates" msgstr "Misslyckade uppdatering" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:111 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "" -#: src/Module/Admin/DBSync.php:114 +#: src/Module/Admin/DBSync.php:112 msgid "Mark success (if update was manually applied)" msgstr "" -#: src/Module/Admin/DBSync.php:115 +#: src/Module/Admin/DBSync.php:113 msgid "Attempt to execute this update step automatically" msgstr "" @@ -4719,200 +4003,145 @@ msgstr "" msgid "Lock feature %s" msgstr "Lås-funktion %s" -#: src/Module/Admin/Features.php:85 +#: src/Module/Admin/Features.php:84 msgid "Manage Additional Features" msgstr "Hantera ytterligare funktioner" -#: src/Module/Admin/Federation.php:65 +#: src/Module/Admin/Federation.php:76 +#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:316 msgid "Other" msgstr "Annat" -#: src/Module/Admin/Federation.php:136 src/Module/Admin/Federation.php:385 +#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 msgid "unknown" msgstr "okänd" -#: src/Module/Admin/Federation.php:169 +#: src/Module/Admin/Federation.php:187 #, php-format -msgid "%s total systems" -msgstr "%s totala system" +msgid "%2$s total system" +msgid_plural "%2$s total systems" +msgstr[0] "" +msgstr[1] "" -#: src/Module/Admin/Federation.php:170 +#: src/Module/Admin/Federation.php:188 #, php-format -msgid "%s active users last month" -msgstr "%s aktiva användare senaste månaden" +msgid "%2$s active user last month" +msgid_plural "%2$s active users last month" +msgstr[0] "" +msgstr[1] "" -#: src/Module/Admin/Federation.php:171 +#: src/Module/Admin/Federation.php:189 #, php-format -msgid "%s active users last six months" -msgstr "%s aktiva användare senaste 6 månaderna" +msgid "%2$s active user last six months" +msgid_plural "%2$s active users last six months" +msgstr[0] "" +msgstr[1] "" -#: src/Module/Admin/Federation.php:172 +#: src/Module/Admin/Federation.php:190 #, php-format -msgid "%s registered users" -msgstr "%s registrerade användare" - -#: src/Module/Admin/Federation.php:173 -#, php-format -msgid "%s locally created posts and comments" -msgstr "%s lokalt skapade postningar och kommentarer" - -#: src/Module/Admin/Federation.php:176 -#, php-format -msgid "%s posts per user" -msgstr "%s postningar per användare" - -#: src/Module/Admin/Federation.php:181 -#, php-format -msgid "%s users per system" -msgstr "%s användare per system" +msgid "%2$s registered user" +msgid_plural "%2$s registered users" +msgstr[0] "" +msgstr[1] "" #: src/Module/Admin/Federation.php:191 +#, php-format +msgid "%2$s locally created post or comment" +msgid_plural "%2$s locally created posts and comments" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:194 +#, php-format +msgid "%2$s post per user" +msgid_plural "%2$s posts per user" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:199 +#, php-format +msgid "%2$s user per system" +msgid_plural "%2$s users per system" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Federation.php:209 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:197 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "" -#: src/Module/Admin/Federation.php:201 +#: src/Module/Admin/Federation.php:219 #, php-format msgid "" -"Currently this node is aware of %s nodes (%s active users last month, %s " -"active users last six months, %s registered users in total) from the " +"Currently this node is aware of %2$s node (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " "following platforms:" -msgstr "" - -#: src/Module/Admin/Item/Delete.php:53 -msgid "Item marked for deletion." -msgstr "Objektet är markerat för borttagning." - -#: src/Module/Admin/Item/Delete.php:65 src/Module/BaseAdmin.php:109 -msgid "Delete Item" -msgstr "Ta bort objekt" - -#: src/Module/Admin/Item/Delete.php:66 -msgid "Delete this Item" -msgstr "Ta bort det här objektet" - -#: src/Module/Admin/Item/Delete.php:67 -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 "" - -#: src/Module/Admin/Item/Delete.php:68 -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 "" - -#: src/Module/Admin/Item/Delete.php:69 -msgid "GUID" -msgstr "GUID" - -#: src/Module/Admin/Item/Delete.php:69 -msgid "The GUID of the item you want to delete." -msgstr "Objektets GUID som du vill ta bort." - -#: src/Module/Admin/Item/Source.php:57 src/Module/BaseAdmin.php:119 -msgid "Item Source" -msgstr "Objektets källa" - -#: src/Module/Admin/Item/Source.php:58 -msgid "Item Guid" -msgstr "" - -#: src/Module/Admin/Item/Source.php:63 -msgid "Item Id" -msgstr "" - -#: src/Module/Admin/Item/Source.php:64 -msgid "Item URI" -msgstr "" - -#: src/Module/Admin/Item/Source.php:66 -msgid "Terms" -msgstr "Villkor" - -#: src/Module/Admin/Item/Source.php:67 -msgid "Tag" -msgstr "Taggar" - -#: 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 "Typ" - -#: src/Module/Admin/Item/Source.php:69 -msgid "Term" -msgstr "Villkor" - -#: src/Module/Admin/Item/Source.php:70 -msgid "URL" -msgstr "Webbadress" - -#: src/Module/Admin/Item/Source.php:71 -msgid "Mention" -msgstr "Nämn" - -#: src/Module/Admin/Item/Source.php:72 -msgid "Implicit Mention" -msgstr "" - -#: src/Module/Admin/Item/Source.php:73 src/Module/Admin/Logs/View.php:99 -#: src/Module/Debug/ActivityPubConversion.php:62 -msgid "Source" -msgstr "Källa" +msgid_plural "" +"Currently this node is aware of %2$s nodes (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgstr[0] "" +msgstr[1] "" #: src/Module/Admin/Logs/Settings.php:47 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "" -#: src/Module/Admin/Logs/Settings.php:71 +#: src/Module/Admin/Logs/Settings.php:77 msgid "PHP log currently enabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:73 +#: src/Module/Admin/Logs/Settings.php:79 msgid "PHP log currently disabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:111 -#: src/Module/BaseAdmin.php:112 +#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 msgid "Logs" msgstr "Loggar" -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:88 msgid "Clear" msgstr "Rensa" -#: src/Module/Admin/Logs/Settings.php:86 +#: src/Module/Admin/Logs/Settings.php:91 msgid "Enable Debugging" msgstr "Aktivera avlusning" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:428 +msgid "" +"Read-only because it is set by an environment variable" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:92 msgid "Log file" msgstr "Logg-fil" -#: src/Module/Admin/Logs/Settings.php:87 +#: src/Module/Admin/Logs/Settings.php:92 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "" -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:93 msgid "Log level" msgstr "Logg-nivå" -#: src/Module/Admin/Logs/Settings.php:90 +#: src/Module/Admin/Logs/Settings.php:95 msgid "PHP logging" msgstr "PHP-loggning" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:96 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 " @@ -4935,68 +4164,77 @@ msgid "" "is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:113 +#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 msgid "View Logs" msgstr "Visa loggar" -#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Admin/Logs/View.php:87 msgid "Search in logs" msgstr "Sök i loggar" -#: src/Module/Admin/Logs/View.php:89 -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Admin/Logs/View.php:88 +#: src/Module/Notifications/Notifications.php:140 msgid "Show all" msgstr "Visa alla" -#: src/Module/Admin/Logs/View.php:90 +#: src/Module/Admin/Logs/View.php:89 msgid "Date" msgstr "Datum" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:90 msgid "Level" msgstr "Nivå" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:91 msgid "Context" msgstr "Sammanhang" -#: src/Module/Admin/Logs/View.php:94 +#: src/Module/Admin/Logs/View.php:93 msgid "ALL" msgstr "ALLA" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:94 msgid "View details" msgstr "Visa detaljer" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:95 msgid "Click to view details" msgstr "Klicka för att visa detaljer" -#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Evenemangets detaljer" + +#: src/Module/Admin/Logs/View.php:97 msgid "Data" msgstr "Data" -#: src/Module/Admin/Logs/View.php:100 +#: src/Module/Admin/Logs/View.php:98 +#: src/Module/Debug/ActivityPubConversion.php:57 +msgid "Source" +msgstr "Källa" + +#: src/Module/Admin/Logs/View.php:99 msgid "File" msgstr "Fil" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:100 msgid "Line" msgstr "Rad" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:101 msgid "Function" msgstr "Funktion" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:102 msgid "UID" msgstr "UID" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:103 msgid "Process ID" msgstr "" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:104 msgid "Close" msgstr "Stäng" @@ -5032,463 +4270,472 @@ msgstr "Kommando" msgid "Job Parameters" msgstr "Jobb-parametrar" +#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 +#: src/Module/Settings/OAuth.php:74 +msgid "Created" +msgstr "Skapades" + #: src/Module/Admin/Queue.php:79 msgid "Priority" msgstr "Prioritet" -#: src/Module/Admin/Site.php:336 src/Module/Settings/Display.php:138 +#: src/Module/Admin/Site.php:212 +#, php-format +msgid "%s is no valid input for maximum image size" +msgstr "" + +#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:178 msgid "No special theme for mobile devices" msgstr "Inget speciellt tema för mobil-enheter" -#: src/Module/Admin/Site.php:353 src/Module/Settings/Display.php:148 +#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimentell)" -#: src/Module/Admin/Site.php:365 -msgid "No community page for local users" -msgstr "Ingen gemenskapssida för lokala användare" - -#: src/Module/Admin/Site.php:366 +#: src/Module/Admin/Site.php:342 msgid "No community page" msgstr "Ingen gemenskapssida" -#: src/Module/Admin/Site.php:367 +#: src/Module/Admin/Site.php:343 +msgid "No community page for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:344 msgid "Public postings from users of this site" msgstr "" -#: src/Module/Admin/Site.php:368 +#: src/Module/Admin/Site.php:345 msgid "Public postings from the federated network" msgstr "" -#: src/Module/Admin/Site.php:369 +#: src/Module/Admin/Site.php:346 msgid "Public postings from local users and the federated network" msgstr "" -#: src/Module/Admin/Site.php:375 +#: src/Module/Admin/Site.php:352 msgid "Multi user instance" msgstr "Instans för flertalet användare" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:375 msgid "Closed" msgstr "Stängd" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:376 msgid "Requires approval" msgstr "Kräver godkännande" -#: src/Module/Admin/Site.php:404 +#: src/Module/Admin/Site.php:377 msgid "Open" msgstr "Öppen" -#: src/Module/Admin/Site.php:408 src/Module/Install.php:222 -msgid "No SSL policy, links will track page SSL state" -msgstr "" - -#: src/Module/Admin/Site.php:409 src/Module/Install.php:223 -msgid "Force all links to use SSL" -msgstr "Tvinga alla länkar att använda SSL" - -#: src/Module/Admin/Site.php:410 src/Module/Install.php:224 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" - -#: src/Module/Admin/Site.php:414 +#: src/Module/Admin/Site.php:381 msgid "Don't check" msgstr "Kolla inte" -#: src/Module/Admin/Site.php:415 +#: src/Module/Admin/Site.php:382 msgid "check the stable version" msgstr "kolla den stabila versionen" -#: src/Module/Admin/Site.php:416 +#: src/Module/Admin/Site.php:383 msgid "check the development version" msgstr "kolla utvecklingsversionen" -#: src/Module/Admin/Site.php:420 +#: src/Module/Admin/Site.php:387 msgid "none" msgstr "ingen" -#: src/Module/Admin/Site.php:421 +#: src/Module/Admin/Site.php:388 msgid "Local contacts" msgstr "Lokala kontakter " -#: src/Module/Admin/Site.php:422 +#: src/Module/Admin/Site.php:389 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:432 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Sida" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:400 msgid "General Information" msgstr "Generell information" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:402 msgid "Republish users to directory" msgstr "" -#: src/Module/Admin/Site.php:436 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:403 src/Module/Register.php:152 msgid "Registration" msgstr "Registrering" -#: src/Module/Admin/Site.php:437 +#: src/Module/Admin/Site.php:404 msgid "File upload" msgstr "Fil-uppladdning" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:405 msgid "Policies" msgstr "Policyer" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276 +msgid "Advanced" +msgstr "Avancerat" + +#: src/Module/Admin/Site.php:407 msgid "Auto Discovered Contact Directory" msgstr "" -#: src/Module/Admin/Site.php:441 +#: src/Module/Admin/Site.php:408 msgid "Performance" msgstr "Prestanda" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:409 msgid "Worker" msgstr "Arbetare" -#: src/Module/Admin/Site.php:443 +#: src/Module/Admin/Site.php:410 msgid "Message Relay" msgstr "Meddelandefördröjning" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:411 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:412 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:413 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:415 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:449 +#: src/Module/Admin/Site.php:416 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "" -#: src/Module/Admin/Site.php:450 +#: src/Module/Admin/Site.php:417 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:454 +#: src/Module/Admin/Site.php:420 msgid "Site name" msgstr "Namn på sida" -#: src/Module/Admin/Site.php:455 +#: src/Module/Admin/Site.php:421 msgid "Sender Email" msgstr "Sändare av e-post" -#: src/Module/Admin/Site.php:455 +#: src/Module/Admin/Site.php:421 msgid "" "The email address your server shall use to send notification emails from." msgstr "" -#: src/Module/Admin/Site.php:456 +#: src/Module/Admin/Site.php:422 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:456 +#: src/Module/Admin/Site.php:422 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:457 +#: src/Module/Admin/Site.php:423 msgid "Banner/Logo" msgstr "Banderoll/Logga" -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:424 msgid "Email Banner/Logo" msgstr "E-postbanderoll/logga" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:425 msgid "Shortcut icon" msgstr "Genvägsikon" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:425 msgid "Link to an icon that will be used for browsers." msgstr "" -#: src/Module/Admin/Site.php:460 +#: src/Module/Admin/Site.php:426 msgid "Touch icon" msgstr "" -#: src/Module/Admin/Site.php:460 +#: src/Module/Admin/Site.php:426 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:427 msgid "Additional Info" msgstr "Ytterligare info" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:427 #, 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:462 +#: src/Module/Admin/Site.php:428 msgid "System language" msgstr "Systemets språk" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:429 msgid "System theme" msgstr "Systemets tema" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:429 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:430 msgid "Mobile system theme" msgstr "" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:430 msgid "Theme for mobile devices" msgstr "Tema för mobilenheter" -#: src/Module/Admin/Site.php:465 src/Module/Install.php:232 -msgid "SSL link policy" -msgstr "Policy för SSL-länk" - -#: src/Module/Admin/Site.php:465 src/Module/Install.php:234 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Avgör huruvida genererade länkar ska tvingas att använda SSL eller inte" - -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:431 msgid "Force SSL" msgstr "Tvinga SSL" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:431 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:432 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:432 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:433 msgid "Single user instance" msgstr "" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:433 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:435 msgid "Maximum image size" msgstr "Maximal bildstorlek" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:435 +#, php-format msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:439 msgid "Maximum image length" msgstr "Maximal bildlängd" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:439 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:472 +#: src/Module/Admin/Site.php:440 msgid "JPEG image quality" msgstr "Kvalité för JPEG-bilden" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:440 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:474 +#: src/Module/Admin/Site.php:442 msgid "Register policy" msgstr "Registrera policy" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:443 +msgid "Maximum Users" +msgstr "" + +#: src/Module/Admin/Site.php:443 +msgid "" +"If defined, the register policy is automatically closed when the given " +"number of users is reached and reopens the registry when the number drops " +"below the limit. It only works when the policy is set to open or close, but " +"not when the policy is set to approval." +msgstr "" + +#: src/Module/Admin/Site.php:444 msgid "Maximum Daily Registrations" msgstr "Maximala registreringar varje dag" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:444 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:476 +#: src/Module/Admin/Site.php:445 msgid "Register text" msgstr "Registrera text" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:445 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:446 msgid "Forbidden Nicknames" msgstr "Förbjudna smeknamn" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:446 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:478 +#: src/Module/Admin/Site.php:447 msgid "Accounts abandoned after x days" msgstr "Konton som övergavs efter x dagar" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:447 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:448 msgid "Allowed friend domains" msgstr "Tillåtna vän-domäner" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:448 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:480 +#: src/Module/Admin/Site.php:449 msgid "Allowed email domains" msgstr "Tillåtna e-postdomäner" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:449 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:481 +#: src/Module/Admin/Site.php:450 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:450 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:451 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:451 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:483 +#: src/Module/Admin/Site.php:452 msgid "Block public" msgstr "Blockera publik" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:452 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:484 +#: src/Module/Admin/Site.php:453 msgid "Force publish" msgstr "Tvinga publicering" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:453 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:453 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:454 msgid "Global directory URL" msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:454 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:486 +#: src/Module/Admin/Site.php:455 msgid "Private posts by default for new users" msgstr "Privata inlägg som standard för nya användare" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:455 msgid "" "Set default post permissions for all new members to the default privacy " -"group rather than public." +"circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:456 msgid "Don't include post content in email notifications" msgstr "Inkludera inte inläggets innehåll i aviseringar för e-post" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:456 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:488 +#: src/Module/Admin/Site.php:457 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:457 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:458 msgid "Don't embed private images in posts" msgstr "" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:458 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 " @@ -5496,11 +4743,11 @@ msgid "" "while." msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:459 msgid "Explicit Content" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:459 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 " @@ -5509,257 +4756,267 @@ msgid "" "will be shown at the user registration page." msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:460 msgid "Proxify external content" msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:460 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:461 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:461 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:462 msgid "Allow Users to set remote_self" msgstr "" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:462 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:494 +#: src/Module/Admin/Site.php:463 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:463 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:464 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:465 msgid "Enable Fullname check" msgstr "" -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:465 msgid "" "Enable check to only allow users to register with a space between the first " "name and the last name in their full name." msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:466 +msgid "Email administrators on new registration" +msgstr "" + +#: src/Module/Admin/Site.php:466 +msgid "" +"If enabled and the system is set to an open registration, an email for each " +"new registration is sent to the administrators." +msgstr "" + +#: src/Module/Admin/Site.php:467 msgid "Community pages for visitors" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:467 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:468 msgid "Posts per user on community page" msgstr "" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:468 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "\"Global Community\")" msgstr "" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:470 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:470 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:471 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:472 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:472 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:474 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:475 msgid "Enable Diaspora support" msgstr "Aktivera Diaspora-support" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:475 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:476 msgid "Verify SSL" msgstr "Bekräfta SSL" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:476 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:507 +#: src/Module/Admin/Site.php:477 msgid "Proxy user" msgstr "Proxy-användare" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:477 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:478 msgid "Proxy URL" msgstr "URL för proxy" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:478 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:479 msgid "Network timeout" msgstr "Tidsgräns för nätverket" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:479 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Värdet är i sekunder. Ställ in det till 0 för obegränsat (rekommenderas inte)." -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:480 msgid "Maximum Load Average" msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:480 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:481 msgid "Minimal Memory" msgstr "" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:481 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:482 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:484 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:484 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:485 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:486 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:487 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:519 +#: src/Module/Admin/Site.php:489 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:489 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:491 msgid "Days between requery" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:491 msgid "Number of days after which a server is requeried for his contacts." msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:492 msgid "Discover contacts from other servers" msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:492 msgid "" "Periodically query other servers for contacts. The system queries Friendica," " Mastodon and Hubzilla servers." msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:493 msgid "Search the local directory" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:493 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:525 +#: src/Module/Admin/Site.php:495 msgid "Publish server information" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:495 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 " @@ -5767,50 +5024,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:497 msgid "Check upstream version" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:497 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:528 +#: src/Module/Admin/Site.php:498 msgid "Suppress Tags" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:498 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:499 msgid "Clean database" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:499 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:500 msgid "Lifespan of remote items" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:500 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:531 +#: src/Module/Admin/Site.php:501 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:501 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5818,134 +5075,144 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:502 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:502 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:533 +#: src/Module/Admin/Site.php:503 msgid "Maximum numbers of comments per post" msgstr "" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:503 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:504 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:504 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:505 msgid "Temp path" msgstr "Tillfällig genväg" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:505 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:536 +#: src/Module/Admin/Site.php:506 msgid "Only search in tags" msgstr "Sök endast i taggar" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:506 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:507 +msgid "Generate counts per contact circle when calculating network count" +msgstr "" + +#: src/Module/Admin/Site.php:507 +msgid "" +"On systems with users that heavily use contact circles the query can be very" +" expensive." +msgstr "" + +#: src/Module/Admin/Site.php:509 msgid "Maximum number of parallel workers" msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:509 #, 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:539 +#: src/Module/Admin/Site.php:510 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:510 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:541 +#: src/Module/Admin/Site.php:512 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:512 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:513 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:513 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:542 src/Module/Contact/Profile.php:273 -#: src/Module/Settings/TwoFactor/Index.php:121 +#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Disabled" msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:513 msgid "all" msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:513 msgid "tags" msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:514 msgid "Server tags" msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:514 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:515 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:515 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:516 msgid "Allow user tags" msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:516 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:548 +#: src/Module/Admin/Site.php:519 msgid "Start Relocation" msgstr "" @@ -5971,7 +5238,7 @@ msgstr "" msgid "Storage Configuration" msgstr "" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:94 +#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 msgid "Storage" msgstr "" @@ -5991,16 +5258,22 @@ msgstr "" msgid "This backend doesn't have custom settings" msgstr "" -#: src/Module/Admin/Storage.php:149 +#: src/Module/Admin/Storage.php:148 +msgid "" +"Changing the current backend is prohibited because it is set by an " +"environment variable" +msgstr "" + +#: src/Module/Admin/Storage.php:150 msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:54 +#: src/Module/Admin/Summary.php:55 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:58 +#: src/Module/Admin/Summary.php:59 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -6011,7 +5284,7 @@ msgid "" " an automatic conversion.
    " msgstr "" -#: src/Module/Admin/Summary.php:63 +#: src/Module/Admin/Summary.php:64 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -6022,7 +5295,7 @@ msgid "" " installation for an automatic conversion.
    " msgstr "" -#: src/Module/Admin/Summary.php:73 +#: src/Module/Admin/Summary.php:74 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -6030,39 +5303,46 @@ msgid "" " to %d. See here for more information.
    " msgstr "" -#: src/Module/Admin/Summary.php:83 +#: src/Module/Admin/Summary.php:85 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "" -#: src/Module/Admin/Summary.php:92 +#: src/Module/Admin/Summary.php:94 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "" -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:98 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "" -#: src/Module/Admin/Summary.php:101 +#: src/Module/Admin/Summary.php:102 +msgid "" +"The system.url entry is missing. This is a low level setting and can lead to" +" unexpected behavior. Please add a valid entry as soon as possible in the " +"config file or per console command!" +msgstr "" + +#: src/Module/Admin/Summary.php:107 msgid "The worker was never executed. Please check your database structure!" msgstr "" -#: src/Module/Admin/Summary.php:103 +#: src/Module/Admin/Summary.php:109 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "" -#: src/Module/Admin/Summary.php:108 +#: src/Module/Admin/Summary.php:114 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6071,7 +5351,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:112 +#: src/Module/Admin/Summary.php:118 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6080,7 +5360,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:124 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -6088,83 +5368,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:136 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:150 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:166 +#: src/Module/Admin/Summary.php:148 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "" -#: src/Module/Admin/Summary.php:174 +#: src/Module/Admin/Summary.php:156 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "" -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:164 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "" -#: src/Module/Admin/Summary.php:189 -msgid "Normal Account" -msgstr "Vanligt konto" - -#: src/Module/Admin/Summary.php:190 -msgid "Automatic Follower Account" -msgstr "" - -#: src/Module/Admin/Summary.php:191 -msgid "Public Forum Account" -msgstr "" - -#: src/Module/Admin/Summary.php:192 -msgid "Automatic Friend Account" -msgstr "Konto med automatiskt godkännande av vänner." - -#: src/Module/Admin/Summary.php:193 -msgid "Blog Account" -msgstr "Blogg-konto" - -#: src/Module/Admin/Summary.php:194 -msgid "Private Forum Account" -msgstr "" - -#: src/Module/Admin/Summary.php:214 +#: src/Module/Admin/Summary.php:175 msgid "Message queues" msgstr "Meddelandeköer" -#: src/Module/Admin/Summary.php:220 +#: src/Module/Admin/Summary.php:181 msgid "Server Settings" msgstr "" -#: src/Module/Admin/Summary.php:236 -msgid "Registered users" -msgstr "Registrerade användare" - -#: src/Module/Admin/Summary.php:238 -msgid "Pending registrations" -msgstr "Väntande registreringar" - -#: src/Module/Admin/Summary.php:239 +#: src/Module/Admin/Summary.php:199 msgid "Version" msgstr "Version" -#: src/Module/Admin/Summary.php:243 +#: src/Module/Admin/Summary.php:203 msgid "Active addons" msgstr "" @@ -6188,7 +5425,7 @@ msgid "Screenshot" msgstr "Skärmdump" #: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:97 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 msgid "Themes" msgstr "Teman" @@ -6204,34 +5441,34 @@ msgstr "" msgid "Reload active themes" msgstr "" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:118 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:119 msgid "[Experimental]" msgstr "[Experimentiell]" -#: src/Module/Admin/Themes/Index.php:121 +#: src/Module/Admin/Themes/Index.php:120 msgid "[Unsupported]" msgstr "[Stöds inte]" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 msgid "Display Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 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 "" -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 msgid "Display Privacy Statement" msgstr "" -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -6239,220 +5476,34 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:81 msgid "Privacy Statement Preview" msgstr "" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "The Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "" -#: src/Module/Admin/Users/Active.php:45 src/Module/Admin/Users/Index.php:45 +#: src/Module/Admin/Tos.php:84 +msgid "The rules" +msgstr "" + +#: src/Module/Admin/Tos.php:84 +msgid "Enter your system rules here. Each line represents one rule." +msgstr "" + +#: src/Module/Api/ApiResponse.php:279 #, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "" -msgstr[1] "" - -#: 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" +msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: 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] "%sanvändare togs bort" -msgstr[1] "%s användare togs bort" - -#: 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 "" - -#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103 -#, php-format -msgid "User \"%s\" blocked" -msgstr "" - -#: 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 "Datum för registrering" - -#: 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 "Senaste inloggning" - -#: 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 "" - -#: src/Module/Admin/Users/Active.php:137 -msgid "Active Accounts" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: 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 "Kontot slutade gälla" - -#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161 -msgid "Create a new user" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: 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] "" -msgstr[1] "" - -#: src/Module/Admin/Users/Blocked.php:96 src/Module/Admin/Users/Index.php:109 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "" - -#: src/Module/Admin/Users/Blocked.php:138 -msgid "Blocked Users" -msgstr "" - -#: src/Module/Admin/Users/Create.php:62 -msgid "New User" -msgstr "Ny användare" - -#: src/Module/Admin/Users/Create.php:63 -msgid "Add User" -msgstr "Lägg till användare" - -#: src/Module/Admin/Users/Create.php:71 -msgid "Name of the new user." -msgstr "Namn på den nya användaren." - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname" -msgstr "Smeknamn" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname of the new user." -msgstr "Smeknamn på den nya användaren." - -#: src/Module/Admin/Users/Create.php:73 -msgid "Email address of the new user." -msgstr "E-postadress för den nya användaren." - -#: src/Module/Admin/Users/Deleted.php:86 -msgid "Users awaiting permanent deletion" -msgstr "" - -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:162 -msgid "Permanent deletion" -msgstr "" - -#: src/Module/Admin/Users/Index.php:150 src/Module/Admin/Users/Index.php:160 -#: src/Module/BaseAdmin.php:95 -msgid "Users" -msgstr "Användare" - -#: src/Module/Admin/Users/Index.php:152 -msgid "User waiting for permanent deletion" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:48 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users/Pending.php:55 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users/Pending.php:81 -msgid "Account approved." -msgstr "Kontot har godkänts." - -#: src/Module/Admin/Users/Pending.php:87 -msgid "Registration revoked" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:102 -msgid "User registrations awaiting review" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:104 -msgid "Request date" -msgstr "Datum för begäran" - -#: src/Module/Admin/Users/Pending.php:105 -msgid "No registrations." -msgstr "Inga registreringar." - -#: src/Module/Admin/Users/Pending.php:106 -msgid "Note from the user" -msgstr "" - -#: src/Module/Admin/Users/Pending.php:108 -msgid "Deny" -msgstr "Avslå" - -#: src/Module/Api/ApiResponse.php:272 -#, php-format -msgid "API endpoint %s %s is not implemented" -msgstr "" - -#: src/Module/Api/ApiResponse.php:273 -msgid "" -"The API endpoint is currently not implemented but might be in the future." -msgstr "" - -#: src/Module/Api/Mastodon/Apps.php:63 +#: src/Module/Api/Mastodon/Apps.php:73 msgid "Missing parameters" msgstr "" @@ -6460,11 +5511,11 @@ msgstr "" msgid "Only starting posts can be bookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Mute.php:50 +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 msgid "Only starting posts can be muted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:56 #, php-format msgid "Posts from %s can't be shared" msgstr "" @@ -6473,11 +5524,11 @@ msgstr "" msgid "Only starting posts can be unbookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:50 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 msgid "Only starting posts can be unmuted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:53 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:62 #, php-format msgid "Posts from %s can't be unshared" msgstr "" @@ -6486,117 +5537,106 @@ msgstr "" msgid "Contact not found" msgstr "" -#: src/Module/Apps.php:54 +#: src/Module/Apps.php:62 msgid "No installed applications." msgstr "Inga installerade applikationer." -#: src/Module/Apps.php:59 +#: src/Module/Apps.php:67 msgid "Applications" msgstr "Applikationer" -#: src/Module/Attach.php:50 src/Module/Attach.php:62 +#: src/Module/Attach.php:49 src/Module/Attach.php:61 msgid "Item was not found." msgstr "Objektet hittades inte." -#: src/Module/BaseAdmin.php:57 src/Module/BaseAdmin.php:61 +#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 msgid "Please login to continue." msgstr "Vänligen logga in för att fortsätta." -#: src/Module/BaseAdmin.php:66 +#: src/Module/BaseAdmin.php:63 msgid "You don't have access to administration pages." msgstr "" -#: src/Module/BaseAdmin.php:70 +#: src/Module/BaseAdmin.php:67 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "" -#: src/Module/BaseAdmin.php:89 +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 msgid "Overview" msgstr "" -#: src/Module/BaseAdmin.php:92 +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 msgid "Configuration" msgstr "" -#: src/Module/BaseAdmin.php:98 src/Module/BaseSettings.php:63 +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 msgid "Additional features" msgstr "Ytterligare funktioner" -#: src/Module/BaseAdmin.php:101 +#: src/Module/BaseAdmin.php:97 msgid "Database" msgstr "" -#: src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:98 msgid "DB updates" msgstr "DB-uppdateringar" -#: src/Module/BaseAdmin.php:103 +#: src/Module/BaseAdmin.php:99 msgid "Inspect Deferred Workers" msgstr "" -#: src/Module/BaseAdmin.php:104 +#: src/Module/BaseAdmin.php:100 msgid "Inspect worker Queue" msgstr "" -#: src/Module/BaseAdmin.php:106 -msgid "Tools" -msgstr "" - -#: src/Module/BaseAdmin.php:107 -msgid "Contact Blocklist" -msgstr "" - -#: src/Module/BaseAdmin.php:108 -msgid "Server Blocklist" -msgstr "" - -#: src/Module/BaseAdmin.php:115 +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 msgid "Diagnostics" msgstr "" -#: src/Module/BaseAdmin.php:116 +#: src/Module/BaseAdmin.php:107 msgid "PHP Info" msgstr "" -#: src/Module/BaseAdmin.php:117 +#: src/Module/BaseAdmin.php:108 msgid "probe address" msgstr "" -#: src/Module/BaseAdmin.php:118 +#: src/Module/BaseAdmin.php:109 msgid "check webfinger" msgstr "" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:110 msgid "Babel" msgstr "" -#: src/Module/BaseAdmin.php:121 src/Module/Debug/ActivityPubConversion.php:142 +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 msgid "ActivityPub Conversion" msgstr "" -#: src/Module/BaseAdmin.php:130 +#: src/Module/BaseAdmin.php:120 msgid "Addon Features" msgstr "" -#: src/Module/BaseAdmin.php:131 +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 msgid "User registrations waiting for confirmation" msgstr "Användarens registreringar väntar på bekräftelse" -#: src/Module/BaseApi.php:241 src/Module/BaseApi.php:257 -#: src/Module/BaseApi.php:273 +#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467 +#: src/Module/BaseApi.php:483 msgid "Too Many Requests" msgstr "" -#: src/Module/BaseApi.php:242 +#: src/Module/BaseApi.php:452 #, 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] "Daglig gräns av %d upplägg nådd. Upplägget avvisades." msgstr[1] "Daglig gräns av %d upplägg nådd. Upplägget avvisades." -#: src/Module/BaseApi.php:258 +#: src/Module/BaseApi.php:468 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6604,67 +5644,138 @@ msgid_plural "" msgstr[0] "Veckovis gräns av %d inlägg nådd. Inlägged avvisades." msgstr[1] "Veckovis gräns av %d inlägg nådd. Inlägged avvisades." -#: src/Module/BaseApi.php:274 +#: src/Module/BaseApi.php:484 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "Månatlig gräns av %d inlägg nådd. Inlägget avvisades." +msgid_plural "" +"Monthly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" -#: src/Module/BaseProfile.php:51 src/Module/Contact.php:460 +#: src/Module/BaseModeration.php:86 +msgid "You don't have access to moderation pages." +msgstr "" + +#: src/Module/BaseModeration.php:90 +msgid "" +"Submanaged account can't access the moderation pages. Please log back in as " +"the main account." +msgstr "" + +#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +msgid "Reports" +msgstr "" + +#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Användare" + +#: src/Module/BaseModeration.php:115 +msgid "Tools" +msgstr "" + +#: src/Module/BaseModeration.php:116 +msgid "Contact Blocklist" +msgstr "" + +#: src/Module/BaseModeration.php:117 +msgid "Server Blocklist" +msgstr "" + +#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "Ta bort objekt" + +#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "Objektets källa" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507 msgid "Profile Details" msgstr "Profildetaljer" -#: src/Module/BaseProfile.php:109 +#: src/Module/BaseProfile.php:60 +msgid "Conversations started" +msgstr "" + +#: src/Module/BaseProfile.php:111 msgid "Only You Can See This" msgstr "Endast du kan se det här" -#: src/Module/BaseProfile.php:114 src/Module/Profile/Schedule.php:82 +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 msgid "Scheduled Posts" msgstr "" -#: src/Module/BaseProfile.php:117 +#: src/Module/BaseProfile.php:119 msgid "Posts that are scheduled for publishing" msgstr "" -#: src/Module/BaseProfile.php:136 src/Module/BaseProfile.php:139 +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 msgid "Tips for New Members" msgstr "Tips för nya medlemmar" -#: src/Module/BaseSearch.php:69 +#: src/Module/BaseSearch.php:71 #, php-format msgid "People Search - %s" msgstr "" -#: src/Module/BaseSearch.php:79 +#: src/Module/BaseSearch.php:75 #, php-format -msgid "Forum Search - %s" +msgid "Group Search - %s" msgstr "" -#: src/Module/BaseSettings.php:41 +#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "Ingen träff" + +#: src/Module/BaseSearch.php:147 +#, php-format +msgid "" +"%d result was filtered out because your node blocks the domain it is " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgid_plural "" +"%d results were filtered out because your node blocks the domain they are " +"registered on. You can review the list of domains your node is currently " +"blocking in the About page." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/BaseSettings.php:78 msgid "Account" msgstr "Konto" -#: src/Module/BaseSettings.php:48 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:113 +#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 msgid "Two-factor authentication" msgstr "" -#: src/Module/BaseSettings.php:71 +#: src/Module/BaseSettings.php:118 msgid "Display" msgstr "Skärm" -#: src/Module/BaseSettings.php:92 src/Module/Settings/Delegation.php:171 +#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204 +msgid "Social Networks" +msgstr "Sociala nätverk" + +#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172 msgid "Manage Accounts" msgstr "" -#: src/Module/BaseSettings.php:99 +#: src/Module/BaseSettings.php:146 msgid "Connected apps" msgstr "Anslutna appar" -#: src/Module/BaseSettings.php:106 src/Module/Settings/UserExport.php:76 +#: src/Module/BaseSettings.php:153 +msgid "Remote servers" +msgstr "" + +#: src/Module/BaseSettings.php:160 src/Module/Settings/UserExport.php:98 msgid "Export personal data" msgstr "Exporter personlig data" -#: src/Module/BaseSettings.php:113 +#: src/Module/BaseSettings.php:167 msgid "Remove account" msgstr "Ta bort konto" @@ -6676,117 +5787,364 @@ msgstr "" msgid "The post was created" msgstr "Inlägget skapades" -#: src/Module/Contact.php:88 +#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 +#: src/Module/Calendar/Event/Form.php:80 +msgid "Invalid Request" +msgstr "" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "" + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "Borttagning av evenemanget misslyckades" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "Evenemanget kan inte sluta före det har börjat." + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "Evenemangets titel och start-tid krävs." + +#: src/Module/Calendar/Event/Form.php:208 +msgid "Starting date and Title are required." +msgstr "Start-datum och titel krävs." + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:214 +msgid "Event Starts:" +msgstr "Evenemanget börjar:" + +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 +#: src/Module/Install.php:201 src/Module/Install.php:227 +#: src/Module/Install.php:232 src/Module/Install.php:246 +#: src/Module/Install.php:255 src/Module/Install.php:260 +#: src/Module/Install.php:266 src/Module/Install.php:271 +#: src/Module/Install.php:285 src/Module/Install.php:298 +#: src/Module/Install.php:325 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Krävs" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +msgid "Finish date/time is not known or not relevant" +msgstr "Slut-datum/tid är inte känt eller icke relevant" + +#: src/Module/Calendar/Event/Form.php:225 +#: src/Module/Calendar/Event/Form.php:230 +msgid "Event Finishes:" +msgstr "Evenemanget slutar:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Dela det här evenemanget" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +msgid "Basic" +msgstr "Standard" + +#: src/Module/Calendar/Export.php:94 +msgid "This calendar format is not supported" +msgstr "Kalenderformatet stöds inte" + +#: src/Module/Calendar/Export.php:96 +msgid "No exportable data found" +msgstr "Inga data att exportera hittades" + +#: src/Module/Calendar/Export.php:113 +msgid "calendar" +msgstr "kalender" + +#: src/Module/Calendar/Show.php:124 +msgid "Events" +msgstr "Evenemang" + +#: src/Module/Calendar/Show.php:125 +msgid "View" +msgstr "Visa" + +#: src/Module/Calendar/Show.php:126 +msgid "Create New Event" +msgstr "Skapa nytt evenemang" + +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:248 +msgid "list" +msgstr "lista" + +#: src/Module/Circle.php:57 +msgid "Could not create circle." +msgstr "" + +#: src/Module/Circle.php:68 src/Module/Circle.php:214 +#: src/Module/Circle.php:238 +msgid "Circle not found." +msgstr "" + +#: src/Module/Circle.php:74 +msgid "Circle name was not changed." +msgstr "" + +#: src/Module/Circle.php:92 +msgid "Unknown circle." +msgstr "" + +#: src/Module/Circle.php:98 src/Module/Circle.php:107 +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 +#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +msgid "Contact not found." +msgstr "Kontakten hittades inte." + +#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Conversation/Network.php:232 +msgid "Invalid contact." +msgstr "Ogiltig kontakt." + +#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +msgid "Contact is deleted." +msgstr "" + +#: src/Module/Circle.php:117 +msgid "Unable to add the contact to the circle." +msgstr "" + +#: src/Module/Circle.php:120 +msgid "Contact successfully added to circle." +msgstr "" + +#: src/Module/Circle.php:124 +msgid "Unable to remove the contact from the circle." +msgstr "" + +#: src/Module/Circle.php:127 +msgid "Contact successfully removed from circle." +msgstr "" + +#: src/Module/Circle.php:131 +msgid "Bad request." +msgstr "" + +#: src/Module/Circle.php:170 +msgid "Save Circle" +msgstr "" + +#: src/Module/Circle.php:171 +msgid "Filter" +msgstr "" + +#: src/Module/Circle.php:177 +msgid "Create a circle of contacts/friends." +msgstr "" + +#: src/Module/Circle.php:219 +msgid "Unable to remove circle." +msgstr "" + +#: src/Module/Circle.php:270 +msgid "Delete Circle" +msgstr "" + +#: src/Module/Circle.php:280 +msgid "Edit Circle Name" +msgstr "" + +#: src/Module/Circle.php:290 +msgid "Members" +msgstr "Medlemmar" + +#: src/Module/Circle.php:293 +msgid "Circle is empty" +msgstr "" + +#: src/Module/Circle.php:306 +msgid "Remove contact from circle" +msgstr "" + +#: src/Module/Circle.php:329 +msgid "Click on a contact to add or remove." +msgstr "Klicka på en kontakt för att lägga till eller ta bort." + +#: src/Module/Circle.php:343 +msgid "Add contact to circle" +msgstr "" + +#: src/Module/Contact.php:97 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "" msgstr[1] "" -#: src/Module/Contact.php:309 +#: src/Module/Contact.php:348 msgid "Show all contacts" msgstr "Visa alla kontakter" -#: src/Module/Contact.php:317 +#: src/Module/Contact.php:353 src/Module/Contact.php:432 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "Väntande" + +#: src/Module/Contact.php:356 msgid "Only show pending contacts" msgstr "" -#: src/Module/Contact.php:325 +#: src/Module/Contact.php:361 src/Module/Contact.php:435 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Blockerad" + +#: src/Module/Contact.php:364 msgid "Only show blocked contacts" msgstr "Visa endast blockerade kontakter" -#: src/Module/Contact.php:330 src/Module/Contact.php:377 -#: src/Object/Post.php:339 +#: src/Module/Contact.php:369 src/Module/Contact.php:441 +#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:368 msgid "Ignored" msgstr "Ignorerade" -#: src/Module/Contact.php:333 +#: src/Module/Contact.php:372 msgid "Only show ignored contacts" msgstr "Visa endast ignorerade kontakter" -#: src/Module/Contact.php:338 src/Module/Contact.php:378 +#: src/Module/Contact.php:377 src/Module/Contact.php:444 +msgid "Collapsed" +msgstr "" + +#: src/Module/Contact.php:380 +msgid "Only show collapsed contacts" +msgstr "" + +#: src/Module/Contact.php:385 src/Module/Contact.php:447 msgid "Archived" msgstr "Arkiverat" -#: src/Module/Contact.php:341 +#: src/Module/Contact.php:388 msgid "Only show archived contacts" msgstr "Visa endast arkiverade kontakter" -#: src/Module/Contact.php:346 src/Module/Contact.php:376 +#: src/Module/Contact.php:393 src/Module/Contact.php:438 msgid "Hidden" msgstr "Gömda" -#: src/Module/Contact.php:349 +#: src/Module/Contact.php:396 msgid "Only show hidden contacts" msgstr "Visa endast gömda kontakter" -#: src/Module/Contact.php:357 -msgid "Organize your contact groups" +#: src/Module/Contact.php:404 +msgid "Organize your contact circles" msgstr "" -#: src/Module/Contact.php:389 +#: src/Module/Contact.php:459 msgid "Search your contacts" msgstr "Sök dina kontakter" -#: src/Module/Contact.php:390 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:460 src/Module/Search/Index.php:207 #, php-format msgid "Results for: %s" msgstr "" -#: src/Module/Contact.php:397 +#: src/Module/Contact.php:467 msgid "Update" msgstr "Uppdatera" -#: src/Module/Contact.php:399 src/Module/Contact/Profile.php:349 -#: src/Module/Contact/Profile.php:457 +#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:511 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Avblockera" + +#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519 msgid "Unignore" msgstr "Sluta ignorera" -#: src/Module/Contact.php:401 +#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527 +msgid "Uncollapse" +msgstr "" + +#: src/Module/Contact.php:472 msgid "Batch Actions" msgstr "" -#: src/Module/Contact.php:436 +#: src/Module/Contact.php:515 msgid "Conversations started by this contact" msgstr "" -#: src/Module/Contact.php:441 +#: src/Module/Contact.php:520 msgid "Posts and Comments" msgstr "" -#: src/Module/Contact.php:452 +#: src/Module/Contact.php:523 +msgid "Individual Posts and Replies" +msgstr "" + +#: src/Module/Contact.php:531 msgid "Posts containing media objects" msgstr "" -#: src/Module/Contact.php:467 +#: src/Module/Contact.php:539 msgid "View all known contacts" msgstr "" -#: src/Module/Contact.php:477 +#: src/Module/Contact.php:550 msgid "Advanced Contact Settings" msgstr "" -#: src/Module/Contact.php:511 +#: src/Module/Contact.php:586 msgid "Mutual Friendship" msgstr "Ömsesidig vänskap" -#: src/Module/Contact.php:515 +#: src/Module/Contact.php:590 msgid "is a fan of yours" msgstr "är ett fan till dig" -#: src/Module/Contact.php:519 +#: src/Module/Contact.php:594 msgid "you are a fan of" msgstr "du är fan till" -#: src/Module/Contact.php:537 +#: src/Module/Contact.php:612 msgid "Pending outgoing contact request" msgstr "Väntande utgående kontaktbegäran" -#: src/Module/Contact.php:539 +#: src/Module/Contact.php:614 msgid "Pending incoming contact request" msgstr "Väntande inkommande kontaktbegäran" -#: src/Module/Contact.php:552 src/Module/Contact/Profile.php:334 +#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371 #, php-format msgid "Visit %s's profile [%s]" msgstr "Besök %s's profil [%s]" @@ -6799,6 +6157,19 @@ msgstr "Det gick inte att uppdatera kontakt." msgid "Return to contact editor" msgstr "" +#: src/Module/Contact/Advanced.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +msgid "Name" +msgstr "Namn" + #: src/Module/Contact/Advanced.php:135 msgid "Account Nickname" msgstr "" @@ -6815,443 +6186,560 @@ msgstr "" msgid "New photo from this URL" msgstr "Nytt foto från den här webbadressen" -#: src/Module/Contact/Contacts.php:50 src/Module/Conversation/Network.php:187 -#: src/Module/Group.php:103 -msgid "Invalid contact." -msgstr "Ogiltig kontakt." - -#: src/Module/Contact/Contacts.php:73 +#: src/Module/Contact/Contacts.php:89 msgid "No known contacts." msgstr "Inga kända kontakter." -#: src/Module/Contact/Contacts.php:87 src/Module/Profile/Common.php:98 +#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 msgid "No common contacts." msgstr "Inga gemensamma kontakter." -#: src/Module/Contact/Contacts.php:99 src/Module/Profile/Contacts.php:96 +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" msgstr[0] "Följare (%s)" msgstr[1] "Följare (%s)" -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Contacts.php:99 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" msgstr[0] "Följer (%s)" msgstr[1] "Följer (%s)" -#: src/Module/Contact/Contacts.php:107 src/Module/Profile/Contacts.php:102 +#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" msgstr[0] "Gemensam vän (%s)" msgstr[1] "Gemensamma vänner (%s)" -#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:104 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "" -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Common.php:86 +#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:88 +#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:110 +#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Poke.php:135 -msgid "Error while sending poke, please retry." +#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:165 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Åtkomst nekad." + +#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Skicka förfrågan" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "Du har redan lagt till den här kontakten." + +#: src/Module/Contact/Follow.php:130 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Nätverkstypen kunde inte upptäckas. Kontakten kan inte läggas till." + +#: src/Module/Contact/Follow.php:138 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Stödet för Diaspora är inte aktiverat. Kontakten kan inte läggas till." + +#: src/Module/Contact/Follow.php:143 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "Stödet för OStatus är inaktiverat. Kontakten kan inte läggas till." + +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +msgid "Please answer the following:" +msgstr "Var vänlig besvara följande:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "Din adress (ditt ID):" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Reports.php:104 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "URL för profil" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:234 +msgid "Tags:" +msgstr "Taggar:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "%s känner dig" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Lägg till ett personligt meddelande:" + +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Posts and Replies" msgstr "" -#: src/Module/Contact/Poke.php:148 src/Module/Search/Acl.php:55 -msgid "You must be logged in to use this module." +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "Kontakten kunde inte läggas till." + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:77 +#: src/Module/Media/Attachment/Upload.php:82 +#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 +#: src/Module/Media/Photo/Upload.php:135 +msgid "Invalid request." +msgstr "Ogiltig förfrågning." + +#: src/Module/Contact/MatchInterests.php:101 +msgid "No keywords to match. Please add keywords to your profile." msgstr "" -#: src/Module/Contact/Poke.php:171 -msgid "Poke/Prod" -msgstr "" +#: src/Module/Contact/MatchInterests.php:144 +msgid "Profile Match" +msgstr "Matcha profiler" -#: src/Module/Contact/Poke.php:172 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: src/Module/Contact/Poke.php:174 -msgid "Choose what you wish to do to recipient" -msgstr "Välj vad du vill göra med mottagaren" - -#: src/Module/Contact/Poke.php:175 -msgid "Make this post private" -msgstr "Gör det här inlägget privat" - -#: src/Module/Contact/Profile.php:127 +#: src/Module/Contact/Profile.php:140 msgid "Failed to update contact record." msgstr "Det blev fel när kontakten skulle uppdateras." -#: src/Module/Contact/Profile.php:177 +#: src/Module/Contact/Profile.php:190 msgid "Contact has been unblocked" msgstr "Kontakten är inte längre spärrad" -#: src/Module/Contact/Profile.php:181 +#: src/Module/Contact/Profile.php:194 msgid "Contact has been blocked" msgstr "Kontakten har spärrats" -#: src/Module/Contact/Profile.php:193 +#: src/Module/Contact/Profile.php:206 msgid "Contact has been unignored" msgstr "Kontakten ignoreras inte längre" -#: src/Module/Contact/Profile.php:197 +#: src/Module/Contact/Profile.php:210 msgid "Contact has been ignored" msgstr "Kontakten ignoreras" -#: src/Module/Contact/Profile.php:229 +#: src/Module/Contact/Profile.php:222 +msgid "Contact has been uncollapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:226 +msgid "Contact has been collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:254 #, php-format msgid "You are mutual friends with %s" msgstr "Ni är gemensamma vänner med %s" -#: src/Module/Contact/Profile.php:230 +#: src/Module/Contact/Profile.php:255 #, php-format msgid "You are sharing with %s" msgstr "Du delar med %s" -#: src/Module/Contact/Profile.php:231 +#: src/Module/Contact/Profile.php:256 #, php-format msgid "%s is sharing with you" msgstr "%s delar med dig" -#: src/Module/Contact/Profile.php:247 +#: src/Module/Contact/Profile.php:272 msgid "Private communications are not available for this contact." msgstr "Det går inte att utbyta personliga meddelanden med den här kontakten." -#: src/Module/Contact/Profile.php:249 +#: src/Module/Contact/Profile.php:282 +msgid "This contact is on a server you ignored." +msgstr "" + +#: src/Module/Contact/Profile.php:285 msgid "Never" msgstr "Aldrig" -#: src/Module/Contact/Profile.php:252 +#: src/Module/Contact/Profile.php:288 msgid "(Update was not successful)" msgstr "(Uppdateringen lyckades inte)" -#: src/Module/Contact/Profile.php:252 +#: src/Module/Contact/Profile.php:288 msgid "(Update was successful)" msgstr "(Uppdateringen lyckades)" -#: src/Module/Contact/Profile.php:254 src/Module/Contact/Profile.php:420 +#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 msgid "Suggest friends" msgstr "Föreslå vänner" -#: src/Module/Contact/Profile.php:258 +#: src/Module/Contact/Profile.php:294 #, php-format msgid "Network type: %s" msgstr "Nätverkstyp: %s" -#: src/Module/Contact/Profile.php:263 +#: src/Module/Contact/Profile.php:299 msgid "Communications lost with this contact!" msgstr "Kommunikationen med den här kontakten förlorades!" -#: src/Module/Contact/Profile.php:269 +#: src/Module/Contact/Profile.php:305 msgid "Fetch further information for feeds" msgstr "" -#: src/Module/Contact/Profile.php:271 +#: src/Module/Contact/Profile.php:307 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 "" -#: src/Module/Contact/Profile.php:274 +#: src/Module/Contact/Profile.php:310 msgid "Fetch information" msgstr "Hämta information" -#: src/Module/Contact/Profile.php:275 +#: src/Module/Contact/Profile.php:311 msgid "Fetch keywords" msgstr "" -#: src/Module/Contact/Profile.php:276 +#: src/Module/Contact/Profile.php:312 msgid "Fetch information and keywords" msgstr "" -#: src/Module/Contact/Profile.php:286 src/Module/Contact/Profile.php:292 -#: src/Module/Contact/Profile.php:297 src/Module/Contact/Profile.php:303 +#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 +#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 msgid "No mirroring" msgstr "Ingen spegling" -#: src/Module/Contact/Profile.php:287 -msgid "Mirror as forwarded posting" -msgstr "" - -#: src/Module/Contact/Profile.php:288 src/Module/Contact/Profile.php:298 -#: src/Module/Contact/Profile.php:304 +#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:339 msgid "Mirror as my own posting" msgstr "" -#: src/Module/Contact/Profile.php:293 src/Module/Contact/Profile.php:299 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 msgid "Native reshare" msgstr "" -#: src/Module/Contact/Profile.php:316 +#: src/Module/Contact/Profile.php:353 msgid "Contact Information / Notes" msgstr "Kontaktuppgifter/Anteckningar" -#: src/Module/Contact/Profile.php:317 +#: src/Module/Contact/Profile.php:354 msgid "Contact Settings" msgstr "" -#: src/Module/Contact/Profile.php:325 +#: src/Module/Contact/Profile.php:362 msgid "Contact" msgstr "Kontakt" -#: src/Module/Contact/Profile.php:329 +#: src/Module/Contact/Profile.php:366 msgid "Their personal note" msgstr "Deras personliga anteckning" -#: src/Module/Contact/Profile.php:331 +#: src/Module/Contact/Profile.php:368 msgid "Edit contact notes" msgstr "Redigera kontaktanteckningar" -#: src/Module/Contact/Profile.php:335 +#: src/Module/Contact/Profile.php:372 msgid "Block/Unblock contact" msgstr "Spärra kontakt eller häv spärr" -#: src/Module/Contact/Profile.php:336 +#: src/Module/Contact/Profile.php:373 +#: src/Module/Moderation/Report/Create.php:293 msgid "Ignore contact" msgstr "Ignorera kontakt" -#: src/Module/Contact/Profile.php:337 +#: src/Module/Contact/Profile.php:374 msgid "View conversations" msgstr "Visa konversationer" -#: src/Module/Contact/Profile.php:342 +#: src/Module/Contact/Profile.php:379 msgid "Last update:" msgstr "Senaste uppdatering:" -#: src/Module/Contact/Profile.php:344 +#: src/Module/Contact/Profile.php:381 msgid "Update public posts" msgstr "Uppdatera publika inlägg" -#: src/Module/Contact/Profile.php:346 src/Module/Contact/Profile.php:430 +#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 msgid "Update now" msgstr "Updatera nu" -#: src/Module/Contact/Profile.php:353 -msgid "Currently blocked" -msgstr "Spärrad" - -#: src/Module/Contact/Profile.php:354 -msgid "Currently ignored" -msgstr "Ignoreras" - -#: src/Module/Contact/Profile.php:355 -msgid "Currently archived" -msgstr "" - -#: src/Module/Contact/Profile.php:356 +#: src/Module/Contact/Profile.php:385 msgid "Awaiting connection acknowledge" msgstr "" -#: src/Module/Contact/Profile.php:357 -#: src/Module/Notifications/Introductions.php:190 +#: src/Module/Contact/Profile.php:386 +msgid "Currently blocked" +msgstr "Spärrad" + +#: src/Module/Contact/Profile.php:387 +msgid "Currently ignored" +msgstr "Ignoreras" + +#: src/Module/Contact/Profile.php:388 +msgid "Currently collapsed" +msgstr "" + +#: src/Module/Contact/Profile.php:389 +msgid "Currently archived" +msgstr "" + +#: src/Module/Contact/Profile.php:392 +msgid "Manage remote servers" +msgstr "" + +#: src/Module/Contact/Profile.php:394 +#: src/Module/Notifications/Introductions.php:192 msgid "Hide this contact from others" msgstr "Göm den här kontakten för andra" -#: src/Module/Contact/Profile.php:357 +#: src/Module/Contact/Profile.php:394 msgid "" "Replies/likes to your public posts may still be visible" msgstr "" -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:395 msgid "Notification for new posts" msgstr "Avisering för nya inlägg" -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:395 msgid "Send a notification of every new post of this contact" msgstr "" -#: src/Module/Contact/Profile.php:360 +#: src/Module/Contact/Profile.php:397 msgid "Keyword Deny List" msgstr "" -#: src/Module/Contact/Profile.php:360 +#: src/Module/Contact/Profile.php:397 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "" -#: src/Module/Contact/Profile.php:378 -#: src/Module/Settings/TwoFactor/Index.php:135 +#: src/Module/Contact/Profile.php:415 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "Actions" msgstr "" -#: src/Module/Contact/Profile.php:386 +#: src/Module/Contact/Profile.php:417 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229 +msgid "Status" +msgstr "Status" + +#: src/Module/Contact/Profile.php:423 msgid "Mirror postings from this contact" msgstr "" -#: src/Module/Contact/Profile.php:388 +#: src/Module/Contact/Profile.php:425 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "" -#: src/Module/Contact/Profile.php:440 +#: src/Module/Contact/Profile.php:428 +msgid "Channel Settings" +msgstr "" + +#: src/Module/Contact/Profile.php:429 +msgid "Frequency of this contact in relevant channels" +msgstr "" + +#: src/Module/Contact/Profile.php:430 +msgid "" +"Depending on the type of the channel not all posts from this contact are " +"displayed. By default, posts need to have a minimum amount of interactions " +"(comments, likes) to show in your channels. On the other hand there can be " +"contacts who flood the channel, so you might want to see only some of their " +"posts. Or you don't want to see their content at all, but you don't want to " +"block or hide the contact completely." +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "Default frequency" +msgstr "" + +#: src/Module/Contact/Profile.php:431 +msgid "" +"Posts by this contact are displayed in the \"for you\" channel if you " +"interact often with this contact or if a post reached some level of " +"interaction." +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "Display all posts of this contact" +msgstr "" + +#: src/Module/Contact/Profile.php:432 +msgid "All posts from this contact will appear on the \"for you\" channel" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "Display only few posts" +msgstr "" + +#: src/Module/Contact/Profile.php:433 +msgid "" +"When a contact creates a lot of posts in a short period, this setting " +"reduces the number of displayed posts in every channel." +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Never display posts" +msgstr "" + +#: src/Module/Contact/Profile.php:434 +msgid "Posts from this contact will never be displayed in any channel" +msgstr "" + +#: src/Module/Contact/Profile.php:502 msgid "Refetch contact data" msgstr "" -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:513 msgid "Toggle Blocked status" msgstr "" -#: src/Module/Contact/Profile.php:459 +#: src/Module/Contact/Profile.php:521 msgid "Toggle Ignored status" msgstr "" -#: src/Module/Contact/Profile.php:466 src/Module/Contact/Revoke.php:105 +#: src/Module/Contact/Profile.php:529 +msgid "Toggle Collapsed status" +msgstr "" + +#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 msgid "Revoke Follow" msgstr "" -#: src/Module/Contact/Profile.php:468 +#: src/Module/Contact/Profile.php:538 msgid "Revoke the follow from this contact" msgstr "" -#: src/Module/Contact/Revoke.php:62 +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "Dålig begäran." + +#: src/Module/Contact/Revoke.php:63 msgid "Unknown contact." msgstr "" -#: src/Module/Contact/Revoke.php:72 src/Module/Group.php:112 -msgid "Contact is deleted." -msgstr "" - -#: src/Module/Contact/Revoke.php:76 +#: src/Module/Contact/Revoke.php:77 msgid "Contact is being deleted." msgstr "" -#: src/Module/Contact/Revoke.php:90 +#: src/Module/Contact/Revoke.php:91 msgid "Follow was successfully revoked." msgstr "" -#: src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Revoke.php:107 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "" -#: src/Module/Contact/Revoke.php:107 -#: src/Module/Notifications/Introductions.php:142 -#: src/Module/OAuth/Acknowledge.php:53 src/Module/Register.php:130 -#: src/Module/Settings/TwoFactor/Trusted.php:124 +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "Yes" msgstr "Ja" -#: src/Module/Conversation/Community.php:68 -msgid "Local Community" +#: src/Module/Contact/Suggestions.php:62 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: src/Module/Conversation/Community.php:71 -msgid "Posts from local users on this server" +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "Du följer inte den här kontakten." + +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "Avföljning stöds för närvarande inte av ditt nätverk." + +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "Koppla ur/Avfölj" + +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "Avföljningen av kontakten lyckades" + +#: src/Module/Contact/Unfollow.php:178 +msgid "Unable to unfollow this contact, please contact your administrator" msgstr "" -#: src/Module/Conversation/Community.php:79 -msgid "Global Community" -msgstr "" - -#: src/Module/Conversation/Community.php:82 -msgid "Posts from users of the whole federated network" -msgstr "" - -#: src/Module/Conversation/Community.php:115 -msgid "Own Contacts" -msgstr "Egna kontakter" - -#: src/Module/Conversation/Community.php:119 -msgid "Include" -msgstr "Inkludera" - -#: src/Module/Conversation/Community.php:120 -msgid "Hide" -msgstr "Dölj" - -#: src/Module/Conversation/Community.php:137 src/Module/Search/Index.php:152 +#: src/Module/Conversation/Channel.php:121 +#: src/Module/Conversation/Community.php:125 src/Module/Search/Index.php:152 #: src/Module/Search/Index.php:194 msgid "No results." msgstr "Inga resultat." -#: src/Module/Conversation/Community.php:162 +#: src/Module/Conversation/Channel.php:159 +msgid "Channel not available." +msgstr "" + +#: src/Module/Conversation/Community.php:91 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "" -#: src/Module/Conversation/Community.php:199 +#: src/Module/Conversation/Community.php:179 msgid "Community option not available." msgstr "" -#: src/Module/Conversation/Community.php:215 +#: src/Module/Conversation/Community.php:195 msgid "Not available." msgstr "Inte tillgängligt." -#: src/Module/Conversation/Network.php:173 -msgid "No such group" -msgstr "Gruppen finns inte" +#: src/Module/Conversation/Network.php:218 +msgid "No such circle" +msgstr "" -#: src/Module/Conversation/Network.php:177 +#: src/Module/Conversation/Network.php:222 #, php-format -msgid "Group: %s" -msgstr "Grupp: %s" - -#: src/Module/Conversation/Network.php:255 -msgid "Latest Activity" +msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:258 -msgid "Sort by latest activity" +#: src/Module/Conversation/Network.php:317 +msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Network.php:263 -msgid "Latest Posts" -msgstr "" +#: src/Module/Conversation/Timeline.php:158 +msgid "Own Contacts" +msgstr "Egna kontakter" -#: src/Module/Conversation/Network.php:266 -msgid "Sort by post received date" -msgstr "" +#: src/Module/Conversation/Timeline.php:162 +msgid "Include" +msgstr "Inkludera" -#: src/Module/Conversation/Network.php:271 -msgid "Latest Creation" -msgstr "" - -#: src/Module/Conversation/Network.php:274 -msgid "Sort by post creation date" -msgstr "" - -#: src/Module/Conversation/Network.php:279 -#: src/Module/Settings/Profile/Index.php:227 -msgid "Personal" -msgstr "Privat" - -#: src/Module/Conversation/Network.php:282 -msgid "Posts that mention or involve you" -msgstr "Inlägg som nämnde eller involverade dig" - -#: src/Module/Conversation/Network.php:287 src/Object/Post.php:351 -msgid "Starred" -msgstr "Stjärnmärkt" - -#: src/Module/Conversation/Network.php:290 -msgid "Favourite Posts" -msgstr "Favoriserade inlägg" +#: src/Module/Conversation/Timeline.php:163 +msgid "Hide" +msgstr "Dölj" #: src/Module/Credits.php:44 msgid "Credits" @@ -7264,23 +6752,31 @@ msgid "" "code or the translation of Friendica. Thank you all!" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:58 +#: src/Module/Debug/ActivityPubConversion.php:53 msgid "Formatted" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:70 +#: src/Module/Debug/ActivityPubConversion.php:65 msgid "Activity" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:122 +#: src/Module/Debug/ActivityPubConversion.php:117 msgid "Object data" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/ActivityPubConversion.php:124 msgid "Result Item" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:143 +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Fel" +msgstr[1] "Fel" + +#: src/Module/Debug/ActivityPubConversion.php:138 msgid "Source activity" msgstr "" @@ -7460,12 +6956,12 @@ msgstr "" msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" -#: src/Module/Debug/Feed.php:51 src/Module/Filer/SaveTag.php:46 -#: src/Module/Settings/Profile/Index.php:141 +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:177 msgid "You must be logged in to use this module" msgstr "Du måste vara inloggad för att använda denna modul" -#: src/Module/Debug/Feed.php:76 +#: src/Module/Debug/Feed.php:77 msgid "Source URL" msgstr "" @@ -7522,201 +7018,131 @@ msgstr "" msgid "Lookup address:" msgstr "" -#: src/Module/Delegation.php:111 +#: src/Module/Delegation.php:110 #, php-format msgid "You are now logged in as %s" msgstr "Du är nu inloggad som %s" -#: src/Module/Delegation.php:143 +#: src/Module/Delegation.php:142 msgid "Switch between your accounts" msgstr "Växla mellan dina konton" -#: src/Module/Delegation.php:144 +#: src/Module/Delegation.php:143 msgid "Manage your accounts" msgstr "Hantera dina konton" -#: src/Module/Delegation.php:145 +#: src/Module/Delegation.php:144 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "" -#: src/Module/Delegation.php:146 +#: src/Module/Delegation.php:145 msgid "Select an identity to manage: " msgstr "Välj vilken identitet du vill hantera: " -#: src/Module/Directory.php:75 +#: src/Module/Directory.php:74 msgid "No entries (some entries may be hidden)." msgstr "Inget att visa. (Man kan välja att inte synas här)" -#: src/Module/Directory.php:91 +#: src/Module/Directory.php:90 msgid "Find on this site" msgstr "Hitta på den här sidan" -#: src/Module/Directory.php:93 +#: src/Module/Directory.php:92 msgid "Results for:" msgstr "" -#: src/Module/Directory.php:95 +#: src/Module/Directory.php:94 msgid "Site Directory" msgstr "Medlemskatalog" -#: src/Module/Filer/RemoveTag.php:68 -msgid "Item was not removed" -msgstr "" - -#: src/Module/Filer/RemoveTag.php:71 +#: src/Module/Filer/RemoveTag.php:105 msgid "Item was not deleted" msgstr "" -#: src/Module/Filer/SaveTag.php:72 +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "" + +#: src/Module/Filer/SaveTag.php:73 msgid "- select -" msgstr "- välj -" -#: src/Module/FriendSuggest.php:81 +#: src/Module/FriendSuggest.php:82 msgid "Suggested contact not found." msgstr "" -#: src/Module/FriendSuggest.php:99 +#: src/Module/FriendSuggest.php:100 msgid "Friend suggestion sent." msgstr "Vän-förslag skickades." -#: src/Module/FriendSuggest.php:136 +#: src/Module/FriendSuggest.php:137 msgid "Suggest Friends" msgstr "Föreslå vänner" -#: src/Module/FriendSuggest.php:139 +#: src/Module/FriendSuggest.php:140 #, php-format msgid "Suggest a friend for %s" msgstr "Föreslå en vän till %s" -#: src/Module/Friendica.php:62 +#: src/Module/Friendica.php:82 msgid "Installed addons/apps:" msgstr "" -#: src/Module/Friendica.php:67 +#: src/Module/Friendica.php:87 msgid "No installed addons/apps" msgstr "" -#: src/Module/Friendica.php:72 +#: src/Module/Friendica.php:92 #, php-format msgid "Read about the Terms of Service of this node." msgstr "" -#: src/Module/Friendica.php:79 +#: src/Module/Friendica.php:99 msgid "On this server the following remote servers are blocked." msgstr "" -#: src/Module/Friendica.php:97 +#: src/Module/Friendica.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:111 +msgid "Reason for the block" +msgstr "Anledning för blockeringen" + +#: src/Module/Friendica.php:104 +msgid "Download this list in CSV format" +msgstr "" + +#: src/Module/Friendica.php:118 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "" -#: src/Module/Friendica.php:102 +#: src/Module/Friendica.php:123 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:124 msgid "Bug reports and issues: please visit" msgstr "Anmäl buggar eller andra problem, gå till" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:124 msgid "the bugtracker at github" msgstr "" -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:125 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "" -#: src/Module/Group.php:58 -msgid "Could not create group." -msgstr "Det gick inte att skapa gruppen." - -#: src/Module/Group.php:69 src/Module/Group.php:215 src/Module/Group.php:239 -msgid "Group not found." -msgstr "Gruppen hittades inte." - -#: src/Module/Group.php:75 -msgid "Group name was not changed." -msgstr "" - -#: src/Module/Group.php:93 -msgid "Unknown group." -msgstr "" - -#: src/Module/Group.php:118 -msgid "Unable to add the contact to the group." -msgstr "" - -#: src/Module/Group.php:121 -msgid "Contact successfully added to group." -msgstr "" - -#: src/Module/Group.php:125 -msgid "Unable to remove the contact from the group." -msgstr "" - -#: src/Module/Group.php:128 -msgid "Contact successfully removed from group." -msgstr "" - -#: src/Module/Group.php:132 -msgid "Bad request." -msgstr "" - -#: src/Module/Group.php:171 -msgid "Save Group" -msgstr "Spara grupp" - -#: src/Module/Group.php:172 -msgid "Filter" -msgstr "" - -#: src/Module/Group.php:178 -msgid "Create a group of contacts/friends." -msgstr "Skapa en grupp med kontakter/vänner." - -#: src/Module/Group.php:220 -msgid "Unable to remove group." -msgstr "Det gick inte att ta bort gruppen." - -#: src/Module/Group.php:271 -msgid "Delete Group" -msgstr "" - -#: src/Module/Group.php:281 -msgid "Edit Group Name" -msgstr "" - -#: src/Module/Group.php:291 -msgid "Members" -msgstr "Medlemmar" - -#: src/Module/Group.php:294 -msgid "Group is empty" -msgstr "Gruppen är tom" - -#: src/Module/Group.php:307 -msgid "Remove contact from group" -msgstr "" - -#: src/Module/Group.php:328 -msgid "Click on a contact to add or remove." -msgstr "Klicka på en kontakt för att lägga till eller ta bort." - -#: src/Module/Group.php:342 -msgid "Add contact to group" -msgstr "" - -#: src/Module/HCard.php:46 +#: src/Module/HCard.php:45 msgid "No profile" msgstr "Ingen profil" -#: src/Module/HTTPException/MethodNotAllowed.php:32 +#: src/Module/HTTPException/MethodNotAllowed.php:31 msgid "Method Not Allowed." msgstr "" @@ -7724,161 +7150,154 @@ msgstr "" msgid "Help:" msgstr "Hjälp:" -#: src/Module/Home.php:54 +#: src/Module/Home.php:63 #, php-format msgid "Welcome to %s" msgstr "Välkommen till %s" -#: src/Module/Install.php:195 +#: src/Module/Install.php:189 msgid "Friendica Communications Server - Setup" msgstr "" -#: src/Module/Install.php:206 +#: src/Module/Install.php:200 msgid "System check" msgstr "Systemkontroll" -#: src/Module/Install.php:208 src/Module/Install.php:265 -#: src/Module/Install.php:348 +#: src/Module/Install.php:202 src/Module/Install.php:247 +#: src/Module/Install.php:326 msgid "Requirement not satisfied" msgstr "" -#: src/Module/Install.php:209 +#: src/Module/Install.php:203 msgid "Optional requirement not satisfied" msgstr "" -#: src/Module/Install.php:210 +#: src/Module/Install.php:204 msgid "OK" msgstr "" -#: src/Module/Install.php:215 +#: src/Module/Install.php:208 +msgid "Next" +msgstr "Nästa" + +#: src/Module/Install.php:209 msgid "Check again" msgstr "Kolla igen" -#: src/Module/Install.php:230 +#: src/Module/Install.php:222 msgid "Base settings" msgstr "" -#: src/Module/Install.php:237 -msgid "Host name" -msgstr "Värdnamn" - -#: src/Module/Install.php:239 -msgid "" -"Overwrite this field in case the determinated hostname isn't right, " -"otherweise leave it as is." -msgstr "" - -#: src/Module/Install.php:242 +#: src/Module/Install.php:224 msgid "Base path to installation" msgstr "Grundväg till installationen" -#: src/Module/Install.php:244 +#: src/Module/Install.php:226 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "" -#: src/Module/Install.php:247 -msgid "Sub path of the URL" +#: src/Module/Install.php:229 +msgid "The Friendica system URL" msgstr "" -#: src/Module/Install.php:249 +#: src/Module/Install.php:231 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." +"Overwrite this field in case the system URL determination isn't right, " +"otherwise leave it as is." msgstr "" -#: src/Module/Install.php:260 +#: src/Module/Install.php:242 msgid "Database connection" msgstr "Databas-anslutning" -#: src/Module/Install.php:261 +#: src/Module/Install.php:243 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "För att kunna installera Friendica så behöver vi veta hur du ansluter till din databas." -#: src/Module/Install.php:262 +#: src/Module/Install.php:244 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Please contact your hosting provider or site administrator if you have questions about these settings." -#: src/Module/Install.php:263 +#: src/Module/Install.php:245 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "" -#: src/Module/Install.php:272 +#: src/Module/Install.php:252 msgid "Database Server Name" msgstr "Database Server Name" -#: src/Module/Install.php:277 +#: src/Module/Install.php:257 msgid "Database Login Name" msgstr "Database Login Name" -#: src/Module/Install.php:283 +#: src/Module/Install.php:263 msgid "Database Login Password" msgstr "Database Login Password" -#: src/Module/Install.php:285 +#: src/Module/Install.php:265 msgid "For security reasons the password must not be empty" msgstr "" -#: src/Module/Install.php:288 +#: src/Module/Install.php:268 msgid "Database Name" msgstr "Database Name" -#: src/Module/Install.php:292 src/Module/Install.php:322 +#: src/Module/Install.php:272 src/Module/Install.php:300 msgid "Please select a default timezone for your website" msgstr "Please select a default timezone for your website" -#: src/Module/Install.php:307 +#: src/Module/Install.php:287 msgid "Site settings" msgstr "" -#: src/Module/Install.php:317 +#: src/Module/Install.php:295 msgid "Site administrator email address" msgstr "" -#: src/Module/Install.php:319 +#: src/Module/Install.php:297 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "" -#: src/Module/Install.php:326 +#: src/Module/Install.php:304 msgid "System Language:" msgstr "" -#: src/Module/Install.php:328 +#: src/Module/Install.php:306 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "" -#: src/Module/Install.php:340 +#: src/Module/Install.php:318 msgid "Your Friendica site database has been installed." msgstr "Databasen för din friendicasajt har installerats." -#: src/Module/Install.php:350 +#: src/Module/Install.php:328 msgid "Installation finished" msgstr "" -#: src/Module/Install.php:370 +#: src/Module/Install.php:348 msgid "

    What next

    " msgstr "

    Det som kommer härnäst

    " -#: src/Module/Install.php:371 +#: src/Module/Install.php:349 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "" -#: src/Module/Install.php:374 +#: src/Module/Install.php:352 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -7990,41 +7409,51 @@ msgid "" "important, please visit http://friendi.ca" msgstr "" -#: src/Module/Item/Compose.php:50 +#: src/Module/Item/Compose.php:85 msgid "Please enter a post body." msgstr "" -#: src/Module/Item/Compose.php:63 +#: src/Module/Item/Compose.php:98 msgid "This feature is only available with the frio theme." msgstr "" -#: src/Module/Item/Compose.php:90 +#: src/Module/Item/Compose.php:122 msgid "Compose new personal note" msgstr "" -#: src/Module/Item/Compose.php:99 +#: src/Module/Item/Compose.php:131 msgid "Compose new post" msgstr "" -#: src/Module/Item/Compose.php:153 +#: src/Module/Item/Compose.php:187 msgid "Visibility" msgstr "" -#: src/Module/Item/Compose.php:174 +#: src/Module/Item/Compose.php:203 msgid "Clear the location" msgstr "" -#: src/Module/Item/Compose.php:175 +#: src/Module/Item/Compose.php:204 msgid "Location services are unavailable on your device" msgstr "" -#: src/Module/Item/Compose.php:176 +#: src/Module/Item/Compose.php:205 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "" -#: src/Module/Item/Follow.php:52 +#: src/Module/Item/Compose.php:211 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "" + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "Flödet för det här föremålet är otillgängligt." + +#: src/Module/Item/Follow.php:51 msgid "Unable to follow this item." msgstr "" @@ -8043,107 +7472,1092 @@ msgstr "" msgid "A Decentralized Social Network" msgstr "" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Filer" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload" +msgstr "Ladda upp" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: src/Module/Media/Attachment/Upload.php:97 +msgid "Or - did you try to upload an empty file?" +msgstr "Eller - provade du att ladda upp en tom fil?" + +#: src/Module/Media/Attachment/Upload.php:104 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Filen överstiger maxstorleken %s" + +#: src/Module/Media/Attachment/Upload.php:114 +msgid "File upload failed." +msgstr "Uppladdning av filen misslyckades." + +#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:68 +msgid "Unable to process image." +msgstr "Det gick inte att behandla bilden." + +#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 +#: src/Module/Settings/Profile/Photo/Index.php:95 +msgid "Image upload failed." +msgstr "Fel vid bilduppladdning." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "Lista över alla användare" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "Aktiv" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "Lista över aktiva konton" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "Lista över väntande registreringar" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "Lista över blockerade användare" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "Ta bort" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "Lista över väntande borttagningar av användare" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492 +msgid "Normal Account Page" +msgstr "Normal konto-sida" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499 +msgid "Soapbox Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:506 +msgid "Public Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:513 +msgid "Automatic Friend Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464 +msgid "Personal Page" +msgstr "Personlig sida" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:471 +msgid "Organisation Page" +msgstr "Sida för organisation" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:478 +msgid "News Page" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485 +msgid "Community Group" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "Fördröj" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "Du kan inte blockera en lokal kontakt, vänligen blockera användaren istället" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "välj alla" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "välj ingen" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Reports.php:95 +msgid "Photo" +msgstr "Foto" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "Anledning" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "" + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +msgid "Block Reason" +msgstr "Anledning för blockering" + +#: src/Module/Moderation/Blocklist/Server/Add.php:80 +msgid "Server domain pattern added to the blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "← Return to the list" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +msgid "Block A New Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 +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" +"
    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Check pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Matching known servers" +msgstr "Matchar kända servrar" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +#: src/Module/Settings/Server/Action.php:76 +#: src/Module/Settings/Server/Index.php:106 +msgid "Server Name" +msgstr "Namn på server" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +msgid "Server Domain" +msgstr "Serverns domän" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Known Contacts" +msgstr "Kända kontakter" + +#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "%d känd server" +msgstr[1] "%d kända servrar" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +msgid "Add pattern to the blocklist" +msgstr "Lägg till mönster till blockeringslistan" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "Server Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Index.php:116 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "Purge server" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:137 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "Block reason" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Add.php:138 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:74 +#: src/Module/Moderation/Blocklist/Server/Import.php:83 +msgid "Error importing pattern file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:89 +msgid "Local blocklist replaced with the provided file." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:95 +msgid "No pattern was added to the local blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "" +"

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

    " +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Upload file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Patterns to import" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:125 +msgid "Import Mode" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +msgid "Import Patterns" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:129 +#: src/Module/Moderation/Blocklist/Server/Index.php:115 +msgid "Server domain pattern blocklist CSV file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "Append" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:130 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replace" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:131 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:86 +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +msgid "Blocked server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Delete server domain pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:88 +msgid "Check to delete this entry from the blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:98 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Import server domain pattern blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Add new entry to the blocklist" +msgstr "Lägg till ny post till blockeringslistan" + +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Save changes to the blocklist" +msgstr "Spara ändringen i blockeringslistan" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Current Entries in the Blocklist" +msgstr "Nuvarande poster i blockeringslistan" + +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Delete entry from the blocklist" +msgstr "Ta bort post från blockeringslistan" + +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Delete entry from the blocklist?" +msgstr "Ta bort post från blockeringslistan?" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "Objektet är markerat för borttagning." + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "Ta bort det här objektet" + +#: src/Module/Moderation/Item/Delete.php:64 +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 "" + +#: src/Module/Moderation/Item/Delete.php:65 +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 "" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "Objektets GUID som du vill ta bort." + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "Villkor" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "Taggar" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "Typ" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "Villkor" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "Webbadress" + +#: src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "Nämn" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Hittades inte" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:95 +msgid "Contact not found or their server is already blocked on this node." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:136 +msgid "Please login to access this page." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:165 +#: src/Module/Moderation/Report/Create.php:180 +#: src/Module/Moderation/Report/Create.php:208 +#: src/Module/Moderation/Report/Create.php:260 +#: src/Module/Moderation/Report/Create.php:279 +msgid "Create Moderation Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:166 +msgid "Pick Contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:167 +msgid "" +"Please enter below the contact address or profile URL you would like to " +"create a moderation report about." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:171 +msgid "Contact address/URL" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:181 +msgid "Pick Category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:182 +msgid "Please pick below the category of your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:311 +msgid "Spam" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:186 +msgid "" +"This contact is publishing many repeated/overly long posts/replies or " +"advertising their product/websites in otherwise irrelevant conversations." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:312 +msgid "Illegal Content" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:187 +msgid "" +"This contact is publishing content that is considered illegal in this node's" +" hosting juridiction." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:313 +msgid "Community Safety" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:188 +msgid "" +"This contact aggravated you or other people, by being provocative or " +"insensitive, intentionally or not. This includes disclosing people's private" +" information (doxxing), posting threats or offensive pictures in posts or " +"replies." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:314 +msgid "Unwanted Content/Behavior" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:189 +msgid "" +"This contact has repeatedly published content irrelevant to the node's theme" +" or is openly criticizing the node's administration/moderation without " +"directly engaging with the relevant people for example or repeatedly " +"nitpicking on a sensitive topic." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:315 +msgid "Rules Violation" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:190 +msgid "" +"This contact violated one or more rules of this node. You will be able to " +"pick which one(s) in the next step." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:191 +msgid "" +"Please elaborate below why you submitted this report. The more details you " +"provide, the better your report can be handled." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "Additional Information" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:193 +msgid "" +"Please provide any additional information relevant to this particular " +"report. You will be able to attach posts by this contact in the next step, " +"but any context is welcome." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:209 +msgid "Pick Rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:210 +msgid "Please pick below the node rules you believe this contact violated." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:261 +msgid "Pick Posts" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:262 +msgid "Please optionally pick posts to attach to your report." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:281 +msgid "Submit Report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:282 +msgid "Further Action" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:283 +msgid "" +"You can also perform one of the following action on the contact you " +"reported:" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:291 +msgid "Nothing" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "Collapse contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:292 +msgid "" +"Their posts and replies will keep appearing in your Network page but their " +"content will be collapsed by default." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:293 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads. They still can follow you." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "Block contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:294 +msgid "" +"Their posts won't appear in your Network page anymore, but their replies can" +" appear in forum threads, with their content collapsed by default. They " +"cannot follow you but still can have access to your public posts by other " +"means." +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Forward report" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:297 +msgid "Would you ike to forward this report to the remote server?" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:330 +msgid "1. Pick a contact" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:331 +msgid "2. Pick a category" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:332 +msgid "2a. Pick rules" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:333 +msgid "2b. Add comment" +msgstr "" + +#: src/Module/Moderation/Report/Create.php:334 +msgid "3. Pick posts" +msgstr "" + +#: src/Module/Moderation/Reports.php:90 +msgid "List of reports" +msgstr "" + +#: src/Module/Moderation/Reports.php:91 +msgid "This page display reports created by our or remote users." +msgstr "" + +#: src/Module/Moderation/Reports.php:92 +msgid "No report exists at this node." +msgstr "" + +#: src/Module/Moderation/Reports.php:95 +msgid "Category" +msgstr "" + +#: src/Module/Moderation/Reports.php:101 +#, php-format +msgid "%s total report" +msgid_plural "%s total reports" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Reports.php:104 +msgid "URL of the reported contact." +msgstr "" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Vanligt konto" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Konto med automatiskt godkännande av vänner." + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Blogg-konto" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Group Account" +msgstr "" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Registrerade användare" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Väntande registreringar" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Active.php:51 +#: src/Module/Moderation/Users/Active.php:85 +#: src/Module/Moderation/Users/Blocked.php:51 +#: src/Module/Moderation/Users/Blocked.php:85 +#: src/Module/Moderation/Users/Index.php:58 +#: src/Module/Moderation/Users/Index.php:92 +msgid "You can't remove yourself" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:55 +#: src/Module/Moderation/Users/Blocked.php:55 +#: src/Module/Moderation/Users/Index.php:62 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%sanvändare togs bort" +msgstr[1] "%s användare togs bort" + +#: src/Module/Moderation/Users/Active.php:83 +#: src/Module/Moderation/Users/Blocked.php:83 +#: src/Module/Moderation/Users/Index.php:90 +#, php-format +msgid "User \"%s\" deleted" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:93 +#: src/Module/Moderation/Users/Index.php:100 +#, php-format +msgid "User \"%s\" blocked" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Register date" +msgstr "Datum för registrering" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last login" +msgstr "Senaste inloggning" + +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Last public item" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:134 +msgid "Active Accounts" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:138 +#: src/Module/Moderation/Users/Blocked.php:137 +#: src/Module/Moderation/Users/Index.php:153 +msgid "User blocked" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:139 +#: src/Module/Moderation/Users/Blocked.php:139 +#: src/Module/Moderation/Users/Index.php:155 +msgid "Site admin" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:140 +#: src/Module/Moderation/Users/Blocked.php:140 +#: src/Module/Moderation/Users/Index.php:156 +msgid "Account expired" +msgstr "Kontot slutade gälla" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +msgid "Create a new user" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:147 +#: src/Module/Moderation/Users/Blocked.php:146 +#: src/Module/Moderation/Users/Index.php:165 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: src/Module/Moderation/Users/Active.php:148 +#: src/Module/Moderation/Users/Blocked.php:147 +#: src/Module/Moderation/Users/Index.php:166 +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 "" + +#: src/Module/Moderation/Users/Blocked.php:43 +#: src/Module/Moderation/Users/Index.php:50 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Blocked.php:92 +#: src/Module/Moderation/Users/Index.php:106 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "Ny användare" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "Lägg till användare" + +#: src/Module/Moderation/Users/Create.php:70 +msgid "Name of the new user." +msgstr "Namn på den nya användaren." + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname" +msgstr "Smeknamn" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Nickname of the new user." +msgstr "Smeknamn på den nya användaren." + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Email address of the new user." +msgstr "E-postadress för den nya användaren." + +#: src/Module/Moderation/Users/Deleted.php:81 +msgid "Users awaiting permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Deleted.php:83 +#: src/Module/Moderation/Users/Index.php:160 +msgid "Permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:51 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Moderation/Users/Pending.php:76 +msgid "Account approved." +msgstr "Kontot har godkänts." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Datum för begäran" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "Inga registreringar." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Avslå" + +#: src/Module/Notifications/Introductions.php:99 msgid "Show Ignored Requests" msgstr "Visa förfrågningar du ignorerat" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Notifications/Introductions.php:99 msgid "Hide Ignored Requests" msgstr "Dölj förfrågningar du ignorerat" -#: src/Module/Notifications/Introductions.php:113 -#: src/Module/Notifications/Introductions.php:176 +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 msgid "Notification type:" msgstr "" -#: src/Module/Notifications/Introductions.php:116 +#: src/Module/Notifications/Introductions.php:118 msgid "Suggested by:" msgstr "" -#: src/Module/Notifications/Introductions.php:141 +#: src/Module/Notifications/Introductions.php:143 msgid "Claims to be known to you: " msgstr "Hävdar att du vet vem han/hon är: " -#: src/Module/Notifications/Introductions.php:142 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:124 +#: src/Module/Notifications/Introductions.php:144 +#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "No" msgstr "Nej" -#: src/Module/Notifications/Introductions.php:150 +#: src/Module/Notifications/Introductions.php:152 msgid "Shall your connection be bidirectional or not?" msgstr "" -#: src/Module/Notifications/Introductions.php:151 +#: src/Module/Notifications/Introductions.php:153 #, 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 "" -#: src/Module/Notifications/Introductions.php:152 +#: src/Module/Notifications/Introductions.php:154 #, 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 "" -#: src/Module/Notifications/Introductions.php:154 +#: src/Module/Notifications/Introductions.php:156 msgid "Friend" msgstr "Vän" -#: src/Module/Notifications/Introductions.php:155 +#: src/Module/Notifications/Introductions.php:157 msgid "Subscriber" msgstr "" -#: src/Module/Notifications/Introductions.php:214 +#: src/Module/Notifications/Introductions.php:216 msgid "No introductions." msgstr "Inga presentationer." -#: src/Module/Notifications/Introductions.php:215 -#: src/Module/Notifications/Notifications.php:134 +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 #, php-format msgid "No more %s notifications." msgstr "" -#: src/Module/Notifications/Notification.php:134 +#: src/Module/Notifications/Notification.php:135 msgid "You must be logged in to show this page." msgstr "" -#: src/Module/Notifications/Notifications.php:65 +#: src/Module/Notifications/Notifications.php:66 msgid "Network Notifications" msgstr "Nätverksaviseringar" -#: src/Module/Notifications/Notifications.php:71 +#: src/Module/Notifications/Notifications.php:72 msgid "System Notifications" msgstr "Systemets aviseringar" -#: src/Module/Notifications/Notifications.php:77 +#: src/Module/Notifications/Notifications.php:78 msgid "Personal Notifications" msgstr "Privata aviseringar" -#: src/Module/Notifications/Notifications.php:83 +#: src/Module/Notifications/Notifications.php:84 msgid "Home Notifications" msgstr "Hem-aviseringar" -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Notifications/Notifications.php:140 msgid "Show unread" msgstr "" -#: src/Module/Notifications/Ping.php:221 +#: src/Module/Notifications/Ping.php:246 msgid "{0} requested registration" msgstr "{0} bad om registrering" -#: src/Module/Notifications/Ping.php:232 +#: src/Module/Notifications/Ping.php:255 #, php-format msgid "{0} and %d others requested registration" msgstr "{0} och %d andra bad om registrering" -#: src/Module/OAuth/Acknowledge.php:50 +#: src/Module/OAuth/Acknowledge.php:51 msgid "Authorize application connection" msgstr "" -#: src/Module/OAuth/Acknowledge.php:52 +#: src/Module/OAuth/Acknowledge.php:53 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" @@ -8153,7 +8567,7 @@ msgstr "Vill du ge den här applikationen åtkomst till dina inlägg och kontakt msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:72 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 msgid "Incomplete request data" msgstr "" @@ -8164,175 +8578,418 @@ msgid "" "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:96 +#: src/Module/OAuth/Token.php:83 +msgid "Invalid data or unknown client" +msgstr "" + +#: src/Module/OAuth/Token.php:108 msgid "Unsupported or missing grant type" msgstr "" +#: src/Module/OStatus/Repair.php:83 +msgid "Resubscribing to OStatus contacts" +msgstr "" + +#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 +msgid "Keep this window open until done." +msgstr "Håll det här fönstret öppet tills du är klar." + +#: src/Module/OStatus/Repair.php:85 +msgid "✔ Done" +msgstr "" + +#: src/Module/OStatus/Repair.php:86 +msgid "No OStatus contacts to resubscribe to." +msgstr "" + +#: src/Module/OStatus/Subscribe.php:70 +msgid "Subscribing to contacts" +msgstr "Prenumererar på kontakter" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "Ingen kontakt angedd" + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "Kunde inte hämta information för kontakten." + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "Kunde inte hämta vänner för kontakt." + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "Kunde inte hämta följande kontakter." + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "Kunde inte hämta profil" + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "Nätverket stöds inte" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Färdig" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "lyckades" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "misslyckades" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "ignorerades" + #: src/Module/PermissionTooltip.php:49 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "" -#: src/Module/PermissionTooltip.php:66 +#: src/Module/PermissionTooltip.php:79 msgid "Model not found" msgstr "" -#: src/Module/PermissionTooltip.php:89 +#: src/Module/PermissionTooltip.php:94 msgid "Unlisted" msgstr "" -#: src/Module/PermissionTooltip.php:107 +#: src/Module/PermissionTooltip.php:112 msgid "Remote privacy information not available." msgstr "Remote privacy information not available." -#: src/Module/PermissionTooltip.php:116 +#: src/Module/PermissionTooltip.php:121 msgid "Visible to:" msgstr "Synlig för:" -#: src/Module/PermissionTooltip.php:200 +#: src/Module/PermissionTooltip.php:204 #, php-format msgid "Collection (%s)" msgstr "" -#: src/Module/PermissionTooltip.php:204 +#: src/Module/PermissionTooltip.php:208 #, php-format msgid "Followers (%s)" msgstr "" -#: src/Module/PermissionTooltip.php:223 +#: src/Module/PermissionTooltip.php:227 #, php-format msgid "%d more" msgstr "" -#: src/Module/PermissionTooltip.php:227 +#: src/Module/PermissionTooltip.php:231 #, php-format msgid "To: %s
    " msgstr "" -#: src/Module/PermissionTooltip.php:230 +#: src/Module/PermissionTooltip.php:234 #, php-format msgid "CC: %s
    " msgstr "" -#: src/Module/PermissionTooltip.php:233 +#: src/Module/PermissionTooltip.php:237 #, php-format msgid "BCC: %s
    " msgstr "" -#: src/Module/Photo.php:128 +#: src/Module/PermissionTooltip.php:240 +#, php-format +msgid "Audience: %s
    " +msgstr "" + +#: src/Module/PermissionTooltip.php:243 +#, php-format +msgid "Attributed To: %s
    " +msgstr "" + +#: src/Module/Photo.php:130 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:141 +#: src/Module/Photo.php:155 #, php-format msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:192 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:194 #, php-format msgid "Invalid photo with id %s." msgstr "" -#: src/Module/Profile/Contacts.php:120 +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "" + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Ändra inlägg" + +#: src/Module/Post/Edit.php:136 +msgid "web link" +msgstr "webblänk" + +#: src/Module/Post/Edit.php:137 +msgid "Insert video link" +msgstr "Klistra in videolänk" + +#: src/Module/Post/Edit.php:138 +msgid "video link" +msgstr "videolänk" + +#: src/Module/Post/Edit.php:139 +msgid "Insert audio link" +msgstr "Klistra in ljudlänk" + +#: src/Module/Post/Edit.php:140 +msgid "audio link" +msgstr "ljudlänk" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Ta bort tagg" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Välj vilken tagg som ska tas bort: " + +#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Ta bort" + +#: src/Module/Profile/Contacts.php:159 msgid "No contacts." msgstr "Inga kontakter." -#: src/Module/Profile/Profile.php:82 +#: src/Module/Profile/Conversations.php:106 +#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Protocol/OStatus.php:1009 +#, php-format +msgid "%s's timeline" +msgstr "" + +#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 +#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#, php-format +msgid "%s's posts" +msgstr "" + +#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 +#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#, php-format +msgid "%s's comments" +msgstr "" + +#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:59 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Bildstorlek överstiger %s" + +#: src/Module/Profile/Photos.php:170 +msgid "Image upload didn't complete, please try again" +msgstr "Uppladdningen av bilden slutfördes inte, vänligen försök igen." + +#: src/Module/Profile/Photos.php:173 +msgid "Image file is missing" +msgstr "Bildfilen saknas" + +#: src/Module/Profile/Photos.php:178 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "Servern kan just nu inte acceptera uppladdning av en ny fil, vänligen kontakta din administratör" + +#: src/Module/Profile/Photos.php:202 +msgid "Image file is empty." +msgstr "Bildfilen är tom." + +#: src/Module/Profile/Photos.php:356 +msgid "View Album" +msgstr "Titta i album" + +#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 msgid "Profile not found." msgstr "Profilen hittades inte." -#: src/Module/Profile/Profile.php:135 +#: src/Module/Profile/Profile.php:158 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "" -#: src/Module/Profile/Profile.php:144 src/Module/Settings/Account.php:575 +#: src/Module/Profile/Profile.php:167 msgid "Full Name:" msgstr "Fullständigt namn:" -#: src/Module/Profile/Profile.php:149 +#: src/Module/Profile/Profile.php:172 msgid "Member since:" msgstr "" -#: src/Module/Profile/Profile.php:155 +#: src/Module/Profile/Profile.php:178 msgid "j F, Y" msgstr "j F, Y" -#: src/Module/Profile/Profile.php:156 +#: src/Module/Profile/Profile.php:179 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 msgid "Birthday:" msgstr "Födelsedatum:" -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 msgid "Age: " msgstr "Ålder: " -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:190 +#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "" msgstr[1] "" -#: src/Module/Profile/Profile.php:234 -msgid "Forums:" +#: src/Module/Profile/Profile.php:195 +#: src/Module/Settings/Profile/Index.php:284 +msgid "Description:" +msgstr "Beskrivning:" + +#: src/Module/Profile/Profile.php:261 +msgid "Groups:" msgstr "" -#: src/Module/Profile/Profile.php:246 +#: src/Module/Profile/Profile.php:273 msgid "View profile as:" msgstr "" -#: src/Module/Profile/Profile.php:263 +#: src/Module/Profile/Profile.php:290 msgid "View as" msgstr "" -#: src/Module/Profile/Profile.php:326 src/Module/Profile/Profile.php:329 -#: src/Module/Profile/Status.php:66 src/Module/Profile/Status.php:69 -#: src/Protocol/Feed.php:1018 src/Protocol/OStatus.php:1276 -#, php-format -msgid "%s's timeline" +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "Profilen är inte tillgänglig." + +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "Invalid locator" + +#: src/Module/Profile/RemoteFollow.php:95 +msgid "The provided profile link doesn't seem to be valid" msgstr "" -#: src/Module/Profile/Profile.php:327 src/Module/Profile/Status.php:67 -#: src/Protocol/Feed.php:1022 src/Protocol/OStatus.php:1281 -#, php-format -msgid "%s's posts" +#: src/Module/Profile/RemoteFollow.php:100 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." msgstr "" -#: src/Module/Profile/Profile.php:328 src/Module/Profile/Status.php:68 -#: src/Protocol/Feed.php:1025 src/Protocol/OStatus.php:1285 +#: src/Module/Profile/RemoteFollow.php:128 +msgid "Friend/Connection Request" +msgstr "Vän- eller kontaktförfrågan" + +#: src/Module/Profile/RemoteFollow.php:129 #, php-format -msgid "%s's comments" +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 "" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/RemoteFollow.php:130 +#, 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 "" + +#: src/Module/Profile/RemoteFollow.php:131 +msgid "Your Webfinger address or profile URL:" +msgstr "" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "" + +#: src/Module/Profile/Schedule.php:83 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:84 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:86 +#: src/Module/Profile/Schedule.php:85 msgid "Remove post" msgstr "" +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "" + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Kunde inte kontrollera platsen för ditt hem." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "" + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "" + +#: src/Module/Profile/UnkMail.php:152 +#, 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 "" + +#: src/Module/Profile/UnkMail.php:160 +msgid "To" +msgstr "" + +#: src/Module/Profile/UnkMail.php:161 +msgid "Subject" +msgstr "" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Your message" +msgstr "" + #: src/Module/Register.php:84 msgid "Only parent users can create additional accounts." msgstr "" +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + #: src/Module/Register.php:116 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " @@ -8383,7 +9040,8 @@ msgstr "" msgid "Please repeat your e-mail address:" msgstr "" -#: src/Module/Register.php:162 src/Module/Settings/Account.php:566 +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:567 msgid "New Password:" msgstr "Nytt lösenord" @@ -8391,7 +9049,8 @@ msgstr "Nytt lösenord" msgid "Leave empty for an auto generated password." msgstr "" -#: src/Module/Register.php:163 src/Module/Settings/Account.php:567 +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:568 msgid "Confirm:" msgstr "Bekräfta (repetera):" @@ -8406,6 +9065,10 @@ msgstr "" msgid "Choose a nickname: " msgstr "Välj ett användarnamn: " +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Importera" + #: src/Module/Register.php:174 msgid "Import your profile to this friendica instance" msgstr "Importera din profil till den här friendica-instansen" @@ -8414,11 +9077,11 @@ msgstr "Importera din profil till den här friendica-instansen" msgid "Note: This node explicitly contains adult content" msgstr "" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:155 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 msgid "Parent Password:" msgstr "" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:155 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "" @@ -8448,68 +9111,36 @@ msgid "" "Registration successful. Please check your email for further instructions." msgstr "Registrering klar. Kolla din e-post för vidare information." -#: src/Module/Register.php:339 +#: src/Module/Register.php:342 #, php-format msgid "" "Failed to send email message. Here your accout details:
    login: %s
    " "password: %s

    You can change your password after login." msgstr "" -#: src/Module/Register.php:345 +#: src/Module/Register.php:348 msgid "Registration successful." msgstr "" -#: src/Module/Register.php:350 src/Module/Register.php:357 +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 msgid "Your registration can not be processed." msgstr "Det går inte att behandla registreringen." -#: src/Module/Register.php:356 +#: src/Module/Register.php:363 msgid "You have to leave a request note for the admin." msgstr "" -#: src/Module/Register.php:402 +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "" + +#: src/Module/Register.php:395 msgid "Your registration is pending approval by the site owner." msgstr "Din registrering inväntar godkännande av webbplatsens ägare." -#: src/Module/RemoteFollow.php:71 -msgid "Profile unavailable." -msgstr "Profilen är inte tillgänglig." - -#: src/Module/RemoteFollow.php:77 -msgid "Invalid locator" -msgstr "Invalid locator" - -#: src/Module/RemoteFollow.php:84 -msgid "The provided profile link doesn't seem to be valid" -msgstr "" - -#: src/Module/RemoteFollow.php:89 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "" - -#: src/Module/RemoteFollow.php:121 -msgid "Friend/Connection Request" -msgstr "Vän- eller kontaktförfrågan" - -#: src/Module/RemoteFollow.php:122 -#, 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 "" - -#: src/Module/RemoteFollow.php:123 -#, 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 "" - -#: src/Module/RemoteFollow.php:124 -msgid "Your Webfinger address or profile URL:" +#: src/Module/Search/Acl.php:73 +msgid "You must be logged in to use this module." msgstr "" #: src/Module/Search/Index.php:69 @@ -8525,69 +9156,69 @@ msgstr "" msgid "Items tagged with: %s" msgstr "" -#: src/Module/Search/Saved.php:58 +#: src/Module/Search/Saved.php:59 msgid "Search term was not saved." msgstr "" -#: src/Module/Search/Saved.php:61 +#: src/Module/Search/Saved.php:62 msgid "Search term already saved." msgstr "" -#: src/Module/Search/Saved.php:67 +#: src/Module/Search/Saved.php:68 msgid "Search term was not removed." msgstr "" -#: src/Module/Security/Login.php:104 +#: src/Module/Security/Login.php:123 msgid "Create a New Account" msgstr "Skapa nytt konto" -#: src/Module/Security/Login.php:129 +#: src/Module/Security/Login.php:142 msgid "Your OpenID: " msgstr "" -#: src/Module/Security/Login.php:132 +#: src/Module/Security/Login.php:145 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "" -#: src/Module/Security/Login.php:134 +#: src/Module/Security/Login.php:147 msgid "Or login using OpenID: " msgstr "eller logga in genom att använda OpenID:" -#: src/Module/Security/Login.php:148 +#: src/Module/Security/Login.php:161 msgid "Password: " msgstr "Lösenord: " -#: src/Module/Security/Login.php:149 +#: src/Module/Security/Login.php:162 msgid "Remember me" msgstr "Kom ihåg mig" -#: src/Module/Security/Login.php:158 +#: src/Module/Security/Login.php:171 msgid "Forgot your password?" msgstr "Har du glömt lösenordet?" -#: src/Module/Security/Login.php:161 +#: src/Module/Security/Login.php:174 msgid "Website Terms of Service" msgstr "" -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:175 msgid "terms of service" msgstr "användarvillkor" -#: src/Module/Security/Login.php:164 +#: src/Module/Security/Login.php:177 msgid "Website Privacy Policy" msgstr "Integritetspolicy för hemsidan" -#: src/Module/Security/Login.php:165 +#: src/Module/Security/Login.php:178 msgid "privacy policy" msgstr "integritetspolicy" -#: src/Module/Security/Logout.php:83 -#: src/Module/Security/TwoFactor/Signout.php:78 -#: src/Module/Security/TwoFactor/Signout.php:86 -#: src/Module/Security/TwoFactor/Signout.php:108 -#: src/Module/Security/TwoFactor/Signout.php:115 +#: src/Module/Security/Logout.php:84 +#: src/Module/Security/TwoFactor/SignOut.php:78 +#: src/Module/Security/TwoFactor/SignOut.php:86 +#: src/Module/Security/TwoFactor/SignOut.php:108 +#: src/Module/Security/TwoFactor/SignOut.php:115 msgid "Logged out." msgstr "Utloggad." @@ -8595,93 +9226,144 @@ msgstr "Utloggad." msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:90 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "" -#: src/Module/Security/OpenID.php:94 +#: src/Module/Security/OpenID.php:92 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:73 +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 +msgid "Passwords do not match." +msgstr "Lösenorden matchar inte." + +#: src/Module/Security/PasswordTooLong.php:64 +msgid "Password does not need changing." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 +msgid "Password unchanged." +msgstr "Lösenordet oändrat." + +#: src/Module/Security/PasswordTooLong.php:91 +msgid "Password Too Long" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:92 +msgid "" +"Since version 2022.09, we've realized that any password longer than 72 " +"characters is truncated during hashing. To prevent any confusion about this " +"behavior, please update your password to be fewer or equal to 72 characters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:93 +msgid "Update Password" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Current Password:" +msgstr "Nuvarande lösenord:" + +#: src/Module/Security/PasswordTooLong.php:99 +#: src/Module/Settings/Account.php:569 +msgid "Your current password to confirm the changes" +msgstr "Ditt nuvarande lösenord för att bekräfta ändringar" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:553 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces and accentuated letters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:554 +msgid "Password length is limited to 72 characters." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:74 #, php-format msgid "Remaining recovery codes: %d" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:77 +#: src/Module/Security/TwoFactor/Recovery.php:80 #: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:95 msgid "Invalid code, please retry." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:96 +#: src/Module/Security/TwoFactor/Recovery.php:99 msgid "Two-factor recovery" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:97 +#: src/Module/Security/TwoFactor/Recovery.php:100 msgid "" "

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

    " msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:101 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:102 msgid "Please enter a recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:103 msgid "Submit recovery code and complete login" msgstr "" -#: src/Module/Security/TwoFactor/Signout.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:122 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Signout.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:123 msgid "" "

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

    " msgstr "" -#: src/Module/Security/TwoFactor/Signout.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:124 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/Signout.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:126 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:89 +#: src/Module/Security/TwoFactor/Trust.php:96 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:119 +#: src/Module/Security/TwoFactor/Trust.php:141 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:120 +#: src/Module/Security/TwoFactor/Trust.php:142 msgid "" "

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

    " msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:121 +#: src/Module/Security/TwoFactor/Trust.php:143 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:122 +#: src/Module/Security/TwoFactor/Trust.php:144 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:123 +#: src/Module/Security/TwoFactor/Trust.php:145 msgid "Trust" msgstr "" @@ -8699,7 +9381,7 @@ msgid "" msgstr "" #: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:154 +#: src/Module/Settings/TwoFactor/Verify.php:155 msgid "Please enter a code from your authentication app" msgstr "" @@ -8707,127 +9389,119 @@ msgstr "" msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:66 -msgid "Passwords do not match." -msgstr "Lösenorden matchar inte." - -#: src/Module/Settings/Account.php:80 -msgid "Password unchanged." -msgstr "Lösenordet oändrat." - -#: src/Module/Settings/Account.php:95 +#: src/Module/Settings/Account.php:96 msgid "Please use a shorter name." msgstr "Vänligen ange ett kortare namn." -#: src/Module/Settings/Account.php:98 +#: src/Module/Settings/Account.php:99 msgid "Name too short." msgstr "Namnet för kort." -#: src/Module/Settings/Account.php:107 +#: src/Module/Settings/Account.php:108 msgid "Wrong Password." msgstr "Fel lösenord." -#: src/Module/Settings/Account.php:112 +#: src/Module/Settings/Account.php:113 msgid "Invalid email." msgstr "Ogiltig e-postadress." -#: src/Module/Settings/Account.php:118 +#: src/Module/Settings/Account.php:117 msgid "Cannot change to that email." msgstr "Kan inte byta till den e-postadressen." -#: src/Module/Settings/Account.php:148 src/Module/Settings/Account.php:200 -#: src/Module/Settings/Account.php:220 src/Module/Settings/Account.php:304 -#: src/Module/Settings/Account.php:353 +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 +#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:303 +#: src/Module/Settings/Account.php:352 msgid "Settings were not updated." msgstr "Inställningarna uppdaterades inte." -#: src/Module/Settings/Account.php:365 +#: src/Module/Settings/Account.php:364 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:384 +#: src/Module/Settings/Account.php:383 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:397 +#: src/Module/Settings/Account.php:396 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:414 +#: src/Module/Settings/Account.php:413 msgid "Unable to find your profile. Please contact your admin." msgstr "Kunde inte hitta din profil. Vänligen kontakta din admin." -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:455 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:457 -msgid "Community Forum Subtypes" +#: src/Module/Settings/Account.php:456 +msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:466 msgid "Account for a personal profile." msgstr "Konto för personlig profil." -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:473 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:480 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:488 +#: src/Module/Settings/Account.php:487 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:495 +#: src/Module/Settings/Account.php:494 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:502 +#: src/Module/Settings/Account.php:501 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:509 +#: src/Module/Settings/Account.php:508 msgid "Automatically approves all contact requests." msgstr "Godkänner automatiskt alla kontaktförfrågningar." -#: src/Module/Settings/Account.php:516 +#: src/Module/Settings/Account.php:515 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:521 -msgid "Private Forum [Experimental]" -msgstr "Privat forum [Experimentiell]" +#: src/Module/Settings/Account.php:520 +msgid "Private Group [Experimental]" +msgstr "" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:522 msgid "Requires manual approval of contact requests." msgstr "" -#: src/Module/Settings/Account.php:532 +#: src/Module/Settings/Account.php:531 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:532 +#: src/Module/Settings/Account.php:531 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Valfritt) Tillåt detta OpenID för att logga in till det här kontot." -#: src/Module/Settings/Account.php:540 +#: src/Module/Settings/Account.php:539 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:540 +#: src/Module/Settings/Account.php:539 #, php-format msgid "" "Your profile will be published in this node's local " @@ -8835,103 +9509,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:546 +#: src/Module/Settings/Account.php:545 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:558 msgid "Account Settings" msgstr "Kontoinställningar" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:559 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:566 msgid "Password Settings" msgstr "Lösenordsinställningar" -#: src/Module/Settings/Account.php:566 -msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "" - -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:568 msgid "Leave password fields blank unless changing" msgstr "Lämna fältet tomt om du inte vill byta lösenord" -#: src/Module/Settings/Account.php:568 -msgid "Current Password:" -msgstr "Nuvarande lösenord:" - -#: src/Module/Settings/Account.php:568 -msgid "Your current password to confirm the changes" -msgstr "Ditt nuvarande lösenord för att bekräfta ändringar" - -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:570 msgid "Password:" msgstr "Lösenord:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:570 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:573 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:575 msgid "Basic Settings" msgstr "Grundläggande inställningar" #: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Profile/Index.php:283 +msgid "Display name:" +msgstr "" + +#: src/Module/Settings/Account.php:577 msgid "Email Address:" msgstr "E-postadress:" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:578 msgid "Your Timezone:" msgstr "Tidszon:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:579 msgid "Your Language:" msgstr "Ditt språk:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:579 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:580 msgid "Default Post Location:" msgstr "Default Post Location:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:581 msgid "Use Browser Location:" msgstr "Använd webbläsarens positionering:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:583 msgid "Security and Privacy Settings" msgstr "Inställningar för säkerhet och sekretess" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:585 msgid "Maximum Friend Requests/Day:" msgstr "Maximalt antal kontaktförfrågningar per dygn:" -#: src/Module/Settings/Account.php:584 src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 msgid "(to prevent spam abuse)" msgstr "(för att motverka spam)" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:587 msgid "Allow your profile to be searchable globally?" msgstr "Tillåta att din profil ska vara sökbar globalt?" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:587 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 " @@ -8939,43 +9604,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:588 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:588 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: src/Module/Settings/Account.php:588 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Göm dina profildetaljer från anonyma tittare?" - -#: src/Module/Settings/Account.php:588 -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." +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" msgstr "" #: src/Module/Settings/Account.php:589 +msgid "" +"Anonymous visitors will only see your basic profile details. Your public " +"posts and replies will still be freely accessible on the remote servers of " +"your followers and through relays." +msgstr "" + +#: src/Module/Settings/Account.php:590 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:590 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:591 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:591 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 " @@ -8983,729 +9648,1073 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:592 msgid "Allow friends to post to your profile page?" msgstr "Tillåta vänner att göra inlägg på din profilsida?" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:592 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:593 msgid "Allow friends to tag your posts?" msgstr "Tillåt vänner att tagga dina inlägg?" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:593 msgid "Your contacts can add additional tags to your posts." msgstr "Dina kontakter kan lägga till ytterligare taggar till dina inlägg." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:594 msgid "Permit unknown people to send you private mail?" msgstr "Ge okända personer tillstånd att skicka privata mail till dig?" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:594 msgid "" "Friendica network users may send you private messages even if they are not " "in your contact list." msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:595 msgid "Maximum private messages per day from unknown people:" msgstr "" #: src/Module/Settings/Account.php:596 +msgid "Default privacy circle for new contacts" +msgstr "" + +#: src/Module/Settings/Account.php:597 +msgid "Default privacy circle for new group contacts" +msgstr "" + +#: src/Module/Settings/Account.php:598 msgid "Default Post Permissions" msgstr "Standardåtkomst för inlägg" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:602 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:603 msgid "Automatically expire posts after this many days:" msgstr "" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:603 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:604 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:604 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:605 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:605 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:606 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:606 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:607 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:607 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:610 msgid "Notification Settings" msgstr "Aviseringsinställningar" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:611 msgid "Send a notification email when:" msgstr "Skicka ett aviseringsmail när:" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:612 msgid "You receive an introduction" msgstr "En kontaktförfrågan anländer" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:613 msgid "Your introductions are confirmed" msgstr "Dina förfrågningar godkänns" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:614 msgid "Someone writes on your profile wall" msgstr "Någon gör inlägg på din profilsida" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:615 msgid "Someone writes a followup comment" msgstr "Någon gör ett inlägg i samma tråd som du" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:616 msgid "You receive a private message" msgstr "Du får personliga meddelanden" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:617 msgid "You receive a friend suggestion" msgstr "Du tar emot ett vän-förslag" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:618 msgid "You are tagged in a post" msgstr "Du är taggad i ett inlägg" -#: src/Module/Settings/Account.php:617 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:620 msgid "Create a desktop notification when:" msgstr "Skapa en skrivbordsavisering när:" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:621 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:622 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:623 msgid "Someone liked your content" msgstr "Någon gillade ditt innehåll" -#: src/Module/Settings/Account.php:622 src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:624 msgid "Someone shared your content" msgstr "Någon delade ditt innehåll" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:625 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:626 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:627 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:629 msgid "Activate desktop notifications" msgstr "Aktivera skrivbordsaviseringar" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:629 msgid "Show desktop popup on new notifications" msgstr "" -#: src/Module/Settings/Account.php:632 +#: src/Module/Settings/Account.php:633 msgid "Text-only notification emails" msgstr "" -#: src/Module/Settings/Account.php:634 +#: src/Module/Settings/Account.php:635 msgid "Send text only notification emails, without the html part" msgstr "" -#: src/Module/Settings/Account.php:638 +#: src/Module/Settings/Account.php:639 msgid "Show detailled notifications" msgstr "Visa detaljerade aviseringar" -#: src/Module/Settings/Account.php:640 +#: src/Module/Settings/Account.php:641 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:644 +#: src/Module/Settings/Account.php:645 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:646 +#: src/Module/Settings/Account.php:647 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:650 msgid "Advanced Account/Page Type Settings" msgstr "" -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:651 msgid "Change the behaviour of this account for special situations" msgstr "" -#: src/Module/Settings/Account.php:653 +#: src/Module/Settings/Account.php:654 msgid "Import Contacts" msgstr "Importera kontakter" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:655 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:656 msgid "Upload File" msgstr "Ladda upp fil" -#: src/Module/Settings/Account.php:658 +#: src/Module/Settings/Account.php:659 msgid "Relocate" msgstr "Omlokalisera" -#: src/Module/Settings/Account.php:659 +#: src/Module/Settings/Account.php:660 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Om du har flyttat den här profilen från en annan server och några av dina kontakter inte får dina uppdateringar, försök att trycka på den här knappen." -#: src/Module/Settings/Account.php:660 +#: src/Module/Settings/Account.php:661 msgid "Resend relocate message to contacts" msgstr "" -#: src/Module/Settings/Delegation.php:53 +#: src/Module/Settings/Addons.php:86 +msgid "Addon Settings" +msgstr "Inställningar för Tillägg" + +#: src/Module/Settings/Addons.php:87 +msgid "No Addon settings configured" +msgstr "Inga inställningar för Tillägg har gjorts" + +#: src/Module/Settings/Connectors.php:120 +msgid "Failed to connect with email account using the settings provided." +msgstr "Kunde inte ansluta till e-postkontot med aktuella inställningar" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:167 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:170 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:170 +msgid "OStatus (GNU Social)" +msgstr "OStatus (GNU Social)" + +#: src/Module/Settings/Connectors.php:182 +msgid "Email access is disabled on this site." +msgstr "E-poståtkomst är inaktiverat på den här sidan." + +#: src/Module/Settings/Connectors.php:197 +#: src/Module/Settings/Connectors.php:244 +msgid "None" +msgstr "Ingen" + +#: src/Module/Settings/Connectors.php:209 +msgid "General Social Media Settings" +msgstr "Generella inställningar för sociala medier" + +#: src/Module/Settings/Connectors.php:212 +msgid "Followed content scope" +msgstr "" + +#: src/Module/Settings/Connectors.php:214 +msgid "" +"By default, conversations in which your follows participated but didn't " +"start will be shown in your timeline. You can turn this behavior off, or " +"expand it to the conversations in which your follows liked a post." +msgstr "" + +#: src/Module/Settings/Connectors.php:216 +msgid "Only conversations my follows started" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "Conversations my follows started or commented on (default)" +msgstr "" + +#: src/Module/Settings/Connectors.php:218 +msgid "Any conversation my follows interacted with, including likes" +msgstr "" + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable Content Warning" +msgstr "Aktivera innehållsvarning" + +#: src/Module/Settings/Connectors.php:221 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't" +" affect any other content filtering you eventually set up." +msgstr "" + +#: src/Module/Settings/Connectors.php:222 +msgid "Enable intelligent shortening" +msgstr "Aktivera intelligent förkortning" + +#: src/Module/Settings/Connectors.php:222 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If disabled, every shortened post will always point to the original " +"friendica post." +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "Enable simple text shortening" +msgstr "" + +#: src/Module/Settings/Connectors.php:223 +msgid "" +"Normally the system shortens posts at the next line feed. If this option is " +"enabled then the system will shorten the text at the maximum character " +"limit." +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "Attach the link title" +msgstr "" + +#: src/Module/Settings/Connectors.php:224 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "API: Use spoiler field as title" +msgstr "" + +#: src/Module/Settings/Connectors.php:225 +msgid "" +"When activated, the \"spoiler_text\" field in the API will be used for the " +"title on standalone posts. When deactivated it will be used for spoiler " +"text. For comments it will always be used for spoiler text." +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "API: Automatically links at the end of the post as attached posts" +msgstr "" + +#: src/Module/Settings/Connectors.php:226 +msgid "" +"When activated, added links at the end of the post react the same way as " +"added links in the web interface." +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/Connectors.php:227 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + +#: src/Module/Settings/Connectors.php:229 +msgid "Repair OStatus subscriptions" +msgstr "Reparera OStatus-prenumerationer" + +#: src/Module/Settings/Connectors.php:233 +msgid "Email/Mailbox Setup" +msgstr "" + +#: src/Module/Settings/Connectors.php:234 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "För att kommunicera via e-post med denna tjänst (valfritt), vänligen ange anslutningssätt till ditt e-postkonto." + +#: src/Module/Settings/Connectors.php:235 +msgid "Last successful email check:" +msgstr "" + +#: src/Module/Settings/Connectors.php:237 +msgid "IMAP server name:" +msgstr "Namn på IMAP-server:" + +#: src/Module/Settings/Connectors.php:238 +msgid "IMAP port:" +msgstr "Port för IMAP:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Security:" +msgstr "Säkerhet:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Email login name:" +msgstr "Inloggningsnamn för e-post:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Email password:" +msgstr "Lösenord för e-post:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Reply-to address:" +msgstr "Svara till-adress:" + +#: src/Module/Settings/Connectors.php:243 +msgid "Send public posts to all email contacts:" +msgstr "Skicka publika inlägg till alla e-postkontakter:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Action after import:" +msgstr "Åtgärd efter importering:" + +#: src/Module/Settings/Connectors.php:244 +msgid "Move to folder" +msgstr "Flytta till mapp" + +#: src/Module/Settings/Connectors.php:245 +msgid "Move to folder:" +msgstr "Flytta till mapp:" + +#: src/Module/Settings/Delegation.php:54 msgid "Delegation successfully granted." msgstr "" -#: src/Module/Settings/Delegation.php:55 +#: src/Module/Settings/Delegation.php:56 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:59 +#: src/Module/Settings/Delegation.php:60 msgid "Delegation successfully revoked." msgstr "" -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 +#: src/Module/Settings/Delegation.php:82 +#: src/Module/Settings/Delegation.php:104 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:95 +#: src/Module/Settings/Delegation.php:96 msgid "Delegate user not found." msgstr "" -#: src/Module/Settings/Delegation.php:143 +#: src/Module/Settings/Delegation.php:144 msgid "No parent user" msgstr "" -#: src/Module/Settings/Delegation.php:154 -#: src/Module/Settings/Delegation.php:165 +#: src/Module/Settings/Delegation.php:155 +#: src/Module/Settings/Delegation.php:166 msgid "Parent User" msgstr "" -#: src/Module/Settings/Delegation.php:162 +#: src/Module/Settings/Delegation.php:163 msgid "Additional Accounts" msgstr "" -#: src/Module/Settings/Delegation.php:163 +#: src/Module/Settings/Delegation.php:164 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:164 +#: src/Module/Settings/Delegation.php:165 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:168 +#: src/Module/Settings/Delegation.php:169 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "" -#: src/Module/Settings/Delegation.php:172 +#: src/Module/Settings/Delegation.php:173 msgid "Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:174 +#: src/Module/Settings/Delegation.php:175 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 "" -#: src/Module/Settings/Delegation.php:175 +#: src/Module/Settings/Delegation.php:176 msgid "Existing Page Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:177 +#: src/Module/Settings/Delegation.php:178 msgid "Potential Delegates" msgstr "Potentiella delegater" -#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:181 msgid "Add" msgstr "Lägg till" -#: src/Module/Settings/Delegation.php:181 +#: src/Module/Settings/Delegation.php:182 msgid "No entries." msgstr "Inga poster." -#: src/Module/Settings/Display.php:107 +#: src/Module/Settings/Display.php:146 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:146 +#: src/Module/Settings/Display.php:186 #, php-format msgid "%s - (Unsupported)" msgstr "" -#: src/Module/Settings/Display.php:192 +#: src/Module/Settings/Display.php:221 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:222 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:223 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:224 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:259 msgid "Display Settings" msgstr "Skärm-inställningar" -#: src/Module/Settings/Display.php:194 +#: src/Module/Settings/Display.php:261 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:195 +#: src/Module/Settings/Display.php:262 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:196 +#: src/Module/Settings/Display.php:263 msgid "Content Settings" msgstr "" -#: src/Module/Settings/Display.php:197 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:161 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 +#: src/Module/Settings/Display.php:264 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Tema-inställningar" -#: src/Module/Settings/Display.php:198 -msgid "Calendar" +#: src/Module/Settings/Display.php:265 +msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:204 +#: src/Module/Settings/Display.php:272 msgid "Display Theme:" msgstr "Tema/utseende:" -#: src/Module/Settings/Display.php:205 +#: src/Module/Settings/Display.php:273 msgid "Mobile Theme:" msgstr "Mobil-tema:" -#: src/Module/Settings/Display.php:208 +#: src/Module/Settings/Display.php:276 msgid "Number of items to display per page:" msgstr "Antalet objekt att visa per sida:" -#: src/Module/Settings/Display.php:208 src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277 msgid "Maximum of 100 items" msgstr "Maximalt 100 objekt" -#: src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:277 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:210 +#: src/Module/Settings/Display.php:278 msgid "Update browser every xx seconds" msgstr "Uppdatera webbläsaren var xx sekunder" -#: src/Module/Settings/Display.php:210 +#: src/Module/Settings/Display.php:278 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:211 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "" - -#: src/Module/Settings/Display.php:211 -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 "" - -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:279 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:279 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:280 msgid "Infinite scroll" msgstr "Oändlig skroll" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:280 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:281 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:281 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:282 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:282 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:283 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:283 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:284 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:284 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:219 +#: src/Module/Settings/Display.php:285 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:285 +msgid "Appearance of the link preview that is added to each post with a link." +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Timelines for the network page:" +msgstr "" + +#: src/Module/Settings/Display.php:287 +msgid "Select all the timelines that you want to see on your network page." +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Channel languages:" +msgstr "" + +#: src/Module/Settings/Display.php:288 +msgid "Select all languages that you want to see in your channels." +msgstr "" + +#: src/Module/Settings/Display.php:290 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Profile/Index.php:83 -msgid "Profile Name is required." -msgstr "Profilen måste ha ett namn." +#: src/Module/Settings/Display.php:291 +msgid "Default calendar view:" +msgstr "" -#: src/Module/Settings/Profile/Index.php:131 +#: src/Module/Settings/Display.php:300 src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:312 +#, php-format +msgid "%s: %s" +msgstr "" + +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "Ytterligare funktioner" + +#: src/Module/Settings/OAuth.php:71 +msgid "Connected Apps" +msgstr "Anslutna appar" + +#: src/Module/Settings/OAuth.php:75 +msgid "Remove authorization" +msgstr "Ta bort autentisering" + +#: src/Module/Settings/Profile/Index.php:116 +msgid "Display Name is required." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:167 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:172 -#: src/Module/Settings/Profile/Index.php:192 +#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:226 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:173 -#: src/Module/Settings/Profile/Index.php:193 +#: src/Module/Settings/Profile/Index.php:206 +#: src/Module/Settings/Profile/Index.php:227 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:183 -#: src/Module/Settings/Profile/Index.php:203 +#: src/Module/Settings/Profile/Index.php:217 +#: src/Module/Settings/Profile/Index.php:238 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:184 -#: src/Module/Settings/Profile/Index.php:204 +#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:239 msgid "(click to open/close)" msgstr "(klicka för att öppna/stänga)" -#: src/Module/Settings/Profile/Index.php:190 +#: src/Module/Settings/Profile/Index.php:224 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:220 +#: src/Module/Settings/Profile/Index.php:247 +msgid "" +"The homepage is verified. A rel=\"me\" link back to your Friendica profile " +"page was found on the homepage." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:249 +#, php-format +msgid "" +"To verify your homepage, add a rel=\"me\" link to it, pointing to your " +"profile URL (%s)." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:255 msgid "Profile Actions" msgstr "" -#: src/Module/Settings/Profile/Index.php:221 +#: src/Module/Settings/Profile/Index.php:256 msgid "Edit Profile Details" msgstr "Ändra profilen" -#: src/Module/Settings/Profile/Index.php:223 +#: src/Module/Settings/Profile/Index.php:258 msgid "Change Profile Photo" msgstr "Byt profilfoto" -#: src/Module/Settings/Profile/Index.php:228 +#: src/Module/Settings/Profile/Index.php:261 msgid "Profile picture" msgstr "Profilbild" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:262 msgid "Location" msgstr "Plats" -#: src/Module/Settings/Profile/Index.php:230 src/Util/Temporal.php:93 -#: src/Util/Temporal.php:95 +#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 +#: src/Util/Temporal.php:99 msgid "Miscellaneous" msgstr "Blandat" -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:264 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:233 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 msgid "Upload Profile Photo" msgstr "Ladda upp profilbild" -#: src/Module/Settings/Profile/Index.php:237 -msgid "Display name:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:240 -msgid "Street Address:" -msgstr "Gatuadress:" - -#: src/Module/Settings/Profile/Index.php:241 -msgid "Locality/City:" -msgstr "Plats/Stad:" - -#: src/Module/Settings/Profile/Index.php:242 -msgid "Region/State:" -msgstr "Region:" - -#: src/Module/Settings/Profile/Index.php:243 -msgid "Postal/Zip Code:" -msgstr "Postnummer:" - -#: src/Module/Settings/Profile/Index.php:244 -msgid "Country:" -msgstr "Land:" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "XMPP (Jabber) address:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "" -"The XMPP address will be published so that people can follow you there." -msgstr "" - -#: src/Module/Settings/Profile/Index.php:247 -msgid "Matrix (Element) address:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:247 -msgid "" -"The Matrix address will be published so that people can follow you there." -msgstr "" - -#: src/Module/Settings/Profile/Index.php:248 -msgid "Homepage URL:" -msgstr "Hemsida: (URL)" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "Public Keywords:" -msgstr "Offentliga nyckelord:" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Obs, synliga för andra. Används för att föreslå potentiella vänner.)" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "Private Keywords:" -msgstr "Privata nyckelord:" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Obs, kan ge sökträffar vid sökning av profiler. Visas annars inte för andra.)" - -#: src/Module/Settings/Profile/Index.php:251 +#: src/Module/Settings/Profile/Index.php:266 #, 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.

    " +"\t\t\t\t

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

    " msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:108 -#: src/Module/Settings/Profile/Photo/Crop.php:126 -#: src/Module/Settings/Profile/Photo/Crop.php:144 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Index.php:286 +msgid "Street Address:" +msgstr "Gatuadress:" + +#: src/Module/Settings/Profile/Index.php:287 +msgid "Locality/City:" +msgstr "Plats/Stad:" + +#: src/Module/Settings/Profile/Index.php:288 +msgid "Region/State:" +msgstr "Region:" + +#: src/Module/Settings/Profile/Index.php:289 +msgid "Postal/Zip Code:" +msgstr "Postnummer:" + +#: src/Module/Settings/Profile/Index.php:290 +msgid "Country:" +msgstr "Land:" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:292 +msgid "" +"The XMPP address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "Matrix (Element) address:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:293 +msgid "" +"The Matrix address will be published so that people can follow you there." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:294 +msgid "Homepage URL:" +msgstr "Hemsida: (URL)" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "Public Keywords:" +msgstr "Offentliga nyckelord:" + +#: src/Module/Settings/Profile/Index.php:295 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Obs, synliga för andra. Används för att föreslå potentiella vänner.)" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "Private Keywords:" +msgstr "Privata nyckelord:" + +#: src/Module/Settings/Profile/Index.php:296 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Obs, kan ge sökträffar vid sökning av profiler. Visas annars inte för andra.)" + +#: src/Module/Settings/Profile/Photo/Crop.php:107 +#: src/Module/Settings/Profile/Photo/Crop.php:125 +#: src/Module/Settings/Profile/Photo/Crop.php:143 +#: src/Module/Settings/Profile/Photo/Index.php:101 #, php-format msgid "Image size reduction [%s] failed." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Crop.php:150 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:156 +#: src/Module/Settings/Profile/Photo/Crop.php:155 msgid "Unable to process image" msgstr "Det gick inte att behandla bilden" -#: src/Module/Settings/Profile/Photo/Crop.php:175 +#: src/Module/Settings/Profile/Photo/Crop.php:174 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:197 +#: src/Module/Settings/Profile/Photo/Crop.php:196 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:223 -#: src/Module/Settings/Profile/Photo/Crop.php:227 +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 msgid "Crop Image" msgstr "Beskär bild" -#: src/Module/Settings/Profile/Photo/Crop.php:224 +#: src/Module/Settings/Profile/Photo/Crop.php:223 msgid "Please adjust the image cropping for optimum viewing." msgstr "Välj hur bilden ska beskäras för att bli så bra som möjligt." -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:225 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:45 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:132 msgid "or" msgstr "eller" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:134 msgid "skip this step" msgstr "hoppa över det här steget" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:136 msgid "select a photo from your photo albums" msgstr "välj en bild från ett album" -#: src/Module/Settings/TwoFactor/AppSpecific.php:64 -#: src/Module/Settings/TwoFactor/Recovery.php:62 -#: src/Module/Settings/TwoFactor/Trusted.php:65 -#: src/Module/Settings/TwoFactor/Verify.php:68 +#: src/Module/Settings/RemoveMe.php:94 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[System-avisering för Friendica]" + +#: src/Module/Settings/RemoveMe.php:94 +msgid "User deleted their account" +msgstr "Användaren tog bort sitt konto" + +#: src/Module/Settings/RemoveMe.php:95 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "" + +#: src/Module/Settings/RemoveMe.php:96 +#, php-format +msgid "The user id is %d" +msgstr "ID för användaren är %d" + +#: src/Module/Settings/RemoveMe.php:108 +msgid "Your user account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:128 +msgid "Remove My Account" +msgstr "Ta bort mitt konto" + +#: src/Module/Settings/RemoveMe.php:129 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Detta kommer att ta bort kontot helt och hållet. Efter att det är gjort går det inte att återställa." + +#: src/Module/Settings/RemoveMe.php:131 +msgid "Please enter your password for verification:" +msgstr "Ange lösenordet igen för säkerhets skull:" + +#: src/Module/Settings/Server/Action.php:60 +msgid "Do you want to ignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:64 +msgid "Do you want to unignore this server?" +msgstr "" + +#: src/Module/Settings/Server/Action.php:74 +#: src/Module/Settings/Server/Index.php:104 +msgid "Remote server settings" +msgstr "" + +#: src/Module/Settings/Server/Action.php:77 +msgid "Server URL" +msgstr "" + +#: src/Module/Settings/Server/Index.php:78 +msgid "Settings saved" +msgstr "" + +#: src/Module/Settings/Server/Index.php:105 +msgid "" +"Here you can find all the remote servers you have taken individual " +"moderation actions against. For a list of servers your node has blocked, " +"please check out the Information page." +msgstr "" + +#: src/Module/Settings/Server/Index.php:110 +msgid "Delete all your settings for the remote server" +msgstr "" + +#: src/Module/Settings/Server/Index.php:111 +msgid "Save changes" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 msgid "Please enter your password to access this page." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:82 +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:85 +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:89 +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:95 +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:105 +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 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 "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 msgid "Description" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:135 +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 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 "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:141 +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 msgid "Generate" msgstr "" @@ -9713,103 +10722,103 @@ msgstr "" msgid "Two-factor authentication successfully disabled." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:116 +#: src/Module/Settings/TwoFactor/Index.php:120 msgid "" "

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

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:120 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Authenticator app" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:121 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:121 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Not Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:122 +#: src/Module/Settings/TwoFactor/Index.php:126 msgid "

    You haven't finished configuring your authenticator app.

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:123 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "

    Your authenticator app is correctly configured.

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Index.php:129 msgid "Recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Settings/TwoFactor/Index.php:130 msgid "Remaining valid codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:128 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "" "

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

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:130 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:131 +#: src/Module/Settings/TwoFactor/Index.php:135 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "" "

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

    " msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:136 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "Current password:" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:136 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:137 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "Enable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Disable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:139 +#: src/Module/Settings/TwoFactor/Index.php:143 msgid "Show recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:145 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:142 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:78 +#: src/Module/Settings/TwoFactor/Recovery.php:80 msgid "New recovery codes successfully generated." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:104 +#: src/Module/Settings/TwoFactor/Recovery.php:106 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:106 +#: src/Module/Settings/TwoFactor/Recovery.php:108 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 " @@ -9818,68 +10827,68 @@ msgid "" "account.

    " msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:108 +#: src/Module/Settings/TwoFactor/Recovery.php:110 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:111 msgid "Generate new recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "Next: Verification" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:82 +#: src/Module/Settings/TwoFactor/Trusted.php:84 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:92 +#: src/Module/Settings/TwoFactor/Trusted.php:94 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:134 +#: src/Module/Settings/TwoFactor/Trusted.php:136 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:135 +#: src/Module/Settings/TwoFactor/Trusted.php:137 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 "" -#: src/Module/Settings/TwoFactor/Trusted.php:136 +#: src/Module/Settings/TwoFactor/Trusted.php:138 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:137 +#: src/Module/Settings/TwoFactor/Trusted.php:139 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:141 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:142 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:143 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Module/Settings/TwoFactor/Trusted.php:145 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:90 +#: src/Module/Settings/TwoFactor/Verify.php:91 msgid "Two-factor authentication successfully activated." msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:124 +#: src/Module/Settings/TwoFactor/Verify.php:125 #, php-format msgid "" "

    Or you can submit the authentication settings manually:

    \n" @@ -9899,68 +10908,105 @@ msgid "" "" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:144 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Two-factor code verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:146 +#: src/Module/Settings/TwoFactor/Verify.php:147 msgid "" "

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

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

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

    %s

    " msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:155 +#: src/Module/Settings/TwoFactor/Verify.php:156 msgid "Verify code and enable two-factor authentication" msgstr "" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 msgid "Export account" msgstr "Exportera konto" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 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 "" -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:91 msgid "Export all" msgstr "Exportera allt" -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:91 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 "" -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:92 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:92 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/HTTPException.php:51 +#: src/Module/Special/DisplayNotFound.php:35 +msgid "The top-level post isn't visible." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:36 +msgid "The top-level post was deleted." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:37 +msgid "" +"This node has blocked the top-level author or the author of the shared post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:38 +msgid "" +"You have ignored or blocked the top-level author or the author of the shared" +" post." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:39 +msgid "" +"You have ignored the top-level author's server or the shared post author's " +"server." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:45 +msgid "Conversation Not Found" +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:46 +msgid "Unfortunately, the requested conversation isn't available to you." +msgstr "" + +#: src/Module/Special/DisplayNotFound.php:47 +msgid "Possible reasons include:" +msgstr "" + +#: src/Module/Special/HTTPException.php:78 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:55 +#: src/Module/Special/HTTPException.php:83 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:57 src/Module/Tos.php:91 +#: src/Module/Tos.php:58 src/Module/Tos.php:107 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" @@ -9973,28 +11019,107 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:92 +#: src/Module/Tos.php:59 src/Module/Tos.php:108 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 "" -#: src/Module/Tos.php:59 src/Module/Tos.php:93 +#: src/Module/Tos.php:60 src/Module/Tos.php:109 #, 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." +"href=\"%1$s/settings/removeme\">%1$s/settings/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 "" -#: src/Module/Tos.php:62 src/Module/Tos.php:90 +#: src/Module/Tos.php:63 src/Module/Tos.php:106 msgid "Privacy Statement" msgstr "" +#: src/Module/Tos.php:103 +msgid "Rules" +msgstr "" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "" + +#: src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "" + +#: src/Module/User/Import.php:103 +msgid "User imports on closed servers can only be done by an administrator." +msgstr "" + +#: src/Module/User/Import.php:119 +msgid "Move account" +msgstr "Flytta konto" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "Du kan importera ett konto från en annan Friendica-server." + +#: src/Module/User/Import.php:121 +msgid "" +"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." +msgstr "" + +#: src/Module/User/Import.php:122 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "" + +#: src/Module/User/Import.php:123 +msgid "Account file" +msgstr "" + +#: src/Module/User/Import.php:123 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "För att exportera ditt konto, gå till \"Inställningar->Exportera din personliga data\" och välj \"Exportera konto\"" + +#: src/Module/User/Import.php:217 +msgid "Error decoding account file" +msgstr "" + +#: src/Module/User/Import.php:222 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: src/Module/User/Import.php:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Användaren '%s' existerar redan i den här servern!" + +#: src/Module/User/Import.php:267 +msgid "User creation error" +msgstr "Fel uppstod när användaren skulle skapas" + +#: src/Module/User/Import.php:316 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d kontakt importerades inte" +msgstr[1] "%d kontakterna importerades inte" + +#: src/Module/User/Import.php:365 +msgid "User profile creation error" +msgstr "" + +#: src/Module/User/Import.php:416 +msgid "Done. You can now login with your username and password" +msgstr "Färdig. Du kan nu logga in med ditt användarnamn och lösenord" + #: src/Module/Welcome.php:44 msgid "Welcome to Friendica" msgstr "Välkommen till Friendica" @@ -10125,14 +11250,14 @@ msgid "" msgstr "" #: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "Gruppera dina kontakter" +msgid "Add Your Contacts To Circle" +msgstr "" #: 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." +"circles from the sidebar of your Contacts page and then you can interact " +"with each circle privately on your Network page." msgstr "" #: src/Module/Welcome.php:80 @@ -10160,51 +11285,51 @@ msgid "" " features and resources." msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:134 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:136 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:91 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 #, php-format msgid "%s liked %s's post" msgstr "%sgillade %s's inlägg" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:103 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 #, php-format msgid "%s disliked %s's post" msgstr "%s gillade inte %s's inlägg" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:115 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 #, php-format msgid "%s is attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:127 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 #, php-format msgid "%s is not attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:139 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:169 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 #, php-format msgid "%s is now friends with %s" msgstr "%s är nu vänner med %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:336 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:374 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 #, php-format msgid "%s commented on %s's post" msgstr "%s kommenterade på %s's inlägg" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:373 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 #, php-format msgid "%s created a new post" msgstr "%s skapade ett nytt inlägg" @@ -10231,320 +11356,305 @@ msgstr "" msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:200 +#: src/Navigation/Notifications/Factory/Notification.php:208 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:203 +#: src/Navigation/Notifications/Factory/Notification.php:211 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:210 +#: src/Navigation/Notifications/Factory/Notification.php:218 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:213 +#: src/Navigation/Notifications/Factory/Notification.php:221 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:220 +#: src/Navigation/Notifications/Factory/Notification.php:228 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:231 +#: src/Navigation/Notifications/Factory/Notification.php:316 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:227 -#: src/Navigation/Notifications/Factory/Notification.php:297 +#: src/Navigation/Notifications/Factory/Notification.php:235 +#: src/Navigation/Notifications/Factory/Notification.php:305 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:229 -#: src/Navigation/Notifications/Factory/Notification.php:299 +#: src/Navigation/Notifications/Factory/Notification.php:237 +#: src/Navigation/Notifications/Factory/Notification.php:307 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:301 +#: src/Navigation/Notifications/Factory/Notification.php:239 +#: src/Navigation/Notifications/Factory/Notification.php:309 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:233 -#: src/Navigation/Notifications/Factory/Notification.php:303 +#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:311 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:248 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:255 +#: src/Navigation/Notifications/Factory/Notification.php:263 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:262 +#: src/Navigation/Notifications/Factory/Notification.php:270 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:266 +#: src/Navigation/Notifications/Factory/Notification.php:274 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:278 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:282 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:281 +#: src/Navigation/Notifications/Factory/Notification.php:289 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:283 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:285 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:287 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:292 +#: src/Navigation/Notifications/Factory/Notification.php:300 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:222 -#: src/Navigation/Notifications/Repository/Notify.php:736 +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:286 +#: src/Navigation/Notifications/Repository/Notify.php:293 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:288 +#: src/Navigation/Notifications/Repository/Notify.php:295 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$sskickade ett privat meddelande till dig %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:289 +#: src/Navigation/Notifications/Repository/Notify.php:296 msgid "a private message" msgstr "ett privat meddelande" -#: src/Navigation/Notifications/Repository/Notify.php:289 +#: src/Navigation/Notifications/Repository/Notify.php:296 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$sskickade%2$s." -#: src/Navigation/Notifications/Repository/Notify.php:291 +#: src/Navigation/Notifications/Repository/Notify.php:298 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Gå till %sför att se och svara på dina privata meddelanden." -#: src/Navigation/Notifications/Repository/Notify.php:321 +#: src/Navigation/Notifications/Repository/Notify.php:328 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:326 +#: src/Navigation/Notifications/Repository/Notify.php:333 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:330 +#: src/Navigation/Notifications/Repository/Notify.php:337 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:334 -#: src/Navigation/Notifications/Repository/Notify.php:770 +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:336 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:340 -#: src/Navigation/Notifications/Repository/Notify.php:355 -#: src/Navigation/Notifications/Repository/Notify.php:374 -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:812 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:354 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:349 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:350 +#: src/Navigation/Notifications/Repository/Notify.php:357 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:362 -#, php-format -msgid "%1$s %2$s poked you" -msgstr "" - -#: src/Navigation/Notifications/Repository/Notify.php:364 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "" - -#: src/Navigation/Notifications/Repository/Notify.php:365 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" - -#: src/Navigation/Notifications/Repository/Notify.php:382 +#: src/Navigation/Notifications/Repository/Notify.php:370 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:384 +#: src/Navigation/Notifications/Repository/Notify.php:372 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Du tog emot en introduktion från '%1$s' vid %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:390 -#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 #, php-format msgid "You may visit their profile at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:392 +#: src/Navigation/Notifications/Repository/Notify.php:380 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:387 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:401 -#: src/Navigation/Notifications/Repository/Notify.php:402 +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:409 +#: src/Navigation/Notifications/Repository/Notify.php:397 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:411 -#: src/Navigation/Notifications/Repository/Notify.php:412 +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:425 +#: src/Navigation/Notifications/Repository/Notify.php:413 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:427 +#: src/Navigation/Notifications/Repository/Notify.php:415 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:428 +#: src/Navigation/Notifications/Repository/Notify.php:416 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:422 msgid "Name:" msgstr "Namn:" -#: src/Navigation/Notifications/Repository/Notify.php:435 +#: src/Navigation/Notifications/Repository/Notify.php:423 msgid "Photo:" msgstr "Foto:" -#: src/Navigation/Notifications/Repository/Notify.php:438 +#: src/Navigation/Notifications/Repository/Notify.php:426 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:446 -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:448 -#: src/Navigation/Notifications/Repository/Notify.php:463 +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:449 -#: src/Navigation/Notifications/Repository/Notify.php:464 +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:454 +#: src/Navigation/Notifications/Repository/Notify.php:442 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:456 +#: src/Navigation/Notifications/Repository/Notify.php:444 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:469 +#: src/Navigation/Notifications/Repository/Notify.php:457 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -10553,33 +11663,34 @@ msgid "" "automatically." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:461 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:483 +#: src/Navigation/Notifications/Repository/Notify.php:471 msgid "registration request" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:473 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:486 +#: src/Navigation/Notifications/Repository/Notify.php:474 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:491 +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 #, php-format msgid "" "Full Name:\t%s\n" @@ -10587,21 +11698,50 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:497 +#: src/Navigation/Notifications/Repository/Notify.php:485 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:764 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:780 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:767 +#: src/Navigation/Notifications/Repository/Notify.php:783 #, php-format msgid "%s %s shared a new post" msgstr "" +#: src/Navigation/Notifications/Repository/Notify.php:791 +#, php-format +msgid "%1$s %2$s liked your post #%3$d" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:794 +#, php-format +msgid "%1$s %2$s liked your comment on #%3$d" +msgstr "" + #: src/Object/EMail/ItemCCEMail.php:42 #, php-format msgid "" @@ -10625,248 +11765,307 @@ msgstr "Kontakta avsändaren genom att svara på det här meddelandet om du inte msgid "%s posted an update." msgstr "%s har gjort ett inlägg." -#: src/Object/Post.php:136 +#: src/Object/Post.php:138 msgid "Private Message" msgstr "Privat meddelande" -#: src/Object/Post.php:140 +#: src/Object/Post.php:142 msgid "Public Message" msgstr "" -#: src/Object/Post.php:144 +#: src/Object/Post.php:146 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:179 +#: src/Object/Post.php:181 msgid "This entry was edited" msgstr "Den här posten redigerades" -#: src/Object/Post.php:207 +#: src/Object/Post.php:209 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:222 src/Object/Post.php:224 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Ändra" -#: src/Object/Post.php:248 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "" -#: src/Object/Post.php:248 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "" -#: src/Object/Post.php:264 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:269 +#: src/Object/Post.php:273 +#, php-format +msgid "Ignore %s" +msgstr "" + +#: src/Object/Post.php:278 +#, php-format +msgid "Collapse %s" +msgstr "" + +#: src/Object/Post.php:282 +msgid "Report post" +msgstr "" + +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:304 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "" -#: src/Object/Post.php:304 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "" -#: src/Object/Post.php:304 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:363 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:335 +#: src/Object/Post.php:364 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:336 +#: src/Object/Post.php:365 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:346 +#: src/Object/Post.php:375 msgid "Add star" msgstr "" -#: src/Object/Post.php:347 +#: src/Object/Post.php:376 msgid "Remove star" msgstr "" -#: src/Object/Post.php:348 +#: src/Object/Post.php:377 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:359 +#: src/Object/Post.php:388 msgid "Pin" msgstr "" -#: src/Object/Post.php:360 +#: src/Object/Post.php:389 msgid "Unpin" msgstr "" -#: src/Object/Post.php:361 +#: src/Object/Post.php:390 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:364 +#: src/Object/Post.php:393 msgid "Pinned" msgstr "" -#: src/Object/Post.php:369 +#: src/Object/Post.php:398 msgid "Add tag" msgstr "" -#: src/Object/Post.php:382 +#: src/Object/Post.php:411 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:382 +#: src/Object/Post.php:411 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:385 +#: src/Object/Post.php:414 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:385 +#: src/Object/Post.php:414 msgid "Reshare" msgstr "" -#: src/Object/Post.php:386 +#: src/Object/Post.php:415 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:386 +#: src/Object/Post.php:415 msgid "Unshare" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:466 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:438 +#: src/Object/Post.php:472 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:438 +#: src/Object/Post.php:472 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:459 +#: src/Object/Post.php:494 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:459 +#: src/Object/Post.php:494 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:488 +#: src/Object/Post.php:523 msgid "to" msgstr "till" -#: src/Object/Post.php:489 +#: src/Object/Post.php:524 msgid "via" msgstr "via" -#: src/Object/Post.php:490 +#: src/Object/Post.php:525 msgid "Wall-to-Wall" msgstr "Profil-till-profil" -#: src/Object/Post.php:491 +#: src/Object/Post.php:526 msgid "via Wall-To-Wall:" msgstr "via profil-till-profil:" -#: src/Object/Post.php:533 +#: src/Object/Post.php:573 #, php-format msgid "Reply to %s" msgstr "" -#: src/Object/Post.php:536 +#: src/Object/Post.php:576 msgid "More" msgstr "" -#: src/Object/Post.php:554 +#: src/Object/Post.php:595 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:555 +#: src/Object/Post.php:596 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:556 +#: src/Object/Post.php:597 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:598 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:558 +#: src/Object/Post.php:599 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:578 +#: src/Object/Post.php:619 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d kommentar" msgstr[1] "%d kommentarer" -#: src/Object/Post.php:579 +#: src/Object/Post.php:620 msgid "Show more" msgstr "" -#: src/Object/Post.php:580 +#: src/Object/Post.php:621 msgid "Show fewer" msgstr "" -#: src/Protocol/OStatus.php:1705 +#: src/Object/Post.php:657 +#, php-format +msgid "Reshared by: %s" +msgstr "" + +#: src/Object/Post.php:662 +#, php-format +msgid "Viewed by: %s" +msgstr "" + +#: src/Object/Post.php:667 +#, php-format +msgid "Liked by: %s" +msgstr "" + +#: src/Object/Post.php:672 +#, php-format +msgid "Disliked by: %s" +msgstr "" + +#: src/Object/Post.php:677 +#, php-format +msgid "Attended by: %s" +msgstr "" + +#: src/Object/Post.php:682 +#, php-format +msgid "Maybe attended by: %s" +msgstr "" + +#: src/Object/Post.php:687 +#, php-format +msgid "Not attended by: %s" +msgstr "" + +#: src/Object/Post.php:692 +#, php-format +msgid "Reacted with %s by: %s" +msgstr "" + +#: src/Protocol/Delivery.php:547 +msgid "(no subject)" +msgstr "" + +#: src/Protocol/OStatus.php:1390 #, php-format msgid "%s is now following %s." msgstr "" -#: src/Protocol/OStatus.php:1706 +#: src/Protocol/OStatus.php:1391 msgid "following" msgstr "följer" -#: src/Protocol/OStatus.php:1709 +#: src/Protocol/OStatus.php:1394 #, php-format msgid "%s stopped following %s." msgstr "" -#: src/Protocol/OStatus.php:1710 +#: src/Protocol/OStatus.php:1395 msgid "stopped following" msgstr "följer inte längre" -#: src/Render/FriendicaSmartyEngine.php:65 -msgid "The folder view/smarty3/ must be writable by webserver." +#: src/Render/FriendicaSmartyEngine.php:56 +#, php-format +msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:226 +#: src/Security/Authentication.php:227 msgid "Login failed." msgstr "Inloggningen misslyckades." -#: src/Security/Authentication.php:267 +#: src/Security/Authentication.php:272 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:369 +#: src/Security/Authentication.php:391 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:370 +#: src/Security/Authentication.php:392 msgid "Please upload a profile photo." msgstr "Vänligen ladda upp ett profil-foto." -#: src/Util/EMailer/MailBuilder.php:259 +#: src/Util/EMailer/MailBuilder.php:260 msgid "Friendica Notification" msgstr "" @@ -10889,228 +12088,235 @@ msgstr "" msgid "thanks" msgstr "" -#: src/Util/Temporal.php:167 +#: src/Util/Temporal.php:172 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:275 +#: src/Util/Temporal.php:280 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:318 +#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 msgid "never" msgstr "" -#: src/Util/Temporal.php:325 +#: src/Util/Temporal.php:343 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:352 msgid "year" msgstr "" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:352 msgid "years" msgstr "" -#: src/Util/Temporal.php:334 +#: src/Util/Temporal.php:353 msgid "months" msgstr "" -#: src/Util/Temporal.php:335 +#: src/Util/Temporal.php:354 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:336 +#: src/Util/Temporal.php:355 msgid "days" msgstr "" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:356 msgid "hour" msgstr "" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:356 msgid "hours" msgstr "" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:357 msgid "minute" msgstr "" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:357 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:358 msgid "second" msgstr "" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:358 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:349 +#: src/Util/Temporal.php:367 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:370 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/Delivery.php:525 -msgid "(no subject)" -msgstr "" - -#: src/Worker/PushSubscription.php:112 +#: src/Worker/PushSubscription.php:110 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:113 +#: src/Worker/PushSubscription.php:111 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:52 +#: view/theme/duepuntozero/config.php:68 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:53 +#: view/theme/duepuntozero/config.php:69 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:54 +#: view/theme/duepuntozero/config.php:70 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:55 +#: view/theme/duepuntozero/config.php:71 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:56 +#: view/theme/duepuntozero/config.php:72 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:57 +#: view/theme/duepuntozero/config.php:73 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:58 +#: view/theme/duepuntozero/config.php:74 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:87 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:142 +#: view/theme/frio/config.php:153 msgid "Light (Accented)" msgstr "" -#: view/theme/frio/config.php:143 +#: view/theme/frio/config.php:154 msgid "Dark (Accented)" msgstr "" -#: view/theme/frio/config.php:144 +#: view/theme/frio/config.php:155 msgid "Black (Accented)" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Note" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:162 +#: view/theme/frio/config.php:173 msgid "Custom" msgstr "" -#: view/theme/frio/config.php:163 +#: view/theme/frio/config.php:174 msgid "Legacy" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:175 msgid "Accented" msgstr "" -#: view/theme/frio/config.php:165 +#: view/theme/frio/config.php:176 msgid "Select color scheme" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Select scheme accent" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Red" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Green" msgstr "" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:179 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:169 +#: view/theme/frio/config.php:180 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:170 +#: view/theme/frio/config.php:181 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:171 +#: view/theme/frio/config.php:182 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:183 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:173 +#: view/theme/frio/config.php:184 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:174 +#: view/theme/frio/config.php:185 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "" + +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "" + +#: view/theme/frio/config.php:192 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Leave background image and color empty for theme defaults" msgstr "" @@ -11158,78 +12364,78 @@ msgstr "" msgid "Back to top" msgstr "" -#: view/theme/frio/theme.php:207 +#: view/theme/frio/theme.php:211 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:210 +#: view/theme/frio/theme.php:214 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:74 +#: view/theme/quattro/config.php:90 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:75 +#: view/theme/quattro/config.php:91 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:76 +#: view/theme/quattro/config.php:92 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" +#: view/theme/vier/config.php:91 +msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "show" msgstr "" -#: view/theme/vier/config.php:121 +#: view/theme/vier/config.php:137 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:122 +#: view/theme/vier/config.php:138 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:125 +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:124 +#: view/theme/vier/config.php:140 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:296 +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:126 +#: view/theme/vier/config.php:142 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:152 +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:211 +#: view/theme/vier/theme.php:234 msgid "Quick Start" msgstr "" diff --git a/view/lang/sv/strings.php b/view/lang/sv/strings.php index d9517c957..cf5e999a3 100644 --- a/view/lang/sv/strings.php +++ b/view/lang/sv/strings.php @@ -5,104 +5,56 @@ function string_plural_select_sv($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Access denied.'] = 'Åtkomst nekad.'; -$a->strings['User not found.'] = 'Användaren hittades inte.'; -$a->strings['Access to this profile has been restricted.'] = 'Åtkomst till den här profilen har begränsats.'; -$a->strings['Events'] = 'Evenemang'; -$a->strings['View'] = 'Visa'; -$a->strings['Previous'] = 'Föregående'; -$a->strings['Next'] = 'Nästa'; -$a->strings['today'] = 'idag'; -$a->strings['month'] = 'månad'; -$a->strings['week'] = 'vecka'; -$a->strings['day'] = 'dag'; -$a->strings['list'] = 'lista'; -$a->strings['User not found'] = 'Användaren hittades inte'; -$a->strings['This calendar format is not supported'] = 'Kalenderformatet stöds inte'; -$a->strings['No exportable data found'] = 'Inga data att exportera hittades'; -$a->strings['calendar'] = 'kalender'; -$a->strings['Public access denied.'] = 'Publik åtkomst nekades.'; -$a->strings['The feed for this item is unavailable.'] = 'Flödet för det här föremålet är otillgängligt.'; -$a->strings['Permission denied.'] = 'Åtkomst nekad.'; -$a->strings['Item not found'] = 'Hittades inte'; -$a->strings['Edit post'] = 'Ändra inlägg'; -$a->strings['Save'] = 'Spara'; -$a->strings['Loading...'] = 'Laddar...'; -$a->strings['Upload photo'] = 'Ladda upp bild'; -$a->strings['upload photo'] = 'ladda upp bild'; -$a->strings['Attach file'] = 'Bifoga fil'; -$a->strings['attach file'] = 'bifoga fil'; -$a->strings['Insert web link'] = 'Infoga länk'; -$a->strings['web link'] = 'webblänk'; -$a->strings['Insert video link'] = 'Klistra in videolänk'; -$a->strings['video link'] = 'videolänk'; -$a->strings['Insert audio link'] = 'Klistra in ljudlänk'; -$a->strings['audio link'] = 'ljudlänk'; -$a->strings['Set your location'] = 'Ange plats'; -$a->strings['set location'] = 'ange plats'; -$a->strings['Clear browser location'] = 'Clear browser location'; -$a->strings['clear location'] = 'rensa plats'; -$a->strings['Please wait'] = 'Var god vänta'; -$a->strings['Permission settings'] = 'Åtkomstinställningar'; -$a->strings['CC: email addresses'] = 'Kopia: e-postadresser'; -$a->strings['Public post'] = 'Offentligt inlägg'; -$a->strings['Set title'] = 'Ange rubrik'; -$a->strings['Categories (comma-separated list)'] = 'Kategorier (kommaseparerad lista)'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Exempel: adam@exempel.com, bertil@exempel.com'; -$a->strings['Preview'] = 'Förhandsgranskning'; -$a->strings['Cancel'] = 'Avbryt'; -$a->strings['Bold'] = 'Fet'; -$a->strings['Italic'] = 'Kursiv'; -$a->strings['Underline'] = 'Understruken'; -$a->strings['Quote'] = 'Citat'; -$a->strings['Code'] = 'Källkod'; -$a->strings['Link'] = 'Länk'; -$a->strings['Link or Media'] = 'Länk eller media'; -$a->strings['Message'] = 'Meddelande'; -$a->strings['Browser'] = 'Bläddra'; -$a->strings['Permissions'] = 'Åtkomst'; -$a->strings['Event can not end before it has started.'] = 'Evenemanget kan inte sluta före det har börjat.'; -$a->strings['Event title and start time are required.'] = 'Evenemangets titel och start-tid krävs.'; -$a->strings['Create New Event'] = 'Skapa nytt evenemang'; -$a->strings['Event details'] = 'Evenemangets detaljer'; -$a->strings['Starting date and Title are required.'] = 'Start-datum och titel krävs.'; -$a->strings['Event Starts:'] = 'Evenemanget börjar:'; -$a->strings['Required'] = 'Krävs'; -$a->strings['Finish date/time is not known or not relevant'] = 'Slut-datum/tid är inte känt eller icke relevant'; -$a->strings['Event Finishes:'] = 'Evenemanget slutar:'; -$a->strings['Description:'] = 'Beskrivning:'; -$a->strings['Location:'] = 'Plats:'; -$a->strings['Title:'] = 'Titel:'; -$a->strings['Share this event'] = 'Dela det här evenemanget'; -$a->strings['Submit'] = 'Spara'; -$a->strings['Basic'] = 'Standard'; -$a->strings['Advanced'] = 'Avancerat'; -$a->strings['Failed to remove event'] = 'Borttagning av evenemanget misslyckades'; -$a->strings['Photos'] = 'Bilder'; -$a->strings['Upload'] = 'Ladda upp'; -$a->strings['Files'] = 'Filer'; -$a->strings['Submit Request'] = 'Skicka förfrågan'; -$a->strings['You already added this contact.'] = 'Du har redan lagt till den här kontakten.'; -$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Nätverkstypen kunde inte upptäckas. Kontakten kan inte läggas till.'; -$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Stödet för Diaspora är inte aktiverat. Kontakten kan inte läggas till.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Stödet för OStatus är inaktiverat. Kontakten kan inte läggas till.'; -$a->strings['Connect/Follow'] = 'Gör till kontakt/Följ'; -$a->strings['Please answer the following:'] = 'Var vänlig besvara följande:'; -$a->strings['Your Identity Address:'] = 'Din adress (ditt ID):'; -$a->strings['Profile URL'] = 'URL för profil'; -$a->strings['Tags:'] = 'Taggar:'; -$a->strings['%s knows you'] = '%s känner dig'; -$a->strings['Add a personal note:'] = 'Lägg till ett personligt meddelande:'; -$a->strings['Status Messages and Posts'] = 'Statusmeddelanden och inlägg'; -$a->strings['The contact could not be added.'] = 'Kontakten kunde inte läggas till.'; $a->strings['Unable to locate original post.'] = 'Hittar inte det ursprungliga inlägget.'; -$a->strings['Empty post discarded.'] = 'Tomt inlägg. Inte sparat.'; $a->strings['Post updated.'] = 'Inlägget uppdaterades.'; $a->strings['Item wasn\'t stored.'] = 'Objektet lagrades inte.'; $a->strings['Item couldn\'t be fetched.'] = 'Objektet kunde inte hämtas.'; +$a->strings['Empty post discarded.'] = 'Tomt inlägg. Inte sparat.'; $a->strings['Item not found.'] = 'Hittar inte.'; +$a->strings['Permission denied.'] = 'Åtkomst nekad.'; $a->strings['No valid account found.'] = 'Inget giltigt konto hittades.'; $a->strings['Password reset request issued. Check your email.'] = 'Nytt lösenord har begärts. Kolla din mail.'; +$a->strings[' + Dear %1$s, + A request was recently received at "%2$s" to reset your account + password. In order to confirm this request, please select the verification link + below or paste it into your web browser address bar. + + If you did NOT request this change, please DO NOT follow the link + provided and ignore and/or delete this email, the request will expire shortly. + + Your password will not be changed unless we can verify that you + issued this request.'] = ' + Hej %1$s, + Någon begärde nyligen att "%2$s" skulle återställa ditt lösenord. + För att utföra denna begäran, vänligen besök länken nedan eller kopiera den till din webläsare. + + Om du INTE begärde återställning av ditt lösenord så ska du INTE följa länken, utan ignorera detta mail. Denna begäran om återställning blir snart ogiltig. + + Ditt lösenord kommer inte att återställas om vi inte kan verifiera att det var du som begärde det.'; +$a->strings[' + Follow this link soon to verify your identity: + + %1$s + + You will then receive a follow-up message containing the new password. + You may change that password from your account settings page after logging in. + + The login details are as follows: + + Site Location: %2$s + Login Name: %3$s'] = ' + Följ denna länk snart för att bekräfta din identitet: + + %1$s + + Du kommer sedan att få ett mail med det nya lösenordet. + Du kan ändra det lösenordet från dina konto-inställningar efter att du loggat in. + + Dina inloggningsuppgifter: + + Web-plats: %2$s + Användarnamn: %3$s'; $a->strings['Password reset requested at %s'] = 'Nytt lösenord på %s har begärts'; $a->strings['Request could not be verified. (You may have previously submitted it.) Password reset failed.'] = 'Begäran kunde inte verifieras. (Du kanske redan skickat den?) Det gick inte att byta lösenord.'; $a->strings['Request has expired, please make a new one.'] = 'Förfrågningen har slutat gälla, vänligen gör en ny.'; @@ -118,8 +70,6 @@ $a->strings['click here to login'] = 'klicka här för att logga in'; $a->strings['Your password may be changed from the Settings page after successful login.'] = 'När du loggat in kan du byta lösenord på sidan Inställningar.'; $a->strings['Your password has been reset.'] = 'Ditt lösenord har återställts.'; $a->strings['Your password has been changed at %s'] = 'Ditt lösenord ändrades den %s'; -$a->strings['No matches'] = 'Ingen träff'; -$a->strings['Profile Match'] = 'Matcha profiler'; $a->strings['New Message'] = 'Nytt meddelande'; $a->strings['No recipient selected.'] = 'Ingen mottagare har valts.'; $a->strings['Unable to locate contact information.'] = 'Det gick inte att hitta kontaktuppgifterna.'; @@ -135,6 +85,10 @@ $a->strings['Send Private Message'] = 'Skicka personligt meddelande'; $a->strings['To:'] = 'Till:'; $a->strings['Subject:'] = 'Rubrik:'; $a->strings['Your message:'] = 'Meddelande:'; +$a->strings['Upload photo'] = 'Ladda upp bild'; +$a->strings['Insert web link'] = 'Infoga länk'; +$a->strings['Please wait'] = 'Var god vänta'; +$a->strings['Submit'] = 'Spara'; $a->strings['No messages.'] = 'Inga meddelanden.'; $a->strings['Message not available.'] = 'Meddelandet är inte tillgängligt.'; $a->strings['Delete message'] = 'Ta bort meddelande'; @@ -151,18 +105,8 @@ $a->strings['%d message'] = [ ]; $a->strings['Personal Notes'] = 'Personliga anteckningar'; $a->strings['Personal notes are visible only by yourself.'] = 'Personliga anteckningar kan endast ses av dig själv.'; -$a->strings['Subscribing to contacts'] = 'Prenumererar på kontakter'; -$a->strings['No contact provided.'] = 'Ingen kontakt angedd'; -$a->strings['Couldn\'t fetch information for contact.'] = 'Kunde inte hämta information för kontakten.'; -$a->strings['Couldn\'t fetch friends for contact.'] = 'Kunde inte hämta vänner för kontakt.'; -$a->strings['Couldn\'t fetch following contacts.'] = 'Kunde inte hämta följande kontakter.'; -$a->strings['Couldn\'t fetch remote profile.'] = 'Kunde inte hämta profil'; -$a->strings['Unsupported network'] = 'Nätverket stöds inte'; -$a->strings['Done'] = 'Färdig'; -$a->strings['success'] = 'lyckades'; -$a->strings['failed'] = 'misslyckades'; -$a->strings['ignored'] = 'ignorerades'; -$a->strings['Keep this window open until done.'] = 'Håll det här fönstret öppet tills du är klar.'; +$a->strings['Save'] = 'Spara'; +$a->strings['User not found.'] = 'Användaren hittades inte.'; $a->strings['Photo Albums'] = 'Fotoalbum'; $a->strings['Recent Photos'] = 'Nyligen tillagda bilder'; $a->strings['Upload New Photos'] = 'Ladda upp bilder'; @@ -174,21 +118,16 @@ $a->strings['Album was empty.'] = 'Albumet var tomt.'; $a->strings['Failed to delete the photo.'] = 'Borttagningen av fotot misslyckades.'; $a->strings['a photo'] = 'ett foto'; $a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s taggades i %2$s av %3$s'; -$a->strings['Image exceeds size limit of %s'] = 'Bildstorlek överstiger %s'; -$a->strings['Image upload didn\'t complete, please try again'] = 'Uppladdningen av bilden slutfördes inte, vänligen försök igen.'; -$a->strings['Image file is missing'] = 'Bildfilen saknas'; -$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Servern kan just nu inte acceptera uppladdning av en ny fil, vänligen kontakta din administratör'; -$a->strings['Image file is empty.'] = 'Bildfilen är tom.'; -$a->strings['Unable to process image.'] = 'Det gick inte att behandla bilden.'; -$a->strings['Image upload failed.'] = 'Fel vid bilduppladdning.'; +$a->strings['Public access denied.'] = 'Publik åtkomst nekades.'; $a->strings['No photos selected'] = 'Inga bilder har valts'; -$a->strings['Access to this item is restricted.'] = 'Åtkomst till det här objekt är begränsat.'; $a->strings['Upload Photos'] = 'Ladda upp bilder'; $a->strings['New album name: '] = 'Nytt album med namn: '; $a->strings['or select existing album:'] = 'eller välj befintligt album:'; $a->strings['Do not show a status post for this upload'] = 'Visa inte ett status-inlägg för den här uppladdningen'; +$a->strings['Permissions'] = 'Åtkomst'; $a->strings['Do you really want to delete this photo album and all its photos?'] = 'Vill du verkligen ta bort det här fotoalbumet och alla dess foton?'; $a->strings['Delete Album'] = 'Ta bort album'; +$a->strings['Cancel'] = 'Avbryt'; $a->strings['Edit Album'] = 'Redigera album'; $a->strings['Drop Album'] = 'Släpp albumet'; $a->strings['Show Newest First'] = 'Visa nyaste först'; @@ -215,6 +154,8 @@ $a->strings['Rotate CW (right)'] = 'Rotera medurs (höger)'; $a->strings['Rotate CCW (left)'] = 'Rotera Moturs (vänster)'; $a->strings['This is you'] = 'Det här är du'; $a->strings['Comment'] = 'Kommentera'; +$a->strings['Preview'] = 'Förhandsgranskning'; +$a->strings['Loading...'] = 'Laddar...'; $a->strings['Select'] = 'Välj'; $a->strings['Delete'] = 'Ta bort'; $a->strings['Like'] = 'Gilla'; @@ -222,75 +163,6 @@ $a->strings['I like this (toggle)'] = 'Jag gillar det här (växla)'; $a->strings['Dislike'] = 'Ogilla'; $a->strings['I don\'t like this (toggle)'] = 'Jag ogillar det här (växla)'; $a->strings['Map'] = 'Karta'; -$a->strings['View Album'] = 'Titta i album'; -$a->strings['Bad Request.'] = 'Dålig begäran.'; -$a->strings['Contact not found.'] = 'Kontakten hittades inte.'; -$a->strings['[Friendica System Notify]'] = '[System-avisering för Friendica]'; -$a->strings['User deleted their account'] = 'Användaren tog bort sitt konto'; -$a->strings['The user id is %d'] = 'ID för användaren är %d'; -$a->strings['Remove My Account'] = 'Ta bort mitt konto'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Detta kommer att ta bort kontot helt och hållet. Efter att det är gjort går det inte att återställa.'; -$a->strings['Please enter your password for verification:'] = 'Ange lösenordet igen för säkerhets skull:'; -$a->strings['Error'] = [ - 0 => 'Fel', - 1 => 'Fel', -]; -$a->strings['Failed to connect with email account using the settings provided.'] = 'Kunde inte ansluta till e-postkontot med aktuella inställningar'; -$a->strings['Connected Apps'] = 'Anslutna appar'; -$a->strings['Name'] = 'Namn'; -$a->strings['Home Page'] = 'Hemsida'; -$a->strings['Created'] = 'Skapades'; -$a->strings['Remove authorization'] = 'Ta bort autentisering'; -$a->strings['Save Settings'] = 'Spara inställningar'; -$a->strings['Addon Settings'] = 'Inställningar för Tillägg'; -$a->strings['No Addon settings configured'] = 'Inga inställningar för Tillägg har gjorts'; -$a->strings['Additional Features'] = 'Ytterligare funktioner'; -$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings['enabled'] = 'aktiverad'; -$a->strings['disabled'] = 'inaktiverad'; -$a->strings['Built-in support for %s connectivity is %s'] = 'Inbyggt stöd för %s kommunikation är %s'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; -$a->strings['Email access is disabled on this site.'] = 'E-poståtkomst är inaktiverat på den här sidan.'; -$a->strings['None'] = 'Ingen'; -$a->strings['Social Networks'] = 'Sociala nätverk'; -$a->strings['General Social Media Settings'] = 'Generella inställningar för sociala medier'; -$a->strings['Enable Content Warning'] = 'Aktivera innehållsvarning'; -$a->strings['Enable intelligent shortening'] = 'Aktivera intelligent förkortning'; -$a->strings['Repair OStatus subscriptions'] = 'Reparera OStatus-prenumerationer'; -$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'För att kommunicera via e-post med denna tjänst (valfritt), vänligen ange anslutningssätt till ditt e-postkonto.'; -$a->strings['IMAP server name:'] = 'Namn på IMAP-server:'; -$a->strings['IMAP port:'] = 'Port för IMAP:'; -$a->strings['Security:'] = 'Säkerhet:'; -$a->strings['Email login name:'] = 'Inloggningsnamn för e-post:'; -$a->strings['Email password:'] = 'Lösenord för e-post:'; -$a->strings['Reply-to address:'] = 'Svara till-adress:'; -$a->strings['Send public posts to all email contacts:'] = 'Skicka publika inlägg till alla e-postkontakter:'; -$a->strings['Action after import:'] = 'Åtgärd efter importering:'; -$a->strings['Mark as seen'] = 'Markera som läst'; -$a->strings['Move to folder'] = 'Flytta till mapp'; -$a->strings['Move to folder:'] = 'Flytta till mapp:'; -$a->strings['Friend Suggestions'] = 'Vän-förslag'; -$a->strings['photo'] = 'foto'; -$a->strings['status'] = 'status'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s taggade %2$ss %3$s med %4$s'; -$a->strings['Remove Item Tag'] = 'Ta bort tagg'; -$a->strings['Select a tag to remove: '] = 'Välj vilken tagg som ska tas bort: '; -$a->strings['Remove'] = 'Ta bort'; -$a->strings['Import'] = 'Importera'; -$a->strings['Move account'] = 'Flytta konto'; -$a->strings['You can import an account from another Friendica server.'] = 'Du kan importera ett konto från en annan Friendica-server.'; -$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'För att exportera ditt konto, gå till "Inställningar->Exportera din personliga data" och välj "Exportera konto"'; -$a->strings['You aren\'t following this contact.'] = 'Du följer inte den här kontakten.'; -$a->strings['Unfollowing is currently not supported by your network.'] = 'Avföljning stöds för närvarande inte av ditt nätverk.'; -$a->strings['Disconnect/Unfollow'] = 'Koppla ur/Avfölj'; -$a->strings['Contact was successfully unfollowed'] = 'Avföljningen av kontakten lyckades'; -$a->strings['Invalid request.'] = 'Ogiltig förfrågning.'; -$a->strings['Or - did you try to upload an empty file?'] = 'Eller - provade du att ladda upp en tom fil?'; -$a->strings['File exceeds size limit of %s'] = 'Filen överstiger maxstorleken %s'; -$a->strings['File upload failed.'] = 'Uppladdning av filen misslyckades.'; -$a->strings['Wall Photos'] = 'Loggbilder'; -$a->strings['Unable to check your home location.'] = 'Kunde inte kontrollera platsen för ditt hem.'; -$a->strings['No recipient.'] = 'Ingen mottagare.'; $a->strings['Apologies but the website is unavailable at the moment.'] = 'Ursäkta, men hemsidan är inte tillgänglig för tillfället. '; $a->strings['Delete this item?'] = 'Ta bort?'; $a->strings['toggle mobile'] = 'växla mobil'; @@ -304,6 +176,10 @@ $a->strings['Common'] = 'Vanlig'; $a->strings['Addon not found'] = 'Insticksprogrammet hittades inte'; $a->strings['Addon already enabled'] = 'Insticksprogrammet är redan aktiverat'; $a->strings['Addon already disabled'] = 'Insticksprogrammet är redan inaktiverat'; +$a->strings['The contact entries have been archived'] = 'Kontaktuppgifterna har arkiverats'; +$a->strings['Could not find any contact entry for this URL (%s)'] = 'Kunde inte hitta någon kontakt för denna URL (%s)'; +$a->strings['Deletion of id %d failed'] = 'Kunde inte ta bort id %d'; +$a->strings['Deletion of id %d was successful'] = 'Id %d har tagits bort'; $a->strings[' - found'] = '- hittad'; $a->strings[' - failed'] = '- misslyckad'; $a->strings[' - success'] = '- framgång'; @@ -311,6 +187,7 @@ $a->strings[' - deleted'] = '- borttagen'; $a->strings[' - done'] = '- klar'; $a->strings['Done.'] = 'Färdig.'; $a->strings['Enter user nickname: '] = 'Ange smeknamn för användaren:'; +$a->strings['User not found'] = 'Användaren hittades inte'; $a->strings['Enter new password: '] = 'Ange nytt lösenord:'; $a->strings['Password update failed. Please try again.'] = 'Det blev fel när lösenordet skulle ändras. Försök igen.'; $a->strings['Password changed.'] = 'Lösenordet har ändrats.'; @@ -346,23 +223,8 @@ $a->strings['Twitter'] = 'Twitter'; $a->strings['Discourse'] = 'Discourse'; $a->strings['ActivityPub'] = 'ActivityPub'; $a->strings['pnut'] = 'pnut'; -$a->strings['%s likes this.'] = '%s gillar det här.'; -$a->strings['%s doesn\'t like this.'] = '%s ogillar det här.'; -$a->strings['%s attends.'] = '%s deltar.'; -$a->strings['%s doesn\'t attend.'] = '%s deltar inte.'; -$a->strings['%s attends maybe.'] = '%s deltar kanske.'; $a->strings['and'] = 'och'; $a->strings['and %d other people'] = 'och %d andra'; -$a->strings['%2$d people like this'] = '%2$d personer gillar det här'; -$a->strings['%s like this.'] = '%s gillar det här.'; -$a->strings['%2$d people don\'t like this'] = '%2$d personer ogillar det här'; -$a->strings['%s don\'t like this.'] = '%s ogillar det här.'; -$a->strings['%2$d people attend'] = '%2$d personer deltar'; -$a->strings['%s attend.'] = '%s deltar.'; -$a->strings['%2$d people don\'t attend'] = '%2$d personer deltar inte'; -$a->strings['%s don\'t attend.'] = '%s deltar inte.'; -$a->strings['%2$d people attend maybe'] = '%2$dpersoner deltar kanske'; -$a->strings['%s attend maybe.'] = '%s deltar kanske.'; $a->strings['Visible to everybody'] = 'Synlig för alla'; $a->strings['Please enter a image/video/audio/webpage URL:'] = 'Vänligen fyll i URL till en bild/video/ljudklipp/hemsida:'; $a->strings['Tag term:'] = 'Märkning/tagg:'; @@ -371,41 +233,58 @@ $a->strings['Where are you right now?'] = 'Var är du just nu?'; $a->strings['Delete item(s)?'] = 'Ta bort?'; $a->strings['New Post'] = 'Nytt inlägg'; $a->strings['Share'] = 'Publicera'; +$a->strings['upload photo'] = 'ladda upp bild'; +$a->strings['Attach file'] = 'Bifoga fil'; +$a->strings['attach file'] = 'bifoga fil'; +$a->strings['Bold'] = 'Fet'; +$a->strings['Italic'] = 'Kursiv'; +$a->strings['Underline'] = 'Understruken'; +$a->strings['Quote'] = 'Citat'; +$a->strings['Code'] = 'Källkod'; $a->strings['Image'] = 'Bild'; +$a->strings['Link'] = 'Länk'; +$a->strings['Link or Media'] = 'Länk eller media'; $a->strings['Video'] = 'Video'; +$a->strings['Set your location'] = 'Ange plats'; +$a->strings['set location'] = 'ange plats'; +$a->strings['Clear browser location'] = 'Clear browser location'; +$a->strings['clear location'] = 'rensa plats'; +$a->strings['Set title'] = 'Ange rubrik'; +$a->strings['Categories (comma-separated list)'] = 'Kategorier (kommaseparerad lista)'; $a->strings['Scheduled at'] = 'Schemalades vid'; +$a->strings['Permission settings'] = 'Åtkomstinställningar'; +$a->strings['Public post'] = 'Offentligt inlägg'; +$a->strings['Message'] = 'Meddelande'; +$a->strings['Browser'] = 'Bläddra'; +$a->strings['remove'] = 'ta bort'; +$a->strings['Delete Selected Items'] = 'Ta bort valda föremål'; +$a->strings['You are following %s.'] = 'Du följer %s.'; +$a->strings['Reshared'] = 'Delad igen'; +$a->strings['Reshared by %s <%s>'] = 'Delad igen av %s <%s>'; +$a->strings['%s is participating in this thread.'] = '%s deltar i den här tråden.'; +$a->strings['Fetched'] = 'Hämtad'; +$a->strings['Fetched because of %s <%s>'] = 'Hämtades på grund av %s <%s>'; $a->strings['View %s\'s profile @ %s'] = 'Visa profilen som tillhör %s @ %s'; $a->strings['Categories:'] = 'Kategorier:'; $a->strings['Filed under:'] = 'Sparad under:'; $a->strings['%s from %s'] = '%s från %s'; $a->strings['View in context'] = 'Visa i sitt sammanhang'; -$a->strings['remove'] = 'ta bort'; -$a->strings['Delete Selected Items'] = 'Ta bort valda föremål'; -$a->strings['You are following %s.'] = 'Du följer %s.'; -$a->strings['Tagged'] = 'Taggad'; -$a->strings['Reshared'] = 'Delad igen'; -$a->strings['Reshared by %s <%s>'] = 'Delad igen av %s <%s>'; -$a->strings['%s is participating in this thread.'] = '%s deltar i den här tråden.'; -$a->strings['Stored'] = 'Lagrad'; -$a->strings['Global'] = 'Global'; -$a->strings['Relayed'] = 'Fördröjd'; -$a->strings['Relayed by %s <%s>'] = 'Fördröjdes av %s <%s>'; -$a->strings['Fetched'] = 'Hämtad'; -$a->strings['Fetched because of %s <%s>'] = 'Hämtades på grund av %s <%s>'; +$a->strings['Personal'] = 'Privat'; +$a->strings['Posts that mention or involve you'] = 'Inlägg som nämnde eller involverade dig'; +$a->strings['Starred'] = 'Stjärnmärkt'; +$a->strings['Favourite Posts'] = 'Favoriserade inlägg'; $a->strings['General Features'] = 'Generella funktioner'; -$a->strings['Auto-mention Forums'] = 'Nämn forumen automatiskt'; $a->strings['Add categories to your posts'] = 'Lägg till kategorier till dina inlägg'; $a->strings['Advanced Profile Settings'] = 'Avancerade profil-inställningar'; -$a->strings['List Forums'] = 'Lista forum'; $a->strings['Tag Cloud'] = 'Taggmoln'; $a->strings['Display Membership Date'] = 'Visa datum för medlemskap'; $a->strings['Display membership date in profile'] = 'Visa datum för medlemskapet i profilen'; -$a->strings['Forums'] = 'Forum'; -$a->strings['External link to forum'] = 'Extern länk till forum'; $a->strings['show less'] = 'visa mindre'; $a->strings['show more'] = 'visa mer'; -$a->strings['%1$s poked %2$s'] = '%1$s puffade %2$s'; $a->strings['event'] = 'händelse'; +$a->strings['status'] = 'status'; +$a->strings['photo'] = 'foto'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s taggade %2$ss %3$s med %4$s'; $a->strings['Follow Thread'] = 'Följ tråd'; $a->strings['View Status'] = 'Visa status'; $a->strings['View Profile'] = 'Visa profil'; @@ -416,25 +295,23 @@ $a->strings['Send PM'] = 'Skicka privat meddelande'; $a->strings['Block'] = 'Blockera'; $a->strings['Ignore'] = 'Ignorera'; $a->strings['Languages'] = 'Språk'; -$a->strings['Poke'] = 'Peta'; +$a->strings['Connect/Follow'] = 'Gör till kontakt/Följ'; $a->strings['Nothing new here'] = 'Inget nytt här'; $a->strings['Go back'] = 'Gå tillbaka'; $a->strings['Clear notifications'] = 'Rensa aviseringar'; -$a->strings['@name, !forum, #tags, content'] = '@namn, !forum, #taggar, innehåll'; $a->strings['Logout'] = 'Logga ut'; $a->strings['End this session'] = 'Avsluta den här sessionen'; $a->strings['Login'] = 'Logga in'; $a->strings['Sign in'] = 'Logga in'; -$a->strings['Status'] = 'Status'; -$a->strings['Your posts and conversations'] = 'Dina inlägg och konversationer'; $a->strings['Profile'] = 'Profil'; $a->strings['Your profile page'] = 'Din profil-sida'; +$a->strings['Photos'] = 'Bilder'; $a->strings['Your photos'] = 'Dina foton'; $a->strings['Media'] = 'Media'; -$a->strings['Your events'] = 'Dina evenemang'; $a->strings['Personal notes'] = 'Personliga anteckningar'; $a->strings['Your personal notes'] = 'Dina personliga anteckningar'; $a->strings['Home'] = 'Hem'; +$a->strings['Home Page'] = 'Hemsida'; $a->strings['Register'] = 'Registrera'; $a->strings['Create an account'] = 'Skapa ett konto'; $a->strings['Help'] = 'Hjälp'; @@ -447,7 +324,6 @@ $a->strings['Tags'] = 'Taggar'; $a->strings['Contacts'] = 'Kontakter'; $a->strings['Community'] = 'Gemenskap'; $a->strings['Conversations on this and other servers'] = 'Konversationer i den här och andra servrar'; -$a->strings['Events and Calendar'] = 'Evenemang och Kalender'; $a->strings['Directory'] = 'Medlemskatalog'; $a->strings['Information'] = 'Information'; $a->strings['Information about this friendica instance'] = 'Information om den här friendica-instansen'; @@ -455,10 +331,12 @@ $a->strings['Terms of Service'] = 'Villkor för användning'; $a->strings['Terms of Service of this Friendica instance'] = 'Den här Friendica-instansens villkor för användning'; $a->strings['Network'] = 'Nätverk'; $a->strings['Conversations from your friends'] = 'Konversationer från dina vänner'; +$a->strings['Your posts and conversations'] = 'Dina inlägg och konversationer'; $a->strings['Introductions'] = 'Presentationer'; $a->strings['Friend Requests'] = 'Vänförfrågningar'; $a->strings['Notifications'] = 'Aviseringar'; $a->strings['See all notifications'] = 'Se alla aviseringar'; +$a->strings['Mark as seen'] = 'Markera som läst'; $a->strings['Private mail'] = 'Privat e-post'; $a->strings['Inbox'] = 'Inkorg'; $a->strings['Outbox'] = 'Utkorg'; @@ -499,12 +377,12 @@ $a->strings['Find People'] = 'Hitta personer'; $a->strings['Enter name or interest'] = 'Ange namn eller intresse'; $a->strings['Examples: Robert Morgenstein, Fishing'] = 'Exempel: Robert Morgenstein, Fiskning'; $a->strings['Find'] = 'Sök'; +$a->strings['Friend Suggestions'] = 'Vän-förslag'; $a->strings['Similar Interests'] = 'Liknande intressen'; $a->strings['Random Profile'] = 'Slumpmässig profil'; $a->strings['Invite Friends'] = 'Bjud in folk du känner'; $a->strings['Global Directory'] = 'Medlemskatalog för flera sajter (global)'; $a->strings['Local Directory'] = 'Lokal-mapp'; -$a->strings['Groups'] = 'Grupper'; $a->strings['Everyone'] = 'Alla'; $a->strings['Relationships'] = 'Relationer'; $a->strings['All Contacts'] = 'Alla kontakter'; @@ -541,6 +419,7 @@ $a->strings['Trending Tags (last %d hour)'] = [ $a->strings['More Trending Tags'] = 'Fler trendande taggar'; $a->strings['XMPP:'] = 'XMPP:'; $a->strings['Matrix:'] = 'Matrix:'; +$a->strings['Location:'] = 'Plats:'; $a->strings['Network:'] = 'Nätverk:'; $a->strings['Unfollow'] = 'Avfölj'; $a->strings['Yourself'] = 'Du själv'; @@ -549,6 +428,8 @@ $a->strings['Public'] = 'Publik'; $a->strings['Limited/Private'] = 'Begränsad/Privat'; $a->strings['Show to:'] = 'Visa till:'; $a->strings['Except to:'] = 'Förutom till:'; +$a->strings['CC: email addresses'] = 'Kopia: e-postadresser'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Exempel: adam@exempel.com, bertil@exempel.com'; $a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Du kanske måste importera filen "database.sql" manuellt med phpmyadmin eller mysql.'; $a->strings['Please see the file "doc/INSTALL.md".'] = 'Vänligen se filen "doc/INSTALL.md".'; $a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Could not find a command line version of PHP in the web server PATH.'; @@ -612,35 +493,20 @@ $a->strings['Sep'] = 'Sep'; $a->strings['Oct'] = 'Okt'; $a->strings['Nov'] = 'Nov'; $a->strings['Dec'] = 'Dec'; -$a->strings['poke'] = 'peta'; -$a->strings['poked'] = 'petad'; -$a->strings['ping'] = 'ping'; -$a->strings['pinged'] = 'pingad'; -$a->strings['prod'] = 'prod'; -$a->strings['prodded'] = 'proddad'; -$a->strings['slap'] = 'smiska'; -$a->strings['finger'] = 'finger'; -$a->strings['fingered'] = 'fingrad'; $a->strings['Enter a valid existing folder'] = 'Ange en giltig befintlig mapp'; $a->strings['Update %s failed. See error logs.'] = 'Uppdateringen %s misslyckades. Se fler loggar.'; $a->strings['The error message is\n[pre]%s[/pre]'] = 'Felmeddelandet är \n[pre]%s[/pre]'; $a->strings['[Friendica Notify] Database update'] = '[Friendica-avisering] Uppdatering av databas'; -$a->strings['User \'%s\' already exists on this server!'] = 'Användaren \'%s\' existerar redan i den här servern!'; -$a->strings['User creation error'] = 'Fel uppstod när användaren skulle skapas'; -$a->strings['%d contact not imported'] = [ - 0 => '%d kontakt importerades inte', - 1 => '%d kontakterna importerades inte', -]; -$a->strings['Done. You can now login with your username and password'] = 'Färdig. Du kan nu logga in med ditt användarnamn och lösenord'; $a->strings['The database version had been set to %s.'] = 'Databas-versionen har ställts in till %s.'; $a->strings['%s: Database update'] = '%s: Uppdatering av databas'; $a->strings['Record not found'] = 'Posten hittades inte'; $a->strings['Unauthorized'] = 'Ej autentiserad'; $a->strings['Internal Server Error'] = 'Internt server-fel'; -$a->strings['UnFollow'] = 'Avfölj'; +$a->strings['Everybody'] = 'Alla'; +$a->strings['edit'] = 'redigera'; +$a->strings['add'] = 'lägg till'; $a->strings['Approve'] = 'Godkänn'; $a->strings['Organisation'] = 'Organisation'; -$a->strings['Forum'] = 'Forum'; $a->strings['Disallowed profile URL.'] = 'Otillåten profil-URL.'; $a->strings['Blocked domain'] = 'Blockerad domän'; $a->strings['The profile address specified does not provide adequate information.'] = 'Angiven profiladress ger inte tillräcklig information.'; @@ -652,7 +518,12 @@ $a->strings['Starts:'] = 'Börjar:'; $a->strings['Finishes:'] = 'Slutar:'; $a->strings['all-day'] = 'hela dagen'; $a->strings['Sept'] = 'Sept'; +$a->strings['today'] = 'idag'; +$a->strings['month'] = 'månad'; +$a->strings['week'] = 'vecka'; +$a->strings['day'] = 'dag'; $a->strings['No events to display'] = 'Inga evenemang att visa'; +$a->strings['Access to this profile has been restricted.'] = 'Åtkomst till den här profilen har begränsats.'; $a->strings['l, F j'] = 'l, F j'; $a->strings['Edit event'] = 'Redigera evenemang'; $a->strings['Duplicate event'] = 'Fördubbla evenemanget'; @@ -661,14 +532,6 @@ $a->strings['Show map'] = 'Visa karta'; $a->strings['Hide map'] = 'Göm karta'; $a->strings['%s\'s birthday'] = '%s\'s födelsedag'; $a->strings['Happy Birthday %s'] = 'Grattis på födelsedagen %s'; -$a->strings['Everybody'] = 'Alla'; -$a->strings['edit'] = 'redigera'; -$a->strings['add'] = 'lägg till'; -$a->strings['Edit group'] = 'Redigera gruppen'; -$a->strings['Contacts not in any group'] = 'Kontakterna finns inte i någon av grupperna'; -$a->strings['Create a new group'] = 'Skapa ny grupp'; -$a->strings['Group Name: '] = 'Gruppens namn: '; -$a->strings['Edit groups'] = 'Redigera grupper'; $a->strings['Detected languages in this post:\n%s'] = 'Upptäckte språken i det här inlägget:\n%s'; $a->strings['activity'] = 'aktivitet'; $a->strings['comment'] = 'kommentar'; @@ -678,6 +541,7 @@ $a->strings['bytes'] = 'bytes'; $a->strings['Poll end: %s'] = 'Omröstningen slut om: %s'; $a->strings['View on separate page'] = 'Visa på en separat sida'; $a->strings['[no subject]'] = '[ingen rubrik]'; +$a->strings['Wall Photos'] = 'Loggbilder'; $a->strings['Edit profile'] = 'Redigera profil'; $a->strings['Change profile photo'] = 'Byt profilbild'; $a->strings['Homepage:'] = 'Hemsida:'; @@ -747,43 +611,7 @@ $a->strings['Addons'] = 'Insticksprogram'; $a->strings['Toggle'] = 'Växla'; $a->strings['Author: '] = 'Författare:'; $a->strings['Maintainer: '] = 'Underhållare:'; -$a->strings['List of all users'] = 'Lista över alla användare'; -$a->strings['Active'] = 'Aktiv'; -$a->strings['List of active accounts'] = 'Lista över aktiva konton'; -$a->strings['Pending'] = 'Väntande'; -$a->strings['List of pending registrations'] = 'Lista över väntande registreringar'; -$a->strings['Blocked'] = 'Blockerad'; -$a->strings['List of blocked users'] = 'Lista över blockerade användare'; -$a->strings['Deleted'] = 'Ta bort'; -$a->strings['List of pending user deletions'] = 'Lista över väntande borttagningar av användare'; -$a->strings['Normal Account Page'] = 'Normal konto-sida'; -$a->strings['Public Forum'] = 'Publikt forum'; -$a->strings['Private Forum'] = 'Privat forum'; -$a->strings['Personal Page'] = 'Personlig sida'; -$a->strings['Organisation Page'] = 'Sida för organisation'; -$a->strings['Relay'] = 'Fördröj'; -$a->strings['You can\'t block a local contact, please block the user instead'] = 'Du kan inte blockera en lokal kontakt, vänligen blockera användaren istället'; -$a->strings['select all'] = 'välj alla'; -$a->strings['select none'] = 'välj ingen'; -$a->strings['Unblock'] = 'Avblockera'; -$a->strings['Photo'] = 'Foto'; -$a->strings['Reason'] = 'Anledning'; -$a->strings['Block Reason'] = 'Anledning för blockering'; -$a->strings['Matching known servers'] = 'Matchar kända servrar'; -$a->strings['Server Name'] = 'Namn på server'; -$a->strings['Server Domain'] = 'Serverns domän'; -$a->strings['Known Contacts'] = 'Kända kontakter'; -$a->strings['%d known server'] = [ - 0 => '%d känd server', - 1 => '%d kända servrar', -]; -$a->strings['Add pattern to the blocklist'] = 'Lägg till mönster till blockeringslistan'; -$a->strings['Reason for the block'] = 'Anledning för blockeringen'; -$a->strings['Add new entry to the blocklist'] = 'Lägg till ny post till blockeringslistan'; -$a->strings['Save changes to the blocklist'] = 'Spara ändringen i blockeringslistan'; -$a->strings['Current Entries in the Blocklist'] = 'Nuvarande poster i blockeringslistan'; -$a->strings['Delete entry from the blocklist'] = 'Ta bort post från blockeringslistan'; -$a->strings['Delete entry from the blocklist?'] = 'Ta bort post från blockeringslistan?'; +$a->strings['Save Settings'] = 'Spara inställningar'; $a->strings['Update has been marked successful'] = 'Uppdateringen har blivit markerad som lyckad'; $a->strings['Update %s was successfully applied.'] = 'Verkställningen av uppdateringen av %s lyckades.'; $a->strings['No failed updates.'] = 'Inga misslyckade uppdateringar.'; @@ -793,26 +621,6 @@ $a->strings['Lock feature %s'] = 'Lås-funktion %s'; $a->strings['Manage Additional Features'] = 'Hantera ytterligare funktioner'; $a->strings['Other'] = 'Annat'; $a->strings['unknown'] = 'okänd'; -$a->strings['%s total systems'] = '%s totala system'; -$a->strings['%s active users last month'] = '%s aktiva användare senaste månaden'; -$a->strings['%s active users last six months'] = '%s aktiva användare senaste 6 månaderna'; -$a->strings['%s registered users'] = '%s registrerade användare'; -$a->strings['%s locally created posts and comments'] = '%s lokalt skapade postningar och kommentarer'; -$a->strings['%s posts per user'] = '%s postningar per användare'; -$a->strings['%s users per system'] = '%s användare per system'; -$a->strings['Item marked for deletion.'] = 'Objektet är markerat för borttagning.'; -$a->strings['Delete Item'] = 'Ta bort objekt'; -$a->strings['Delete this Item'] = 'Ta bort det här objektet'; -$a->strings['GUID'] = 'GUID'; -$a->strings['The GUID of the item you want to delete.'] = 'Objektets GUID som du vill ta bort.'; -$a->strings['Item Source'] = 'Objektets källa'; -$a->strings['Terms'] = 'Villkor'; -$a->strings['Tag'] = 'Taggar'; -$a->strings['Type'] = 'Typ'; -$a->strings['Term'] = 'Villkor'; -$a->strings['URL'] = 'Webbadress'; -$a->strings['Mention'] = 'Nämn'; -$a->strings['Source'] = 'Källa'; $a->strings['Logs'] = 'Loggar'; $a->strings['Clear'] = 'Rensa'; $a->strings['Enable Debugging'] = 'Aktivera avlusning'; @@ -828,7 +636,9 @@ $a->strings['Context'] = 'Sammanhang'; $a->strings['ALL'] = 'ALLA'; $a->strings['View details'] = 'Visa detaljer'; $a->strings['Click to view details'] = 'Klicka för att visa detaljer'; +$a->strings['Event details'] = 'Evenemangets detaljer'; $a->strings['Data'] = 'Data'; +$a->strings['Source'] = 'Källa'; $a->strings['File'] = 'Fil'; $a->strings['Line'] = 'Rad'; $a->strings['Function'] = 'Funktion'; @@ -837,16 +647,15 @@ $a->strings['Close'] = 'Stäng'; $a->strings['ID'] = 'ID'; $a->strings['Command'] = 'Kommando'; $a->strings['Job Parameters'] = 'Jobb-parametrar'; +$a->strings['Created'] = 'Skapades'; $a->strings['Priority'] = 'Prioritet'; $a->strings['No special theme for mobile devices'] = 'Inget speciellt tema för mobil-enheter'; $a->strings['%s - (Experimental)'] = '%s - (Experimentell)'; -$a->strings['No community page for local users'] = 'Ingen gemenskapssida för lokala användare'; $a->strings['No community page'] = 'Ingen gemenskapssida'; $a->strings['Multi user instance'] = 'Instans för flertalet användare'; $a->strings['Closed'] = 'Stängd'; $a->strings['Requires approval'] = 'Kräver godkännande'; $a->strings['Open'] = 'Öppen'; -$a->strings['Force all links to use SSL'] = 'Tvinga alla länkar att använda SSL'; $a->strings['Don\'t check'] = 'Kolla inte'; $a->strings['check the stable version'] = 'kolla den stabila versionen'; $a->strings['check the development version'] = 'kolla utvecklingsversionen'; @@ -857,6 +666,7 @@ $a->strings['General Information'] = 'Generell information'; $a->strings['Registration'] = 'Registrering'; $a->strings['File upload'] = 'Fil-uppladdning'; $a->strings['Policies'] = 'Policyer'; +$a->strings['Advanced'] = 'Avancerat'; $a->strings['Performance'] = 'Prestanda'; $a->strings['Worker'] = 'Arbetare'; $a->strings['Message Relay'] = 'Meddelandefördröjning'; @@ -869,8 +679,6 @@ $a->strings['Additional Info'] = 'Ytterligare info'; $a->strings['System language'] = 'Systemets språk'; $a->strings['System theme'] = 'Systemets tema'; $a->strings['Theme for mobile devices'] = 'Tema för mobilenheter'; -$a->strings['SSL link policy'] = 'Policy för SSL-länk'; -$a->strings['Determines whether generated links should be forced to use SSL'] = 'Avgör huruvida genererade länkar ska tvingas att använda SSL eller inte'; $a->strings['Force SSL'] = 'Tvinga SSL'; $a->strings['Maximum image size'] = 'Maximal bildstorlek'; $a->strings['Maximum image length'] = 'Maximal bildlängd'; @@ -894,35 +702,12 @@ $a->strings['Network timeout'] = 'Tidsgräns för nätverket'; $a->strings['Value is in seconds. Set to 0 for unlimited (not recommended).'] = 'Värdet är i sekunder. Ställ in det till 0 för obegränsat (rekommenderas inte).'; $a->strings['Temp path'] = 'Tillfällig genväg'; $a->strings['Only search in tags'] = 'Sök endast i taggar'; -$a->strings['Normal Account'] = 'Vanligt konto'; -$a->strings['Automatic Friend Account'] = 'Konto med automatiskt godkännande av vänner.'; -$a->strings['Blog Account'] = 'Blogg-konto'; $a->strings['Message queues'] = 'Meddelandeköer'; -$a->strings['Registered users'] = 'Registrerade användare'; -$a->strings['Pending registrations'] = 'Väntande registreringar'; $a->strings['Version'] = 'Version'; $a->strings['Screenshot'] = 'Skärmdump'; $a->strings['Themes'] = 'Teman'; $a->strings['[Experimental]'] = '[Experimentiell]'; $a->strings['[Unsupported]'] = '[Stöds inte]'; -$a->strings['%s user deleted'] = [ - 0 => '%sanvändare togs bort', - 1 => '%s användare togs bort', -]; -$a->strings['Register date'] = 'Datum för registrering'; -$a->strings['Last login'] = 'Senaste inloggning'; -$a->strings['Account expired'] = 'Kontot slutade gälla'; -$a->strings['New User'] = 'Ny användare'; -$a->strings['Add User'] = 'Lägg till användare'; -$a->strings['Name of the new user.'] = 'Namn på den nya användaren.'; -$a->strings['Nickname'] = 'Smeknamn'; -$a->strings['Nickname of the new user.'] = 'Smeknamn på den nya användaren.'; -$a->strings['Email address of the new user.'] = 'E-postadress för den nya användaren.'; -$a->strings['Users'] = 'Användare'; -$a->strings['Account approved.'] = 'Kontot har godkänts.'; -$a->strings['Request date'] = 'Datum för begäran'; -$a->strings['No registrations.'] = 'Inga registreringar.'; -$a->strings['Deny'] = 'Avslå'; $a->strings['No installed applications.'] = 'Inga installerade applikationer.'; $a->strings['Applications'] = 'Applikationer'; $a->strings['Item was not found.'] = 'Objektet hittades inte.'; @@ -938,17 +723,44 @@ $a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = 0 => 'Veckovis gräns av %d inlägg nådd. Inlägged avvisades.', 1 => 'Veckovis gräns av %d inlägg nådd. Inlägged avvisades.', ]; -$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = 'Månatlig gräns av %d inlägg nådd. Inlägget avvisades.'; +$a->strings['Users'] = 'Användare'; +$a->strings['Delete Item'] = 'Ta bort objekt'; +$a->strings['Item Source'] = 'Objektets källa'; $a->strings['Profile Details'] = 'Profildetaljer'; $a->strings['Only You Can See This'] = 'Endast du kan se det här'; $a->strings['Tips for New Members'] = 'Tips för nya medlemmar'; +$a->strings['No matches'] = 'Ingen träff'; $a->strings['Account'] = 'Konto'; $a->strings['Display'] = 'Skärm'; +$a->strings['Social Networks'] = 'Sociala nätverk'; $a->strings['Connected apps'] = 'Anslutna appar'; $a->strings['Export personal data'] = 'Exporter personlig data'; $a->strings['Remove account'] = 'Ta bort konto'; $a->strings['The post was created'] = 'Inlägget skapades'; +$a->strings['Failed to remove event'] = 'Borttagning av evenemanget misslyckades'; +$a->strings['Event can not end before it has started.'] = 'Evenemanget kan inte sluta före det har börjat.'; +$a->strings['Event title and start time are required.'] = 'Evenemangets titel och start-tid krävs.'; +$a->strings['Starting date and Title are required.'] = 'Start-datum och titel krävs.'; +$a->strings['Event Starts:'] = 'Evenemanget börjar:'; +$a->strings['Required'] = 'Krävs'; +$a->strings['Finish date/time is not known or not relevant'] = 'Slut-datum/tid är inte känt eller icke relevant'; +$a->strings['Event Finishes:'] = 'Evenemanget slutar:'; +$a->strings['Share this event'] = 'Dela det här evenemanget'; +$a->strings['Basic'] = 'Standard'; +$a->strings['This calendar format is not supported'] = 'Kalenderformatet stöds inte'; +$a->strings['No exportable data found'] = 'Inga data att exportera hittades'; +$a->strings['calendar'] = 'kalender'; +$a->strings['Events'] = 'Evenemang'; +$a->strings['View'] = 'Visa'; +$a->strings['Create New Event'] = 'Skapa nytt evenemang'; +$a->strings['list'] = 'lista'; +$a->strings['Contact not found.'] = 'Kontakten hittades inte.'; +$a->strings['Invalid contact.'] = 'Ogiltig kontakt.'; +$a->strings['Members'] = 'Medlemmar'; +$a->strings['Click on a contact to add or remove.'] = 'Klicka på en kontakt för att lägga till eller ta bort.'; $a->strings['Show all contacts'] = 'Visa alla kontakter'; +$a->strings['Pending'] = 'Väntande'; +$a->strings['Blocked'] = 'Blockerad'; $a->strings['Only show blocked contacts'] = 'Visa endast blockerade kontakter'; $a->strings['Ignored'] = 'Ignorerade'; $a->strings['Only show ignored contacts'] = 'Visa endast ignorerade kontakter'; @@ -958,6 +770,7 @@ $a->strings['Hidden'] = 'Gömda'; $a->strings['Only show hidden contacts'] = 'Visa endast gömda kontakter'; $a->strings['Search your contacts'] = 'Sök dina kontakter'; $a->strings['Update'] = 'Uppdatera'; +$a->strings['Unblock'] = 'Avblockera'; $a->strings['Unignore'] = 'Sluta ignorera'; $a->strings['Mutual Friendship'] = 'Ömsesidig vänskap'; $a->strings['is a fan of yours'] = 'är ett fan till dig'; @@ -966,8 +779,8 @@ $a->strings['Pending outgoing contact request'] = 'Väntande utgående kontaktbe $a->strings['Pending incoming contact request'] = 'Väntande inkommande kontaktbegäran'; $a->strings['Visit %s\'s profile [%s]'] = 'Besök %s\'s profil [%s]'; $a->strings['Contact update failed.'] = 'Det gick inte att uppdatera kontakt.'; +$a->strings['Name'] = 'Namn'; $a->strings['New photo from this URL'] = 'Nytt foto från den här webbadressen'; -$a->strings['Invalid contact.'] = 'Ogiltig kontakt.'; $a->strings['No known contacts.'] = 'Inga kända kontakter.'; $a->strings['No common contacts.'] = 'Inga gemensamma kontakter.'; $a->strings['Follower (%s)'] = [ @@ -982,8 +795,21 @@ $a->strings['Mutual friend (%s)'] = [ 0 => 'Gemensam vän (%s)', 1 => 'Gemensamma vänner (%s)', ]; -$a->strings['Choose what you wish to do to recipient'] = 'Välj vad du vill göra med mottagaren'; -$a->strings['Make this post private'] = 'Gör det här inlägget privat'; +$a->strings['Access denied.'] = 'Åtkomst nekad.'; +$a->strings['Submit Request'] = 'Skicka förfrågan'; +$a->strings['You already added this contact.'] = 'Du har redan lagt till den här kontakten.'; +$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Nätverkstypen kunde inte upptäckas. Kontakten kan inte läggas till.'; +$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Stödet för Diaspora är inte aktiverat. Kontakten kan inte läggas till.'; +$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Stödet för OStatus är inaktiverat. Kontakten kan inte läggas till.'; +$a->strings['Please answer the following:'] = 'Var vänlig besvara följande:'; +$a->strings['Your Identity Address:'] = 'Din adress (ditt ID):'; +$a->strings['Profile URL'] = 'URL för profil'; +$a->strings['Tags:'] = 'Taggar:'; +$a->strings['%s knows you'] = '%s känner dig'; +$a->strings['Add a personal note:'] = 'Lägg till ett personligt meddelande:'; +$a->strings['The contact could not be added.'] = 'Kontakten kunde inte läggas till.'; +$a->strings['Invalid request.'] = 'Ogiltig förfrågning.'; +$a->strings['Profile Match'] = 'Matcha profiler'; $a->strings['Failed to update contact record.'] = 'Det blev fel när kontakten skulle uppdateras.'; $a->strings['Contact has been unblocked'] = 'Kontakten är inte längre spärrad'; $a->strings['Contact has been blocked'] = 'Kontakten har spärrats'; @@ -1015,18 +841,22 @@ $a->strings['Currently blocked'] = 'Spärrad'; $a->strings['Currently ignored'] = 'Ignoreras'; $a->strings['Hide this contact from others'] = 'Göm den här kontakten för andra'; $a->strings['Notification for new posts'] = 'Avisering för nya inlägg'; +$a->strings['Status'] = 'Status'; +$a->strings['Bad Request.'] = 'Dålig begäran.'; $a->strings['Yes'] = 'Ja'; +$a->strings['You aren\'t following this contact.'] = 'Du följer inte den här kontakten.'; +$a->strings['Unfollowing is currently not supported by your network.'] = 'Avföljning stöds för närvarande inte av ditt nätverk.'; +$a->strings['Disconnect/Unfollow'] = 'Koppla ur/Avfölj'; +$a->strings['Contact was successfully unfollowed'] = 'Avföljningen av kontakten lyckades'; +$a->strings['No results.'] = 'Inga resultat.'; +$a->strings['Not available.'] = 'Inte tillgängligt.'; $a->strings['Own Contacts'] = 'Egna kontakter'; $a->strings['Include'] = 'Inkludera'; $a->strings['Hide'] = 'Dölj'; -$a->strings['No results.'] = 'Inga resultat.'; -$a->strings['Not available.'] = 'Inte tillgängligt.'; -$a->strings['No such group'] = 'Gruppen finns inte'; -$a->strings['Group: %s'] = 'Grupp: %s'; -$a->strings['Personal'] = 'Privat'; -$a->strings['Posts that mention or involve you'] = 'Inlägg som nämnde eller involverade dig'; -$a->strings['Starred'] = 'Stjärnmärkt'; -$a->strings['Favourite Posts'] = 'Favoriserade inlägg'; +$a->strings['Error'] = [ + 0 => 'Fel', + 1 => 'Fel', +]; $a->strings['You must be logged in to use this module'] = 'Du måste vara inloggad för att använda denna modul'; $a->strings['Time Conversion'] = 'Tidskonvertering'; $a->strings['UTC time: %s'] = 'UTC-tid: %s'; @@ -1044,21 +874,14 @@ $a->strings['- select -'] = '- välj -'; $a->strings['Friend suggestion sent.'] = 'Vän-förslag skickades.'; $a->strings['Suggest Friends'] = 'Föreslå vänner'; $a->strings['Suggest a friend for %s'] = 'Föreslå en vän till %s'; +$a->strings['Reason for the block'] = 'Anledning för blockeringen'; $a->strings['Bug reports and issues: please visit'] = 'Anmäl buggar eller andra problem, gå till'; -$a->strings['Could not create group.'] = 'Det gick inte att skapa gruppen.'; -$a->strings['Group not found.'] = 'Gruppen hittades inte.'; -$a->strings['Save Group'] = 'Spara grupp'; -$a->strings['Create a group of contacts/friends.'] = 'Skapa en grupp med kontakter/vänner.'; -$a->strings['Unable to remove group.'] = 'Det gick inte att ta bort gruppen.'; -$a->strings['Members'] = 'Medlemmar'; -$a->strings['Group is empty'] = 'Gruppen är tom'; -$a->strings['Click on a contact to add or remove.'] = 'Klicka på en kontakt för att lägga till eller ta bort.'; $a->strings['No profile'] = 'Ingen profil'; $a->strings['Help:'] = 'Hjälp:'; $a->strings['Welcome to %s'] = 'Välkommen till %s'; $a->strings['System check'] = 'Systemkontroll'; +$a->strings['Next'] = 'Nästa'; $a->strings['Check again'] = 'Kolla igen'; -$a->strings['Host name'] = 'Värdnamn'; $a->strings['Base path to installation'] = 'Grundväg till installationen'; $a->strings['Database connection'] = 'Databas-anslutning'; $a->strings['In order to install Friendica we need to know how to connect to your database.'] = 'För att kunna installera Friendica så behöver vi veta hur du ansluter till din databas.'; @@ -1080,7 +903,79 @@ $a->strings['You have no more invitations available'] = 'Du har inga fler inbjud $a->strings['Send invitations'] = 'Skicka inbjudningar'; $a->strings['Enter email addresses, one per line:'] = 'Ange e-postadresser, en per rad:'; $a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Vi kan bli kontakter via min profil. Besök min profil här när du har registrerat dig:'; +$a->strings['The feed for this item is unavailable.'] = 'Flödet för det här föremålet är otillgängligt.'; $a->strings['System down for maintenance'] = 'Systemet är nere för underhåll'; +$a->strings['Files'] = 'Filer'; +$a->strings['Upload'] = 'Ladda upp'; +$a->strings['Or - did you try to upload an empty file?'] = 'Eller - provade du att ladda upp en tom fil?'; +$a->strings['File exceeds size limit of %s'] = 'Filen överstiger maxstorleken %s'; +$a->strings['File upload failed.'] = 'Uppladdning av filen misslyckades.'; +$a->strings['Unable to process image.'] = 'Det gick inte att behandla bilden.'; +$a->strings['Image upload failed.'] = 'Fel vid bilduppladdning.'; +$a->strings['List of all users'] = 'Lista över alla användare'; +$a->strings['Active'] = 'Aktiv'; +$a->strings['List of active accounts'] = 'Lista över aktiva konton'; +$a->strings['List of pending registrations'] = 'Lista över väntande registreringar'; +$a->strings['List of blocked users'] = 'Lista över blockerade användare'; +$a->strings['Deleted'] = 'Ta bort'; +$a->strings['List of pending user deletions'] = 'Lista över väntande borttagningar av användare'; +$a->strings['Normal Account Page'] = 'Normal konto-sida'; +$a->strings['Personal Page'] = 'Personlig sida'; +$a->strings['Organisation Page'] = 'Sida för organisation'; +$a->strings['Relay'] = 'Fördröj'; +$a->strings['You can\'t block a local contact, please block the user instead'] = 'Du kan inte blockera en lokal kontakt, vänligen blockera användaren istället'; +$a->strings['select all'] = 'välj alla'; +$a->strings['select none'] = 'välj ingen'; +$a->strings['Photo'] = 'Foto'; +$a->strings['Reason'] = 'Anledning'; +$a->strings['Block Reason'] = 'Anledning för blockering'; +$a->strings['Matching known servers'] = 'Matchar kända servrar'; +$a->strings['Server Name'] = 'Namn på server'; +$a->strings['Server Domain'] = 'Serverns domän'; +$a->strings['Known Contacts'] = 'Kända kontakter'; +$a->strings['%d known server'] = [ + 0 => '%d känd server', + 1 => '%d kända servrar', +]; +$a->strings['Add pattern to the blocklist'] = 'Lägg till mönster till blockeringslistan'; +$a->strings['Add new entry to the blocklist'] = 'Lägg till ny post till blockeringslistan'; +$a->strings['Save changes to the blocklist'] = 'Spara ändringen i blockeringslistan'; +$a->strings['Current Entries in the Blocklist'] = 'Nuvarande poster i blockeringslistan'; +$a->strings['Delete entry from the blocklist'] = 'Ta bort post från blockeringslistan'; +$a->strings['Delete entry from the blocklist?'] = 'Ta bort post från blockeringslistan?'; +$a->strings['Item marked for deletion.'] = 'Objektet är markerat för borttagning.'; +$a->strings['Delete this Item'] = 'Ta bort det här objektet'; +$a->strings['GUID'] = 'GUID'; +$a->strings['The GUID of the item you want to delete.'] = 'Objektets GUID som du vill ta bort.'; +$a->strings['Terms'] = 'Villkor'; +$a->strings['Tag'] = 'Taggar'; +$a->strings['Type'] = 'Typ'; +$a->strings['Term'] = 'Villkor'; +$a->strings['URL'] = 'Webbadress'; +$a->strings['Mention'] = 'Nämn'; +$a->strings['Item not found'] = 'Hittades inte'; +$a->strings['Normal Account'] = 'Vanligt konto'; +$a->strings['Automatic Friend Account'] = 'Konto med automatiskt godkännande av vänner.'; +$a->strings['Blog Account'] = 'Blogg-konto'; +$a->strings['Registered users'] = 'Registrerade användare'; +$a->strings['Pending registrations'] = 'Väntande registreringar'; +$a->strings['%s user deleted'] = [ + 0 => '%sanvändare togs bort', + 1 => '%s användare togs bort', +]; +$a->strings['Register date'] = 'Datum för registrering'; +$a->strings['Last login'] = 'Senaste inloggning'; +$a->strings['Account expired'] = 'Kontot slutade gälla'; +$a->strings['New User'] = 'Ny användare'; +$a->strings['Add User'] = 'Lägg till användare'; +$a->strings['Name of the new user.'] = 'Namn på den nya användaren.'; +$a->strings['Nickname'] = 'Smeknamn'; +$a->strings['Nickname of the new user.'] = 'Smeknamn på den nya användaren.'; +$a->strings['Email address of the new user.'] = 'E-postadress för den nya användaren.'; +$a->strings['Account approved.'] = 'Kontot har godkänts.'; +$a->strings['Request date'] = 'Datum för begäran'; +$a->strings['No registrations.'] = 'Inga registreringar.'; +$a->strings['Deny'] = 'Avslå'; $a->strings['Show Ignored Requests'] = 'Visa förfrågningar du ignorerat'; $a->strings['Hide Ignored Requests'] = 'Dölj förfrågningar du ignorerat'; $a->strings['Claims to be known to you: '] = 'Hävdar att du vet vem han/hon är: '; @@ -1094,28 +989,58 @@ $a->strings['Home Notifications'] = 'Hem-aviseringar'; $a->strings['{0} requested registration'] = '{0} bad om registrering'; $a->strings['{0} and %d others requested registration'] = '{0} och %d andra bad om registrering'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Vill du ge den här applikationen åtkomst till dina inlägg och kontakter, och/eller skapa nya inlägg för dig?'; +$a->strings['Keep this window open until done.'] = 'Håll det här fönstret öppet tills du är klar.'; +$a->strings['Subscribing to contacts'] = 'Prenumererar på kontakter'; +$a->strings['No contact provided.'] = 'Ingen kontakt angedd'; +$a->strings['Couldn\'t fetch information for contact.'] = 'Kunde inte hämta information för kontakten.'; +$a->strings['Couldn\'t fetch friends for contact.'] = 'Kunde inte hämta vänner för kontakt.'; +$a->strings['Couldn\'t fetch following contacts.'] = 'Kunde inte hämta följande kontakter.'; +$a->strings['Couldn\'t fetch remote profile.'] = 'Kunde inte hämta profil'; +$a->strings['Unsupported network'] = 'Nätverket stöds inte'; +$a->strings['Done'] = 'Färdig'; +$a->strings['success'] = 'lyckades'; +$a->strings['failed'] = 'misslyckades'; +$a->strings['ignored'] = 'ignorerades'; $a->strings['Remote privacy information not available.'] = 'Remote privacy information not available.'; $a->strings['Visible to:'] = 'Synlig för:'; +$a->strings['Edit post'] = 'Ändra inlägg'; +$a->strings['web link'] = 'webblänk'; +$a->strings['Insert video link'] = 'Klistra in videolänk'; +$a->strings['video link'] = 'videolänk'; +$a->strings['Insert audio link'] = 'Klistra in ljudlänk'; +$a->strings['audio link'] = 'ljudlänk'; +$a->strings['Remove Item Tag'] = 'Ta bort tagg'; +$a->strings['Select a tag to remove: '] = 'Välj vilken tagg som ska tas bort: '; +$a->strings['Remove'] = 'Ta bort'; $a->strings['No contacts.'] = 'Inga kontakter.'; +$a->strings['Image exceeds size limit of %s'] = 'Bildstorlek överstiger %s'; +$a->strings['Image upload didn\'t complete, please try again'] = 'Uppladdningen av bilden slutfördes inte, vänligen försök igen.'; +$a->strings['Image file is missing'] = 'Bildfilen saknas'; +$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Servern kan just nu inte acceptera uppladdning av en ny fil, vänligen kontakta din administratör'; +$a->strings['Image file is empty.'] = 'Bildfilen är tom.'; +$a->strings['View Album'] = 'Titta i album'; $a->strings['Profile not found.'] = 'Profilen hittades inte.'; $a->strings['Full Name:'] = 'Fullständigt namn:'; $a->strings['j F, Y'] = 'j F, Y'; $a->strings['j F'] = 'j F'; $a->strings['Birthday:'] = 'Födelsedatum:'; $a->strings['Age: '] = 'Ålder: '; +$a->strings['Description:'] = 'Beskrivning:'; +$a->strings['Profile unavailable.'] = 'Profilen är inte tillgänglig.'; +$a->strings['Invalid locator'] = 'Invalid locator'; +$a->strings['Friend/Connection Request'] = 'Vän- eller kontaktförfrågan'; +$a->strings['Unable to check your home location.'] = 'Kunde inte kontrollera platsen för ditt hem.'; $a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Om du inte vet vad OpenID är, eller inte vill använda det, kan du lämna det fältet tomt och fylla i resten.'; $a->strings['Your OpenID (optional): '] = 'OpenID (om du vill): '; $a->strings['Include your profile in member directory?'] = 'Ta med profilen i medlemskatalogen?'; $a->strings['New Password:'] = 'Nytt lösenord'; $a->strings['Confirm:'] = 'Bekräfta (repetera):'; $a->strings['Choose a nickname: '] = 'Välj ett användarnamn: '; +$a->strings['Import'] = 'Importera'; $a->strings['Import your profile to this friendica instance'] = 'Importera din profil till den här friendica-instansen'; $a->strings['Registration successful. Please check your email for further instructions.'] = 'Registrering klar. Kolla din e-post för vidare information.'; $a->strings['Your registration can not be processed.'] = 'Det går inte att behandla registreringen.'; $a->strings['Your registration is pending approval by the site owner.'] = 'Din registrering inväntar godkännande av webbplatsens ägare.'; -$a->strings['Profile unavailable.'] = 'Profilen är inte tillgänglig.'; -$a->strings['Invalid locator'] = 'Invalid locator'; -$a->strings['Friend/Connection Request'] = 'Vän- eller kontaktförfrågan'; $a->strings['Create a New Account'] = 'Skapa nytt konto'; $a->strings['Or login using OpenID: '] = 'eller logga in genom att använda OpenID:'; $a->strings['Password: '] = 'Lösenord: '; @@ -1127,6 +1052,8 @@ $a->strings['privacy policy'] = 'integritetspolicy'; $a->strings['Logged out.'] = 'Utloggad.'; $a->strings['Passwords do not match.'] = 'Lösenorden matchar inte.'; $a->strings['Password unchanged.'] = 'Lösenordet oändrat.'; +$a->strings['Current Password:'] = 'Nuvarande lösenord:'; +$a->strings['Your current password to confirm the changes'] = 'Ditt nuvarande lösenord för att bekräfta ändringar'; $a->strings['Please use a shorter name.'] = 'Vänligen ange ett kortare namn.'; $a->strings['Name too short.'] = 'Namnet för kort.'; $a->strings['Wrong Password.'] = 'Fel lösenord.'; @@ -1136,14 +1063,11 @@ $a->strings['Settings were not updated.'] = 'Inställningarna uppdaterades inte. $a->strings['Unable to find your profile. Please contact your admin.'] = 'Kunde inte hitta din profil. Vänligen kontakta din admin.'; $a->strings['Account for a personal profile.'] = 'Konto för personlig profil.'; $a->strings['Automatically approves all contact requests.'] = 'Godkänner automatiskt alla kontaktförfrågningar.'; -$a->strings['Private Forum [Experimental]'] = 'Privat forum [Experimentiell]'; $a->strings['OpenID:'] = 'OpenID:'; $a->strings['(Optional) Allow this OpenID to login to this account.'] = '(Valfritt) Tillåt detta OpenID för att logga in till det här kontot.'; $a->strings['Account Settings'] = 'Kontoinställningar'; $a->strings['Password Settings'] = 'Lösenordsinställningar'; $a->strings['Leave password fields blank unless changing'] = 'Lämna fältet tomt om du inte vill byta lösenord'; -$a->strings['Current Password:'] = 'Nuvarande lösenord:'; -$a->strings['Your current password to confirm the changes'] = 'Ditt nuvarande lösenord för att bekräfta ändringar'; $a->strings['Password:'] = 'Lösenord:'; $a->strings['Basic Settings'] = 'Grundläggande inställningar'; $a->strings['Email Address:'] = 'E-postadress:'; @@ -1155,7 +1079,6 @@ $a->strings['Security and Privacy Settings'] = 'Inställningar för säkerhet oc $a->strings['Maximum Friend Requests/Day:'] = 'Maximalt antal kontaktförfrågningar per dygn:'; $a->strings['(to prevent spam abuse)'] = '(för att motverka spam)'; $a->strings['Allow your profile to be searchable globally?'] = 'Tillåta att din profil ska vara sökbar globalt?'; -$a->strings['Hide your profile details from anonymous viewers?'] = 'Göm dina profildetaljer från anonyma tittare?'; $a->strings['Allow friends to post to your profile page?'] = 'Tillåta vänner att göra inlägg på din profilsida?'; $a->strings['Allow friends to tag your posts?'] = 'Tillåt vänner att tagga dina inlägg?'; $a->strings['Your contacts can add additional tags to your posts.'] = 'Dina kontakter kan lägga till ytterligare taggar till dina inlägg.'; @@ -1179,6 +1102,28 @@ $a->strings['Import Contacts'] = 'Importera kontakter'; $a->strings['Upload File'] = 'Ladda upp fil'; $a->strings['Relocate'] = 'Omlokalisera'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Om du har flyttat den här profilen från en annan server och några av dina kontakter inte får dina uppdateringar, försök att trycka på den här knappen.'; +$a->strings['Addon Settings'] = 'Inställningar för Tillägg'; +$a->strings['No Addon settings configured'] = 'Inga inställningar för Tillägg har gjorts'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'Kunde inte ansluta till e-postkontot med aktuella inställningar'; +$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; +$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; +$a->strings['Email access is disabled on this site.'] = 'E-poståtkomst är inaktiverat på den här sidan.'; +$a->strings['None'] = 'Ingen'; +$a->strings['General Social Media Settings'] = 'Generella inställningar för sociala medier'; +$a->strings['Enable Content Warning'] = 'Aktivera innehållsvarning'; +$a->strings['Enable intelligent shortening'] = 'Aktivera intelligent förkortning'; +$a->strings['Repair OStatus subscriptions'] = 'Reparera OStatus-prenumerationer'; +$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'För att kommunicera via e-post med denna tjänst (valfritt), vänligen ange anslutningssätt till ditt e-postkonto.'; +$a->strings['IMAP server name:'] = 'Namn på IMAP-server:'; +$a->strings['IMAP port:'] = 'Port för IMAP:'; +$a->strings['Security:'] = 'Säkerhet:'; +$a->strings['Email login name:'] = 'Inloggningsnamn för e-post:'; +$a->strings['Email password:'] = 'Lösenord för e-post:'; +$a->strings['Reply-to address:'] = 'Svara till-adress:'; +$a->strings['Send public posts to all email contacts:'] = 'Skicka publika inlägg till alla e-postkontakter:'; +$a->strings['Action after import:'] = 'Åtgärd efter importering:'; +$a->strings['Move to folder'] = 'Flytta till mapp'; +$a->strings['Move to folder:'] = 'Flytta till mapp:'; $a->strings['Potential Delegates'] = 'Potentiella delegater'; $a->strings['Add'] = 'Lägg till'; $a->strings['No entries.'] = 'Inga poster.'; @@ -1190,7 +1135,9 @@ $a->strings['Number of items to display per page:'] = 'Antalet objekt att visa p $a->strings['Maximum of 100 items'] = 'Maximalt 100 objekt'; $a->strings['Update browser every xx seconds'] = 'Uppdatera webbläsaren var xx sekunder'; $a->strings['Infinite scroll'] = 'Oändlig skroll'; -$a->strings['Profile Name is required.'] = 'Profilen måste ha ett namn.'; +$a->strings['Additional Features'] = 'Ytterligare funktioner'; +$a->strings['Connected Apps'] = 'Anslutna appar'; +$a->strings['Remove authorization'] = 'Ta bort autentisering'; $a->strings['(click to open/close)'] = '(klicka för att öppna/stänga)'; $a->strings['Edit Profile Details'] = 'Ändra profilen'; $a->strings['Change Profile Photo'] = 'Byt profilfoto'; @@ -1214,8 +1161,24 @@ $a->strings['Please adjust the image cropping for optimum viewing.'] = 'Välj hu $a->strings['or'] = 'eller'; $a->strings['skip this step'] = 'hoppa över det här steget'; $a->strings['select a photo from your photo albums'] = 'välj en bild från ett album'; +$a->strings['[Friendica System Notify]'] = '[System-avisering för Friendica]'; +$a->strings['User deleted their account'] = 'Användaren tog bort sitt konto'; +$a->strings['The user id is %d'] = 'ID för användaren är %d'; +$a->strings['Remove My Account'] = 'Ta bort mitt konto'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Detta kommer att ta bort kontot helt och hållet. Efter att det är gjort går det inte att återställa.'; +$a->strings['Please enter your password for verification:'] = 'Ange lösenordet igen för säkerhets skull:'; $a->strings['Export account'] = 'Exportera konto'; $a->strings['Export all'] = 'Exportera allt'; +$a->strings['Move account'] = 'Flytta konto'; +$a->strings['You can import an account from another Friendica server.'] = 'Du kan importera ett konto från en annan Friendica-server.'; +$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'För att exportera ditt konto, gå till "Inställningar->Exportera din personliga data" och välj "Exportera konto"'; +$a->strings['User \'%s\' already exists on this server!'] = 'Användaren \'%s\' existerar redan i den här servern!'; +$a->strings['User creation error'] = 'Fel uppstod när användaren skulle skapas'; +$a->strings['%d contact not imported'] = [ + 0 => '%d kontakt importerades inte', + 1 => '%d kontakterna importerades inte', +]; +$a->strings['Done. You can now login with your username and password'] = 'Färdig. Du kan nu logga in med ditt användarnamn och lösenord'; $a->strings['Welcome to Friendica'] = 'Välkommen till Friendica'; $a->strings['Getting Started'] = 'Komma igång'; $a->strings['Friendica Walk-Through'] = 'Genomgång av Friendica'; @@ -1224,7 +1187,6 @@ $a->strings['Edit Your Profile'] = 'Redigera din profil'; $a->strings['Connecting'] = 'Ansluter'; $a->strings['Importing Emails'] = 'Importerar e-post'; $a->strings['Finding New People'] = 'Hitta nya personer'; -$a->strings['Group Your Contacts'] = 'Gruppera dina kontakter'; $a->strings['Why Aren\'t My Posts Public?'] = 'Varför visas inte mina inlägg publikt?'; $a->strings['Getting Help'] = 'Få hjälp'; $a->strings['Go to the Help Section'] = 'Gå till Hjälp-sektionen'; diff --git a/view/php/none.php b/view/php/none.php index 336cf060e..bf8041e8e 100644 --- a/view/php/none.php +++ b/view/php/none.php @@ -1,6 +1,6 @@ . * * The site template for pure content (e.g. (modals) - * - * This themplate is used e.g for bs modals. So outputs + * + * This template is used e.g for bs modals. So outputs * only the pure content */ diff --git a/view/templates/acl/full_selector.tpl b/view/templates/acl/full_selector.tpl index ada05fbd4..fe8c856f1 100644 --- a/view/templates/acl/full_selector.tpl +++ b/view/templates/acl/full_selector.tpl @@ -41,9 +41,9 @@ {{$custom_title}}
    - + - +

    {{$custom_desc}}

    @@ -75,10 +75,10 @@ $(function() { let $acl_allow_input = $('#acl_allow-{{$input_group_id}}'); let $contact_allow_input = $('[name="{{$input_names.contact_allow}}"]'); - let $group_allow_input = $('[name="{{$input_names.group_allow}}"]'); + let $circle_allow_input = $('[name="{{$input_names.circle_allow}}"]'); let $acl_deny_input = $('#acl_deny-{{$input_group_id}}'); let $contact_deny_input = $('[name="{{$input_names.contact_deny}}"]'); - let $group_deny_input = $('[name="{{$input_names.group_deny}}"]'); + let $circle_deny_input = $('[name="{{$input_names.circle_deny}}"]'); let $visibility_public_panel = $('#visibility-public-panel-{{$input_group_id}}'); let $visibility_custom_panel = $('#visibility-custom-panel-{{$input_group_id}}'); let $visibility_public_radio = $('#visibility-public-{{$input_group_id}}'); @@ -125,20 +125,20 @@ }); // Custom visibility tags inputs - let acl_groups = new Bloodhound({ - local: {{$acl_groups|@json_encode nofilter}}, + let acl_circles = new Bloodhound({ + local: {{$acl_circles nofilter}}, identify: function(obj) { return obj.type + '-' + obj.id.toString(); }, datumTokenizer: Bloodhound.tokenizers.obj.whitespace(['name']), queryTokenizer: Bloodhound.tokenizers.whitespace, }); let acl_contacts = new Bloodhound({ - local: {{$acl_contacts|@json_encode nofilter}}, + local: {{$acl_contacts nofilter}}, identify: function(obj) { return obj.type + '-' + obj.id.toString(); }, datumTokenizer: Bloodhound.tokenizers.obj.whitespace(['name', 'addr']), queryTokenizer: Bloodhound.tokenizers.whitespace, }); let acl = new Bloodhound({ - local: {{$acl_list|@json_encode nofilter}}, + local: {{$acl_list nofilter}}, identify: function(obj) { return obj.type + '-' + obj.id.toString(); }, datumTokenizer: Bloodhound.tokenizers.obj.whitespace(['name', 'addr']), queryTokenizer: Bloodhound.tokenizers.whitespace, @@ -163,7 +163,7 @@ freeInput: false, tagClass: function(item) { switch (item.type) { - case 'group' : return 'label label-primary'; + case 'circle' : return 'label label-primary'; case 'contact' : default: return 'label label-info'; @@ -191,7 +191,7 @@ freeInput: false, tagClass: function(item) { switch (item.type) { - case 'group' : return 'label label-primary'; + case 'circle' : return 'label label-primary'; case 'contact' : default: return 'label label-info'; @@ -215,14 +215,14 @@ // Import existing ACL into the tags input fields. - $group_allow_input.val().split(',').forEach(function (group_id) { - $acl_allow_input.tagsinput('add', acl_groups.get('group-' + group_id)[0]); + $circle_allow_input.val().split(',').forEach(function (circle_id) { + $acl_allow_input.tagsinput('add', acl_circles.get('circle-' + circle_id)[0]); }); $contact_allow_input.val().split(',').forEach(function (contact_id) { $acl_allow_input.tagsinput('add', acl_contacts.get('contact-' + contact_id)[0]); }); - $group_deny_input.val().split(',').forEach(function (group_id) { - $acl_deny_input.tagsinput('add', acl_groups.get('group-' + group_id)[0]); + $circle_deny_input.val().split(',').forEach(function (circle_id) { + $acl_deny_input.tagsinput('add', acl_circles.get('circle-' + circle_id)[0]); }); $contact_deny_input.val().split(',').forEach(function (contact_id) { $acl_deny_input.tagsinput('add', acl_contacts.get('contact-' + contact_id)[0]); @@ -237,11 +237,11 @@ } // Update the real acl field - $group_allow_input.val(''); + $circle_allow_input.val(''); $contact_allow_input.val(''); [].forEach.call($acl_allow_input.tagsinput('items'), function (item) { - if (item.type === 'group') { - $group_allow_input.val($group_allow_input.val() + ',' + item.id); + if (item.type === 'circle') { + $circle_allow_input.val($circle_allow_input.val() + ',' + item.id); } else { $contact_allow_input.val($contact_allow_input.val() + ',' + item.id); } @@ -255,11 +255,11 @@ } // Update the real acl field - $group_deny_input.val(''); + $circle_deny_input.val(''); $contact_deny_input.val(''); [].forEach.call($acl_deny_input.tagsinput('items'), function (item) { - if (item.type === 'group') { - $group_deny_input.val($group_deny_input.val() + ',' + item.id); + if (item.type === 'circle') { + $circle_deny_input.val($circle_deny_input.val() + ',' + item.id); } else { $contact_deny_input.val($contact_deny_input.val() + ',' + item.id); } diff --git a/view/templates/acl/message_recipient.tpl b/view/templates/acl/message_recipient.tpl index 2c74ed178..701ba23a6 100644 --- a/view/templates/acl/message_recipient.tpl +++ b/view/templates/acl/message_recipient.tpl @@ -1,4 +1,5 @@ - + - - \ No newline at end of file + + diff --git a/view/templates/admin/federation.tpl b/view/templates/admin/federation.tpl index dbee2ec3e..8f8d70cd2 100644 --- a/view/templates/admin/federation.tpl +++ b/view/templates/admin/federation.tpl @@ -57,7 +57,7 @@ {{if $c[0]['total'] > 0}}

    - diff --git a/view/templates/admin/item/source.tpl b/view/templates/admin/item/source.tpl deleted file mode 100644 index 41e613b49..000000000 --- a/view/templates/admin/item/source.tpl +++ /dev/null @@ -1,67 +0,0 @@ -
    -

    {{$title}}

    -
    -
    -
    - {{include file="field_input.tpl" field=$guid}} -
    -

    -
    - - - {{if $source}} -
    -
    -
    -

    {{$itemidlbl}}

    -
    -
    - {{$item_id}} -
    -
    -
    -
    -

    {{$itemurilbl}}

    -
    -
    - {{$item_uri}} -
    -
    -
    -
    -

    {{$termslbl}}

    -
    -
    -
    {{$c[0]['platform']}}{{$c[0]['total']}} + {{$c[0]['total']}} {{$c[0]['network']}}
    - - - - - - {{foreach $terms as $term}} - - - - - - {{/foreach}} -
    {{$typelbl}}{{$termlbl}}{{$urllbl}}
    - {{if $term.type == 1}}{{$tag}}{{/if}} - {{if $term.type == 2}}{{$mentionlbl}}{{/if}} - {{if $term.type == 8}}{{$implicitlbl}}{{/if}} - - {{$term.name}} - - {{$term.url}} -
    - - -

    -
    -

    {{$sourcelbl}}

    -
    -
    {{$source}}
    -
    - - -{{/if}} diff --git a/view/templates/admin/site.tpl b/view/templates/admin/site.tpl index 88fc11336..17c318907 100644 --- a/view/templates/admin/site.tpl +++ b/view/templates/admin/site.tpl @@ -24,19 +24,20 @@ {{include file="field_select.tpl" field=$language}} {{include file="field_select.tpl" field=$theme}} {{include file="field_select.tpl" field=$theme_mobile}} - {{include file="field_select.tpl" field=$ssl_policy}} - {{if $ssl_policy.2 == 1}}{{include file="field_checkbox.tpl" field=$force_ssl}}{{/if}} + {{include file="field_checkbox.tpl" field=$force_ssl}} {{include file="field_checkbox.tpl" field=$show_help}} {{include file="field_select.tpl" field=$singleuser}}

    {{$registration}}

    - {{include file="field_input.tpl" field=$register_text}} + {{include file="field_textarea.tpl" field=$register_text}} {{include file="field_select.tpl" field=$register_policy}} + {{include file="field_input.tpl" field=$max_registered_users}} {{include file="field_input.tpl" field=$daily_registrations}} {{include file="field_checkbox.tpl" field=$enable_multi_reg}} {{include file="field_checkbox.tpl" field=$enable_openid}} {{include file="field_checkbox.tpl" field=$enable_regfullname}} + {{include file="field_checkbox.tpl" field=$register_notification}}

    {{$upload}}

    @@ -107,7 +108,7 @@

    {{$performance}}

    - {{include file="field_checkbox.tpl" field=$compute_group_counts}} + {{include file="field_checkbox.tpl" field=$compute_circle_counts}} {{include file="field_checkbox.tpl" field=$only_tag_search}} {{include file="field_input.tpl" field=$max_comments}} {{include file="field_input.tpl" field=$max_display_comments}} diff --git a/view/templates/admin/storage.tpl b/view/templates/admin/storage.tpl index b1918c5a8..787ec5604 100644 --- a/view/templates/admin/storage.tpl +++ b/view/templates/admin/storage.tpl @@ -2,6 +2,7 @@

    {{$title}} - {{$page}}

    {{$label_current}}: {{$storagebackend}}

    + {{$storagebackend_ro_txt nofilter}}

    {{$label_config}}

    @@ -19,12 +20,14 @@ {{if $storage.form}} - {{if $storage.active}} + {{if $is_writable}} + {{if $storage.active}} - {{else}} + {{else}} + {{/if}} {{/if}} - {{else}} + {{elseif $is_writable}}
    {{/if}} diff --git a/view/templates/admin/summary.tpl b/view/templates/admin/summary.tpl index 2421658d6..9e69b6732 100644 --- a/view/templates/admin/summary.tpl +++ b/view/templates/admin/summary.tpl @@ -13,22 +13,6 @@
    {{$queues.label}}
    {{$queues.deferred}} - {{$queues.workerq}}
    -
    -
    {{$pending.0}}
    -
    {{$pending.1}} -
    - -
    -
    {{$users.0}}
    -
    {{$users.1}}
    -
    - {{foreach $accounts as $p}} -
    -
    {{$p.0}}
    -
    {{if $p.1}}{{$p.1}}{{else}}0{{/if}}
    -
    - {{/foreach}} -
    {{$addons.0}}
    diff --git a/view/templates/admin/tos.tpl b/view/templates/admin/tos.tpl index d4e1bcb48..2482802a1 100644 --- a/view/templates/admin/tos.tpl +++ b/view/templates/admin/tos.tpl @@ -6,6 +6,7 @@ {{include file="field_checkbox.tpl" field=$displaytos}} {{include file="field_checkbox.tpl" field=$displayprivstatement}} {{include file="field_textarea.tpl" field=$tostext}} + {{include file="field_textarea.tpl" field=$tosrules}}

    {{$preview}}

    diff --git a/view/templates/auto_request.tpl b/view/templates/auto_request.tpl index a3bd9c2cd..0cfe584d5 100644 --- a/view/templates/auto_request.tpl +++ b/view/templates/auto_request.tpl @@ -9,7 +9,7 @@

    {{/if}} -
    + {{if $url}}
    {{$url_label}}
    diff --git a/view/templates/events_js.tpl b/view/templates/calendar/calendar.tpl similarity index 100% rename from view/templates/events_js.tpl rename to view/templates/calendar/calendar.tpl diff --git a/view/theme/vier/templates/event_head.tpl b/view/templates/calendar/calendar_head.tpl similarity index 75% rename from view/theme/vier/templates/event_head.tpl rename to view/templates/calendar/calendar_head.tpl index 2c7b3070a..9266cecf7 100644 --- a/view/theme/vier/templates/event_head.tpl +++ b/view/templates/calendar/calendar_head.tpl @@ -1,4 +1,3 @@ - @@ -7,7 +6,7 @@ diff --git a/view/templates/calendar/event.tpl b/view/templates/calendar/event.tpl new file mode 100644 index 000000000..e58db621c --- /dev/null +++ b/view/templates/calendar/event.tpl @@ -0,0 +1,10 @@ +
    + +{{if $event.item.author_name}}{{$event.item.author_name}}{{/if}} +{{$event.html nofilter}} +{{if $event.plink.orig}}{{/if}} +{{if $event.edit}}{{/if}} +{{if $event.copy}}{{/if}} +{{if $event.drop}}{{/if}} +
    +
    \ No newline at end of file diff --git a/view/templates/event_form.tpl b/view/templates/calendar/event_form.tpl similarity index 100% rename from view/templates/event_form.tpl rename to view/templates/calendar/event_form.tpl diff --git a/view/templates/circle_drop.tpl b/view/templates/circle_drop.tpl new file mode 100644 index 000000000..e37d1e0e0 --- /dev/null +++ b/view/templates/circle_drop.tpl @@ -0,0 +1,12 @@ + +
    + + +
    +
    diff --git a/view/templates/circle_edit.tpl b/view/templates/circle_edit.tpl new file mode 100644 index 000000000..aa7ef8b76 --- /dev/null +++ b/view/templates/circle_edit.tpl @@ -0,0 +1,26 @@ + +

    {{$title}}

    + + +{{if $editable == 1}} +
    + + + + {{include file="field_input.tpl" field=$gname}} + {{if $drop}}{{$drop nofilter}}{{/if}} +
    + +
    +
    + +
    +{{/if}} + + +{{if $circle_editor}} +
    + {{include file="circle_editor.tpl"}} +
    +{{/if}} +{{if $desc}}
    {{$desc nofilter}}
    {{/if}} diff --git a/view/templates/circle_editor.tpl b/view/templates/circle_editor.tpl new file mode 100644 index 000000000..4f3a30eea --- /dev/null +++ b/view/templates/circle_editor.tpl @@ -0,0 +1,62 @@ + +{{* Template for the contact circle list *}} + +{{if $editable == 1}} +{{* The contacts who are already members of the contact circle *}} +
    +

    {{$circle_editor.label_members}}

    +
    + + {{if $circle_editor.members }} + + {{foreach $circle_editor.members as $c}} + {{* If there are too many contacts we use another view mode *}} + {{if $shortmode}} + + {{else}} + {{* The normal view mode *}} +
    + + {{$c.name}} + +
    + {{/if}} + {{/foreach}} + + {{else}} + {{$circle_editor.circle_is_empty}} + {{/if}} +
    + +
    +
    +
    +{{/if}} + +{{* The contacts who are not members of the contact circle *}} +
    +

    {{$circle_editor.label_contacts}}

    + +
    +
    diff --git a/view/templates/circle_selection.tpl b/view/templates/circle_selection.tpl new file mode 100644 index 000000000..db3e7b88a --- /dev/null +++ b/view/templates/circle_selection.tpl @@ -0,0 +1,9 @@ + +
    + + +
    diff --git a/view/templates/circle_side.tpl b/view/templates/circle_side.tpl new file mode 100644 index 000000000..c33638130 --- /dev/null +++ b/view/templates/circle_side.tpl @@ -0,0 +1,48 @@ + +

    {{$title}}

    +
    +
    + +

    {{$title}}

    +
    + + + + {{if $new_circle}} + + {{else}} + + {{/if}} + + {{if $uncircled}}{{/if}} +
    + diff --git a/view/templates/contact_template.tpl b/view/templates/contact/entry.tpl similarity index 100% rename from view/templates/contact_template.tpl rename to view/templates/contact/entry.tpl diff --git a/view/templates/viewcontact_template.tpl b/view/templates/contact/list.tpl similarity index 71% rename from view/templates/viewcontact_template.tpl rename to view/templates/contact/list.tpl index 562270e35..b3ed7df7b 100644 --- a/view/templates/viewcontact_template.tpl +++ b/view/templates/contact/list.tpl @@ -5,10 +5,14 @@
    {{foreach $contacts as $contact}} - {{include file="contact_template.tpl"}} + {{include file="contact/entry.tpl"}} {{/foreach}}
    {{$paginate nofilter}} + +{{if $filtered}} +

    {{$filtered nofilter}}

    +{{/if}} diff --git a/view/templates/contact_drop_confirm.tpl b/view/templates/contact_drop_confirm.tpl index bb4d3a10c..df5e14ad5 100644 --- a/view/templates/contact_drop_confirm.tpl +++ b/view/templates/contact_drop_confirm.tpl @@ -1,8 +1,8 @@

    {{$l10n.header}}

    -{{include file="contact_template.tpl" no_contacts_checkbox=True}} +{{include file="contact/entry.tpl" no_contacts_checkbox=True}} {{include file="confirm.tpl"}} -
    \ No newline at end of file +
    diff --git a/view/templates/contact_edit.tpl b/view/templates/contact_edit.tpl index 18a16ddfc..38414fabe 100644 --- a/view/templates/contact_edit.tpl +++ b/view/templates/contact_edit.tpl @@ -1,3 +1,4 @@ +
    {{* Insert Tab-Nav *}} @@ -12,11 +13,13 @@ {{* This is the Action menu where contact related actions like 'ignore', 'hide' can be performed *}}
    - {{$contact_action_button}} +
    {{* End of contact-edit-status-wrapper *}} {{* Some information about the contact from the profile *}} -
    {{$profileurllabel}}
    {{$profileurl}}
    +
    {{$profileurllabel}}
    {{$profileurl}}
    {{if $location}}
    {{$location_label}}
    {{$location nofilter}}
    {{/if}} {{if $xmpp}}
    {{$xmpp_label}}
    {{$xmpp}}
    {{/if}} {{if $matrix}}
    {{$matrix_label}}
    {{$matrix}}
    {{/if}} @@ -59,40 +62,49 @@
    - {{if $contact_settings_label}} + {{if $contact_settings_label}}
    -
    - {{include file="field_checkbox.tpl" field=$notify_new_posts}} - {{if $fetch_further_information}} - {{include file="field_select.tpl" field=$fetch_further_information}} - {{if $fetch_further_information.2 == 2 || $fetch_further_information.2 == 3}} {{include file="field_textarea.tpl" field=$ffi_keyword_denylist}} {{/if}} - {{/if}} - {{if $allow_remote_self}} - {{include file="field_select.tpl" field=$remote_self}} - {{/if}} +
    - {{include file="field_checkbox.tpl" field=$hidden}} + {{include file="field_checkbox.tpl" field=$notify_new_posts}} -
    -

    {{$lbl_info1}}

    - -
    -
    + {{if $fetch_further_information}} + {{include file="field_select.tpl" field=$fetch_further_information}} + {{if $fetch_further_information.2 == 2 || $fetch_further_information.2 == 3}} {{include file="field_textarea.tpl" field=$ffi_keyword_denylist}} {{/if}} + {{/if}} - {{if $reason}} + {{if $allow_remote_self}} + {{include file="field_select.tpl" field=$remote_self}} + {{/if}} + + {{include file="field_checkbox.tpl" field=$hidden}} + + {{include file="field_textarea.tpl" field=$cinfo}} + + {{if $reason}}

    {{$lbl_info2}}

    {{$reason}}

    - {{/if}} -
    - - {{/if}} + {{if $channel_settings_label}} +

    {{$channel_settings_label}}

    + + {{include file="field_radio.tpl" field=$frequency_default}} + {{include file="field_radio.tpl" field=$frequency_always}} + {{include file="field_radio.tpl" field=$frequency_reduced}} + {{include file="field_radio.tpl" field=$frequency_never}} +

    {{$frequency_description}}

    + {{/if}} + +
    + + {{/if}} +
    {{* End of the form *}} diff --git a/view/templates/contacts-template.tpl b/view/templates/contacts-template.tpl index 46ba629ff..680c84f56 100644 --- a/view/templates/contacts-template.tpl +++ b/view/templates/contacts-template.tpl @@ -18,7 +18,7 @@ {{foreach $contacts as $contact}} - {{include file="contact_template.tpl"}} + {{include file="contact/entry.tpl"}} {{/foreach}}
    diff --git a/view/templates/content/image.tpl b/view/templates/content/image.tpl deleted file mode 100644 index 2885d869f..000000000 --- a/view/templates/content/image.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{{if $image.preview}} -{{$image.attachment.description}} -{{else}} -{{$image.attachment.description}} -{{/if}} -
    diff --git a/view/templates/content/image/grid.tpl b/view/templates/content/image/grid.tpl new file mode 100644 index 000000000..091e69e8e --- /dev/null +++ b/view/templates/content/image/grid.tpl @@ -0,0 +1,12 @@ +
    +
    + {{foreach $columns.fc as $img}} + {{include file="content/image/single.tpl" image=$img}} + {{/foreach}} +
    +
    + {{foreach $columns.sc as $img}} + {{include file="content/image/single.tpl" image=$img}} + {{/foreach}} +
    +
    diff --git a/view/templates/content/image/horizontal_masonry.tpl b/view/templates/content/image/horizontal_masonry.tpl new file mode 100644 index 000000000..223a9c4a4 --- /dev/null +++ b/view/templates/content/image/horizontal_masonry.tpl @@ -0,0 +1,12 @@ +{{foreach $rows as $images}} +
    + {{foreach $images as $image}} + {{* The absolute pixel value in the calc() should be mirrored from the .imagegrid-row column-gap value *}} + {{include file="content/image/single_with_height_allocation.tpl" + image=$image + allocated_height="calc(`$image->heightRatio * $image->widthRatio / 100`% - 5px / `$column_size`)" + allocated_width="`$image->widthRatio`%" + }} + {{/foreach}} +
    +{{/foreach}} diff --git a/view/templates/content/image/single.tpl b/view/templates/content/image/single.tpl new file mode 100644 index 000000000..ea19c48a5 --- /dev/null +++ b/view/templates/content/image/single.tpl @@ -0,0 +1,10 @@ +{{if $image->preview}} +{{$image->description}} +{{else}} +
    + {{$image->description}} + {{if $image->description}} +
    {{$image->description}}
    + {{/if}} +
    +{{/if}} diff --git a/view/templates/content/image/single_with_height_allocation.tpl b/view/templates/content/image/single_with_height_allocation.tpl new file mode 100644 index 000000000..60b4669e3 --- /dev/null +++ b/view/templates/content/image/single_with_height_allocation.tpl @@ -0,0 +1,23 @@ +{{* The padding-top height allocation trick only works if the
    fills its parent's width completely or with flex. 🤷‍♂️ + As a result, we need to add a wrapping element for non-flex (non-image grid) environments, mostly single-image cases. + *}} +{{if $allocated_max_width}} +
    +{{/if}} + +
    + {{if $image->preview}} + + {{$image->description}} + + {{else}} + {{$image->description}} + {{if $image->description}} +
    {{$image->description}}
    + {{/if}} + {{/if}} +
    + +{{if $allocated_max_width}} +
    +{{/if}} diff --git a/view/templates/delegation.tpl b/view/templates/delegation.tpl index e95bea3bb..1faab170e 100644 --- a/view/templates/delegation.tpl +++ b/view/templates/delegation.tpl @@ -1,12 +1,13 @@ -

    {{$title}}

    -

    {{$desc nofilter}}

    -

    {{$choose}}

    +
    +

    {{$l10n.title}}

    +

    {{$l10n.desc}}

    +

    {{$l10n.choose}}

    -
    -
    +
    {{if $item.lock}}
    {{$item.lock}}
    - {{else}}
    {{/if}} + {{else}}
    {{/if}}
    {{$item.location_html nofilter}}
    {{$item.name}} -
    {{$item.pinned}}
    -
    +
    {{$item.pinned}}
    +
    {{$item.title}}
    @@ -46,7 +46,7 @@
    - {{if $item.drop && $item.drop.dropping}}{{/if}} + {{if $item.drop && $item.drop.dropping}}{{/if}}
    {{if $item.drop && $item.drop.pagedrop}}{{/if}}
    diff --git a/view/templates/settings/account.tpl b/view/templates/settings/account.tpl index 8e9f80dc3..6480c0de1 100644 --- a/view/templates/settings/account.tpl +++ b/view/templates/settings/account.tpl @@ -59,7 +59,8 @@ {{include file="field_checkbox.tpl" field=$unkmail}} {{include file="field_input.tpl" field=$cntunkmail}} - {{$group_select nofilter}} + {{$circle_select nofilter}} + {{$circle_select_group nofilter}} {{if not $is_community}}

    {{$permissions}}

    @@ -194,4 +195,4 @@
    - \ No newline at end of file + diff --git a/view/templates/settings/addons.tpl b/view/templates/settings/addons.tpl index 03313c924..768a0d6c4 100644 --- a/view/templates/settings/addons.tpl +++ b/view/templates/settings/addons.tpl @@ -2,7 +2,7 @@ {{foreach $addon_settings_forms as $addon => $addon_settings_form}} -
    + {{$addon_settings_form nofilter}}
    diff --git a/view/templates/settings/addon/connector.tpl b/view/templates/settings/addons/connector.tpl similarity index 100% rename from view/templates/settings/addon/connector.tpl rename to view/templates/settings/addons/connector.tpl diff --git a/view/templates/settings/addon/link.tpl b/view/templates/settings/addons/link.tpl similarity index 100% rename from view/templates/settings/addon/link.tpl rename to view/templates/settings/addons/link.tpl diff --git a/view/templates/settings/addon/panel.tpl b/view/templates/settings/addons/panel.tpl similarity index 100% rename from view/templates/settings/addon/panel.tpl rename to view/templates/settings/addons/panel.tpl diff --git a/view/templates/settings/channels.tpl b/view/templates/settings/channels.tpl new file mode 100644 index 000000000..27defffdb --- /dev/null +++ b/view/templates/settings/channels.tpl @@ -0,0 +1,45 @@ +
    +

    {{$l10n.title}}

    +

    {{$l10n.intro}}

    +

    {{$l10n.addtitle}}

    +
    + + {{include file="field_input.tpl" field=$label}} + {{include file="field_input.tpl" field=$description}} + {{include file="field_input.tpl" field=$access_key}} + {{include file="field_select.tpl" field=$circle}} + {{include file="field_textarea.tpl" field=$include_tags}} + {{include file="field_textarea.tpl" field=$exclude_tags}} + {{include file="field_textarea.tpl" field=$text_search}} + {{include file="field_checkbox.tpl" field=$image}} + {{include file="field_checkbox.tpl" field=$video}} + {{include file="field_checkbox.tpl" field=$audio}} +
    + +
    +
    + + {{if $entries}} +

    {{$l10n.currenttitle}}

    +
    + + {{foreach $entries as $e}} + {{include file="field_input.tpl" field=$e.label}} + {{include file="field_input.tpl" field=$e.description}} + {{include file="field_input.tpl" field=$e.access_key}} + {{include file="field_select.tpl" field=$e.circle}} + {{include file="field_textarea.tpl" field=$e.include_tags}} + {{include file="field_textarea.tpl" field=$e.exclude_tags}} + {{include file="field_textarea.tpl" field=$e.text_search}} + {{include file="field_checkbox.tpl" field=$e.image}} + {{include file="field_checkbox.tpl" field=$e.video}} + {{include file="field_checkbox.tpl" field=$e.audio}} + {{include file="field_checkbox.tpl" field=$e.delete}} +
    + {{/foreach}} +
    + +
    + {{/if}} +
    +
    diff --git a/view/templates/settings/connectors.tpl b/view/templates/settings/connectors.tpl index 411227d6d..7bd28ac55 100644 --- a/view/templates/settings/connectors.tpl +++ b/view/templates/settings/connectors.tpl @@ -17,6 +17,8 @@ {{include file="field_checkbox.tpl" field=$enable_smart_shortening}} {{include file="field_checkbox.tpl" field=$simple_shortening}} {{include file="field_checkbox.tpl" field=$attach_link_title}} + {{include file="field_checkbox.tpl" field=$api_spoiler_title}} + {{include file="field_checkbox.tpl" field=$api_auto_attach}} {{include file="field_input.tpl" field=$legacy_contact}}

    {{$repair_ostatus_text}}

    @@ -28,7 +30,6 @@
    -{{if !$mail_disabled}}

    {{$h_mail}}

    + {{if $mail_disabled}} +

    {{$mail_disabled}}

    + {{else}}

    {{$mail_desc nofilter}}

    {{include file="field_custom.tpl" field=$mail_lastcheck}} {{include file="field_input.tpl" field=$mail_server}} @@ -54,9 +58,9 @@
    + {{/if}}
    -{{/if}} {{foreach $connector_settings_forms as $addon => $connector_settings_form}}
    diff --git a/view/templates/settings/delegation.tpl b/view/templates/settings/delegation.tpl index 74e3350d6..d7c59fd63 100644 --- a/view/templates/settings/delegation.tpl +++ b/view/templates/settings/delegation.tpl @@ -1,54 +1,56 @@
    -

    {{$header}}

    +

    {{$l10n.header}}

    {{if !$is_child_user}} -

    {{$account_header}}

    - -

    {{$add_account}}

    +

    {{$l10n.account_header}}

    + +

    {{$l10n.add_account}}

    {{/if}} {{if $parent_user}} -

    {{$parent_header}}

    -

    {{$parent_desc}}

    -
    - - - {{include file="field_select.tpl" field=$parent_user}} - {{include file="field_password.tpl" field=$parent_password}} -
    - -
    +

    {{$l10n.parent_header}}

    +

    {{$l10n.parent_desc}}

    +
    +
    + + {{include file="field_select.tpl" field=$parent_user}} + {{include file="field_password.tpl" field=$parent_password}} +
    + +
    +
    +
    {{/if}} -

    {{$delegates_header}}

    +

    {{$l10n.delegates_header}}

    -

    {{$desc nofilter}}

    +

    {{$l10n.desc}}

    -

    {{$head_delegates}}

    +

    {{$l10n.head_delegates}}

    {{if $delegates}} - {{foreach $delegates as $x}} - + {{foreach $delegates as $delegate}} +
    + + + +
    {{/foreach}} -
    +
    {{else}} -

    {{$none}}

    +

    {{$l10n.none}}

    {{/if}} -

    {{$head_potentials}}

    +

    {{$l10n.head_potentials}}

    {{if $potentials}} - {{foreach $potentials as $x}} - + {{foreach $potentials as $potential}} +
    + + + +
    {{/foreach}} -
    +
    {{else}} -

    {{$none}}

    +

    {{$l10n.none}}

    {{/if}}
    diff --git a/view/templates/settings/display.tpl b/view/templates/settings/display.tpl index 4e065edf0..d1cba7a19 100644 --- a/view/templates/settings/display.tpl +++ b/view/templates/settings/display.tpl @@ -13,16 +13,43 @@ {{include file="field_input.tpl" field=$itemspage_mobile_network}} {{include file="field_input.tpl" field=$ajaxint}} - {{include file="field_checkbox.tpl" field=$no_auto_update}} {{include file="field_checkbox.tpl" field=$enable_smile}} {{include file="field_checkbox.tpl" field=$infinite_scroll}} {{include file="field_checkbox.tpl" field=$enable_smart_threading}} {{include file="field_checkbox.tpl" field=$enable_dislike}} {{include file="field_checkbox.tpl" field=$display_resharer}} {{include file="field_checkbox.tpl" field=$stay_local}} + {{include file="field_select.tpl" field=$preview_mode}} + +

    {{$timeline_title}}

    + {{$timeline_explanation}} + + + + + + + + + + + {{foreach $timelines as $t}} + + + + + + + {{/foreach}} + +
    {{$timeline_label}}{{$timeline_descriptiom}}{{$timeline_enable}}{{$timeline_bookmark}}
    {{$t.label}}{{$t.description}}{{include file="field_checkbox.tpl" field=$t.enable}}{{include file="field_checkbox.tpl" field=$t.bookmark}}
    + +

    {{$channel_title}}

    + {{include file="field_select.tpl" field=$channel_languages}}

    {{$calendar_title}}

    {{include file="field_select.tpl" field=$first_day_of_week}} + {{include file="field_select.tpl" field=$calendar_default_view}}
    diff --git a/view/templates/settings/head.tpl b/view/templates/settings/head.tpl index 6d58e54a6..ff85f2cb9 100644 --- a/view/templates/settings/head.tpl +++ b/view/templates/settings/head.tpl @@ -6,20 +6,20 @@ $(document).ready(function() { - $('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() { + $('#contact_allow, #contact_deny, #circle_allow, #circle_deny').change(function() { var selstr; - $('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() { + $('#contact_allow option:selected, #contact_deny option:selected, #circle_allow option:selected, #circle_deny option:selected').each( function() { selstr = $(this).html(); $('#jot-perms-icon').removeClass('unlock').addClass('lock'); $('#jot-public').hide(); }); - if(selstr == null) { + if(selstr == null) { $('#jot-perms-icon').removeClass('lock').addClass('unlock'); $('#jot-public').show(); } }).trigger('change'); - + $('.settings-content-block').hide(); $('.settings-heading').click(function(){ $('.settings-content-block').hide(); diff --git a/view/templates/settings/oauth.tpl b/view/templates/settings/oauth.tpl index 955b5754d..ad8407fb1 100644 --- a/view/templates/settings/oauth.tpl +++ b/view/templates/settings/oauth.tpl @@ -1,13 +1,14 @@

    {{$title}}

    - + + @@ -16,7 +17,11 @@ - + {{/foreach}} diff --git a/view/templates/settings/pagetypes.tpl b/view/templates/settings/pagetypes.tpl index 93732960b..8b285aea8 100644 --- a/view/templates/settings/pagetypes.tpl +++ b/view/templates/settings/pagetypes.tpl @@ -24,11 +24,11 @@ var accountType = {{$account_type}}; $(document).ready(function(){ - // Hide all DIV for page-flags expet the one which belongs to the present + // Hide all DIV for page-flags except the one which belongs to the present // account-type showPageFlags(accountType); - // Save the ID of the active page-flage + // Save the ID of the active page-flags var activeFlag = $('[id^=id_page-flags_]:checked'); $("[id^=id_account-type_]").change(function(){ diff --git a/view/templates/settings/profile/index.tpl b/view/templates/settings/profile/index.tpl index d888e0910..64c9daee0 100644 --- a/view/templates/settings/profile/index.tpl +++ b/view/templates/settings/profile/index.tpl @@ -1,120 +1,131 @@ -

    {{$banner}}

    + -{{$default nofilter}} +

    {{$l10n.banner}}

    -
    - + + + + +
    +

    {{$l10n.picture_section}} »

    + +
    + + +
    -
    - - -
    -
    -
    - - -
    -
    -
    - {{$dob nofilter}} -
    -
    - {{$hide_friends nofilter}} -
    - -
    -
    -
    - - -
    -
    -
    - - -
    -
    -
    - - -
    -
    -
    - - -
    -
    -
    - - -
    -
    -
    - -
    -
    -
    - - -
    -
    -
    - - -
    -
    {{$xmpp.3}}
    -
    -
    - - -
    -
    {{$matrix.3}}
    -
    -
    - - -
    -
    {{$pub_keywords.3}}
    -
    -
    - - -
    -
    {{$prv_keywords.3}}
    -
    -
    - -
    -
    + +
    +

    {{$l10n.personal_section}} »

    + + +
    +

    {{$l10n.location_section}} »

    + +
    + +
    +

    {{$l10n.custom_fields_section}} »

    +
    -
    + + +

    {{$title}}

    +
    +
    + + +
    +
    + diff --git a/view/templates/widget/peoplefind.tpl b/view/templates/widget/peoplefind.tpl index 7104dc6f3..ef699d249 100644 --- a/view/templates/widget/peoplefind.tpl +++ b/view/templates/widget/peoplefind.tpl @@ -5,8 +5,8 @@
    - - + + diff --git a/view/templates/widget/posted_date.tpl b/view/templates/widget/posted_date.tpl index ad40bcb02..3c2380c60 100644 --- a/view/templates/widget/posted_date.tpl +++ b/view/templates/widget/posted_date.tpl @@ -31,10 +31,16 @@ function showHideDates() { diff --git a/view/templates/widget/vcard.tpl b/view/templates/widget/vcard.tpl index 9e38eebfc..2656be487 100644 --- a/view/templates/widget/vcard.tpl +++ b/view/templates/widget/vcard.tpl @@ -41,6 +41,12 @@ {{if $wallmessage_link}}
  • {{$wallmessage}}
  • {{/if}} + {{if $mention_link}} +
  • {{$mention}}
  • + {{/if}} + {{if $showgroup_link}} +
  • {{$showgroup}}
  • + {{/if}}
    diff --git a/view/templates/widget_forumlist.tpl b/view/templates/widget_forumlist.tpl deleted file mode 100644 index 6d0af8ce2..000000000 --- a/view/templates/widget_forumlist.tpl +++ /dev/null @@ -1,53 +0,0 @@ - - - -

    {{$title}}

    -
    -
    - -

    {{$title}}

    -
    - -
    -
    - diff --git a/view/theme/duepuntozero/config.php b/view/theme/duepuntozero/config.php index a64f6f5fe..5f86976b9 100644 --- a/view/theme/duepuntozero/config.php +++ b/view/theme/duepuntozero/config.php @@ -1,6 +1,6 @@ .wall-item-content-wrapper { -moz-border-radius: 3px 3px 0px; - border-radius: 3px 3px 0px; + border-radius: 3px 3px 0px; } .wall-item-tools { background-color: #444444; background-image: none;} .comment-wwedit-wrapper{ @@ -39,7 +39,7 @@ nav #banner #logo-text a { color: #ffffff; } border: solid #444444; border-width: 0px 3px 3px; -moz-border-radius: 0px 0px 3px 3px; - border-radius: 0px 0px 3px 3px; + border-radius: 0px 0px 3px 3px; } .editicon { background-color: #333; @@ -91,7 +91,7 @@ footer { background-image: url('imgdarkzero/sectionend.jpg'); background-position: top left; background-repeat: repeat-x; - height: 25px; + height: 25px; } @@ -117,13 +117,13 @@ input#dfrn-url { #jot-title:-moz-placeholder{color: #555555!important;} #jot-category::-webkit-input-placeholder{ color: #555555!important;} #jot-category:-moz-placeholder{color: #555555!important;} - - + + #jot-title:hover, #jot-title:focus, #jot-category:hover, #jot-category:focus { - border: 1px solid #cccccc; + border: 1px solid #cccccc; } #profile-jot-email-label, div#jot-preview-content, div.profile-jot-net { @@ -149,7 +149,7 @@ input#dfrn-url { background:#2e2f2e; } -.widget .selected, .group-selected { +.widget .selected, .circle-selected { background:#2e2f2e; } diff --git a/view/theme/duepuntozero/deriv/slackr.css b/view/theme/duepuntozero/deriv/slackr.css index c096ffa7d..179b6259c 100644 --- a/view/theme/duepuntozero/deriv/slackr.css +++ b/view/theme/duepuntozero/deriv/slackr.css @@ -90,7 +90,7 @@ nav #site-location { box-shadow: 4px 4px 3px 0 #444444; } -.forumlist-img { +.group-list-img { border-radius: 3px; -moz-border-radius: 3px; box-shadow: 4px 4px 3px 0 #444444; @@ -126,7 +126,7 @@ nav #site-location { } -.contact-entry-photo img, .profile-match-photo img, #photo-photo img, .directory-photo-img, .photo-album-photo, .photo-top-photo, .profile-jot-text, .group-selected, .widget .selected, #profile-jot-submit { +.contact-entry-photo img, .profile-match-photo img, #photo-photo img, .directory-photo-img, .photo-album-photo, .photo-top-photo, .profile-jot-text, .circle-selected, .widget .selected, #profile-jot-submit { border-radius: 3px; -moz-border-radius: 3px; box-shadow: 4px 4px 3px 0 #444444; diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index f5b526c48..802aaf16f 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -382,11 +382,11 @@ div.wall-item-content-wrapper.shiny { cursor: pointer; } -#group-sidebar { +#circle-sidebar { margin-bottom: 10px; } -.widget .selected, .group-selected, .forum-selected { +.widget .selected, .circle-selected, .group-selected { padding: 3px; -moz-border-radius: 3px; border-radius: 3px; @@ -1695,46 +1695,46 @@ input#dfrn-url { overflow: auto; } -#group-new-submit-wrapper { +#circle-new-submit-wrapper { margin-top: 30px; } -#group-edit-name-label { +#circle-edit-name-label { float: left; width: 175px; margin-top: 20px; margin-bottom: 20px; } -#group-edit-name { +#circle-edit-name { float: left; width: 225px; margin-top: 20px; margin-bottom: 20px; } -#group-edit-name-wrapper { +#circle-edit-name-wrapper { } -#group_members_select_label { +#circle_members_select_label { display: block; float: left; width: 175px; } -.group_members_select { +.circle_members_select { float: left; width: 230px; overflow: auto; } -#group_members_select_end { +#circle_members_select_end { clear: both; } -#group-edit-name-end { +#circle-edit-name-end { clear: both; } @@ -1856,10 +1856,10 @@ a.mail-list-link { clear: both; } -#sidebar-group-list ul { +#sidebar-circle-list ul { list-style-type: none; } -.sidebar-group-li .notify, .forum-widget-entry .notify { +.sidebar-circle-li .notify, .group-widget-entry .notify { display: none; font-size: 9px; border: 1px solid rgb(221, 221, 221); @@ -1867,21 +1867,21 @@ a.mail-list-link { float: right; background-color: #BABDB6; } -.sidebar-group-li .notify.show, .forum-widget-entry .notify.show { +.sidebar-circle-li .notify.show, .group-widget-entry .notify.show { display: block; } -#sidebar-group-list .icon, #sidebar-group-list .iconspacer { +#sidebar-circle-list .icon, #sidebar-circle-list .iconspacer { display: inline-block; height: 12px; width: 12px; } -#sidebar-group-list li { +#sidebar-circle-list li { margin-top: 10px; } -#forumlist-sidebar ul { +#group-list-sidebar ul { list-style: none; } @@ -1911,7 +1911,7 @@ a.mail-list-link { #search-save { margin-left: 5px; } -.groupsideedit { +.circlesideedit { margin-right: 10px; } #saved-search-ul { @@ -2180,7 +2180,7 @@ aside input[type='text'] { margin-left: 200px; } -.group-delete-wrapper { +.circle-delete-wrapper { float: right; margin-right: 50px; } @@ -2546,7 +2546,7 @@ aside input[type='text'] { margin-bottom: 15px; } -#group-members { +#circle-members { margin-top: 20px; padding: 10px; height: 250px; @@ -2554,28 +2554,28 @@ aside input[type='text'] { border: 1px solid #ddd; } -#group-members-end { +#circle-members-end { clear: both; } -#group-separator { +#circle-separator { margin-top: 10px; margin-bottom: 10px; } -#group-all-contacts { +#circle-all-contacts { padding: 10px; height: 450px; overflow: auto; border: 1px solid #ddd; } -#group-all-contacts-end { +#circle-all-contacts-end { clear: both; margin-bottom: 10px; } -#group-edit-desc { +#circle-edit-desc { margin-top: 15px; } diff --git a/view/theme/duepuntozero/style.php b/view/theme/duepuntozero/style.php index 575f0dff5..1ef97db75 100644 --- a/view/theme/duepuntozero/style.php +++ b/view/theme/duepuntozero/style.php @@ -1,6 +1,6 @@ {{$nav.admin.1}}{{/if}} + {{if $nav.moderation}}{{$nav.moderation.1}}{{/if}} + {{if $nav.network}} {{$nav.network.1}} diff --git a/view/theme/duepuntozero/theme.php b/view/theme/duepuntozero/theme.php index 729c5bb08..71278c659 100644 --- a/view/theme/duepuntozero/theme.php +++ b/view/theme/duepuntozero/theme.php @@ -1,6 +1,6 @@ h3, @@ -800,13 +812,15 @@ nav.navbar .nav > li > button:focus { } #offcanvasUsermenu a { display: block; + margin: -10px -15px; + padding: 10px 15px; } #offcanvasUsermenu li.nav-sitename { font-weight: bold; } #topbar-first .dropdown.account li#nav-sitename { - padding-left: 15px; - padding-right: 15px; + padding-left: 20px; + padding-right: 20px; font-weight: bold; word-break: break-word; } @@ -815,6 +829,10 @@ nav.navbar .nav > li > button:focus { background-color: $nav_bg; } /* Nav Search */ +.menu-popup { + max-height: calc(100vh - 55px); + overflow-y: auto; +} #topbar-first #search-box .navbar-form { margin: 0px; padding: 12px 12px; @@ -956,13 +974,15 @@ ul li .intro-wrapper button.intro-action-link { background-color: $nav_bg; border: none; } +.dropdown-menu .divider { + margin: 5px 0; +} .nav-pills .dropdown-menu li.divider, .nav-tabs .dropdown-menu li.divider, .account .dropdown-menu li.divider, .contact-photo-wrapper .dropdown-menu li.divider { background-color: $menu_background_hover_color; border-bottom: none; - margin: 9px 1px !important; } .nav-pills .dropdown-menu li > a, .nav-tabs .dropdown-menu li > a, @@ -980,8 +1000,6 @@ ul li .intro-wrapper button.intro-action-link { .contact-photo-wrapper .dropdown-menu li .btn-link { color: $nav_icon_color; font-weight: 400; - font-size: 13px; - padding: 4px 15px; width: 100%; text-align: left; } @@ -1037,7 +1055,6 @@ aside .widget, position: relative; margin-bottom: 20px; padding: 10px; - font-size: 13px; overflow: auto; } aside .widget h3, @@ -1045,7 +1062,7 @@ aside .widget h3, font-weight: bold; font-size: 16px; margin: 0; - padding-bottom: 20px; + padding-bottom: 10px; } aside .widget ul, @@ -1058,10 +1075,11 @@ aside .widget ul, list-style: none; } +aside .widget li .label { + float: left; +} aside .widget li, .nav-container .widget li { - padding-top: 2px; - padding-bottom: 2px; padding-left: 20px; padding-right: 10px; } @@ -1074,12 +1092,18 @@ aside .widget li.selected, border-left: 3px solid $link_color !important; padding-left: 17px; } +.side-link-link, +aside .widget li a { + display: block; + padding-top: 6px; + padding-bottom: 6px; +} aside .widget li a, aside .widget li a:hover { color: $font_color_darker; } -/* forumlist widget */ +/* group-list widget */ aside > #datebrowse-sidebar li.posted-date-selector-months { margin-bottom: 10px; padding: 0; @@ -1099,7 +1123,7 @@ aside > #datebrowse-sidebar .posted-date-selector-months > ul > li:hover { padding-left: 27px; } -.forumlist-img { +.group-list-img { -webkit-filter: grayscale(100%); filter: grayscale(100%); opacity: 0.5; @@ -1110,7 +1134,7 @@ aside > #datebrowse-sidebar .posted-date-selector-months > ul > li:hover { -ms-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } -#forumlist-sidbar-ul li:hover a > .forumlist-img { +#group-list-sidebar-ul li:hover a > .group-list-img { -webkit-filter: unset; filter: unset; opacity: unset; @@ -1202,7 +1226,7 @@ aside .vcard .icon { } aside .vcard #subscribe-feed-link-button, aside .vcard #dfrn-request-link-button, -aside .vcard #wallmessage-link-botton { +aside .vcard #wallmessage-link-button { width: 50%; margin: 0 0 0 -5px; float: left; @@ -1260,7 +1284,7 @@ aside .vcard #wallmessage-link { color: $font_color; font-size: 12px; } -.network-content-wrapper > #viewcontact_wrapper-network, +.network-content-wrapper > .generic-page-wrapper, #nav-short-info .contact-wrapper .contact-photo-overlay, #nav-short-info .contact-wrapper .contact-actions { display: none; @@ -1280,21 +1304,29 @@ aside #follow-sidebar .form-group-search .form-button-search { padding: 2px 8px; } +div#sidebar-circle-header h3, div#sidebar-group-header h3 { float: left; } +div#sidebar-circle-list, div#sidebar-group-list { clear: both; } -.group-new-form { +.circle-new-form { clear: both; } -.group-edit-tool { +.circle-edit-tool, +.group-new-tool { + padding-top: 0; color: $font_color_darker; } +.sidebar-widget-header .circle-edit-tool, +.group-new-tool { + margin-top: -5px; +} .faded-icon { color: $font_color_darker; @@ -1309,24 +1341,29 @@ div#sidebar-group-list { margin-left: 20px; } -aside #group-sidebar .sidebar-group-li:hover .group-edit-tool.faded-icon, -aside #saved-search-list .saved-search-li:hover .savedsearchdrop.faded-icon, -aside .widget:hover .widget-action.faded-icon { +aside .widget-action { + padding: 5px 10px; +} +aside #circle-sidebar .sidebar-circle-li .circle-edit-tool.faded-icon:hover, +aside #group-sidebar .group-new-tool.faded-icon:hover, +aside #saved-search-list .saved-search-li .savedsearchdrop.faded-icon:hover, +aside .widget.widget-action.faded-icon:hover { opacity: 0.8; transition: all 0.25s ease-in-out; } -aside #group-sidebar .sidebar-group-li .group-edit-tool.faded-icon:hover, +aside #circle-sidebar .sidebar-circle-li .circle-edit-tool.faded-icon:hover, +aside #group-sidebar .group-new-tool.faded-icon:hover, aside #saved-search-list .saved-search-li .savedsearchdrop.faded-icon:hover, aside .widget .widget-action.faded-icon:hover { opacity: 1; } -aside #group-sidebar li .group-checkbox { - margin: 0; +aside #circle-sidebar li .circle-checkbox { + margin: 6px 0 0; } -aside #group-sidebar li .group-edit-tool { +aside #circle-sidebar li .circle-edit-tool { padding-right: 10px; } -aside #group-sidebar li .group-edit-tool:first-child { +aside #circle-sidebar li .circle-edit-tool:first-child { padding-right: 0px; } @@ -1556,17 +1593,17 @@ textarea.comment-edit-text:focus + .comment-edit-form .preview { } .fbrowser .fbrowser-content-container { overflow-y: auto; - max-height: calc(100vh - 175px); + max-height: calc(100vh - 233px); } @media (min-width: 768px) { .fbrowser .fbrowser-content-container { - max-height: calc(100vh - 220px); + max-height: calc(100vh - 277px); } } -.fbrowser.image .photo-album-image-wrapper { +.fbrowser.photo .photo-album-image-wrapper { box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2); } -.fbrowser.image .photo-album-image-wrapper .caption { +.fbrowser.photo .photo-album-image-wrapper .caption { pointer-events: none; } .fbrowser .profile-rotator-wrapper { @@ -1717,13 +1754,13 @@ aside .panel-body { } /* wall items action dropdown menu */ -.media [role="heading"] { +.media .contact-info { position: relative; } /* Workaround for Firefox where the post heading covers the avatar, preventing hovercard interaction, 48px is the width of the avatar image and should be adjusted accordingly if it ever changes. */ -.media .dropdown.pull-left + [role="heading"] { +.media .dropdown.pull-left + .contact-info { margin-left: 48px; } @@ -1740,6 +1777,10 @@ aside .panel-body { border-top: none; color: inherit; } +.preferences .plink { + margin-left: 5px; +} + blockquote.shared_content { padding: 0px; margin-inline-start: 0px; @@ -1751,17 +1792,11 @@ blockquote.shared_content { } /* wall items contact info */ -.media .media-body { - font-size: 13px; -} .media .media-body h4.media-heading { font-size: 14px; font-weight: 500; color: $font_color_darker; } -.media .media-body .addional-info a { - display: block; -} .media .contact-info-comment { display: table-cell; } @@ -1919,6 +1954,9 @@ code > .hl-main { margin: 10px 0; font-size: 13px; } +.wall-item-tags:empty { + margin: 0; +} .wall-item-tags a { color: $font_color_darker; @@ -1942,14 +1980,18 @@ code > .hl-main { margin: 0; justify-content: space-between; } +.wall-item-actions .btn, .wall-item-actions a, .wall-item-actions button { - font-size: 13px; color: $font_color_darker; + background-color: transparent; + padding-left: 5px; + padding-right: 5px; } .wall-item-actions .active { font-weight: bold; color: $link_color; + box-shadow: none; } .wall-item-actions-left { display: table-cell; @@ -1958,22 +2000,54 @@ code > .hl-main { .wall-item-actions-right { display: flex; } +.wall-item-actions-items { + flex-grow: 1; +} +.wall-item-actions-row { + display: flex; +} +.wall-item-actions-row .btn { + width: 100%; +} +.wall-item-actions-row > * { + flex: 1 1 0; +} .wall-item-actions .checkbox { - margin: 0; - margin-left: 20px; + margin: 0 0 0 15px; +} +@media screen and (max-width: 767px) { + .wall-item-actions .btn, + .wall-item-actions a, + .wall-item-actions button { + padding-right: 0; + padding-left: 0; + } + .wall-item-actions .checkbox { + margin-top: 8px; + flex: 0 1 auto; + } + .wall-item-actions .like-rotator { + position: absolute; + top: 8px; + right: 0; + } } .wall-item-actions button:hover { - color: $font_color_darker; text-decoration: underline; } .wall-item-actions .separator { margin: 0 0.3em; } - +.wall-item-responses { + margin-top: .3em; +} .wall-item-responses > div > p { margin: 0; } - +.btn-group-event { + display: flex; + flex-basis: auto; +} /* wall item hover effects */ @media (min-width: 768px) { @@ -2058,12 +2132,12 @@ wall-item-comment-wrapper.well hr { margin-top: 0; } .hide-comments-outer { + display: block; background-color: rgba(0, 0, 0, 0.03); - padding: 0.5em; - border-radius: 0.5em 0.5em 0 0; -} -.hide-comments-total { - cursor: pointer; + padding: 0.3em 10px; + width: 100%; + border: none; + text-align: left; } /* @@ -2115,7 +2189,7 @@ wall-item-comment-wrapper.well hr { nav .acpopup { margin-left: -23px; } -/** @todo: we schould consider the possebility to overwrite bootstrap dropdowns +/** @todo: we should consider the possibility to overwrite bootstrap dropdowns at the beginning of this file to get rid of the !important */ .textcomplete-item > a { color: $font_color_darker !important; @@ -2127,7 +2201,7 @@ nav .acpopup { border-left: 3px solid $link_color; padding-left: 17px !important; } -.textcomplete-item a .forum { +.textcomplete-item a .group { color: $link_color; } img.acpopup-img { @@ -2143,9 +2217,11 @@ img.acpopup-img { margin-left: 15px; } -/* Birthday */ +/* Birthday and Event Reminders */ #birthday-notice, -#birthday-wrapper { +#birthday-wrapper, +#event-notice, +#event-wrapper { margin-bottom: 5px; padding: 10px; border: none; @@ -2158,11 +2234,15 @@ img.acpopup-img { /* Menubar Tabs */ section > .tabbar-wrapper { - /* The tabbar shouldn't' be visibile inside + /* The tabbar shouldn't' be visible inside the section element. Only after we have moved it to the nav through js */ display: none !important; } +.tabbar-wrapper__link { + padding-right: 10px; + padding-left: 10px; +} #tabmenu, .tabbar-wrapper, .tabbar, @@ -2179,7 +2259,6 @@ ul.tabs { list-style: none; height: 100%; padding: 0; - padding-top: 10px; margin: 0; } ul.tabs li { @@ -2192,8 +2271,9 @@ ul.tabs li { transition: all 0.15s ease; } ul.tabs li a { - margin-left: 10px; - margin-right: 10px; + display: block; + padding-top: 11px; + padding-bottom: 11px; } ul.tabs li:hover, ul.tabs li.active { @@ -2203,7 +2283,7 @@ ul.tabs li.active { padding-top: 0; } #dropdownMenuTools-xs { - padding: 9px 10px; + padding: 9px 15px; } ul.tabbar ul.tabs-extended:hover li.dropdown { border-bottom: 0; @@ -2225,6 +2305,12 @@ ul.dropdown-menu li:hover { box-sizing: border-box; } /* Dropdown Menu */ +.dropdown-menu li .btn-link, +.dropdown-menu li a, +.tabs .dropdown-menu li a { + padding: 6px 20px; + font-size: 14px; +} .dropdown-menu li a, .dropdown-menu li .btn-link { color: $font_color_darker; @@ -2239,7 +2325,7 @@ ul.dropdown-menu li:hover { margin-top: 3px; } -/* Notificaiotn badges */ +/* Notification badges */ #mail-update-li.show { display: inline-block !important; } @@ -2373,7 +2459,7 @@ section > .generic-page-wrapper, .dfrn_request-content-wrapper, .friendica-content-wrapper, .credits-content-wrapper, -.nogroup-content-wrapper, +.nocircle-content-wrapper, .profperm-content-wrapper, .invite-content-wrapper, .tos-content-wrapper, @@ -2419,7 +2505,7 @@ body.mod-login .navbar #nav-login { margin-top: 20px; margin-bottom: 20px; } -.contact-block-div.forumlist-profile-advanced { +.contact-block-div.group-list-profile-advanced { float: left; } @@ -2482,20 +2568,18 @@ ul.viewcontact_wrapper > li { } .contact-wrapper .contact-actions { display: flex; + position: relative; + margin: -8px -8px 0 0; } .contact-wrapper .contact-action-link, .contact-wrapper .contact-action-link:hover, .textcomplete-item .contact-wrapper .contact-action-link { - padding: 0 5px; color: $font_color_darker; border: 0; } .contact-wrapper .contact-action-link { - opacity: 0.1; - transition: all 0.25s ease-in-out; -} -ul li:hover .contact-wrapper .contact-action-link { - opacity: 0.8; + background-color: transparent; + opacity: 0.3; transition: all 0.25s ease-in-out; } ul li:hover .contact-wrapper .contact-action-link:hover { @@ -2524,70 +2608,70 @@ ul li:hover .contact-wrapper .contact-action-link:hover { padding-top: 10px; } -/* group edit page */ -.group-actions { +/* circle edit page */ +.circle-actions { margin-top: 4px; margin-bottom: 10px; font-size: 30px; } -.group-actions button, -.group-actions a { +.circle-actions button, +.circle-actions a { font-size: 18px; } -.contact-group-actions .fa-times-circle { +.contact-circle-actions .fa-times-circle { color: #d00000; } -.contact-group-actions .fa-plus-circle { +.contact-circle-actions .fa-plus-circle { color: #008000; } -#group-edit-wrapper { +#circle-edit-wrapper { margin-top: 14px; display: none; } -#group-edit-header { +#circle-edit-header { display: block; } -#group-update-wrapper .contact-photo-overlay { +#circle-update-wrapper .contact-photo-overlay { display: none; } -#group-update-wrapper .viewcontact_wrapper .contact-group-actions { +#circle-update-wrapper .viewcontact_wrapper .contact-circle-actions { height: 100%; - margin-top: -10px; display: flex; + flex-direction: column; + justify-content: center; } -#group-update-wrapper .viewcontact_wrapper .contact-group-link { +#circle-update-wrapper .viewcontact_wrapper .contact-circle-link { opacity: 0.8; font-size: 20px; - line-height: 50px; } -#group-update-wrapper .viewcontact_wrapper .contact-action-link:hover { +#circle-update-wrapper .viewcontact_wrapper .contact-action-link:hover { opacity: 1; } -#group-update-wrapper .shortmode { +#circle-update-wrapper .shortmode { height: 53px; overflow: hidden; } -#group-update-wrapper .shortmode .contact-photo { +#circle-update-wrapper .shortmode .contact-photo { height: 32px; width: 32px; } -#group-update-wrapper .shortmode .media { +#circle-update-wrapper .shortmode .media { overflow: hidden; } -#group-update-wrapper .shortmode .contact-entry-desc { +#circle-update-wrapper .shortmode .contact-entry-desc { font-size: 12px !important; } -#group-update-wrapper .shortmode .contact-entry-desc h4.media-heading { +#circle-update-wrapper .shortmode .contact-entry-desc h4.media-heading { margin: 0; } -#group-update-wrapper .shortmode .contact-entry-desc h4.media-heading a { +#circle-update-wrapper .shortmode .contact-entry-desc h4.media-heading a { font-size: 13px !important; white-space: nowrap; } -#group-update-wrapper .shortmode .contact-entry-desc .contact-entry-rel, -#group-update-wrapper .shortmode .contact-entry-desc .contact-entry-network { +#circle-update-wrapper .shortmode .contact-entry-desc .contact-entry-rel, +#circle-update-wrapper .shortmode .contact-entry-desc .contact-entry-network { display: none; } @@ -2901,6 +2985,10 @@ ul li:hover .contact-wrapper .contact-action-link:hover { .section-subtitle-wrapper { padding: 1px 10px; } +.accordion-toggle { + width: 100%; + text-align: left; +} details.profile-jot-net[open] summary:before, .panel .section-subtitle-wrapper .accordion-toggle:before { font-family: ForkAwesome; @@ -2965,6 +3053,12 @@ details.profile-jot-net[open] summary:before { margin-top: 10px; margin-bottom: 10px; } +.section-subtitle-wrapper > h2 .accordion-toggle { + margin-top: -10px; + margin-bottom: -10px; + padding-top: 10px; + padding-bottom: 10px; +} .section-subtitle-wrapper > h3 { font-size: 16px; @@ -2980,6 +3074,7 @@ details.profile-jot-net[open] summary:before { content: "\f0da"; /* Right Plain Pointer */ } .widget > .fakelink > h3:before, +#sidebar-circle-header > .fakelink > h3:before, #sidebar-group-header > .fakelink > h3:before { font-family: ForkAwesome; content: "\f0d7"; /* Bottom Plain Pointer */ @@ -3083,7 +3178,7 @@ ul.notif-network-list li.unseen { /* Search Page */ -/* This is a little bit hacky. Since the search page is used for diferent +/* This is a little bit hacky. Since the search page is used for different content types we can't apply the generic-page-wrapper class. So we apply the css of the generic-page-wrapper class to the ul element with some little modifications to emulate a standard page template */ @@ -3580,7 +3675,7 @@ section .profile-match-wrapper { background: transparent; cursor: pointer; } -.fc .fc-listMonth-view .seperator { +.fc .fc-listMonth-view .separator { margin-left: 30px; width: 60px; } @@ -3605,6 +3700,11 @@ section .profile-match-wrapper { font-size: 13px; } + +.generic-page-wrapper.contact-follow-wrapper { + min-height: auto; +} + /* Medium devices (desktops, 992px and up) */ @media (min-width: 992px) { .mod-home.is-not-singleuser #content, @@ -3679,10 +3779,6 @@ section .profile-match-wrapper { margin-bottom: 5px; } - .panel .panel-body { - padding: 10px; - } - .toplevel_item > .wall-item-container { padding: 0; } @@ -3716,7 +3812,7 @@ section .profile-match-wrapper { .dfrn_request-content-wrapper, .friendica-content-wrapper, .credits-content-wrapper, - .nogroup-content-wrapper, + .nocircle-content-wrapper, .profperm-content-wrapper, .invite-content-wrapper, .tos-content-wrapper, diff --git a/view/theme/frio/frameworks/justifiedGallery/jquery.justifiedGallery.min.js b/view/theme/frio/frameworks/justifiedGallery/jquery.justifiedGallery.min.js index 030636ccc..eb179061a 100644 --- a/view/theme/frio/frameworks/justifiedGallery/jquery.justifiedGallery.min.js +++ b/view/theme/frio/frameworks/justifiedGallery/jquery.justifiedGallery.min.js @@ -1,7 +1,8 @@ /*! - * Justified Gallery - v3.6.1 + * justifiedGallery - v3.8.1b * http://miromannino.github.io/Justified-Gallery/ - * Copyright (c) 2015 Miro Mannino + * Copyright (c) 2023 Miro Mannino, Hypolite Petovan * Licensed under the MIT license. */ -!function(a){var b=function(b,c){this.settings=c,this.checkSettings(),this.imgAnalyzerTimeout=null,this.entries=null,this.buildingRow={entriesBuff:[],width:0,height:0,aspectRatio:0},this.lastAnalyzedIndex=-1,this.yield={every:2,flushed:0},this.border=c.border>=0?c.border:c.margins,this.maxRowHeight=this.retrieveMaxRowHeight(),this.suffixRanges=this.retrieveSuffixRanges(),this.offY=this.border,this.spinner={phase:0,timeSlot:150,$el:a('
    '),intervalId:null},this.checkWidthIntervalId=null,this.galleryWidth=b.width(),this.$gallery=b};b.prototype.getSuffix=function(a,b){var c,d;for(c=a>b?a:b,d=0;d img");return 0===b.length&&(b=a.find("> a > img")),0===b.length?null:b},b.prototype.captionFromEntry=function(a){var b=a.find("> .caption");return 0===b.length?null:b},b.prototype.displayEntry=function(b,c,d,e,f,g){b.width(e),b.height(g),b.css("top",d),b.css("left",c);var h=this.imgFromEntry(b);if(null!==h){h.css("width",e),h.css("height",f),h.css("margin-left",-e/2),h.css("margin-top",-f/2);var i=h.attr("src"),j=this.newSrc(i,e,f);h.one("error",function(){h.attr("src",h.data("jg.originalSrc"))});var k=function(){i!==j&&h.attr("src",j)};"skipped"===b.data("jg.loaded")?this.onImageEvent(i,a.proxy(function(){this.showImg(b,k),b.data("jg.loaded",!0)},this)):this.showImg(b,k)}else this.showImg(b);this.displayEntryCaption(b)},b.prototype.displayEntryCaption=function(b){var c=this.imgFromEntry(b);if(null!==c&&this.settings.captions){var d=this.captionFromEntry(b);if(null===d){var e=c.attr("alt");this.isValidCaption(e)||(e=b.attr("title")),this.isValidCaption(e)&&(d=a('
    '+e+"
    "),b.append(d),b.data("jg.createdCaption",!0))}null!==d&&(this.settings.cssAnimation||d.stop().fadeTo(0,this.settings.captionSettings.nonVisibleOpacity),this.addCaptionEventsHandlers(b))}else this.removeCaptionEventsHandlers(b)},b.prototype.isValidCaption=function(a){return"undefined"!=typeof a&&a.length>0},b.prototype.onEntryMouseEnterForCaption=function(b){var c=this.captionFromEntry(a(b.currentTarget));this.settings.cssAnimation?c.addClass("caption-visible").removeClass("caption-hidden"):c.stop().fadeTo(this.settings.captionSettings.animationDuration,this.settings.captionSettings.visibleOpacity)},b.prototype.onEntryMouseLeaveForCaption=function(b){var c=this.captionFromEntry(a(b.currentTarget));this.settings.cssAnimation?c.removeClass("caption-visible").removeClass("caption-hidden"):c.stop().fadeTo(this.settings.captionSettings.animationDuration,this.settings.captionSettings.nonVisibleOpacity)},b.prototype.addCaptionEventsHandlers=function(b){var c=b.data("jg.captionMouseEvents");"undefined"==typeof c&&(c={mouseenter:a.proxy(this.onEntryMouseEnterForCaption,this),mouseleave:a.proxy(this.onEntryMouseLeaveForCaption,this)},b.on("mouseenter",void 0,void 0,c.mouseenter),b.on("mouseleave",void 0,void 0,c.mouseleave),b.data("jg.captionMouseEvents",c))},b.prototype.removeCaptionEventsHandlers=function(a){var b=a.data("jg.captionMouseEvents");"undefined"!=typeof b&&(a.off("mouseenter",void 0,b.mouseenter),a.off("mouseleave",void 0,b.mouseleave),a.removeData("jg.captionMouseEvents"))},b.prototype.prepareBuildingRow=function(a){var b,c,d,e,f,g=!0,h=0,i=this.galleryWidth-2*this.border-(this.buildingRow.entriesBuff.length-1)*this.settings.margins,j=i/this.buildingRow.aspectRatio,k=this.buildingRow.width/i>this.settings.justifyThreshold;if(a&&"hide"===this.settings.lastRow&&!k){for(b=0;bf)&&(h=f);return this.settings.fixedHeight&&h>this.settings.rowHeight&&(h=this.settings.rowHeight),this.buildingRow.height=h,g},b.prototype.clearBuildingRow=function(){this.buildingRow.entriesBuff=[],this.buildingRow.aspectRatio=0,this.buildingRow.width=0},b.prototype.flushRow=function(a){var b,c,d,e=this.settings,f=this.border;if(c=this.prepareBuildingRow(a),a&&"hide"===e.lastRow&&-1===this.buildingRow.height)return void this.clearBuildingRow();if(this.maxRowHeight.isPercentage?this.maxRowHeight.value*e.rowHeight0&&this.maxRowHeight.valuethis.settings.refreshSensitivity&&(this.galleryWidth=a,this.rewind(),this.startImgAnalyzer(!0))},this),this.settings.refreshTime)},b.prototype.isSpinnerActive=function(){return null!==this.spinner.intervalId},b.prototype.getSpinnerHeight=function(){return this.spinner.$el.innerHeight()},b.prototype.stopLoadingSpinnerAnimation=function(){clearInterval(this.spinner.intervalId),this.spinner.intervalId=null,this.$gallery.height(this.$gallery.height()-this.getSpinnerHeight()),this.spinner.$el.detach()},b.prototype.startLoadingSpinnerAnimation=function(){var a=this.spinner,b=a.$el.find("span");clearInterval(a.intervalId),this.$gallery.append(a.$el),this.$gallery.height(this.offY+this.buildingRow.height+this.getSpinnerHeight()),a.intervalId=setInterval(function(){a.phase0;b--)c=Math.floor(Math.random()*(b+1)),d=a[b],a[b]=a[c],a[c]=d;return this.insertToGallery(a),a},b.prototype.sortArray=function(a){return a.sort(this.settings.sort),this.insertToGallery(a),a},b.prototype.resetFilters=function(b){for(var c=0;c=this.yield.every))return void this.startImgAnalyzer(b);this.buildingRow.entriesBuff.push(d),this.buildingRow.aspectRatio+=f,this.buildingRow.width+=f*this.settings.rowHeight,this.lastAnalyzedIndex=c}else if("error"!==d.data("jg.loaded"))return}this.buildingRow.entriesBuff.length>0&&this.flushRow(!0),this.isSpinnerActive()&&this.stopLoadingSpinnerAnimation(),this.stopImgAnalyzerStarter(),this.$gallery.trigger(b?"jg.resize":"jg.complete")},b.prototype.stopImgAnalyzerStarter=function(){this.yield.flushed=0,null!==this.imgAnalyzerTimeout&&clearTimeout(this.imgAnalyzerTimeout)},b.prototype.startImgAnalyzer=function(a){var b=this;this.stopImgAnalyzerStarter(),this.imgAnalyzerTimeout=setTimeout(function(){b.analyzeImages(a)},.001)},b.prototype.onImageEvent=function(b,c,d){if(c||d){var e=new Image,f=a(e);c&&f.one("load",function(){f.off("load error"),c(e)}),d&&f.one("error",function(){f.off("load error"),d(e)}),e.src=b}},b.prototype.init=function(){var b=!1,c=!1,d=this;a.each(this.entries,function(e,f){var g=a(f),h=d.imgFromEntry(g);if(g.addClass("jg-entry"),g.data("jg.loaded")!==!0&&"skipped"!==g.data("jg.loaded"))if(null!==d.settings.rel&&g.attr("rel",d.settings.rel),null!==d.settings.target&&g.attr("target",d.settings.target),null!==h){var i=d.extractImgSrcFromImage(h);if(h.attr("src",i),d.settings.waitThumbnailsLoad===!1){var j=parseFloat(h.attr("width")),k=parseFloat(h.attr("height"));if(!isNaN(j)&&!isNaN(k))return g.data("jg.width",j),g.data("jg.height",k),g.data("jg.loaded","skipped"),c=!0,d.startImgAnalyzer(!1),!0}g.data("jg.loaded",!1),b=!0,d.isSpinnerActive()||d.startLoadingSpinnerAnimation(),d.onImageEvent(i,function(a){g.data("jg.width",a.width),g.data("jg.height",a.height),g.data("jg.loaded",!0),d.startImgAnalyzer(!1)},function(){g.data("jg.loaded","error"),d.startImgAnalyzer(!1)})}else g.data("jg.loaded",!0),g.data("jg.width",g.width()|parseFloat(g.css("width"))|1),g.data("jg.height",g.height()|parseFloat(g.css("height"))|1)}),b||c||this.startImgAnalyzer(!1),this.checkWidth()},b.prototype.checkOrConvertNumber=function(b,c){if("string"===a.type(b[c])&&(b[c]=parseFloat(b[c])),"number"!==a.type(b[c]))throw c+" must be a number";if(isNaN(b[c]))throw"invalid number for "+c},b.prototype.checkSizeRangesSuffixes=function(){if("object"!==a.type(this.settings.sizeRangeSuffixes))throw"sizeRangeSuffixes must be defined and must be an object";var b=[];for(var c in this.settings.sizeRangeSuffixes)this.settings.sizeRangeSuffixes.hasOwnProperty(c)&&b.push(c);for(var d={0:""},e=0;e0&&b.value1)throw"justifyThreshold must be in the interval [0,1]";if("boolean"!==a.type(this.settings.cssAnimation))throw"cssAnimation must be a boolean";if("boolean"!==a.type(this.settings.captions))throw"captions must be a boolean";if(this.checkOrConvertNumber(this.settings.captionSettings,"animationDuration"),this.checkOrConvertNumber(this.settings.captionSettings,"visibleOpacity"),this.settings.captionSettings.visibleOpacity<0||this.settings.captionSettings.visibleOpacity>1)throw"captionSettings.visibleOpacity must be in the interval [0, 1]";if(this.checkOrConvertNumber(this.settings.captionSettings,"nonVisibleOpacity"),this.settings.captionSettings.nonVisibleOpacity<0||this.settings.captionSettings.nonVisibleOpacity>1)throw"captionSettings.nonVisibleOpacity must be in the interval [0, 1]";if("boolean"!==a.type(this.settings.fixedHeight))throw"fixedHeight must be a boolean";if(this.checkOrConvertNumber(this.settings,"imagesAnimationDuration"),this.checkOrConvertNumber(this.settings,"refreshTime"),this.checkOrConvertNumber(this.settings,"refreshSensitivity"),"boolean"!==a.type(this.settings.randomize))throw"randomize must be a boolean";if("string"!==a.type(this.settings.selector))throw"selector must be a string";if(this.settings.sort!==!1&&!a.isFunction(this.settings.sort))throw"sort must be false or a comparison function";if(this.settings.filter!==!1&&!a.isFunction(this.settings.filter)&&"string"!==a.type(this.settings.filter))throw"filter must be false, a string or a filter function"},b.prototype.retrieveSuffixRanges=function(){var a=[];for(var b in this.settings.sizeRangeSuffixes)this.settings.sizeRangeSuffixes.hasOwnProperty(b)&&a.push(parseInt(b,10));return a.sort(function(a,b){return a>b?1:b>a?-1:0}),a},b.prototype.updateSettings=function(b){this.settings=a.extend({},this.settings,b),this.checkSettings(),this.border=this.settings.border>=0?this.settings.border:this.settings.margins,this.maxRowHeight=this.retrieveMaxRowHeight(),this.suffixRanges=this.retrieveSuffixRanges()},a.fn.justifiedGallery=function(c){return this.each(function(d,e){var f=a(e);f.addClass("justified-gallery");var g=f.data("jg.controller");if("undefined"==typeof g){if("undefined"!=typeof c&&null!==c&&"object"!==a.type(c)){if("destroy"===c)return;throw"The argument must be an object"}g=new b(f,a.extend({},a.fn.justifiedGallery.defaults,c)),f.data("jg.controller",g)}else if("norewind"===c);else{if("destroy"===c)return void g.destroy();g.updateSettings(c),g.rewind()}g.updateEntries("norewind"===c)&&g.init()})},a.fn.justifiedGallery.defaults={sizeRangeSuffixes:{},thumbnailPath:void 0,rowHeight:120,maxRowHeight:-1,margins:1,border:-1,lastRow:"nojustify",justifyThreshold:.75,fixedHeight:!1,waitThumbnailsLoad:!0,captions:!0,cssAnimation:!1,imagesAnimationDuration:500,captionSettings:{animationDuration:500,visibleOpacity:.7,nonVisibleOpacity:0},rel:null,target:null,extension:/\.[^.\\/]+$/,refreshTime:200,refreshSensitivity:0,randomize:!1,sort:!1,filter:!1,selector:"> a, > div:not(.spinner)"}}(jQuery); \ No newline at end of file + +!function(e){"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof module&&module.exports?module.exports=function(t,i){return void 0===i&&(i="undefined"!=typeof window?require("jquery"):require("jquery")(t)),e(i),i}:e(jQuery)}(function(l){var r=function(t,i){this.settings=i,this.checkSettings(),this.imgAnalyzerTimeout=null,this.entries=null,this.buildingRow={entriesBuff:[],width:0,height:0,aspectRatio:0},this.lastFetchedEntry=null,this.lastAnalyzedIndex=-1,this.yield={every:2,flushed:0},this.border=0<=i.border?i.border:i.margins,this.maxRowHeight=this.retrieveMaxRowHeight(),this.suffixRanges=this.retrieveSuffixRanges(),this.offY=this.border,this.rows=0,this.spinner={phase:0,timeSlot:150,$el:l('
    '),intervalId:null},this.scrollBarOn=!1,this.checkWidthIntervalId=null,this.galleryWidth=t.width(),this.$gallery=t};r.prototype.getSuffix=function(t,i){var e,s;for(e=i .jg-caption");return 0===i.length?null:i},r.prototype.displayEntry=function(t,i,e,s,n,r){t.width(s),t.height(r),t.css("top",e),t.css("left",i);var o=this.imgFromEntry(t);if(null!==o){o.css("width",s),o.css("height",n),o.css("margin-left",-s/2),o.css("margin-top",-n/2);var a=o.data("jg.src");if(a){a=this.newSrc(a,s,n,o[0]),o.one("error",function(){this.resetImgSrc(o)});var h=function(){o.attr("src",a)};"skipped"===t.data("jg.loaded")&&a?this.onImageEvent(a,function(){this.showImg(t,h),t.data("jg.loaded",!0)}.bind(this)):this.showImg(t,h)}}else this.showImg(t);this.displayEntryCaption(t)},r.prototype.displayEntryCaption=function(t){var i=this.imgFromEntry(t);if(null!==i&&this.settings.captions){var e=this.captionFromEntry(t);if(null===e){var s=i.attr("alt");this.isValidCaption(s)||(s=t.attr("title")),this.isValidCaption(s)&&(e=l('
    ').text(s),t.append(e),t.data("jg.createdCaption",!0))}null!==e&&(this.settings.cssAnimation||e.stop().fadeTo(0,this.settings.captionSettings.nonVisibleOpacity),this.addCaptionEventsHandlers(t))}else this.removeCaptionEventsHandlers(t)},r.prototype.isValidCaption=function(t){return void 0!==t&&0this.settings.justifyThreshold;if(i||t&&"hide"===this.settings.lastRow&&!d){for(e=0;e img, > a > img").fadeTo(0,0));return-1}for(t&&!d&&"justify"!==this.settings.lastRow&&"hide"!==this.settings.lastRow&&(a=!1,0this.settings.justifyThreshold)),e=0;ethis.settings.refreshSensitivity&&(this.galleryWidth=t,this.rewind(),this.rememberGalleryHeight(),this.startImgAnalyzer(!0))}},this),this.settings.refreshTime)},r.prototype.isSpinnerActive=function(){return null!==this.spinner.intervalId},r.prototype.getSpinnerHeight=function(){return this.spinner.$el.innerHeight()},r.prototype.stopLoadingSpinnerAnimation=function(){clearInterval(this.spinner.intervalId),this.spinner.intervalId=null,this.setGalleryTempHeight(this.$gallery.height()-this.getSpinnerHeight()),this.spinner.$el.detach()},r.prototype.startLoadingSpinnerAnimation=function(){var t=this.spinner,i=t.$el.find("span");clearInterval(t.intervalId),this.$gallery.append(t.$el),this.setGalleryTempHeight(this.offY+this.buildingRow.height+this.getSpinnerHeight()),t.intervalId=setInterval(function(){t.phase=this.yield.every))return void this.startImgAnalyzer(t)}else if("error"!==e.data("jg.loaded"))return}0 img, > a > img, > svg, > a > svg",triggerEvent:function(t){this.$gallery.trigger(t)}},l.fn.justifiedGallery=function(n){return this.each(function(t,i){var e=l(i);e.addClass("justified-gallery");var s=e.data("jg.controller");if(void 0===s){if(null!=n&&"object"!==l.type(n)){if("destroy"===n)return;throw"The argument must be an object"}s=new r(e,l.extend({},r.prototype.defaults,n)),e.data("jg.controller",s)}else if("norewind"===n);else{if("destroy"===n)return void s.destroy();s.updateSettings(n),s.rewind()}s.updateEntries("norewind"===n)&&s.init()})}}); \ No newline at end of file diff --git a/view/theme/frio/frameworks/justifiedGallery/justifiedGallery.min.css b/view/theme/frio/frameworks/justifiedGallery/justifiedGallery.min.css index 09ae4e1f0..1f2eb8ef8 100644 --- a/view/theme/frio/frameworks/justifiedGallery/justifiedGallery.min.css +++ b/view/theme/frio/frameworks/justifiedGallery/justifiedGallery.min.css @@ -1,7 +1,110 @@ -/*! - * Justified Gallery - v3.6.1 - * http://miromannino.github.io/Justified-Gallery/ - * Copyright (c) 2015 Miro Mannino - * Licensed under the MIT license. - */ -@-webkit-keyframes justified-gallery-show-caption-animation{from{opacity:0}to{opacity:.7}}@-moz-keyframes justified-gallery-show-caption-animation{from{opacity:0}to{opacity:.7}}@-o-keyframes justified-gallery-show-caption-animation{from{opacity:0}to{opacity:.7}}@keyframes justified-gallery-show-caption-animation{from{opacity:0}to{opacity:.7}}@-webkit-keyframes justified-gallery-show-entry-animation{from{opacity:0}to{opacity:1}}@-moz-keyframes justified-gallery-show-entry-animation{from{opacity:0}to{opacity:1}}@-o-keyframes justified-gallery-show-entry-animation{from{opacity:0}to{opacity:1}}@keyframes justified-gallery-show-entry-animation{from{opacity:0}to{opacity:1}}.justified-gallery{width:100%;position:relative;overflow:hidden}.justified-gallery>a,.justified-gallery>div{position:absolute;display:inline-block;overflow:hidden;opacity:0;filter:alpha(opacity=0)}.justified-gallery>a>img,.justified-gallery>div>img,.justified-gallery>a>a>img,.justified-gallery>div>a>img{position:absolute;top:50%;left:50%;margin:0;padding:0;border:0}.justified-gallery>a>.caption,.justified-gallery>div>.caption{display:none;position:absolute;bottom:0;padding:5px;background-color:#000;left:0;right:0;margin:0;color:#fff;font-size:12px;font-weight:300;font-family:sans-serif}.justified-gallery>a>.caption.caption-visible,.justified-gallery>div>.caption.caption-visible{display:initial;opacity:.7;filter:"alpha(opacity=70)";-webkit-animation:justified-gallery-show-caption-animation 500ms 0 ease;-moz-animation:justified-gallery-show-caption-animation 500ms 0 ease;-ms-animation:justified-gallery-show-caption-animation 500ms 0 ease}.justified-gallery>.entry-visible{opacity:1;filter:alpha(opacity=100);-webkit-animation:justified-gallery-show-entry-animation 500ms 0 ease;-moz-animation:justified-gallery-show-entry-animation 500ms 0 ease;-ms-animation:justified-gallery-show-entry-animation 500ms 0 ease}.justified-gallery>.jg-filtered{display:none}.justified-gallery>.spinner{position:absolute;bottom:0;margin-left:-24px;padding:10px 0;left:50%;opacity:initial;filter:initial;overflow:initial}.justified-gallery>.spinner>span{display:inline-block;opacity:0;filter:alpha(opacity=0);width:8px;height:8px;margin:0 4px;background-color:#000;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px} \ No newline at end of file +/*! + * justifiedGallery - v3.8.1 + * http://miromannino.github.io/Justified-Gallery/ + * Copyright (c) 2023 Miro Mannino + * Licensed under the MIT license. + */ +.justified-gallery { + width: 100%; + position: relative; + overflow: hidden; +} +.justified-gallery > a, +.justified-gallery > div, +.justified-gallery > figure { + position: absolute; + display: inline-block; + overflow: hidden; + /* background: #888888; To have gray placeholders while the gallery is loading with waitThumbnailsLoad = false */ + filter: "alpha(opacity=10)"; + opacity: 0.1; + margin: 0; + padding: 0; +} +.justified-gallery > a > img, +.justified-gallery > div > img, +.justified-gallery > figure > img, +.justified-gallery > a > a > img, +.justified-gallery > div > a > img, +.justified-gallery > figure > a > img, +.justified-gallery > a > svg, +.justified-gallery > div > svg, +.justified-gallery > figure > svg, +.justified-gallery > a > a > svg, +.justified-gallery > div > a > svg, +.justified-gallery > figure > a > svg { + position: absolute; + top: 50%; + left: 50%; + margin: 0; + padding: 0; + border: none; + filter: "alpha(opacity=0)"; + opacity: 0; +} +.justified-gallery > a > .jg-caption, +.justified-gallery > div > .jg-caption, +.justified-gallery > figure > .jg-caption { + display: none; + position: absolute; + bottom: 0; + padding: 5px; + background-color: #000000; + left: 0; + right: 0; + margin: 0; + color: white; + font-size: 12px; + font-weight: 300; + font-family: sans-serif; +} +.justified-gallery > a > .jg-caption.jg-caption-visible, +.justified-gallery > div > .jg-caption.jg-caption-visible, +.justified-gallery > figure > .jg-caption.jg-caption-visible { + display: initial; + filter: "alpha(opacity=70)"; + opacity: 0.7; + -webkit-transition: opacity 500ms ease-in; + -moz-transition: opacity 500ms ease-in; + -o-transition: opacity 500ms ease-in; + transition: opacity 500ms ease-in; +} +.justified-gallery > .jg-entry-visible { + filter: "alpha(opacity=100)"; + opacity: 1; + background: none; +} +.justified-gallery > .jg-entry-visible > img, +.justified-gallery > .jg-entry-visible > a > img, +.justified-gallery > .jg-entry-visible > svg, +.justified-gallery > .jg-entry-visible > a > svg { + filter: "alpha(opacity=100)"; + opacity: 1; + -webkit-transition: opacity 500ms ease-in; + -moz-transition: opacity 500ms ease-in; + -o-transition: opacity 500ms ease-in; + transition: opacity 500ms ease-in; +} +.justified-gallery > .jg-filtered { + display: none; +} +.justified-gallery > .jg-spinner { + position: absolute; + bottom: 0; + margin-left: -24px; + padding: 10px 0 10px 0; + left: 50%; + filter: "alpha(opacity=100)"; + opacity: 1; + overflow: initial; +} +.justified-gallery > .jg-spinner > span { + display: inline-block; + filter: "alpha(opacity=0)"; + opacity: 0; + width: 8px; + height: 8px; + margin: 0 4px 0 4px; + background-color: #000; + border-radius: 6px; +} diff --git a/view/theme/frio/js/filebrowser.js b/view/theme/frio/js/filebrowser.js deleted file mode 100644 index 359c6636e..000000000 --- a/view/theme/frio/js/filebrowser.js +++ /dev/null @@ -1,263 +0,0 @@ -// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later -/** - * Filebrowser - Friendica Communications Server - * - * Copyright (c) 2010-2021, the Friendica project - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This code handle user interaction for image/file upload/browser dialog. - * Is loaded from filebrowser_plain.tpl - * - * To load filebrowser in colorbox, call - * - * Dialog.doImageBrowser(eventname, id); - * - * or - * - * Dialog.doFileBrowser(eventname, id); - * - * where: - * - * eventname: event name to catch return value - * id: id returned to event handler - * - * When user select an item, an event in fired in parent page, on body element - * The event is named - * - * fbrowser..[] - * - * will be one of "image" or "file", and the event handler will - * get the following params: - * - * filemane: filename of item choosed by user - * embed: bbcode to embed element into posts - * id: id from caller code - * - * example: - * - * // open dialog for select an image for a textarea with id "myeditor" - * var id="myeditor"; - * Dialog.doImageBrowser("example", id); - * - * // setup event handler to get user selection - * $("body").on("fbrowser.image.example", function(event, filename, bbcode, id) { - * // close colorbox - * $.colorbox.close(); - * // replace textxarea text with bbcode - * $(id).value = bbcode; - * }); - **/ - -/* - * IMPORTANT - * - * This is a modified version to work with - * the frio theme.and bootstrap modals - * - * The origninal file is under: - * js/filebrowser.js - * - */ - -var FileBrowser = { - nickname: "", - type: "", - event: "", - folder: "", - id: null, - - init: function (nickname, type, hash) { - FileBrowser.nickname = nickname; - FileBrowser.type = type; - FileBrowser.event = "fbrowser." + type; - - if (hash !== "") { - var h = hash.replace("#", ""); - var destination = h.split("-")[0]; - FileBrowser.id = h.split("-")[1]; - FileBrowser.event = FileBrowser.event + "." + destination; - if (destination === "comment") { - // Get the comment textimput field - var commentElm = document.getElementById("comment-edit-text-" + FileBrowser.id); - } - } - - console.log("FileBrowser: " + nickname, type, FileBrowser.event, FileBrowser.id); - - FileBrowser.postLoad(); - - $(".error .close").on("click", function (e) { - e.preventDefault(); - $(".error").addClass("hidden"); - }); - - // Click on album link - $(".fbrowser").on("click", ".folders button, .path button", function (e) { - e.preventDefault(); - var url = - baseurl + - "/fbrowser/" + - FileBrowser.type + - "/" + - encodeURIComponent(this.dataset.folder) + - "?mode=none&theme=frio"; - FileBrowser.folder = this.dataset.folder; - - FileBrowser.loadContent(url); - }); - - //Embed on click - $(".fbrowser").on("click", ".photo-album-photo-link", function (e) { - e.preventDefault(); - - var embed = ""; - if (FileBrowser.type === "image") { - embed = "[url=" + this.dataset.link + "][img=" + this.dataset.img + "]" + this.dataset.alt + "[/img][/url]"; - } - if (FileBrowser.type === "file") { - // attachment links are "baseurl/attach/id"; we need id - embed = "[attachment]" + this.dataset.link.split("/").pop() + "[/attachment]"; - } - - // Delete prefilled Text of the comment input - // Note: not the best solution but function commentOpenUI don't - // work as expected (we need a way to wait until commentOpenUI would be finished). - // As for now we insert pieces of this function here - if (commentElm !== null && typeof commentElm !== "undefined") { - if (commentElm.value === "") { - $("#comment-edit-text-" + FileBrowser.id) - .addClass("comment-edit-text-full") - .removeClass("comment-edit-text-empty"); - $("#comment-edit-submit-wrapper-" + FileBrowser.id).show(); - $("#comment-edit-text-" + FileBrowser.id).attr("tabindex", "9"); - $("#comment-edit-submit-" + FileBrowser.id).attr("tabindex", "10"); - } - } - - console.log(FileBrowser.event, this.dataset.filename, embed, FileBrowser.id); - - $("body").trigger(FileBrowser.event, [this.dataset.filename, embed, FileBrowser.id, this.dataset.img]); - - // Close model - $("#modal").modal("hide"); - // Update autosize for this textarea - autosize.update($(".text-autosize")); - }); - - // EventListener for switching between image and file mode - $(".fbrowser").on("click", ".fbswitcher .btn", function (e) { - e.preventDefault(); - FileBrowser.type = this.getAttribute("data-mode"); - $(".fbrowser") - .removeClass() - .addClass("fbrowser " + FileBrowser.type); - url = baseurl + "/fbrowser/" + FileBrowser.type + "?mode=none&theme=frio"; - - FileBrowser.loadContent(url); - }); - }, - - // Initialize the AjaxUpload for the upload buttons - uploadButtons: function () { - if ($("#upload-image").length) { - //AjaxUpload for images - var image_uploader = new window.AjaxUpload("upload-image", { - action: - "wall_upload/" + - FileBrowser.nickname + - "?response=json&album=" + - encodeURIComponent(FileBrowser.folder), - name: "userfile", - responseType: "json", - onSubmit: function (file, ext) { - $(".fbrowser-content").hide(); - $(".fbrowser .profile-rotator-wrapper").show(); - $(".error").addClass("hidden"); - }, - onComplete: function (file, response) { - if (response["error"] != undefined) { - $(".error span").html(response["error"]); - $(".error").removeClass("hidden"); - $(".fbrowser .profile-rotator-wrapper").hide(); - $(".fbrowser-content").show(); - return; - } - - // load new content to fbrowser window - FileBrowser.loadContent( - baseurl + - "/fbrowser/" + - FileBrowser.type + - "/" + - encodeURIComponent(FileBrowser.folder) + - "?mode=none&theme=frio", - ); - }, - }); - } - - if ($("#upload-file").length) { - //AjaxUpload for files - var file_uploader = new window.AjaxUpload("upload-file", { - action: "wall_attach/" + FileBrowser.nickname + "?response=json", - name: "userfile", - onSubmit: function (file, ext) { - $(".fbrowser-content").hide(); - $(".fbrowser .profile-rotator-wrapper").show(); - $(".error").addClass("hidden"); - }, - onComplete: function (file, response) { - if (response["error"] != undefined) { - $(".error span").html(response["error"]); - $(".error").removeClass("hidden"); - $("#profile-rotator").hide(); - $(".fbrowser-content").show(); - return; - } - - var url = baseurl + "/fbrowser/" + FileBrowser.type + "?mode=none&theme=frio"; - // Load new content to fbrowser window - FileBrowser.loadContent(url); - }, - }); - } - }, - - // Stuff which should be executed if ne content was loaded - postLoad: function () { - FileBrowser.initGallery(); - $(".fbrowser .fbswitcher .btn").removeClass("active"); - $(".fbrowser .fbswitcher [data-mode=" + FileBrowser.type + "]").addClass("active"); - // We need to add the AjaxUpload to the button - FileBrowser.uploadButtons(); - }, - - // Load new content (e.g. change photo album) - loadContent: function (url) { - $(".fbrowser-content").hide(); - $(".fbrowser .profile-rotator-wrapper").show(); - - // load new content to fbrowser window - $(".fbrowser").load(url, function (responseText, textStatus) { - $(".profile-rotator-wrapper").hide(); - if (textStatus === "success") { - $(".fbrowser_content").show(); - FileBrowser.postLoad(); - } - }); - }, - - // Initialize justified Gallery - initGallery: function () { - $(".fbrowser.image .fbrowser-content-container").justifiedGallery({ - rowHeight: 80, - margins: 4, - border: 0, - }); - }, -}; -// @license-end diff --git a/view/theme/frio/js/hovercard.js b/view/theme/frio/js/hovercard.js index 0dff61759..393362894 100644 --- a/view/theme/frio/js/hovercard.js +++ b/view/theme/frio/js/hovercard.js @@ -42,7 +42,7 @@ $(document).ready(function () { // hover cards should be removed very easily, e.g. when any of these events happens $body.on("mouseleave touchstart scroll mousedown submit keydown", function (e) { - // remove hover card only for desktiop user, since on mobile we open the hovercards + // remove hover card only for desktop user, since on mobile we open the hovercards // by click event insteadof hover removeAllHovercards(e, new Date().getTime()); }); @@ -130,7 +130,7 @@ function openHovercard(targetElement, contactUrl, timeNow) { let title = targetElement.attr("title"); targetElement.attr({ "data-orig-title": title, title: "" }); - // get an additional data atribute if the card is active + // get an additional data attribute if the card is active targetElement.attr("data-hover-card-active", timeNow); // get the whole html content of the hover card and // push it to the bootstrap popover @@ -140,7 +140,7 @@ function openHovercard(targetElement, contactUrl, timeNow) { .popover({ html: true, placement: function () { - // Calculate the placement of the the hovercard (if top or bottom) + // Calculate the placement of the hovercard (if top or bottom) // The placement depence on the distance between window top and the element // which triggers the hover-card let get_position = $(targetElement).offset().top - $(window).scrollTop(); diff --git a/view/theme/frio/js/jquery.tools.min.js b/view/theme/frio/js/jquery.tools.min.js new file mode 100644 index 000000000..4a44fb7c4 --- /dev/null +++ b/view/theme/frio/js/jquery.tools.min.js @@ -0,0 +1,14 @@ +// @license magnet:?xt=urn:btih:e95b018ef3580986a04669f1b5879592219e2a7a&dn=public-domain.txt Public Domains +/*! + * jQuery Tools v1.2.7 - The missing UI library for the Web + * + * rangeinput/rangeinput.js + * + * NO COPYRIGHTS OR LICENSES. DO WHAT YOU LIKE. + * + * http://flowplayer.org/tools/ + * + */ +(function(a){a.tools=a.tools||{version:"v1.2.7"};var b;b=a.tools.rangeinput={conf:{min:0,max:100,step:"any",steps:0,value:0,precision:undefined,vertical:0,keyboard:!0,progress:!1,speed:100,css:{input:"range",slider:"slider",progress:"progress",handle:"handle"}}};var c,d;a.fn.drag=function(b){document.ondragstart=function(){return!1},b=a.extend({x:!0,y:!0,drag:!0},b),c=c||a(document).on("mousedown mouseup",function(e){var f=a(e.target);if(e.type=="mousedown"&&f.data("drag")){var g=f.position(),h=e.pageX-g.left,i=e.pageY-g.top,j=!0;c.on("mousemove.drag",function(a){var c=a.pageX-h,e=a.pageY-i,g={};b.x&&(g.left=c),b.y&&(g.top=e),j&&(f.trigger("dragStart"),j=!1),b.drag&&f.css(g),f.trigger("drag",[e,c]),d=f}),e.preventDefault()}else try{d&&d.trigger("dragEnd")}finally{c.off("mousemove.drag"),d=null}});return this.data("drag",!0)};function e(a,b){var c=Math.pow(10,b);return Math.round(a*c)/c}function f(a,b){var c=parseInt(a.css(b),10);if(c)return c;var d=a[0].currentStyle;return d&&d.width&&parseInt(d.width,10)}function g(a){var b=a.data("events");return b&&b.onSlide}function h(b,c){var d=this,h=c.css,i=a("
    ").data("rangeinput",d),j,k,l,m,n;b.before(i);var o=i.addClass(h.slider).find("a").addClass(h.handle),p=i.find("div").addClass(h.progress);a.each("min,max,step,value".split(","),function(a,d){var e=b.attr(d);parseFloat(e)&&(c[d]=parseFloat(e,10))});var q=c.max-c.min,r=c.step=="any"?0:c.step,s=c.precision;s===undefined&&(s=r.toString().split("."),s=s.length===2?s[1].length:0);if(b.attr("type")=="range"){var t=b.clone().wrap("
    ").parent().html(),u=a(t.replace(/type/i,"type=text data-orig-type"));u.val(c.value),b.replaceWith(u),b=u}b.addClass(h.input);var v=a(d).add(b),w=!0;function x(a,f,g,h){g===undefined?g=f/m*q:h&&(g-=c.min),r&&(g=Math.round(g/r)*r);if(f===undefined||r)f=g*m/q;if(isNaN(g))return d;f=Math.max(0,Math.min(f,m)),g=f/m*q;if(h||!j)g+=c.min;j&&(h?f=m-f:g=c.max-g),g=e(g,s);var i=a.type=="click";if(w&&k!==undefined&&!i){a.type="onSlide",v.trigger(a,[g,f]);if(a.isDefaultPrevented())return d}var l=i?c.speed:0,t=i?function(){a.type="change",v.trigger(a,[g])}:null;j?(o.animate({top:f},l,t),c.progress&&p.animate({height:m-f+o.height()/2},l)):(o.animate({left:f},l,t),c.progress&&p.animate({width:f+o.width()/2},l)),k=g,n=f,b.val(g);return d}a.extend(d,{getValue:function(){return k},setValue:function(b,c){y();return x(c||a.Event("api"),undefined,b,!0)},getConf:function(){return c},getProgress:function(){return p},getHandle:function(){return o},getInput:function(){return b},step:function(b,e){e=e||a.Event();var f=c.step=="any"?1:c.step;d.setValue(k+f*(b||1),e)},stepUp:function(a){return d.step(a||1)},stepDown:function(a){return d.step(-a||-1)}}),a.each("onSlide,change".split(","),function(b,e){a.isFunction(c[e])&&a(d).on(e,c[e]),d[e]=function(b){b&&a(d).on(e,b);return d}}),o.drag({drag:!1}).on("dragStart",function(){y(),w=g(a(d))||g(b)}).on("drag",function(a,c,d){if(b.is(":disabled"))return!1;x(a,j?c:d)}).on("dragEnd",function(a){a.isDefaultPrevented()||(a.type="change",v.trigger(a,[k]))}).click(function(a){return a.preventDefault()}),i.click(function(a){if(b.is(":disabled")||a.target==o[0])return a.preventDefault();y();var c=j?o.height()/2:o.width()/2;x(a,j?m-l-c+a.pageY:a.pageX-l-c)}),c.keyboard&&b.keydown(function(c){if(!b.attr("readonly")){var e=c.keyCode,f=a([75,76,38,33,39]).index(e)!=-1,g=a([74,72,40,34,37]).index(e)!=-1;if((f||g)&&!(c.shiftKey||c.altKey||c.ctrlKey)){f?d.step(e==33?10:1,c):g&&d.step(e==34?-10:-1,c);return c.preventDefault()}}}),b.blur(function(b){var c=a(this).val();c!==k&&d.setValue(c,b)}),a.extend(b[0],{stepUp:d.stepUp,stepDown:d.stepDown});function y(){j=c.vertical||f(i,"height")>f(i,"width"),j?(m=f(i,"height")-f(o,"height"),l=i.offset().top+m):(m=f(i,"width")-f(o,"width"),l=i.offset().left)}function z(){y(),d.setValue(c.value!==undefined?c.value:c.min)}z(),m||a(window).load(z)}a.expr[":"].range=function(b){var c=b.getAttribute("type");return c&&c=="range"||a(b).filter("input").data("rangeinput")},a.fn.rangeinput=function(c){if(this.data("rangeinput"))return this;c=a.extend(!0,{},b.conf,c);var d;this.each(function(){var b=new h(a(this),a.extend(!0,{},c)),e=b.getInput().data("rangeinput",b);d=d?d.add(e):e});return d?d:this}})(jQuery); + +// @license-end diff --git a/view/theme/frio/js/mod_admin.js b/view/theme/frio/js/mod_admin.js index 1ea087c2c..b782df30d 100644 --- a/view/theme/frio/js/mod_admin.js +++ b/view/theme/frio/js/mod_admin.js @@ -1,6 +1,6 @@ // @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later /** - * Javascript for the admin module + * JavaScript for the admin module */ $(function () { let $body = $("body"); diff --git a/view/theme/frio/js/mod_circle.js b/view/theme/frio/js/mod_circle.js new file mode 100644 index 000000000..6d269e46a --- /dev/null +++ b/view/theme/frio/js/mod_circle.js @@ -0,0 +1,83 @@ +// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later + +/** + * @file view/theme/frio/js/mod_circle.js + * The javascript for the circle module + */ + +$(document).ready(function () { + // Add an event listeners on buttons for switching the contact list view + $("body").on("click", ".circle-list-switcher", function () { + switchCircleViewMode(this); + }); +}); + +/** + * Change the circle membership of the contacts and fetch the new grup list + * as html + * + * @param {int} gid The circle ID + * @param {int} cid The contact ID + * @param {string} sec_token The security token + * + * @returns {undefined} + */ +function circleChangeMember(gid, cid, sec_token) { + $("#contact-entry-wrapper-" + cid).fadeTo("fast", 0.33); + $(".tooltip").tooltip("hide"); + $("body").css("cursor", "wait"); + + $.get("circle/" + gid + "/" + cid + "?t=" + sec_token, function (data) { + // Insert the new circle member list + $("#circle-update-wrapper").html(data); + + // Apply the actual circle list view mode to the new + // circle list html + var activeMode = $(".circle-list-switcher.active"); + switchCircleViewMode(activeMode[0]); + + $("body").css("cursor", "auto"); + }); +} + +/** + * Change the circle list view mode + * + * @param {object} elm The button element of the view mode switcher + * @returns {undefined} + */ +function switchCircleViewMode(elm) { + // Remove the active class from circle list switcher buttons + $(".circle-list-switcher").removeClass("active"); + // And add it to the active button element + $(elm).addClass("active"); + + // Add or remove the css classes for the circle list with regard to the active view mode + if (elm.id === "circle-list-small") { + $("#contact-circle-list > li").addClass("shortmode col-lg-6 col-md-6 col-sm-6 col-xs-12"); + } else { + $("#contact-circle-list > li").removeClass("shortmode col-lg-6 col-md-6 col-sm-6 col-xs-12"); + } +} + +/** + * Filter the circle member list for contacts + * + * @returns {undefined} + */ +function filterList() { + const search = document.getElementById("contacts-search").value.toUpperCase(); + const li = document.querySelectorAll("#contact-circle-list>li"); + + for (let i = 0; i < li.length; i++) { + let foundInDisplayName = li[i].getElementsByClassName("media-heading")[0].firstChild.textContent.toUpperCase().indexOf(search) > -1; + let foundInAddr = li[i].getElementsByClassName("contact-entry-url")[0].textContent.toUpperCase().indexOf(search) > -1; + + if (foundInDisplayName || foundInAddr) { + li[i].style.display = ""; + } else { + li[i].style.display = "none"; + } + } +} +// @license-end diff --git a/view/theme/frio/js/mod_display.js b/view/theme/frio/js/mod_display.js index 907b0fa7e..16dfc7730 100644 --- a/view/theme/frio/js/mod_display.js +++ b/view/theme/frio/js/mod_display.js @@ -1,6 +1,6 @@ // @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later /** - * Javascript for the display module + * JavaScript for the display module */ // Catch the GUID from the URL diff --git a/view/theme/frio/js/mod_events.js b/view/theme/frio/js/mod_events.js index c1f22761c..c811760fb 100644 --- a/view/theme/frio/js/mod_events.js +++ b/view/theme/frio/js/mod_events.js @@ -22,7 +22,7 @@ $(document).ready(function () { week: aStr.week, day: aStr.day, }, - events: baseurl + moduleUrl + "/json/", + events: calendar_api, header: { left: "", // center: 'title', @@ -35,11 +35,11 @@ $(document).ready(function () { loading: function (isLoading, view) { if (!isLoading) { $("td.fc-day").dblclick(function () { - addToModal("/events/new?start=" + $(this).data("date")); + addToModal("calendar/event/new?start=" + $(this).data("date")); }); } }, - defaultView: "month", + defaultView: aStr.defaultView, aspectRatio: 1, eventRender: function (event, element, view) { switch (view.name) { @@ -103,18 +103,6 @@ $(document).ready(function () { }, }); - // center on date - var args = location.href.replace(baseurl, "").split("/"); - if (modparams == 2) { - if (args.length >= 5) { - $("#events-calendar").fullCalendar("gotoDate", args[3], args[4] - 1); - } - } else { - if (args.length >= 4) { - $("#events-calendar").fullCalendar("gotoDate", args[2], args[3] - 1); - } - } - // echo the title var view = $("#events-calendar").fullCalendar("getView"); $("#fc-title").text(view.title); @@ -148,11 +136,11 @@ $(document).ready(function () { .trigger("change"); // JS for the permission section. - $("#contact_allow, #contact_deny, #group_allow, #group_deny") + $("#contact_allow, #contact_deny, #circle_allow, #circle_deny") .change(function () { var selstr; $( - "#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected", + "#contact_allow option:selected, #contact_deny option:selected, #circle_allow option:selected, #circle_deny option:selected", ).each(function () { selstr = $(this).html(); $("#jot-public").hide(); @@ -186,7 +174,7 @@ $(document).ready(function () { // loads the event into a modal function showEvent(eventid) { - addToModal(baseurl + moduleUrl + "/?id=" + eventid); + addToModal(event_api + '/' + eventid); } function changeView(action, viewName) { @@ -278,9 +266,9 @@ function eventHoverHtmlContent(event) { // Get only template data if there exists location data if (event.location) { var eventLocationText = htmlToText(event.location); - // Get the the html template for formatting the location + // Get the html template for formatting the location var eventLocationTemplate = eventHoverLocationTemplate(); - // Format the event location data according to the the event location + // Format the event location data according to the event location // template eventLocation = eventLocationTemplate.format(eventLocationText); } @@ -307,12 +295,12 @@ function eventHoverHtmlContent(event) { return formatted; } -// transform the the list view event element into formatted html +// transform the list view event element into formatted html function formatListViewEvent(event) { // The basic template for list view var template = '
    {{$name}} {{$website}} {{$created_at}}
    {{$app.name}} {{$app.website}} {{$app.created_at}}  + +
    \ -
    \ +
    \
    \
    {0}
    \
    \ @@ -329,7 +317,7 @@ function formatListViewEvent(event) { // event-edit section. function doEventPreview() { $("#event-edit-preview").val(1); - $.post("events", $("#event-edit-form").serialize(), function (data) { + $.post("calendar/api/create", $("#event-edit-form").serialize(), function (data) { $("#event-preview").append(data); }); $("#event-edit-preview").val(0); diff --git a/view/theme/frio/js/mod_group.js b/view/theme/frio/js/mod_group.js deleted file mode 100644 index 82687bec5..000000000 --- a/view/theme/frio/js/mod_group.js +++ /dev/null @@ -1,89 +0,0 @@ -// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later - -/** - * @file view/theme/frio/js/mod_group.js - * The javascript for the group module - */ - -$(document).ready(function () { - // Add an event listeners on buttons for switching the contact list view - $("body").on("click", ".group-list-switcher", function () { - switchGroupViewMode(this); - }); -}); - -/** - * Change the group membership of the contacts and fetch the new grup list - * as html - * - * @param {int} gid The group ID - * @param {int} cid The contact ID - * @param {string} sec_token The security token - * - * @returns {undefined} - */ -function groupChangeMember(gid, cid, sec_token) { - $("#contact-entry-wrapper-" + cid).fadeTo("fast", 0.33); - $(".tooltip").tooltip("hide"); - $("body").css("cursor", "wait"); - - $.get("group/" + gid + "/" + cid + "?t=" + sec_token, function (data) { - // Insert the new group member list - $("#group-update-wrapper").html(data); - - // Apply the actual gropu list view mode to the new - // group list html - var activeMode = $(".group-list-switcher.active"); - switchGroupViewMode(activeMode[0]); - - $("body").css("cursor", "auto"); - }); -} - -/** - * Change the group list view mode - * - * @param {object} elm The button element of the view mode switcher - * @returns {undefined} - */ -function switchGroupViewMode(elm) { - // Remove the active class from group list switcher buttons - $(".group-list-switcher").removeClass("active"); - // And add it to the active button element - $(elm).addClass("active"); - - // Add or remove the css classes for the group list with regard to the active view mode - if (elm.id === "group-list-small") { - $("#contact-group-list > li").addClass("shortmode col-lg-6 col-md-6 col-sm-6 col-xs-12"); - } else { - $("#contact-group-list > li").removeClass("shortmode col-lg-6 col-md-6 col-sm-6 col-xs-12"); - } -} - -/** - * Filter the group member list for contacts - * - * @returns {undefined} - */ -function filterList() { - // Declare variables - var input, filter, ul, li, a, i; - input = document.getElementById("contacts-search"); - filter = input.value.toUpperCase(); - li = document.querySelectorAll("#contact-group-list>li"); - - // Loop through all list items, and hide those who don't match the search query - for (i = 0; i < li.length; i++) { - // Get the heading element - var mh = li[i].getElementsByClassName("media-heading")[0]; - // The first child of the heading element should contain - // the text which we want to filter - a = mh.firstChild; - if (a.innerHTML.toUpperCase().indexOf(filter) > -1) { - li[i].style.display = ""; - } else { - li[i].style.display = "none"; - } - } -} -// @license-end diff --git a/view/theme/frio/js/mod_notifications.js b/view/theme/frio/js/mod_notifications.js index 8ab1bccb7..c724995e8 100644 --- a/view/theme/frio/js/mod_notifications.js +++ b/view/theme/frio/js/mod_notifications.js @@ -1,7 +1,7 @@ // @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later /** - * Javascript for the notifications module + * JavaScript for the notifications module */ // Catch the intro ID from the URL diff --git a/view/theme/frio/js/mod_photos.js b/view/theme/frio/js/mod_photos.js index a0e5498c2..165b422ba 100644 --- a/view/theme/frio/js/mod_photos.js +++ b/view/theme/frio/js/mod_photos.js @@ -1,11 +1,11 @@ // @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later $(document).ready(function () { - $("#contact_allow, #contact_deny, #group_allow, #group_deny") + $("#contact_allow, #contact_deny, #circle_allow, #circle_deny") .change(function () { var selstr; $( - "#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected", + "#contact_allow option:selected, #contact_deny option:selected, #circle_allow option:selected, #circle_deny option:selected", ).each(function () { selstr = $(this).html(); $("#jot-perms-icon").removeClass("unlock").addClass("lock"); @@ -42,7 +42,7 @@ $(window).load(function () { var pheight = $("#photo-photo img").height(); var pwidth = $("#photo-photo img").width(); - // Append the diminsons of the picture to the css of the photo-photo div + // Append the dimensions of the picture to the css of the photo-photo div // we do this to make it possible to have overlay navigation buttons for the photo $("#photo-photo").css({ width: pwidth, diff --git a/view/theme/frio/js/modal.js b/view/theme/frio/js/modal.js index 75c4d96e4..e6e1e6512 100644 --- a/view/theme/frio/js/modal.js +++ b/view/theme/frio/js/modal.js @@ -23,39 +23,12 @@ $(document).ready(function () { $("#jot-content").append(jotcache); // Clear the jotcache. jotcache = ""; - // Destroy the attachment linkPreviw for Jot. + // Destroy the attachment linkPreview for Jot. if (typeof linkPreview === "object") { linkPreview.destroy(); } }); - // Add Colorbox for viewing Network page images. - //var cBoxClasses = new Array(); - $("body").on("click", ".wall-item-body a img", function () { - var aElem = $(this).parent(); - var imgHref = aElem.attr("href"); - - // We need to make sure we only put a Colorbox on links to Friendica images. - // We'll try to do this by looking for links of the form - // .../photo/ab803d8eg08daf85023adfec08 (with nothing more following), in hopes - // that that will be unique enough. - if (imgHref.match(/\/photo\/[a-fA-F0-9]+(-[0-9]\.[\w]+?)?$/)) { - // Add a unique class to all the images of a certain post, to allow scrolling through - var cBoxClass = $(this).closest(".wall-item-body").attr("id") + "-lightbox"; - $(this).addClass(cBoxClass); - - // if( $.inArray(cBoxClass, cBoxClasses) < 0 ) { - // cBoxClasses.push(cBoxClass); - // } - - aElem.colorbox({ - maxHeight: "90%", - photo: true, // Colorbox doesn't recognize a URL that don't end in .jpg, etc. as a photo. - rel: cBoxClass, //$(this).attr("class").match(/wall-item-body-[\d]+-lightbox/)[0]. - }); - } - }); - // Navbar login. $("body").on("click", "#nav-login", function (e) { e.preventDefault(); @@ -82,7 +55,7 @@ $(document).ready(function () { }); // Insert filebrowser images into the input field (field_fileinput.tpl). - $("body").on("fbrowser.image.input", function (e, filename, embedcode, id, img) { + $("body").on("fbrowser.photo.input", function (e, filename, embedcode, id, img) { // Select the clicked button by it's attribute. var elm = $("[image-input='select']"); // Select the input field which belongs to this button. @@ -132,12 +105,12 @@ Dialog.show = function (url, title) { Dialog._get_url = function (type, name, id) { var hash = name; if (id !== undefined) hash = hash + "-" + id; - return "fbrowser/" + type + "/?mode=none&theme=frio#" + hash; + return 'media/' + type + '/browser?mode=none&theme=frio#' + hash; }; // Does load the filebrowser into the jot modal. Dialog.showJot = function () { - var type = "image"; + var type = "photo"; var name = "main"; var url = Dialog._get_url(type, name); @@ -159,15 +132,15 @@ Dialog._load = function (url) { let filebrowser = document.getElementById("filebrowser"); // Try to fetch the hash form the url. - let match = url.match(/fbrowser\/[a-z]+\/.*(#.*)/); + let match = url.match(/media\/[a-z]+\/.*(#.*)/); if (!filebrowser || match === null) { return; //not fbrowser } // Initialize the filebrowser. loadScript("view/js/ajaxupload.js"); - loadScript("view/theme/frio/js/filebrowser.js", function () { - FileBrowser.init(filebrowser.dataset.nickname, filebrowser.dataset.type, match[1]); + loadScript("view/theme/frio/js/module/media/browser.js", function () { + Browser.init(filebrowser.dataset.nickname, filebrowser.dataset.type, match[1]); }); }; @@ -190,7 +163,7 @@ function loadModalTitle() { // Get the text of the first element with "heading" class. title = $("#modal-body .heading").first().html(); - // for event modals we need some speacial handling + // for event modals we need some special handling if ($("#modal-body .event-wrapper .event-summary").length) { title = ' '; var eventsum = $("#modal-body .event-wrapper .event-summary").html(); @@ -230,7 +203,7 @@ function addToModal(url, id) { loadModalTitle(); // We need to initialize autosize again for new - // modal conent. + // modal content. autosize($(".modal .text-autosize")); } }); @@ -254,10 +227,10 @@ function editpost(url) { // But first we have to test if the url links to an event. So we will split up // the url in its parts. var splitURL = parseUrl(url); - // Test if in the url path containing "events/event". If the path containing this + // Test if in the url path containing "calendar/event/show". If the path containing this // expression then we will call the addToModal function and exit this function at // this point. - if (splitURL.path.indexOf("events/event") > -1) { + if (splitURL.path.indexOf("calendar/event/show") > -1) { addToModal(splitURL.path); return; } @@ -269,7 +242,7 @@ function editpost(url) { // For editpost we load the modal html of "jot-sections" of the edit page. So we would have two jot forms in // the page html. To avoid js conflicts we store the original jot in the variable jotcache. - // After closing the modal original jot should be restored at its orginal position in the html structure. + // After closing the modal original jot should be restored at its original position in the html structure. jotcache = $("#jot-content > #jot-sections"); // Remove the original Jot as long as the edit Jot is open. @@ -291,6 +264,10 @@ function editpost(url) { $("#profile-jot-form #jot-category-wrap").hide(); } + // To make dropzone fileupload work on editing a comment, we need to + // attach a new dropzone to modal + dzFactory.setupDropzone('#jot-text-wrap', 'profile-jot-text'); + modal.show(); $("#jot-popup").show(); linkPreview = $("#profile-jot-text").linkPreview(); @@ -336,10 +313,10 @@ function toggleJotNav(elm) { $("#jot-modal .modal-header .nav-tabs .jot-nav-lnk").attr("aria-selected", "false"); elm.setAttribute("aria-selected", "true"); - // For some some tab panels we need to execute other js functions. + // For some tab panels we need to execute other js functions. if (tabpanel === "jot-preview-content") { preview_post(); - // Make Share button visivle in preview + // Make Share button visible in preview $("#jot-preview-share").removeClass("minimize").attr("aria-hidden", "false"); } else if (tabpanel === "jot-fbrowser-wrapper") { $(function () { @@ -347,7 +324,7 @@ function toggleJotNav(elm) { }); } - // If element is a mobile dropdown nav menu we need to change the botton text. + // If element is a mobile dropdown nav menu we need to change the button text. if (cls) { toggleDropdownText(elm); } @@ -357,7 +334,7 @@ function toggleJotNav(elm) { // it redirects you to your own server. In such cases we can't // load it into a modal. function openWallMessage(url) { - // Split the the url in its parts. + // Split the url in its parts. var parts = parseUrl(url); // If the host isn't the same we can't load it in a modal. diff --git a/view/theme/frio/js/module/admin/logs/view.js b/view/theme/frio/js/module/admin/logs/view.js index 9faf9ec89..ab07882d2 100644 --- a/view/theme/frio/js/module/admin/logs/view.js +++ b/view/theme/frio/js/module/admin/logs/view.js @@ -6,7 +6,7 @@ $(function(){ var value = this.dataset.filterValue; var re = RegExp(filter+"=[a-z]*"); var newhref = location.href; - if (!location.href.indexOf("?") < 0) { + if (location.href.indexOf("?") < 0) { newhref = location.href + "?" + filter + "=" + value; } else if (location.href.match(re)) { newhref = location.href.replace(RegExp(filter+"=[a-z]*"), filter+"="+value); diff --git a/view/theme/frio/js/module/media/browser.js b/view/theme/frio/js/module/media/browser.js new file mode 100644 index 000000000..ccd2e1b5b --- /dev/null +++ b/view/theme/frio/js/module/media/browser.js @@ -0,0 +1,250 @@ +// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later +/** + * Filebrowser - Friendica Communications Server + * + * Copyright (c) 2010-2021, the Friendica project + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This code handle user interaction for photo/file upload/browser dialog. + * Is loaded from filebrowser_plain.tpl + * + * To load filebrowser in colorbox, call + * + * Dialog.doImageBrowser(eventname, id); + * + * or + * + * Dialog.doFileBrowser(eventname, id); + * + * where: + * + * eventname: event name to catch return value + * id: id returned to event handler + * + * When user select an item, an event in fired in parent page, on body element + * The event is named + * + * fbrowser..[] + * + * will be one of "image" or "file", and the event handler will + * get the following params: + * + * filename: filename of item chosen by user + * embed: bbcode to embed element into posts + * id: id from caller code + * + * example: + * + * // open dialog for select an image for a textarea with id "myeditor" + * var id="myeditor"; + * Dialog.doImageBrowser("example", id); + * + * // setup event handler to get user selection + * $("body").on("fbrowser.image.example", function(event, filename, bbcode, id) { + * // close colorbox + * $.colorbox.close(); + * // replace textarea text with bbcode + * $(id).value = bbcode; + * }); + **/ + +/* + * IMPORTANT + * + * This is a modified version to work with + * the frio theme and Bootstrap modals + * + * The original file is under: + * js/module/media/browser.js + * + */ + +var Browser = { + nickname: '', + type: '', + event: '', + folder: '', + id: null, + + init: function (nickname, type, hash) { + Browser.nickname = nickname; + Browser.type = type; + Browser.event = 'fbrowser.' + type; + + if (hash !== '') { + const h = hash.replace('#', ''); + const destination = h.split('-')[0]; + Browser.id = h.split('-')[1]; + Browser.event = Browser.event + '.' + destination; + if (destination === 'comment') { + // Get the comment textinput field + var commentElm = document.getElementById('comment-edit-text-' + Browser.id); + } + } + + Browser.postLoad(); + + $('.error .close').on('click', function (e) { + e.preventDefault(); + $('.error').addClass('hidden'); + }); + + // Click on album link + $('.fbrowser').on('click', '.folders button, .path button', function (e) { + e.preventDefault(); + let url = Browser._getUrl("none", this.dataset.folder); + Browser.folder = this.dataset.folder; + + Browser.loadContent(url); + }); + + //Embed on click + $('.fbrowser').on('click', '.photo-album-photo-link', function (e) { + e.preventDefault(); + + let embed = ''; + if (Browser.type === 'photo') { + embed = '[url=' + this.dataset.link + '][img=' + this.dataset.img + ']' + this.dataset.alt + '[/img][/url]'; + } + if (Browser.type === 'attachment') { + embed = '[attachment]' + this.dataset.link + '[/attachment]'; + } + + // Delete prefilled Text of the comment input + // Note: not the best solution but function commentOpenUI don't + // work as expected (we need a way to wait until commentOpenUI would be finished). + // As for now we insert pieces of this function here + if (commentElm !== null && typeof commentElm !== 'undefined') { + if (commentElm.value === '') { + $('#comment-edit-text-' + Browser.id) + .addClass('comment-edit-text-full') + .removeClass('comment-edit-text-empty'); + $('#comment-edit-submit-wrapper-' + Browser.id).show(); + $('#comment-edit-text-' + Browser.id).attr('tabindex', '9'); + $('#comment-edit-submit-' + Browser.id).attr('tabindex', '10'); + } + } + + console.log(Browser.event, this.dataset.filename, embed, Browser.id); + + $('body').trigger(Browser.event, [this.dataset.filename, embed, Browser.id, this.dataset.img]); + + // Close model + $('#modal').modal('hide'); + // Update autosize for this textarea + autosize.update($('.text-autosize')); + }); + + // EventListener for switching between photo and file mode + $('.fbrowser').on('click', '.fbswitcher .btn', function (e) { + e.preventDefault(); + Browser.type = this.getAttribute('data-mode'); + $('.fbrowser') + .removeClass() + .addClass('fbrowser ' + Browser.type); + + Browser.loadContent(Browser._getUrl("none")); + }); + }, + + // Initialize the AjaxUpload for the upload buttons + uploadButtons: function () { + if ($('#upload-photo').length) { + //AjaxUpload for photos + new window.AjaxUpload( + 'upload-photo', + { + action: 'media/photo/upload?response=json&album=' + encodeURIComponent(Browser.folder), + name: 'userfile', + responseType: 'json', + onSubmit: function (file, ext) { + $('.fbrowser-content').hide(); + $('.fbrowser .profile-rotator-wrapper').show(); + $('.error').addClass('hidden'); + }, + onComplete: function (file, response) { + if (response['error'] !== undefined) { + $('.error span').html(response['error']); + $('.error').removeClass('hidden'); + $('.fbrowser .profile-rotator-wrapper').hide(); + $('.fbrowser-content').show(); + return; + } + // load new content to fbrowser window + Browser.loadContent(Browser._getUrl("none")); + }, + }); + } + + if ($('#upload-attachment').length) { + //AjaxUpload for files + new window.AjaxUpload( + 'upload-attachment', + { + action: 'media/attachment/upload?response=json', + name: 'userfile', + responseType: 'json', + onSubmit: function (file, ext) { + $('.fbrowser-content').hide(); + $('.fbrowser .profile-rotator-wrapper').show(); + $('.error').addClass('hidden'); + }, + onComplete: function (file, response) { + if (response["error"] !== undefined) { + $('.error span').html(response['error']); + $('.error').removeClass('hidden'); + $('.fbrowser .profile-rotator-wrapper').hide(); + $('.fbrowser-content').show(); + return; + } + // Load new content to fbrowser window + Browser.loadContent(Browser._getUrl("none")); + }, + }); + } + }, + + // Stuff which should be executed if no content was loaded + postLoad: function () { + Browser.initGallery(); + $('.fbrowser .fbswitcher .btn').removeClass('active'); + $('.fbrowser .fbswitcher [data-mode=' + Browser.type + ']').addClass('active'); + // We need to add the AjaxUpload to the button + Browser.uploadButtons(); + }, + + // Load new content (e.g. change photo album) + loadContent: function (url) { + $('.fbrowser-content').hide(); + $('.fbrowser .profile-rotator-wrapper').show(); + + // load new content to fbrowser window + $('.fbrowser').load(url, function (responseText, textStatus) { + $('.profile-rotator-wrapper').hide(); + if (textStatus === 'success') { + $(".fbrowser_content").show(); + Browser.postLoad(); + } + }); + }, + + // Initialize justified Gallery + initGallery: function () { + $('.fbrowser.photo .fbrowser-content-container').justifiedGallery({ + rowHeight: 80, + margins: 4, + border: 0, + }); + }, + + _getUrl: function (mode, folder) { + let folderValue = folder !== undefined ? folder : Browser.folder; + let folderUrl = folderValue !== undefined ? '/' + encodeURIComponent(folderValue) : ''; + return 'media/' + Browser.type + '/browser' + folderUrl + '?mode=' + mode + "&theme=frio"; + } +}; +// @license-end diff --git a/view/theme/frio/js/textedit.js b/view/theme/frio/js/textedit.js index e8e4a6eb4..3a384bbb2 100644 --- a/view/theme/frio/js/textedit.js +++ b/view/theme/frio/js/textedit.js @@ -202,6 +202,18 @@ function confirmBlock() { return confirm(aStr.blockAuthor); } +function confirmIgnore() { + return confirm(aStr.ignoreAuthor); +} + +function confirmCollapse() { + return confirm(aStr.collapseAuthor); +} + +function confirmIgnoreServer() { + return confirm(aStr.ignoreServer + "\n" + aStr.ignoreServerDesc); +} + /** * Hide and removes an item element from the DOM after the deletion url is * successful, restore it else. @@ -258,4 +270,93 @@ function blockAuthor(url, elementId) { }); } } + +/** + * Ignored an author and hide and removes an item element from the DOM after the block is + * successful, restore it else. + * + * @param {string} url The item removal URL + * @param {string} elementId The DOM id of the item element + * @returns {undefined} + */ +function ignoreAuthor(url, elementId) { + if (confirmIgnore()) { + $("body").css("cursor", "wait"); + + var $el = $(document.getElementById(elementId)); + + $el.fadeTo("fast", 0.33, function () { + $.get(url) + .then(function () { + $el.remove(); + }) + .fail(function () { + // @todo Show related error message + $el.show(); + }) + .always(function () { + $("body").css("cursor", "auto"); + }); + }); + } +} + +/** + * Collapse author posts + * + * @param {string} url The item collapse URL + * @param {string} elementId The DOM id of the item element + * @returns {undefined} + */ +function collapseAuthor(url, elementId) { + if (confirmCollapse()) { + $("body").css("cursor", "wait"); + + var $el = $(document.getElementById(elementId)); + + $el.fadeTo("fast", 0.33, function () { + $.get(url) + .then(function () { + //$el.remove(); + }) + .fail(function () { + // @todo Show related error message + $el.show(); + }) + .always(function () { + $("body").css("cursor", "auto"); + }); + }); + } +} + + +/** + * Ignore author server + * + * @param {string} url The server ignore URL + * @param {string} elementId The DOM id of the item element + * @returns {undefined} + */ +function ignoreServer(url, elementId) { + if (confirmIgnoreServer()) { + $("body").css("cursor", "wait"); + + var $el = $(document.getElementById(elementId)); + + $el.fadeTo("fast", 0.33, function () { + $.post(url) + .then(function () { + $el.remove(); + }) + .fail(function () { + // @todo Show related error message + $el.fadeTo("fast", 1); + }) + .always(function () { + $("body").css("cursor", "auto"); + }); + }); + } +} // @license-end diff --git a/view/theme/frio/js/theme.js b/view/theme/frio/js/theme.js index 60aa88ba5..b138668c4 100644 --- a/view/theme/frio/js/theme.js +++ b/view/theme/frio/js/theme.js @@ -36,14 +36,14 @@ $(document).ready(function () { return false; }); - // add the class "selected" to group widges li if li > a does have the class group-selected - if ($("#sidebar-group-ul li a").hasClass("group-selected")) { - $("#sidebar-group-ul li a.group-selected").parent("li").addClass("selected"); + // add the class "selected" to circle widgets li if li > a does have the class circle-selected + if ($("#sidebar-circle-ul li a").hasClass("circle-selected")) { + $("#sidebar-circle-ul li a.circle-selected").parent("li").addClass("selected"); } - // add the class "selected" to forums widges li if li > a does have the class forum-selected - if ($("#forumlist-sidbar-ul li a").hasClass("forum-selected")) { - $("#forumlist-sidbar-ul li a.forum-selected").parent("li").addClass("selected"); + // add the class "selected" to groups widgets li if li > a does have the class group-selected + if ($("#group-list-sidebar-ul li a").hasClass("group-selected")) { + $("#group-list-sidebar-ul li a.group-selected").parent("li").addClass("selected"); } // add the class "active" to tabmenuli if li > a does have the class active @@ -51,7 +51,7 @@ $(document).ready(function () { $("#tabmenu ul li a.active").parent("li").addClass("active"); } - // give select fields an boostrap classes + // give select fields Bootstrap classes // @todo: this needs to be changed in friendica core $(".field.select, .field.custom").addClass("form-group"); $(".field.select > select, .field.custom > select").addClass("form-control"); @@ -61,8 +61,8 @@ $(document).ready(function () { // add mask css url to the logo-img container // - // This is for firefox - we use a mask which looks like the friendica logo to apply user collers - // to the friendica logo (the mask is in nav.tpl at the botom). To make it work we need to apply the + // This is for firefox - we use a mask which looks like the friendica logo to apply user colors + // to the friendica logo (the mask is in nav.tpl at the bottom). To make it work we need to apply the // correct url. The only way which comes to my mind was to do this with js // So we apply the correct url (with the link to the id of the mask) after the page is loaded. if ($("#logo-img").length) { @@ -80,6 +80,21 @@ $(document).ready(function () { target: ".flex-target", }); + // add mention-link button to the second navbar + let $mentionButton = $("#mention-link-button"); + if ($mentionButton.length) { + $mentionButton.appendTo("#topbar-second > .container > #navbar-button").addClass("pull-right"); + $("#mention-link").addClass("btn-sm "); + $("#mention-link > span i").addClass("fa-2x"); + if ($mentionButton.hasClass("modal-open")) { + $mentionButton.on("click", function (e) { + e.preventDefault(); + jotShow(); + }); + } + } + + // add Jot button to the second navbar let $jotButton = $("#jotOpen"); if ($jotButton.length) { @@ -121,7 +136,7 @@ $(document).ready(function () { } }); - // initialize the bootstrap tooltips + // initialize the Bootstrap tooltips $body.tooltip({ selector: '[data-toggle="tooltip"]', container: "body", @@ -206,7 +221,7 @@ $(document).ready(function () { }); } - // move the forum contact information of the network page into the second navbar + // move the group contact information of the network page into the second navbar if ($(".network-content-wrapper > #viewcontact_wrapper-network").length) { // get the contact-wrapper element and append it to the second nav bar // Note: We need the first() element with this class since at the present time we @@ -279,7 +294,7 @@ $(document).ready(function () { // Set the padding for input elements with inline buttons // // In Frio we use some input elements where the submit button is visually - // inside the the input field (through css). We need to set a padding-right + // inside the input field (through css). We need to set a padding-right // to the input element where the padding value would be at least the width // of the button. Otherwise long user input would be invisible because it is // behind the button. @@ -445,7 +460,9 @@ $(document).ready(function () { }); }); - if (!navigator.canShare || !navigator.canShare()) { + try { + navigator.canShare({ url: "#", }); + } catch(err) { $('.button-browser-share').hide(); } }); @@ -478,7 +495,7 @@ function showHide(theID) { // Show & hide event map in the network stream by button click. function showHideEventMap(elm) { // Get the id of the map element - it should be provided through - // the atribute "data-map-id". + // the attribute "data-map-id". var mapID = elm.getAttribute("data-map-id"); // Get translation labels. @@ -698,7 +715,7 @@ function parseUrl(str, component) { return uri; } -// trim function to replace whithespace after the string +// trim function to replace whitespace after the string String.prototype.rtrim = function () { var trimmed = this.replace(/\s+$/g, ""); return trimmed; @@ -740,7 +757,7 @@ function scrollToItem(elementId) { ) .promise() .done(function () { - // Highlight post/commenent with ID (GUID) + // Highlight post/comment with ID (GUID) $el.animate(colWhite, 1000).animate(colShiny).animate({ backgroundColor: "transparent" }, 600); }); } @@ -764,12 +781,110 @@ function htmlToText(htmlString) { * @param {boolean} un Whether to perform an activity removal instead of creation */ function doActivityItemAction(ident, verb, un) { - if (verb.indexOf("attend") === 0) { - $(".item-" + ident + " .button-event:not(#" + verb + "-" + ident + ")").removeClass("active"); + _verb = un ? 'un' + verb : verb; + var thumbsClass = ''; + switch (verb) { + case 'like': + thumbsClass = 'fa-thumbs-up'; + break; + case 'dislike': + thumbsClass = 'fa-thumbs-down'; + break; + case 'announce': + thumbsClass = 'fa-retweet'; + break; + case 'attendyes': + thumbsClass = 'fa-check'; + break; + case 'attendno': + thumbsClass = 'fa-times'; + break; + case 'attendmaybe': + thumbsClass = 'fa-question'; } - $("#" + verb + "-" + ident).toggleClass("active"); - - doActivityItem(ident, verb, un); + if (verb.indexOf('announce') === 0 ) { + // Share-Button(s) + // remove share-symbol, to replace it by rotator + $('button[id^=shareMenuOptions-' + ident.toString() + '] i:first-child').removeClass('fa-share'); + $('button[id^=announce-' + ident.toString() + '] i:first-child').removeClass('fa-retweet'); + // avoid multiple rotators on like/share-button if klicked multiple times. + if ($('img[id^=waitfor-' + verb + '-' + ident.toString() + ']').length == 0) { + // append rotator to the shareMenu-button for small media + $('') + .attr({id: 'waitfor-' + verb + '-' + ident.toString(), src: 'images/rotator.gif'}) + .addClass('fa') + .appendTo($('button[id^=shareMenuOptions-' + ident.toString() + '] i:first-child' )); + } + } + $('button[id^=' + verb + '-' + ident.toString() + '] i:first-child').removeClass(thumbsClass); + // if verb is announce, then one rotator is added above to the shareMedia-dropdown button + if ($('button:not(button.dropdown-toggle) img#waitfor-' + verb + '-' + ident.toString()).length == 0) { + $('') + .attr({id: 'waitfor-' + verb + '-' + ident.toString(), src: 'images/rotator.gif'}) + .addClass('fa') + .appendTo($('button[id^=' + verb + '-' + ident.toString() + '] i:first-child')); + } + $.post('item/' + ident.toString() + '/activity/' + _verb) + .success(function(data){ + $('img[id^=waitfor-' + verb + '-' + ident.toString() + ']').remove(); + if (data.status == 'ok') { + if (verb.indexOf('attend') === 0) { + $('button[id^=attend][id$=' + ident.toString() + ']').removeClass('active') + $('button#attendyes-' + ident.toString()).attr('onclick', 'javascript:doActivityItemAction(' + ident +', "attendyes")'); + $('button#attendno-' + ident.toString()).attr('onclick', 'javascript:doActivityItemAction(' + ident +', "attendno")'); + $('button#attendmaybe-' + ident.toString()).attr('onclick', 'javascript:doActivityItemAction(' + ident +', "attendmaybe")'); + } + if (data.verb == 'un' + verb) { + // like/dislike buttons + $('button[id^=' + verb + '-' + ident.toString() + ']' ) + .removeClass('active') + .attr('onclick', 'doActivityItemAction(' + ident +', "' + verb + '")'); + // link in share-menu + $('a[id^=' + verb + '-' + ident.toString() + ']' ) + .removeClass('active') + .attr('href', 'javascript:doActivityItemAction(' + ident +', "' + verb + '")'); + $('a[id^=' + verb + '-' + ident.toString() + '] i:first-child' ).addClass('fa-retweet').removeClass('fa-ban'); + } else { + // like/dislike buttons + $('button[id^=' + verb + '-' + ident.toString() + ']' ) + .addClass('active') + .attr('onclick', 'doActivityItemAction(' + ident + ', "' + verb + '", true )'); + // link in share-menu + $('a[id^=' + verb + '-' + ident.toString() + ']' ) + .addClass('active') + .attr('href', 'javascript:doActivityItemAction(' + ident + ', "' + verb + '", true )'); + $('a[id^=' + verb + '-' + ident.toString() + '] i:first-child' ).removeClass('fa-retweet').addClass('fa-ban'); + } + $('button[id^=' + verb + '-' + ident.toString() + '] i:first-child').addClass(thumbsClass); + if (verb.indexOf('announce') === 0 ) { + // ShareMenuButton + $('button[id^=shareMenuOptions-' + ident.toString() + '] i:first-child').addClass('fa-share'); + if (data.verb == 'un' + verb) { + $('button[id^=shareMenuOptions-' + ident.toString() + ']').removeClass('active'); + } else { + $('button[id^=shareMenuOptions-' + ident.toString() + ']').addClass('active'); + } + } + } else { + /* server-response was not ok. Database-problems or some changes in + * data? + * reset all buttons + */ + $('img[id^=waitfor-' + verb + '-' + ident.toString() + ']').remove(); + $('button[id^=shareMenuOptions-' + ident.toString() + '] i:first-child').addClass('fa-share'); + $('button[id^=' + verb + '-' + ident.toString() + '] i:first-child').addClass(thumbsClass); + $('a[id^=' + verb + '-' + ident.toString() + '] i:first-child').addClass(thumbsClass); + $.jGrowl(aActErr[verb] + '
    (' + aErrType['srvErr'] + ')', {sticky: false, theme: 'info', life: 5000}); + } + }) + .error(function(data){ + // Server could not be reached successfully + $('img[id^=waitfor-' + verb + '-' + ident.toString() + ']').remove(); + $('button[id^=shareMenuOptions-' + ident.toString() + '] i:first-child').addClass('fa-share'); + $('button[id^=' + verb + '-' + ident.toString() + '] i:first-child').addClass(thumbsClass); + $('a[id^=' + verb + '-' + ident.toString() + '] i:first-child').addClass(thumbsClass); + $.jGrowl(aActErr[verb] + '
    (' + aErrType['netErr'] + ')', {sticky: false, theme: 'info', life: 5000}); + }); } // Decodes a hexadecimally encoded binary string @@ -841,4 +956,14 @@ function toggleDropdownText(elm) { function hasClass(elem, cls) { return (" " + elem.className + " ").indexOf(" " + cls + " ") > -1; } + +// Send on + or + on macos +// e: event +// submit: the id of the submitbutton +function sendOnCtrlEnter(e, submit) { + if ((e.ctrlKey || e.metaKey) && (e.keyCode == 13 || e.keyCode == 10)) { + console.log("Ctrl + Enter"); + $("#" + submit).trigger('click'); + } +} // @license-end diff --git a/view/theme/frio/php/Image.php b/view/theme/frio/php/Image.php index e3bae2004..e795e5f8a 100644 --- a/view/theme/frio/php/Image.php +++ b/view/theme/frio/php/Image.php @@ -1,6 +1,6 @@ darken( [$amount] ) : Allows you to obtain a darker shade of your color. Optionally you can decide to darken using a desired percentage. - lighten( [$amount] ) : Allows you to obtain a lighter shade of your color. Optionally you can decide to lighten using a desired percentage. - mix($hex, [$amount] ) : Allows you to mix another color to your color. Optionally you can decide to set the percent of second color or original color amount is ranged -100..0.100. -- isLight( [$hex] ) : Determins whether your color (or the provide param) is considered a "light" color. Returns `TRUE` if color is light. -- isDark( [$hex] ) : Determins whether your color (or the provide param) is considered a "dark" color. Returns `TRUE` if color is dark. +- isLight( [$hex] ) : Determines whether your color (or the provide param) is considered a "light" color. Returns `TRUE` if color is light. +- isDark( [$hex] ) : Determines whether your color (or the provide param) is considered a "dark" color. Returns `TRUE` if color is dark. - makeGradient( [$amount] ) : Returns an array with 2 indices `light` and `dark`, the initial color will either be selected for `light` or `dark` depending on its brightness, then the other color will be generated. The optional param allows for a static lighten or darkened amount. - complementary() : Returns the color "opposite" or complementary to your color. - getHex() : Returns the original hex color. @@ -145,7 +145,7 @@ echo $myBlue->getCssGradient(10, TRUE); ``` -## Github Contributors +## GitHub Contributors - mexitek - danielpataki - alexmglover diff --git a/view/theme/frio/php/default.php b/view/theme/frio/php/default.php index d0580373e..74c30f6f7 100644 --- a/view/theme/frio/php/default.php +++ b/view/theme/frio/php/default.php @@ -1,6 +1,6 @@ getUrlPath() ? "/" . DI::baseUrl()->getUrlPath() . "/" : "/"; +$basepath = DI::baseUrl()->getPath() ? "/" . DI::baseUrl()->getPath() . "/" : "/"; $frio = "view/theme/frio"; $view_mode_class = (DI::mode()->isMobile() || DI::mode()->isMobile()) ? 'mobile-view' : 'desktop-view'; $is_singleuser = DI::config()->get('system', 'singleuser'); @@ -45,7 +45,7 @@ $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser"; <?php if (!empty($page['title'])) echo $page['title'] ?> - + - "> + "> t('Skip to main content'); ?>
    '; if (!empty($page['content'])) { echo $page['content']; @@ -137,12 +137,12 @@ $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser"; '; } else { echo ' -
    '; +
    '; if (!empty($page['content'])) { echo $page['content']; } echo ' -
    +
    '; } ?> diff --git a/view/theme/frio/php/frio_boot.php b/view/theme/frio/php/frio_boot.php index 70111ab3b..eb1853a0c 100644 --- a/view/theme/frio/php/frio_boot.php +++ b/view/theme/frio/php/frio_boot.php @@ -1,6 +1,6 @@
    level == "ERROR"}}bg-danger - {{elseif $row->level == "WARNING"}}bg-warinig + {{elseif $row->level == "WARNING"}}bg-warning {{elseif $row->level == "NOTICE"}}bg-info {{elseif $row->level == "DEBUG"}}text-muted {{/if}} @@ -121,7 +121,7 @@
    -

    {{$l10n.Data}}

    +

    {{$l10n.Data}}

    diff --git a/view/theme/frio/templates/admin/site.tpl b/view/theme/frio/templates/admin/site.tpl index bf3f1d537..e440451a6 100644 --- a/view/theme/frio/templates/admin/site.tpl +++ b/view/theme/frio/templates/admin/site.tpl @@ -39,15 +39,13 @@ {{include file="field_input.tpl" field=$sitename}} {{include file="field_input.tpl" field=$sender_email}} {{include file="field_input.tpl" field=$system_actor_name}} - {{include file="field_textarea.tpl" field=$banner}} {{include file="field_input.tpl" field=$shortcut_icon}} {{include file="field_input.tpl" field=$touch_icon}} {{include file="field_textarea.tpl" field=$additional_info}} {{include file="field_select.tpl" field=$language}} {{include file="field_select.tpl" field=$theme}} {{include file="field_select.tpl" field=$theme_mobile}} - {{include file="field_select.tpl" field=$ssl_policy}} - {{if $ssl_policy.2 == 1}}{{include file="field_checkbox.tpl" field=$force_ssl}}{{/if}} + {{include file="field_checkbox.tpl" field=$force_ssl}} {{include file="field_checkbox.tpl" field=$show_help}} {{include file="field_select.tpl" field=$singleuser}}
    @@ -71,12 +69,14 @@
    - {{include file="field_input.tpl" field=$register_text}} + {{include file="field_textarea.tpl" field=$register_text}} {{include file="field_select.tpl" field=$register_policy}} + {{include file="field_input.tpl" field=$max_registered_users}} {{include file="field_input.tpl" field=$daily_registrations}} {{include file="field_checkbox.tpl" field=$enable_multi_reg}} {{include file="field_checkbox.tpl" field=$enable_openid}} {{include file="field_checkbox.tpl" field=$enable_regfullname}} + {{include file="field_checkbox.tpl" field=$register_notification}}